diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..a5b12b9 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,95 @@ +name: CI + +on: + pull_request: + paths-ignore: + - '**.md' + - '**.rst' + push: + paths-ignore: + - '**.md' + - '**.rst' + branches-ignore: + - 'master' + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] + emacs_version: [27.2, 28.2, 29.3] + python_version: [3.8] + include: + - os: macos-12 + emacs_version: 29.3 + python_version: 3.8 + + steps: + - uses: actions/checkout@v2 + + - uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python_version }} + + - uses: purcell/setup-emacs@master + with: + version: ${{ matrix.emacs_version }} + + - uses: actions/cache@v2 + if: startsWith(runner.os, 'Linux') + with: + path: ~/.cache/pip + key: ${{ runner.os }}-pip-000 + + - uses: actions/cache@v2 + if: startsWith(runner.os, 'macOS') + with: + path: ~/Library/Caches/pip + key: ${{ runner.os }}-pip-000 + + - uses: actions/cache@v2 + with: + path: ~/local + key: ${{ runner.os }}-local-000 + + - uses: actions/cache@v2 + with: + path: ~/.emacs.d + key: emacs.d + + - name: apt-get + if: startsWith(runner.os, 'Linux') + run: | + sudo apt-get -yq update + DEBIAN_FRONTEND=noninteractive sudo apt-get -yq install gnutls-bin sharutils dirmngr libreadline-dev libcurl4-openssl-dev virtualenv + + - uses: actions/cache@v2 + id: cache-cask-packages + with: + path: .cask + key: cache-cask-packages-000 + + - uses: actions/cache@v2 + id: cache-cask-executable + with: + path: ~/.cask + key: cache-cask-executable-000 + + - uses: conao3/setup-cask@master + if: steps.cache-cask-executable.outputs.cache-hit != 'true' + with: + version: snapshot + + - name: paths + run: | + echo "$HOME/local/bin" >> $GITHUB_PATH + echo "$HOME/.cask/bin" >> $GITHUB_PATH + echo "$HOME/.local/bin" >> $GITHUB_PATH + echo "LD_LIBRARY_PATH=$HOME/.local/lib" >> $GITHUB_ENV + + - name: test + run: | + make test-run + make test + continue-on-error: ${{ matrix.emacs_version == 'snapshot' }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4df8323 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +build +venv-nnreddit-test +.ecukes* +.cask +.newsrc* +*.pyc +dist +todo.org +mimeapps.list +*autoloads.el +super-secret-refresh-token +\#* +.\#* +todo.org +ert-profile* +tests/log +nnreddit.egg-info diff --git a/Cask b/Cask new file mode 100644 index 0000000..d6795a7 --- /dev/null +++ b/Cask @@ -0,0 +1,11 @@ +(source gnu) +(source melpa) + +(package-descriptor "lisp/nnreddit-pkg.el") +(files "lisp/*.el" "setup.py" "requirements.txt" "nnreddit") + +(development + (depends-on "ert-runner") + (depends-on "package-lint") + (depends-on "ecukes") + (depends-on "f")) diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d7d9229 --- /dev/null +++ b/Makefile @@ -0,0 +1,195 @@ +SHELL := /bin/bash +EMACS ?= $(shell which emacs) +export PYTHON ?= python +ifeq ($(shell command -v $(PYTHON) 2>/dev/null),) +$(error $(PYTHON) not found) +endif +ifeq ($(shell expr $$($(PYTHON) --version 2>&1 | cut -d' ' -f2) \< 3),1) +$(error Set PYTHON to python3) +endif +ifeq ($(shell expr $$($(PYTHON) --version 2>&1 | cut -d'.' -f2) \< 11),0) +$(error Set PYTHON to an older python3) +endif +SRC=$(shell cask files) +PKBUILD=2.3 +ELCFILES = $(SRC:.el=.elc) +CASK_DIR := $(shell EMACS=$(EMACS) cask package-directory || exit 1) +export TEST_PYTHON ?= $(PYTHON) +ifeq ($(shell command -v $(TEST_PYTHON) 2>/dev/null),) +$(error $(TEST_PYTHON) not found) +endif + +.DEFAULT_GOAL := test-compile + +.PHONY: cask +cask: $(CASK_DIR) + +$(CASK_DIR): Cask + cask install + touch $(CASK_DIR) + +lisp/nnreddit-pkg.el: nnreddit/VERSION lisp/nnreddit-pkg.el.in + sed 's/VERSION/"$(shell cat $<)"/' lisp/nnreddit-pkg.el.in > $@ + +.PHONY: autoloads +autoloads: lisp/nnreddit-pkg.el + cask emacs -Q --batch -l package --eval "(let ((v (format \"%s.%s\" emacs-major-version emacs-minor-version))) (custom-set-variables (backquote (package-user-dir ,(concat \".cask/\" v)))))" -f package-initialize --eval "(package-generate-autoloads \"nnreddit\" \"./lisp\")" + +README.rst: README.in.rst lisp/nnreddit.el + grep ';;' lisp/nnreddit.el \ + | awk '/;;;\s*Commentary/{within=1;next}/;;;\s*/{within=0}within' \ + | sed -e 's/^\s*;;*\s*//g' \ + | tools/readme-sed.sh "COMMENTARY" README.in.rst > README.rst + +.PHONY: clean +clean: + cask clean-elc + pyclean nnreddit + $(PYTHON) setup.py clean + rm -f tests/log/* + rm -rf tests/test-install + +.PHONY: pylint +ifeq ($(shell expr $$($(PYTHON) --version 2>&1 | cut -d'.' -f2) \> 9),1) +pylint: + $(PYTHON) -m pip -q install --user pylint + $(PYTHON) -m pylint nnreddit --rcfile=nnreddit/pylintrc +else +pylint: + @echo forgoing pylint +endif + +.PHONY: test-compile +test-compile: cask autoloads pylint + sh -e tools/package-lint.sh lisp/nnreddit.el + ! (cask eval "(let ((byte-compile-error-on-warn t) (bytecomp--inhibit-lexical-cookie-warning t) (byte-compile--suppressed-warnings (quote ((obsolete define-package))))) (cask-cli/build))" 2>&1 | egrep -a "(Warning|Error):") + cask clean-elc + +define SET_GITHUB_ACTOR = +GITHUB_ACTOR := $(shell if [ -z ${GITHUB_ACTOR} ]; then git config user.name; else echo ${GITHUB_ACTOR} ; fi) +endef + +define SET_GITHUB_ACTOR_REPOSITORY = +GITHUB_ACTOR_REPOSITORY := $(GITHUB_ACTOR)/$(shell basename `git rev-parse --show-toplevel`) +endef + +define SET_GITHUB_HEAD_REF = +GITHUB_HEAD_REF := $(shell if [ -z ${GITHUB_HEAD_REF} ]; then git rev-parse --abbrev-ref HEAD; else echo ${GITHUB_HEAD_REF} ; fi) +endef + +define SET_GITHUB_SHA = +GITHUB_SHA := $(shell if [ -z ${GITHUB_SHA} ] ; then git rev-parse origin/${GITHUB_HEAD_REF}; else echo ${GITHUB_SHA}; fi) +endef + +define SET_GITHUB_COMMIT = +GITHUB_COMMIT := $(shell if git show -s --format=%s "${GITHUB_SHA}" | egrep -q "^Merge .* into" ; then git show -s --format=%s "${GITHUB_SHA}" | cut -d " " -f2 ; else echo "${GITHUB_SHA}" ; fi) +endef + +.PHONY: test-install-vars +test-install-vars: + $(eval $(call SET_GITHUB_ACTOR)) + $(eval $(call SET_GITHUB_ACTOR_REPOSITORY)) + $(eval $(call SET_GITHUB_HEAD_REF)) + $(eval $(call SET_GITHUB_SHA)) + $(eval $(call SET_GITHUB_COMMIT)) + git show -s --format=%s $(GITHUB_COMMIT) + git show -s --format=%s $(GITHUB_SHA) + +.PHONY: test-install-defunct +test-install-defunct: test-install-vars + mkdir -p tests/test-install + if [ ! -s "tests/test-install/$(PKBUILD).tar.gz" ] ; then \ + cd tests/test-install ; curl -sLOk https://github.com/melpa/package-build/archive/$(PKBUILD).tar.gz ; fi + cd tests/test-install ; tar xfz $(PKBUILD).tar.gz + cd tests/test-install ; rm -f $(PKBUILD).tar.gz + cd tests/test-install/package-build-$(PKBUILD) ; make -s loaddefs + mkdir -p tests/test-install/recipes + cd tests/test-install/recipes ; curl -sfLOk https://raw.githubusercontent.com/melpa/melpa/master/recipes/nnreddit || cp -f ../../../tools/recipe ./nnreddit + ! ( $(EMACS) -Q --batch -L tests/test-install/package-build-$(PKBUILD) \ + --eval "(require 'package-build)" \ + --eval "(require 'subr-x)" \ + -f package-initialize \ + --eval "(add-to-list 'package-archives '(\"melpa\" . \"http://melpa.org/packages/\"))" \ + --eval "(package-refresh-contents)" \ + --eval "(setq rcp (package-recipe-lookup \"nnreddit\"))" \ + --eval "(unless (file-exists-p package-build-archive-dir) \ + (make-directory package-build-archive-dir))" \ + --eval "(let* ((my-repo \"$(GITHUB_ACTOR_REPOSITORY)\") \ + (my-branch \"$(GITHUB_HEAD_REF)\") \ + (my-commit \"$(GITHUB_COMMIT)\")) \ + (oset rcp :repo my-repo) \ + (oset rcp :branch my-branch) \ + (oset rcp :commit my-commit))" \ + --eval "(package-build--package rcp (package-build--checkout rcp))" \ + --eval "(package-install-file (car (file-expand-wildcards (concat package-build-archive-dir \"nnreddit*.tar\"))))" 2>&1 | egrep -ia "error: |fatal" ) + +.PHONY: test-venv +test-venv: test-install-defunct + $(EMACS) -Q --batch -f package-initialize \ + --eval "(custom-set-variables (quote (gnus-verbose 8)))" \ + --eval "(require (quote nnreddit))" \ + --eval "nnreddit-venv" + +define TESTRUN +--eval "(custom-set-variables \ + (quote (gnus-select-method (quote (nnreddit \"\")))) \ + (backquote (venv-location ,(file-name-as-directory (make-temp-file \"testrun-\" t)))) \ + (quote (nnreddit-python-command \"$(PYTHON)\"))\ + (quote (gnus-verbose 8)) \ + (quote (nnreddit-log-rpc t)))" \ +--eval "(setq debug-on-error t)" \ +--eval "(fset (quote gnus-y-or-n-p) (function ignore))" +endef + +.PHONY: test-run +test-run: cask autoloads + cask emacs -Q --batch \ + $(TESTRUN) \ + --eval "(require 'nnreddit)" \ + --eval "(cl-assert (nnreddit-rpc-get))" \ + --eval "(sleep-for 0 7300)" \ + -f nnreddit-dump-diagnostics \ + --eval "(cl-assert nnreddit-processes)" + +.PHONY: test-run-interactive +test-run-interactive: cask autoloads + cask emacs -Q \ + $(TESTRUN) \ + -f gnus + +.PHONY: test-unit +test-unit: + PYTHON=$(TEST_PYTHON) cask exec ert-runner -L . -L tests tests/test*.el + +.PHONY: test +test: test-compile test-unit test-int + +.PHONY: test-int +test-int: + @>/dev/null expr $$($(TEST_PYTHON) --version 2>&1 | cut -d'.' -f2) \< 9 || { echo "need python less than 3.9" ; exit -1; } + rm -rf venv-nnreddit-test + $(TEST_PYTHON) -m venv venv-nnreddit-test + ( \ + source venv-nnreddit-test/bin/activate; \ + python -m pip -q install -r requirements-dev.txt; \ + python -m pytest tests/test_oauth.py; \ + rm -f tests/.newsrc.eld; \ + cask exec ecukes --reporter magnars --tags "~@inbox"; \ + rm -f tests/.newsrc.eld; \ + cask exec ecukes --reporter magnars --tags "@inbox"; \ + ) + +.PHONY: dist-clean +dist-clean: + rm -rf dist + +.PHONY: dist +dist: dist-clean + cask package + +.PHONY: install +install: dist autoloads + $(EMACS) -Q --batch -f package-initialize \ + --eval "(add-to-list 'package-archives '(\"melpa\" . \"http://melpa.org/packages/\"))" \ + --eval "(package-refresh-contents)" \ + --eval "(package-install-file (car (file-expand-wildcards \"dist/nnreddit*.tar\")))" diff --git a/README.in.rst b/README.in.rst new file mode 100644 index 0000000..59bf4f8 --- /dev/null +++ b/README.in.rst @@ -0,0 +1,92 @@ +|build-status| |melpa-dev| + +.. COMMENTARY (see Makefile) + +.. |build-status| + image:: https://github.com/dickmao/nnreddit/workflows/CI/badge.svg?branch=dev + :target: https://github.com/dickmao/nnreddit/actions + :alt: Build Status +.. |melpa-dev| + image:: https://melpa.org/packages/nnreddit-badge.svg + :target: http://melpa.org/#/nnreddit + :alt: MELPA current version +.. |melpa-stable| + image:: http://melpa-stable.milkbox.net/packages/ein-badge.svg + :target: http://melpa-stable.milkbox.net/#/ein + :alt: MELPA stable version + +.. image:: https://github.com/dickmao/gnus-imap-walkthrough/blob/master/thumbnail.png + :target: https://youtu.be/DMpZtC98F_M + :alt: Replacing Thunderbird With Gnus + +.. image:: screenshot.png +.. |--| unicode:: U+2013 .. en dash +.. |---| unicode:: U+2014 .. em dash, trimming surrounding whitespace + :trim: + +Install +======= +**As of 06 July 2021, authentication behavior at Reddit changed** such that nnreddit versions previous to 0.2.0 no longer work. Delete ``$HOME/.local/share/nnreddit/refresh-token``, and install the latest nnreddit. + +**As of 24 May 2020, to stay apace with the** PRAW_ **backend, nnreddit no longer supports python2.** If your system keeps python 3.x in a separate alias such as ``python3``, you should ``M-x customize-variable RET nnreddit-python-command`` to it. + +We are trying to push ELPASO_ as the preferred package installer. Alternatively, directly clone this repo and ``make install``. + +Also see Troubleshooting_. + +Usage +===== +In your ``.emacs`` or ``init.el``, use ONE of the following: + +:: + + ;; Applies to first-time Gnus users + (custom-set-variables '(gnus-select-method (quote (nnreddit "")))) + +or, if you're an existing Gnus user, + +:: + + ;; Applies to existing Gnus users + (add-to-list 'gnus-secondary-select-methods '(nnreddit "")) + +Then ``M-x gnus``. + +Initial setup should guide you through OAuth and find your existing subreddit subscriptions. + +Select a subreddit via ``RET``. Rapidly catch yourself up via ``N`` and ``P``. Instantly catch-up with ``c``. + +Create a post via ``a``. + +Reply to articles with ``f`` or ``r``. Include original with ``F``. + +Vote articles via ``R -`` (down), ``R =`` (up), or ``R 0`` (retract). + +From the ``*Group*`` buffer, press ``g`` to refresh all subreddits. ``M-g`` on a particular subreddit to refresh individually. + +From the summary buffer, ``/o`` redisplays articles already read. ``x`` undisplays them. + +``S s`` edits articles. + +``S c`` cancels articles. + +``R g [subreddit]`` takes you to an *unsubscribed* subreddit. + +You can subscribe to it via the ``u`` keybinding from the ``*Group*`` buffer [1]_. + +Gnus beginners may find the interface bewildering. In particular, subreddits with no unread articles do not display. Use ``L`` to bring them out of hiding. + +Troubleshooting +=============== +Clone this repo. Then install Cask_. Then try ``make test-run-interactive``. + +| + +.. [1] Gnus users are familiar with the tragedy of ``u`` doing double duty as subscriber and unsubscriber. ``u`` is really a toggle even though the attached command is ``gnus-group-unsubscribe-current-group`` |---| if that doesn't trigger your UX sensibility, then never mind I mentioned it. + +.. _walkthrough: https://github.com/dickmao/gnus-imap-walkthrough +.. _Cask: https://github.com/cask/cask#installation +.. _Getting started: http://melpa.org/#/getting-started +.. _ELPASO: http://github.com/dickmao/elpaso +.. _virtualenv: https://virtualenv.pypa.io/en/stable +.. _PRAW: https://github.com/praw-dev/praw/pull/1094 diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..7b2a81f --- /dev/null +++ b/README.rst @@ -0,0 +1,92 @@ +|build-status| |melpa-dev| + +A Gnus backend for Reddit. + +.. |build-status| + image:: https://github.com/dickmao/nnreddit/workflows/CI/badge.svg?branch=dev + :target: https://github.com/dickmao/nnreddit/actions + :alt: Build Status +.. |melpa-dev| + image:: https://melpa.org/packages/nnreddit-badge.svg + :target: http://melpa.org/#/nnreddit + :alt: MELPA current version +.. |melpa-stable| + image:: http://melpa-stable.milkbox.net/packages/ein-badge.svg + :target: http://melpa-stable.milkbox.net/#/ein + :alt: MELPA stable version + +.. image:: https://github.com/dickmao/gnus-imap-walkthrough/blob/master/thumbnail.png + :target: https://youtu.be/DMpZtC98F_M + :alt: Replacing Thunderbird With Gnus + +.. image:: screenshot.png +.. |--| unicode:: U+2013 .. en dash +.. |---| unicode:: U+2014 .. em dash, trimming surrounding whitespace + :trim: + +Install +======= +**As of 06 July 2021, authentication behavior at Reddit changed** such that nnreddit versions previous to 0.2.0 no longer work. Delete ``$HOME/.local/share/nnreddit/refresh-token``, and install the latest nnreddit. + +**As of 24 May 2020, to stay apace with the** PRAW_ **backend, nnreddit no longer supports python2.** If your system keeps python 3.x in a separate alias such as ``python3``, you should ``M-x customize-variable RET nnreddit-python-command`` to it. + +We are trying to push ELPASO_ as the preferred package installer. Alternatively, directly clone this repo and ``make install``. + +Also see Troubleshooting_. + +Usage +===== +In your ``.emacs`` or ``init.el``, use ONE of the following: + +:: + + ;; Applies to first-time Gnus users + (custom-set-variables '(gnus-select-method (quote (nnreddit "")))) + +or, if you're an existing Gnus user, + +:: + + ;; Applies to existing Gnus users + (add-to-list 'gnus-secondary-select-methods '(nnreddit "")) + +Then ``M-x gnus``. + +Initial setup should guide you through OAuth and find your existing subreddit subscriptions. + +Select a subreddit via ``RET``. Rapidly catch yourself up via ``N`` and ``P``. Instantly catch-up with ``c``. + +Create a post via ``a``. + +Reply to articles with ``f`` or ``r``. Include original with ``F``. + +Vote articles via ``R -`` (down), ``R =`` (up), or ``R 0`` (retract). + +From the ``*Group*`` buffer, press ``g`` to refresh all subreddits. ``M-g`` on a particular subreddit to refresh individually. + +From the summary buffer, ``/o`` redisplays articles already read. ``x`` undisplays them. + +``S s`` edits articles. + +``S c`` cancels articles. + +``R g [subreddit]`` takes you to an *unsubscribed* subreddit. + +You can subscribe to it via the ``u`` keybinding from the ``*Group*`` buffer [1]_. + +Gnus beginners may find the interface bewildering. In particular, subreddits with no unread articles do not display. Use ``L`` to bring them out of hiding. + +Troubleshooting +=============== +Clone this repo. Then install Cask_. Then try ``make test-run-interactive``. + +| + +.. [1] Gnus users are familiar with the tragedy of ``u`` doing double duty as subscriber and unsubscriber. ``u`` is really a toggle even though the attached command is ``gnus-group-unsubscribe-current-group`` |---| if that doesn't trigger your UX sensibility, then never mind I mentioned it. + +.. _walkthrough: https://github.com/dickmao/gnus-imap-walkthrough +.. _Cask: https://github.com/cask/cask#installation +.. _Getting started: http://melpa.org/#/getting-started +.. _ELPASO: http://github.com/dickmao/elpaso +.. _virtualenv: https://virtualenv.pypa.io/en/stable +.. _PRAW: https://github.com/praw-dev/praw/pull/1094 diff --git a/features/inbox.feature b/features/inbox.feature new file mode 100644 index 0000000..1fc00f3 --- /dev/null +++ b/features/inbox.feature @@ -0,0 +1,16 @@ +Feature: 20201124 + +@inbox +Scenario: Get some inbox messages + When begin recording "inbox" + Given gnus start + And I go to word "nnreddit:/u/nnreddit-user" + And I press "RET" + And I should be in buffer "*Summary nnreddit:/u/nnreddit-user*" + And I go to word "Roblox" + And I press "RET" + And I switch to buffer "*Article nnreddit:/u/nnreddit-user*" + And I should see "Nice!" + And emacs26 cannot do action chain "f m" + Then protected see message "emacs26 cannot do action chain: Followup from inbox not implemented" + Then end recording "inbox" diff --git a/features/rpc.feature b/features/rpc.feature new file mode 100644 index 0000000..d27fd97 --- /dev/null +++ b/features/rpc.feature @@ -0,0 +1,166 @@ +Feature: 20201123 + +@refresh_token +Scenario: Do not know how to betamax initial oauth handshake + When begin recording "refresh_token" + Given gnus start + Then end recording "refresh_token" + +@random +Scenario: random subreddit + When begin recording "random" + Given gnus start + And rpc "random_subreddit" returns "preppers" + Then end recording "random" + +@subscribe +Scenario: subscribe and unsubscribe + When begin recording "subscribe" + Given gnus start + And I goto group "test" + And I press "q" + Then I should be in buffer "*Group*" + And I go to word "test" + And I press "u" + And I open latest "log/test_py" + Then I wait for buffer to say "('action', 'sub')" + And I switch to buffer "*Group*" + And I go to word "test" + And I press "u" + And I open latest "log/test_py" + Then I wait for buffer to say "('action', 'unsub')" + Then end recording "subscribe" + +@scan +Scenario: selecting group does not rescan, but M-g does + Given gnus stop + When begin recording "scan" + Given gnus start + And I clear buffer "*Messages*" + And I go to word "emacs" + And I press "M-g" + And I switch to buffer "*Messages*" + And I should see pattern "nnreddit-request-scan: emacs" + And I switch to buffer "*Group*" + And I clear buffer "*Messages*" + And I go to word "emacs" + And I press "RET" + And I should be in buffer "*Summary nnreddit:emacs*" + And I switch to buffer "*Messages*" + And I should not see pattern "nnreddit-request-scan: emacs" + And I switch to buffer "*Group*" + And I go to word "orgmode" + And I press "RET" + And I should be in buffer "*Summary nnreddit:orgmode*" + And I switch to buffer "*Messages*" + And I should not see pattern "nnreddit-request-scan: orgmode" + Then end recording "scan" + +@vote +Scenario: Voting from summary and article buffers + Given gnus stop + When begin recording "vote" + Given gnus start + And I go to word "PostPreview" + And I press "RET" + And I should be in buffer "*Summary nnreddit:PostPreview*" + And I go to word "Plasky" + And I press "R =" + Then protected see message "Open the article before voting" + And I press "RET" + And I press "R =" + And I switch to buffer "*Article nnreddit:PostPreview*" + And I should see "Score: 2 +1" + And I press "R -" + And I should see "Score: 2 -1" + Then end recording "vote" + +@post +Scenario: message-send-and-exit + When begin recording "post" + Given gnus start + And I go to word "PostPreview" + And I press "RET" + And I should be in buffer "*Summary nnreddit:PostPreview*" + And emacs26 cannot do action chain "a t" + Then I should be in buffer "*unsent posting on PostPreview*" + And I type "test baby test baby 123" + And I press "M->" + And I type "this is a test" + And I press "C-c C-c" + And I should be in buffer "*Summary nnreddit:PostPreview*" + Then end recording "post" + +@loose +Scenario: Reply to a loose thread + Given gnus stop + When begin recording "loose" + Given gnus start + And I go to word "PostPreview" + And I press "RET" + And I should be in buffer "*Summary nnreddit:PostPreview*" + And I go to string "Re: Testing inline image links" + And emacs26 cannot do action chain "f r" + Then I should be in buffer like "*unsent followup" + And I should see "Reply-Root: yes" + And I press "M->" + And I type "this is a test" + And I press "C-c C-c" + And I should be in buffer "*Summary nnreddit:PostPreview*" + Then end recording "loose" + +@cancel +Scenario: cancel post + When begin recording "cancel" + Given gnus start + And I go to word "PostPreview" + And I press "RET" + And I should be in buffer "*Summary nnreddit:PostPreview*" + And I go to string "Re: Testing inline image links" + And I press "C-n" + And I press "S c" + And I open latest "log/test_py" + And I wait for buffer to say "api/del" + And I wait for buffer to say "('id', 't1_eqwoano')" + Then end recording "cancel" + +@supersede +Scenario: supersede post + Given gnus stop + When begin recording "supersede" + Given gnus start + And I go to word "PostPreview" + And I press "RET" + And I should be in buffer "*Summary nnreddit:PostPreview*" + And I go to word "aegisninja" + And I press "C-n" + And I press "S s" + Then I should be in buffer "*unsent supersede*" + And I type "edit: " + And I press "C-c C-c" + And I open latest "log/test_py" + And I wait for buffer to say "api/editusertext" + And I wait for buffer to say "('thing_id', 't1_eqwe7dx')" + Then end recording "supersede" + +@canonical +Scenario: Going to hongkong make me really go to HongKong + Given gnus stop + When begin recording "canonical" + Given gnus start + And eval "(setq minibuffer-history nil)" + And I goto group "hongkong" + And I press "q" + Then I should be in buffer "*Group*" + And I should see "HongKong" + Then end recording "canonical" + +@browser +Scenario: Verify user message if no refresh token present + Given gnus stop + And I hide tokens + And gnus try start + And I switch to buffer "*Messages*" + Then I should see "nnreddit-default: Please check your browser." + And I unhide tokens + And I kill all rpc processes diff --git a/features/step-definitions/nnreddit-steps.el b/features/step-definitions/nnreddit-steps.el new file mode 100644 index 0000000..c6ffa8b --- /dev/null +++ b/features/step-definitions/nnreddit-steps.el @@ -0,0 +1,124 @@ +(When "I kill all rpc processes$" + (lambda () + (nnreddit-request-close))) + +(When "I hide tokens$" + (lambda () + (setq nnreddit--python-module-extra-args '("--token-file" "/dev/null")))) + +(When "^eval \"\\(.*\\)\"$" + (lambda (command) + (eval (car (read-from-string command))))) + +(When "I unhide tokens$" + (lambda () + (setq nnreddit--python-module-extra-args nil))) + +(When "^rpc \"\\(.*\\)\" returns \"\\(.*\\)\"$" + (lambda (command result) + (should (string= result (nnreddit-rpc-call nil nil command))))) + +(When "^I should be in buffer like \"\\(.+\\)\"$" + (lambda (prefix) + (should (string-prefix-p prefix (buffer-name))))) + +(When "^I goto group \"\\(.*\\)\"$" + (lambda (group) + (Given "I start an action chain") + (And "I press \"R g\"") + (And "I type \"%s\"" group) + (And "I execute the action chain") + (Then "I should be in buffer like \"*Summary nnreddit:\""))) + +(When "^I go to string \"\\(.+\\)\"$" + (lambda (string) + (goto-char (point-min)) + (let ((search (re-search-forward string nil t)) + (message "Can not go to string '%s' since it does not exist in the current buffer: %s")) + (cl-assert search nil message string (buffer-string))) + (backward-char (length string)))) + +(When "^I clear buffer \"\\(.*\\)\"$" + (lambda (buffer) + (with-current-buffer buffer + (let ((inhibit-read-only t)) + (erase-buffer))))) + +(When "^I dump buffer" + (lambda () (message "%s" (buffer-string)))) + +(Then "^protected see message \"\\(.+\\)\"$" + (lambda (message) + (let ((msg "Expected '%s' to be included in the list of printed messages, but was not.")) + (setq message (s-replace "\\\"" "\"" message)) + (cl-assert (-contains? (-map (lambda (s) (if (stringp s) (s-trim s) "")) ecukes-message-log) message) nil msg message)))) + +(When "^gnus \\(try \\)?start\\(\\)$" + (lambda (demote _workaround) + (aif (get-buffer gnus-group-buffer) + (switch-to-buffer it) + (if-demote demote + (When "I call \"gnus\"") + (Then "I should be in buffer \"%s\"" gnus-group-buffer))))) + +(When "^gnus stop$" + (lambda () + (aif (get-buffer gnus-group-buffer) + (progn (switch-to-buffer it) + (And "I press \"q\"") + (switch-to-buffer "*scratch*"))))) + +(When "^begin recording \"\\(.+\\)\"$" + (lambda (cassette-prefix) + (should (nnreddit-rpc-call nil nil "recording_begin" cassette-prefix)))) + +(When "^end recording \"\\(.+\\)\"$" + (lambda (cassette-prefix) + (should (nnreddit-rpc-call nil nil "recording_end" cassette-prefix)))) + +(When "^end recordings$" + (lambda () + (should (nnreddit-rpc-call nil nil "recording_end")))) + +(When "^I open latest \"\\(.+\\)\"$" + (lambda (relative-prefix) + (let* ((prefix (concat (file-name-as-directory gnus-home-directory) + relative-prefix)) + (dir (file-name-directory prefix)) + (base (file-name-base prefix)) + (alist + (directory-files-and-attributes dir t (regexp-quote base) t)) + (sofar (cl-first alist)) + (most-recent (dolist (cand alist (car sofar)) + (if (> (float-time (nth 5 (cdr cand))) + (float-time (nth 5 (cdr sofar)))) + (setq sofar cand))))) + (find-file-literally most-recent)))) + +(When "^I wait \\([.0-9]+\\) seconds?$" + (lambda (seconds) + (sleep-for (string-to-number seconds)))) + +(When "^I wait for buffer to\\( not\\)? say \"\\(.+\\)\"$" + (lambda (negate bogey) + (nnreddit-test-wait-for + (lambda () + (let ((says (s-contains? (s-replace "\\n" "\n" bogey) (buffer-string)))) + (revert-buffer :ignore-auto :noconfirm) + (if negate (not says) says))) + nil 5000 1000))) + +;; (When "^I scuzz \"\\(.+\\)\"$" +;; (lambda (buffer) +;; (let ((v (vconcat [?\C-x ?b] (string-to-vector buffer)))) +;; (princ (format "holla %s %s %s" (string-to-vector buffer) v (key-binding buffer))) +;; (execute-kbd-macro (string-to-vector buffer)) +;; (execute-kbd-macro v)))) + +(When "^emacs26 cannot do action chain \"\\(.+\\)\"$" + (lambda (keys) + (let ((vkeys (seq-concatenate 'vector (mapcar #'string-to-char (split-string keys "[ ]"))))) + (condition-case err + (execute-kbd-macro vkeys) + (error (message "emacs26 cannot do action chain: %s" + (error-message-string err))))))) diff --git a/features/support/env.el b/features/support/env.el new file mode 100644 index 0000000..257a2ba --- /dev/null +++ b/features/support/env.el @@ -0,0 +1,53 @@ +(require 'ert) +(require 'cl-lib) +(require 'espuds) +(require 'f) + +(let* ((support-path (f-dirname load-file-name)) + (root-path (f-parent (f-parent support-path)))) + (add-to-list 'load-path (concat root-path "/lisp")) + (add-to-list 'load-path (concat root-path "/tests"))) + +(require 'nnreddit-test) + +(defvar nnreddit--current-feature) +(add-hook 'ecukes-reporter-before-feature-hook + (lambda (feature) + (-when-let* ((intro (ecukes-feature-intro feature)) + (header (ecukes-intro-header intro))) + (setq nnreddit--current-feature header)))) + +(defmacro if-demote (demote &rest forms) + (declare (debug t) (indent 1)) + `(if ,demote + (with-demoted-errors "demoted: %s" + ,@forms) + ,@forms)) + +(defun cleanup () + (let* ((newsrc-file (if (boundp 'gnus-current-startup-file) + (symbol-value 'gnus-current-startup-file) + (when (boundp 'gnus-dot-newsrc) + (symbol-value 'gnus-dot-newsrc)))) + (quick-file (concat newsrc-file ".eld"))) + (when (file-exists-p quick-file) + (message "Deleting %s" quick-file) + (delete-file quick-file)))) + +(Setup + (custom-set-variables '(gnus-background-get-unread-articles nil) + '(canlock-password "huh?"))) + +(After + (setq nnreddit--whoami nil)) + +(Teardown + (cleanup)) + +(Fail + (if noninteractive + (with-demoted-errors "demote: %s" + (Then "end recordings") + (Teardown)) + (backtrace) + (keyboard-quit))) ;; useful to prevent emacs from quitting diff --git a/lisp/nnreddit-pkg.el b/lisp/nnreddit-pkg.el new file mode 100644 index 0000000..f68d1e3 --- /dev/null +++ b/lisp/nnreddit-pkg.el @@ -0,0 +1,11 @@ +(define-package "nnreddit" + "0.2.1" + "Gnus Backend For Reddit" + '((emacs "25.1") + (request "0.3.3") + (anaphora "1.0.4") + (dash "2.18.1") + (json-rpc "0.0.1") + (virtualenvwrapper "20151123") + (s "1.6.1")) + :url "https://github.com/dickmao/nnreddit") diff --git a/lisp/nnreddit-pkg.el.in b/lisp/nnreddit-pkg.el.in new file mode 100644 index 0000000..4bd4555 --- /dev/null +++ b/lisp/nnreddit-pkg.el.in @@ -0,0 +1,11 @@ +(define-package "nnreddit" + VERSION + "Gnus Backend For Reddit" + '((emacs "25.1") + (request "0.3.3") + (anaphora "1.0.4") + (dash "2.18.1") + (json-rpc "0.0.1") + (virtualenvwrapper "20151123") + (s "1.6.1")) + :url "https://github.com/dickmao/nnreddit") diff --git a/lisp/nnreddit.el b/lisp/nnreddit.el new file mode 100644 index 0000000..5007ab0 --- /dev/null +++ b/lisp/nnreddit.el @@ -0,0 +1,1578 @@ +;;; nnreddit.el --- Gnus backend for reddit -*- lexical-binding: t; coding: utf-8 -*- + +;; Copyright (C) 2019 The Authors of nnreddit.el + +;; Authors: dickmao +;; Keywords: news +;; URL: https://github.com/dickmao/nnreddit + +;; This file is NOT part of GNU Emacs. + +;; This program is free software: you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with nnreddit.el. If not, see . + +;;; Commentary: + +;; A Gnus backend for Reddit. + +;;; Code: + +;; Gnus Reddit +;; ---- ------ +;; list subscribed subreddits +;; group subreddit +;; threads threads +;; root article link or submission +;; articles {root article, comments} + +(require 'nnoo) +(require 'gnus) +(require 'gnus-start) +(require 'gnus-art) +(require 'gnus-sum) +(require 'gnus-msg) +(require 'gnus-cite) +(require 'gnus-srvr) +(require 'gnus-cache) +(require 'gnus-bcklg) +(require 'gnus-score) +(require 'python) +(require 'subr-x) +(require 'json-rpc) +(require 'mm-url) +(require 'cl-lib) +(require 'virtualenvwrapper) +(require 'anaphora) +(require 'request) +(require 'url-http) +(require 'gnus-topic) + +(defvar nnreddit--groups nil + "Someone asked to avoid re-requesting joined subreddits.") + +(nnoo-declare nnreddit) + +(eval-when-compile + (require 'subr-x) + (unless (fboundp 'libxml-parse-xml-region) + (display-warning 'nnreddit "nnreddit requires libxml support"))) + +(defalias 'nnreddit-string-trim-right + (lambda (string &optional regexp) + "Trim STRING of trailing string matching REGEXP. +REGEXP defaults to \"[ \\t\\n\\r]+\"." + (if (string-match (concat "\\(?:" (or regexp "[ \t\n\r]+") "\\)\\'") string) + (replace-match "" t t string) + string))) + +(defgroup nnreddit nil "A Gnus backend for Reddit." + :group 'gnus) + +(defvar nnreddit--whoami nil "To populate with reddit login.") + +(defcustom nnreddit-max-render-bytes 300e3 + "`quoted-printable-encode-region' bogs when spyware gets out of hand." + :type 'integer + :group 'nnreddit) + +(defcustom nnreddit-render-submission t + "If non-nil, follow link upon `gnus-summary-select-article'. + +Otherwise, just display link." + :type 'boolean + :group 'nnreddit) + +(defmacro nnreddit--gethash (string hashtable) + "Get corresponding value of STRING from HASHTABLE. +Starting in emacs-src commit c1b63af, Gnus moved from obarrays to +normal hashtables." + `(,(if (fboundp 'gnus-gethash-safe) + 'gnus-gethash-safe + 'gethash) + ,string ,hashtable)) + +(defmacro nnreddit--sethash (string value hashtable) + "Set corresponding value of STRING to VALUE in HASHTABLE. +Starting in emacs-src commit c1b63af, Gnus moved from obarrays to +normal hashtables." + `(,(if (fboundp 'gnus-sethash) + 'gnus-sethash + 'puthash) + ,string ,value ,hashtable)) + +(defcustom nnreddit-python-command "python3.8" + "Python executable name." + :type (append '(choice) + (let (result) + (dolist (py '("python3.7" "python3.8" "python3.9" "python3.10") + result) + (setq result (append result `((const :tag ,py ,py)))))) + '((string :tag "Other"))) + :set (lambda (symbol value) + (set-default symbol value) + (unless (string-match-p + "\\b3" + (shell-command-to-string (format "%s --version" value))) + ;; emacs's arcane custom infra swallows `error' here + (display-warning 'nnreddit + "nnreddit-python-command: must customize to python 3.x" + :error))) + :group 'nnreddit) + +(defcustom nnreddit-venv + (let* ((library-directory (file-name-directory (locate-library "nnreddit"))) + (parent-directory (file-name-directory (directory-file-name library-directory))) + (requirements-directory + (file-name-directory (locate-library "requirements.txt" nil + (list library-directory parent-directory)))) + (defacto-version (file-name-nondirectory + (directory-file-name requirements-directory))) + (venv-id (concat defacto-version "-" nnreddit-python-command)) + (result (concat (file-name-as-directory venv-location) venv-id)) + (requirements (concat requirements-directory "requirements.txt")) + (install-args (if (file-exists-p requirements) + (list "-r" requirements) + (list "virtualenv"))) + (already-in-venv + (not (zerop (apply #'call-process nnreddit-python-command + nil nil nil + (list + "-c" + "import sys; sys.exit(hasattr(sys, 'real_prefix'))"))))) + (pip-args (append (list "-m" "pip" "install") + (unless already-in-venv (list "--user")) + install-args)) + (pip-status + (apply #'call-process nnreddit-python-command nil nil nil + pip-args))) + (gnus-message 7 "nnreddit-venv: %s %s" nnreddit-python-command + (mapconcat 'identity pip-args " ")) + (cond ((numberp pip-status) + (unless (zerop pip-status) + (gnus-message 3 "nnreddit-venv: pip install exit %s" pip-status))) + (t (gnus-message 3 "nnreddit-venv: pip install signal %s" pip-status))) + (gnus-message 7 "nnreddit-venv: %s" result) + (unless (file-exists-p venv-location) + (make-directory venv-location)) + (cond ((member venv-id (split-string (venv-list-virtualenvs))) result) + (t (gnus-message 5 "nnreddit-venv: installing venv to %s..." result) + (condition-case err + (progn + (venv-mkvirtualenv-using nnreddit-python-command venv-id) + (venv-with-virtualenv-shell-command + venv-id + ;; `python` and not `nnreddit-python-command` because + ;; venv normalizes the executable to `python`. + (format "cd %s && python setup.py install" requirements-directory)) + (gnus-message 5 "nnreddit-venv: installing venv to %s...done" result) + result) + (error (when (venv-is-valid venv-id) + (condition-case rmerr + (venv-rmvirtualenv venv-id) + (error (gnus-message 3 (format "venv-rmvirtualenv: %s" + (error-message-string rmerr)))))) + (gnus-message 3 (format "nnreddit-venv: %s" + (error-message-string err))) + "/dev/null"))))) + "Full path to venv directory. + +To facilitate upgrades, the name gloms a de facto version (the directory +name where this file resides) and the `nnreddit-python-command'." + :type '(choice (string :tag "Directory" (get (quote nnreddit-env) (quote standard-value))) + (const :tag "Development" nil)) + :group 'nnreddit) + +(defmacro nnreddit-define-keys (km prefix parent &rest binds) + "Define keymap KM with prefix PREFIX and parent PARENT with bindings BINDS." + (declare (indent defun)) + (if (get 'gnus-define-keys 'byte-obsolete-info) + `(progn + (setq ,km nil) + (define-prefix-command ',km) + (define-key ,parent ,prefix ,km) + (cl-loop for (k v) on ',binds by (function cddr) + do (define-key ,km k v))) + `(gnus-define-keys (,km ,prefix ,parent) ,@binds))) + +(defvar nnreddit-group-mode-map (make-sparse-keymap)) + +(nnreddit-define-keys nnreddit-group-mode-map "R" gnus-group-mode-map + "g" nnreddit-goto-group) + +(defvar nnreddit-summary-voting-map + (let ((map (make-sparse-keymap))) + map) + "Voting map.") + +(defvar nnreddit-summary-mode-map + (let ((map (make-sparse-keymap))) + (define-key map "r" 'gnus-summary-followup) + (define-prefix-command 'nnreddit-summary-voting-map) + (define-key map "R" 'nnreddit-summary-voting-map) + (define-key nnreddit-summary-voting-map "0" 'nnreddit-novote) + (define-key nnreddit-summary-voting-map "-" 'nnreddit-downvote) + (define-key nnreddit-summary-voting-map "=" 'nnreddit-upvote) + (define-key nnreddit-summary-voting-map "+" 'nnreddit-upvote) + map)) + +(defvar nnreddit-article-mode-map + (copy-keymap nnreddit-summary-mode-map)) ;; how does Gnus do this? + +(defcustom nnreddit-log-rpc nil + "Turn on PRAW logging." + :type 'boolean + :group 'nnreddit) + +(defcustom nnreddit-rpc-request-timeout 60 + "Timeout for talking to PRAW." + :type 'integer + :group 'nnreddit) + +(defcustom nnreddit-localhost "127.0.0.1" + "Some users keep their browser in a separate domain. +Do not set this to \"localhost\" as a numeric IP is required +for the oauth handshake." + :type 'string + :group 'nnreddit) + +(defvar nnreddit-rpc-log-filename nil) + +(defvar nnreddit--python-module-extra-args nil "Primarily for testing.") + +(define-minor-mode nnreddit-article-mode + "Minor mode for nnreddit articles. +Disallow `gnus-article-reply-with-original'. + +\\{gnus-article-mode-map}" + :lighter " Reddit" + :keymap nnreddit-article-mode-map) + +(define-minor-mode nnreddit-summary-mode + "Disallow \"reply\" commands in `gnus-summary-mode-map'. + +\\{nnreddit-summary-mode-map}" + :lighter " Reddit" + :keymap nnreddit-summary-mode-map) + +(define-minor-mode nnreddit-group-mode + "Add `R-g' go-to-subreddit binding to *Group*. + +\\{nnreddit-group-mode-map}" + :keymap nnreddit-group-mode-map + :interactive (gnus-group-mode)) + +(cl-defun nnreddit-novote () + "Retract vote." + (interactive) + (nnreddit-vote-current-article 0)) + +(cl-defun nnreddit-downvote () + "Downvote the article in current buffer." + (interactive) + (nnreddit-vote-current-article -1)) + +(cl-defun nnreddit-upvote () + "Upvote the article in current buffer." + (interactive) + (nnreddit-vote-current-article 1)) + +(defvar nnreddit--seq-map-indexed + (if (fboundp 'seq-map-indexed) + #'seq-map-indexed + (lambda (function sequence) + (let ((index 0)) + (seq-map (lambda (elt) + (prog1 + (funcall function elt index) + (setq index (1+ index)))) + sequence))))) + +(defmacro nnreddit--normalize-server () + "Disallow \"server\" from being empty string, which is unsettling. +Normalize it to \"nnreddit-default\"." + `(let ((canonical "nnreddit-default")) + (when (equal server "") + (setq server nil)) + (unless server + (setq server canonical)) + (unless (string= server canonical) + (error "`nnreddit--normalize-server': multiple servers unsupported!")))) + +(defvar nnreddit-headers-hashtb (gnus-make-hashtable) + "Group -> merged submissions and comments sorted by created time.") + +(defvar nnreddit-refs-hashtb (gnus-make-hashtable) + "Who replied to whom (global over all entries).") + +(defvar nnreddit-authors-hashtb (gnus-make-hashtable) + "For fast lookup of parent-author (global over all entries).") + +(defsubst nnreddit-get-headers (group) + "List headers from GROUP." + (nnreddit--gethash group nnreddit-headers-hashtb)) + +(defun nnreddit-find-header (group id) + "O(n) search of GROUP headers for ID." + (-when-let* ((headers (nnreddit-get-headers group)) + (found (seq-position headers id + (lambda (plst id) + (equal id (plist-get plst :id)))))) + (nnreddit--get-header (1+ found) group))) + +(defsubst nnreddit-refs-for (name &optional depth) + "Get message ancestry for NAME up to DEPTH." + (unless depth + (setq depth most-positive-fixnum)) + (when (> depth 0) + (nreverse (cl-loop with parent-id = (nnreddit--gethash name nnreddit-refs-hashtb) + for level = 0 then level + for name = parent-id then + (nnreddit--gethash name nnreddit-refs-hashtb) + until (null name) + collect name + until (>= (cl-incf level) depth))))) + +(defsubst nnreddit-sort-append-headers (group &rest lvp) + "Append to hashed headers of GROUP the LVP (list of vector of plists)." + (nnreddit--sethash group (nconc (nnreddit-get-headers group) + (apply #'nnreddit--sort-headers lvp)) + nnreddit-headers-hashtb)) + +(defvar nnreddit-directory (nnheader-concat gnus-directory "reddit") + "Where to retrieve last read state.") + +(defvar nnreddit-processes nil + "Garbage collect PRAW processes.") + +(nnoo-define-basics nnreddit) + +(defsubst nnreddit-rpc-call (server generator_kwargs method &rest args) + "Make jsonrpc call to SERVER with GENERATOR_KWARGS using METHOD ARGS. +Process stays the same, but the jsonrpc connection (a cheap struct) gets +reinstantiated with every call." + (nnreddit--normalize-server) + (-when-let* ((proc (nnreddit-rpc-get server)) + (connection (json-rpc--create :process proc + :host nnreddit-localhost + :id-counter 0))) + (condition-case-unless-debug err + (apply #'nnreddit-rpc-request connection generator_kwargs method args) + (error (gnus-message 3 "nnreddit-rpc-call: %s" (error-message-string err)) + nil)))) + +(defsubst nnreddit--populate-whoami () + "Get login name from PRAW user_attr." + (unless nnreddit--whoami + (setq nnreddit--whoami + (aand (nnreddit-rpc-call nil nil "user_attr" "name") + (and (stringp it) (not (zerop (length it))) it)))) + nnreddit--whoami) + +(defvar nnreddit--current-feature) +(defmacro nnreddit--test-supports-inbox (&rest body) + "Run BODY if not testing or testfile later than 20201124." + `(when (or (not (boundp 'nnreddit--current-feature)) + (>= (string-to-number nnreddit--current-feature) 20201124)) + ,@body)) + +(defun nnreddit--inbox-realname () + "Return /u/[nnreddit--whoami]." + (nnreddit--test-supports-inbox (nnreddit--populate-whoami)) + (when (stringp nnreddit--whoami) (concat "/u/" nnreddit--whoami))) + +(defun nnreddit-goto-group (realname) + "Jump to the REALNAME subreddit." + (interactive (list (read-no-blanks-input "Subreddit: r/"))) + (let* ((canonical (nnreddit-rpc-call nil nil "canonical_spelling" realname)) + (group (gnus-group-full-name canonical (list "nnreddit")))) + (if group + (progn (gnus-activate-group group t) + (gnus-group-read-group t t group)) + (gnus-message 3 "nnreddit-goto-group: failed canonical_spelling of %s" realname)))) + +(defsubst nnreddit--current-article-number () + "`gnus-article-current' is a global variable that gets clobbered." + (or (cdr gnus-message-group-art) + (and (gnus-buffer-live-p gnus-summary-buffer) + (with-current-buffer gnus-summary-buffer + (cdr gnus-article-current))))) + +(defsubst nnreddit--current-group () + "`gnus-article-current' is a global variable that gets clobbered." + (or (car gnus-message-group-art) + (with-current-buffer gnus-summary-buffer + (car gnus-article-current)))) + +(defun nnreddit-vote-current-article (vote) + "VOTE is +1, -1, 0." + (unless gnus-newsgroup-name + (error "No current newgroup")) + (if-let ((article-number (or (nnreddit--current-article-number) + (with-current-buffer gnus-summary-buffer + (gnus-summary-article-number))))) + (let* ((header (nnreddit--get-header + article-number + (gnus-group-real-name (or (nnreddit--current-group) + gnus-newsgroup-name)))) + (orig-score (format "%s" (plist-get header :score))) + (new-score (if (zerop vote) orig-score + (concat orig-score " " + (if (> vote 0) "+" "") + (format "%s" vote)))) + (article-name (plist-get header :name))) + (save-excursion + (save-window-excursion + (with-current-buffer gnus-summary-buffer + (if (eq (gnus-summary-article-number) (cdr gnus-article-current)) + (progn (with-current-buffer gnus-article-buffer + (let ((inhibit-read-only t)) + (nnheader-replace-header "Score" new-score))) + (nnreddit-rpc-call nil nil "vote" article-name vote)) + (message "Open the article before voting")))))) + (error "No current article"))) + +(defsubst nnreddit--gate (&optional group) + "Apply our minor modes only when the following conditions hold for GROUP." + (unless group + (setq group gnus-newsgroup-name)) + (and (stringp group) + (listp (gnus-group-method group)) + (eq 'nnreddit (car (gnus-group-method group))))) + +(defsubst nnreddit--message-gate () + "In `message-mode', `gnus-newsgroup-name' could be anything. +So we cannot use `nnreddit--gate'." + (nnreddit--gate (car-safe gnus-message-group-art))) + +(defun nnreddit-update-subscription (group level oldlevel &optional _previous) + "Nnreddit `gnus-group-change-level' callback of GROUP to LEVEL from OLDLEVEL." + (when (nnreddit--gate group) + (let ((old-subbed-p (<= oldlevel gnus-level-subscribed)) + (new-subbed-p (<= level gnus-level-subscribed))) + (unless (eq old-subbed-p new-subbed-p) + ;; afaict, praw post() doesn't return status + (setq nnreddit--groups nil) + (if new-subbed-p + (nnreddit-rpc-call nil nil "subscribe" (gnus-group-real-name group)) + (nnreddit-rpc-call nil nil "unsubscribe" (gnus-group-real-name group))))))) + +(defun nnreddit-rpc-kill (&optional server) + "Kill the jsonrpc process named SERVER." + (interactive (list nil)) + (nnreddit--normalize-server) + (let (new-processes) + (mapc (lambda (proc) (if (and server (not (string= server (process-name proc)))) + (push proc new-processes) + (delete-process proc))) + nnreddit-processes) + (setq nnreddit-processes new-processes))) + +(deffoo nnreddit-request-close () + (nnreddit-close-server) + t) + +(deffoo nnreddit-request-type (_group &optional _article) + 'news) + +(deffoo nnreddit-server-opened (&optional server) + (nnreddit--normalize-server) + (setq nnreddit-processes + (cl-remove-if-not (lambda (proc) (string= server (process-name proc))) + nnreddit-processes))) + +(deffoo nnreddit-status-message (&optional server) + (nnreddit--normalize-server) + "") + +(deffoo nnreddit-open-server (_server &optional _defs) + t) + +(deffoo nnreddit-close-group (_group &optional server) + (nnreddit--normalize-server) + t) + +(defmacro nnreddit--with-group (group &rest body) + "Disambiguate GROUP if it's empty and execute BODY." + (declare (debug (form &rest form)) + (indent 1)) + `(when-let ((group (or ,group (gnus-group-real-name gnus-newsgroup-name))) + (gnus-newsgroup-name (unless (zerop (length group)) + (gnus-group-full-name group "nnreddit:")))) + ,@body)) + +(defun nnreddit--get-header (article-number &optional group) + "Get header indexed ARTICLE-NUMBER for GROUP." + (nnreddit--with-group group + (let ((headers (nnreddit-get-headers group))) + (elt headers (1- article-number))))) + +(defun nnreddit--get-body (name &optional group server) + "Get full text of submission or comment NAME for GROUP at SERVER." + (nnreddit--normalize-server) + (if name + (nnreddit--with-group group + (nnreddit-rpc-call server nil "body" group name)) + (gnus-message 3 "nnreddit--get-body: null name\n%s" + (with-temp-buffer + (backtrace) + (buffer-string))))) + +(defsubst nnreddit-hack-name-to-id (name) + "Get x from t1_x (NAME)." + (cl-subseq name 3)) + +(defsubst nnreddit--br-tagify (body) + "Reddit-html BODY shies away from
. Should it?" + (replace-regexp-in-string "\n" "
" body)) + +(defsubst nnreddit--citation-wrap (author body) + "Cite AUTHOR using `gnus-message-cite-prefix-regexp' before displaying BODY. + +Originally written by Paul Issartel." + (with-temp-buffer + (insert body) + (mm-url-remove-markup) + (mm-url-decode-entities) + (fill-region (point-min) (point-max)) + (let* ((trimmed-1 (replace-regexp-in-string "\\(\\s-\\|\n\\)+$" "" (buffer-string))) + (trimmed (replace-regexp-in-string "^\\(\\s-\\|\n\\)+" "" trimmed-1))) + (concat author " wrote:
\n" + "
\n"
+              (cl-subseq (replace-regexp-in-string "\n" "\n> " (concat "\n" trimmed)) 1)
+              "\n
\n\n")))) + +(defun nnreddit-add-entry (hashtb e field) + "Add to HASHTB the pair consisting of entry E's name to its FIELD." + (nnreddit--sethash (plist-get e :name) (plist-get e field) hashtb)) + +(defun nnreddit--filter-after (after-this vop) + "Get elements created AFTER-THIS in VOP (vector of plists)." + (cl-loop for elt-idx in (funcall nnreddit--seq-map-indexed + (lambda (elt idx) (cons elt idx)) vop) + until (>= (plist-get (car elt-idx) :created_utc) after-this) + finally return (seq-drop vop (or (cdr elt-idx) 0)))) + +(defsubst nnreddit--base10 (base36) + "Convert BASE36 reddit name encoding to a base10 integer." + (apply #'+ (funcall nnreddit--seq-map-indexed + (lambda (elt idx) + (* (expt 36 idx) + (if (>= elt ?a) (+ 10 (- elt ?a)) (- elt ?0)))) + (reverse base36)))) + +(deffoo nnreddit-request-group-scan (group &optional server _info) + "\\[gnus-group-get-new-news-this-group] from *Group* calls this. +Set flag for the ensuing `nnreddit-request-group' to avoid going out +to PRAW yet again." + (nnreddit--normalize-server) + (nnreddit--with-group group + (gnus-message 5 "nnreddit-request-group-scan: scanning %s..." group) + (gnus-activate-group gnus-newsgroup-name t) + (gnus-message 5 "nnreddit-request-group-scan: scanning %s...done" group) + t)) + +(defsubst nnreddit--shift-ranges (delta ranges) + "Shift back by DELTA the elements of RANGES, removing any negative entries." + (cl-remove-if-not (lambda (e) + (cond ((numberp e) (> e 0)) + (t (> (cdr e) 0)))) + (mapcar (lambda (e) + (cond ((numberp e) (- e delta)) + (t `(,(max 1 (- (car e) delta)) . + ,(- (cdr e) delta))))) + ranges))) + +;; gnus-group-select-group +;; gnus-group-read-group +;; gnus-summary-read-group +;; gnus-summary-read-group-1 +;; gnus-summary-setup-buffer +;; sets gnus-newsgroup-name +;; gnus-select-newsgroup +;; gnus-request-group +;; nnreddit-request-group +(deffoo nnreddit-request-group (group &optional server _fast info) + (nnreddit--normalize-server) + (nnreddit--with-group group + (let* ((info + (or info + (gnus-get-info gnus-newsgroup-name) + (list gnus-newsgroup-name + gnus-level-default-subscribed + nil nil + (gnus-method-simplify (gnus-group-method gnus-newsgroup-name))))) + (params (gnus-info-params info)) + (newsrc-read-ranges (gnus-info-read info)) + (newsrc-mark-ranges (gnus-info-marks info)) + (newsrc-seen-cons (gnus-group-parameter-value params 'last-seen t)) + (newsrc-seen-index (car newsrc-seen-cons)) + (newsrc-seen-id (cdr newsrc-seen-cons)) + (headers (nnreddit-get-headers group)) + (num-headers (length headers)) + (status (format "211 %d %d %d %s" num-headers 1 num-headers group))) + (gnus-message 7 "nnreddit-request-group: %s" status) + (nnheader-insert "%s\n" status) + + ;; remind myself how this works: + ;; old-praw (1 - 20=emkdjrx) + ;; read-ranges (1 - 10) (15 - 20) + ;; unread-ranges (11, 12, 13, 14) + ;; new-praw (12 13 14 15 16 17 18 19 20 - 100) + ;; 20=emkdjrx in old-praw is 9=emkdjrx in new-praw. index shift is 20-9=+11 + ;; new-unread-ranges (0, 1, 2, 3) + ;; new-read-ranges (4 - 9) + (when (gnus-group-entry gnus-newsgroup-name) + ;; seen-indices are one-indexed ! + (let* ((newsrc-seen-index-now + (if (or (not (stringp newsrc-seen-id)) + (zerop (nnreddit--base10 newsrc-seen-id))) + 1 + (cl-loop with cand + for plst in (reverse headers) + for i = (length headers) then (1- i) + if (= (nnreddit--base10 (plist-get plst :id)) + (nnreddit--base10 newsrc-seen-id)) + do (gnus-message 7 "nnreddit-request-group: exact=%s" i) + and return i ;; do not go to finally + end + if (> (nnreddit--base10 (plist-get plst :id)) + (nnreddit--base10 newsrc-seen-id)) + do (gnus-message 7 "nnreddit-request-group: cand=%s" + (setq cand i)) + end + finally return (or cand 0)))) + (updated-seen-index (- num-headers + (aif (seq-position + (reverse headers) nil + (lambda (plst _e) + (not (plist-get plst :title)))) + it + -1))) + (updated-seen-id (awhen (nth (1- updated-seen-index) headers) + (plist-get it :id))) + (delta (if newsrc-seen-index + (max 0 (- newsrc-seen-index newsrc-seen-index-now)) + 0)) + (newsrc-read-ranges-shifted + (nnreddit--shift-ranges delta newsrc-read-ranges)) + (newsrc-mark-ranges-shifted + (mapcar (lambda (what-ranges) + (cl-case (car what-ranges) + (seen `(seen (1 . ,num-headers))) + (t (cons (car what-ranges) + (nnreddit--shift-ranges delta (cdr what-ranges)))))) + newsrc-mark-ranges))) + (gnus-message 7 "nnreddit-request-group: seen-id=%s seen-index=%s -> %s" + newsrc-seen-id newsrc-seen-index newsrc-seen-index-now) + (gnus-message 7 "nnreddit-request-group: seen-id-to-be=%s seen-index-to-be=%s delta=%d" + updated-seen-id updated-seen-index delta) + (gnus-message 7 "nnreddit-request-group: read-ranges=%s shifted-read-ranges=%s" + newsrc-read-ranges newsrc-read-ranges-shifted) + (gnus-message 7 "nnreddit-request-group: mark-ranges=%s shifted-mark-ranges=%s" + newsrc-mark-ranges newsrc-mark-ranges-shifted) + (setf (gnus-info-read info) newsrc-read-ranges-shifted) + (gnus-info-set-marks info newsrc-mark-ranges-shifted) + (when updated-seen-id + (while (assq 'last-seen params) + (gnus-alist-pull 'last-seen params)) + (gnus-info-set-params + info + (cons `(last-seen ,updated-seen-index . ,updated-seen-id) params) + t)) + (unless (listp (gnus-info-method info)) + (gnus-info-set-method info (gnus-group-method gnus-newsgroup-name) t)) + (gnus-set-info gnus-newsgroup-name info) + (gnus-message 7 "nnreddit-request-group: new info=%s" info)))) + t)) + +(deffoo nnreddit-request-scan (&optional group server) + (nnreddit--normalize-server) + (when group + (nnreddit--with-group group + (cond ((string= group (nnreddit--inbox-realname)) + (let ((inbox (nnreddit-rpc-call server nil "inboxes" nnreddit--whoami))) + (gnus-message 5 "nnreddit-request-scan: %s: +%s inbox" + group (length inbox)) + (seq-doseq (e inbox) + (nnreddit-add-entry nnreddit-refs-hashtb e :parent_id) + (nnreddit-add-entry nnreddit-authors-hashtb e :author)) + (nnreddit-sort-append-headers group inbox))) + (t + (let* ((comments (nnreddit-rpc-call server nil "comments" group)) + (raw-submissions (nnreddit-rpc-call server nil "submissions" group)) + (submissions (if (zerop (length comments)) + raw-submissions + (nnreddit--filter-after + (- (plist-get (aref comments 0) :created_utc) 7200) + raw-submissions)))) + (seq-doseq (e comments) + (nnreddit-add-entry nnreddit-refs-hashtb e :parent_id)) ;; :parent_id is fullname + (seq-doseq (e (vconcat submissions comments)) + (nnreddit-add-entry nnreddit-authors-hashtb e :author)) + (gnus-message 5 "nnreddit-request-scan: %s: +%s comments +%s submissions" + group (length comments) (length submissions)) + (nnreddit-sort-append-headers group submissions comments))))))) + +(defsubst nnreddit--make-message-id (fullname) + "Construct a valid Gnus message id from FULLNAME." + (format "<%s@reddit.com>" fullname)) + +(defsubst nnreddit--make-references (fullname) + "Construct a space delimited string of message ancestors of FULLNAME." + (mapconcat (lambda (ref) (nnreddit--make-message-id ref)) + (nnreddit-refs-for fullname) " ")) + +(defsubst nnreddit--make-header (article-number &optional group) + "Construct full headers of articled indexed ARTICLE-NUMBER in GROUP." + (let* ((header (nnreddit--get-header article-number group)) + (score (plist-get header :score)) + (num-comments (plist-get header :num_comments))) + (make-full-mail-header + article-number + (or (plist-get header :title) + (concat "Re: " (plist-get header :link_title))) + (plist-get header :author) + (format-time-string "%a, %d %h %Y %T %z (%Z)" (plist-get header :created_utc)) + (nnreddit--make-message-id (plist-get header :name)) + (nnreddit--make-references (plist-get header :name)) + 0 0 nil + (append `((X-Reddit-Name . ,(plist-get header :name))) + `((X-Reddit-ID . ,(plist-get header :id))) + (awhen (plist-get header :permalink) + `((X-Reddit-Permalink . ,it))) + (and (integerp score) + `((X-Reddit-Score . ,(number-to-string score)))) + (and (integerp num-comments) + `((X-Reddit-Comments . ,(number-to-string num-comments)))))))) + +(cl-defun nnreddit--request-error (caller + &key response symbol-status error-thrown + &allow-other-keys + &aux (response-status + (request-response-status-code response))) + "Refer to CALLER when reporting a submit error. +Also report http code of RESPONSE, which is distinct from SYMBOL-STATUS, +and ERROR-THROWN. The http code is stored in RESPONSE-STATUS." + (gnus-message 3 "%s %s: http status %s, %s" + caller symbol-status response-status + (error-message-string error-thrown))) + +(cl-defun nnreddit--request (caller + url + &rest attributes &key parser (backend 'url-retrieve) + &allow-other-keys) + "Prefix errors with CALLER when executing synchronous request to URL. +Request shall contain ATTRIBUTES, one of which is PARSER of the response, +if provided (shall default to verbatim dump of response, if not). +BACKEND can be curl (defaults to `url-retrieve')." + (unless parser + (setq attributes (nconc attributes (list :parser #'buffer-string)))) + (setq attributes (cl-loop for (k v) on attributes by (function cddr) + unless (eq k :backend) + collect k and collect v)) + (let ((request-backend backend)) + (apply #'request url + :sync t + :error (apply-partially #'nnreddit--request-error caller) + attributes))) + +(cl-defun nnreddit--content-handler + (&key data response &allow-other-keys + &aux (header (request-response--raw-header response))) + "Wrap DATA in uri if RESPONSE has HEADER that is image." + (let* ((_ (string-match "Content-Type:\\s-*\\([[:graph:]]+\\)" header)) + (content-type (match-string 1 header))) + (cl-destructuring-bind (type _subtype) (split-string content-type "/") + (cond ((string= type "image") + (format "" + content-type + (base64-encode-string (encode-coding-string data 'binary) t))) + ((string= type "text") data) + (t (error "`nnreddit--content-handler': passing on %s" content-type)))))) + +(defmacro nnreddit--concat (thus-far &rest add) + "Assign to THUS-FAR the catenation of itself and ADD." + `(setq ,thus-far (apply #'concat ,thus-far (list ,@add)))) + +(deffoo nnreddit-request-article (article-number &optional group server buffer) + (nnreddit--normalize-server) + (nnreddit--with-group group + (with-current-buffer (or buffer nntp-server-buffer) + (erase-buffer) + (let* ((header (nnreddit--get-header article-number group)) + (mail-header (nnreddit--make-header article-number)) + (score (cdr (assq 'X-Reddit-Score (mail-header-extra mail-header)))) + (permalink (cdr (assq 'X-Reddit-Permalink (mail-header-extra mail-header)))) + (body (awhen (plist-get header :name) + (nnreddit--get-body it group server)))) + (when body + (insert + "Newsgroups: " group "\n" + "Subject: " (mail-header-subject mail-header) "\n" + "From: " (or (mail-header-from mail-header) "nobody") "\n" + "Date: " (mail-header-date mail-header) "\n" + "Message-ID: " (mail-header-id mail-header) "\n" + "References: " (mail-header-references mail-header) "\n" + (if permalink + (format "Archived-at: \n" + permalink) + "") + "Score: " score "\n" + "\n") + (mml-insert-multipart "alternative") + (mml-insert-tag 'part 'type "text/html" + 'disposition "inline" + 'charset "utf-8") + (save-excursion (mml-insert-tag '/part)) + (-when-let* + ((parent-name (plist-get header :parent_id)) ;; parent_id is full + (parent-author (or (nnreddit--gethash parent-name nnreddit-authors-hashtb) + "Someone")) + (parent-body (nnreddit--get-body parent-name group server))) + (insert (nnreddit--citation-wrap parent-author parent-body))) + (aif (and nnreddit-render-submission + (eq (plist-get header :is_self) :json-false) + (plist-get header :url)) + (condition-case err + (nnreddit--request + "nnreddit-request-article" it + :success + (lambda (&rest args) + (let ((data (apply #'nnreddit--content-handler args))) + (if (> (length data) nnreddit-max-render-bytes) + (insert (nnreddit--br-tagify body)) + (insert data))))) + (error (gnus-message 5 "nnreddit-request-article: %s %s" + it (error-message-string err)) + (insert (nnreddit--br-tagify body)))) + (insert (nnreddit--br-tagify body))) + (insert "\n") + (if (mml-validate) + (message-encode-message-body) + (gnus-message 2 "nnreddit-request-article: Invalid mml:\n%s" + (buffer-string))) + (cons group article-number)))))) + +(deffoo nnreddit-request-head (_id &optional _group _server) + "Demur. +Since `gnus-summary-refer-article' calls +`gnus-summary-select-article' on an on-demand retrieval, +`nnreddit--get-body' won't cut it." + nil) + +(deffoo nnreddit-retrieve-headers (article-numbers &optional group server _fetch-old) + (nnreddit--normalize-server) + (nnreddit--with-group group + (with-current-buffer nntp-server-buffer + (erase-buffer) + (dolist (i article-numbers) + (nnheader-insert-nov (nnreddit--make-header i group))) + 'nov))) + +(defsubst nnreddit--earliest-among (indices lvp) + "Return (list-to-iterate . next-earliest) from INDICES. +INDICES are thus far iterators. +LVP is a list of vectors of plists. +Used in the interleaving of submissions and comments." + (let (earliest next-earliest) + (dolist (plst-idx + (cl-remove-if-not #'car + (funcall nnreddit--seq-map-indexed + (lambda (plst idx) (cons plst idx)) + (seq-mapn + (lambda (v i) + (if (< i (length v)) (aref v i))) + lvp indices))) + (list (cdr earliest) + (awhen next-earliest + (plist-get (car it) :created_utc)))) + (cond ((null earliest) + (setq earliest plst-idx)) + ((< (plist-get (car plst-idx) :created_utc) + (plist-get (car earliest) :created_utc)) + (setq next-earliest earliest) + (setq earliest plst-idx)) + ((null next-earliest) + (setq next-earliest plst-idx)))))) + +(defun nnreddit--sort-headers (&rest lvp) + "Sort headers for LVP (list of vectors of plists)." + (let* ((indices (make-list (length lvp) 0)) + result) + (while (not (equal indices (mapcar #'length lvp))) + (cl-destructuring-bind (to-iterate bogey-created) + (nnreddit--earliest-among indices lvp) + (cl-loop with arr = (elt lvp to-iterate) + for j in (number-sequence (elt indices to-iterate) (1- (length arr))) + for plst = (aref arr j) + for created = (plist-get plst :created_utc) + until (> created (or bogey-created most-positive-fixnum)) + do (cl-incf (elt indices to-iterate)) + do (push plst result)))) + (nreverse result))) + +(deffoo nnreddit-close-server (&optional server _defs) + (nnreddit--normalize-server) + (condition-case err + (progn (nnreddit-rpc-kill server) t) + (error + (gnus-message 2 "nnreddit-close-server: %s" (error-message-string err)) + nil))) + +(deffoo nnreddit-request-list (&optional server) + (nnreddit--normalize-server) + (with-current-buffer nntp-server-buffer + (let ((groups (delq + nil + (or nnreddit--groups + (setq nnreddit--groups + (append (nnreddit-rpc-call server nil "user_subreddits") + (nnreddit--test-supports-inbox + (list (nnreddit--inbox-realname)))))))) + (newsrc (cl-mapcan (lambda (info) + (when (and (equal "nnreddit:" (gnus-info-method info)) + (<= (gnus-info-level info) + gnus-level-subscribed)) + (list (gnus-info-group info)))) + gnus-newsrc-alist))) + (mapc (lambda (realname) + (let ((group (gnus-group-full-name realname '("nnreddit" (or server ""))))) + (erase-buffer) + (gnus-message 5 "nnreddit-request-list: scanning %s..." realname) + (gnus-activate-group group t) + (gnus-message 5 "nnreddit-request-list: scanning %s...done" realname) + (when (> (gnus-group-level group) gnus-level-subscribed) + (gnus-group-unsubscribe-group group gnus-level-default-subscribed t)) + (setq newsrc (cl-remove group newsrc :test #'string=)))) + groups) + (mapc (lambda (fullname) + (gnus-message 4 "nnreddit-request-list: missing subscription %s" fullname) + (nnreddit-rpc-call nil nil "subscribe" (gnus-group-real-name fullname)) + (gnus-activate-group fullname t)) + newsrc) + (erase-buffer) + (mapc (lambda (group) + (insert (format "%s %d 1 y\n" group + (length (nnreddit-get-headers group))))) + groups))) + t) + +(defun nnreddit-sentinel (process event) + "Wipe headers state when PROCESS dies from EVENT." + (unless (string= "open" (substring event 0 4)) + (gnus-message 2 "nnreddit-sentinel: process %s %s" + (car (process-command process)) + (replace-regexp-in-string "\n$" "" event)) + (setq nnreddit-headers-hashtb (gnus-make-hashtable)) + (setq nnreddit-processes (cl-remove-if (lambda (other) (string= (process-name process) + (process-name other))) + nnreddit-processes)) + (gnus-backlog-shutdown))) + +(defun nnreddit--message-user (server beg end _prev-len) + "Message SERVER related alert with `buffer-substring' from BEG to END." + (let ((string (buffer-substring beg end)) + (magic "::user::")) + (when (string-prefix-p magic string) + (message "%s: %s" server (nnreddit-string-trim-right + (substring string (length magic)) + "\n"))))) + +(defsubst nnreddit--install-failed () + "If we can't install the virtualenv then all bets are off." + (string= nnreddit-venv "/dev/null")) + +(defun nnreddit-dump-diagnostics (&optional server) + "Makefile recipe test-run. SERVER is usually nnreddit-default." + (nnreddit--normalize-server) + (dolist (b `(,byte-compile-log-buffer + ,gnus-group-buffer + "*Messages*" + ,(format " *%s*" server) + ,(format " *%s-stderr*" server))) + (when (buffer-live-p (get-buffer b)) + (princ (format "\nBuffer: %s\n%s\n\n" b (with-current-buffer b (buffer-string))) + #'external-debugging-output)))) + +(defsubst nnreddit--cripple-fight-p () + "The albatross of a single-threaded event loop hangs heavy on gnus and exwm. +As a result, each deadlocks the other in a race to the bottom between two +relics of the 1990s." + (and (boundp 'exwm--connection) exwm--connection)) + +(defun nnreddit-rpc-get (&optional server) + "Retrieve the PRAW process for SERVER." + (nnreddit--normalize-server) + (unless (nnreddit--install-failed) + (let ((proc (get-buffer-process (get-buffer-create (format " *%s*" server))))) + (unless proc + (let* ((nnreddit-el-dir (directory-file-name (file-name-directory (locate-library "nnreddit")))) + (nnreddit-py-dir (directory-file-name + (if (string= "lisp" (file-name-base nnreddit-el-dir)) + (file-name-directory nnreddit-el-dir) + nnreddit-el-dir))) + (python-shell-extra-pythonpaths (list nnreddit-py-dir)) + (process-environment + (funcall (if (fboundp 'python-shell--calculate-process-environment) + (symbol-function 'python-shell--calculate-process-environment) + (symbol-function 'python-shell-calculate-process-environment)))) + (python-executable (if nnreddit-venv + (format "%s/bin/python" nnreddit-venv) + (executable-find nnreddit-python-command))) + (python-module (if (featurep 'nnreddit-test) "tests" "nnreddit")) + (praw-command (append (list python-executable "-m" python-module) + nnreddit--python-module-extra-args))) + (unless (featurep 'nnreddit-test) + (setq praw-command (append praw-command (list "--localhost" nnreddit-localhost))) + (when nnreddit-log-rpc + (setq nnreddit-rpc-log-filename + (concat (file-name-as-directory temporary-file-directory) + "nnreddit-rpc-log.")) + (setq praw-command (append praw-command + (list "--log" nnreddit-rpc-log-filename))))) + (setq proc (make-process :name server + :buffer (get-buffer-create (format " *%s*" server)) + :command praw-command + :connection-type 'pipe + :noquery t + :sentinel #'nnreddit-sentinel + :stderr (get-buffer-create (format " *%s-stderr*" server)))) + (with-current-buffer (get-buffer-create (format " *%s-stderr*" server)) + (add-hook 'after-change-functions + (apply-partially 'nnreddit--message-user server) + nil t))) + (push proc nnreddit-processes) + (when (nnreddit--cripple-fight-p) + (error "`nnreddit-rpc-get': Under EXWM, authentication must be out-of-band"))) + proc))) + +(defmacro nnreddit--with-mutex (mtx &rest body) + "If capable of threading, lock with MTX and execute BODY." + (declare (indent 1)) + (if (fboundp 'with-mutex) + `(with-mutex ,mtx ,@body) + `(progn ,@body))) + +(defvar nnreddit--mutex-rpc-request (when (fboundp 'make-mutex) + (make-mutex "nnreddit--mutex-rpc-request")) + "Only one jsonrpc output buffer, so avoid two requests using at the same time.") + +(defun nnreddit-rpc-request (connection kwargs method &rest args) + "Send to CONNECTION a request with generator KWARGS calling METHOD ARGS. +Library `json-rpc--request' assumes HTTP transport which jsonrpyc does not, +so we make our own." + (unless (hash-table-p kwargs) + (setq kwargs #s(hash-table))) + (let* ((id (cl-incf (json-rpc-id-counter connection))) + (request `(:method ,method + :id ,id + :params (:args ,(apply json-array-type args) :kwargs ,kwargs))) + (proc (json-rpc-process (json-rpc-ensure connection))) + (encoded (json-encode (append '(:jsonrpc "2.0") request))) + (json-object-type 'plist) + (json-key-type 'keyword) + (iteration-seconds 6)) + (nnreddit--with-mutex nnreddit--mutex-rpc-request + (with-current-buffer (process-buffer proc) + (erase-buffer) + (gnus-message 7 "nnreddit-rpc-request: send %s" encoded) + (process-send-string proc (concat encoded "\n")) + (cl-loop repeat (/ nnreddit-rpc-request-timeout iteration-seconds) + with result + until (or (not (json-rpc-live-p connection)) + (and (not (zerop (length (buffer-string)))) + (condition-case err + (setq result (json-read-from-string (buffer-string))) + (error + (let* ((resp (if (< (length (buffer-string)) 100) + (buffer-string) + (format "%s...%s" + (cl-subseq (buffer-string) 0 50) + (cl-subseq (buffer-string) -50))))) + (setq result + `(:error ,(format "%s on %s" + (error-message-string err) + resp)))) + nil)))) + do (when (fboundp 'set-process-thread) + (set-process-thread proc nil)) + do (accept-process-output proc iteration-seconds 0) + finally return + (cond ((null result) + (error "`nnreddit-rpc-request': response timed out")) + ((plist-get result :error) + (error "`nnreddit-rpc-request': %s" (plist-get result :error))) + (t + (gnus-message 7 "`nnreddit-rpc-request': recv ...%s" + (cl-subseq (buffer-string) + (- (min (length (buffer-string)) 50)))) + (plist-get result :result)))))))) + +(defsubst nnreddit--extract-name (from) + "String match on something looking like t1_es076hd in FROM." + (and (stringp from) (string-match "\\(t[0-9]+_[a-z0-9]+\\)" from) (match-string 1 from))) + +;; C-c C-c from followup buffer +;; message-send-and-exit +;; message-send +;; message-send-method-alist=message-send-news-function=message-send-news +;; gnus-request-post +;; nnreddit-request-post +(deffoo nnreddit-request-post (&optional server) + (nnreddit--normalize-server) + (let* ((ret t) + (kwargs (make-hash-table)) + (title (or (message-fetch-field "Subject") + (error "`nnreddit-request-post': no subject field"))) + (link (message-fetch-field "Link")) + (reply-p (not (null message-reply-headers))) + (edit-name (nnreddit--extract-name (message-fetch-field "Supersedes"))) + (cancel-name (nnreddit--extract-name (message-fetch-field "Control"))) + (root-p (message-fetch-field "Reply-Root")) + (article-number (nnreddit--current-article-number)) + (group (if (numberp article-number) + (gnus-group-real-name (nnreddit--current-group)) + (or (message-fetch-field "Newsgroups") + (error "`nnreddit-request-post': no newsgroups field")))) + (header (when (numberp article-number) + (nnreddit--get-header article-number group))) + (body + (save-excursion + (save-restriction + (message-goto-body) + (narrow-to-region (point) (point-max)) + (buffer-string))))) + (cond (cancel-name (nnreddit-rpc-call server nil "remove" cancel-name)) + (edit-name (nnreddit-rpc-call server nil "edit" edit-name body)) + (reply-p (if (and header (plist-get header :name)) + (nnreddit-rpc-call server nil "reply" + (plist-get header :name) + body (stringp root-p)) + (backtrace) + (error "`nnreddit-request-post': no current article, header=%s name=%s" + header + (when header (plist-get header :name))))) + (link (let* ((parsed-url (url-generic-parse-url link)) + (host (url-host parsed-url))) + (if (and (stringp host) (not (zerop (length host)))) + (progn + (puthash 'url link kwargs) + (nnreddit-rpc-call server kwargs "submit" group title)) + ;; gnus-error might be better here + (error "`nnreddit-request-post': invalid url \"%s\"" link) + (setq ret nil)))) + (t (puthash 'selftext body kwargs) + (nnreddit-rpc-call server kwargs "submit" group title))) + ret)) + +(defun nnreddit--browse-root (&rest _args) + "What happens when I click on Subject." + (-when-let* ((article-number (nnreddit--current-article-number)) + (group (gnus-group-real-name (nnreddit--current-group))) + (header (nnreddit--get-header article-number group)) + (permalink (plist-get header :permalink))) + (cl-loop for name in (nnreddit-refs-for (plist-get header :name)) + for header1 = (nnreddit-find-header + group (nnreddit-hack-name-to-id name)) + for permalink1 = (plist-get header1 :permalink) + until permalink1 + finally (browse-url (format "https://www.reddit.com%s" + (or permalink1 permalink "")))))) + +(defun nnreddit--header-button-alist () + "Construct a buffer-local `gnus-header-button-alist' for nnreddit." + (let* ((result (copy-alist gnus-header-button-alist)) + (references-value (assoc-default "References" result + (lambda (x y) (string-match-p y x)))) + (references-key (car (rassq references-value result)))) + (setq result (cl-delete "^Subject:" result :test (lambda (x y) (cl-search x (car y))))) + (setq result (cl-delete references-key result :test (lambda (x y) (cl-search x (car y))))) + (push (append '("^\\(Message-I[Dd]\\|^In-Reply-To\\):") references-value) result) + (push '("^Subject:" ".+" 0 (>= gnus-button-browse-level 0) + nnreddit--browse-root 0) + result) + result)) + +(defun nnreddit-sort-by-number-of-articles-in-thread (t1 t2) + "Whichever of the T1 or T2 has the most articles." + (> (gnus-summary-number-of-articles-in-thread t1) + (gnus-summary-number-of-articles-in-thread t2))) + +(defun nnreddit-gather-threads-by-references (threads) + "Gather THREADS by root reference, and don't be incomprehensible or buggy. +The built-in `gnus-gather-threads-by-references' is both." + (cl-flet ((special-case + (thread) + (let ((header (cl-first thread))) + (if (stringp header) + thread + (list (mail-header-subject header) thread)))) + (has-refs + (thread) + (let ((header (cl-first thread))) + (gnus-split-references (mail-header-references header))))) + (let ((threads-by-ref (gnus-make-hashtable)) + (separated (-separate #'has-refs threads)) + result) + (dolist (thread (cl-second separated)) + (let* ((header (cl-first thread)) + (id (mail-header-id header)) + (thread-special (special-case thread))) + (push thread-special result) + (nnreddit--sethash id thread-special threads-by-ref))) + (dolist (thread (cl-first separated)) + (let* ((header (cl-first thread)) + (refs (gnus-split-references (mail-header-references header))) + (ref-thread (cl-some (lambda (ref) + (nnreddit--gethash ref threads-by-ref)) + refs))) + (if ref-thread + (setcdr ref-thread (nconc (cdr ref-thread) (list thread))) + (setq ref-thread (special-case thread)) + (push ref-thread result) + (nnreddit--sethash (car refs) ref-thread threads-by-ref)))) + (nreverse result)))) + +(defun nnreddit--fallback-link () + "Cannot render submission." + (when-let ((current-group (nnreddit--current-group)) + (current-article (nnreddit--current-article-number))) + (let* ((group (gnus-group-real-name current-group)) + (header (nnreddit--get-header current-article group)) + (body (awhen (plist-get header :name) (nnreddit--get-body it group)))) + (with-current-buffer gnus-original-article-buffer + (article-goto-body) + (delete-region (point) (point-max)) + (when body + (insert (nnreddit--br-tagify body))))))) + +(defalias 'nnreddit--display-article + (lambda (article &optional all-headers _header) + (condition-case err + (gnus-article-prepare article all-headers) + (error + (if nnreddit-render-submission + (progn + (gnus-message 7 "nnreddit--display-article: '%s' (falling back...)" + (error-message-string err)) + (nnreddit--fallback-link) + (gnus-article-prepare article all-headers)) + (error (error-message-string err)))))) + "In case of shr failures, dump original link.") + +(defsubst nnreddit--dense-time (time*) + "Convert TIME to a floating point number. +Written by John Wiegley (https://github.com/jwiegley/dot-emacs)." + (let ((time (if (fboundp 'time-convert) + (funcall #'time-convert time* 'list) + (identity time*)))) + (+ (* (car time) 65536.0) + (cadr time) + (/ (or (car (cdr (cdr time))) 0) 1000000.0)))) + +(defalias 'nnreddit--format-time-elapsed + (lambda (header) + (condition-case nil + (let ((date (mail-header-date header))) + (if (> (length date) 0) + (let* + ((then (nnreddit--dense-time + (apply #'encode-time (parse-time-string date)))) + (now (nnreddit--dense-time (current-time))) + (diff (- now then)) + (str + (cond + ((>= diff (* 86400.0 7.0 52.0)) + (if (>= diff (* 86400.0 7.0 52.0 10.0)) + (format "%3dY" (floor (/ diff (* 86400.0 7.0 52.0)))) + (format "%3.1fY" (/ diff (* 86400.0 7.0 52.0))))) + ((>= diff (* 86400.0 30.0)) + (if (>= diff (* 86400.0 30.0 10.0)) + (format "%3dM" (floor (/ diff (* 86400.0 30.0)))) + (format "%3.1fM" (/ diff (* 86400.0 30.0))))) + ((>= diff (* 86400.0 7.0)) + (if (>= diff (* 86400.0 7.0 10.0)) + (format "%3dw" (floor (/ diff (* 86400.0 7.0)))) + (format "%3.1fw" (/ diff (* 86400.0 7.0))))) + ((>= diff 86400.0) + (if (>= diff (* 86400.0 10.0)) + (format "%3dd" (floor (/ diff 86400.0))) + (format "%3.1fd" (/ diff 86400.0)))) + ((>= diff 3600.0) + (if (>= diff (* 3600.0 10.0)) + (format "%3dh" (floor (/ diff 3600.0))) + (format "%3.1fh" (/ diff 3600.0)))) + ((>= diff 60.0) + (if (>= diff (* 60.0 10.0)) + (format "%3dm" (floor (/ diff 60.0))) + (format "%3.1fm" (/ diff 60.0)))) + (t + (format "%3ds" (floor diff))))) + (stripped + (replace-regexp-in-string "\\.0" "" str))) + (concat (cond + ((= 2 (length stripped)) " ") + ((= 3 (length stripped)) " ") + (t "")) + stripped)))) + ;; print some spaces and pretend nothing happened. + (error " "))) + "Return time elapsed since HEADER was sent. + +Written by John Wiegley (https://github.com/jwiegley/dot-emacs).") + +;; Evade package-lint! +(fset 'gnus-user-format-function-S + (symbol-function 'nnreddit--format-time-elapsed)) + +(add-to-list + 'gnus-parameters + `("^nnreddit" + (gnus-refer-article-method 'current) + (gnus-summary-make-false-root 'adopt) + (gnus-cite-hide-absolute 5) + (gnus-cite-hide-percentage 0) + (gnus-cited-lines-visible '(2 . 2)) + (gnus-auto-extend-newsgroup nil) + (gnus-add-timestamp-to-message t) + (gnus-summary-line-format "%3t%U%R%uS %I%(%*%-10,10f %s%)\n") + (gnus-thread-sort-functions (quote (nnreddit-sort-by-number-of-articles-in-thread))) + (gnus-subthread-sort-functions (quote (gnus-thread-sort-by-number))) + (gnus-summary-display-article-function + (quote ,(symbol-function 'nnreddit--display-article))) + (gnus-header-button-alist + (quote ,(nnreddit--header-button-alist))) + (gnus-visible-headers ,(concat gnus-visible-headers "\\|^Score:")))) + +(nnoo-define-skeleton nnreddit) + +(defun nnreddit-article-mode-activate () + "Augment the `gnus-article-mode-map' conditionally." + (when (nnreddit--gate) + (nnreddit-article-mode))) + +(defun nnreddit-summary-mode-activate () + "Shadow some bindings in `gnus-summary-mode-map' conditionally." + (when (nnreddit--gate) + (nnreddit-summary-mode))) + +(defun nnreddit-group-mode-activate () + "Augment the variable `gnus-group-mode-map' unconditionally." + (if gnus-group-change-level-function + (add-function :after gnus-group-change-level-function + #'nnreddit-update-subscription) + (setq gnus-group-change-level-function #'nnreddit-update-subscription))) + +(defun nnreddit--who-am-i () + "User@reddit.com for matching in `message-is-yours-p'." + (concat (if (and noninteractive (not nnreddit--whoami)) + "nnreddit-user" + nnreddit--whoami) + "@reddit.com")) + +(defun nnreddit--fix-from () + "Must fix the From header, always." + (when (nnreddit--message-gate) + (save-excursion + (message-replace-header + "From" + (nnreddit--who-am-i))))) + +;; I believe I did try buffer-localizing hooks, and it wasn't sufficient +(add-hook 'gnus-article-mode-hook 'nnreddit-article-mode-activate) +(add-hook 'gnus-group-mode-hook 'nnreddit-group-mode-activate) +(add-hook 'gnus-summary-mode-hook 'nnreddit-summary-mode-activate) +(add-hook 'gnus-message-setup-hook #'nnreddit--fix-from) + +;; `gnus-newsgroup-p' requires valid method post-mail to return t +(add-to-list 'gnus-valid-select-methods '("nnreddit" post-mail) t) + +;; Add prompting for replying to thread root to gnus-summary-followup. +;; The interactive spec of gnus-summary-followup is putatively preserved. +(let* ((prompt-loose + (lambda (f &rest args) + (cond ((nnreddit--gate) + (nnreddit--with-group nil + (when (string= group (nnreddit--inbox-realname)) + (error "Followup from inbox not implemented"))) + (or (-when-let* + ((article-number (gnus-summary-article-number)) + (header (nnreddit--get-header article-number)) + (root-name (car (nnreddit-refs-for (plist-get header :name)))) + (rootless (or (not (stringp root-name)) + (not (string-prefix-p "t3_" root-name)) + (not (nnreddit-find-header + (gnus-group-real-name gnus-newsgroup-name) + (nnreddit-hack-name-to-id root-name))))) + (reply-root (read-char-choice + "Reply loose thread [m]essage or [r]oot: " '(?m ?r))) + (q-root (eq reply-root ?r))) + (let* ((link-header (apply-partially #'message-add-header + "Reply-Root: yes")) + (add-link-header (apply-partially #'add-hook + 'message-header-setup-hook + link-header)) + (remove-link-header (apply-partially #'remove-hook + 'message-header-setup-hook + link-header))) + (funcall add-link-header) + (condition-case err + (progn + (apply f args) + (funcall remove-link-header)) + (error (funcall remove-link-header) + (error (error-message-string err))))) + t) + (apply f args))) + (t (apply f args))))) + (advise-gnus-summary-followup + (lambda () + (add-function :around (symbol-function 'gnus-summary-followup) prompt-loose))) + (suspend-prompt-loose + (lambda (f &rest args) + (cond ((nnreddit--gate) + (remove-function (symbol-function 'gnus-summary-followup) prompt-loose) + (unwind-protect + (apply f args) + (funcall advise-gnus-summary-followup))) + (t (apply f args))))) + (advise-gnus-summary-cancel-article + (lambda () + (add-function :around (symbol-function 'gnus-summary-cancel-article) + suspend-prompt-loose)))) + (funcall advise-gnus-summary-cancel-article) + (funcall advise-gnus-summary-followup)) + +(add-function + :around (symbol-function 'message-supersede) + (lambda (f &rest args) + (cond ((nnreddit--message-gate) + (add-function :override + (symbol-function 'mml-insert-mml-markup) + 'ignore) + (unwind-protect + (prog1 (apply f args) + (remove-function (symbol-function 'mml-insert-mml-markup) 'ignore) + (save-excursion + (save-restriction + (nnreddit--fix-from) + (message-goto-body) + (narrow-to-region (point) (point-max)) + (goto-char (point-max)) + (mm-inline-text-html nil) + (delete-region (point-min) (point))))) + (remove-function (symbol-function 'mml-insert-mml-markup) 'ignore))) + (t (apply f args))))) + +(add-function + :around (symbol-function 'message-send-news) + (lambda (f &rest args) + (cond ((nnreddit--message-gate) + (let* ((dont-ask (lambda (prompt) + (when (cl-search "mpty article" prompt) t))) + (link-p (message-fetch-field "Link")) + (message-shoot-gnksa-feet (if link-p t message-shoot-gnksa-feet)) + (message-inhibit-body-encoding t)) + (unwind-protect + (progn + (when link-p + (add-function :before-until (symbol-function 'y-or-n-p) dont-ask)) + (apply f args)) + (remove-function (symbol-function 'y-or-n-p) dont-ask)))) + (t (apply f args))))) + +(add-function + :around (symbol-function 'gnus-summary-post-news) + (lambda (f &rest args) + (cond ((nnreddit--gate) + (let* ((nnreddit-post-type (read-char-choice "[l]ink / [t]ext: " '(?l ?t))) + (link-header (apply-partially #'message-add-header "Link: https://")) + (add-link-header (apply-partially #'add-hook + 'message-header-setup-hook + link-header)) + (remove-link-header (apply-partially #'remove-hook + 'message-header-setup-hook + link-header))) + (cl-case nnreddit-post-type + (?l (funcall add-link-header))) + (unwind-protect + (prog1 (apply f args)) + (funcall remove-link-header)))) + (t (apply f args))))) + +(add-function + :filter-return (symbol-function 'message-make-fqdn) + (lambda (val) + (if (and (nnreddit--message-gate) + (cl-search "--so-tickle-me" val)) + "reddit.com" + val))) + +(add-function + :around (symbol-function 'message-is-yours-p) + (lambda (f &rest args) + (let ((concat-func (lambda (f &rest args) + (let ((fetched (apply f args))) + (if (string= (car args) "from") + (concat fetched "@reddit.com") + fetched))))) + (when (nnreddit--message-gate) + (add-function :around + (symbol-function 'message-fetch-field) + concat-func) + (add-function :override + (symbol-function 'message-make-from) + #'nnreddit--who-am-i)) + (unwind-protect + (apply f args) + (remove-function (symbol-function 'message-fetch-field) concat-func) + (remove-function (symbol-function 'message-make-from) #'nnreddit--who-am-i))))) + +(add-function + :around (symbol-function 'url-http-generic-filter) + (lambda (f &rest args) + (cond ((nnreddit--gate) + (condition-case err + (apply f args) + (error (gnus-message 7 "url-http-generic-filter: %s" + (error-message-string err))))) + (t (apply f args))))) + +;; the let'ing to nil of `gnus-summary-display-article-function' +;; in `gnus-summary-select-article' dates back to antiquity. +(add-function + :around (symbol-function 'gnus-summary-display-article) + (lambda (f &rest args) + (cond ((nnreddit--gate) + (let ((gnus-summary-display-article-function + (symbol-function 'nnreddit--display-article))) + (apply f args))) + (t (apply f args))))) + +;; Lars rejected my change for vectorizing `gnus-group-change-level-functions' +(add-function + :after (symbol-function 'gnus-topic-change-level) + (lambda (&rest args) + ;; nnreddit-update-subscription calls nnreddit--gate + (apply #'nnreddit-update-subscription args))) + +;; disallow caching as the article numbering is wont to change +;; after PRAW restarts! +(setq gnus-uncacheable-groups + (aif gnus-uncacheable-groups + (format "\\(%s\\)\\|\\(^nnreddit\\)" it) + "^nnreddit")) + +(provide 'nnreddit) + +;;; nnreddit.el ends here diff --git a/nnreddit/VERSION b/nnreddit/VERSION new file mode 100644 index 0000000..0c62199 --- /dev/null +++ b/nnreddit/VERSION @@ -0,0 +1 @@ +0.2.1 diff --git a/nnreddit/__init__.py b/nnreddit/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/nnreddit/__main__.py b/nnreddit/__main__.py new file mode 100644 index 0000000..72f34f7 --- /dev/null +++ b/nnreddit/__main__.py @@ -0,0 +1,28 @@ +""" +Kicks things off via + +python -m nnreddit + +""" + +import os +import sys +import argparse +import jsonrpyc + +from .authenticated_reddit import AuthenticatedReddit + +parser = argparse.ArgumentParser() +parser.add_argument("--log", help="log filename") +parser.add_argument("--localhost", help="ip or hostname of localhost", default='127.0.0.1') +args = parser.parse_args() + +stdin = sys.stdin +stdout = sys.stdout +if __name__ != "__main__": + sys.stdout = sys.stderr = open(os.devnull, mode="w", encoding="utf-8") + +jsonrpyc.RPC(target=AuthenticatedReddit(check_for_updates=False, + log_prefix=args.log, + localhost=args.localhost), + stdin=stdin, stdout=stdout) diff --git a/nnreddit/authenticated_reddit.py b/nnreddit/authenticated_reddit.py new file mode 100644 index 0000000..fc6c899 --- /dev/null +++ b/nnreddit/authenticated_reddit.py @@ -0,0 +1,335 @@ +# -*- coding: utf-8 -*- +# pylint: disable=wrong-import-position + +from __future__ import unicode_literals +from __future__ import print_function + +import os +import re +import random +import webbrowser +import json +import functools +import sys +import logging +from time import time +import datetime +from multiprocessing import Process +import rtv.config + +rtv.config.TEMPLATES = os.path.join(os.path.dirname(__file__), 'templates') +rtv.config.DEFAULT_CONFIG = os.path.join(rtv.config.TEMPLATES, 'rtv.cfg') +rtv.config.DEFAULT_MAILCAP = os.path.join(rtv.config.TEMPLATES, 'mailcap') +rtv.config.HISTORY = os.path.join(rtv.config.XDG_DATA_HOME, 'nnreddit', 'history.log') +rtv.config.TOKEN = os.path.join(rtv.config.XDG_DATA_HOME, 'nnreddit', 'refresh-token') + +import praw +from praw import Reddit +from prawcore.sessions import session +from prawcore import Authorizer +from rtv.oauth import OAuthHTTPServer, OAuthHandler +from rtv.exceptions import BrowserError +from rtv import docs + +testing = (sys.modules['__main__'].__package__ == 'tests') + +if testing: + from tests.recorded import recording_begin + from tests.recorded import recording_end +else: + def recording_begin(*_args): + pass + def recording_end(*_args): + pass + def recorded(func): + """Intercept point for Betamax""" + @functools.wraps(func) + def wrapper(*args, **kwargs): + return func(*args, **kwargs) + return wrapper + +with open(os.path.join(os.path.dirname(__file__), 'VERSION'), encoding="utf-8") as version_file: + version = version_file.read().strip() + +class AuthenticatedReddit(Reddit): + @staticmethod + def open_url_silent(url): + stdout, stderr = os.dup(1), os.dup(2) + null = os.open(os.devnull, os.O_RDWR) + try: + os.dup2(null, 1) + os.dup2(null, 2) + webbrowser.open_new_tab(url) + finally: + try: + os.close(null) + except OSError: + pass + os.dup2(stdout, 1) + os.dup2(stderr, 2) + + def __init__(self, **kwargs): + log_level = kwargs.pop('log_level', logging.NOTSET) + logging.basicConfig(level=log_level, + filename='/dev/null', + format='%(asctime)s %(levelname)s %(message)s', + datefmt="%Y-%m-%d %H:%M:%S") + log_prefix = kwargs.pop('log_prefix', None) + if log_prefix: + stamp = datetime.datetime.fromtimestamp(time()).strftime('%Y%m%d.%H%M%S') + logging.getLogger().addHandler(logging.FileHandler(log_prefix + stamp)) + + localhost = kwargs.pop('localhost', '127.0.0.1') + default_kwargs = { + 'history_file': rtv.config.HISTORY, + 'token_file': rtv.config.TOKEN, + 'redirect_uri': 'http://' + localhost + ':17973', + 'client_id': '5oagOpX2_NKVDej_iuZjFA', + 'client_secret': '', + 'redirect_port': 17973, + 'user_agent': praw.const.USER_AGENT_FORMAT.\ + format(':'.join([os.uname()[0], 'nnreddit', version])), + } + default_kwargs = { k: v for k,v in default_kwargs.items() if k not in kwargs } + kwargs.update(default_kwargs) + cfg = rtv.config.Config(**kwargs) + cfg.load_history() + cfg.load_refresh_token() + cfg.config['refresh_token'] = cfg.refresh_token + logging.getLogger().debug("Refresh token: %s", cfg.token_file) + + super().__init__(**cfg.config) + + if not cfg.refresh_token: + self._core \ + = self._authorized_core \ + = session(Authorizer(self._core._authorizer._authenticator)) + state = str(random.randint(0, 65000)) + url = self._authorized_core._authorizer._authenticator.\ + authorize_url('permanent', ['edit', + 'history', + 'identity', + 'mysubreddits', + 'privatemessages', + 'read', + 'report', + 'save', + 'submit', + 'subscribe', + 'vote'], state) + + docs_sub = re.compile(r'reddit terminal viewer', re.IGNORECASE) + docs.OAUTH_SUCCESS = docs_sub.sub('nnreddit', docs.OAUTH_SUCCESS) + docs.OAUTH_ACCESS_DENIED = docs_sub.sub('nnreddit', docs.OAUTH_ACCESS_DENIED) + print("::user::Please check your browser.", file=sys.stderr) + if cfg.token_file == "/dev/null": + cfg.refresh_token = None + else: + proc = Process(target=self.open_url_silent, args=(url,)) + proc.start() + try: + proc.join(7) + if proc.is_alive(): + raise BrowserError( + 'Timeout waiting for browser to open') + finally: + try: + proc.terminate() + except OSError: + pass + server = OAuthHTTPServer(('', cfg.config['redirect_port']), OAuthHandler) + server.serve_forever() + self._authorized_core._authorizer.authorize(OAuthHandler.params['code']) + cfg.refresh_token = self._authorized_core._authorizer.refresh_token + cfg.save_refresh_token() + if 'history_size' in cfg.config: + cfg.save_history() + + self._bodies = {} + self._stream_comm = {} + self._stream_subm = {} + self._stream_inbox = None + + + @staticmethod + def make_dict(reddit_base): + with_nulls = json.dumps(vars(reddit_base), skipkeys=True, default=lambda o: + str(o) if hasattr(o, 'STR_FIELD') else None) + without_nulls = {k:v for k,v in json.loads(with_nulls).items() + if v is not None} + return without_nulls + + @staticmethod + def collect_dicts(stream): + result = [] + for i in stream: + if i is None: + break + result.append(AuthenticatedReddit.make_dict(i)) + return result + + def recording_begin(self, cassette): + recording_begin(self, cassette) + return True + + def recording_end(self, cassette=None): + recording_end(cassette) + return True + + def random_subreddit(self, *, nsfw: bool=False): + above = super().random_subreddit(nsfw=nsfw) + return above.display_name + + def search(self, query, **generator_kwargs): + return [ x.display_name for x in self.subreddits.search(query, **generator_kwargs) ] + + def popular(self, **generator_kwargs): + return [ x.display_name for x in self.subreddits.popular(**generator_kwargs) ] + + def subscribe(self, display_name): + self.subreddit(display_name).subscribe() + + def unsubscribe(self, display_name): + self.subreddit(display_name).unsubscribe() + + def submit(self, display_name, title, **kwargs): + self.subreddit(display_name).submit(title, **kwargs) + + def reply(self, name, body, q_reply_root): + (mytype, myid) = name.split("_", 1) + parent = None + if mytype == self.config.kinds['submission']: + parent = self.submission(myid) + elif mytype == self.config.kinds['comment']: + parent = self.comment(myid) + if q_reply_root and parent.link_id: + (_, root_id) = parent.link_id.split("_", 1) + parent = self.submission(root_id) + else: + raise ValueError('Unexpected name {} with type {}'.format(name, mytype)) + parent.reply(body) + + def edit(self, name, body): + (mytype, myid) = name.split("_", 1) + editable = None + if mytype == self.config.kinds['submission']: + editable = self.submission(myid) + elif mytype == self.config.kinds['comment']: + editable = self.comment(myid) + else: + raise ValueError('Unexpected name {} with type {}'.format(name, mytype)) + editable.edit(body) + + def remove(self, name): + (mytype, myid) = name.split("_", 1) + editable = None + if mytype == self.config.kinds['submission']: + editable = self.submission(myid) + elif mytype == self.config.kinds['comment']: + editable = self.comment(myid) + else: + raise ValueError('Unexpected name {} with type {}'.format(name, mytype)) + editable.delete() + + def comments(self, display_name): + if display_name not in self._stream_comm: + self._stream_comm[display_name] = self.subreddit(display_name).\ + stream.comments(pause_after=0) + if display_name not in self._bodies: + self._bodies[display_name] = {} + dicts = self.collect_dicts(self._stream_comm.get(display_name)) + for dic in dicts: + if 'body_html' in dic: + self._bodies[display_name][dic['id']] = dic['body_html'] + else: + self._bodies[display_name][dic['id']] = 'Wow, such empty' + for k in list(dic): + if k.startswith('body'): + del dic[k] + return dicts + + def vote(self, name, vote): + (mytype, myid) = name.split("_", 1) + votable = None + if mytype == self.config.kinds['submission']: + votable = self.submission(myid) + elif mytype == self.config.kinds['comment']: + votable = self.comment(myid) + else: + raise ValueError('Unexpected name {} with type {}'.format(name, mytype)) + try: + if vote == 0: + votable.clear_vote() + elif vote < 0: + votable.downvote() + else: + votable.upvote() + except AttributeError as exc: + raise AttributeError('{} un-votable: {}'.format(name, str(exc))) from exc + + def body(self, display_name, name): + (mytype, myid) = name.split("_", 1) + + result = None + cached = self._bodies.get(display_name) + if cached: + result = cached.get(myid) + if not result: + if mytype == self.config.kinds['submission']: + result = self.submission(myid).selftext_html + else: + result = self.comment(myid).body_html + return result + + def canonical_spelling(self, display_name): + lazy = self.subreddit(display_name) + # pragma pylint: disable=protected-access + lazy._fetch() + # pragma pylint: enable=protected-access + return lazy.display_name + + def submissions(self, display_name): + if display_name not in self._stream_subm: + self._stream_subm[display_name] = self.subreddit(display_name).\ + stream.submissions(pause_after=0) + if display_name not in self._bodies: + self._bodies[display_name] = {} + dicts = self.collect_dicts(self._stream_subm.get(display_name)) + for dic in dicts: + if 'selftext_html' in dic: + self._bodies[display_name][dic['id']] = dic['selftext_html'] + elif 'url' in dic: + self._bodies[display_name][dic['id']] \ + = ''.join(['
', '

', + '{0}'.format(dic.get('url')), + '

']) + else: + self._bodies[display_name][dic['id']] = 'Wow, such empty' + for k in list(dic): + if k.startswith('selftext'): + del dic[k] + return dicts + + def user_subreddits(self): + return [sr.display_name for sr in self.user.subreddits()] + + def user_attr(self, attr): + return getattr(self.user.me(), attr) + + def inboxes(self, inbox_name): + if not self._stream_inbox: + self._stream_inbox = self.inbox.stream(pause_after=0) + if inbox_name not in self._bodies: + self._bodies[inbox_name] = {} + dicts = self.collect_dicts(self._stream_inbox) + dicts = [d for d in dicts if d.get('type') == 'comment_reply' or + d.get('type') == 'post_reply'] + for dic in dicts: + if 'body_html' in dic: + self._bodies[inbox_name][dic['id']] = dic['body_html'] + else: + self._bodies[inbox_name][dic['id']] = 'Wow, such empty' + for k in list(dic): + if k.startswith('body'): + del dic[k] + return dicts diff --git a/nnreddit/pylintrc b/nnreddit/pylintrc new file mode 100644 index 0000000..40b4e26 --- /dev/null +++ b/nnreddit/pylintrc @@ -0,0 +1,626 @@ +[MAIN] + +# Analyse import fallback blocks. This can be used to support both Python 2 and +# 3 compatible code, which means that the block might have code that exists +# only in one or another interpreter, leading to false positives when analysed. +analyse-fallback-blocks=no + +# Load and enable all available extensions. Use --list-extensions to see a list +# all available extensions. +#enable-all-extensions= + +# In error mode, messages with a category besides ERROR or FATAL are +# suppressed, and no reports are done by default. Error mode is compatible with +# disabling specific errors. +#errors-only= + +# Always return a 0 (non-error) status code, even if lint errors are found. +# This is primarily useful in continuous integration scripts. +#exit-zero= + +# A comma-separated list of package or module names from where C extensions may +# be loaded. Extensions are loading into the active Python interpreter and may +# run arbitrary code. +extension-pkg-allow-list= + +# A comma-separated list of package or module names from where C extensions may +# be loaded. Extensions are loading into the active Python interpreter and may +# run arbitrary code. (This is an alternative name to extension-pkg-allow-list +# for backward compatibility.) +extension-pkg-whitelist= + +# Return non-zero exit code if any of these messages/categories are detected, +# even if score is above --fail-under value. Syntax same as enable. Messages +# specified are enabled, while categories only check already-enabled messages. +fail-on= + +# Specify a score threshold under which the program will exit with error. +fail-under=10 + +# Interpret the stdin as a python script, whose filename needs to be passed as +# the module_or_package argument. +#from-stdin= + +# Files or directories to be skipped. They should be base names, not paths. +ignore=CVS + +# Add files or directories matching the regular expressions patterns to the +# ignore-list. The regex matches against paths and can be in Posix or Windows +# format. Because '\' represents the directory delimiter on Windows systems, it +# can't be used as an escape character. +ignore-paths= + +# Files or directories matching the regular expression patterns are skipped. +# The regex matches against base names, not paths. The default value ignores +# Emacs file locks +ignore-patterns=^\.# + +# List of module names for which member attributes should not be checked +# (useful for modules/projects where namespaces are manipulated during runtime +# and thus existing member attributes cannot be deduced by static analysis). It +# supports qualified module names, as well as Unix pattern matching. +ignored-modules= + +# Python code to execute, usually for sys.path manipulation such as +# pygtk.require(). +#init-hook= + +# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the +# number of processors available to use, and will cap the count on Windows to +# avoid hangs. +jobs=1 + +# Control the amount of potential inferred values when inferring a single +# object. This can help the performance when dealing with large functions or +# complex, nested conditions. +limit-inference-results=100 + +# List of plugins (as comma separated values of python module names) to load, +# usually to register additional checkers. +load-plugins= + +# Pickle collected data for later comparisons. +persistent=yes + +# Minimum Python version to use for version dependent checks. Will default to +# the version used to run pylint. +py-version=3.10 + +# Discover python modules and packages in the file system subtree. +recursive=no + +# When enabled, pylint would attempt to guess common misconfiguration and emit +# user-friendly hints instead of false-positive error messages. +suggestion-mode=yes + +# Allow loading of arbitrary C extensions. Extensions are imported into the +# active Python interpreter and may run arbitrary code. +unsafe-load-any-extension=no + +# In verbose mode, extra non-checker-related info will be displayed. +#verbose= + + +[BASIC] + +# Naming style matching correct argument names. +argument-naming-style=snake_case + +# Regular expression matching correct argument names. Overrides argument- +# naming-style. If left empty, argument names will be checked with the set +# naming style. +#argument-rgx= + +# Naming style matching correct attribute names. +attr-naming-style=snake_case + +# Regular expression matching correct attribute names. Overrides attr-naming- +# style. If left empty, attribute names will be checked with the set naming +# style. +#attr-rgx= + +# Bad variable names which should always be refused, separated by a comma. +bad-names=foo, + bar, + baz, + toto, + tutu, + tata + +# Bad variable names regexes, separated by a comma. If names match any regex, +# they will always be refused +bad-names-rgxs= + +# Naming style matching correct class attribute names. +class-attribute-naming-style=any + +# Regular expression matching correct class attribute names. Overrides class- +# attribute-naming-style. If left empty, class attribute names will be checked +# with the set naming style. +#class-attribute-rgx= + +# Naming style matching correct class constant names. +class-const-naming-style=UPPER_CASE + +# Regular expression matching correct class constant names. Overrides class- +# const-naming-style. If left empty, class constant names will be checked with +# the set naming style. +#class-const-rgx= + +# Naming style matching correct class names. +class-naming-style=PascalCase + +# Regular expression matching correct class names. Overrides class-naming- +# style. If left empty, class names will be checked with the set naming style. +#class-rgx= + +# Naming style matching correct constant names. +const-naming-style=UPPER_CASE + +# Regular expression matching correct constant names. Overrides const-naming- +# style. If left empty, constant names will be checked with the set naming +# style. +#const-rgx= + +# Minimum line length for functions/classes that require docstrings, shorter +# ones are exempt. +docstring-min-length=-1 + +# Naming style matching correct function names. +function-naming-style=snake_case + +# Regular expression matching correct function names. Overrides function- +# naming-style. If left empty, function names will be checked with the set +# naming style. +#function-rgx= + +# Good variable names which should always be accepted, separated by a comma. +good-names=i, + j, + k, + ex, + Run, + _ + +# Good variable names regexes, separated by a comma. If names match any regex, +# they will always be accepted +good-names-rgxs= + +# Include a hint for the correct naming format with invalid-name. +include-naming-hint=no + +# Naming style matching correct inline iteration names. +inlinevar-naming-style=any + +# Regular expression matching correct inline iteration names. Overrides +# inlinevar-naming-style. If left empty, inline iteration names will be checked +# with the set naming style. +#inlinevar-rgx= + +# Naming style matching correct method names. +method-naming-style=snake_case + +# Regular expression matching correct method names. Overrides method-naming- +# style. If left empty, method names will be checked with the set naming style. +#method-rgx= + +# Naming style matching correct module names. +module-naming-style=snake_case + +# Regular expression matching correct module names. Overrides module-naming- +# style. If left empty, module names will be checked with the set naming style. +#module-rgx= + +# Colon-delimited sets of names that determine each other's naming style when +# the name regexes allow several styles. +name-group= + +# Regular expression which should only match function or class names that do +# not require a docstring. +no-docstring-rgx=^_ + +# List of decorators that produce properties, such as abc.abstractproperty. Add +# to this list to register other decorators that produce valid properties. +# These decorators are taken in consideration only for invalid-name. +property-classes=abc.abstractproperty + +# Regular expression matching correct type variable names. If left empty, type +# variable names will be checked with the set naming style. +#typevar-rgx= + +# Naming style matching correct variable names. +variable-naming-style=snake_case + +# Regular expression matching correct variable names. Overrides variable- +# naming-style. If left empty, variable names will be checked with the set +# naming style. +#variable-rgx= + + +[CLASSES] + +# Warn about protected attribute access inside special methods +check-protected-access-in-special-methods=no + +# List of method names used to declare (i.e. assign) instance attributes. +defining-attr-methods=__init__, + __new__, + setUp, + __post_init__ + +# List of member names, which should be excluded from the protected access +# warning. +exclude-protected=_asdict, + _fields, + _replace, + _source, + _make + +# List of valid names for the first argument in a class method. +valid-classmethod-first-arg=cls + +# List of valid names for the first argument in a metaclass class method. +valid-metaclass-classmethod-first-arg=cls + + +[DESIGN] + +# List of regular expressions of class ancestor names to ignore when counting +# public methods (see R0903) +exclude-too-few-public-methods= + +# List of qualified class names to ignore when counting class parents (see +# R0901) +ignored-parents= + +# Maximum number of arguments for function / method. +max-args=5 + +# Maximum number of attributes for a class (see R0902). +max-attributes=7 + +# Maximum number of boolean expressions in an if statement (see R0916). +max-bool-expr=5 + +# Maximum number of branch for function / method body. +max-branches=12 + +# Maximum number of locals for function / method body. +max-locals=15 + +# Maximum number of parents for a class (see R0901). +max-parents=7 + +# Maximum number of public methods for a class (see R0904). +max-public-methods=20 + +# Maximum number of return / yield for function / method body. +max-returns=6 + +# Maximum number of statements in function / method body. +max-statements=50 + +# Minimum number of public methods for a class (see R0903). +min-public-methods=2 + + +[EXCEPTIONS] + +# Exceptions that will emit a warning when caught. +overgeneral-exceptions=BaseException, + Exception + + +[FORMAT] + +# Expected format of line ending, e.g. empty (any line ending), LF or CRLF. +expected-line-ending-format= + +# Regexp for a line that is allowed to be longer than the limit. +ignore-long-lines=^\s*(# )??$ + +# Number of spaces of indent required inside a hanging or continued line. +indent-after-paren=4 + +# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 +# tab). +indent-string=' ' + +# Maximum number of characters on a single line. +max-line-length=100 + +# Maximum number of lines in a module. +max-module-lines=1000 + +# Allow the body of a class to be on the same line as the declaration if body +# contains single statement. +single-line-class-stmt=no + +# Allow the body of an if to be on the same line as the test if there is no +# else. +single-line-if-stmt=no + + +[IMPORTS] + +# List of modules that can be imported at any level, not just the top level +# one. +allow-any-import-level= + +# Allow wildcard imports from modules that define __all__. +allow-wildcard-with-all=no + +# Deprecated modules which should not be used, separated by a comma. +deprecated-modules= + +# Output a graph (.gv or any supported image format) of external dependencies +# to the given file (report RP0402 must not be disabled). +ext-import-graph= + +# Output a graph (.gv or any supported image format) of all (i.e. internal and +# external) dependencies to the given file (report RP0402 must not be +# disabled). +import-graph= + +# Output a graph (.gv or any supported image format) of internal dependencies +# to the given file (report RP0402 must not be disabled). +int-import-graph= + +# Force import order to recognize a module as part of the standard +# compatibility libraries. +known-standard-library= + +# Force import order to recognize a module as part of a third party library. +known-third-party=enchant + +# Couples of modules and preferred modules, separated by a comma. +preferred-modules= + + +[LOGGING] + +# The type of string formatting that logging methods do. `old` means using % +# formatting, `new` is for `{}` formatting. +logging-format-style=old + +# Logging modules to check that the string format arguments are in logging +# function parameter format. +logging-modules=logging + + +[MESSAGES CONTROL] + +# Only show warnings with the listed confidence levels. Leave empty to show +# all. Valid levels: HIGH, CONTROL_FLOW, INFERENCE, INFERENCE_FAILURE, +# UNDEFINED. +confidence=HIGH, + CONTROL_FLOW, + INFERENCE, + INFERENCE_FAILURE, + UNDEFINED + +# Disable the message, report, category or checker with the given id(s). You +# can either give multiple identifiers separated by comma (,) or put this +# option multiple times (only on the command line, not in the configuration +# file where it should appear only once). You can also use "--disable=all" to +# disable everything first and then re-enable specific checks. For example, if +# you want to run only the similarities checker, you can use "--disable=all +# --enable=similarities". If you want to run only the classes checker, but have +# no Warning level messages displayed, use "--disable=all --enable=classes +# --disable=W". +disable=raw-checker-failed, + bad-inline-option, + locally-disabled, + file-ignored, + suppressed-message, + useless-suppression, + deprecated-pragma, + use-symbolic-message-instead, + missing-module-docstring, + consider-using-with, + no-member, + missing-function-docstring, + missing-class-docstring, + consider-using-f-string, + too-many-public-methods, + + +# Enable the message, report, category or checker with the given id(s). You can +# either give multiple identifier separated by comma (,) or put this option +# multiple time (only on the command line, not in the configuration file where +# it should appear only once). See also the "--disable" option for examples. +enable=c-extension-no-member + + +[METHOD_ARGS] + +# List of qualified names (i.e., library.method) which require a timeout +# parameter e.g. 'requests.api.get,requests.api.post' +timeout-methods=requests.api.delete,requests.api.get,requests.api.head,requests.api.options,requests.api.patch,requests.api.post,requests.api.put,requests.api.request + + +[MISCELLANEOUS] + +# List of note tags to take in consideration, separated by a comma. +notes=FIXME, + XXX, + TODO + +# Regular expression of note tags to take in consideration. +notes-rgx= + + +[REFACTORING] + +# Maximum number of nested blocks for function / method body +max-nested-blocks=5 + +# Complete name of functions that never returns. When checking for +# inconsistent-return-statements if a never returning function is called then +# it will be considered as an explicit return statement and no message will be +# printed. +never-returning-functions=sys.exit,argparse.parse_error + + +[REPORTS] + +# Python expression which should return a score less than or equal to 10. You +# have access to the variables 'fatal', 'error', 'warning', 'refactor', +# 'convention', and 'info' which contain the number of messages in each +# category, as well as 'statement' which is the total number of statements +# analyzed. This score is used by the global evaluation report (RP0004). +evaluation=max(0, 0 if fatal else 10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)) + +# Template used to display messages. This is a python new-style format string +# used to format the message information. See doc for all details. +msg-template= + +# Set the output format. Available formats are text, parseable, colorized, json +# and msvs (visual studio). You can also give a reporter class, e.g. +# mypackage.mymodule.MyReporterClass. +#output-format= + +# Tells whether to display a full report or only the messages. +reports=no + +# Activate the evaluation score. +score=yes + + +[SIMILARITIES] + +# Comments are removed from the similarity computation +ignore-comments=yes + +# Docstrings are removed from the similarity computation +ignore-docstrings=yes + +# Imports are removed from the similarity computation +ignore-imports=yes + +# Signatures are removed from the similarity computation +ignore-signatures=yes + +# Minimum lines number of a similarity. +min-similarity-lines=4 + + +[SPELLING] + +# Limits count of emitted suggestions for spelling mistakes. +max-spelling-suggestions=4 + +# Spelling dictionary name. Available dictionaries: none. To make it work, +# install the 'python-enchant' package. +spelling-dict= + +# List of comma separated words that should be considered directives if they +# appear at the beginning of a comment and should not be checked. +spelling-ignore-comment-directives=fmt: on,fmt: off,noqa:,noqa,nosec,isort:skip,mypy: + +# List of comma separated words that should not be checked. +spelling-ignore-words= + +# A path to a file that contains the private dictionary; one word per line. +spelling-private-dict-file= + +# Tells whether to store unknown words to the private dictionary (see the +# --spelling-private-dict-file option) instead of raising a message. +spelling-store-unknown-words=no + + +[STRING] + +# This flag controls whether inconsistent-quotes generates a warning when the +# character used as a quote delimiter is used inconsistently within a module. +check-quote-consistency=no + +# This flag controls whether the implicit-str-concat should generate a warning +# on implicit string concatenation in sequences defined over several lines. +check-str-concat-over-line-jumps=no + + +[TYPECHECK] + +# List of decorators that produce context managers, such as +# contextlib.contextmanager. Add to this list to register other decorators that +# produce valid context managers. +contextmanager-decorators=contextlib.contextmanager + +# List of members which are set dynamically and missed by pylint inference +# system, and so shouldn't trigger E1101 when accessed. Python regular +# expressions are accepted. +generated-members= + +# Tells whether to warn about missing members when the owner of the attribute +# is inferred to be None. +ignore-none=yes + +# This flag controls whether pylint should warn about no-member and similar +# checks whenever an opaque object is returned when inferring. The inference +# can return multiple potential results while evaluating a Python object, but +# some branches might not be evaluated, which results in partial inference. In +# that case, it might be useful to still emit no-member and other checks for +# the rest of the inferred objects. +ignore-on-opaque-inference=yes + +# List of symbolic message names to ignore for Mixin members. +ignored-checks-for-mixins=no-member, + not-async-context-manager, + not-context-manager, + attribute-defined-outside-init + +# List of class names for which member attributes should not be checked (useful +# for classes with dynamically set attributes). This supports the use of +# qualified names. +ignored-classes=optparse.Values,thread._local,_thread._local,argparse.Namespace + +# Show a hint with possible names when a member name was not found. The aspect +# of finding the hint is based on edit distance. +missing-member-hint=yes + +# The minimum edit distance a name should have in order to be considered a +# similar match for a missing member name. +missing-member-hint-distance=1 + +# The total number of similar names that should be taken in consideration when +# showing a hint for a missing member. +missing-member-max-choices=1 + +# Regex pattern to define which classes are considered mixins. +mixin-class-rgx=.*[Mm]ixin + +# List of decorators that change the signature of a decorated function. +signature-mutators= + + +[VARIABLES] + +# List of additional names supposed to be defined in builtins. Remember that +# you should avoid defining new builtins when possible. +additional-builtins= + +# Tells whether unused global variables should be treated as a violation. +allow-global-unused-variables=yes + +# List of names allowed to shadow builtins +allowed-redefined-builtins= + +# List of strings which can identify a callback function by name. A callback +# name must start or end with one of those strings. +callbacks=cb_, + _cb + +# A regular expression matching the name of dummy variables (i.e. expected to +# not be used). +dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_ + +# Argument names that match this expression will be ignored. +ignored-argument-names=_.*|^ignored_|^unused_ + +# Tells whether we should check for unused import in __init__ files. +init-import=no + +# List of qualified module names which can have objects that can redefine +# builtins. +redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io diff --git a/nnreddit/templates/index.html b/nnreddit/templates/index.html new file mode 100644 index 0000000..49e084e --- /dev/null +++ b/nnreddit/templates/index.html @@ -0,0 +1,30 @@ + + + + Nnreddit OAuth2 Helper + + + + +${message} + + diff --git a/nnreddit/templates/mailcap b/nnreddit/templates/mailcap new file mode 100644 index 0000000..1c3f45b --- /dev/null +++ b/nnreddit/templates/mailcap @@ -0,0 +1,70 @@ +# Example mailcap file for Reddit Terminal Viewer +# https://github.com/michael-lazar/rtv/ +# +# Copy the contents of this file to {HOME}/.mailcap, or point to it using $MAILCAPS +# Then launch RTV using the --enable-media flag. All shell commands defined in +# this file depend on external programs that must be installed on your system. +# +# HELP REQUESTED! If you come up with your own commands (especially for OS X) +# and would like to share, please post an issue on the GitHub tracker and we +# can get them added to this file as references. +# +# +# Mailcap 101 +# - The first entry with a matching MIME type will be executed, * is a wildcard +# - %s will be replaced with the image or video url +# - Add ``test=test -n "$DISPLAY"`` if your command opens a new window +# - Add ``needsterminal`` for commands that use the terminal +# - Add ``copiousoutput`` for commands that dump text to stdout + +############################################################################### +# Commands below this point will open media in a separate window without +# pausing execution of RTV. +############################################################################### + +# Feh is a simple and effective image viewer +# Note that rtv returns a list of urls for imgur albums, so we don't put quotes +# around the `%s` +image/x-imgur-album; feh -g 640x480 %s; test=test -n "$DISPLAY" +image/gif; mpv '%s' --autofit 640x480 --loop=inf; test=test -n "$DISPLAY" +image/*; feh -g 640x480 '%s'; test=test -n "$DISPLAY" + +# Youtube videos are assigned a custom mime-type, which can be streamed with +# vlc or youtube-dl. +video/x-youtube; vlc '%s' --width 640 --height 480; test=test -n "$DISPLAY" +video/x-youtube; mpv --ytdl-format=bestvideo+bestaudio/best '%s' --autofit 640x480; test=test -n "$DISPLAY" + +# Mpv is a simple and effective video streamer +video/*; mpv '%s' --autofit 640x480 --loop=inf; test=test -n "$DISPLAY" + +############################################################################### +# Commands below this point will attempt to display media directly in the +# terminal when a desktop is not available (e.g. inside of an SSH session) +############################################################################### + +# View images directly in your terminal with iTerm2 +# curl -L https://iterm2.com/misc/install_shell_integration_and_utilities.sh | bash +# image/*; bash -c '[[ "%s" == http* ]] && (curl -s %s | ~/.iterm2/imgcat) || ~/.iterm2/imgcat %s' && read -n 1; needsterminal + +# View true images in the terminal, supported by rxvt-unicode, xterm and st +# Requires the w3m-img package +# image/*; w3m -o 'ext_image_viewer=off' '%s'; needsterminal + +# Don't have a solution for albums yet +image/x-imgur-album; echo + +# 256 color images using half-width unicode characters +# Much higher quality that img2txt, but must be built from source +# https://github.com/rossy/img2xterm +image/*; curl -s '%s' | convert -resize 80x80 - jpg:/tmp/rtv.jpg && img2xterm /tmp/rtv.jpg; needsterminal; copiousoutput + +# Display images in classic ascii using img2txt and lib-caca +image/*; curl -s '%s' | convert - jpg:/tmp/rtv.jpg && img2txt -f utf8 /tmp/rtv.jpg; needsterminal; copiousoutput + +# Full motion videos - requires a framebuffer to view +video/x-youtube; mpv -vo drm -quiet '%s'; needsterminal +video/*; mpv -vo drm -quiet '%s'; needsterminal + +# Ascii videos +# video/x-youtube; youtube-dl -q -o - '%s' | mplayer -cache 8192 -vo caca -quiet -; needsterminal +# video/*; wget '%s' -O - | mplayer -cache 8192 -vo caca -quiet -; needsterminal diff --git a/nnreddit/templates/rtv.cfg b/nnreddit/templates/rtv.cfg new file mode 100644 index 0000000..40b07e3 --- /dev/null +++ b/nnreddit/templates/rtv.cfg @@ -0,0 +1,177 @@ +; Reddit Terminal Viewer Configuration File +; https://github.com/michael-lazar/rtv +; +; This file should be placed in $XDG_CONFIG/rtv/rtv.cfg +; If $XDG_CONFIG is not set, use ~/.config/rtv/rtv.cfg + +[rtv] +################## +# General Settings +################## + +; Turn on ascii-only mode to disable all unicode characters. +; This may be necessary for compatibility with some terminal browsers. +ascii = False + +; Turn on monochrome mode to disable color. +monochrome = False + +; Flash when an invalid action is executed. +flash = True + +; Enable debugging by logging all HTTP requests and errors to the given file. +;log = /tmp/rtv.log + +; Default subreddit that will be opened when the program launches. +subreddit = front +;subreddit = python +;subreddit = python+linux+programming +;subreddit = all + +; Allow rtv to store reddit authentication credentials between sessions. +persistent = True + +; Automatically log in on startup, if credentials are available. +autologin = True + +; Clear any stored credentials when the program starts. +clear_auth = False + +; Maximum number of opened links that will be saved in the history file. +history_size = 200 + +; Open external links using programs defined in the mailcap config. +enable_media = False + +; Maximum number of columns for a comment +max_comment_cols = 120 + +; Maximum number of columns for pager +;max_pager_cols = 70 + +; Hide username if logged in, display "Logged in" instead +hide_username = False + +; Color theme, use "rtv --list-themes" to view a list of valid options. +; This can be an absolute filepath, or the name of a theme file that has +; been installed into either the custom of default theme paths. +;theme = molokai + +################ +# OAuth Settings +################ +; This sections defines the paramaters that will be used during the OAuth +; authentication process. rtv is registered as an "installed app", +; see https://github.com/reddit/reddit/wiki/OAuth2 for more information. + +; These settings are defined at https://www.reddit.com/prefs/apps and should +; not be altered unless you are defining your own developer application. +oauth_client_id = E2oEtRQfdfAfNQ +oauth_client_secret = praw_gapfill +oauth_redirect_uri = http://127.0.0.1:65000/ + +; Port that the rtv webserver will listen on. This should match the redirect +; uri defined above. +oauth_redirect_port = 65000 + +; Access permissions that will be requested. +oauth_scope = edit,history,identity,mysubreddits,privatemessages,read,report,save,submit,subscribe,vote + +; This is a separate token for the imgur api. It's used to extract images +; from imgur links and albums so they can be opened with mailcap. +; See https://imgur.com/account/settings/apps to generate your own key. +imgur_client_id = 93396265f59dec9 + +[bindings] +############## +# Key Bindings +############## +; If you would like to define custom bindings, copy this section into your +; config file with the [bindings] heading. All commands must be bound to at +; least one key for the config to be valid. +; +; 1.) Plain keys can be represented by either uppercase/lowercase characters +; or the hexadecimal numbers referring their ascii codes. For reference, see +; https://en.wikipedia.org/wiki/ASCII#ASCII_printable_code_chart +; e.g. Q, q, 1, ? +; e.g. 0x20 (space), 0x3c (less-than sign) +; +; 2.) Special ascii control codes should be surrounded with <>. For reference, +; see https://en.wikipedia.org/wiki/ASCII#ASCII_control_code_chart +; e.g. (enter), (escape) +; +; 3.) Other special keys are defined by curses, they should be surrounded by <> +; and prefixed with KEY_. For reference, see +; https://docs.python.org/2/library/curses.html#constants +; e.g. (left arrow), , (page down) +; +; Notes: +; - Curses is unreliable and should always be used in conjunction +; with . +; - Use 0x20 for the space key. +; - A subset of Ctrl modifiers are available through the ascii control codes. +; For example, Ctrl-D will trigger an signal. See the table above for +; a complete reference. + +; Base page +EXIT = q +FORCE_EXIT = Q +HELP = ? +SORT_1 = 1 +SORT_2 = 2 +SORT_3 = 3 +SORT_4 = 4 +SORT_5 = 5 +SORT_6 = 6 +SORT_7 = 7 +MOVE_UP = k, +MOVE_DOWN = j, +PREVIOUS_THEME = +NEXT_THEME = +PAGE_UP = m, , +PAGE_DOWN = n, , +PAGE_TOP = gg +PAGE_BOTTOM = G +UPVOTE = a +DOWNVOTE = z +LOGIN = u +DELETE = d +EDIT = e +INBOX = i +REFRESH = r, +PROMPT = / +SAVE = w +COPY_PERMALINK = y +COPY_URL = Y +PRIVATE_MESSAGE = C +SUBSCRIPTIONS = s +MULTIREDDITS = S + +; Submission page +SUBMISSION_TOGGLE_COMMENT = 0x20 +SUBMISSION_OPEN_IN_BROWSER = o, , +SUBMISSION_POST = c +SUBMISSION_EXIT = h, +SUBMISSION_OPEN_IN_PAGER = l, +SUBMISSION_OPEN_IN_URLVIEWER = b +SUBMISSION_GOTO_PARENT = K +SUBMISSION_GOTO_SIBLING = J + +; Subreddit page +SUBREDDIT_SEARCH = f +SUBREDDIT_POST = c +SUBREDDIT_OPEN = l, +SUBREDDIT_OPEN_IN_BROWSER = o, , +SUBREDDIT_FRONTPAGE = p +SUBREDDIT_HIDE = 0x20 + +; Subscription page +SUBSCRIPTION_SELECT = l, , , +SUBSCRIPTION_EXIT = h, s, S, , + +; Inbox page +INBOX_VIEW_CONTEXT = l, +INBOX_OPEN_SUBMISSION = o, , +INBOX_REPLY = c +INBOX_MARK_READ = w +INBOX_EXIT = h, , diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000..00c8287 --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,8 @@ +praw==7.3.0 +rtv==1.26.0 +jsonrpyc==1.1.0 +vcrpy==2.0.1 +betamax==0.8.1 +betamax-serializers==0.2.0 +pytest==4.5.0 +urllib3==1.26.19 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..66072c7 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +virtualenv diff --git a/screenshot.png b/screenshot.png new file mode 100644 index 0000000..28c5263 Binary files /dev/null and b/screenshot.png differ diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b697a44 --- /dev/null +++ b/setup.py @@ -0,0 +1,33 @@ +"""nnreddit setup.py.""" + +import re +from codecs import open +from os import path +from setuptools import setup + + +PACKAGE_NAME = "nnreddit" +HERE = path.abspath(path.dirname(__file__)) + +# https://packaging.python.org/guides/single-sourcing-package-version/#single-sourcing-the-version +# I chose method #4 as it touts multi-language access, i.e., elisp and python +# Method #1a via setup.cfg is cleanest, though. +with open(path.join('nnreddit', 'VERSION')) as version_file: + version = version_file.read().strip() + +setup( + name=PACKAGE_NAME, + author="dickmao", + description="PRAW nnreddit backend", + license="GPLv3", + packages=[PACKAGE_NAME], + version=version, + package_data={ + "nnreddit": ["templates/*"], + }, + install_requires=[ + "jsonrpyc>=1.1.0", + "rtv>=1.26.0", + "praw>=7.3.0", + ], +) diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/__main__.py b/tests/__main__.py new file mode 100644 index 0000000..62079c4 --- /dev/null +++ b/tests/__main__.py @@ -0,0 +1,49 @@ +""" +Kicks things off via + +python -m nnreddit + +""" + +import os +import sys +import jsonrpyc +import argparse +from tempfile import mkstemp + +parser = argparse.ArgumentParser() +parser.add_argument("--token-file", help="refresh token filename") +args = parser.parse_args() + +os.environ["XDG_DATA_HOME"] = os.path.join(os.path.dirname(__file__), 'share') +try: + os.makedirs(os.environ["XDG_DATA_HOME"]) +except OSError: + if not os.path.isdir(os.environ["XDG_DATA_HOME"]): + raise + +from nnreddit.authenticated_reddit import AuthenticatedReddit +from rtv.config import TOKEN + +stdin = sys.stdin +stdout = sys.stdout +if __name__ != "__main__": + sys.stdout = sys.stderr = open(os.devnull, "w") + +logdir = os.path.join(os.path.dirname(__file__), 'log') +try: + os.makedirs(logdir) +except OSError: + if not os.path.isdir(logdir): + raise + +super_secret = os.path.join(os.path.dirname(TOKEN), 'super-secret-refresh-token') +kwargs = { 'token_file': args.token_file if args.token_file else (super_secret if os.path.exists(super_secret) else TOKEN), + 'history_file': mkstemp(dir='/var/tmp')[1], +} +jsonrpyc.RPC(target=AuthenticatedReddit(log_prefix=os.path.join(logdir, 'test_py.'), + decode_html_entities=False, + disable_update_check=True, + check_for_updates=False, + **kwargs), + stdin=stdin, stdout=stdout) diff --git a/tests/cassettes/cancel.json b/tests/cassettes/cancel.json new file mode 100644 index 0000000..ab4b736 --- /dev/null +++ b/tests/cassettes/cancel.json @@ -0,0 +1 @@ +{"http_interactions": [{"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/comments/blfat0/?sort=best&raw_json=1&limit=2048"}, "response": {"body": {"string": "{\"message\": \"Unauthorized\", \"error\": 401}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["41"], "x-xss-protection": ["1; mode=block"], "X-Cache": ["MISS"], "x-content-type-options": ["nosniff"], "access-control-expose-headers": ["X-Moose"], "Accept-Ranges": ["bytes"], "X-Timer": ["S1561588500.108061,VS0,VE41"], "X-Served-By": ["cache-ewr18145-EWR"], "X-Moose": ["majestic"], "access-control-allow-origin": ["*"], "Connection": ["keep-alive"], "Via": ["1.1 varnish"], "X-Cache-Hits": ["0"], "x-ua-compatible": ["IE=edge"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "cache-control": ["max-age=0, must-revalidate"], "Date": ["Wed, 26 Jun 2019 22:35:00 GMT"], "x-frame-options": ["SAMEORIGIN"], "Server": ["snooserv"], "Content-Type": ["application/json; charset=UTF-8"], "www-authenticate": ["Bearer realm=\"reddit\", error=\"invalid_token\""]}, "status": {"message": "Unauthorized", "code": 401}, "url": "https://oauth.reddit.com/comments/blfat0/?sort=best&raw_json=1&limit=2048"}, "recorded_at": "2019-06-26T22:35:00"}, {"request": {"body": {"string": "grant_type=refresh_token&refresh_token=**********", "encoding": "utf-8"}, "headers": {"Content-Length": ["79"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["**********"]}, "method": "POST", "uri": "https://www.reddit.com/api/v1/access_token"}, "response": {"body": {"string": "{\"access_token\": \"**********\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"edit history identity mysubreddits privatemessages read report save submit subscribe vote\"}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["206"], "x-xss-protection": ["1; mode=block"], "X-Cache": ["MISS"], "x-content-type-options": ["nosniff"], "Accept-Ranges": ["bytes"], "X-Timer": ["S1561588502.977129,VS0,VE51"], "X-Served-By": ["cache-lga21928-LGA"], "X-Moose": ["majestic"], "Connection": ["keep-alive"], "Via": ["1.1 varnish"], "X-Cache-Hits": ["0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "cache-control": ["max-age=0, must-revalidate"], "Date": ["Wed, 26 Jun 2019 22:35:02 GMT"], "x-frame-options": ["SAMEORIGIN"], "Server": ["snooserv"], "Content-Type": ["application/json; charset=UTF-8"]}, "status": {"message": "OK", "code": 200}, "url": "https://www.reddit.com/api/v1/access_token"}, "recorded_at": "2019-06-26T22:35:02"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/comments/blfat0/?sort=best&raw_json=1&limit=2048"}, "response": {"body": {"string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" [https://icdn8.digitaltrends.com/image/history-of-virtual-reality-super-cockpit-720x720.jpg](https://icdn8.digitaltrends.com/image/history-of-virtual-reality-super-cockpit-720x720.jpg)\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing inline image links. Is it a url link or an inline image render?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"parent_whitelist_status\": null, \"hide_score\": false, \"name\": \"t3_blfat0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_250hgx\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557193781.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://icdn8.digitaltrends.com/image/history-of-virtual-reality-super-cockpit-720x720.jpg\\\"\\u003Ehttps://icdn8.digitaltrends.com/image/history-of-virtual-reality-super-cockpit-720x720.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/VS-btwZZkqPDL2Vd66P5CJRiy5_y97gubmfmabrWvwk.jpg?auto=webp\\u0026s=d3c10ad19e8b8eca7d67c9c02e5e3855da850f74\", \"width\": 720, \"height\": 480}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/VS-btwZZkqPDL2Vd66P5CJRiy5_y97gubmfmabrWvwk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7114703deabd7dabcdb76a4a297e1d9972e2b894\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/VS-btwZZkqPDL2Vd66P5CJRiy5_y97gubmfmabrWvwk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=68c8d4a2411529b4604cc99596a75cd05521c732\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/VS-btwZZkqPDL2Vd66P5CJRiy5_y97gubmfmabrWvwk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1723b2ec798f9d1ec140cc51eea133f1568769dd\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/VS-btwZZkqPDL2Vd66P5CJRiy5_y97gubmfmabrWvwk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=edead561607977d7d32b995e9fa3827e494870c5\", \"width\": 640, \"height\": 426}], \"variants\": {}, \"id\": \"K2EIcIbKe-BpkJJ7Ks_tiI6dFeXtEYZt2OiHV5_IJzo\"}], \"enabled\": false}, \"all_awardings\": [], \"media\": null, \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blfat0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MeddyEvalNight\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"subreddit_subscribers\": 721, \"created_utc\": 1557164981.0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emnwgbf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"report_reasons\": null, \"author\": \"MeddyEvalNight\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Not what I wanted... next test.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"collapsed_reason\": null, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot what I wanted... next test.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"gildings\": {}, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emnwgbf/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_emnwgbf\", \"created\": 1557193820.0, \"subreddit\": \"PostPreview\", \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1557165020.0, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emny9vc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"report_reasons\": null, \"author\": \"MeddyEvalNight\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Image was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u003Cimg/\\u003E . It looks like an inline rendered image needs to be uploaded\\n\\n\\u0026#x200B;\\n\\n[Video link](https://www.youtube.com/watch?v=yd98RGxad0U)\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"collapsed_reason\": null, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EImage was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u0026lt;img/\\u0026gt; . It looks like an inline rendered image needs to be uploaded\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=yd98RGxad0U\\\"\\u003EVideo link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"gildings\": {}, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emny9vc/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_emny9vc\", \"created\": 1557194874.0, \"subreddit\": \"PostPreview\", \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1557166074.0, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]", "encoding": "UTF-8"}, "headers": {"Content-Length": ["8171"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 26 Jun 2019 22:35:02 GMT"], "x-ratelimit-remaining": ["586.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18145-EWR"], "x-ratelimit-used": ["14"], "Via": ["1.1 varnish"], "X-Timer": ["S1561588502.046138,VS0,VE143"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["298"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/comments/blfat0/?sort=best&raw_json=1&limit=2048"}, "recorded_at": "2019-06-26T22:35:02"}, {"request": {"body": {"string": "api_type=json&id=t1_eqwoano", "encoding": "utf-8"}, "headers": {"Content-Length": ["27"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["bearer **********"]}, "method": "POST", "uri": "https://oauth.reddit.com/api/del/?raw_json=1"}, "response": {"body": {"string": "{}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["2"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 26 Jun 2019 22:35:02 GMT"], "x-ratelimit-remaining": ["585.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18145-EWR"], "x-ratelimit-used": ["15"], "Via": ["1.1 varnish"], "X-Timer": ["S1561588503.720492,VS0,VE153"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["298"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/api/del/?raw_json=1"}, "recorded_at": "2019-06-26T22:35:02"}], "recorded_with": "betamax/0.8.1"} \ No newline at end of file diff --git a/tests/cassettes/canonical.json b/tests/cassettes/canonical.json new file mode 100644 index 0000000..87b2f45 --- /dev/null +++ b/tests/cassettes/canonical.json @@ -0,0 +1 @@ +{"http_interactions": [{"request": {"body": {"string": "grant_type=refresh_token&refresh_token=**********", "encoding": "utf-8"}, "headers": {"Content-Length": ["79"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["**********"]}, "method": "POST", "uri": "https://www.reddit.com/api/v1/access_token"}, "response": {"body": {"string": "{\"access_token\": \"**********\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"edit history identity mysubreddits privatemessages read report save submit subscribe vote\"}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["206"], "x-xss-protection": ["1; mode=block"], "X-Cache": ["MISS"], "x-content-type-options": ["nosniff"], "Set-Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz; Domain=reddit.com; Max-Age=63071999; Path=/; secure"], "Accept-Ranges": ["bytes"], "X-Timer": ["S1563495013.036345,VS0,VE38"], "X-Served-By": ["cache-ewr18123-EWR"], "X-Moose": ["majestic"], "Connection": ["keep-alive"], "Via": ["1.1 varnish"], "X-Cache-Hits": ["0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "cache-control": ["max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:13 GMT"], "x-frame-options": ["SAMEORIGIN"], "Server": ["snooserv"], "Content-Type": ["application/json; charset=UTF-8"]}, "status": {"message": "OK", "code": 200}, "url": "https://www.reddit.com/api/v1/access_token"}, "recorded_at": "2019-07-19T00:10:13"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 3, \"children\": [{\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"emacs\", \"header_img\": \"https://f.thumbs.redditmedia.com/1CBmBnoqVxNCXdVS.png\", \"title\": \"M-x emacs-reddit\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/emacs\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 30846, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2qhwu\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"The extensible, customizable, self-documenting real-time display editor.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA sub-reddit for the timeless and infinitely powerful editor. \\u003Ca href=\\\"http://emacsrocks.com/\\\"\\u003EWant to see what Emacs is capable of?!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGet Emacs\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://ftp.gnu.org/gnu/emacs/windows/\\\"\\u003EWindows\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://emacsformacosx.com/\\\"\\u003EMac OS X\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGNU/Linux and BSD (Just get it from your distribution\\u0026#39;s package manager)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.gnu.org/software/emacs/#Obtaining\\\"\\u003EBuild it from source\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Resources\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/\\\"\\u003EEmacs Wiki\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://wikemacs.org/\\\"\\u003EWikEmacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://emacs.zeef.com/ehartc\\\"\\u003EEmacs Reference\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://shop.oreilly.com/product/9780596006488.do\\\"\\u003ELearning GNU Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf\\\"\\u003EEmacs Reference Card\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026amp;restrict_sr=on\\u0026amp;sort=new\\u0026amp;t=all\\\"\\u003EWeekly tips/tricks/etc threads\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Tutorials\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/\\\"\\u003EBeginner\\u2019s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/\\\"\\u003EAbsolute Beginner\\u0026#39;s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/\\\"\\u003EHow to Learn Emacs: A Hand-drawn One-pager for Beginners\\n\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERelated Subreddits\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/orgmode\\\"\\u003Er/orgmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/evilmode\\\"\\u003Er/evilmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/spacemacs\\\"\\u003Er/spacemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/planetemacs\\\"\\u003Er/planetemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUseful Emacs configuration files and distributions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/technomancy/better-defaults\\\"\\u003EBetter Defaults\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick pain-saver tip\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/emacs/MovingTheCtrlKey\\\"\\u003EPut the Caps Lock key to better use!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": [152, 50], \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1210079411.0, \"wls\": 6, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe extensible, customizable, self-documenting real-time display editor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2qhwu\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"A sub-reddit for the timeless and infinitely powerful editor. [Want to see what Emacs is capable of?!](http://emacsrocks.com/)\\n\\n**Get Emacs**\\n\\n* [Windows](http://ftp.gnu.org/gnu/emacs/windows/)\\n* [Mac OS X](http://emacsformacosx.com/)\\n* GNU/Linux and BSD (Just get it from your distribution's package manager)\\n* [Build it from source] (http://www.gnu.org/software/emacs/#Obtaining)\\n\\n**Emacs Resources**\\n\\n* [Emacs Wiki](http://www.emacswiki.org/)\\n* [WikEmacs](http://wikemacs.org/)\\n* [Emacs Reference](https://emacs.zeef.com/ehartc)\\n* [Learning GNU Emacs](http://shop.oreilly.com/product/9780596006488.do)\\n* [Emacs Reference Card](https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf)\\n* [Weekly tips/tricks/etc threads](/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026restrict_sr=on\\u0026sort=new\\u0026t=all)\\n\\n**Emacs Tutorials**\\n\\n* [Beginner\\u2019s Guide to Emacs](http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/)\\n* [Absolute Beginner's Guide to Emacs](http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/)\\n* [How to Learn Emacs: A Hand-drawn One-pager for Beginners\\n](http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/)\\n\\n**Related Subreddits**\\n\\n* r/orgmode\\n* r/evilmode\\n* r/spacemacs\\n* r/planetemacs\\n\\n**Useful Emacs configuration files and distributions**\\n\\n* [Better Defaults](https://github.com/technomancy/better-defaults)\\n\\n**Quick pain-saver tip**\\n\\n* [Put the Caps Lock key to better use!](http://www.emacswiki.org/emacs/MovingTheCtrlKey)\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": \"all_ads\", \"url\": \"/r/emacs/\", \"created_utc\": 1210050611.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": true, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"orgmode\", \"header_img\": null, \"title\": \"Org-mode\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/orgmode\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 4991, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2s5ak\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"[Org-mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EAbout Org mode\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EResources\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://orgmode.org/#docs\\\"\\u003EOfficial Documentation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/worg/\\\"\\u003ECommunity Documentation (Worg)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/guide/\\\"\\u003ECompact Org-mode Guide\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://lists.gnu.org/archive/html/emacs-orgmode/\\\"\\u003EOfficial Mailing list\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EIRC Channel: #org-mode on \\u003Ca href=\\\"http://freenode.net/\\\"\\u003EFreenode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMatrix: \\u003Ca href=\\\"https://matrix.to/#/#org-mode:matrix.org\\\"\\u003E#org-mode:matrix.org\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003ERelated Subreddits\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1287182517.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg-mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2s5ak\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"# About Org mode\\n\\n[Org mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\n\\n# Resources\\n\\n* [Official Documentation](http://orgmode.org/#docs)\\n* [Community Documentation (Worg)](https://orgmode.org/worg/)\\n* [Compact Org-mode Guide](https://orgmode.org/guide/)\\n* [Official Mailing list](http://lists.gnu.org/archive/html/emacs-orgmode/)\\n* IRC Channel: #org-mode on [Freenode](http://freenode.net/)\\n* Matrix: [#org-mode:matrix.org](https://matrix.to/#/#org-mode:matrix.org)\\n\\n# Related Subreddits\\n\\n* /r/emacs\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/orgmode/\", \"created_utc\": 1287153717.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"PostPreview\", \"header_img\": null, \"title\": \"Preview your Reddit posts\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/PostPreview\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 754, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2waml\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"A place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWhat this is\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAllowed posts\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYou can post whatever and however much you\\u0026#39;d like here, \\u003Cstrong\\u003Eas long as it conforms to \\u003Ca href=\\\"http://www.reddit.com/rules\\\"\\u003Ereddiquette\\u003C/a\\u003E\\u003C/strong\\u003E (eg. NO personal info, no alt accounts, etc). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPlease\\u003C/strong\\u003E utilize the Report button for content you feel breaks these rules, we can\\u0026#39;t sift through EVERYTHING, so your help is greatly appreciated.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpam filter\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESome posts/comments may be auto-rejected by Reddit\\u0026#39;s spam filter, despite the threshold set to \\u0026quot;Minimal\\u0026quot; here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you don\\u0026#39;t see you post show up, it\\u0026#39;s likely it got rejected. Message the mod mail and we can override it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHave fun previewing!\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"#24a0ed\", \"can_assign_user_flair\": true, \"created\": 1360563027.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": \"Try a text post!\", \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": \"confidence\", \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": true, \"id\": \"2waml\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"**What this is** \\n\\u003E A place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\n \\n**Allowed posts**\\n\\u003E You can post whatever and however much you'd like here, **as long as it conforms to [reddiquette](http://www.reddit.com/rules)** (eg. NO personal info, no alt accounts, etc). \\n\\u003E \\n\\u003E **Please** utilize the Report button for content you feel breaks these rules, we can't sift through EVERYTHING, so your help is greatly appreciated.\\n \\n**Spam filter** \\n\\u003E Some posts/comments may be auto-rejected by Reddit's spam filter, despite the threshold set to \\\"Minimal\\\" here. \\n\\u003E \\n\\u003E If you don't see you post show up, it's likely it got rejected. Message the mod mail and we can override it.\\n\\n**Have fun previewing!**\\n\\n \\n \", \"submit_link_label\": \"Test out a link!\", \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/PostPreview/\", \"created_utc\": 1360534227.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["18143"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:13 GMT"], "x-ratelimit-remaining": ["599.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["1"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495013.143822,VS0,VE367"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["587"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "recorded_at": "2019-07-19T00:10:13"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cf00mv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu6927p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yourcheers\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563494893.0, \"send_replies\": true, \"parent_id\": \"t1_eu68auu\", \"score\": 1, \"author_fullname\": \"t2_z9mq8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Looks like that didn't work, I might be missing something.\\n\\n\\u0026#x200B;\\n\\nFrom the following link found: \\\"(setq compilation-read-command nil) \\\" which helped. \\n [https://www.emacswiki.org/emacs/CompileCommand](https://www.emacswiki.org/emacs/CompileCommand)\", \"link_title\": \"KDB macro execution\", \"author_flair_css_class\": null, \"name\": \"t1_eu6927p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks like that didn\\u0026#39;t work, I might be missing something.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the following link found: \\u0026quot;(setq compilation-read-command nil) \\u0026quot; which helped.\\u003Cbr/\\u003E\\n \\u003Ca href=\\\"https://www.emacswiki.org/emacs/CompileCommand\\\"\\u003Ehttps://www.emacswiki.org/emacs/CompileCommand\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cf00mv/kdb_macro_execution/eu6927p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cf00mv/kdb_macro_execution/\", \"report_reasons\": null, \"link_author\": \"yourcheers\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cf00mv/kdb_macro_execution/\", \"created\": 1563523693.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cf00mv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu68auu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"unbelievable_sc2\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563494393.0, \"send_replies\": true, \"parent_id\": \"t3_cf00mv\", \"score\": 1, \"author_fullname\": \"t2_j6h5v\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"How about\\n\\n (global-set-key (kbd \\\"\\\\C-z\\\") (lambda () (interactive) (compile compile-command)))\", \"link_title\": \"KDB macro execution\", \"author_flair_css_class\": null, \"name\": \"t1_eu68auu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow about\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(global-set-key (kbd \\u0026quot;\\\\C-z\\u0026quot;) (lambda () (interactive) (compile compile-command)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cf00mv/kdb_macro_execution/eu68auu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cf00mv/kdb_macro_execution/\", \"report_reasons\": null, \"link_author\": \"yourcheers\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cf00mv/kdb_macro_execution/\", \"created\": 1563523193.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdu7cd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu64jw2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"npostavs\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1563491994.0, \"send_replies\": true, \"parent_id\": \"t1_eu4xzw0\", \"score\": 2, \"author_fullname\": \"t2_5ha0gu1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"They're both equivalent to `(let ((var1 nil) (var2 nil)) ...)`, I usually prefer this more explicit form.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eu64jw2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThey\\u0026#39;re both equivalent to \\u003Ccode\\u003E(let ((var1 nil) (var2 nil)) ...)\\u003C/code\\u003E, I usually prefer this more explicit form.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdu7cd/weekly_tipstricketc_thread/eu64jw2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdu7cd/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdu7cd/weekly_tipstricketc_thread/\", \"created\": 1563520794.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdfr20\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu63puq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pr2jerry\", \"num_comments\": 20, \"can_mod_post\": false, \"created_utc\": 1563491474.0, \"send_replies\": true, \"parent_id\": \"t1_eu3uvpx\", \"score\": 1, \"author_fullname\": \"t2_fwsikp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Let's face it, you just can't \\\"finish\\\" messing with emacs config. Once you get into it, it's endless tinkering, rewriting, messing with your config ;-)\", \"link_title\": \"[ANN] major-mode-hydra / pretty-hydra 0.2.0\", \"author_flair_css_class\": null, \"name\": \"t1_eu63puq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELet\\u0026#39;s face it, you just can\\u0026#39;t \\u0026quot;finish\\u0026quot; messing with emacs config. Once you get into it, it\\u0026#39;s endless tinkering, rewriting, messing with your config ;-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdfr20/ann_majormodehydra_prettyhydra_020/eu63puq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdfr20/ann_majormodehydra_prettyhydra_020/\", \"report_reasons\": null, \"link_author\": \"pr2jerry\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdfr20/ann_majormodehydra_prettyhydra_020/\", \"created\": 1563520274.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563490347.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyrkz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu60v33\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"unbelievable_sc2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563489707.0, \"send_replies\": true, \"parent_id\": \"t3_ceyrkz\", \"score\": 1, \"author_fullname\": \"t2_j6h5v\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[dir-locals](https://www.gnu.org/software/emacs/manual/html_node/emacs/Directory-Variables.html) can definitely be used for that. I personally use this to set up a local minor mode, in which the a can then be bound which I set up to open a project specific hydra, with actions for compiling or opening the source folder in the explorer.\\n\\nIn case you are interested in my dir-locals:\\n\\n ((nil . ((eval . (progn\\n (defvar context-mode-map (make-sparse-keymap)\\n \\\"Keymap while context-mode is active.\\\")\\n (define-minor-mode context-mode\\n \\\"A temporary minor mode to be activated only specific to a buffer.\\\"\\n nil\\n :lighter \\\" [f2]-Context\\\"\\n context-mode-map)\\n (context-mode 1)\\n \\n (defhydra hydra-context (context-mode-map \\\"\\u003Cf2\\u003E\\\")\\n \\\"Context Actions:\\\"\\n (\\\"b\\\" save-and-find-build-script-and-compile \\\"build\\\" :color blue)\\n (\\\"o\\\" browse-file-directory \\\"open\\\" :color blue)\\n (\\\"q\\\" nil \\\"quit\\\" :color blue))\\n \\n (define-key context-mode-map (kbd \\\"\\u003Cf2\\u003E\\\") 'hydra-context/body)\\n \\n (font-lock-add-keywords\\n 'c++-mode\\n '((\\\"\\\\\\\\\\u003C\\\\\\\\(if_debug\\\\\\\\|if_windows\\\\\\\\|if_linux\\\\\\\\|defer\\\\\\\\|proc\\\\\\\\|try\\\\\\\\|try_void\\\\\\\\|without_logging\\\\\\\\)\\\\\\\\\\u003E\\\" .\\n font-lock-keyword-face)))))))\\n \\n (c++-mode . ((eval . (company-clang-set-prefix \\\"slime.h\\\"))\\n (eval . (flycheck-mode 0))\\n (eval . (rainbow-mode 0))\\n )))\\n\\nSo adapting this to your needs I got a dir-locals that looks like this:\\n\\n ((nil . ((eval . (progn\\n (defvar context-mode-map (make-sparse-keymap)\\n \\\"Keymap while context-mode is active.\\\")\\n (define-minor-mode context-mode\\n \\\"A temporary minor mode to be activated only specific to a buffer.\\\"\\n nil\\n :lighter \\\" [f7]-git-status\\\"\\n context-mode-map)\\n (context-mode 1)\\n (define-key context-mode-map\\n (kbd \\\"\\u003Cf7\\u003E\\\")\\n (lambda () (interactive) (eshell-command \\\"git status\\\"))))))))\", \"link_title\": \"Define a custom keybinding for a specific project\", \"author_flair_css_class\": null, \"name\": \"t1_eu60v33\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/emacs/Directory-Variables.html\\\"\\u003Edir-locals\\u003C/a\\u003E can definitely be used for that. I personally use this to set up a local minor mode, in which the a can then be bound which I set up to open a project specific hydra, with actions for compiling or opening the source folder in the explorer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn case you are interested in my dir-locals:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E((nil . ((eval . (progn\\n (defvar context-mode-map (make-sparse-keymap)\\n \\u0026quot;Keymap while context-mode is active.\\u0026quot;)\\n (define-minor-mode context-mode\\n \\u0026quot;A temporary minor mode to be activated only specific to a buffer.\\u0026quot;\\n nil\\n :lighter \\u0026quot; [f2]-Context\\u0026quot;\\n context-mode-map)\\n (context-mode 1)\\n\\n (defhydra hydra-context (context-mode-map \\u0026quot;\\u0026lt;f2\\u0026gt;\\u0026quot;)\\n \\u0026quot;Context Actions:\\u0026quot;\\n (\\u0026quot;b\\u0026quot; save-and-find-build-script-and-compile \\u0026quot;build\\u0026quot; :color blue)\\n (\\u0026quot;o\\u0026quot; browse-file-directory \\u0026quot;open\\u0026quot; :color blue)\\n (\\u0026quot;q\\u0026quot; nil \\u0026quot;quit\\u0026quot; :color blue))\\n\\n (define-key context-mode-map (kbd \\u0026quot;\\u0026lt;f2\\u0026gt;\\u0026quot;) \\u0026#39;hydra-context/body)\\n\\n (font-lock-add-keywords\\n \\u0026#39;c++-mode\\n \\u0026#39;((\\u0026quot;\\\\\\\\\\u0026lt;\\\\\\\\(if_debug\\\\\\\\|if_windows\\\\\\\\|if_linux\\\\\\\\|defer\\\\\\\\|proc\\\\\\\\|try\\\\\\\\|try_void\\\\\\\\|without_logging\\\\\\\\)\\\\\\\\\\u0026gt;\\u0026quot; .\\n font-lock-keyword-face)))))))\\n\\n (c++-mode . ((eval . (company-clang-set-prefix \\u0026quot;slime.h\\u0026quot;))\\n (eval . (flycheck-mode 0))\\n (eval . (rainbow-mode 0))\\n )))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo adapting this to your needs I got a dir-locals that looks like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E((nil . ((eval . (progn\\n (defvar context-mode-map (make-sparse-keymap)\\n \\u0026quot;Keymap while context-mode is active.\\u0026quot;)\\n (define-minor-mode context-mode\\n \\u0026quot;A temporary minor mode to be activated only specific to a buffer.\\u0026quot;\\n nil\\n :lighter \\u0026quot; [f7]-git-status\\u0026quot;\\n context-mode-map)\\n (context-mode 1)\\n (define-key context-mode-map\\n (kbd \\u0026quot;\\u0026lt;f7\\u0026gt;\\u0026quot;)\\n (lambda () (interactive) (eshell-command \\u0026quot;git status\\u0026quot;))))))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ceyrkz/define_a_custom_keybinding_for_a_specific_project/eu60v33/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ceyrkz/define_a_custom_keybinding_for_a_specific_project/\", \"report_reasons\": null, \"link_author\": \"Mat-R\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ceyrkz/define_a_custom_keybinding_for_a_specific_project/\", \"created\": 1563518507.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceuyq9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5z4bg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grumpy_ta\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563488655.0, \"send_replies\": true, \"parent_id\": \"t1_eu5ksv9\", \"score\": 1, \"author_fullname\": \"t2_7eitd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"From EmacsWiki :https://www.emacswiki.org/emacs/EmacsClient\\n\\n----------------------------------------------------------------------------------------------\\n\\nDesktop Environment\\n\\nYou can install a desktop entry for Emacsclient. This will make it available in context menus in Gnome, KDE, XFCE, and other Freedesktop environments. Create a file named emacsclient.desktop in ~/.local/share/applications containing the following:\\n\\n[Desktop Entry]\\nName=Emacs (Client)\\nGenericName=Text Editor\\nComment=Edit text\\nMimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;\\nExec=emacsclient -a \\\"emacs\\\" %F\\nIcon=emacs\\nType=Application\\nTerminal=false\\nCategories=Development;TextEditor;Utility;\\nStartupWMClass=Emacs\", \"link_title\": \"Force only one instance (window)\", \"author_flair_css_class\": null, \"name\": \"t1_eu5z4bg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFrom EmacsWiki :\\u003Ca href=\\\"https://www.emacswiki.org/emacs/EmacsClient\\\"\\u003Ehttps://www.emacswiki.org/emacs/EmacsClient\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDesktop Environment\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can install a desktop entry for Emacsclient. This will make it available in context menus in Gnome, KDE, XFCE, and other Freedesktop environments. Create a file named emacsclient.desktop in ~/.local/share/applications containing the following:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Desktop Entry]\\nName=Emacs (Client)\\nGenericName=Text Editor\\nComment=Edit text\\nMimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;\\nExec=emacsclient -a \\u0026quot;emacs\\u0026quot; %F\\nIcon=emacs\\nType=Application\\nTerminal=false\\nCategories=Development;TextEditor;Utility;\\nStartupWMClass=Emacs\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ceuyq9/force_only_one_instance_window/eu5z4bg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ceuyq9/force_only_one_instance_window/\", \"report_reasons\": null, \"link_author\": \"pailanderCO\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ceuyq9/force_only_one_instance_window/\", \"created\": 1563517455.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cexhwm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5wks2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"colemaker360\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563486994.0, \"send_replies\": true, \"parent_id\": \"t1_eu5qv3z\", \"score\": 2, \"author_fullname\": \"t2_3zw5gmvs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I read it more as \\u201cdon\\u2019t let any of this stuff scare you off, you don\\u2019t need it right away. Ignore it for now\\u201d. Honestly, you can\\u2019t even really start using an editor like vim without pouring over the tutorial. The advantage of using a non-modal editor is this is the primary way everyone else does editing. Emacs can be way less scary in that way. (Said as someone who uses evil because modal editing is awesome).\", \"link_title\": \"Mastering emacs in one year guide for begginners\", \"author_flair_css_class\": null, \"name\": \"t1_eu5wks2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI read it more as \\u201cdon\\u2019t let any of this stuff scare you off, you don\\u2019t need it right away. Ignore it for now\\u201d. Honestly, you can\\u2019t even really start using an editor like vim without pouring over the tutorial. The advantage of using a non-modal editor is this is the primary way everyone else does editing. Emacs can be way less scary in that way. (Said as someone who uses evil because modal editing is awesome).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cexhwm/mastering_emacs_in_one_year_guide_for_begginners/eu5wks2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cexhwm/mastering_emacs_in_one_year_guide_for_begginners/\", \"report_reasons\": null, \"link_author\": \"unixfix\", \"author_flair_text\": null, \"link_url\": \"https://github.com/redguardtoo/mastering-emacs-in-one-year-guide\", \"created\": 1563515794.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceajn7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5w5c4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"apliens\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563486710.0, \"send_replies\": true, \"parent_id\": \"t3_ceajn7\", \"score\": 1, \"author_fullname\": \"t2_lgdoh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Why would you point this out, my life was fine not noticing..\", \"link_title\": \"Emacs' box attribute kinda sucks\", \"author_flair_css_class\": null, \"name\": \"t1_eu5w5c4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy would you point this out, my life was fine not noticing..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ceajn7/emacs_box_attribute_kinda_sucks/eu5w5c4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ceajn7/emacs_box_attribute_kinda_sucks/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ceajn7/emacs_box_attribute_kinda_sucks/\", \"created\": 1563515510.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cexhwm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5tz1k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheIsletOfLangerhans\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563485302.0, \"send_replies\": true, \"parent_id\": \"t1_eu5qv3z\", \"score\": 1, \"author_fullname\": \"t2_8o8hp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Honestly in the first year I used emacs I probably didn't try to learn elisp or customize my setup any. But learning the key bindings seems kinda necessary.\", \"link_title\": \"Mastering emacs in one year guide for begginners\", \"author_flair_css_class\": null, \"name\": \"t1_eu5tz1k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHonestly in the first year I used emacs I probably didn\\u0026#39;t try to learn elisp or customize my setup any. But learning the key bindings seems kinda necessary.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cexhwm/mastering_emacs_in_one_year_guide_for_begginners/eu5tz1k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cexhwm/mastering_emacs_in_one_year_guide_for_begginners/\", \"report_reasons\": null, \"link_author\": \"unixfix\", \"author_flair_text\": null, \"link_url\": \"https://github.com/redguardtoo/mastering-emacs-in-one-year-guide\", \"created\": 1563514102.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ces5gd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5tyhw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"AptC34\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563485292.0, \"send_replies\": true, \"parent_id\": \"t3_ces5gd\", \"score\": 1, \"author_fullname\": \"t2_sw87f\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Can you provide more details? I\\u2019ve been using it for a couple of months and I didn\\u2019t notice anything.\", \"link_title\": \"Exwm: Workspaces have smaller font size compared to original workspace\", \"author_flair_css_class\": null, \"name\": \"t1_eu5tyhw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan you provide more details? I\\u2019ve been using it for a couple of months and I didn\\u2019t notice anything.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ces5gd/exwm_workspaces_have_smaller_font_size_compared/eu5tyhw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ces5gd/exwm_workspaces_have_smaller_font_size_compared/\", \"report_reasons\": null, \"link_author\": \"forppinrange\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ces5gd/exwm_workspaces_have_smaller_font_size_compared/\", \"created\": 1563514092.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceuyq9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5t9az\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"slippycheeze\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563484843.0, \"send_replies\": true, \"parent_id\": \"t1_eu5ksv9\", \"score\": 2, \"author_fullname\": \"t2_yxcud\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have no specific advice on how to start Emacs; there are a wide range of choices including running a normal GUI Emacs that starts the server, with no daemon as such.\\n\\nFrom the GUI you need to configure your system to use emacsclient(1) instead of emacs(1) when it opens things. That is ... system specific, basically, and I don't know enough about current Linux desktop environment configuration to advise you on it.\\n\\nIn the dark past it used to be either editing the mailcap - now long dead, I think - or modifying the ini file application startup declarations in an xdg directory. Today, no idea. Hopefully less awful than it was back when. :)\", \"link_title\": \"Force only one instance (window)\", \"author_flair_css_class\": null, \"name\": \"t1_eu5t9az\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have no specific advice on how to start Emacs; there are a wide range of choices including running a normal GUI Emacs that starts the server, with no daemon as such.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the GUI you need to configure your system to use emacsclient(1) instead of emacs(1) when it opens things. That is ... system specific, basically, and I don\\u0026#39;t know enough about current Linux desktop environment configuration to advise you on it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the dark past it used to be either editing the mailcap - now long dead, I think - or modifying the ini file application startup declarations in an xdg directory. Today, no idea. Hopefully less awful than it was back when. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ceuyq9/force_only_one_instance_window/eu5t9az/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ceuyq9/force_only_one_instance_window/\", \"report_reasons\": null, \"link_author\": \"pailanderCO\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ceuyq9/force_only_one_instance_window/\", \"created\": 1563513643.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce1o53\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5t1mg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"takethecannoli4\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1563484705.0, \"send_replies\": true, \"parent_id\": \"t1_eu5so85\", \"score\": 1, \"author_fullname\": \"t2_13p6gig2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks. That\\u2019s what I thought. Not ideal, especially if you like to experiment with settings, packages etc.\", \"link_title\": \"Emacs on Linux is an amazing environment\", \"author_flair_css_class\": null, \"name\": \"t1_eu5t1mg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks. That\\u2019s what I thought. Not ideal, especially if you like to experiment with settings, packages etc.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ce1o53/emacs_on_linux_is_an_amazing_environment/eu5t1mg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ce1o53/emacs_on_linux_is_an_amazing_environment/\", \"report_reasons\": null, \"link_author\": \"FOSHavoc\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ce1o53/emacs_on_linux_is_an_amazing_environment/\", \"created\": 1563513505.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce1o53\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5so85\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cyc115\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1563484465.0, \"send_replies\": true, \"parent_id\": \"t1_eu1shi9\", \"score\": 2, \"author_fullname\": \"t2_ho4ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Short answer is yes. Long answer is you can recover (somewhat) by switching to tty and kill emacs. Then switch to gui and start emacs again. It used to be a probably for me, but if you can trace down the cause of the hang, it should work pretty well. Another quirk is if your laptop wake up from sleep and have chrome open. Chrome will steal focus until you minimize it.\", \"link_title\": \"Emacs on Linux is an amazing environment\", \"author_flair_css_class\": null, \"name\": \"t1_eu5so85\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShort answer is yes. Long answer is you can recover (somewhat) by switching to tty and kill emacs. Then switch to gui and start emacs again. It used to be a probably for me, but if you can trace down the cause of the hang, it should work pretty well. Another quirk is if your laptop wake up from sleep and have chrome open. Chrome will steal focus until you minimize it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ce1o53/emacs_on_linux_is_an_amazing_environment/eu5so85/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ce1o53/emacs_on_linux_is_an_amazing_environment/\", \"report_reasons\": null, \"link_author\": \"FOSHavoc\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ce1o53/emacs_on_linux_is_an_amazing_environment/\", \"created\": 1563513265.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cduuxb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5s3ti\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GDP10\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1563484107.0, \"send_replies\": true, \"parent_id\": \"t1_etywkud\", \"score\": 2, \"author_fullname\": \"t2_ws9gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[I've got a blog post](https://ylluminarious.github.io/2019/05/23/how-to-fix-the-emacs-mac-port-for-multi-tty-access/) in which I explained how to get `emacsclient` to work.\", \"link_title\": \"Opinions on Railwaycat's Emacs-MacPort?\", \"author_flair_css_class\": null, \"name\": \"t1_eu5s3ti\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://ylluminarious.github.io/2019/05/23/how-to-fix-the-emacs-mac-port-for-multi-tty-access/\\\"\\u003EI\\u0026#39;ve got a blog post\\u003C/a\\u003E in which I explained how to get \\u003Ccode\\u003Eemacsclient\\u003C/code\\u003E to work.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cduuxb/opinions_on_railwaycats_emacsmacport/eu5s3ti/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cduuxb/opinions_on_railwaycats_emacsmacport/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cduuxb/opinions_on_railwaycats_emacsmacport/\", \"created\": 1563512907.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cduuxb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5ry4m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GDP10\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1563484008.0, \"send_replies\": true, \"parent_id\": \"t3_cduuxb\", \"score\": 1, \"author_fullname\": \"t2_ws9gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It's actually [Mitsuharu Yamamoto's](https://bitbucket.org/mituharu/emacs-mac/src/master/README-mac) build of Emacs. [Railwaycat](https://github.com/railwaycat) is just the Github user who packaged it for his Homebrew tap. It's also available [on MacPorts.](https://www.macports.org/ports.php?by=name\\u0026substr=emacs-mac-app) The more correct name would be simply \\\"The Emacs Mac Port,\\\" which is how it's referred to by other Emacs developers as far as I've seen. Also, referring to it by the correct name differentiates it from the inferior [NS port](https://www.gnu.org/software/emacs/manual/html_node/emacs/Mac-OS-_002f-GNUstep.html) which is bundled with Emacs proper.\\n\\nAs for my opinion, I love the Emacs Mac Port. I've been using it for over a year as my Emacs distro and it's absolutely fantastic. I can't imagine using anything else on macOS nor can I understand how I lived without it when I was using GNU Emacs proper. As you say, there are all kinds of benefits to it. [Here's a blog post](https://ylluminarious.github.io/2019/05/23/emacs-mac-port-introduction/) which has my feelings on it and [here's another one,](https://ylluminarious.github.io/2019/05/23/how-to-fix-the-emacs-mac-port-for-multi-tty-access/) in which I explain how to fix the Emacs Mac Port for multi-tty access. That is the only real bug I ever encountered in the Emacs Mac Port and I think it's superior to plain Emacs in every other way.\\n\\nFrom someone who relies on the Mac Port on a daily basis: no, I think there are absolutely zero downsides which will backfire on you. Use it and spread the word. It'd be wonderful if it was merged into the trunk someday or at least if it was popular enough to encourage contributions.\", \"link_title\": \"Opinions on Railwaycat's Emacs-MacPort?\", \"author_flair_css_class\": null, \"name\": \"t1_eu5ry4m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s actually \\u003Ca href=\\\"https://bitbucket.org/mituharu/emacs-mac/src/master/README-mac\\\"\\u003EMitsuharu Yamamoto\\u0026#39;s\\u003C/a\\u003E build of Emacs. \\u003Ca href=\\\"https://github.com/railwaycat\\\"\\u003ERailwaycat\\u003C/a\\u003E is just the Github user who packaged it for his Homebrew tap. It\\u0026#39;s also available \\u003Ca href=\\\"https://www.macports.org/ports.php?by=name\\u0026amp;substr=emacs-mac-app\\\"\\u003Eon MacPorts.\\u003C/a\\u003E The more correct name would be simply \\u0026quot;The Emacs Mac Port,\\u0026quot; which is how it\\u0026#39;s referred to by other Emacs developers as far as I\\u0026#39;ve seen. Also, referring to it by the correct name differentiates it from the inferior \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/emacs/Mac-OS-_002f-GNUstep.html\\\"\\u003ENS port\\u003C/a\\u003E which is bundled with Emacs proper.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for my opinion, I love the Emacs Mac Port. I\\u0026#39;ve been using it for over a year as my Emacs distro and it\\u0026#39;s absolutely fantastic. I can\\u0026#39;t imagine using anything else on macOS nor can I understand how I lived without it when I was using GNU Emacs proper. As you say, there are all kinds of benefits to it. \\u003Ca href=\\\"https://ylluminarious.github.io/2019/05/23/emacs-mac-port-introduction/\\\"\\u003EHere\\u0026#39;s a blog post\\u003C/a\\u003E which has my feelings on it and \\u003Ca href=\\\"https://ylluminarious.github.io/2019/05/23/how-to-fix-the-emacs-mac-port-for-multi-tty-access/\\\"\\u003Ehere\\u0026#39;s another one,\\u003C/a\\u003E in which I explain how to fix the Emacs Mac Port for multi-tty access. That is the only real bug I ever encountered in the Emacs Mac Port and I think it\\u0026#39;s superior to plain Emacs in every other way.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom someone who relies on the Mac Port on a daily basis: no, I think there are absolutely zero downsides which will backfire on you. Use it and spread the word. It\\u0026#39;d be wonderful if it was merged into the trunk someday or at least if it was popular enough to encourage contributions.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cduuxb/opinions_on_railwaycats_emacsmacport/eu5ry4m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cduuxb/opinions_on_railwaycats_emacsmacport/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cduuxb/opinions_on_railwaycats_emacsmacport/\", \"created\": 1563512808.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccrxk9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5rfd2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"smonnier\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1563483680.0, \"send_replies\": true, \"parent_id\": \"t1_eu06euc\", \"score\": 1, \"author_fullname\": \"t2_ugcax\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It works with all configurations of Emacs, AFAIK. But whether GPG is installed on your non-GNU/Linux machines, I don't know.\", \"link_title\": \"Elpa down\", \"author_flair_css_class\": null, \"name\": \"t1_eu5rfd2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt works with all configurations of Emacs, AFAIK. But whether GPG is installed on your non-GNU/Linux machines, I don\\u0026#39;t know.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ccrxk9/elpa_down/eu5rfd2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ccrxk9/elpa_down/\", \"report_reasons\": null, \"link_author\": \"gutigen\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ccrxk9/elpa_down/\", \"created\": 1563512480.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdgvc2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5ra3r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"smonnier\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563483588.0, \"send_replies\": true, \"parent_id\": \"t1_etw7p23\", \"score\": 1, \"author_fullname\": \"t2_ugcax\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"A fairly simple way to apply the property would be via font-lock.\", \"link_title\": \"How to temporarily replace the last letters of each word?\", \"author_flair_css_class\": null, \"name\": \"t1_eu5ra3r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA fairly simple way to apply the property would be via font-lock.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdgvc2/how_to_temporarily_replace_the_last_letters_of/eu5ra3r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdgvc2/how_to_temporarily_replace_the_last_letters_of/\", \"report_reasons\": null, \"link_author\": \"Grinfader\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdgvc2/how_to_temporarily_replace_the_last_letters_of/\", \"created\": 1563512388.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cexhwm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5qv3z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"1ElectricDynamo1\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563483334.0, \"send_replies\": true, \"parent_id\": \"t3_cexhwm\", \"score\": 9, \"author_fullname\": \"t2_pvc81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003EDON\\u2019T learn Lisp\\n\\n\\u003EDON\\u2019T remember key bindings\\n\\n\\u003EDON'T make your own setup\\n\\nSo basically don't learn Emacs to master Emacs?\", \"link_title\": \"Mastering emacs in one year guide for begginners\", \"author_flair_css_class\": null, \"name\": \"t1_eu5qv3z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDON\\u2019T learn Lisp\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDON\\u2019T remember key bindings\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDON\\u0026#39;T make your own setup\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESo basically don\\u0026#39;t learn Emacs to master Emacs?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cexhwm/mastering_emacs_in_one_year_guide_for_begginners/eu5qv3z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cexhwm/mastering_emacs_in_one_year_guide_for_begginners/\", \"report_reasons\": null, \"link_author\": \"unixfix\", \"author_flair_text\": null, \"link_url\": \"https://github.com/redguardtoo/mastering-emacs-in-one-year-guide\", \"created\": 1563512134.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 9}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cexhwm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5qr12\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563483265.0, \"send_replies\": true, \"parent_id\": \"t1_eu5m1lr\", \"score\": 3, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I never understood why this repo garnered so much acclaim, mostly from users\\nin China.\\n\\nIn particular, the Gnus guide I found singularly unhelpful in getting imap\\ngoing. It primarily focuses on Gnus's arcane UX when in\\nfact, the more important and more difficult part is setting up dovecot-isync,\\nwhich it skips entirely (and no, getting gmail directly over imap without\\nsynching locally is untenable).\\n\\n/u/redguardtoo, defend thyself! :)\", \"link_title\": \"Mastering emacs in one year guide for begginners\", \"author_flair_css_class\": null, \"name\": \"t1_eu5qr12\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI never understood why this repo garnered so much acclaim, mostly from users\\nin China.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn particular, the Gnus guide I found singularly unhelpful in getting imap\\ngoing. It primarily focuses on Gnus\\u0026#39;s arcane UX when in\\nfact, the more important and more difficult part is setting up dovecot-isync,\\nwhich it skips entirely (and no, getting gmail directly over imap without\\nsynching locally is untenable).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"/u/redguardtoo\\\"\\u003E/u/redguardtoo\\u003C/a\\u003E, defend thyself! :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cexhwm/mastering_emacs_in_one_year_guide_for_begginners/eu5qr12/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cexhwm/mastering_emacs_in_one_year_guide_for_begginners/\", \"report_reasons\": null, \"link_author\": \"unixfix\", \"author_flair_text\": null, \"link_url\": \"https://github.com/redguardtoo/mastering-emacs-in-one-year-guide\", \"created\": 1563512065.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceiw4p\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5qmxx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xtifr\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563483195.0, \"send_replies\": true, \"parent_id\": \"t1_eu3z5bw\", \"score\": 1, \"author_fullname\": \"t2_3bi8nddx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It might be nice to have a way to group related projects, and then have tools to work with those projects together, but I doubt if anyone is interested in tools to do things with *all* projects *or* an essentially *random* subset.\\n\\n\\u0026#x200B;\\n\\nIn the mean time, barring a major upgrade in projectile's features, you might consider putting related projects in a common directory, and using regular M-x grep with a recursive flag (-r) when you need to search all of them.\", \"link_title\": \"Does projectile grep limit itself only to the current directory?\", \"author_flair_css_class\": null, \"name\": \"t1_eu5qmxx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt might be nice to have a way to group related projects, and then have tools to work with those projects together, but I doubt if anyone is interested in tools to do things with \\u003Cem\\u003Eall\\u003C/em\\u003E projects \\u003Cem\\u003Eor\\u003C/em\\u003E an essentially \\u003Cem\\u003Erandom\\u003C/em\\u003E subset.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the mean time, barring a major upgrade in projectile\\u0026#39;s features, you might consider putting related projects in a common directory, and using regular M-x grep with a recursive flag (-r) when you need to search all of them.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ceiw4p/does_projectile_grep_limit_itself_only_to_the/eu5qmxx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ceiw4p/does_projectile_grep_limit_itself_only_to_the/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ceiw4p/does_projectile_grep_limit_itself_only_to_the/\", \"created\": 1563511995.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cexhwm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5m1lr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"unixfix\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563480411.0, \"send_replies\": true, \"parent_id\": \"t3_cexhwm\", \"score\": 2, \"author_fullname\": \"t2_43jp9hmm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I found this useful, just thought I'd share to any beginners like me looking to utilize emacs for development and administration.\", \"link_title\": \"Mastering emacs in one year guide for begginners\", \"author_flair_css_class\": null, \"name\": \"t1_eu5m1lr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI found this useful, just thought I\\u0026#39;d share to any beginners like me looking to utilize emacs for development and administration.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cexhwm/mastering_emacs_in_one_year_guide_for_begginners/eu5m1lr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cexhwm/mastering_emacs_in_one_year_guide_for_begginners/\", \"report_reasons\": null, \"link_author\": \"unixfix\", \"author_flair_text\": null, \"link_url\": \"https://github.com/redguardtoo/mastering-emacs-in-one-year-guide\", \"created\": 1563509211.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceuyq9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5ksv9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pailanderCO\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563479663.0, \"send_replies\": true, \"parent_id\": \"t1_eu5dbtz\", \"score\": 1, \"author_fullname\": \"t2_1408l4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks. So the workflow would be:\\n1. Run Emacs server at startup (e.g. using systemd)\\n2. Run emacsclient to open files.\\n\\nRight?\\n\\nBut this only works for me in the terminal (CLI), not in the GUI. \\nHow can I fix it?\", \"link_title\": \"Force only one instance (window)\", \"author_flair_css_class\": null, \"name\": \"t1_eu5ksv9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks. So the workflow would be:\\n1. Run Emacs server at startup (e.g. using systemd)\\n2. Run emacsclient to open files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut this only works for me in the terminal (CLI), not in the GUI. \\nHow can I fix it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ceuyq9/force_only_one_instance_window/eu5ksv9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ceuyq9/force_only_one_instance_window/\", \"report_reasons\": null, \"link_author\": \"pailanderCO\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ceuyq9/force_only_one_instance_window/\", \"created\": 1563508463.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cecs6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5kpkx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"AncientChineseSecret\", \"num_comments\": 38, \"can_mod_post\": false, \"created_utc\": 1563479610.0, \"send_replies\": true, \"parent_id\": \"t1_eu5bqla\", \"score\": 1, \"author_fullname\": \"t2_58jih\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"oh gotcha. Yeah, the novelty of that quickly wore off. Cool idea, and I could see how it would still be awesome if you're not an emacs/vim/etc. user to have all these action shortcuts\", \"link_title\": \"What have you bound to function keys?\", \"author_flair_css_class\": null, \"name\": \"t1_eu5kpkx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eoh gotcha. Yeah, the novelty of that quickly wore off. Cool idea, and I could see how it would still be awesome if you\\u0026#39;re not an emacs/vim/etc. user to have all these action shortcuts\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/eu5kpkx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"report_reasons\": null, \"link_author\": \"TTRation\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"created\": 1563508410.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563478361.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdw3eu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5g3dj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"peterwvj\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1563476824.0, \"send_replies\": true, \"parent_id\": \"t1_eu5cb5f\", \"score\": 1, \"author_fullname\": \"t2_14s1eh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Could it be that something else changed that would require you to index your messages again? Try running `mu index` after building mu4e. Does this make a difference?\", \"link_title\": \"mu4e: ical support now available in master\", \"author_flair_css_class\": null, \"name\": \"t1_eu5g3dj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECould it be that something else changed that would require you to index your messages again? Try running \\u003Ccode\\u003Emu index\\u003C/code\\u003E after building mu4e. Does this make a difference?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/eu5g3dj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/\", \"report_reasons\": null, \"link_author\": \"peterwvj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/\", \"created\": 1563505624.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cerit0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5dlke\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"slippycheeze\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563475291.0, \"send_replies\": true, \"parent_id\": \"t1_eu59o5d\", \"score\": 3, \"author_fullname\": \"t2_yxcud\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'd also encourage you see how much of the stuff you want the shell for can be done with dired, the VC support, M-x compile, and M-x grep. Frequently these better integrated interfaces serve as a better solution to the specific problem you would otherwise reach for the shell to solve in less accessible IDEs.\\n\\nI use shell stuff too, but far less than folks using other IDEs seem to.\", \"link_title\": \"Is there an emacs plugin for a small terminal window at the bottom like the ones in jetbrains IDEs?\", \"author_flair_css_class\": null, \"name\": \"t1_eu5dlke\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d also encourage you see how much of the stuff you want the shell for can be done with dired, the VC support, M-x compile, and M-x grep. Frequently these better integrated interfaces serve as a better solution to the specific problem you would otherwise reach for the shell to solve in less accessible IDEs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use shell stuff too, but far less than folks using other IDEs seem to.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/eu5dlke/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/\", \"report_reasons\": null, \"link_author\": \"awsyoos\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/\", \"created\": 1563504091.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceuyq9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5dbtz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"slippycheeze\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563475126.0, \"send_replies\": true, \"parent_id\": \"t3_ceuyq9\", \"score\": 2, \"author_fullname\": \"t2_yxcud\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E On the Mac, whenever I open files from the Finder or the terminal in Emacs, only one instance is opened\\n\\nThis depends on platform specific behaviour in macOS / Quartz. macOS has a single, well defined interface for the platform, and other applications, to find and communicate with applications, and to talk to a running instance to request action.\\n\\nOn every other platform you will need to use the [Emacs Server](https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server) also known as emacsclient -- which is the command line tool that requests things from it.\\n\\nThe good news is that emacsclient also works perfectly well on macOS despite being unnecessary there for the basic \\\"please edit this file\\\" functionality, so you don't need to maintain different configurations for the platforms if you don't want to.\", \"link_title\": \"Force only one instance (window)\", \"author_flair_css_class\": null, \"name\": \"t1_eu5dbtz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EOn the Mac, whenever I open files from the Finder or the terminal in Emacs, only one instance is opened\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis depends on platform specific behaviour in macOS / Quartz. macOS has a single, well defined interface for the platform, and other applications, to find and communicate with applications, and to talk to a running instance to request action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn every other platform you will need to use the \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server\\\"\\u003EEmacs Server\\u003C/a\\u003E also known as emacsclient -- which is the command line tool that requests things from it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe good news is that emacsclient also works perfectly well on macOS despite being unnecessary there for the basic \\u0026quot;please edit this file\\u0026quot; functionality, so you don\\u0026#39;t need to maintain different configurations for the platforms if you don\\u0026#39;t want to.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ceuyq9/force_only_one_instance_window/eu5dbtz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ceuyq9/force_only_one_instance_window/\", \"report_reasons\": null, \"link_author\": \"pailanderCO\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ceuyq9/force_only_one_instance_window/\", \"created\": 1563503926.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdw3eu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5cb5f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ChromaticAddict\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1563474492.0, \"send_replies\": true, \"parent_id\": \"t1_eu58p89\", \"score\": 1, \"author_fullname\": \"t2_ey2ex\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I did not; the comments don't make it clear that you have to do that:\\n\\n ;; To install:\\n ;; (require 'mu4e-icalendar)\\n ;; (mu4e-icalendar-setup)\\n\\nJust tried it, and it still doesn't seem to do anything.\", \"link_title\": \"mu4e: ical support now available in master\", \"author_flair_css_class\": null, \"name\": \"t1_eu5cb5f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI did not; the comments don\\u0026#39;t make it clear that you have to do that:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; To install:\\n;; (require \\u0026#39;mu4e-icalendar)\\n;; (mu4e-icalendar-setup)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EJust tried it, and it still doesn\\u0026#39;t seem to do anything.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/eu5cb5f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/\", \"report_reasons\": null, \"link_author\": \"peterwvj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/\", \"created\": 1563503292.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cecs6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5bqla\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"stannis_baratheon_1\", \"num_comments\": 38, \"can_mod_post\": false, \"created_utc\": 1563474141.0, \"send_replies\": true, \"parent_id\": \"t1_eu57rh5\", \"score\": 1, \"author_fullname\": \"t2_jjtm5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I meant that on the new macbook pros with the touchbar, there are no physical function keys at all.\", \"link_title\": \"What have you bound to function keys?\", \"author_flair_css_class\": null, \"name\": \"t1_eu5bqla\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI meant that on the new macbook pros with the touchbar, there are no physical function keys at all.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/eu5bqla/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"report_reasons\": null, \"link_author\": \"TTRation\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"created\": 1563502941.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cerit0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu59o5d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"amizya\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563472844.0, \"send_replies\": true, \"parent_id\": \"t3_cerit0\", \"score\": 2, \"author_fullname\": \"t2_bg1dl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"https://github.com/kyagi/shell-pop-el\", \"link_title\": \"Is there an emacs plugin for a small terminal window at the bottom like the ones in jetbrains IDEs?\", \"author_flair_css_class\": null, \"name\": \"t1_eu59o5d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/kyagi/shell-pop-el\\\"\\u003Ehttps://github.com/kyagi/shell-pop-el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/eu59o5d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/\", \"report_reasons\": null, \"link_author\": \"awsyoos\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/\", \"created\": 1563501644.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cerit0\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5985s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yep808\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563472572.0, \"send_replies\": true, \"parent_id\": \"t3_cerit0\", \"score\": -2, \"author_fullname\": \"t2_3kgkql01\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"If you take a second to do a quick search you'd find shell-pop: [http://pragmaticemacs.com/emacs/pop-up-a-quick-shell-with-shell-pop/](http://pragmaticemacs.com/emacs/pop-up-a-quick-shell-with-shell-pop/)\", \"link_title\": \"Is there an emacs plugin for a small terminal window at the bottom like the ones in jetbrains IDEs?\", \"author_flair_css_class\": null, \"name\": \"t1_eu5985s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you take a second to do a quick search you\\u0026#39;d find shell-pop: \\u003Ca href=\\\"http://pragmaticemacs.com/emacs/pop-up-a-quick-shell-with-shell-pop/\\\"\\u003Ehttp://pragmaticemacs.com/emacs/pop-up-a-quick-shell-with-shell-pop/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/eu5985s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/\", \"report_reasons\": null, \"link_author\": \"awsyoos\", \"author_flair_text\": \"yay-evil\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/\", \"created\": 1563501372.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 1, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": -2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cevte9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5909t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"spirosboosalis\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563472438.0, \"send_replies\": true, \"parent_id\": \"t3_cevte9\", \"score\": 1, \"author_fullname\": \"t2_ku8ph\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"is a declaration of `CC-BY-SA` enough?\", \"link_title\": \"Licensing Images for ELPA?\", \"author_flair_css_class\": null, \"name\": \"t1_eu5909t\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eis a declaration of \\u003Ccode\\u003ECC-BY-SA\\u003C/code\\u003E enough?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cevte9/licensing_images_for_elpa/eu5909t/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cevte9/licensing_images_for_elpa/\", \"report_reasons\": null, \"link_author\": \"spirosboosalis\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cevte9/licensing_images_for_elpa/\", \"created\": 1563501238.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdw3eu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu58p89\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"peterwvj\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1563472254.0, \"send_replies\": true, \"parent_id\": \"t1_eu571ez\", \"score\": 1, \"author_fullname\": \"t2_14s1eh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sounds strange. Did you also enable gnus article view?:\\n\\n (setq mu4e-view-use-gnus t)\\n (require 'mu4e-icalendar)\\n (mu4e-icalendar-setup)\", \"link_title\": \"mu4e: ical support now available in master\", \"author_flair_css_class\": null, \"name\": \"t1_eu58p89\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESounds strange. Did you also enable gnus article view?:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E (setq mu4e-view-use-gnus t)\\n (require \\u0026#39;mu4e-icalendar)\\n (mu4e-icalendar-setup)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/eu58p89/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/\", \"report_reasons\": null, \"link_author\": \"peterwvj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/\", \"created\": 1563501054.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cegx19\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu57ypf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"emacsomancer\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563471813.0, \"send_replies\": true, \"parent_id\": \"t1_eu4fi78\", \"score\": 1, \"author_fullname\": \"t2_8a43c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Just to follow up on this, it seems to work excellently!\\n\\nI essentially used the setup described here, and it works fine in mu4e: https://github.com/redguardtoo/mastering-emacs-in-one-year-guide/issues/106\", \"link_title\": \"Convert vCalendar files to Org ?\", \"author_flair_css_class\": null, \"name\": \"t1_eu57ypf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust to follow up on this, it seems to work excellently!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI essentially used the setup described here, and it works fine in mu4e: \\u003Ca href=\\\"https://github.com/redguardtoo/mastering-emacs-in-one-year-guide/issues/106\\\"\\u003Ehttps://github.com/redguardtoo/mastering-emacs-in-one-year-guide/issues/106\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/eu57ypf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/\", \"report_reasons\": null, \"link_author\": \"emacsomancer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/\", \"created\": 1563500613.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cecs6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu57rh5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"AncientChineseSecret\", \"num_comments\": 38, \"can_mod_post\": false, \"created_utc\": 1563471695.0, \"send_replies\": true, \"parent_id\": \"t1_eu2ifew\", \"score\": 1, \"author_fullname\": \"t2_58jih\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"If you go to *Settings* \\\\-\\u003E *Keyboard* \\\\-\\u003E **Use F1, F2, etc. as standard function keys**, it should solve it, shouldn't it? I just switched to a MacBook Pro from a Windows laptop, and it was confusing for me not to have the function keys be the standard way\", \"link_title\": \"What have you bound to function keys?\", \"author_flair_css_class\": null, \"name\": \"t1_eu57rh5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you go to \\u003Cem\\u003ESettings\\u003C/em\\u003E -\\u0026gt; \\u003Cem\\u003EKeyboard\\u003C/em\\u003E -\\u0026gt; \\u003Cstrong\\u003EUse F1, F2, etc. as standard function keys\\u003C/strong\\u003E, it should solve it, shouldn\\u0026#39;t it? I just switched to a MacBook Pro from a Windows laptop, and it was confusing for me not to have the function keys be the standard way\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/eu57rh5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"report_reasons\": null, \"link_author\": \"TTRation\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"created\": 1563500495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cecs6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu57fjd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nagora\", \"num_comments\": 38, \"can_mod_post\": false, \"created_utc\": 1563471492.0, \"send_replies\": true, \"parent_id\": \"t3_cecs6m\", \"score\": 1, \"author_fullname\": \"t2_rrtp7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I assign F1 to F10 to workspaces at the window manager level - F1 is always my coding/writing (i.e., Emacs) workspace; F2 is always my main web browser; F3 is where i keep LibreOffice, mainly for spreadsheets; F4 is Art - Gimp, Inkscape etc.; and so on up to F10 which is where email (Emacs again) lives. None of these keys ever makes it to Emacs itself.\\n\\nWhere ever I am, work or home, laptop or desktop, these are constants and one reason why a keyboard without function keys is unacceptable for me.\\n\\nIn Emacs, F11 is usually full screen and F12 puts mu4e into Org mode.\", \"link_title\": \"What have you bound to function keys?\", \"author_flair_css_class\": null, \"name\": \"t1_eu57fjd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI assign F1 to F10 to workspaces at the window manager level - F1 is always my coding/writing (i.e., Emacs) workspace; F2 is always my main web browser; F3 is where i keep LibreOffice, mainly for spreadsheets; F4 is Art - Gimp, Inkscape etc.; and so on up to F10 which is where email (Emacs again) lives. None of these keys ever makes it to Emacs itself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhere ever I am, work or home, laptop or desktop, these are constants and one reason why a keyboard without function keys is unacceptable for me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Emacs, F11 is usually full screen and F12 puts mu4e into Org mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/eu57fjd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"report_reasons\": null, \"link_author\": \"TTRation\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"created\": 1563500292.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cerit0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu57cbl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yyoncho\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563471437.0, \"send_replies\": true, \"parent_id\": \"t3_cerit0\", \"score\": 1, \"author_fullname\": \"t2_4s4u03u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[https://github.com/kyagi/shell-pop-el](https://github.com/kyagi/shell-pop-el)\", \"link_title\": \"Is there an emacs plugin for a small terminal window at the bottom like the ones in jetbrains IDEs?\", \"author_flair_css_class\": null, \"name\": \"t1_eu57cbl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/kyagi/shell-pop-el\\\"\\u003Ehttps://github.com/kyagi/shell-pop-el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/eu57cbl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/\", \"report_reasons\": null, \"link_author\": \"awsyoos\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/\", \"created\": 1563500237.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdw3eu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu571ez\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ChromaticAddict\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1563471254.0, \"send_replies\": true, \"parent_id\": \"t3_cdw3eu\", \"score\": 1, \"author_fullname\": \"t2_ey2ex\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"How is this supposed to work? I switched to the latest code, added the two lines to my init.el, and my messages disappeared (even though updating says it indexed 11k+ messages). I went back to mu4e in my dist's repository, and I got my messages back, but adding mu4e-icalendar still did nothing.\", \"link_title\": \"mu4e: ical support now available in master\", \"author_flair_css_class\": null, \"name\": \"t1_eu571ez\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow is this supposed to work? I switched to the latest code, added the two lines to my init.el, and my messages disappeared (even though updating says it indexed 11k+ messages). I went back to mu4e in my dist\\u0026#39;s repository, and I got my messages back, but adding mu4e-icalendar still did nothing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/eu571ez/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/\", \"report_reasons\": null, \"link_author\": \"peterwvj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/\", \"created\": 1563500054.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ced61d\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu567eb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"UpInHarms\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1563470750.0, \"send_replies\": true, \"parent_id\": \"t1_eu2rdsp\", \"score\": 2, \"author_fullname\": \"t2_pgstj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes, tramp syntax can handle multi-hop sessions. I think the syntax separates the hosts with \\\"|\\\". The tramp manual will have details.\", \"link_title\": \"How can I apply the settings of my init.el when opening emacs with -nw?\", \"author_flair_css_class\": null, \"name\": \"t1_eu567eb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, tramp syntax can handle multi-hop sessions. I think the syntax separates the hosts with \\u0026quot;|\\u0026quot;. The tramp manual will have details.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ced61d/how_can_i_apply_the_settings_of_my_initel_when/eu567eb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ced61d/how_can_i_apply_the_settings_of_my_initel_when/\", \"report_reasons\": null, \"link_author\": \"GhostOfLongClaw\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ced61d/how_can_i_apply_the_settings_of_my_initel_when/\", \"created\": 1563499550.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cejhmy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu54tq0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tech87freak\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563469918.0, \"send_replies\": true, \"parent_id\": \"t1_eu4dna6\", \"score\": 1, \"author_fullname\": \"t2_77u8i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003ESure. I don't mess with faces much in general, so I'm probably doing something a little wrong or maybe changing more faces than needed:\\n\\nThanks, this looks neat. Right now I get slapped in the face with the tips. So this could actually help to give this a nudge and manage my focus.\", \"link_title\": \"What are the best alternatives for lsp-ui or better config options?\", \"author_flair_css_class\": null, \"name\": \"t1_eu54tq0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESure. I don\\u0026#39;t mess with faces much in general, so I\\u0026#39;m probably doing something a little wrong or maybe changing more faces than needed:\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThanks, this looks neat. Right now I get slapped in the face with the tips. So this could actually help to give this a nudge and manage my focus.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/eu54tq0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/\", \"report_reasons\": null, \"link_author\": \"tech87freak\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/\", \"created\": 1563498718.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdrbj3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu52l2y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mayrluthier\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563468543.0, \"send_replies\": true, \"parent_id\": \"t1_etwizz8\", \"score\": 2, \"author_fullname\": \"t2_r3p7z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003Ehelm-ff-lynx-style-map t\\n\\nThis was exactly it. Thanks!\", \"link_title\": \"Why is left/right arrows not working for Helm all of a sudden?\", \"author_flair_css_class\": null, \"name\": \"t1_eu52l2y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ehelm-ff-lynx-style-map t\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis was exactly it. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdrbj3/why_is_leftright_arrows_not_working_for_helm_all/eu52l2y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdrbj3/why_is_leftright_arrows_not_working_for_helm_all/\", \"report_reasons\": null, \"link_author\": \"aesamattki\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdrbj3/why_is_leftright_arrows_not_working_for_helm_all/\", \"created\": 1563497343.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563470518.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce6r12\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu52foh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pkkm\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563468451.0, \"send_replies\": true, \"parent_id\": \"t3_ce6r12\", \"score\": 2, \"author_fullname\": \"t2_n0p7y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Some Elisp tips:\\n\\n* You can use `setq` instead of `set '`.\\n* Variables in Emacs are global by default, so it's better to use names like `auto-dark-emacs-dark-theme` rather than just `darktheme`.\\n* If you use a `defun` instead of a `lambda`, you won't have to indent the code so much.\", \"link_title\": \"auto-dark-emacs - My attempt to make emacs follow the global Dark Mode on MacOS\", \"author_flair_css_class\": null, \"name\": \"t1_eu52foh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESome Elisp tips:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou can use \\u003Ccode\\u003Esetq\\u003C/code\\u003E instead of \\u003Ccode\\u003Eset \\u0026#39;\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003EVariables in Emacs are global by default, so it\\u0026#39;s better to use names like \\u003Ccode\\u003Eauto-dark-emacs-dark-theme\\u003C/code\\u003E rather than just \\u003Ccode\\u003Edarktheme\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf you use a \\u003Ccode\\u003Edefun\\u003C/code\\u003E instead of a \\u003Ccode\\u003Elambda\\u003C/code\\u003E, you won\\u0026#39;t have to indent the code so much.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ce6r12/autodarkemacs_my_attempt_to_make_emacs_follow_the/eu52foh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ce6r12/autodarkemacs_my_attempt_to_make_emacs_follow_the/\", \"report_reasons\": null, \"link_author\": \"LionyxML\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/hoslt1dkxra31.gif\", \"created\": 1563497251.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cem6h7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu51c5h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"girvain\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1563467781.0, \"send_replies\": true, \"parent_id\": \"t1_eu4z62p\", \"score\": 1, \"author_fullname\": \"t2_lkmww7c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Well I'm on a MacBook Pro 2015 which is 8gb rams and an SSD. Not exactly high spec but it should run like a champ on that. \\n\\nhttps://github.com/girvain/.emacs.d/blob/master/myinit.org\\n\\nThat's my config in an org file with tide mode as the header for that part, it's basically the stock settings from the GitHub repo so I'm wondering if I've got clashing modes or something, are you still using js2 with tide ?\", \"link_title\": \"[Overwhelemed] Js, js-jsx, rjsx, js2, js3, js2-jsx, web-mode\", \"author_flair_css_class\": null, \"name\": \"t1_eu51c5h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell I\\u0026#39;m on a MacBook Pro 2015 which is 8gb rams and an SSD. Not exactly high spec but it should run like a champ on that. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/girvain/.emacs.d/blob/master/myinit.org\\\"\\u003Ehttps://github.com/girvain/.emacs.d/blob/master/myinit.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s my config in an org file with tide mode as the header for that part, it\\u0026#39;s basically the stock settings from the GitHub repo so I\\u0026#39;m wondering if I\\u0026#39;ve got clashing modes or something, are you still using js2 with tide ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/eu51c5h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"created\": 1563496581.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cejhmy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu51bhi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yyoncho\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563467770.0, \"send_replies\": true, \"parent_id\": \"t3_cejhmy\", \"score\": 1, \"author_fullname\": \"t2_4s4u03u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I personally set `lsp-ui-sideline-show-symbol` to nil and use the sideline only for errors/code actions.\", \"link_title\": \"What are the best alternatives for lsp-ui or better config options?\", \"author_flair_css_class\": null, \"name\": \"t1_eu51bhi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI personally set \\u003Ccode\\u003Elsp-ui-sideline-show-symbol\\u003C/code\\u003E to nil and use the sideline only for errors/code actions.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/eu51bhi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/\", \"report_reasons\": null, \"link_author\": \"tech87freak\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/\", \"created\": 1563496570.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cer5y6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4zn23\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"todo-anonymize-self\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563466734.0, \"send_replies\": true, \"parent_id\": \"t3_cer5y6\", \"score\": 2, \"author_fullname\": \"t2_230w61jp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\"Which Key Hydra\\\" is a bit of a misnomer for a Hydra that is ***less*** concerned about which keys you're pressing than the original Hydra.\\n\\nSure, that \\\"(require 'which-key)\\\" in there, but still.\", \"link_title\": \"Thoughts?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4zn23\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;Which Key Hydra\\u0026quot; is a bit of a misnomer for a Hydra that is \\u003Cstrong\\u003E\\u003Cem\\u003Eless\\u003C/em\\u003E\\u003C/strong\\u003E concerned about which keys you\\u0026#39;re pressing than the original Hydra.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESure, that \\u0026quot;(require \\u0026#39;which-key)\\u0026quot; in there, but still.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cer5y6/thoughts/eu4zn23/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cer5y6/thoughts/\", \"report_reasons\": null, \"link_author\": \"jjzmajic\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cer5y6/thoughts/\", \"created\": 1563495534.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cem6h7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4z62p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tareefdev\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1563466441.0, \"send_replies\": true, \"parent_id\": \"t1_eu4xkv0\", \"score\": 1, \"author_fullname\": \"t2_169z83\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"The total experience is far smooth without hanging or flickering. Maybe because I use a good SSD, so reading from the hard is pretty fast? I'm thinking which other factors may effect the performance.\", \"link_title\": \"[Overwhelemed] Js, js-jsx, rjsx, js2, js3, js2-jsx, web-mode\", \"author_flair_css_class\": null, \"name\": \"t1_eu4z62p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe total experience is far smooth without hanging or flickering. Maybe because I use a good SSD, so reading from the hard is pretty fast? I\\u0026#39;m thinking which other factors may effect the performance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/eu4z62p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"created\": 1563495241.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cecs6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4y0np\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"AncientChineseSecret\", \"num_comments\": 38, \"can_mod_post\": false, \"created_utc\": 1563465723.0, \"send_replies\": true, \"parent_id\": \"t3_cecs6m\", \"score\": 1, \"author_fullname\": \"t2_58jih\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \" (global-set-key [f5] '(lambda() (interactive) (load-file \\\"~/.emacs.d/init.el\\\")))\\n (global-set-key [f6] '(lambda() (interactive) (revert-buffer \\\"y\\\"))) ; revert buffer without confirmation\\n (global-set-key [f9] '(lambda() (interactive) (load-theme 'doom-molokai)))\\n (global-set-key [f10] '(lambda() (interactive) (load-theme 'doom-opera-light)))\\n (global-set-key [f12] '(lambda() (interactive) (find-file \\\"~/.emacs.d/init.el\\\")))\", \"link_title\": \"What have you bound to function keys?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4y0np\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E(global-set-key [f5] \\u0026#39;(lambda() (interactive) (load-file \\u0026quot;~/.emacs.d/init.el\\u0026quot;)))\\n(global-set-key [f6] \\u0026#39;(lambda() (interactive) (revert-buffer \\u0026quot;y\\u0026quot;))) ; revert buffer without confirmation\\n(global-set-key [f9] \\u0026#39;(lambda() (interactive) (load-theme \\u0026#39;doom-molokai)))\\n(global-set-key [f10] \\u0026#39;(lambda() (interactive) (load-theme \\u0026#39;doom-opera-light)))\\n(global-set-key [f12] \\u0026#39;(lambda() (interactive) (find-file \\u0026quot;~/.emacs.d/init.el\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/eu4y0np/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"report_reasons\": null, \"link_author\": \"TTRation\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"created\": 1563494523.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdu7cd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4xzw0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ignord\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1563465710.0, \"send_replies\": true, \"parent_id\": \"t3_cdu7cd\", \"score\": 1, \"author_fullname\": \"t2_lm7it\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"In elisp, is there a difference between these two `let` forms?\\n\\n ;; Form 1\\n (let (var1 var2) \\u003Cbody using var{1,2}\\u003E)\\n ;; Form 2\\n (let ((var1) (var2)) \\u003Cbody using var{1,2}\\u003E)\\n\\nI haven't noticed any differences in some small tests, and I think I've seen both versions used. If they're functionally identical, is there a stylistic preference?\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eu4xzw0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn elisp, is there a difference between these two \\u003Ccode\\u003Elet\\u003C/code\\u003E forms?\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Form 1\\n(let (var1 var2) \\u0026lt;body using var{1,2}\\u0026gt;)\\n;; Form 2\\n(let ((var1) (var2)) \\u0026lt;body using var{1,2}\\u0026gt;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t noticed any differences in some small tests, and I think I\\u0026#39;ve seen both versions used. If they\\u0026#39;re functionally identical, is there a stylistic preference?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdu7cd/weekly_tipstricketc_thread/eu4xzw0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdu7cd/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdu7cd/weekly_tipstricketc_thread/\", \"created\": 1563494510.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cem6h7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4xkv0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"girvain\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1563465451.0, \"send_replies\": true, \"parent_id\": \"t1_eu3zf70\", \"score\": 1, \"author_fullname\": \"t2_lkmww7c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hey, I'm using pretty much the same setup as you. Just wondering if your screen flicker a bit from time to time or if completions hang sometimes. I had flycheck on async and even text input was hanging slightly so set it to run on saves but even still it's not particularly fast.\", \"link_title\": \"[Overwhelemed] Js, js-jsx, rjsx, js2, js3, js2-jsx, web-mode\", \"author_flair_css_class\": null, \"name\": \"t1_eu4xkv0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, I\\u0026#39;m using pretty much the same setup as you. Just wondering if your screen flicker a bit from time to time or if completions hang sometimes. I had flycheck on async and even text input was hanging slightly so set it to run on saves but even still it\\u0026#39;s not particularly fast.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/eu4xkv0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"created\": 1563494251.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563465706.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cer5y6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4x6pe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"celeritasCelery\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563465205.0, \"send_replies\": true, \"parent_id\": \"t3_cer5y6\", \"score\": 3, \"author_fullname\": \"t2_z9rto\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is great! I always have a hard time remembering the keys for minor modes, especially since I am using evil, and some of the keys are different then what they are in the manual.\\n\\nThough I have to say that calling this hydra is a bit of misnomer, since it doesn't use hydras at all.\", \"link_title\": \"Thoughts?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4x6pe\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is great! I always have a hard time remembering the keys for minor modes, especially since I am using evil, and some of the keys are different then what they are in the manual.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThough I have to say that calling this hydra is a bit of misnomer, since it doesn\\u0026#39;t use hydras at all.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cer5y6/thoughts/eu4x6pe/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cer5y6/thoughts/\", \"report_reasons\": null, \"link_author\": \"jjzmajic\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cer5y6/thoughts/\", \"created\": 1563494005.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdu7cd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4vfv7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sparrow1993\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1563464098.0, \"send_replies\": true, \"parent_id\": \"t3_cdu7cd\", \"score\": 1, \"author_fullname\": \"t2_x1uge\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I just started to use tramp-term, curious if it's possible to make tramp-term stores previous connections like tramp does? Input user@hostname every time it's a bit exhausting..\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eu4vfv7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just started to use tramp-term, curious if it\\u0026#39;s possible to make tramp-term stores previous connections like tramp does? Input user@hostname every time it\\u0026#39;s a bit exhausting..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdu7cd/weekly_tipstricketc_thread/eu4vfv7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdu7cd/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdu7cd/weekly_tipstricketc_thread/\", \"created\": 1563492898.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cepto4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4uys0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"andreyorst\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563463792.0, \"send_replies\": true, \"parent_id\": \"t1_eu4nw2x\", \"score\": 2, \"author_fullname\": \"t2_w7w9e32\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"unfortunately it has some issues related to the window manager that you may use. For example it works incorrectly in GNOME. But that's Emacs bug, not posframe.\", \"link_title\": \"Having this weird thing happen to me, any idea what's happening?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4uys0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eunfortunately it has some issues related to the window manager that you may use. For example it works incorrectly in GNOME. But that\\u0026#39;s Emacs bug, not posframe.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cepto4/having_this_weird_thing_happen_to_me_any_idea/eu4uys0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cepto4/having_this_weird_thing_happen_to_me_any_idea/\", \"report_reasons\": null, \"link_author\": \"eliseven\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/0vm1RTE\", \"created\": 1563492592.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cedgm8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4uvni\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yanghaoxie\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563463736.0, \"send_replies\": true, \"parent_id\": \"t1_eu4kph9\", \"score\": 1, \"author_fullname\": \"t2_yophh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"No problem\", \"link_title\": \"Spacemacs layouts without Spacemacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4uvni\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo problem\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cedgm8/spacemacs_layouts_without_spacemacs/eu4uvni/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cedgm8/spacemacs_layouts_without_spacemacs/\", \"report_reasons\": null, \"link_author\": \"da-g\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cedgm8/spacemacs_layouts_without_spacemacs/\", \"created\": 1563492536.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563463414.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cem6h7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4rmco\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"user_was_not_found\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1563461593.0, \"send_replies\": true, \"parent_id\": \"t3_cem6h7\", \"score\": 1, \"author_fullname\": \"t2_h1nda\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hey! It's good to see another JS developer getting setup in Emacs. It's a great place to develop.\\n\\nI'm going to give you two routes to go down. Currently, I use option 1 (plus - it's easier).\\n\\n1. Use latest Emacs (build latest master). If you use the latest Emacs, js-mode (the default JavaScript mode that will load when Emacs sees that you're opening a JavaScript file) supports JSX. The biggest pieces that I know about with their JSX support is that there's proper syntax highlighting and indenting. That's all I need in regards to JSX. Optionally, if you want to use tide, you can setup a hook (`(add-hook 'js-mode-hook 'tide-setup)`) so that tide is enabled whenever you open a JavaScript file. Personally, I don't see any value in using web-mode with JSX.\\n2. Use latest Emacs distribution. This one does *not* support JSX out of the box with js-mode (yet). So you will need to install a package. Install rjsx-mode. It is a superset of js2-mode specialized to work with JSX as well. Again, IMO, skip using web-mode. Setup tide in a hook for rjsx-mode (`(add-hook 'rjsx-mode-hook 'tide-setup)`). If you use the '.js' extension with your JSX files (as you should these days), you may need to add something that will tell Emacs to use rjsx-mode when you open a '.js' file, in that case, you would need something like `(add-to-list 'auto-mode-alist '*\\\\\\\\.js\\\\\\\\'\\\" . rjsx-mode))`. rjsx-mode comes with some handy features targeted at making JSX development seamless. Also, js2-mode comes with some really cool things too.\\n\\n\\u0026#x200B;\\n\\nTry not to feel overwhelmed. I know there's a lot of information out there. If you follow these steps, it shouldn't be too bad. Feel free to reply to this if something isn't working right. \\n\\n\\nEDIT: \\nWith option 2, it looks like you have the use-package setup right for rjsx-mode. So you can ignore adding 'add-hook' or 'add-to-list' for enabling the mode. \\n\\n```\\n(use-package rjsx-mode\\n :mode (\\\"\\\\\\\\.jsx?$\\\" . rjsx-mode)\\n :hook (rjsx-mode . tide-setup)\\n :config (setq js-indent-level 2\\n js2-strict-missing-semi-warning nil))\\n```\", \"link_title\": \"[Overwhelemed] Js, js-jsx, rjsx, js2, js3, js2-jsx, web-mode\", \"author_flair_css_class\": null, \"name\": \"t1_eu4rmco\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey! It\\u0026#39;s good to see another JS developer getting setup in Emacs. It\\u0026#39;s a great place to develop.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m going to give you two routes to go down. Currently, I use option 1 (plus - it\\u0026#39;s easier).\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EUse latest Emacs (build latest master). If you use the latest Emacs, js-mode (the default JavaScript mode that will load when Emacs sees that you\\u0026#39;re opening a JavaScript file) supports JSX. The biggest pieces that I know about with their JSX support is that there\\u0026#39;s proper syntax highlighting and indenting. That\\u0026#39;s all I need in regards to JSX. Optionally, if you want to use tide, you can setup a hook (\\u003Ccode\\u003E(add-hook \\u0026#39;js-mode-hook \\u0026#39;tide-setup)\\u003C/code\\u003E) so that tide is enabled whenever you open a JavaScript file. Personally, I don\\u0026#39;t see any value in using web-mode with JSX.\\u003C/li\\u003E\\n\\u003Cli\\u003EUse latest Emacs distribution. This one does \\u003Cem\\u003Enot\\u003C/em\\u003E support JSX out of the box with js-mode (yet). So you will need to install a package. Install rjsx-mode. It is a superset of js2-mode specialized to work with JSX as well. Again, IMO, skip using web-mode. Setup tide in a hook for rjsx-mode (\\u003Ccode\\u003E(add-hook \\u0026#39;rjsx-mode-hook \\u0026#39;tide-setup)\\u003C/code\\u003E). If you use the \\u0026#39;.js\\u0026#39; extension with your JSX files (as you should these days), you may need to add something that will tell Emacs to use rjsx-mode when you open a \\u0026#39;.js\\u0026#39; file, in that case, you would need something like \\u003Ccode\\u003E(add-to-list \\u0026#39;auto-mode-alist \\u0026#39;*\\\\\\\\.js\\\\\\\\\\u0026#39;\\u0026quot; . rjsx-mode))\\u003C/code\\u003E. rjsx-mode comes with some handy features targeted at making JSX development seamless. Also, js2-mode comes with some really cool things too.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETry not to feel overwhelmed. I know there\\u0026#39;s a lot of information out there. If you follow these steps, it shouldn\\u0026#39;t be too bad. Feel free to reply to this if something isn\\u0026#39;t working right. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT:\\u003Cbr/\\u003E\\nWith option 2, it looks like you have the use-package setup right for rjsx-mode. So you can ignore adding \\u0026#39;add-hook\\u0026#39; or \\u0026#39;add-to-list\\u0026#39; for enabling the mode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(use-package rjsx-mode\\n :mode (\\u0026quot;\\\\\\\\.jsx?$\\u0026quot; . rjsx-mode)\\n :hook (rjsx-mode . tide-setup)\\n :config (setq js-indent-level 2\\n js2-strict-missing-semi-warning nil))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/eu4rmco/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"created\": 1563490393.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cem6h7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4pjs7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"wemmik\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1563460205.0, \"send_replies\": true, \"parent_id\": \"t3_cem6h7\", \"score\": 1, \"author_fullname\": \"t2_vflzy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"`tide-mode` + `rjsx-mode` + `prettier` is my standard react/js setup. No complaints.\", \"link_title\": \"[Overwhelemed] Js, js-jsx, rjsx, js2, js3, js2-jsx, web-mode\", \"author_flair_css_class\": null, \"name\": \"t1_eu4pjs7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Etide-mode\\u003C/code\\u003E + \\u003Ccode\\u003Erjsx-mode\\u003C/code\\u003E + \\u003Ccode\\u003Eprettier\\u003C/code\\u003E is my standard react/js setup. No complaints.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/eu4pjs7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"created\": 1563489005.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cepto4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4nw2x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ema2159\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563459048.0, \"send_replies\": true, \"parent_id\": \"t1_eu46b12\", \"score\": 3, \"author_fullname\": \"t2_3dbgovrw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Company posframe is really promising, we should support it\", \"link_title\": \"Having this weird thing happen to me, any idea what's happening?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4nw2x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECompany posframe is really promising, we should support it\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cepto4/having_this_weird_thing_happen_to_me_any_idea/eu4nw2x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cepto4/having_this_weird_thing_happen_to_me_any_idea/\", \"report_reasons\": null, \"link_author\": \"eliseven\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/0vm1RTE\", \"created\": 1563487848.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cem6h7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4n895\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nixorg\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1563458576.0, \"send_replies\": true, \"parent_id\": \"t3_cem6h7\", \"score\": 0, \"author_fullname\": \"t2_xmky9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You can try lsp-mode https://github.com/emacs-lsp/lsp-mode \\nfor js development together with js2-mode. It pretty interesting approach last time.\", \"link_title\": \"[Overwhelemed] Js, js-jsx, rjsx, js2, js3, js2-jsx, web-mode\", \"author_flair_css_class\": null, \"name\": \"t1_eu4n895\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can try lsp-mode \\u003Ca href=\\\"https://github.com/emacs-lsp/lsp-mode\\\"\\u003Ehttps://github.com/emacs-lsp/lsp-mode\\u003C/a\\u003E \\nfor js development together with js2-mode. It pretty interesting approach last time.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/eu4n895/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"created\": 1563487376.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cegx19\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4lwvw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"emacsomancer\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563457613.0, \"send_replies\": true, \"parent_id\": \"t1_eu4fi78\", \"score\": 1, \"author_fullname\": \"t2_8a43c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"by email, yes. and i'm using mu4e, so that sounds like a solution!\", \"link_title\": \"Convert vCalendar files to Org ?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4lwvw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eby email, yes. and i\\u0026#39;m using mu4e, so that sounds like a solution!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/eu4lwvw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/\", \"report_reasons\": null, \"link_author\": \"emacsomancer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/\", \"created\": 1563486413.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cedgm8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4kph9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"da-g\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563456696.0, \"send_replies\": true, \"parent_id\": \"t1_eu419wa\", \"score\": 1, \"author_fullname\": \"t2_yl6ge\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"BRILLIANT! Thanks so much for sharing!\", \"link_title\": \"Spacemacs layouts without Spacemacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4kph9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBRILLIANT! Thanks so much for sharing!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cedgm8/spacemacs_layouts_without_spacemacs/eu4kph9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cedgm8/spacemacs_layouts_without_spacemacs/\", \"report_reasons\": null, \"link_author\": \"da-g\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cedgm8/spacemacs_layouts_without_spacemacs/\", \"created\": 1563485496.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdwmua\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4kb9c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"VanLaser\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1563456384.0, \"send_replies\": true, \"parent_id\": \"t1_eu30x61\", \"score\": 1, \"author_fullname\": \"t2_eyihb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's really overkill. The user brain changing its habits would be easier.\", \"link_title\": \"evil-mode - jump back to last position.\", \"author_flair_css_class\": null, \"name\": \"t1_eu4kb9c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s really overkill. The user brain changing its habits would be easier.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdwmua/evilmode_jump_back_to_last_position/eu4kb9c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdwmua/evilmode_jump_back_to_last_position/\", \"report_reasons\": null, \"link_author\": \"dericbytes\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdwmua/evilmode_jump_back_to_last_position/\", \"created\": 1563485184.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdwmua\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4k7h7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"VanLaser\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1563456301.0, \"send_replies\": true, \"parent_id\": \"t3_cdwmua\", \"score\": 1, \"author_fullname\": \"t2_eyihb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Well, since that can happen at any time (i.e. you yourself don't know what you type), you'd have to make every evil normal-state command to register in the jump list; which is a bit overkill.\", \"link_title\": \"evil-mode - jump back to last position.\", \"author_flair_css_class\": null, \"name\": \"t1_eu4k7h7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, since that can happen at any time (i.e. you yourself don\\u0026#39;t know what you type), you\\u0026#39;d have to make every evil normal-state command to register in the jump list; which is a bit overkill.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdwmua/evilmode_jump_back_to_last_position/eu4k7h7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdwmua/evilmode_jump_back_to_last_position/\", \"report_reasons\": null, \"link_author\": \"dericbytes\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdwmua/evilmode_jump_back_to_last_position/\", \"created\": 1563485101.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceguy5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4k11c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vallyscode\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563456161.0, \"send_replies\": true, \"parent_id\": \"t1_eu4dk8z\", \"score\": 1, \"author_fullname\": \"t2_2ze0cnjc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"looks like it is, also use-package uses it to display statistics. Thanks\", \"link_title\": \"table component\", \"author_flair_css_class\": null, \"name\": \"t1_eu4k11c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Elooks like it is, also use-package uses it to display statistics. Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ceguy5/table_component/eu4k11c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ceguy5/table_component/\", \"report_reasons\": null, \"link_author\": \"vallyscode\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ceguy5/table_component/\", \"created\": 1563484961.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cer5y6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4i1k4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jjzmajic\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563454530.0, \"send_replies\": true, \"parent_id\": \"t1_eu4dq9m\", \"score\": 3, \"author_fullname\": \"t2_1zgvtvsa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Appreciate it man :) GIFs are on the way!\", \"link_title\": \"Thoughts?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4i1k4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAppreciate it man :) GIFs are on the way!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cer5y6/thoughts/eu4i1k4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cer5y6/thoughts/\", \"report_reasons\": null, \"link_author\": \"jjzmajic\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cer5y6/thoughts/\", \"created\": 1563483330.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cecs6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4g3x9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"oantolin\", \"num_comments\": 38, \"can_mod_post\": false, \"created_utc\": 1563452793.0, \"send_replies\": true, \"parent_id\": \"t1_eu3wtu5\", \"score\": 2, \"author_fullname\": \"t2_3fxjo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It's not, `\\u003Cf3\\u003E` is bound to a slightly different function that I like better. I explained the difference [on another thread](https://www.reddit.com/r/emacs/comments/cdu7cd/_/eu29pqs).\", \"link_title\": \"What have you bound to function keys?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4g3x9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s not, \\u003Ccode\\u003E\\u0026lt;f3\\u0026gt;\\u003C/code\\u003E is bound to a slightly different function that I like better. I explained the difference \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/cdu7cd/_/eu29pqs\\\"\\u003Eon another thread\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/eu4g3x9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"report_reasons\": null, \"link_author\": \"TTRation\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"created\": 1563481593.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cegx19\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4fi78\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dakra\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563452224.0, \"send_replies\": true, \"parent_id\": \"t3_cegx19\", \"score\": 2, \"author_fullname\": \"t2_6it00\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"How do you get those files?\\n\\ngnus has `gnus-icalendar` to import vcal/ical attachments from emails and mu4e just recently got the same feature using the `gnus-icalendar` lib.\", \"link_title\": \"Convert vCalendar files to Org ?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4fi78\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow do you get those files?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Egnus has \\u003Ccode\\u003Egnus-icalendar\\u003C/code\\u003E to import vcal/ical attachments from emails and mu4e just recently got the same feature using the \\u003Ccode\\u003Egnus-icalendar\\u003C/code\\u003E lib.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/eu4fi78/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/\", \"report_reasons\": null, \"link_author\": \"emacsomancer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/\", \"created\": 1563481024.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563451766.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cem6h7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4e8sx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"freesteph\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1563450966.0, \"send_replies\": true, \"parent_id\": \"t3_cem6h7\", \"score\": 1, \"author_fullname\": \"t2_9vlow\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I actually started a new JS mode last week using `@babel/parser` for smarter coding. I then realise my Elisp skills are nowhere near sufficient but it was born from the same frustration of these different, half-complete, half-alive modes. Emacs can do so much, and yet there is no clear way to harness this power in a Javascript/Web job at the moment.\", \"link_title\": \"[Overwhelemed] Js, js-jsx, rjsx, js2, js3, js2-jsx, web-mode\", \"author_flair_css_class\": null, \"name\": \"t1_eu4e8sx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI actually started a new JS mode last week using \\u003Ccode\\u003E@babel/parser\\u003C/code\\u003E for smarter coding. I then realise my Elisp skills are nowhere near sufficient but it was born from the same frustration of these different, half-complete, half-alive modes. Emacs can do so much, and yet there is no clear way to harness this power in a Javascript/Web job at the moment.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/eu4e8sx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"created\": 1563479766.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd5mrp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4dsk8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Knusper2000\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563450498.0, \"send_replies\": true, \"parent_id\": \"t1_etui6ec\", \"score\": 1, \"author_fullname\": \"t2_eb9f4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You realise that are just reiterating (twice now) what I said in my initial post, without answering the questions? (Sorry for not simply posting YES as your question to whether I read the documentation or not)\", \"link_title\": \"org-publish-project-alist - \\\":include\\\" and \\\":exclude\\\" properties. Why is one a string and one a list?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4dsk8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou realise that are just reiterating (twice now) what I said in my initial post, without answering the questions? (Sorry for not simply posting YES as your question to whether I read the documentation or not)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cd5mrp/orgpublishprojectalist_include_and_exclude/eu4dsk8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cd5mrp/orgpublishprojectalist_include_and_exclude/\", \"report_reasons\": null, \"link_author\": \"Knusper2000\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cd5mrp/orgpublishprojectalist_include_and_exclude/\", \"created\": 1563479298.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cer5y6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4dq9m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"jmercouris\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563450431.0, \"send_replies\": true, \"parent_id\": \"t3_cer5y6\", \"score\": 14, \"author_fullname\": \"t2_9b1sjpd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I think a picture would go a long way for those who have no experience with those packages. I really like it, I would use it, but already have my own custom hydras :)\", \"link_title\": \"Thoughts?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4dq9m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think a picture would go a long way for those who have no experience with those packages. I really like it, I would use it, but already have my own custom hydras :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cer5y6/thoughts/eu4dq9m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cer5y6/thoughts/\", \"report_reasons\": null, \"link_author\": \"jjzmajic\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cer5y6/thoughts/\", \"created\": 1563479231.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 14}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563450769.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cejhmy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4dna6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"TokenMenses\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563450344.0, \"send_replies\": true, \"parent_id\": \"t1_eu40wb3\", \"score\": 5, \"author_fullname\": \"t2_7qn6v\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sure. I don't mess with faces much in general, so I'm probably doing something a little wrong or maybe changing more faces than needed:\\n\\n (mapcar (lambda (f) (set-face-foreground f \\\"dim gray\\\"))\\n '(lsp-ui-sideline-code-action lsp-ui-sideline-current-symbol lsp-ui-sideline-symbol lsp-ui-sideline-symbol-info))\\n\\nHere's a snapshot of a situation where sideline would normally be extremely distracting and I find I can still focus on the code and find it useful to glance at the sideline for type info sometimes.\\n\\n[https://imgur.com/a/qIEG8yZ](https://imgur.com/a/qIEG8yZ)\", \"link_title\": \"What are the best alternatives for lsp-ui or better config options?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4dna6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESure. I don\\u0026#39;t mess with faces much in general, so I\\u0026#39;m probably doing something a little wrong or maybe changing more faces than needed:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E (mapcar (lambda (f) (set-face-foreground f \\u0026quot;dim gray\\u0026quot;))\\n \\u0026#39;(lsp-ui-sideline-code-action lsp-ui-sideline-current-symbol lsp-ui-sideline-symbol lsp-ui-sideline-symbol-info))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s a snapshot of a situation where sideline would normally be extremely distracting and I find I can still focus on the code and find it useful to glance at the sideline for type info sometimes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/qIEG8yZ\\\"\\u003Ehttps://imgur.com/a/qIEG8yZ\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/eu4dna6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/\", \"report_reasons\": null, \"link_author\": \"tech87freak\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/\", \"created\": 1563479144.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceguy5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4dk8z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jens_chr_jensen\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563450252.0, \"send_replies\": true, \"parent_id\": \"t3_ceguy5\", \"score\": 3, \"author_fullname\": \"t2_3kwjzbrk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You're probably looking for `tabulated-list-mode`, which is what tablist is based on.\\n\\n[https://www.gnu.org/software/emacs/manual/html\\\\_node/elisp/Tabulated-List-Mode.html](https://www.gnu.org/software/emacs/manual/html_node/elisp/Tabulated-List-Mode.html)\", \"link_title\": \"table component\", \"author_flair_css_class\": null, \"name\": \"t1_eu4dk8z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;re probably looking for \\u003Ccode\\u003Etabulated-list-mode\\u003C/code\\u003E, which is what tablist is based on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/elisp/Tabulated-List-Mode.html\\\"\\u003Ehttps://www.gnu.org/software/emacs/manual/html_node/elisp/Tabulated-List-Mode.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ceguy5/table_component/eu4dk8z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ceguy5/table_component/\", \"report_reasons\": null, \"link_author\": \"vallyscode\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ceguy5/table_component/\", \"created\": 1563479052.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd6fe2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4brda\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ballfresno\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1563448199.0, \"send_replies\": true, \"parent_id\": \"t1_eu4bozh\", \"score\": 1, \"author_fullname\": \"t2_2b5qxk6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Pity. I feel your pain! Auctex then.\", \"link_title\": \"How to make Emacs a Latex IDE?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4brda\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPity. I feel your pain! Auctex then.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cd6fe2/how_to_make_emacs_a_latex_ide/eu4brda/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cd6fe2/how_to_make_emacs_a_latex_ide/\", \"report_reasons\": null, \"link_author\": \"tech_addictede\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cd6fe2/how_to_make_emacs_a_latex_ide/\", \"created\": 1563476999.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd6fe2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4bozh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tech_addictede\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1563448120.0, \"send_replies\": true, \"parent_id\": \"t1_eu49xmn\", \"score\": 1, \"author_fullname\": \"t2_1nib5fhm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"My problem is that my coworkers dont use emacs so org mode is not an option!\", \"link_title\": \"How to make Emacs a Latex IDE?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4bozh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy problem is that my coworkers dont use emacs so org mode is not an option!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cd6fe2/how_to_make_emacs_a_latex_ide/eu4bozh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cd6fe2/how_to_make_emacs_a_latex_ide/\", \"report_reasons\": null, \"link_author\": \"tech_addictede\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cd6fe2/how_to_make_emacs_a_latex_ide/\", \"created\": 1563476920.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd6fe2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu49xmn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ballfresno\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1563445887.0, \"send_replies\": true, \"parent_id\": \"t3_cd6fe2\", \"score\": 1, \"author_fullname\": \"t2_2b5qxk6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You've received many posts pointing you to auctex which I fully agree with. However, depending on the amount of LaTeX hacking you require, the best environment in Emacs for writing is org mode which will export very nicely and cleanly to LaTeX. I do all of my writing in org, including academic articles for publication.\", \"link_title\": \"How to make Emacs a Latex IDE?\", \"author_flair_css_class\": null, \"name\": \"t1_eu49xmn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;ve received many posts pointing you to auctex which I fully agree with. However, depending on the amount of LaTeX hacking you require, the best environment in Emacs for writing is org mode which will export very nicely and cleanly to LaTeX. I do all of my writing in org, including academic articles for publication.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cd6fe2/how_to_make_emacs_a_latex_ide/eu49xmn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cd6fe2/how_to_make_emacs_a_latex_ide/\", \"report_reasons\": null, \"link_author\": \"tech_addictede\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cd6fe2/how_to_make_emacs_a_latex_ide/\", \"created\": 1563474687.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdx6kl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu49gd4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"lrkry\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563445236.0, \"send_replies\": true, \"parent_id\": \"t3_cdx6kl\", \"score\": 1, \"author_fullname\": \"t2_uiv8t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"The model in caldav/ics and the model in org mode are quite different, so this is a bit of pain to do using some web calendar. I tried that before with org-caldav-sync and it was alright but janky enough to stop me wanting to use it really.\\n\\nWhat I do is:\\n\\n* Keep all my org files in a directory which I sync between all my computers and phone and backup location using syncthing\\n* Modify and query my org files on the mobile using Orgzly - I think this only has an android version unfortunately\\n* Integrate my org calendar with the android system calendar using [this thing](https://github.com/larkery/orgcal) which I made. It parses the org files which syncthing has pushed onto the phone, and displays them in the calendar app. If I put things in the calendar or edit them it updates the org files accordingly, and then syncthing pushes them back to my computers.\\n\\nThis doesn't give me any kind of web-based access to the calendar, but it does give me org-agenda as the interface on the computer and calendar app as the interface on my phone.\\n\\nA web interface to org-agenda would be really nice, maybe served out of a running remote emacs or something, but that's not something I've got time to do at the moment.\", \"link_title\": \"Trouble with committing to org-agenda\", \"author_flair_css_class\": null, \"name\": \"t1_eu49gd4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe model in caldav/ics and the model in org mode are quite different, so this is a bit of pain to do using some web calendar. I tried that before with org-caldav-sync and it was alright but janky enough to stop me wanting to use it really.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat I do is:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EKeep all my org files in a directory which I sync between all my computers and phone and backup location using syncthing\\u003C/li\\u003E\\n\\u003Cli\\u003EModify and query my org files on the mobile using Orgzly - I think this only has an android version unfortunately\\u003C/li\\u003E\\n\\u003Cli\\u003EIntegrate my org calendar with the android system calendar using \\u003Ca href=\\\"https://github.com/larkery/orgcal\\\"\\u003Ethis thing\\u003C/a\\u003E which I made. It parses the org files which syncthing has pushed onto the phone, and displays them in the calendar app. If I put things in the calendar or edit them it updates the org files accordingly, and then syncthing pushes them back to my computers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThis doesn\\u0026#39;t give me any kind of web-based access to the calendar, but it does give me org-agenda as the interface on the computer and calendar app as the interface on my phone.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA web interface to org-agenda would be really nice, maybe served out of a running remote emacs or something, but that\\u0026#39;s not something I\\u0026#39;ve got time to do at the moment.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdx6kl/trouble_with_committing_to_orgagenda/eu49gd4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdx6kl/trouble_with_committing_to_orgagenda/\", \"report_reasons\": null, \"link_author\": \"KozutheGosu\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdx6kl/trouble_with_committing_to_orgagenda/\", \"created\": 1563474036.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cepto4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu489yz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eliseven\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563443583.0, \"send_replies\": true, \"parent_id\": \"t1_eu46b12\", \"score\": 1, \"author_fullname\": \"t2_s7o4rj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That worked, thanks! The font think makes sense as the Org plugin changes fonts for headers and stuff\", \"link_title\": \"Having this weird thing happen to me, any idea what's happening?\", \"author_flair_css_class\": null, \"name\": \"t1_eu489yz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat worked, thanks! The font think makes sense as the Org plugin changes fonts for headers and stuff\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cepto4/having_this_weird_thing_happen_to_me_any_idea/eu489yz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cepto4/having_this_weird_thing_happen_to_me_any_idea/\", \"report_reasons\": null, \"link_author\": \"eliseven\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/0vm1RTE\", \"created\": 1563472383.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cepto4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu476w5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Qwarctick\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563441987.0, \"send_replies\": true, \"parent_id\": \"t3_cepto4\", \"score\": 1, \"author_fullname\": \"t2_jmplgk2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have the same issue since I changed the classical font to the Ubuntu one.\", \"link_title\": \"Having this weird thing happen to me, any idea what's happening?\", \"author_flair_css_class\": null, \"name\": \"t1_eu476w5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have the same issue since I changed the classical font to the Ubuntu one.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cepto4/having_this_weird_thing_happen_to_me_any_idea/eu476w5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cepto4/having_this_weird_thing_happen_to_me_any_idea/\", \"report_reasons\": null, \"link_author\": \"eliseven\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/0vm1RTE\", \"created\": 1563470787.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cepto4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu46b12\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"andreyorst\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563440664.0, \"send_replies\": true, \"parent_id\": \"t3_cepto4\", \"score\": 8, \"author_fullname\": \"t2_w7w9e32\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This completion popup is displayed over the lines that have different font size, and since it's not real popup, but text overlay it inherits those font sizes. If this is company can try [company-posframe](https://github.com/tumashu/company-posframe) to workaround this\", \"link_title\": \"Having this weird thing happen to me, any idea what's happening?\", \"author_flair_css_class\": null, \"name\": \"t1_eu46b12\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis completion popup is displayed over the lines that have different font size, and since it\\u0026#39;s not real popup, but text overlay it inherits those font sizes. If this is company can try \\u003Ca href=\\\"https://github.com/tumashu/company-posframe\\\"\\u003Ecompany-posframe\\u003C/a\\u003E to workaround this\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cepto4/having_this_weird_thing_happen_to_me_any_idea/eu46b12/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cepto4/having_this_weird_thing_happen_to_me_any_idea/\", \"report_reasons\": null, \"link_author\": \"eliseven\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/0vm1RTE\", \"created\": 1563469464.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cem6h7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu45rue\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"poiu-\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1563439860.0, \"send_replies\": true, \"parent_id\": \"t1_eu3mo3l\", \"score\": 6, \"author_fullname\": \"t2_dcfnv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"React and JSX\\n\\nThe currently recommended solution is to install Emacs 27 (still in development, you can\\u00a0build from source\\u00a0or e.g. install a snapshot from a\\u00a0PPA) and use\\u00a0js-modeas the major mode. To make use of the JS2 AST and the packages that integrate with it, we recommend\\u00a0js2-minor-mode. See the corresponding\\u00a0instructions in the Commentary.\\n\\njs-mode\\u00a0in Emacs 27 includes full support for syntax highlighting and indenting of JSX syntax.\\n\\nrjsx-mode\\u00a0is an alternative option which comes with certain tradeoffs.\", \"link_title\": \"[Overwhelemed] Js, js-jsx, rjsx, js2, js3, js2-jsx, web-mode\", \"author_flair_css_class\": null, \"name\": \"t1_eu45rue\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EReact and JSX\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe currently recommended solution is to install Emacs 27 (still in development, you can\\u00a0build from source\\u00a0or e.g. install a snapshot from a\\u00a0PPA) and use\\u00a0js-modeas the major mode. To make use of the JS2 AST and the packages that integrate with it, we recommend\\u00a0js2-minor-mode. See the corresponding\\u00a0instructions in the Commentary.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ejs-mode\\u00a0in Emacs 27 includes full support for syntax highlighting and indenting of JSX syntax.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Erjsx-mode\\u00a0is an alternative option which comes with certain tradeoffs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/eu45rue/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"created\": 1563468660.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce6r12\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu42xl4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"db48x\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563435762.0, \"send_replies\": true, \"parent_id\": \"t1_eu30rjy\", \"score\": 2, \"author_fullname\": \"t2_b7sys\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Does MacOS not send an event when the theme changes? That'd be nicer than polling.\", \"link_title\": \"auto-dark-emacs - My attempt to make emacs follow the global Dark Mode on MacOS\", \"author_flair_css_class\": null, \"name\": \"t1_eu42xl4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes MacOS not send an event when the theme changes? That\\u0026#39;d be nicer than polling.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ce6r12/autodarkemacs_my_attempt_to_make_emacs_follow_the/eu42xl4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ce6r12/autodarkemacs_my_attempt_to_make_emacs_follow_the/\", \"report_reasons\": null, \"link_author\": \"LionyxML\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/hoslt1dkxra31.gif\", \"created\": 1563464562.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cecs6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu42jdc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 38, \"can_mod_post\": false, \"created_utc\": 1563435217.0, \"send_replies\": true, \"parent_id\": \"t3_cecs6m\", \"score\": 1, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \" ;; Window-buffer operations\\n (global-set-key [C-f2] 'term-toggle)\\n (global-set-key [f2] 'term-toggle-eshell)\\n (global-set-key [f4] 'treemacs)\\n (global-set-key [f5] 'other-window)\\n (global-set-key [S-f5] 'z-swap-windows)\\n (global-set-key [f6] 'delete-window)\\n (global-set-key [M-f6] 'delete-other-windows)\\n (global-set-key [f7] 'split-window-right)\\n (global-set-key [f8] 'split-window-below)\\n (global-set-key [f9] 'ispell-word)\\n (global-set-key [f10] 'next-buffer)\\n (global-set-key [S-f10] 'previous-buffer)\\n (global-set-key [f12] 'kill-buffer-but-not-some)\\n (global-set-key [M-f12] 'kill-buffer-but-not-some-other)\\n (global-set-key [C-f12] 'delete-frame)\\n (global-set-key [S-f12] 'only-current-buffer)\\n (global-set-key [M-pause] 'sys-toggle-time)\", \"link_title\": \"What have you bound to function keys?\", \"author_flair_css_class\": null, \"name\": \"t1_eu42jdc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E;; Window-buffer operations\\n(global-set-key [C-f2] \\u0026#39;term-toggle)\\n(global-set-key [f2] \\u0026#39;term-toggle-eshell)\\n(global-set-key [f4] \\u0026#39;treemacs)\\n(global-set-key [f5] \\u0026#39;other-window)\\n(global-set-key [S-f5] \\u0026#39;z-swap-windows)\\n(global-set-key [f6] \\u0026#39;delete-window)\\n(global-set-key [M-f6] \\u0026#39;delete-other-windows)\\n(global-set-key [f7] \\u0026#39;split-window-right)\\n(global-set-key [f8] \\u0026#39;split-window-below)\\n(global-set-key [f9] \\u0026#39;ispell-word)\\n(global-set-key [f10] \\u0026#39;next-buffer)\\n(global-set-key [S-f10] \\u0026#39;previous-buffer)\\n(global-set-key [f12] \\u0026#39;kill-buffer-but-not-some)\\n(global-set-key [M-f12] \\u0026#39;kill-buffer-but-not-some-other)\\n(global-set-key [C-f12] \\u0026#39;delete-frame)\\n(global-set-key [S-f12] \\u0026#39;only-current-buffer)\\n(global-set-key [M-pause] \\u0026#39;sys-toggle-time)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/eu42jdc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"report_reasons\": null, \"link_author\": \"TTRation\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"created\": 1563464017.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cejhmy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu41ucy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tech87freak\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563434288.0, \"send_replies\": true, \"parent_id\": \"t1_eu31f4y\", \"score\": 1, \"author_fullname\": \"t2_77u8i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E(setq lsp-ui-sideline-enable nil)\\n\\nThanks, this actually helped. I will look into binding into keys.\", \"link_title\": \"What are the best alternatives for lsp-ui or better config options?\", \"author_flair_css_class\": null, \"name\": \"t1_eu41ucy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E(setq lsp-ui-sideline-enable nil)\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThanks, this actually helped. I will look into binding into keys.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/eu41ucy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/\", \"report_reasons\": null, \"link_author\": \"tech87freak\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/\", \"created\": 1563463088.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cep5lq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu41tdb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zerok\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563434253.0, \"send_replies\": true, \"parent_id\": \"t1_eu41rvd\", \"score\": 1, \"author_fullname\": \"t2_36aha\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's it. Thank you!\", \"link_title\": \"Buffer switching similar to tmux-pane-index?\", \"author_flair_css_class\": null, \"name\": \"t1_eu41tdb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s it. Thank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/eu41tdb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/\", \"report_reasons\": null, \"link_author\": \"zerok\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/\", \"created\": 1563463053.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cep5lq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu41t9c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zerok\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563434248.0, \"send_replies\": true, \"parent_id\": \"t1_eu41nem\", \"score\": 1, \"author_fullname\": \"t2_36aha\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's it. Thank you!\", \"link_title\": \"Buffer switching similar to tmux-pane-index?\", \"author_flair_css_class\": null, \"name\": \"t1_eu41t9c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s it. Thank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/eu41t9c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/\", \"report_reasons\": null, \"link_author\": \"zerok\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/\", \"created\": 1563463048.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cep5lq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu41rvd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"magicalmurray\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563434198.0, \"send_replies\": true, \"parent_id\": \"t3_cep5lq\", \"score\": 3, \"author_fullname\": \"t2_1nblz07g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Emacs has a different naming system for windows and buffers than other popular programs. Your question should translate to: \\\"when I have a frame with 3 windows open\\\" (you want to switch between windows, not buffers). \\n\\n\\nYou might find ace-window solves this problem: [https://github.com/abo-abo/ace-window](https://github.com/abo-abo/ace-window)\", \"link_title\": \"Buffer switching similar to tmux-pane-index?\", \"author_flair_css_class\": null, \"name\": \"t1_eu41rvd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEmacs has a different naming system for windows and buffers than other popular programs. Your question should translate to: \\u0026quot;when I have a frame with 3 windows open\\u0026quot; (you want to switch between windows, not buffers). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou might find ace-window solves this problem: \\u003Ca href=\\\"https://github.com/abo-abo/ace-window\\\"\\u003Ehttps://github.com/abo-abo/ace-window\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/eu41rvd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/\", \"report_reasons\": null, \"link_author\": \"zerok\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/\", \"created\": 1563462998.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cep5lq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu41nem\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Linupe\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563434037.0, \"send_replies\": true, \"parent_id\": \"t3_cep5lq\", \"score\": 3, \"author_fullname\": \"t2_y9pj5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Perhaps ace-window https://github.com/abo-abo/ace-window\", \"link_title\": \"Buffer switching similar to tmux-pane-index?\", \"author_flair_css_class\": null, \"name\": \"t1_eu41nem\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPerhaps ace-window \\u003Ca href=\\\"https://github.com/abo-abo/ace-window\\\"\\u003Ehttps://github.com/abo-abo/ace-window\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/eu41nem/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/\", \"report_reasons\": null, \"link_author\": \"zerok\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/\", \"created\": 1563462837.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cedgm8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu419wa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yanghaoxie\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563433554.0, \"send_replies\": true, \"parent_id\": \"t3_cedgm8\", \"score\": 2, \"author_fullname\": \"t2_yophh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I extract spacemacs' layout configurations, there are only two packages, i.e., eyebrowse and persp-mode.\\n\\nPlease refer my [workspace](https://github.com/yanghaoxie/emacs.d#workspaces) configurations.\", \"link_title\": \"Spacemacs layouts without Spacemacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eu419wa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI extract spacemacs\\u0026#39; layout configurations, there are only two packages, i.e., eyebrowse and persp-mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease refer my \\u003Ca href=\\\"https://github.com/yanghaoxie/emacs.d#workspaces\\\"\\u003Eworkspace\\u003C/a\\u003E configurations.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cedgm8/spacemacs_layouts_without_spacemacs/eu419wa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cedgm8/spacemacs_layouts_without_spacemacs/\", \"report_reasons\": null, \"link_author\": \"da-g\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cedgm8/spacemacs_layouts_without_spacemacs/\", \"created\": 1563462354.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqpgk0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4193f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pwang_jo\", \"num_comments\": 46, \"can_mod_post\": false, \"created_utc\": 1563433525.0, \"send_replies\": true, \"parent_id\": \"t1_eo8iclr\", \"score\": 1, \"author_fullname\": \"t2_3y4czgc7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Don't forget the [Colemak Keyboard Layout](https://colemak.com)\", \"link_title\": \"Is it time to learn vi so that i could use spacemacs and save myself from RSI?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4193f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDon\\u0026#39;t forget the \\u003Ca href=\\\"https://colemak.com\\\"\\u003EColemak Keyboard Layout\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bqpgk0/is_it_time_to_learn_vi_so_that_i_could_use/eu4193f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bqpgk0/is_it_time_to_learn_vi_so_that_i_could_use/\", \"report_reasons\": null, \"link_author\": \"prasannarajaram\", \"author_flair_text\": null, \"link_url\": \"http://www.brodrigues.co/blog/2019-05-19-spacemacs/\", \"created\": 1563462325.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cejhmy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu40wb3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tech87freak\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563433065.0, \"send_replies\": true, \"parent_id\": \"t1_eu3i6dq\", \"score\": 2, \"author_fullname\": \"t2_77u8i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Can you share the config/screenshot, would love to see how it looks? And try it out.\", \"link_title\": \"What are the best alternatives for lsp-ui or better config options?\", \"author_flair_css_class\": null, \"name\": \"t1_eu40wb3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan you share the config/screenshot, would love to see how it looks? And try it out.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/eu40wb3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/\", \"report_reasons\": null, \"link_author\": \"tech87freak\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/\", \"created\": 1563461865.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cem6h7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3zf70\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tareefdev\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1563431248.0, \"send_replies\": true, \"parent_id\": \"t3_cem6h7\", \"score\": 3, \"author_fullname\": \"t2_169z83\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm using Emacs for JS the last two years, and pretty satisfied with my config. Mainly I use Tide + FlyCheck + RJSX-mode (which is an enhanced version of JS2-mode, which is an improved JS-mode):\\n````\\n;; Use rjsx-mode for js files\\n(add-to-list 'auto-mode-alist '(\\\"\\\\\\\\.js\\\\\\\\'\\\" . rjsx-mode))\\n\\n;; use eslint from node modules dicetory\\n(add-hook 'prog-mode-hook 'flycheck-mode)\\n(defun my/use-eslint-from-node-modules ()\\n (let* ((root (locate-dominating-file\\n (or (buffer-file-name) default-directory)\\n \\\"node_modules\\\"))\\n (eslint (and root\\n (expand-file-name \\\"node_modules/eslint/bin/eslint.js\\\"\\n root))))\\n (when (and eslint (file-executable-p eslint))\\n (setq-local flycheck-javascript-eslint-executable eslint))))\\n(add-hook 'flycheck-mode-hook #'my/use-eslint-from-node-modules)\\n\\n;; Tide setup\\n(defun setup-tide-mode ()\\n (interactive)\\n (tide-setup)\\n (flycheck-mode +1)\\n;; (setq flycheck-check-syntax-automatically '(save mode-enabled))\\n (eldoc-mode +1)\\n (tide-hl-identifier-mode +1)\\n (company-mode +1))\\n;; aligns annotation to the right hand side\\n(setq company-tooltip-align-annotations t)\\n(setq tide-completion-ignore-case t)\\n;; formats the buffer before saving\\n;;(add-hook 'before-save-hook 'tide-format-before-save)\\n(add-hook 'js2-mode-hook #'setup-tide-mode)\\n(add-hook 'rjsx-mode-hook #'setup-tide-mode)\\n(flycheck-add-next-checker 'javascript-eslint 'javascript-tide 'append)\\n(setq tide-format-options\\n '(:indentSize 2 :tabSize 2))\\n\\n````\\n\\nPreviously I was using Atom, but much happier with Emacs.\", \"link_title\": \"[Overwhelemed] Js, js-jsx, rjsx, js2, js3, js2-jsx, web-mode\", \"author_flair_css_class\": null, \"name\": \"t1_eu3zf70\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using Emacs for JS the last two years, and pretty satisfied with my config. Mainly I use Tide + FlyCheck + RJSX-mode (which is an enhanced version of JS2-mode, which is an improved JS-mode):\\n````\\n;; Use rjsx-mode for js files\\n(add-to-list \\u0026#39;auto-mode-alist \\u0026#39;(\\u0026quot;\\\\.js\\\\\\u0026#39;\\u0026quot; . rjsx-mode))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E;; use eslint from node modules dicetory\\n(add-hook \\u0026#39;prog-mode-hook \\u0026#39;flycheck-mode)\\n(defun my/use-eslint-from-node-modules ()\\n (let* ((root (locate-dominating-file\\n (or (buffer-file-name) default-directory)\\n \\u0026quot;node_modules\\u0026quot;))\\n (eslint (and root\\n (expand-file-name \\u0026quot;node_modules/eslint/bin/eslint.js\\u0026quot;\\n root))))\\n (when (and eslint (file-executable-p eslint))\\n (setq-local flycheck-javascript-eslint-executable eslint))))\\n(add-hook \\u0026#39;flycheck-mode-hook #\\u0026#39;my/use-eslint-from-node-modules)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E;; Tide setup\\n(defun setup-tide-mode ()\\n (interactive)\\n (tide-setup)\\n (flycheck-mode +1)\\n;; (setq flycheck-check-syntax-automatically \\u0026#39;(save mode-enabled))\\n (eldoc-mode +1)\\n (tide-hl-identifier-mode +1)\\n (company-mode +1))\\n;; aligns annotation to the right hand side\\n(setq company-tooltip-align-annotations t)\\n(setq tide-completion-ignore-case t)\\n;; formats the buffer before saving\\n;;(add-hook \\u0026#39;before-save-hook \\u0026#39;tide-format-before-save)\\n(add-hook \\u0026#39;js2-mode-hook #\\u0026#39;setup-tide-mode)\\n(add-hook \\u0026#39;rjsx-mode-hook #\\u0026#39;setup-tide-mode)\\n(flycheck-add-next-checker \\u0026#39;javascript-eslint \\u0026#39;javascript-tide \\u0026#39;append)\\n(setq tide-format-options\\n \\u0026#39;(:indentSize 2 :tabSize 2))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E````\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPreviously I was using Atom, but much happier with Emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/eu3zf70/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"created\": 1563460048.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceiw4p\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3z5bw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vfclists\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563430918.0, \"send_replies\": true, \"parent_id\": \"t1_eu34c9a\", \"score\": 1, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"My projects are not that big and tt doesn't have to be all the projects in `projectile-known-projects` it can be the last 10 used or the last 20 used.\", \"link_title\": \"Does projectile grep limit itself only to the current directory?\", \"author_flair_css_class\": null, \"name\": \"t1_eu3z5bw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy projects are not that big and tt doesn\\u0026#39;t have to be all the projects in \\u003Ccode\\u003Eprojectile-known-projects\\u003C/code\\u003E it can be the last 10 used or the last 20 used.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ceiw4p/does_projectile_grep_limit_itself_only_to_the/eu3z5bw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ceiw4p/does_projectile_grep_limit_itself_only_to_the/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ceiw4p/does_projectile_grep_limit_itself_only_to_the/\", \"created\": 1563459718.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceiw4p\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3yo86\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vfclists\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563430354.0, \"send_replies\": true, \"parent_id\": \"t1_eu3edio\", \"score\": 1, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes\", \"link_title\": \"Does projectile grep limit itself only to the current directory?\", \"author_flair_css_class\": null, \"name\": \"t1_eu3yo86\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ceiw4p/does_projectile_grep_limit_itself_only_to_the/eu3yo86/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ceiw4p/does_projectile_grep_limit_itself_only_to_the/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ceiw4p/does_projectile_grep_limit_itself_only_to_the/\", \"created\": 1563459154.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563429892.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cecs6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3xzzm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"lawlist\", \"num_comments\": 38, \"can_mod_post\": false, \"created_utc\": 1563429571.0, \"send_replies\": true, \"parent_id\": \"t3_cecs6m\", \"score\": 1, \"author_fullname\": \"t2_n4mmo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There are 12 function keys on all of my keyboards, so I use one for each month to open a calendar to the corresponding month of the current year. I add modifier keys to open up different types of calendars with the target month at the desired location; e.g., a 3-month rotating calendar with the target month in the middle; or a 12-month rotating calendar with the target month in the upper left-hand corner ....; a one-month calendar generated by a modified version of `calfw`; an `org-agenda` buffer with all the events (meetings, appearances, etc.), birthdays and holidays in any given month.\", \"link_title\": \"What have you bound to function keys?\", \"author_flair_css_class\": null, \"name\": \"t1_eu3xzzm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere are 12 function keys on all of my keyboards, so I use one for each month to open a calendar to the corresponding month of the current year. I add modifier keys to open up different types of calendars with the target month at the desired location; e.g., a 3-month rotating calendar with the target month in the middle; or a 12-month rotating calendar with the target month in the upper left-hand corner ....; a one-month calendar generated by a modified version of \\u003Ccode\\u003Ecalfw\\u003C/code\\u003E; an \\u003Ccode\\u003Eorg-agenda\\u003C/code\\u003E buffer with all the events (meetings, appearances, etc.), birthdays and holidays in any given month.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/eu3xzzm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"report_reasons\": null, \"link_author\": \"TTRation\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"created\": 1563458371.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce56g9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3xu7j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1563429388.0, \"send_replies\": true, \"parent_id\": \"t1_eu2kw0l\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Magit is a large package, and not all of its functions are documented, but it's made by people who know what they're doing. Packages that are built-in to Emacs are probably more thoroughly documented, so you might start there. Good luck!\", \"link_title\": \"Elisp question regarding use of arguments vs environment variables\", \"author_flair_css_class\": null, \"name\": \"t1_eu3xu7j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMagit is a large package, and not all of its functions are documented, but it\\u0026#39;s made by people who know what they\\u0026#39;re doing. Packages that are built-in to Emacs are probably more thoroughly documented, so you might start there. Good luck!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ce56g9/elisp_question_regarding_use_of_arguments_vs/eu3xu7j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ce56g9/elisp_question_regarding_use_of_arguments_vs/\", \"report_reasons\": null, \"link_author\": \"misterchiply\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ce56g9/elisp_question_regarding_use_of_arguments_vs/\", \"created\": 1563458188.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cem6h7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3xdid\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"fhdhsni\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1563428865.0, \"send_replies\": true, \"parent_id\": \"t3_cem6h7\", \"score\": 8, \"author_fullname\": \"t2_vczxv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I use web-mode + tide + prettier-js-mode\", \"link_title\": \"[Overwhelemed] Js, js-jsx, rjsx, js2, js3, js2-jsx, web-mode\", \"author_flair_css_class\": null, \"name\": \"t1_eu3xdid\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use web-mode + tide + prettier-js-mode\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/eu3xdid/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"created\": 1563457665.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cegx19\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3x4yq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SmoothInternet\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563428603.0, \"send_replies\": true, \"parent_id\": \"t1_eu3dou5\", \"score\": 2, \"author_fullname\": \"t2_baw354f\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"My mistake. I thought you said vCard. \\n\\nI did find this on github:\\n\\n[https://raw.githubusercontent.com/vjohansen/emacs-config/master/org-import-calendar.el](https://raw.githubusercontent.com/vjohansen/emacs-config/master/org-import-calendar.el)\", \"link_title\": \"Convert vCalendar files to Org ?\", \"author_flair_css_class\": null, \"name\": \"t1_eu3x4yq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy mistake. I thought you said vCard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did find this on github:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://raw.githubusercontent.com/vjohansen/emacs-config/master/org-import-calendar.el\\\"\\u003Ehttps://raw.githubusercontent.com/vjohansen/emacs-config/master/org-import-calendar.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/eu3x4yq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/\", \"report_reasons\": null, \"link_author\": \"emacsomancer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/\", \"created\": 1563457403.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cecs6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3wtu5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TTRation\", \"num_comments\": 38, \"can_mod_post\": false, \"created_utc\": 1563428268.0, \"send_replies\": true, \"parent_id\": \"t1_eu3j9gk\", \"score\": 1, \"author_fullname\": \"t2_z7asf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I've always used `C-x (`. I didn't realize it was also bound to function keys.\", \"link_title\": \"What have you bound to function keys?\", \"author_flair_css_class\": null, \"name\": \"t1_eu3wtu5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve always used \\u003Ccode\\u003EC-x (\\u003C/code\\u003E. I didn\\u0026#39;t realize it was also bound to function keys.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/eu3wtu5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"report_reasons\": null, \"link_author\": \"TTRation\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"created\": 1563457068.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cddxfc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3vhje\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"makuto9\", \"num_comments\": 43, \"can_mod_post\": false, \"created_utc\": 1563426846.0, \"send_replies\": true, \"parent_id\": \"t1_eu2qyr7\", \"score\": 3, \"author_fullname\": \"t2_aotel\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I agree. Kids these days will rely on their phones for everything, not realizing how little they can practically do compared to a regular computer.\", \"link_title\": \"Unexpected side-effects of using emacs\", \"author_flair_css_class\": null, \"name\": \"t1_eu3vhje\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI agree. Kids these days will rely on their phones for everything, not realizing how little they can practically do compared to a regular computer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cddxfc/unexpected_sideeffects_of_using_emacs/eu3vhje/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cddxfc/unexpected_sideeffects_of_using_emacs/\", \"report_reasons\": null, \"link_author\": \"The_Kilo\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cddxfc/unexpected_sideeffects_of_using_emacs/\", \"created\": 1563455646.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdfr20\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3uvpx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"da-g\", \"num_comments\": 20, \"can_mod_post\": false, \"created_utc\": 1563426230.0, \"send_replies\": true, \"parent_id\": \"t3_cdfr20\", \"score\": 1, \"author_fullname\": \"t2_yl6ge\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"oh shit, just when I thought I had \\\"finished\\\" messing with my config.... here we go again. Awesome work!\", \"link_title\": \"[ANN] major-mode-hydra / pretty-hydra 0.2.0\", \"author_flair_css_class\": null, \"name\": \"t1_eu3uvpx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eoh shit, just when I thought I had \\u0026quot;finished\\u0026quot; messing with my config.... here we go again. Awesome work!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdfr20/ann_majormodehydra_prettyhydra_020/eu3uvpx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdfr20/ann_majormodehydra_prettyhydra_020/\", \"report_reasons\": null, \"link_author\": \"pr2jerry\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdfr20/ann_majormodehydra_prettyhydra_020/\", \"created\": 1563455030.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdwmua\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3uavt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"splsh\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1563425654.0, \"send_replies\": true, \"parent_id\": \"t3_cdwmua\", \"score\": 1, \"author_fullname\": \"t2_7afro\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"gi will return to insert mode to the last edit in file\\n\\nEdit: oh I understand what you mean now, nvm.\", \"link_title\": \"evil-mode - jump back to last position.\", \"author_flair_css_class\": null, \"name\": \"t1_eu3uavt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Egi will return to insert mode to the last edit in file\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: oh I understand what you mean now, nvm.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cdwmua/evilmode_jump_back_to_last_position/eu3uavt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cdwmua/evilmode_jump_back_to_last_position/\", \"report_reasons\": null, \"link_author\": \"dericbytes\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cdwmua/evilmode_jump_back_to_last_position/\", \"created\": 1563454454.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cem6h7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3q6r5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"ReinH\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1563421855.0, \"send_replies\": true, \"parent_id\": \"t3_cem6h7\", \"score\": 8, \"author_fullname\": \"t2_34svr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I haven't found a setup that compares with VS Code tbh, so I still use it for react/vue/etc web dev. Maybe I'll check back here to see if anyone else has any good answers. Good luck!\", \"link_title\": \"[Overwhelemed] Js, js-jsx, rjsx, js2, js3, js2-jsx, web-mode\", \"author_flair_css_class\": null, \"name\": \"t1_eu3q6r5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI haven\\u0026#39;t found a setup that compares with VS Code tbh, so I still use it for react/vue/etc web dev. Maybe I\\u0026#39;ll check back here to see if anyone else has any good answers. Good luck!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/eu3q6r5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"created\": 1563450655.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cem6h7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3mo3l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"vlad-lorenzo\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1563418871.0, \"send_replies\": true, \"parent_id\": \"t3_cem6h7\", \"score\": 6, \"author_fullname\": \"t2_3a9m5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"When I was using react last year I remember that I had to switch between web-mode and rjsx-mode manually depending on the file since both modes had some limitations.\\nEmacs 27 is [supposed to bring improvements](https://github.com/mooz/js2-mode#react-and-jsx) but I haven't tried it.\\n\\nThis is the configuration I was using:\\n\\n (use-package js2-mode\\n :mode \\\"\\\\\\\\.js\\\\\\\\'\\\"\\n :config\\n (customize-set-variable 'js2-include-node-externs t))\\n \\n (use-package tide ; https://github.com/ananthakumaran/tide\\n :init\\n (defun setup-tide-mode ()\\n (interactive)\\n (tide-setup)\\n (flycheck-mode +1)\\n ;; (setq flycheck-check-syntax-automatically '(save mode-enabled))\\n (eldoc-mode +1)\\n (tide-hl-identifier-mode +1)\\n ;; company is an optional dependency. You have to\\n ;; install it separately via package-install\\n ;; `M-x package-install [ret] company`\\n (company-mode +1))\\n \\n (defun my/setup-tsx-mode ()\\n (when (string-equal \\\"tsx\\\" (file-name-extension buffer-file-name))\\n (setup-tide-mode)))\\n \\n (defun my/setup-jsx-mode ()\\n (when (string-equal \\\"jsx\\\" (file-name-extension buffer-file-name))\\n (setup-tide-mode)))\\n \\n (add-hook 'typescript-mode-hook #'setup-tide-mode)\\n (add-hook 'js2-mode-hook #'setup-tide-mode)\\n (add-hook 'web-mode-hook #'my/setup-tsx-mode)\\n (add-hook 'rjsx-mode-hook #'my/setup-jsx-mode)\\n :requires flycheck\\n :config\\n (add-to-list 'company-backends 'company-tide)\\n ;; aligns annotation to the right hand side\\n ;; (setq company-tooltip-align-annotations t)\\n \\n ;; formats the buffer before saving\\n ;; (add-hook 'before-save-hook 'tide-format-before-save)\\n \\n (flycheck-add-next-checker 'javascript-eslint 'javascript-tide 'append)\\n (flycheck-add-next-checker 'javascript-eslint 'jsx-tide 'append))\\n \\n (use-package rjsx-mode\\n :defer t)\\n \\n (use-package web-mode\\n :mode (\\\"\\\\\\\\.html?\\\\\\\\'\\\"\\n \\\"\\\\\\\\.phtml\\\\\\\\'\\\"\\n \\\"\\\\\\\\.php\\\\\\\\'\\\"\\n \\\"\\\\\\\\.inc\\\\\\\\'\\\"\\n \\\"\\\\\\\\.tpl\\\\\\\\'\\\"\\n \\\"\\\\\\\\.jsp\\\\\\\\'\\\"\\n \\\"\\\\\\\\.as[cp]x\\\\\\\\'\\\"\\n \\\"\\\\\\\\.erb\\\\\\\\'\\\"\\n \\\"\\\\\\\\.mustache\\\\\\\\'\\\"\\n \\\"\\\\\\\\.djhtml\\\\\\\\'\\\"\\n \\\"\\\\\\\\.jsx\\\\\\\\'\\\"\\n \\\"\\\\\\\\.tsx\\\\\\\\'\\\")\\n :config\\n ;; configure jsx-tide checker to run after your default jsx checker\\n (flycheck-add-mode 'javascript-eslint 'web-mode)\\n (flycheck-add-mode 'typescript-tslint 'web-mode))\", \"link_title\": \"[Overwhelemed] Js, js-jsx, rjsx, js2, js3, js2-jsx, web-mode\", \"author_flair_css_class\": null, \"name\": \"t1_eu3mo3l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I was using react last year I remember that I had to switch between web-mode and rjsx-mode manually depending on the file since both modes had some limitations.\\nEmacs 27 is \\u003Ca href=\\\"https://github.com/mooz/js2-mode#react-and-jsx\\\"\\u003Esupposed to bring improvements\\u003C/a\\u003E but I haven\\u0026#39;t tried it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the configuration I was using:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package js2-mode\\n :mode \\u0026quot;\\\\\\\\.js\\\\\\\\\\u0026#39;\\u0026quot;\\n :config\\n (customize-set-variable \\u0026#39;js2-include-node-externs t))\\n\\n(use-package tide ; https://github.com/ananthakumaran/tide\\n :init\\n (defun setup-tide-mode ()\\n (interactive)\\n (tide-setup)\\n (flycheck-mode +1)\\n ;; (setq flycheck-check-syntax-automatically \\u0026#39;(save mode-enabled))\\n (eldoc-mode +1)\\n (tide-hl-identifier-mode +1)\\n ;; company is an optional dependency. You have to\\n ;; install it separately via package-install\\n ;; `M-x package-install [ret] company`\\n (company-mode +1))\\n\\n (defun my/setup-tsx-mode ()\\n (when (string-equal \\u0026quot;tsx\\u0026quot; (file-name-extension buffer-file-name))\\n (setup-tide-mode)))\\n\\n (defun my/setup-jsx-mode ()\\n (when (string-equal \\u0026quot;jsx\\u0026quot; (file-name-extension buffer-file-name))\\n (setup-tide-mode)))\\n\\n (add-hook \\u0026#39;typescript-mode-hook #\\u0026#39;setup-tide-mode)\\n (add-hook \\u0026#39;js2-mode-hook #\\u0026#39;setup-tide-mode)\\n (add-hook \\u0026#39;web-mode-hook #\\u0026#39;my/setup-tsx-mode)\\n (add-hook \\u0026#39;rjsx-mode-hook #\\u0026#39;my/setup-jsx-mode)\\n :requires flycheck\\n :config\\n (add-to-list \\u0026#39;company-backends \\u0026#39;company-tide)\\n ;; aligns annotation to the right hand side\\n ;; (setq company-tooltip-align-annotations t)\\n\\n ;; formats the buffer before saving\\n ;; (add-hook \\u0026#39;before-save-hook \\u0026#39;tide-format-before-save)\\n\\n (flycheck-add-next-checker \\u0026#39;javascript-eslint \\u0026#39;javascript-tide \\u0026#39;append)\\n (flycheck-add-next-checker \\u0026#39;javascript-eslint \\u0026#39;jsx-tide \\u0026#39;append))\\n\\n(use-package rjsx-mode\\n :defer t)\\n\\n(use-package web-mode\\n :mode (\\u0026quot;\\\\\\\\.html?\\\\\\\\\\u0026#39;\\u0026quot;\\n \\u0026quot;\\\\\\\\.phtml\\\\\\\\\\u0026#39;\\u0026quot;\\n \\u0026quot;\\\\\\\\.php\\\\\\\\\\u0026#39;\\u0026quot;\\n \\u0026quot;\\\\\\\\.inc\\\\\\\\\\u0026#39;\\u0026quot;\\n \\u0026quot;\\\\\\\\.tpl\\\\\\\\\\u0026#39;\\u0026quot;\\n \\u0026quot;\\\\\\\\.jsp\\\\\\\\\\u0026#39;\\u0026quot;\\n \\u0026quot;\\\\\\\\.as[cp]x\\\\\\\\\\u0026#39;\\u0026quot;\\n \\u0026quot;\\\\\\\\.erb\\\\\\\\\\u0026#39;\\u0026quot;\\n \\u0026quot;\\\\\\\\.mustache\\\\\\\\\\u0026#39;\\u0026quot;\\n \\u0026quot;\\\\\\\\.djhtml\\\\\\\\\\u0026#39;\\u0026quot;\\n \\u0026quot;\\\\\\\\.jsx\\\\\\\\\\u0026#39;\\u0026quot;\\n \\u0026quot;\\\\\\\\.tsx\\\\\\\\\\u0026#39;\\u0026quot;)\\n :config\\n ;; configure jsx-tide checker to run after your default jsx checker\\n (flycheck-add-mode \\u0026#39;javascript-eslint \\u0026#39;web-mode)\\n (flycheck-add-mode \\u0026#39;typescript-tslint \\u0026#39;web-mode))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/eu3mo3l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"created\": 1563447671.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}], \"after\": \"t1_eu3mo3l\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["257789"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:14 GMT"], "x-ratelimit-remaining": ["598.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["2"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495015.512437,VS0,VE475"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["586"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-07-19T00:10:15"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_eu6927p"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:16 GMT"], "x-ratelimit-remaining": ["597.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["3"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495016.018946,VS0,VE78"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["584"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_eu6927p"}, "recorded_at": "2019-07-19T00:10:16"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I added the following kbd to compile, but when I execute, mini buffer shows the compile cmd, but it doesn't execute, I have to press enter to execute the cmd. What should I change to automatically execute the compile cmd when I press CTRL-z? \\n\\n\\u0026#x200B;\\n\\n(global-set-key (kbd \\\"\\\\\\\\C-z\\\") 'compile)\\n\\n\\u0026#x200B;\\n\\n(add-hook 'verilog-mode-hook\\n\\n(lambda ()\\n\\n(unless (or (file-exists-p \\\"makefile\\\")\\n\\n(file-exists-p \\\"Makefile\\\"))\\n\\n(set (make-local-variable 'compile-command)\\n\\n(concat \\\"vcs -sverilog -R -64 \\\\_\\\\_FILE\\\\_\\\\_ -o \\\"\\n\\n(if buffer-file-name\\n\\n(shell-quote-argument\\n\\n(file-name-sans-extension buffer-file-name))))))))\", \"author_fullname\": \"t2_z9mq8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"KDB macro execution\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_cf00mv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563521601.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI added the following kbd to compile, but when I execute, mini buffer shows the compile cmd, but it doesn\\u0026#39;t execute, I have to press enter to execute the cmd. What should I change to automatically execute the compile cmd when I press CTRL-z? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(global-set-key (kbd \\u0026quot;\\\\C-z\\u0026quot;) \\u0026#39;compile)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-hook \\u0026#39;verilog-mode-hook\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(lambda ()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(unless (or (file-exists-p \\u0026quot;makefile\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(file-exists-p \\u0026quot;Makefile\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(set (make-local-variable \\u0026#39;compile-command)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(concat \\u0026quot;vcs -sverilog -R -64 __FILE__ -o \\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(if buffer-file-name\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(shell-quote-argument\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(file-name-sans-extension buffer-file-name))))))))\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cf00mv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yourcheers\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cf00mv/kdb_macro_execution/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cf00mv/kdb_macro_execution/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563492801.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I use projectile to manage my projects. I would like to have a keybinding automatically set up when I open a file in a specific project. I thought about doing it in a dir-locals.el at the root of my project.\\nI tried this:\\n`(global-set-key (kbd \\\"\\u003Cf7\\u003E\\\") 'eshell-command)`\\nbut I have two problems:\\n- it just prints \\\"eshell-command\\\" in the echo area,\\n- I would like to pass some arguments but I do not know how to do it. \\n\\nTo summarize, I would like to have a keybinding set up when I open a file of a given project. The key, let us say \\u003CF7\\u003E, would run the command \\\"man git\\\" (it is just an example) in eshell when I would press it. \\n\\nIs there a way to do this? If yes, how?\", \"author_fullname\": \"t2_3zzmqu5y\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Define a custom keybinding for a specific project\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ceyrkz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563515223.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use projectile to manage my projects. I would like to have a keybinding automatically set up when I open a file in a specific project. I thought about doing it in a dir-locals.el at the root of my project.\\nI tried this:\\n\\u003Ccode\\u003E(global-set-key (kbd \\u0026quot;\\u0026lt;f7\\u0026gt;\\u0026quot;) \\u0026#39;eshell-command)\\u003C/code\\u003E\\nbut I have two problems:\\n- it just prints \\u0026quot;eshell-command\\u0026quot; in the echo area,\\n- I would like to pass some arguments but I do not know how to do it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo summarize, I would like to have a keybinding set up when I open a file of a given project. The key, let us say \\u0026lt;F7\\u0026gt;, would run the command \\u0026quot;man git\\u0026quot; (it is just an example) in eshell when I would press it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way to do this? If yes, how?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceyrkz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Mat-R\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ceyrkz/define_a_custom_keybinding_for_a_specific_project/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ceyrkz/define_a_custom_keybinding_for_a_specific_project/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563486423.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_6qm9r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Execute result block as shell commands?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cexw01\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"3a5e1042-1094-11e7-bb00-0e3b6c7befce\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563511028.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"emacs.stackexchange.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"secretaria.el, font-man-mode\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cexw01\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"shackra\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/cexw01/execute_result_block_as_shell_commands/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://emacs.stackexchange.com/questions/51713/execute-result-block-as-shell-commands\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563482228.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_43jp9hmm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Mastering emacs in one year guide for begginners\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cexhwm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563509159.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cexhwm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"unixfix\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cexhwm/mastering_emacs_in_one_year_guide_for_begginners/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/redguardtoo/mastering-emacs-in-one-year-guide\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563480359.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have Emacs 26 installed on my Linux machines and on a Mac (vanilla versions on both, exactly the same config files).\\n\\nOn the Mac, whenever I open files from the Finder or the terminal in Emacs, only one instance is opened (i.e. I don't get multiple windows each time a file is opened). But I haven't been able to replicate this behavior on my Linux boxes. Any ideas and how to do so?\\n\\n(NB: I tried using the client-server approach, but didn't always work. In any case, on the Mac I am *not* using it, and the desired behavior just occurs \\\"out of the box\\\".)\", \"author_fullname\": \"t2_1408l4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Force only one instance (window)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ceuyq9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563497231.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have Emacs 26 installed on my Linux machines and on a Mac (vanilla versions on both, exactly the same config files).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the Mac, whenever I open files from the Finder or the terminal in Emacs, only one instance is opened (i.e. I don\\u0026#39;t get multiple windows each time a file is opened). But I haven\\u0026#39;t been able to replicate this behavior on my Linux boxes. Any ideas and how to do so?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(NB: I tried using the client-server approach, but didn\\u0026#39;t always work. In any case, on the Mac I am \\u003Cem\\u003Enot\\u003C/em\\u003E using it, and the desired behavior just occurs \\u0026quot;out of the box\\u0026quot;.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceuyq9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pailanderCO\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ceuyq9/force_only_one_instance_window/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ceuyq9/force_only_one_instance_window/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563468431.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How do I fix that?\", \"author_fullname\": \"t2_3ixmiy8z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Exwm: Workspaces have smaller font size compared to original workspace\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ces5gd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563483492.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow do I fix that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ces5gd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"forppinrange\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ces5gd/exwm_workspaces_have_smaller_font_size_compared/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ces5gd/exwm_workspaces_have_smaller_font_size_compared/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563454692.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_sf7xrvb\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there an emacs plugin for a small terminal window at the bottom like the ones in jetbrains IDEs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cerit0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563479771.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cerit0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"awsyoos\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cerit0/is_there_an_emacs_plugin_for_a_small_terminal/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563450971.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[https://gitlab.com/jjzmajic/wk-hydra](https://gitlab.com/jjzmajic/wk-hydra)\", \"author_fullname\": \"t2_1zgvtvsa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Thoughts?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cer5y6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563477505.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://gitlab.com/jjzmajic/wk-hydra\\\"\\u003Ehttps://gitlab.com/jjzmajic/wk-hydra\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cer5y6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jjzmajic\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cer5y6/thoughts/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cer5y6/thoughts/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563448705.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_s7o4rj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Having this weird thing happen to me, any idea what's happening?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cepto4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2F0vm1RTE%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D500\\u0026url=https%3A%2F%2Fimgur.com%2F0vm1RTE\\u0026image=https%3A%2F%2Fi.imgur.com%2F0vm1RTE.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"500\\\" height=\\\"450\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 500, \"scrolling\": false, \"height\": 450}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 votes and 0 views.\", \"title\": \"Imgur\", \"url\": \"https://imgur.com/0vm1RTE\", \"thumbnail_width\": 600, \"height\": 450, \"width\": 500, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2F0vm1RTE%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D500\\u0026url=https%3A%2F%2Fimgur.com%2F0vm1RTE\\u0026image=https%3A%2F%2Fi.imgur.com%2F0vm1RTE.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"500\\\" height=\\\"450\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.imgur.com/0vm1RTE.jpg?fb\", \"type\": \"rich\", \"thumbnail_height\": 315}, \"type\": \"imgur.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2F0vm1RTE%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D500\\u0026url=https%3A%2F%2Fimgur.com%2F0vm1RTE\\u0026image=https%3A%2F%2Fi.imgur.com%2F0vm1RTE.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"500\\\" height=\\\"450\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 500, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cepto4\", \"height\": 450}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563467805.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cepto4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eliseven\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cepto4/having_this_weird_thing_happen_to_me_any_idea/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://imgur.com/0vm1RTE\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563439005.0, \"discussion_type\": null, \"media\": {\"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 votes and 0 views.\", \"title\": \"Imgur\", \"url\": \"https://imgur.com/0vm1RTE\", \"thumbnail_width\": 600, \"height\": 450, \"width\": 500, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2F0vm1RTE%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D500\\u0026url=https%3A%2F%2Fimgur.com%2F0vm1RTE\\u0026image=https%3A%2F%2Fi.imgur.com%2F0vm1RTE.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"500\\\" height=\\\"450\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.imgur.com/0vm1RTE.jpg?fb\", \"type\": \"rich\", \"thumbnail_height\": 315}, \"type\": \"imgur.com\"}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Especially when I have a window with 3 buffers open I get confused quite easily when switching from one buffer to another. In tmux I use the pane index command quite heavily to get around that. This briefly overlays each buffer with a number which I can then enter to switch to that buffer. Is there something like that already available for Emacs?\", \"author_fullname\": \"t2_36aha\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Buffer switching similar to tmux-pane-index?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cep5lq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563462605.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEspecially when I have a window with 3 buffers open I get confused quite easily when switching from one buffer to another. In tmux I use the pane index command quite heavily to get around that. This briefly overlays each buffer with a number which I can then enter to switch to that buffer. Is there something like that already available for Emacs?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cep5lq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zerok\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cep5lq/buffer_switching_similar_to_tmuxpaneindex/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563433805.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As a newcomer in *coding JS in Emacs* (I used to heavily rely on VSCode since everything just worked OOTB), I found it kinda overwhelming to see **js-mode, js-jsx-mode, js2-mode, js2-jsx-mode, js3-mode, rjsx-mode, web-mode** etc...\\n\\n\\u0026#x200B;\\n\\nOn top of that, I use Tide (tsserver) to provide me with intelligent code actions. But I don't quite understand the differences between major modes yet.\\n\\n\\u0026#x200B;\\n\\nWhat does your setup look like for JS development? I use JSX syntax heavily as I mostly work with React.\\n\\n\\u0026#x200B;\\n\\n**Edit: here's my current setup**\\n\\n (use-package tide\\n :after (company flycheck)\\n :config\\n (define-key tide-mode-map (kbd \\\"s-b\\\") 'tide-jump-to-definition)\\n (define-key tide-mode-map (kbd \\\"s-[\\\") 'tide-jump-back))\\n \\n (use-package rjsx-mode\\n :mode (\\\"\\\\\\\\.jsx?$\\\" . rjsx-mode)\\n :hook (rjsx-mode . tide-setup)\\n :config (setq js-indent-level 2\\n js2-strict-missing-semi-warning nil))\\n \\n (use-package web-mode\\n :mode\\n (\\\"\\\\\\\\.html?$\\\". web-mode)\\n (\\\"\\\\\\\\.css$\\\". web-mode)\\n (\\\"\\\\\\\\.tsx$\\\". web-mode)\\n :config\\n (defun my/tsx-setup ()\\n (when (and (stringp buffer-file-name)\\n (string-match \\\"\\\\\\\\.tsx$\\\" buffer-file-name))\\n (tide-setup)))\\n (add-hook 'web-mode-hook 'my/tsx-setup))\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Overwhelemed] Js, js-jsx, rjsx, js2, js3, js2-jsx, web-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cem6h7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 41, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 41, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563417928.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563443600.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a newcomer in \\u003Cem\\u003Ecoding JS in Emacs\\u003C/em\\u003E (I used to heavily rely on VSCode since everything just worked OOTB), I found it kinda overwhelming to see \\u003Cstrong\\u003Ejs-mode, js-jsx-mode, js2-mode, js2-jsx-mode, js3-mode, rjsx-mode, web-mode\\u003C/strong\\u003E etc...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn top of that, I use Tide (tsserver) to provide me with intelligent code actions. But I don\\u0026#39;t quite understand the differences between major modes yet.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat does your setup look like for JS development? I use JSX syntax heavily as I mostly work with React.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit: here\\u0026#39;s my current setup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package tide\\n :after (company flycheck)\\n :config\\n (define-key tide-mode-map (kbd \\u0026quot;s-b\\u0026quot;) \\u0026#39;tide-jump-to-definition)\\n (define-key tide-mode-map (kbd \\u0026quot;s-[\\u0026quot;) \\u0026#39;tide-jump-back))\\n\\n(use-package rjsx-mode\\n :mode (\\u0026quot;\\\\\\\\.jsx?$\\u0026quot; . rjsx-mode)\\n :hook (rjsx-mode . tide-setup)\\n :config (setq js-indent-level 2\\n js2-strict-missing-semi-warning nil))\\n\\n(use-package web-mode\\n :mode\\n (\\u0026quot;\\\\\\\\.html?$\\u0026quot;. web-mode)\\n (\\u0026quot;\\\\\\\\.css$\\u0026quot;. web-mode)\\n (\\u0026quot;\\\\\\\\.tsx$\\u0026quot;. web-mode)\\n :config\\n (defun my/tsx-setup ()\\n (when (and (stringp buffer-file-name)\\n (string-match \\u0026quot;\\\\\\\\.tsx$\\u0026quot; buffer-file-name))\\n (tide-setup)))\\n (add-hook \\u0026#39;web-mode-hook \\u0026#39;my/tsx-setup))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"yay-evil\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cem6h7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cem6h7/overwhelemed_js_jsjsx_rjsx_js2_js3_js2jsx_webmode/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563414800.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have noticed lsp-ui to be a bit too much sometimes and has really bad formatting in smaller screens. What's the best minimal alternative. For an instance, I don't mind the previews popping up in a buffer silently that I can open to see or something. But that doesn't always drop on my face. Would love to see other tweaked lsp-ui configs :D \\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/rqka1iwvqxa31.png\", \"author_fullname\": \"t2_77u8i\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What are the best alternatives for lsp-ui or better config options?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"rqka1iwvqxa31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 340, \"x\": 3050, \"u\": \"https://i.redd.it/rqka1iwvqxa31.png\"}, \"m\": \"image/png\", \"id\": \"rqka1iwvqxa31\"}}, \"name\": \"t3_cejhmy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563429335.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have noticed lsp-ui to be a bit too much sometimes and has really bad formatting in smaller screens. What\\u0026#39;s the best minimal alternative. For an instance, I don\\u0026#39;t mind the previews popping up in a buffer silently that I can open to see or something. But that doesn\\u0026#39;t always drop on my face. Would love to see other tweaked lsp-ui configs :D \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/rqka1iwvqxa31.png\\\"\\u003Ehttps://i.redd.it/rqka1iwvqxa31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cejhmy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tech87freak\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cejhmy/what_are_the_best_alternatives_for_lspui_or/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563400535.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When I use projectile grep it seems to limit itself to the current projects directory which doesn't seem right to me. Is there some option or switch causing that limitation?\\n\\nThe result window looks like this:\\n\\n\\u003E -*- mode: grep; default-directory: \\\"~/OrgDocs/\\\" -*-\\n\\u003E Grep started at Wed Jul 17 22:01:36\\n\\u003E \\n\\u003E find . -type d \\\\( -path \\\\*/SCCS -o -path \\\\*/RCS -o -path \\\\*/CVS -o -path \\\\*/MCVS -o -path \\\\*/.src -o -path \\\\*/.svn -o -path \\\\*/.git -o -path \\\\*/.hg -o -path \\\\*/.bzr -o -path \\\\*/_MTN -o -path \\\\*/_darcs -o -path \\\\*/\\\\{arch\\\\} \\\\) -prune -o \\\\! -type d \\\\( -name .\\\\#\\\\* -o -name \\\\*.o -o -name \\\\*\\\\~ -o -name \\\\*.bin -o -name \\\\*.lbin -o -name \\\\*.so -o -name \\\\*.a -o -name \\\\*.ln -o -name \\\\*.blg -o -name \\\\*.bbl -o -name \\\\*.elc -o -name \\\\*.lof -o -name \\\\*.glo -o -name \\\\*.idx -o -name \\\\*.lot -o -name \\\\*.fmt -o -name \\\\*.tfm -o -name \\\\*.class -o -name \\\\*.fas -o -name \\\\*.lib -o -name \\\\*.mem -o -name \\\\*.x86f -o -name \\\\*.sparcf -o -name \\\\*.dfsl -o -name \\\\*.pfsl -o -name \\\\*.d64fsl -o -name \\\\*.p64fsl -o -name \\\\*.lx64fsl -o -name \\\\*.lx32fsl -o -name \\\\*.dx64fsl -o -name \\\\*.dx32fsl -o -name \\\\*.fx64fsl -o -name \\\\*.fx32fsl -o -name \\\\*.sx64fsl -o -name \\\\*.sx32fsl -o -name \\\\*.wx64fsl -o -name \\\\*.wx32fsl -o -name \\\\*.fasl -o -name \\\\*.ufsl -o -name \\\\*.fsl -o -name \\\\*.dxl -o -name \\\\*.lo -o -name \\\\*.la -o -name \\\\*.gmo -o -name \\\\*.mo -o -name \\\\*.toc -o -name \\\\*.aux -o -name \\\\*.cp -o -name \\\\*.fn -o -name \\\\*.ky -o -name \\\\*.pg -o -name \\\\*.tp -o -name \\\\*.vr -o -name \\\\*.cps -o -name \\\\*.fns -o -name \\\\*.kys -o -name \\\\*.pgs -o -name \\\\*.tps -o -name \\\\*.vrs -o -name \\\\*.pyc -o -name \\\\*.pyo \\\\) -prune -o \\\\( -path ./.idea -o -path ./.ensime_cache -o -path ./.eunit -o -path ./.git -o -path ./.hg -o -path ./.fslckout -o -path ./_FOSSIL_ -o -path ./.bzr -o -path ./_darcs -o -path ./.tox -o -path ./.svn -o -path ./.stack-work -o -path ./TAGS \\\\) -prune -o -type f \\\\( -name \\\\* -o -name .\\\\* \\\\) -exec grep --color -i -nH -e searchpattern {} +\\n\\u003E \\n\\u003E Grep finished with no matches found at Wed Jul 17 22:01:36\\n\\u003E \\n\\nI am not sure if that is how the grep command is properly configured. Shouldn't it iterate over the projects in `projectile-known-projects`?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Does projectile grep limit itself only to the current directory?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ceiw4p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563426553.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I use projectile grep it seems to limit itself to the current projects directory which doesn\\u0026#39;t seem right to me. Is there some option or switch causing that limitation?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe result window looks like this:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E-\\u003Cem\\u003E- mode: grep; default-directory: \\u0026quot;~/OrgDocs/\\u0026quot; -\\u003C/em\\u003E-\\nGrep started at Wed Jul 17 22:01:36\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Efind . -type d ( -path */SCCS -o -path */RCS -o -path */CVS -o -path */MCVS -o -path */.src -o -path */.svn -o -path */.git -o -path */.hg -o -path */.bzr -o -path */\\u003Cem\\u003EMTN -o -path */_darcs -o -path */{arch} ) -prune -o ! -type d ( -name .#* -o -name *.o -o -name *~ -o -name *.bin -o -name *.lbin -o -name *.so -o -name *.a -o -name *.ln -o -name *.blg -o -name *.bbl -o -name *.elc -o -name *.lof -o -name *.glo -o -name *.idx -o -name *.lot -o -name *.fmt -o -name *.tfm -o -name *.class -o -name *.fas -o -name *.lib -o -name *.mem -o -name *.x86f -o -name *.sparcf -o -name *.dfsl -o -name *.pfsl -o -name *.d64fsl -o -name *.p64fsl -o -name *.lx64fsl -o -name *.lx32fsl -o -name *.dx64fsl -o -name *.dx32fsl -o -name *.fx64fsl -o -name *.fx32fsl -o -name *.sx64fsl -o -name *.sx32fsl -o -name *.wx64fsl -o -name *.wx32fsl -o -name *.fasl -o -name *.ufsl -o -name *.fsl -o -name *.dxl -o -name *.lo -o -name *.la -o -name *.gmo -o -name *.mo -o -name *.toc -o -name *.aux -o -name *.cp -o -name *.fn -o -name *.ky -o -name *.pg -o -name *.tp -o -name *.vr -o -name *.cps -o -name *.fns -o -name *.kys -o -name *.pgs -o -name *.tps -o -name *.vrs -o -name *.pyc -o -name *.pyo ) -prune -o ( -path ./.idea -o -path ./.ensime_cache -o -path ./.eunit -o -path ./.git -o -path ./.hg -o -path ./.fslckout -o -path ./_FOSSIL\\u003C/em\\u003E -o -path ./.bzr -o -path ./_darcs -o -path ./.tox -o -path ./.svn -o -path ./.stack-work -o -path ./TAGS ) -prune -o -type f ( -name * -o -name .* ) -exec grep --color -i -nH -e searchpattern {} +\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGrep finished with no matches found at Wed Jul 17 22:01:36\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI am not sure if that is how the grep command is properly configured. Shouldn\\u0026#39;t it iterate over the projects in \\u003Ccode\\u003Eprojectile-known-projects\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceiw4p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ceiw4p/does_projectile_grep_limit_itself_only_to_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ceiw4p/does_projectile_grep_limit_itself_only_to_the/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563397753.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there an easy of converting vCalendar files to Org? I get lots of these and it would be nice to be able to convert them rather than trying to create corresponding org entries by hand.\", \"author_fullname\": \"t2_8a43c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Convert vCalendar files to Org ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cegx19\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563417700.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there an easy of converting vCalendar files to Org? I get lots of these and it would be nice to be able to convert them rather than trying to create corresponding org entries by hand.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cegx19\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"emacsomancer\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cegx19/convert_vcalendar_files_to_org/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563388900.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is it possible to use that table component that I see when I list packages(M-x list-packages)?\\n\\nAll I managed to find is: tablist\", \"author_fullname\": \"t2_2ze0cnjc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"table component\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ceguy5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563417423.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to use that table component that I see when I list packages(M-x list-packages)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll I managed to find is: tablist\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceguy5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vallyscode\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ceguy5/table_component/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ceguy5/table_component/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563388623.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I got the package [popup (popup.el)](https://melpa.org/#/popup) installed, which I installed via melpa. I use those popups, to display auto-completions or for flycheck-popup-tip. \\n\\nHowever, I get weird indentation glitches, with the popups. They seem to appear, when the popup is displayed on a line, which hasn't as much \\\"content\\\" as the line, where the popup starts.\\n\\n\\u0026#x200B;\\n\\nHas anyone experienced the same issue? Or perhaps has a solution for this?\\n\\n\\u0026#x200B;\\n\\nThank you.\\n\\n\\u0026#x200B;\\n\\n(The image in this post shows an example of a popup with indentation errors) \\n\\nhttps://i.redd.it/7q661twovva31.png\", \"author_fullname\": \"t2_c7fswem\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Indentation Glitches with Popup.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"7q661twovva31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 172, \"x\": 783, \"u\": \"https://i.redd.it/7q661twovva31.png\"}, \"m\": \"image/png\", \"id\": \"7q661twovva31\"}}, \"name\": \"t3_ceeijq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563406828.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI got the package \\u003Ca href=\\\"https://melpa.org/#/popup\\\"\\u003Epopup (popup.el)\\u003C/a\\u003E installed, which I installed via melpa. I use those popups, to display auto-completions or for flycheck-popup-tip. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I get weird indentation glitches, with the popups. They seem to appear, when the popup is displayed on a line, which hasn\\u0026#39;t as much \\u0026quot;content\\u0026quot; as the line, where the popup starts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHas anyone experienced the same issue? Or perhaps has a solution for this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(The image in this post shows an example of a popup with indentation errors) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/7q661twovva31.png\\\"\\u003Ehttps://i.redd.it/7q661twovva31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceeijq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Lyno_\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ceeijq/indentation_glitches_with_popupel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ceeijq/indentation_glitches_with_popupel/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563378028.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I was wondering if anyone made enough progress to get a functioning version of spacemacs-layouts working outside of the spacemacs framework.\\n\\nI've spent a couple of hours trying to port, but to no avail. The limiting factor is that spacemacs runs a bunch of stuff on after-config-defer-hooks et al., and keybindings have to go through the leader-key mechanism.\\n\\n\\u0026#x200B;\\n\\nI'd be happy to hear if anyone has ideas or solutions that work similarly well outside of Spacemacs.\", \"author_fullname\": \"t2_yl6ge\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Spacemacs layouts without Spacemacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cedgm8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563401958.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering if anyone made enough progress to get a functioning version of spacemacs-layouts working outside of the spacemacs framework.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve spent a couple of hours trying to port, but to no avail. The limiting factor is that spacemacs runs a bunch of stuff on after-config-defer-hooks et al., and keybindings have to go through the leader-key mechanism.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d be happy to hear if anyone has ideas or solutions that work similarly well outside of Spacemacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cedgm8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"da-g\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cedgm8/spacemacs_layouts_without_spacemacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cedgm8/spacemacs_layouts_without_spacemacs/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563373158.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So I have been working in an ssh server that is too slow to open emacs normally and have been forced to open with `emacs -nw.` The problem is that when I open it like so, it doesn't load the settings of the init.el file. Is there a solution to this?\", \"author_fullname\": \"t2_1s1qxoj8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I apply the settings of my init.el when opening emacs with -nw?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ced61d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563400565.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I have been working in an ssh server that is too slow to open emacs normally and have been forced to open with \\u003Ccode\\u003Eemacs -nw.\\u003C/code\\u003E The problem is that when I open it like so, it doesn\\u0026#39;t load the settings of the init.el file. Is there a solution to this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ced61d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GhostOfLongClaw\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ced61d/how_can_i_apply_the_settings_of_my_initel_when/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ced61d/how_can_i_apply_the_settings_of_my_initel_when/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563371765.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I just realized I have a set of function keys ready to be used for something useful and I'm looking for ideas for optimizing their usage.\\n\\nCurrently I've kept them strictly global and never have them do anything mode specific. I have them set globally as follows:\\n\\n (global-set-key [f1] 'goto-line)\\n (global-set-key [f2] 'helm-ag)\\n (global-set-key [f3] 'helm-recentf)\\n \\n (global-set-key [f5] 'compile)\\n \\n (global-set-key [f9] 'org-agenda-list)\\n (global-set-key [f10] 'helm-org-rifle)\\n (global-set-key [f11] 'org-mru-clock-in)\\n (global-set-key [f12] 'org-clock-goto)\\n\\nSo there's room for more. Ideas?\", \"author_fullname\": \"t2_z7asf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What have you bound to function keys?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cecs6m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 25, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 25, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563398577.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just realized I have a set of function keys ready to be used for something useful and I\\u0026#39;m looking for ideas for optimizing their usage.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECurrently I\\u0026#39;ve kept them strictly global and never have them do anything mode specific. I have them set globally as follows:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(global-set-key [f1] \\u0026#39;goto-line)\\n(global-set-key [f2] \\u0026#39;helm-ag)\\n(global-set-key [f3] \\u0026#39;helm-recentf)\\n\\n(global-set-key [f5] \\u0026#39;compile)\\n\\n(global-set-key [f9] \\u0026#39;org-agenda-list)\\n(global-set-key [f10] \\u0026#39;helm-org-rifle)\\n(global-set-key [f11] \\u0026#39;org-mru-clock-in)\\n(global-set-key [f12] \\u0026#39;org-clock-goto)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo there\\u0026#39;s room for more. Ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cecs6m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TTRation\", \"num_crossposts\": 0, \"num_comments\": 38, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cecs6m/what_have_you_bound_to_function_keys/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563369777.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi everyone,\\n\\nI am torn between \\\"M-x fill-paragraph\\\", for a visual clear structure and \\\"one sentence per line\\\" for easier version control. I'm mostly working with .Rmd and .org files.\\n\\nDoes anyone has some best practice references (couldn't find any) or what do you consider best practice?\\n\\nHappy to hear your suggestions. :-)\\n\\nI am aware that this is not emacs specifc, but as we all love plain text files, this is AFAIK the best place to ask.\\n\\n\\u0026#x200B;\\n\\nBest Jonas\", \"author_fullname\": \"t2_iq1ykf0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Best practice for text sections in plain text files\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ceajz2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563384699.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am torn between \\u0026quot;M-x fill-paragraph\\u0026quot;, for a visual clear structure and \\u0026quot;one sentence per line\\u0026quot; for easier version control. I\\u0026#39;m mostly working with .Rmd and .org files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone has some best practice references (couldn\\u0026#39;t find any) or what do you consider best practice?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHappy to hear your suggestions. :-)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am aware that this is not emacs specifc, but as we all love plain text files, this is AFAIK the best place to ask.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBest Jonas\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceajz2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jonas37\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ceajz2/best_practice_for_text_sections_in_plain_text/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ceajz2/best_practice_for_text_sections_in_plain_text/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563355899.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\\\\[ Mild ranting \\\\]\\n\\n\\u0026#x200B;\\n\\nAs many might have noticed, the **box** argument in Emacs' face attributes not only renders a line around the box, but also shifts nearby characters by a bit, this is due to the **line-width** pushing away the space around the boxed word.\\n\\n\\u0026#x200B;\\n\\nYou could pass in a **negative** line-width as a parameter for the **box** attribute and Emacs would cease taking up vertical spaces (i.e. the line height stays the same). But **horizontally** the nearby words still shift left/right a little. This is especially annoying if one wants to use the box face to highlight occurrences of symbol-at-cursor-point on the fly etc.\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs' box attribute kinda sucks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ceajn7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563359086.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563384630.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[ Mild ranting ]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs many might have noticed, the \\u003Cstrong\\u003Ebox\\u003C/strong\\u003E argument in Emacs\\u0026#39; face attributes not only renders a line around the box, but also shifts nearby characters by a bit, this is due to the \\u003Cstrong\\u003Eline-width\\u003C/strong\\u003E pushing away the space around the boxed word.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou could pass in a \\u003Cstrong\\u003Enegative\\u003C/strong\\u003E line-width as a parameter for the \\u003Cstrong\\u003Ebox\\u003C/strong\\u003E attribute and Emacs would cease taking up vertical spaces (i.e. the line height stays the same). But \\u003Cstrong\\u003Ehorizontally\\u003C/strong\\u003E the nearby words still shift left/right a little. This is especially annoying if one wants to use the box face to highlight occurrences of symbol-at-cursor-point on the fly etc.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"yay-evil\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceajn7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/ceajn7/emacs_box_attribute_kinda_sucks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ceajn7/emacs_box_attribute_kinda_sucks/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563355830.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Chances are that every time utf-coding should be activated by invoking 'M-x revert-coding-system` , even though a long list of utf-prefer configuration:\\n\\n\\n (prefer-coding-system 'utf-8)\\n (set-terminal-coding-system 'utf-8)\\n (set-keyboard-coding-system 'utf-8)\\n (set-selection-coding-system 'utf-8)\\n (setq locale-coding-system 'utf-8)\\n (setq-default buffer-file-coding-system 'utf-8)\\n\\nTry to automate the process by \\n\\n ;;Set buffer coding system\\n (add-hook 'org-mode-hook (lambda () (revert-buffer-with-coding-system \\\"utf-8\\\")))\\n\\nHowever, it does not work as expected.\\n\\nWhat's the problem with my function to to handle the `revert-buffer-with-coding-system'`\", \"author_fullname\": \"t2_45nyfuw3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Revert buffer with coding system\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cea0q5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563380632.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EChances are that every time utf-coding should be activated by invoking \\u0026#39;M-x revert-coding-system` , even though a long list of utf-prefer configuration:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(prefer-coding-system \\u0026#39;utf-8)\\n(set-terminal-coding-system \\u0026#39;utf-8)\\n(set-keyboard-coding-system \\u0026#39;utf-8)\\n(set-selection-coding-system \\u0026#39;utf-8)\\n(setq locale-coding-system \\u0026#39;utf-8)\\n(setq-default buffer-file-coding-system \\u0026#39;utf-8)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ETry to automate the process by \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;;Set buffer coding system\\n(add-hook \\u0026#39;org-mode-hook (lambda () (revert-buffer-with-coding-system \\u0026quot;utf-8\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHowever, it does not work as expected.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s the problem with my function to to handle the \\u003Ccode\\u003Erevert-buffer-with-coding-system\\u0026#39;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cea0q5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AlinbX-utg\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cea0q5/revert_buffer_with_coding_system/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cea0q5/revert_buffer_with_coding_system/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563351832.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have been having problems in setting up flyspell with a en\\\\_US dictionary, can anyone help me?\\u00a0 When running \\\"M-x flyspell-buffer\\\", I get the following error message: \\n\\n\\nThe file \\\"/usr/lib/aspell-0.60/en\\\\_US\\\" can not be opened for reading.\\n\\nHowever, I have made sure that I copied en\\\\_US.dic and affy files into the directory mentioned above.\\u00a0 My code in emacs is as follows:\\n\\n\\u0026#x200B;\\n\\n`(setq ispell-dictionary \\\"en_US\\\")`\\n\\n`(setq flyspell-default-dictionary \\\"en_US\\\")` \\n\\n\\u0026#x200B;\\n\\n`;; ====================`\\n\\n`;; flyspell`\\n\\n`;;`\\n\\n`;;` [`https://joelkuiper.eu/spellcheck_emacs`](https://joelkuiper.eu/spellcheck_emacs)\\n\\n\\u0026#x200B;\\n\\n`(dolist (modey '(text-mode-hook`\\n\\n\\t\\t`markdown-mode`\\n\\n\\t\\t`))`\\n\\n `(add-hook modey`\\n\\n`'(lambda ()`\\n\\n`(flyspell-mode 1))))`\\n\\n\\u0026#x200B;\\n\\n`(global-set-key (kbd \\\"C-\\u003Cf8\\u003E\\\") 'ispell-word)`\\n\\n`(defun flyspell-check-next-highlighted-word ()`\\n\\n `\\\"Custom function to spell check next highlighted word\\\"`\\n\\n `(interactive)`\\n\\n `(flyspell-goto-next-error)`\\n\\n `(ispell-word))`\\n\\n`(global-set-key (kbd \\\"M-\\u003Cf8\\u003E\\\") 'flyspell-check-next-highlighted-word)`\\n\\n\\u0026#x200B;\\n\\nI have spent a ridiculous amount of time trying to fix this, and I seem to have hit a wall i can't get past...\\n\\nIf it helps, I'm using linux Manjaro.\", \"author_fullname\": \"t2_p04u9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Flyspell help needed! Can't open en_US\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ce8ibg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563369725.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have been having problems in setting up flyspell with a en_US dictionary, can anyone help me?\\u00a0 When running \\u0026quot;M-x flyspell-buffer\\u0026quot;, I get the following error message: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe file \\u0026quot;/usr/lib/aspell-0.60/en_US\\u0026quot; can not be opened for reading.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I have made sure that I copied en_US.dic and affy files into the directory mentioned above.\\u00a0 My code in emacs is as follows:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(setq ispell-dictionary \\u0026quot;en_US\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(setq flyspell-default-dictionary \\u0026quot;en_US\\u0026quot;)\\u003C/code\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E;; ====================\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E;; flyspell\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E;;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E;;\\u003C/code\\u003E \\u003Ca href=\\\"https://joelkuiper.eu/spellcheck_emacs\\\"\\u003E\\u003Ccode\\u003Ehttps://joelkuiper.eu/spellcheck_emacs\\u003C/code\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(dolist (modey \\u0026#39;(text-mode-hook\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E `markdown-mode`\\n\\n `))`\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(add-hook modey\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026#39;(lambda ()\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(flyspell-mode 1))))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(global-set-key (kbd \\u0026quot;C-\\u0026lt;f8\\u0026gt;\\u0026quot;) \\u0026#39;ispell-word)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(defun flyspell-check-next-highlighted-word ()\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026quot;Custom function to spell check next highlighted word\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(interactive)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(flyspell-goto-next-error)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(ispell-word))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(global-set-key (kbd \\u0026quot;M-\\u0026lt;f8\\u0026gt;\\u0026quot;) \\u0026#39;flyspell-check-next-highlighted-word)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have spent a ridiculous amount of time trying to fix this, and I seem to have hit a wall i can\\u0026#39;t get past...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf it helps, I\\u0026#39;m using linux Manjaro.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce8ibg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"agenttiny200\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ce8ibg/flyspell_help_needed_cant_open_en_us/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ce8ibg/flyspell_help_needed_cant_open_en_us/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563340925.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3kulgkhb\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"auto-dark-emacs - My attempt to make emacs follow the global Dark Mode on MacOS\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ce6r12\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563358976.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce6r12\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"LionyxML\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ce6r12/autodarkemacs_my_attempt_to_make_emacs_follow_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/hoslt1dkxra31.gif\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563330176.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm not sure how to debug this, but I updates my packages and I can no longer use Tramp. It just hangs and never connects. If I switch to my terminal ssh works totally fine.\\n\\nHow can I debug what's going on?\", \"author_fullname\": \"t2_3k3yu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tramp no longer working\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ce623w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563355128.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not sure how to debug this, but I updates my packages and I can no longer use Tramp. It just hangs and never connects. If I switch to my terminal ssh works totally fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I debug what\\u0026#39;s going on?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce623w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aesamattki\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ce623w/tramp_no_longer_working/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ce623w/tramp_no_longer_working/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563326328.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm writing a package in elisp and I find myself passing arguments through functions constantly. That is, I pass an argument to one function, which may in turn pass that variable onto another function, and so on. It's sort of a brain drain, and also feels a little awkward. \\n\\nAs an alternative, is it acceptable to simply use a setq to set the value of this variable as so I don't have to keep passing it as a variable to downstream functions. That would seriously clean up my code, but I'm wondering if it's bad practice. Any thoughts?\", \"author_fullname\": \"t2_uu2a8q3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Elisp question regarding use of arguments vs environment variables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ce56g9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563350326.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m writing a package in elisp and I find myself passing arguments through functions constantly. That is, I pass an argument to one function, which may in turn pass that variable onto another function, and so on. It\\u0026#39;s sort of a brain drain, and also feels a little awkward. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs an alternative, is it acceptable to simply use a setq to set the value of this variable as so I don\\u0026#39;t have to keep passing it as a variable to downstream functions. That would seriously clean up my code, but I\\u0026#39;m wondering if it\\u0026#39;s bad practice. Any thoughts?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce56g9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"misterchiply\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ce56g9/elisp_question_regarding_use_of_arguments_vs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ce56g9/elisp_question_regarding_use_of_arguments_vs/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563321526.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So, at work there is this code base of Javascript written with Flow and I realized that my current configuration won't cut it for this typed languaged. One main pain point I have now is that the linter with Typescript goes crazy with the source code in Flow, the other detail I notice is lack of correct font-locking in the buffer (due to the \\\"syntax errors\\\" maybe?)\\n\\nBecause I'm still new to flow I don't really know where, how and what to change exactly to accommodate Flow (I have a side job where I use typescript linting for a javascript source base so you could I say I still need my current configuration available)\\n\\nHere is my configuration:\\n\\n * javascript\\n **** JSON\\n #+BEGIN_SRC emacs-lisp\\n (use-package json-mode\\n :init\\n (defun jsconfig-default-conf ()\\n (interactive)\\n (yas-insert-snippet))\\n \\n (add-hook 'json-mode-hook\\n '(lambda () (when (and (eq (buffer-size) 0)\\n (string-match-p \\\"jsconfig.json\\\" (buffer-file-name)))\\n (jsconfig-default-conf)))))\\n #+END_SRC\\n **** External dependencies\\n #+BEGIN_SRC sh :results silent\\n npm install -g babel-cli babel-preset-react eslint babel-eslint eslint-plugin-react typescript typescript-language-server --save-dev\\n #+END_SRC\\n #+BEGIN_SRC emacs-lisp\\n (defun shackra-js-install-deps ()\\n \\\"install these locally\\\"\\n (interactive)\\n (shell-command \\\"yarn add eslint babel-eslint typescript eslint-plugin-react --dev\\\"))\\n #+END_SRC\\n ***** eslint configuration\\n #+BEGIN_SRC json :tangle ~/.eslintrc\\n {\\n \\\"parser\\\": \\\"babel-eslint\\\",\\n \\\"plugins\\\": [ \\\"react\\\" ],\\n \\\"env\\\": {\\n \\\"browser\\\": true,\\n \\\"es6\\\": true,\\n \\\"node\\\": true\\n },\\n \\\"ecmaFeatures\\\": {\\n \\\"arrowFunctions\\\": true,\\n \\\"blockBindings\\\": true,\\n \\\"classes\\\": true,\\n \\\"defaultParams\\\": true,\\n \\\"destructuring\\\": true,\\n \\\"forOf\\\": true,\\n \\\"generators\\\": true,\\n \\\"modules\\\": true,\\n \\\"spread\\\": true,\\n \\\"templateStrings\\\": true,\\n \\\"jsx\\\": true\\n },\\n \\\"rules\\\": {\\n \\\"consistent-return\\\": [0],\\n \\\"key-spacing\\\": [0],\\n \\\"quotes\\\": [0],\\n \\\"new-cap\\\": [0],\\n \\\"no-multi-spaces\\\": [0],\\n \\\"no-shadow\\\": [0],\\n \\\"no-unused-vars\\\": [1],\\n \\\"no-use-before-define\\\": [2, \\\"nofunc\\\"],\\n \\\"react/jsx-no-undef\\\": 1,\\n \\\"react/jsx-uses-react\\\": 1,\\n \\\"react/jsx-uses-vars\\\": 1\\n }\\n }\\n #+END_SRC\\n **** Packages to edit Javascript\\n #+BEGIN_SRC emacs-lisp\\n (setq-default js-indent-level shackra-webdev-indent)\\n \\n (use-package typescript-mode\\n :init\\n (setf typescript-indent-level shackra-webdev-indent)\\n (add-to-list 'auto-mode-alist '(\\\"\\\\\\\\.tsx?\\\\\\\\'\\\" . (lambda () (typescript-mode) (rjsx-minor-mode))))\\n :config\\n (with-eval-after-load 'lsp-clients\\n (add-hook 'typescript-mode-hook #'lsp)))\\n \\n (use-package js2-refactor\\n :after (js2-mode)\\n :config\\n (add-hook 'js2-mode-hook #'js2-refactor-mode)\\n (js2r-add-keybindings-with-prefix \\\"C-c C-m\\\"))\\n \\n (use-package xref-js2\\n :after (js2-mode)\\n :init\\n (add-hook 'js2-mode-hook (lambda () (add-hook 'xref-backend-functions #'xref-js2-xref-backend nil t))))\\n \\n (use-package js2-mode\\n :mode \\\"\\\\\\\\.js\\\\\\\\'\\\"\\n :init\\n (add-hook 'js2-mode-hook #'js2-imenu-extras-mode)\\n (setf js2-mode-indent-inhibit-undo t)\\n ;; turn off alerts\\n (setf js2-strict-missing-semi-warning nil)\\n (setf js2-dynamic-idle-timer-adjust 2500)\\n :config\\n (with-eval-after-load 'lsp-clients\\n (add-hook 'js2-mode-hook #'lsp))\\n (with-eval-after-load 'dap-mode\\n (require 'dap-firefox)\\n (dap-firefox-setup)\\n (require 'dap-chrome)\\n (dap-chrome-setup)))\\n \\n (use-package indium ;; https://indium.readthedocs.io/en/latest/setup.html\\n :config\\n (add-hook 'js-mode-hook #'indium-interaction-mode))\\n \\n ;; Major mode to work with ReactJS\\n (use-package rjsx-mode\\n :magic (\\\"import.*react\\\" . rjsx-mode)\\n :init\\n (add-hook 'rjsx-mode-hook (lambda () (flyspell-mode-off)))\\n :config\\n ;; taken from https://emacs.stackexchange.com/a/33544/690\\n (defadvice js-jsx-indent-line (after js-jsx-indent-line-after-hack activate)\\n \\\"Workaround sgml-mode and follow airbnb component style.\\\"\\n (save-excursion\\n (beginning-of-line)\\n (if (looking-at-p \\\"^ +\\\\/?\\u003E *$\\\")\\n (delete-char sgml-basic-offset))))\\n (with-eval-after-load 'lsp-clients\\n (add-to-list 'lsp-language-id-configuration '(rjsx-mode . \\\"javascript\\\"))\\n (add-hook 'rjsx-mode-hook #'lsp)))\\n \\n (with-eval-after-load 'flycheck\\n ;; taken from https://jamiecollinson.com/blog/my-emacs-config/\\n (defun jc/use-eslint-from-node-modules ()\\n \\\"Set local eslint if available.\\\"\\n (let* ((root (locate-dominating-file\\n (or (buffer-file-name) default-directory)\\n \\\"node_modules\\\"))\\n (eslint (and root\\n (expand-file-name \\\"node_modules/eslint/bin/eslint.js\\\"\\n root))))\\n (when (and eslint (file-executable-p eslint))\\n (setq-local flycheck-javascript-eslint-executable eslint))))\\n \\n (add-hook 'flycheck-mode-hook #'jc/use-eslint-from-node-modules))\\n #+END_SRC\", \"author_fullname\": \"t2_6qm9r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Need help adjusting my current configuration to support flow\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ce4hgb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"3a5e1042-1094-11e7-bb00-0e3b6c7befce\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563346769.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo, at work there is this code base of Javascript written with Flow and I realized that my current configuration won\\u0026#39;t cut it for this typed languaged. One main pain point I have now is that the linter with Typescript goes crazy with the source code in Flow, the other detail I notice is lack of correct font-locking in the buffer (due to the \\u0026quot;syntax errors\\u0026quot; maybe?)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause I\\u0026#39;m still new to flow I don\\u0026#39;t really know where, how and what to change exactly to accommodate Flow (I have a side job where I use typescript linting for a javascript source base so you could I say I still need my current configuration available)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is my configuration:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* javascript\\n**** JSON\\n#+BEGIN_SRC emacs-lisp\\n (use-package json-mode\\n :init\\n (defun jsconfig-default-conf ()\\n (interactive)\\n (yas-insert-snippet))\\n\\n (add-hook \\u0026#39;json-mode-hook\\n \\u0026#39;(lambda () (when (and (eq (buffer-size) 0)\\n (string-match-p \\u0026quot;jsconfig.json\\u0026quot; (buffer-file-name)))\\n (jsconfig-default-conf)))))\\n#+END_SRC\\n**** External dependencies\\n#+BEGIN_SRC sh :results silent\\n npm install -g babel-cli babel-preset-react eslint babel-eslint eslint-plugin-react typescript typescript-language-server --save-dev\\n#+END_SRC\\n#+BEGIN_SRC emacs-lisp\\n (defun shackra-js-install-deps ()\\n \\u0026quot;install these locally\\u0026quot;\\n (interactive)\\n (shell-command \\u0026quot;yarn add eslint babel-eslint typescript eslint-plugin-react --dev\\u0026quot;))\\n#+END_SRC\\n***** eslint configuration\\n#+BEGIN_SRC json :tangle ~/.eslintrc\\n {\\n \\u0026quot;parser\\u0026quot;: \\u0026quot;babel-eslint\\u0026quot;,\\n \\u0026quot;plugins\\u0026quot;: [ \\u0026quot;react\\u0026quot; ],\\n \\u0026quot;env\\u0026quot;: {\\n \\u0026quot;browser\\u0026quot;: true,\\n \\u0026quot;es6\\u0026quot;: true,\\n \\u0026quot;node\\u0026quot;: true\\n },\\n \\u0026quot;ecmaFeatures\\u0026quot;: {\\n \\u0026quot;arrowFunctions\\u0026quot;: true,\\n \\u0026quot;blockBindings\\u0026quot;: true,\\n \\u0026quot;classes\\u0026quot;: true,\\n \\u0026quot;defaultParams\\u0026quot;: true,\\n \\u0026quot;destructuring\\u0026quot;: true,\\n \\u0026quot;forOf\\u0026quot;: true,\\n \\u0026quot;generators\\u0026quot;: true,\\n \\u0026quot;modules\\u0026quot;: true,\\n \\u0026quot;spread\\u0026quot;: true,\\n \\u0026quot;templateStrings\\u0026quot;: true,\\n \\u0026quot;jsx\\u0026quot;: true\\n },\\n \\u0026quot;rules\\u0026quot;: {\\n \\u0026quot;consistent-return\\u0026quot;: [0],\\n \\u0026quot;key-spacing\\u0026quot;: [0],\\n \\u0026quot;quotes\\u0026quot;: [0],\\n \\u0026quot;new-cap\\u0026quot;: [0],\\n \\u0026quot;no-multi-spaces\\u0026quot;: [0],\\n \\u0026quot;no-shadow\\u0026quot;: [0],\\n \\u0026quot;no-unused-vars\\u0026quot;: [1],\\n \\u0026quot;no-use-before-define\\u0026quot;: [2, \\u0026quot;nofunc\\u0026quot;],\\n \\u0026quot;react/jsx-no-undef\\u0026quot;: 1,\\n \\u0026quot;react/jsx-uses-react\\u0026quot;: 1,\\n \\u0026quot;react/jsx-uses-vars\\u0026quot;: 1\\n }\\n }\\n#+END_SRC\\n**** Packages to edit Javascript\\n#+BEGIN_SRC emacs-lisp\\n (setq-default js-indent-level shackra-webdev-indent)\\n\\n (use-package typescript-mode\\n :init\\n (setf typescript-indent-level shackra-webdev-indent)\\n (add-to-list \\u0026#39;auto-mode-alist \\u0026#39;(\\u0026quot;\\\\\\\\.tsx?\\\\\\\\\\u0026#39;\\u0026quot; . (lambda () (typescript-mode) (rjsx-minor-mode))))\\n :config\\n (with-eval-after-load \\u0026#39;lsp-clients\\n (add-hook \\u0026#39;typescript-mode-hook #\\u0026#39;lsp)))\\n\\n (use-package js2-refactor\\n :after (js2-mode)\\n :config\\n (add-hook \\u0026#39;js2-mode-hook #\\u0026#39;js2-refactor-mode)\\n (js2r-add-keybindings-with-prefix \\u0026quot;C-c C-m\\u0026quot;))\\n\\n (use-package xref-js2\\n :after (js2-mode)\\n :init\\n (add-hook \\u0026#39;js2-mode-hook (lambda () (add-hook \\u0026#39;xref-backend-functions #\\u0026#39;xref-js2-xref-backend nil t))))\\n\\n (use-package js2-mode\\n :mode \\u0026quot;\\\\\\\\.js\\\\\\\\\\u0026#39;\\u0026quot;\\n :init\\n (add-hook \\u0026#39;js2-mode-hook #\\u0026#39;js2-imenu-extras-mode)\\n (setf js2-mode-indent-inhibit-undo t)\\n ;; turn off alerts\\n (setf js2-strict-missing-semi-warning nil)\\n (setf js2-dynamic-idle-timer-adjust 2500)\\n :config\\n (with-eval-after-load \\u0026#39;lsp-clients\\n (add-hook \\u0026#39;js2-mode-hook #\\u0026#39;lsp))\\n (with-eval-after-load \\u0026#39;dap-mode\\n (require \\u0026#39;dap-firefox)\\n (dap-firefox-setup)\\n (require \\u0026#39;dap-chrome)\\n (dap-chrome-setup)))\\n\\n (use-package indium ;; https://indium.readthedocs.io/en/latest/setup.html\\n :config\\n (add-hook \\u0026#39;js-mode-hook #\\u0026#39;indium-interaction-mode))\\n\\n ;; Major mode to work with ReactJS\\n (use-package rjsx-mode\\n :magic (\\u0026quot;import.*react\\u0026quot; . rjsx-mode)\\n :init\\n (add-hook \\u0026#39;rjsx-mode-hook (lambda () (flyspell-mode-off)))\\n :config\\n ;; taken from https://emacs.stackexchange.com/a/33544/690\\n (defadvice js-jsx-indent-line (after js-jsx-indent-line-after-hack activate)\\n \\u0026quot;Workaround sgml-mode and follow airbnb component style.\\u0026quot;\\n (save-excursion\\n (beginning-of-line)\\n (if (looking-at-p \\u0026quot;^ +\\\\/?\\u0026gt; *$\\u0026quot;)\\n (delete-char sgml-basic-offset))))\\n (with-eval-after-load \\u0026#39;lsp-clients\\n (add-to-list \\u0026#39;lsp-language-id-configuration \\u0026#39;(rjsx-mode . \\u0026quot;javascript\\u0026quot;))\\n (add-hook \\u0026#39;rjsx-mode-hook #\\u0026#39;lsp)))\\n\\n (with-eval-after-load \\u0026#39;flycheck\\n ;; taken from https://jamiecollinson.com/blog/my-emacs-config/\\n (defun jc/use-eslint-from-node-modules ()\\n \\u0026quot;Set local eslint if available.\\u0026quot;\\n (let* ((root (locate-dominating-file\\n (or (buffer-file-name) default-directory)\\n \\u0026quot;node_modules\\u0026quot;))\\n (eslint (and root\\n (expand-file-name \\u0026quot;node_modules/eslint/bin/eslint.js\\u0026quot;\\n root))))\\n (when (and eslint (file-executable-p eslint))\\n (setq-local flycheck-javascript-eslint-executable eslint))))\\n\\n (add-hook \\u0026#39;flycheck-mode-hook #\\u0026#39;jc/use-eslint-from-node-modules))\\n#+END_SRC\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"secretaria.el, font-man-mode\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce4hgb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"shackra\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/ce4hgb/need_help_adjusting_my_current_configuration_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ce4hgb/need_help_adjusting_my_current_configuration_to/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563317969.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want emacs to check the return of a other program, something like:\\n\\n (setq var-today (shell-command-to-string \\\"date\\\"))\\n\\nIf I want emacs to keep checking it every n seconds, on the background, kind of monitoring this. Is this possible?\", \"author_fullname\": \"t2_3kulgkhb\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make emacs keep checking a system variable?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ce3zo0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563344343.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want emacs to check the return of a other program, something like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq var-today (shell-command-to-string \\u0026quot;date\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf I want emacs to keep checking it every n seconds, on the background, kind of monitoring this. Is this possible?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce3zo0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"LionyxML\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ce3zo0/how_to_make_emacs_keep_checking_a_system_variable/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ce3zo0/how_to_make_emacs_keep_checking_a_system_variable/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563315543.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_77wz1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I forked Emac's AppImage so it's built with module support enabled, if someone needs it and can't easily build it from source\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ce36ew\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563340544.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce36ew\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MrMetalfreak94\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ce36ew/i_forked_emacs_appimage_so_its_built_with_module/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/MissingNoIOI/Emacs.AppImage\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563311744.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am having an issue with the shell in my emacs. It doesn't seem to get all the environment that I set up in my .bashrc. It does usually say something like\\n\\n\\\\`\\\\`\\\\`\\n\\nRestored session: Tue Jul 16 12:47:33 PDT 2019\\n\\n\\\\`\\\\`\\\\`\\n\\nat the top. I don't want it to restore anything. I want it to start fresh from scratch every time. What is is restoring? I have tried to search but all that comes up is stuff about restoring an emacs session after crash. \\n\\n\\nThanks!\", \"author_fullname\": \"t2_229pi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Prevent Emacs shell \\\"Restored session\\\"?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ce2dkf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563336895.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am having an issue with the shell in my emacs. It doesn\\u0026#39;t seem to get all the environment that I set up in my .bashrc. It does usually say something like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERestored session: Tue Jul 16 12:47:33 PDT 2019\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eat the top. I don\\u0026#39;t want it to restore anything. I want it to start fresh from scratch every time. What is is restoring? I have tried to search but all that comes up is stuff about restoring an emacs session after crash. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce2dkf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nroose\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ce2dkf/prevent_emacs_shell_restored_session/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ce2dkf/prevent_emacs_shell_restored_session/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563308095.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I just felt like sharing a great experience I just had with Emacs on Linux.\\n\\nI generally install Emacs from my distribution's repositories as maintaining my init files is enough of a headache, but some recent news about all the good stuff that is making it into the master branch made me realise I could use some of that.\\n\\nSo of I went and installed Emacs from source... \\n\\nall within Emacs itself.\\n\\nFor starters, thankfully Fedora supports installing build dependencies of their packages so that all could be done in a single command (hence the \\\"on Linux\\\" part of the title. \\n\\nOf course I ran those commands from ansi-term in Emacs. The rest was even simpler: a git clone using magit, followed by autogen, configure, make, and make install all using Emacs's built in support for compilation.\\n\\nAnd that was it. Within a few minutes I installed all the build dependencies of a major software project, cloned its code base, and then compiled it all from within Emacs.\", \"author_fullname\": \"t2_8bvaq02\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs on Linux is an amazing environment\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ce1o53\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 101, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 101, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563333669.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just felt like sharing a great experience I just had with Emacs on Linux.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI generally install Emacs from my distribution\\u0026#39;s repositories as maintaining my init files is enough of a headache, but some recent news about all the good stuff that is making it into the master branch made me realise I could use some of that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo of I went and installed Emacs from source... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eall within Emacs itself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor starters, thankfully Fedora supports installing build dependencies of their packages so that all could be done in a single command (hence the \\u0026quot;on Linux\\u0026quot; part of the title. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course I ran those commands from ansi-term in Emacs. The rest was even simpler: a git clone using magit, followed by autogen, configure, make, and make install all using Emacs\\u0026#39;s built in support for compilation.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd that was it. Within a few minutes I installed all the build dependencies of a major software project, cloned its code base, and then compiled it all from within Emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce1o53\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"FOSHavoc\", \"num_crossposts\": 0, \"num_comments\": 25, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ce1o53/emacs_on_linux_is_an_amazing_environment/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ce1o53/emacs_on_linux_is_an_amazing_environment/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563304869.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_hxgwf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs! Editing Multiple Files with grep + wgrep\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"pink\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ce0557\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 30, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"emacs-fu\", \"can_mod_post\": false, \"score\": 30, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563326869.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b862c57e-6b8a-11e5-8194-0e1d3ee68d31\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce0557\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gatoWololo\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ce0557/emacs_editing_multiple_files_with_grep_wgrep/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/bn2fwfs8apa31.gif\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563298069.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've posted a new `bench-multi-lets` macro to the [Emacs Package Developer's Handbook](https://github.com/alphapapa/emacs-package-dev-handbook#bench-multi-lets), which helps with benchmarking code that may behave differently depending on the lexical environment, e.g. global variable settings. Here's a simple example:\\n\\n (bench-multi-lets :times 100000 :ensure-equal t\\n :lets ((\\\"1\\\" ((var \\\"1\\\")))\\n (\\\"12345\\\" ((var \\\"12345\\\")))\\n (\\\"1234567890\\\" ((var \\\"1234567890\\\"))))\\n :forms ((\\\"concat\\\" (concat \\\"VAR: \\\" var))\\n (\\\"format\\\" (format \\\"VAR: %s\\\" var))))\\n\\nWhich produces this table:\\n\\n| Form | x faster than next | Total runtime | # of GCs | Total GC runtime |\\n|--------------------|--------------------|---------------|----------|------------------|\\n| 1: concat | 1.06 | 0.021622 | 0 | 0 |\\n| 12345: concat | 1.12 | 0.022978 | 0 | 0 |\\n| 1234567890: concat | 1.42 | 0.025835 | 0 | 0 |\\n| 1: format | 1.22 | 0.036601 | 0 | 0 |\\n| 12345: format | 1.20 | 0.044604 | 0 | 0 |\\n| 1234567890: format | slowest | 0.053642 | 0 | 0 |\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"bench-multi-lets macro\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdzebb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563323554.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve posted a new \\u003Ccode\\u003Ebench-multi-lets\\u003C/code\\u003E macro to the \\u003Ca href=\\\"https://github.com/alphapapa/emacs-package-dev-handbook#bench-multi-lets\\\"\\u003EEmacs Package Developer\\u0026#39;s Handbook\\u003C/a\\u003E, which helps with benchmarking code that may behave differently depending on the lexical environment, e.g. global variable settings. Here\\u0026#39;s a simple example:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(bench-multi-lets :times 100000 :ensure-equal t\\n :lets ((\\u0026quot;1\\u0026quot; ((var \\u0026quot;1\\u0026quot;)))\\n (\\u0026quot;12345\\u0026quot; ((var \\u0026quot;12345\\u0026quot;)))\\n (\\u0026quot;1234567890\\u0026quot; ((var \\u0026quot;1234567890\\u0026quot;))))\\n :forms ((\\u0026quot;concat\\u0026quot; (concat \\u0026quot;VAR: \\u0026quot; var))\\n (\\u0026quot;format\\u0026quot; (format \\u0026quot;VAR: %s\\u0026quot; var))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhich produces this table:\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EForm\\u003C/th\\u003E\\n\\u003Cth\\u003Ex faster than next\\u003C/th\\u003E\\n\\u003Cth\\u003ETotal runtime\\u003C/th\\u003E\\n\\u003Cth\\u003E# of GCs\\u003C/th\\u003E\\n\\u003Cth\\u003ETotal GC runtime\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E1: concat\\u003C/td\\u003E\\n\\u003Ctd\\u003E1.06\\u003C/td\\u003E\\n\\u003Ctd\\u003E0.021622\\u003C/td\\u003E\\n\\u003Ctd\\u003E0\\u003C/td\\u003E\\n\\u003Ctd\\u003E0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E12345: concat\\u003C/td\\u003E\\n\\u003Ctd\\u003E1.12\\u003C/td\\u003E\\n\\u003Ctd\\u003E0.022978\\u003C/td\\u003E\\n\\u003Ctd\\u003E0\\u003C/td\\u003E\\n\\u003Ctd\\u003E0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E1234567890: concat\\u003C/td\\u003E\\n\\u003Ctd\\u003E1.42\\u003C/td\\u003E\\n\\u003Ctd\\u003E0.025835\\u003C/td\\u003E\\n\\u003Ctd\\u003E0\\u003C/td\\u003E\\n\\u003Ctd\\u003E0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E1: format\\u003C/td\\u003E\\n\\u003Ctd\\u003E1.22\\u003C/td\\u003E\\n\\u003Ctd\\u003E0.036601\\u003C/td\\u003E\\n\\u003Ctd\\u003E0\\u003C/td\\u003E\\n\\u003Ctd\\u003E0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E12345: format\\u003C/td\\u003E\\n\\u003Ctd\\u003E1.20\\u003C/td\\u003E\\n\\u003Ctd\\u003E0.044604\\u003C/td\\u003E\\n\\u003Ctd\\u003E0\\u003C/td\\u003E\\n\\u003Ctd\\u003E0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E1234567890: format\\u003C/td\\u003E\\n\\u003Ctd\\u003Eslowest\\u003C/td\\u003E\\n\\u003Ctd\\u003E0.053642\\u003C/td\\u003E\\n\\u003Ctd\\u003E0\\u003C/td\\u003E\\n\\u003Ctd\\u003E0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdzebb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdzebb/benchmultilets_macro/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdzebb/benchmultilets_macro/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563294754.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to add a hook for when I visit a new temporary buffer that matches the buffer name to determine what mode to activate. For instance, when I visit a new buffer named `*md*`, I want Emacs to automatically run `markdown-mode`. I've looked through the manual and index of variables, but haven't find the right hook. \\n\\nCan anybody point me to some documentation for what hooks Emacs runs when a temp buffer is interactively opened?\", \"author_fullname\": \"t2_fo4w6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Temp buffer hooks: How to change mode based on temp buffer name?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdz2ct\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563322089.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to add a hook for when I visit a new temporary buffer that matches the buffer name to determine what mode to activate. For instance, when I visit a new buffer named \\u003Ccode\\u003E*md*\\u003C/code\\u003E, I want Emacs to automatically run \\u003Ccode\\u003Emarkdown-mode\\u003C/code\\u003E. I\\u0026#39;ve looked through the manual and index of variables, but haven\\u0026#39;t find the right hook. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECan anybody point me to some documentation for what hooks Emacs runs when a temp buffer is interactively opened?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdz2ct\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aftermeasure\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdz2ct/temp_buffer_hooks_how_to_change_mode_based_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdz2ct/temp_buffer_hooks_how_to_change_mode_based_on/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563293289.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"here is how my summary-buffer in gnus looks: \\n\\n[https://imgur.com/a/DVAntbE](https://imgur.com/a/DVAntbE)\\n\\nhere is my \\\\~/.gnus configuration: [https://paste.debian.net/1091776/](https://paste.debian.net/1091776/)\\n\\nwhat can i do to get rid of the \\\"\\\\\\\\356\\\\\\\\244\\\\\\\\226\\\" on every line? thanks!!\", \"author_fullname\": \"t2_bemys\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"gnus summary buffer problem\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdyre9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563320727.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehere is how my summary-buffer in gnus looks: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/DVAntbE\\\"\\u003Ehttps://imgur.com/a/DVAntbE\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ehere is my ~/.gnus configuration: \\u003Ca href=\\\"https://paste.debian.net/1091776/\\\"\\u003Ehttps://paste.debian.net/1091776/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ewhat can i do to get rid of the \\u0026quot;\\\\356\\\\244\\\\226\\u0026quot; on every line? thanks!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdyre9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jimerickso\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdyre9/gnus_summary_buffer_problem/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdyre9/gnus_summary_buffer_problem/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563291927.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Aside from M-v and C-v what functions/tools do you use to scroll up and down respectively? I would like to have something similar like C-d and C-u in vim but for Emacs which is why I currently use\\n\\n\\u0026#x200B;\\n\\n`(global-set-key (kbd \\\"s-n\\\") \\\"\\\\C-u25\\\\C-v\\\")`\\n\\n`(global-set-key (kbd \\\"s-p\\\") \\\"\\\\C-u25\\\\M-v\\\")`\\n\\n\\u0026#x200B;\\n\\nbut that does not move point with the scrolling and does not feel right altogether.\", \"author_fullname\": \"t2_3p3qqcr1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"scrolling in Emacs with keys\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdyfi0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563319182.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAside from M-v and C-v what functions/tools do you use to scroll up and down respectively? I would like to have something similar like C-d and C-u in vim but for Emacs which is why I currently use\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(global-set-key (kbd \\u0026quot;s-n\\u0026quot;) \\u0026quot;\\\\C-u25\\\\C-v\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(global-set-key (kbd \\u0026quot;s-p\\u0026quot;) \\u0026quot;\\\\C-u25\\\\M-v\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut that does not move point with the scrolling and does not feel right altogether.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdyfi0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sewing31\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdyfi0/scrolling_in_emacs_with_keys/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdyfi0/scrolling_in_emacs_with_keys/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563290382.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"#### What have I? \\n\\nEmacs 26.2 (installed using brew cask, as seems to be the most recent recommendation) \\n\\n\\u0026#x200B;\\n\\n#### Wants? \\n\\n\\\\- Quick editor launch \\n\\n\\\\- GUI based \\n\\n\\\\- One editor, multiple frames / buffers\\n\\n\\u0026#x200B;\\n\\n#### Example workflows\\n\\n1. Login and open a file\\n\\n* Login - launchd starts the emacs daemon\\n* open a file using emacsclient - it should open a new GUI frame with this file\\n* also my settings (init.el) should have been applied\\n* open another file using emacsclient - it should open a that file in the above GUI instance\\n\\n\\u0026#x200B;\\n\\n2. Login and open editor\\n\\n* Login - launchd starts the emacs daemon\\n* open editor without any file argument - it should open a new GUI frame at scratch buffer or previous session, if desktop saving is enabled\\n* also my settings (init.el) should have been applied\\n* open another file using emacs client - it should open a that file in the above GUI instance\\n\\n\\u0026#x200B;\\n\\n#### Issue\\n\\n\\\\- In workflow 1) step 3, emacsclient is not applying my settings (init.el) and in step 4, it is opening a new window, instead of creating a new frame in existing window\\n\\n\\u0026#x200B;\\n\\nAny help much appreciated. Thank you :)\\n\\nEdit: Formatting\", \"author_fullname\": \"t2_g6b4z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Establishing a reasonable emacs workflow on MacOS\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdxx7p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563299931.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563316905.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch4\\u003EWhat have I?\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003EEmacs 26.2 (installed using brew cask, as seems to be the most recent recommendation) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ch4\\u003EWants?\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E- Quick editor launch \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- GUI based \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- One editor, multiple frames / buffers\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ch4\\u003EExample workflows\\u003C/h4\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ELogin and open a file\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ELogin - launchd starts the emacs daemon\\u003C/li\\u003E\\n\\u003Cli\\u003Eopen a file using emacsclient - it should open a new GUI frame with this file\\u003C/li\\u003E\\n\\u003Cli\\u003Ealso my settings (init.el) should have been applied\\u003C/li\\u003E\\n\\u003Cli\\u003Eopen another file using emacsclient - it should open a that file in the above GUI instance\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ELogin and open editor\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ELogin - launchd starts the emacs daemon\\u003C/li\\u003E\\n\\u003Cli\\u003Eopen editor without any file argument - it should open a new GUI frame at scratch buffer or previous session, if desktop saving is enabled\\u003C/li\\u003E\\n\\u003Cli\\u003Ealso my settings (init.el) should have been applied\\u003C/li\\u003E\\n\\u003Cli\\u003Eopen another file using emacs client - it should open a that file in the above GUI instance\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ch4\\u003EIssue\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E- In workflow 1) step 3, emacsclient is not applying my settings (init.el) and in step 4, it is opening a new window, instead of creating a new frame in existing window\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help much appreciated. Thank you :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: Formatting\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdxx7p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bagofthoughts\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdxx7p/establishing_a_reasonable_emacs_workflow_on_macos/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdxx7p/establishing_a_reasonable_emacs_workflow_on_macos/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563288105.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"This post is based on the fact that I struggle with fully commit to using org-agenda for managing my daily activities. I have tried multiple times to convert but some problems always yield me to go back to my slightly more unstructured habits. In that regard I have a few questions for people who use it extensively, and hopefully can help me fill in some missing gaps.\\nCurrently I tend to use my digital calendar only for scheduling both meetings and tasks that has to be accomplished.\\n\\n\\n- How do you deal with the two-source problem of having a digital calendar (e.g. ) that represent your schedule partially, with your scheduled tasks in org-agenda? I find it difficult to manage these two systems, as they both can try to impact my schedule, so it induces a lot of over head with using both.\\n\\n- Cross-device usage: Which apps and ways of syncing do you use to keep your agenda files shared across devices? (I own an iOS device)\\n\\n- File structure: What are the advantages of having multiple files vs. having a single file? Is there great arguements for keeping history of completed todos?\\n\\nThanks for you input, hopefully it can help me to fully commit to org-agenda for scheduling my life (which is a great asset, being a PhD student).\", \"author_fullname\": \"t2_9b2fz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Trouble with committing to org-agenda\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdx6kl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563313228.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis post is based on the fact that I struggle with fully commit to using org-agenda for managing my daily activities. I have tried multiple times to convert but some problems always yield me to go back to my slightly more unstructured habits. In that regard I have a few questions for people who use it extensively, and hopefully can help me fill in some missing gaps.\\nCurrently I tend to use my digital calendar only for scheduling both meetings and tasks that has to be accomplished.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHow do you deal with the two-source problem of having a digital calendar (e.g. ) that represent your schedule partially, with your scheduled tasks in org-agenda? I find it difficult to manage these two systems, as they both can try to impact my schedule, so it induces a lot of over head with using both.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECross-device usage: Which apps and ways of syncing do you use to keep your agenda files shared across devices? (I own an iOS device)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFile structure: What are the advantages of having multiple files vs. having a single file? Is there great arguements for keeping history of completed todos?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThanks for you input, hopefully it can help me to fully commit to org-agenda for scheduling my life (which is a great asset, being a PhD student).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdx6kl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KozutheGosu\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdx6kl/trouble_with_committing_to_orgagenda/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdx6kl/trouble_with_committing_to_orgagenda/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563284428.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"There are times when I go to enter text in the document and jump to some random place because I am in normal mode. \\n\\nIs there a command to get back to last position, when this situation occurs.\", \"author_fullname\": \"t2_euy5b\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"evil-mode - jump back to last position.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdwmua\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563310327.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere are times when I go to enter text in the document and jump to some random place because I am in normal mode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a command to get back to last position, when this situation occurs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdwmua\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dericbytes\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdwmua/evilmode_jump_back_to_last_position/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdwmua/evilmode_jump_back_to_last_position/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563281527.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"mu4e now has support for responding to calendar invitations (in master).\\n\\n\\u0026#x200B;\\n\\nThanks to Christophe Troestler who implemented this feature and to Dirk-Jan C. Binnema for reviewing the pull request.\\n\\n\\u0026#x200B;\\n\\nFor more, see the [feature request](https://github.com/djcb/mu/issues/994) and the [pull request](https://github.com/djcb/mu/pull/1403)\", \"author_fullname\": \"t2_14s1eh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"mu4e: ical support now available in master\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdw3eu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 46, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 46, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563307207.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emu4e now has support for responding to calendar invitations (in master).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks to Christophe Troestler who implemented this feature and to Dirk-Jan C. Binnema for reviewing the pull request.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more, see the \\u003Ca href=\\\"https://github.com/djcb/mu/issues/994\\\"\\u003Efeature request\\u003C/a\\u003E and the \\u003Ca href=\\\"https://github.com/djcb/mu/pull/1403\\\"\\u003Epull request\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdw3eu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"peterwvj\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdw3eu/mu4e_ical_support_now_available_in_master/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563278407.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've been using the normal brew install emacs (or emacs-plus) for a long time and had just found out Railwaycat's Emacs-macport. And **dayummmmmnnnn**, pixel-wise scrolling with trackpad and the slick native-looking scroll bar does give my Emacs a new look. Also selecting region with the mouse and resizing panes render **sooooo** smoothly. I wonder why not that many mac people are using this port, **is there some downsides that will backfire at me later**?\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Opinions on Railwaycat's Emacs-MacPort?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cduuxb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563298897.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been using the normal brew install emacs (or emacs-plus) for a long time and had just found out Railwaycat\\u0026#39;s Emacs-macport. And \\u003Cstrong\\u003Edayummmmmnnnn\\u003C/strong\\u003E, pixel-wise scrolling with trackpad and the slick native-looking scroll bar does give my Emacs a new look. Also selecting region with the mouse and resizing panes render \\u003Cstrong\\u003Esooooo\\u003C/strong\\u003E smoothly. I wonder why not that many mac people are using this port, \\u003Cstrong\\u003Eis there some downsides that will backfire at me later\\u003C/strong\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"yay-evil\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cduuxb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 24, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/cduuxb/opinions_on_railwaycats_emacsmacport/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cduuxb/opinions_on_railwaycats_emacsmacport/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563270097.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As in the previous thread don't feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly tips/trick/etc/ thread\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdu7cd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563293660.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs in the previous thread don\\u0026#39;t feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdu7cd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 24, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdu7cd/weekly_tipstricketc_thread/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": true, \"url\": \"https://www.reddit.com/r/emacs/comments/cdu7cd/weekly_tipstricketc_thread/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563264860.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have the following defined for editing **.tsx** files:\\n\\n (define-derived-mode web-tsx-mode web-mode \\\"Web-TSX\\\")\\n (add-to-list 'auto-mode-alist '(\\\"\\\\\\\\.tsx$\\\" . web-tsx-mode))\\n (add-hook 'web-tsx-mode-hook 'tide-setup)\\n (with-eval-after-load 'flycheck\\n (flycheck-add-mode 'tsx-tide 'web-tsx-mode))\\n (define-key web-tsx-mode-map (kbd \\\"s-b\\\") 'tide-jump-to-definition)\\n (define-key web-tsx-mode-map (kbd \\\"s-[\\\") 'tide-jump-back)\\n\\n\\u0026#x200B;\\n\\nEmacs tells me that **tsx-tide is not a valid syntax checker**, which is weird because if **tide** hasn't loaded up by then, how would the following two define-keys work? Strangely enough, tide-jump-to-definition and tide-jump-back work perfectly fine.\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cannot load tsx-tide syntax checker\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdtbkz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563287170.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have the following defined for editing \\u003Cstrong\\u003E.tsx\\u003C/strong\\u003E files:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E (define-derived-mode web-tsx-mode web-mode \\u0026quot;Web-TSX\\u0026quot;)\\n (add-to-list \\u0026#39;auto-mode-alist \\u0026#39;(\\u0026quot;\\\\\\\\.tsx$\\u0026quot; . web-tsx-mode))\\n (add-hook \\u0026#39;web-tsx-mode-hook \\u0026#39;tide-setup)\\n (with-eval-after-load \\u0026#39;flycheck\\n (flycheck-add-mode \\u0026#39;tsx-tide \\u0026#39;web-tsx-mode))\\n (define-key web-tsx-mode-map (kbd \\u0026quot;s-b\\u0026quot;) \\u0026#39;tide-jump-to-definition)\\n (define-key web-tsx-mode-map (kbd \\u0026quot;s-[\\u0026quot;) \\u0026#39;tide-jump-back)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmacs tells me that \\u003Cstrong\\u003Etsx-tide is not a valid syntax checker\\u003C/strong\\u003E, which is weird because if \\u003Cstrong\\u003Etide\\u003C/strong\\u003E hasn\\u0026#39;t loaded up by then, how would the following two define-keys work? Strangely enough, tide-jump-to-definition and tide-jump-back work perfectly fine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"yay-evil\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdtbkz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/cdtbkz/cannot_load_tsxtide_syntax_checker/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdtbkz/cannot_load_tsxtide_syntax_checker/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563258370.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When I try to indent a region using `C-M \\\\` the indenting is dependent on the language, but what I want is to indent a block of text by the required number of characters regardless of the language's syntax rules or formatting conventions.\\n\\nWhich command does that?\\n\\nWhen I look at the code it seems I am falling foul of one of the options 1, 2, 3 below, concerning `fill-prefix`, `indent-region-function` and `indent-according-to-mode`.\\n\\nWhat kind of code would I need to perform a `hard` indent, as in shift everything left or right by `n` characters regardless of language mode or the other options.\\n\\n \\n indent-region is an interactive compiled Lisp function in \\u2018indent.el\\u2019.\\n \\n It is bound to C-M-\\\\.\\n \\n (indent-region START END \\u0026optional COLUMN)\\n \\n Indent each nonblank line in the region.\\n A numeric prefix argument specifies a column: indent each line to that column.\\n \\n With no prefix argument, the command chooses one of these methods and\\n indents all the lines with it:\\n \\n 1) If \\u2018fill-prefix\\u2019 is non-nil, insert \\u2018fill-prefix\\u2019 at the\\n beginning of each line in the region that does not already begin\\n with it.\\n 2) If \\u2018indent-region-function\\u2019 is non-nil, call that function\\n to indent the region.\\n 3) Indent each line via \\u2018indent-according-to-mode\\u2019.\\n \\n Called from a program, START and END specify the region to indent.\\n If the third argument COLUMN is an integer, it specifies the\\n column to indent to; if it is nil, use one of the three methods above.\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What language independent command is used for indentation?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdsoyk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563282693.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I try to indent a region using \\u003Ccode\\u003EC-M \\\\\\u003C/code\\u003E the indenting is dependent on the language, but what I want is to indent a block of text by the required number of characters regardless of the language\\u0026#39;s syntax rules or formatting conventions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhich command does that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I look at the code it seems I am falling foul of one of the options 1, 2, 3 below, concerning \\u003Ccode\\u003Efill-prefix\\u003C/code\\u003E, \\u003Ccode\\u003Eindent-region-function\\u003C/code\\u003E and \\u003Ccode\\u003Eindent-according-to-mode\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat kind of code would I need to perform a \\u003Ccode\\u003Ehard\\u003C/code\\u003E indent, as in shift everything left or right by \\u003Ccode\\u003En\\u003C/code\\u003E characters regardless of language mode or the other options.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eindent-region is an interactive compiled Lisp function in \\u2018indent.el\\u2019.\\n\\nIt is bound to C-M-\\\\.\\n\\n(indent-region START END \\u0026amp;optional COLUMN)\\n\\nIndent each nonblank line in the region.\\nA numeric prefix argument specifies a column: indent each line to that column.\\n\\nWith no prefix argument, the command chooses one of these methods and\\nindents all the lines with it:\\n\\n 1) If \\u2018fill-prefix\\u2019 is non-nil, insert \\u2018fill-prefix\\u2019 at the\\n beginning of each line in the region that does not already begin\\n with it.\\n 2) If \\u2018indent-region-function\\u2019 is non-nil, call that function\\n to indent the region.\\n 3) Indent each line via \\u2018indent-according-to-mode\\u2019.\\n\\nCalled from a program, START and END specify the region to indent.\\nIf the third argument COLUMN is an integer, it specifies the\\ncolumn to indent to; if it is nil, use one of the three methods above.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdsoyk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdsoyk/what_language_independent_command_is_used_for/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdsoyk/what_language_independent_command_is_used_for/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563253893.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want a program that I can run and if emacs is already running then it uses that, but if not, it starts up an emacs instance in the terminal window.\\n\\nIt looks like this should work: `emacsclient -t -a \\\"emacs -nw\\\"` but it just throws an error saying `emacsclient: error executing alternate editor \\\"emacs -nw\\\"` but I also tried `emacsclient -ta ''` but that doesn't use the emacs that's already running; it starts a new one. HALP?!\\n\\nEDIT:\\nOkay, I'm going to try to explain what is going on, what I want to do, and what it's doing instead.\\n\\nFor right now, let's say I just want to get used to using emacs -nw instead of the GUI. I may want to try learning the GUI later on, though, so I really don't want to recompile emacs without gui support.\\n\\nLets say i have two terminal emulators open. (Left and right) let's say there's a 50/50 chance I have emacs open in the left one. I would like to be able to execute something (say, emacsclient or some kind of bash script; let's call it [SCRIPT] for short) in the right one. If emacs is running in the left terminal, the [SCRIPT] should open my file in a buffer in the left emacs window, and return control of the right terminal to bash. If emacs is not running in the left terminal, then the [SCRIPT] (running in the right terminal) should start up emacs where it is and edit the file there. \\n\\nThat's what I want to happen. Here's what is actually happening:\\n\\nIf I have emacs open on the left and on the right I run `emacsclient -t -a \\\"emacs -nw\\\"` and i've forgotten to start the server on the left, it throws the error I described before. (If emacs isn't open on the left, it throws the same error.) If I've started the server on the left, the emacsclient invocation on the right starts a buffer on the right terminal instead of the left one.\\n\\nthe second version, `emacsclient -ta ''` seems not to work either. It also creates a buffer on the right instead of using the running emacs instance on the left, but at least it works in the case where I don't have emacs open already (or have forgotten to start the server, but I assume I can fix that by adding the elispy equivalent of M-x server-start to my .emacs file)\", \"author_fullname\": \"t2_78zpa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"N00b here; How do I use `emacs -nw` as an argument to emacsclient's -a option?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cds3ux\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563326530.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563278812.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want a program that I can run and if emacs is already running then it uses that, but if not, it starts up an emacs instance in the terminal window.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt looks like this should work: \\u003Ccode\\u003Eemacsclient -t -a \\u0026quot;emacs -nw\\u0026quot;\\u003C/code\\u003E but it just throws an error saying \\u003Ccode\\u003Eemacsclient: error executing alternate editor \\u0026quot;emacs -nw\\u0026quot;\\u003C/code\\u003E but I also tried \\u003Ccode\\u003Eemacsclient -ta \\u0026#39;\\u0026#39;\\u003C/code\\u003E but that doesn\\u0026#39;t use the emacs that\\u0026#39;s already running; it starts a new one. HALP?!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT:\\nOkay, I\\u0026#39;m going to try to explain what is going on, what I want to do, and what it\\u0026#39;s doing instead.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor right now, let\\u0026#39;s say I just want to get used to using emacs -nw instead of the GUI. I may want to try learning the GUI later on, though, so I really don\\u0026#39;t want to recompile emacs without gui support.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELets say i have two terminal emulators open. (Left and right) let\\u0026#39;s say there\\u0026#39;s a 50/50 chance I have emacs open in the left one. I would like to be able to execute something (say, emacsclient or some kind of bash script; let\\u0026#39;s call it [SCRIPT] for short) in the right one. If emacs is running in the left terminal, the [SCRIPT] should open my file in a buffer in the left emacs window, and return control of the right terminal to bash. If emacs is not running in the left terminal, then the [SCRIPT] (running in the right terminal) should start up emacs where it is and edit the file there. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s what I want to happen. Here\\u0026#39;s what is actually happening:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I have emacs open on the left and on the right I run \\u003Ccode\\u003Eemacsclient -t -a \\u0026quot;emacs -nw\\u0026quot;\\u003C/code\\u003E and i\\u0026#39;ve forgotten to start the server on the left, it throws the error I described before. (If emacs isn\\u0026#39;t open on the left, it throws the same error.) If I\\u0026#39;ve started the server on the left, the emacsclient invocation on the right starts a buffer on the right terminal instead of the left one.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethe second version, \\u003Ccode\\u003Eemacsclient -ta \\u0026#39;\\u0026#39;\\u003C/code\\u003E seems not to work either. It also creates a buffer on the right instead of using the running emacs instance on the left, but at least it works in the case where I don\\u0026#39;t have emacs open already (or have forgotten to start the server, but I assume I can fix that by adding the elispy equivalent of M-x server-start to my .emacs file)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cds3ux\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cogburnd02\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cds3ux/n00b_here_how_do_i_use_emacs_nw_as_an_argument_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cds3ux/n00b_here_how_do_i_use_emacs_nw_as_an_argument_to/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563250012.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have always done `ctrl+x ctrl+f` in `Helm` to find files, and then once a directory was highlighted I could press the right arrow key to enter it right away and the left arrow key to go back a directory.\\n\\nFor some reason, now it just gives me an `End of buffer` message. I don't think I changed anything in my config and I'm not seeing any errors...\\n\\nDoes anyone know what's going with this?\\n\\nThanks\", \"author_fullname\": \"t2_3k3yu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why is left/right arrows not working for Helm all of a sudden?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdrbj3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563274108.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have always done \\u003Ccode\\u003Ectrl+x ctrl+f\\u003C/code\\u003E in \\u003Ccode\\u003EHelm\\u003C/code\\u003E to find files, and then once a directory was highlighted I could press the right arrow key to enter it right away and the left arrow key to go back a directory.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor some reason, now it just gives me an \\u003Ccode\\u003EEnd of buffer\\u003C/code\\u003E message. I don\\u0026#39;t think I changed anything in my config and I\\u0026#39;m not seeing any errors...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone know what\\u0026#39;s going with this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdrbj3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aesamattki\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdrbj3/why_is_leftright_arrows_not_working_for_helm_all/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdrbj3/why_is_leftright_arrows_not_working_for_helm_all/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563245308.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi Guys,\\n\\n\\u0026#x200B;\\n\\nI use Counsel-find-file. When I am in tramp mode and I want to find a file in local, I should be using `~` or `//` to get back to local.\\n\\n\\u0026#x200B;\\n\\nreference - [https://github.com/abo-abo/swiper/issues/1377](https://github.com/abo-abo/swiper/issues/1377)\\n\\n\\u0026#x200B;\\n\\nIn my case if I use `~` it's taking me to *home directory of remote* and when I use `//` it's taking me to *root directory of remote*.\\n\\n\\u0026#x200B;\\n\\nHow do I fix it.\\n\\n\\u0026#x200B;\\n\\nPlease note- `C-x C-r` works file to navigate recent file , which I am using as a work around to navigate to local file system.\", \"author_fullname\": \"t2_3vvrvw1q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Help] Counsel-find-file does not go to local from tramp mode after pressing `~` or `//`\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdnghc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563225121.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563253517.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi Guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use Counsel-find-file. When I am in tramp mode and I want to find a file in local, I should be using \\u003Ccode\\u003E~\\u003C/code\\u003E or \\u003Ccode\\u003E//\\u003C/code\\u003E to get back to local.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ereference - \\u003Ca href=\\\"https://github.com/abo-abo/swiper/issues/1377\\\"\\u003Ehttps://github.com/abo-abo/swiper/issues/1377\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my case if I use \\u003Ccode\\u003E~\\u003C/code\\u003E it\\u0026#39;s taking me to \\u003Cem\\u003Ehome directory of remote\\u003C/em\\u003E and when I use \\u003Ccode\\u003E//\\u003C/code\\u003E it\\u0026#39;s taking me to \\u003Cem\\u003Eroot directory of remote\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I fix it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease note- \\u003Ccode\\u003EC-x C-r\\u003C/code\\u003E works file to navigate recent file , which I am using as a work around to navigate to local file system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdnghc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ckoneru\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdnghc/help_counselfindfile_does_not_go_to_local_from/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdnghc/help_counselfindfile_does_not_go_to_local_from/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563224717.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm sure this is some really noob mistake, but I can't get this command to work in Emacs tutorial. I'm guessing it opens a new window? Everytime I try it I just get C-u 1, it erases the 0.\", \"author_fullname\": \"t2_ebm3e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"C-u 0 C-1\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdmndi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563249783.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m sure this is some really noob mistake, but I can\\u0026#39;t get this command to work in Emacs tutorial. I\\u0026#39;m guessing it opens a new window? Everytime I try it I just get C-u 1, it erases the 0.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdmndi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"greylaw89\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdmndi/cu_0_c1/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdmndi/cu_0_c1/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563220983.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So I am fairly new to emacs and have been trying to create my own projects. I made this function that basically just inserts a specific chunk of code to format and start off with depending if it's a .cpp, .h, or main.cpp file. The only inconvenience is that I would like for it to run automatically on C++ files. I thought that my function could serve as a hook that could be added to the c++-mode like so `(add-hook 'cpp-format 'c++-mode)` and when placed in the init.el file it would run automatically on every C++ file that I opened but it hasn't worked. Any help would be greatly appreciated and thank you in advance.\\n\\n\\u0026#x200B;\\n\\nBelow is the .el file that contains the function implemented:\\n\\n`;;; cppformat.el --- Pastes the basic format for .cpp, .h, and main.cpp files`\\n\\n\\u0026#x200B;\\n\\n`;;; Commentary:`\\n\\n\\u0026#x200B;\\n\\n`;;; Code:`\\n\\n`(defun paste-main ()`\\n\\n `\\\"Paste the main format.\\\"`\\n\\n `(goto-char (point-min))`\\n\\n `(insert \\\"#include \\u003Ciostream\\u003E\\\")`\\n\\n `(insert \\\"\\\\n\\\")`\\n\\n `(insert \\\"\\\\n\\\")`\\n\\n `(insert \\\"int main(/*int argc, char **argv*/){\\\")`\\n\\n `(insert \\\"\\\\n\\\")`\\n\\n `(insert \\\" \\treturn 0;\\\")`\\n\\n `(insert \\\"\\\\n\\\")`\\n\\n `(insert \\\"\\\\n\\\")`\\n\\n `(insert \\\"}\\\")`\\n\\n `)`\\n\\n\\u0026#x200B;\\n\\n`(defun paste-cpp ()`\\n\\n `\\\"Paste the .cpp format.\\\"`\\n\\n `(goto-char (point-min))`\\n\\n `(insert(concat \\\"#include \\\" (concat \\\"\\\\\\\"\\\" (concat (replace-regexp-in-string \\\".cpp\\\" \\\".h\\\" (buffer-name)) \\\"\\\\\\\"\\\"))))`\\n\\n `)`\\n\\n\\u0026#x200B;\\n\\n`(defun paste-h()`\\n\\n `\\\"Paste the .h format.\\\"`\\n\\n `(goto-char (point-min))`\\n\\n `(insert (concat \\\"#ifndef \\\" (concat \\\"__\\\" (concat (upcase (replace-regexp-in-string \\\".h\\\" \\\"_H\\\" (buffer-name))) \\\"__\\\"))))`\\n\\n `(insert \\\"\\\\n\\\")`\\n\\n `(insert (concat \\\"#define \\\" (concat \\\"__\\\" (concat (upcase (replace-regexp-in-string \\\".h\\\" \\\"_H\\\" (buffer-name))) \\\"__\\\"))))`\\n\\n `(insert \\\"\\\\n\\\")`\\n\\n `(insert \\\"\\\\n\\\")`\\n\\n `(insert \\\"#endif\\\"))`\\n\\n\\u0026#x200B;\\n\\n`(defun cpp-format ()`\\n\\n `(interactive)`\\n\\n `(cond ((string-equal \\\"main.cpp\\\" (buffer-name)) (paste-main))`\\n\\n\\t `((string-equal \\\"cpp\\\" (file-name-extension (buffer-name))) (paste-cpp))`\\n\\n\\t `((string-equal \\\"h\\\" (file-name-extension (buffer-name))) (paste-h))`\\n\\n\\t `))`\\n\\n\\u0026#x200B;\\n\\n`(provide 'cppformat)`\\n\\n`;;; cppformat.el ends here`\", \"author_fullname\": \"t2_1s1qxoj8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to run automatically a personally made function once on a .cpp file when it is opened?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdm7sr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563247910.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I am fairly new to emacs and have been trying to create my own projects. I made this function that basically just inserts a specific chunk of code to format and start off with depending if it\\u0026#39;s a .cpp, .h, or main.cpp file. The only inconvenience is that I would like for it to run automatically on C++ files. I thought that my function could serve as a hook that could be added to the c++-mode like so \\u003Ccode\\u003E(add-hook \\u0026#39;cpp-format \\u0026#39;c++-mode)\\u003C/code\\u003E and when placed in the init.el file it would run automatically on every C++ file that I opened but it hasn\\u0026#39;t worked. Any help would be greatly appreciated and thank you in advance.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBelow is the .el file that contains the function implemented:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E;;; cppformat.el --- Pastes the basic format for .cpp, .h, and main.cpp files\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E;;; Commentary:\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E;;; Code:\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(defun paste-main ()\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026quot;Paste the main format.\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(goto-char (point-min))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert \\u0026quot;#include \\u0026lt;iostream\\u0026gt;\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert \\u0026quot;\\\\n\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert \\u0026quot;\\\\n\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert \\u0026quot;int main(/*int argc, char **argv*/){\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert \\u0026quot;\\\\n\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert \\u0026quot; return 0;\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert \\u0026quot;\\\\n\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert \\u0026quot;\\\\n\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert \\u0026quot;}\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(defun paste-cpp ()\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026quot;Paste the .cpp format.\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(goto-char (point-min))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert(concat \\u0026quot;#include \\u0026quot; (concat \\u0026quot;\\\\\\u0026quot;\\u0026quot; (concat (replace-regexp-in-string \\u0026quot;.cpp\\u0026quot; \\u0026quot;.h\\u0026quot; (buffer-name)) \\u0026quot;\\\\\\u0026quot;\\u0026quot;))))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(defun paste-h()\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026quot;Paste the .h format.\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(goto-char (point-min))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert (concat \\u0026quot;#ifndef \\u0026quot; (concat \\u0026quot;__\\u0026quot; (concat (upcase (replace-regexp-in-string \\u0026quot;.h\\u0026quot; \\u0026quot;_H\\u0026quot; (buffer-name))) \\u0026quot;__\\u0026quot;))))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert \\u0026quot;\\\\n\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert (concat \\u0026quot;#define \\u0026quot; (concat \\u0026quot;__\\u0026quot; (concat (upcase (replace-regexp-in-string \\u0026quot;.h\\u0026quot; \\u0026quot;_H\\u0026quot; (buffer-name))) \\u0026quot;__\\u0026quot;))))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert \\u0026quot;\\\\n\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert \\u0026quot;\\\\n\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(insert \\u0026quot;#endif\\u0026quot;))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(defun cpp-format ()\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(interactive)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(cond ((string-equal \\u0026quot;main.cpp\\u0026quot; (buffer-name)) (paste-main))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E `((string-equal \\u0026quot;cpp\\u0026quot; (file-name-extension (buffer-name))) (paste-cpp))`\\n\\n `((string-equal \\u0026quot;h\\u0026quot; (file-name-extension (buffer-name))) (paste-h))`\\n\\n `))`\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(provide \\u0026#39;cppformat)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E;;; cppformat.el ends here\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdm7sr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GhostOfLongClaw\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdm7sr/how_to_run_automatically_a_personally_made/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdm7sr/how_to_run_automatically_a_personally_made/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563219110.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Also, is there any missing from this list?\", \"author_fullname\": \"t2_xmxko\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Which of these are mutually exclusive or redundant: Semantic, Cscope, GNU Global, ycmd, Language Server Protocol, Irony-Mode and RTags?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdm5oo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563247647.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAlso, is there any missing from this list?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdm5oo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Xorous\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdm5oo/which_of_these_are_mutually_exclusive_or/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdm5oo/which_of_these_are_mutually_exclusive_or/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563218847.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello fellow emacs lispers! Have you ever worked with `json.el` in elisp? It's great, but... whenever the JSON object is not flat it turns into a headache. Working with nested `alist`s is much harder then it is in JavaScript or Python. Probably there are small solutions here and there, but I didn't see a centralised (and packaged) solution.\\n\\nBut enough with the sales pitch. I've put together a library to simplify this. It's called *Jeison* and it joins `JSON` and `EIEIO`. The workflow is the following: you create your class, you tag class fields/slots with information on where to find it in JSON and parse JSON. More on it in **README** here [https://github.com/SavchenkoValeriy/jeison](https://github.com/SavchenkoValeriy/jeison)\\n\\nI'm looking forward to get feedback on my approach.\", \"author_fullname\": \"t2_y095r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A library for dealing with a deeply nested JSON objects in elisp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdkk78\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 37, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 37, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563266605.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563240909.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello fellow emacs lispers! Have you ever worked with \\u003Ccode\\u003Ejson.el\\u003C/code\\u003E in elisp? It\\u0026#39;s great, but... whenever the JSON object is not flat it turns into a headache. Working with nested \\u003Ccode\\u003Ealist\\u003C/code\\u003Es is much harder then it is in JavaScript or Python. Probably there are small solutions here and there, but I didn\\u0026#39;t see a centralised (and packaged) solution.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut enough with the sales pitch. I\\u0026#39;ve put together a library to simplify this. It\\u0026#39;s called \\u003Cem\\u003EJeison\\u003C/em\\u003E and it joins \\u003Ccode\\u003EJSON\\u003C/code\\u003E and \\u003Ccode\\u003EEIEIO\\u003C/code\\u003E. The workflow is the following: you create your class, you tag class fields/slots with information on where to find it in JSON and parse JSON. More on it in \\u003Cstrong\\u003EREADME\\u003C/strong\\u003E here \\u003Ca href=\\\"https://github.com/SavchenkoValeriy/jeison\\\"\\u003Ehttps://github.com/SavchenkoValeriy/jeison\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m looking forward to get feedback on my approach.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdkk78\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vsavchenko\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdkk78/a_library_for_dealing_with_a_deeply_nested_json/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdkk78/a_library_for_dealing_with_a_deeply_nested_json/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563212109.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello,\\n\\ni mostly program in languages like C, C++ and Java and i like to use the builtin auto-indent functions.\\n\\nNewly i switched to a format style of four spaces and Emacs electric-indent works like a charm.\\n\\nBut as i try to mark a region and use the indent-region command, my whole coding style gets broken.\\n\\n\\u0026#x200B;\\n\\nMy default formatting:\\n\\n #include \\u003Cboost/filesystem.hpp\\u003E\\n #include \\u003Cvector\\u003E\\n #include \\u003Ciostream\\u003E\\n #include \\\"include/fs_utils.hpp\\\"\\n \\n namespace fs = boost::filesystem;\\n \\n int main(int argc, char ** argv) \\n {\\n \\tstd::vector\\u003Cfs::path\\u003E v{};\\n \\t\\n \\trd_dir_scandir(\\\"..\\\", v);\\n \\t\\n \\tfor(auto \\u0026i : v) {\\n \\t\\tstd::cout \\u003C\\u003C i \\u003C\\u003C std::endl;\\n \\t}\\n \\t\\n \\tstd::exit(EXIT_SUCCESS);\\n }\\n\\nAfter using indent-region:\\n\\n #include \\\"include/fs_utils.hpp\\\"\\n #include \\u003Cboost/filesystem.hpp\\u003E\\n #include \\u003Ciostream\\u003E\\n #include \\u003Cvector\\u003E\\n \\n namespace fs = boost::filesystem;\\n \\n int main(int argc, char **argv) {\\n std::vector\\u003Cfs::path\\u003E v{};\\n \\n rd_dir_scandir(\\\"..\\\", v);\\n \\n for (auto \\u0026i : v) {\\n std::cout \\u003C\\u003C i \\u003C\\u003C std::endl;\\n }\\n \\n std::exit(EXIT_SUCCESS);\\n }\\n\\nSo the main problem is, that i get from four spaces indent to two spaces indent. I have absolutely no idea how to handle that.\\n\\n\\u0026#x200B;\\n\\nThis is the part where i try to handle the offset:\\n\\n (defun programming-mode-hook ()\\n (setq c-basic-offset 4)\\n )\\n \\n (add-hook 'c-mode-hook 'programming-mode-hook)\\n (add-hook 'c++-mode-hook 'programming-mode-hook)\", \"author_fullname\": \"t2_11g0po4x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"indent-region destroys my preferred format style\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdjzkh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563238547.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei mostly program in languages like C, C++ and Java and i like to use the builtin auto-indent functions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENewly i switched to a format style of four spaces and Emacs electric-indent works like a charm.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut as i try to mark a region and use the indent-region command, my whole coding style gets broken.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy default formatting:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#include \\u0026lt;boost/filesystem.hpp\\u0026gt;\\n#include \\u0026lt;vector\\u0026gt;\\n#include \\u0026lt;iostream\\u0026gt;\\n#include \\u0026quot;include/fs_utils.hpp\\u0026quot;\\n\\nnamespace fs = boost::filesystem;\\n\\nint main(int argc, char ** argv) \\n{\\n std::vector\\u0026lt;fs::path\\u0026gt; v{};\\n\\n rd_dir_scandir(\\u0026quot;..\\u0026quot;, v);\\n\\n for(auto \\u0026amp;i : v) {\\n std::cout \\u0026lt;\\u0026lt; i \\u0026lt;\\u0026lt; std::endl;\\n }\\n\\n std::exit(EXIT_SUCCESS);\\n}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAfter using indent-region:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#include \\u0026quot;include/fs_utils.hpp\\u0026quot;\\n#include \\u0026lt;boost/filesystem.hpp\\u0026gt;\\n#include \\u0026lt;iostream\\u0026gt;\\n#include \\u0026lt;vector\\u0026gt;\\n\\nnamespace fs = boost::filesystem;\\n\\nint main(int argc, char **argv) {\\n std::vector\\u0026lt;fs::path\\u0026gt; v{};\\n\\n rd_dir_scandir(\\u0026quot;..\\u0026quot;, v);\\n\\n for (auto \\u0026amp;i : v) {\\n std::cout \\u0026lt;\\u0026lt; i \\u0026lt;\\u0026lt; std::endl;\\n }\\n\\n std::exit(EXIT_SUCCESS);\\n}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo the main problem is, that i get from four spaces indent to two spaces indent. I have absolutely no idea how to handle that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the part where i try to handle the offset:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun programming-mode-hook ()\\n (setq c-basic-offset 4)\\n )\\n\\n(add-hook \\u0026#39;c-mode-hook \\u0026#39;programming-mode-hook)\\n(add-hook \\u0026#39;c++-mode-hook \\u0026#39;programming-mode-hook)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdjzkh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mrndrsn\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdjzkh/indentregion_destroys_my_preferred_format_style/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdjzkh/indentregion_destroys_my_preferred_format_style/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563209747.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[demo](https://www.dropbox.com/s/dendivxbch9p2vl/tart.png?dl=0)\\nIn the image the theme is broken in org mode buffer. I remmeber I read about this problem before but I can't remember how to fix this. Please help. Thank you.\", \"author_fullname\": \"t2_r67df\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"weird problem with themes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdj55a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563234683.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.dropbox.com/s/dendivxbch9p2vl/tart.png?dl=0\\\"\\u003Edemo\\u003C/a\\u003E\\nIn the image the theme is broken in org mode buffer. I remmeber I read about this problem before but I can\\u0026#39;t remember how to fix this. Please help. Thank you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdj55a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hainguyenac\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdj55a/weird_problem_with_themes/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdj55a/weird_problem_with_themes/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563205883.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am trying to setup Gmail in Emacs and have done most of it. I have also tried to put up an article on it. I have used the builtin `message` module to compose messages and `notmuch` to search mail and `mbsync` to sync to Gmail. But how do I enable notifications? I have found out `notifymuch` but don't know how to use it properly. Any help would be appreciated.\\n\\nArticle: [https://compro-prasad.gitlab.io/website/html/gmail-in-emacs.html](https://compro-prasad.gitlab.io/website/html/gmail-in-emacs.html)\\n\\nNotifymuch: [https://github.com/kspi/notifymuch](https://github.com/kspi/notifymuch)\", \"author_fullname\": \"t2_3cvn0zxc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Gmail in Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdimnf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563232176.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to setup Gmail in Emacs and have done most of it. I have also tried to put up an article on it. I have used the builtin \\u003Ccode\\u003Emessage\\u003C/code\\u003E module to compose messages and \\u003Ccode\\u003Enotmuch\\u003C/code\\u003E to search mail and \\u003Ccode\\u003Embsync\\u003C/code\\u003E to sync to Gmail. But how do I enable notifications? I have found out \\u003Ccode\\u003Enotifymuch\\u003C/code\\u003E but don\\u0026#39;t know how to use it properly. Any help would be appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EArticle: \\u003Ca href=\\\"https://compro-prasad.gitlab.io/website/html/gmail-in-emacs.html\\\"\\u003Ehttps://compro-prasad.gitlab.io/website/html/gmail-in-emacs.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENotifymuch: \\u003Ca href=\\\"https://github.com/kspi/notifymuch\\\"\\u003Ehttps://github.com/kspi/notifymuch\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdimnf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"comproprasad\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdimnf/gmail_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdimnf/gmail_in_emacs/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563203376.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I use `emms` to listen to Music. I borrowed my brother's music directory.\\n\\nEach time I listen to a song that I like in my brother's directory, I'd like to `mv` into my own Music directory with a function that I invoke.\\n\\nI intend to do that using the function `emms-show` which shows the music currently playing.\\n\\nAfter formatting the output with `sed` and `eshell` I end up with: `(emms-show) | sed \\\"s/Currently playing: //g\\\" | sed -e 's/[[:space:]]/\\\\\\\\ /g'` \\n\\nI'd like to create an emacs function `emms-grab` which uses `mv` to move the song to my my personal Music directory. How do I do that?\", \"author_fullname\": \"t2_3ixmiy8z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make emacs functions that make use of both Elsip and bash?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdhwcb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563228471.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use \\u003Ccode\\u003Eemms\\u003C/code\\u003E to listen to Music. I borrowed my brother\\u0026#39;s music directory.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEach time I listen to a song that I like in my brother\\u0026#39;s directory, I\\u0026#39;d like to \\u003Ccode\\u003Emv\\u003C/code\\u003E into my own Music directory with a function that I invoke.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI intend to do that using the function \\u003Ccode\\u003Eemms-show\\u003C/code\\u003E which shows the music currently playing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter formatting the output with \\u003Ccode\\u003Esed\\u003C/code\\u003E and \\u003Ccode\\u003Eeshell\\u003C/code\\u003E I end up with: \\u003Ccode\\u003E(emms-show) | sed \\u0026quot;s/Currently playing: //g\\u0026quot; | sed -e \\u0026#39;s/[[:space:]]/\\\\\\\\ /g\\u0026#39;\\u003C/code\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to create an emacs function \\u003Ccode\\u003Eemms-grab\\u003C/code\\u003E which uses \\u003Ccode\\u003Emv\\u003C/code\\u003E to move the song to my my personal Music directory. How do I do that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdhwcb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"forppinrange\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdhwcb/how_to_make_emacs_functions_that_make_use_of_both/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdhwcb/how_to_make_emacs_functions_that_make_use_of_both/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563199671.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm switching to emacs, but I need some help in customizing it. I wrote a plugin for my previous editor to add a feature I'd really like to have in emacs too but I'm not sure about the best way to implement it. I've RTFM quite a lot but I'm still a bit confused.\\n\\nHere's what I need: a function to temporarily replace the letters (except the first) of each word in the buffer with a symbol or letter. It should be a toggle: a subsequent function call will reveal the original text. In a perfect world, it should keep the markdown syntax, but I could live without it, I guess.\\n\\nExample: \\\"Here is a sample text, for illustrative purpose.\\\" would get converted to \\\"Hxxx ix a sxxxxx txxx, fxx ixxxxxxxxxx pxxxxxx.\\\"\\n\\n\\\"Who would need such an obscure feature?\\\" you may ask. Well, I'm a writer and I sometimes need to conceal my ~~smut~~ prose from the people around me. This solution allows me to be able to re-read the last sentences I wrote even if interrupted, while keeping the prying eyes away. It also helps \\\"killing the inner editor\\\", as I can't correct what I can't read.\\n\\nSo\\u2026 do I need 'add-text-properties', overlays, syntax-tables, or anything else? Maybe there is an existing plugin I could adapt.\\n\\nI'm not asking you to write it for me (well\\u2026 I won't stop you either) but could you please point me in the right direction?\\n\\nEDIT: The \\\"censoring\\\" should be dynamic and hide words as I type them.\", \"author_fullname\": \"t2_5ys8n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to temporarily replace the last letters of each word?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdgvc2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563197757.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563222685.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m switching to emacs, but I need some help in customizing it. I wrote a plugin for my previous editor to add a feature I\\u0026#39;d really like to have in emacs too but I\\u0026#39;m not sure about the best way to implement it. I\\u0026#39;ve RTFM quite a lot but I\\u0026#39;m still a bit confused.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s what I need: a function to temporarily replace the letters (except the first) of each word in the buffer with a symbol or letter. It should be a toggle: a subsequent function call will reveal the original text. In a perfect world, it should keep the markdown syntax, but I could live without it, I guess.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample: \\u0026quot;Here is a sample text, for illustrative purpose.\\u0026quot; would get converted to \\u0026quot;Hxxx ix a sxxxxx txxx, fxx ixxxxxxxxxx pxxxxxx.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;Who would need such an obscure feature?\\u0026quot; you may ask. Well, I\\u0026#39;m a writer and I sometimes need to conceal my \\u003Cdel\\u003Esmut\\u003C/del\\u003E prose from the people around me. This solution allows me to be able to re-read the last sentences I wrote even if interrupted, while keeping the prying eyes away. It also helps \\u0026quot;killing the inner editor\\u0026quot;, as I can\\u0026#39;t correct what I can\\u0026#39;t read.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo\\u2026 do I need \\u0026#39;add-text-properties\\u0026#39;, overlays, syntax-tables, or anything else? Maybe there is an existing plugin I could adapt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not asking you to write it for me (well\\u2026 I won\\u0026#39;t stop you either) but could you please point me in the right direction?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: The \\u0026quot;censoring\\u0026quot; should be dynamic and hide words as I type them.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdgvc2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Grinfader\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdgvc2/how_to_temporarily_replace_the_last_letters_of/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdgvc2/how_to_temporarily_replace_the_last_letters_of/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563193885.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I was trying to create a macro when I realized that the iy-go-to-char function has a strange problem.\\n\\n ;; Keyboard Macro Editor. Press C-c C-c to finish; press C-x k RET to cancel. \\n ;; Original keys: C-c f : 2*C-f C-SPC C-e M-w C-a C-n \\n \\n Command: last-kbd-macro \\n Key: none \\n \\n Macro: \\n C-c f ;; iy-go-to-char \\n : ;; self-insert-command \\n 2*C-f ;; forward-char \\n C-SPC ;; set-mark-command \\n C-e ;; move-end-of-line \\n M-w ;; kill-ring-save \\n C-a ;; move-beginning-of-line \\n C-n ;; next-line \\n\\nI typed C-f just one time. Always after I did run iy-go-to-char and select the char, the next key that I press is catched by macro as if I had typed twice. Look this other example, I have this in scratch buf, \\\"|\\\" is the cursor.\\n\\n |a: 1 \\n b: 2 \\n\\nAfter running my last macro I had this in scratch buf:\\n\\n a:t| 1 \\n b: 2 \\n\\nand this is my last macro:\\n\\n ;; Keyboard Macro Editor. Press C-c C-c to finish; press C-x k RET to cancel. \\n ;; Original keys: C-c f :tt \\n \\n Command: last-kbd-macro \\n Key: none \\n \\n Macro: \\n C-c f ;; iy-go-to-char \\n :tt ;; self-insert-command * 3 \\n\\nActualy my macro would supposed to be \\\"C-c f : t\\\", but for some reason t was wrote twice in macro.\", \"author_fullname\": \"t2_28pfalw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"iy-go-to-char breaking macros\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdg53d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563217937.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was trying to create a macro when I realized that the iy-go-to-char function has a strange problem.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Keyboard Macro Editor. Press C-c C-c to finish; press C-x k RET to cancel. \\n;; Original keys: C-c f : 2*C-f C-SPC C-e M-w C-a C-n \\n\\nCommand: last-kbd-macro \\nKey: none \\n\\nMacro: \\nC-c f ;; iy-go-to-char \\n: ;; self-insert-command \\n2*C-f ;; forward-char \\nC-SPC ;; set-mark-command \\nC-e ;; move-end-of-line \\nM-w ;; kill-ring-save \\nC-a ;; move-beginning-of-line \\nC-n ;; next-line \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI typed C-f just one time. Always after I did run iy-go-to-char and select the char, the next key that I press is catched by macro as if I had typed twice. Look this other example, I have this in scratch buf, \\u0026quot;|\\u0026quot; is the cursor.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E|a: 1 \\nb: 2 \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAfter running my last macro I had this in scratch buf:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ea:t| 1 \\nb: 2 \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eand this is my last macro:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Keyboard Macro Editor. Press C-c C-c to finish; press C-x k RET to cancel. \\n;; Original keys: C-c f :tt \\n\\nCommand: last-kbd-macro \\nKey: none \\n\\nMacro: \\nC-c f ;; iy-go-to-char \\n:tt ;; self-insert-command * 3 \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EActualy my macro would supposed to be \\u0026quot;C-c f : t\\u0026quot;, but for some reason t was wrote twice in macro.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdg53d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lucaspeixotot\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdg53d/iygotochar_breaking_macros/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdg53d/iygotochar_breaking_macros/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563189137.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[https://github.com/jerrypnz/major-mode-hydra.el](https://github.com/jerrypnz/major-mode-hydra.el)\\n\\n\\u0026#x200B;\\n\\nI've been making improvements to this package since it was [announced here](https://www.reddit.com/r/emacs/comments/am0kbn/new_package_majormodehydra_inspired_by_spacemacs/) a couple of months ago. I just merged all those changes to master and thought I'd showcase some of them here.\\n\\nFor full documentation, take a look at the Github repo above.\\n\\n\\u0026#x200B;\\n\\n**New Major Mode Hydra API**\\n\\nA new macro \\\\`major-mode-hydra-define\\\\` is added, which has pretty much the same API as \\\\`pretty-hydra-define\\\\`. The previous \\\\`major-mode-hydra-bind\\\\` is a bit tedious to use and is now marked as obsolete.\\n\\n\\u0026#x200B;\\n\\n**pretty-hydra-define+ and major-mode-hydra-define+**\\n\\nLike \\\\`defhydra+\\\\`, these macros allow you to add new heads to existing hydras\\n\\n\\u0026#x200B;\\n\\n**use-package integration**\\n\\nYou can now use the \\\\`:pretty-hydra\\\\` and \\\\`:mode-hydra\\\\` keywords to create hydras inside \\\\`use-package\\\\` calls. Autoloads are generated from the commands that show up in the heads.\\n\\n (use-package go-mode\\n :ensure t\\n :mode \\\"\\\\\\\\.go\\\\\\\\'\\\"\\n :mode-hydra\\n (\\\"Doc\\\"\\n ((\\\"d\\\" godoc-at-point \\\"doc at point\\\"))\\n \\\"Imports\\\"\\n ((\\\"ia\\\" go-import-add \\\"add\\\")\\n (\\\"ir\\\" go-remove-unused-imports \\\"cleanup\\\"))))\\n \\n (use-package helpful\\n :ensure t\\n :pretty-hydra\\n ((:color teal :quit-key \\\"q\\\")\\n (\\\"Helpful\\\"\\n ((\\\"f\\\" helpful-callable \\\"callable\\\")\\n (\\\"v\\\" helpful-variable \\\"variable\\\")\\n (\\\"k\\\" helpful-key \\\"key\\\")\\n (\\\"c\\\" helpful-command \\\"command\\\")\\n (\\\"d\\\" helpful-at-point \\\"thing at point\\\"))))\\n :bind (\\\"C-h\\\" . helpful-hydra/body))\\n\\n**Toggles**\\n\\nWith the new \\\\`:toggle\\\\` keyword, you can create toggle heads that show the current status in the hint, like the screenshot below shows.\\n\\n (pretty-hydra-define jp-toggles\\n (:color amaranth :quit-key \\\"q\\\" :title jp-toggles--title)\\n (\\\"Basic\\\"\\n ((\\\"n\\\" linum-mode \\\"line number\\\" :toggle t)\\n (\\\"w\\\" whitespace-mode \\\"whitespace\\\" :toggle t)\\n (\\\"W\\\" whitespace-cleanup-mode \\\"whitespace cleanup\\\" :toggle t)\\n (\\\"r\\\" rainbow-mode \\\"rainbow\\\" :toggle t)\\n (\\\"L\\\" page-break-lines-mode \\\"page break lines\\\" :toggle t))\\n \\\"Highlight\\\"\\n ((\\\"s\\\" symbol-overlay-mode \\\"symbol\\\" :toggle t)\\n (\\\"l\\\" hl-line-mode \\\"line\\\" :toggle t)\\n (\\\"x\\\" highlight-sexp-mode \\\"sexp\\\" :toggle t)\\n (\\\"t\\\" hl-todo-mode \\\"todo\\\" :toggle t))\\n \\\"UI\\\"\\n ((\\\"d\\\" jp-themes-toggle-light-dark \\\"dark theme\\\" :toggle jp-current-theme-dark-p))\\n \\\"Coding\\\"\\n ((\\\"p\\\" smartparens-mode \\\"smartparens\\\" :toggle t)\\n (\\\"P\\\" smartparens-strict-mode \\\"smartparens strict\\\" :toggle t)\\n (\\\"S\\\" show-smartparens-mode \\\"show smartparens\\\" :toggle t)\\n (\\\"f\\\" flycheck-mode \\\"flycheck\\\" :toggle t))\\n \\\"Emacs\\\"\\n ((\\\"D\\\" toggle-debug-on-error \\\"debug on error\\\" :toggle (default-value 'debug-on-error))\\n (\\\"X\\\" toggle-debug-on-quit \\\"debug on quit\\\" :toggle (default-value 'debug-on-quit)))))\\n\\n\\u0026#x200B;\\n\\n[toggles hydra](https://i.redd.it/3fbl4svcvfa31.png)\\n\\n\\u0026#x200B;\\n\\n**Dynamic Titles**\\n\\nThe \\\\`:title\\\\` keyword now accepts symbols or s-exps, in which case they are evaluated for the title. For example,\\n\\n (defun jp-projects--title ()\\n (let ((p (projectile-project-name)))\\n (with-octicon \\\"repo\\\"\\n (if (s-blank-p p)\\n \\\"Projects\\\"\\n (s-concat \\\"Projects (current: \\\" p \\\")\\\")))))\\n \\n (pretty-hydra-define jp-projects\\n (:color teal :quit-key \\\"q\\\" :title (jp-projects--title))\\n (\\\"Current Project\\\"\\n ((\\\"f\\\" counsel-projectile \\\"open file/buffer\\\")\\n (\\\"b\\\" counsel-projectile-switch-to-buffe \\\"switch to buffer\\\")\\n (\\\"d\\\" counsel-projectile-find-dir \\\"open directory\\\")\\n (\\\"i\\\" projectile-ibuffer \\\"ibuffer\\\")\\n (\\\"k\\\" projectile-kill-buffers \\\"kill buffers\\\")\\n (\\\"I\\\" projectile-invalidate-cache \\\"invalidate cache\\\"))\\n \\\"All Projects\\\"\\n ((\\\"p\\\" jp-eyebrowse-switch-project \\\"switch\\\")\\n (\\\"r\\\" jp-refresh-projectile-projects \\\"refresh project list\\\"))))\\n\\nhttps://i.redd.it/lg67l4x30ga31.png\", \"author_fullname\": \"t2_fwsikp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[ANN] major-mode-hydra / pretty-hydra 0.2.0\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"3fbl4svcvfa31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 444, \"x\": 2030, \"u\": \"https://i.redd.it/3fbl4svcvfa31.png\"}, \"m\": \"image/png\", \"id\": \"3fbl4svcvfa31\"}, \"lg67l4x30ga31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 504, \"x\": 962, \"u\": \"https://i.redd.it/lg67l4x30ga31.png\"}, \"m\": \"image/png\", \"id\": \"lg67l4x30ga31\"}}, \"name\": \"t3_cdfr20\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 45, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 45, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563215073.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/jerrypnz/major-mode-hydra.el\\\"\\u003Ehttps://github.com/jerrypnz/major-mode-hydra.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been making improvements to this package since it was \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/am0kbn/new_package_majormodehydra_inspired_by_spacemacs/\\\"\\u003Eannounced here\\u003C/a\\u003E a couple of months ago. I just merged all those changes to master and thought I\\u0026#39;d showcase some of them here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor full documentation, take a look at the Github repo above.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENew Major Mode Hydra API\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA new macro `major-mode-hydra-define` is added, which has pretty much the same API as `pretty-hydra-define`. The previous `major-mode-hydra-bind` is a bit tedious to use and is now marked as obsolete.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003Epretty-hydra-define+ and major-mode-hydra-define+\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELike `defhydra+`, these macros allow you to add new heads to existing hydras\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003Euse-package integration\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can now use the `:pretty-hydra` and `:mode-hydra` keywords to create hydras inside `use-package` calls. Autoloads are generated from the commands that show up in the heads.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package go-mode\\n :ensure t\\n :mode \\u0026quot;\\\\\\\\.go\\\\\\\\\\u0026#39;\\u0026quot;\\n :mode-hydra\\n (\\u0026quot;Doc\\u0026quot;\\n ((\\u0026quot;d\\u0026quot; godoc-at-point \\u0026quot;doc at point\\u0026quot;))\\n \\u0026quot;Imports\\u0026quot;\\n ((\\u0026quot;ia\\u0026quot; go-import-add \\u0026quot;add\\u0026quot;)\\n (\\u0026quot;ir\\u0026quot; go-remove-unused-imports \\u0026quot;cleanup\\u0026quot;))))\\n\\n(use-package helpful\\n :ensure t\\n :pretty-hydra\\n ((:color teal :quit-key \\u0026quot;q\\u0026quot;)\\n (\\u0026quot;Helpful\\u0026quot;\\n ((\\u0026quot;f\\u0026quot; helpful-callable \\u0026quot;callable\\u0026quot;)\\n (\\u0026quot;v\\u0026quot; helpful-variable \\u0026quot;variable\\u0026quot;)\\n (\\u0026quot;k\\u0026quot; helpful-key \\u0026quot;key\\u0026quot;)\\n (\\u0026quot;c\\u0026quot; helpful-command \\u0026quot;command\\u0026quot;)\\n (\\u0026quot;d\\u0026quot; helpful-at-point \\u0026quot;thing at point\\u0026quot;))))\\n :bind (\\u0026quot;C-h\\u0026quot; . helpful-hydra/body))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EToggles\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith the new `:toggle` keyword, you can create toggle heads that show the current status in the hint, like the screenshot below shows.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(pretty-hydra-define jp-toggles\\n (:color amaranth :quit-key \\u0026quot;q\\u0026quot; :title jp-toggles--title)\\n (\\u0026quot;Basic\\u0026quot;\\n ((\\u0026quot;n\\u0026quot; linum-mode \\u0026quot;line number\\u0026quot; :toggle t)\\n (\\u0026quot;w\\u0026quot; whitespace-mode \\u0026quot;whitespace\\u0026quot; :toggle t)\\n (\\u0026quot;W\\u0026quot; whitespace-cleanup-mode \\u0026quot;whitespace cleanup\\u0026quot; :toggle t)\\n (\\u0026quot;r\\u0026quot; rainbow-mode \\u0026quot;rainbow\\u0026quot; :toggle t)\\n (\\u0026quot;L\\u0026quot; page-break-lines-mode \\u0026quot;page break lines\\u0026quot; :toggle t))\\n \\u0026quot;Highlight\\u0026quot;\\n ((\\u0026quot;s\\u0026quot; symbol-overlay-mode \\u0026quot;symbol\\u0026quot; :toggle t)\\n (\\u0026quot;l\\u0026quot; hl-line-mode \\u0026quot;line\\u0026quot; :toggle t)\\n (\\u0026quot;x\\u0026quot; highlight-sexp-mode \\u0026quot;sexp\\u0026quot; :toggle t)\\n (\\u0026quot;t\\u0026quot; hl-todo-mode \\u0026quot;todo\\u0026quot; :toggle t))\\n \\u0026quot;UI\\u0026quot;\\n ((\\u0026quot;d\\u0026quot; jp-themes-toggle-light-dark \\u0026quot;dark theme\\u0026quot; :toggle jp-current-theme-dark-p))\\n \\u0026quot;Coding\\u0026quot;\\n ((\\u0026quot;p\\u0026quot; smartparens-mode \\u0026quot;smartparens\\u0026quot; :toggle t)\\n (\\u0026quot;P\\u0026quot; smartparens-strict-mode \\u0026quot;smartparens strict\\u0026quot; :toggle t)\\n (\\u0026quot;S\\u0026quot; show-smartparens-mode \\u0026quot;show smartparens\\u0026quot; :toggle t)\\n (\\u0026quot;f\\u0026quot; flycheck-mode \\u0026quot;flycheck\\u0026quot; :toggle t))\\n \\u0026quot;Emacs\\u0026quot;\\n ((\\u0026quot;D\\u0026quot; toggle-debug-on-error \\u0026quot;debug on error\\u0026quot; :toggle (default-value \\u0026#39;debug-on-error))\\n (\\u0026quot;X\\u0026quot; toggle-debug-on-quit \\u0026quot;debug on quit\\u0026quot; :toggle (default-value \\u0026#39;debug-on-quit)))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/3fbl4svcvfa31.png\\\"\\u003Etoggles hydra\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDynamic Titles\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe `:title` keyword now accepts symbols or s-exps, in which case they are evaluated for the title. For example,\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun jp-projects--title ()\\n (let ((p (projectile-project-name)))\\n (with-octicon \\u0026quot;repo\\u0026quot;\\n (if (s-blank-p p)\\n \\u0026quot;Projects\\u0026quot;\\n (s-concat \\u0026quot;Projects (current: \\u0026quot; p \\u0026quot;)\\u0026quot;)))))\\n\\n(pretty-hydra-define jp-projects\\n (:color teal :quit-key \\u0026quot;q\\u0026quot; :title (jp-projects--title))\\n (\\u0026quot;Current Project\\u0026quot;\\n ((\\u0026quot;f\\u0026quot; counsel-projectile \\u0026quot;open file/buffer\\u0026quot;)\\n (\\u0026quot;b\\u0026quot; counsel-projectile-switch-to-buffe \\u0026quot;switch to buffer\\u0026quot;)\\n (\\u0026quot;d\\u0026quot; counsel-projectile-find-dir \\u0026quot;open directory\\u0026quot;)\\n (\\u0026quot;i\\u0026quot; projectile-ibuffer \\u0026quot;ibuffer\\u0026quot;)\\n (\\u0026quot;k\\u0026quot; projectile-kill-buffers \\u0026quot;kill buffers\\u0026quot;)\\n (\\u0026quot;I\\u0026quot; projectile-invalidate-cache \\u0026quot;invalidate cache\\u0026quot;))\\n \\u0026quot;All Projects\\u0026quot;\\n ((\\u0026quot;p\\u0026quot; jp-eyebrowse-switch-project \\u0026quot;switch\\u0026quot;)\\n (\\u0026quot;r\\u0026quot; jp-refresh-projectile-projects \\u0026quot;refresh project list\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/lg67l4x30ga31.png\\\"\\u003Ehttps://i.redd.it/lg67l4x30ga31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdfr20\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pr2jerry\", \"num_crossposts\": 0, \"num_comments\": 20, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdfr20/ann_majormodehydra_prettyhydra_020/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdfr20/ann_majormodehydra_prettyhydra_020/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563186273.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Upon invoking A in org agenda to append global todo list to it's end:\\n\\nhttps://i.redd.it/qo7t4gpvpfa31.png\\n\\nStrike t which append the global todo list of all types\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/awam7vt7qfa31.png\\n\\nWhich I need is only the todos of status TODO\\n\\n\\u0026#x200B;\\n\\nUnfortunately, If strike 1r on the current window, the agenda disappear left just the todo list.\\n\\n\\u0026#x200B;\\n\\nHow could append a global todo list of status 'TODO' to agnda view.\", \"author_fullname\": \"t2_45nyfuw3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Append a gloal todo list of status todo to the agenda view\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"awam7vt7qfa31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 167, \"x\": 1238, \"u\": \"https://i.redd.it/awam7vt7qfa31.png\"}, \"m\": \"image/png\", \"id\": \"awam7vt7qfa31\"}, \"qo7t4gpvpfa31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 748, \"x\": 1216, \"u\": \"https://i.redd.it/qo7t4gpvpfa31.png\"}, \"m\": \"image/png\", \"id\": \"qo7t4gpvpfa31\"}}, \"name\": \"t3_cdf9ub\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563211359.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUpon invoking A in org agenda to append global todo list to it\\u0026#39;s end:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/qo7t4gpvpfa31.png\\\"\\u003Ehttps://i.redd.it/qo7t4gpvpfa31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStrike t which append the global todo list of all types\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/awam7vt7qfa31.png\\\"\\u003Ehttps://i.redd.it/awam7vt7qfa31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhich I need is only the todos of status TODO\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnfortunately, If strike 1r on the current window, the agenda disappear left just the todo list.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow could append a global todo list of status \\u0026#39;TODO\\u0026#39; to agnda view.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdf9ub\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AlinbX-utg\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdf9ub/append_a_gloal_todo_list_of_status_todo_to_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdf9ub/append_a_gloal_todo_list_of_status_todo_to_the/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563182559.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Keep getting this along with a list of failed package installs and this message is output at the start which is a new addition from my last emacs rig, it's a new machine i'm installing onto:\\n\\nBuffer \\\" \\\\*http [elpa.gnu.org:443](https://elpa.gnu.org:443)\\\\*-257153\\\" has a running process; kill it? (y or n) y\\n\\nI've tried melpa stable and melpa, I've tried package-refresh-contents and no luck. \\n\\nThe debug it quite big so i'm not posting it but it starts with this:\\n\\n\\u0026#x200B;\\n\\nDebugger entered--Lisp error: (error \\\"Package \\u2018undo-tree-0.6.3\\u2019 is unavailable\\\")\\n\\n signal(error (\\\"Package \\u2018undo-tree-0.6.3\\u2019 is unavailable\\\"))\\n\\n error(\\\"Package \\\\`%s-%s' is unavailable\\\" undo-tree \\\"0.6.3\\\")\\n\\n package-compute-transaction((#s(package-desc :name evil :version (1 2 14) :summary \\\"Extensible Vi layer for Emacs.\\\" :reqs ((emacs (24 1)) (undo-tree (0 6 3)) (goto-chg (1 6)) (cl-lib (0 5))) :kind tar :archive \\\"melpa-stable\\\" :dir nil :extras\", \"author_fullname\": \"t2_lkmww7c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"failed to download 'gnu' archive\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdf48c\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563210152.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EKeep getting this along with a list of failed package installs and this message is output at the start which is a new addition from my last emacs rig, it\\u0026#39;s a new machine i\\u0026#39;m installing onto:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBuffer \\u0026quot; *http \\u003Ca href=\\\"https://elpa.gnu.org:443\\\"\\u003Eelpa.gnu.org:443\\u003C/a\\u003E*-257153\\u0026quot; has a running process; kill it? (y or n) y\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve tried melpa stable and melpa, I\\u0026#39;ve tried package-refresh-contents and no luck. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe debug it quite big so i\\u0026#39;m not posting it but it starts with this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDebugger entered--Lisp error: (error \\u0026quot;Package \\u2018undo-tree-0.6.3\\u2019 is unavailable\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esignal(error (\\u0026quot;Package \\u2018undo-tree-0.6.3\\u2019 is unavailable\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eerror(\\u0026quot;Package `%s-%s\\u0026#39; is unavailable\\u0026quot; undo-tree \\u0026quot;0.6.3\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Epackage-compute-transaction((#s(package-desc :name evil :version (1 2 14) :summary \\u0026quot;Extensible Vi layer for Emacs.\\u0026quot; :reqs ((emacs (24 1)) (undo-tree (0 6 3)) (goto-chg (1 6)) (cl-lib (0 5))) :kind tar :archive \\u0026quot;melpa-stable\\u0026quot; :dir nil :extras\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdf48c\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"girvain\", \"num_crossposts\": 0, \"num_comments\": 24, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdf48c/failed_to_download_gnu_archive/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdf48c/failed_to_download_gnu_archive/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563181352.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I just noticed that this subreddit only has 30k members while r/vim has 80K.. What's keeping you guys from jumping jump over to Vim? I just think Emacs is bloated and could rightfully be it's own OS.. Why don't you guys prefer a more lightweight and superior Vim? I would love some feedback on this as it's been perplexing me lately! Thanks in advance.\\n\\nhttps://i.redd.it/wtv9w7u4zia31.png\", \"author_fullname\": \"t2_43e2y2qk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why do you use Emacs over Vim?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"wtv9w7u4zia31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 768, \"x\": 1366, \"u\": \"https://i.redd.it/wtv9w7u4zia31.png\"}, \"m\": \"image/png\", \"id\": \"wtv9w7u4zia31\"}}, \"name\": \"t3_cdeplx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563221687.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563206857.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just noticed that this subreddit only has 30k members while \\u003Ca href=\\\"/r/vim\\\"\\u003Er/vim\\u003C/a\\u003E has 80K.. What\\u0026#39;s keeping you guys from jumping jump over to Vim? I just think Emacs is bloated and could rightfully be it\\u0026#39;s own OS.. Why don\\u0026#39;t you guys prefer a more lightweight and superior Vim? I would love some feedback on this as it\\u0026#39;s been perplexing me lately! Thanks in advance.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/wtv9w7u4zia31.png\\\"\\u003Ehttps://i.redd.it/wtv9w7u4zia31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdeplx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KeyNoise8\", \"num_crossposts\": 0, \"num_comments\": 85, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdeplx/why_do_you_use_emacs_over_vim/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdeplx/why_do_you_use_emacs_over_vim/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563178057.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have writte a custom emacs package which I am loading from git, how ever when it loads I get a cannot load error.\\n\\n\\u0026#x200B;\\n\\n\\u003EError (use-package): Cannot load pythonic-tests\\n\\n\\u0026#x200B;\\n\\nLaunching with --debug-init or using debug-on-error do not give me any extra information, I am loading via straight with this command.\\n\\n\\u0026#x200B;\\n\\n (use-package pythonic-tests\\n :straight (pythonic-tests\\n :repo \\\"emacs-open-source-library-collection/pythonic-tests\\\"\\n :host gitlab\\n :branch \\\"master\\\"))\\n\\nIf I open the file locally and run byte compile and load every thing is fine and the package is loads.\\n\\n\\u003Eemacs-lisp-byte-compile-and-load\\n\\nBit stuck on how to proceed with debugging this any suggestions ? the package is quite simple, the code is available here [https://gitlab.com/emacs-open-source-library-collection/pythonic-tests/blob/master/pythonic-tests.el](https://gitlab.com/emacs-open-source-library-collection/pythonic-tests/blob/master/pythonic-tests.el) if any one wants to take a look, but I am actually intrested in how I can find the actual issue in this case as cannot load is not helpful in any way :p\", \"author_fullname\": \"t2_lyfoaxy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"use-package debug advice with custom package.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdekic\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563205736.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have writte a custom emacs package which I am loading from git, how ever when it loads I get a cannot load error.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EError (use-package): Cannot load pythonic-tests\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELaunching with --debug-init or using debug-on-error do not give me any extra information, I am loading via straight with this command.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E (use-package pythonic-tests\\n :straight (pythonic-tests\\n :repo \\u0026quot;emacs-open-source-library-collection/pythonic-tests\\u0026quot;\\n :host gitlab\\n :branch \\u0026quot;master\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf I open the file locally and run byte compile and load every thing is fine and the package is loads.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eemacs-lisp-byte-compile-and-load\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EBit stuck on how to proceed with debugging this any suggestions ? the package is quite simple, the code is available here \\u003Ca href=\\\"https://gitlab.com/emacs-open-source-library-collection/pythonic-tests/blob/master/pythonic-tests.el\\\"\\u003Ehttps://gitlab.com/emacs-open-source-library-collection/pythonic-tests/blob/master/pythonic-tests.el\\u003C/a\\u003E if any one wants to take a look, but I am actually intrested in how I can find the actual issue in this case as cannot load is not helpful in any way :p\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdekic\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"olymk2\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdekic/usepackage_debug_advice_with_custom_package/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdekic/usepackage_debug_advice_with_custom_package/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563176936.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\\\\[Solution at the bottom of the post\\\\]\\n\\nHey everyone!\\n\\nAfter a recent reinstall, I am experiencing a problem I don't know how to debug.\\n\\nRunning `M-x package-refresh-contents` in a freshly installed Emacs with no configuration files results in an error: `Failed to download 'gnu' archive.` Debugger:\\n\\n Debugger entered--Lisp error: (file-error \\\"https://elpa.gnu.org/packages/archive-contents\\\" \\\"Bad Request\\\")\\n signal(file-error (\\\"https://elpa.gnu.org/packages/archive-contents\\\" \\\"Bad Request\\\"))\\n package--download-one-archive((\\\"gnu\\\" . \\\"https://elpa.gnu.org/packages/\\\") \\\"archive-contents\\\" nil)\\n package--download-and-read-archives(nil)\\n package-refresh-contents()\\n funcall-interactively(package-refresh-contents)\\n call-interactively(package-refresh-contents record nil)\\n command-execute(package-refresh-contents record)\\n execute-extended-command(nil \\\"package-refresh-contents\\\" \\\"package-ref\\\")\\n funcall-interactively(execute-extended-command nil \\\"package-refresh-contents\\\" \\\"package-ref\\\")\\n call-interactively(execute-extended-command nil nil)\\n command-execute(execute-extended-command)\\n\\n`wget https://elpa.gnu.org/packages/archive-contents` succeeds, no errors reported.\\n\\nAlso, Emacs does succeed to download the melpa archive (`https://melpa.org/packages/`) if that is added to the config.\\n\\nWhat could be the problem here?\\n\\nI will be grateful even for a temporary workaround, perhaps downloading something by hand? I'm not very good with elisp.\\n\\n\\u0026#x200B;\\n\\n`GNU Emacs 26.2` on Arch Linux\\n\\nThanks!\\n\\n\\u0026#x200B;\\n\\n~~Edit: \\\\[WORKAROUND\\\\] As~~ [~~suggested~~](https://www.reddit.com/r/emacs/comments/cdei4p/failed_to_download_gnu_archive_bad_request/etucktq?utm_source=share\\u0026utm_medium=web2x) ~~by~~ u/lthms, ~~using the http version of elpa works (for some reason...)~~\\n\\n~~Add (\\\"gnu\\\" . \\\"~~[~~http://elpa.gnu.org/packages/~~](http://elpa.gnu.org/packages/)~~\\\") to package-archives.~~\\n\\n\\u0026#x200B;\\n\\nEdit2: \\\\[SOLUTION\\\\] As u/techquila [pointed out](https://www.reddit.com/r/emacs/comments/cdei4p/failed_to_download_gnu_archive_bad_request/etw48ux?utm_source=share\\u0026utm_medium=web2x), if `(setq gnutls-algorithm-priority \\\"NORMAL:-VERS-TLS1.3\\\")` fixes the problem, then it's due to a bug in Emacs: [https://debbugs.gnu.org/34341](https://debbugs.gnu.org/34341). It should be fixed in Emacs 26.3+\", \"author_fullname\": \"t2_14i1bw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Failed to download 'gnu' archive. Bad request.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdei4p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563289006.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563205190.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[Solution at the bottom of the post]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHey everyone!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter a recent reinstall, I am experiencing a problem I don\\u0026#39;t know how to debug.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERunning \\u003Ccode\\u003EM-x package-refresh-contents\\u003C/code\\u003E in a freshly installed Emacs with no configuration files results in an error: \\u003Ccode\\u003EFailed to download \\u0026#39;gnu\\u0026#39; archive.\\u003C/code\\u003E Debugger:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EDebugger entered--Lisp error: (file-error \\u0026quot;https://elpa.gnu.org/packages/archive-contents\\u0026quot; \\u0026quot;Bad Request\\u0026quot;)\\n signal(file-error (\\u0026quot;https://elpa.gnu.org/packages/archive-contents\\u0026quot; \\u0026quot;Bad Request\\u0026quot;))\\n package--download-one-archive((\\u0026quot;gnu\\u0026quot; . \\u0026quot;https://elpa.gnu.org/packages/\\u0026quot;) \\u0026quot;archive-contents\\u0026quot; nil)\\n package--download-and-read-archives(nil)\\n package-refresh-contents()\\n funcall-interactively(package-refresh-contents)\\n call-interactively(package-refresh-contents record nil)\\n command-execute(package-refresh-contents record)\\n execute-extended-command(nil \\u0026quot;package-refresh-contents\\u0026quot; \\u0026quot;package-ref\\u0026quot;)\\n funcall-interactively(execute-extended-command nil \\u0026quot;package-refresh-contents\\u0026quot; \\u0026quot;package-ref\\u0026quot;)\\n call-interactively(execute-extended-command nil nil)\\n command-execute(execute-extended-command)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ewget https://elpa.gnu.org/packages/archive-contents\\u003C/code\\u003E succeeds, no errors reported.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, Emacs does succeed to download the melpa archive (\\u003Ccode\\u003Ehttps://melpa.org/packages/\\u003C/code\\u003E) if that is added to the config.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat could be the problem here?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI will be grateful even for a temporary workaround, perhaps downloading something by hand? I\\u0026#39;m not very good with elisp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EGNU Emacs 26.2\\u003C/code\\u003E on Arch Linux\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cdel\\u003EEdit: [WORKAROUND] As\\u003C/del\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/cdei4p/failed_to_download_gnu_archive_bad_request/etucktq?utm_source=share\\u0026amp;utm_medium=web2x\\\"\\u003E\\u003Cdel\\u003Esuggested\\u003C/del\\u003E\\u003C/a\\u003E \\u003Cdel\\u003Eby\\u003C/del\\u003E \\u003Ca href=\\\"/u/lthms\\\"\\u003Eu/lthms\\u003C/a\\u003E, \\u003Cdel\\u003Eusing the http version of elpa works (for some reason...)\\u003C/del\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cdel\\u003EAdd (\\u0026quot;gnu\\u0026quot; . \\u0026quot;\\u003C/del\\u003E\\u003Ca href=\\\"http://elpa.gnu.org/packages/\\\"\\u003E\\u003Cdel\\u003Ehttp://elpa.gnu.org/packages/\\u003C/del\\u003E\\u003C/a\\u003E\\u003Cdel\\u003E\\u0026quot;) to package-archives.\\u003C/del\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit2: [SOLUTION] As \\u003Ca href=\\\"/u/techquila\\\"\\u003Eu/techquila\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/cdei4p/failed_to_download_gnu_archive_bad_request/etw48ux?utm_source=share\\u0026amp;utm_medium=web2x\\\"\\u003Epointed out\\u003C/a\\u003E, if \\u003Ccode\\u003E(setq gnutls-algorithm-priority \\u0026quot;NORMAL:-VERS-TLS1.3\\u0026quot;)\\u003C/code\\u003E fixes the problem, then it\\u0026#39;s due to a bug in Emacs: \\u003Ca href=\\\"https://debbugs.gnu.org/34341\\\"\\u003Ehttps://debbugs.gnu.org/34341\\u003C/a\\u003E. It should be fixed in Emacs 26.3+\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdei4p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zoickx\", \"num_crossposts\": 0, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdei4p/failed_to_download_gnu_archive_bad_request/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdei4p/failed_to_download_gnu_archive_bad_request/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563176390.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I love Eldoc, it's handy and helpful and makes Emacs look much more intelligent. However, oftentimes the multiline documentation really interferes with my sight and workflow and I'd like to force it fit under one-line.\\n\\n\\u0026#x200B;\\n\\nHere's the configuration I have tried:\\n\\n```\\n(setq eldoc-echo-area-use-multiline-p nil)\\n```\\n\\nAccording to Emacs doc: \\n\\n\\u003E If value is nil, messages are always truncated to fit in a single line of display in the echo area. Function or variable symbol name may be truncated to make more of the arglist or documentation string visible. **Note that this variable has no effect, unless \\u2018eldoc-documentation-function\\u2019 handles it explicitly**.\\n\\nSo I went ahead and did: \\n\\n```\\n(add-function :before-until (local 'eldoc-documentation-function) \\n #'prog-mode-eldoc-function)\\n(setq eldoc-echo-area-use-multiline-p nil)\\n```\\n\\nBut still no effect... Am I missing something?\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Help needed] Force Eldoc to use single line\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdefjd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563204675.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love Eldoc, it\\u0026#39;s handy and helpful and makes Emacs look much more intelligent. However, oftentimes the multiline documentation really interferes with my sight and workflow and I\\u0026#39;d like to force it fit under one-line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s the configuration I have tried:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(setq eldoc-echo-area-use-multiline-p nil)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAccording to Emacs doc: \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIf value is nil, messages are always truncated to fit in a single line of display in the echo area. Function or variable symbol name may be truncated to make more of the arglist or documentation string visible. \\u003Cstrong\\u003ENote that this variable has no effect, unless \\u2018eldoc-documentation-function\\u2019 handles it explicitly\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESo I went ahead and did: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(add-function :before-until (local \\u0026#39;eldoc-documentation-function) \\n #\\u0026#39;prog-mode-eldoc-function)\\n(setq eldoc-echo-area-use-multiline-p nil)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut still no effect... Am I missing something?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"yay-evil\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdefjd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/cdefjd/help_needed_force_eldoc_to_use_single_line/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdefjd/help_needed_force_eldoc_to_use_single_line/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563175875.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"No, not carpal tunnel syndrome.\\n\\nI've been an active emacs user for the past 3 years. Before that, I was an avid vim user for almost 10 years. What made me switch? Emacs in simply put, superior. (I still indulge in the \\\"hjkl\\\"-waltz from time to time, especially over ssh)\\n\\nAnyway, on the topic of this post: Has the usage of emacs brought you any positive or negative side effects?\\n\\nI started to take violin lessons a little less than a year ago. Let's just say my teacher has been in awe every time she has introduced me to some technique that requires finger dexterity, as in speed and independent movement. Basically, we have skipped almost all the drills and excercises she has to usually go through with students to build the necessary strength and dexterity in the fingers. To me, it all just felt like natural movements, but my teacher asked me repeatedly if I had played the violin before (which I have not).\\n\\nTo not make this too much of a humblebrag, let's my sense of rythm still sucks and my bowing leaves a lot to desire.\\n\\nI personally attribute my finger strength and dexterity to the fact that I touch type (110 wpm) and use emacs daily. The \\\"emacs pinky\\\" is perhaps the greatest gift I have gotten from emacs. I could cut diamonds with it.\\n\\nHave you had any similar experiences?\", \"author_fullname\": \"t2_btsnx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Unexpected side-effects of using emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cddxfc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 25, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 25, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563200865.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, not carpal tunnel syndrome.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been an active emacs user for the past 3 years. Before that, I was an avid vim user for almost 10 years. What made me switch? Emacs in simply put, superior. (I still indulge in the \\u0026quot;hjkl\\u0026quot;-waltz from time to time, especially over ssh)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway, on the topic of this post: Has the usage of emacs brought you any positive or negative side effects?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI started to take violin lessons a little less than a year ago. Let\\u0026#39;s just say my teacher has been in awe every time she has introduced me to some technique that requires finger dexterity, as in speed and independent movement. Basically, we have skipped almost all the drills and excercises she has to usually go through with students to build the necessary strength and dexterity in the fingers. To me, it all just felt like natural movements, but my teacher asked me repeatedly if I had played the violin before (which I have not).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo not make this too much of a humblebrag, let\\u0026#39;s my sense of rythm still sucks and my bowing leaves a lot to desire.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI personally attribute my finger strength and dexterity to the fact that I touch type (110 wpm) and use emacs daily. The \\u0026quot;emacs pinky\\u0026quot; is perhaps the greatest gift I have gotten from emacs. I could cut diamonds with it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHave you had any similar experiences?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cddxfc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"The_Kilo\", \"num_crossposts\": 0, \"num_comments\": 43, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cddxfc/unexpected_sideeffects_of_using_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cddxfc/unexpected_sideeffects_of_using_emacs/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563172065.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_1s3m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-mode can be setup to hide the emphasis characters so that /a/ will show up as just an italic 'a'\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdd5e9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563195428.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"emacs.stackexchange.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdd5e9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dharmatech\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdd5e9/orgmode_can_be_setup_to_hide_the_emphasis/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://emacs.stackexchange.com/questions/51593/hide-slashes-in-italic-text\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563166628.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As titled. Lately, I've been getting suggestions to use Emacs 27 (particularly because of the improved JSON parsing that makes LSP smoother, if I'm not mistaken). I'd like to know how I can maintain my Emacs 27: **Do I perform a daily git pull? Do I uninstall and rebuild it on a regular basis to keep myself up to date?**\\n\\n\\u0026#x200B;\\n\\nFinally, since I'm on macOS this is the current command I'm using to get Emacs 27:\\n\\n`brew install --fetch-HEAD emacs-plus --without-spacemacs-icon --HEAD --without-multicolor-fonts --with-no-frame-refocus --with-jansson`\\n\\n\\u0026#x200B;\\n\\nI'm not really an expert in building software from source, so I'd love to know the difference between `--fetch-HEAD` and `--HEAD`, also the reason to use `emacs-plus` instead of normal `emacs.`\\n\\n\\u0026#x200B;\\n\\n*Thank you for the time.*\\n\\n\\u0026#x200B;\\n\\n**Edit**: Also, I'm not sure if this is a psychological effect, but I do feel that Emacs 27 is snappier. Does anyone experience the same?\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I maintain Emacs 27?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdcdwj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 28, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 28, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563162371.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563190435.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs titled. Lately, I\\u0026#39;ve been getting suggestions to use Emacs 27 (particularly because of the improved JSON parsing that makes LSP smoother, if I\\u0026#39;m not mistaken). I\\u0026#39;d like to know how I can maintain my Emacs 27: \\u003Cstrong\\u003EDo I perform a daily git pull? Do I uninstall and rebuild it on a regular basis to keep myself up to date?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally, since I\\u0026#39;m on macOS this is the current command I\\u0026#39;m using to get Emacs 27:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ebrew install --fetch-HEAD emacs-plus --without-spacemacs-icon --HEAD --without-multicolor-fonts --with-no-frame-refocus --with-jansson\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not really an expert in building software from source, so I\\u0026#39;d love to know the difference between \\u003Ccode\\u003E--fetch-HEAD\\u003C/code\\u003E and \\u003Ccode\\u003E--HEAD\\u003C/code\\u003E, also the reason to use \\u003Ccode\\u003Eemacs-plus\\u003C/code\\u003E instead of normal \\u003Ccode\\u003Eemacs.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EThank you for the time.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit\\u003C/strong\\u003E: Also, I\\u0026#39;m not sure if this is a psychological effect, but I do feel that Emacs 27 is snappier. Does anyone experience the same?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"yay-evil\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdcdwj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 44, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/cdcdwj/how_do_i_maintain_emacs_27/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdcdwj/how_do_i_maintain_emacs_27/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563161635.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm having some trouble getting links to work. All of the other capture templates are working, but when I press \\\"l\\\" for link, it doesn't prompt me for the link. It goes straight to \\\"Description\\\" and then if I press enter, it says no link was provided. Reading through the docs, `%^L` should cause the prompt to appear but it does not.\\n\\nDoes anyone have thoughts on what might be the problem? Here are all of my templates:\\n\\n (setq org-capture-templates\\n '((\\\"a\\\" \\\"Appointment\\\" entry (file+headline \\\"~/Google Drive/files/orgfiles/gcal.org\\\" \\\"Appointments\\\")\\n \\\"* TODO %?\\\\n:PROPERTIES:\\\\n\\\\n:END:\\\\nDEADLINE: %^T \\\\n %i\\\\n\\\")\\n (\\\"n\\\" \\\"Note\\\" entry (file+headline \\\"~/Google Drive/files/orgfiles/notes.org\\\" \\\"Notes\\\")\\n \\\"* Note %?\\\\n%T\\\")\\n (\\\"l\\\" \\\"Link\\\" entry (file+headline \\\"~/Google Drive/files/orgfiles/links.org\\\" \\\"Links\\\") \\n \\\"* %? %^L %^g \\\\n%T\\\" :prepend t)\\n (\\\"b\\\" \\\"Blog idea\\\" entry (file+headline \\\"~/Google Drive/files/orgfiles/i.org\\\" \\\"Blog Topics\\\")\\n \\\"* %?\\\\n%T\\\" :prepend t)\\n (\\\"t\\\" \\\"To Do Item\\\" entry (file+headline \\\"~/Google Drive/files/orgfiles/i.org\\\" \\\"To Do Items\\\")\\n \\\"* %?\\\\n%T\\\" :prepend t)\\n (\\\"j\\\" \\\"Journal\\\" entry (file+datetree \\\"~/Google Drive/files/journal.org\\\" \\\"Journal\\\")\\n \\\"* %?\\\\nEntered on %U\\\\n %i\\\\n %a\\\")))\", \"author_fullname\": \"t2_ifxn5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Trouble with org-capture\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdbz56\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563159308.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563187889.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m having some trouble getting links to work. All of the other capture templates are working, but when I press \\u0026quot;l\\u0026quot; for link, it doesn\\u0026#39;t prompt me for the link. It goes straight to \\u0026quot;Description\\u0026quot; and then if I press enter, it says no link was provided. Reading through the docs, \\u003Ccode\\u003E%^L\\u003C/code\\u003E should cause the prompt to appear but it does not.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have thoughts on what might be the problem? Here are all of my templates:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-capture-templates\\n \\u0026#39;((\\u0026quot;a\\u0026quot; \\u0026quot;Appointment\\u0026quot; entry (file+headline \\u0026quot;~/Google Drive/files/orgfiles/gcal.org\\u0026quot; \\u0026quot;Appointments\\u0026quot;)\\n \\u0026quot;* TODO %?\\\\n:PROPERTIES:\\\\n\\\\n:END:\\\\nDEADLINE: %^T \\\\n %i\\\\n\\u0026quot;)\\n (\\u0026quot;n\\u0026quot; \\u0026quot;Note\\u0026quot; entry (file+headline \\u0026quot;~/Google Drive/files/orgfiles/notes.org\\u0026quot; \\u0026quot;Notes\\u0026quot;)\\n \\u0026quot;* Note %?\\\\n%T\\u0026quot;)\\n (\\u0026quot;l\\u0026quot; \\u0026quot;Link\\u0026quot; entry (file+headline \\u0026quot;~/Google Drive/files/orgfiles/links.org\\u0026quot; \\u0026quot;Links\\u0026quot;) \\n \\u0026quot;* %? %^L %^g \\\\n%T\\u0026quot; :prepend t)\\n (\\u0026quot;b\\u0026quot; \\u0026quot;Blog idea\\u0026quot; entry (file+headline \\u0026quot;~/Google Drive/files/orgfiles/i.org\\u0026quot; \\u0026quot;Blog Topics\\u0026quot;)\\n \\u0026quot;* %?\\\\n%T\\u0026quot; :prepend t)\\n (\\u0026quot;t\\u0026quot; \\u0026quot;To Do Item\\u0026quot; entry (file+headline \\u0026quot;~/Google Drive/files/orgfiles/i.org\\u0026quot; \\u0026quot;To Do Items\\u0026quot;)\\n \\u0026quot;* %?\\\\n%T\\u0026quot; :prepend t)\\n (\\u0026quot;j\\u0026quot; \\u0026quot;Journal\\u0026quot; entry (file+datetree \\u0026quot;~/Google Drive/files/journal.org\\u0026quot; \\u0026quot;Journal\\u0026quot;)\\n \\u0026quot;* %?\\\\nEntered on %U\\\\n %i\\\\n %a\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdbz56\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Limeoats\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdbz56/trouble_with_orgcapture/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdbz56/trouble_with_orgcapture/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563159089.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I use easymotion extensively. I can't seem to figure out how to enable my usual usage of it by default in Ibuffer and Dired (though evil mode works fine). Please help? \\n\\nThis would make both of these modes that much more efficient.\", \"author_fullname\": \"t2_40haza1m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I have Evil-Easymotion enabled by default in Ibuffer and Dired?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdbrjc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563186620.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use easymotion extensively. I can\\u0026#39;t seem to figure out how to enable my usual usage of it by default in Ibuffer and Dired (though evil mode works fine). Please help? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis would make both of these modes that much more efficient.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdbrjc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Altanonac\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdbrjc/how_can_i_have_evileasymotion_enabled_by_default/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdbrjc/how_can_i_have_evileasymotion_enabled_by_default/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563157820.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"```\\nfun1();\\nfun2();\\n...\\nfun999999();\\n```\", \"author_fullname\": \"t2_1rpvrrin\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"how to generate such function list?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cdawxs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563181701.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003E\\nfun1();\\nfun2();\\n...\\nfun999999();\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdawxs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"FirstLoveLife\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cdawxs/how_to_generate_such_function_list/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cdawxs/how_to_generate_such_function_list/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563152901.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi All,\\n\\n\\u0026#x200B;\\n\\nI put together the first cut of an elisp-koans library because I wanted to learn elisp: [https://github.com/jtmoulia/elisp-koans](https://github.com/jtmoulia/elisp-koans)\\n\\n\\u0026#x200B;\\n\\nThis follows the other koan libraries where you learn a language by fixing suites of tests that describe the syntax and evironment. At the moment with elisp-koans you can fix tests, run them, and review the output in an org buffer.\\n\\n\\u0026#x200B;\\n\\nI've been porting the tests over from [Common Lisp Koans](https://github.com/google/lisp-koans) and am still getting familiar with elisp so it uses a lot of the CL functions. Over time I'll make it more elisp-y.\\n\\n\\u0026#x200B;\\n\\nI'll continue to work on this, and perhaps someone finds it useful.\", \"author_fullname\": \"t2_264dh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Starting elisp-koans library for learning Emacs Lisp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cd9akl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 34, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 34, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563172523.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi All,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI put together the first cut of an elisp-koans library because I wanted to learn elisp: \\u003Ca href=\\\"https://github.com/jtmoulia/elisp-koans\\\"\\u003Ehttps://github.com/jtmoulia/elisp-koans\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis follows the other koan libraries where you learn a language by fixing suites of tests that describe the syntax and evironment. At the moment with elisp-koans you can fix tests, run them, and review the output in an org buffer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been porting the tests over from \\u003Ca href=\\\"https://github.com/google/lisp-koans\\\"\\u003ECommon Lisp Koans\\u003C/a\\u003E and am still getting familiar with elisp so it uses a lot of the CL functions. Over time I\\u0026#39;ll make it more elisp-y.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ll continue to work on this, and perhaps someone finds it useful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd9akl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jtmoulia\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cd9akl/starting_elispkoans_library_for_learning_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cd9akl/starting_elispkoans_library_for_learning_emacs/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563143723.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello fellow Emacs users,\\n\\nI have been writing some Latex recently and i have been using the TexMaker IDE due to lack of time customizing my Emacs config.\\n\\nAfter making some research i did not find a good guide to show me a basic good setup for Latex on Emacs.\\n\\nI would like to ask for your help to guide me fellow Emacs users.\\n\\nEDIT: Fixed Typo\\n\\nSecond EDIT: Thanks for all the info guys i appreciate the feedback i have been using already pdf tools and i did not think latex and pdf tools would work together. I will check your suggestions and post my final setup with a final edit.\", \"author_fullname\": \"t2_1nib5fhm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make Emacs a Latex IDE?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cd6fe2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563195541.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563158042.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello fellow Emacs users,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been writing some Latex recently and i have been using the TexMaker IDE due to lack of time customizing my Emacs config.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter making some research i did not find a good guide to show me a basic good setup for Latex on Emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to ask for your help to guide me fellow Emacs users.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Fixed Typo\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESecond EDIT: Thanks for all the info guys i appreciate the feedback i have been using already pdf tools and i did not think latex and pdf tools would work together. I will check your suggestions and post my final setup with a final edit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd6fe2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tech_addictede\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cd6fe2/how_to_make_emacs_a_latex_ide/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cd6fe2/how_to_make_emacs_a_latex_ide/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563129242.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, I am having an issue w/clocking. After digging around, it seems to be related to the clocking commands I borrowed from this [http://doc.norang.ca/org-mode.html](http://doc.norang.ca/org-mode.html). (someone w/similar issue here: [https://stackoverflow.com/questions/21767471/org-capture-and-time-clocking-misbehaving](https://stackoverflow.com/questions/21767471/org-capture-and-time-clocking-misbehaving)\\n\\n\\u0026#x200B;\\n\\nBut even after I deleted all code I borrowed from the norang website, emacs still thinks it's there and continues to return the error \\\"symbol's value as variable is void: bh\\\\\\\\keep-clock-running\\\". So I went and cleared out all the stuff in my .emacs except for basic things like repositories, and emacs still thinks all my settings are intact. in fact, it keeps initially loading a theme I was using before, before it gets to loading the theme I'm using now. \\n\\n\\u0026#x200B;\\n\\nHow do I get rid of these settings? \\n\\n\\u0026#x200B;\\n\\nThanks!\", \"author_fullname\": \"t2_hy9o0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help w/clocking issue and settings that persist after having been deleted\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cd5ywv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563155712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I am having an issue w/clocking. After digging around, it seems to be related to the clocking commands I borrowed from this \\u003Ca href=\\\"http://doc.norang.ca/org-mode.html\\\"\\u003Ehttp://doc.norang.ca/org-mode.html\\u003C/a\\u003E. (someone w/similar issue here: \\u003Ca href=\\\"https://stackoverflow.com/questions/21767471/org-capture-and-time-clocking-misbehaving\\\"\\u003Ehttps://stackoverflow.com/questions/21767471/org-capture-and-time-clocking-misbehaving\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut even after I deleted all code I borrowed from the norang website, emacs still thinks it\\u0026#39;s there and continues to return the error \\u0026quot;symbol\\u0026#39;s value as variable is void: bh\\\\keep-clock-running\\u0026quot;. So I went and cleared out all the stuff in my .emacs except for basic things like repositories, and emacs still thinks all my settings are intact. in fact, it keeps initially loading a theme I was using before, before it gets to loading the theme I\\u0026#39;m using now. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I get rid of these settings? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd5ywv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tiktaaliki\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cd5ywv/help_wclocking_issue_and_settings_that_persist/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cd5ywv/help_wclocking_issue_and_settings_that_persist/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563126912.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have a folder with a bunch of .org files, and I wanted to publish a subset of them as html files... So I ended up doing something like this:\\n\\n (setq org-publish-project-alist\\n '(\\n \\t(\\\"homepage\\\"\\n \\t :base-directory \\\"~/Org/\\\"\\n \\t :base-extension \\\"dummy\\\"\\n \\t :include (\\\"export_file_1.org\\\" \\\"export_file_2.org\\\" \\\"export_file_3.org\\\")\\n \\t :recursive nil\\n \\t :publishing-directory \\\"~/public_html/\\\"\\n \\t :publishing-function org-html-publish-to-html\\n \\t )\\n \\t)\\n )\\n\\nThis seems rather hacky to me, as I would prefer to use `:base-extension` in the intended way, but unfortunately this here did not work:\\n\\n (setq org-publish-project-alist\\n '(\\n \\t(\\\"homepage\\\"\\n \\t :base-directory \\\"~/Org/\\\"\\n \\t :base-extension \\\"org\\\"\\n \\t :exclude (\\\"dont_export_file_1.org\\\" \\\"dont_export_file_2.org\\\")\\n \\t :recursive nil\\n \\t :publishing-directory \\\"~/public_html/\\\"\\n \\t :publishing-function org-html-publish-to-html\\n \\t )\\n \\t)\\n )\\n\\nThe reason is that `:exclude` takes a string or regexp, while `:include` needs a list. Am I the only one who thinks this is a bad design choice? And how would I correctly use a string to exclude a list of files?\", \"author_fullname\": \"t2_eb9f4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-publish-project-alist - \\\":include\\\" and \\\":exclude\\\" properties. Why is one a string and one a list?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cd5mrp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563450525.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563153965.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a folder with a bunch of .org files, and I wanted to publish a subset of them as html files... So I ended up doing something like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-publish-project-alist\\n \\u0026#39;(\\n (\\u0026quot;homepage\\u0026quot;\\n :base-directory \\u0026quot;~/Org/\\u0026quot;\\n :base-extension \\u0026quot;dummy\\u0026quot;\\n :include (\\u0026quot;export_file_1.org\\u0026quot; \\u0026quot;export_file_2.org\\u0026quot; \\u0026quot;export_file_3.org\\u0026quot;)\\n :recursive nil\\n :publishing-directory \\u0026quot;~/public_html/\\u0026quot;\\n :publishing-function org-html-publish-to-html\\n )\\n )\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis seems rather hacky to me, as I would prefer to use \\u003Ccode\\u003E:base-extension\\u003C/code\\u003E in the intended way, but unfortunately this here did not work:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E (setq org-publish-project-alist\\n \\u0026#39;(\\n (\\u0026quot;homepage\\u0026quot;\\n :base-directory \\u0026quot;~/Org/\\u0026quot;\\n :base-extension \\u0026quot;org\\u0026quot;\\n :exclude (\\u0026quot;dont_export_file_1.org\\u0026quot; \\u0026quot;dont_export_file_2.org\\u0026quot;)\\n :recursive nil\\n :publishing-directory \\u0026quot;~/public_html/\\u0026quot;\\n :publishing-function org-html-publish-to-html\\n )\\n )\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe reason is that \\u003Ccode\\u003E:exclude\\u003C/code\\u003E takes a string or regexp, while \\u003Ccode\\u003E:include\\u003C/code\\u003E needs a list. Am I the only one who thinks this is a bad design choice? And how would I correctly use a string to exclude a list of files?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd5mrp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Knusper2000\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cd5mrp/orgpublishprojectalist_include_and_exclude/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cd5mrp/orgpublishprojectalist_include_and_exclude/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563125165.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Correct me if I'm wrong, but VSCode just feels snappier while navigating, autocompleting and other stuff. Emacs sometimes **flickers** or **lags** and these little things really add up to my disappointment sometimes. I am currently really torn apart between these 2 editors.\\n\\n\\u0026#x200B;\\n\\n**Edit**: I'm using Emacs 26.2 on macOS. I use lsp-mode and its respective LSP servers for coding in JS, C, Python, and Java.\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why does VSCode have better performance?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cd53b6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 44, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 44, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563126897.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563151285.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": true, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECorrect me if I\\u0026#39;m wrong, but VSCode just feels snappier while navigating, autocompleting and other stuff. Emacs sometimes \\u003Cstrong\\u003Eflickers\\u003C/strong\\u003E or \\u003Cstrong\\u003Elags\\u003C/strong\\u003E and these little things really add up to my disappointment sometimes. I am currently really torn apart between these 2 editors.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit\\u003C/strong\\u003E: I\\u0026#39;m using Emacs 26.2 on macOS. I use lsp-mode and its respective LSP servers for coding in JS, C, Python, and Java.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"yay-evil\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd53b6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 61, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/cd53b6/why_does_vscode_have_better_performance/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cd53b6/why_does_vscode_have_better_performance/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563122485.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"hi\\nmy tables in org mode dose not align properly\\ni had this problem with emacs when I installed it from arch repo so I build emacs from source but that did not change anything\", \"author_fullname\": \"t2_3kqn07w2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org mode tables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cd465t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563146448.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehi\\nmy tables in org mode dose not align properly\\ni had this problem with emacs when I installed it from arch repo so I build emacs from source but that did not change anything\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd465t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"k00rosh\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cd465t/org_mode_tables/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cd465t/org_mode_tables/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563117648.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi everybody,\\n\\n\\u0026#x200B;\\n\\nCompletely new to elisp... I am trying to break to a new line after the end of a sentence in LaTeX (AUCtex). For that porpose I have defined:\\n\\n\\u0026#x200B;\\n\\n`(defun check-new-sentence-at-point ()`\\n\\n `\\\"Check if at we are at a point with two previous characters '. '\\\"`\\n\\n `(interactive)`\\n\\n `(let ((chs (buffer-substring (point) (- (point) 2))))`\\n\\n `(string= chs \\\". \\\")`\\n\\n `)`\\n\\n `)`\\n\\n`(defun my-LaTeX-fill-by-sentence ()`\\n\\n `(if (check-new-sentence-at-point)`\\n\\n`;; Break at a sentence`\\n\\n`(progn`\\n\\n`(newline)`\\n\\n`t)`\\n\\n `;; Fall back to the default`\\n\\n `(do-auto-fill)))`\\n\\n`(setq auto-fill-function 'my-LaTeX-fill-by-sentence))`\\n\\n\\u0026#x200B;\\n\\nThe problem is that this code snipped enters in some recursive call, although I cannot understand how. Any ideas?\", \"author_fullname\": \"t2_ct7nv5k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Recursive behavior when using auto-fill-function\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cd1wke\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563131833.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everybody,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECompletely new to elisp... I am trying to break to a new line after the end of a sentence in LaTeX (AUCtex). For that porpose I have defined:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(defun check-new-sentence-at-point ()\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026quot;Check if at we are at a point with two previous characters \\u0026#39;. \\u0026#39;\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(interactive)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(let ((chs (buffer-substring (point) (- (point) 2))))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(string= chs \\u0026quot;. \\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(defun my-LaTeX-fill-by-sentence ()\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(if (check-new-sentence-at-point)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E;; Break at a sentence\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(progn\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(newline)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Et)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E;; Fall back to the default\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(do-auto-fill)))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(setq auto-fill-function \\u0026#39;my-LaTeX-fill-by-sentence))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe problem is that this code snipped enters in some recursive call, although I cannot understand how. Any ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd1wke\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"shiroghost\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cd1wke/recursive_behavior_when_using_autofillfunction/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cd1wke/recursive_behavior_when_using_autofillfunction/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563103033.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When I try to import a module with pyls, the results of autocompletion is presented with a list of arguments. \\n\\nThis does not happen with mspyls, is there anyway to turn this off for pyls?\\nThanks\\n\\n[Import render_template in flask](https://www.dropbox.com/s/5siuu3tnwylsg2a/Capture.PNG?dl=0)\\n\\n[Import render_template in flask](https://www.dropbox.com/s/r4rg4k7l8j7es2y/Capture2.PNG?dl=0)\", \"author_fullname\": \"t2_r67df\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Problem with pyls import\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccy448\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563163165.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563102037.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I try to import a module with pyls, the results of autocompletion is presented with a list of arguments. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis does not happen with mspyls, is there anyway to turn this off for pyls?\\nThanks\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.dropbox.com/s/5siuu3tnwylsg2a/Capture.PNG?dl=0\\\"\\u003EImport render_template in flask\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.dropbox.com/s/r4rg4k7l8j7es2y/Capture2.PNG?dl=0\\\"\\u003EImport render_template in flask\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccy448\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hainguyenac\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccy448/problem_with_pyls_import/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccy448/problem_with_pyls_import/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563073237.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I was told to post this here because people might find it useful. I wrote a \\\\[back end\\\\]([https://github.com/jlumpe/ox-json/](https://github.com/jlumpe/ox-json/)) for Org mode's export feature that dumps the entire document structure to a JSON file. It pretty much includes all the information in the parse tree you get from \\\\`(org-element-parse-buffer)\\\\`. I'm working on a few more features like agenda export but it's pretty usable right now.\", \"author_fullname\": \"t2_4z2xq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I made a JSON export back end for Org mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccwl4r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 58, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 58, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563092479.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was told to post this here because people might find it useful. I wrote a [back end](\\u003Ca href=\\\"https://github.com/jlumpe/ox-json/\\\"\\u003Ehttps://github.com/jlumpe/ox-json/\\u003C/a\\u003E) for Org mode\\u0026#39;s export feature that dumps the entire document structure to a JSON file. It pretty much includes all the information in the parse tree you get from `(org-element-parse-buffer)`. I\\u0026#39;m working on a few more features like agenda export but it\\u0026#39;s pretty usable right now.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccwl4r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Jumpy89\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccwl4r/i_made_a_json_export_back_end_for_org_mode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccwl4r/i_made_a_json_export_back_end_for_org_mode/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563063679.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello, r/emacs! I'd like to rebind the Control and Meta keys to F1 and F2, respectively. I find it easier to press those keys with the way I type. If it's important, my OS is Windows. Is there any way to do this?\\n\\nThanks!\", \"author_fullname\": \"t2_29n348pw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can I rebind the Meta and Control keys?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccw3vz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563089693.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, \\u003Ca href=\\\"/r/emacs\\\"\\u003Er/emacs\\u003C/a\\u003E! I\\u0026#39;d like to rebind the Control and Meta keys to F1 and F2, respectively. I find it easier to press those keys with the way I type. If it\\u0026#39;s important, my OS is Windows. Is there any way to do this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccw3vz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"StrictShepherd\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccw3vz/can_i_rebind_the_meta_and_control_keys/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccw3vz/can_i_rebind_the_meta_and_control_keys/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563060893.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\n\\u0026#x200B;\\n\\nI am using EXWM and two monitors that act as one big screen. The issue with this approach is the following:\\n\\nI typically have four to six buffers next to each other. Those all share one echo area/minibuffer that spans both monitors. When I now try to open a file or run a command, the minibuffer or echo area starts under the leftmost buffer, which is inconvenient when I am currently working in the rightmost buffer.\\n\\n\\u0026#x200B;\\n\\nIs there any way to split the echo area/minibuffer so that the output appears under the currently active buffer?\\n\\n\\u0026#x200B;\\n\\nThanks for any advise.\", \"author_fullname\": \"t2_u4ftd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Split echo area/minibuffer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccvna7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563087062.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am using EXWM and two monitors that act as one big screen. The issue with this approach is the following:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI typically have four to six buffers next to each other. Those all share one echo area/minibuffer that spans both monitors. When I now try to open a file or run a command, the minibuffer or echo area starts under the leftmost buffer, which is inconvenient when I am currently working in the rightmost buffer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way to split the echo area/minibuffer so that the output appears under the currently active buffer?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any advise.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccvna7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"medaron\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccvna7/split_echo_areaminibuffer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccvna7/split_echo_areaminibuffer/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563058262.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Using macros, advice, and predicates we can approximate a form of typing ---similar to [https://docs.racket-lang.org/ts-guide/types.html](https://docs.racket-lang.org/ts-guide/types.html). For example, the following fictitious syntax would add advice to `f` that checks the optional arguments `x_i` have type `ot_i` and mandatory arguments have type `t_i` according to position and the result of the computation is of type `tt`.\\n\\n (declare-type 'f ((:x\\u2081 ot\\u2081) \\u2026 (:x\\u2098 ot\\u2098)) (t\\u2081 \\u2026 t\\u2099 tt) )\\n\\nHas anyone done this for ELisp? Is there a reason why this is not desirable? I'd be willing to do this; would there be interest?\", \"author_fullname\": \"t2_1pko65xw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Functional type declarations in Elisp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cct5hp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563073916.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsing macros, advice, and predicates we can approximate a form of typing ---similar to \\u003Ca href=\\\"https://docs.racket-lang.org/ts-guide/types.html\\\"\\u003Ehttps://docs.racket-lang.org/ts-guide/types.html\\u003C/a\\u003E. For example, the following fictitious syntax would add advice to \\u003Ccode\\u003Ef\\u003C/code\\u003E that checks the optional arguments \\u003Ccode\\u003Ex_i\\u003C/code\\u003E have type \\u003Ccode\\u003Eot_i\\u003C/code\\u003E and mandatory arguments have type \\u003Ccode\\u003Et_i\\u003C/code\\u003E according to position and the result of the computation is of type \\u003Ccode\\u003Ett\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(declare-type \\u0026#39;f ((:x\\u2081 ot\\u2081) \\u2026 (:x\\u2098 ot\\u2098)) (t\\u2081 \\u2026 t\\u2099 tt) )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHas anyone done this for ELisp? Is there a reason why this is not desirable? I\\u0026#39;d be willing to do this; would there be interest?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cct5hp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moseswithhisbooks\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cct5hp/functional_type_declarations_in_elisp/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cct5hp/functional_type_declarations_in_elisp/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563045116.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Seems like https://elpa.gnu.org is down, not just website, but also repositories.\\n\\n`gnutls-cli -p 443 elpa.gnu.org` gives `Connection refused`\", \"author_fullname\": \"t2_9s3ua\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Elpa down\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccrxk9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563134538.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563067774.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESeems like \\u003Ca href=\\\"https://elpa.gnu.org\\\"\\u003Ehttps://elpa.gnu.org\\u003C/a\\u003E is down, not just website, but also repositories.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Egnutls-cli -p 443 elpa.gnu.org\\u003C/code\\u003E gives \\u003Ccode\\u003EConnection refused\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccrxk9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gutigen\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccrxk9/elpa_down/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccrxk9/elpa_down/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563038974.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_l4cuh47\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Here's How to Open a Terminal App in Your Current Emacs Working Directory\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccr8fu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563064107.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"dougie.io\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccr8fu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dougie-io\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccr8fu/heres_how_to_open_a_terminal_app_in_your_current/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://dougie.io/emacs/open-directory-in-terminal-app/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563035307.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \" I use `(exwm-input-set-key (kbd \\\"\\u003CM-SPC\\u003E\\\") 'helm-exwm)`\\n\\nand it works perfectly fine.\\n\\nHowever, I tried `(exwm-input-set-key (kbd \\\"\\u003CS-SPC\\u003E\\\") 'helm-run-external-command)` and it doesn't seems to work.\\n\\nHow do I make it work?\", \"author_fullname\": \"t2_3ixmiy8z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Exwm refuses to bind key chords involving S-SPC\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccqu9l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563061992.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use \\u003Ccode\\u003E(exwm-input-set-key (kbd \\u0026quot;\\u0026lt;M-SPC\\u0026gt;\\u0026quot;) \\u0026#39;helm-exwm)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand it works perfectly fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I tried \\u003Ccode\\u003E(exwm-input-set-key (kbd \\u0026quot;\\u0026lt;S-SPC\\u0026gt;\\u0026quot;) \\u0026#39;helm-run-external-command)\\u003C/code\\u003E and it doesn\\u0026#39;t seems to work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I make it work?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccqu9l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"forppinrange\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccqu9l/exwm_refuses_to_bind_key_chords_involving_sspc/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccqu9l/exwm_refuses_to_bind_key_chords_involving_sspc/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563033192.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Vimish fold [https://github.com/mrkkrp/vimish-fold](https://github.com/mrkkrp/vimish-fold) is a cool Emacs package for creating folds like in Vim. I don't use it anymore because my editing style has changed, so I'm looking for someone to hand it over. Contact me via GitHub issues if you're interested.\\n\\n\\u0026#x200B;\\n\\nThanks\", \"author_fullname\": \"t2_rejvu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Vimish fold is looking for new maintainer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccpd3b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563053473.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVimish fold \\u003Ca href=\\\"https://github.com/mrkkrp/vimish-fold\\\"\\u003Ehttps://github.com/mrkkrp/vimish-fold\\u003C/a\\u003E is a cool Emacs package for creating folds like in Vim. I don\\u0026#39;t use it anymore because my editing style has changed, so I\\u0026#39;m looking for someone to hand it over. Contact me via GitHub issues if you\\u0026#39;re interested.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccpd3b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mrkkrp\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccpd3b/vimish_fold_is_looking_for_new_maintainer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccpd3b/vimish_fold_is_looking_for_new_maintainer/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563024673.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I just recently found out about edebug, however i'm not sure if i can use it to debug functions from packages.\\n\\n\\u0026#x200B;\\n\\nI first tried it with a custom test function in the \\\"scratch\\\" window by: \\n\\n1. Placed cursor at the end of the function definition and executed `edebug-defun`\\n2. In the same place executed `edebug-on-entry`\\n3. Executed the function call.\\n\\nThis seemed to work, and it jumped straight to the function definition with a little arrow on the side and i could walk through the lines seeing what was executed and what was returned in the mini buffer. \\n\\n\\u0026#x200B;\\n\\nThen i tried to debug a function in an emacs package \\\".el\\\" file. It was throwing an error when i turned on the mode of that package, so i tracked down the function that is throwing the error and did the same steps as in the scratch window on that function. When i turned on the mode of that package it threw an error, however this did not trigger the edebug to jump into the function definition. As i understand edebug will listen to the function calls that were picked by the user for debugging, so i would imagine that if it is called somewhere by something, it should trigger edebug to jump straight to the definition. I'm not very familiar with elisp, so maybe my assumptions are wrong. Any tips?\", \"author_fullname\": \"t2_12tw9s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Edebug on melpa packages\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccpb8a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563053132.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just recently found out about edebug, however i\\u0026#39;m not sure if i can use it to debug functions from packages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI first tried it with a custom test function in the \\u0026quot;scratch\\u0026quot; window by: \\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EPlaced cursor at the end of the function definition and executed \\u003Ccode\\u003Eedebug-defun\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EIn the same place executed \\u003Ccode\\u003Eedebug-on-entry\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EExecuted the function call.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis seemed to work, and it jumped straight to the function definition with a little arrow on the side and i could walk through the lines seeing what was executed and what was returned in the mini buffer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen i tried to debug a function in an emacs package \\u0026quot;.el\\u0026quot; file. It was throwing an error when i turned on the mode of that package, so i tracked down the function that is throwing the error and did the same steps as in the scratch window on that function. When i turned on the mode of that package it threw an error, however this did not trigger the edebug to jump into the function definition. As i understand edebug will listen to the function calls that were picked by the user for debugging, so i would imagine that if it is called somewhere by something, it should trigger edebug to jump straight to the definition. I\\u0026#39;m not very familiar with elisp, so maybe my assumptions are wrong. Any tips?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccpb8a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Hxfhjkl\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccpb8a/edebug_on_melpa_packages/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccpb8a/edebug_on_melpa_packages/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563024332.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_6it00\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"so-long (Mitigating slowness due to extremely long lines) is now in the Emacs master branch\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccoksw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 114, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 114, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563048123.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccoksw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dakra\", \"num_crossposts\": 0, \"num_comments\": 22, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccoksw/solong_mitigating_slowness_due_to_extremely_long/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/emacs-mirror/emacs/commit/4ac905f88f10439ca0795b217a046e3a62895fc4\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563019323.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm a freelance developer and log all my times in org-mode.\\nThis is useful as I can simply do an `org-clock-report`\\nto invoice clients and have an overview of what I did\\nlast month (or each day with `:step day`) etc.\\n\\nBut I somehow miss a query language where I can\\ndo more than just looking at the agenda or clock-reports.\\n\\nSome examples I would like to know are:\\n\\n- Show me how many hours I spend per week in a task with a certain tag (e.g. meeting)\\n- Show me the datetime of the first clock-in and last clock-out per day (per project/file) so I can see when I started working and when I ended.\\n- Show me all projects (which is a task that has sub-tasks, so the clock from the sub-tasks should be included) where I worked more than X hours on.\\n\\n\\nI asked the question /u/github-alphapapa in his nice\\n[org-ql](https://github.com/alphapapa/org-ql/issues/30) package\\nwhich is the closest what I could find to what I want.\", \"author_fullname\": \"t2_6it00\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you query your clocked org-mode items?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccoir3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563047705.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a freelance developer and log all my times in org-mode.\\nThis is useful as I can simply do an \\u003Ccode\\u003Eorg-clock-report\\u003C/code\\u003E\\nto invoice clients and have an overview of what I did\\nlast month (or each day with \\u003Ccode\\u003E:step day\\u003C/code\\u003E) etc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut I somehow miss a query language where I can\\ndo more than just looking at the agenda or clock-reports.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESome examples I would like to know are:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EShow me how many hours I spend per week in a task with a certain tag (e.g. meeting)\\u003C/li\\u003E\\n\\u003Cli\\u003EShow me the datetime of the first clock-in and last clock-out per day (per project/file) so I can see when I started working and when I ended.\\u003C/li\\u003E\\n\\u003Cli\\u003EShow me all projects (which is a task that has sub-tasks, so the clock from the sub-tasks should be included) where I worked more than X hours on.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI asked the question \\u003Ca href=\\\"/u/github-alphapapa\\\"\\u003E/u/github-alphapapa\\u003C/a\\u003E in his nice\\n\\u003Ca href=\\\"https://github.com/alphapapa/org-ql/issues/30\\\"\\u003Eorg-ql\\u003C/a\\u003E package\\nwhich is the closest what I could find to what I want.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccoir3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dakra\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccoir3/how_do_you_query_your_clocked_orgmode_items/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccoir3/how_do_you_query_your_clocked_orgmode_items/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1563018905.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"In brief, I'm hoping someone can either tell me this already exists (and I'm missing the search terms), or help create a minimum working version of this.\\n\\nI am aware that `global-set-key` can be invoked interactively. However, what I'm looking for is the exact same user interaction, ***but*** rather same simply storing the interactively set binding (for that session) \\u2014 I want a string/Sexp to be returned/output as text at current buffer location (e.g., `(global-set-key \\\"C-x M-5\\\" 'my-function)`), which then can be executed or wrote to a file.\\n\\n**Expected sequence of events:**\\n\\n1. User calls this `printout-global-set-key`\\n2. User enters a valid keystroke (heck, I'd be happy with invalid as well)\\n3. User searches available function for function to set\\n4. Sexp string is output at cursor position in current buffer\\n\\nI know it's possible to achieve tasks similar to this, for instance the [Org HTML keystroke function](https://emacs.stackexchange.com/questions/2206/i-want-to-have-the-kbd-tags-for-my-blog-written-in-org-mode/2208#2208). This allows one to input a key sequence and return a string.\\n\\nI find it odd that in all the features of Emacs, there isn't a \\\"send key sequence to string\\\". In fact, I would have thought `global-set-key`, when called interactively, would have something to yank as Sexp? Is there something that returns last command as Sexp?\\n\\nIf I haven't provided adequate information please let me know and I can expand my description. Any help is very much appreciated, and would be glad to buy a coffee for anyone with a solution!\", \"author_fullname\": \"t2_2t0oceit\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help creating an interactive function for binding keys (that outputs a Sexp)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccm20n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1562999193.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563027074.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn brief, I\\u0026#39;m hoping someone can either tell me this already exists (and I\\u0026#39;m missing the search terms), or help create a minimum working version of this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am aware that \\u003Ccode\\u003Eglobal-set-key\\u003C/code\\u003E can be invoked interactively. However, what I\\u0026#39;m looking for is the exact same user interaction, \\u003Cstrong\\u003E\\u003Cem\\u003Ebut\\u003C/em\\u003E\\u003C/strong\\u003E rather same simply storing the interactively set binding (for that session) \\u2014 I want a string/Sexp to be returned/output as text at current buffer location (e.g., \\u003Ccode\\u003E(global-set-key \\u0026quot;C-x M-5\\u0026quot; \\u0026#39;my-function)\\u003C/code\\u003E), which then can be executed or wrote to a file.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EExpected sequence of events:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EUser calls this \\u003Ccode\\u003Eprintout-global-set-key\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EUser enters a valid keystroke (heck, I\\u0026#39;d be happy with invalid as well)\\u003C/li\\u003E\\n\\u003Cli\\u003EUser searches available function for function to set\\u003C/li\\u003E\\n\\u003Cli\\u003ESexp string is output at cursor position in current buffer\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EI know it\\u0026#39;s possible to achieve tasks similar to this, for instance the \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/2206/i-want-to-have-the-kbd-tags-for-my-blog-written-in-org-mode/2208#2208\\\"\\u003EOrg HTML keystroke function\\u003C/a\\u003E. This allows one to input a key sequence and return a string.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI find it odd that in all the features of Emacs, there isn\\u0026#39;t a \\u0026quot;send key sequence to string\\u0026quot;. In fact, I would have thought \\u003Ccode\\u003Eglobal-set-key\\u003C/code\\u003E, when called interactively, would have something to yank as Sexp? Is there something that returns last command as Sexp?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I haven\\u0026#39;t provided adequate information please let me know and I can expand my description. Any help is very much appreciated, and would be glad to buy a coffee for anyone with a solution!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccm20n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SpacemacsMasterRace\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccm20n/help_creating_an_interactive_function_for_binding/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccm20n/help_creating_an_interactive_function_for_binding/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1562998274.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Since I sometimes accidentally yank-at-point by clicking my scroll wheel, I'd like to set that action to nil. I tried\\n\\n\\u0026#x200B;\\n\\n (global-unset-key (kbd \\\"\\u003Cdown-mouse-2\\u003E\\\"))\\n (global-unset-key (kbd \\\"\\u003Cmouse-2\\u003E\\\"))\\n\\n\\u0026#x200B;\\n\\nbut it has no effect. Does anyone know a workaround?\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Could not global-unset-key\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cclr8s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563024807.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESince I sometimes accidentally yank-at-point by clicking my scroll wheel, I\\u0026#39;d like to set that action to nil. I tried\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(global-unset-key (kbd \\u0026quot;\\u0026lt;down-mouse-2\\u0026gt;\\u0026quot;))\\n(global-unset-key (kbd \\u0026quot;\\u0026lt;mouse-2\\u0026gt;\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut it has no effect. Does anyone know a workaround?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"yay-evil\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cclr8s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/cclr8s/could_not_globalunsetkey/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cclr8s/could_not_globalunsetkey/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1562996007.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi guys,\\n\\n\\u0026#x200B;\\n\\ncouple of months ago I wrote [a blog post](https://write.as/dani/writing-a-phd-thesis-with-org-mode) about writing thesis with Org Mode. I got some positive feedback and a request to publish a small template for others to improve upon or use as inspiration.\\n\\nThe template is now alive here: [https://github.com/dangom/org-thesis](https://github.com/dangom/org-thesis)\\n\\n\\u0026#x200B;\\n\\nOf course this is not the only solution for writing thesis and/or research chapters with org mode, but it's a collection of tricks and lessons I learned these past years after a lot of experimentation and reading around - also posts in this sub.\\n\\nI hope this turns out to be useful. Any feedback or suggestions welcome.\", \"author_fullname\": \"t2_yl6ge\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-thesis: A template for writing thesis with Org Mode is out\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cckyt3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 63, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 63, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563019317.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ecouple of months ago I wrote \\u003Ca href=\\\"https://write.as/dani/writing-a-phd-thesis-with-org-mode\\\"\\u003Ea blog post\\u003C/a\\u003E about writing thesis with Org Mode. I got some positive feedback and a request to publish a small template for others to improve upon or use as inspiration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe template is now alive here: \\u003Ca href=\\\"https://github.com/dangom/org-thesis\\\"\\u003Ehttps://github.com/dangom/org-thesis\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course this is not the only solution for writing thesis and/or research chapters with org mode, but it\\u0026#39;s a collection of tricks and lessons I learned these past years after a lot of experimentation and reading around - also posts in this sub.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI hope this turns out to be useful. Any feedback or suggestions welcome.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cckyt3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"da-g\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cckyt3/orgthesis_a_template_for_writing_thesis_with_org/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cckyt3/orgthesis_a_template_for_writing_thesis_with_org/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1562990517.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My problem is simple, I'm working in embedded systems with a RTOS named zephyr. To compile my projects I need some variables set in PATH and the problem is that when I run projectile-compile-project and the compilation mode windows are open, my compilation fail because the compilation mode doesn't see the PATH variable. How can I make my variables be seen in compilation mode?\\n\\n\\u0026#x200B;\\n\\nI tried this in my init.el(I just see some solutions and this worked for some people, so I tried and it failed, I don't know exactly if this lines bring some problem):\\n\\n (let ((path (shell-command-to-string \\\". ~/.bashrc; echo -n $PATH\\\")))\\n (setenv \\\"PATH\\\" path)\\n (setq exec-path \\n (append\\n (split-string-and-unquote path \\\":\\\")\\n exec-path)))\\n \\n (setenv \\\"PATH\\\"\\n (concat\\n (getenv \\\"PATH\\\")\\n )\\n )\\n\\nEDIT: I realized that if I open emacs from terminal this problem doesn't occur. What can I do to this problem doesn't occur regardless of where I open emacs?\", \"author_fullname\": \"t2_28pfalw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Compilation mode doesn't see PATH variable\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccjn3b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1562983252.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563010925.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy problem is simple, I\\u0026#39;m working in embedded systems with a RTOS named zephyr. To compile my projects I need some variables set in PATH and the problem is that when I run projectile-compile-project and the compilation mode windows are open, my compilation fail because the compilation mode doesn\\u0026#39;t see the PATH variable. How can I make my variables be seen in compilation mode?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried this in my init.el(I just see some solutions and this worked for some people, so I tried and it failed, I don\\u0026#39;t know exactly if this lines bring some problem):\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E (let ((path (shell-command-to-string \\u0026quot;. ~/.bashrc; echo -n $PATH\\u0026quot;)))\\n (setenv \\u0026quot;PATH\\u0026quot; path)\\n (setq exec-path \\n (append\\n (split-string-and-unquote path \\u0026quot;:\\u0026quot;)\\n exec-path)))\\n\\n (setenv \\u0026quot;PATH\\u0026quot;\\n (concat\\n (getenv \\u0026quot;PATH\\u0026quot;)\\n )\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EEDIT: I realized that if I open emacs from terminal this problem doesn\\u0026#39;t occur. What can I do to this problem doesn\\u0026#39;t occur regardless of where I open emacs?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccjn3b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lucaspeixotot\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccjn3b/compilation_mode_doesnt_see_path_variable/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccjn3b/compilation_mode_doesnt_see_path_variable/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1562982125.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_pdmko\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Modern Emacs IDE \\u2014 Chase Kelley @ LibrePlanet 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccj5hz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 27, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 27, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563007909.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"media.libreplanet.org\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccj5hz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jonathanchu\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccj5hz/modern_emacs_ide_chase_kelley_libreplanet_2019/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://media.libreplanet.org/u/libreplanet/m/modern-emacs-ide/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1562979109.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've been pulling my hair out trying to get any sort of satisfying result with emacs auto-complete or company-mode.\\n\\nFirst of all I work with a PLETHORA of languages day-to-day:\\n\\n* Perl\\n* Go\\n* C\\n* PHP\\n* Javasciprt\\n\\nI found all the respective modes are great for highlighting, but **all emacs auto complete sucks**. Rather be company (and respective backends) or auto complete the same things irritate me:\\n\\n* The pop-up is an eye-sore\\n* For some reason (especially with tern-company and php-company) the auto complete just randomly fails for one reason or another. And often reverts back to fundamental dumb-company\\n* \\\"Seek to declaration\\\" is a rarity.\\n* Arguments types, no return types\\n* If the language doesn't have types than I'm out of luck, regardless of function documentation.\\n\\n\\u0026#x200B;\\n\\nI Mean look at this beautiful auto compete (below). HOW DO I GET THIS? Anyone got a good .emacs.d for what I'm trying to do\\n\\n[Type hinting on both return and params. Beautiful](https://i.redd.it/onoqm4vrqy931.png)\\n\\n[Look this one even has documentation](https://i.redd.it/usmto6zcry931.png)\\n\\n\\u0026#x200B;\\n\\n[I know there's no type hinting one in this one. But you can see it's actually digging into the package to find all functions. Rarely does emacs autocomplete leave the file you're working in for a list of options.](https://i.redd.it/9yy5afxury931.png)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nI know I may come off as a bit angry, it's because I am. I'm a hardcore gnu dude, church of emacs ftw. But honestly I completely despise (((((((((((((((((((((lisp)))))))))))))))))))))) and don't have the attitude to do much fixing of other's modules.\", \"author_fullname\": \"t2_42fw2qxt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why does all auto-complete suck? Am I doing something wrong? (emacs26)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"9yy5afxury931\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 702, \"x\": 588, \"u\": \"https://i.redd.it/9yy5afxury931.png\"}, \"m\": \"image/png\", \"id\": \"9yy5afxury931\"}, \"usmto6zcry931\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 406, \"x\": 648, \"u\": \"https://i.redd.it/usmto6zcry931.png\"}, \"m\": \"image/png\", \"id\": \"usmto6zcry931\"}, \"onoqm4vrqy931\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 306, \"x\": 548, \"u\": \"https://i.redd.it/onoqm4vrqy931.png\"}, \"m\": \"image/png\", \"id\": \"onoqm4vrqy931\"}}, \"name\": \"t3_cciu7w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563006049.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been pulling my hair out trying to get any sort of satisfying result with emacs auto-complete or company-mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all I work with a PLETHORA of languages day-to-day:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPerl\\u003C/li\\u003E\\n\\u003Cli\\u003EGo\\u003C/li\\u003E\\n\\u003Cli\\u003EC\\u003C/li\\u003E\\n\\u003Cli\\u003EPHP\\u003C/li\\u003E\\n\\u003Cli\\u003EJavasciprt\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI found all the respective modes are great for highlighting, but \\u003Cstrong\\u003Eall emacs auto complete sucks\\u003C/strong\\u003E. Rather be company (and respective backends) or auto complete the same things irritate me:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EThe pop-up is an eye-sore\\u003C/li\\u003E\\n\\u003Cli\\u003EFor some reason (especially with tern-company and php-company) the auto complete just randomly fails for one reason or another. And often reverts back to fundamental dumb-company\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u0026quot;Seek to declaration\\u0026quot; is a rarity.\\u003C/li\\u003E\\n\\u003Cli\\u003EArguments types, no return types\\u003C/li\\u003E\\n\\u003Cli\\u003EIf the language doesn\\u0026#39;t have types than I\\u0026#39;m out of luck, regardless of function documentation.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI Mean look at this beautiful auto compete (below). HOW DO I GET THIS? Anyone got a good .emacs.d for what I\\u0026#39;m trying to do\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/onoqm4vrqy931.png\\\"\\u003EType hinting on both return and params. Beautiful\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/usmto6zcry931.png\\\"\\u003ELook this one even has documentation\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/9yy5afxury931.png\\\"\\u003EI know there\\u0026#39;s no type hinting one in this one. But you can see it\\u0026#39;s actually digging into the package to find all functions. Rarely does emacs autocomplete leave the file you\\u0026#39;re working in for a list of options.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know I may come off as a bit angry, it\\u0026#39;s because I am. I\\u0026#39;m a hardcore gnu dude, church of emacs ftw. But honestly I completely despise (((((((((((((((((((((lisp)))))))))))))))))))))) and don\\u0026#39;t have the attitude to do much fixing of other\\u0026#39;s modules.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cciu7w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sanchke02\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cciu7w/why_does_all_autocomplete_suck_am_i_doing/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cciu7w/why_does_all_autocomplete_suck_am_i_doing/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1562977249.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Does any have you have some experience with existing Emacs themes in combination with EXWM?\\n\\nAt the moment i use the Spacemacs-Dark theme and i looks quite complete, but the color combination does\\n\\nnot fit my personal flavor.\\n\\n\\u0026#x200B;\\n\\nMaybe you could name me the theme you are currently using or the ones you prefer. Thanks!\", \"author_fullname\": \"t2_11g0po4x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"EXWM Themes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccigq0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563003894.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes any have you have some experience with existing Emacs themes in combination with EXWM?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the moment i use the Spacemacs-Dark theme and i looks quite complete, but the color combination does\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Enot fit my personal flavor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaybe you could name me the theme you are currently using or the ones you prefer. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccigq0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mrndrsn\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccigq0/exwm_themes/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccigq0/exwm_themes/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1562975094.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can multiple org-mode files with date trees be merged easily into a single file with a date tree?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccg44i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562991750.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccg44i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccg44i/can_multiple_orgmode_files_with_date_trees_be/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccg44i/can_multiple_orgmode_files_with_date_trees_be/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1562962950.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Wilmersdorf Emacs Theme now has support for Centaur Tabs! (Link in comment)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccez7m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562986392.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"yay-evil\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccez7m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/ccez7m/wilmersdorf_emacs_theme_now_has_support_for/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/x4j8cdxs5x931.png\", \"subreddit_subscribers\": 30846, \"created_utc\": 1562957592.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"The notation is werid:\\n\\nThis works\\n\\n`(push ?\\\\s-f exwm-input-prefix-keys)`\\n\\nbut this doesn't:\\n\\n`(push ?\\\\s-up exwm-input-prefix-keys)`\\n\\nHow do I fix this?\", \"author_fullname\": \"t2_3ixmiy8z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Keybinding notation for exwm-input-prefix-keys?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccdq0v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562980656.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe notation is werid:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis works\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(push ?\\\\s-f exwm-input-prefix-keys)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut this doesn\\u0026#39;t:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(push ?\\\\s-up exwm-input-prefix-keys)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I fix this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccdq0v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"forppinrange\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccdq0v/keybinding_notation_for_exwminputprefixkeys/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccdq0v/keybinding_notation_for_exwminputprefixkeys/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1562951856.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How many headlines can you have in an org file before performance starts to take a hit? Is it possible to isolate the headlines from `org-refile-targets` and any other headline-related functions like `org-goto` to prevent the adverse effects of so many headlines when not focusing on the buffer containing all the headlines while still allowing these functions to work when you're focusing on the current buffer?\\n\\nCurrently, I have notes that looks like this:\\n\\n * headline 1\\n ** sub-headline 1\\n date posted: 4/12/17\\n\\n * headline 2\\n ** sub-headline 2\\n date posted: 3/5/18\\n\\nI want to be able to search for the term \\\"date posted\\\" and know which result to jump to by seeing its respective headline tree. For example, I'm using Swiper and if I search for \\\"date posted\\\", I get the results:\\n\\n date posted: 4/12/17\\n date posted: 3/5/18\\n\\nbut I lack the context provided by the headlines and need to jump to each result to see its respective headline. Similarly, `org-goto` will only let me search for headlines.\\n\\nI'm thinking of structuring notes to provide the headline context like:\\n\\n * headline 1\\n ** sub-headline 1\\n *** date posted: 4/12/17\\n\\nwhose `org-goto` results will be:\\n\\n * headline 1/sub-headline 1/date posted: 4/12/17\\n\\nWhich is not ideal because I'd rather the notes not structured this way and if I convert all my notes to this format, I will easily have hundreds of headlines. If negative performance can be restricted to this buffer/file only, then that might be acceptable.\", \"author_fullname\": \"t2_xmyb2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org] Number of headlines before performance starts to take a hit? Isolate to a file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccdleq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562980078.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow many headlines can you have in an org file before performance starts to take a hit? Is it possible to isolate the headlines from \\u003Ccode\\u003Eorg-refile-targets\\u003C/code\\u003E and any other headline-related functions like \\u003Ccode\\u003Eorg-goto\\u003C/code\\u003E to prevent the adverse effects of so many headlines when not focusing on the buffer containing all the headlines while still allowing these functions to work when you\\u0026#39;re focusing on the current buffer?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECurrently, I have notes that looks like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* headline 1\\n** sub-headline 1\\ndate posted: 4/12/17\\n\\n* headline 2\\n** sub-headline 2\\ndate posted: 3/5/18\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI want to be able to search for the term \\u0026quot;date posted\\u0026quot; and know which result to jump to by seeing its respective headline tree. For example, I\\u0026#39;m using Swiper and if I search for \\u0026quot;date posted\\u0026quot;, I get the results:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edate posted: 4/12/17\\ndate posted: 3/5/18\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ebut I lack the context provided by the headlines and need to jump to each result to see its respective headline. Similarly, \\u003Ccode\\u003Eorg-goto\\u003C/code\\u003E will only let me search for headlines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m thinking of structuring notes to provide the headline context like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* headline 1\\n** sub-headline 1\\n*** date posted: 4/12/17\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhose \\u003Ccode\\u003Eorg-goto\\u003C/code\\u003E results will be:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* headline 1/sub-headline 1/date posted: 4/12/17\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhich is not ideal because I\\u0026#39;d rather the notes not structured this way and if I convert all my notes to this format, I will easily have hundreds of headlines. If negative performance can be restricted to this buffer/file only, then that might be acceptable.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccdleq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"exquisitesunshine\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/ccdleq/org_number_of_headlines_before_performance_starts/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/ccdleq/org_number_of_headlines_before_performance_starts/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1562951278.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}], \"after\": \"t3_ccdleq\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["433256"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:17 GMT"], "x-ratelimit-remaining": ["596.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["4"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495017.092534,VS0,VE614"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["583"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "recorded_at": "2019-07-19T00:10:17"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_cf00mv"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:18 GMT"], "x-ratelimit-remaining": ["595.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["5"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495019.746227,VS0,VE82"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["582"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_cf00mv"}, "recorded_at": "2019-07-19T00:10:18"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cej7r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu55wtg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sugarbridalsentry\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563470575.0, \"send_replies\": true, \"parent_id\": \"t1_eu47wqs\", \"score\": 1, \"author_fullname\": \"t2_i9gakgq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Sure thing!\", \"link_title\": \"org-refile and subfolders\", \"author_flair_css_class\": null, \"name\": \"t1_eu55wtg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESure thing!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/eu55wtg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"report_reasons\": null, \"link_author\": \"stamp85\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"created\": 1563499375.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cej7r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu54pb1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sugarbridalsentry\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563469845.0, \"send_replies\": true, \"parent_id\": \"t1_eu3zgx2\", \"score\": 1, \"author_fullname\": \"t2_i9gakgq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Haha -- I just can't get used to the Lisp standard of grouping all those parens together at the end. Usually it's not a problem because nobody but me is seeing the code I use :D\", \"link_title\": \"org-refile and subfolders\", \"author_flair_css_class\": null, \"name\": \"t1_eu54pb1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHaha -- I just can\\u0026#39;t get used to the Lisp standard of grouping all those parens together at the end. Usually it\\u0026#39;s not a problem because nobody but me is seeing the code I use :D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/eu54pb1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"report_reasons\": null, \"link_author\": \"stamp85\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"created\": 1563498645.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cej7r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu47wqs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"stamp85\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563443059.0, \"send_replies\": true, \"parent_id\": \"t1_eu2xpnf\", \"score\": 1, \"author_fullname\": \"t2_3hfea\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, this works :)\", \"link_title\": \"org-refile and subfolders\", \"author_flair_css_class\": null, \"name\": \"t1_eu47wqs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, this works :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/eu47wqs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"report_reasons\": null, \"link_author\": \"stamp85\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"created\": 1563471859.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cclnex\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu467vo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hubisan-one\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563440532.0, \"send_replies\": true, \"parent_id\": \"t3_cclnex\", \"score\": 1, \"author_fullname\": \"t2_1vshbtvj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Here is a solution for this [https://emacs.stackexchange.com/questions/5323/text-alignment-in-org-mode-numbered-lists](https://emacs.stackexchange.com/questions/5323/text-alignment-in-org-mode-numbered-lists).\\n\\n\\u0026#x200B;\\n\\nOr you could just start the first item with `10.` by adding `[@10]` to avoid this unless your list will go beyond 99 ;-):\\n\\n 10. [@10] first item\\n 11. Second item\\n 12. and so on\", \"link_title\": \"Can Org automatically add leading zeroes to keep ordered lists aligned?\", \"author_flair_css_class\": null, \"name\": \"t1_eu467vo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is a solution for this \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/5323/text-alignment-in-org-mode-numbered-lists\\\"\\u003Ehttps://emacs.stackexchange.com/questions/5323/text-alignment-in-org-mode-numbered-lists\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr you could just start the first item with \\u003Ccode\\u003E10.\\u003C/code\\u003E by adding \\u003Ccode\\u003E[@10]\\u003C/code\\u003E to avoid this unless your list will go beyond 99 ;-):\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E10. [@10] first item\\n11. Second item\\n12. and so on\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/eu467vo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"report_reasons\": null, \"link_author\": \"takethecannoli4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"created\": 1563469332.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cej7r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3zgx2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563431305.0, \"send_replies\": true, \"parent_id\": \"t1_eu2xpnf\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yikes, those hanging parens! :)\", \"link_title\": \"org-refile and subfolders\", \"author_flair_css_class\": null, \"name\": \"t1_eu3zgx2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYikes, those hanging parens! :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/eu3zgx2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"report_reasons\": null, \"link_author\": \"stamp85\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"created\": 1563460105.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cej7r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu36njz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GayboyMooby\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563406727.0, \"send_replies\": true, \"parent_id\": \"t3_cej7r2\", \"score\": 2, \"author_fullname\": \"t2_wycvy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I don\\u2019t think `org-agenda-files` recurses into subdirectories. You must add each directory explicitly.\", \"link_title\": \"org-refile and subfolders\", \"author_flair_css_class\": null, \"name\": \"t1_eu36njz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u2019t think \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E recurses into subdirectories. You must add each directory explicitly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/eu36njz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"report_reasons\": null, \"link_author\": \"stamp85\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"created\": 1563435527.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cej7r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2xpnf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sugarbridalsentry\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563400504.0, \"send_replies\": true, \"parent_id\": \"t3_cej7r2\", \"score\": 1, \"author_fullname\": \"t2_i9gakgq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is what I used for a long time to do what you're wanting:\\n\\n **** Org-Mode Recursively Add Org Files in Directory Tree to Agenda\\n \\n Removed from my init on 20190508 because I don't use it anymore.\\n \\n #+begin_src elisp\\n ;; Recursively find all org files in a directory tree and add to agenda files\\n (setq org-agenda-file-regexp \\\"\\\\\\\\`[^.].*\\\\\\\\.org$\\\\\\\\|.txt$\\\\\\\\'\\\") ;Looks for .org and .txt files\\n (defun load-org-agenda-files-recursively (dir) \\\"Find all directories in DIR.\\\"\\n (unless (file-directory-p dir) (error \\\"Not a directory `%s'\\\" dir))\\n (unless (equal (directory-files dir nil org-agenda-file-regexp t) nil)\\n (add-to-list 'org-agenda-files dir)\\n )\\n (dolist (file (directory-files dir nil nil t))\\n (unless (member file '(\\\".\\\" \\\"..\\\"))\\n (let ((file (concat dir file \\\"/\\\")))\\n (when (file-directory-p file)\\n (load-org-agenda-files-recursively file)\\n )\\n )\\n )\\n )\\n )\\n (load-org-agenda-files-recursively \\\"~/Org/\\\") ;; This is the root where the search starts\\n )\\n #+end_src\\n\\nEdit: I had it run after `org.el` was loaded using `org-load-hook` -- it only checked for files when I started Emacs.\", \"link_title\": \"org-refile and subfolders\", \"author_flair_css_class\": null, \"name\": \"t1_eu2xpnf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is what I used for a long time to do what you\\u0026#39;re wanting:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E**** Org-Mode Recursively Add Org Files in Directory Tree to Agenda\\n\\nRemoved from my init on 20190508 because I don\\u0026#39;t use it anymore.\\n\\n#+begin_src elisp\\n ;; Recursively find all org files in a directory tree and add to agenda files\\n (setq org-agenda-file-regexp \\u0026quot;\\\\\\\\`[^.].*\\\\\\\\.org$\\\\\\\\|.txt$\\\\\\\\\\u0026#39;\\u0026quot;) ;Looks for .org and .txt files\\n (defun load-org-agenda-files-recursively (dir) \\u0026quot;Find all directories in DIR.\\u0026quot;\\n (unless (file-directory-p dir) (error \\u0026quot;Not a directory `%s\\u0026#39;\\u0026quot; dir))\\n (unless (equal (directory-files dir nil org-agenda-file-regexp t) nil)\\n (add-to-list \\u0026#39;org-agenda-files dir)\\n )\\n (dolist (file (directory-files dir nil nil t))\\n (unless (member file \\u0026#39;(\\u0026quot;.\\u0026quot; \\u0026quot;..\\u0026quot;))\\n (let ((file (concat dir file \\u0026quot;/\\u0026quot;)))\\n (when (file-directory-p file)\\n (load-org-agenda-files-recursively file)\\n )\\n )\\n )\\n )\\n )\\n (load-org-agenda-files-recursively \\u0026quot;~/Org/\\u0026quot;) ;; This is the root where the search starts\\n )\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EEdit: I had it run after \\u003Ccode\\u003Eorg.el\\u003C/code\\u003E was loaded using \\u003Ccode\\u003Eorg-load-hook\\u003C/code\\u003E -- it only checked for files when I started Emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/eu2xpnf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"report_reasons\": null, \"link_author\": \"stamp85\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"created\": 1563429304.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce5gvd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1og6o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563371584.0, \"send_replies\": true, \"parent_id\": \"t1_etzfdmo\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I would start by investigating existing HTML templating solutions, especially ones involving lisp. That should help you better understand the problem and potential solutions.\", \"link_title\": \"idea for you to slay or offer opinion on before i waste time building it\", \"author_flair_css_class\": null, \"name\": \"t1_eu1og6o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would start by investigating existing HTML templating solutions, especially ones involving lisp. That should help you better understand the problem and potential solutions.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/eu1og6o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"report_reasons\": null, \"link_author\": \"techquila\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"created\": 1563400384.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bq8ohl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu02wu1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"argtri\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563340918.0, \"send_replies\": true, \"parent_id\": \"t3_bq8ohl\", \"score\": 1, \"author_fullname\": \"t2_b3vk3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You can get more capture templates in the selection list if you use two--character keys as described here:\\n\\n [https://joshrollinswrites.com/help-desk-head-desk/sub-menus-in-org/](https://joshrollinswrites.com/help-desk-head-desk/sub-menus-in-org/) \\n\\n\\u0026#x200B;\\n\\nCapture templates with two-character keys are collapsed under a category heading.\", \"link_title\": \"Is there a way to make the capture template selection list window (\\\"Org Select\\\") scrollable so that when you have a large number of capture templates (e.g.\\u003E 26), the display is not truncated?\", \"author_flair_css_class\": null, \"name\": \"t1_eu02wu1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can get more capture templates in the selection list if you use two--character keys as described here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/sub-menus-in-org/\\\"\\u003Ehttps://joshrollinswrites.com/help-desk-head-desk/sub-menus-in-org/\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECapture templates with two-character keys are collapsed under a category heading.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/eu02wu1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"report_reasons\": null, \"link_author\": \"argtri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"created\": 1563369718.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_b97ze1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu01uon\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"argtri\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563340454.0, \"send_replies\": true, \"parent_id\": \"t1_ek6b8d6\", \"score\": 1, \"author_fullname\": \"t2_b3vk3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have a simple workaround that requires little cleanup. I make a sparse tree for headings that have lists underneath by making a sparse tree for the regex : \\\"- \\\".\\n\\n(Org-mode hangs if I try a sparse tree for a regex containing asterisks.)\", \"link_title\": \"Is there a way in org-mode to show only headings that have subheadings or body text?\", \"author_flair_css_class\": null, \"name\": \"t1_eu01uon\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a simple workaround that requires little cleanup. I make a sparse tree for headings that have lists underneath by making a sparse tree for the regex : \\u0026quot;- \\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Org-mode hangs if I try a sparse tree for a regex containing asterisks.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/b97ze1/is_there_a_way_in_orgmode_to_show_only_headings/eu01uon/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/b97ze1/is_there_a_way_in_orgmode_to_show_only_headings/\", \"report_reasons\": null, \"link_author\": \"argtri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/b97ze1/is_there_a_way_in_orgmode_to_show_only_headings/\", \"created\": 1563369254.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce5gvd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etzfdmo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"techquila\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563331042.0, \"send_replies\": true, \"parent_id\": \"t1_etzed46\", \"score\": 1, \"author_fullname\": \"t2_11x4yc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"i'm not sure i follow... this may be the glaringly obvious reason why it's not been done yet. \\n\\n\\norg markup seems very appropriate to deal with this very thing but maybe i'm missing something.\", \"link_title\": \"idea for you to slay or offer opinion on before i waste time building it\", \"author_flair_css_class\": null, \"name\": \"t1_etzfdmo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei\\u0026#39;m not sure i follow... this may be the glaringly obvious reason why it\\u0026#39;s not been done yet. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorg markup seems very appropriate to deal with this very thing but maybe i\\u0026#39;m missing something.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/etzfdmo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"report_reasons\": null, \"link_author\": \"techquila\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"created\": 1563359842.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce5gvd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etzed46\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ahk-_-\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563330646.0, \"send_replies\": true, \"parent_id\": \"t1_etzdy47\", \"score\": 1, \"author_fullname\": \"t2_pj38w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I think I smell a specification brewing.\\nHow do you plan on dealing with nested elements?\", \"link_title\": \"idea for you to slay or offer opinion on before i waste time building it\", \"author_flair_css_class\": null, \"name\": \"t1_etzed46\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think I smell a specification brewing.\\nHow do you plan on dealing with nested elements?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/etzed46/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"report_reasons\": null, \"link_author\": \"techquila\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"created\": 1563359446.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce5gvd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etzdy47\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"techquila\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563330489.0, \"send_replies\": true, \"parent_id\": \"t1_etzakr7\", \"score\": 1, \"author_fullname\": \"t2_11x4yc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"thanks for this. \\n\\n\\nWhat do you think?\", \"link_title\": \"idea for you to slay or offer opinion on before i waste time building it\", \"author_flair_css_class\": null, \"name\": \"t1_etzdy47\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks for this. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat do you think?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/etzdy47/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"report_reasons\": null, \"link_author\": \"techquila\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"created\": 1563359289.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce5gvd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etzdl1u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"techquila\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563330356.0, \"send_replies\": true, \"parent_id\": \"t1_etzdbgq\", \"score\": 1, \"author_fullname\": \"t2_11x4yc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"...and most importantly ... do away with the need for markdown, toml, or any other markup language other than org-mode.\", \"link_title\": \"idea for you to slay or offer opinion on before i waste time building it\", \"author_flair_css_class\": null, \"name\": \"t1_etzdl1u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E...and most importantly ... do away with the need for markdown, toml, or any other markup language other than org-mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/etzdl1u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"report_reasons\": null, \"link_author\": \"techquila\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"created\": 1563359156.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce5gvd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etzdbgq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"techquila\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563330253.0, \"send_replies\": true, \"parent_id\": \"t1_etyw7c3\", \"score\": 1, \"author_fullname\": \"t2_11x4yc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"apologies for the lack of clarity in expressing my ideas. Believe it or not i did rewrite several times already. the tldr mentioned below is it in essence. I'd also like to write my css/js in src blocks and tangle them down to their respective files as part of the export process.\", \"link_title\": \"idea for you to slay or offer opinion on before i waste time building it\", \"author_flair_css_class\": null, \"name\": \"t1_etzdbgq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eapologies for the lack of clarity in expressing my ideas. Believe it or not i did rewrite several times already. the tldr mentioned below is it in essence. I\\u0026#39;d also like to write my css/js in src blocks and tangle them down to their respective files as part of the export process.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/etzdbgq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"report_reasons\": null, \"link_author\": \"techquila\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"created\": 1563359053.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce5gvd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etzakr7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ahk-_-\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563329166.0, \"send_replies\": true, \"parent_id\": \"t3_ce5gvd\", \"score\": 6, \"author_fullname\": \"t2_pj38w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"tldr; S/He wants to create a static site generator which supports a variant of org-mode in which all the headings are names of html-tags.\\n\\n # div\\n This will go in a div\\n \\n # div\\n This will go in another div\\n \\n \\n ----- expected output -----\\n \\u003Cdiv\\u003E This will go in a div \\u003C/div\\u003E\\n \\u003Cdiv\\u003E This will go in another div \\u003C/div\\u003E\", \"link_title\": \"idea for you to slay or offer opinion on before i waste time building it\", \"author_flair_css_class\": null, \"name\": \"t1_etzakr7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etldr; S/He wants to create a static site generator which supports a variant of org-mode in which all the headings are names of html-tags.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E# div\\nThis will go in a div\\n\\n# div\\nThis will go in another div\\n\\n\\n----- expected output -----\\n\\u0026lt;div\\u0026gt; This will go in a div \\u0026lt;/div\\u0026gt;\\n\\u0026lt;div\\u0026gt; This will go in another div \\u0026lt;/div\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/etzakr7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"report_reasons\": null, \"link_author\": \"techquila\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"created\": 1563357966.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce5gvd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etyw7c3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563323559.0, \"send_replies\": true, \"parent_id\": \"t3_ce5gvd\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is hard to follow, but I saw something about marking up web pages with Org, which is an interesting idea. Please consider rewriting your idea a few times to make it easier to understand. :)\", \"link_title\": \"idea for you to slay or offer opinion on before i waste time building it\", \"author_flair_css_class\": null, \"name\": \"t1_etyw7c3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is hard to follow, but I saw something about marking up web pages with Org, which is an interesting idea. Please consider rewriting your idea a few times to make it easier to understand. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/etyw7c3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"report_reasons\": null, \"link_author\": \"techquila\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"created\": 1563352359.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccndd0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etyaigs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NonreciprocatingCrow\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563315474.0, \"send_replies\": true, \"parent_id\": \"t3_ccndd0\", \"score\": 1, \"author_fullname\": \"t2_ijjatn4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"If you're considering merging the two, why not merge the journal into the weekly files?\\n\\nAnd if you think the weekly files are too many files, maybe merge them into yearly files with weekly headings?\", \"link_title\": \"long journal file? weekly files? what do you do?\", \"author_flair_css_class\": null, \"name\": \"t1_etyaigs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you\\u0026#39;re considering merging the two, why not merge the journal into the weekly files?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd if you think the weekly files are too many files, maybe merge them into yearly files with weekly headings?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/etyaigs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/\", \"created\": 1563344274.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c7zy9u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etwq272\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mounica134\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563280757.0, \"send_replies\": true, \"parent_id\": \"t3_c7zy9u\", \"score\": 1, \"author_fullname\": \"t2_p3g806u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"The problem got solved after following this [link](https://stackoverflow.com/questions/41568410/configure-org-mode-to-use-lualatex/56851313#56851313)\", \"link_title\": \"Problem configuring org-mode with miktex\", \"author_flair_css_class\": null, \"name\": \"t1_etwq272\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe problem got solved after following this \\u003Ca href=\\\"https://stackoverflow.com/questions/41568410/configure-org-mode-to-use-lualatex/56851313#56851313\\\"\\u003Elink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c7zy9u/problem_configuring_orgmode_with_miktex/etwq272/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c7zy9u/problem_configuring_orgmode_with_miktex/\", \"report_reasons\": null, \"link_author\": \"Mounica134\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c7zy9u/problem_configuring_orgmode_with_miktex/\", \"created\": 1563309557.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etwoypr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1563279737.0, \"send_replies\": true, \"parent_id\": \"t1_etnvpj2\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Not that I know of, but it should be easy to use an advice function to store a logbook note when a task is scheduled, similar to how todo-state changes are logged.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etwoypr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot that I know of, but it should be easy to use an advice function to store a logbook note when a task is scheduled, similar to how todo-state changes are logged.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etwoypr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1563308537.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd6ay4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etwiuxw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563272682.0, \"send_replies\": true, \"parent_id\": \"t1_etwhyt9\", \"score\": 2, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm familiar with this method :) \\n\\n\\u0026#x200B;\\n\\nYour criticism is good and useful!\", \"link_title\": \"Org-mode Capture: the stuff under your nose\", \"author_flair_css_class\": null, \"name\": \"t1_etwiuxw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m familiar with this method :) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYour criticism is good and useful!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/etwiuxw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"created\": 1563301482.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd6ay4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etwhyt9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563271417.0, \"send_replies\": true, \"parent_id\": \"t1_etv9rp8\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E The one thing I disagree with is the personal journey part. In general, this is true yes. Over here though, my experience with the manual and trying to figure it out is part of the point of what I'm trying to convey. I want people to see my thought process, because it's how I was thinking that was the real problem, not the solution which is pretty trivial. Still, there's probably a better way to deliver that, and I'll look into it.\\n\\nI agree that that can be valuable, because many users haven't learned or internalized the troubleshooting process. But I think you'll reach many more users if you distill it into essential parts.\\n\\nYou have a way with words, so do keep writing. A method that many writers use is to write, put the words away for a few days, and then come back to them with a fresh perspective. It becomes easier to spot the \\\"fuzz\\\" and easier to delete it.\", \"link_title\": \"Org-mode Capture: the stuff under your nose\", \"author_flair_css_class\": null, \"name\": \"t1_etwhyt9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe one thing I disagree with is the personal journey part. In general, this is true yes. Over here though, my experience with the manual and trying to figure it out is part of the point of what I\\u0026#39;m trying to convey. I want people to see my thought process, because it\\u0026#39;s how I was thinking that was the real problem, not the solution which is pretty trivial. Still, there\\u0026#39;s probably a better way to deliver that, and I\\u0026#39;ll look into it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI agree that that can be valuable, because many users haven\\u0026#39;t learned or internalized the troubleshooting process. But I think you\\u0026#39;ll reach many more users if you distill it into essential parts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou have a way with words, so do keep writing. A method that many writers use is to write, put the words away for a few days, and then come back to them with a fresh perspective. It becomes easier to spot the \\u0026quot;fuzz\\u0026quot; and easier to delete it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/etwhyt9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"created\": 1563300217.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd6ay4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etvezv5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"argtri\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563233655.0, \"send_replies\": true, \"parent_id\": \"t3_cd6ay4\", \"score\": 3, \"author_fullname\": \"t2_b3vk3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks for this. It makes so much easier to modify a capture template by using a template file instead of dealing with escapes. Also, now I have my capture templates in contexts.\", \"link_title\": \"Org-mode Capture: the stuff under your nose\", \"author_flair_css_class\": null, \"name\": \"t1_etvezv5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for this. It makes so much easier to modify a capture template by using a template file instead of dealing with escapes. Also, now I have my capture templates in contexts.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/etvezv5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"created\": 1563262455.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd6ay4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etv9rp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563229828.0, \"send_replies\": true, \"parent_id\": \"t1_etu92nt\", \"score\": 2, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you for the thorough feedback. You read the whole thing *and* you took the time to write back. \\n\\nVery useful information here!\\n\\n\\u0026#x200B;\\n\\nI am going to go back and re-edit. I know what you mean about articles that start with bla bla bla, I personally skip the first paragraph or two of many other places, and here I do the same thing myself. \\n\\n\\u0026#x200B;\\n\\nThe one thing I disagree with is the personal journey part. In general, this is true yes. Over here though, my experience with the manual and trying to figure it out is part of the point of what I'm trying to convey. I want people to see my thought process, because it's how I was *thinking* that was the real problem, not the solution which is pretty trivial. Still, there's probably a better way to deliver that, and I'll look into it. \\n\\n\\u0026#x200B;\\n\\nThanks again!\", \"link_title\": \"Org-mode Capture: the stuff under your nose\", \"author_flair_css_class\": null, \"name\": \"t1_etv9rp8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for the thorough feedback. You read the whole thing \\u003Cem\\u003Eand\\u003C/em\\u003E you took the time to write back. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVery useful information here!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am going to go back and re-edit. I know what you mean about articles that start with bla bla bla, I personally skip the first paragraph or two of many other places, and here I do the same thing myself. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe one thing I disagree with is the personal journey part. In general, this is true yes. Over here though, my experience with the manual and trying to figure it out is part of the point of what I\\u0026#39;m trying to convey. I want people to see my thought process, because it\\u0026#39;s how I was \\u003Cem\\u003Ethinking\\u003C/em\\u003E that was the real problem, not the solution which is pretty trivial. Still, there\\u0026#39;s probably a better way to deliver that, and I\\u0026#39;ll look into it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks again!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/etv9rp8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"created\": 1563258628.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccndd0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etug8vh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563211893.0, \"send_replies\": true, \"parent_id\": \"t3_ccndd0\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"While I do not exactly do \\\"journal-like logs\\\" I do keep logs and beside that as a general\\nrules IME the in medio stat virtus (in the mean lay the virtue) apply well.\\n\\nI mean too many file, the classic UNIX way, in the end results in an uncomfortable mass to\\nmanage, too few files on contrary results in slow performance when became big. My best \\nsolution is starting with a single file, when it became big enough split accordingly to \\nhow you mentally layout information inside. Repeat forever.\\n\\nThis require a little \\\"extra effort\\\" from time to time but help to keep logged data in an \\nuseful state, cleanup garbage etc so in the long run the little \\\"extra effort\\\" pay back it\\nterms of effectiveness.\", \"link_title\": \"long journal file? weekly files? what do you do?\", \"author_flair_css_class\": null, \"name\": \"t1_etug8vh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile I do not exactly do \\u0026quot;journal-like logs\\u0026quot; I do keep logs and beside that as a general\\nrules IME the in medio stat virtus (in the mean lay the virtue) apply well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI mean too many file, the classic UNIX way, in the end results in an uncomfortable mass to\\nmanage, too few files on contrary results in slow performance when became big. My best \\nsolution is starting with a single file, when it became big enough split accordingly to \\nhow you mentally layout information inside. Repeat forever.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis require a little \\u0026quot;extra effort\\u0026quot; from time to time but help to keep logged data in an \\nuseful state, cleanup garbage etc so in the long run the little \\u0026quot;extra effort\\u0026quot; pay back it\\nterms of effectiveness.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/etug8vh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/\", \"created\": 1563240693.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563207514.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd6ay4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etu92nt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"github-alphapapa\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563207200.0, \"send_replies\": true, \"parent_id\": \"t3_cd6ay4\", \"score\": 4, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Let me know what you think :D\\n\\nWell, since you asked...\\n\\n\\u003E I\\u2019ve been pretty busy org-mode-ly speaking. There is a lot to say, and as I was writing my post, more ideas occurred to me that behooved me to stop writing and experiment more, which lead to more interesting results, which meant I ran out of time to write about the results. When I finally returned to my post this morning, I realized there\\u2019s so much to explain, I can\\u2019t include it all in one go. Here you go, part one of my latest adventure in org-mode: org-capture from org files.\\n\\nI implore you, omit stuff like this from your writing. Here I am, 90 words into your article, and I've already lost interest.\\n\\nIt's like when someone stands up to give a speech, and the first words out of their mouth are, \\\"When I found out I was going to give this speech, I thought a lot about what to say, and I started writing it, and blah blah blah, and then I changed my mind, and blah blah blah, and then on the way here, blah blah blah, so blah blah blah. [five minutes later] So, what I'm here to say is: ...\\\" \\n\\n*Just get on with it!* No one wants to read about your inner journey. If you really want to write about your process, write an article about it for people who are interested. In every other case, just address the topic.\\n\\nAfter writing, edit, and be *ruthless* with your words. Delete, delete, delete! The very next lines of your article are this heading:\\n\\n\\u003E Why a File as a Capture Template?\\n\\nWhich you immediately reiterate:\\n\\n\\u003E Why do I need a template based in a file?\\n\\nYour readers' time is valuable, and if you don't respect it, they will not give it to you. I think I could easily delete 3/4ths of your words without losing any meaning. \\n\\nI recently discovered Zinsser's book, *On Writing Well*. From chapter 1:\\n\\n\\u003E Writers must therefore constantly ask: what am I trying to say? Surprisingly\\noften they don\\u2019t know. Then they must look at what they have written and ask:\\nhave I said it? Is it clear to someone encountering the subject for the first time?\\nIf it\\u2019s not, some fuzz has worked its way into the machinery. The clear writer is\\nsomeone clearheaded enough to see this stuff for what it is: fuzz.\\n\\nIn chapter 3, \\\"Clutter,\\\" he concludes:\\n\\n\\u003E Look for the clutter in your writing and prune it ruthlessly. Be grateful for everything you can throw away. Reexamine each sentence you put on paper. Is every word doing new work? Can any thought be expressed with more economy? Is anything pompous or pretentious or faddish? Are you hanging on to something useless just because you think it\\u2019s beautiful? Simplify, simplify.\\n\\nEmacs and Org are complicated beasts, and their users are hungry for simple explanations. Make your writing easy to digest, and you will help many people.\\n\\nOr, as another writer said:\\n\\n\\u003E some of us struggle not with the code, but lack of good, clear examples. ... Please give us more.\\n\\n;)\", \"link_title\": \"Org-mode Capture: the stuff under your nose\", \"author_flair_css_class\": null, \"name\": \"t1_etu92nt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ELet me know what you think :D\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell, since you asked...\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI\\u2019ve been pretty busy org-mode-ly speaking. There is a lot to say, and as I was writing my post, more ideas occurred to me that behooved me to stop writing and experiment more, which lead to more interesting results, which meant I ran out of time to write about the results. When I finally returned to my post this morning, I realized there\\u2019s so much to explain, I can\\u2019t include it all in one go. Here you go, part one of my latest adventure in org-mode: org-capture from org files.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI implore you, omit stuff like this from your writing. Here I am, 90 words into your article, and I\\u0026#39;ve already lost interest.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s like when someone stands up to give a speech, and the first words out of their mouth are, \\u0026quot;When I found out I was going to give this speech, I thought a lot about what to say, and I started writing it, and blah blah blah, and then I changed my mind, and blah blah blah, and then on the way here, blah blah blah, so blah blah blah. [five minutes later] So, what I\\u0026#39;m here to say is: ...\\u0026quot; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EJust get on with it!\\u003C/em\\u003E No one wants to read about your inner journey. If you really want to write about your process, write an article about it for people who are interested. In every other case, just address the topic.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter writing, edit, and be \\u003Cem\\u003Eruthless\\u003C/em\\u003E with your words. Delete, delete, delete! The very next lines of your article are this heading:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWhy a File as a Capture Template?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhich you immediately reiterate:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWhy do I need a template based in a file?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYour readers\\u0026#39; time is valuable, and if you don\\u0026#39;t respect it, they will not give it to you. I think I could easily delete 3/4ths of your words without losing any meaning. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI recently discovered Zinsser\\u0026#39;s book, \\u003Cem\\u003EOn Writing Well\\u003C/em\\u003E. From chapter 1:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWriters must therefore constantly ask: what am I trying to say? Surprisingly\\noften they don\\u2019t know. Then they must look at what they have written and ask:\\nhave I said it? Is it clear to someone encountering the subject for the first time?\\nIf it\\u2019s not, some fuzz has worked its way into the machinery. The clear writer is\\nsomeone clearheaded enough to see this stuff for what it is: fuzz.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIn chapter 3, \\u0026quot;Clutter,\\u0026quot; he concludes:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ELook for the clutter in your writing and prune it ruthlessly. Be grateful for everything you can throw away. Reexamine each sentence you put on paper. Is every word doing new work? Can any thought be expressed with more economy? Is anything pompous or pretentious or faddish? Are you hanging on to something useless just because you think it\\u2019s beautiful? Simplify, simplify.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EEmacs and Org are complicated beasts, and their users are hungry for simple explanations. Make your writing easy to digest, and you will help many people.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr, as another writer said:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Esome of us struggle not with the code, but lack of good, clear examples. ... Please give us more.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/etu92nt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"created\": 1563236000.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd6ay4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ettkzmo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563185670.0, \"send_replies\": true, \"parent_id\": \"t1_ettjjhg\", \"score\": 2, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks! It's good to hear that others had the same issue\", \"link_title\": \"Org-mode Capture: the stuff under your nose\", \"author_flair_css_class\": null, \"name\": \"t1_ettkzmo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks! It\\u0026#39;s good to hear that others had the same issue\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/ettkzmo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"created\": 1563214470.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd6ay4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ettjjhg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Valdebrun\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563183425.0, \"send_replies\": true, \"parent_id\": \"t3_cd6ay4\", \"score\": 3, \"author_fullname\": \"t2_druc0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you! I wasn't able to figure this out so your thought process was very helpful to see. Now I understand.\", \"link_title\": \"Org-mode Capture: the stuff under your nose\", \"author_flair_css_class\": null, \"name\": \"t1_ettjjhg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you! I wasn\\u0026#39;t able to figure this out so your thought process was very helpful to see. Now I understand.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/ettjjhg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"created\": 1563212225.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd6ay4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etrzh28\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grahnen\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563132748.0, \"send_replies\": true, \"parent_id\": \"t3_cd6ay4\", \"score\": 4, \"author_fullname\": \"t2_axxnz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"A pleasant and informative read!\", \"link_title\": \"Org-mode Capture: the stuff under your nose\", \"author_flair_css_class\": null, \"name\": \"t1_etrzh28\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA pleasant and informative read!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/etrzh28/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"created\": 1563161548.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cczgwq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etrr6vf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nielskob\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563127346.0, \"send_replies\": true, \"parent_id\": \"t1_etr9jhv\", \"score\": 2, \"author_fullname\": \"t2_ocr67\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks a lot! That's it.\", \"link_title\": \"Archive with inherited tags?\", \"author_flair_css_class\": null, \"name\": \"t1_etrr6vf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks a lot! That\\u0026#39;s it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cczgwq/archive_with_inherited_tags/etrr6vf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cczgwq/archive_with_inherited_tags/\", \"report_reasons\": null, \"link_author\": \"nielskob\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cczgwq/archive_with_inherited_tags/\", \"created\": 1563156146.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cczgwq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etr9jhv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jethro_spackle\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563115741.0, \"send_replies\": true, \"parent_id\": \"t3_cczgwq\", \"score\": 4, \"author_fullname\": \"t2_1mhaum0e\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"The variable `org-archive-subtree-add-inherited-tags` might be helpful to configure.\", \"link_title\": \"Archive with inherited tags?\", \"author_flair_css_class\": null, \"name\": \"t1_etr9jhv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe variable \\u003Ccode\\u003Eorg-archive-subtree-add-inherited-tags\\u003C/code\\u003E might be helpful to configure.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cczgwq/archive_with_inherited_tags/etr9jhv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cczgwq/archive_with_inherited_tags/\", \"report_reasons\": null, \"link_author\": \"nielskob\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cczgwq/archive_with_inherited_tags/\", \"created\": 1563144541.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563189663.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccndd0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etp33tg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"akirakom\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563044421.0, \"send_replies\": true, \"parent_id\": \"t3_ccndd0\", \"score\": 2, \"author_fullname\": \"t2_ouz7ysa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"An alternative to the built-in datetree is my [org-reverse-datetree](https://github.com/akirak/org-reverse-datetree) package, which allows a custom hierarchy structure and also contains a utility to refile to the datetree. Datetree refiling can be done based on a property containing a timestamp.\\n\\nAs for the synchronization issue, you can create entries in separate files on individual machines (i.e. different files on different machines), then sync them using syncthing, and refile entries to the master file. My org-reverse-datetree supports refiling to a datetree, which makes this workflow easy to implement.\", \"link_title\": \"long journal file? weekly files? what do you do?\", \"author_flair_css_class\": null, \"name\": \"t1_etp33tg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAn alternative to the built-in datetree is my \\u003Ca href=\\\"https://github.com/akirak/org-reverse-datetree\\\"\\u003Eorg-reverse-datetree\\u003C/a\\u003E package, which allows a custom hierarchy structure and also contains a utility to refile to the datetree. Datetree refiling can be done based on a property containing a timestamp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for the synchronization issue, you can create entries in separate files on individual machines (i.e. different files on different machines), then sync them using syncthing, and refile entries to the master file. My org-reverse-datetree supports refiling to a datetree, which makes this workflow easy to implement.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/etp33tg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/\", \"created\": 1563073221.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etox0y9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"trae\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1563039797.0, \"send_replies\": true, \"parent_id\": \"t1_etos0sv\", \"score\": 2, \"author_fullname\": \"t2_1oqx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm sold, well done. It's on my list next :)\\n\\n\\u003E It's substantially faster.\\n\\n\\nOne reason I switched to notmuch (and emacs) in general is that everything is so much faster. \\n\\nThanks\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etox0y9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m sold, well done. It\\u0026#39;s on my list next :)\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIt\\u0026#39;s substantially faster.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOne reason I switched to notmuch (and emacs) in general is that everything is so much faster. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etox0y9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1563068597.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563036269.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etos0sv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"lally\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1563036075.0, \"send_replies\": true, \"parent_id\": \"t1_etor556\", \"score\": 1, \"author_fullname\": \"t2_33f78\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"It's substantially faster. The web interface takes minutes sometimes, and is a UX nightmare when it's loaded. Instead, a custom query or two in org-jira presents the data I want in a second and let's me operate in a sane world (emacs org).\\n\\nI can also easily link/tag in org from other files, and stay in a sane happy space. Org-jira acts as a DMZ between my personal organization and the rest of the company.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etos0sv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s substantially faster. The web interface takes minutes sometimes, and is a UX nightmare when it\\u0026#39;s loaded. Instead, a custom query or two in org-jira presents the data I want in a second and let\\u0026#39;s me operate in a sane world (emacs org).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can also easily link/tag in org from other files, and stay in a sane happy space. Org-jira acts as a DMZ between my personal organization and the rest of the company.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etos0sv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1563064875.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etor556\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"trae\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1563035411.0, \"send_replies\": true, \"parent_id\": \"t1_etm029p\", \"score\": 2, \"author_fullname\": \"t2_1oqx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"How do you use org-jira? Do you find it's better than the web interface?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etor556\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow do you use org-jira? Do you find it\\u0026#39;s better than the web interface?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etor556/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1563064211.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etor0up\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"trae\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1563035318.0, \"send_replies\": true, \"parent_id\": \"t1_etmn8h3\", \"score\": 2, \"author_fullname\": \"t2_1oqx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm not sure how to filter things. Depending on how your macro is structured (is it already a bunch of elisp?) you can do the following from command line\\n\\n /usr/local/bin/emacsclient -n -e '(my/org-capture-in-popout-frame)'\\n\\nThis causes emacsclient to connect to a running emacs session and fire off the `my/org-capture-in-popout-frame` function. For me this is way to automatically invoke org-capture from anywhere. This could work for you as well if you're already calling a bunch of elisp in your macro.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etor0up\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not sure how to filter things. Depending on how your macro is structured (is it already a bunch of elisp?) you can do the following from command line\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E/usr/local/bin/emacsclient -n -e \\u0026#39;(my/org-capture-in-popout-frame)\\u0026#39;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis causes emacsclient to connect to a running emacs session and fire off the \\u003Ccode\\u003Emy/org-capture-in-popout-frame\\u003C/code\\u003E function. For me this is way to automatically invoke org-capture from anywhere. This could work for you as well if you\\u0026#39;re already calling a bunch of elisp in your macro.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etor0up/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1563064118.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cclnex\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etocpw4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"takethecannoli4\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563023522.0, \"send_replies\": true, \"parent_id\": \"t1_etoavea\", \"score\": 2, \"author_fullname\": \"t2_13p6gig2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I sent a message to emacs-orgmode@gnu.org.\", \"link_title\": \"Can Org automatically add leading zeroes to keep ordered lists aligned?\", \"author_flair_css_class\": null, \"name\": \"t1_etocpw4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI sent a message to \\u003Ca href=\\\"mailto:emacs-orgmode@gnu.org\\\"\\u003Eemacs-orgmode@gnu.org\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/etocpw4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"report_reasons\": null, \"link_author\": \"takethecannoli4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"created\": 1563052322.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etocjho\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomatoaway\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1563023342.0, \"send_replies\": true, \"parent_id\": \"t1_etnwbjl\", \"score\": 1, \"author_fullname\": \"t2_xup40\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"correct, I need to give it a try\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etocjho\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ecorrect, I need to give it a try\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etocjho/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1563052142.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cclnex\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etocafg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"takethecannoli4\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563023081.0, \"send_replies\": true, \"parent_id\": \"t1_etnx3po\", \"score\": 1, \"author_fullname\": \"t2_13p6gig2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, but that's not exactly what I'm looking for.\", \"link_title\": \"Can Org automatically add leading zeroes to keep ordered lists aligned?\", \"author_flair_css_class\": null, \"name\": \"t1_etocafg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, but that\\u0026#39;s not exactly what I\\u0026#39;m looking for.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/etocafg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"report_reasons\": null, \"link_author\": \"takethecannoli4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"created\": 1563051881.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cclnex\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etoavea\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563021585.0, \"send_replies\": true, \"parent_id\": \"t3_cclnex\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm not aware of any existing code that does this. It would make a nice addition to Org, gated by a setting.\", \"link_title\": \"Can Org automatically add leading zeroes to keep ordered lists aligned?\", \"author_flair_css_class\": null, \"name\": \"t1_etoavea\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not aware of any existing code that does this. It would make a nice addition to Org, gated by a setting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/etoavea/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"report_reasons\": null, \"link_author\": \"takethecannoli4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"created\": 1563050385.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccndd0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etoarby\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563021460.0, \"send_replies\": true, \"parent_id\": \"t3_ccndd0\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"That's a pretty long post. I don't want to read all of it, sorry. :)\\n\\nI recommend using a standard Org datetree like:\\n\\n * 2019\\n ** 2019-07 July\\n *** 2019-07-13 Saturday\\n **** [[https://www.reddit.com/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/][/r/emacs discussion on journal files]]\\n\\nI've been using a `log.org` file like that for years, and it's only come to 1.3 MB so far, although I don't write in it every day.\\n\\nThis kind of datetree works well with e.g. `helm-org-rifle` and built-in Org Agenda and sparse-tree searches. It also makes it easy to split or archive trees if the file ever gets too large. For example, if you write a lot, you could easily refile each year to a separate file, or use the built-in archiving commands.\", \"link_title\": \"long journal file? weekly files? what do you do?\", \"author_flair_css_class\": null, \"name\": \"t1_etoarby\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s a pretty long post. I don\\u0026#39;t want to read all of it, sorry. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI recommend using a standard Org datetree like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* 2019\\n** 2019-07 July\\n*** 2019-07-13 Saturday\\n**** [[https://www.reddit.com/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/][/r/emacs discussion on journal files]]\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been using a \\u003Ccode\\u003Elog.org\\u003C/code\\u003E file like that for years, and it\\u0026#39;s only come to 1.3 MB so far, although I don\\u0026#39;t write in it every day.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis kind of datetree works well with e.g. \\u003Ccode\\u003Ehelm-org-rifle\\u003C/code\\u003E and built-in Org Agenda and sparse-tree searches. It also makes it easy to split or archive trees if the file ever gets too large. For example, if you write a lot, you could easily refile each year to a separate file, or use the built-in archiving commands.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/etoarby/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/\", \"created\": 1563050260.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cclnex\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etnx3po\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheGramm\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563003680.0, \"send_replies\": true, \"parent_id\": \"t3_cclnex\", \"score\": -2, \"author_fullname\": \"t2_k03ap\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Use \\\"*\\\" with keywords like TODO and done for tasks and keep these lists for groceries or whatnot\", \"link_title\": \"Can Org automatically add leading zeroes to keep ordered lists aligned?\", \"author_flair_css_class\": null, \"name\": \"t1_etnx3po\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUse \\u0026quot;*\\u0026quot; with keywords like TODO and done for tasks and keep these lists for groceries or whatnot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/etnx3po/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"report_reasons\": null, \"link_author\": \"takethecannoli4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"created\": 1563032480.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": -2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etnwbjl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"John-K-Smith\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1563002775.0, \"send_replies\": true, \"parent_id\": \"t1_etlogb6\", \"score\": 3, \"author_fullname\": \"t2_wjeua\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I think the following is reasonably doable, thoughts?\\n- write a shell script to handle the timer, conky etc.\\n- in order to export html with org, inside the above script, use `emacs -Q --script` to run emacs functions, such as `org-html-export-to-html`\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etnwbjl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think the following is reasonably doable, thoughts?\\n- write a shell script to handle the timer, conky etc.\\n- in order to export html with org, inside the above script, use \\u003Ccode\\u003Eemacs -Q --script\\u003C/code\\u003E to run emacs functions, such as \\u003Ccode\\u003Eorg-html-export-to-html\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etnwbjl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1563031575.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etnvpj2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gtuckerkellogg\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1563002066.0, \"send_replies\": true, \"parent_id\": \"t3_ccafi6\", \"score\": 1, \"author_fullname\": \"t2_4zkpc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"At the end of the day I often move incomplete scheduled tasks onto the next day's schedule. I'd like to log this postponement automatically so I see how often I reschedule tasks for being incomplete. Is there a way to automatically log schedule changes?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etnvpj2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAt the end of the day I often move incomplete scheduled tasks onto the next day\\u0026#39;s schedule. I\\u0026#39;d like to log this postponement automatically so I see how often I reschedule tasks for being incomplete. Is there a way to automatically log schedule changes?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etnvpj2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1563030866.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etncu7d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562983377.0, \"send_replies\": true, \"parent_id\": \"t1_etmlvo8\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Great work! I think you should post that directly to /r/emacs, because I think a lot of people would find that useful and inspiring. I can imagine a lot of interesting projects based on it.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etncu7d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreat work! I think you should post that directly to \\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E, because I think a lot of people would find that useful and inspiring. I can imagine a lot of interesting projects based on it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etncu7d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1563012177.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etnct4c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562983353.0, \"send_replies\": true, \"parent_id\": \"t1_etm029p\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E I wrapped curl in a python script that edited out the repeated headers. Some HTTP response codes had to be found and put in the right spot.\\n\\nPlease publish that, even if it's just something like a GitHub Gist linked here. That could be helpful to someone in the future. :)\\n\\nAlso, please consider reporting a bug to the `request` repo, if you haven't already. It has a new maintainer, and maybe it could be fixed, which would help everyone.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etnct4c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI wrapped curl in a python script that edited out the repeated headers. Some HTTP response codes had to be found and put in the right spot.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EPlease publish that, even if it\\u0026#39;s just something like a GitHub Gist linked here. That could be helpful to someone in the future. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, please consider reporting a bug to the \\u003Ccode\\u003Erequest\\u003C/code\\u003E repo, if you haven\\u0026#39;t already. It has a new maintainer, and maybe it could be fixed, which would help everyone.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etnct4c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1563012153.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etncpbk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562983263.0, \"send_replies\": true, \"parent_id\": \"t1_etmn8h3\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E What is the way to get an org-subtree filtering for TODOs with names like \\\"PAUSED\\\" or \\\"WAITING\\\", and then exporting the visible buffer to a file format that conky can use?\\n\\nYou would use either Org Agenda or e.g. `org-ql` to display a list of matching items. Then you could write the buffer to a file (either as plain text, or using a package like `htmlize` to export it as HTML), or export an Agenda view as HTML (I think there are built-in commands to do that).\\n\\nRunning Emacs commands from a shell script is easy. The `-l` option loads a library (like `(require ...)`), and the `-f` option calls a function by name, and `--eval` evals an sexp.\\n\\nYou can also write a combination shell script and Emacs lisp script in a single file with a couple of easy tricks. See https://github.com/alphapapa/matrix-client.el/blob/master/matrix-client-standalone.el.sh for an example. It works really well.\\n\\nOther potential solutions might include exporting the subtree to another file format, like JSON (see recently published `ox-json` package, for example), and then you can turn that into whatever output you desire. You could easily do that with a script.\\n\\n/u/trae's suggestion about using Org IDs is good, and also see the function `org-find-olp`.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etncpbk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWhat is the way to get an org-subtree filtering for TODOs with names like \\u0026quot;PAUSED\\u0026quot; or \\u0026quot;WAITING\\u0026quot;, and then exporting the visible buffer to a file format that conky can use?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYou would use either Org Agenda or e.g. \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E to display a list of matching items. Then you could write the buffer to a file (either as plain text, or using a package like \\u003Ccode\\u003Ehtmlize\\u003C/code\\u003E to export it as HTML), or export an Agenda view as HTML (I think there are built-in commands to do that).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERunning Emacs commands from a shell script is easy. The \\u003Ccode\\u003E-l\\u003C/code\\u003E option loads a library (like \\u003Ccode\\u003E(require ...)\\u003C/code\\u003E), and the \\u003Ccode\\u003E-f\\u003C/code\\u003E option calls a function by name, and \\u003Ccode\\u003E--eval\\u003C/code\\u003E evals an sexp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can also write a combination shell script and Emacs lisp script in a single file with a couple of easy tricks. See \\u003Ca href=\\\"https://github.com/alphapapa/matrix-client.el/blob/master/matrix-client-standalone.el.sh\\\"\\u003Ehttps://github.com/alphapapa/matrix-client.el/blob/master/matrix-client-standalone.el.sh\\u003C/a\\u003E for an example. It works really well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOther potential solutions might include exporting the subtree to another file format, like JSON (see recently published \\u003Ccode\\u003Eox-json\\u003C/code\\u003E package, for example), and then you can turn that into whatever output you desire. You could easily do that with a script.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"/u/trae\\\"\\u003E/u/trae\\u003C/a\\u003E\\u0026#39;s suggestion about using Org IDs is good, and also see the function \\u003Ccode\\u003Eorg-find-olp\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etncpbk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1563012063.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etnc9c1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562982888.0, \"send_replies\": true, \"parent_id\": \"t1_etlogb6\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Aim: Have an Org TODO subtree shown on my desktop at all times\\n\\nAlternatively, use an Emacs frame showing a single window showing only that subtree. Your window manager should be able to make it translucent if desired, and you can probably find a way to restrict input to the X window if you want it to be read-only. You could probably also use a script to take a screenshot of the frame and display that instead.\\n\\nBTW, you might find the package `org-now` helpful.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etnc9c1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAim: Have an Org TODO subtree shown on my desktop at all times\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAlternatively, use an Emacs frame showing a single window showing only that subtree. Your window manager should be able to make it translucent if desired, and you can probably find a way to restrict input to the X window if you want it to be read-only. You could probably also use a script to take a screenshot of the frame and display that instead.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBTW, you might find the package \\u003Ccode\\u003Eorg-now\\u003C/code\\u003E helpful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etnc9c1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1563011688.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etmn8h3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomatoaway\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562963821.0, \"send_replies\": true, \"parent_id\": \"t1_etm091l\", \"score\": 2, \"author_fullname\": \"t2_xup40\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I've been struggling with this part a lot. I have a keyboard macro that does the job, but nothing programmatic.\\n\\nWhat is the way to get an org-subtree filtering for TODOs with names like \\\"PAUSED\\\" or \\\"WAITING\\\", and then exporting the visible buffer to a file format that conky can use?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etmn8h3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been struggling with this part a lot. I have a keyboard macro that does the job, but nothing programmatic.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is the way to get an org-subtree filtering for TODOs with names like \\u0026quot;PAUSED\\u0026quot; or \\u0026quot;WAITING\\u0026quot;, and then exporting the visible buffer to a file format that conky can use?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etmn8h3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1562992621.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etmlvo8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Jumpy89\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562962917.0, \"send_replies\": true, \"parent_id\": \"t3_ccafi6\", \"score\": 4, \"author_fullname\": \"t2_4z2xq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Posted about my org -\\u003E JSON conversion package a couple of weeks ago, but now I've managed to convert it to full-fledged export backend. There are still several features I want to add but it does mostly everything already. I think people would find it useful, check it out here: [https://github.com/jlumpe/ox-json](https://github.com/jlumpe/ox-json).\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etmlvo8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPosted about my org -\\u0026gt; JSON conversion package a couple of weeks ago, but now I\\u0026#39;ve managed to convert it to full-fledged export backend. There are still several features I want to add but it does mostly everything already. I think people would find it useful, check it out here: \\u003Ca href=\\\"https://github.com/jlumpe/ox-json\\\"\\u003Ehttps://github.com/jlumpe/ox-json\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etmlvo8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1562991717.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etmkh04\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Jumpy89\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562961980.0, \"send_replies\": true, \"parent_id\": \"t1_etlogb6\", \"score\": 3, \"author_fullname\": \"t2_4z2xq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Been trying to get something like this set up too. Why not write an elisp script to do the export and have it run periodically?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etmkh04\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBeen trying to get something like this set up too. Why not write an elisp script to do the export and have it run periodically?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etmkh04/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1562990780.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etm7th2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"OnlyDeanCanLayEggs\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562953920.0, \"send_replies\": true, \"parent_id\": \"t1_etm7pwc\", \"score\": 3, \"author_fullname\": \"t2_esslo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you!\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etm7th2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etm7th2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1562982720.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etm7pwc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"lally\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562953858.0, \"send_replies\": true, \"parent_id\": \"t1_etm3324\", \"score\": 3, \"author_fullname\": \"t2_33f78\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"https://github.com/ahungry/org-jira\\n\\nBuilds a custom org file per project. You then set up agenda views to keep a list of what's up. Remember you can use arbitrary properties as columns.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etm7pwc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/ahungry/org-jira\\\"\\u003Ehttps://github.com/ahungry/org-jira\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBuilds a custom org file per project. You then set up agenda views to keep a list of what\\u0026#39;s up. Remember you can use arbitrary properties as columns.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etm7pwc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1562982658.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etm3324\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"OnlyDeanCanLayEggs\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562950986.0, \"send_replies\": true, \"parent_id\": \"t1_etm029p\", \"score\": 3, \"author_fullname\": \"t2_esslo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I can connect org-mode to Jira?! I desperately need this in my life.\\n\\nCan you provide more details on how you did this?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etm3324\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can connect org-mode to Jira?! I desperately need this in my life.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECan you provide more details on how you did this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etm3324/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1562979786.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etm091l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"trae\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562949232.0, \"send_replies\": true, \"parent_id\": \"t1_etluwns\", \"score\": 2, \"author_fullname\": \"t2_1oqx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003EThe main bottleneck is exporting a specific org sub tree to file from outside of emacs\\n\\nUse org-id and write some elisp to export a subtree by ID, perhaps into HTML? have a headless chrome instance render the html, take a screenshot set as your backround.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etm091l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe main bottleneck is exporting a specific org sub tree to file from outside of emacs\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EUse org-id and write some elisp to export a subtree by ID, perhaps into HTML? have a headless chrome instance render the html, take a screenshot set as your backround.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etm091l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1562978032.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etm029p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"lally\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562949114.0, \"send_replies\": true, \"parent_id\": \"t3_ccafi6\", \"score\": 3, \"author_fullname\": \"t2_33f78\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Recently figured out how to use org-jira at the office. Problem was originally that there were some redirects through an internal proxy that confused request.el. I wrapped curl in a python script that edited out the repeated headers. Some HTTP response codes had to be found and put in the right spot.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etm029p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERecently figured out how to use org-jira at the office. Problem was originally that there were some redirects through an internal proxy that confused request.el. I wrapped curl in a python script that edited out the repeated headers. Some HTTP response codes had to be found and put in the right spot.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etm029p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1562977914.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etluwns\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomatoaway\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562945861.0, \"send_replies\": true, \"parent_id\": \"t1_etlr9mn\", \"score\": 2, \"author_fullname\": \"t2_xup40\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Well, emacs has an internal run-timer, so I could use that. On the system level though I tend to favour systemd-timer, but I actually think Conky has it's own daemon for refreshing changes.\\n\\n\\u0026#x200B;\\n\\nThe main bottleneck is exporting a specific org sub tree to file from outside of emacs, but maybe inside emacs is not a bad option (I tend to have emacs-sever running anyhow, so why not just use it)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etluwns\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, emacs has an internal run-timer, so I could use that. On the system level though I tend to favour systemd-timer, but I actually think Conky has it\\u0026#39;s own daemon for refreshing changes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe main bottleneck is exporting a specific org sub tree to file from outside of emacs, but maybe inside emacs is not a bad option (I tend to have emacs-sever running anyhow, so why not just use it)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etluwns/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1562974661.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etlr9mn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"loopsdeer\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562943528.0, \"send_replies\": true, \"parent_id\": \"t1_etlogb6\", \"score\": 2, \"author_fullname\": \"t2_b6zh5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You were kinda vague so I'll throw out some more specific stuff to check out: Cron job (timed, simple), file watching pipeline (on save, more complex), emacs hook on save. That's how you regen the HTML. Not sure about how to refresh conky when the HTML file changes.\\n\\nGood luck! Cool idea! Could make this a component in an informative HTML dashboard too!\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etlr9mn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou were kinda vague so I\\u0026#39;ll throw out some more specific stuff to check out: Cron job (timed, simple), file watching pipeline (on save, more complex), emacs hook on save. That\\u0026#39;s how you regen the HTML. Not sure about how to refresh conky when the HTML file changes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGood luck! Cool idea! Could make this a component in an informative HTML dashboard too!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etlr9mn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1562972328.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccafi6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etlogb6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomatoaway\", \"num_comments\": 23, \"can_mod_post\": false, \"created_utc\": 1562941678.0, \"send_replies\": true, \"parent_id\": \"t3_ccafi6\", \"score\": 3, \"author_fullname\": \"t2_xup40\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Aim: Have an Org TODO subtree shown on my desktop at all times\\n\\nMethod: Periodically export an org-subtree to HTML or RTF and display it via Conky\\n\\nAttempts:\\n\\n* Find an existing org to conky library\\n * Nope, does not exist\\n* Find a way to export org to html from the commandline\\n * Methods do exist, but very hacky\\n* Find a way to export org-to-html from within emacs\\n * Doable, but feels very wrong\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etlogb6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAim: Have an Org TODO subtree shown on my desktop at all times\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Periodically export an org-subtree to HTML or RTF and display it via Conky\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAttempts:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EFind an existing org to conky library\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENope, does not exist\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFind a way to export org to html from the commandline\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EMethods do exist, but very hacky\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFind a way to export org-to-html from within emacs\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDoable, but feels very wrong\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/etlogb6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"created\": 1562970478.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cc5vz5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etl847c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1562926433.0, \"send_replies\": true, \"parent_id\": \"t1_etl6t5j\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"It's not just a matter of the theme, but how you organize your agenda. The combination of your chosen theme with your way of organizing can help new users see possibilities they wouldn't otherwise know about. :)\", \"link_title\": \"How to avoid duplicates in org-super-agenda\", \"author_flair_css_class\": null, \"name\": \"t1_etl847c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s not just a matter of the theme, but how you organize your agenda. The combination of your chosen theme with your way of organizing can help new users see possibilities they wouldn\\u0026#39;t otherwise know about. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/etl847c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"report_reasons\": null, \"link_author\": \"gtuckerkellogg\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"created\": 1562955233.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cc5vz5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etl6t5j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gtuckerkellogg\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1562924566.0, \"send_replies\": true, \"parent_id\": \"t1_etl2sw6\", \"score\": 1, \"author_fullname\": \"t2_4zkpc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"It's nothing special, though; it's just the leuven theme (unless maybe I forgot about some extra configuration I did)\", \"link_title\": \"How to avoid duplicates in org-super-agenda\", \"author_flair_css_class\": null, \"name\": \"t1_etl6t5j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s nothing special, though; it\\u0026#39;s just the leuven theme (unless maybe I forgot about some extra configuration I did)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/etl6t5j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"report_reasons\": null, \"link_author\": \"gtuckerkellogg\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"created\": 1562953366.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cc5vz5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etl2sw6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1562918722.0, \"send_replies\": true, \"parent_id\": \"t3_cc5vz5\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Nice screenshot. Please consider submitting one for the examples in the documentation. :)\", \"link_title\": \"How to avoid duplicates in org-super-agenda\", \"author_flair_css_class\": null, \"name\": \"t1_etl2sw6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice screenshot. Please consider submitting one for the examples in the documentation. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/etl2sw6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"report_reasons\": null, \"link_author\": \"gtuckerkellogg\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"created\": 1562947522.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cc5vz5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etkv5jk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gtuckerkellogg\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1562909814.0, \"send_replies\": true, \"parent_id\": \"t1_etksknt\", \"score\": 3, \"author_fullname\": \"t2_4zkpc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks! I should have known there was a variable. And there's also `org-agenda-skip-deadline-prewarning-if-scheduled`\", \"link_title\": \"How to avoid duplicates in org-super-agenda\", \"author_flair_css_class\": null, \"name\": \"t1_etkv5jk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks! I should have known there was a variable. And there\\u0026#39;s also \\u003Ccode\\u003Eorg-agenda-skip-deadline-prewarning-if-scheduled\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/etkv5jk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"report_reasons\": null, \"link_author\": \"gtuckerkellogg\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"created\": 1562938614.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cc5vz5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etksknt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"chelya\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1562907212.0, \"send_replies\": true, \"parent_id\": \"t3_cc5vz5\", \"score\": 3, \"author_fullname\": \"t2_pnn88\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Configure `org-agenda-skip-scheduled-if-deadline-is-shown`\", \"link_title\": \"How to avoid duplicates in org-super-agenda\", \"author_flair_css_class\": null, \"name\": \"t1_etksknt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EConfigure \\u003Ccode\\u003Eorg-agenda-skip-scheduled-if-deadline-is-shown\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/etksknt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"report_reasons\": null, \"link_author\": \"gtuckerkellogg\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"created\": 1562936012.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cbucs2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etivyny\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hmlwilliams\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1562861003.0, \"send_replies\": true, \"parent_id\": \"t3_cbucs2\", \"score\": 5, \"author_fullname\": \"t2_s1eux6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Could you try org-caldav with the CalDav endpoint of Google calendar?\", \"link_title\": \"org-gcal\", \"author_flair_css_class\": null, \"name\": \"t1_etivyny\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECould you try org-caldav with the CalDav endpoint of Google calendar?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cbucs2/orggcal/etivyny/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cbucs2/orggcal/\", \"report_reasons\": null, \"link_author\": \"Sewing31\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cbucs2/orggcal/\", \"created\": 1562889803.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cbucs2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etiq04j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Sewing31\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1562857199.0, \"send_replies\": true, \"parent_id\": \"t1_etik477\", \"score\": 1, \"author_fullname\": \"t2_3p3qqcr1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I gave up on this after wasting 4 hours =/\", \"link_title\": \"org-gcal\", \"author_flair_css_class\": null, \"name\": \"t1_etiq04j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI gave up on this after wasting 4 hours =/\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cbucs2/orggcal/etiq04j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cbucs2/orggcal/\", \"report_reasons\": null, \"link_author\": \"Sewing31\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cbucs2/orggcal/\", \"created\": 1562885999.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cbucs2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etik477\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cottasteel\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1562852517.0, \"send_replies\": true, \"parent_id\": \"t3_cbucs2\", \"score\": 2, \"author_fullname\": \"t2_7nfrv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Are you using the kidd fork of the code (https://github.com/kidd/org-gcal.el) that is on melpa?\\n\\nI'm also trying to get org-gcal to work. I managed to get it so that Google can download to org, but I can't get org to post new events to Google. I think that is because there were recently changes to request.el that broke it (https://github.com/kidd/org-gcal.el/issues/28)\", \"link_title\": \"org-gcal\", \"author_flair_css_class\": null, \"name\": \"t1_etik477\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAre you using the kidd fork of the code (\\u003Ca href=\\\"https://github.com/kidd/org-gcal.el\\\"\\u003Ehttps://github.com/kidd/org-gcal.el\\u003C/a\\u003E) that is on melpa?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m also trying to get org-gcal to work. I managed to get it so that Google can download to org, but I can\\u0026#39;t get org to post new events to Google. I think that is because there were recently changes to request.el that broke it (\\u003Ca href=\\\"https://github.com/kidd/org-gcal.el/issues/28\\\"\\u003Ehttps://github.com/kidd/org-gcal.el/issues/28\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cbucs2/orggcal/etik477/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cbucs2/orggcal/\", \"report_reasons\": null, \"link_author\": \"Sewing31\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cbucs2/orggcal/\", \"created\": 1562881317.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c8r2oj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etgorb6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"little_big_h\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1562795658.0, \"send_replies\": true, \"parent_id\": \"t1_etfzku2\", \"score\": 1, \"author_fullname\": \"t2_11kij2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Well, the key reason is that I wanted something that is well supported by emacs and the surrounding ecosystem. For example, I am currently discovering the lispy minor mode which seems extremely powerful. Lispy fundamentally works because lisp has so little syntactic sugar. Implementing that for the Wolfram language seems like a nightmare.\\n\\nI also found that I like the Wolfram sugar less and less because I always hit a point where my programs become too complex to be covered by it. The prototypical example for me is the //-operator which does not allow me to pass in multiple options.\", \"link_title\": \"Launching a program with an org-babel source block?\", \"author_flair_css_class\": null, \"name\": \"t1_etgorb6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, the key reason is that I wanted something that is well supported by emacs and the surrounding ecosystem. For example, I am currently discovering the lispy minor mode which seems extremely powerful. Lispy fundamentally works because lisp has so little syntactic sugar. Implementing that for the Wolfram language seems like a nightmare.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also found that I like the Wolfram sugar less and less because I always hit a point where my programs become too complex to be covered by it. The prototypical example for me is the //-operator which does not allow me to pass in multiple options.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/etgorb6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/\", \"created\": 1562824458.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etg5kck\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rcdwealth\", \"num_comments\": 21, \"can_mod_post\": false, \"created_utc\": 1562784247.0, \"send_replies\": true, \"parent_id\": \"t1_eqhq1wb\", \"score\": 1, \"author_fullname\": \"t2_u86pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"It is totally different peace of software.\\n\\nBut hey, Org Mode is a simple text file. Any editor with some macro capabilities could be making at least basics of the Org Mode.\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_etg5kck\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt is totally different peace of software.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut hey, Org Mode is a simple text file. Any editor with some macro capabilities could be making at least basics of the Org Mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/etg5kck/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1562813047.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3xrzz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etg4lwa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rcdwealth\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1562783709.0, \"send_replies\": true, \"parent_id\": \"t3_c3xrzz\", \"score\": 1, \"author_fullname\": \"t2_u86pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Wow, I cannot believe the attitude of those developers.\\n\\nFrom: \\u003Chttps://smos.cs-syd.eu/features.html\\u003E\\n\\n\\u003E Smos intends to deprecate Emacs org mode by being more robust, more customisable, by providing a better and more tool-friendly file format and by using a more sane configuration language.\\n\\nI understand that author has some animosity against Emacs and Org Mode within Emacs. Well... we say that after the good horse running, there is some dust behind, meaning, there will be jealous and envious people.\\n\\nThere are various hierarchical note taking applications, like Zim Wiki or [Cherrytree](https://www.giuspen.com/cherrytree/) and I appreciate those efforts, beautiful work. Yet, none of them are bashing on others. Sad situation that a developer has personal problems with peace of software he did not quite grasp or understand. \\u262e\", \"link_title\": \"Smos: a replacement for emacs org mode\", \"author_flair_css_class\": null, \"name\": \"t1_etg4lwa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWow, I cannot believe the attitude of those developers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom: \\u003Ca href=\\\"https://smos.cs-syd.eu/features.html\\\"\\u003Ehttps://smos.cs-syd.eu/features.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESmos intends to deprecate Emacs org mode by being more robust, more customisable, by providing a better and more tool-friendly file format and by using a more sane configuration language.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI understand that author has some animosity against Emacs and Org Mode within Emacs. Well... we say that after the good horse running, there is some dust behind, meaning, there will be jealous and envious people.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere are various hierarchical note taking applications, like Zim Wiki or \\u003Ca href=\\\"https://www.giuspen.com/cherrytree/\\\"\\u003ECherrytree\\u003C/a\\u003E and I appreciate those efforts, beautiful work. Yet, none of them are bashing on others. Sad situation that a developer has personal problems with peace of software he did not quite grasp or understand. \\u262e\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/etg4lwa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"created\": 1562812509.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c8r2oj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etfzku2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eeg_bert\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1562780845.0, \"send_replies\": true, \"parent_id\": \"t1_etexrxp\", \"score\": 1, \"author_fullname\": \"t2_uhm4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"RE (4): I'm interested in both. Why not just keep the source blocks in the `wolfram` language, and focus on fixing (2)-(3)? Is there a reason why you need it to be in LISP syntax?\", \"link_title\": \"Launching a program with an org-babel source block?\", \"author_flair_css_class\": null, \"name\": \"t1_etfzku2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERE (4): I\\u0026#39;m interested in both. Why not just keep the source blocks in the \\u003Ccode\\u003Ewolfram\\u003C/code\\u003E language, and focus on fixing (2)-(3)? Is there a reason why you need it to be in LISP syntax?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/etfzku2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/\", \"created\": 1562809645.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_carf7m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etftwx7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1562777514.0, \"send_replies\": true, \"parent_id\": \"t1_etaqc43\", \"score\": 2, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you for the refs to the relevant place in the documentation and on the tutorial. Once I could stop poking through Org-R, I could focus on the Babel functionality with these links and get it working.\", \"link_title\": \"I have been trying to get R to read Org tables, but ...\", \"author_flair_css_class\": null, \"name\": \"t1_etftwx7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for the refs to the relevant place in the documentation and on the tutorial. Once I could stop poking through Org-R, I could focus on the Babel functionality with these links and get it working.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/etftwx7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"created\": 1562806314.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_carf7m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etftm1l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1562777338.0, \"send_replies\": true, \"parent_id\": \"t1_etaxf8i\", \"score\": 2, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"As I've edited into the original post, this example in simple french was what I managed to work off of. Thanks for the link and the help.\", \"link_title\": \"I have been trying to get R to read Org tables, but ...\", \"author_flair_css_class\": null, \"name\": \"t1_etftm1l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs I\\u0026#39;ve edited into the original post, this example in simple french was what I managed to work off of. Thanks for the link and the help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/etftm1l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"created\": 1562806138.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_carf7m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etftf7u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1562777227.0, \"send_replies\": true, \"parent_id\": \"t1_etale6c\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, that last is pretty much my target. The table can take up most of the file, and the R code block should crunch it and output a graph, or another org table.\\n\\nPlaying with it, I was reminded by R that R won't accept any table entries that have blank cells.\", \"link_title\": \"I have been trying to get R to read Org tables, but ...\", \"author_flair_css_class\": null, \"name\": \"t1_etftf7u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, that last is pretty much my target. The table can take up most of the file, and the R code block should crunch it and output a graph, or another org table.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlaying with it, I was reminded by R that R won\\u0026#39;t accept any table entries that have blank cells.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/etftf7u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"created\": 1562806027.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_carf7m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etft702\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1562777090.0, \"send_replies\": true, \"parent_id\": \"t1_etavxnl\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you. That is a good example.\", \"link_title\": \"I have been trying to get R to read Org tables, but ...\", \"author_flair_css_class\": null, \"name\": \"t1_etft702\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you. That is a good example.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/etft702/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"created\": 1562805890.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c9fl0b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etf2ldp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gtuckerkellogg\", \"num_comments\": 17, \"can_mod_post\": false, \"created_utc\": 1562757857.0, \"send_replies\": true, \"parent_id\": \"t3_c9fl0b\", \"score\": 1, \"author_fullname\": \"t2_4zkpc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"In ESS, `(setq ess-eval-visibly 'nowait)` will return control of an R buffer to the user while a process is running. Is there a way to avoid waiting when executing an R chunk from an org-mode buffer using `C-c C-c`?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 05, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etf2ldp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn ESS, \\u003Ccode\\u003E(setq ess-eval-visibly \\u0026#39;nowait)\\u003C/code\\u003E will return control of an R buffer to the user while a process is running. Is there a way to avoid waiting when executing an R chunk from an org-mode buffer using \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c9fl0b/weekly_rorgmode_open_discussion_july_05_2019/etf2ldp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c9fl0b/weekly_rorgmode_open_discussion_july_05_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c9fl0b/weekly_rorgmode_open_discussion_july_05_2019/\", \"created\": 1562786657.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cb1toc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etf24v6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562757357.0, \"send_replies\": true, \"parent_id\": \"t3_cb1toc\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I doubt that this is actually caused by Org Agenda code, even if it is triggered by the way you're using it. It's probably a matter of how Emacs handles symlinks.\", \"link_title\": \"An Issue when editing files added to org-agenda-files list and linked symbolically\", \"author_flair_css_class\": null, \"name\": \"t1_etf24v6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI doubt that this is actually caused by Org Agenda code, even if it is triggered by the way you\\u0026#39;re using it. It\\u0026#39;s probably a matter of how Emacs handles symlinks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cb1toc/an_issue_when_editing_files_added_to/etf24v6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cb1toc/an_issue_when_editing_files_added_to/\", \"report_reasons\": null, \"link_author\": \"M0ll3art\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cb1toc/an_issue_when_editing_files_added_to/\", \"created\": 1562786157.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c9fl0b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etez2kc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gtuckerkellogg\", \"num_comments\": 17, \"can_mod_post\": false, \"created_utc\": 1562753762.0, \"send_replies\": true, \"parent_id\": \"t1_et841xa\", \"score\": 1, \"author_fullname\": \"t2_4zkpc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"So was I and I didn't even know it!.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 05, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etez2kc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo was I and I didn\\u0026#39;t even know it!.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c9fl0b/weekly_rorgmode_open_discussion_july_05_2019/etez2kc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c9fl0b/weekly_rorgmode_open_discussion_july_05_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c9fl0b/weekly_rorgmode_open_discussion_july_05_2019/\", \"created\": 1562782562.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c8r2oj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etexrxp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"little_big_h\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1562752041.0, \"send_replies\": true, \"parent_id\": \"t1_eta8ijr\", \"score\": 1, \"author_fullname\": \"t2_11kij2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is good feedback -- thanks so much.\\n\\nRegarding 1.: that already works since Mathematica will happily export anything into a pdf or png.\\n\\nRegarding 2.: Good idea, this sounds tricky. I don't know how hard it is to render straight into a buffer (both from Mathematica as well as emacs side). I have been thinking about reimplementing the rendering on the emacs side (the number of Mathematica graphics primitives is reasonably short.\\n\\nRegarding 3.: I also use that. It is on my mental list.\\n\\nRegarding 4.: On this one, I am very interested to hear more. Are you referring to the plain (FullForm) syntax, i.e., BarChart[Association[Rule[x, 5]]] or the syntactic sugar, i.e., \\u003C|x-\\u003E5|\\u003E//BarChart? I am asking because the FullForm is basically the same in lisp (replace [] by () and move the function into the expression) and I can't really do something about that. The sugar is more interesting: I also like it and tried to find something similar that is still valid emacs lisp (hence all the #' [] and '[] stuff). I am not super happy about that one and would like to have a proper reddit discussion about this at some point.\", \"link_title\": \"Launching a program with an org-babel source block?\", \"author_flair_css_class\": null, \"name\": \"t1_etexrxp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is good feedback -- thanks so much.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding 1.: that already works since Mathematica will happily export anything into a pdf or png.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding 2.: Good idea, this sounds tricky. I don\\u0026#39;t know how hard it is to render straight into a buffer (both from Mathematica as well as emacs side). I have been thinking about reimplementing the rendering on the emacs side (the number of Mathematica graphics primitives is reasonably short.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding 3.: I also use that. It is on my mental list.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding 4.: On this one, I am very interested to hear more. Are you referring to the plain (FullForm) syntax, i.e., BarChart[Association[Rule[x, 5]]] or the syntactic sugar, i.e., \\u0026lt;|x-\\u0026gt;5|\\u0026gt;//BarChart? I am asking because the FullForm is basically the same in lisp (replace [] by () and move the function into the expression) and I can\\u0026#39;t really do something about that. The sugar is more interesting: I also like it and tried to find something similar that is still valid emacs lisp (hence all the #\\u0026#39; [] and \\u0026#39;[] stuff). I am not super happy about that one and would like to have a proper reddit discussion about this at some point.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/etexrxp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/\", \"created\": 1562780841.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cb6jgx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etex4aq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"lrtDam\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562751125.0, \"send_replies\": true, \"parent_id\": \"t3_cb6jgx\", \"score\": 1, \"author_fullname\": \"t2_7eegp5a\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Might not be able to help in this case but your org bullet setup seems pretty nice. Care to share the setup? couldn't find the utf-8 charcter\", \"link_title\": \"How to filter checklist in the agenda view?\", \"author_flair_css_class\": null, \"name\": \"t1_etex4aq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMight not be able to help in this case but your org bullet setup seems pretty nice. Care to share the setup? couldn\\u0026#39;t find the utf-8 charcter\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cb6jgx/how_to_filter_checklist_in_the_agenda_view/etex4aq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cb6jgx/how_to_filter_checklist_in_the_agenda_view/\", \"report_reasons\": null, \"link_author\": \"zaiste\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cb6jgx/how_to_filter_checklist_in_the_agenda_view/\", \"created\": 1562779925.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6jsy4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eteshgy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1562744835.0, \"send_replies\": true, \"parent_id\": \"t1_ete65bu\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E I think you misunderstand me. I already use window tiling with my current WM. \\n\\nBut it's \\\"real\\\" tiling? Or simply few shortcut like Gnome Shell \\\"tiling\\\" extension?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 28, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eteshgy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI think you misunderstand me. I already use window tiling with my current WM. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EBut it\\u0026#39;s \\u0026quot;real\\u0026quot; tiling? Or simply few shortcut like Gnome Shell \\u0026quot;tiling\\u0026quot; extension?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/eteshgy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"created\": 1562773635.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6jsy4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ete65bu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1562723907.0, \"send_replies\": true, \"parent_id\": \"t1_etcocal\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E But did you try for around a week tiling model, with \\\"free\\\" tiling WM, I means that allow you to easily reshuffle windows and open them as you like?\\n\\nI think you misunderstand me. I already use window tiling with my current WM. I do not *exclusively* use window tiling with it.\\n\\n\\u003E In terms of MP, well... yes it's a regression, but it does not bother too much in daily usage IME. At least the advantage it offer IMO are superior to the disadvantages...\\n\\nI'm glad it works for you. I already have enough issues with Emacs freezing sometimes, waiting on process output, or in an infinite loop I have to `C-g` or `SIGUSR2` out of. Of course, those are usually caused by packages, not Emacs itself, but that's beside the point. It's annoying enough when Emacs freezes; at least I can use other apps while I wait. If Emacs were my entire desktop environment, I'd be stuck. No thanks. If I want an extensible Lisp WM badly enough, there's StumpWM.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 28, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ete65bu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EBut did you try for around a week tiling model, with \\u0026quot;free\\u0026quot; tiling WM, I means that allow you to easily reshuffle windows and open them as you like?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI think you misunderstand me. I already use window tiling with my current WM. I do not \\u003Cem\\u003Eexclusively\\u003C/em\\u003E use window tiling with it.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIn terms of MP, well... yes it\\u0026#39;s a regression, but it does not bother too much in daily usage IME. At least the advantage it offer IMO are superior to the disadvantages...\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m glad it works for you. I already have enough issues with Emacs freezing sometimes, waiting on process output, or in an infinite loop I have to \\u003Ccode\\u003EC-g\\u003C/code\\u003E or \\u003Ccode\\u003ESIGUSR2\\u003C/code\\u003E out of. Of course, those are usually caused by packages, not Emacs itself, but that\\u0026#39;s beside the point. It\\u0026#39;s annoying enough when Emacs freezes; at least I can use other apps while I wait. If Emacs were my entire desktop environment, I\\u0026#39;d be stuck. No thanks. If I want an extensible Lisp WM badly enough, there\\u0026#39;s StumpWM.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/ete65bu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"created\": 1562752707.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6jsy4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etcocal\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1562689225.0, \"send_replies\": true, \"parent_id\": \"t1_etc2tia\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E I don't want to be limited to non-overlapping windows. Tiling windows is useful; overlapping windows is also useful.\\n\\nBut did you try for around a week tiling model, with \\\"free\\\" tiling WM, I means that allow you to easily reshuffle windows and open them as you like? In terms of MP, well... yes it's a regression, but it does not bother too much in daily usage IME. At least the advantage it offer IMO are superior to the disadvantages...\\n\\nOn org-web-tools-archive, sorry I do not specify: while I normally use org-attach I still want to keep a certain fs-centric file management so if I have a base64-encoded single html file or a pdf file (generated by Firefox \\\"print page\\\") I have an object easy to share outside my setup, a tarball with html+all the rest is not as immediate.\\n\\n\\u003E Yes, that's the idea of unpackaged.el. As I wrote in the readme\\nYep, but means read the code and decide. What I mean is a real book, with human language text that explain why I do this, why that, what are the alternatives etc.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 28, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etcocal\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI don\\u0026#39;t want to be limited to non-overlapping windows. Tiling windows is useful; overlapping windows is also useful.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EBut did you try for around a week tiling model, with \\u0026quot;free\\u0026quot; tiling WM, I means that allow you to easily reshuffle windows and open them as you like? In terms of MP, well... yes it\\u0026#39;s a regression, but it does not bother too much in daily usage IME. At least the advantage it offer IMO are superior to the disadvantages...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn org-web-tools-archive, sorry I do not specify: while I normally use org-attach I still want to keep a certain fs-centric file management so if I have a base64-encoded single html file or a pdf file (generated by Firefox \\u0026quot;print page\\u0026quot;) I have an object easy to share outside my setup, a tarball with html+all the rest is not as immediate.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYes, that\\u0026#39;s the idea of unpackaged.el. As I wrote in the readme\\nYep, but means read the code and decide. What I mean is a real book, with human language text that explain why I do this, why that, what are the alternatives etc.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/etcocal/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"created\": 1562718025.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6jsy4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etc2tia\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1562673394.0, \"send_replies\": true, \"parent_id\": \"t1_etc0e1l\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Try EXWM and I'm pretty sure you'll not looking back :-) Tiling like i3 etc are too constrained so you end-up in very little use of tiling concept, too rigid, with EXWM (and few other tiling WM to be honest) that rigidity is not there anymore, you can layout windows as you like, switch between them, hide them, reshuffle the layout, resize any windows etc in a snap, without having anymore to drag windows around...\\n\\nI guess you misunderstood me. I don't want to be limited to non-overlapping windows. Tiling windows is useful; overlapping windows is also useful. I use keyboard shortcuts to manage, resize, and position windows; I also use the mouse to do so.\\n\\nEXWM is very cool, but I have no interest in it because, as much as I like Emacs, I don't want my whole GUI to be beholden to an Emacs process. Cooperative multitasking (or the appearance of it) seems like a 3-decade regression to me. It's good for the window manager to be a separate, dedicated process.\\n\\n\\u003E Yep, but resulting .zip it's not comfortable as .html/.pdf files, or perhaps I have to dig a bit if there is a way to get single-page all-embedded html/pdf...\\n\\nI don't understand what you mean. Pages are archived to zip files or .tar.xz files. The `org-web-tools-archive-view` command extracts the archive to a temp directory and shows the page in a browser with the images, etc.\\n\\nIf you must have a single HTML file, that would be easy to do without also saving images, etc. Or you could find or write a tool to base64-encode resources in the HTML file, but that would not be very space-efficient.\\n\\nIf you have a command-line tool to save Web pages as PDFs, it would be easy to write an Emacs command to use that.\\n\\n\\u003E The idea of a sort of \\\"live book\\\" from witch it's easy to pull out anything it's appealing...\\n\\nYes, that's the idea of `unpackaged.el`. As I wrote in the readme:\\n\\n\\u003E There are two ways to use the code in this \\u201cunpackage\\u201d:\\n\\n\\u003E * Buffet: Choose the the parts you want and copy them into your init files.\\n\\u003E * Whole-hog: Load the file unpackaged.el, which is tangled from this Org file, e.g. (require 'unpackaged).\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 28, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etc2tia\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ETry EXWM and I\\u0026#39;m pretty sure you\\u0026#39;ll not looking back :-) Tiling like i3 etc are too constrained so you end-up in very little use of tiling concept, too rigid, with EXWM (and few other tiling WM to be honest) that rigidity is not there anymore, you can layout windows as you like, switch between them, hide them, reshuffle the layout, resize any windows etc in a snap, without having anymore to drag windows around...\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI guess you misunderstood me. I don\\u0026#39;t want to be limited to non-overlapping windows. Tiling windows is useful; overlapping windows is also useful. I use keyboard shortcuts to manage, resize, and position windows; I also use the mouse to do so.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEXWM is very cool, but I have no interest in it because, as much as I like Emacs, I don\\u0026#39;t want my whole GUI to be beholden to an Emacs process. Cooperative multitasking (or the appearance of it) seems like a 3-decade regression to me. It\\u0026#39;s good for the window manager to be a separate, dedicated process.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYep, but resulting .zip it\\u0026#39;s not comfortable as .html/.pdf files, or perhaps I have to dig a bit if there is a way to get single-page all-embedded html/pdf...\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t understand what you mean. Pages are archived to zip files or .tar.xz files. The \\u003Ccode\\u003Eorg-web-tools-archive-view\\u003C/code\\u003E command extracts the archive to a temp directory and shows the page in a browser with the images, etc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you must have a single HTML file, that would be easy to do without also saving images, etc. Or you could find or write a tool to base64-encode resources in the HTML file, but that would not be very space-efficient.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you have a command-line tool to save Web pages as PDFs, it would be easy to write an Emacs command to use that.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe idea of a sort of \\u0026quot;live book\\u0026quot; from witch it\\u0026#39;s easy to pull out anything it\\u0026#39;s appealing...\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYes, that\\u0026#39;s the idea of \\u003Ccode\\u003Eunpackaged.el\\u003C/code\\u003E. As I wrote in the readme:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThere are two ways to use the code in this \\u201cunpackage\\u201d:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBuffet: Choose the the parts you want and copy them into your init files.\\u003C/li\\u003E\\n\\u003Cli\\u003EWhole-hog: Load the file unpackaged.el, which is tangled from this Org file, e.g. (require \\u0026#39;unpackaged).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/etc2tia/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"created\": 1562702194.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6jsy4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etc0e1l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1562670640.0, \"send_replies\": true, \"parent_id\": \"t1_etbtvjm\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E I don't agree at all. It's simple and useful. It's not obsolete just because someone says so. ;)\\n\\nHum, there are of course someone who say that, but that's not all. Before Unity desktop many people already have custom setups with a smaller top bar and a launcher-bar aside like\\nAWN, Cairo dock etc. Ubuntu only create a coherent environment with the same ideas implemented as a \\\"DE\\\". And that's valid also elsewhere, think about desktop notifications: how many \\\"third party\\\" \\\"not-DE-specific\\\", lightweight notification daemons we have? How many small configurable bars? Clipboard managers etc. So to say, there is a generic feeling, someone express crystal clear and go bulldozer-like in a direction, others remain in silence but that's is.\\n\\nI have the luck to been able to push a bit GNU/Linux desktop in the enterprise during a bit more than a decade (a tough and not completely successful move, but anyway) at first I propose both Kde3 and Gnome2, Gnome2 was a clear winner, people get confused by Kde complexity. After few years with Gnome and a bit expanding userbase I frequently noticed people unable to understand Gnome menus, things like \\\"hey if you look for Firefox ne network submenus it's clearly the right place isn't it?\\\" but no, they keep have trouble. After initial move to Unity the general reaction was a shock but not last longer they get quickly inhabited to Unity and start feel at home in it. At first many, normally the most experienced, feel lost, unable to understand what application they have installed etc, but newcomers are happy and in the end experts get accustomed to the new model really well. Now with Gnome SHell... Well, for the first time in more than a decade a significant number of users ask me what about coming back to Windows... I think that's not a bug problem, they simply feel the desktop as an invasive thing. With Unity they are happy because Unity is simply invisible but there when you need something, while Gnome SHell even if it's look like exactly Unity with only minor difference it present the opposite model, not something in background, hided but ready to serve but the narcissistic center of the world and people reject it. Tiling WM and the revival of minimalist WM (Windowmaker, Sawfish, Fluxbox, OpenBox, ...) is IMO today's answer of \\\"power users\\\", the other simply decide to live in a browser... Only a very few limited subset of users still look for classic CDE/Win9x WM model. And most of them choose Xfce simply because they feel it as an ugly but less invasive alternatives to modern DE. On Kde well... After Unity death sentence I try to propose again Kde: the results where only complaints. Gnome SHell get also complaint but less. Other Gnome2 forks (Mate, ...) get too mixed results and no one seems to accept minimal WMs...\\n\\n\\u003E Tiling is fine, but it does not replace overlapping windows.\\n\\nTry EXWM and I'm pretty sure you'll not looking back :-) Tiling like i3 etc are too constrained so you end-up in very little use of tiling concept, too rigid, with EXWM (and few other tiling WM to be honest) that rigidity is not there anymore, you can layout windows as you like, switch between them, hide them, reshuffle the layout, resize any windows etc in a snap, without having anymore to drag windows around...\\n\\n\\u003E Did you not see the org-web-tools-archive-attach command? It archives pages with Wget or archive.today.\\n\\nYep, but resulting .zip it's not comfortable as .html/.pdf files, or perhaps I have to dig a bit if there is a way to get single-page all-embedded html/pdf...\\n\\n\\u003E Well, good luck with that. It sounds daunting.\\n\\nA bit, that's why is damn slow...\\n\\n\\u003E You might find that more users will be able to benefit if you publish independent pieces that people can integrate into their own configs.\\n\\nPerhaps I'll try this approach if I do not get further in mine, only it's not comprehensive, I mean I can publish (done in the past) my zsh config, vim config (abandoned, but still there just in case), Emacs config, etc all as separate copy\\u0026paste walls of text... The idea of a sort of \\\"live book\\\" from witch it's easy to pull out anything it's appealing...\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 28, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etc0e1l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI don\\u0026#39;t agree at all. It\\u0026#39;s simple and useful. It\\u0026#39;s not obsolete just because someone says so. ;)\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EHum, there are of course someone who say that, but that\\u0026#39;s not all. Before Unity desktop many people already have custom setups with a smaller top bar and a launcher-bar aside like\\nAWN, Cairo dock etc. Ubuntu only create a coherent environment with the same ideas implemented as a \\u0026quot;DE\\u0026quot;. And that\\u0026#39;s valid also elsewhere, think about desktop notifications: how many \\u0026quot;third party\\u0026quot; \\u0026quot;not-DE-specific\\u0026quot;, lightweight notification daemons we have? How many small configurable bars? Clipboard managers etc. So to say, there is a generic feeling, someone express crystal clear and go bulldozer-like in a direction, others remain in silence but that\\u0026#39;s is.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have the luck to been able to push a bit GNU/Linux desktop in the enterprise during a bit more than a decade (a tough and not completely successful move, but anyway) at first I propose both Kde3 and Gnome2, Gnome2 was a clear winner, people get confused by Kde complexity. After few years with Gnome and a bit expanding userbase I frequently noticed people unable to understand Gnome menus, things like \\u0026quot;hey if you look for Firefox ne network submenus it\\u0026#39;s clearly the right place isn\\u0026#39;t it?\\u0026quot; but no, they keep have trouble. After initial move to Unity the general reaction was a shock but not last longer they get quickly inhabited to Unity and start feel at home in it. At first many, normally the most experienced, feel lost, unable to understand what application they have installed etc, but newcomers are happy and in the end experts get accustomed to the new model really well. Now with Gnome SHell... Well, for the first time in more than a decade a significant number of users ask me what about coming back to Windows... I think that\\u0026#39;s not a bug problem, they simply feel the desktop as an invasive thing. With Unity they are happy because Unity is simply invisible but there when you need something, while Gnome SHell even if it\\u0026#39;s look like exactly Unity with only minor difference it present the opposite model, not something in background, hided but ready to serve but the narcissistic center of the world and people reject it. Tiling WM and the revival of minimalist WM (Windowmaker, Sawfish, Fluxbox, OpenBox, ...) is IMO today\\u0026#39;s answer of \\u0026quot;power users\\u0026quot;, the other simply decide to live in a browser... Only a very few limited subset of users still look for classic CDE/Win9x WM model. And most of them choose Xfce simply because they feel it as an ugly but less invasive alternatives to modern DE. On Kde well... After Unity death sentence I try to propose again Kde: the results where only complaints. Gnome SHell get also complaint but less. Other Gnome2 forks (Mate, ...) get too mixed results and no one seems to accept minimal WMs...\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ETiling is fine, but it does not replace overlapping windows.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETry EXWM and I\\u0026#39;m pretty sure you\\u0026#39;ll not looking back :-) Tiling like i3 etc are too constrained so you end-up in very little use of tiling concept, too rigid, with EXWM (and few other tiling WM to be honest) that rigidity is not there anymore, you can layout windows as you like, switch between them, hide them, reshuffle the layout, resize any windows etc in a snap, without having anymore to drag windows around...\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDid you not see the org-web-tools-archive-attach command? It archives pages with Wget or archive.today.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYep, but resulting .zip it\\u0026#39;s not comfortable as .html/.pdf files, or perhaps I have to dig a bit if there is a way to get single-page all-embedded html/pdf...\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWell, good luck with that. It sounds daunting.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EA bit, that\\u0026#39;s why is damn slow...\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYou might find that more users will be able to benefit if you publish independent pieces that people can integrate into their own configs.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EPerhaps I\\u0026#39;ll try this approach if I do not get further in mine, only it\\u0026#39;s not comprehensive, I mean I can publish (done in the past) my zsh config, vim config (abandoned, but still there just in case), Emacs config, etc all as separate copy\\u0026amp;paste walls of text... The idea of a sort of \\u0026quot;live book\\u0026quot; from witch it\\u0026#39;s easy to pull out anything it\\u0026#39;s appealing...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/etc0e1l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"created\": 1562699440.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6jsy4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etbtvjm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1562661637.0, \"send_replies\": true, \"parent_id\": \"t1_etbsxv1\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Sure, but irrelevant in terms of generic desktop: they are simply implementing an obsolete paradigm. ... Projects like Xfce, LXde, LXQt keep up the idea of menus and bars that it's really an outdated nonsense.\\n\\nI don't agree at all. It's simple and useful. It's not obsolete just because someone says so. ;)\\n\\n\\u003E Power users not understand that classic floating windows model it's not that smart nor comfortable and go more and more for tiling WMs, classic DEs try to \\\"be smart\\\" since convince generic users to tiling models it's practically impossible but they timidly try autoplacing windows, offer \\\"hot sides\\\" to \\\"tile\\\" windows side-by-side, dynamic virtual desktops that act to a certain extend as tiling if you use fullscreen windows and switch between virtual screens etc.\\n\\nTiling is fine, but it does not replace overlapping windows. There are situations in which overlapping windows is exactly what I need. It's not an exclusive choice; the window manager can easily offer both. I've used KWin for many years, and it does exactly that. One key press or mouse drag and a window is tiled to whatever corner or side I want. A simple drag and I resize and/or move the window, overlapping if desired.\\n\\n\\u003E It's a problem if an application expect to run in Gnome or Kde and behave badly otherwise...\\n\\nKDE apps tend to be well-behaved and integrated, but also functional outside of KDE.\\n\\nGNOME went off the deep end many years ago in pursuit of a narrow-minded, useless ideal preached by a few self-appointed designers. Talk about irrelevant. I don't know why you even mention GNOME. :P If you asked me to pick a Linux desktop environment that would be least likely to win converts from Windows or Mac, I would pick GNOME.\\n\\nBut, hey, the whole point of FOSS is freedom. So people who want to use GNOME can use it! Freedom!\\n\\n\\u003E Thanks, I tried it now, unfortunately it seems to be less \\\"powerful\\\" than Save Page We for my use (I mostly \\\"mirror\\\" webpages of interest locally so I can consult them in the future with org-attach to a short captured summary of why I keep it and the original URL), for the rest I mostly download files (pdf/images) that are standalone and do not require conversion, however it's nice, I'll try do dig a bit more :-)\\n\\nDid you not see the `org-web-tools-archive-attach` command? It archives pages with Wget or archive.today.\\n\\n\\u003E Unfortunately doing this works for Emacs, but my goal is to publish a \\\"complete setup\\\", so not only Emacs but also NixOS configs, various dotfiles managed via org-babel etc... And it's complicated to separate personal parts from public one especially to keep something to show the workflow... Anyway sooner or later something will came up, I'm moderately optimist :-)\\n\\nWell, good luck with that. It sounds daunting. :) You might find that more users will be able to benefit if you publish independent pieces that people can integrate into their own configs. Probably not many people would throw away their configs and use your complete setup, and probably not many would spend the time to untangle the parts of it that they want.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 28, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etbtvjm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESure, but irrelevant in terms of generic desktop: they are simply implementing an obsolete paradigm. ... Projects like Xfce, LXde, LXQt keep up the idea of menus and bars that it\\u0026#39;s really an outdated nonsense.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t agree at all. It\\u0026#39;s simple and useful. It\\u0026#39;s not obsolete just because someone says so. ;)\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EPower users not understand that classic floating windows model it\\u0026#39;s not that smart nor comfortable and go more and more for tiling WMs, classic DEs try to \\u0026quot;be smart\\u0026quot; since convince generic users to tiling models it\\u0026#39;s practically impossible but they timidly try autoplacing windows, offer \\u0026quot;hot sides\\u0026quot; to \\u0026quot;tile\\u0026quot; windows side-by-side, dynamic virtual desktops that act to a certain extend as tiling if you use fullscreen windows and switch between virtual screens etc.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETiling is fine, but it does not replace overlapping windows. There are situations in which overlapping windows is exactly what I need. It\\u0026#39;s not an exclusive choice; the window manager can easily offer both. I\\u0026#39;ve used KWin for many years, and it does exactly that. One key press or mouse drag and a window is tiled to whatever corner or side I want. A simple drag and I resize and/or move the window, overlapping if desired.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIt\\u0026#39;s a problem if an application expect to run in Gnome or Kde and behave badly otherwise...\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EKDE apps tend to be well-behaved and integrated, but also functional outside of KDE.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGNOME went off the deep end many years ago in pursuit of a narrow-minded, useless ideal preached by a few self-appointed designers. Talk about irrelevant. I don\\u0026#39;t know why you even mention GNOME. :P If you asked me to pick a Linux desktop environment that would be least likely to win converts from Windows or Mac, I would pick GNOME.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut, hey, the whole point of FOSS is freedom. So people who want to use GNOME can use it! Freedom!\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThanks, I tried it now, unfortunately it seems to be less \\u0026quot;powerful\\u0026quot; than Save Page We for my use (I mostly \\u0026quot;mirror\\u0026quot; webpages of interest locally so I can consult them in the future with org-attach to a short captured summary of why I keep it and the original URL), for the rest I mostly download files (pdf/images) that are standalone and do not require conversion, however it\\u0026#39;s nice, I\\u0026#39;ll try do dig a bit more :-)\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EDid you not see the \\u003Ccode\\u003Eorg-web-tools-archive-attach\\u003C/code\\u003E command? It archives pages with Wget or archive.today.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EUnfortunately doing this works for Emacs, but my goal is to publish a \\u0026quot;complete setup\\u0026quot;, so not only Emacs but also NixOS configs, various dotfiles managed via org-babel etc... And it\\u0026#39;s complicated to separate personal parts from public one especially to keep something to show the workflow... Anyway sooner or later something will came up, I\\u0026#39;m moderately optimist :-)\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell, good luck with that. It sounds daunting. :) You might find that more users will be able to benefit if you publish independent pieces that people can integrate into their own configs. Probably not many people would throw away their configs and use your complete setup, and probably not many would spend the time to untangle the parts of it that they want.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/etbtvjm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"created\": 1562690437.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6jsy4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etbsxv1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1562660471.0, \"send_replies\": true, \"parent_id\": \"t1_etb6ojk\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E But I think alternatives like Xfce, LXde, LXQt, etc, are going to remain usable for a long time.\\n\\nSure, but irrelevant in terms of generic desktop: they are simply implementing an obsolete paradigm. Power users not understand that classic floating windows model it's not that smart nor comfortable and go more and more for tiling WMs, classic DEs try to \\\"be smart\\\" since convince generic users to tiling models it's practically impossible but they timidly try autoplacing windows, offer \\\"hot sides\\\" to \\\"tile\\\" windows side-by-side, dynamic virtual desktops that act to a certain extend as tiling if you use fullscreen windows and switch between virtual screens etc. Projects like Xfce, LXde, LXQt keep up the idea of menus and bars that it's really an outdated nonsense. Even if Xfce try to mimic a modern looking CDE it's still out of time. But that's not only a matter of 3D graphic but a matter of graphic libraries and their dependencies in both programming terms and services terms.\\n\\nIt's a problem if an application expect to run in Gnome or Kde and behave badly otherwise... In the past when development was done mostly by communities nearly anyone try to do it's best to be portable, now that development is mostly done by very few companies and big projects it seems to be a goal being incompatible with the rest of the world...\\n\\n\\u003E You might also find the org-web-tools package useful.\\n\\nThanks, I tried it now, unfortunately it seems to be less \\\"powerful\\\" than Save Page We for my use (I mostly \\\"mirror\\\" webpages of interest locally so I can consult them in the future with org-attach to a short captured summary of why I keep it and the original URL), for the rest I mostly download files (pdf/images) that are standalone and do not require conversion, however it's nice, I'll try do dig a bit more :-)\\n\\n\\u003E I decided to go the easy route by publishing parts of my config as a package which I then use in my config.\\n\\nUnfortunately doing this works for Emacs, but my goal is to publish a \\\"complete setup\\\", so not only Emacs but also NixOS configs, various dotfiles managed via org-babel etc... And it's complicated to separate personal parts from public one especially to keep something to show the workflow... Anyway sooner or later something will came up, I'm moderately optimist :-)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 28, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etbsxv1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EBut I think alternatives like Xfce, LXde, LXQt, etc, are going to remain usable for a long time.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESure, but irrelevant in terms of generic desktop: they are simply implementing an obsolete paradigm. Power users not understand that classic floating windows model it\\u0026#39;s not that smart nor comfortable and go more and more for tiling WMs, classic DEs try to \\u0026quot;be smart\\u0026quot; since convince generic users to tiling models it\\u0026#39;s practically impossible but they timidly try autoplacing windows, offer \\u0026quot;hot sides\\u0026quot; to \\u0026quot;tile\\u0026quot; windows side-by-side, dynamic virtual desktops that act to a certain extend as tiling if you use fullscreen windows and switch between virtual screens etc. Projects like Xfce, LXde, LXQt keep up the idea of menus and bars that it\\u0026#39;s really an outdated nonsense. Even if Xfce try to mimic a modern looking CDE it\\u0026#39;s still out of time. But that\\u0026#39;s not only a matter of 3D graphic but a matter of graphic libraries and their dependencies in both programming terms and services terms.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a problem if an application expect to run in Gnome or Kde and behave badly otherwise... In the past when development was done mostly by communities nearly anyone try to do it\\u0026#39;s best to be portable, now that development is mostly done by very few companies and big projects it seems to be a goal being incompatible with the rest of the world...\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYou might also find the org-web-tools package useful.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThanks, I tried it now, unfortunately it seems to be less \\u0026quot;powerful\\u0026quot; than Save Page We for my use (I mostly \\u0026quot;mirror\\u0026quot; webpages of interest locally so I can consult them in the future with org-attach to a short captured summary of why I keep it and the original URL), for the rest I mostly download files (pdf/images) that are standalone and do not require conversion, however it\\u0026#39;s nice, I\\u0026#39;ll try do dig a bit more :-)\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI decided to go the easy route by publishing parts of my config as a package which I then use in my config.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EUnfortunately doing this works for Emacs, but my goal is to publish a \\u0026quot;complete setup\\u0026quot;, so not only Emacs but also NixOS configs, various dotfiles managed via org-babel etc... And it\\u0026#39;s complicated to separate personal parts from public one especially to keep something to show the workflow... Anyway sooner or later something will came up, I\\u0026#39;m moderately optimist :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/etbsxv1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"created\": 1562689271.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6jsy4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etb6ojk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1562638403.0, \"send_replies\": true, \"parent_id\": \"t1_et93q6s\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E BTW with recent \\\"hardware innovations\\\" (from crappy graphic cards to (in)secure-boot) also GNU/Linux start to have problems in being a \\\"desktop alternative\\\" to OSX or Windows... An enormous regression if we look at the last 20 years (or more) in the past...\\n\\nYeah, I think it may have been a mistake for certain desktop environments to require 3D graphics. A few years ago it looked okay, maybe, but now it looks like a liability. \\n\\nBut I think alternatives like Xfce, LXde, LXQt, etc, are going to remain usable for a long time. \\n\\nWhat might become a problem is mainstream Web browsers, which are becoming dependent on 3D for rendering plain web pages.\\n\\n\\u003E unpackaged/org-attach-download\\n\\nYou might also find the `org-web-tools` package useful.\\n\\n\\u003E For now I'm looking for a way to separate personal stuff from the rest of the config without having to keep \\\"two versions\\\" so I can easily publish the whole public setup simply exporting only \\\":public:\\\" tags from a set of org files to another set of \\\"exported\\\" org files and after, eventually, exporting them in html. Actual solution (noweb refs) is a bit of a monster and org-babel does not seems to help much...\\n\\nYeah, that sounds like a great system, but I think it will require writing some code to implement. I decided to go the easy route by publishing parts of my config as a package which I then use in my config.\\n\\n\\u003E BTW thanks for mentioning \\\"On Writing Well\\\", I think I need to learn English far more before trying to improve my posts, but that's nice to add to my reading list, actually in Italian and French I can be a bit more succinct thanks to a better understatement of the language/grammar/vocabulary.\\n\\nYou write well in English, better than many native speakers! :)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 28, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_etb6ojk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EBTW with recent \\u0026quot;hardware innovations\\u0026quot; (from crappy graphic cards to (in)secure-boot) also GNU/Linux start to have problems in being a \\u0026quot;desktop alternative\\u0026quot; to OSX or Windows... An enormous regression if we look at the last 20 years (or more) in the past...\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYeah, I think it may have been a mistake for certain desktop environments to require 3D graphics. A few years ago it looked okay, maybe, but now it looks like a liability. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut I think alternatives like Xfce, LXde, LXQt, etc, are going to remain usable for a long time. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat might become a problem is mainstream Web browsers, which are becoming dependent on 3D for rendering plain web pages.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eunpackaged/org-attach-download\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYou might also find the \\u003Ccode\\u003Eorg-web-tools\\u003C/code\\u003E package useful.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EFor now I\\u0026#39;m looking for a way to separate personal stuff from the rest of the config without having to keep \\u0026quot;two versions\\u0026quot; so I can easily publish the whole public setup simply exporting only \\u0026quot;:public:\\u0026quot; tags from a set of org files to another set of \\u0026quot;exported\\u0026quot; org files and after, eventually, exporting them in html. Actual solution (noweb refs) is a bit of a monster and org-babel does not seems to help much...\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYeah, that sounds like a great system, but I think it will require writing some code to implement. I decided to go the easy route by publishing parts of my config as a package which I then use in my config.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EBTW thanks for mentioning \\u0026quot;On Writing Well\\u0026quot;, I think I need to learn English far more before trying to improve my posts, but that\\u0026#39;s nice to add to my reading list, actually in Italian and French I can be a bit more succinct thanks to a better understatement of the language/grammar/vocabulary.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYou write well in English, better than many native speakers! :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/etb6ojk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"created\": 1562667203.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_carf7m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etaxf8i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bloodqc\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1562631658.0, \"send_replies\": true, \"parent_id\": \"t3_carf7m\", \"score\": 3, \"author_fullname\": \"t2_33gj6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I think yesterday's post about pretty PDFs had some examples:\\n\\nhttps://gitlab.com/DarkBuffalo/emacs_latex_class/raw/master/example.org\", \"link_title\": \"I have been trying to get R to read Org tables, but ...\", \"author_flair_css_class\": null, \"name\": \"t1_etaxf8i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think yesterday\\u0026#39;s post about pretty PDFs had some examples:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://gitlab.com/DarkBuffalo/emacs_latex_class/raw/master/example.org\\\"\\u003Ehttps://gitlab.com/DarkBuffalo/emacs_latex_class/raw/master/example.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/etaxf8i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"created\": 1562660458.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_carf7m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etavxnl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdwm52\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1562630577.0, \"send_replies\": true, \"parent_id\": \"t3_carf7m\", \"score\": 2, \"author_fullname\": \"t2_mj8i2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"What happens if you give your tables a name and then pass them into an R source code block?\\n\\n\\u0026#x200B;\\n\\n\\\\#+name: my-table\\n\\n...\\n\\n\\u0026#x200B;\\n\\n\\\\#+header: :var tab=my-table\\n\\n...\\n\\ndim(tab)\", \"link_title\": \"I have been trying to get R to read Org tables, but ...\", \"author_flair_css_class\": null, \"name\": \"t1_etavxnl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat happens if you give your tables a name and then pass them into an R source code block?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+name: my-table\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+header: :var tab=my-table\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Edim(tab)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/etavxnl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"created\": 1562659377.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c9a1ky\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etaqza6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"chuckfr\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1562626902.0, \"send_replies\": true, \"parent_id\": \"t1_et9afrk\", \"score\": 1, \"author_fullname\": \"t2_100k2h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"What type of keyboard are you using? What OS are you running on?\", \"link_title\": \"Anyone experience lag when typing 100~ wpm or more\", \"author_flair_css_class\": null, \"name\": \"t1_etaqza6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat type of keyboard are you using? What OS are you running on?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/etaqza6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/\", \"report_reasons\": null, \"link_author\": \"codygman\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/\", \"created\": 1562655702.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1562626805.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_carf7m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etaqc43\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"GoldryBluszco\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1562626431.0, \"send_replies\": true, \"parent_id\": \"t3_carf7m\", \"score\": 5, \"author_fullname\": \"t2_opcrg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"As you indicate R is among the languages now supported by [org-babel](https://orgmode.org/worg/org-contrib/babel/languages.html) and in the [associated documentation](https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-R.html) one learns that it includes translation of tables - [here](https://github.com/erikriverson/org-mode-R-tutorial/blob/master/org-mode-R-tutorial.org) is a tutorial on its use\", \"link_title\": \"I have been trying to get R to read Org tables, but ...\", \"author_flair_css_class\": null, \"name\": \"t1_etaqc43\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs you indicate R is among the languages now supported by \\u003Ca href=\\\"https://orgmode.org/worg/org-contrib/babel/languages.html\\\"\\u003Eorg-babel\\u003C/a\\u003E and in the \\u003Ca href=\\\"https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-R.html\\\"\\u003Eassociated documentation\\u003C/a\\u003E one learns that it includes translation of tables - \\u003Ca href=\\\"https://github.com/erikriverson/org-mode-R-tutorial/blob/master/org-mode-R-tutorial.org\\\"\\u003Ehere\\u003C/a\\u003E is a tutorial on its use\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/etaqc43/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"created\": 1562655231.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1562778172.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_carf7m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etale6c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fearbedragons\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1562622953.0, \"send_replies\": true, \"parent_id\": \"t3_carf7m\", \"score\": 2, \"author_fullname\": \"t2_12yaty\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Let me do some research on this tonight, because I'm sure I solved this problem last year. I know the code's around here ...somewhere.\\n\\nEdit: Yeah, it's pretty easy to get tables to text files that R can import, if nothing else. Just name them and reference them in an R source block that saves to a file.\\n\\n #+name: mytable\\n | name | age |\\n |------+-----|\\n | jeff | 21 |\\n | greg | 23 |\\n | tom | 20 |\\n\\n\\n #+begin_src R :file agetable.tsv :var agetable=mytable\\n agetable\\n #+end_src\\n\\nThen, agetable.tsv contains:\\n\\n jeff\\t21\\n greg\\t23\\n tom 20\\n\\nR can import TSV just fine:\\n\\n \\u003E read.table(file = 'agetable.tsv', sep = '\\\\t', header = FALSE)\\n\\nHeck, if you didn't care about the interstitial files, you could just run the R calculations in the org file and save off the resultant output.\", \"link_title\": \"I have been trying to get R to read Org tables, but ...\", \"author_flair_css_class\": null, \"name\": \"t1_etale6c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELet me do some research on this tonight, because I\\u0026#39;m sure I solved this problem last year. I know the code\\u0026#39;s around here ...somewhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: Yeah, it\\u0026#39;s pretty easy to get tables to text files that R can import, if nothing else. Just name them and reference them in an R source block that saves to a file.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+name: mytable\\n| name | age |\\n|------+-----|\\n| jeff | 21 |\\n| greg | 23 |\\n| tom | 20 |\\n\\n\\n#+begin_src R :file agetable.tsv :var agetable=mytable\\n agetable\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThen, agetable.tsv contains:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ejeff 21\\ngreg 23\\ntom 20\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ER can import TSV just fine:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026gt; read.table(file = \\u0026#39;agetable.tsv\\u0026#39;, sep = \\u0026#39;\\\\t\\u0026#39;, header = FALSE)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHeck, if you didn\\u0026#39;t care about the interstitial files, you could just run the R calculations in the org file and save off the resultant output.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/etale6c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"created\": 1562651753.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5ysfq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eta8so5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"codygman\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1562614786.0, \"send_replies\": true, \"parent_id\": \"t3_c5ysfq\", \"score\": 1, \"author_fullname\": \"t2_3yy21\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You can use Google voice and say 'add note X' after setting default app to orgzly.\\n\\nToo bad a pocketsphinx equivalent of this is so hard to setup :/\", \"link_title\": \"[orgzly] Simplest way to add quick voice functionality to widget?\", \"author_flair_css_class\": null, \"name\": \"t1_eta8so5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can use Google voice and say \\u0026#39;add note X\\u0026#39; after setting default app to orgzly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EToo bad a pocketsphinx equivalent of this is so hard to setup :/\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c5ysfq/orgzly_simplest_way_to_add_quick_voice/eta8so5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c5ysfq/orgzly_simplest_way_to_add_quick_voice/\", \"report_reasons\": null, \"link_author\": \"pseudo-bash\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c5ysfq/orgzly_simplest_way_to_add_quick_voice/\", \"created\": 1562643586.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c8r2oj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eta8ijr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eeg_bert\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1562614602.0, \"send_replies\": true, \"parent_id\": \"t1_et2c8mk\", \"score\": 1, \"author_fullname\": \"t2_uhm4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"What a wonderful project. Well done. Here is my two cents:\\n\\n1. I want to be able to see visual data structures (like Entities, plots, etc).\\n2. I want to be able to see interactive stuff (like `Manipulate`, 3D plot rotations, etc).\\n3. I want to be able to use Mathematica's `F1` key (where you can quickly look up symbols, etc) and have function auto-completion (provided by Wolfram's GUI).\\n4. I'm not a fan of forcing LISP syntax over Mathematica's already elegant (IMO) M-expressions.\\n\\nWith that said this looks very interesting. I look forward to seeing how it develops.\", \"link_title\": \"Launching a program with an org-babel source block?\", \"author_flair_css_class\": null, \"name\": \"t1_eta8ijr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat a wonderful project. Well done. Here is my two cents:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EI want to be able to see visual data structures (like Entities, plots, etc).\\u003C/li\\u003E\\n\\u003Cli\\u003EI want to be able to see interactive stuff (like \\u003Ccode\\u003EManipulate\\u003C/code\\u003E, 3D plot rotations, etc).\\u003C/li\\u003E\\n\\u003Cli\\u003EI want to be able to use Mathematica\\u0026#39;s \\u003Ccode\\u003EF1\\u003C/code\\u003E key (where you can quickly look up symbols, etc) and have function auto-completion (provided by Wolfram\\u0026#39;s GUI).\\u003C/li\\u003E\\n\\u003Cli\\u003EI\\u0026#39;m not a fan of forcing LISP syntax over Mathematica\\u0026#39;s already elegant (IMO) M-expressions.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWith that said this looks very interesting. I look forward to seeing how it develops.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/eta8ijr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/\", \"created\": 1562643402.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c9a1ky\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"et9am8p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"codygman\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1562591688.0, \"send_replies\": true, \"parent_id\": \"t1_et4et67\", \"score\": 1, \"author_fullname\": \"t2_3yy21\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks! Ill give this a try later.\", \"link_title\": \"Anyone experience lag when typing 100~ wpm or more\", \"author_flair_css_class\": null, \"name\": \"t1_et9am8p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks! Ill give this a try later.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/et9am8p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/\", \"report_reasons\": null, \"link_author\": \"codygman\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/\", \"created\": 1562620488.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c9a1ky\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"et9afrk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"codygman\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1562591527.0, \"send_replies\": true, \"parent_id\": \"t1_eszo8hx\", \"score\": 1, \"author_fullname\": \"t2_3yy21\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Normal typing speed is 85~ or so.\\n\\nThe problem is when I have an 'AHA!' moment and type faster than average around 110 wpm I get lag.\", \"link_title\": \"Anyone experience lag when typing 100~ wpm or more\", \"author_flair_css_class\": null, \"name\": \"t1_et9afrk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENormal typing speed is 85~ or so.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe problem is when I have an \\u0026#39;AHA!\\u0026#39; moment and type faster than average around 110 wpm I get lag.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/et9afrk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/\", \"report_reasons\": null, \"link_author\": \"codygman\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/\", \"created\": 1562620327.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c9a1ky\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"et9abe8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"codygman\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1562591420.0, \"send_replies\": true, \"parent_id\": \"t1_esw3e7o\", \"score\": 1, \"author_fullname\": \"t2_3yy21\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I knew it sounded that way, which is why I specified the test being typing gibberish quickly :-)\", \"link_title\": \"Anyone experience lag when typing 100~ wpm or more\", \"author_flair_css_class\": null, \"name\": \"t1_et9abe8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI knew it sounded that way, which is why I specified the test being typing gibberish quickly :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/et9abe8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/\", \"report_reasons\": null, \"link_author\": \"codygman\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/\", \"created\": 1562620220.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_caioyu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"et96jd7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"primal_buddhist\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1562587769.0, \"send_replies\": true, \"parent_id\": \"t1_et95vva\", \"score\": 1, \"author_fullname\": \"t2_8257s\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you :-)\", \"link_title\": \"Navigating the date picker using the keyboard\", \"author_flair_css_class\": null, \"name\": \"t1_et96jd7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/caioyu/navigating_the_date_picker_using_the_keyboard/et96jd7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/caioyu/navigating_the_date_picker_using_the_keyboard/\", \"report_reasons\": null, \"link_author\": \"primal_buddhist\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/caioyu/navigating_the_date_picker_using_the_keyboard/\", \"created\": 1562616569.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_caioyu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"et96iyt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"primal_buddhist\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1562587757.0, \"send_replies\": true, \"parent_id\": \"t1_et95qr5\", \"score\": 1, \"author_fullname\": \"t2_8257s\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"thank you :-)\", \"link_title\": \"Navigating the date picker using the keyboard\", \"author_flair_css_class\": null, \"name\": \"t1_et96iyt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethank you :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/caioyu/navigating_the_date_picker_using_the_keyboard/et96iyt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/caioyu/navigating_the_date_picker_using_the_keyboard/\", \"report_reasons\": null, \"link_author\": \"primal_buddhist\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/caioyu/navigating_the_date_picker_using_the_keyboard/\", \"created\": 1562616557.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_et96iyt\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["286452"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:20 GMT"], "x-ratelimit-remaining": ["594.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["6"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495020.829352,VS0,VE406"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["581"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-07-19T00:10:20"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_eu55wtg"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:21 GMT"], "x-ratelimit-remaining": ["593.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["7"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495021.266912,VS0,VE70"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["579"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_eu55wtg"}, "recorded_at": "2019-07-19T00:10:21"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"We have *org-in-src-block-p* for source blocks, but nothing for other types of blocks (e.g. example, quote, etc)?\\n\\nI'm trying to execute a hydra only while in a block.\\n\\nEdit:\\n\\nWhen I do:\\n\\n (text-properties-at (point))\\n\\nI get:\\n\\n (face (:inherit (org-block)) font-lock-multiline t font-lock-fontified t fontified t)\\n\\nI'm guessing if I can check that the face inherits from org-block that may be good enough - but how do I do that?\", \"author_fullname\": \"t2_1tduz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Elisp to determine if I'm in a block?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ceuu7l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563468154.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563496663.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe have \\u003Cem\\u003Eorg-in-src-block-p\\u003C/em\\u003E for source blocks, but nothing for other types of blocks (e.g. example, quote, etc)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to execute a hydra only while in a block.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I do:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(text-properties-at (point))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI get:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(face (:inherit (org-block)) font-lock-multiline t font-lock-fontified t fontified t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m guessing if I can check that the face inherits from org-block that may be good enough - but how do I do that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceuu7l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BeetleB\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/ceuu7l/elisp_to_determine_if_im_in_a_block/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/ceuu7l/elisp_to_determine_if_im_in_a_block/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1563467863.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi r/orgmode\\n\\nI know that this question was asked about million times, but I can't seem to find answer. I have org folder structure where there are two levels of folders nested inside it and can't figure out how to get it all inside org-agenda-files and org-refile-targets. Here is how it looks now:\\n\\n (setq org-agenda-files (list \\\"~/org\\\"))\\n (setq org-refile-targets '((nil :maxlevel . 2)\\n \\t\\t\\t\\t (org-agenda-files :maxlevel . 3)))\\n\\nCan you help me with this one?\", \"author_fullname\": \"t2_3hfea\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-refile and subfolders\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cej7r2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563428027.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Ca href=\\\"/r/orgmode\\\"\\u003Er/orgmode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know that this question was asked about million times, but I can\\u0026#39;t seem to find answer. I have org folder structure where there are two levels of folders nested inside it and can\\u0026#39;t figure out how to get it all inside org-agenda-files and org-refile-targets. Here is how it looks now:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files (list \\u0026quot;~/org\\u0026quot;))\\n(setq org-refile-targets \\u0026#39;((nil :maxlevel . 2)\\n (org-agenda-files :maxlevel . 3)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ECan you help me with this one?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cej7r2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"stamp85\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1563399227.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"greetings. \\n\\n\\nBefore I get into it, let me state that I don't know if this is a good idea or a bad idea and would like to hear some thoughts and opinions from the community before i invest time going down this path. On the surface of it I think what i'm suggesting could be useful... at least with my workflow, but maybe i'm smoking too much... i don't know, i'll leave that up to you to decide. \\n\\n\\nMy idea is to create a custom export backend, *(which will essentially just be a few basic functions and some regex capture/replace i think as it need not be overcomplicated),* and a minor-mode for syntax highlighting etc, in order to quickly mark up web pages using org-mode. \\n\\n\\nWhere this differs from the other export back-ends is that i'd be using the html element names as the org-subtree headings, in order to benefit from org-mode functionality, ie, collapsing subtrees, easily moving subtrees around the document etc. I'm really shit at explaining things so just look at the proposed org markup example [here](https://github.com/techquila/org-elemental-export/blob/master/examples/org-elemental-export-markup-example.org), within emacs. (either clone or copy raw, don't view in browser), to see what i mean. \\n\\n\\nThe reason for this is I want to use emacs and org-mode as my static site generator. Yes I am aware there are options here and I do use Hugo together with the related export backend at the moment.. which is great.. just not how i want to do things. \\n\\n\\nI want to be able to use source blocks for css/js/golang, i also hope to make use of #+INCLUDE's in order to build template files. \\n\\n\\nI've tried very hard to bend org-html-export to my will in order to create semantic markup but i just can't seem to achieve the desired result. \\n\\n\\u0026#x200B;\\n\\nAnyways I'm not sure if this reads coherently... i'm not even sure i'm fully coherent with what i want to achieve but maybe you're smart enough to work out what i'm trying to do here and can offer some criticism, advice, ideas, or maybe just some acknowledgement that this could be a useful exercise. \\n\\n\\nI've written the regex i need already but as i'm still a novice elisp'er the rest of it will be challenging for me. I just don't want to waste my time going down the rabbit hole if there is a glaringly obvious reason not to go down this path that some of you more seasoned pro's can fill me in on. The only major problem i see at the moment is if html attributes were too lengthly to include on the org subtree heading line.\", \"author_fullname\": \"t2_11x4yc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"idea for you to slay or offer opinion on before i waste time building it\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ce5gvd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563351898.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Egreetings. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore I get into it, let me state that I don\\u0026#39;t know if this is a good idea or a bad idea and would like to hear some thoughts and opinions from the community before i invest time going down this path. On the surface of it I think what i\\u0026#39;m suggesting could be useful... at least with my workflow, but maybe i\\u0026#39;m smoking too much... i don\\u0026#39;t know, i\\u0026#39;ll leave that up to you to decide. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy idea is to create a custom export backend, \\u003Cem\\u003E(which will essentially just be a few basic functions and some regex capture/replace i think as it need not be overcomplicated),\\u003C/em\\u003E and a minor-mode for syntax highlighting etc, in order to quickly mark up web pages using org-mode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhere this differs from the other export back-ends is that i\\u0026#39;d be using the html element names as the org-subtree headings, in order to benefit from org-mode functionality, ie, collapsing subtrees, easily moving subtrees around the document etc. I\\u0026#39;m really shit at explaining things so just look at the proposed org markup example \\u003Ca href=\\\"https://github.com/techquila/org-elemental-export/blob/master/examples/org-elemental-export-markup-example.org\\\"\\u003Ehere\\u003C/a\\u003E, within emacs. (either clone or copy raw, don\\u0026#39;t view in browser), to see what i mean. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe reason for this is I want to use emacs and org-mode as my static site generator. Yes I am aware there are options here and I do use Hugo together with the related export backend at the moment.. which is great.. just not how i want to do things. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to be able to use source blocks for css/js/golang, i also hope to make use of #+INCLUDE\\u0026#39;s in order to build template files. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve tried very hard to bend org-html-export to my will in order to create semantic markup but i just can\\u0026#39;t seem to achieve the desired result. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyways I\\u0026#39;m not sure if this reads coherently... i\\u0026#39;m not even sure i\\u0026#39;m fully coherent with what i want to achieve but maybe you\\u0026#39;re smart enough to work out what i\\u0026#39;m trying to do here and can offer some criticism, advice, ideas, or maybe just some acknowledgement that this could be a useful exercise. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve written the regex i need already but as i\\u0026#39;m still a novice elisp\\u0026#39;er the rest of it will be challenging for me. I just don\\u0026#39;t want to waste my time going down the rabbit hole if there is a glaringly obvious reason not to go down this path that some of you more seasoned pro\\u0026#39;s can fill me in on. The only major problem i see at the moment is if html attributes were too lengthly to include on the org subtree heading line.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce5gvd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"techquila\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1563323098.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey all,\\n\\nI forgot to post here last week, so I'm posting for two posts this time.\\n\\nThis is really basic stuff, but the manual is not too clear about these.\\n\\n1. [Using whole org files as capture templates](https://joshrollinswrites.com/help-desk-head-desk/org-capture-in-files/) (and an example to when this is a good idea)\\n2. [Using two-letter captures to create \\\"sub-menus\\\" inside capture for organization](https://joshrollinswrites.com/help-desk-head-desk/sub-menus-in-org/) (and again, why)\\n\\n\\u0026#x200B;\\n\\nHope you like it! Let me know what you think :D\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Capture: the stuff under your nose\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cd6ay4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 32, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 32, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563136814.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563157400.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey all,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI forgot to post here last week, so I\\u0026#39;m posting for two posts this time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is really basic stuff, but the manual is not too clear about these.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/org-capture-in-files/\\\"\\u003EUsing whole org files as capture templates\\u003C/a\\u003E (and an example to when this is a good idea)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/sub-menus-in-org/\\\"\\u003EUsing two-letter captures to create \\u0026quot;sub-menus\\u0026quot; inside capture for organization\\u003C/a\\u003E (and again, why)\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHope you like it! Let me know what you think :D\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd6ay4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1563128600.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I want to use file-tags and want to rely on inherited tags. But I also use archive-files for moving done tasks out of my active files, where I put in my done-files. I noticed now that when I use org-archive-subtree file-tags and inherited tags aren't carried over. I can set a file-tag in the archive-file, but what do I do about inherited tags?\\n\\nFor example I have something like this:\\n\\n * customer1 :customer1:\\n ** TODO task 1\\n ** TODO task 2\\n\\nthe todos \\\"task 1\\\" and \\\"task 2\\\" have now the tag \\\"customer1\\\". When I archive \\\"task 1\\\" and/or \\\"task 2\\\" the tag gets lost when I do not archive \\\"customer 1\\\". Any way to carry over the inherited tags to the archive-file?\", \"author_fullname\": \"t2_ocr67\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Archive with inherited tags?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cczgwq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563111202.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to use file-tags and want to rely on inherited tags. But I also use archive-files for moving done tasks out of my active files, where I put in my done-files. I noticed now that when I use org-archive-subtree file-tags and inherited tags aren\\u0026#39;t carried over. I can set a file-tag in the archive-file, but what do I do about inherited tags?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example I have something like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* customer1 :customer1:\\n** TODO task 1\\n** TODO task 2\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ethe todos \\u0026quot;task 1\\u0026quot; and \\u0026quot;task 2\\u0026quot; have now the tag \\u0026quot;customer1\\u0026quot;. When I archive \\u0026quot;task 1\\u0026quot; and/or \\u0026quot;task 2\\u0026quot; the tag gets lost when I do not archive \\u0026quot;customer 1\\u0026quot;. Any way to carry over the inherited tags to the archive-file?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cczgwq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nielskob\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cczgwq/archive_with_inherited_tags/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cczgwq/archive_with_inherited_tags/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1563082402.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \" [https://melpa.org/#/org-reverse-datetree](https://melpa.org/#/org-reverse-datetree) \\n\\n\\u0026#x200B;\\n\\nCould come in handy for work journals. (I am not the author or maintainer.)\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-reverse-datetree: Create date-trees in reverse order.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccxg37\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563097842.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://melpa.org/#/org-reverse-datetree\\\"\\u003Ehttps://melpa.org/#/org-reverse-datetree\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECould come in handy for work journals. (I am not the author or maintainer.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccxg37\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/ccxg37/orgreversedatetree_create_datetrees_in_reverse/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/ccxg37/orgreversedatetree_create_datetrees_in_reverse/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1563069042.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello Org people, This week I'm battling a questions as old as org-mode itself: one file or many files?\\n\\nI'm also the writer of [Agenda, and the Benefit of Having Multiple Files](https://joshrollinswrites.com/help-desk-head-desk/agenda-multiple-files/) which started out in this Reddit, over [here](https://www.reddit.com/r/emacs/comments/99n3yu/orgmode_switching_to_multiplefile_setup/).\\n\\nOne morning I looked at my archive folder, which contains many w## files. On the other frame (always prefer frames to windows, when possible) I had my journal, which is broken by week number in a year. \\\"They are both the same thing,\\\" I thought. \\\"Why do I have both?\\\" Indeed, why?\\n\\n\\u0026#x200B;\\n\\nFor one, there's something nice about seeing my life broken into nice weekly chunks. It makes sense to me, and breaking the year to weeks rather then months is something friendlier and familiar to me.\\n\\n\\u0026#x200B;\\n\\nTwo, A day is usually too short for a project, a month can be too long. A week unit is usually a good measurements, with projects that always start on a certain week but can end much later on the agenda through scheduling.\\n\\nThree, I have this (irrational?) fear that I will lose one big file, but not *all* my weekly files. I have the files synced across four devices and an external backup, and I'm working on joining them to an online backup, so I think this argument (one way or another) is pretty much null at this point.\\n\\n\\u0026#x200B;\\n\\nFour, and I'm afraid that's the biggest reason, is that I don't have a better way to categorize everything. Using a weekly unit, I know *everything* goes in there. Personal tasks, work stuff, errands, quick reminders, etc. I don't even archive anything because it's all there archive already, in weeks past. This is not a bad thing: after all I don't want to waste hours thinking where something should go, as many things belong under more than one category. Yet, each week file contained two main headers, work and personal, and these in turned contained tasks and projects.\\n\\n\\u0026#x200B;\\n\\nMy journal is in my personal folder and by default does not sync on work devices. That's fine and logical, but also disturbing to the flow when I want to write a quick note about something I just did or a comment: I have to TRAMP back home with a long password (prefer it to a ssh key because I don't always connect from the same machine). It's much more natural for me to just enter a timestamp inside the task itself and write a couple of lines about what happened. These timestamps can also show later on the agenda in extensive(?) view when you hit the \\\"l\\\" key (be default) so I can see all these thoughts if I want to. On the other hand\\u2026 the journal contain personal stuff I don't want at work (I tried to sync the journal to my work machine as well, and it's just feels wrong to me). It is a nice file with a good flow to it with my thoughts and sometimes pictures I take as I travel (even have a script that shrinks and adds a label at the bottom with image magic.. when I tell others about it they call it a \\\"meme maker\\\" which I think it's one way to describe it).\\n\\n\\u0026#x200B;\\n\\n\\u2026So you see, I am committed to both systems at once, but I want to have one in place. One one hand, the many weekly files which seem to excel with tasks. On the other, the journal, where I can freely vent and express myself. I could add everything to the journal file, making it a huge file which contains also my tasks and todos.. but the thought of having a fifth and sixths level headers (because the journal entries themselves are already fourth level) with a bunch of half-chewed ToDo items with work related content in that holy personal place\\u2026 ughhh.\\n\\nHelp. What do you do? What are your thoughts? Can someone kick me in the right direction please\\u2026\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"long journal file? weekly files? what do you do?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccndd0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563038184.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello Org people, This week I\\u0026#39;m battling a questions as old as org-mode itself: one file or many files?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m also the writer of \\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/agenda-multiple-files/\\\"\\u003EAgenda, and the Benefit of Having Multiple Files\\u003C/a\\u003E which started out in this Reddit, over \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/99n3yu/orgmode_switching_to_multiplefile_setup/\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne morning I looked at my archive folder, which contains many w## files. On the other frame (always prefer frames to windows, when possible) I had my journal, which is broken by week number in a year. \\u0026quot;They are both the same thing,\\u0026quot; I thought. \\u0026quot;Why do I have both?\\u0026quot; Indeed, why?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor one, there\\u0026#39;s something nice about seeing my life broken into nice weekly chunks. It makes sense to me, and breaking the year to weeks rather then months is something friendlier and familiar to me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETwo, A day is usually too short for a project, a month can be too long. A week unit is usually a good measurements, with projects that always start on a certain week but can end much later on the agenda through scheduling.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThree, I have this (irrational?) fear that I will lose one big file, but not \\u003Cem\\u003Eall\\u003C/em\\u003E my weekly files. I have the files synced across four devices and an external backup, and I\\u0026#39;m working on joining them to an online backup, so I think this argument (one way or another) is pretty much null at this point.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFour, and I\\u0026#39;m afraid that\\u0026#39;s the biggest reason, is that I don\\u0026#39;t have a better way to categorize everything. Using a weekly unit, I know \\u003Cem\\u003Eeverything\\u003C/em\\u003E goes in there. Personal tasks, work stuff, errands, quick reminders, etc. I don\\u0026#39;t even archive anything because it\\u0026#39;s all there archive already, in weeks past. This is not a bad thing: after all I don\\u0026#39;t want to waste hours thinking where something should go, as many things belong under more than one category. Yet, each week file contained two main headers, work and personal, and these in turned contained tasks and projects.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy journal is in my personal folder and by default does not sync on work devices. That\\u0026#39;s fine and logical, but also disturbing to the flow when I want to write a quick note about something I just did or a comment: I have to TRAMP back home with a long password (prefer it to a ssh key because I don\\u0026#39;t always connect from the same machine). It\\u0026#39;s much more natural for me to just enter a timestamp inside the task itself and write a couple of lines about what happened. These timestamps can also show later on the agenda in extensive(?) view when you hit the \\u0026quot;l\\u0026quot; key (be default) so I can see all these thoughts if I want to. On the other hand\\u2026 the journal contain personal stuff I don\\u0026#39;t want at work (I tried to sync the journal to my work machine as well, and it\\u0026#39;s just feels wrong to me). It is a nice file with a good flow to it with my thoughts and sometimes pictures I take as I travel (even have a script that shrinks and adds a label at the bottom with image magic.. when I tell others about it they call it a \\u0026quot;meme maker\\u0026quot; which I think it\\u0026#39;s one way to describe it).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2026So you see, I am committed to both systems at once, but I want to have one in place. One one hand, the many weekly files which seem to excel with tasks. On the other, the journal, where I can freely vent and express myself. I could add everything to the journal file, making it a huge file which contains also my tasks and todos.. but the thought of having a fifth and sixths level headers (because the journal entries themselves are already fourth level) with a bunch of half-chewed ToDo items with work related content in that holy personal place\\u2026 ughhh.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHelp. What do you do? What are your thoughts? Can someone kick me in the right direction please\\u2026\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccndd0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1563009384.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"### Runtime Environment\\n\\n- MX Linux 18\\n- [dotfiles](https://github.com/mrbig033/dotfiles)\\n- GNU Emacs 27.0.50\\n- Org mode version 9.2.3\\n- Evil version 1.2.14\\n- [~/.emacs.d](https://github.com/mrbig033/emacs)\\n\\n### Issue\\n\\nAs you can see in [this list](http://i.imgur.com/ysnTmY2.png), when a list has indexes with a different length they become unaligned. If I add the leading zeroes manually, Org deletes them when I update the list (by running `org-ctrl-c-ctrl-c`, for example). How could I configure to add the zeroes automatically, or at least respect the ones I add manually?\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can Org automatically add leading zeroes to keep ordered lists aligned?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cclnex\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563023023.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563024013.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch3\\u003ERuntime Environment\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EMX Linux 18\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mrbig033/dotfiles\\\"\\u003Edotfiles\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGNU Emacs 27.0.50\\u003C/li\\u003E\\n\\u003Cli\\u003EOrg mode version 9.2.3\\u003C/li\\u003E\\n\\u003Cli\\u003EEvil version 1.2.14\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mrbig033/emacs\\\"\\u003E~/.emacs.d\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIssue\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EAs you can see in \\u003Ca href=\\\"http://i.imgur.com/ysnTmY2.png\\\"\\u003Ethis list\\u003C/a\\u003E, when a list has indexes with a different length they become unaligned. If I add the leading zeroes manually, Org deletes them when I update the list (by running \\u003Ccode\\u003Eorg-ctrl-c-ctrl-c\\u003C/code\\u003E, for example). How could I configure to add the zeroes automatically, or at least respect the ones I add manually?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cclnex\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562995213.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccafi6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562964568.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccafi6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 23, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"parent_whitelist_status\": null, \"stickied\": true, \"url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562935768.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I just discovered org-super-agenda, and it seems marvelous. But I'm not sure how to configure the groups to avoid duplication of some agenda items.\\n\\nHere's my current configuration, cribbed from the examples:\\n\\n (setq org-super-agenda-groups\\n '((:name \\\"High priority\\\"\\n :priority \\\"A\\\"\\n :order 1\\n )\\n (:name \\\"Today's items\\\"\\n :scheduled today\\n :order 2\\n )\\n (:name \\\"Quick Picks\\\"\\n :effort\\u003C \\\"0:30\\\")\\n (:name \\\"Next Items\\\"\\n :todo (\\\"NEXT\\\" \\\"TODO\\\")\\n :order 3)\\n (:name \\\"Lagging items\\\"\\n :scheduled past)\\n (:name \\\"Overdue items\\\"\\n :deadline past)\\n (:name \\\"Quick Picks\\\"\\n :effort\\u003C \\\"0:30\\\")\\n (:priority\\u003C= \\\"B\\\"\\n :name \\\"Medium priority or coming up\\\"\\n :scheduled future\\n :order 4\\n )))\\n\\nAnd here's a screenshot of my current agenda view\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/oj9adpvkps931.png\\n\\nOne item (A project with priority B) shows up twice in \\\"Today's items\\\". It has a deadline in 25 days with a one month notification, so shows up on my agenda. \\n\\nIf I remove the *DEADLINE:*, it shows up only once, on today's items, because it's scheduled for today. If I remove the *SCHEDULED:*, it shows up once in \\\"Medium priority or coming up\\\". But if I have both, it shows up twice under \\\"Today's items\\\". Is this something in my configuration or is it the expected behaviour of org-super-agenda?\\n\\nI realise it also shows up twice in org-agenda based on both schedule and deadline, which would also be good to be able to remove.\", \"author_fullname\": \"t2_4zkpc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to avoid duplicates in org-super-agenda\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"oj9adpvkps931\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 487, \"x\": 741, \"u\": \"https://i.redd.it/oj9adpvkps931.png\"}, \"m\": \"image/png\", \"id\": \"oj9adpvkps931\"}}, \"name\": \"t3_cc5vz5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562932923.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just discovered org-super-agenda, and it seems marvelous. But I\\u0026#39;m not sure how to configure the groups to avoid duplication of some agenda items.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s my current configuration, cribbed from the examples:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-super-agenda-groups\\n \\u0026#39;((:name \\u0026quot;High priority\\u0026quot;\\n :priority \\u0026quot;A\\u0026quot;\\n :order 1\\n )\\n (:name \\u0026quot;Today\\u0026#39;s items\\u0026quot;\\n :scheduled today\\n :order 2\\n )\\n (:name \\u0026quot;Quick Picks\\u0026quot;\\n :effort\\u0026lt; \\u0026quot;0:30\\u0026quot;)\\n (:name \\u0026quot;Next Items\\u0026quot;\\n :todo (\\u0026quot;NEXT\\u0026quot; \\u0026quot;TODO\\u0026quot;)\\n :order 3)\\n (:name \\u0026quot;Lagging items\\u0026quot;\\n :scheduled past)\\n (:name \\u0026quot;Overdue items\\u0026quot;\\n :deadline past)\\n (:name \\u0026quot;Quick Picks\\u0026quot;\\n :effort\\u0026lt; \\u0026quot;0:30\\u0026quot;)\\n (:priority\\u0026lt;= \\u0026quot;B\\u0026quot;\\n :name \\u0026quot;Medium priority or coming up\\u0026quot;\\n :scheduled future\\n :order 4\\n )))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnd here\\u0026#39;s a screenshot of my current agenda view\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/oj9adpvkps931.png\\\"\\u003Ehttps://i.redd.it/oj9adpvkps931.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne item (A project with priority B) shows up twice in \\u0026quot;Today\\u0026#39;s items\\u0026quot;. It has a deadline in 25 days with a one month notification, so shows up on my agenda. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I remove the \\u003Cem\\u003EDEADLINE:\\u003C/em\\u003E, it shows up only once, on today\\u0026#39;s items, because it\\u0026#39;s scheduled for today. If I remove the \\u003Cem\\u003ESCHEDULED:\\u003C/em\\u003E, it shows up once in \\u0026quot;Medium priority or coming up\\u0026quot;. But if I have both, it shows up twice under \\u0026quot;Today\\u0026#39;s items\\u0026quot;. Is this something in my configuration or is it the expected behaviour of org-super-agenda?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI realise it also shows up twice in org-agenda based on both schedule and deadline, which would also be good to be able to remove.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cc5vz5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gtuckerkellogg\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562904123.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"It seems this package is no longer supported officially, still some people recently made it work for them apparently. \\n\\n\\u0026#x200B;\\n\\nI am having trouble so to the extend of when I call org-agenda or capture I get certain error messages in emacs 25.3.2 that I described in [this post](https://www.reddit.com/r/emacs/comments/cbtjiw/orgmode_errors_all_of_a_sudden/)\\n\\n\\u0026#x200B;\\n\\nWhat is the issue here and how can I make it work?\", \"author_fullname\": \"t2_3p3qqcr1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-gcal\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cbucs2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562871482.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt seems this package is no longer supported officially, still some people recently made it work for them apparently. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am having trouble so to the extend of when I call org-agenda or capture I get certain error messages in emacs 25.3.2 that I described in \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/cbtjiw/orgmode_errors_all_of_a_sudden/\\\"\\u003Ethis post\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is the issue here and how can I make it work?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbucs2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sewing31\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cbucs2/orggcal/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cbucs2/orggcal/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562842682.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"When I list todos via the agenda view, the checklist entries are visible. Then, I select only \\u00ab open \\u00bb checklists, and the list is empty. Is this a bug ? Is it possible to make some configuration changes to make this work ? cf. images\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[ALL](https://i.redd.it/timytr45ac931.png)\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/cxyli7q6ac931.png\", \"author_fullname\": \"t2_8dk3r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to filter checklist in the agenda view?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"timytr45ac931\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 654, \"x\": 2846, \"u\": \"https://i.redd.it/timytr45ac931.png\"}, \"m\": \"image/png\", \"id\": \"timytr45ac931\"}, \"cxyli7q6ac931\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 612, \"x\": 2856, \"u\": \"https://i.redd.it/cxyli7q6ac931.png\"}, \"m\": \"image/png\", \"id\": \"cxyli7q6ac931\"}}, \"name\": \"t3_cb6jgx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"author_cakeday\": true, \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562733664.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I list todos via the agenda view, the checklist entries are visible. Then, I select only \\u00ab open \\u00bb checklists, and the list is empty. Is this a bug ? Is it possible to make some configuration changes to make this work ? cf. images\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/timytr45ac931.png\\\"\\u003EALL\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/cxyli7q6ac931.png\\\"\\u003Ehttps://i.redd.it/cxyli7q6ac931.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cb6jgx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zaiste\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cb6jgx/how_to_filter_checklist_in_the_agenda_view/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cb6jgx/how_to_filter_checklist_in_the_agenda_view/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562704864.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"My setup is rather simple and I'm not using the default keybindings `C-[,C-]` to add or remove files to the Agenda list. I'd prefer to set the list of files to use within _org-agenda_ using the `org-agenda-files` variable. \\n\\nBut this seems to raise an issue when editing a file which is part of the org-agenda file list. Let me explain by taking an example: \\n\\nI have a directory A containing a file A. Then I define a folder B as `org-agenda-files` provide, so in my `config.org` I have \\n\\n```\\n(setq org-agenda-files '(\\\"~/folderB\\\"))\\n```\\n\\nNow, from a pure organizational purpose, I link symbolically, using a script, both files. This yields the following situation where `folderA/fileA` is the 'real' file \\n \\n```\\nfolderB/fileA ---\\u003E folderA/fileA\\n```\\nnow when I try to edit **fileA** in the **folderA** and make some changes to it, saving the changes will save them in `folderB/fileA` and of course indirectly also in `folderA/fileA` (at least this is the message being displayed in the status bar). This would not be dramatic if the file would not contain links to some images. Indeed, the images are created by a function which takes a screenshot from a region and saves it locally in a subfolder having the same name as the file but appending an `_imgs` suffix. But now this subfolder is created in `folderB` **not* in `folderA` and this is a problem. \\n\\nSomehow, I understand why this happens and on the one hand it makes sense but on the other hand, I do not understand why adding files to org-agenda should impact where the changes are saved although the file being modified is also in the agenda list. \\n\\nI hope that I could clearly expose my problem. I use also `ido` but not sure it is related\", \"author_fullname\": \"t2_nojchp1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"An Issue when editing files added to org-agenda-files list and linked symbolically\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cb1toc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562712450.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy setup is rather simple and I\\u0026#39;m not using the default keybindings \\u003Ccode\\u003EC-[,C-]\\u003C/code\\u003E to add or remove files to the Agenda list. I\\u0026#39;d prefer to set the list of files to use within \\u003Cem\\u003Eorg-agenda\\u003C/em\\u003E using the \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E variable. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut this seems to raise an issue when editing a file which is part of the org-agenda file list. Let me explain by taking an example: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a directory A containing a file A. Then I define a folder B as \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E provide, so in my \\u003Ccode\\u003Econfig.org\\u003C/code\\u003E I have \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(setq org-agenda-files \\u0026#39;(\\u0026quot;~/folderB\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, from a pure organizational purpose, I link symbolically, using a script, both files. This yields the following situation where \\u003Ccode\\u003EfolderA/fileA\\u003C/code\\u003E is the \\u0026#39;real\\u0026#39; file \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\nfolderB/fileA ---\\u0026gt; folderA/fileA\\n\\u003C/code\\u003E\\nnow when I try to edit \\u003Cstrong\\u003EfileA\\u003C/strong\\u003E in the \\u003Cstrong\\u003EfolderA\\u003C/strong\\u003E and make some changes to it, saving the changes will save them in \\u003Ccode\\u003EfolderB/fileA\\u003C/code\\u003E and of course indirectly also in \\u003Ccode\\u003EfolderA/fileA\\u003C/code\\u003E (at least this is the message being displayed in the status bar). This would not be dramatic if the file would not contain links to some images. Indeed, the images are created by a function which takes a screenshot from a region and saves it locally in a subfolder having the same name as the file but appending an \\u003Ccode\\u003E_imgs\\u003C/code\\u003E suffix. But now this subfolder is created in \\u003Ccode\\u003EfolderB\\u003C/code\\u003E *\\u003Cem\\u003Enot\\u003C/em\\u003E in \\u003Ccode\\u003EfolderA\\u003C/code\\u003E and this is a problem. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESomehow, I understand why this happens and on the one hand it makes sense but on the other hand, I do not understand why adding files to org-agenda should impact where the changes are saved although the file being modified is also in the agenda list. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI hope that I could clearly expose my problem. I use also \\u003Ccode\\u003Eido\\u003C/code\\u003E but not sure it is related\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cb1toc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"M0ll3art\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cb1toc/an_issue_when_editing_files_added_to/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cb1toc/an_issue_when_editing_files_added_to/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562683650.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone i Have a question, \\n\\nI want to adjust my export settings from org mode to pdf via latex. \\n\\nTherefor i first exported as .tex file and analyzed what is used there. \\n\\nEvery Export shall automatically include this line: \\n\\n \\\\usepackage[a4paper, left= 3cm, right=3cm]{geometry}\\n\\n\\u0026#x200B;\\n\\nalso I want the hyperref to be adjusted from \\n\\n \\\\usepackage{hyperref} \\n\\nto \\n\\n \\\\usepackage[urlcolor=blue, bookmarks=true, pdfborder={0 0 0}]{hyperref}\\n\\n\\u0026#x200B;\\n\\nand also I want it to recognize Source code of (e.g. Language C)\\n\\n #+BEGIN_SRC C\\n ....\\n #+END_SRC\\n\\nand display it highlighted\\n\\n\\u0026#x200B;\\n\\nhow can i achieve that?\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Global Pdf Export Settings\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cawzrr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562682004.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone i Have a question, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to adjust my export settings from org mode to pdf via latex. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETherefor i first exported as .tex file and analyzed what is used there. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEvery Export shall automatically include this line: \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\\\usepackage[a4paper, left= 3cm, right=3cm]{geometry}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealso I want the hyperref to be adjusted from \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\\\usepackage{hyperref} \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eto \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\\\usepackage[urlcolor=blue, bookmarks=true, pdfborder={0 0 0}]{hyperref}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand also I want it to recognize Source code of (e.g. Language C)\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+BEGIN_SRC C\\n....\\n#+END_SRC\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eand display it highlighted\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ehow can i achieve that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cawzrr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cawzrr/global_pdf_export_settings/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cawzrr/global_pdf_export_settings/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562653204.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a lot of data in big Org tables, and want to plot them with my preferred plotting agent, R. (Because that is the one my unit uses at work.)\\n\\nSo I've been following along, and reading the documentation, and reading the group.\\n\\nI thought that by searching the web, I would find a good number of references to the latest interface between Org-tables and R, but I don't know if that is what I am seeing.\\n\\n1) I find references to \\\"Org-R\\\" and the #+TBLR lines, and that seems like a mature package.\\n\\n2) But those same references state that Org-R has been replaced by Org-Babel itself.\\n\\nFair enough. But then I have not found the documentation within Babel documentation for that kind of data I/O.\\n\\nI probably missed something, but I wanted to ask here:\\n\\n--- What, if anything, are the folks here using to get R to read Org-tables? Or to change Org-tables into R datasets?\\n\\n[Edit to include answers: I thank the respondents, I've got it working.\\n\\n ... I see that I am free to ignore the Org-R package, since it really has been superceded by Babel. That leaves me free to pursue the Org-Babel docs, and the tutorials, and add more functionality to the programs I'm building around the orgtables.\\n\\n ... The gitlab.com file 'example.org' was very good to work from, even if the text was in french.\\n\\n ... I had to remember that R, by default, doesn't accept datasets with empty elements. For Org tables, that meant no empty cells. Since I use the 'special marking characters' column to control calculations (see the manual in the sections 'Tables'-\\u003E'The spreadsheet'-\\u003E'Advanced Features'), nearly every row in my big tables has an empty first column. So I had to manually remove that for it to get through to R.]\", \"author_fullname\": \"t2_pkynq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I have been trying to get R to read Org tables, but ...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_carf7m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1562777896.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562651014.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a lot of data in big Org tables, and want to plot them with my preferred plotting agent, R. (Because that is the one my unit uses at work.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve been following along, and reading the documentation, and reading the group.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought that by searching the web, I would find a good number of references to the latest interface between Org-tables and R, but I don\\u0026#39;t know if that is what I am seeing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E1) I find references to \\u0026quot;Org-R\\u0026quot; and the #+TBLR lines, and that seems like a mature package.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2) But those same references state that Org-R has been replaced by Org-Babel itself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFair enough. But then I have not found the documentation within Babel documentation for that kind of data I/O.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI probably missed something, but I wanted to ask here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E--- What, if anything, are the folks here using to get R to read Org-tables? Or to change Org-tables into R datasets?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Edit to include answers: I thank the respondents, I\\u0026#39;ve got it working.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... I see that I am free to ignore the Org-R package, since it really has been superceded by Babel. That leaves me free to pursue the Org-Babel docs, and the tutorials, and add more functionality to the programs I\\u0026#39;m building around the orgtables.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... The gitlab.com file \\u0026#39;example.org\\u0026#39; was very good to work from, even if the text was in french.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... I had to remember that R, by default, doesn\\u0026#39;t accept datasets with empty elements. For Org tables, that meant no empty cells. Since I use the \\u0026#39;special marking characters\\u0026#39; column to control calculations (see the manual in the sections \\u0026#39;Tables\\u0026#39;-\\u0026gt;\\u0026#39;The spreadsheet\\u0026#39;-\\u0026gt;\\u0026#39;Advanced Features\\u0026#39;), nearly every row in my big tables has an empty first column. So I had to manually remove that for it to get through to R.]\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"carf7m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tomtac\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562622214.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"edit: SOLVED!\\n\\nHi all\\n\\nSo I press C-c C-s to enter a date to do some task on and the emacs three month calendar opens. The current day is highlighted in the calendar but pressing right takes you (maybe obviously) along the input line. What I would prefer is the right key took me along the days (as it does if you do M-x calendar in regular modes).\\n\\nAny way to configure that? At the moment the absolute easy way is to reach for the mouse ... \\n\\nMany thanks xx\", \"author_fullname\": \"t2_8257s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Navigating the date picker using the keyboard\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_caioyu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1562587748.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562605675.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eedit: SOLVED!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHi all\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I press C-c C-s to enter a date to do some task on and the emacs three month calendar opens. The current day is highlighted in the calendar but pressing right takes you (maybe obviously) along the input line. What I would prefer is the right key took me along the days (as it does if you do M-x calendar in regular modes).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny way to configure that? At the moment the absolute easy way is to reach for the mouse ... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks xx\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"caioyu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"primal_buddhist\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/caioyu/navigating_the_date_picker_using_the_keyboard/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/caioyu/navigating_the_date_picker_using_the_keyboard/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562576875.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_439tkolk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-latex-classes for notes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9u13e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562451311.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"delta.re\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9u13e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DarkyBuffalo\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9u13e/orglatexclasses_for_notes/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://delta.re/org-latex-class/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562422511.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"A friend shared this tool with me https://marketplace.visualstudio.com/items?itemName=tkrkt.linenote\\n\\nI feel like something equivalent in emacs must already exist, probably using OrgMode, but I can't seem to find anything. Does anyone know of a solution?\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs/Org equivalent to VSCode's Line Note?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9muga\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562398712.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA friend shared this tool with me \\u003Ca href=\\\"https://marketplace.visualstudio.com/items?itemName=tkrkt.linenote\\\"\\u003Ehttps://marketplace.visualstudio.com/items?itemName=tkrkt.linenote\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI feel like something equivalent in emacs must already exist, probably using OrgMode, but I can\\u0026#39;t seem to find anything. Does anyone know of a solution?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9muga\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jack-of-some\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9muga/emacsorg_equivalent_to_vscodes_line_note/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c9muga/emacsorg_equivalent_to_vscodes_line_note/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562369912.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you add inline CSS to an org file, and in particular CSS you want to apply to particular headline or sub headline?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9kyu3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you add inline CSS to an org file, and in particular CSS you want to apply to particular headline or sub headline?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9f3tq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562356547.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9f3tq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c9f3tq/how_do_you_add_inline_css_to_an_org_file_and_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c9f3tq/how_do_you_add_inline_css_to_an_org_file_and_in/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1562327747.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1562388218.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9kyu3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_c9f3tq\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9kyu3/how_do_you_add_inline_css_to_an_org_file_and_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://old.reddit.com/r/emacs/comments/c9f3tq/how_do_you_add_inline_css_to_an_org_file_and_in/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562359418.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"One of the ways the Getting Things Done system works is by creating projects, and making the one next thing to do as \\\"NEXT\\\" so you just know that that's what you're doing.\\n\\n\\u0026#x200B;\\n\\nIn org for instance I'd have something like this:\\n\\n\\u0026#x200B;\\n\\n * Project name\\n ** NEXT Do first action\\n ** TODO Do second action\\n ** TODO Rejoice\\n\\nI'd like to know if someone has already solved this problem: When I mark \\\"Do first action\\\" as DONE, I'd like \\\"Do second action\\\" to be automatically toggled to NEXT. \\n\\nWhen I mark \\\"Rejoice\\\" as DONE, this entire project should be archived.\\n\\n\\u0026#x200B;\\n\\nAnd if no one has solved this, can someone point me in the direction of org hooks / functionality that will help me implement this?\", \"author_fullname\": \"t2_3z32c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GTD in orgmode: Switch \\\"NEXT\\\" to \\\"DONE\\\" and \\\"TODO\\\" to \\\"NEXT\\\" automatically?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9g8vi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562363909.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOne of the ways the Getting Things Done system works is by creating projects, and making the one next thing to do as \\u0026quot;NEXT\\u0026quot; so you just know that that\\u0026#39;s what you\\u0026#39;re doing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn org for instance I\\u0026#39;d have something like this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project name\\n** NEXT Do first action\\n** TODO Do second action\\n** TODO Rejoice\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to know if someone has already solved this problem: When I mark \\u0026quot;Do first action\\u0026quot; as DONE, I\\u0026#39;d like \\u0026quot;Do second action\\u0026quot; to be automatically toggled to NEXT. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I mark \\u0026quot;Rejoice\\u0026quot; as DONE, this entire project should be archived.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd if no one has solved this, can someone point me in the direction of org hooks / functionality that will help me implement this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9g8vi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Trevoke\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9g8vi/gtd_in_orgmode_switch_next_to_done_and_todo_to/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c9g8vi/gtd_in_orgmode_switch_next_to_done_and_todo_to/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562335109.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - July 05, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9fl0b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562359764.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9fl0b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 17, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9fl0b/weekly_rorgmode_open_discussion_july_05_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c9fl0b/weekly_rorgmode_open_discussion_july_05_2019/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562330964.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I just type gibberish as fast as I can i get lag.\\n\\nI profiled and see org-fix-tags-on-the-fly is called on *every* character you type. it returns nil when nothing is to be done, but thats still a lot of calls.\\n\\nThoughts?\", \"author_fullname\": \"t2_3yy21\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone experience lag when typing 100~ wpm or more\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9a1ky\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562317938.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I just type gibberish as fast as I can i get lag.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI profiled and see org-fix-tags-on-the-fly is called on \\u003Cem\\u003Eevery\\u003C/em\\u003E character you type. it returns nil when nothing is to be done, but thats still a lot of calls.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThoughts?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9a1ky\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"codygman\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562289138.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_14n9ui\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tikz/Pgfplots with org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c94kw7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"spacemacs\", \"selftext\": \"Hello everyone!\\n\\nI'm new to emacs/spacemacs. I'm trying to get into literate programming and I'm getting the hang of using org-mode full time, I previously used jupyterlab. One advantage that I would really like to make use of in org-mode is the ability to use latex (i.e., tikz plots). Although, I was able to get some parts working with the examples provided [here](https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-LaTeX.html#org30df2de), I was not able to run my own tikz scripts which include pgfplots. \\n\\nIf anyone has any experience with using tikz/pgfplots within org-mode, please help. I would love to be more detailed with the problems I am facing but I have no clue what is going wrong or where.\", \"author_fullname\": \"t2_14n9ui\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tikz/Pgfplots with org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/spacemacs\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c94g5u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1562257933.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562285980.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.spacemacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m new to emacs/spacemacs. I\\u0026#39;m trying to get into literate programming and I\\u0026#39;m getting the hang of using org-mode full time, I previously used jupyterlab. One advantage that I would really like to make use of in org-mode is the ability to use latex (i.e., tikz plots). Although, I was able to get some parts working with the examples provided \\u003Ca href=\\\"https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-LaTeX.html#org30df2de\\\"\\u003Ehere\\u003C/a\\u003E, I was not able to run my own tikz scripts which include pgfplots. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf anyone has any experience with using tikz/pgfplots within org-mode, please help. I would love to be more detailed with the problems I am facing but I have no clue what is going wrong or where.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_37w2j\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c94g5u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Raqato\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/spacemacs/comments/c94g5u/tikzpgfplots_with_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/spacemacs/comments/c94g5u/tikzpgfplots_with_orgmode/\", \"subreddit_subscribers\": 4406, \"created_utc\": 1562257180.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1562286691.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.spacemacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c94kw7\", \"is_robot_indexable\": true, \"stickied\": false, \"author\": \"Raqato\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_c94g5u\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c94kw7/tikzpgfplots_with_orgmode/\", \"parent_whitelist_status\": null, \"report_reasons\": null, \"url\": \"https://old.reddit.com/r/spacemacs/comments/c94g5u/tikzpgfplots_with_orgmode/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562257891.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Basically what the title asked, I've been using org-mode to manage my work and life and is starting to customize my agenda view. Currently my work agenda have six parts (normal agenda view, top priority project, stuck project, pending task, unscheduled task \\u0026 task to refile). The thing is, the new agenda is taking significantly longer to build compare to the default one, is there a easy way to tell how much time each part is taking?\\n\\n\\u0026#x200B;\\n\\nEDIT:\\n\\nAs it turns out, I found one can use M-x profiler-start to check the CPU usage by command to profile the thing you do in emacs. which helps me in this case.\\n\\n\\u0026#x200B;\\n\\n2nd EDIT:\\n\\nTo include the customize agenda below\\n\\n (setq org-agenda-custom-commands\\n '(\\n (\\\"w\\\" \\\"Work agenda\\\"\\n (\\n (agenda \\\"\\\"\\n ((org-agenda-skip-function\\n '(org-agenda-skip-entry-if 'todo '(\\\"PENDING\\\")))\\n (org-agenda-span 1)\\n (org-agenda-use-time-grid nil)\\n ))\\n (tags \\\"Project\\\"\\n ; (tags \\\"Project+PRIORITY=\\\\\\\"A\\\\\\\"\\\"\\n ((org-agenda-overriding-header \\\"All active projects\\\")\\n (org-agenda-sorting-strategy '(priority-down))))\\n (todo \\\"PENDING\\\"\\n ((org-agenda-overriding-header \\\"Pending tasks\\\")))\\n (stuck \\\"\\\"\\n ((org-agenda-overriding-header \\\"Stuck projects\\\")))\\n (todo \\\"TODO\\\"\\n ((org-agenda-overriding-header \\\"Unscheduled tasks\\\")\\n (org-agenda-skip-function\\n '(org-agenda-skip-entry-if 'scheduled))\\n ))\\n (tags-todo \\\"REFILE\\\"\\n ((org-agenda-overriding-header \\\"Tasks to refile\\\")\\n (org-tags-match-list-sublevels nil)))\\n )\\n ((org-agenda-tag-filter-preset '(\\\"-LIFE\\\")))\\n )\\n )\", \"author_fullname\": \"t2_7eegp5a\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I know which part of my agenda view is taking most time?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9021w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1562381233.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562257102.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBasically what the title asked, I\\u0026#39;ve been using org-mode to manage my work and life and is starting to customize my agenda view. Currently my work agenda have six parts (normal agenda view, top priority project, stuck project, pending task, unscheduled task \\u0026amp; task to refile). The thing is, the new agenda is taking significantly longer to build compare to the default one, is there a easy way to tell how much time each part is taking?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it turns out, I found one can use M-x profiler-start to check the CPU usage by command to profile the thing you do in emacs. which helps me in this case.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2nd EDIT:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo include the customize agenda below\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E (setq org-agenda-custom-commands\\n \\u0026#39;(\\n (\\u0026quot;w\\u0026quot; \\u0026quot;Work agenda\\u0026quot;\\n (\\n (agenda \\u0026quot;\\u0026quot;\\n ((org-agenda-skip-function\\n \\u0026#39;(org-agenda-skip-entry-if \\u0026#39;todo \\u0026#39;(\\u0026quot;PENDING\\u0026quot;)))\\n (org-agenda-span 1)\\n (org-agenda-use-time-grid nil)\\n ))\\n (tags \\u0026quot;Project\\u0026quot;\\n; (tags \\u0026quot;Project+PRIORITY=\\\\\\u0026quot;A\\\\\\u0026quot;\\u0026quot;\\n ((org-agenda-overriding-header \\u0026quot;All active projects\\u0026quot;)\\n (org-agenda-sorting-strategy \\u0026#39;(priority-down))))\\n (todo \\u0026quot;PENDING\\u0026quot;\\n ((org-agenda-overriding-header \\u0026quot;Pending tasks\\u0026quot;)))\\n (stuck \\u0026quot;\\u0026quot;\\n ((org-agenda-overriding-header \\u0026quot;Stuck projects\\u0026quot;)))\\n (todo \\u0026quot;TODO\\u0026quot;\\n ((org-agenda-overriding-header \\u0026quot;Unscheduled tasks\\u0026quot;)\\n (org-agenda-skip-function\\n \\u0026#39;(org-agenda-skip-entry-if \\u0026#39;scheduled))\\n ))\\n (tags-todo \\u0026quot;REFILE\\u0026quot;\\n ((org-agenda-overriding-header \\u0026quot;Tasks to refile\\u0026quot;)\\n (org-tags-match-list-sublevels nil)))\\n )\\n ((org-agenda-tag-filter-preset \\u0026#39;(\\u0026quot;-LIFE\\u0026quot;)))\\n )\\n)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9021w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lrtDam\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9021w/how_can_i_know_which_part_of_my_agenda_view_is/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c9021w/how_can_i_know_which_part_of_my_agenda_view_is/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562228302.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"**Background:** In case it matters: I have set up org-mode to be able to execute `wolframscript` source blocks. Sometimes, however, I need to be able to use the graphical interface that Wolfram provides through `wolframdesktop` (i.e., displaying graphs, animations, etc). So is there a way to construct a function which\\n\\n1. Takes the source code from an org-babel source block\\n2. Puts it in a temporary file `/tmp/file.nb`\\n3. Runs `wolframdesktop /tmp/file.nb` on my machine?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Launching a program with an org-babel source block?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c8r2oj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562204438.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBackground:\\u003C/strong\\u003E In case it matters: I have set up org-mode to be able to execute \\u003Ccode\\u003Ewolframscript\\u003C/code\\u003E source blocks. Sometimes, however, I need to be able to use the graphical interface that Wolfram provides through \\u003Ccode\\u003Ewolframdesktop\\u003C/code\\u003E (i.e., displaying graphs, animations, etc). So is there a way to construct a function which\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ETakes the source code from an org-babel source block\\u003C/li\\u003E\\n\\u003Cli\\u003EPuts it in a temporary file \\u003Ccode\\u003E/tmp/file.nb\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERuns \\u003Ccode\\u003Ewolframdesktop /tmp/file.nb\\u003C/code\\u003E on my machine?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c8r2oj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562175638.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I am new to emacs and org-mode. I had TeX Live before and latex fragments was working just fine. However, I recently switched to MikTeX and this error shows up every time I try to preview a latex fragment\\n\\n`org-compile-file: File \\\"c:/Users/acer/AppData/Local/Temp/orgtexPFJl35.png\\\" wasn\\u2019t produced. Please adjust \\u2018dvipng\\u2019 part of \\u2018org-preview-latex-process-alist\\u2019.`\\n\\nFollowing [this](https://www.reddit.com/r/emacs/comments/5rf9d4/help_org_setup_preview_latex_fragments/) link, I tried reading the .log file and couldn't find any messages that indicated missing packages.\\n\\nHowever this line seems off\\n\\n`LaTeX Font Info: Try loading font information for TS1+cmr on input line 31.`\\n\\nIs this the problem? How to solve this issue?\\n\\nNote: The miktex installation is working fine\", \"author_fullname\": \"t2_p3g806u\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Problem configuring org-mode with miktex\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c7zy9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1562014431.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562043013.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am new to emacs and org-mode. I had TeX Live before and latex fragments was working just fine. However, I recently switched to MikTeX and this error shows up every time I try to preview a latex fragment\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-compile-file: File \\u0026quot;c:/Users/acer/AppData/Local/Temp/orgtexPFJl35.png\\u0026quot; wasn\\u2019t produced. Please adjust \\u2018dvipng\\u2019 part of \\u2018org-preview-latex-process-alist\\u2019.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFollowing \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/5rf9d4/help_org_setup_preview_latex_fragments/\\\"\\u003Ethis\\u003C/a\\u003E link, I tried reading the .log file and couldn\\u0026#39;t find any messages that indicated missing packages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever this line seems off\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003ELaTeX Font Info: Try loading font information for TS1+cmr on input line 31.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this the problem? How to solve this issue?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENote: The miktex installation is working fine\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c7zy9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Mounica134\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c7zy9u/problem_configuring_orgmode_with_miktex/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c7zy9u/problem_configuring_orgmode_with_miktex/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1562014213.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"E.g. a sparse tree for headers that contain \\\"car\\\", \\\"auto\\\", or \\\"vehicle\\\"\\\".\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can a sparse tree be constructed for multiple text strings?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c7n0ls\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561977326.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EE.g. a sparse tree for headers that contain \\u0026quot;car\\u0026quot;, \\u0026quot;auto\\u0026quot;, or \\u0026quot;vehicle\\u0026quot;\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c7n0ls\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c7n0ls/can_a_sparse_tree_be_constructed_for_multiple/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c7n0ls/can_a_sparse_tree_be_constructed_for_multiple/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561948526.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Does there exist a way to execute org-babel nix expressions (through a `nix-repl` perhaps)?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-babel + nix?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c793qp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561898084.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes there exist a way to execute org-babel nix expressions (through a \\u003Ccode\\u003Enix-repl\\u003C/code\\u003E perhaps)?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c793qp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c793qp/orgbabel_nix/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c793qp/orgbabel_nix/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561869284.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to set a deadline for the first monday of the month. I'm using sexp, and I'm using the following syntax setting reminders for two days before:\\n\\n *** TODO Task to do\\n DEADLINE: \\u003C%%(diary-remind '(diary-float t 1 1) '(1 2))\\u003E\\n\\nThis works, but the reminder appears twice in the agenda and I when I set it as DONE, the task doesn't reset it.\\n\\nI want the same functionality that is provided for the reminder of standards timestamps.\\n\\nIt's possible?\", \"author_fullname\": \"t2_8v76k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Handle reminders using sexp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c76gx9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561881555.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to set a deadline for the first monday of the month. I\\u0026#39;m using sexp, and I\\u0026#39;m using the following syntax setting reminders for two days before:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E*** TODO Task to do\\n DEADLINE: \\u0026lt;%%(diary-remind \\u0026#39;(diary-float t 1 1) \\u0026#39;(1 2))\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis works, but the reminder appears twice in the agenda and I when I set it as DONE, the task doesn\\u0026#39;t reset it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want the same functionality that is provided for the reminder of standards timestamps.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s possible?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c76gx9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Pipiyedu\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c76gx9/handle_reminders_using_sexp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c76gx9/handle_reminders_using_sexp/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561852755.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How are org headings or drawers associated with CSS classes for HTML export?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c6zozs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am trying to create a simple tips and tricks table from a standardized org item structure.\\n\\nI tried entering them in a table but realized that org tables do not allow multiple lines in a cell, so I'd rather enter them as normal org nodes and let the HTML export it in a format that enables CSS to be used for the arrangement. They can even be exported as tables.\\n\\nIt is organized like this\\n\\nQuery Description\\n\\n 1. Date\\n 2. Query\\n 3. Solution\\n 4. Notes\\n 5. Tags\\n 6. Links\\n\\nThe items can subitems in an org tree or they can be drawers of an item.\\n\\nHow do I get org to associate each drawer or subitem with a class, making the item like\\n\\n \\u003Cdiv class=\\\"tip_header\\\"\\u003E Title of Item\\n \\u003Cdiv class=\\\"tip_item tip_item_date\\\"\\u003EStuff\\u003C/div\\u003E\\n \\u003Cdiv class=\\\"tip_item tip_item_query\\\"\\u003EStuff\\u003C/div\\u003E\\n \\u003Cdiv class=\\\"tip_item tip_item_solution\\\"\\u003EStuff\\u003C/div\\u003E\\n \\u003Cdiv class=\\\"tip_item tip_item_notes\\\"\\u003EStuff\\u003C/div\\u003E\\n \\u003Cdiv class=\\\"tip_item tip_item_tags\\\"\\u003EStuff\\u003C/div\\u003E\\n \\u003Cdiv class=\\\"tip_item tip_item_links\\\"\\u003EStuff\\u003C/div\\u003E\\n \\u003Cdiv\\u003E\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How are org headings or drawers associated with CSS classes for HTML export?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c6p1yi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561781582.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to create a simple tips and tricks table from a standardized org item structure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried entering them in a table but realized that org tables do not allow multiple lines in a cell, so I\\u0026#39;d rather enter them as normal org nodes and let the HTML export it in a format that enables CSS to be used for the arrangement. They can even be exported as tables.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is organized like this\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuery Description\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EDate\\u003C/li\\u003E\\n\\u003Cli\\u003EQuery\\u003C/li\\u003E\\n\\u003Cli\\u003ESolution\\u003C/li\\u003E\\n\\u003Cli\\u003ENotes\\u003C/li\\u003E\\n\\u003Cli\\u003ETags\\u003C/li\\u003E\\n\\u003Cli\\u003ELinks\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThe items can subitems in an org tree or they can be drawers of an item.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I get org to associate each drawer or subitem with a class, making the item like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026lt;div class=\\u0026quot;tip_header\\u0026quot;\\u0026gt; Title of Item\\n \\u0026lt;div class=\\u0026quot;tip_item tip_item_date\\u0026quot;\\u0026gt;Stuff\\u0026lt;/div\\u0026gt;\\n \\u0026lt;div class=\\u0026quot;tip_item tip_item_query\\u0026quot;\\u0026gt;Stuff\\u0026lt;/div\\u0026gt;\\n \\u0026lt;div class=\\u0026quot;tip_item tip_item_solution\\u0026quot;\\u0026gt;Stuff\\u0026lt;/div\\u0026gt;\\n \\u0026lt;div class=\\u0026quot;tip_item tip_item_notes\\u0026quot;\\u0026gt;Stuff\\u0026lt;/div\\u0026gt;\\n \\u0026lt;div class=\\u0026quot;tip_item tip_item_tags\\u0026quot;\\u0026gt;Stuff\\u0026lt;/div\\u0026gt;\\n \\u0026lt;div class=\\u0026quot;tip_item tip_item_links\\u0026quot;\\u0026gt;Stuff\\u0026lt;/div\\u0026gt;\\n\\u0026lt;div\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c6p1yi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c6p1yi/how_are_org_headings_or_drawers_associated_with/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c6p1yi/how_are_org_headings_or_drawers_associated_with/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1561752782.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1561847970.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c6zozs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_c6p1yi\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c6zozs/how_are_org_headings_or_drawers_associated_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://old.reddit.com/r/emacs/comments/c6p1yi/how_are_org_headings_or_drawers_associated_with/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561819170.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"So I converted 300 Google Keep notes to HTML, then to org mode files using this little bash script:\\n\\nfind . -name \\\"\\\\*.ht\\\\*\\\" | while read i; do pandoc -f html -t org \\\"$i\\\" -o \\\"${i%.\\\\*}.org\\\"; done\\n\\n\\u0026#x200B;\\n\\nEverything worked great. Then I moved the files to my org directory in dropbox, and synced Orgzly. \\n\\nNow Orgzly crashes when I try to open it. So I guess there's a 300 file limit. And, frankly, there's no real way to organize 300 notes in Orgzly and I'm too lazy to tag all of them.\", \"author_fullname\": \"t2_c213d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I broke Orgzly\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c6t63n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561803417.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I converted 300 Google Keep notes to HTML, then to org mode files using this little bash script:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Efind . -name \\u0026quot;*.ht*\\u0026quot; | while read i; do pandoc -f html -t org \\u0026quot;$i\\u0026quot; -o \\u0026quot;${i%.*}.org\\u0026quot;; done\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEverything worked great. Then I moved the files to my org directory in dropbox, and synced Orgzly. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow Orgzly crashes when I try to open it. So I guess there\\u0026#39;s a 300 file limit. And, frankly, there\\u0026#39;s no real way to organize 300 notes in Orgzly and I\\u0026#39;m too lazy to tag all of them.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c6t63n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Expatio\", \"num_crossposts\": 0, \"num_comments\": 24, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c6t63n/i_broke_orgzly/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c6t63n/i_broke_orgzly/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561774617.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey guys. \\n\\nI am currently working on my first webpage and I am trying to use org-mode to write some of the content because writing html is boring.\\nHowever the HTML file that is exported is a complete mess and it makes it hard.for me to extract what I want.\\n\\nSpecifically what I wanted to know is if there is a way for me to convey a specific id or class to the elements in my org file (that way I could style/ extract them easily). I looked around and I can't seem to find a way to do it.\\n\\nAlso, anybody using org to write a webpage? Anyone would like to share some tips or cool setups? \\n\\nThanks!\", \"author_fullname\": \"t2_wik6z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode exporting to html\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c6kc5r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561758091.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey guys. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am currently working on my first webpage and I am trying to use org-mode to write some of the content because writing html is boring.\\nHowever the HTML file that is exported is a complete mess and it makes it hard.for me to extract what I want.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESpecifically what I wanted to know is if there is a way for me to convey a specific id or class to the elements in my org file (that way I could style/ extract them easily). I looked around and I can\\u0026#39;t seem to find a way to do it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, anybody using org to write a webpage? Anyone would like to share some tips or cool setups? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c6kc5r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Elbarro\", \"num_crossposts\": 0, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c6kc5r/org_mode_exporting_to_html/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c6kc5r/org_mode_exporting_to_html/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561729291.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 28, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c6jsy4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561754960.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c6jsy4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 35, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561726160.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, Im using emacs 26.2 and org-mode 9.2.4.\\n\\nWithin my note I have several Mark's with \\u003E\\u003ETODO.\\n\\nMy search within .emacs :\\n(\\\"2\\\" \\\"Aufgaben aus Notizen\\\"\\u00a0agenda\\u00a0\\\"\\u003E\\u003ETODO aus Notizen\\\"\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(org-agenda-skip-function '(org-agenda-skip-entry-if 'notregexp \\\"\\u003E\\u003ETODO\\\"))\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(org-agenda-overriding-header \\\"\\u003E\\u003ETODO's\\u00a0aus\\u00a0Notizen: \\\") ))\\n\\nDidn't work anymore.\\ud83d\\ude25\\n\\nSearching via agenda F12-\\u003Es-\\u003Eregex {\\u003E\\u003ETODO}\\nworks and I get my results.\\n\\nAny hints? Or something was changed and I have an error included?\\n\\nThanks in advance...\", \"author_fullname\": \"t2_3fb9glrl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Agenda regex search didn't work anymore\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c60z6q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561638420.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, Im using emacs 26.2 and org-mode 9.2.4.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithin my note I have several Mark\\u0026#39;s with \\u0026gt;\\u0026gt;TODO.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy search within .emacs :\\n(\\u0026quot;2\\u0026quot; \\u0026quot;Aufgaben aus Notizen\\u0026quot;\\u00a0agenda\\u00a0\\u0026quot;\\u003Cstrong\\u003ETODO aus Notizen\\u0026quot;\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(org-agenda-skip-function \\u0026#39;(org-agenda-skip-entry-if \\u0026#39;notregexp \\u0026quot;\\u003C/strong\\u003ETODO\\u0026quot;))\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(org-agenda-overriding-header \\u0026quot;\\u0026gt;\\u0026gt;TODO\\u0026#39;s\\u00a0aus\\u00a0Notizen: \\u0026quot;) ))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDidn\\u0026#39;t work anymore.\\ud83d\\ude25\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESearching via agenda F12-\\u0026gt;s-\\u0026gt;regex {\\u0026gt;\\u0026gt;TODO}\\nworks and I get my results.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny hints? Or something was changed and I have an error included?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance...\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c60z6q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ColleagueSunshine\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c60z6q/agenda_regex_search_didnt_work_anymore/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c60z6q/agenda_regex_search_didnt_work_anymore/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561609620.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a pixel 2 using google keyboard and Nova launcher on android.\\n\\nOrgly is awesome. I use it all the time.\\n\\nI have a homescreen widget to add a new note in my [inbox.org](https://inbox.org) notebook.\\n\\nTo add a new entry to my inbox, I click that widget and start typing. If I want to speak rather than type, I tap the microphone at the right side of the keyboard. \\n\\nThen I speak.\\n\\nWhen I'm done, I click the checkmark. Done. New entry has been added.\\n\\nI am looking for a way to streamline it even more.\\n\\n\\u0026#x200B;\\n\\nSomething like this: double tap home screen runs X which records my voice and when I tap again, it stores the transcribed voice as a new entry in [inbox.org](https://inbox.org)\\n\\n\\u0026#x200B;\\n\\nIs there any way of having a different application send transcribed text to orgzly in this way?\\n\\n\\u0026#x200B;\\n\\nOr other, similar ideas?\", \"author_fullname\": \"t2_101gn2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[orgzly] Simplest way to add quick voice functionality to widget?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5ysfq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561625427.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a pixel 2 using google keyboard and Nova launcher on android.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrgly is awesome. I use it all the time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a homescreen widget to add a new note in my \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E notebook.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo add a new entry to my inbox, I click that widget and start typing. If I want to speak rather than type, I tap the microphone at the right side of the keyboard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I speak.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I\\u0026#39;m done, I click the checkmark. Done. New entry has been added.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am looking for a way to streamline it even more.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESomething like this: double tap home screen runs X which records my voice and when I tap again, it stores the transcribed voice as a new entry in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way of having a different application send transcribed text to orgzly in this way?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr other, similar ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5ysfq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pseudo-bash\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c5ysfq/orgzly_simplest_way_to_add_quick_voice/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c5ysfq/orgzly_simplest_way_to_add_quick_voice/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561596627.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"So, while you can write an agenda view [1] to a variety of formats [2], that agenda view exports in an agenda format, whether or not column-view [3] is enabled.\\n\\nI haven't been able to find one, but is there any good way to export an agenda as a column-view? This would be super-useful to share effort estimates and availability.\\n\\n----\\n1. `C-c a: org-agenda`\\n2. `C-x C-w`\\n3. `C-c C-x C-c`\", \"author_fullname\": \"t2_12yaty\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Exporting Agenda in Column View?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4rtbo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561425708.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo, while you can write an agenda view [1] to a variety of formats [2], that agenda view exports in an agenda format, whether or not column-view [3] is enabled.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t been able to find one, but is there any good way to export an agenda as a column-view? This would be super-useful to share effort estimates and availability.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EC-c a: org-agenda\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EC-x C-w\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EC-c C-x C-c\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4rtbo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fearbedragons\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561396908.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi!\\n\\nLet's say I have in my org file a lis of all my clients, and for each headline, I have a property with the amount they will pay me.\\n\\nExample:\\n \\n * John\\n :PROPERTIES:\\n :TOTAL: 200USD\\n :END:\\n \\n * Patrick\\n :PROPERTIES:\\n :TOTAL: 120USD\\n :END:\\n \\n * Thomas\\n :PROPERTIES:\\n :TOTAL: 80USD\\n :END:\\n \\n\\nThis is just for example purposes, as I have in fact dozens of properties, and a lot of subheadings for each client.\\n\\nNow I would like to export a list of all the clients name, with only the value of the \\\"TOTAL\\\" property, for each client.\\n\\nIs there a solution to this ?\\n\\nMany thanks in advance.\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is it possible to export a list of value from a given property?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4ox16\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561415728.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet\\u0026#39;s say I have in my org file a lis of all my clients, and for each headline, I have a property with the amount they will pay me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* John\\n:PROPERTIES:\\n :TOTAL: 200USD\\n:END:\\n\\n* Patrick\\n:PROPERTIES:\\n :TOTAL: 120USD\\n:END:\\n\\n* Thomas\\n:PROPERTIES:\\n :TOTAL: 80USD\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis is just for example purposes, as I have in fact dozens of properties, and a lot of subheadings for each client.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow I would like to export a list of all the clients name, with only the value of the \\u0026quot;TOTAL\\u0026quot; property, for each client.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a solution to this ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4ox16\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561386928.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm reading the [manual](https://orgmode.org/manual/Setting-tags.html) and I don't understand the purpose of \\\"@\\\" at the beginning of the tag.\", \"author_fullname\": \"t2_8v76k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why some tags start with \\\"@\\\"?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4mjyk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561406828.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m reading the \\u003Ca href=\\\"https://orgmode.org/manual/Setting-tags.html\\\"\\u003Emanual\\u003C/a\\u003E and I don\\u0026#39;t understand the purpose of \\u0026quot;@\\u0026quot; at the beginning of the tag.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4mjyk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Pipiyedu\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c4mjyk/why_some_tags_start_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c4mjyk/why_some_tags_start_with/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561378028.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Just came across this, and thought I would share it. Looks active. \\n\\n\\u0026#x200B;\\n\\n[https://smos.cs-syd.eu/](https://smos.cs-syd.eu/)\\n\\n[https://github.com/NorfairKing/smos](https://github.com/NorfairKing/smos)\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Smos: a replacement for emacs org mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3xrzz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561284056.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust came across this, and thought I would share it. Looks active. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://smos.cs-syd.eu/\\\"\\u003Ehttps://smos.cs-syd.eu/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/NorfairKing/smos\\\"\\u003Ehttps://github.com/NorfairKing/smos\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3xrzz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561255256.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"While editing my daily planner, I often find myself needing to capture a new task and to then link to that task in the current document. My existing\\u2014and somewhat clumsy\\u2014workflow is: capture \\u0026 refile -\\u003E open destination file -\\u003E find task -\\u003E store link -\\u003E back to original document -\\u003E insert link.\\n\\nIs there an easier way to store a link to a task as soon as it is captured or refiled?\", \"author_fullname\": \"t2_jrwln\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Store link to newly captured task?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3e2th\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561169010.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile editing my daily planner, I often find myself needing to capture a new task and to then link to that task in the current document. My existing\\u2014and somewhat clumsy\\u2014workflow is: capture \\u0026amp; refile -\\u0026gt; open destination file -\\u0026gt; find task -\\u0026gt; store link -\\u0026gt; back to original document -\\u0026gt; insert link.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there an easier way to store a link to a task as soon as it is captured or refiled?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3e2th\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"virvir\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561140210.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 21, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3a5ki\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561150164.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3a5ki\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561121364.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have an external link that is SVG, but I'm suspecting the weird filename is causing org-mode to not realize this.\\n\\nThis works fine in markdown:\\n\\n ![](https://svg.wavedrom.com/github/wavedrom/wavedrom/master/test/signal-step4.json5)\\n\\nbut in org-mode, the equivalent \\n\\n [[https://svg.wavedrom.com/github/wavedrom/wavedrom/master/test/signal-step4.json5]]\\n\\njust gives me a clickable link. Is there some way to tell org-mode that this is really an svg and should be rendered as such?\\n\\nI'm trying to use this for an org-mode document and I'd like it to be previewable in GitHub, so I'd prefer nothing that requires customizations to org-mode. Worst case I'll just generate the SVGs offline or use markdown :'(\", \"author_fullname\": \"t2_721u8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Force external link to be SVG\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c36ltd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561123594.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have an external link that is SVG, but I\\u0026#39;m suspecting the weird filename is causing org-mode to not realize this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis works fine in markdown:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E![](https://svg.wavedrom.com/github/wavedrom/wavedrom/master/test/signal-step4.json5)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ebut in org-mode, the equivalent \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E[[https://svg.wavedrom.com/github/wavedrom/wavedrom/master/test/signal-step4.json5]]\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ejust gives me a clickable link. Is there some way to tell org-mode that this is really an svg and should be rendered as such?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to use this for an org-mode document and I\\u0026#39;d like it to be previewable in GitHub, so I\\u0026#39;d prefer nothing that requires customizations to org-mode. Worst case I\\u0026#39;ll just generate the SVGs offline or use markdown :\\u0026#39;(\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c36ltd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Hofstee\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c36ltd/force_external_link_to_be_svg/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c36ltd/force_external_link_to_be_svg/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561094794.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c368vf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561121183.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c368vf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1561092383.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm back trying to get this thing as I couldn't find an answer before. \\n\\n\\u0026#x200B;\\n\\nI would like a capture template that loads the text from another org file. \\n\\nWhen I choose the template key (let's say \\\"s\\\" for \\\"setup\\\" template) I want Org to go to \\\\~/Documents/templates/setup.org, and load the context of the file (which is in org) into the capture template. \\n\\n\\u0026#x200B;\\n\\nDoes this option exist built-in, or do I need some lisp magic? The manual hints at this being an option: \\n\\n\\\"template \\n\\nThe template for creating the capture item. If you leave this empty, an appropriate default template will be used. Otherwise this is a string with escape codes, which will be replaced depending on time and context of the capture call. The string with escapes **may be loaded from a template file, using the special syntax \\u2018(file \\\"template filename\\\")\\u2019**. See below for more details.\\\" \\n\\n\\u0026#x200B;\\n\\nHowever, the details below do not seem to explain how to do that. Maybe I'm just not seeing it. \\n\\n\\u0026#x200B;\\n\\nDoes anyone have a template that is based in another .org file?\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Capture template based in a file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c26qja\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560915364.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m back trying to get this thing as I couldn\\u0026#39;t find an answer before. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like a capture template that loads the text from another org file. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I choose the template key (let\\u0026#39;s say \\u0026quot;s\\u0026quot; for \\u0026quot;setup\\u0026quot; template) I want Org to go to ~/Documents/templates/setup.org, and load the context of the file (which is in org) into the capture template. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes this option exist built-in, or do I need some lisp magic? The manual hints at this being an option: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;template \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe template for creating the capture item. If you leave this empty, an appropriate default template will be used. Otherwise this is a string with escape codes, which will be replaced depending on time and context of the capture call. The string with escapes \\u003Cstrong\\u003Emay be loaded from a template file, using the special syntax \\u2018(file \\u0026quot;template filename\\u0026quot;)\\u2019\\u003C/strong\\u003E. See below for more details.\\u0026quot; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, the details below do not seem to explain how to do that. Maybe I\\u0026#39;m just not seeing it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have a template that is based in another .org file?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c26qja\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1560886564.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have an agenda configured with this column view:\\n\\n (setq org-agenda-overriding-columns-format \\\"%30ITEM %TODO %SCHEDULED %6Effort{:}\\\")\\n\\nThat mostly works really well for showing me the task effort and total effort for the day (C-c a a w, C-c C-x C-c). However, when a task is scheduled on the same day as its deadline, the effort is double-counted: once for the scheduled task, and once for the deadline. **Is there any way to avoid counting deadlines in effort,** aside from just hiding the deadlines on the agenda?\", \"author_fullname\": \"t2_12yaty\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Avoid Double Counting Effort on Agenda Column View with Scheduled Deadlines?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c1roqk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560827427.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have an agenda configured with this column view:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-overriding-columns-format \\u0026quot;%30ITEM %TODO %SCHEDULED %6Effort{:}\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThat mostly works really well for showing me the task effort and total effort for the day (C-c a a w, C-c C-x C-c). However, when a task is scheduled on the same day as its deadline, the effort is double-counted: once for the scheduled task, and once for the deadline. \\u003Cstrong\\u003EIs there any way to avoid counting deadlines in effort,\\u003C/strong\\u003E aside from just hiding the deadlines on the agenda?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c1roqk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fearbedragons\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c1roqk/avoid_double_counting_effort_on_agenda_column/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c1roqk/avoid_double_counting_effort_on_agenda_column/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1560798627.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello, I hope one of you kind souls can help me. \\n\\nI have a lot of research that I'd liked to make accessible to read when I'm away from my laptop. I've been taking notes in orgmode that link to files and other org files. This works really well in emacs, i can happily follow my research, and read the relevant papers. \\n\\nI thought I'd try and publish to html, then copy the files and folders to my android phone, so that i have my research when i need it at work. \\n\\nI cannot get it to work so that clicking on a link opens the file or linked page, i get file not found. \\n\\nIs there a setting i need to change so that i can just point to the file in the same directory or one in a folder under it? \\n\\nI have no website development experience, and I've no wish to put these files on the internet, i want them to just be local files.\\n\\nOrgzly seems to work well if there is a TODO, but it can't open the links and doesn't show the text. \\n\\nCan it be done?\\n\\nEdit: it does seem to be an issue with android. My workaround is to install SimpleHttpServer. I pointed it to my index.html file, and everything works as expected. Now to install some css :)\\n\\nThank you all for your help.\", \"author_fullname\": \"t2_9wkx0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HTML output that can be used on an Android phone\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c1lhb5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560799974.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560792383.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I hope one of you kind souls can help me. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a lot of research that I\\u0026#39;d liked to make accessible to read when I\\u0026#39;m away from my laptop. I\\u0026#39;ve been taking notes in orgmode that link to files and other org files. This works really well in emacs, i can happily follow my research, and read the relevant papers. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought I\\u0026#39;d try and publish to html, then copy the files and folders to my android phone, so that i have my research when i need it at work. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cannot get it to work so that clicking on a link opens the file or linked page, i get file not found. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a setting i need to change so that i can just point to the file in the same directory or one in a folder under it? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have no website development experience, and I\\u0026#39;ve no wish to put these files on the internet, i want them to just be local files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrgzly seems to work well if there is a TODO, but it can\\u0026#39;t open the links and doesn\\u0026#39;t show the text. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECan it be done?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: it does seem to be an issue with android. My workaround is to install SimpleHttpServer. I pointed it to my index.html file, and everything works as expected. Now to install some css :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you all for your help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c1lhb5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"soops1966\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1560763583.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey all!\\n\\nI have a rather time sensitive task that needs be done every day exactly 24 hours apart. I was hoping to use something like \\u003C2019-06-16 17:00 .+24h\\u003E (documentation on the .+ repeat thing here in case anyone needs it: [https://orgmode.org/org.html#Repeated-tasks](https://orgmode.org/org.html#Repeated-tasks)) However, it only sets the next due timestamp to 24 hours ahead of the currently scheduled timestamp instead of setting it exactly 24 hours from when I last completed the task like I was hoping. Would anyone have any ideas as to how I might make a repeating task like this? Thanks a bunch in advance!\", \"author_fullname\": \"t2_mrsxp9x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Repeating task that, when completed, sets due date exactly 24 hours from the time last completed?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c1gx6s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560759316.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey all!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a rather time sensitive task that needs be done every day exactly 24 hours apart. I was hoping to use something like \\u0026lt;2019-06-16 17:00 .+24h\\u0026gt; (documentation on the .+ repeat thing here in case anyone needs it: \\u003Ca href=\\\"https://orgmode.org/org.html#Repeated-tasks\\\"\\u003Ehttps://orgmode.org/org.html#Repeated-tasks\\u003C/a\\u003E) However, it only sets the next due timestamp to 24 hours ahead of the currently scheduled timestamp instead of setting it exactly 24 hours from when I last completed the task like I was hoping. Would anyone have any ideas as to how I might make a repeating task like this? Thanks a bunch in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c1gx6s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pgwang\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1560730516.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I hold a file containing one file per day and with everything I do at work. In parallel I have another folder with several sub-folders containing information on different programming languages, articles to read, personal stuff, etc...\\n\\nI manage everything by hand and I think it's time to use a few things to simplify my life. I use many years emacs but I always missed org-mode. Between org-mode, org-journal, agenda, calendar, I'm a little lost.\\n\\nDo you have any advice ? Thank you in advance !\", \"author_fullname\": \"t2_jmplgk2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-mode as work diary and notes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c133r2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560667404.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI hold a file containing one file per day and with everything I do at work. In parallel I have another folder with several sub-folders containing information on different programming languages, articles to read, personal stuff, etc...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI manage everything by hand and I think it\\u0026#39;s time to use a few things to simplify my life. I use many years emacs but I always missed org-mode. Between org-mode, org-journal, agenda, calendar, I\\u0026#39;m a little lost.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo you have any advice ? Thank you in advance !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c133r2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Qwarctick\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1560638604.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 14, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c0jpns\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560545368.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c0jpns\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c0jpns/weekly_rorgmode_open_discussion_june_14_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c0jpns/weekly_rorgmode_open_discussion_june_14_2019/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1560516568.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I would like to get pdf output from source code to display inline. I've been using png output for the preparation of a manuscript recently, but now that I'm close to submission I have to switch to vector graphics in pdf (or eps) for latex export. This works fine, but doesn't allow me to preview the images anymore. Which should work, since pdf-tools readily shows pdf previews.\\n\\n[On the mailing list](https://lists.gnu.org/archive/html/emacs-orgmode/2016-02/msg00204.html) there's a pretty old question of somebody trying to achieve the same but without any answers. They found their own 4-liner solution, which didn't work for me (resulting in an outlined little square)\\n\\n```\\n(add-to-list 'image-type-file-name-regexps '(\\\"\\\\\\\\.pdf\\\\\\\\'\\\" . imagemagick))\\n(add-to-list 'image-file-name-extensions \\\"pdf\\\")\\n(setq imagemagick-types-inhibit (remove 'PDF imagemagick-types-inhibit))\\n(setq org-image-actual-width 600)\\n```\\n\\nThat's also the second solution posted to [this SO question](https://stackoverflow.com/questions/15407485/inline-pdf-images-in-org-mode). The first solution there seems quite fancy but since my knowledge of elisp is not extensive, I couldn't debug the inevitable error when opening an org-file with pdfs or when creating a new one.\\n\\nThere's also this [SO solution that I didn't try](https://emacs.stackexchange.com/questions/390/display-pdf-images-in-org-mode) since it requires a different format for the source.\\n\\nAny ideas on how to do this with the most recent versions of emacs and org-mode?\", \"author_fullname\": \"t2_r4y6z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inline PDF images from source in org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzas9r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560277909.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to get pdf output from source code to display inline. I\\u0026#39;ve been using png output for the preparation of a manuscript recently, but now that I\\u0026#39;m close to submission I have to switch to vector graphics in pdf (or eps) for latex export. This works fine, but doesn\\u0026#39;t allow me to preview the images anymore. Which should work, since pdf-tools readily shows pdf previews.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://lists.gnu.org/archive/html/emacs-orgmode/2016-02/msg00204.html\\\"\\u003EOn the mailing list\\u003C/a\\u003E there\\u0026#39;s a pretty old question of somebody trying to achieve the same but without any answers. They found their own 4-liner solution, which didn\\u0026#39;t work for me (resulting in an outlined little square)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(add-to-list \\u0026#39;image-type-file-name-regexps \\u0026#39;(\\u0026quot;\\\\\\\\.pdf\\\\\\\\\\u0026#39;\\u0026quot; . imagemagick))\\n(add-to-list \\u0026#39;image-file-name-extensions \\u0026quot;pdf\\u0026quot;)\\n(setq imagemagick-types-inhibit (remove \\u0026#39;PDF imagemagick-types-inhibit))\\n(setq org-image-actual-width 600)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s also the second solution posted to \\u003Ca href=\\\"https://stackoverflow.com/questions/15407485/inline-pdf-images-in-org-mode\\\"\\u003Ethis SO question\\u003C/a\\u003E. The first solution there seems quite fancy but since my knowledge of elisp is not extensive, I couldn\\u0026#39;t debug the inevitable error when opening an org-file with pdfs or when creating a new one.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere\\u0026#39;s also this \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/390/display-pdf-images-in-org-mode\\\"\\u003ESO solution that I didn\\u0026#39;t try\\u003C/a\\u003E since it requires a different format for the source.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas on how to do this with the most recent versions of emacs and org-mode?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzas9r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Japhiri\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1560249109.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I was wondering if there is anything similar to taskwarrior that can do the same thing with org files.\", \"author_fullname\": \"t2_3tn7pcdr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org Files In Cli\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz9niq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560268621.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering if there is anything similar to taskwarrior that can do the same thing with org files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz9niq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SidharthArya-\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1560239821.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Updates to org-ql\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz5esl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 18, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 18, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"https://github.com/alphapapa/org-ql\\n\\n`org-ql` has received several updates, including better documentation, an improved `org-ql-search` command, and new `(ts)` predicates that select entries by timestamp.\\n\\nHere's a [screencast](https://github.com/alphapapa/org-ql/raw/master/images/org-ql-search.gif) of the improved `org-ql-search` command.\\n\\nFeedback would be appreciated. I plan to submit it to MELPA, but I think it needs more testing and polishing first.\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Updates to org-ql\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz5eqv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 38, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 38, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560240569.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/org-ql\\\"\\u003Ehttps://github.com/alphapapa/org-ql\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E has received several updates, including better documentation, an improved \\u003Ccode\\u003Eorg-ql-search\\u003C/code\\u003E command, and new \\u003Ccode\\u003E(ts)\\u003C/code\\u003E predicates that select entries by timestamp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s a \\u003Ca href=\\\"https://github.com/alphapapa/org-ql/raw/master/images/org-ql-search.gif\\\"\\u003Escreencast\\u003C/a\\u003E of the improved \\u003Ccode\\u003Eorg-ql-search\\u003C/code\\u003E command.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeedback would be appreciated. I plan to submit it to MELPA, but I think it needs more testing and polishing first.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz5eqv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1560211769.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1560240576.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz5esl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bz5eqv\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bz5esl/updates_to_orgql/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1560211776.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"http://www.gonsie.com/blorg/org-highlight.html\\n\\nI wrote a short post on how I added a highlight markup to orgmode, where I use ':' to mark the start and end of a phrase (similar to the bold or italic markup). For example a `:highlighted:` word becomes `\\u003Cmark\\u003Ehighlighted\\u003C/mark\\u003E` when exported with an HTML backend.\\n\\nI hope this is useful for someone else. If there is some interest, I would propose to put this into the org standard.\", \"author_fullname\": \"t2_6c42k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Adding highlight markup to org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz0258\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560213612.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.gonsie.com/blorg/org-highlight.html\\\"\\u003Ehttp://www.gonsie.com/blorg/org-highlight.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wrote a short post on how I added a highlight markup to orgmode, where I use \\u0026#39;:\\u0026#39; to mark the start and end of a phrase (similar to the bold or italic markup). For example a \\u003Ccode\\u003E:highlighted:\\u003C/code\\u003E word becomes \\u003Ccode\\u003E\\u0026lt;mark\\u0026gt;highlighted\\u0026lt;/mark\\u0026gt;\\u003C/code\\u003E when exported with an HTML backend.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI hope this is useful for someone else. If there is some interest, I would propose to put this into the org standard.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz0258\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gonsie\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bz0258/adding_highlight_markup_to_org/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bz0258/adding_highlight_markup_to_org/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1560184812.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, guys.\\n\\nBefore I start defining my own custom property for this I wanted to makes sure there wasn't an existing way to do it. I'm looking for a property or something that would automatically exclude an entry from the default agenda views. I don't see one in the property completion list but it seems like the kind of thing someone may have already thought of.\\n\\nI don't have a problem with filtering on my own property or tag. But I'd rather not duplicate something that's already built in.\\n\\nThanks.\", \"author_fullname\": \"t2_16nda8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Property to exclude an entry from the agenda?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byjkmm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560110840.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, guys.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore I start defining my own custom property for this I wanted to makes sure there wasn\\u0026#39;t an existing way to do it. I\\u0026#39;m looking for a property or something that would automatically exclude an entry from the default agenda views. I don\\u0026#39;t see one in the property completion list but it seems like the kind of thing someone may have already thought of.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t have a problem with filtering on my own property or tag. But I\\u0026#39;d rather not duplicate something that\\u0026#39;s already built in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byjkmm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tshanno\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1560082040.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Those of you who use Org-mode with Android are probably familiar with [Orgzly](http://www.orgzly.com/). In this post, a friendly FAQ with it's creator, who was kind enough to answer a few questions. I also described how I work with it toward the end.\\n\\n\\u0026#x200B;\\n\\nThis read might be useful for anyone who uses Org-mode on the go, rather you're familiar with Orgzly or not. Let me know what you think :)\\n\\n\\u0026#x200B;\\n\\n[https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/](https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/)\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Orgzly: an interview with the creator\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byflyn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 50, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 50, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560078985.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560076152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThose of you who use Org-mode with Android are probably familiar with \\u003Ca href=\\\"http://www.orgzly.com/\\\"\\u003EOrgzly\\u003C/a\\u003E. In this post, a friendly FAQ with it\\u0026#39;s creator, who was kind enough to answer a few questions. I also described how I work with it toward the end.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis read might be useful for anyone who uses Org-mode on the go, rather you\\u0026#39;re familiar with Orgzly or not. Let me know what you think :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/\\\"\\u003Ehttps://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byflyn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 21, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1560047352.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is it possible to get a quick org-agenda shown for just all the dates in the current org-buffer? I have too many little projects with their own org-documents, and usually I am only interested in what I need to do on the project I have right in front of me, not the default agenda files.\", \"author_fullname\": \"t2_68in0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Agenda for current buffer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxwovd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559954023.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to get a quick org-agenda shown for just all the dates in the current org-buffer? I have too many little projects with their own org-documents, and usually I am only interested in what I need to do on the project I have right in front of me, not the default agenda files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxwovd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"livrem\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559925223.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxu83g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559940568.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu83g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559911768.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have [ob-mathematica](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el) (which allows me to execute mathematica snippets via org-babel) combined with [wolfram-mode](https://github.com/kawabata/wolfram-mode) (which provides syntax highlighting).\\n\\nSo right now I have the conundrum that if I label an org-babel source block `mathematica`, then I can evaluate it via `C-c C-c` but without syntax highlighting. On the other hand, if I label the block `wolfram`, then I can no longer evaluate it, but I get source highlighting!\\n\\nHow do I combine these two to get the best of both worlds?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxooz7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559899393.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Eob-mathematica\\u003C/a\\u003E (which allows me to execute mathematica snippets via org-babel) combined with \\u003Ca href=\\\"https://github.com/kawabata/wolfram-mode\\\"\\u003Ewolfram-mode\\u003C/a\\u003E (which provides syntax highlighting).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo right now I have the conundrum that if I label an org-babel source block \\u003Ccode\\u003Emathematica\\u003C/code\\u003E, then I can evaluate it via \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E but without syntax highlighting. On the other hand, if I label the block \\u003Ccode\\u003Ewolfram\\u003C/code\\u003E, then I can no longer evaluate it, but I get source highlighting!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I combine these two to get the best of both worlds?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxooz7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559870593.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone. Has anyone some hints on how to make helm`(org-refile)` case insensitive? E.g. I want to refile the current headline below `RubyBerlin/ToDo` (note the capital `D`). Typing the correct `\\\"Berlin/ToDo\\\"` will work and offer the headline to refile below:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/6swhzzsmvp231.png\\n\\nBut typing the lower case version `\\\"Berlin/Todo\\\"` will only give results of headlines below the one I want to refile to:\\n\\n \\n\\nhttps://i.redd.it/9mlv6bxuvp231.png\\n\\nI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\", \"author_fullname\": \"t2_5cbr5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Case insensitive (org-refile)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"6swhzzsmvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 91, \"x\": 467, \"u\": \"https://i.redd.it/6swhzzsmvp231.png\"}, \"m\": \"image/png\", \"id\": \"6swhzzsmvp231\"}, \"9mlv6bxuvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 124, \"x\": 692, \"u\": \"https://i.redd.it/9mlv6bxuvp231.png\"}, \"m\": \"image/png\", \"id\": \"9mlv6bxuvp231\"}}, \"name\": \"t3_bxfd1r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847398.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone. Has anyone some hints on how to make helm\\u003Ccode\\u003E(org-refile)\\u003C/code\\u003E case insensitive? E.g. I want to refile the current headline below \\u003Ccode\\u003ERubyBerlin/ToDo\\u003C/code\\u003E (note the capital \\u003Ccode\\u003ED\\u003C/code\\u003E). Typing the correct \\u003Ccode\\u003E\\u0026quot;Berlin/ToDo\\u0026quot;\\u003C/code\\u003E will work and offer the headline to refile below:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/6swhzzsmvp231.png\\\"\\u003Ehttps://i.redd.it/6swhzzsmvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut typing the lower case version \\u003Ccode\\u003E\\u0026quot;Berlin/Todo\\u0026quot;\\u003C/code\\u003E will only give results of headlines below the one I want to refile to:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/9mlv6bxuvp231.png\\\"\\u003Ehttps://i.redd.it/9mlv6bxuvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfd1r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bascht\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559818598.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_j2fhy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwtuob\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 33, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 33, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559710022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwtuob\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thenackjicholson\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/fldtyuwije231.png\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559681222.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi guys,\\n\\nI would like to be able to preview inline images in Org-Mode without specifying its folder.\\n\\nFor instance, I would like to have `[[figurename.png]]` even tough the figure is in a folder named `figs`.\\n\\n\\u0026#x200B;\\n\\nRight now, I am using `#+LATEX_HEADER: \\\\graphicspath{{./figs/}}` and it is working good for LaTeX exports, but I don't have the nice preview in orgmode. Any idea how I could do that?\\n\\nThanks!\", \"author_fullname\": \"t2_6nzpkw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Default directory for inline images?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmraz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559669671.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to be able to preview inline images in Org-Mode without specifying its folder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor instance, I would like to have \\u003Ccode\\u003E[[figurename.png]]\\u003C/code\\u003E even tough the figure is in a folder named \\u003Ccode\\u003Efigs\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now, I am using \\u003Ccode\\u003E#+LATEX_HEADER: \\\\graphicspath{{./figs/}}\\u003C/code\\u003E and it is working good for LaTeX exports, but I don\\u0026#39;t have the nice preview in orgmode. Any idea how I could do that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmraz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tdehaeze\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559640871.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdoe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1559637338.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1559666163.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdoe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bwmdlj\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmdoe/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559637363.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi all, I'm trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is: \\n1. Find the contact (M-x org-contacts)\\n\\n2. Create link (C-c l)\\n\\n3. Go to task\\n\\n4. Insert link\\n\\nThis is not very good, I would like to know if there's a way to have my contacts links permanently stored on emacs, and if there's a easier way to insert a contact in a task.\\n\\nFor more information, the reason I want this is because sometimes I create tasks as: **Ping John about foo**, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\n\\nThanks for the help.\\n\\nPS: This is my config if it helps: [https://github.com/martini97/.emacs.d](https://github.com/martini97/.emacs.d)\", \"author_fullname\": \"t2_9eav0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Linking contacts to tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwk33h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559648146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I\\u0026#39;m trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is:\\u003Cbr/\\u003E\\n1. Find the contact (M-x org-contacts)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECreate link (C-c l)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGo to task\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EInsert link\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is not very good, I would like to know if there\\u0026#39;s a way to have my contacts links permanently stored on emacs, and if there\\u0026#39;s a easier way to insert a contact in a task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more information, the reason I want this is because sometimes I create tasks as: \\u003Cstrong\\u003EPing John about foo\\u003C/strong\\u003E, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for the help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: This is my config if it helps: \\u003Ca href=\\\"https://github.com/martini97/.emacs.d\\\"\\u003Ehttps://github.com/martini97/.emacs.d\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwk33h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_martini97\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559619346.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Came across this function/variable while improving my agenda views and thought it'd be interesting ... except it doesn't seem to work for me! If I activate this in an agenda view where I know I archived a task that's now DONE, nothing shows up.\\n\\nMy archive files are located in a different directory than my main org files:\\n\\n (setq org-archive-location (concat archive-dir (format-time-string \\\"%Y\\\" (current-time)) \\\".org_archive::datetree/\\\"))\\n\\nThese YYYY.org_archive files are not part of my `org-agenda-files` either.\\n\\nDoes archives mode only work if the `:ARCHIVED:` headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How is org-agenda-archives-mode supposed to work?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwi4qu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559636288.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECame across this function/variable while improving my agenda views and thought it\\u0026#39;d be interesting ... except it doesn\\u0026#39;t seem to work for me! If I activate this in an agenda view where I know I archived a task that\\u0026#39;s now DONE, nothing shows up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy archive files are located in a different directory than my main org files:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-archive-location (concat archive-dir (format-time-string \\u0026quot;%Y\\u0026quot; (current-time)) \\u0026quot;.org_archive::datetree/\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThese YYYY.org_archive files are not part of my \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes archives mode only work if the \\u003Ccode\\u003E:ARCHIVED:\\u003C/code\\u003E headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwi4qu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559607488.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"how do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwcmiw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559607953.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehow do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwcmiw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559579153.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a time table like so with the following table format formula.\\n\\n |-------+----------+--------------|\\n | Start | Duration | Title |\\n |-------+----------+--------------|\\n | 9:00 | 00:15 | Introduction |\\n | 9:15 | 00:45 | Basics |\\n | 10:00 | 00:30 | Break |\\n | 10:30 | 01:30 | Intermediate |\\n | 12:00 | 01:00 | Lunch Break |\\n | 13:00 | 02:00 | Advanced |\\n | 15:00 | 00:30 | Break |\\n | 15:30 | 01:30 | Party |\\n | 17:00 | | End |\\n |-------+----------+--------------|\\n #+TBLFM: $2=@+1$1-$1;U\\n\\nMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\n\\n\\u003E user-error: Row descriptor +1 leads outside table\\n\\nIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\n\\nUpdate: `#+TBLFM: @\\u003C\\u003C$2..@\\u003E\\u003E$2=@+1$1-$1;U` seems to do the trick, thanks cipharius !\", \"author_fullname\": \"t2_5n9uk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9eiq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559564152.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559588764.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a time table like so with the following table format formula.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E|-------+----------+--------------|\\n| Start | Duration | Title |\\n|-------+----------+--------------|\\n| 9:00 | 00:15 | Introduction |\\n| 9:15 | 00:45 | Basics |\\n| 10:00 | 00:30 | Break |\\n| 10:30 | 01:30 | Intermediate |\\n| 12:00 | 01:00 | Lunch Break |\\n| 13:00 | 02:00 | Advanced |\\n| 15:00 | 00:30 | Break |\\n| 15:30 | 01:30 | Party |\\n| 17:00 | | End |\\n|-------+----------+--------------|\\n#+TBLFM: $2=@+1$1-$1;U\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Euser-error: Row descriptor +1 leads outside table\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate: \\u003Ccode\\u003E#+TBLFM: @\\u0026lt;\\u0026lt;$2..@\\u0026gt;\\u0026gt;$2=@+1$1-$1;U\\u003C/code\\u003E seems to do the trick, thanks cipharius !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9eiq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gausby\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559559964.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I found this post: [https://www.reddit.com/r/orgmode/comments/90sk11/how\\\\_do\\\\_you\\\\_cite\\\\_pages\\\\_for\\\\_quotes\\\\_with\\\\_orgref/](https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/), which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\", \"author_fullname\": \"t2_js9by\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you include page number in page number in org-ref with helm?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw916a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559585779.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI found this post: \\u003Ca href=\\\"https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\\"\\u003Ehttps://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\u003C/a\\u003E, which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw916a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kandidate\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559556979.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The function `org-tags-view` allows you to build up semi-complex searches for tags using regexp:\\n\\n```\\n(org-tags-view t \\\"+PROP1={value}\\u0026+PROP2={[1-2]}\\\")\\n```\\n\\nHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header's properties, do some computations on them, and returns `t` or `nil` depending upon whether the computation matches in the way I specify?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Searching for org-tags programmatically (without regexp)?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw317n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559542522.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe function \\u003Ccode\\u003Eorg-tags-view\\u003C/code\\u003E allows you to build up semi-complex searches for tags using regexp:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(org-tags-view t \\u0026quot;+PROP1={value}\\u0026amp;+PROP2={[1-2]}\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header\\u0026#39;s properties, do some computations on them, and returns \\u003Ccode\\u003Et\\u003C/code\\u003E or \\u003Ccode\\u003Enil\\u003C/code\\u003E depending upon whether the computation matches in the way I specify?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw317n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559513722.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"# Context\\n\\nI have a very strange org-mode workflow, and I don't know how better to ask this question without first explaining it. So bear with me :)\\n\\nEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\n\\n1. **Resources.** Resources are things like `Rcomputer`, `Rnone` (for pure \\\"thinking\\\" tasks), and combinatory resources like `RDevice` (defined as `Rphone` OR `Rcomputer`). They should ultimately be placed in a bracket notation such as `[Rnone]` or `[Rcomputer, Rphone]`.\\n2. **Energy.** Energy can be thought of as a real number between `E1` and `E10` (i.e., `E10` might making a hard emotional decision, while an `E1` task takes almost no effort). Energy should also ultimately be placed in brackets like `[E5]` (single value) or `[E2, E6]` (a range of energy).\\n3. **Tags.** Tags are high-level wrappers for the previous two categories. For example, `@Thinking` could convert to `E4` and `Rnone`, while `@Reading` might convert to `E3` and `RDevice`.\\n\\n# Problem\\n\\n**What I don't know how best to do:** programatically convert (3) into (1) and (2) in a sensible way. So, for example, I'd like to have a function which can convert\\n\\n * An org-mode thinking task. :@Thinking:\\n\\nto this:\\n\\n * An org-mode thinking task. :@Thinking:\\n :PROPERTIES:\\n :R: [Rnone]\\n :E: [E4]\\n :END:\\n\\nor more complicatedly, convert a task with two tags:\\n\\n * An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n :PROPERTIES:\\n :R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u003E [Rnone], while @Reading -\\u003E [RDevice] -\\u003E [Rcompter, Rphone]\\n :E: [E3, E4] ; @Thinking -\\u003E E3; @Reading -\\u003E E4\\n :END:\\n\\nHow best to encode all of this in elisp?\\n\\n# Attempt\\n\\nFirst we have high level resources:\\n\\n``` elisp\\n(setq high-level-resources (\\n (\\\"RDevice\\\" . '(\\\"Rcomputer\\\" \\\"Rphone\\\")) ;; Notice that \\\"high-level\\\" resources are capitalized while \\\"low-level\\\" resource are non-capitalized\\n ;; ..\\n )\\n```\\n\\nthen we have high-level tags (which define both a resource and an energy component):\\n\\n``` elisp\\n(setq tags ( \\n (\\\"@Reading\\\" . '((\\\"E\\\" . \\\"E3\\\") (\\\"R\\\" . \\\"RDevice\\\")))\\n (\\\"@Thinking\\\" . '((\\\"E\\\" . \\\"E2\\\") (\\\"R\\\" . \\\"Rnone\\\")))\\n ;; ..\\n )\\n```\\n\\nThen we need a function which converts tags to their resources/energy:\\n\\n``` elisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n```\\n\\nHow can we implement `convert-tags-to-resources-and-energy`?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Converting org-tags into properties (recursively)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvz12r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559520969.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EContext\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI have a very strange org-mode workflow, and I don\\u0026#39;t know how better to ask this question without first explaining it. So bear with me :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EResources.\\u003C/strong\\u003E Resources are things like \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E, \\u003Ccode\\u003ERnone\\u003C/code\\u003E (for pure \\u0026quot;thinking\\u0026quot; tasks), and combinatory resources like \\u003Ccode\\u003ERDevice\\u003C/code\\u003E (defined as \\u003Ccode\\u003ERphone\\u003C/code\\u003E OR \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E). They should ultimately be placed in a bracket notation such as \\u003Ccode\\u003E[Rnone]\\u003C/code\\u003E or \\u003Ccode\\u003E[Rcomputer, Rphone]\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EEnergy.\\u003C/strong\\u003E Energy can be thought of as a real number between \\u003Ccode\\u003EE1\\u003C/code\\u003E and \\u003Ccode\\u003EE10\\u003C/code\\u003E (i.e., \\u003Ccode\\u003EE10\\u003C/code\\u003E might making a hard emotional decision, while an \\u003Ccode\\u003EE1\\u003C/code\\u003E task takes almost no effort). Energy should also ultimately be placed in brackets like \\u003Ccode\\u003E[E5]\\u003C/code\\u003E (single value) or \\u003Ccode\\u003E[E2, E6]\\u003C/code\\u003E (a range of energy).\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003ETags.\\u003C/strong\\u003E Tags are high-level wrappers for the previous two categories. For example, \\u003Ccode\\u003E@Thinking\\u003C/code\\u003E could convert to \\u003Ccode\\u003EE4\\u003C/code\\u003E and \\u003Ccode\\u003ERnone\\u003C/code\\u003E, while \\u003Ccode\\u003E@Reading\\u003C/code\\u003E might convert to \\u003Ccode\\u003EE3\\u003C/code\\u003E and \\u003Ccode\\u003ERDevice\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Ch1\\u003EProblem\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat I don\\u0026#39;t know how best to do:\\u003C/strong\\u003E programatically convert (3) into (1) and (2) in a sensible way. So, for example, I\\u0026#39;d like to have a function which can convert\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eto this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n:PROPERTIES:\\n:R: [Rnone]\\n:E: [E4]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eor more complicatedly, convert a task with two tags:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n:PROPERTIES:\\n:R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u0026gt; [Rnone], while @Reading -\\u0026gt; [RDevice] -\\u0026gt; [Rcompter, Rphone]\\n:E: [E3, E4] ; @Thinking -\\u0026gt; E3; @Reading -\\u0026gt; E4\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHow best to encode all of this in elisp?\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EAttempt\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFirst we have high level resources:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq high-level-resources (\\n (\\u0026quot;RDevice\\u0026quot; . \\u0026#39;(\\u0026quot;Rcomputer\\u0026quot; \\u0026quot;Rphone\\u0026quot;)) ;; Notice that \\u0026quot;high-level\\u0026quot; resources are capitalized while \\u0026quot;low-level\\u0026quot; resource are non-capitalized\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethen we have high-level tags (which define both a resource and an energy component):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq tags ( \\n (\\u0026quot;@Reading\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E3\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;RDevice\\u0026quot;)))\\n (\\u0026quot;@Thinking\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E2\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;Rnone\\u0026quot;)))\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen we need a function which converts tags to their resources/energy:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can we implement \\u003Ccode\\u003Econvert-tags-to-resources-and-energy\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvz12r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559492169.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvsa9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Running a fresh Emacs session with `emacs -Q`, I evaluated the following:\\n\\n (setq org-agenda-files '(\\\"~/index.org\\\"))\\n (setq org-enforce-todo-dependencies t)\\n (setq org-agenda-dim-blocked-tasks 'invisible)\\n\\nwhere `~/index.org` simply contains:\\n\\n * Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO First subheading\\n ** TODO Second subheading\\n\\nWhen I call `(org-agenda nil \\\"t\\\")` to display the available TODOs, it correctly displays only \\\"First subheading.\\\" However, if I then export that buffer with `org-agenda-write`, then the resulting file contains both \\\"First subheading\\\" and \\\"Second subheading.\\\"\\n\\nWhat is going on here, and can it be fixed?\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvs6jo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559467712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERunning a fresh Emacs session with \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E, I evaluated the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files \\u0026#39;(\\u0026quot;~/index.org\\u0026quot;))\\n(setq org-enforce-todo-dependencies t)\\n(setq org-agenda-dim-blocked-tasks \\u0026#39;invisible)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E~/index.org\\u003C/code\\u003E simply contains:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO First subheading\\n** TODO Second subheading\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I call \\u003Ccode\\u003E(org-agenda nil \\u0026quot;t\\u0026quot;)\\u003C/code\\u003E to display the available TODOs, it correctly displays only \\u0026quot;First subheading.\\u0026quot; However, if I then export that buffer with \\u003Ccode\\u003Eorg-agenda-write\\u003C/code\\u003E, then the resulting file contains both \\u0026quot;First subheading\\u0026quot; and \\u0026quot;Second subheading.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is going on here, and can it be fixed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvs6jo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1559438912.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1559468360.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvsa9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bvs6jo\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvsa9b/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559439560.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"In a list of `files` I have org tasks with the property `E` such that each `E` is marked with an interval range.\\n\\n * Some task1\\n :PROPERTIES:\\n :E: [E1, E3]\\n :END:\\n\\n * Some task2\\n :PROPERTIES:\\n :E: [E4, E7]\\n :END:\\n\\n...and so forth.\\n\\n**Question:** How can I `search` through `files` and obtain an agenda view of all tasks that intersect within a range `min` to `max`?\\n\\nSo for example `(search files 3 7)` should display tasks that have, i,e., `[E2, E4]`, `[E4, E5]` or `[E6, E8]` but *not* display tasks have `[E1, E2]` or `[E8, E9]`.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Matching org tasks against an interval of values\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvqyqw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559459994.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn a list of \\u003Ccode\\u003Efiles\\u003C/code\\u003E I have org tasks with the property \\u003Ccode\\u003EE\\u003C/code\\u003E such that each \\u003Ccode\\u003EE\\u003C/code\\u003E is marked with an interval range.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Some task1\\n:PROPERTIES:\\n:E: [E1, E3]\\n:END:\\n\\n* Some task2\\n:PROPERTIES:\\n:E: [E4, E7]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E...and so forth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion:\\u003C/strong\\u003E How can I \\u003Ccode\\u003Esearch\\u003C/code\\u003E through \\u003Ccode\\u003Efiles\\u003C/code\\u003E and obtain an agenda view of all tasks that intersect within a range \\u003Ccode\\u003Emin\\u003C/code\\u003E to \\u003Ccode\\u003Emax\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for example \\u003Ccode\\u003E(search files 3 7)\\u003C/code\\u003E should display tasks that have, i,e., \\u003Ccode\\u003E[E2, E4]\\u003C/code\\u003E, \\u003Ccode\\u003E[E4, E5]\\u003C/code\\u003E or \\u003Ccode\\u003E[E6, E8]\\u003C/code\\u003E but \\u003Cem\\u003Enot\\u003C/em\\u003E display tasks have \\u003Ccode\\u003E[E1, E2]\\u003C/code\\u003E or \\u003Ccode\\u003E[E8, E9]\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvqyqw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559431194.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-src-window-setup not behaving as expected with multi-term-dedicated opened? (more info in comments) (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvavuq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559354935.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvavuq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvavuq/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvai3u/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559326135.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv747t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559335751.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv747t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559306951.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi Everyone, \\n\\nI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\n\\n\\u0026#x200B;\\n\\n (cond ((eq system-type 'windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list 'exec-path \\\"c:/cygwin64/bin/\\\")\\n (setenv \\\"PATH\\\"\\n (concat\\n \\\"c:/cygwin64/bin/aspell.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/zip.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/unzip.exe\\\" \\\";\\\"\\n (getenv \\\"PATH\\\")\\n )\\n )\\n (setq ispell-program-name \\\"aspell.exe\\\")\\n )\\n )\\n\\nThis is my \\\\*Only Windows\\\\* Configuration Part as I cant include it to the Windows PATH Variable.\\n\\nNow (org-odt-export-to-odt) has the following problem. \\n\\n\\u0026#x200B;\\n\\n OpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\n sh: unzip: command not found\\n test of Configuration.odt FAILED\\n \\n zip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n )\\n\\nAny ideas?\\n\\nJust Message me if there is more Info needed\\n\\n\\u0026#x200B;\\n\\nThanks in advance\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Win10 Org Odt Export Unzip Problem\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv54oy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559321590.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi Everyone, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(cond ((eq system-type \\u0026#39;windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list \\u0026#39;exec-path \\u0026quot;c:/cygwin64/bin/\\u0026quot;)\\n (setenv \\u0026quot;PATH\\u0026quot;\\n (concat\\n \\u0026quot;c:/cygwin64/bin/aspell.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/zip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/unzip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n (getenv \\u0026quot;PATH\\u0026quot;)\\n )\\n )\\n (setq ispell-program-name \\u0026quot;aspell.exe\\u0026quot;)\\n )\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis is my *Only Windows* Configuration Part as I cant include it to the Windows PATH Variable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow (org-odt-export-to-odt) has the following problem. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EOpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\nsh: unzip: command not found\\ntest of Configuration.odt FAILED\\n\\nzip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust Message me if there is more Info needed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv54oy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559292790.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Dear Orgers...\\n\\nI'm exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\\"Contents\\\"). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\n\\nhttps://i.redd.it/71ml0g0ikf131.png\\n\\nHow can I prevent this from happening?\\n\\nI see here 2 possibilities:\\n\\n1. the ToC title exists, but doesn't appears in the ToC itself.\\n2. There is no ToC title!\\n\\nI'm obviously searching with the wrong keywords since I'm not finding a solution to this...\\n\\nIn every case, thanks a lot for your help. :)\", \"author_fullname\": \"t2_dyrlf6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Avoid ToC entry in ToC export to pdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"71ml0g0ikf131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1210, \"x\": 918, \"u\": \"https://i.redd.it/71ml0g0ikf131.png\"}, \"m\": \"image/png\", \"id\": \"71ml0g0ikf131\"}}, \"name\": \"t3_buzxzp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559286714.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDear Orgers...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\u0026quot;Contents\\u0026quot;). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/71ml0g0ikf131.png\\\"\\u003Ehttps://i.redd.it/71ml0g0ikf131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I prevent this from happening?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI see here 2 possibilities:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Ethe ToC title exists, but doesn\\u0026#39;t appears in the ToC itself.\\u003C/li\\u003E\\n\\u003Cli\\u003EThere is no ToC title!\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m obviously searching with the wrong keywords since I\\u0026#39;m not finding a solution to this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn every case, thanks a lot for your help. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buzxzp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"edumerco\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559257914.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a `calendar.org` buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\n\\nIs this possible? Where can I start looking at this?\\n\\nThanks!\", \"author_fullname\": \"t2_3tdxdj82\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly agenda view: not show past items from certain buffers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burp9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559242335.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a \\u003Ccode\\u003Ecalendar.org\\u003C/code\\u003E buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this possible? Where can I start looking at this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burp9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mirenbe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559213535.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl9k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl5q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 74, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 74, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559241478.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl5q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burl5q/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1559212678.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1559241501.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl9k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_burl5q\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burl9k/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559212701.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Any way to hide these headers/footers? It's a bit distracting with lots of small code examples.\\n\\n #+begin_src haskell\\n ...\\n #+end_src\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I hide source block header and footer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buopeh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559218136.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny way to hide these headers/footers? It\\u0026#39;s a bit distracting with lots of small code examples.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+begin_src haskell\\n...\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buopeh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559189336.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\n\\nI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\n\\nI'm pretty sure I'm overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\", \"author_fullname\": \"t2_ycu34\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Handling Github Badges in Org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buhsue\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559180889.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m pretty sure I\\u0026#39;m overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buhsue\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hardrived_\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559152089.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I add TODO to list items instead of just headers?\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Add todo to list item?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budm5j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159049.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I add TODO to list items instead of just headers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budm5j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559130249.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello!\\n\\nI'd like to use the ORDERED property but it doesn't seem to be working in the way I'd expect, so I wanted to check that my expectation is correct.\\n\\n * TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO Check contents of disks\\n ** TODO Securely wipe disks\\n ** TODO Take disks to recycling center\\n\\nWith the ORDERED property set, I figured that I wouldn't be able to mark \\\"Securely wipe disks\\\" as DONE before I had completed \\\"Check contents of disks\\\". However I can mark these items as DONE in any order I like.\\n\\nDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Possible confusion over ORDERED property\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu1tby\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559088369.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to use the ORDERED property but it doesn\\u0026#39;t seem to be working in the way I\\u0026#39;d expect, so I wanted to check that my expectation is correct.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO Check contents of disks\\n** TODO Securely wipe disks\\n** TODO Take disks to recycling center\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith the ORDERED property set, I figured that I wouldn\\u0026#39;t be able to mark \\u0026quot;Securely wipe disks\\u0026quot; as DONE before I had completed \\u0026quot;Check contents of disks\\u0026quot;. However I can mark these items as DONE in any order I like.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu1tby\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559059569.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I was wondering how one could make one entry inherit the DEADLINE of the parent. I know about `org-use-property-inheritance` but it doesn't seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\", \"author_fullname\": \"t2_q52rf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inherit DEADLINE from parent\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btzy6m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559078444.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering how one could make one entry inherit the DEADLINE of the parent. I know about \\u003Ccode\\u003Eorg-use-property-inheritance\\u003C/code\\u003E but it doesn\\u0026#39;t seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btzy6m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackjackk0\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1559049644.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi y'all, this is probably a simple question for some of you, but I can't quite figure it out on my own.\\n\\nI'm trying to edit my `org-agenda-prefix-format` for an agenda view, such that:\\n\\n* If the entry has a scheduled or deadline timestamp, show the standard \\\"Deadline:\\\" / \\\"In N d.:\\\" / \\\"Scheduled:\\\" / \\\"Sched. 10 d.:\\\" strings.\\n* Otherwise, show the category\\n\\n**Example**: Agenda view\\n\\n Sunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\nIs there a way to display a conditional prefix like this?\\n\\nThe code I was tinkering with before posting looked like:\\n\\n (defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\\"sched (%s), dead (%s)\\\" is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\\" %-12s%-12t \\\"\\n \\\" %-12:c%-12t \\\")))\\n\\n ; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n (org-agenda-custom-prefix (test/custom-prefix))\\n\\nNot exactly the same as above, but it was a WIP, and the problem was that `is-scheduled` and `is-deadlined` were always both `nil` for some reason, despite the tasks having a scheduled / deadline timestamp.\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btovhk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559007583.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi y\\u0026#39;all, this is probably a simple question for some of you, but I can\\u0026#39;t quite figure it out on my own.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to edit my \\u003Ccode\\u003Eorg-agenda-prefix-format\\u003C/code\\u003E for an agenda view, such that:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf the entry has a scheduled or deadline timestamp, show the standard \\u0026quot;Deadline:\\u0026quot; / \\u0026quot;In N d.:\\u0026quot; / \\u0026quot;Scheduled:\\u0026quot; / \\u0026quot;Sched. 10 d.:\\u0026quot; strings.\\u003C/li\\u003E\\n\\u003Cli\\u003EOtherwise, show the category\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EExample\\u003C/strong\\u003E: Agenda view\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ESunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs there a way to display a conditional prefix like this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code I was tinkering with before posting looked like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\u0026quot;sched (%s), dead (%s)\\u0026quot; is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\u0026quot; %-12s%-12t \\u0026quot;\\n \\u0026quot; %-12:c%-12t \\u0026quot;)))\\n\\n; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n(org-agenda-custom-prefix (test/custom-prefix))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENot exactly the same as above, but it was a WIP, and the problem was that \\u003Ccode\\u003Eis-scheduled\\u003C/code\\u003E and \\u003Ccode\\u003Eis-deadlined\\u003C/code\\u003E were always both \\u003Ccode\\u003Enil\\u003C/code\\u003E for some reason, despite the tasks having a scheduled / deadline timestamp.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btovhk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558978783.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Not exactly sure how to phrase this question, so I'll do my best to explain what I'd like to do and why...\\n\\nI've been writing quite a few projects using literate programming via org-mode. Lately, I've been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\n\\nI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\n\\nThanks!\", \"author_fullname\": \"t2_4hzm8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using org-agenda on individual files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btdd9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558934196.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot exactly sure how to phrase this question, so I\\u0026#39;ll do my best to explain what I\\u0026#39;d like to do and why...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been writing quite a few projects using literate programming via org-mode. Lately, I\\u0026#39;ve been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btdd9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ralphbluecoat\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558905396.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I insert a string into an org file and change its appearance by using `(put-text-property start end 'font-lock-face 'my-face my-string)`, the face assignment doesn't persist after the file is saved and re-opened.\\n\\n\\u0026#x200B;\\n\\nIt also appears that I cannot use `(put-text-property start end 'face 'my-face)` in an org buffer (but it does work when the file is in fundamental mode).\\n\\n\\u0026#x200B;\\n\\nHow can I assign a persistent face to a section of an org buffer?\\n\\n\\u0026#x200B;\\n\\n(Edit: posted before I finished writing, typos.)\", \"author_fullname\": \"t2_3gjjtpnq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Persistent font changes in an org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btasp7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558892947.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558921535.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I insert a string into an org file and change its appearance by using \\u003Ccode\\u003E(put-text-property start end \\u0026#39;font-lock-face \\u0026#39;my-face my-string)\\u003C/code\\u003E, the face assignment doesn\\u0026#39;t persist after the file is saved and re-opened.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt also appears that I cannot use \\u003Ccode\\u003E(put-text-property start end \\u0026#39;face \\u0026#39;my-face)\\u003C/code\\u003E in an org buffer (but it does work when the file is in fundamental mode).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I assign a persistent face to a section of an org buffer?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Edit: posted before I finished writing, typos.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btasp7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itistheblurstoftimes\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558892735.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9f5z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'd like to better show \\\"Today\\\" in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\n\\nFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\n\\nThanks!\\n\\nMy current habit-related settings are:\\n\\n (setq org-habit-show-habits-only-for-today nil)\\n (setq org-habit-graph-column 60)\\n (setq org-habit-following-days 3)\\n\\nAlthough I don't think that they change anything to do with this question.\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9atw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558913913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": true, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d like to better show \\u0026quot;Today\\u0026quot; in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current habit-related settings are:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-habit-show-habits-only-for-today nil)\\n(setq org-habit-graph-column 60)\\n(setq org-habit-following-days 3)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAlthough I don\\u0026#39;t think that they change anything to do with this question.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9atw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 30846, \"created_utc\": 1558885113.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1558914521.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9f5z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bt9atw\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558885721.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Many times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\", \"author_fullname\": \"t2_38v6e72q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Question] Paste with source format\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsnq2u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558768415.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMany times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsnq2u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GracefulToucan\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558739615.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 24, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsgj6t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558730956.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsgj6t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558702156.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"doing kanban in org mode? (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs8w8p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558677597.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs8w8p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs8w8p/doing_kanban_in_org_mode_xpost_remacs/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bs8rpm/doing_kanban_in_org_mode/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558648797.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\n\\nDoes anyone of you have the same set up with a working configuration?\", \"author_fullname\": \"t2_3tjqi9un\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Has anyone set up beorg with nextcloud sucessfully?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs1jef\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558638131.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone of you have the same set up with a working configuration?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs1jef\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CuriousQuasar\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558609331.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_4utg0yv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using the Eisenhower Matrix in Emacs Org-Mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bry1c2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558609281.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"tompurl.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bry1c2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Okesa\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.tompurl.com/2015-12-29-emacs-eisenhower-matrix.html\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558580481.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The following renders with `org-toggle-latex-fragment`:\\n\\n$$\\n2+2 = 4\\n$$\\n\\nbut the following doesn't\\n\\n#+begin_latex\\n2+2 = 4\\n#+end_latex\\n\\nHow do I get the bottom to render as well?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Rendering inside \\\"#+begin_latex ... #+end_latex\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brs51i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558577715.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe following renders with \\u003Ccode\\u003Eorg-toggle-latex-fragment\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E$$\\n2+2 = 4\\n$$\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut the following doesn\\u0026#39;t\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+begin_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E2+2 = 4\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+end_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EHow do I get the bottom to render as well?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brs51i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558548915.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"When I export to pdf from org, the font is a bitmap font.\\n\\nHow can I change the export such that vector fonts will be used?\\n\\nThanks!\", \"author_fullname\": \"t2_q43ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org export to pdf: vector font instead of bitmap font\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brkczh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558528248.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I export to pdf from org, the font is a bitmap font.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I change the export such that vector fonts will be used?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brkczh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HumanBrainMapper\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558499448.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I had posted this some months ago here: https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\n\\nI've updated and added some new features to it!\\n\\nIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\n\\nIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\n\\nThe new features are: It auto generates indexes, has support for tags, header, and footer! \\n\\nRight now the main missing feature is generating the RSS.\\n\\nHere is a working example: https://ivanaf.com/org-export-head/index.html, and the source is here: https://github.com/itf/org-export-head\", \"author_fullname\": \"t2_21clngjz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Single file Blog in org mode - update\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br5iur\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558438826.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI had posted this some months ago here: \\u003Ca href=\\\"https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\\"\\u003Ehttps://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve updated and added some new features to it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe new features are: It auto generates indexes, has support for tags, header, and footer! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now the main missing feature is generating the RSS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is a working example: \\u003Ca href=\\\"https://ivanaf.com/org-export-head/index.html\\\"\\u003Ehttps://ivanaf.com/org-export-head/index.html\\u003C/a\\u003E, and the source is here: \\u003Ca href=\\\"https://github.com/itf/org-export-head\\\"\\u003Ehttps://github.com/itf/org-export-head\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br5iur\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itadeufa\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558410026.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm using spacemacs and am trying to figure out how to use the following package: [here](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el).\\n\\nIt's supposed to add mathematica support to org-babel snippets.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I use ob-mathematica.el?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br2g1m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558420778.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using spacemacs and am trying to figure out how to use the following package: \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s supposed to add mathematica support to org-babel snippets.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br2g1m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558391978.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\n\\nWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\n\\nThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\n\\n2019-05-12 \\nTask A : 3h 20m \\nTask B : 2h 5m\\n\\n2019-05-13 \\nTask A : 2h 10m \\nTask B : 1h 20m\\n\\nI've read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\", \"author_fullname\": \"t2_37uew703\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"View clock table entries by date?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bqu8sp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558379941.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-12\\u003Cbr/\\u003E\\nTask A : 3h 20m\\u003Cbr/\\u003E\\nTask B : 2h 5m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-13\\u003Cbr/\\u003E\\nTask A : 2h 10m\\u003Cbr/\\u003E\\nTask B : 1h 20m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqu8sp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OverthrowDissent\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558351141.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Have some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\n\\nbeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\n\\n\\u0026#x200B;\\n\\nBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\n\\n\\u0026#x200B;\\n\\n(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\n\\nand then format all the returns, into a working log entry I can put notes into along with some screenshots\\n\\n\\u0026#x200B;\\n\\nAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\n\\nAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\n\\n\\u0026#x200B;\\n\\nThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\n\\n\\u0026#x200B;\\n\\nadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\n\\n\\u0026#x200B;\\n\\nYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\", \"author_fullname\": \"t2_nb9r4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode / LISP Mentor or Tutor?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq9kxd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558246612.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand then format all the returns, into a working log entry I can put notes into along with some screenshots\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq9kxd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"psychocoonass\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558217812.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I'm on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\n\\nI have a lot of files in Deft that I would rather access through org-capture.\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to make the capture template selection list window (\\\"Org Select\\\") scrollable so that when you have a large number of capture templates (e.g.\\u003E 26), the display is not truncated?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq8ohl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558241466.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I\\u0026#39;m on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a lot of files in Deft that I would rather access through org-capture.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq8ohl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558212666.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 17, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpquo9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558126152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpquo9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558097352.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I see two packages: \\n\\n* https://github.com/mattduck/org-toggl-py\\n* https://github.com/mmagnus/emacs-toggl\\n\\nBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having `toggl` installed and connect to their service on task start.\\n\\nI want to log my time and send whenever I'm ready _in emacs_ using the name of the item associated with my clock entries with the ability to override/change this via properties. \\n\\norg-toggl-py has some property support, but requires exporting with external command. \\n\\nReally maybe external command is okay but wanted to see what others are using.\\n\\n\\n**Update 1**: Found https://github.com/mbork/org-toggl. Investigating...\\n\\n**Update 2**: Timer on org-toggle cannot be stopped see PR [#6](https://github.com/mbork/org-toggl/pull/6) and [#3](https://github.com/mbork/org-toggl/pull/3) \\u2013which are from 2018. Also **does not** seem to integrate with Org mode as advertised.\\n\\n**Update 3**: Tried [Fuco1's fork](https://github.com/Fuco1/org-toggl) which fixes [#6](https://github.com/mbork/org-toggl/pull/6) but Org mode integration still is not working. Went to org-toggle-py [but couldn't get it to work](https://github.com/mattduck/org-toggl-py/issues/1)\\n\\n\\nSeems like best approach is to call `toggl-start-time-entry`/`toggl-stop-time-entry ` around `org-clock-in`/`org-clock-out` and then write some export function using these. \\n\\nNot sure if it's possible to check if an export is new or requires updating. Will have to investigate Toggl's API.\", \"author_fullname\": \"t2_h8sck\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone Use Org mode With Toggl\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpjh7e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558056916.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558076490.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see two packages: \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py\\\"\\u003Ehttps://github.com/mattduck/org-toggl-py\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mmagnus/emacs-toggl\\\"\\u003Ehttps://github.com/mmagnus/emacs-toggl\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having \\u003Ccode\\u003Etoggl\\u003C/code\\u003E installed and connect to their service on task start.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to log my time and send whenever I\\u0026#39;m ready \\u003Cem\\u003Ein emacs\\u003C/em\\u003E using the name of the item associated with my clock entries with the ability to override/change this via properties. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorg-toggl-py has some property support, but requires exporting with external command. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReally maybe external command is okay but wanted to see what others are using.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 1\\u003C/strong\\u003E: Found \\u003Ca href=\\\"https://github.com/mbork/org-toggl\\\"\\u003Ehttps://github.com/mbork/org-toggl\\u003C/a\\u003E. Investigating...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 2\\u003C/strong\\u003E: Timer on org-toggle cannot be stopped see PR \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E and \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/3\\\"\\u003E#3\\u003C/a\\u003E \\u2013which are from 2018. Also \\u003Cstrong\\u003Edoes not\\u003C/strong\\u003E seem to integrate with Org mode as advertised.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 3\\u003C/strong\\u003E: Tried \\u003Ca href=\\\"https://github.com/Fuco1/org-toggl\\\"\\u003EFuco1\\u0026#39;s fork\\u003C/a\\u003E which fixes \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E but Org mode integration still is not working. Went to org-toggle-py \\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py/issues/1\\\"\\u003Ebut couldn\\u0026#39;t get it to work\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESeems like best approach is to call \\u003Ccode\\u003Etoggl-start-time-entry\\u003C/code\\u003E/\\u003Ccode\\u003Etoggl-stop-time-entry\\u003C/code\\u003E around \\u003Ccode\\u003Eorg-clock-in\\u003C/code\\u003E/\\u003Ccode\\u003Eorg-clock-out\\u003C/code\\u003E and then write some export function using these. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot sure if it\\u0026#39;s possible to check if an export is new or requires updating. Will have to investigate Toggl\\u0026#39;s API.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpjh7e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sshaw_\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"subreddit_subscribers\": 4991, \"created_utc\": 1558047690.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bpjh7e\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["419800"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:23 GMT"], "x-ratelimit-remaining": ["592.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["8"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495022.330236,VS0,VE853"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["578"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "recorded_at": "2019-07-19T00:10:23"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_ceuu7l"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:24 GMT"], "x-ratelimit-remaining": ["591.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["9"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495024.240342,VS0,VE79"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["576"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_ceuu7l"}, "recorded_at": "2019-07-19T00:10:24"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceso4r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4mah1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MateFlasche\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563457892.0, \"send_replies\": true, \"parent_id\": \"t1_eu4m0is\", \"score\": 1, \"author_fullname\": \"t2_s1zqz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Chad Markdown Editor vs Virgin Fancy Pants Editor\", \"link_title\": \"German Anki Collaboration\", \"author_flair_css_class\": null, \"name\": \"t1_eu4mah1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EChad Markdown Editor vs Virgin Fancy Pants Editor\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ceso4r/german_anki_collaboration/eu4mah1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ceso4r/german_anki_collaboration/\", \"report_reasons\": null, \"link_author\": \"MateFlasche\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/ceso4r/german_anki_collaboration/\", \"created\": 1563486692.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceso4r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4m0is\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MateFlasche\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563457687.0, \"send_replies\": true, \"parent_id\": \"t3_ceso4r\", \"score\": 1, \"author_fullname\": \"t2_s1zqz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Anybody tell me why my headers aren't showing up? :/\", \"link_title\": \"German Anki Collaboration\", \"author_flair_css_class\": null, \"name\": \"t1_eu4m0is\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnybody tell me why my headers aren\\u0026#39;t showing up? :/\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ceso4r/german_anki_collaboration/eu4m0is/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ceso4r/german_anki_collaboration/\", \"report_reasons\": null, \"link_author\": \"MateFlasche\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/ceso4r/german_anki_collaboration/\", \"created\": 1563486487.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3ru0k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563423326.0, \"send_replies\": true, \"parent_id\": \"t1_eu37rdo\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Yay!!\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_eu3ru0k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYay!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/eu3ru0k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1563452126.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3rtel\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563423311.0, \"send_replies\": true, \"parent_id\": \"t1_eu37srb\", \"score\": 2, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Np my dude :)\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_eu3rtel\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENp my dude :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/eu3rtel/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1563452111.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu37srb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Ceedubsxx\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563407558.0, \"send_replies\": true, \"parent_id\": \"t1_eu2w8q0\", \"score\": 2, \"author_fullname\": \"t2_3vl0vt7p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Ha ha! I did it. Thanks for your help.\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_eu37srb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHa ha! I did it. Thanks for your help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/eu37srb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1563436358.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu37rdo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Ceedubsxx\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563407530.0, \"send_replies\": true, \"parent_id\": \"t1_eu2w8q0\", \"score\": 2, \"author_fullname\": \"t2_3vl0vt7p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E Oh I'm on my iPad rn so me too haha. You should see it when you hit the '123 the' button and then the '#+=' one. At least, that's what it looks like on Gboard haha\\n\\nLike this? I typed a \\u003E then pasted the text. Then, on a new line, wrote my comments. Fingers crossed.\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_eu37rdo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EOh I\\u0026#39;m on my iPad rn so me too haha. You should see it when you hit the \\u0026#39;123 the\\u0026#39; button and then the \\u0026#39;#+=\\u0026#39; one. At least, that\\u0026#39;s what it looks like on Gboard haha\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ELike this? I typed a \\u0026gt; then pasted the text. Then, on a new line, wrote my comments. Fingers crossed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/eu37rdo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1563436330.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2w8q0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563399548.0, \"send_replies\": true, \"parent_id\": \"t1_eu2t8v1\", \"score\": 2, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Oh I'm on my iPad rn so me too haha. You should see it when you hit the '123 the' button and then the '#+=' one. At least, that's what it looks like on Gboard haha\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_eu2w8q0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh I\\u0026#39;m on my iPad rn so me too haha. You should see it when you hit the \\u0026#39;123 the\\u0026#39; button and then the \\u0026#39;#+=\\u0026#39; one. At least, that\\u0026#39;s what it looks like on Gboard haha\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/eu2w8q0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1563428348.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2t8v1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Ceedubsxx\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563397607.0, \"send_replies\": true, \"parent_id\": \"t1_eu2difh\", \"score\": 1, \"author_fullname\": \"t2_3vl0vt7p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I don\\u2019t see a \\u201c\\u003E\\u201d. (I\\u2019m using the mobile app. Does that make a difference?\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_eu2t8v1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u2019t see a \\u201c\\u0026gt;\\u201d. (I\\u2019m using the mobile app. Does that make a difference?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/eu2t8v1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1563426407.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2difh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563387748.0, \"send_replies\": true, \"parent_id\": \"t1_etxux9h\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Type after the \\u003E\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_eu2difh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EType after the \\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/eu2difh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1563416548.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceakq4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1p5i6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheDanishPencil\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563372088.0, \"send_replies\": true, \"parent_id\": \"t3_ceakq4\", \"score\": 1, \"author_fullname\": \"t2_8yq9q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"* thanks\", \"link_title\": \"Hubby test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1p5i6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cul\\u003E\\n\\u003Cli\\u003Ethanks\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ceakq4/hubby_test/eu1p5i6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ceakq4/hubby_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://scontent.fcbr2-1.fna.fbcdn.net/v/t1.0-9/fr/cp0/e15/q65/67058917_2245817812398875_7826940304769941504_o.jpg?_nc_cat=106\\u0026efg=eyJpIjoidCJ9\\u0026_nc_oc=AQmRP2Ja0lZKLWzJ8u3bRZYiAvk-kLTbd_LcQZR21HvJwqzMyK9mIK7T4pCPa5igsuE\\u0026_nc_ht=scontent.fcbr2-1.fna\\u0026oh=287772c5df66271eefad2f9c4a72960d\\u0026oe=5DB2DA7B\", \"created\": 1563400888.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etxux9h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Ceedubsxx\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563307912.0, \"send_replies\": true, \"parent_id\": \"t1_ens8t9m\", \"score\": 1, \"author_fullname\": \"t2_3vl0vt7p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"How did you do this?\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_etxux9h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow did you do this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/etxux9h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1563336712.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdmh5x\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etuuhfq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563220244.0, \"send_replies\": true, \"parent_id\": \"t3_cdmh5x\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/q5JJCpK.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"Testing this\", \"author_flair_css_class\": null, \"name\": \"t1_etuuhfq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/q5JJCpK.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cdmh5x/testing_this/etuuhfq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cdmh5x/testing_this/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/q5JJCpK.gif\", \"created\": 1563249044.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdm01k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etuqxls\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563218187.0, \"send_replies\": true, \"parent_id\": \"t3_cdm01k\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/q5JJCpK.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_etuqxls\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/q5JJCpK.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cdm01k/test/etuqxls/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cdm01k/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/q5JJCpK.gif\", \"created\": 1563246987.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdaigy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etsns15\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563150557.0, \"send_replies\": true, \"parent_id\": \"t3_cdaigy\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/YJEOa4b.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"wetwtw\", \"author_flair_css_class\": null, \"name\": \"t1_etsns15\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/YJEOa4b.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cdaigy/wetwtw/etsns15/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cdaigy/wetwtw/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/gvFiTBz\", \"created\": 1563179357.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd64b9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etrrqnc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"uberchris\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563127689.0, \"send_replies\": true, \"parent_id\": \"t3_cd64b9\", \"score\": 1, \"author_fullname\": \"t2_5zaki\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I have always made it a habit of writing down maintenance items in a little booklet in the glove box; a habit passed down from my dad. This has always had some limitations, like having to go out to the garage to check if the wife's car needs an oil change. As a programmer with a little free time, I figured I would try to bring the habit into the 21st century.\\n\\n[wrench.cafe](https://wrench.cafe) is a little web app where you can do just that. Once you add your car, you can start recording maintenance on it. While recording a maintenance item, you can set an interval to be reminded when you need to do that job again. You can also upload a receipt in case you need to make a warranty claim. Finally, if and when you decide to sell your car, you can easily share your maintenance records with potential buyers.\\n\\nI know there are several sites and apps out there that do the same thing. I made wrench.cafe so that it would:\\n\\n1. **Be completely free to use as long as it lives.** There is a donate link if you want to help with hosting fees. Also, I might add ads in the future, but it will always stay adblock friendly.\\n\\n2. **Work on computers as well as phones.** \\\"Do you guys not have phones?\\\" Yes but sometimes it's just better on a computer.\\n\\n3. **Do what I want it to do.** Frankly, I want this thing to exist because I want to use it.\\n\\nIt is still very much a work in progress. There is a link at the bottom of the site to send me feedback, which I would really appreciate. Also, I am tracking features and bugs [here](https://dev.azure.com/chris0843/Maintenance%20Tracker/_workitems/recentlyupdated/) if you are interested.\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_etrrqnc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have always made it a habit of writing down maintenance items in a little booklet in the glove box; a habit passed down from my dad. This has always had some limitations, like having to go out to the garage to check if the wife\\u0026#39;s car needs an oil change. As a programmer with a little free time, I figured I would try to bring the habit into the 21st century.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://wrench.cafe\\\"\\u003Ewrench.cafe\\u003C/a\\u003E is a little web app where you can do just that. Once you add your car, you can start recording maintenance on it. While recording a maintenance item, you can set an interval to be reminded when you need to do that job again. You can also upload a receipt in case you need to make a warranty claim. Finally, if and when you decide to sell your car, you can easily share your maintenance records with potential buyers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know there are several sites and apps out there that do the same thing. I made wrench.cafe so that it would:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBe completely free to use as long as it lives.\\u003C/strong\\u003E There is a donate link if you want to help with hosting fees. Also, I might add ads in the future, but it will always stay adblock friendly.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWork on computers as well as phones.\\u003C/strong\\u003E \\u0026quot;Do you guys not have phones?\\u0026quot; Yes but sometimes it\\u0026#39;s just better on a computer.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EDo what I want it to do.\\u003C/strong\\u003E Frankly, I want this thing to exist because I want to use it.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EIt is still very much a work in progress. There is a link at the bottom of the site to send me feedback, which I would really appreciate. Also, I am tracking features and bugs \\u003Ca href=\\\"https://dev.azure.com/chris0843/Maintenance%20Tracker/_workitems/recentlyupdated/\\\"\\u003Ehere\\u003C/a\\u003E if you are interested.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cd64b9/test/etrrqnc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cd64b9/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cd64b9/test/\", \"created\": 1563156489.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccaj3l\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etqq2ei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dymkobierca\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563097260.0, \"send_replies\": true, \"parent_id\": \"t3_ccaj3l\", \"score\": 1, \"author_fullname\": \"t2_hl2lmn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Just testing.\\n\\n\\\\\\u003E!__test comment__\\\\!\\u003C\\n\\n\\u003E!Test comment: \\\\\\u003E!__ Test comment __\\\\!\\u003C!\\u003C\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_etqq2ei\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust testing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026gt;!\\u003Cstrong\\u003Etest comment\\u003C/strong\\u003E!\\u0026lt;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003ETest comment: \\u0026gt;!__ Test comment __\\\\\\u003C/span\\u003E!\\u0026lt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ccaj3l/sdf/etqq2ei/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ccaj3l/sdf/\", \"report_reasons\": null, \"link_author\": \"EggdropBotnet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/ccaj3l/sdf/\", \"created\": 1563126060.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd0wft\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etqo7dg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563094423.0, \"send_replies\": true, \"parent_id\": \"t3_cd0wft\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/QTi978F.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"Hayabusa 2: Asteroid landing animated\", \"author_flair_css_class\": null, \"name\": \"t1_etqo7dg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/QTi978F.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cd0wft/hayabusa_2_asteroid_landing_animated/etqo7dg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cd0wft/hayabusa_2_asteroid_landing_animated/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/gallery/MRuO0rX\", \"created\": 1563123223.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1562936995.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccaj3l\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etlhh3g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"EggdropBotnet\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1562936535.0, \"send_replies\": true, \"parent_id\": \"t3_ccaj3l\", \"score\": 1, \"author_fullname\": \"t2_7slti\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"First off, I agree with everything [here](https://travel.stackexchange.com/questions/33703/in-an-all-way-stop-how-is-the-order-of-arriving-at-the-intersection-defined), but it really doesn't cover my specific question I don't think.\\n\\n**Setting:** 4 way stop w/ stop signs orientated with north/south and east/west roads.\\n\\n\\n**Scenario:**\\nVehicle 1 traveling East has stopped. No one else is there, so they start going through the intersection.\\n\\n __| . | __\\n 1 .\\n --| . |---\\n\\nAlmost immediately after Vehicle 1 stopped and then starting going going, me (Vehicle 2) from the south headed north, and another car (Vehicle 3) from the north headed south arrive at the same time and stop. We (2 \\u0026 3) both wait until the first car is out of the way. Normally if this was it, Vehicles 2 \\u0026 3 would both go at the same time.\\n\\n __| 3 | __\\n . 1--\\u003E\\n --| 2 |---\\n\\n\\nWhile me and other car are waiting for Vehicle 1 to get out of the way, Vehicle 4 coming from east headed west also stops. When the very first car is gone, me and the 2nd car both want to go, BUT the 4th car form the East decides he should be first and start to enter the interection\\n\\n __| 3 | __\\n . 4\\n . 1--\\u003E\\n --| 2 |---\\n\\n\\nThat 4th car is wrong, correct?\\n\\nI understand if I am going north and 4th car going west both get there at the same time, he would have the right of way. But that's not the scenario. 4th car got here while cars 2 and 3 were waiting.\\n\\n4th car is a incorrect, right? Just because cars 2 and 3 had to wait, that doesn't mean the order resets back to treating it as everyone arriving at the same time...and even if it did, I believe car 2, not 4 would have the right of way.\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_etlhh3g\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFirst off, I agree with everything \\u003Ca href=\\\"https://travel.stackexchange.com/questions/33703/in-an-all-way-stop-how-is-the-order-of-arriving-at-the-intersection-defined\\\"\\u003Ehere\\u003C/a\\u003E, but it really doesn\\u0026#39;t cover my specific question I don\\u0026#39;t think.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESetting:\\u003C/strong\\u003E 4 way stop w/ stop signs orientated with north/south and east/west roads.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EScenario:\\u003C/strong\\u003E\\nVehicle 1 traveling East has stopped. No one else is there, so they start going through the intersection.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E__| . | __\\n 1 .\\n--| . |---\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAlmost immediately after Vehicle 1 stopped and then starting going going, me (Vehicle 2) from the south headed north, and another car (Vehicle 3) from the north headed south arrive at the same time and stop. We (2 \\u0026amp; 3) both wait until the first car is out of the way. Normally if this was it, Vehicles 2 \\u0026amp; 3 would both go at the same time.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E__| 3 | __\\n . 1--\\u0026gt;\\n--| 2 |---\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhile me and other car are waiting for Vehicle 1 to get out of the way, Vehicle 4 coming from east headed west also stops. When the very first car is gone, me and the 2nd car both want to go, BUT the 4th car form the East decides he should be first and start to enter the interection\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E__| 3 | __\\n . 4\\n . 1--\\u0026gt;\\n--| 2 |---\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThat 4th car is wrong, correct?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI understand if I am going north and 4th car going west both get there at the same time, he would have the right of way. But that\\u0026#39;s not the scenario. 4th car got here while cars 2 and 3 were waiting.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E4th car is a incorrect, right? Just because cars 2 and 3 had to wait, that doesn\\u0026#39;t mean the order resets back to treating it as everyone arriving at the same time...and even if it did, I believe car 2, not 4 would have the right of way.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ccaj3l/sdf/etlhh3g/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ccaj3l/sdf/\", \"report_reasons\": null, \"link_author\": \"EggdropBotnet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/ccaj3l/sdf/\", \"created\": 1562965335.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cc5yan\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etkqwp3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"blasteratyourside\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562905678.0, \"send_replies\": true, \"parent_id\": \"t3_cc5yan\", \"score\": 1, \"author_fullname\": \"t2_44txkyvx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[**x build1**](https://www.blasteratyourside.com/build/s/henry_bowman/x-build1)\\nby *henry_bowman* via [Blaster at Your Side](https://www.blasteratyourside.com)\\n\\n| part |maker |est price |\\n|---|---|---|\\n| [gray](https://www.blasteratyourside.com/part_by_slugs/manufacturers/magpul/parts/x-22-hunter/) |Magpul |132.95 @ Amazon |\\n| [brn-22 railed w vblock/screws](https://www.blasteratyourside.com/part_by_slugs/manufacturers/brownells/parts/brn-22-railed-w-vblockscrews/) |Brownells |64.99 @ Brownells |\\n| [takedown screw, stainless steel](https://www.blasteratyourside.com/part_by_slugs/manufacturers/power-custom/parts/takedown-screw-stainless-steel/) |Power Custom |6.95 @ MidwayUSA |\\n| [16.25\\u201d Bull Fluted, threaded, Williams sights](https://www.blasteratyourside.com/part_by_slugs/manufacturers/fj-feddersen/parts/1625-bull-fluted-threaded-williams-sights/) |FJ Feddersen |230.00 @ FJ Feddersen |\\n| [Volquartsen Bolt Release, stainless](https://www.blasteratyourside.com/part_by_slugs/manufacturers/volquartsen/parts/volquartsen-bolt-release-stainless/) |Volquartsen |11.19 @ Brownells |\\n| [Ruger BX-25](https://www.blasteratyourside.com/part_by_slugs/manufacturers/ruger/parts/ruger-bx-25/) |Ruger |27.99 @ Brownells |\\n| [Legend Rimfire Case 40\\\", black/tan](https://www.blasteratyourside.com/part_by_slugs/manufacturers/allen-co/parts/legend-rimfire-case-40-blacktan/) |Allen Co |33.78 @ Amazon |\\n| [M-lok QD sling mount](https://www.blasteratyourside.com/part_by_slugs/manufacturers/magpul/parts/m-lok-qd-sling-mount/) |Magpul |14.59 @ Amazon |\\n| [Sling Mount Kit \\u2013 Type 1](https://www.blasteratyourside.com/part_by_slugs/manufacturers/magpul/parts/sling-mount-kit-type-1/) |Magpul |14.95 @ Magpul |\\n| [Sling Mount Kit \\u2013 Type 2](https://www.blasteratyourside.com/part_by_slugs/manufacturers/magpul/parts/sling-mount-kit-type-2/) |Magpul |19.95 @ Magpul |\\n| [Ruger receiver parts kit](https://www.blasteratyourside.com/part_combos/s/ruger-receiver-parts-kit/) |Ruger |114.99 @ Brownells |\", \"link_title\": \"testssss\", \"author_flair_css_class\": null, \"name\": \"t1_etkqwp3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.blasteratyourside.com/build/s/henry_bowman/x-build1\\\"\\u003E\\u003Cstrong\\u003Ex build1\\u003C/strong\\u003E\\u003C/a\\u003E\\nby \\u003Cem\\u003Ehenry_bowman\\u003C/em\\u003E via \\u003Ca href=\\\"https://www.blasteratyourside.com\\\"\\u003EBlaster at Your Side\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003Epart\\u003C/th\\u003E\\n\\u003Cth\\u003Emaker\\u003C/th\\u003E\\n\\u003Cth\\u003Eest price\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"https://www.blasteratyourside.com/part_by_slugs/manufacturers/magpul/parts/x-22-hunter/\\\"\\u003Egray\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd\\u003EMagpul\\u003C/td\\u003E\\n\\u003Ctd\\u003E132.95 @ Amazon\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"https://www.blasteratyourside.com/part_by_slugs/manufacturers/brownells/parts/brn-22-railed-w-vblockscrews/\\\"\\u003Ebrn-22 railed w vblock/screws\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd\\u003EBrownells\\u003C/td\\u003E\\n\\u003Ctd\\u003E64.99 @ Brownells\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"https://www.blasteratyourside.com/part_by_slugs/manufacturers/power-custom/parts/takedown-screw-stainless-steel/\\\"\\u003Etakedown screw, stainless steel\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd\\u003EPower Custom\\u003C/td\\u003E\\n\\u003Ctd\\u003E6.95 @ MidwayUSA\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"https://www.blasteratyourside.com/part_by_slugs/manufacturers/fj-feddersen/parts/1625-bull-fluted-threaded-williams-sights/\\\"\\u003E16.25\\u201d Bull Fluted, threaded, Williams sights\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd\\u003EFJ Feddersen\\u003C/td\\u003E\\n\\u003Ctd\\u003E230.00 @ FJ Feddersen\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"https://www.blasteratyourside.com/part_by_slugs/manufacturers/volquartsen/parts/volquartsen-bolt-release-stainless/\\\"\\u003EVolquartsen Bolt Release, stainless\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd\\u003EVolquartsen\\u003C/td\\u003E\\n\\u003Ctd\\u003E11.19 @ Brownells\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"https://www.blasteratyourside.com/part_by_slugs/manufacturers/ruger/parts/ruger-bx-25/\\\"\\u003ERuger BX-25\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd\\u003ERuger\\u003C/td\\u003E\\n\\u003Ctd\\u003E27.99 @ Brownells\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"https://www.blasteratyourside.com/part_by_slugs/manufacturers/allen-co/parts/legend-rimfire-case-40-blacktan/\\\"\\u003ELegend Rimfire Case 40\\u0026quot;, black/tan\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd\\u003EAllen Co\\u003C/td\\u003E\\n\\u003Ctd\\u003E33.78 @ Amazon\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"https://www.blasteratyourside.com/part_by_slugs/manufacturers/magpul/parts/m-lok-qd-sling-mount/\\\"\\u003EM-lok QD sling mount\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd\\u003EMagpul\\u003C/td\\u003E\\n\\u003Ctd\\u003E14.59 @ Amazon\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"https://www.blasteratyourside.com/part_by_slugs/manufacturers/magpul/parts/sling-mount-kit-type-1/\\\"\\u003ESling Mount Kit \\u2013 Type 1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd\\u003EMagpul\\u003C/td\\u003E\\n\\u003Ctd\\u003E14.95 @ Magpul\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"https://www.blasteratyourside.com/part_by_slugs/manufacturers/magpul/parts/sling-mount-kit-type-2/\\\"\\u003ESling Mount Kit \\u2013 Type 2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd\\u003EMagpul\\u003C/td\\u003E\\n\\u003Ctd\\u003E19.95 @ Magpul\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"https://www.blasteratyourside.com/part_combos/s/ruger-receiver-parts-kit/\\\"\\u003ERuger receiver parts kit\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd\\u003ERuger\\u003C/td\\u003E\\n\\u003Ctd\\u003E114.99 @ Brownells\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cc5yan/testssss/etkqwp3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cc5yan/testssss/\", \"report_reasons\": null, \"link_author\": \"blasteratyourside\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cc5yan/testssss/\", \"created\": 1562934478.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cc3u43\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etk9nfb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"John5788\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562892440.0, \"send_replies\": true, \"parent_id\": \"t3_cc3u43\", \"score\": 1, \"author_fullname\": \"t2_4j40s\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\nMy arguments against this policy:\\n\\n\\n* It wastes energy\\n* [This policy seems like it is meant for high-rise residential and commercial/industrial buildings](https://energycodeace.com/site/custom/public/reference-ace-2016/index.html#!Documents/section1201requirementsforventilation.htm)\\n* Even if it is a policy, it's logical reason for being in place is easily circumvented by disabling the ventilator option in the ecobee equipment settings.\", \"link_title\": \"Teest\", \"author_flair_css_class\": null, \"name\": \"t1_etk9nfb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy arguments against this policy:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt wastes energy\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://energycodeace.com/site/custom/public/reference-ace-2016/index.html#!Documents/section1201requirementsforventilation.htm\\\"\\u003EThis policy seems like it is meant for high-rise residential and commercial/industrial buildings\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEven if it is a policy, it\\u0026#39;s logical reason for being in place is easily circumvented by disabling the ventilator option in the ecobee equipment settings.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cc3u43/teest/etk9nfb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cc3u43/teest/\", \"report_reasons\": null, \"link_author\": \"John5788\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cc3u43/teest/\", \"created\": 1562921240.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cc3u8t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etk9701\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562892115.0, \"send_replies\": true, \"parent_id\": \"t3_cc3u8t\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/QcPJ1aZ.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"MAGPUL FPG\", \"author_flair_css_class\": null, \"name\": \"t1_etk9701\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/QcPJ1aZ.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cc3u8t/magpul_fpg/etk9701/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cc3u8t/magpul_fpg/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/33szl14\", \"created\": 1562920915.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cc3qxl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etk8lqk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vax_monitor\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562891705.0, \"send_replies\": true, \"parent_id\": \"t3_cc3qxl\", \"score\": 1, \"author_fullname\": \"t2_3mjh90gl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"This post provides a link to web.archive.org, which is not a credible web source for vaccine information. The linked\\nwebsite promotes biased and/or unscientific messages, either directly or through submissions to its platform.\\n\\nBased on post info, I found the following related articles from a fact-check site:\\n\\ntitle: ['Did 60 Lab Studies Recently Confirm a Cancer Link to a Vaccine You Had as a Child?']\\n\\nlink: ['https://www.snopes.com/news/2018/07/18/polio-vaccine-cancer-link-studies/']\\n\\ntitle: [\\\"Did the CDC 'Admit' 98 Million Americans Were Given a 'Cancer Virus' via the Polio Shot?\\\"]\\n\\nlink: ['https://www.snopes.com/fact-check/cdc-admits-98-million-got-cancer-polio-vaccine/']\\n\\ntitle: ['Arizona Cardiologist Responds to Critics Regarding Measles and Vaccines']\\n\\nlink: ['https://www.snopes.com/news/2015/02/03/worth-a-shot/']\\n\\npost generated by vax_monitor bot v0.02\", \"link_title\": \"polio vaccine and cancer\", \"author_flair_css_class\": null, \"name\": \"t1_etk8lqk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis post provides a link to web.archive.org, which is not a credible web source for vaccine information. The linked\\nwebsite promotes biased and/or unscientific messages, either directly or through submissions to its platform.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBased on post info, I found the following related articles from a fact-check site:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etitle: [\\u0026#39;Did 60 Lab Studies Recently Confirm a Cancer Link to a Vaccine You Had as a Child?\\u0026#39;]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Elink: [\\u0026#39;\\u003Ca href=\\\"https://www.snopes.com/news/2018/07/18/polio-vaccine-cancer-link-studies/\\u0026#x27;\\\"\\u003Ehttps://www.snopes.com/news/2018/07/18/polio-vaccine-cancer-link-studies/\\u0026#39;\\u003C/a\\u003E]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etitle: [\\u0026quot;Did the CDC \\u0026#39;Admit\\u0026#39; 98 Million Americans Were Given a \\u0026#39;Cancer Virus\\u0026#39; via the Polio Shot?\\u0026quot;]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Elink: [\\u0026#39;\\u003Ca href=\\\"https://www.snopes.com/fact-check/cdc-admits-98-million-got-cancer-polio-vaccine/\\u0026#x27;\\\"\\u003Ehttps://www.snopes.com/fact-check/cdc-admits-98-million-got-cancer-polio-vaccine/\\u0026#39;\\u003C/a\\u003E]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etitle: [\\u0026#39;Arizona Cardiologist Responds to Critics Regarding Measles and Vaccines\\u0026#39;]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Elink: [\\u0026#39;\\u003Ca href=\\\"https://www.snopes.com/news/2015/02/03/worth-a-shot/\\u0026#x27;\\\"\\u003Ehttps://www.snopes.com/news/2015/02/03/worth-a-shot/\\u0026#39;\\u003C/a\\u003E]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Epost generated by vax_monitor bot v0.02\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cc3qxl/polio_vaccine_and_cancer/etk8lqk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cc3qxl/polio_vaccine_and_cancer/\", \"report_reasons\": null, \"link_author\": \"vax_monitor\", \"author_flair_text\": null, \"link_url\": \"https://web.archive.org/web/20120508130224/http://www.cdc.gov/vaccinesafety/updates/archive/polio_and_cancer_factsheet.htm\", \"created\": 1562920505.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cc3mn4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etk7w4n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vax_monitor\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562891200.0, \"send_replies\": true, \"parent_id\": \"t3_cc3mn4\", \"score\": 1, \"author_fullname\": \"t2_3mjh90gl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"This post provides a link to web.archive.org, which is not a credible web source for vaccine information. The linked\\nwebsite promotes biased and/or unscientific messages, either directly or through submissions to its platform.\\n\\nBased on post info, I found the following related articles from a fact-check site:\\n\\ntitle: ['Did 60 Lab Studies Recently Confirm a Cancer Link to a Vaccine You Had as a Child?']\\nlink: ['https://www.snopes.com/news/2018/07/18/polio-vaccine-cancer-link-studies/']\\ntitle: [\\\"Did the CDC 'Admit' 98 Million Americans Were Given a 'Cancer Virus' via the Polio Shot?\\\"]\\nlink: ['https://www.snopes.com/fact-check/cdc-admits-98-million-got-cancer-polio-vaccine/']\\ntitle: ['Arizona Cardiologist Responds to Critics Regarding Measles and Vaccines']\\nlink: ['https://www.snopes.com/news/2015/02/03/worth-a-shot/']\\npost generated by vax_monitor bot v0.02. Under current iteration, will not reply to /u/ comments\", \"link_title\": \"Polio vaccine and cancer\", \"author_flair_css_class\": null, \"name\": \"t1_etk7w4n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis post provides a link to web.archive.org, which is not a credible web source for vaccine information. The linked\\nwebsite promotes biased and/or unscientific messages, either directly or through submissions to its platform.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBased on post info, I found the following related articles from a fact-check site:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etitle: [\\u0026#39;Did 60 Lab Studies Recently Confirm a Cancer Link to a Vaccine You Had as a Child?\\u0026#39;]\\nlink: [\\u0026#39;\\u003Ca href=\\\"https://www.snopes.com/news/2018/07/18/polio-vaccine-cancer-link-studies/\\u0026#x27;\\\"\\u003Ehttps://www.snopes.com/news/2018/07/18/polio-vaccine-cancer-link-studies/\\u0026#39;\\u003C/a\\u003E]\\ntitle: [\\u0026quot;Did the CDC \\u0026#39;Admit\\u0026#39; 98 Million Americans Were Given a \\u0026#39;Cancer Virus\\u0026#39; via the Polio Shot?\\u0026quot;]\\nlink: [\\u0026#39;\\u003Ca href=\\\"https://www.snopes.com/fact-check/cdc-admits-98-million-got-cancer-polio-vaccine/\\u0026#x27;\\\"\\u003Ehttps://www.snopes.com/fact-check/cdc-admits-98-million-got-cancer-polio-vaccine/\\u0026#39;\\u003C/a\\u003E]\\ntitle: [\\u0026#39;Arizona Cardiologist Responds to Critics Regarding Measles and Vaccines\\u0026#39;]\\nlink: [\\u0026#39;\\u003Ca href=\\\"https://www.snopes.com/news/2015/02/03/worth-a-shot/\\u0026#x27;\\\"\\u003Ehttps://www.snopes.com/news/2015/02/03/worth-a-shot/\\u0026#39;\\u003C/a\\u003E]\\npost generated by vax_monitor bot v0.02. Under current iteration, will not reply to /u/ comments\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cc3mn4/polio_vaccine_and_cancer/etk7w4n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cc3mn4/polio_vaccine_and_cancer/\", \"report_reasons\": null, \"link_author\": \"vax_monitor\", \"author_flair_text\": null, \"link_url\": \"https://web.archive.org/web/20120508130224/http://www.cdc.gov/vaccinesafety/updates/archive/polio_and_cancer_factsheet.htm\", \"created\": 1562920000.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cbxf7l\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etj7z94\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Flying-Croissant\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562867991.0, \"send_replies\": true, \"parent_id\": \"t3_cbxf7l\", \"score\": 1, \"author_fullname\": \"t2_1d8oz7i8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Deadbeef\", \"link_title\": \"Foobar\", \"author_flair_css_class\": null, \"name\": \"t1_etj7z94\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDeadbeef\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cbxf7l/foobar/etj7z94/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cbxf7l/foobar/\", \"report_reasons\": null, \"link_author\": \"YesWayGames\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cbxf7l/foobar/\", \"created\": 1562896791.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cbmhy2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"etgkh3l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Riku-Sulame\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562792967.0, \"send_replies\": true, \"parent_id\": \"t3_cbmhy2\", \"score\": 1, \"author_fullname\": \"t2_29nc4el7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n\\\\_underscore\\\\_\\n\\n\\\\*star\\\\*\\n\\n\\\\*\\\\*doublestar\\\\*\\\\*\", \"link_title\": \"aaaa\", \"author_flair_css_class\": null, \"name\": \"t1_etgkh3l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E_underscore_\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*star*\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**doublestar**\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cbmhy2/aaaa/etgkh3l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cbmhy2/aaaa/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cbmhy2/aaaa/\", \"created\": 1562821767.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cb1x1u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eteukgp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Nuclearstomp\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1562747501.0, \"send_replies\": true, \"parent_id\": \"t1_eten43f\", \"score\": 1, \"author_fullname\": \"t2_bnsomfy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"That's the first thing I thought of when I looked at that so I'm glad someone in the comments is on the same wavelength as me.\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eteukgp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s the first thing I thought of when I looked at that so I\\u0026#39;m glad someone in the comments is on the same wavelength as me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cb1x1u/test/eteukgp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cb1x1u/test/\", \"report_reasons\": null, \"link_author\": \"themightyheptagon\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cb1x1u/test/\", \"created\": 1562776301.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cb1x1u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eten43f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DrKaos7\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1562738528.0, \"send_replies\": true, \"parent_id\": \"t3_cb1x1u\", \"score\": 1, \"author_fullname\": \"t2_18g8yrbs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"This looks like good progress. Though would the title \\\"War of the Monsters\\\" be misleading in that it is the same title for the old Playstation Game?\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eten43f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis looks like good progress. Though would the title \\u0026quot;War of the Monsters\\u0026quot; be misleading in that it is the same title for the old Playstation Game?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cb1x1u/test/eten43f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cb1x1u/test/\", \"report_reasons\": null, \"link_author\": \"themightyheptagon\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cb1x1u/test/\", \"created\": 1562767328.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cafr9x\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"et8gfdx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"K31FF3R2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562555752.0, \"send_replies\": true, \"parent_id\": \"t3_cafr9x\", \"score\": 1, \"author_fullname\": \"t2_eif7h18\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Previous](https://www.reddit.com/r/EANHLfranchise/comments/ca9ycn/the_day_has_finally_come_gary_bettman_and_the_nhl/?utm_source=share\\u0026utm_medium=ios_app)\\n\\n##OFF SEASON\\n\\n**Expansion Draft**\\n\\nForwards: \\n\\nM. Johansson A. Killorn B. Connolly \\nR. Nash J. Armia M. Raffl B. Sutter\\nM. Gaborik D. Grant O. Sundqvist \\nM. Dano J. Dea M. Puempel L. Ferraro\\n\\n\\u0026nbsp;\\n\\nDefense:\\n\\nM. Vlasic R. Ellis A. Larsson J. Schultz T.Hickey J. Demers I. Cole M. Stone D.Forbort T. Van Riemsdyk M. Mueller\\nS. Koekkoek M. Marincin\\n\\n\\u0026nbsp;\\n\\nGoalies:\\n\\nA. Khudobin L. Ullmark D. Tokarski \\n\\n\\u0026nbsp;\\n\\n**2018 ENTRY DRAFT**\\n\\n**Saskatoon Silverblades** trade Adam Larsson, 2019 1st round and 2018 2nd round (35th) to **Philadelphia Flyers** for 2018 1st round (15th), 2018 1st round (20th), 2018 2nd round (52nd), 2019 2nd round and 2019 4th round\\n\\n**Saskaton Silverblades** trade Ian Cole to **Chicago Blackhawks** for Aton Forsberg,Dennis Gilbert, 2019 1st round and 2019 4th round\\n\\n**Saskatoon Silverblades** trade Jason Demers to **Vancouver Canucks** for 2018 2nd round (39)\\n\\n[Saskatoon 2018 Draft Results](https://docs.google.com/document/d/1N1dnvvuWzvZ-qdJXPPz8Gh3JeXBgsxTb6O7eI7x5XxA)\\n\\nRW Gage Quincey signs ELC\\n\\n\\u0026nbsp;\\n\\n\\u0026nbsp;\\n\\n##Regular Season\\n\\n\\u0026nbsp;\\n\\n**Opening Night Lineups**\\n\\nJohansson Dea Connolly\\n\\nGaborik Nash Quincey\\n\\nRaffl Sutter Armia\\n\\nSundqvist Grant Dano\\n\\n\\u0026nbsp;\\n\\nVlasic Ellis \\n\\nHickey Schultz\\n\\nForbort Van Riemsdyk\\n\\n\\u0026nbsp;\\n\\nKhudobin Ullmark\\n\\nScratches: Stone Mueller Koekkoek\\n\\n\\u0026nbsp;\\n\\nThe team struggled early on, forcing management to promote Riley Nash to the first line in favor of the 24 year old Dea. Rookie RW Gage Quincey showed promise as he piled up the points scoring goals in bunches.\\n\\n\\u0026nbsp;\\n\\n**Trade Deadline**\\n\\n**Saskatoon Silverblades** trade Mike Stone to **Edmonton Oilers** for 2019 3rd round(BUF)and 2019 6th round\\n\\n**Saskatoon Silverblades** trade Derek Forbort and 2019 4th to **Florida Panthers** for 2019 2nd round(FLA)\\n\\n**Saskatoon Silverblades** trade Mirco Mueller and 2019 5th to **Minnesota Wild** for 2019 2nd round \\n\\n\\u0026nbsp;\\n\\nAs the season unfolded it became clear the Silverblades would not be making the playoffs in their first year as a franchise. Younger players are getting heightened roles. The team parted ways with a handful of defenders and Slater Koekkoek seems to be have solidified his role in the lineup. Gage Quincey continued scoring at impressive rates and was promoted to the first line. \\n\\n\\u0026nbsp;\\n\\n**Regular Season Results**\\n\\n36-40-6\\n\\nPP: 17.9% PK: 79.2\\n\\n[Player Stats](https://docs.google.com/document/d/1GBrNZCvTQHjaxevKWjVmG0a7onGqVvqh2GB2MYURqYY)\", \"link_title\": \"Sim\", \"author_flair_css_class\": null, \"name\": \"t1_et8gfdx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/EANHLfranchise/comments/ca9ycn/the_day_has_finally_come_gary_bettman_and_the_nhl/?utm_source=share\\u0026amp;utm_medium=ios_app\\\"\\u003EPrevious\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EOFF SEASON\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EExpansion Draft\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EForwards: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EM. Johansson A. Killorn B. Connolly \\nR. Nash J. Armia M. Raffl B. Sutter\\nM. Gaborik D. Grant O. Sundqvist \\nM. Dano J. Dea M. Puempel L. Ferraro\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDefense:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EM. Vlasic R. Ellis A. Larsson J. Schultz T.Hickey J. Demers I. Cole M. Stone D.Forbort T. Van Riemsdyk M. Mueller\\nS. Koekkoek M. Marincin\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoalies:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA. Khudobin L. Ullmark D. Tokarski \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E2018 ENTRY DRAFT\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESaskatoon Silverblades\\u003C/strong\\u003E trade Adam Larsson, 2019 1st round and 2018 2nd round (35th) to \\u003Cstrong\\u003EPhiladelphia Flyers\\u003C/strong\\u003E for 2018 1st round (15th), 2018 1st round (20th), 2018 2nd round (52nd), 2019 2nd round and 2019 4th round\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESaskaton Silverblades\\u003C/strong\\u003E trade Ian Cole to \\u003Cstrong\\u003EChicago Blackhawks\\u003C/strong\\u003E for Aton Forsberg,Dennis Gilbert, 2019 1st round and 2019 4th round\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESaskatoon Silverblades\\u003C/strong\\u003E trade Jason Demers to \\u003Cstrong\\u003EVancouver Canucks\\u003C/strong\\u003E for 2018 2nd round (39)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://docs.google.com/document/d/1N1dnvvuWzvZ-qdJXPPz8Gh3JeXBgsxTb6O7eI7x5XxA\\\"\\u003ESaskatoon 2018 Draft Results\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERW Gage Quincey signs ELC\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003ERegular Season\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EOpening Night Lineups\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJohansson Dea Connolly\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGaborik Nash Quincey\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERaffl Sutter Armia\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESundqvist Grant Dano\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVlasic Ellis \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHickey Schultz\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EForbort Van Riemsdyk\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKhudobin Ullmark\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScratches: Stone Mueller Koekkoek\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe team struggled early on, forcing management to promote Riley Nash to the first line in favor of the 24 year old Dea. Rookie RW Gage Quincey showed promise as he piled up the points scoring goals in bunches.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETrade Deadline\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESaskatoon Silverblades\\u003C/strong\\u003E trade Mike Stone to \\u003Cstrong\\u003EEdmonton Oilers\\u003C/strong\\u003E for 2019 3rd round(BUF)and 2019 6th round\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESaskatoon Silverblades\\u003C/strong\\u003E trade Derek Forbort and 2019 4th to \\u003Cstrong\\u003EFlorida Panthers\\u003C/strong\\u003E for 2019 2nd round(FLA)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESaskatoon Silverblades\\u003C/strong\\u003E trade Mirco Mueller and 2019 5th to \\u003Cstrong\\u003EMinnesota Wild\\u003C/strong\\u003E for 2019 2nd round \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the season unfolded it became clear the Silverblades would not be making the playoffs in their first year as a franchise. Younger players are getting heightened roles. The team parted ways with a handful of defenders and Slater Koekkoek seems to be have solidified his role in the lineup. Gage Quincey continued scoring at impressive rates and was promoted to the first line. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERegular Season Results\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E36-40-6\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPP: 17.9% PK: 79.2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://docs.google.com/document/d/1GBrNZCvTQHjaxevKWjVmG0a7onGqVvqh2GB2MYURqYY\\\"\\u003EPlayer Stats\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cafr9x/sim/et8gfdx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cafr9x/sim/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cafr9x/sim/\", \"created\": 1562584552.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cadisv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"et7z5oz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"K31FF3R2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562542068.0, \"send_replies\": true, \"parent_id\": \"t3_cadisv\", \"score\": 1, \"author_fullname\": \"t2_eif7h18\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#OFF SEASON\\n\\n\\u0026nbsp;\\n\\n\\u0026nbsp;\\n\\n**Expansion Draft**\\n\\n\\u0026nbsp;\\n\\nForwards: \\n\\nM. Johansson A. Killorn B. Connolly \\nR. Nash J. Armia M. Raffl B. Sutter\\nM. Gaborik D. Grant O. Sundqvist \\nM. Dano J. Dea M. Puempel L. Ferraro\\n\\n\\u0026nbsp;\\n\\nDefense:\\n\\nM. Vlasic R. Ellis A. Larsson J. Schultz T.Hickey J. Demers I. Cole M. Stone D.Forbort T. Van Riemsdyk M. Mueller\\nS. Koekkoek M. Marincin\\n\\n\\u0026nbsp;\\n\\nGoalies:\\n\\nA. Khudobin L. Ullmark D. Tokarski\", \"link_title\": \"NA\", \"author_flair_css_class\": null, \"name\": \"t1_et7z5oz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EOFF SEASON\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EExpansion Draft\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EForwards: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EM. Johansson A. Killorn B. Connolly \\nR. Nash J. Armia M. Raffl B. Sutter\\nM. Gaborik D. Grant O. Sundqvist \\nM. Dano J. Dea M. Puempel L. Ferraro\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDefense:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EM. Vlasic R. Ellis A. Larsson J. Schultz T.Hickey J. Demers I. Cole M. Stone D.Forbort T. Van Riemsdyk M. Mueller\\nS. Koekkoek M. Marincin\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoalies:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA. Khudobin L. Ullmark D. Tokarski\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cadisv/na/et7z5oz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cadisv/na/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cadisv/na/\", \"created\": 1562570868.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ca01lf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"et5hqwr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"W-eye\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562474522.0, \"send_replies\": true, \"parent_id\": \"t3_ca01lf\", \"score\": 2, \"author_fullname\": \"t2_1v6f2bm3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I love this sub just for being able to see what sorts of things people are posting\", \"link_title\": \"Yeet - Yeet - Yeet\", \"author_flair_css_class\": null, \"name\": \"t1_et5hqwr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love this sub just for being able to see what sorts of things people are posting\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ca01lf/yeet_yeet_yeet/et5hqwr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ca01lf/yeet_yeet_yeet/\", \"report_reasons\": null, \"link_author\": \"terrible_fate_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/ca01lf/yeet_yeet_yeet/\", \"created\": 1562503322.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c9w2ak\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"et3hknd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jggiuliani\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562433591.0, \"send_replies\": true, \"parent_id\": \"t3_c9w2ak\", \"score\": 1, \"author_fullname\": \"t2_3jl7ggng\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"well that didnt work lol\", \"link_title\": \"ahfdasfasdf\", \"author_flair_css_class\": null, \"name\": \"t1_et3hknd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewell that didnt work lol\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c9w2ak/ahfdasfasdf/et3hknd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c9w2ak/ahfdasfasdf/\", \"report_reasons\": null, \"link_author\": \"jggiuliani\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c9w2ak/ahfdasfasdf/\", \"created\": 1562462391.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c9qkhc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"et1cy3i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562395387.0, \"send_replies\": true, \"parent_id\": \"t3_c9qkhc\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/0plPWRS.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"Minecraft Lego Moc\", \"author_flair_css_class\": null, \"name\": \"t1_et1cy3i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/0plPWRS.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c9qkhc/minecraft_lego_moc/et1cy3i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c9qkhc/minecraft_lego_moc/\", \"report_reasons\": null, \"link_author\": \"squidmittens\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/gallery/I8qJuEC\", \"created\": 1562424187.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c9j0q1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esytsbh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"throwaway9622842\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562349438.0, \"send_replies\": true, \"parent_id\": \"t3_c9j0q1\", \"score\": 1, \"author_fullname\": \"t2_4330tp6o\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_esytsbh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c9j0q1/test/esytsbh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c9j0q1/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c9j0q1/test/\", \"created\": 1562378238.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c9gem3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esxw7f8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zgillet\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562336008.0, \"send_replies\": true, \"parent_id\": \"t3_c9gem3\", \"score\": 1, \"author_fullname\": \"t2_pzmrj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"ah that's how that works\", \"link_title\": \"test pcpartpicker\", \"author_flair_css_class\": null, \"name\": \"t1_esxw7f8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eah that\\u0026#39;s how that works\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c9gem3/test_pcpartpicker/esxw7f8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c9gem3/test_pcpartpicker/\", \"report_reasons\": null, \"link_author\": \"zgillet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c9gem3/test_pcpartpicker/\", \"created\": 1562364808.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_apqu8o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esuuzhf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"El_Rocky_Raccoon\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1562289396.0, \"send_replies\": true, \"parent_id\": \"t1_est7elb\", \"score\": 1, \"author_fullname\": \"t2_17di1p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"This link to Icy-Veins sums what they discussed, which has the link to the threads regarding Tassadar.\\nhttps://www.icy-veins.com/forums/topic/44326-upcoming-tassadar-rework-details/\", \"link_title\": \"Tassadar rework concept\", \"author_flair_css_class\": null, \"name\": \"t1_esuuzhf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis link to Icy-Veins sums what they discussed, which has the link to the threads regarding Tassadar.\\n\\u003Ca href=\\\"https://www.icy-veins.com/forums/topic/44326-upcoming-tassadar-rework-details/\\\"\\u003Ehttps://www.icy-veins.com/forums/topic/44326-upcoming-tassadar-rework-details/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/apqu8o/tassadar_rework_concept/esuuzhf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/apqu8o/tassadar_rework_concept/\", \"report_reasons\": null, \"link_author\": \"Ultrajante\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/apqu8o/tassadar_rework_concept/\", \"created\": 1562318196.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_apqu8o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"est7elb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Ultrajante\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1562263223.0, \"send_replies\": true, \"parent_id\": \"t1_est6hgg\", \"score\": 1, \"author_fullname\": \"t2_16j4h8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\ud83e\\udd26\\u200d\\u2642\\ufe0f\\ud83e\\udd26\\u200d\\u2642\\ufe0f\\ud83e\\udd26\\u200d\\u2642\\ufe0f\\ud83e\\udd26\\u200d\\u2642\\ufe0f\\ud83e\\udd26\\u200d\\u2642\\ufe0f can\\u2019t believe I just linked to the post preview version. Jesus I\\u2019m dumb\\n\\nAnd on mobile. Could u pls help me finding this exact same post on the actual heroes sub?? \\ud83d\\ude29 I hate myself rn\", \"link_title\": \"Tassadar rework concept\", \"author_flair_css_class\": null, \"name\": \"t1_est7elb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\ud83e\\udd26\\u200d\\u2642\\ufe0f\\ud83e\\udd26\\u200d\\u2642\\ufe0f\\ud83e\\udd26\\u200d\\u2642\\ufe0f\\ud83e\\udd26\\u200d\\u2642\\ufe0f\\ud83e\\udd26\\u200d\\u2642\\ufe0f can\\u2019t believe I just linked to the post preview version. Jesus I\\u2019m dumb\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd on mobile. Could u pls help me finding this exact same post on the actual heroes sub?? \\ud83d\\ude29 I hate myself rn\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/apqu8o/tassadar_rework_concept/est7elb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/apqu8o/tassadar_rework_concept/\", \"report_reasons\": null, \"link_author\": \"Ultrajante\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/apqu8o/tassadar_rework_concept/\", \"created\": 1562292023.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_apqu8o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"est6hgg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"El_Rocky_Raccoon\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1562262876.0, \"send_replies\": true, \"parent_id\": \"t3_apqu8o\", \"score\": 1, \"author_fullname\": \"t2_17di1p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"This is actually pretty darn good. With Tassadar getting an upcoming rework, I wonder if Blizzard will tamper with some ideas of this kind. They're already making Oracle and Dimensional Shift as Talent and adding Force Wall as baseline.\", \"link_title\": \"Tassadar rework concept\", \"author_flair_css_class\": null, \"name\": \"t1_est6hgg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is actually pretty darn good. With Tassadar getting an upcoming rework, I wonder if Blizzard will tamper with some ideas of this kind. They\\u0026#39;re already making Oracle and Dimensional Shift as Talent and adding Force Wall as baseline.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/apqu8o/tassadar_rework_concept/est6hgg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/apqu8o/tassadar_rework_concept/\", \"report_reasons\": null, \"link_author\": \"Ultrajante\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/apqu8o/tassadar_rework_concept/\", \"created\": 1562291676.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c8zn1p\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esrgwiv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LimbRetrieval-Bot\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1562225038.0, \"send_replies\": true, \"parent_id\": \"t1_esrgwes\", \"score\": 1, \"author_fullname\": \"t2_siwe358\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"You dropped this \\\\ \\n *** \\n^^\\u0026#32;To\\u0026#32;prevent\\u0026#32;anymore\\u0026#32;lost\\u0026#32;limbs\\u0026#32;throughout\\u0026#32;Reddit,\\u0026#32;correctly\\u0026#32;escape\\u0026#32;the\\u0026#32;arms\\u0026#32;and\\u0026#32;shoulders\\u0026#32;by\\u0026#32;typing\\u0026#32;the\\u0026#32;shrug\\u0026#32;as\\u0026#32;`\\u00af\\\\\\\\\\\\_(\\u30c4)_/\\u00af`\\u0026#32;or\\u0026#32;`\\u00af\\\\\\\\\\\\_(\\u30c4)\\\\_/\\u00af`\\n\\n [^^Click\\u0026#32;here\\u0026#32;to\\u0026#32;see\\u0026#32;why\\u0026#32;this\\u0026#32;is\\u0026#32;necessary](https://np.reddit.com/r/OutOfTheLoop/comments/3fbrg3/is_there_a_reason_why_the_arm_is_always_missing/ctn5gbf/)\", \"link_title\": \"\\u00af\\\\\\\\_(\\u30c4)_/\\u00af\", \"author_flair_css_class\": null, \"name\": \"t1_esrgwiv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou dropped this \\\\ \\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u0026#32;To\\u0026#32;prevent\\u0026#32;anymore\\u0026#32;lost\\u0026#32;limbs\\u0026#32;throughout\\u0026#32;Reddit,\\u0026#32;correctly\\u0026#32;escape\\u0026#32;the\\u0026#32;arms\\u0026#32;and\\u0026#32;shoulders\\u0026#32;by\\u0026#32;typing\\u0026#32;the\\u0026#32;shrug\\u0026#32;as\\u0026#32;\\u003Ccode\\u003E\\u00af\\\\\\\\\\\\_(\\u30c4)_/\\u00af\\u003C/code\\u003E\\u0026#32;or\\u0026#32;\\u003Ccode\\u003E\\u00af\\\\\\\\\\\\_(\\u30c4)\\\\_/\\u00af\\u003C/code\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://np.reddit.com/r/OutOfTheLoop/comments/3fbrg3/is_there_a_reason_why_the_arm_is_always_missing/ctn5gbf/\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003EClick\\u0026#32;here\\u0026#32;to\\u0026#32;see\\u0026#32;why\\u0026#32;this\\u0026#32;is\\u0026#32;necessary\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c8zn1p/\\u30c4/esrgwiv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c8zn1p/\\u30c4/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c8zn1p/\\u30c4/\", \"created\": 1562253838.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c8zn1p\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esrgwes\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mark000\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1562225036.0, \"send_replies\": true, \"parent_id\": \"t3_c8zn1p\", \"score\": 1, \"author_fullname\": \"t2_35n84\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u00af\\\\_(\\u30c4)_/\\u00af\", \"link_title\": \"\\u00af\\\\\\\\_(\\u30c4)_/\\u00af\", \"author_flair_css_class\": null, \"name\": \"t1_esrgwes\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u00af_(\\u30c4)_/\\u00af\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c8zn1p/\\u30c4/esrgwes/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c8zn1p/\\u30c4/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c8zn1p/\\u30c4/\", \"created\": 1562253836.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c8zn1p\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esrgq28\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mark000\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1562224903.0, \"send_replies\": true, \"parent_id\": \"t3_c8zn1p\", \"score\": 1, \"author_fullname\": \"t2_35n84\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u00af\\\\\\\\\\\\_(\\u30c4)_/\\u00af\", \"link_title\": \"\\u00af\\\\\\\\_(\\u30c4)_/\\u00af\", \"author_flair_css_class\": null, \"name\": \"t1_esrgq28\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u00af\\\\_(\\u30c4)_/\\u00af\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c8zn1p/\\u30c4/esrgq28/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c8zn1p/\\u30c4/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c8zn1p/\\u30c4/\", \"created\": 1562253703.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c8v2t8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esq4hgb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"6_lasers\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562195380.0, \"send_replies\": true, \"parent_id\": \"t3_c8v2t8\", \"score\": 1, \"author_fullname\": \"t2_p4niz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Removeddit](https://www.removeddit.com/r/PostPreview/comments/c8v2t8/removeddit_self/)\", \"link_title\": \"removeddit self\", \"author_flair_css_class\": null, \"name\": \"t1_esq4hgb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.removeddit.com/r/PostPreview/comments/c8v2t8/removeddit_self/\\\"\\u003ERemoveddit\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c8v2t8/removeddit_self/esq4hgb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c8v2t8/removeddit_self/\", \"report_reasons\": null, \"link_author\": \"6_lasers\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c8v2t8/removeddit_self/\", \"created\": 1562224180.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c8qprm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esp3thg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"V-kekEnthusiast\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562178493.0, \"send_replies\": true, \"parent_id\": \"t3_c8qprm\", \"score\": 1, \"author_fullname\": \"t2_4izkmwp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"~~test comment~~\", \"link_title\": \"rff\", \"author_flair_css_class\": null, \"name\": \"t1_esp3thg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cdel\\u003Etest comment\\u003C/del\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c8qprm/rff/esp3thg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c8qprm/rff/\", \"report_reasons\": null, \"link_author\": \"lezardvalethvp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c8qprm/rff/\", \"created\": 1562207293.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c8qgsa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esoqy89\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562172766.0, \"send_replies\": true, \"parent_id\": \"t3_c8qgsa\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/9G1evmb.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"Bee Dive!\", \"author_flair_css_class\": null, \"name\": \"t1_esoqy89\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/9G1evmb.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c8qgsa/bee_dive/esoqy89/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c8qgsa/bee_dive/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/9G1evmb.gif\", \"created\": 1562201566.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c7x730\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esi0og1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1562004590.0, \"send_replies\": true, \"parent_id\": \"t3_c7x730\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/JoccnRg.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"EMP Storm incoming... All systems offline\", \"author_flair_css_class\": null, \"name\": \"t1_esi0og1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/JoccnRg.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c7x730/emp_storm_incoming_all_systems_offline/esi0og1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c7x730/emp_storm_incoming_all_systems_offline/\", \"report_reasons\": null, \"link_author\": \"imPaprik\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/gallery/H4Xw9pl\", \"created\": 1562033390.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c7jxb4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esg6oz0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"agree-with-you\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1561944586.0, \"send_replies\": true, \"parent_id\": \"t1_esg6oux\", \"score\": 1, \"author_fullname\": \"t2_sgypdwq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"No you both\", \"link_title\": \"This is a test post\", \"author_flair_css_class\": null, \"name\": \"t1_esg6oz0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo you both\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c7jxb4/this_is_a_test_post/esg6oz0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c7jxb4/this_is_a_test_post/\", \"report_reasons\": null, \"link_author\": \"jfish3000\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c7jxb4/this_is_a_test_post/\", \"created\": 1561973386.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c7jxb4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esg6oux\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SilenceoftheSamz\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1561944584.0, \"send_replies\": true, \"parent_id\": \"t3_c7jxb4\", \"score\": 1, \"author_fullname\": \"t2_espuh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"No u\", \"link_title\": \"This is a test post\", \"author_flair_css_class\": null, \"name\": \"t1_esg6oux\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo u\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c7jxb4/this_is_a_test_post/esg6oux/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c7jxb4/this_is_a_test_post/\", \"report_reasons\": null, \"link_author\": \"jfish3000\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c7jxb4/this_is_a_test_post/\", \"created\": 1561973384.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c7koah\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esfumyh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Pun_In_Ten_Did\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561935430.0, \"send_replies\": true, \"parent_id\": \"t3_c7koah\", \"score\": 1, \"author_fullname\": \"t2_hq8k8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" GPU | PRICE |\\n:--|:--:|\\n2060 | $350 |\\n2060 SUPER | --- |\\n2070 | $500 |\\n2070 SUPER | --- |\\n2080 | $730 |\\n2080 SUPER | --- |\\n2080 Ti | $1000 |\", \"link_title\": \"test chart\", \"author_flair_css_class\": null, \"name\": \"t1_esfumyh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EGPU\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPRICE\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2060\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$350\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2060 SUPER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E---\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2070\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$500\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2070 SUPER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E---\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2080\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$730\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2080 SUPER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E---\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2080 Ti\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$1000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c7koah/test_chart/esfumyh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c7koah/test_chart/\", \"report_reasons\": null, \"link_author\": \"Pun_In_Ten_Did\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c7koah/test_chart/\", \"created\": 1561964230.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_an940a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"esadabg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"swornintheratking\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1561757015.0, \"send_replies\": true, \"parent_id\": \"t3_an940a\", \"score\": 1, \"author_fullname\": \"t2_165u0z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"https://m.xhamster.com/videos/fuck-me-please-so-hard-like-there-s-no-tomorrow-11892968\", \"link_title\": \"Prn\", \"author_flair_css_class\": null, \"name\": \"t1_esadabg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://m.xhamster.com/videos/fuck-me-please-so-hard-like-there-s-no-tomorrow-11892968\\\"\\u003Ehttps://m.xhamster.com/videos/fuck-me-please-so-hard-like-there-s-no-tomorrow-11892968\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/an940a/prn/esadabg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/an940a/prn/\", \"report_reasons\": null, \"link_author\": \"swornintheratking\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/an940a/prn/\", \"created\": 1561785815.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rw1n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5zy01\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PleaseTakeThisName\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561635956.0, \"send_replies\": true, \"parent_id\": \"t3_c5rw1n\", \"score\": 1, \"author_fullname\": \"t2_16220v7x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[PCPartPicker Part List](https://pcpartpicker.com/list/4G8dsZ)\\n\\nType|Item|Price\\n:----|:----|:----\\n**CPU** | [AMD - Ryzen 5 2600 3.4 GHz 6-Core Processor](https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox) | $145.74 @ SuperBiiz \\n**Motherboard** | [MSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard](https://pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2) | $90.00 \\n**Memory** | [G.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory](https://pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb) | $62.89 @ OutletPC \\n**Storage** | [Patriot - Burst 240 GB 2.5\\\" Solid State Drive](https://pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr) | $22.99 @ Newegg \\n**Storage** | [Toshiba - P300 1 TB 3.5\\\" 7200RPM Internal Hard Drive](https://pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta) | $40.00 \\n**Video Card** | [Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card](https://pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g) | $299.99 @ Amazon \\n**Power Supply** | [be quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply](https://pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292) | $70.00 \\n**Optical Drive** | [Lite-On - iHDS118-04 DVD/CD Drive](https://pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804) | $21.88 @ OutletPC \\n**Custom** | [Sharkoon S1000 micro ATX Geh\\u00e4use, schwarz](https://pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz) | $40.00 \\n | *Prices include shipping, taxes, rebates, and discounts* |\\n | **Total** | **$793.49**\\n | Generated by [PCPartPicker](https://pcpartpicker.com) 2019-06-27 07:45 EDT-0400 |\", \"link_title\": \"I don't know if this works so...\", \"author_flair_css_class\": null, \"name\": \"t1_es5zy01\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/list/4G8dsZ\\\"\\u003EPCPartPicker Part List\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EType\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\\"\\u003EAMD - Ryzen 5 2600 3.4 GHz 6-Core Processor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$145.74 @ SuperBiiz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2\\\"\\u003EMSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$90.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb\\\"\\u003EG.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$62.89 @ OutletPC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr\\\"\\u003EPatriot - Burst 240 GB 2.5\\u0026quot; Solid State Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$22.99 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta\\\"\\u003EToshiba - P300 1 TB 3.5\\u0026quot; 7200RPM Internal Hard Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EVideo Card\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g\\\"\\u003ESapphire - Radeon RX VEGA 56 8 GB PULSE Video Card\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$299.99 @ Amazon\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EPower Supply\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292\\\"\\u003Ebe quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$70.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EOptical Drive\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804\\\"\\u003ELite-On - iHDS118-04 DVD/CD Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$21.88 @ OutletPC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECustom\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz\\\"\\u003ESharkoon S1000 micro ATX Geh\\u00e4use, schwarz\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cem\\u003EPrices include shipping, taxes, rebates, and discounts\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETotal\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$793.49\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGenerated by \\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003EPCPartPicker\\u003C/a\\u003E 2019-06-27 07:45 EDT-0400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/es5zy01/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"report_reasons\": null, \"link_author\": \"PleaseTakeThisName\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"created\": 1561664756.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rw1n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5zrk0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PleaseTakeThisName\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561635767.0, \"send_replies\": true, \"parent_id\": \"t3_c5rw1n\", \"score\": 1, \"author_fullname\": \"t2_16220v7x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[PCPartPicker Part List\\\\]([https://pcpartpicker.com/list/4G8dsZ](https://pcpartpicker.com/list/4G8dsZ))\\n\\n\\u0026#x200B;\\n\\nType|Item|Price\\n\\n:----|:----|:----\\n\\n\\\\*\\\\*CPU\\\\*\\\\* | \\\\[AMD - Ryzen 5 2600 3.4 GHz 6-Core Processor\\\\]([https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox](https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox)) | $145.74 @ SuperBiiz \\n\\n\\\\*\\\\*Motherboard\\\\*\\\\* | \\\\[MSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard\\\\]([https://pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2](https://pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2)) | $90.00 \\n\\n\\\\*\\\\*Memory\\\\*\\\\* | \\\\[G.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory\\\\]([https://pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb](https://pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb)) | $62.89 @ OutletPC \\n\\n\\\\*\\\\*Storage\\\\*\\\\* | \\\\[Patriot - Burst 240 GB 2.5\\\" Solid State Drive\\\\]([https://pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr](https://pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr)) | $22.99 @ Newegg \\n\\n\\\\*\\\\*Storage\\\\*\\\\* | \\\\[Toshiba - P300 1 TB 3.5\\\" 7200RPM Internal Hard Drive\\\\]([https://pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta](https://pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta)) | $40.00 \\n\\n\\\\*\\\\*Video Card\\\\*\\\\* | \\\\[Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card\\\\]([https://pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g](https://pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g)) | $299.99 @ Amazon \\n\\n\\\\*\\\\*Power Supply\\\\*\\\\* | \\\\[be quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply\\\\]([https://pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292](https://pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292)) | $70.00 \\n\\n\\\\*\\\\*Optical Drive\\\\*\\\\* | \\\\[Lite-On - iHDS118-04 DVD/CD Drive\\\\]([https://pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804](https://pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804)) | $21.88 @ OutletPC \\n\\n\\\\*\\\\*Custom\\\\*\\\\* | \\\\[Sharkoon S1000 micro ATX Geh\\u00e4use, schwarz\\\\]([https://pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz](https://pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz)) | $40.00 \\n\\n | \\\\*Prices include shipping, taxes, rebates, and discounts\\\\* |\\n\\n | \\\\*\\\\*Total\\\\*\\\\* | \\\\*\\\\*$793.49\\\\*\\\\*\\n\\n | Generated by \\\\[PCPartPicker\\\\]([https://pcpartpicker.com](https://pcpartpicker.com)) 2019-06-27 07:42 EDT-0400 |\", \"link_title\": \"I don't know if this works so...\", \"author_flair_css_class\": null, \"name\": \"t1_es5zrk0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[PCPartPicker Part List](\\u003Ca href=\\\"https://pcpartpicker.com/list/4G8dsZ\\\"\\u003Ehttps://pcpartpicker.com/list/4G8dsZ\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EType|Item|Price\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:----|:----|:----\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**CPU** | [AMD - Ryzen 5 2600 3.4 GHz 6-Core Processor](\\u003Ca href=\\\"https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\\"\\u003Ehttps://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\u003C/a\\u003E) | $145.74 @ SuperBiiz \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Motherboard** | [MSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard](\\u003Ca href=\\\"https://pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2\\\"\\u003Ehttps://pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2\\u003C/a\\u003E) | $90.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Memory** | [G.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory](\\u003Ca href=\\\"https://pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb\\\"\\u003Ehttps://pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb\\u003C/a\\u003E) | $62.89 @ OutletPC \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Storage** | [Patriot - Burst 240 GB 2.5\\u0026quot; Solid State Drive](\\u003Ca href=\\\"https://pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr\\\"\\u003Ehttps://pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr\\u003C/a\\u003E) | $22.99 @ Newegg \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Storage** | [Toshiba - P300 1 TB 3.5\\u0026quot; 7200RPM Internal Hard Drive](\\u003Ca href=\\\"https://pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta\\\"\\u003Ehttps://pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta\\u003C/a\\u003E) | $40.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Video Card** | [Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card](\\u003Ca href=\\\"https://pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g\\\"\\u003Ehttps://pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g\\u003C/a\\u003E) | $299.99 @ Amazon \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Power Supply** | [be quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply](\\u003Ca href=\\\"https://pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292\\\"\\u003Ehttps://pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292\\u003C/a\\u003E) | $70.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Optical Drive** | [Lite-On - iHDS118-04 DVD/CD Drive](\\u003Ca href=\\\"https://pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804\\\"\\u003Ehttps://pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804\\u003C/a\\u003E) | $21.88 @ OutletPC \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Custom** | [Sharkoon S1000 micro ATX Geh\\u00e4use, schwarz](\\u003Ca href=\\\"https://pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz\\\"\\u003Ehttps://pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz\\u003C/a\\u003E) | $40.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| *Prices include shipping, taxes, rebates, and discounts* |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| **Total** | **$793.49**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| Generated by [PCPartPicker](\\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003Ehttps://pcpartpicker.com\\u003C/a\\u003E) 2019-06-27 07:42 EDT-0400 |\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/es5zrk0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"report_reasons\": null, \"link_author\": \"PleaseTakeThisName\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"created\": 1561664567.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c61a3f\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5h4k4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PrinceAtom12\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561611766.0, \"send_replies\": true, \"parent_id\": \"t3_c61a3f\", \"score\": 1, \"author_fullname\": \"t2_3v3l8198\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"testtesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\n\\n\\u0026#x200B;\\n\\n\\\"testtesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt. \\n\\ntesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\n\\ntesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\n\\ntesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\\"\\n\\n\\u0026#x200B;\\n\\ntesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\", \"link_title\": \"paragraph test\", \"author_flair_css_class\": null, \"name\": \"t1_es5h4k4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;testtesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c61a3f/paragraph_test/es5h4k4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c61a3f/paragraph_test/\", \"report_reasons\": null, \"link_author\": \"PrinceAtom12\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c61a3f/paragraph_test/\", \"created\": 1561640566.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvz153\", \"author_flair_template_id\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4hbno\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"nnreddit-user\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561584840.0, \"send_replies\": true, \"parent_id\": \"t3_bvz153\", \"score\": 1, \"author_fullname\": \"t2_3um52nx7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a reply test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_es4hbno\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a reply test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": false, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bvz153/test/es4hbno/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bvz153/test/\", \"report_reasons\": null, \"link_author\": \"heronb\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bvz153/test/\", \"created\": 1561613640.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"rte_mode\": \"richtext\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rdl7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4guih\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Braves-Bot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1561584527.0, \"send_replies\": true, \"parent_id\": \"t3_c5rdl7\", \"score\": 1, \"author_fullname\": \"t2_40gr0hfl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**ATL Lineup**\\n\\n|#|Hitters|POS|H-AB|AB|H|RBI|HR|SB|K|AVG|\\n|--:|:--|:-:|--:|--:|--:|--:|--:|--:|--:|--:|\\n|1|R. Acuna Jr.|CF|92-318|318|92|51|19|10|85|0.289|\\n|2|D. Swanson|SS|78-305|305|78|48|15|6|70|0.256|\\n|3|F. Freeman|1B|97-312|312|97|61|21|1|62|0.311|\\n|4|J. Donaldson|3B|70-274|274|70|37|15|1|82|0.255|\\n|5|N. Markakis|RF|76-280|280|76|44|6|0|39|0.271|\\n|6|O. Albies|2B|90-316|316|90|42|12|6|53|0.285|\\n|7|B. McCann|C|38-136|136|38|29|7|0|20|0.279|\\n|8|J. Camargo|LF|32-127|127|32|18|3|1|24|0.252|\\n|9|D. Keuchel|P|0-1|1|0|0|0|0|0|0.000|\\n\\n**CHC Lineup**\\n\\n|#|Hitters|POS|H-AB|AB|H|RBI|HR|SB|K|AVG|\\n|--:|:--|:-:|--:|--:|--:|--:|--:|--:|--:|--:|\\n|1|A. Almora Jr.|CF|53-215|215|53|22|7|2|36|0.247|\\n|2|K. Bryant|LF|78-277|277|78|40|15|1|63|0.282|\\n|3|A. Rizzo|1B|75-275|275|75|55|19|3|49|0.273|\\n|4|J. Baez|SS|89-310|310|89|52|19|5|96|0.287|\\n|5|W. Contreras|C|66-224|224|66|47|16|1|69|0.295|\\n|6|J. Heyward|RF|68-255|255|68|27|11|5|51|0.267|\\n|7|A. Russell|2B|22-98|98|22|12|5|0|27|0.224|\\n|8|D. Bote|3B|51-198|198|51|34|9|4|54|0.258|\\n|9|Y. Darvish|P|3-28|28|3|2|0|0|14|0.107|\\n\\n\\u0026nbsp;\\n\\n*^^I ^^am ^^bot, [^^click ^^here](http://www.reddit.com/message/compose?to=handlit33\\u0026subject=Braves-Bot+Issue\\u0026message=Please+be+as+detailed+as+possible.) ^^to ^^report ^^an ^^issue.*\", \"link_title\": \"Brian mCcann and matt joYce high five.\", \"author_flair_css_class\": null, \"name\": \"t1_es4guih\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EATL Lineup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E#\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EHitters\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPOS\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EH-AB\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EAB\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ERBI\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ESB\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER. Acuna Jr.\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E92-318\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E318\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.289\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ED. Swanson\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E78-305\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E305\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.256\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF. Freeman\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E97-312\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E312\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.311\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJ. Donaldson\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E70-274\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E274\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.255\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN. Markakis\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E76-280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.271\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO. Albies\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E90-316\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E316\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.285\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EB. McCann\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E38-136\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E136\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.279\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJ. Camargo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E32-127\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E127\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.252\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ED. Keuchel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EP\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECHC Lineup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E#\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EHitters\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPOS\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EH-AB\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EAB\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ERBI\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ESB\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA. Almora Jr.\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E53-215\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E215\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.247\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK. Bryant\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E78-277\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E277\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.282\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA. Rizzo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E75-275\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E275\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.273\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJ. Baez\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E89-310\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E310\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.287\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EW. Contreras\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E66-224\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E224\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.295\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJ. Heyward\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E68-255\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E255\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.267\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA. Russell\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E22-98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.224\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ED. Bote\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E51-198\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E198\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.258\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY. Darvish\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EP\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3-28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.107\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eam\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ebot,\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Ca href=\\\"http://www.reddit.com/message/compose?to=handlit33\\u0026amp;subject=Braves-Bot+Issue\\u0026amp;message=Please+be+as+detailed+as+possible.\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003Eclick\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ehere\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eto\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ereport\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ean\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eissue.\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/es4guih/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"report_reasons\": null, \"link_author\": \"handlit33\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"created\": 1561613327.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rdl7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4fu9w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Braves-Bot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1561583879.0, \"send_replies\": true, \"parent_id\": \"t3_c5rdl7\", \"score\": 1, \"author_fullname\": \"t2_40gr0hfl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**ATL Lineup**\\n\\n|#|Hitters|POS|H-AB|AB|H|RBI|HR|SB|K|AVG|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|1|R. Acuna Jr.|CF|92-318|318|92|51|19|10|85|0.289|\\n|2|D. Swanson|SS|78-305|305|78|48|15|6|70|0.256|\\n|3|F. Freeman|1B|97-312|312|97|61|21|1|62|0.311|\\n|4|J. Donaldson|3B|70-274|274|70|37|15|1|82|0.255|\\n|5|N. Markakis|RF|76-280|280|76|44|6|0|39|0.271|\\n|6|O. Albies|2B|90-316|316|90|42|12|6|53|0.285|\\n|7|B. McCann|C|38-136|136|38|29|7|0|20|0.279|\\n|8|J. Camargo|LF|32-127|127|32|18|3|1|24|0.252|\\n|9|D. Keuchel|P|0-1|1|0|0|0|0|0|0.000|\\n\\n**CHC Lineup**\\n\\n|#|Hitters|POS|H-AB|AB|H|RBI|HR|SB|K|AVG|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|1|A. Almora Jr.|CF|53-215|215|53|22|7|2|36|0.247|\\n|2|K. Bryant|LF|78-277|277|78|40|15|1|63|0.282|\\n|3|A. Rizzo|1B|75-275|275|75|55|19|3|49|0.273|\\n|4|J. Baez|SS|89-310|310|89|52|19|5|96|0.287|\\n|5|W. Contreras|C|66-224|224|66|47|16|1|69|0.295|\\n|6|J. Heyward|RF|68-255|255|68|27|11|5|51|0.267|\\n|7|A. Russell|2B|22-98|98|22|12|5|0|27|0.224|\\n|8|D. Bote|3B|51-198|198|51|34|9|4|54|0.258|\\n|9|Y. Darvish|P|3-28|28|3|2|0|0|14|0.107|\\n\\n\\u0026nbsp;\\n\\n*^^I ^^am ^^bot, [^^click ^^here](http://www.reddit.com/message/compose?to=handlit33\\u0026subject=Braves-Bot+Issue\\u0026message=Please+be+as+detailed+as+possible.) ^^to ^^report ^^an ^^issue.*\", \"link_title\": \"Brian mCcann and matt joYce high five.\", \"author_flair_css_class\": null, \"name\": \"t1_es4fu9w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EATL Lineup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E#\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHitters\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPOS\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH-AB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ERBI\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ER. Acuna Jr.\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92-318\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E318\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.289\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ED. Swanson\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78-305\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E305\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.256\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EF. Freeman\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E97-312\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E312\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.311\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJ. Donaldson\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E70-274\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E274\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.255\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EN. Markakis\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76-280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.271\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EO. Albies\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90-316\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E316\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.285\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EB. McCann\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38-136\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E136\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.279\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJ. Camargo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32-127\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E127\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.252\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ED. Keuchel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EP\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECHC Lineup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E#\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHitters\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPOS\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH-AB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ERBI\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA. Almora Jr.\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53-215\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E215\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.247\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EK. Bryant\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78-277\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E277\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.282\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA. Rizzo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E75-275\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E275\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.273\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJ. Baez\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89-310\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E310\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.287\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW. Contreras\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66-224\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E224\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.295\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJ. Heyward\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E68-255\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E255\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.267\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA. Russell\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22-98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.224\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ED. Bote\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51-198\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E198\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.258\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EY. Darvish\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EP\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3-28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.107\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eam\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ebot,\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Ca href=\\\"http://www.reddit.com/message/compose?to=handlit33\\u0026amp;subject=Braves-Bot+Issue\\u0026amp;message=Please+be+as+detailed+as+possible.\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003Eclick\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ehere\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eto\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ereport\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ean\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eissue.\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/es4fu9w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"report_reasons\": null, \"link_author\": \"handlit33\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"created\": 1561612679.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rdl7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es3v0ff\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Myotic_Tesseract\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1561571208.0, \"send_replies\": true, \"parent_id\": \"t3_c5rdl7\", \"score\": 1, \"author_fullname\": \"t2_yp6dmil\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Those names are eerily close to the names of a classmate and a teacher I had in high school...\", \"link_title\": \"Brian mCcann and matt joYce high five.\", \"author_flair_css_class\": null, \"name\": \"t1_es3v0ff\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThose names are eerily close to the names of a classmate and a teacher I had in high school...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/es3v0ff/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"report_reasons\": null, \"link_author\": \"handlit33\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"created\": 1561600008.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rw1n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es3nc0y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PleaseTakeThisName\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561566453.0, \"send_replies\": true, \"parent_id\": \"t3_c5rw1n\", \"score\": 1, \"author_fullname\": \"t2_16220v7x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[PCPartPicker Part List\\\\]([https://de.pcpartpicker.com/list/fdDCGG](https://de.pcpartpicker.com/list/fdDCGG))\\n\\n\\u0026#x200B;\\n\\nType|Item|Price\\n\\n:----|:----|:----\\n\\n\\\\*\\\\*CPU\\\\*\\\\* | \\\\[AMD - Ryzen 5 2600 3.4 GHz 6-Core Processor\\\\]([https://de.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox](https://de.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox)) | \\u20ac135.89 @ Amazon Deutschland \\n\\n\\\\*\\\\*Motherboard\\\\*\\\\* | \\\\[MSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard\\\\]([https://de.pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2](https://de.pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2)) | \\u20ac90.00 \\n\\n\\\\*\\\\*Memory\\\\*\\\\* | \\\\[G.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory\\\\]([https://de.pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb](https://de.pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb)) | \\u20ac67.89 @ Mindfactory \\n\\n\\\\*\\\\*Storage\\\\*\\\\* | \\\\[Patriot - Burst 240 GB 2.5\\\" Solid State Drive\\\\]([https://de.pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr](https://de.pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr)) | \\u20ac28.99 @ Amazon Deutschland \\n\\n\\\\*\\\\*Storage\\\\*\\\\* | \\\\[Toshiba - P300 1 TB 3.5\\\" 7200RPM Internal Hard Drive\\\\]([https://de.pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta](https://de.pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta)) | \\u20ac40.00 \\n\\n\\\\*\\\\*Video Card\\\\*\\\\* | \\\\[Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card\\\\]([https://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g](https://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g)) | \\u20ac276.91 @ Amazon Deutschland \\n\\n\\\\*\\\\*Power Supply\\\\*\\\\* | \\\\[be quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply\\\\]([https://de.pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292](https://de.pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292)) | \\u20ac50.89 @ Amazon Deutschland \\n\\n\\\\*\\\\*Optical Drive\\\\*\\\\* | \\\\[Lite-On - iHDS118-04 DVD/CD Drive\\\\]([https://de.pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804](https://de.pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804)) | \\u20ac18.73 @ Amazon Deutschland \\n\\n\\\\*\\\\*Monitor\\\\*\\\\* | \\\\[Asus - VP248QGL 24.0\\\" 1920x1080 75 Hz Monitor\\\\]([https://de.pcpartpicker.com/product/7fw7YJ/asus-vp248qgl-240-1920x1080-75-hz-monitor-vp248qgl](https://de.pcpartpicker.com/product/7fw7YJ/asus-vp248qgl-240-1920x1080-75-hz-monitor-vp248qgl)) | \\u20ac60.00 \\n\\n\\\\*\\\\*Custom\\\\*\\\\* | \\\\[Sharkoon S1000 micro ATX Geh\\u00e4use, schwarz\\\\]([https://de.pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz](https://de.pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz)) | \\u20ac39.90 @ Amazon Deutschland \\n\\n | \\\\*Prices include shipping, taxes, rebates, and discounts\\\\* |\\n\\n | \\\\*\\\\*Total\\\\*\\\\* | \\\\*\\\\*\\u20ac809.20\\\\*\\\\*\\n\\n | Generated by \\\\[PCPartPicker\\\\]([https://pcpartpicker.com](https://pcpartpicker.com)) 2019-06-26 18:27 CEST+0200 |\", \"link_title\": \"I don't know if this works so...\", \"author_flair_css_class\": null, \"name\": \"t1_es3nc0y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[PCPartPicker Part List](\\u003Ca href=\\\"https://de.pcpartpicker.com/list/fdDCGG\\\"\\u003Ehttps://de.pcpartpicker.com/list/fdDCGG\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EType|Item|Price\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:----|:----|:----\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**CPU** | [AMD - Ryzen 5 2600 3.4 GHz 6-Core Processor](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\\"\\u003Ehttps://de.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\u003C/a\\u003E) | \\u20ac135.89 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Motherboard** | [MSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2\\\"\\u003Ehttps://de.pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2\\u003C/a\\u003E) | \\u20ac90.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Memory** | [G.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb\\\"\\u003Ehttps://de.pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb\\u003C/a\\u003E) | \\u20ac67.89 @ Mindfactory \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Storage** | [Patriot - Burst 240 GB 2.5\\u0026quot; Solid State Drive](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr\\\"\\u003Ehttps://de.pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr\\u003C/a\\u003E) | \\u20ac28.99 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Storage** | [Toshiba - P300 1 TB 3.5\\u0026quot; 7200RPM Internal Hard Drive](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta\\\"\\u003Ehttps://de.pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta\\u003C/a\\u003E) | \\u20ac40.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Video Card** | [Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g\\\"\\u003Ehttps://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g\\u003C/a\\u003E) | \\u20ac276.91 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Power Supply** | [be quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292\\\"\\u003Ehttps://de.pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292\\u003C/a\\u003E) | \\u20ac50.89 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Optical Drive** | [Lite-On - iHDS118-04 DVD/CD Drive](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804\\\"\\u003Ehttps://de.pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804\\u003C/a\\u003E) | \\u20ac18.73 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Monitor** | [Asus - VP248QGL 24.0\\u0026quot; 1920x1080 75 Hz Monitor](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/7fw7YJ/asus-vp248qgl-240-1920x1080-75-hz-monitor-vp248qgl\\\"\\u003Ehttps://de.pcpartpicker.com/product/7fw7YJ/asus-vp248qgl-240-1920x1080-75-hz-monitor-vp248qgl\\u003C/a\\u003E) | \\u20ac60.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Custom** | [Sharkoon S1000 micro ATX Geh\\u00e4use, schwarz](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz\\\"\\u003Ehttps://de.pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz\\u003C/a\\u003E) | \\u20ac39.90 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| *Prices include shipping, taxes, rebates, and discounts* |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| **Total** | **\\u20ac809.20**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| Generated by [PCPartPicker](\\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003Ehttps://pcpartpicker.com\\u003C/a\\u003E) 2019-06-26 18:27 CEST+0200 |\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/es3nc0y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"report_reasons\": null, \"link_author\": \"PleaseTakeThisName\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"created\": 1561595253.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rdl7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es3ja0b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Braves-Bot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1561563826.0, \"send_replies\": true, \"parent_id\": \"t3_c5rdl7\", \"score\": 1, \"author_fullname\": \"t2_40gr0hfl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"|Name|G|PA|HR|R|RBI|SB|BB%|K%|ISO|BABIP|AVG|OBP|SLG|wOBA|wRC+|BsR|Off|Def|WAR|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|Brian McCann|42|160|7|16|29|0|10.6 %|12.5 %|0.191|0.27|0.279|0.35|0.471|0.341|108|-0.7|1.1|1.2|0.7|\\n|Matt Joyce|60|83|2|11|8|0|14.5 %|19.3 %|0.183|0.377|0.31|0.41|0.493|0.387|138|-0.1|4.1|-1.1|0.6|\", \"link_title\": \"Brian mCcann and matt joYce high five.\", \"author_flair_css_class\": null, \"name\": \"t1_es3ja0b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EName\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ER\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ERBI\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBB%\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK%\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EISO\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBABIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOBP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESLG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EwOBA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EwRC+\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBsR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOff\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EDef\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EWAR\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrian McCann\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E160\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10.6 %\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12.5 %\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.191\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.279\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.471\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.341\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-0.7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.7\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMatt Joyce\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14.5 %\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19.3 %\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.183\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.377\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.493\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.387\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E138\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-0.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-1.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.6\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/es3ja0b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"report_reasons\": null, \"link_author\": \"handlit33\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"created\": 1561592626.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4jyh8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es2sqm2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"V-kekEnthusiast\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561538482.0, \"send_replies\": true, \"parent_id\": \"t3_c4jyh8\", \"score\": 1, \"author_fullname\": \"t2_4izkmwp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[play this song\\\\]([https://youtu.be/vyGFM5CGnoo?t=1m4s](https://youtu.be/vyGFM5CGnoo?t=1m4s))\", \"link_title\": \"HEY BINDI\", \"author_flair_css_class\": null, \"name\": \"t1_es2sqm2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[play this song](\\u003Ca href=\\\"https://youtu.be/vyGFM5CGnoo?t=1m4s\\\"\\u003Ehttps://youtu.be/vyGFM5CGnoo?t=1m4s\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c4jyh8/hey_bindi/es2sqm2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c4jyh8/hey_bindi/\", \"report_reasons\": null, \"link_author\": \"Gooforme\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/kv4c91eqg9631.jpg\", \"created\": 1561567282.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5a7b8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es2kro9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Qoeh\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561527958.0, \"send_replies\": true, \"parent_id\": \"t1_es2kr71\", \"score\": 1, \"author_fullname\": \"t2_wxdmw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E!Multiline spoilers?\\n\\nMultiline??????!\\u003C\", \"link_title\": \"text\", \"author_flair_css_class\": null, \"name\": \"t1_es2kro9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;!Multiline spoilers?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMultiline??????!\\u0026lt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5a7b8/text/es2kro9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5a7b8/text/\", \"report_reasons\": null, \"link_author\": \"Mizenhauer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5a7b8/text/\", \"created\": 1561556758.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5a7b8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es2kr71\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Qoeh\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561527943.0, \"send_replies\": true, \"parent_id\": \"t1_es2kqrw\", \"score\": 1, \"author_fullname\": \"t2_wxdmw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E!I need to understand better how spoiler tags work!\\u003C\", \"link_title\": \"text\", \"author_flair_css_class\": null, \"name\": \"t1_es2kr71\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003EI need to understand better how spoiler tags work\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5a7b8/text/es2kr71/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5a7b8/text/\", \"report_reasons\": null, \"link_author\": \"Mizenhauer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5a7b8/text/\", \"created\": 1561556743.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5a7b8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es2kqrw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Qoeh\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561527931.0, \"send_replies\": true, \"parent_id\": \"t3_c5a7b8\", \"score\": 1, \"author_fullname\": \"t2_wxdmw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E! I need to understand better how spoiler tags work !\\u003C\", \"link_title\": \"text\", \"author_flair_css_class\": null, \"name\": \"t1_es2kqrw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;! I need to understand better how spoiler tags work !\\u0026lt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5a7b8/text/es2kqrw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5a7b8/text/\", \"report_reasons\": null, \"link_author\": \"Mizenhauer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5a7b8/text/\", \"created\": 1561556731.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5i87l\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es1y49s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Braves-Bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561508864.0, \"send_replies\": true, \"parent_id\": \"t3_c5i87l\", \"score\": 1, \"author_fullname\": \"t2_40gr0hfl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Probable Pitchers**\\n\\n|Player|W-L|ERA|WHIP|IP|H|K|BB|HR|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|D. Keuchel|0-1|5.40|1.60|5.0|8|3|0|1|\\n|Y. Darvish|2-3|4.75|1.36|85.1|69|97|47|16|\\n**Team Stats**\\n\\n|TEAM|AVG|R|H|HR|OBP|SLG|ERA|WHIP|BB|K|OBA|NIGHT|TURF|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|ATL|0.265|430|729|122|0.340|0.461|4.28|1.38|297|677|0.251|33-26|46-33|\\n|CHC|0.253|397|664|122|0.336|0.448|3.88|1.31|272|675|0.245|27-20|43-35|\\n**ATL Last Five**\\n\\n|Date|OPP|Result|\\n|:-:|:-:|:-:|\\n|6/24/19|@ CHC|L8-3|\\n|6/23/19|@ WSH|W4-3 F/10|\\n|6/22/19|@ WSH|W13-9|\\n|6/21/19|@ WSH|L4-3|\\n|6/19/19|vs NYM|W7-2|\\n**CHC Last Five**\\n\\n|Date|OPP|Result|\\n|:-:|:-:|:-:|\\n|6/24/19|vs ATL|W8-3|\\n|6/23/19|vs NYM|W5-3|\\n|6/22/19|vs NYM|L10-2|\\n|6/21/19|vs NYM|L5-4|\\n|6/20/19|vs NYM|W7-4|\\n**National League East Standings**\\n\\n|TEAM|W|L|PCT|GB|STRK|\\n|:-:|:-:|:-:|:-:|:-:|:-:|\\n|Atlanta|46|33|0.582|0.0|L1|\\n|Philadelphia|40|38|0.513|5.5|W1|\\n|Washington|37|40|0.481|8.0|L2|\\n|New York|37|42|0.468|9.0|L2|\\n|Miami|30|46|0.395|14.5|W4|\\n\\n\\u0026nbsp;\\n\\n*^^I ^^am ^^bot, [^^click ^^here](http://www.reddit.com/message/compose?to=handlit33\\u0026subject=Braves-Bot+Issue\\u0026message=Please+be+as+detailed+as+possible.) ^^to ^^report ^^an ^^issue.*\", \"link_title\": \"Tailgate Test\", \"author_flair_css_class\": null, \"name\": \"t1_es1y49s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EProbable Pitchers\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPlayer\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EW-L\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EERA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EWHIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ED. Keuchel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5.40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EY. Darvish\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2-3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E85.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETeam Stats\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ETEAM\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ER\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOBP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESLG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EERA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EWHIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOBA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ENIGHT\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ETURF\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EATL\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.265\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E430\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E729\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E122\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.340\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.461\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E297\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E677\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.251\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33-26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46-33\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECHC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.253\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E397\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E664\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E122\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.336\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.448\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E272\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E675\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.245\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43-35\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EATL Last Five\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOPP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EResult\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/24/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E@ CHC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL8-3\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/23/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E@ WSH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW4-3 F/10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/22/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E@ WSH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW13-9\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/21/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E@ WSH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL4-3\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/19/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Evs NYM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW7-2\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECHC Last Five\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOPP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EResult\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/24/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Evs ATL\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW8-3\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/23/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Evs NYM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW5-3\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/22/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Evs NYM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL10-2\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/21/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Evs NYM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL5-4\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/20/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Evs NYM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW7-4\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENational League East Standings\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ETEAM\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EW\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EL\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPCT\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EGB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESTRK\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAtlanta\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.582\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL1\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPhiladelphia\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.513\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW1\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWashington\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.481\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL2\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ENew York\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.468\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL2\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMiami\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.395\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW4\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eam\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ebot,\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Ca href=\\\"http://www.reddit.com/message/compose?to=handlit33\\u0026amp;subject=Braves-Bot+Issue\\u0026amp;message=Please+be+as+detailed+as+possible.\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003Eclick\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ehere\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eto\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ereport\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ean\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eissue.\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5i87l/tailgate_test/es1y49s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5i87l/tailgate_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5i87l/tailgate_test/\", \"created\": 1561537664.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c31w77\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es0v343\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Braves-Bot\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561483613.0, \"send_replies\": true, \"parent_id\": \"t3_c31w77\", \"score\": 1, \"author_fullname\": \"t2_40gr0hfl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Probable Pitchers**\\n\\n|Player|W-L|ERA|WHIP|IP|H|K|BB|HR| \\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:| \\n|M. Fried|8-3|4.03|1.34|82.2|89|76|22|11| \\n|A. Alzolay|1-0|2.25|0.75|4|1|5|2|1| \\n**Team Stats**\\n\\n|TEAM|AVG|R|H|HR|OBP|SLG|ERA|WHIP|BB|K|OBA|NIGHT|TURF| \\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:| \\n|ATL|0.265|430|729|122|0.34|0.461|4.28|1.38|297|677|0.251|33-24|46-33| \\n|CHC|0.253|397|664|122|0.336|0.448|3.88|1.31|272|675|0.245|26-20|43-35|\", \"link_title\": \"gdt\", \"author_flair_css_class\": null, \"name\": \"t1_es0v343\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EProbable Pitchers\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPlayer\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EW-L\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EERA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EWHIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EM. Fried\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8-3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.03\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E82.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA. Alzolay\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1-0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETeam Stats\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ETEAM\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ER\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOBP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESLG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EERA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EWHIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOBA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ENIGHT\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ETURF\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EATL\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.265\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E430\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E729\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E122\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.461\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E297\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E677\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.251\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33-24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46-33\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECHC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.253\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E397\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E664\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E122\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.336\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.448\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E272\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E675\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.245\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43-35\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c31w77/gdt/es0v343/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c31w77/gdt/\", \"report_reasons\": null, \"link_author\": \"handlit33\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c31w77/gdt/\", \"created\": 1561512413.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c31w77\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es0t8mj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Braves-Bot\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561482594.0, \"send_replies\": true, \"parent_id\": \"t3_c31w77\", \"score\": 1, \"author_fullname\": \"t2_40gr0hfl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Probable Pitchers** \\n|Player|W-L|ERA|WHIP|IP|H|K|BB|HR|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|M. Fried|43680|4.03|1.34|82.2|89|76|22|11|\\n|A. Alzolay|1-0|2.25|0.75|4|1|5|2|1| \\n**Team Stats **\\n|TEAM|AVG|R|H|HR|OBP|SLG|ERA|WHIP|BB|K|OBA|NIGHT|TURF|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|ATL|0.265|430|729|122|0.34|0.461|4.28|1.38|297|677|0.251|33-24|46-33|\\n|CHC|0.253|397|664|122|0.336|0.448|3.88|1.31|272|675|0.245|26-20|43-35|\", \"link_title\": \"gdt\", \"author_flair_css_class\": null, \"name\": \"t1_es0t8mj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EProbable Pitchers\\u003C/strong\\u003E\\u003Cbr/\\u003E\\n|Player|W-L|ERA|WHIP|IP|H|K|BB|HR|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|M. Fried|43680|4.03|1.34|82.2|89|76|22|11|\\n|A. Alzolay|1-0|2.25|0.75|4|1|5|2|1|\\u003Cbr/\\u003E\\n*\\u003Cem\\u003ETeam Stats *\\u003C/em\\u003E\\n|TEAM|AVG|R|H|HR|OBP|SLG|ERA|WHIP|BB|K|OBA|NIGHT|TURF|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|ATL|0.265|430|729|122|0.34|0.461|4.28|1.38|297|677|0.251|33-24|46-33|\\n|CHC|0.253|397|664|122|0.336|0.448|3.88|1.31|272|675|0.245|26-20|43-35|\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c31w77/gdt/es0t8mj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c31w77/gdt/\", \"report_reasons\": null, \"link_author\": \"handlit33\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c31w77/gdt/\", \"created\": 1561511394.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4x2tz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eryr1q6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"graypod\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561415211.0, \"send_replies\": true, \"parent_id\": \"t3_c4x2tz\", \"score\": 1, \"author_fullname\": \"t2_161d26\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://streamable.com/s/i5xbp/jmihkz](https://streamable.com/s/i5xbp/jmihkz)\", \"link_title\": \"zed\", \"author_flair_css_class\": null, \"name\": \"t1_eryr1q6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://streamable.com/s/i5xbp/jmihkz\\\"\\u003Ehttps://streamable.com/s/i5xbp/jmihkz\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c4x2tz/zed/eryr1q6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c4x2tz/zed/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://streamable.com/s/i5xbp/\", \"created\": 1561444011.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2whnb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ermxwmj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Scout_3336\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561039964.0, \"send_replies\": true, \"parent_id\": \"t3_c2whnb\", \"score\": 1, \"author_fullname\": \"t2_3k04aarx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"The seashore is where the seagull Sells.\", \"link_title\": \"Seagull sells selfies by the seashore\", \"author_flair_css_class\": null, \"name\": \"t1_ermxwmj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe seashore is where the seagull Sells.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2whnb/seagull_sells_selfies_by_the_seashore/ermxwmj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2whnb/seagull_sells_selfies_by_the_seashore/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/jmysd30fri531.jpg\", \"created\": 1561068764.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2sbsy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erm8yg9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Scout_3336\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561010762.0, \"send_replies\": true, \"parent_id\": \"t3_c2sbsy\", \"score\": 1, \"author_fullname\": \"t2_3k04aarx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"RWERWrwwRRr\", \"link_title\": \"Seagull sells selfies by the seashore\", \"author_flair_css_class\": null, \"name\": \"t1_erm8yg9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERWERWrwwRRr\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2sbsy/seagull_sells_selfies_by_the_seashore/erm8yg9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2sbsy/seagull_sells_selfies_by_the_seashore/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/tpxzhiolcg531.jpg\", \"created\": 1561039562.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2s2ip\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erm7pms\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Scout_3336\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561009311.0, \"send_replies\": true, \"parent_id\": \"t3_c2s2ip\", \"score\": 1, \"author_fullname\": \"t2_3k04aarx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[*The seashore is where the seagull Sells*](https://imgur.com/9AG11VI)\", \"link_title\": \"Seagull sells selfies by the seashore\", \"author_flair_css_class\": null, \"name\": \"t1_erm7pms\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/9AG11VI\\\"\\u003E\\u003Cem\\u003EThe seashore is where the seagull Sells\\u003C/em\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2s2ip/seagull_sells_selfies_by_the_seashore/erm7pms/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2s2ip/seagull_sells_selfies_by_the_seashore/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/9AG11VI\", \"created\": 1561038111.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2s2ip\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erm7ljx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Scout_3336\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561009180.0, \"send_replies\": true, \"parent_id\": \"t3_c2s2ip\", \"score\": 1, \"author_fullname\": \"t2_3k04aarx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"The [*seashore*](https://imgur.com/9AG11VI) is where the seagull Sells.\", \"link_title\": \"Seagull sells selfies by the seashore\", \"author_flair_css_class\": null, \"name\": \"t1_erm7ljx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe \\u003Ca href=\\\"https://imgur.com/9AG11VI\\\"\\u003E\\u003Cem\\u003Eseashore\\u003C/em\\u003E\\u003C/a\\u003E is where the seagull Sells.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2s2ip/seagull_sells_selfies_by_the_seashore/erm7ljx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2s2ip/seagull_sells_selfies_by_the_seashore/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/9AG11VI\", \"created\": 1561037980.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2s2ip\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erm7hzi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Scout_3336\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561009065.0, \"send_replies\": true, \"parent_id\": \"t3_c2s2ip\", \"score\": 1, \"author_fullname\": \"t2_3k04aarx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"The *seashore* is where the seagull Sells.\", \"link_title\": \"Seagull sells selfies by the seashore\", \"author_flair_css_class\": null, \"name\": \"t1_erm7hzi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe \\u003Cem\\u003Eseashore\\u003C/em\\u003E is where the seagull Sells.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2s2ip/seagull_sells_selfies_by_the_seashore/erm7hzi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2s2ip/seagull_sells_selfies_by_the_seashore/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/9AG11VI\", \"created\": 1561037865.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2nor2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erlhbks\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DrHandyman\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560987177.0, \"send_replies\": true, \"parent_id\": \"t3_c2nor2\", \"score\": 1, \"author_fullname\": \"t2_2wbf73p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Comment test\", \"link_title\": \"Image test\", \"author_flair_css_class\": null, \"name\": \"t1_erlhbks\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EComment test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2nor2/image_test/erlhbks/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2nor2/image_test/\", \"report_reasons\": null, \"link_author\": \"GloomyTeddyBear96\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/8mr10adz2e531.jpg\", \"created\": 1561015977.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2ks3x\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erkqkqc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560969219.0, \"send_replies\": true, \"parent_id\": \"t3_c2ks3x\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/gxuM60O.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"Father Ted\", \"author_flair_css_class\": null, \"name\": \"t1_erkqkqc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/gxuM60O.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2ks3x/father_ted/erkqkqc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2ks3x/father_ted/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/gxuM60O.gif\", \"created\": 1560998019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2islr\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erkbmja\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jachrazoglou\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560959836.0, \"send_replies\": true, \"parent_id\": \"t3_c2islr\", \"score\": 1, \"author_fullname\": \"t2_3v1jxwat\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" My grandfather John had been in the US working and saving his money sent word back to the village in Greece that he needed a bride. My grandmother\\u2019s family responded and her brother escorted my grandmother to Paris, France to meet John.\\n\\nWhen grandmother saw John for the first time in Paris she turned to her brother and told him, \\u201cyou can go back to the village now.\\u201d\\n\\nOn that same day John bought her a wedding dress, they got married and had this picture taken. That's one happy Greek!\", \"link_title\": \"On the same day my grandparents met, got married and took this picture \\u2013 1920's\", \"author_flair_css_class\": null, \"name\": \"t1_erkbmja\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy grandfather John had been in the US working and saving his money sent word back to the village in Greece that he needed a bride. My grandmother\\u2019s family responded and her brother escorted my grandmother to Paris, France to meet John.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen grandmother saw John for the first time in Paris she turned to her brother and told him, \\u201cyou can go back to the village now.\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn that same day John bought her a wedding dress, they got married and had this picture taken. That\\u0026#39;s one happy Greek!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2islr/on_the_same_day_my_grandparents_met_got_married/erkbmja/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2islr/on_the_same_day_my_grandparents_met_got_married/\", \"report_reasons\": null, \"link_author\": \"jachrazoglou\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/di5WkIX\", \"created\": 1560988636.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzo7q6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erdr7oh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Decahedran\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560753302.0, \"send_replies\": true, \"parent_id\": \"t1_erd7r4z\", \"score\": 1, \"author_fullname\": \"t2_17ck50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Lol fair enough. Shoot me a reply when you post it. I\\u2019d also be interested in seeing what Reddit thinks about it from a design standpoint!\", \"link_title\": \"-\", \"author_flair_css_class\": null, \"name\": \"t1_erdr7oh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELol fair enough. Shoot me a reply when you post it. I\\u2019d also be interested in seeing what Reddit thinks about it from a design standpoint!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzo7q6/_/erdr7oh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"report_reasons\": null, \"link_author\": \"OverlordMikan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"created\": 1560782102.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byre4u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erdd9k2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Thunderboomed\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560738274.0, \"send_replies\": true, \"parent_id\": \"t3_byre4u\", \"score\": 1, \"author_fullname\": \"t2_zakzq1j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"scared the living shit out of me when it switched to the next photo\", \"link_title\": \"This is a test!!\", \"author_flair_css_class\": null, \"name\": \"t1_erdd9k2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Escared the living shit out of me when it switched to the next photo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/byre4u/this_is_a_test/erdd9k2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/byre4u/this_is_a_test/\", \"report_reasons\": null, \"link_author\": \"lividcargo\", \"author_flair_text\": null, \"link_url\": \"https://media.giphy.com/media/l0uWTCjTVmAckMhRGl/giphy.gif\", \"created\": 1560767074.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzo7q6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erd7r4z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"OverlordMikan\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560733448.0, \"send_replies\": true, \"parent_id\": \"t1_eqw0q32\", \"score\": 1, \"author_fullname\": \"t2_10ql04\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I was planning to post it to r/UI_Design cause I wanted to know what everyone thought about the new style lol. Didn't get to posting it yet though. otl\", \"link_title\": \"-\", \"author_flair_css_class\": null, \"name\": \"t1_erd7r4z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was planning to post it to \\u003Ca href=\\\"/r/UI_Design\\\"\\u003Er/UI_Design\\u003C/a\\u003E cause I wanted to know what everyone thought about the new style lol. Didn\\u0026#39;t get to posting it yet though. otl\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzo7q6/_/erd7r4z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"report_reasons\": null, \"link_author\": \"OverlordMikan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"created\": 1560762248.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1fqie\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ercvvk0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"HellaciousHelen\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560723419.0, \"send_replies\": true, \"parent_id\": \"t3_c1fqie\", \"score\": 1, \"author_fullname\": \"t2_4cqt5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Musician is Dr. Jonathan Ong out of Sydney, Australia\", \"link_title\": \"Neil Gaiman, composer David Arnold, \\u0026 director Doug Mackinnon seemed to enjoy this music streamer's improv of the Good Omens theme, which was apparently learned and looped on the spot!\", \"author_flair_css_class\": null, \"name\": \"t1_ercvvk0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMusician is Dr. Jonathan Ong out of Sydney, Australia\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c1fqie/neil_gaiman_composer_david_arnold_director_doug/ercvvk0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c1fqie/neil_gaiman_composer_david_arnold_director_doug/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://twitter.com/neilhimself/status/1138874784060776448\", \"created\": 1560752219.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0610r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er9p5xb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sneakpeekbot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1560627218.0, \"send_replies\": true, \"parent_id\": \"t1_er9p4yb\", \"score\": 1, \"author_fullname\": \"t2_140r4p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Here's a sneak peek of /r/Luthier using the [top posts](https://np.reddit.com/r/Luthier/top/?sort=top\\u0026t=year) of the year!\\n\\n\\\\#1: [A guitar I made from African Zebrawood](https://i.redd.it/grkgebont8k21.jpg) | [62 comments](https://np.reddit.com/r/Luthier/comments/axhve9/a_guitar_i_made_from_african_zebrawood/) \\n\\\\#2: [Here you go fellow Redditors.](https://i.redd.it/m7kcu5wva0x21.jpg) | [61 comments](https://np.reddit.com/r/Luthier/comments/bm6oqy/here_you_go_fellow_redditors/) \\n\\\\#3: [\\\\[Update\\\\] finally completed my first build!](https://i.redd.it/vxcs74n6qef21.jpg) | [56 comments](https://np.reddit.com/r/Luthier/comments/aokxmw/update_finally_completed_my_first_build/)\\n\\n----\\n^^I'm ^^a ^^bot, ^^beep ^^boop ^^| ^^Downvote ^^to ^^remove ^^| [^^Contact ^^me](https://www.reddit.com/message/compose/?to=sneakpeekbot) ^^| [^^Info](https://np.reddit.com/r/sneakpeekbot/) ^^| [^^Opt-out](https://np.reddit.com/r/sneakpeekbot/comments/afd0dd/blacklist/)\", \"link_title\": \"Imgur: The magic of the Internet\", \"author_flair_css_class\": null, \"name\": \"t1_er9p5xb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s a sneak peek of \\u003Ca href=\\\"/r/Luthier\\\"\\u003E/r/Luthier\\u003C/a\\u003E using the \\u003Ca href=\\\"https://np.reddit.com/r/Luthier/top/?sort=top\\u0026amp;t=year\\\"\\u003Etop posts\\u003C/a\\u003E of the year!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#1: \\u003Ca href=\\\"https://i.redd.it/grkgebont8k21.jpg\\\"\\u003EA guitar I made from African Zebrawood\\u003C/a\\u003E | \\u003Ca href=\\\"https://np.reddit.com/r/Luthier/comments/axhve9/a_guitar_i_made_from_african_zebrawood/\\\"\\u003E62 comments\\u003C/a\\u003E\\u003Cbr/\\u003E\\n#2: \\u003Ca href=\\\"https://i.redd.it/m7kcu5wva0x21.jpg\\\"\\u003EHere you go fellow Redditors.\\u003C/a\\u003E | \\u003Ca href=\\\"https://np.reddit.com/r/Luthier/comments/bm6oqy/here_you_go_fellow_redditors/\\\"\\u003E61 comments\\u003C/a\\u003E\\u003Cbr/\\u003E\\n#3: \\u003Ca href=\\\"https://i.redd.it/vxcs74n6qef21.jpg\\\"\\u003E[Update] finally completed my first build!\\u003C/a\\u003E | \\u003Ca href=\\\"https://np.reddit.com/r/Luthier/comments/aokxmw/update_finally_completed_my_first_build/\\\"\\u003E56 comments\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\u003Csup\\u003EI\\u0026#39;m\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ea\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ebot,\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ebeep\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eboop\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003EDownvote\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eto\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eremove\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Ca href=\\\"https://www.reddit.com/message/compose/?to=sneakpeekbot\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003EContact\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eme\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Ca href=\\\"https://np.reddit.com/r/sneakpeekbot/\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003EInfo\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Ca href=\\\"https://np.reddit.com/r/sneakpeekbot/comments/afd0dd/blacklist/\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003EOpt-out\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/er9p5xb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"report_reasons\": null, \"link_author\": \"Calavera87\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"created\": 1560656018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0610r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er9lv3x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LeEpicRedditor69\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1560625715.0, \"send_replies\": true, \"parent_id\": \"t1_er9luln\", \"score\": 1, \"author_fullname\": \"t2_3y359z0f\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Nice\", \"link_title\": \"Imgur: The magic of the Internet\", \"author_flair_css_class\": null, \"name\": \"t1_er9lv3x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/er9lv3x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"report_reasons\": null, \"link_author\": \"Calavera87\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"created\": 1560654515.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560627236.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0610r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er9luln\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GorgutsBossaNova\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1560625709.0, \"send_replies\": true, \"parent_id\": \"t1_er9lsj7\", \"score\": 1, \"author_fullname\": \"t2_1l369haq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\n.\", \"link_title\": \"Imgur: The magic of the Internet\", \"author_flair_css_class\": null, \"name\": \"t1_er9luln\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/er9luln/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"report_reasons\": null, \"link_author\": \"Calavera87\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"created\": 1560654509.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560627249.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0610r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er9lsj7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GorgutsBossaNova\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1560625682.0, \"send_replies\": true, \"parent_id\": \"t3_c0610r\", \"score\": 1, \"author_fullname\": \"t2_1l369haq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"m\", \"link_title\": \"Imgur: The magic of the Internet\", \"author_flair_css_class\": null, \"name\": \"t1_er9lsj7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Em\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/er9lsj7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"report_reasons\": null, \"link_author\": \"Calavera87\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"created\": 1560654482.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0nfs0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er6176l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Q-Dex\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560537750.0, \"send_replies\": true, \"parent_id\": \"t3_c0nfs0\", \"score\": 1, \"author_fullname\": \"t2_osninyy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"##Title\\n\\nmain block\\n**important**\", \"link_title\": \"Second test\", \"author_flair_css_class\": null, \"name\": \"t1_er6176l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003ETitle\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003Emain block\\n\\u003Cstrong\\u003Eimportant\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c0nfs0/second_test/er6176l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c0nfs0/second_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/yjt40kaq5d431.png\", \"created\": 1560566550.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0nfs0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er60cnk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Q-Dex\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560537238.0, \"send_replies\": true, \"parent_id\": \"t3_c0nfs0\", \"score\": 1, \"author_fullname\": \"t2_osninyy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Dr. Test the tester\", \"link_title\": \"Second test\", \"author_flair_css_class\": null, \"name\": \"t1_er60cnk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDr. Test the tester\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c0nfs0/second_test/er60cnk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c0nfs0/second_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/yjt40kaq5d431.png\", \"created\": 1560566038.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560388586.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzzep3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqyrflk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Prexot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560388174.0, \"send_replies\": true, \"parent_id\": \"t3_bzzep3\", \"score\": 1, \"author_fullname\": \"t2_a7mkxmh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Play it now!](https://goldenpigames.github.io/BreadStapler/)\\n\\nBe my fan on [Kongregate](https://www.kongregate.com/accounts/goldenPiGames), [Newgrounds](https://goldenpigames.newgrounds.com/), and maybe the [YouTube](https://www.youtube.com/channel/UCb4QliR5GWppUqOLXBYKYHw) that I never use. Full code on [gitHub](https://github.com/goldenPiGames/BreadStapler).\\n\\nTrailer made by u/Owl_Towels: [YouTube](https://www.youtube.com/channel/UCpiem29VSZ0y2EbHOtc7tlA)\", \"link_title\": \"Comments\", \"author_flair_css_class\": null, \"name\": \"t1_eqyrflk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://goldenpigames.github.io/BreadStapler/\\\"\\u003EPlay it now!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBe my fan on \\u003Ca href=\\\"https://www.kongregate.com/accounts/goldenPiGames\\\"\\u003EKongregate\\u003C/a\\u003E, \\u003Ca href=\\\"https://goldenpigames.newgrounds.com/\\\"\\u003ENewgrounds\\u003C/a\\u003E, and maybe the \\u003Ca href=\\\"https://www.youtube.com/channel/UCb4QliR5GWppUqOLXBYKYHw\\\"\\u003EYouTube\\u003C/a\\u003E that I never use. Full code on \\u003Ca href=\\\"https://github.com/goldenPiGames/BreadStapler\\\"\\u003EgitHub\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETrailer made by \\u003Ca href=\\\"/u/Owl_Towels\\\"\\u003Eu/Owl_Towels\\u003C/a\\u003E: \\u003Ca href=\\\"https://www.youtube.com/channel/UCpiem29VSZ0y2EbHOtc7tlA\\\"\\u003EYouTube\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzzep3/comments/eqyrflk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzzep3/comments/\", \"report_reasons\": null, \"link_author\": \"Prexot\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bzzep3/comments/\", \"created\": 1560416974.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1561643990.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzl5p5\", \"author_flair_template_id\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwe7dx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"nnreddit-user\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560356100.0, \"send_replies\": true, \"parent_id\": \"t3_bzl5p5\", \"score\": 1, \"author_fullname\": \"t2_3um52nx7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"edit:\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eqwe7dx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eedit:\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": false, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzl5p5/test/eqwe7dx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzl5p5/test/\", \"report_reasons\": null, \"link_author\": \"aegisninja\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=hWPKGP6n5qk\\u0026feature=youtu.be\", \"created\": 1560384900.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"rte_mode\": \"markdown\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzo7q6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqw0q32\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Decahedran\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560351861.0, \"send_replies\": true, \"parent_id\": \"t3_bzo7q6\", \"score\": 1, \"author_fullname\": \"t2_17ck50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Where are you posting to? Wanna check it out\", \"link_title\": \"-\", \"author_flair_css_class\": null, \"name\": \"t1_eqw0q32\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhere are you posting to? Wanna check it out\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzo7q6/_/eqw0q32/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"report_reasons\": null, \"link_author\": \"OverlordMikan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"created\": 1560380661.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzmm85\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtkmc8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imguralbumbot\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560313512.0, \"send_replies\": true, \"parent_id\": \"t1_eqtklpz\", \"score\": 1, \"author_fullname\": \"t2_180i376\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"^(Hi, I'm a bot for linking direct images of albums with only 1 image)\\n\\n**https://i.imgur.com/g1bMj4I.jpg**\\n\\n^^[Source](https://github.com/AUTplayed/imguralbumbot) ^^| ^^[Why?](https://github.com/AUTplayed/imguralbumbot/blob/master/README.md) ^^| ^^[Creator](https://np.reddit.com/user/AUTplayed/) ^^| ^^[ignoreme](https://np.reddit.com/message/compose/?to=imguralbumbot\\u0026subject=ignoreme\\u0026message=ignoreme)^^| ^^[deletthis](https://np.reddit.com/message/compose/?to=imguralbumbot\\u0026subject=delet%20this\\u0026message=delet%20this%20eqtkmc8)\", \"link_title\": \"Imgur test\", \"author_flair_css_class\": null, \"name\": \"t1_eqtkmc8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Csup\\u003EHi, I\\u0026#39;m a bot for linking direct images of albums with only 1 image\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"https://i.imgur.com/g1bMj4I.jpg\\\"\\u003Ehttps://i.imgur.com/g1bMj4I.jpg\\u003C/a\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/AUTplayed/imguralbumbot\\\"\\u003ESource\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/AUTplayed/imguralbumbot/blob/master/README.md\\\"\\u003EWhy?\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://np.reddit.com/user/AUTplayed/\\\"\\u003ECreator\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://np.reddit.com/message/compose/?to=imguralbumbot\\u0026amp;subject=ignoreme\\u0026amp;message=ignoreme\\\"\\u003Eignoreme\\u003C/a\\u003E\\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://np.reddit.com/message/compose/?to=imguralbumbot\\u0026amp;subject=delet%20this\\u0026amp;message=delet%20this%20eqtkmc8\\\"\\u003Edeletthis\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzmm85/imgur_test/eqtkmc8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzmm85/imgur_test/\", \"report_reasons\": null, \"link_author\": \"GloomyTeddyBear96\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/vft9wGE\", \"created\": 1560342312.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzmm85\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtklpz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GloomyTeddyBear96\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560313501.0, \"send_replies\": true, \"parent_id\": \"t3_bzmm85\", \"score\": 1, \"author_fullname\": \"t2_3k2b5rqg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Imgur](https://imgur.com/a/vft9wGE)\", \"link_title\": \"Imgur test\", \"author_flair_css_class\": null, \"name\": \"t1_eqtklpz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/vft9wGE\\\"\\u003EImgur\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzmm85/imgur_test/eqtklpz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzmm85/imgur_test/\", \"report_reasons\": null, \"link_author\": \"GloomyTeddyBear96\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/vft9wGE\", \"created\": 1560342301.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eql2f7h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SilenceoftheSamz\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560135803.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_espuh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"nah\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eql2f7h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enah\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eql2f7h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560164603.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykfrf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqinbdb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560090124.0, \"send_replies\": true, \"parent_id\": \"t3_bykfrf\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I'm \\\\*pretty\\\\* sure I found it:\\n\\n\\\\[Not of This Earth\\\\]([https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz\\\\_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1](https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1))\", \"link_title\": \"NOTE post\", \"author_flair_css_class\": null, \"name\": \"t1_eqinbdb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m *pretty* sure I found it:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Not of This Earth](\\u003Ca href=\\\"https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\\"\\u003Ehttps://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykfrf/note_post/eqinbdb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykfrf/note_post/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykfrf/note_post/\", \"created\": 1560118924.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqin2uk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560090013.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\\\*\\\\[Umbrella Monster\\\\]\\\\*\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqin2uk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E*[Umbrella Monster]*\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqin2uk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118813.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimxup\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089940.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\\\[Umbrella Monster\\\\](\\\"[https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz\\\\_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1](https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1)\\\")\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimxup\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[Umbrella Monster](\\u0026quot;\\u003Ca href=\\\"https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\\"\\u003Ehttps://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\u003C/a\\u003E\\u0026quot;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimxup/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118740.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimw1d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089914.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[Umbrella Monster\\\\]([https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz\\\\_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1](https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1))\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimw1d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[Umbrella Monster](\\u003Ca href=\\\"https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\\"\\u003Ehttps://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimw1d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118714.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimf19\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089669.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\\\[Umbrella Monster\\\\]\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\" )\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimf19\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[Umbrella Monster]\\u0026quot;\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u003C/a\\u003E\\u0026quot; )\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimf19/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118469.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimcz5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089638.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n [Umbrella Monster](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimcz5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E[Umbrella Monster](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimcz5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118438.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimask\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089608.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n [Umbrella Monster](\\n\\n\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\" )\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimask\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E[Umbrella Monster](\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u003C/a\\u003E\\u0026quot; )\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimask/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118408.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqim6p5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089551.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"`[Umbrella Monster](`\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\" )\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqim6p5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003E[Umbrella Monster](\\u003C/code\\u003E\\u0026quot;\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u003C/a\\u003E\\u0026quot; )\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqim6p5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118351.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqim0dz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089457.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\"\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqim0dz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u003C/a\\u003E\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqim0dz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118257.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqilvoa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089394.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\u003Ca href=\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\"\\u003EUmbrella Monster\\u003C/a\\u003E\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqilvoa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;a href=\\u0026quot;[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\u0026quot;\\u0026gt;Umbrella Monster\\u0026lt;/a\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqilvoa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118194.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqilpg6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089308.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\u003Ca href=\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\\\\\\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003EUmbrella](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella)\\\"\\u003E\\u003C/a\\u003E\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqilpg6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;a href=\\u0026quot;[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\\\\\\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u0026quot;\\u0026gt;Umbrella](\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg%5D(http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella)%22%3E\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella)\\u0026quot;\\u0026gt;\\u003C/a\\u003E\\u0026lt;/a\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqilpg6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118108.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_eqilpg6\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["313020"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:25 GMT"], "x-ratelimit-remaining": ["590.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["10"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495025.313591,VS0,VE636"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["575"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-07-19T00:10:25"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_eu4mah1"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:27 GMT"], "x-ratelimit-remaining": ["589.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["11"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495027.987638,VS0,VE94"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["573"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_eu4mah1"}, "recorded_at": "2019-07-19T00:10:27"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"##Test\\n\\n##Test\\n\\n###1. Test\\n\\n- test\", \"author_fullname\": \"t2_46n97vgz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceye82\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563513418.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003ETest\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ETest\\u003C/h2\\u003E\\n\\n\\u003Ch3\\u003E1. Test\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Etest\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceye82\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dontthrowusawaypls\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ceye82/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ceye82/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563484618.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" Piano doon doon doon doon dan dan dan doon doon\\n Bass Boom Boom Boom Boom Boo-boo-boo Booo Boo\\n Vocal Is it Oooo Verrrrr\\n BkVoc oh OH ohhhhh-ohhh\", \"author_fullname\": \"t2_62urd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cex0z6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563478996.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563506949.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003EPiano doon doon doon doon dan dan dan doon doon\\nBass Boom Boom Boom Boom Boo-boo-boo Booo Boo\\nVocal Is it Oooo Verrrrr\\nBkVoc oh OH ohhhhh-ohhh\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cex0z6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Wynter_born\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cex0z6/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cex0z6/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563478149.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello friends!\\n\\nI see so many posts about people who want to get started with Dungeons and Dragons and the like and don\\u2019t know how to go about it. Also people getting back in to the game after a long break, like I was a year ago. I know the challenges grownups like me and my wife face meeting new friends because kids and/or work and other grownup nonsense take up most of our time.\\n\\nSo let us abandon the suck of the real world and set our minds upon the fantastical playground of D\\u0026D!\\n\\nWe will meet in East Mesa (Eastmark area, off the freeway) at my home every other weekend for a dedicated D\\u0026D campaign. If we get enough people, those that want to play D\\u0026D will and others that are more inclined to play board games can play whatever they feel like that night.\\n\\n**The goal is to create a diverse community of nerdy adults who love to use their imagination and just need some Dice Therapy.**\\n\\nI have a great DM that wants to run D\\u0026D's Waterdeep: Dragon Heist for our first game as a group. Also another GM who would love to run one-shots (typically a one-time game session) of different game systems.\\n\\n*DMs and GMs are highly encouraged to reach out as well. New people to these games are also crucial to the life of these games and also highly encouraged.*\\n\\nThank you so very much for reading this far. I know it\\u2019s a lot of words, but I wanted to be as clear as possible for potential members. *Over 21, please as there may be drinks consumed in moderation.*\\n\\nIf you wouldn't mind, there are three short questions here to help me get to know you a little, but it is not required.\\n\\n [https://forms.gle/ZMtSnVwYa3DQofFh6](https://forms.gle/ZMtSnVwYa3DQofFh6) \\n\\nThanks to you all.\", \"author_fullname\": \"t2_qiwaruf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cev28n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563497700.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello friends!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI see so many posts about people who want to get started with Dungeons and Dragons and the like and don\\u2019t know how to go about it. Also people getting back in to the game after a long break, like I was a year ago. I know the challenges grownups like me and my wife face meeting new friends because kids and/or work and other grownup nonsense take up most of our time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo let us abandon the suck of the real world and set our minds upon the fantastical playground of D\\u0026amp;D!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe will meet in East Mesa (Eastmark area, off the freeway) at my home every other weekend for a dedicated D\\u0026amp;D campaign. If we get enough people, those that want to play D\\u0026amp;D will and others that are more inclined to play board games can play whatever they feel like that night.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThe goal is to create a diverse community of nerdy adults who love to use their imagination and just need some Dice Therapy.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a great DM that wants to run D\\u0026amp;D\\u0026#39;s Waterdeep: Dragon Heist for our first game as a group. Also another GM who would love to run one-shots (typically a one-time game session) of different game systems.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EDMs and GMs are highly encouraged to reach out as well. New people to these games are also crucial to the life of these games and also highly encouraged.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you so very much for reading this far. I know it\\u2019s a lot of words, but I wanted to be as clear as possible for potential members. \\u003Cem\\u003EOver 21, please as there may be drinks consumed in moderation.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you wouldn\\u0026#39;t mind, there are three short questions here to help me get to know you a little, but it is not required.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://forms.gle/ZMtSnVwYa3DQofFh6\\\"\\u003Ehttps://forms.gle/ZMtSnVwYa3DQofFh6\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks to you all.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/M7SPJdGeKLCJOtiThScxZ7JTOLdPk3TtsXH5N23L6K8.jpg?auto=webp\\u0026s=e0316e09062c56af991e4df7553fbe5232b57011\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M7SPJdGeKLCJOtiThScxZ7JTOLdPk3TtsXH5N23L6K8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a5f77abe445344cceb2876440e0e85b6cbfca64d\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/M7SPJdGeKLCJOtiThScxZ7JTOLdPk3TtsXH5N23L6K8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=899d63f6ffdbc7e0e91740b86fda3289b14f0ded\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/M7SPJdGeKLCJOtiThScxZ7JTOLdPk3TtsXH5N23L6K8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d493eb8f67bb8d5c6a8cae96b75d92c82bfc44e8\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/M7SPJdGeKLCJOtiThScxZ7JTOLdPk3TtsXH5N23L6K8.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=0b1d549971f5d87d8cd2e9370fa6bbc1d7a8a425\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/M7SPJdGeKLCJOtiThScxZ7JTOLdPk3TtsXH5N23L6K8.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=02b4a97b23465a8131f98440532fa19b61d77503\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/M7SPJdGeKLCJOtiThScxZ7JTOLdPk3TtsXH5N23L6K8.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=4e5dd603b580cecf00b0e66f219dc3ea74fb8e4f\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"G3kYco8NqZsBaDgnt81qXiU8_6Uu8DH_D5h4oCjBc38\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cev28n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OdinMead\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cev28n/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cev28n/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563468900.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello r/medschoolanki,\\n\\nwe are 3 German medical students, u/Crylise, u/MadFlenser and me. u/MadFlenser made a post quite a while ago inviting people to join him to create a comprehensive Anki deck based on German Amboss. We then planned and created a structure and concept for the deck. We are now asking people to take part by creating cards to get all of the Top 100 (clinical) and Top 30 (preclinical) chapters done first. Let's get this thing on the road guys.\\n\\n###Objective\\nTogether with you guys we want to create 2 decks for now: \\n\\n1. Preclinical: Top 30 chapters\\n2. Clinical: Top 100 chapters.\\n\\nWe love Zanki and all the other decks that you guys have created, but using these when studying in Germany is suboptimal. We are passionate about Anki and want to do something for our German med students. There are different medical guidelines and different first line drugs for example. It's also easier to be quizzed about a topic when you have learned it in the same language. \\n\\nWe want to get these high-yield topics done first, but completing all of Amboss is definitely on the horizon, depending on how this goes. For this we would create new decks for different specialties, which should be easy enough if we tag properly now. \\n\\nI have huge respect for people like u/DocZay who can bust out whole decks in a week. Thing is we frankly don't have enough time to do it all on our own. We want to get a few more people on board so this gets done in a timely manner without making it a hassle for a few members. \\n\\n###How to help\\n\\nAlright you study in Germany and think this sounds pretty neat, now how can you help with his project exactly?\\n\\n[Join our Discord!](https://discord.gg/XXncRv7)\\n\\n[Here's a link to a GDrive folder.](https://drive.google.com/drive/folders/1uZ6EZ3xjdvJJmzj_di7o8WbhSirn27Bp)\\n\\nYou will find here:\\n\\n- Leitfaden: This is the guideline for what the cards should look like. Consistent formatting and tagging is important!\\n\\n- Fortschritt und Planung: This is a spreadsheet to track who does which chapters so we don't work on them at the same time and to track progress.\\n\\n- Two example .apkgs: Use these as another help for what cards should look like. When you add them to your Anki you will also get the right card type to use (Amboss_Cloze [Color]).\\n\\n- Two folders: Erstellt and Kontrolliert\\n\\n- A folder called Weitere Anki Decks: Put any of your own Anki decks that you want to share here. These are unsupervised, but we thought it would be great to collect them all in one place. Don't put copyrighted stuff (e.g. screenshots) in here though!\\n\\nAlright so shoot me a message on reddit or discord first so I can add you to the spreadsheet. Then choose one or a few chapters in \\\"Fortschritt und Planung\\\" and assign yourselves to them. Choose topics that you feel you understand already.\\n\\nCreate the deck and upload it to \\\"Erstellt\\\". Mark it as \\\"Fertig erstellt\\\" in the spreadsheet. When creating the deck please make sure to do practice questions on the topic as well to get a feel for how the information is quizzed exactly.\\n\\nNext **someone else** will check the deck for mistakes and optimize the cards. This person will then put the deck in \\\"Kontrolliert\\\" and u/Madflenser will merge it with the others.\\n\\nYou can also assign yourself to check decks for mistakes in the spreadsheets and download them from Erstellt.\\n\\nWe decided to have every chapter's cards checked by a different person to really make these cards high quality.\\n\\n###Thank you\\n\\nIf you decide to help out, thank you so much. We would be so happy and proud to be able to finish this soon and start sharing with our fellow students. Also thank you to all the English-speaking contributors on this subreddit, you are a huge inspiration.\", \"author_fullname\": \"t2_s1zqz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"German Anki Collaboration\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cessjl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563486892.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/medschoolanki\\\"\\u003Er/medschoolanki\\u003C/a\\u003E,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ewe are 3 German medical students, \\u003Ca href=\\\"/u/Crylise\\\"\\u003Eu/Crylise\\u003C/a\\u003E, \\u003Ca href=\\\"/u/MadFlenser\\\"\\u003Eu/MadFlenser\\u003C/a\\u003E and me. \\u003Ca href=\\\"/u/MadFlenser\\\"\\u003Eu/MadFlenser\\u003C/a\\u003E made a post quite a while ago inviting people to join him to create a comprehensive Anki deck based on German Amboss. We then planned and created a structure and concept for the deck. We are now asking people to take part by creating cards to get all of the Top 100 (clinical) and Top 30 (preclinical) chapters done first. Let\\u0026#39;s get this thing on the road guys.\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EObjective\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003ETogether with you guys we want to create 2 decks for now: \\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EPreclinical: Top 30 chapters\\u003C/li\\u003E\\n\\u003Cli\\u003EClinical: Top 100 chapters.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWe love Zanki and all the other decks that you guys have created, but using these when studying in Germany is suboptimal. We are passionate about Anki and want to do something for our German med students. There are different medical guidelines and different first line drugs for example. It\\u0026#39;s also easier to be quizzed about a topic when you have learned it in the same language. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe want to get these high-yield topics done first, but completing all of Amboss is definitely on the horizon, depending on how this goes. For this we would create new decks for different specialties, which should be easy enough if we tag properly now. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have huge respect for people like \\u003Ca href=\\\"/u/DocZay\\\"\\u003Eu/DocZay\\u003C/a\\u003E who can bust out whole decks in a week. Thing is we frankly don\\u0026#39;t have enough time to do it all on our own. We want to get a few more people on board so this gets done in a timely manner without making it a hassle for a few members. \\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EHow to help\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EAlright you study in Germany and think this sounds pretty neat, now how can you help with his project exactly?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/XXncRv7\\\"\\u003EJoin our Discord!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://drive.google.com/drive/folders/1uZ6EZ3xjdvJJmzj_di7o8WbhSirn27Bp\\\"\\u003EHere\\u0026#39;s a link to a GDrive folder.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou will find here:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ELeitfaden: This is the guideline for what the cards should look like. Consistent formatting and tagging is important!\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFortschritt und Planung: This is a spreadsheet to track who does which chapters so we don\\u0026#39;t work on them at the same time and to track progress.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETwo example .apkgs: Use these as another help for what cards should look like. When you add them to your Anki you will also get the right card type to use (Amboss_Cloze [Color]).\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETwo folders: Erstellt and Kontrolliert\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EA folder called Weitere Anki Decks: Put any of your own Anki decks that you want to share here. These are unsupervised, but we thought it would be great to collect them all in one place. Don\\u0026#39;t put copyrighted stuff (e.g. screenshots) in here though!\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAlright so shoot me a message on reddit or discord first so I can add you to the spreadsheet. Then choose one or a few chapters in \\u0026quot;Fortschritt und Planung\\u0026quot; and assign yourselves to them. Choose topics that you feel you understand already.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECreate the deck and upload it to \\u0026quot;Erstellt\\u0026quot;. Mark it as \\u0026quot;Fertig erstellt\\u0026quot; in the spreadsheet. When creating the deck please make sure to do practice questions on the topic as well to get a feel for how the information is quizzed exactly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext \\u003Cstrong\\u003Esomeone else\\u003C/strong\\u003E will check the deck for mistakes and optimize the cards. This person will then put the deck in \\u0026quot;Kontrolliert\\u0026quot; and \\u003Ca href=\\\"/u/Madflenser\\\"\\u003Eu/Madflenser\\u003C/a\\u003E will merge it with the others.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can also assign yourself to check decks for mistakes in the spreadsheets and download them from Erstellt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe decided to have every chapter\\u0026#39;s cards checked by a different person to really make these cards high quality.\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EThank you\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EIf you decide to help out, thank you so much. We would be so happy and proud to be able to finish this soon and start sharing with our fellow students. Also thank you to all the English-speaking contributors on this subreddit, you are a huge inspiration.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cessjl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MateFlasche\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cessjl/german_anki_collaboration/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cessjl/german_anki_collaboration/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563458092.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello r/medschoolanki,\\n\\n\\u0026#x200B;\\n\\nwe are 3 German medical students, u/Crylise, u/MadFlenser and me. u/MadFlenser made a post quite a while ago inviting people to join him to create a comprehensive Anki deck based on German Amboss. We then planned and created a structure and concept for the deck. We are now asking people to take part by creating cards to get all of the Top 100 (clinical) and Top 30 (preclinical) chapters done first. Let's get this thing on the road guys.\\n\\n\\u0026#x200B;\\n\\n\\\\###Objective\\n\\nTogether with you guys we want to create 2 decks for now: \\n\\n\\u0026#x200B;\\n\\n1. Preclinical: Top 30 chapters\\n\\n2. Clinical: Top 100 chapters.\\n\\n\\u0026#x200B;\\n\\nWe love Zanki and all the other decks that you guys have created, but using these when studying in Germany is suboptimal. We are passionate about Anki and want to do something for our German med students. There are different medical guidelines and different first line drugs for example. It's also easier to be quizzed about a topic when you have learned it in the same language. \\n\\n\\u0026#x200B;\\n\\nWe want to get these high-yield topics done first, but completing all of Amboss is definitely on the horizon, depending on how this goes. For this we would create new decks for different specialties, which should be easy enough if we tag properly now. \\n\\n\\u0026#x200B;\\n\\nI have huge respect for people like u/DocZay who can bust out whole decks in a week. Thing is we frankly don't have enough time to do it all on our own. We want to get a few more people on board so this gets done in a timely manner without making it a hassle for a few members. \\n\\n\\u0026#x200B;\\n\\n\\\\###How to help\\n\\n\\u0026#x200B;\\n\\nAlright you study in Germany and think this sounds pretty neat, now how can you help with his project exactly?\\n\\n\\u0026#x200B;\\n\\n\\\\[Join our Discord!\\\\]([https://discord.gg/XXncRv7](https://discord.gg/XXncRv7))\\n\\n\\u0026#x200B;\\n\\n\\\\[Here's a link to a GDrive folder.\\\\]([https://drive.google.com/drive/folders/1uZ6EZ3xjdvJJmzj\\\\_di7o8WbhSirn27Bp](https://drive.google.com/drive/folders/1uZ6EZ3xjdvJJmzj_di7o8WbhSirn27Bp))\\n\\n\\u0026#x200B;\\n\\nYou will find here:\\n\\n\\u0026#x200B;\\n\\n\\\\- Leitfaden: This is the guideline for what the cards should look like. Consistent formatting and tagging is important!\\n\\n\\u0026#x200B;\\n\\n\\\\- Fortschritt und Planung: This is a spreadsheet to track who does which chapters so we don't work on them at the same time and to track progress.\\n\\n\\u0026#x200B;\\n\\n\\\\- Two example .apkgs: Use these as another help for what cards should look like. When you add them to your Anki you will also get the right card type to use (Amboss\\\\_Cloze \\\\[Color\\\\]).\\n\\n\\u0026#x200B;\\n\\n\\\\- Two folders: Erstellt and Kontrolliert\\n\\n\\u0026#x200B;\\n\\n\\\\- A folder called Weitere Anki Decks: Put any of your own Anki decks that you want to share here. These are unsupervised, but we thought it would be great to collect them all in one place. Don't put copyrighted stuff (e.g. screenshots) in here though!\\n\\n\\u0026#x200B;\\n\\nAlright so shoot me a message on reddit or discord first so I can add you to the spreadsheet. Then choose one or a few chapters in \\\"Fortschritt und Planung\\\" and assign yourselves to them. Choose topics that you feel you understand already.\\n\\n\\u0026#x200B;\\n\\nCreate the deck and upload it to \\\"Erstellt\\\". Mark it as \\\"Fertig erstellt\\\" in the spreadsheet. When creating the deck please make sure to do practice questions on the topic as well to get a feel for how the information is quizzed exactly.\\n\\n\\u0026#x200B;\\n\\nNext \\\\*\\\\*someone else\\\\*\\\\* will check the deck for mistakes and optimize the cards. This person will then put the deck in \\\"Kontrolliert\\\" and u/Madflenser will merge it with the others.\\n\\n\\u0026#x200B;\\n\\nYou can also assign yourself to check decks for mistakes in the spreadsheets and download them from Erstellt.\\n\\n\\u0026#x200B;\\n\\nWe decided to have every chapter's cards checked by a different person to really make these cards high quality.\\n\\n\\u0026#x200B;\\n\\n\\\\###Thank you\\n\\n\\u0026#x200B;\\n\\nIf you decide to help out, thank you so much. We would be so happy and proud to be able to finish this soon and start sharing with our fellow students. Also thank you to all the English-speaking contributors on this subreddit, you are a huge inspiration.\", \"author_fullname\": \"t2_s1zqz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"German Anki Collaboration\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceso4r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563486241.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/medschoolanki\\\"\\u003Er/medschoolanki\\u003C/a\\u003E,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ewe are 3 German medical students, \\u003Ca href=\\\"/u/Crylise\\\"\\u003Eu/Crylise\\u003C/a\\u003E, \\u003Ca href=\\\"/u/MadFlenser\\\"\\u003Eu/MadFlenser\\u003C/a\\u003E and me. \\u003Ca href=\\\"/u/MadFlenser\\\"\\u003Eu/MadFlenser\\u003C/a\\u003E made a post quite a while ago inviting people to join him to create a comprehensive Anki deck based on German Amboss. We then planned and created a structure and concept for the deck. We are now asking people to take part by creating cards to get all of the Top 100 (clinical) and Top 30 (preclinical) chapters done first. Let\\u0026#39;s get this thing on the road guys.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Objective\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETogether with you guys we want to create 2 decks for now: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPreclinical: Top 30 chapters\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EClinical: Top 100 chapters.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe love Zanki and all the other decks that you guys have created, but using these when studying in Germany is suboptimal. We are passionate about Anki and want to do something for our German med students. There are different medical guidelines and different first line drugs for example. It\\u0026#39;s also easier to be quizzed about a topic when you have learned it in the same language. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe want to get these high-yield topics done first, but completing all of Amboss is definitely on the horizon, depending on how this goes. For this we would create new decks for different specialties, which should be easy enough if we tag properly now. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have huge respect for people like \\u003Ca href=\\\"/u/DocZay\\\"\\u003Eu/DocZay\\u003C/a\\u003E who can bust out whole decks in a week. Thing is we frankly don\\u0026#39;t have enough time to do it all on our own. We want to get a few more people on board so this gets done in a timely manner without making it a hassle for a few members. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###How to help\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlright you study in Germany and think this sounds pretty neat, now how can you help with his project exactly?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Join our Discord!](\\u003Ca href=\\\"https://discord.gg/XXncRv7\\\"\\u003Ehttps://discord.gg/XXncRv7\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Here\\u0026#39;s a link to a GDrive folder.](\\u003Ca href=\\\"https://drive.google.com/drive/folders/1uZ6EZ3xjdvJJmzj_di7o8WbhSirn27Bp\\\"\\u003Ehttps://drive.google.com/drive/folders/1uZ6EZ3xjdvJJmzj_di7o8WbhSirn27Bp\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou will find here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Leitfaden: This is the guideline for what the cards should look like. Consistent formatting and tagging is important!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Fortschritt und Planung: This is a spreadsheet to track who does which chapters so we don\\u0026#39;t work on them at the same time and to track progress.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Two example .apkgs: Use these as another help for what cards should look like. When you add them to your Anki you will also get the right card type to use (Amboss_Cloze [Color]).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Two folders: Erstellt and Kontrolliert\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- A folder called Weitere Anki Decks: Put any of your own Anki decks that you want to share here. These are unsupervised, but we thought it would be great to collect them all in one place. Don\\u0026#39;t put copyrighted stuff (e.g. screenshots) in here though!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlright so shoot me a message on reddit or discord first so I can add you to the spreadsheet. Then choose one or a few chapters in \\u0026quot;Fortschritt und Planung\\u0026quot; and assign yourselves to them. Choose topics that you feel you understand already.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECreate the deck and upload it to \\u0026quot;Erstellt\\u0026quot;. Mark it as \\u0026quot;Fertig erstellt\\u0026quot; in the spreadsheet. When creating the deck please make sure to do practice questions on the topic as well to get a feel for how the information is quizzed exactly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext **someone else** will check the deck for mistakes and optimize the cards. This person will then put the deck in \\u0026quot;Kontrolliert\\u0026quot; and \\u003Ca href=\\\"/u/Madflenser\\\"\\u003Eu/Madflenser\\u003C/a\\u003E will merge it with the others.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can also assign yourself to check decks for mistakes in the spreadsheets and download them from Erstellt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe decided to have every chapter\\u0026#39;s cards checked by a different person to really make these cards high quality.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Thank you\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you decide to help out, thank you so much. We would be so happy and proud to be able to finish this soon and start sharing with our fellow students. Also thank you to all the English-speaking contributors on this subreddit, you are a huge inspiration.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceso4r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MateFlasche\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ceso4r/german_anki_collaboration/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ceso4r/german_anki_collaboration/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563457441.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hi folks, \\n\\n\\u0026#x200B;\\n\\nAny feedback is welcome whether it's advice, TLC, or some hard home-truths. I'll be as succinct as I can be:\\\\* \\n\\n^(\\\\*having just finished I can see that I've given a lot of history and can be a bit 'ranty' at times. I hope it's still worth reading.)\\n\\n\\u0026#x200B;\\n\\nTL/DR:\\u003E!Allow financially ruined MIL to move in; snoop on MIL's phone; discover MIL's revived gambling addiction; discover MIL slandering me to DW and BIL1; I want MIL gone but DW doesn't; I've actually become the bully.!\\u003C\\n\\n\\u0026#x200B;\\n\\n**The distant past**\\n\\nI started dating my wife (DW) 18 years ago (we're both 36 now) and have been married the last 7. DW comes from a different cultural background (W. African) but has grown up here in the UK since the latter part of her childhood.\\n\\n\\u0026#x200B;\\n\\nI have always got on well with MIL as she is an amiable person who is very good at making friends. There are some cultural issues that I struggled to accept. For example, there is an expectation to almost venerate anyone even slightly older (I've seen DW look down on people 6 months her junior) even if their character or actions are not worthy of respect. I feel that MIL has used such cultural differences to subtly manipulate her children in an effort to shield herself not just from criticism but from a mere questioning of her position.\\n\\n\\u0026#x200B;\\n\\nOn a personal level, MIL is just absolutely terrible with money; she is very materialistic and flashy; she has a gambling problem; has spent years out of work; been indebted to loan sharks; applied for store cards in her childrens' names. I initially found it quite shocking when we started dating at 18 years of age that MIL's BF would march DW crying to the nearest ATM to withdraw cash from the little money she earned from her Saturday job. If my DW did not acquiesce she was called 'stingy' or made to feel that she was ungrateful towards her mother. \\n\\n\\u0026#x200B;\\n\\nThis all came to a head at the start of the recession in 2009 when MIL declared herself bankrupt. I'm not sure of the exact details but she was able to avoid foreclosure of her home and continued to live there until around 2016 when the eventual rise in property prices meant the bank would be able to recover their debts. Although she was unemployed for almost all of this period she did make a successful effort to curb her gambling and limit her extravagance. She also rented out literally every room in her house to source an income, and, of course, continued to 'borrow' thousands from DW and BIL1,2,3\\n\\n\\u0026#x200B;\\n\\nThis time roughly coincides with the birth of our daughter (DD) who was/is extremely sick. DD has a very complex heart and lung disease as a result of a genetic disorder and spent most of the first 2 years of life in hospital. I have lost count of the number of surgeries and interventions she has had or the number of times that we've been told that 'this was it'. I have had to perform CPR on her myself on 2 occasions. Around the time of my daughter's second birthday her health had begun to make a turn for the better and it looked as though we might be discharged home for good. However, DD would be coming home on a ventilator and would need constant 1:1 supervision. \\n\\n\\u0026#x200B;\\n\\nWith my MIL's pending homelessness and our obvious need for practical support someone had the bright idea (I don't even know who's idea it was) that MIL moves in with us. I was apprehensive given her poor financial history and I thought that living with someone who demanded the respect she did might be difficult. Further still, it was obvious (certainly now) that it would be very difficult to extricate ourselves from this arrangement without causing a great deal of upset. BIL1,2,3 all had their own properties but no room for MIL and although we were renting we were the only ones with room for her. \\n\\n\\u0026#x200B;\\n\\nI eventually agreed that she could live in our house and said that I would expect no rent from her. Firstly, I thought she could do with a helping hand in finding her feet again, financially speaking; secondly, that by accepting rent from her would grant her tenant rights and would make it difficult to ask her to leave should things not work out. This arrangement was conditional on the understanding that whatever money she would recover from the sale of her property (less debts) she would gift towards a deposit for a more suitable property for the benefit of us all. If we found ourselves in financial difficulty we would expect her to contribute whatever she could to keep a roof over our heads and we would expect her help with the domestic running of the house and the care of our daughter. Lastly, she should never, ever ask us for money again.\\n\\n\\u0026#x200B;\\n\\nAs it happens, she contributed nothing towards a deposit after she moved in. I expected that there might be little or nothing left over the sale of her property when accounting for her debts so this did not surprise me, however, it was irritating to find her cagey when asked about the matter (remember that she doesn't like being questioned) and was always vague when asked about the precise numbers involved. Oh well!\\n\\n\\u0026#x200B;\\n\\nShe did find work again but also found herself back in the local casinos. Whilst I thought this was very foolish on her part I was also a little sympathetic that she had no social life. She had, after all, lost many of her friends through arguments over money. At least this was a way to get her out of the house and if she wasn't troubling me or DW for money then what did it matter? Being bankrupt meant that she had no access to 'traditional' credit so it would be difficult for her to cause any financial difficulties for us in any case. However, she soon began asking her children for money to which they always caved in. I just don't understand! She an addict guys, you're not helping her! Aside from the fact this is breaking a second condition for her moving in, I don't understand how someone with a steady income and with no outgoings is having to beg for money. \\n\\n\\u0026#x200B;\\n\\nAs part of her domestic contribution, DW would ask MIL to pick up essential household items. This too soon descended into farce; MIL would refuse to pay even \\u00a32 for a load of bread and pint of milk, not even on a you-now-owe-me-\\u00a32-I-collect-later basis. MIL would stand in front at a cashier for up to 30 minutes on the phone to DW harassing her to transfer some money. Often this would be when DW was dealing with an emergent situation with my daughter and couldn't respond. I cannot understand how you cannot spare two fricking pounds!! To resolve the issue DW thought it would be a good idea to give the MIL a debit card to an unused bank account where we would put in money from our joint account to use entirely for these sort of circumstances. Her argument would be that it would give us more visibility on what the money was being spent on. Stupidly, I agreed.\\n\\n\\u0026#x200B;\\n\\nVery soon I was seeing payments for fuel, the occasional spend at a department store, or a cash withdrawal. There was never anything super extravagant but it would always be hidden amongst other household expenditure and would occasionally cause the account to go overdrawn. I began to grow more frustrated; not only did she not contribute anything from the sale of her property, and not only is she not contributing anything from her current income, she was becoming a financial drain. I don't mind helping anyone out but we are not talking about someone going through hard times (we still willingly send money to her Dad in W Africa) or someone who is sick, elderly, or diabled. We are talking about a grown woman of working age who is in full-time employment and who should have learned a very hard lesson about financial management by now. At the very least she should be thinking of her own future and retirement and using the last years of her working life to save at least something to live on.\\n\\n\\u0026#x200B;\\n\\nAt this point the cultural paradigm of having to frequently gift one's elders with money was beginning to cause division between DW and I. When I would ask DW about such transactions she would attempt to cover up MIL's behaviour by trying to claim some of these transactions were made on her behalf. Ultimately, DW thinks that I should just let this low-level theft slide. I think from the sake of my own sanity that she's right but I just cannot understand why DW and BIL1,2,3 do not stand up to MIL. \\n\\n\\u0026#x200B;\\n\\nIn her favour, MIL was actually very good with the domestic running of the house; always making sure meals were cooked and that the laundry was done. DW thinks I am ungrateful and fail to recognise what she does do, but whilst I am actually very grateful I point out that this was a condition of her moving in. \\n\\n\\u0026#x200B;\\n\\nThere are there are the other typical issues that go with living with a MIL (and this MIL in particular). Aside from the obvious loss of privacy I feel that she would try to influence my daughter's upbringing in a way I'm not totally comfortable with. She would chastise my daughter's carers over petty things like the way they might greet her in the morning. Whilst she is very good at cooking and she leaves dirt and grease all over the kitchen and finger print marks on the walls throughout the house. She's heavy handed and constantly breaks things. Just the usual living-with-other-people stuff that I might ordinarily let slide but when coupled with the other issues her presence eventually became like a dripping tap and I knew I would snap very soon.\\n\\n\\u0026#x200B;\\n**The recent past\\\\***\\n\\n^(\\\\*3 months ago.)\\n\\nDW and I have both tried to work despite having a very sick child. We aspire to move out of the ghetto we live in and lead as normal and happy a life as possible given our circumstances. DW earns at least twice as much as I do but there is so much more of a demand on her in her role, particularly in terms of commuting and travelling overseas. On the other hand, I work two miles from our home, in a role I have more a less defined myself, and for an employer who is very easy to impress. Therefore, it makes sense that it falls upon me to do the pick-up and drop-off for DD, and although both DW and I attend the more important appointments, it is solely up to me to attend the many less important ones she has. I am left with DD after she comes back from school until DW comes home in the evening, and it usually falls upon me to do my daughter's daily medical cares with one of our carers. I'm not looking for pity as DW does a tremendous amount to balance a demanding job with looking after DD, but if anything goes wrong it it the unspoken expectation that I be the one to pick things up.\\n\\n\\u0026#x200B;\\n\\nBoth our employer's have been extremely flexible with us particularly when our daughter's been in hospital. DW thinks i can do better for myself. Whilst I agree, I think that given how hard, under present circumstances, to give enough to an already flexible employer, in a role I should be able to do with my eyes closed, that it would be almost impossible to take on a more demanding role.\\n\\n\\u0026#x200B;\\n\\nMIL is supposed to help look after our daughter some afternoons and during school breaks whilst I 'work from home', but I often found myself pulled away from my work as MIL has become preoccupied; preparing a meal (I know I shouldn't moan about that) or getting ready for bingo (which I feel okay to moan about). I have found her to be carelessly inattentive; occasionally she has brought a 2 y/o cousin round and I have often caught him about to run out onto the road and once had found him at the bottom of the stairs after having fallen down from the top. Basically, I am picking up more of the slack than DW realises and my position at work is becoming increasingly untenable.\\n\\n\\u0026#x200B;\\n\\n\\nOne day this spring break, the MIL disappeared on three separate occasions when she was supposed to be looking after DD. The first was to go to the supermarket, the second to visit a friend, and the last to go to the casino. I'm supposed to be getting work done from home and she had already agreed to childmind so I begin to quietly seethe. When DW came home that evening I blew up over all the issues with MIL and what I saw as DW's unwillingness to challenge her. I felt that she was refusing to see how her behaviour was becoming impossibly burdensome to the family but particularly to me. I left home and stayed at a hotel for a few nights primarily to get away from it all but also to put DW in the position I was in. i.e. having to juggle care whilst doing a full-time job. In hindsight I've not been able to decide if going away for a few nights was a good idea or not; certainly, for my sake of mind it felt like I had no other option but since returning home I have begun to suspect that MIL has started to turn DW against me.\\n\\n\\u0026#x200B;\\n\\nThings settle down a bit and we spent the following weekend with some family friends. On the way back, DW gets a call from MIL to say she has found some a bug in her bed and that we (DW and I) will have to pay \\u00a3300 to have her room fumigated. I say nothing but find myself keeping my feelings bottled up once again. I have no idea where these bed bugs but the infestation seems confined to MIL's room, yet we find ourselves having to pay for it despite her never paying a frigging penny in the house!\\n\\n\\u0026#x200B;\\n\\nNot a few days later I see two separate \\u00a3100 cash withdrawals from the card the MIL had been given so now I'm furious. I ask DW about these and she has no idea what they're about. She calls her mum and apparently an Aunty had left her purse on the train so MIL had decided to give \\u00a3200 of *our* money away without even asking. At this point I am about to blow my top!\\n\\n\\u0026#x200B;\\n\\nThe next day (or the day after) I see MIL's phone alone in the kitchen and knowing she has no security on it I decide to snoop through her messages (remember to give it to me straight, Reddit). My intention was to see any messages between this Aunty and MIL that either verified or otherwise her version of events. What I see are messages that show that on a typical night that they are at the casino (maybe 3/4 times a week) they might spend \\u00a3200-300 a night. In one message I see that MIL is asking Aunty to transfer \\\\~\\u00a31200 to her account. I don't know if this was because it was shared winnings or if it was to cover a significant loss but its clear to me the sums of money they are dealing in. Bear in mind that she cannot even spend a mere \\u00a32 on bread and milk. I am almost apoplectic, but not quite.\\n\\n\\u0026#x200B;\\n\\nSuspecting that MIL was turning her against me I decided to snoop further. What I see are messages calling me selfish, a bully, an idiot, a chameleon who pretends to be nice to her face. These are a little irritating to see but do not over concern me because there is probably some truth in them all; having children has certainly made me realise that I am more selfish than I had noticed, and perhaps I truly am an idiot for letting MIL into our home. I do pretend to be nice to her despite my feelings for the sake of peace in my home so I see the chameleon thing more as a compliment that the insult it was intended to be.\\n\\n\\u0026#x200B;\\n\\nWhat was more troubling were messages along the lines of 'he's not worth it'. I sense the implication behind those words, but having since asked DW what she thought MIL meant I have yet to receive a straight answer. The closest I get to an answer from DW is that 'I am my own woman and can make up my own mind!'.\\n\\n\\u0026#x200B;\\n\\nWhat really blind-sided me was the message she had sent to BIL1 accusing me of abandoning DD. She said almost unintelligibly 'whys his pledge to his daughter?' and 'he calls himself a dad, pfft'. She made out that I didn't like spending time with DD. BIL1;s response was merely that I am an attention seeker. Again, DW has since tried to downplay these remarks because MIL doesn't explicitly say 'ex1076 is a terrible father', but for me the intent is there.\\n\\n\\u0026#x200B;\\n\\nAfter seeing these messages I immediately approached DW to ask if she though I was a bad father. She looked shocked at the question and firmly said 'no' but asked who had said that I was. I told DW it was MIL that said this and with MIL being in the next room I immediately confronted her about it. She tried to play dumb and DW asked where this had all come from. I told her she had better ask BIL1. I went upstairs to get a few things before heading out and punched the wall in a fit of rage and ended up breaking my hand.\\n\\n\\u0026#x200B;\\n\\nI have long had issues with anger but I have learned over time to become more stoic. This was a total failure! In hindsight I feel disappointed not in the harm I caused myself but that I couldn't use this anger more constructively (or cunningly). In any case these were just the opinions of an imbecile and shouldn't have mattered to me. I think because of all the trauma we have been through with the well-being of DD, seeing her so close to death so many times, it was hard to hear anyone question my fatherhood. No-one could say that either DW or I have been any less than totally and utterly devoted to DD but yet here they were doing just that. This felt like an attack on my perception of reality and my extension my very sanity. \\n\\n\\u0026#x200B;\\n\\nThe MIL has since moved in with my BIL ostensibly because of the bed bugs. My anger has not even subsided a little bit since then and feel that MIL had stabbed me in the back. More worryingly I feel a little betrayed by DW too for even lending her ear to that sort of nonsense. I feel that we might be able to work things out if she appreciated just how strongly I feel about this or how much it matters but feel like I'm not being listened to at all. Consequnetly, our marriage has begun to suffer. \\n\\n\\u0026#x200B;\\n\\nAt a recent gathering with mutual friends I was asked if MIL was still living with us. I say 'no' and quickly move on. When someone later says to DW that they hear MIL has moved out she thinks I've been telling all and sundry about our family life. She looks at me with total contempt and says that MIL and I have just had a 'tiff' and that no-one has moved out. I'm being made to feel like I'm just having a 'hissy fit'.\\n\\n\\u0026#x200B;\\n\\nDW tells me that she cannot kick her own mother of our house and feels that I am forcing her to make an unreasonable choice between MIL on one hand and me on the other. I can see why she might think this but it is a inaccurate perception. My request is not that she must never talk to MIL again but that I should not be forced to live with a woman that I neither chose to marry or bring into this world. MIL's claims of me being a bully are suddenly becoming self-fulfilling as it seems (from their point of view) that I am trying to control who DW has contact with. \\n\\n\\u0026#x200B;\\n\\nIn DW's mind her mind, MIL hasn't left at all but as far as I am concerned she is gone for good. To avoid being seen as trying to to stoke the flames I have foolishly not forced the issue of what to do with MIL's belongings. In hindsight, I think this may have given the impression that there is a possibility that may change my position.\\n\\n\\u0026#x200B;\\n\\nI would like to sit down, just the two of us, to work out our differences but DW wants a three-way discussion involving MIL which I see as an attempt to coerce me to into letting MIL stay. When I ask for a one to one conversation she says that I am too difficult to talk to. She is probably right too but I refuse to have my intelligence insulted with horse-shit excuses on behalf of MIL. Increasingly, it feels like there is a growing gulf between us and I worry resentment is beginning to set in.\\n\\n\\u0026#x200B;\\n\\n**The now**\\n\\nThis Sunday, whilst we were doing our daughter's medical cares, we hear someone coming through the front door. DW pops her head out of my daughter's bedroom and see that it's MIL. We finish up and I make it clear to DW that I want MIL to leave. I tell her that her being in the house is as provactive as if I brought my (hypothetical) girlfriend round and I'm liable to say some unpleasant things if she says. DW was typically dismissive and I was made to feel like I was acting up. I stayed upstairs out of the way for the next 5, 15, 45 minutes. Eventually MIL goes and I ask DW if she let her know that she cannot be here whilst I am in the house. She answered in the negative and said MIL would coming back shortly. I simply repeated my request. MIL did come back and left again soon after and this happened a couple more times. The last time she came back she came with FIL who had arrived in the UK just 2 days prior. I repeat my displeasure to DW several more times but my concerns are dismissed.\\n\\n\\u0026#x200B;\\n\\nIn the end I go down and confront MIL who is in the kitchen cooking a meal for FIL. I ask her to tell me what this supposed pledge to me daughter is that I broke. She just looks disdainfully at me and starts playing dumb. At this point I lose patience in playing these games and tell her to leave. She tells me she's not going anywhere, kisses her teeth, and turns back to her cooking. I just see red! I grab the saucepan and throw it across the floor (very stupid, yes, I know) before shouting at her to leave. Chaos descend with much shouting and pointing fingers in each others faces. I point out her hyrocisy as she 'abandoned' her own children to a supposedly abusive man in Africa whilst she sought out employment here. I said much, much nastier and personal stuff. She threatened to call the police which I encouraged her to, but she didn't. She did eventually leave but the argument rumled on between DW and I with FIL seemingly oblivious to events of the past few months.\\n\\n\\u0026#x200B;\\n\\nIt was a bizarre afternoon, with my parents showing up out of the blue (everyone has a key and our house seems to have a revolving door). Later on BIL1,2 barge their way into the house push, slap, and attempt to punch me. It's all a frigging circus at this point; I'm shouting at everyone to leave, DW is screaming at everybody hysterically, BIL1 is threatening to cut my throat. At this point I have no option but to call the police myself. \\n\\n\\u0026#x200B;\\n\\nBy the time the police show up BIL1,2 have gone. Statements are taken and assurances are given that they will follow up on allegations of assault. I said that I didn't want to press charges unless they show up again. However, the police ask me to spend the night away from home until things cool down. \\n\\n\\u0026#x200B;\\n\\n**The future?**\\n\\nIt all feels like a bit of a game, like we're all acting out our perceived roles in the Karpman drama triangle (and their definitely is an element of acting). I've decided that I want to stop playing this game and have cut off contact until I'm asked to do otherwise. Apart from a brief 10 minutes to collect some belongings I have haven't been back. I'm just waiting for more accusations that I've again abandoned my family. This week we were supposed to be on what would have been our first vacation in five years. As it happens I've confined myself to a room in my parent's house to mull things over.\\n\\n\\u0026#x200B;\\n\\nI don't even know what to do any more. I'm afraid I've become the bully that MIL said I am. This is challenging my perception of reality and actually driving me insane. Then again, how many bullies thinks of themselves as such? I don't think it's true but if that's how DW sees me then it doesn't really matter what I think.\\n\\n\\u0026#x200B;\\n\\nI would really appreciate some sage advice right now.\", \"author_fullname\": \"t2_7c46o\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"DW refuses to let MIL go and now I'm a bully\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cegpiy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563416733.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny feedback is welcome whether it\\u0026#39;s advice, TLC, or some hard home-truths. I\\u0026#39;ll be as succinct as I can be:* \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\\\\\u003C/sup\\u003Ehaving just finished I can see that I\\u0026#39;ve given a lot of history and can be a bit \\u0026#39;ranty\\u0026#39; at times. I hope it\\u0026#39;s still worth reading.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETL/DR:\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003EAllow financially ruined MIL to move in; snoop on MIL\\u0026#39;s phone; discover MIL\\u0026#39;s revived gambling addiction; discover MIL slandering me to DW and BIL1; I want MIL gone but DW doesn\\u0026#39;t; I\\u0026#39;ve actually become the bully.\\u003C/span\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThe distant past\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI started dating my wife (DW) 18 years ago (we\\u0026#39;re both 36 now) and have been married the last 7. DW comes from a different cultural background (W. African) but has grown up here in the UK since the latter part of her childhood.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have always got on well with MIL as she is an amiable person who is very good at making friends. There are some cultural issues that I struggled to accept. For example, there is an expectation to almost venerate anyone even slightly older (I\\u0026#39;ve seen DW look down on people 6 months her junior) even if their character or actions are not worthy of respect. I feel that MIL has used such cultural differences to subtly manipulate her children in an effort to shield herself not just from criticism but from a mere questioning of her position.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn a personal level, MIL is just absolutely terrible with money; she is very materialistic and flashy; she has a gambling problem; has spent years out of work; been indebted to loan sharks; applied for store cards in her childrens\\u0026#39; names. I initially found it quite shocking when we started dating at 18 years of age that MIL\\u0026#39;s BF would march DW crying to the nearest ATM to withdraw cash from the little money she earned from her Saturday job. If my DW did not acquiesce she was called \\u0026#39;stingy\\u0026#39; or made to feel that she was ungrateful towards her mother. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis all came to a head at the start of the recession in 2009 when MIL declared herself bankrupt. I\\u0026#39;m not sure of the exact details but she was able to avoid foreclosure of her home and continued to live there until around 2016 when the eventual rise in property prices meant the bank would be able to recover their debts. Although she was unemployed for almost all of this period she did make a successful effort to curb her gambling and limit her extravagance. She also rented out literally every room in her house to source an income, and, of course, continued to \\u0026#39;borrow\\u0026#39; thousands from DW and BIL1,2,3\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis time roughly coincides with the birth of our daughter (DD) who was/is extremely sick. DD has a very complex heart and lung disease as a result of a genetic disorder and spent most of the first 2 years of life in hospital. I have lost count of the number of surgeries and interventions she has had or the number of times that we\\u0026#39;ve been told that \\u0026#39;this was it\\u0026#39;. I have had to perform CPR on her myself on 2 occasions. Around the time of my daughter\\u0026#39;s second birthday her health had begun to make a turn for the better and it looked as though we might be discharged home for good. However, DD would be coming home on a ventilator and would need constant 1:1 supervision. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith my MIL\\u0026#39;s pending homelessness and our obvious need for practical support someone had the bright idea (I don\\u0026#39;t even know who\\u0026#39;s idea it was) that MIL moves in with us. I was apprehensive given her poor financial history and I thought that living with someone who demanded the respect she did might be difficult. Further still, it was obvious (certainly now) that it would be very difficult to extricate ourselves from this arrangement without causing a great deal of upset. BIL1,2,3 all had their own properties but no room for MIL and although we were renting we were the only ones with room for her. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI eventually agreed that she could live in our house and said that I would expect no rent from her. Firstly, I thought she could do with a helping hand in finding her feet again, financially speaking; secondly, that by accepting rent from her would grant her tenant rights and would make it difficult to ask her to leave should things not work out. This arrangement was conditional on the understanding that whatever money she would recover from the sale of her property (less debts) she would gift towards a deposit for a more suitable property for the benefit of us all. If we found ourselves in financial difficulty we would expect her to contribute whatever she could to keep a roof over our heads and we would expect her help with the domestic running of the house and the care of our daughter. Lastly, she should never, ever ask us for money again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it happens, she contributed nothing towards a deposit after she moved in. I expected that there might be little or nothing left over the sale of her property when accounting for her debts so this did not surprise me, however, it was irritating to find her cagey when asked about the matter (remember that she doesn\\u0026#39;t like being questioned) and was always vague when asked about the precise numbers involved. Oh well!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe did find work again but also found herself back in the local casinos. Whilst I thought this was very foolish on her part I was also a little sympathetic that she had no social life. She had, after all, lost many of her friends through arguments over money. At least this was a way to get her out of the house and if she wasn\\u0026#39;t troubling me or DW for money then what did it matter? Being bankrupt meant that she had no access to \\u0026#39;traditional\\u0026#39; credit so it would be difficult for her to cause any financial difficulties for us in any case. However, she soon began asking her children for money to which they always caved in. I just don\\u0026#39;t understand! She an addict guys, you\\u0026#39;re not helping her! Aside from the fact this is breaking a second condition for her moving in, I don\\u0026#39;t understand how someone with a steady income and with no outgoings is having to beg for money. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs part of her domestic contribution, DW would ask MIL to pick up essential household items. This too soon descended into farce; MIL would refuse to pay even \\u00a32 for a load of bread and pint of milk, not even on a you-now-owe-me-\\u00a32-I-collect-later basis. MIL would stand in front at a cashier for up to 30 minutes on the phone to DW harassing her to transfer some money. Often this would be when DW was dealing with an emergent situation with my daughter and couldn\\u0026#39;t respond. I cannot understand how you cannot spare two fricking pounds!! To resolve the issue DW thought it would be a good idea to give the MIL a debit card to an unused bank account where we would put in money from our joint account to use entirely for these sort of circumstances. Her argument would be that it would give us more visibility on what the money was being spent on. Stupidly, I agreed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVery soon I was seeing payments for fuel, the occasional spend at a department store, or a cash withdrawal. There was never anything super extravagant but it would always be hidden amongst other household expenditure and would occasionally cause the account to go overdrawn. I began to grow more frustrated; not only did she not contribute anything from the sale of her property, and not only is she not contributing anything from her current income, she was becoming a financial drain. I don\\u0026#39;t mind helping anyone out but we are not talking about someone going through hard times (we still willingly send money to her Dad in W Africa) or someone who is sick, elderly, or diabled. We are talking about a grown woman of working age who is in full-time employment and who should have learned a very hard lesson about financial management by now. At the very least she should be thinking of her own future and retirement and using the last years of her working life to save at least something to live on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt this point the cultural paradigm of having to frequently gift one\\u0026#39;s elders with money was beginning to cause division between DW and I. When I would ask DW about such transactions she would attempt to cover up MIL\\u0026#39;s behaviour by trying to claim some of these transactions were made on her behalf. Ultimately, DW thinks that I should just let this low-level theft slide. I think from the sake of my own sanity that she\\u0026#39;s right but I just cannot understand why DW and BIL1,2,3 do not stand up to MIL. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn her favour, MIL was actually very good with the domestic running of the house; always making sure meals were cooked and that the laundry was done. DW thinks I am ungrateful and fail to recognise what she does do, but whilst I am actually very grateful I point out that this was a condition of her moving in. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere are there are the other typical issues that go with living with a MIL (and this MIL in particular). Aside from the obvious loss of privacy I feel that she would try to influence my daughter\\u0026#39;s upbringing in a way I\\u0026#39;m not totally comfortable with. She would chastise my daughter\\u0026#39;s carers over petty things like the way they might greet her in the morning. Whilst she is very good at cooking and she leaves dirt and grease all over the kitchen and finger print marks on the walls throughout the house. She\\u0026#39;s heavy handed and constantly breaks things. Just the usual living-with-other-people stuff that I might ordinarily let slide but when coupled with the other issues her presence eventually became like a dripping tap and I knew I would snap very soon.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\n\\u003Cstrong\\u003EThe recent past\\\\\\u003C/strong\\u003E*\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\\\\\u003C/sup\\u003E3 months ago.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDW and I have both tried to work despite having a very sick child. We aspire to move out of the ghetto we live in and lead as normal and happy a life as possible given our circumstances. DW earns at least twice as much as I do but there is so much more of a demand on her in her role, particularly in terms of commuting and travelling overseas. On the other hand, I work two miles from our home, in a role I have more a less defined myself, and for an employer who is very easy to impress. Therefore, it makes sense that it falls upon me to do the pick-up and drop-off for DD, and although both DW and I attend the more important appointments, it is solely up to me to attend the many less important ones she has. I am left with DD after she comes back from school until DW comes home in the evening, and it usually falls upon me to do my daughter\\u0026#39;s daily medical cares with one of our carers. I\\u0026#39;m not looking for pity as DW does a tremendous amount to balance a demanding job with looking after DD, but if anything goes wrong it it the unspoken expectation that I be the one to pick things up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth our employer\\u0026#39;s have been extremely flexible with us particularly when our daughter\\u0026#39;s been in hospital. DW thinks i can do better for myself. Whilst I agree, I think that given how hard, under present circumstances, to give enough to an already flexible employer, in a role I should be able to do with my eyes closed, that it would be almost impossible to take on a more demanding role.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMIL is supposed to help look after our daughter some afternoons and during school breaks whilst I \\u0026#39;work from home\\u0026#39;, but I often found myself pulled away from my work as MIL has become preoccupied; preparing a meal (I know I shouldn\\u0026#39;t moan about that) or getting ready for bingo (which I feel okay to moan about). I have found her to be carelessly inattentive; occasionally she has brought a 2 y/o cousin round and I have often caught him about to run out onto the road and once had found him at the bottom of the stairs after having fallen down from the top. Basically, I am picking up more of the slack than DW realises and my position at work is becoming increasingly untenable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne day this spring break, the MIL disappeared on three separate occasions when she was supposed to be looking after DD. The first was to go to the supermarket, the second to visit a friend, and the last to go to the casino. I\\u0026#39;m supposed to be getting work done from home and she had already agreed to childmind so I begin to quietly seethe. When DW came home that evening I blew up over all the issues with MIL and what I saw as DW\\u0026#39;s unwillingness to challenge her. I felt that she was refusing to see how her behaviour was becoming impossibly burdensome to the family but particularly to me. I left home and stayed at a hotel for a few nights primarily to get away from it all but also to put DW in the position I was in. i.e. having to juggle care whilst doing a full-time job. In hindsight I\\u0026#39;ve not been able to decide if going away for a few nights was a good idea or not; certainly, for my sake of mind it felt like I had no other option but since returning home I have begun to suspect that MIL has started to turn DW against me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThings settle down a bit and we spent the following weekend with some family friends. On the way back, DW gets a call from MIL to say she has found some a bug in her bed and that we (DW and I) will have to pay \\u00a3300 to have her room fumigated. I say nothing but find myself keeping my feelings bottled up once again. I have no idea where these bed bugs but the infestation seems confined to MIL\\u0026#39;s room, yet we find ourselves having to pay for it despite her never paying a frigging penny in the house!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot a few days later I see two separate \\u00a3100 cash withdrawals from the card the MIL had been given so now I\\u0026#39;m furious. I ask DW about these and she has no idea what they\\u0026#39;re about. She calls her mum and apparently an Aunty had left her purse on the train so MIL had decided to give \\u00a3200 of \\u003Cem\\u003Eour\\u003C/em\\u003E money away without even asking. At this point I am about to blow my top!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next day (or the day after) I see MIL\\u0026#39;s phone alone in the kitchen and knowing she has no security on it I decide to snoop through her messages (remember to give it to me straight, Reddit). My intention was to see any messages between this Aunty and MIL that either verified or otherwise her version of events. What I see are messages that show that on a typical night that they are at the casino (maybe 3/4 times a week) they might spend \\u00a3200-300 a night. In one message I see that MIL is asking Aunty to transfer ~\\u00a31200 to her account. I don\\u0026#39;t know if this was because it was shared winnings or if it was to cover a significant loss but its clear to me the sums of money they are dealing in. Bear in mind that she cannot even spend a mere \\u00a32 on bread and milk. I am almost apoplectic, but not quite.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESuspecting that MIL was turning her against me I decided to snoop further. What I see are messages calling me selfish, a bully, an idiot, a chameleon who pretends to be nice to her face. These are a little irritating to see but do not over concern me because there is probably some truth in them all; having children has certainly made me realise that I am more selfish than I had noticed, and perhaps I truly am an idiot for letting MIL into our home. I do pretend to be nice to her despite my feelings for the sake of peace in my home so I see the chameleon thing more as a compliment that the insult it was intended to be.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat was more troubling were messages along the lines of \\u0026#39;he\\u0026#39;s not worth it\\u0026#39;. I sense the implication behind those words, but having since asked DW what she thought MIL meant I have yet to receive a straight answer. The closest I get to an answer from DW is that \\u0026#39;I am my own woman and can make up my own mind!\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat really blind-sided me was the message she had sent to BIL1 accusing me of abandoning DD. She said almost unintelligibly \\u0026#39;whys his pledge to his daughter?\\u0026#39; and \\u0026#39;he calls himself a dad, pfft\\u0026#39;. She made out that I didn\\u0026#39;t like spending time with DD. BIL1;s response was merely that I am an attention seeker. Again, DW has since tried to downplay these remarks because MIL doesn\\u0026#39;t explicitly say \\u0026#39;ex1076 is a terrible father\\u0026#39;, but for me the intent is there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter seeing these messages I immediately approached DW to ask if she though I was a bad father. She looked shocked at the question and firmly said \\u0026#39;no\\u0026#39; but asked who had said that I was. I told DW it was MIL that said this and with MIL being in the next room I immediately confronted her about it. She tried to play dumb and DW asked where this had all come from. I told her she had better ask BIL1. I went upstairs to get a few things before heading out and punched the wall in a fit of rage and ended up breaking my hand.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have long had issues with anger but I have learned over time to become more stoic. This was a total failure! In hindsight I feel disappointed not in the harm I caused myself but that I couldn\\u0026#39;t use this anger more constructively (or cunningly). In any case these were just the opinions of an imbecile and shouldn\\u0026#39;t have mattered to me. I think because of all the trauma we have been through with the well-being of DD, seeing her so close to death so many times, it was hard to hear anyone question my fatherhood. No-one could say that either DW or I have been any less than totally and utterly devoted to DD but yet here they were doing just that. This felt like an attack on my perception of reality and my extension my very sanity. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe MIL has since moved in with my BIL ostensibly because of the bed bugs. My anger has not even subsided a little bit since then and feel that MIL had stabbed me in the back. More worryingly I feel a little betrayed by DW too for even lending her ear to that sort of nonsense. I feel that we might be able to work things out if she appreciated just how strongly I feel about this or how much it matters but feel like I\\u0026#39;m not being listened to at all. Consequnetly, our marriage has begun to suffer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt a recent gathering with mutual friends I was asked if MIL was still living with us. I say \\u0026#39;no\\u0026#39; and quickly move on. When someone later says to DW that they hear MIL has moved out she thinks I\\u0026#39;ve been telling all and sundry about our family life. She looks at me with total contempt and says that MIL and I have just had a \\u0026#39;tiff\\u0026#39; and that no-one has moved out. I\\u0026#39;m being made to feel like I\\u0026#39;m just having a \\u0026#39;hissy fit\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDW tells me that she cannot kick her own mother of our house and feels that I am forcing her to make an unreasonable choice between MIL on one hand and me on the other. I can see why she might think this but it is a inaccurate perception. My request is not that she must never talk to MIL again but that I should not be forced to live with a woman that I neither chose to marry or bring into this world. MIL\\u0026#39;s claims of me being a bully are suddenly becoming self-fulfilling as it seems (from their point of view) that I am trying to control who DW has contact with. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn DW\\u0026#39;s mind her mind, MIL hasn\\u0026#39;t left at all but as far as I am concerned she is gone for good. To avoid being seen as trying to to stoke the flames I have foolishly not forced the issue of what to do with MIL\\u0026#39;s belongings. In hindsight, I think this may have given the impression that there is a possibility that may change my position.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to sit down, just the two of us, to work out our differences but DW wants a three-way discussion involving MIL which I see as an attempt to coerce me to into letting MIL stay. When I ask for a one to one conversation she says that I am too difficult to talk to. She is probably right too but I refuse to have my intelligence insulted with horse-shit excuses on behalf of MIL. Increasingly, it feels like there is a growing gulf between us and I worry resentment is beginning to set in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThe now\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis Sunday, whilst we were doing our daughter\\u0026#39;s medical cares, we hear someone coming through the front door. DW pops her head out of my daughter\\u0026#39;s bedroom and see that it\\u0026#39;s MIL. We finish up and I make it clear to DW that I want MIL to leave. I tell her that her being in the house is as provactive as if I brought my (hypothetical) girlfriend round and I\\u0026#39;m liable to say some unpleasant things if she says. DW was typically dismissive and I was made to feel like I was acting up. I stayed upstairs out of the way for the next 5, 15, 45 minutes. Eventually MIL goes and I ask DW if she let her know that she cannot be here whilst I am in the house. She answered in the negative and said MIL would coming back shortly. I simply repeated my request. MIL did come back and left again soon after and this happened a couple more times. The last time she came back she came with FIL who had arrived in the UK just 2 days prior. I repeat my displeasure to DW several more times but my concerns are dismissed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the end I go down and confront MIL who is in the kitchen cooking a meal for FIL. I ask her to tell me what this supposed pledge to me daughter is that I broke. She just looks disdainfully at me and starts playing dumb. At this point I lose patience in playing these games and tell her to leave. She tells me she\\u0026#39;s not going anywhere, kisses her teeth, and turns back to her cooking. I just see red! I grab the saucepan and throw it across the floor (very stupid, yes, I know) before shouting at her to leave. Chaos descend with much shouting and pointing fingers in each others faces. I point out her hyrocisy as she \\u0026#39;abandoned\\u0026#39; her own children to a supposedly abusive man in Africa whilst she sought out employment here. I said much, much nastier and personal stuff. She threatened to call the police which I encouraged her to, but she didn\\u0026#39;t. She did eventually leave but the argument rumled on between DW and I with FIL seemingly oblivious to events of the past few months.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt was a bizarre afternoon, with my parents showing up out of the blue (everyone has a key and our house seems to have a revolving door). Later on BIL1,2 barge their way into the house push, slap, and attempt to punch me. It\\u0026#39;s all a frigging circus at this point; I\\u0026#39;m shouting at everyone to leave, DW is screaming at everybody hysterically, BIL1 is threatening to cut my throat. At this point I have no option but to call the police myself. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy the time the police show up BIL1,2 have gone. Statements are taken and assurances are given that they will follow up on allegations of assault. I said that I didn\\u0026#39;t want to press charges unless they show up again. However, the police ask me to spend the night away from home until things cool down. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThe future?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt all feels like a bit of a game, like we\\u0026#39;re all acting out our perceived roles in the Karpman drama triangle (and their definitely is an element of acting). I\\u0026#39;ve decided that I want to stop playing this game and have cut off contact until I\\u0026#39;m asked to do otherwise. Apart from a brief 10 minutes to collect some belongings I have haven\\u0026#39;t been back. I\\u0026#39;m just waiting for more accusations that I\\u0026#39;ve again abandoned my family. This week we were supposed to be on what would have been our first vacation in five years. As it happens I\\u0026#39;ve confined myself to a room in my parent\\u0026#39;s house to mull things over.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t even know what to do any more. I\\u0026#39;m afraid I\\u0026#39;ve become the bully that MIL said I am. This is challenging my perception of reality and actually driving me insane. Then again, how many bullies thinks of themselves as such? I don\\u0026#39;t think it\\u0026#39;s true but if that\\u0026#39;s how DW sees me then it doesn\\u0026#39;t really matter what I think.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would really appreciate some sage advice right now.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cegpiy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ex1076\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cegpiy/dw_refuses_to_let_mil_go_and_now_im_a_bully/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cegpiy/dw_refuses_to_let_mil_go_and_now_im_a_bully/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563387933.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Josh Allen is a notoriously terrible passer. I've decided to compare Josh Allen's year to Jamarcus Russell's 2008 campaign when he was handed the \\\"keys to the frenchise\\\" and was not yet completely addicted to lean. The results, to my dismay, were surprising.\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nPlayer | Completion % | Att/G | Passing Yards | Passing Yards per game |Avg. |TDs |TD % |INTs | INT %| QB rating \\n:--|:--|:--|:--|:--|:--|:--|:--|:--|:--|:-- \\nJosh Allen |52.8 | 26.7 | 2,074 | 172.8 | 6.5 | 10 | 3.1 | 12 | 3.8 | 67.9\\nJaMarcus Russell | 53.8 | 24.5 | 2,423 | 161.5 | 6.6 | 13 | 3.5 | 8 | 2.2 | 77.1\\n\\n\\u0026#x200B;\\n\\nBased on the statistical analysis, we can deduce that Russell was a more skilled passer than Josh Allen in almost every statistical category. He had a QB rating of almost 10 points higher, an actual positive TD-INT ratio and a higher completion percentage. That being said, both guys were atrocious. It's important to note that Russell actually got sacked more times than Allen. What a trooper.\\n\\n\\u0026#x200B;\\n\\nDepending on how you view this, Russell wasn't that bad or Allen is truly bad for the ages.\\n\\n\\u0026#x200B;\\n\\n\\\\[Analysis\\\\] Josh Allen is actually a worse passer than JaMarcus Russell, the King Bust\", \"author_fullname\": \"t2_3p312ohk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceg2x7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563385292.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563413893.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJosh Allen is a notoriously terrible passer. I\\u0026#39;ve decided to compare Josh Allen\\u0026#39;s year to Jamarcus Russell\\u0026#39;s 2008 campaign when he was handed the \\u0026quot;keys to the frenchise\\u0026quot; and was not yet completely addicted to lean. The results, to my dismay, were surprising.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPlayer\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ECompletion %\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAtt/G\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPassing Yards\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPassing Yards per game\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAvg.\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETDs\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETD %\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EINTs\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EINT %\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EQB rating\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJosh Allen\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E52.8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26.7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2,074\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E172.8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3.8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E67.9\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJaMarcus Russell\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E53.8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E24.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2,423\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E161.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6.6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E77.1\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBased on the statistical analysis, we can deduce that Russell was a more skilled passer than Josh Allen in almost every statistical category. He had a QB rating of almost 10 points higher, an actual positive TD-INT ratio and a higher completion percentage. That being said, both guys were atrocious. It\\u0026#39;s important to note that Russell actually got sacked more times than Allen. What a trooper.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDepending on how you view this, Russell wasn\\u0026#39;t that bad or Allen is truly bad for the ages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Analysis] Josh Allen is actually a worse passer than JaMarcus Russell, the King Bust\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceg2x7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"YO-YO-PA\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ceg2x7/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ceg2x7/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563385093.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"e\\\\^2\", \"author_fullname\": \"t2_3rejl4g1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"math\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceg1n3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563413722.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ee^2\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceg1n3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pookiewookie666\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ceg1n3/math/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ceg1n3/math/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563384922.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_5ijtn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Map Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cefz7v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/68K-ofmZ6jsDiCJZaXc7mHqr3HB-QhSjButQwcC1NWk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563413411.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/7wsaj9lkfwa31.png?auto=webp\\u0026s=e5e4fe85dc493e6c8275f4027162492a7c0d0aac\", \"width\": 1019, \"height\": 1051}, \"resolutions\": [{\"url\": \"https://preview.redd.it/7wsaj9lkfwa31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f1846d2ffbb3e4489b6efed9fc968edc9fa8a2bb\", \"width\": 108, \"height\": 111}, {\"url\": \"https://preview.redd.it/7wsaj9lkfwa31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e83dc240892f52ce996fa91ebb4d56b4bf11f39d\", \"width\": 216, \"height\": 222}, {\"url\": \"https://preview.redd.it/7wsaj9lkfwa31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=65daad43bf5b3fb0157a61dd29e12c50c5af4bf1\", \"width\": 320, \"height\": 330}, {\"url\": \"https://preview.redd.it/7wsaj9lkfwa31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=40f42c10a97838545072add39a47397a84f4c986\", \"width\": 640, \"height\": 660}, {\"url\": \"https://preview.redd.it/7wsaj9lkfwa31.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=7fa9fcd463e9a339665b6ca824111ac79208d708\", \"width\": 960, \"height\": 990}], \"variants\": {}, \"id\": \"EYnh8turshh-s2_Ib4yYlnTXzV1wY5788kzcbomY41w\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cefz7v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"killroy200\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cefz7v/map_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/7wsaj9lkfwa31.png\", \"subreddit_subscribers\": 754, \"created_utc\": 1563384611.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hi all!\\n\\nI purchased an Epilog Fusion M2 40 a little over a year ago. My personal situation has changed, however, and I'm looking to exit the cutting/engraving industry and give my machine a good home. \\n\\nMy approach thus far has been to email or call various sign, trophy, and laser cutting/engraving shops in my state (Texas) to see if they'd have any interest in taking it on. Responses have been limited so far, but I just started this process, so I know it'll take time.\\n\\nHas anyone here sold a machine? If so, can you share tips for how you did it and how you went about finding potential customers?\\n\\nThanks in advance for any help anyone can offer.\\n\\nHere are the specs on the machine in case anyone here is interested:\\n\\n**Fusion M2 40**\\n- 60W CO2 tube\\n- Vector table size: 40\\\"x28\\\"\\n- Air assist compressor/pump included\\n- Rim-style rotary attachment included\\n\\nYou're welcome to PM me if you're interested in purchasing it.\", \"author_fullname\": \"t2_55p3s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"boo\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cefux7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563412855.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI purchased an Epilog Fusion M2 40 a little over a year ago. My personal situation has changed, however, and I\\u0026#39;m looking to exit the cutting/engraving industry and give my machine a good home. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy approach thus far has been to email or call various sign, trophy, and laser cutting/engraving shops in my state (Texas) to see if they\\u0026#39;d have any interest in taking it on. Responses have been limited so far, but I just started this process, so I know it\\u0026#39;ll take time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHas anyone here sold a machine? If so, can you share tips for how you did it and how you went about finding potential customers?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance for any help anyone can offer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are the specs on the machine in case anyone here is interested:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EFusion M2 40\\u003C/strong\\u003E\\n- 60W CO2 tube\\n- Vector table size: 40\\u0026quot;x28\\u0026quot;\\n- Air assist compressor/pump included\\n- Rim-style rotary attachment included\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;re welcome to PM me if you\\u0026#39;re interested in purchasing it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cefux7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Madeiro\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cefux7/boo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cefux7/boo/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563384055.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I know it's your PVM and you're free to do what you want with it, but me personally? I'd be a little wary taking my precious little baby outside and balancing it on some rocks that are right next to a waterfall that doesn't give a shit about my feelings.\\n\\n~~^Assuming ^I ^even ^owned ^a ^PVM/BVM ^in ^the ^first ^place...which ^I ^don't.~~\", \"author_fullname\": \"t2_103hly\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cedmae\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563402713.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know it\\u0026#39;s your PVM and you\\u0026#39;re free to do what you want with it, but me personally? I\\u0026#39;d be a little wary taking my precious little baby outside and balancing it on some rocks that are right next to a waterfall that doesn\\u0026#39;t give a shit about my feelings.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cdel\\u003E\\u003Csup\\u003EAssuming\\u003C/sup\\u003E \\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eeven\\u003C/sup\\u003E \\u003Csup\\u003Eowned\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003EPVM/BVM\\u003C/sup\\u003E \\u003Csup\\u003Ein\\u003C/sup\\u003E \\u003Csup\\u003Ethe\\u003C/sup\\u003E \\u003Csup\\u003Efirst\\u003C/sup\\u003E \\u003Csup\\u003Eplace...which\\u003C/sup\\u003E \\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Edon\\u0026#39;t.\\u003C/sup\\u003E\\u003C/del\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cedmae\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Flowermanvista\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cedmae/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cedmae/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563373913.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3x22clg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"123 testing testing\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_ce8kpq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2FtwoSysN%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2FtwoSysN\\u0026image=https%3A%2F%2Fi.imgur.com%2FlVVi3hF.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"490\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 490}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 2 views. 1967 Ford Mustang\", \"title\": \"1967 Ford Mustang\", \"url\": \"https://imgur.com/a/twoSysN\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 490, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2FtwoSysN%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2FtwoSysN\\u0026image=https%3A%2F%2Fi.imgur.com%2FlVVi3hF.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"490\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.imgur.com/lVVi3hF.jpg?fb\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2FtwoSysN%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2FtwoSysN\\u0026image=https%3A%2F%2Fi.imgur.com%2FlVVi3hF.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"490\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/ce8kpq\", \"height\": 490}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/BBLE2_aXQvKeVjegH6ElJXt5G18OU06KnepNuRu5ULw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563370170.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/x5-rPtYbMnZ8hwAb_4kgiM1JGi-oWKqQ309XxR3gvPk.jpg?auto=webp\\u0026s=e0f49af9f37e250518d8cb40951d3caaa4b0bc61\", \"width\": 4048, \"height\": 3036}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/x5-rPtYbMnZ8hwAb_4kgiM1JGi-oWKqQ309XxR3gvPk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=9e655c10439a263ca281b6cb1bfe98fa9d3ed490\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/x5-rPtYbMnZ8hwAb_4kgiM1JGi-oWKqQ309XxR3gvPk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c60bbade18a12c802978744cf89f12d834d7dfc0\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/x5-rPtYbMnZ8hwAb_4kgiM1JGi-oWKqQ309XxR3gvPk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=beb8c57a65668ebbf0274f39f7a2de77b2aec089\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/x5-rPtYbMnZ8hwAb_4kgiM1JGi-oWKqQ309XxR3gvPk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1f4bd7a41ea1a64c02422b26a9d8b036726b4107\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/x5-rPtYbMnZ8hwAb_4kgiM1JGi-oWKqQ309XxR3gvPk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=0468d93fa2e1c2cc13c9033cabe3efb3e7c53740\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/x5-rPtYbMnZ8hwAb_4kgiM1JGi-oWKqQ309XxR3gvPk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=0230434b431aebe79ff4ed206c0805869209254f\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"sWpEXt6hLg7Cj8YlB1ug2koFqf8giNHByEnd75F8yIw\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce8kpq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PrinceMeowMeowBeans\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ce8kpq/123_testing_testing/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/twoSysN\", \"subreddit_subscribers\": 754, \"created_utc\": 1563341370.0, \"discussion_type\": null, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 2 views. 1967 Ford Mustang\", \"title\": \"1967 Ford Mustang\", \"url\": \"https://imgur.com/a/twoSysN\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 490, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2FtwoSysN%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2FtwoSysN\\u0026image=https%3A%2F%2Fi.imgur.com%2FlVVi3hF.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"490\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.imgur.com/lVVi3hF.jpg?fb\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u003Ciframe width=\\\"560\\\" height=\\\"315\\\" src=\\\"\\\\\\\\\\\\[https://www.youtube.com/embed/IyRZX3erKHo\\\\\\\\\\\\](https://www.youtube.com/embed/IyRZX3erKHo)\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_fullname\": \"t2_3cgu5o7m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Embedded Video\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ce654e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563355596.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;iframe width=\\u0026quot;560\\u0026quot; height=\\u0026quot;315\\u0026quot; src=\\u0026quot;\\\\\\\\\\\\[https://www.youtube.com/embed/IyRZX3erKHo\\\\\\\\\\\\](https://www.youtube.com/embed/IyRZX3erKHo)\\u0026quot; frameborder=\\u0026quot;0\\u0026quot; allow=\\u0026quot;accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\u0026quot; allowfullscreen\\u0026gt;\\u0026lt;/iframe\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce654e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"QuickMolasses\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ce654e/embedded_video/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ce654e/embedded_video/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563326796.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"hello\\n\\n* **one** two\\n\\n* **three** four\\n\\n* **five** six\", \"author_fullname\": \"t2_13g504\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ce537m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563349829.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehello\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003Eone\\u003C/strong\\u003E two\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003Ethree\\u003C/strong\\u003E four\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003Efive\\u003C/strong\\u003E six\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce537m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"farmstandard\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ce537m/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ce537m/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563321029.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"THIS ACT AMENDS THE FOLLOWING TEXT IN THE CONSTITUTION OF MOUNT AUGUSTA:\\n\\n##E. Citizenship Eligibility and Application\\n\\ni. Requirements for citizenship eligibility\\n\\n\\u003Ea. Must own or rent property, as defined in Article IV, within the borders of Mount Augusta. Fulfilling this requirement is sufficient to gain residency.\\n\\u003Eb. Must not have outstanding (convicted but unserved or unpearled) criminal convictions made by the Mount Augusta justice system.\\n\\u003Ec. Must have had a direct positive influence on Mount Augusta; a non-exhaustive list of possibilities follows:\\n\\u003E\\u003E1. primarily playing in Mount Augusta\\n\\u003E\\u003E2. primarily playing in Albion\\n\\u003E\\u003E3. historically playing in Mount Augusta\\n\\u003E\\u003E4. being a Maester\\n\\u003E\\u003E5. maintaining shops\\n\\u003E\\u003E6. shopping in Mount Augusta\\n\\u003E\\u003E7. building\\n\\u003E\\u003E8. being a friend to us\\n\\u003E\\u003E9. being a friend to our friends\\n\\u003E\\u003E10. defending the town on a regular basis\\n\\u003E\\u003E11. fixing the rail system\\n\\u003E\\u003E12. designing stuff that gets built\\n\\u003E\\u003E13. writing scripts for everyone\\n\\u003E\\u003E14. supporting unions\\n\\u003E\\u003E15. providing legal services\\n\\u003E\\u003E16. eat the rich\\n\\nii. Public record of citizenship\\n\\n\\u003Ea. Prior to any election, or when called for by any resident, a citizenship applications thread shall be posted on the subreddit. The thread title must begin with \\\"[Citizenship Applications]\\\".\\n\\n\\u003Eb. An elected Judge must confirm the thread as being an official citizenship applications thread within 48 hours. Citizenship applications threads are automatically closed after 30 days or after a Judge confirms a new citizenship applications thread, whichever comes sooner.\\n\\n\\u003Ec. The public record shall consist of, for each citizen, their in-game name, their reddit account, and the date on which the period of citizenship of an individual began or begins. This record shall be contained within the most recent citizenship applications thread, copied from the previous most recent thread.\\n\\niii. Gaining citizenship\\n\\n\\u003Ea. A resident meeting citizenship eligibility requirements, who is currently not a citizen, can apply for citizenship by posting their intent to the official citizenship applications thread. If no standing voter objects after a seven (7) day waiting period, then the applicant becomes a citizen. The resident must fulfill the requirements outlined by Article I Section E i. and not have a standing objection against them for the entire period of seven (7) days for citizenship to be gained.\\n\\n\\u003Eb. If an applicant believes an objection against them to be frivolous or unjustifiable, they may have the Judges review the objection. The Judges will then vote to sustain or overrule said objection, with a majority vote deciding the outcome. Should there be a tie amongst the vote of the Judges, the vote of the Mayor will count as the tiebreaker. If an objection is overruled, then the objection is invalid. Applications are assumed not to have gone through while voting is underway. Voting must conclude within three (3) days of the wait period ending, or the application is automatically rejected.\\n\\n\\u003Ec. A voter may suggest that a resident meeting citizenship eligibility requirements legally be made a citizen. Said voter must create an application; a post to /r/MtAugustacontaining [Citizenship] and the name of the resident in question. This thread requires no bill discussion. Each voter shall present either a \\u201cyes\\u201d (\\\"Aye\\\") or \\u201cno\\u201d (\\\"Nay\\\") in the comments. Voting will then close after 7 days of the creation of the post, at this time all votes from among valid voters will be counted and tallied up. If 2/3rds or more of valid voters presented an \\\"Aye\\\" then the resident in question will immediately gain citizenship.\\n\\n\\u003Ed. A resident may post an application on behalf of another resident eligible for citizenship who does not have a reddit account. A screenshot of consent shall be used; the player without a reddit account shall state the current date and the name of the player they wish to be represented by.\\n\\niv. Survivability of citizenship\\n\\n\\u003Ea. For a resident meeting the citizenship eligibility requirements, once citizenship is gained it shall survive indefinitely following confirmation.\\n\\n\\u003Eb. Citizens may renunciate their citizenship in a citizenship applications thread. The renunciation comes into effect immediately following confirmation.\\n\\nv. Arbitration of citizenship eligibility\\n\\n\\u003Ea. Judges are responsible for investigating and deciding on eligibility, excluding i.c except through means available to all private individuals outlined in iii.a. Should an individual Judge\\u2019s decision be called into question, a majority vote of standing Judges suffices to decide the matter. Voting must conclude within three (3) days of the wait period ending, or the application is automatically rejected.\\n\\n\\u003Eb. In all disputes concerning citizenship eligibility that cannot be resolved by the Judges, the Mayor is the final arbiter, with no opportunity for further appeal in that individual application.\\n\\n\\u003Ec. If there are no Judges currently appointed, the Mayor shall assume all duties of Judge as defined in Article I, Section E until Judges are appointed.\\n\\nvi. Grandfather clause\\n\\n\\u003Ea. All currently registered voters who are in the active period of their registration in the 6th hour of July 1st, 2019 but who posted their registration before June 24th shall be granted citizenship in the State of Mount Augusta upon the addition of this clause to the constitution.\\n\\n\\u003Eb. Citizenship prior to the passage of the citizenship bill has been renamed to residency. All currently registered voters who are not citizens after the passage of this bill are no longer eligible to vote.\\n\\n\\u003Ec. All current government officials on June 23rd, 2019 shall be granted citizenship in the State of Mount Augusta upon the addition of this clause to the constitution.\\n\\n\\u200b\\n\\nTO INSTEAD READ:\\n\\n##E. Citizenship\\n\\ni. To fulfill the prerequisites for gaining citizenship, one must do all of the following:\\n\\n\\u003Ea. Own or rent property, as defined in Article IV, in Mount Augusta.\\n\\n\\u003Eb. Not be a convicted fugitive from the law of Mount Augusta.\\n\\n\\u003Ec. Have either substantially contributed to Mount Augusta, or be substantially or primarily active in Mount Augusta.\\n\\n\\u003Ed. Not be banned from the host server of Mount Augusta.\\n\\nii. To gain citizenship, one must do all of the following in order:\\n\\n\\u003Ea. Fulfill the prerequisites set out in i.\\n\\n\\u003Eb. Post in the [Citizenship] thread on r/MtAugusta, setting out how one fulfills the prerequisites, and pledging to follow the law of Mount Augusta. A valid [Citizenship] thread is confirmed by a Judge, and may be renewed from time to time by a Judge; the last one expires on renewal of the next. One may only apply for citizenship once a month.\\n\\n\\u003Ec. Have no successful objections against one for 7 days. An ongoing objection is presumed successful for the time being. A successful objection must be the following in order:\\n\\n\\u003E\\u003E1. Lodged by a citizen as a comment on the application post of the person objected to\\n\\n\\u003E\\u003E2. Ruled not frivolous or unjustifiable by majority vote of Judges, with tie broken by Mayor. **After a ruling is finalized, a judge or the Mayor must make the final decision public, making the ruling easily accessible for all voters.**\\n\\n\\u003E\\u003E3. **Within 48 hours of the government's ruling on an applicants citizenship status, any standing citizen may propose a vote to call into question the government's ruling. Such a thread shall include [CITIZENSHIP APPLICATION INQUIRY] in its title. Voters then vote on whether or not the player in question meets the criteria required as defined in Article I.E.i If at least 2/3rd of votes cast find that the applicant does meet the criteria required, then the applicant becomes a citizen.**\\n\\niii. The only way for a confirmed citizenship to be lost to someone is if one renounces it, which is done by posting on r/MtAugusta in the [Citizenship] thread, and clearly renouncing the citizenship.\", \"author_fullname\": \"t2_11oyhu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ce1lad\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563304733.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563333317.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETHIS ACT AMENDS THE FOLLOWING TEXT IN THE CONSTITUTION OF MOUNT AUGUSTA:\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EE. Citizenship Eligibility and Application\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003Ei. Requirements for citizenship eligibility\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ea. Must own or rent property, as defined in Article IV, within the borders of Mount Augusta. Fulfilling this requirement is sufficient to gain residency.\\nb. Must not have outstanding (convicted but unserved or unpearled) criminal convictions made by the Mount Augusta justice system.\\nc. Must have had a direct positive influence on Mount Augusta; a non-exhaustive list of possibilities follows:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Col\\u003E\\n\\u003Cli\\u003Eprimarily playing in Mount Augusta\\u003C/li\\u003E\\n\\u003Cli\\u003Eprimarily playing in Albion\\u003C/li\\u003E\\n\\u003Cli\\u003Ehistorically playing in Mount Augusta\\u003C/li\\u003E\\n\\u003Cli\\u003Ebeing a Maester\\u003C/li\\u003E\\n\\u003Cli\\u003Emaintaining shops\\u003C/li\\u003E\\n\\u003Cli\\u003Eshopping in Mount Augusta\\u003C/li\\u003E\\n\\u003Cli\\u003Ebuilding\\u003C/li\\u003E\\n\\u003Cli\\u003Ebeing a friend to us\\u003C/li\\u003E\\n\\u003Cli\\u003Ebeing a friend to our friends\\u003C/li\\u003E\\n\\u003Cli\\u003Edefending the town on a regular basis\\u003C/li\\u003E\\n\\u003Cli\\u003Efixing the rail system\\u003C/li\\u003E\\n\\u003Cli\\u003Edesigning stuff that gets built\\u003C/li\\u003E\\n\\u003Cli\\u003Ewriting scripts for everyone\\u003C/li\\u003E\\n\\u003Cli\\u003Esupporting unions\\u003C/li\\u003E\\n\\u003Cli\\u003Eproviding legal services\\u003C/li\\u003E\\n\\u003Cli\\u003Eeat the rich\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003Eii. Public record of citizenship\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ea. Prior to any election, or when called for by any resident, a citizenship applications thread shall be posted on the subreddit. The thread title must begin with \\u0026quot;[Citizenship Applications]\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eb. An elected Judge must confirm the thread as being an official citizenship applications thread within 48 hours. Citizenship applications threads are automatically closed after 30 days or after a Judge confirms a new citizenship applications thread, whichever comes sooner.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ec. The public record shall consist of, for each citizen, their in-game name, their reddit account, and the date on which the period of citizenship of an individual began or begins. This record shall be contained within the most recent citizenship applications thread, copied from the previous most recent thread.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003Eiii. Gaining citizenship\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ea. A resident meeting citizenship eligibility requirements, who is currently not a citizen, can apply for citizenship by posting their intent to the official citizenship applications thread. If no standing voter objects after a seven (7) day waiting period, then the applicant becomes a citizen. The resident must fulfill the requirements outlined by Article I Section E i. and not have a standing objection against them for the entire period of seven (7) days for citizenship to be gained.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eb. If an applicant believes an objection against them to be frivolous or unjustifiable, they may have the Judges review the objection. The Judges will then vote to sustain or overrule said objection, with a majority vote deciding the outcome. Should there be a tie amongst the vote of the Judges, the vote of the Mayor will count as the tiebreaker. If an objection is overruled, then the objection is invalid. Applications are assumed not to have gone through while voting is underway. Voting must conclude within three (3) days of the wait period ending, or the application is automatically rejected.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ec. A voter may suggest that a resident meeting citizenship eligibility requirements legally be made a citizen. Said voter must create an application; a post to \\u003Ca href=\\\"/r/MtAugustacontaining\\\"\\u003E/r/MtAugustacontaining\\u003C/a\\u003E [Citizenship] and the name of the resident in question. This thread requires no bill discussion. Each voter shall present either a \\u201cyes\\u201d (\\u0026quot;Aye\\u0026quot;) or \\u201cno\\u201d (\\u0026quot;Nay\\u0026quot;) in the comments. Voting will then close after 7 days of the creation of the post, at this time all votes from among valid voters will be counted and tallied up. If 2/3rds or more of valid voters presented an \\u0026quot;Aye\\u0026quot; then the resident in question will immediately gain citizenship.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ed. A resident may post an application on behalf of another resident eligible for citizenship who does not have a reddit account. A screenshot of consent shall be used; the player without a reddit account shall state the current date and the name of the player they wish to be represented by.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003Eiv. Survivability of citizenship\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ea. For a resident meeting the citizenship eligibility requirements, once citizenship is gained it shall survive indefinitely following confirmation.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eb. Citizens may renunciate their citizenship in a citizenship applications thread. The renunciation comes into effect immediately following confirmation.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003Ev. Arbitration of citizenship eligibility\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ea. Judges are responsible for investigating and deciding on eligibility, excluding i.c except through means available to all private individuals outlined in iii.a. Should an individual Judge\\u2019s decision be called into question, a majority vote of standing Judges suffices to decide the matter. Voting must conclude within three (3) days of the wait period ending, or the application is automatically rejected.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eb. In all disputes concerning citizenship eligibility that cannot be resolved by the Judges, the Mayor is the final arbiter, with no opportunity for further appeal in that individual application.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ec. If there are no Judges currently appointed, the Mayor shall assume all duties of Judge as defined in Article I, Section E until Judges are appointed.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003Evi. Grandfather clause\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ea. All currently registered voters who are in the active period of their registration in the 6th hour of July 1st, 2019 but who posted their registration before June 24th shall be granted citizenship in the State of Mount Augusta upon the addition of this clause to the constitution.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eb. Citizenship prior to the passage of the citizenship bill has been renamed to residency. All currently registered voters who are not citizens after the passage of this bill are no longer eligible to vote.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ec. All current government officials on June 23rd, 2019 shall be granted citizenship in the State of Mount Augusta upon the addition of this clause to the constitution.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u200b\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETO INSTEAD READ:\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EE. Citizenship\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003Ei. To fulfill the prerequisites for gaining citizenship, one must do all of the following:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ea. Own or rent property, as defined in Article IV, in Mount Augusta.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eb. Not be a convicted fugitive from the law of Mount Augusta.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ec. Have either substantially contributed to Mount Augusta, or be substantially or primarily active in Mount Augusta.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ed. Not be banned from the host server of Mount Augusta.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003Eii. To gain citizenship, one must do all of the following in order:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ea. Fulfill the prerequisites set out in i.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eb. Post in the [Citizenship] thread on \\u003Ca href=\\\"/r/MtAugusta\\\"\\u003Er/MtAugusta\\u003C/a\\u003E, setting out how one fulfills the prerequisites, and pledging to follow the law of Mount Augusta. A valid [Citizenship] thread is confirmed by a Judge, and may be renewed from time to time by a Judge; the last one expires on renewal of the next. One may only apply for citizenship once a month.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ec. Have no successful objections against one for 7 days. An ongoing objection is presumed successful for the time being. A successful objection must be the following in order:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ELodged by a citizen as a comment on the application post of the person objected to\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERuled not frivolous or unjustifiable by majority vote of Judges, with tie broken by Mayor. \\u003Cstrong\\u003EAfter a ruling is finalized, a judge or the Mayor must make the final decision public, making the ruling easily accessible for all voters.\\u003C/strong\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWithin 48 hours of the government\\u0026#39;s ruling on an applicants citizenship status, any standing citizen may propose a vote to call into question the government\\u0026#39;s ruling. Such a thread shall include [CITIZENSHIP APPLICATION INQUIRY] in its title. Voters then vote on whether or not the player in question meets the criteria required as defined in Article I.E.i If at least 2/3rd of votes cast find that the applicant does meet the criteria required, then the applicant becomes a citizen.\\u003C/strong\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003Eiii. The only way for a confirmed citizenship to be lost to someone is if one renounces it, which is done by posting on \\u003Ca href=\\\"/r/MtAugusta\\\"\\u003Er/MtAugusta\\u003C/a\\u003E in the [Citizenship] thread, and clearly renouncing the citizenship.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce1lad\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"citylion1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ce1lad/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ce1lad/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563304517.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"`\\u003Ciframe style=\\\"border: 0; width: 350px; height: 442px;\\\" src=\\\"[https://bandcamp.com/EmbeddedPlayer/track=694380855/size=large/bgcol=ffffff/linkcol=0687f5/tracklist=false/transparent=true/](https://bandcamp.com/EmbeddedPlayer/track=694380855/size=large/bgcol=ffffff/linkcol=0687f5/tracklist=false/transparent=true/)\\\" seamless\\u003E\\u003Ca href=\\\"[http://theroomcoloredcharlatan.bandcamp.com/track/forest-view](http://theroomcoloredcharlatan.bandcamp.com/track/forest-view)\\\"\\u003EForest View by The Room Colored Charlatan\\u003C/a\\u003E\\u003C/iframe\\u003E`\", \"author_fullname\": \"t2_5im14\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"sadfasdfdas\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdy0y2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563317403.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026lt;iframe style=\\u0026quot;border: 0; width: 350px; height: 442px;\\u0026quot; src=\\u0026quot;[https://bandcamp.com/EmbeddedPlayer/track=694380855/size=large/bgcol=ffffff/linkcol=0687f5/tracklist=false/transparent=true/](https://bandcamp.com/EmbeddedPlayer/track=694380855/size=large/bgcol=ffffff/linkcol=0687f5/tracklist=false/transparent=true/)\\u0026quot; seamless\\u0026gt;\\u0026lt;a href=\\u0026quot;[http://theroomcoloredcharlatan.bandcamp.com/track/forest-view](http://theroomcoloredcharlatan.bandcamp.com/track/forest-view)\\u0026quot;\\u0026gt;Forest View by The Room Colored Charlatan\\u0026lt;/a\\u0026gt;\\u0026lt;/iframe\\u0026gt;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdy0y2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"omgdracula\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdy0y2/sadfasdfdas/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cdy0y2/sadfasdfdas/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563288603.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u003Cblockquote class=\\\"imgur-embed-pub\\\" lang=\\\"en\\\" data-id=\\\"a/hdIPqAi\\\"\\u003E\\u003Ca href=\\\"[//imgur.com/a/hdIPqAi](//imgur.com/a/hdIPqAi)\\\"\\u003E\\u003C/a\\u003E\\u003C/blockquote\\u003E\\u003Cscript async src=\\\"[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\", \"author_fullname\": \"t2_14o172\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"w\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdwff4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563309136.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;blockquote class=\\u0026quot;imgur-embed-pub\\u0026quot; lang=\\u0026quot;en\\u0026quot; data-id=\\u0026quot;a/hdIPqAi\\u0026quot;\\u0026gt;\\u0026lt;a href=\\u0026quot;[//imgur.com/a/hdIPqAi](//imgur.com/a/hdIPqAi)\\u0026quot;\\u0026gt;\\u0026lt;/a\\u0026gt;\\u0026lt;/blockquote\\u0026gt;\\u0026lt;script async src=\\u0026quot;[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\u0026quot; charset=\\u0026quot;utf-8\\u0026quot;\\u0026gt;\\u0026lt;/script\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdwff4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ABigRooster\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdwff4/w/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cdwff4/w/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563280336.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"If you don\\u2019t have stupid money take yo dupe ass home \\nIf you don\\u2019t have stupid money take yo DUPE ASS HOME \\n\\n\\nC-H-I-K F-I-L A-A-Aaaaaaa yeah C-H-I-K F-I-L A-A-aaaaaa \\nWe flyin\\u2019 Frontier \\nA Star Is Born \\nI\\u2019m a big deal \\nYeah you\\u2019ve been warned \\nI\\u2019ve got the appeal \\nOf a Barbie burned \\n\\n\\nFor the Chick Fil A, oh the nuggets nuggets \\nThe Chick Fil A \\nThe Chick Fil A, Chick Fil A (the Chick Fil A life) \\nFor the Chick Fil A, oh the nuggets nuggets \\n\\n\\nThe Chick Fil A \\nThe Chick Fil A, Chick Fil A (the Chick Fil A life) \\nFor the Chick Fil A, oh the nuggets nuggets \\n\\n\\nShop my sales and shop \\u2018em now \\nIf you don\\u2019t I\\u2019ll have a cow \\nGlen is old, he\\u2019s kinda ill \\nGuess I\\u2019ll help him write his will \\n\\n\\nHere\\u2019s a pic -- an empty plate \\nIt\\u2019s Friday night, let\\u2019s have a date \\nOne more pit stop at the bank \\nHere\\u2019s my guy it\\u2019s Dirt Cobain \\n\\n\\nIma shop but no NSale \\nTryons with no underwear \\nI\\u2019m not \\u201cfamous,\\u201d it\\u2019s okay \\nBut you better pay to play \\n\\n\\nI posted a pic, it\\u2019s time to \\u201clike\\u201d it \\nYour ass is gon\\u2019 be blocked if you fight it \\nBingin\\u2019, refreshing my feed just to see who\\u2019s ungodly \\nI ain\\u2019t playin\\u2019 you\\u2019ll see \\nWe flyin\\u2019 Frontier \\nA Star Is Born \\nI\\u2019m a big deal \\nYeah you\\u2019ve been warned \\nI\\u2019ve got the appeal \\nOf a Barbie burned \\n\\n\\nFor the Chick Fil A, oh the nuggets nuggets \\nThe Chick Fil A \\nThe Chick Fil A, Chick Fil A (the Chick Fil A life) \\nFor the Chick Fil A, oh the nuggets nuggets \\n\\n\\nThe Chick Fil A \\nThe Chick Fil A, Chick Fil A (the Chick Fil A life) \\nFor the Chick Fil A, oh the nuggets nuggets \\n\\n\\nIt\\u2019s time for the spray tan, Scottie rub it in \\nScrew ya MAGA haters, I\\u2019m the new Redskins \\nErrybody lookin\\u2019 like they need some Jesus \\nReally they wish that they can just be us \\n\\n\\u0026#x200B;\\n\\nScottie gotta keep those lights on \\nIn other people\\u2019s homes \\nIn our own place it\\u2019s as dark as the Stoneeeee Age \\nI got maggots in my floors \\nBut look at my Louis, no I ain\\u2019t poor \\nIf you don\\u2019t have stupid money take yo dupe ass home \\n\\n\\nC-H-I-K F-I-L A-A-Aaaaaaa yeah C-H-I-K F-I-L A-A-aaaaaa \\nWe flyin\\u2019 Frontier \\nA Star Is Born \\nI\\u2019m a big deal \\nYeah you\\u2019ve been warned \\nI\\u2019ve got the appeal \\nOf a Barbie burned \\n\\n\\u0026#x200B;\\n\\nFor the Chick Fil A, oh the nuggets nuggets \\nThe Chick Fil A \\nThe Chick Fil A, Chick Fil A (the Chick Fil A life) \\nFor the Chick Fil A, oh the nuggets nuggets \\n\\n\\nThe Chick Fil A \\nThe Chick Fil A, Chick Fil A (the Chick Fil A life) \\nFor the Chick Fil A, oh the nuggets nuggets \\n\\n\\nI love rainbows and only Straights \\nNo Pride here, just filled with hate \\nDisplaced Texan for real here \\nY\\u2019all DON\\u2019T come back now, ya hear? \\n\\n\\nMama 2 Chainz is my friend, \\nIt\\u2019s her and me up til\\u2019 the end \\nMatching looks we\\u2019re kinda twins \\nExcept duh I\\u2019m better than \\n\\n\\u0026#x200B;\\n\\nThinking back to better days \\nHere\\u2019s a TBT so give me praise \\nGood marriage, dreams and hopes, that was really fun \\nToo bad for that you cannot swipe up\", \"author_fullname\": \"t2_2xajxnah\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"blah\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdrsoz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563276894.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you don\\u2019t have stupid money take yo dupe ass home\\u003Cbr/\\u003E\\nIf you don\\u2019t have stupid money take yo DUPE ASS HOME \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EC-H-I-K F-I-L A-A-Aaaaaaa yeah C-H-I-K F-I-L A-A-aaaaaa\\u003Cbr/\\u003E\\nWe flyin\\u2019 Frontier\\u003Cbr/\\u003E\\nA Star Is Born\\u003Cbr/\\u003E\\nI\\u2019m a big deal\\u003Cbr/\\u003E\\nYeah you\\u2019ve been warned\\u003Cbr/\\u003E\\nI\\u2019ve got the appeal\\u003Cbr/\\u003E\\nOf a Barbie burned \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the Chick Fil A, oh the nuggets nuggets\\u003Cbr/\\u003E\\nThe Chick Fil A\\u003Cbr/\\u003E\\nThe Chick Fil A, Chick Fil A (the Chick Fil A life)\\u003Cbr/\\u003E\\nFor the Chick Fil A, oh the nuggets nuggets \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Chick Fil A\\u003Cbr/\\u003E\\nThe Chick Fil A, Chick Fil A (the Chick Fil A life)\\u003Cbr/\\u003E\\nFor the Chick Fil A, oh the nuggets nuggets \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShop my sales and shop \\u2018em now\\u003Cbr/\\u003E\\nIf you don\\u2019t I\\u2019ll have a cow\\u003Cbr/\\u003E\\nGlen is old, he\\u2019s kinda ill\\u003Cbr/\\u003E\\nGuess I\\u2019ll help him write his will \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u2019s a pic -- an empty plate\\u003Cbr/\\u003E\\nIt\\u2019s Friday night, let\\u2019s have a date\\u003Cbr/\\u003E\\nOne more pit stop at the bank\\u003Cbr/\\u003E\\nHere\\u2019s my guy it\\u2019s Dirt Cobain \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIma shop but no NSale\\u003Cbr/\\u003E\\nTryons with no underwear\\u003Cbr/\\u003E\\nI\\u2019m not \\u201cfamous,\\u201d it\\u2019s okay\\u003Cbr/\\u003E\\nBut you better pay to play \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI posted a pic, it\\u2019s time to \\u201clike\\u201d it\\u003Cbr/\\u003E\\nYour ass is gon\\u2019 be blocked if you fight it\\u003Cbr/\\u003E\\nBingin\\u2019, refreshing my feed just to see who\\u2019s ungodly\\u003Cbr/\\u003E\\nI ain\\u2019t playin\\u2019 you\\u2019ll see\\u003Cbr/\\u003E\\nWe flyin\\u2019 Frontier\\u003Cbr/\\u003E\\nA Star Is Born\\u003Cbr/\\u003E\\nI\\u2019m a big deal\\u003Cbr/\\u003E\\nYeah you\\u2019ve been warned\\u003Cbr/\\u003E\\nI\\u2019ve got the appeal\\u003Cbr/\\u003E\\nOf a Barbie burned \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the Chick Fil A, oh the nuggets nuggets\\u003Cbr/\\u003E\\nThe Chick Fil A\\u003Cbr/\\u003E\\nThe Chick Fil A, Chick Fil A (the Chick Fil A life)\\u003Cbr/\\u003E\\nFor the Chick Fil A, oh the nuggets nuggets \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Chick Fil A\\u003Cbr/\\u003E\\nThe Chick Fil A, Chick Fil A (the Chick Fil A life)\\u003Cbr/\\u003E\\nFor the Chick Fil A, oh the nuggets nuggets \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u2019s time for the spray tan, Scottie rub it in\\u003Cbr/\\u003E\\nScrew ya MAGA haters, I\\u2019m the new Redskins\\u003Cbr/\\u003E\\nErrybody lookin\\u2019 like they need some Jesus\\u003Cbr/\\u003E\\nReally they wish that they can just be us \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScottie gotta keep those lights on\\u003Cbr/\\u003E\\nIn other people\\u2019s homes\\u003Cbr/\\u003E\\nIn our own place it\\u2019s as dark as the Stoneeeee Age\\u003Cbr/\\u003E\\nI got maggots in my floors\\u003Cbr/\\u003E\\nBut look at my Louis, no I ain\\u2019t poor\\u003Cbr/\\u003E\\nIf you don\\u2019t have stupid money take yo dupe ass home \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EC-H-I-K F-I-L A-A-Aaaaaaa yeah C-H-I-K F-I-L A-A-aaaaaa\\u003Cbr/\\u003E\\nWe flyin\\u2019 Frontier\\u003Cbr/\\u003E\\nA Star Is Born\\u003Cbr/\\u003E\\nI\\u2019m a big deal\\u003Cbr/\\u003E\\nYeah you\\u2019ve been warned\\u003Cbr/\\u003E\\nI\\u2019ve got the appeal\\u003Cbr/\\u003E\\nOf a Barbie burned \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the Chick Fil A, oh the nuggets nuggets\\u003Cbr/\\u003E\\nThe Chick Fil A\\u003Cbr/\\u003E\\nThe Chick Fil A, Chick Fil A (the Chick Fil A life)\\u003Cbr/\\u003E\\nFor the Chick Fil A, oh the nuggets nuggets \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Chick Fil A\\u003Cbr/\\u003E\\nThe Chick Fil A, Chick Fil A (the Chick Fil A life)\\u003Cbr/\\u003E\\nFor the Chick Fil A, oh the nuggets nuggets \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI love rainbows and only Straights\\u003Cbr/\\u003E\\nNo Pride here, just filled with hate\\u003Cbr/\\u003E\\nDisplaced Texan for real here\\u003Cbr/\\u003E\\nY\\u2019all DON\\u2019T come back now, ya hear? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMama 2 Chainz is my friend,\\u003Cbr/\\u003E\\nIt\\u2019s her and me up til\\u2019 the end\\u003Cbr/\\u003E\\nMatching looks we\\u2019re kinda twins\\u003Cbr/\\u003E\\nExcept duh I\\u2019m better than \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThinking back to better days\\u003Cbr/\\u003E\\nHere\\u2019s a TBT so give me praise\\u003Cbr/\\u003E\\nGood marriage, dreams and hopes, that was really fun\\u003Cbr/\\u003E\\nToo bad for that you cannot swipe up\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdrsoz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"freckled123\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdrsoz/blah/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cdrsoz/blah/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563248094.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_15oc6e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdrijh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563275210.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdrijh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OaktownPirate\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdrijh/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cdrijh/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563246410.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3cy7andl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"blah\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 70, \"hide_score\": false, \"name\": \"t3_cdp3w6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 70, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/ka6Ftq1T-BuU7VuudiwxSz6WAetkHVPrHGiMo9qepl8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563261765.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ojo9uVn56G4E7L0gitMg11nWYd18rMBhwY0notXZTrQ.jpg?auto=webp\\u0026s=101f60ce853ce22bc992dd35001886adff29731a\", \"width\": 112, \"height\": 112}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ojo9uVn56G4E7L0gitMg11nWYd18rMBhwY0notXZTrQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0fb23473bc974e906e452b0a2b40253f8d5c9a3c\", \"width\": 108, \"height\": 108}], \"variants\": {}, \"id\": \"koEKjD8juf6OO_hRZIvwiRaWdNVeviS7W6O0sIdIEG4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdp3w6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"__Maiko__\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdp3w6/blah/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/NhYeC8f\", \"subreddit_subscribers\": 754, \"created_utc\": 1563232965.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Selling the following (timestamps in named link), prices inc shipping, remove ~20$ for the PSU and 10 for the GPU if local. \\n- [RX580 4gb](https://drive.google.com/open?id=1aaQ6k5CiokMnuXJ4oUqNv-GA6wbskK1c) Sapphire Nitro (no orig packaging) - 95$ \\n- [RX570 4gb](https://drive.google.com/open?id=1xPLU7S0E1N0RRW3BZ1kjImxy8pvEfcL0) MSI gaming (barely used, original packaging) - 80$ \\n- [RX570 4gb] (https://drive.google.com/open?id=1xVNVY0DurkqMhWPPNji53CxOeXV24LHP) Sapphire Nitro Pulse (barely used, original packaging) : 80$ \\n- [Corsair RM850x] (https://drive.google.com/open?id=1bz4HDwbvkScuNvT7egLCUD3nDWSByaOq) (barely used, original packaging) - 85$\\n\\nI want to say that all of the original packaging products were actually never used, but I can't be sure. I gave them to my brother as a Christmas gift (2017 xmas) to mess around with mining, he moved shortly thereafter and then following that, mining wasn't very profitable for his electricity cost. Those cards and PSU are original packaging and look great. The sapphire nitro HAS been used for mining by me, cards are always well taken care of, original BIOS and benchmarks (unigine) can be run if there is any doubt as to the cards quality.\", \"author_fullname\": \"t2_b0aei\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"hardware swap test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdoupz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563260415.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESelling the following (timestamps in named link), prices inc shipping, remove ~20$ for the PSU and 10 for the GPU if local.\\u003Cbr/\\u003E\\n- \\u003Ca href=\\\"https://drive.google.com/open?id=1aaQ6k5CiokMnuXJ4oUqNv-GA6wbskK1c\\\"\\u003ERX580 4gb\\u003C/a\\u003E Sapphire Nitro (no orig packaging) - 95$\\u003Cbr/\\u003E\\n- \\u003Ca href=\\\"https://drive.google.com/open?id=1xPLU7S0E1N0RRW3BZ1kjImxy8pvEfcL0\\\"\\u003ERX570 4gb\\u003C/a\\u003E MSI gaming (barely used, original packaging) - 80$\\u003Cbr/\\u003E\\n- \\u003Ca href=\\\"https://drive.google.com/open?id=1xVNVY0DurkqMhWPPNji53CxOeXV24LHP\\\"\\u003ERX570 4gb\\u003C/a\\u003E Sapphire Nitro Pulse (barely used, original packaging) : 80$\\u003Cbr/\\u003E\\n- \\u003Ca href=\\\"https://drive.google.com/open?id=1bz4HDwbvkScuNvT7egLCUD3nDWSByaOq\\\"\\u003ECorsair RM850x\\u003C/a\\u003E (barely used, original packaging) - 85$\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to say that all of the original packaging products were actually never used, but I can\\u0026#39;t be sure. I gave them to my brother as a Christmas gift (2017 xmas) to mess around with mining, he moved shortly thereafter and then following that, mining wasn\\u0026#39;t very profitable for his electricity cost. Those cards and PSU are original packaging and look great. The sapphire nitro HAS been used for mining by me, cards are always well taken care of, original BIOS and benchmarks (unigine) can be run if there is any doubt as to the cards quality.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/D5XueXkbfukhjqcVBT7uQ-7K1mY10u9Dgh8KGzXOp2Y.jpg?auto=webp\\u0026s=18cd1dfa53b55e86e625af8c1efd4aab5eb12226\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/D5XueXkbfukhjqcVBT7uQ-7K1mY10u9Dgh8KGzXOp2Y.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=26ef4229d56ac5c08625ff68fb13a2acf73a2548\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/D5XueXkbfukhjqcVBT7uQ-7K1mY10u9Dgh8KGzXOp2Y.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=bb0b74a538afe2ca97b9ac791ed1f2e5831b451b\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/D5XueXkbfukhjqcVBT7uQ-7K1mY10u9Dgh8KGzXOp2Y.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=14f893677b82bac4154809c369dc8b3567636c56\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/D5XueXkbfukhjqcVBT7uQ-7K1mY10u9Dgh8KGzXOp2Y.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=8d0c6c8b32b762eed5ad1b53397e660f5c7b3abe\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/D5XueXkbfukhjqcVBT7uQ-7K1mY10u9Dgh8KGzXOp2Y.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=293d535bbc5387480f6e009137a53a25baf002e9\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/D5XueXkbfukhjqcVBT7uQ-7K1mY10u9Dgh8KGzXOp2Y.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=0a5478f84cd0639faa05b50ee45266c1dbad7200\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"8q0llSst2WH7y2oGBxRF3BlBATVdYQBQ_rRYFv0qz9Q\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdoupz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ben1113\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdoupz/hardware_swap_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cdoupz/hardware_swap_test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563231615.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Lore**\\n\\nAll voidborn hunger endlessly for something. Food, knowledge, evolution, more. Goj'Azak hungers for challenge. To sate his hunger, he came to Runeterra long ago and settled into the depths of the ocean. When not hibernating, he swims near coastal settlements to discreetly observe them, attempting to gauge how good of a fight they would put up against him. Once he's locked on a settlement, he deliberately allows its denizens to see glimpses of his immense form poking up above the waves, hoping to spur them into preparation for the threat he poses. After a week or two, he rises from the depths to lay siege to his target settlement, usually finding himself disappointed with how easily it falls before his might. In particular, he's infuriated that he has yet to attack a settlement that was defended by a creature of an immense stature like his own. However, he has now set sights on a settlement that truly promises a fight, a \\\"city of progress\\\" filled with technological wonders. Surely, they can create a massive machine to clash with him, finally giving him the battle he has been craving for so long.\\n\\n**Physical Appearance**\\n\\nGoj'Azak is a reptilian voidborn of utterly immense size, towering over the settlements he attacks. His scales are all a shade of deep purple, with those along his chest being lighter. He walks upon two legs and has four arms, each hand bearing four claws. He has a long, sweeping tail that spends most of its time pointing upwards and a line of bony spines that starts at the tip of his tail and travels up his back, splitting into three parallel lines at the base of his tail before continuing up his back to the base of his neck. His head is roughly comparable to that of a crocodile, with a long snout. However, three eyes adorn each side of it, its teeth are jagged and vicious, and both jaws can split open.\\n\\n**Gameplay**\\n\\nGoj'Azak is a Juggernaut with a distinct proficiency in destroying structures.\\n\\nPassive: Ruinator\\n\\nGoj'Azak's attacks against structures cause them to take 5% (+.5% per level) more physical damage from all sources for 3 seconds, stacking up to 3 times. He also takes 15% less damage from tower shots.\\n\\nQ: Ravage\\n\\nUpon activation, Goj'Azak enters an enraged state for 4 seconds. During this time, he gains 15/20/25/30/35% increased movement and attack speed and his basic attacks deal additional damage to their primary target equal to 20/25/30/35/40% of his total AD and cleave to deal twice the bonus damage to enemies in a cone behind his target. the bonus damage applies to structures, but attacks against structures do not cleave.\\n\\nW: Regenerative Cells\\n\\nPassive: Goj'Azak gains an additional 40/50/60/70/80% base health regeneration.\\n\\nActive: Goj'Azak overclocks his regenerative cells to rapidly heal. He consumes 5% of his maximum mana per second to heal for 5/6/7/8/9% of his maximum health per second. However, this process is physically taxing. As a result, Goj'Azak is slowed by 30% while rapidly healing and all mana regeneration is frozen while healing. Additionally, the cells have trouble working efficiently if Goj'Azak is exerting himself, and the healing is 50/45/40/35/30% less efficient if Goj'Azak has taken or dealt damage within the last 4 seconds. This lasts until it is turned off by reactivation, Goj'Azak is at full health, or he is out of mana, at which point the ability goes on cooldown.\\n\\nE: Tail Smash\\n\\nGoj'Azak raises his tail into the sky for 1 second before bringing it down in a line with a range of 825 and a width of 150. Enemies within the outer 50 on either side take 80/105/130/155/180 (+50% AD) physical damage and are slowed by 30% for 1.5 seconds. Enemies in the inner 50 take 50% increased damage and are stunned for 1 second instead.\\n\\nR: Annihilator Breath\\n\\nGoj'Azak spends 1 second taking in a deep breath before unleashing his breath weapon, splitting both of his jaws apart as he does so. The beam has a range of 1500 and a width of 400. Enemies in the beam take 40/55/70 (+10% AD) physical damage every .25 seconds for the 3 second duration of the beam. Goj'Azak cannot modify the beam's angle while firing it, but he can move at 25% of his normal speed while firing it. Enemies attempting to move against the beam towards Goj'Azak are slowed by 50/65/80%. The beam deals full damage to structures and applies Ruinator to them. However, structures block the beam, allowing enemies to escape it by hiding behind them. Once the beam has been fired, it cannot be ended prematurely unless Goj'Azak cancels it. However, he can still be stunned or displaced while firing the beam.\\n\\n**Sample Quotes and Emotes**\\n\\nPick: From the depths, I rise!\\n\\nBan: Back to hibernation...\\n\\nFirst Move: I can only hope this place puts up a good fight.\\n\\nKill: Tell me that wasn't your best.\\n\\nFirst encounter with Galio or target Dragon or Baron: At last, a worthy opponent! Our battle will be legendary!\\n\\nKill Galio, Dragon, or Baron: Finally, a satisfying fight... ANOTHER!\\n\\nDestroy Tower: Another day, another city in ruins.\\n\\nKilling Spree: Can none of you worms stop me?\\n\\nPentakill: Such a disappointment...\\n\\nTaunt: Goj'Azak rears back before firing his breath weapon skyward, continuing to do so until he moves or uses another emote.\\n\\nJoke: Goj'Azak fires his breath weapon downward until it causes him to hover in the air. If he moves after this, he will propel himself with his breath, gaining 1 movement speed while doing so. He stops when he attacks, uses an ability, or uses another emote.\\n\\nDance: Goj'Azak leaps up into the air and puts two of his arms from one side up against his forehead and the other two against his chest, letting out an enthusiastic snarl at the peak of his jump. He alternates which pair of arms goes where with each jump.\", \"author_fullname\": \"t2_17ep8m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Goj'Azak, the Void Titan\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdngsh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563225646.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563253558.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELore\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll voidborn hunger endlessly for something. Food, knowledge, evolution, more. Goj\\u0026#39;Azak hungers for challenge. To sate his hunger, he came to Runeterra long ago and settled into the depths of the ocean. When not hibernating, he swims near coastal settlements to discreetly observe them, attempting to gauge how good of a fight they would put up against him. Once he\\u0026#39;s locked on a settlement, he deliberately allows its denizens to see glimpses of his immense form poking up above the waves, hoping to spur them into preparation for the threat he poses. After a week or two, he rises from the depths to lay siege to his target settlement, usually finding himself disappointed with how easily it falls before his might. In particular, he\\u0026#39;s infuriated that he has yet to attack a settlement that was defended by a creature of an immense stature like his own. However, he has now set sights on a settlement that truly promises a fight, a \\u0026quot;city of progress\\u0026quot; filled with technological wonders. Surely, they can create a massive machine to clash with him, finally giving him the battle he has been craving for so long.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPhysical Appearance\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoj\\u0026#39;Azak is a reptilian voidborn of utterly immense size, towering over the settlements he attacks. His scales are all a shade of deep purple, with those along his chest being lighter. He walks upon two legs and has four arms, each hand bearing four claws. He has a long, sweeping tail that spends most of its time pointing upwards and a line of bony spines that starts at the tip of his tail and travels up his back, splitting into three parallel lines at the base of his tail before continuing up his back to the base of his neck. His head is roughly comparable to that of a crocodile, with a long snout. However, three eyes adorn each side of it, its teeth are jagged and vicious, and both jaws can split open.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGameplay\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoj\\u0026#39;Azak is a Juggernaut with a distinct proficiency in destroying structures.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPassive: Ruinator\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoj\\u0026#39;Azak\\u0026#39;s attacks against structures cause them to take 5% (+.5% per level) more physical damage from all sources for 3 seconds, stacking up to 3 times. He also takes 15% less damage from tower shots.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQ: Ravage\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpon activation, Goj\\u0026#39;Azak enters an enraged state for 4 seconds. During this time, he gains 15/20/25/30/35% increased movement and attack speed and his basic attacks deal additional damage to their primary target equal to 20/25/30/35/40% of his total AD and cleave to deal twice the bonus damage to enemies in a cone behind his target. the bonus damage applies to structures, but attacks against structures do not cleave.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EW: Regenerative Cells\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPassive: Goj\\u0026#39;Azak gains an additional 40/50/60/70/80% base health regeneration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EActive: Goj\\u0026#39;Azak overclocks his regenerative cells to rapidly heal. He consumes 5% of his maximum mana per second to heal for 5/6/7/8/9% of his maximum health per second. However, this process is physically taxing. As a result, Goj\\u0026#39;Azak is slowed by 30% while rapidly healing and all mana regeneration is frozen while healing. Additionally, the cells have trouble working efficiently if Goj\\u0026#39;Azak is exerting himself, and the healing is 50/45/40/35/30% less efficient if Goj\\u0026#39;Azak has taken or dealt damage within the last 4 seconds. This lasts until it is turned off by reactivation, Goj\\u0026#39;Azak is at full health, or he is out of mana, at which point the ability goes on cooldown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EE: Tail Smash\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoj\\u0026#39;Azak raises his tail into the sky for 1 second before bringing it down in a line with a range of 825 and a width of 150. Enemies within the outer 50 on either side take 80/105/130/155/180 (+50% AD) physical damage and are slowed by 30% for 1.5 seconds. Enemies in the inner 50 take 50% increased damage and are stunned for 1 second instead.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ER: Annihilator Breath\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoj\\u0026#39;Azak spends 1 second taking in a deep breath before unleashing his breath weapon, splitting both of his jaws apart as he does so. The beam has a range of 1500 and a width of 400. Enemies in the beam take 40/55/70 (+10% AD) physical damage every .25 seconds for the 3 second duration of the beam. Goj\\u0026#39;Azak cannot modify the beam\\u0026#39;s angle while firing it, but he can move at 25% of his normal speed while firing it. Enemies attempting to move against the beam towards Goj\\u0026#39;Azak are slowed by 50/65/80%. The beam deals full damage to structures and applies Ruinator to them. However, structures block the beam, allowing enemies to escape it by hiding behind them. Once the beam has been fired, it cannot be ended prematurely unless Goj\\u0026#39;Azak cancels it. However, he can still be stunned or displaced while firing the beam.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESample Quotes and Emotes\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPick: From the depths, I rise!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBan: Back to hibernation...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst Move: I can only hope this place puts up a good fight.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKill: Tell me that wasn\\u0026#39;t your best.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst encounter with Galio or target Dragon or Baron: At last, a worthy opponent! Our battle will be legendary!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKill Galio, Dragon, or Baron: Finally, a satisfying fight... ANOTHER!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDestroy Tower: Another day, another city in ruins.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKilling Spree: Can none of you worms stop me?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPentakill: Such a disappointment...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETaunt: Goj\\u0026#39;Azak rears back before firing his breath weapon skyward, continuing to do so until he moves or uses another emote.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJoke: Goj\\u0026#39;Azak fires his breath weapon downward until it causes him to hover in the air. If he moves after this, he will propel himself with his breath, gaining 1 movement speed while doing so. He stops when he attacks, uses an ability, or uses another emote.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDance: Goj\\u0026#39;Azak leaps up into the air and puts two of his arms from one side up against his forehead and the other two against his chest, letting out an enthusiastic snarl at the peak of his jump. He alternates which pair of arms goes where with each jump.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdngsh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"saltydevilsaur\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdngsh/gojazak_the_void_titan/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cdngsh/gojazak_the_void_titan/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563224758.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[PCPartPicker Part List](https://pcpartpicker.com/list/2bkr3b)\\n\\nType|Item|Price\\n:----|:----|:----\\n**CPU** | [AMD - Ryzen 7 3700X 3.6 GHz 8-Core Processor](https://pcpartpicker.com/product/QKJtt6/amd-ryzen-7-3700x-36-ghz-8-core-processor-100-100000071box) | $329.00 @ B\\u0026H \\n**CPU Cooler** | [NZXT - Kraken X62 Rev 2 98.17 CFM Liquid CPU Cooler](https://pcpartpicker.com/product/2RdFf7/nzxt-kraken-x62-rev-2-982-cfm-liquid-cpu-cooler-rl-krx62-02) | $139.89 @ OutletPC \\n**Motherboard** | [MSI - B450 GAMING PRO CARBON AC ATX AM4 Motherboard](https://pcpartpicker.com/product/t797YJ/msi-b450-gaming-pro-carbon-ac-atx-am4-motherboard-b450-gaming-pro-carbon-ac) | $159.99 @ SuperBiiz \\n**Memory** | [G.Skill - Trident Z 16 GB (2 x 8 GB) DDR4-3200 Memory](https://pcpartpicker.com/product/4n648d/gskill-tridentz-series-16gb-2-x-8gb-ddr4-3200-memory-f4-3200c16d-16gtzkw) | $79.99 @ Newegg \\n**Storage** | [Samsung - 970 Evo 500 GB M.2-2280 Solid State Drive](https://pcpartpicker.com/product/P4ZFf7/samsung-970-evo-500gb-m2-2280-solid-state-drive-mz-v7e500bw) | $89.99 @ Amazon \\n**Storage** | [Seagate - Barracuda 2 TB 3.5\\\" 7200RPM Internal Hard Drive](https://pcpartpicker.com/product/CbL7YJ/seagate-barracuda-2tb-35-7200rpm-internal-hard-drive-st2000dm006) | $68.87 @ OutletPC \\n**Video Card** | [EVGA - GeForce RTX 2080 Ti 11 GB Black Video Card](https://pcpartpicker.com/product/pKrmP6/evga-geforce-rtx-2080-ti-11-gb-black-video-card-11g-p4-2281-kr) | $1098.99 @ SuperBiiz \\n**Case** | [Lian-Li - PC-O11 Dynamic ATX Full Tower Case](https://pcpartpicker.com/product/VxRzK8/lian-li-pc-o11dw-atx-full-tower-case-pc-o11dw) | $127.99 @ Adorama \\n**Power Supply** | [Corsair - RMx (2018) 750 W 80+ Gold Certified Fully Modular ATX Power Supply](https://pcpartpicker.com/product/79tQzy/corsair-rmx-2018-750w-80-gold-certified-fully-modular-atx-power-supply-cp-9020179-na) | $99.99 @ Amazon \\n**Operating System** | [Microsoft - Windows 10 Home OEM 64-bit](https://pcpartpicker.com/product/wtgPxr/microsoft-os-kw900140) | $99.39 @ OutletPC \\n**Case Fan** | [Corsair - Air Series White 2 pack 52.19 CFM 120 mm Fan](https://pcpartpicker.com/product/fhW9TW/corsair-case-fan-co9050016wled) | Purchased For $0.00 \\n**Case Fan** | [Corsair - Air Series White 2 pack 52.19 CFM 120 mm Fan](https://pcpartpicker.com/product/fhW9TW/corsair-case-fan-co9050016wled) | Purchased For $0.00 \\n**Monitor** | [Acer - VG271U Pbmiipx 27.0\\\" 2560x1440 144 Hz Monitor](https://pcpartpicker.com/product/b8VD4D/acer-vg271u-pbmiipx-270-2560x1440-144-hz-monitor-vg271u-pbmiipx) | $299.99 @ Newegg \\n | *Prices include shipping, taxes, rebates, and discounts* |\\n | Total (before mail-in rebates) | $2604.08\\n | Mail-in rebates | -$10.00\\n | **Total** | **$2594.08**\\n | Generated by [PCPartPicker](https://pcpartpicker.com) 2019-07-15 15:55 EDT-0400 |\\n\\n\\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\", \"author_fullname\": \"t2_qehky\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"PPP\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdmhx6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563220572.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563249136.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/list/2bkr3b\\\"\\u003EPCPartPicker Part List\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EType\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/QKJtt6/amd-ryzen-7-3700x-36-ghz-8-core-processor-100-100000071box\\\"\\u003EAMD - Ryzen 7 3700X 3.6 GHz 8-Core Processor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$329.00 @ B\\u0026amp;H\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU Cooler\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/2RdFf7/nzxt-kraken-x62-rev-2-982-cfm-liquid-cpu-cooler-rl-krx62-02\\\"\\u003ENZXT - Kraken X62 Rev 2 98.17 CFM Liquid CPU Cooler\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$139.89 @ OutletPC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/t797YJ/msi-b450-gaming-pro-carbon-ac-atx-am4-motherboard-b450-gaming-pro-carbon-ac\\\"\\u003EMSI - B450 GAMING PRO CARBON AC ATX AM4 Motherboard\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$159.99 @ SuperBiiz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/4n648d/gskill-tridentz-series-16gb-2-x-8gb-ddr4-3200-memory-f4-3200c16d-16gtzkw\\\"\\u003EG.Skill - Trident Z 16 GB (2 x 8 GB) DDR4-3200 Memory\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$79.99 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/P4ZFf7/samsung-970-evo-500gb-m2-2280-solid-state-drive-mz-v7e500bw\\\"\\u003ESamsung - 970 Evo 500 GB M.2-2280 Solid State Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$89.99 @ Amazon\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/CbL7YJ/seagate-barracuda-2tb-35-7200rpm-internal-hard-drive-st2000dm006\\\"\\u003ESeagate - Barracuda 2 TB 3.5\\u0026quot; 7200RPM Internal Hard Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$68.87 @ OutletPC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EVideo Card\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/pKrmP6/evga-geforce-rtx-2080-ti-11-gb-black-video-card-11g-p4-2281-kr\\\"\\u003EEVGA - GeForce RTX 2080 Ti 11 GB Black Video Card\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1098.99 @ SuperBiiz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECase\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/VxRzK8/lian-li-pc-o11dw-atx-full-tower-case-pc-o11dw\\\"\\u003ELian-Li - PC-O11 Dynamic ATX Full Tower Case\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$127.99 @ Adorama\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EPower Supply\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/79tQzy/corsair-rmx-2018-750w-80-gold-certified-fully-modular-atx-power-supply-cp-9020179-na\\\"\\u003ECorsair - RMx (2018) 750 W 80+ Gold Certified Fully Modular ATX Power Supply\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$99.99 @ Amazon\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EOperating System\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/wtgPxr/microsoft-os-kw900140\\\"\\u003EMicrosoft - Windows 10 Home OEM 64-bit\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$99.39 @ OutletPC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECase Fan\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/fhW9TW/corsair-case-fan-co9050016wled\\\"\\u003ECorsair - Air Series White 2 pack 52.19 CFM 120 mm Fan\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $0.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECase Fan\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/fhW9TW/corsair-case-fan-co9050016wled\\\"\\u003ECorsair - Air Series White 2 pack 52.19 CFM 120 mm Fan\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $0.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMonitor\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/b8VD4D/acer-vg271u-pbmiipx-270-2560x1440-144-hz-monitor-vg271u-pbmiipx\\\"\\u003EAcer - VG271U Pbmiipx 27.0\\u0026quot; 2560x1440 144 Hz Monitor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$299.99 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cem\\u003EPrices include shipping, taxes, rebates, and discounts\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETotal (before mail-in rebates)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2604.08\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMail-in rebates\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-$10.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETotal\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$2594.08\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGenerated by \\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003EPCPartPicker\\u003C/a\\u003E 2019-07-15 15:55 EDT-0400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003ELorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\\u0026#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/c9S0HI70UuD98xU3Ft7gwzvtMlyXmkcq_8_AXReOJ-c.jpg?auto=webp\\u0026s=9d6e35a2963a7e6325e1df1d722d4a24e8d618d6\", \"width\": 500, \"height\": 500}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/c9S0HI70UuD98xU3Ft7gwzvtMlyXmkcq_8_AXReOJ-c.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ead6cf4e1eb947a47f53b98300479d20fb706c27\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/c9S0HI70UuD98xU3Ft7gwzvtMlyXmkcq_8_AXReOJ-c.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ddd0e9629ca8b9b9f80ac2ce7522f7768aaf98a2\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/c9S0HI70UuD98xU3Ft7gwzvtMlyXmkcq_8_AXReOJ-c.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4663026d8a7398ff981f6324ea51e520f826129f\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"qqOyhvlzRTv8-OBid1-XMUTOo1ArFxuw-UB_sktXJbQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdmhx6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"StoneAgeInnovator\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdmhx6/ppp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cdmhx6/ppp/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563220336.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u003EPaul Pogba\\u2019s hopes of leaving Manchester United this summer are becoming remote with the club receiving no bids for the midfielder and the transfer window closing in less than a month. The deadline of this summer\\u2019s transfer window is 8 August and is an issue regarding any potential deal. \\n\\n\\u003EOle Gunnar Solskj\\u00e6r has already lost a midfielder in Ander Herrera, who joined Paris Saint-Germain as a free agent, so if Pogba was to depart it would be difficult for the manager to have to replace a second midfielder in the three and a half weeks left of the window.\\n\\n\\n\\u003EReal Madrid would like to sign Pogba but their valuation is markedly lower than United\\u2019s. Real price him between \\u00a3100-120m with United wanting closer to \\u00a3170m.\\n\\n\\u003EBoth Pogba and his agent Mino Raiola have recently admitted the player\\u2019s wish would be to leave so if he was to stay Solskj\\u00e6r would face a challenge to ensure dressing room harmony is not affected.\", \"author_fullname\": \"t2_2ni4jgyd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Pp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdhuuz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563228257.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EPaul Pogba\\u2019s hopes of leaving Manchester United this summer are becoming remote with the club receiving no bids for the midfielder and the transfer window closing in less than a month. The deadline of this summer\\u2019s transfer window is 8 August and is an issue regarding any potential deal. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOle Gunnar Solskj\\u00e6r has already lost a midfielder in Ander Herrera, who joined Paris Saint-Germain as a free agent, so if Pogba was to depart it would be difficult for the manager to have to replace a second midfielder in the three and a half weeks left of the window.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReal Madrid would like to sign Pogba but their valuation is markedly lower than United\\u2019s. Real price him between \\u00a3100-120m with United wanting closer to \\u00a3170m.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth Pogba and his agent Mino Raiola have recently admitted the player\\u2019s wish would be to leave so if he was to stay Solskj\\u00e6r would face a challenge to ensure dressing room harmony is not affected.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdhuuz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"EliteWolf67\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdhuuz/pp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cdhuuz/pp/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563199457.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_wkca04p\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[NFS ProStreet OST / Yelle - A Cause des Gar\\u00e7ons] For those who have the same nostalgic feelings about this game.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cdg8n2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/psO0WXcuNlo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gondola / Yelle - A Cause des Gar\\u00e7ons / NFS ProStreet\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/psO0WXcuNlo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Maxter315\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/psO0WXcuNlo/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/Maxter315\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/psO0WXcuNlo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cdg8n2\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UQO0DCEH4bADNDiVHc1Gmj7WYbtKPTnUPjTLohr7IDE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563218599.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/fJpVmoXlagTmtvVn8y8M7RUAZhOf8MKGJfyGOJcr4wM.jpg?auto=webp\\u0026s=5aa10f6c8dbd8cf9cf3d57c40183608653179849\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/fJpVmoXlagTmtvVn8y8M7RUAZhOf8MKGJfyGOJcr4wM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ddc6161891f6e86bf09b7bf6444f57d9f3257af9\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/fJpVmoXlagTmtvVn8y8M7RUAZhOf8MKGJfyGOJcr4wM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=68afe72c3d3fe0f3b6d750fcf13ff9aae0b900e9\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/fJpVmoXlagTmtvVn8y8M7RUAZhOf8MKGJfyGOJcr4wM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=958b954f6406e2b1d2547ce65ca73c16ca1b1293\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"Q5kQF58cbdETVShNmZd2q70vswYqb2XXyxdLf1eNEpo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdg8n2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bucketofimpedance\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdg8n2/nfs_prostreet_ost_yelle_a_cause_des_gar\\u00e7ons_for/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=psO0WXcuNlo\", \"subreddit_subscribers\": 754, \"created_utc\": 1563189799.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gondola / Yelle - A Cause des Gar\\u00e7ons / NFS ProStreet\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/psO0WXcuNlo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Maxter315\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/psO0WXcuNlo/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/Maxter315\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_45r6gft7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"lmaos\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 104, \"hide_score\": false, \"name\": \"t3_cdfzjm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/WW_MwsWl26bssyTZHXQGpLbNRA54tRQhcMUbBgJi_9k.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563216849.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/wa8zr3wx6ga31.jpg?auto=webp\\u0026s=b1aa317e40a706664d82a27fbc6a9d9e6801db97\", \"width\": 259, \"height\": 194}, \"resolutions\": [{\"url\": \"https://preview.redd.it/wa8zr3wx6ga31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=768267b701f7c2df01cbadd3c3d49706343099c2\", \"width\": 108, \"height\": 80}, {\"url\": \"https://preview.redd.it/wa8zr3wx6ga31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=64993f550d7d4c259b16fe9268f362c904340c58\", \"width\": 216, \"height\": 161}], \"variants\": {}, \"id\": \"_vHcKU2ZpYQXCmskrXTH5TQsFcKQ-IwEDRbP0Efwy1M\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdfzjm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zulmao\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdfzjm/lmaos/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/wa8zr3wx6ga31.jpg\", \"subreddit_subscribers\": 754, \"created_utc\": 1563188049.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hey!\\n\\n\\u0026#x200B;\\n\\nMy name is Nick Caserta and I am a musician for hire. I play the drums, bass, violin, and ukulele, make instrumental music, make beats, do ghost production, and I mix music. All for \\\\*\\\\*very cheap\\\\*\\\\*. I am very passionate about music and currently am just trying to build up my portfolio and make music for others. \\n\\n\\n\\\\*\\\\*About me:\\\\*\\\\* \\n\\\\- I am 17 years old. \\n\\\\- From the Central Ohio area. \\n\\\\- I use FL Studio 20 to make music. \\n\\\\- I have a solo instrumental music project called 'nightwithoutstars' and play drums for a band called 'Past Postal' \\n\\\\- I'm in school for my Associate's Degree in Technical Studies and work part-time at a grocery store. \\n\\\\- I plan on making being a musician my full-time career. \\n\\n\\n\\\\*\\\\*What I provide and (USD) rates:\\\\*\\\\*\\n\\n\\\\- Any of the following instruments recorded for your music project - $5 a song \\n\\\\- Ukulele \\n\\\\- Bass Guitar \\n\\\\- Violin \\n\\\\- Drums (either MIDI drums or very lo-fi real drums since I haven't gotten a full microphone kit for my set.) \\n\\\\- Any synths \\n\\\\- Novice guitar (mostly tabbed riffs or simple chords. Electric or Acoustic)\\n\\n \\n\\\\- Indie video game soundtracks - $7 a song, $50 for a full soundtrack of 7 songs or more. \\n\\\\- Songs made for your indie video games! I love making video game music and I am 100% down to make soundtrack songs or a full soundtrack.\\n\\n \\n\\\\- A full piece of instrumental music in any style or with any instruments - $12 a song \\n\\\\- This includes instrumentals to be sung over, hip-hop beats, or full instrumental songs to be added to.\\n\\n \\n\\\\- Ghost production - $20 a song \\n\\\\- The same as above, but you will get the credit. This means that I will make a beat, instrumental, song, jingle, what have you and you will have 100% of the credit for making the song. Essentially, the extra $8 will give you all credit and you are 100% allowed to say that you made the song, and I will not claim any credit toward making the song.\\n\\n \\n\\\\- Mixing of your songs - $4 a song \\n\\\\- NOTE: This is not mastering, because I am not confident in my mastering skills just yet. \\n\\n\\n\\\\*\\\\*ALL\\\\*\\\\* rates can change, and I may charge differently depending on the circumstances. For example, if you ask for an 8 minute instrumental song, I would probably charge more than the standard $12, or if you want me to make a bunch of songs, a deal could be make for a bundle. I am also willing to negotiate all prices, within reason. \\n\\n\\n\\\\*\\\\*Contact me!:\\\\*\\\\* \\nEmail: [nicksgooduniverse@gmail.com](mailto:nicksgooduniverse@gmail.com) \\nTwitter: @CasertaNick \\nInstagram: @casertanick \\nDiscord: [nicholascaserta@yahoo.com](mailto:nicholascasert@yahoo.com) \\nReddit: u/HuMadsFast \\n\\n\\n\\\\*\\\\*PORTFOLIO:\\\\*\\\\*\\n\\nCredits to my name thus far: \\n\\\\- All music by 'nightwithoutstars' \\n\\\\- Main Theme/Forest Theme - Unfamiliar Lands (Unreleased indie game in development by Sam Nau) \\n\\\\- Hip-hop beats for different songs on all platforms (link to all of them) \\n\\n\\nPlease feel free to comment or message me any questions! I look forward to working with some of you.\", \"author_fullname\": \"t2_yadqk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"aaaaa\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdc0pj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563188163.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy name is Nick Caserta and I am a musician for hire. I play the drums, bass, violin, and ukulele, make instrumental music, make beats, do ghost production, and I mix music. All for **very cheap**. I am very passionate about music and currently am just trying to build up my portfolio and make music for others. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**About me:**\\u003Cbr/\\u003E\\n- I am 17 years old.\\u003Cbr/\\u003E\\n- From the Central Ohio area.\\u003Cbr/\\u003E\\n- I use FL Studio 20 to make music.\\u003Cbr/\\u003E\\n- I have a solo instrumental music project called \\u0026#39;nightwithoutstars\\u0026#39; and play drums for a band called \\u0026#39;Past Postal\\u0026#39;\\u003Cbr/\\u003E\\n- I\\u0026#39;m in school for my Associate\\u0026#39;s Degree in Technical Studies and work part-time at a grocery store.\\u003Cbr/\\u003E\\n- I plan on making being a musician my full-time career. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**What I provide and (USD) rates:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Any of the following instruments recorded for your music project - $5 a song\\u003Cbr/\\u003E\\n- Ukulele\\u003Cbr/\\u003E\\n- Bass Guitar\\u003Cbr/\\u003E\\n- Violin\\u003Cbr/\\u003E\\n- Drums (either MIDI drums or very lo-fi real drums since I haven\\u0026#39;t gotten a full microphone kit for my set.)\\u003Cbr/\\u003E\\n- Any synths\\u003Cbr/\\u003E\\n- Novice guitar (mostly tabbed riffs or simple chords. Electric or Acoustic)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Indie video game soundtracks - $7 a song, $50 for a full soundtrack of 7 songs or more.\\u003Cbr/\\u003E\\n- Songs made for your indie video games! I love making video game music and I am 100% down to make soundtrack songs or a full soundtrack.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- A full piece of instrumental music in any style or with any instruments - $12 a song\\u003Cbr/\\u003E\\n- This includes instrumentals to be sung over, hip-hop beats, or full instrumental songs to be added to.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Ghost production - $20 a song\\u003Cbr/\\u003E\\n- The same as above, but you will get the credit. This means that I will make a beat, instrumental, song, jingle, what have you and you will have 100% of the credit for making the song. Essentially, the extra $8 will give you all credit and you are 100% allowed to say that you made the song, and I will not claim any credit toward making the song.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Mixing of your songs - $4 a song\\u003Cbr/\\u003E\\n- NOTE: This is not mastering, because I am not confident in my mastering skills just yet. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**ALL** rates can change, and I may charge differently depending on the circumstances. For example, if you ask for an 8 minute instrumental song, I would probably charge more than the standard $12, or if you want me to make a bunch of songs, a deal could be make for a bundle. I am also willing to negotiate all prices, within reason. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Contact me!:**\\u003Cbr/\\u003E\\nEmail: [\\u003Ca href=\\\"mailto:nicksgooduniverse@gmail.com\\\"\\u003Enicksgooduniverse@gmail.com\\u003C/a\\u003E](mailto:\\u003Ca href=\\\"mailto:nicksgooduniverse@gmail.com\\\"\\u003Enicksgooduniverse@gmail.com\\u003C/a\\u003E)\\u003Cbr/\\u003E\\nTwitter: @CasertaNick\\u003Cbr/\\u003E\\nInstagram: @casertanick\\u003Cbr/\\u003E\\nDiscord: [\\u003Ca href=\\\"mailto:nicholascaserta@yahoo.com\\\"\\u003Enicholascaserta@yahoo.com\\u003C/a\\u003E](mailto:\\u003Ca href=\\\"mailto:nicholascasert@yahoo.com\\\"\\u003Enicholascasert@yahoo.com\\u003C/a\\u003E)\\u003Cbr/\\u003E\\nReddit: \\u003Ca href=\\\"/u/HuMadsFast\\\"\\u003Eu/HuMadsFast\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**PORTFOLIO:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECredits to my name thus far:\\u003Cbr/\\u003E\\n- All music by \\u0026#39;nightwithoutstars\\u0026#39;\\u003Cbr/\\u003E\\n- Main Theme/Forest Theme - Unfamiliar Lands (Unreleased indie game in development by Sam Nau)\\u003Cbr/\\u003E\\n- Hip-hop beats for different songs on all platforms (link to all of them) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease feel free to comment or message me any questions! I look forward to working with some of you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdc0pj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HuMadsFast\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdc0pj/aaaaa/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cdc0pj/aaaaa/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563159363.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3dtz2mjb\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Idle Miner Useful Error Msg No: 1\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cdb74x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/q-h5zsLLmVWWVBxCX3T5bANb1UarOaHu3KtnNr3p1dU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563183362.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/i7ccb4umeda31.png?auto=webp\\u0026s=e28308694fe0ce6432810bc433ec101bdcc7ec97\", \"width\": 1080, \"height\": 1920}, \"resolutions\": [{\"url\": \"https://preview.redd.it/i7ccb4umeda31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=809362ac693424cc235249cd85e5463d603c62e8\", \"width\": 108, \"height\": 192}, {\"url\": \"https://preview.redd.it/i7ccb4umeda31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3142cf4b84b85c1d31dcd068cb5fad359249c704\", \"width\": 216, \"height\": 384}, {\"url\": \"https://preview.redd.it/i7ccb4umeda31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=315bf6f9c529dbf9159a30402a6f4ee8984a32b3\", \"width\": 320, \"height\": 568}, {\"url\": \"https://preview.redd.it/i7ccb4umeda31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=4e4690298e09da2724046388d18f4a103e9c9480\", \"width\": 640, \"height\": 1137}, {\"url\": \"https://preview.redd.it/i7ccb4umeda31.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=0a4458c6097f707946583bd229d3755d34d62a84\", \"width\": 960, \"height\": 1706}, {\"url\": \"https://preview.redd.it/i7ccb4umeda31.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=19f09c7b61c37ccf154cc6557d96a503c6b0905d\", \"width\": 1080, \"height\": 1920}], \"variants\": {}, \"id\": \"ZvOyF0hyb4TKELvtXT6x3IrTHfSn4V8YjbQn3yhbfXI\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdb74x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rafezn\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdb74x/idle_miner_useful_error_msg_no_1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/i7ccb4umeda31.png\", \"subreddit_subscribers\": 754, \"created_utc\": 1563154562.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3768f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"x\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdahjb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"author_cakeday\": true, \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563179197.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdahjb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"smmcg\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cdahjb/x/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cdahjb/x/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563150397.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Potential requirements**\\n\\nThe country:\\n\\n* is *not* the [Papal State](https://eu4.paradoxwikis.com/The_Papal_State) *or* the [Roman Empire](https://eu4.paradoxwikis.com/Roman_Empire).\\n* is *not* a [colonial nation](https://eu4.paradoxwikis.com/Colonial_nation).\\n* primary culture is in either the French culture group, Germanic culture group, *or* Czech.\\n* has *not* yet enacted this decision.\\n\\n**Allow**\\n\\n[Franks](https://en.wikipedia.org/wiki/Francia) does *not* exist.\\n\\nThe [Holy Roman Empire](https://eu4.paradoxwikis.com/Holy_Roman_Empire) is dismantled or the [Holy Roman Empire](https://eu4.paradoxwikis.com/Holy_Roman_Empire) interface is otherwise disabled.\\n\\nThe [Holy Roman Empire](https://eu4.paradoxwikis.com/Holy_Roman_Empire) does *not* exist, unless it is the one enacting the decision.\\n\\nThe [Roman Empire](https://eu4.paradoxwikis.com/Roman_Empire) does *not* exist.\\n\\nThe country:\\n\\n* has an administrative technology of at least 20.\\n* is [Christian](https://eu4.paradoxwikis.com/Religions_and_denominations#Christian).\\n* is *not* a [subject nation](https://eu4.paradoxwikis.com/Subject_nation).\\n* is *not* a [nomad nation](https://eu4.paradoxwikis.com/Steppe_hordes).\\n* is *not* at [war](https://eu4.paradoxwikis.com/Warfare).\\n* owns its [core provinces](https://eu4.paradoxwikis.com/Core):\\n* Hamburg (44), Magdeburg (52), Th\\u00fcringen (63), Elsass (75)/Sta\\u00dfbourg (75?), Salzburg (76), Mainz (78), W\\u00fcrzburg (79)/Fulda (?), Trier (80), K\\u00f6ln (85), M\\u00fcnster (86)/Dortmund (?), Calais (87), Luxemburg (94), Amsterdam (97), Utrecht (98), Friesland (100), Krain (129), Wein (134), Bern (165)/Geneva (?), Cean (168), Aquitaine (174), Maine (177), Haut-Poitou (180), Paris (183), Reims (186), Barrois (187), Dijonnais (192), Toulouse (196), Provence (201)/Aix (?), Lyonnais (203), Antwerpen (1744), Coblenz (1760), Augsburg (1868), Bremen (1874), Frankfurt (1876), Aachen (1878), Regensburg (2957), and Touraine (4389).\\n* owns, or has a subject own, all provinces of:\\n * Brittany and Bohemia.\\n* owns, or has a subject own, the [core provinces](https://eu4.paradoxwikis.com/Core):\\n * Berlin (53), Sachsen (61), and Barcelona (213).\\n\\n**Effects**\\n\\nThe country:\\n\\n* changes to [Franks](https://en.wikipedia.org/wiki/Francia).\\n* if primary culture is *not* in the French culture group:\\n * gains the additional primary culture of Walloon.\\n* if primary culture is *not* in the Germanic culture group:\\n * gains the additional primary culture of Rhenish.\\n* change rank to Empire.\\n* gains **50** prestige.\\n* moves its capital to Aachen (1878).\\n* gains a [core](https://eu4.paradoxwikis.com/Core) on Aachen (1878).\\n* gains permanent claims on all provinces of North Germany, South Germany, France, and Low countries that are *not* owned by Franks.\\n* gains permanent claims on all provinces of Tuscany, Emilia-Romagna, Liguria, Piedmont, Lombardy, Central Italy (except Abruzzi), and Venetia (except Venezia), plus Roma that are \\\\*not\\\\* owned by Franks.\\n* gains the modifier *\\\"Rome Reborn\\\"* for the rest of the campaign with the following effects:\\n * \\\\+1.00 Yearly prestige\\n * \\\\+10% Tax modifier\\n* gains the modifier *\\\"Increased Centralization\\\"* for 20 years with the following effects:\\n * \\\\-0.05 Monthly autonomy change\\n * \\\\+1 National unrest\\n\\nIf country was *not* France, and France exists:\\n\\n* France gains the modifier *\\\"Delegitimized Carolingian Legacy\\\"* for 10 years with the following effects:\\n * \\\\-1.00 Yearly prestige\\n * \\\\+10 National unrest in the capital\\n\\nIf country was *not* the last emperor of the Holy Roman Empire, and that country exists:\\n\\n* That country gains the modifier *\\\"Delegitimized Carolingian Legacy\\\"* for 10 years with the following effects:\\n * \\\\-1.00 Yearly prestige\\n * \\\\+10 National unrest in the capital\\n\\n[Orange provinces need to be owned and cored. Red are provinces that need to be owned and cored by either you or your subject. Violet are regions that need to be owned and cored by either you or your subject.](https://i.redd.it/1si4udp3hca31.png)\", \"author_fullname\": \"t2_c2zx5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hypothetical Formable Kingdom of the Franks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"media_metadata\": {\"1si4udp3hca31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 303, \"x\": 391, \"u\": \"https://i.redd.it/1si4udp3hca31.png\"}, \"m\": \"image/png\", \"id\": \"1si4udp3hca31\"}}, \"name\": \"t3_cd967b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/G1iVI7Z0jpKYnHPAtUoZGQ51yom2XsXdF3txsff4PSs.jpg\", \"edited\": 1563144985.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563171863.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EPotential requirements\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe country:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Eis \\u003Cem\\u003Enot\\u003C/em\\u003E the \\u003Ca href=\\\"https://eu4.paradoxwikis.com/The_Papal_State\\\"\\u003EPapal State\\u003C/a\\u003E \\u003Cem\\u003Eor\\u003C/em\\u003E the \\u003Ca href=\\\"https://eu4.paradoxwikis.com/Roman_Empire\\\"\\u003ERoman Empire\\u003C/a\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003Eis \\u003Cem\\u003Enot\\u003C/em\\u003E a \\u003Ca href=\\\"https://eu4.paradoxwikis.com/Colonial_nation\\\"\\u003Ecolonial nation\\u003C/a\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003Eprimary culture is in either the French culture group, Germanic culture group, \\u003Cem\\u003Eor\\u003C/em\\u003E Czech.\\u003C/li\\u003E\\n\\u003Cli\\u003Ehas \\u003Cem\\u003Enot\\u003C/em\\u003E yet enacted this decision.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAllow\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://en.wikipedia.org/wiki/Francia\\\"\\u003EFranks\\u003C/a\\u003E does \\u003Cem\\u003Enot\\u003C/em\\u003E exist.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe \\u003Ca href=\\\"https://eu4.paradoxwikis.com/Holy_Roman_Empire\\\"\\u003EHoly Roman Empire\\u003C/a\\u003E is dismantled or the \\u003Ca href=\\\"https://eu4.paradoxwikis.com/Holy_Roman_Empire\\\"\\u003EHoly Roman Empire\\u003C/a\\u003E interface is otherwise disabled.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe \\u003Ca href=\\\"https://eu4.paradoxwikis.com/Holy_Roman_Empire\\\"\\u003EHoly Roman Empire\\u003C/a\\u003E does \\u003Cem\\u003Enot\\u003C/em\\u003E exist, unless it is the one enacting the decision.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe \\u003Ca href=\\\"https://eu4.paradoxwikis.com/Roman_Empire\\\"\\u003ERoman Empire\\u003C/a\\u003E does \\u003Cem\\u003Enot\\u003C/em\\u003E exist.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe country:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Ehas an administrative technology of at least 20.\\u003C/li\\u003E\\n\\u003Cli\\u003Eis \\u003Ca href=\\\"https://eu4.paradoxwikis.com/Religions_and_denominations#Christian\\\"\\u003EChristian\\u003C/a\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003Eis \\u003Cem\\u003Enot\\u003C/em\\u003E a \\u003Ca href=\\\"https://eu4.paradoxwikis.com/Subject_nation\\\"\\u003Esubject nation\\u003C/a\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003Eis \\u003Cem\\u003Enot\\u003C/em\\u003E a \\u003Ca href=\\\"https://eu4.paradoxwikis.com/Steppe_hordes\\\"\\u003Enomad nation\\u003C/a\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003Eis \\u003Cem\\u003Enot\\u003C/em\\u003E at \\u003Ca href=\\\"https://eu4.paradoxwikis.com/Warfare\\\"\\u003Ewar\\u003C/a\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003Eowns its \\u003Ca href=\\\"https://eu4.paradoxwikis.com/Core\\\"\\u003Ecore provinces\\u003C/a\\u003E:\\u003C/li\\u003E\\n\\u003Cli\\u003EHamburg (44), Magdeburg (52), Th\\u00fcringen (63), Elsass (75)/Sta\\u00dfbourg (75?), Salzburg (76), Mainz (78), W\\u00fcrzburg (79)/Fulda (?), Trier (80), K\\u00f6ln (85), M\\u00fcnster (86)/Dortmund (?), Calais (87), Luxemburg (94), Amsterdam (97), Utrecht (98), Friesland (100), Krain (129), Wein (134), Bern (165)/Geneva (?), Cean (168), Aquitaine (174), Maine (177), Haut-Poitou (180), Paris (183), Reims (186), Barrois (187), Dijonnais (192), Toulouse (196), Provence (201)/Aix (?), Lyonnais (203), Antwerpen (1744), Coblenz (1760), Augsburg (1868), Bremen (1874), Frankfurt (1876), Aachen (1878), Regensburg (2957), and Touraine (4389).\\u003C/li\\u003E\\n\\u003Cli\\u003Eowns, or has a subject own, all provinces of:\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBrittany and Bohemia.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003Eowns, or has a subject own, the \\u003Ca href=\\\"https://eu4.paradoxwikis.com/Core\\\"\\u003Ecore provinces\\u003C/a\\u003E:\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBerlin (53), Sachsen (61), and Barcelona (213).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEffects\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe country:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Echanges to \\u003Ca href=\\\"https://en.wikipedia.org/wiki/Francia\\\"\\u003EFranks\\u003C/a\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003Eif primary culture is \\u003Cem\\u003Enot\\u003C/em\\u003E in the French culture group:\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Egains the additional primary culture of Walloon.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003Eif primary culture is \\u003Cem\\u003Enot\\u003C/em\\u003E in the Germanic culture group:\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Egains the additional primary culture of Rhenish.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003Echange rank to Empire.\\u003C/li\\u003E\\n\\u003Cli\\u003Egains \\u003Cstrong\\u003E50\\u003C/strong\\u003E prestige.\\u003C/li\\u003E\\n\\u003Cli\\u003Emoves its capital to Aachen (1878).\\u003C/li\\u003E\\n\\u003Cli\\u003Egains a \\u003Ca href=\\\"https://eu4.paradoxwikis.com/Core\\\"\\u003Ecore\\u003C/a\\u003E on Aachen (1878).\\u003C/li\\u003E\\n\\u003Cli\\u003Egains permanent claims on all provinces of North Germany, South Germany, France, and Low countries that are \\u003Cem\\u003Enot\\u003C/em\\u003E owned by Franks.\\u003C/li\\u003E\\n\\u003Cli\\u003Egains permanent claims on all provinces of Tuscany, Emilia-Romagna, Liguria, Piedmont, Lombardy, Central Italy (except Abruzzi), and Venetia (except Venezia), plus Roma that are *not* owned by Franks.\\u003C/li\\u003E\\n\\u003Cli\\u003Egains the modifier \\u003Cem\\u003E\\u0026quot;Rome Reborn\\u0026quot;\\u003C/em\\u003E for the rest of the campaign with the following effects:\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E+1.00 Yearly prestige\\u003C/li\\u003E\\n\\u003Cli\\u003E+10% Tax modifier\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003Egains the modifier \\u003Cem\\u003E\\u0026quot;Increased Centralization\\u0026quot;\\u003C/em\\u003E for 20 years with the following effects:\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E-0.05 Monthly autonomy change\\u003C/li\\u003E\\n\\u003Cli\\u003E+1 National unrest\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EIf country was \\u003Cem\\u003Enot\\u003C/em\\u003E France, and France exists:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EFrance gains the modifier \\u003Cem\\u003E\\u0026quot;Delegitimized Carolingian Legacy\\u0026quot;\\u003C/em\\u003E for 10 years with the following effects:\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E-1.00 Yearly prestige\\u003C/li\\u003E\\n\\u003Cli\\u003E+10 National unrest in the capital\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EIf country was \\u003Cem\\u003Enot\\u003C/em\\u003E the last emperor of the Holy Roman Empire, and that country exists:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EThat country gains the modifier \\u003Cem\\u003E\\u0026quot;Delegitimized Carolingian Legacy\\u0026quot;\\u003C/em\\u003E for 10 years with the following effects:\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E-1.00 Yearly prestige\\u003C/li\\u003E\\n\\u003Cli\\u003E+10 National unrest in the capital\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/1si4udp3hca31.png\\\"\\u003EOrange provinces need to be owned and cored. Red are provinces that need to be owned and cored by either you or your subject. Violet are regions that need to be owned and cored by either you or your subject.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/26LQUnJjFz_pK0bphDujghu3YMmfimS7pCwvW664iX0.jpg?auto=webp\\u0026s=3d39a9d75c527dc7e0c6aa178fc9e35e2034a9bc\", \"width\": 330, \"height\": 220}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/26LQUnJjFz_pK0bphDujghu3YMmfimS7pCwvW664iX0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ef8d6d700b89f754899ff2eb775df0b872308371\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/26LQUnJjFz_pK0bphDujghu3YMmfimS7pCwvW664iX0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6f9de3833d3a0b601ae667a11d2fbc23e42a59b9\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/26LQUnJjFz_pK0bphDujghu3YMmfimS7pCwvW664iX0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a1916f1a442847f90cb9a793aabcdc7f9bf7be1a\", \"width\": 320, \"height\": 213}], \"variants\": {}, \"id\": \"oyxv_heDhjfelhkqOmov26i429gBYBQzvMW1jwKJ5Js\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd967b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Staccato137\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cd967b/hypothetical_formable_kingdom_of_the_franks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cd967b/hypothetical_formable_kingdom_of_the_franks/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563143063.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hi guys!\\n\\n\\u0026#x200B;\\n\\nBuilding a rig after many years. I'm planning on gaming at 1440p, maybe even 3440x1440, haven't decided yet. I do realize that it might be hard to hit a lot above 60fps in many AAA games and that's okay. In addition, I will be using the machine for some light productivity work: MS office, lots of chrome tabs, some light programming and Lightroom. My budget is around 1200\\u20ac for the components in the post and I'll be buying the parts from [mindfactory.de](https://mindfactory.de) for the most part (pun intended).\\n\\n\\u0026#x200B;\\n\\nI Waited patiently for Zen2 and after struggling to choose between the 3700x and 3600, I decided to go with the latter due to the fact that in higher-resolution gaming the performance gain is minimal compared to the price. Do you think I'm making the right call here?\\n\\n\\u0026#x200B;\\n\\nAlso, the memory I'm planning on getting should work fine with the R5 3600, since it's Micron's e-die. Is there a better combo of frequency and CL for around the same price that I'm missing?\\n\\n\\u0026#x200B;\\n\\nAnd one more thing about cooling: I was thinking of planning on getting some better (pressure and noise) PWM fans, especially to the front of the case which might suffer from bad airflow. Do you think the bequiet! Silent Wings would be a good option? I was thinking maybe two 120 or 140mm ones in the front, one case fan on top, pulling air in, and then one exhaust. I plan on overclocking the processor a bit and I really do appreciate a silent computer and am willing to pay for it.\\n\\n\\u0026#x200B;\\n\\nThanks a bunch, fellow builders!\\n\\n\\u0026#x200B;\\n\\n\\\\[PCPartPicker Part List\\\\]([https://de.pcpartpicker.com/list/sK7H6s](https://de.pcpartpicker.com/list/sK7H6s))\\n\\n\\u0026#x200B;\\n\\nType|Item|Price\\n\\n:----|:----|:----\\n\\n\\\\*\\\\*CPU\\\\*\\\\* | \\\\[AMD - Ryzen 5 3600 3.6 GHz 6-Core Processor\\\\]([https://de.pcpartpicker.com/product/9nm323/amd-ryzen-5-3600-36-thz-6-core-processor-100-100000031box](https://de.pcpartpicker.com/product/9nm323/amd-ryzen-5-3600-36-thz-6-core-processor-100-100000031box)) | \\u20ac209.00 @ Alternate \\n\\n\\\\*\\\\*CPU Cooler\\\\*\\\\* | \\\\[CRYORIG - H7 Quad Lumi 49 CFM CPU Cooler\\\\]([https://de.pcpartpicker.com/product/bHcMnQ/cryorig-h7-quad-lumi-490-cfm-cpu-cooler-h7-quad-lumi](https://de.pcpartpicker.com/product/bHcMnQ/cryorig-h7-quad-lumi-490-cfm-cpu-cooler-h7-quad-lumi)) | \\u20ac53.79 @ Aquatuning \\n\\n\\\\*\\\\*Motherboard\\\\*\\\\* | \\\\[MSI - B450M MORTAR Micro ATX AM4 Motherboard\\\\]([https://de.pcpartpicker.com/product/FZvbt6/msi-b450m-mortar-atx-am4-motherboard-b450m-mortar](https://de.pcpartpicker.com/product/FZvbt6/msi-b450m-mortar-atx-am4-motherboard-b450m-mortar)) | \\u20ac101.84 @ Mindfactory \\n\\n\\\\*\\\\*Memory\\\\*\\\\* | \\\\[Crucial - Ballistix Sport LT 16 GB (2 x 8 GB) DDR4-3200 Memory\\\\]([https://de.pcpartpicker.com/product/gLGxFT/crucial-ballistix-sport-lt-16-gb-2-x-8-gb-ddr4-3200-memory-bls2k8g4d32aesbk](https://de.pcpartpicker.com/product/gLGxFT/crucial-ballistix-sport-lt-16-gb-2-x-8-gb-ddr4-3200-memory-bls2k8g4d32aesbk)) | \\u20ac74.90 @ Amazon Deutschland \\n\\n\\\\*\\\\*Storage\\\\*\\\\* | \\\\[Crucial - P1 1 TB M.2-2280 Solid State Drive\\\\]([https://de.pcpartpicker.com/product/pxKcCJ/crucial-p1-1tb-m2-2280-solid-state-drive-ct1000p1ssd8](https://de.pcpartpicker.com/product/pxKcCJ/crucial-p1-1tb-m2-2280-solid-state-drive-ct1000p1ssd8)) | \\u20ac107.00 @ Amazon Deutschland \\n\\n\\\\*\\\\*Video Card\\\\*\\\\* | \\\\[MSI - GeForce RTX 2070 SUPER 8 GB VENTUS OC Video Card\\\\]([https://de.pcpartpicker.com/product/NxrYcf/msi-geforce-rtx-2070-super-8-gb-ventus-oc-video-card-rtx-2070-super-ventus-oc](https://de.pcpartpicker.com/product/NxrYcf/msi-geforce-rtx-2070-super-8-gb-ventus-oc-video-card-rtx-2070-super-ventus-oc)) | \\u20ac560.02 @ Amazon Deutschland \\n\\n\\\\*\\\\*Case\\\\*\\\\* | \\\\[NZXT - H400 MicroATX Mini Tower Case\\\\]([https://de.pcpartpicker.com/product/2VL48d/nzxt-h400-white-microatx-mini-tower-case-ca-h400b-w1](https://de.pcpartpicker.com/product/2VL48d/nzxt-h400-white-microatx-mini-tower-case-ca-h400b-w1)) | \\u20ac105.89 @ Alternate \\n\\n\\\\*\\\\*Power Supply\\\\*\\\\* | \\\\[Corsair - RMx (2018) 650 W 80+ Gold Certified Fully Modular ATX Power Supply\\\\]([https://de.pcpartpicker.com/product/2HbwrH/corsair-rmx-2018-650w-80-gold-certified-fully-modular-atx-power-supply-cp-9020178-na](https://de.pcpartpicker.com/product/2HbwrH/corsair-rmx-2018-650w-80-gold-certified-fully-modular-atx-power-supply-cp-9020178-na)) | \\u20ac99.90 @ Amazon Deutschland \\n\\n | \\\\*Prices include shipping, taxes, rebates, and discounts\\\\* |\\n\\n | \\\\*\\\\*Total\\\\*\\\\* | \\\\*\\\\*\\u20ac1312.34\\\\*\\\\*\\n\\n | Generated by \\\\[PCPartPicker\\\\]([https://pcpartpicker.com](https://pcpartpicker.com)) 2019-07-14 22:47 CEST+0200 |\", \"author_fullname\": \"t2_ms488\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"PC\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cd87fh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563166893.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBuilding a rig after many years. I\\u0026#39;m planning on gaming at 1440p, maybe even 3440x1440, haven\\u0026#39;t decided yet. I do realize that it might be hard to hit a lot above 60fps in many AAA games and that\\u0026#39;s okay. In addition, I will be using the machine for some light productivity work: MS office, lots of chrome tabs, some light programming and Lightroom. My budget is around 1200\\u20ac for the components in the post and I\\u0026#39;ll be buying the parts from \\u003Ca href=\\\"https://mindfactory.de\\\"\\u003Emindfactory.de\\u003C/a\\u003E for the most part (pun intended).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI Waited patiently for Zen2 and after struggling to choose between the 3700x and 3600, I decided to go with the latter due to the fact that in higher-resolution gaming the performance gain is minimal compared to the price. Do you think I\\u0026#39;m making the right call here?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, the memory I\\u0026#39;m planning on getting should work fine with the R5 3600, since it\\u0026#39;s Micron\\u0026#39;s e-die. Is there a better combo of frequency and CL for around the same price that I\\u0026#39;m missing?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd one more thing about cooling: I was thinking of planning on getting some better (pressure and noise) PWM fans, especially to the front of the case which might suffer from bad airflow. Do you think the bequiet! Silent Wings would be a good option? I was thinking maybe two 120 or 140mm ones in the front, one case fan on top, pulling air in, and then one exhaust. I plan on overclocking the processor a bit and I really do appreciate a silent computer and am willing to pay for it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks a bunch, fellow builders!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[PCPartPicker Part List](\\u003Ca href=\\\"https://de.pcpartpicker.com/list/sK7H6s\\\"\\u003Ehttps://de.pcpartpicker.com/list/sK7H6s\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EType|Item|Price\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:----|:----|:----\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**CPU** | [AMD - Ryzen 5 3600 3.6 GHz 6-Core Processor](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/9nm323/amd-ryzen-5-3600-36-thz-6-core-processor-100-100000031box\\\"\\u003Ehttps://de.pcpartpicker.com/product/9nm323/amd-ryzen-5-3600-36-thz-6-core-processor-100-100000031box\\u003C/a\\u003E) | \\u20ac209.00 @ Alternate \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**CPU Cooler** | [CRYORIG - H7 Quad Lumi 49 CFM CPU Cooler](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/bHcMnQ/cryorig-h7-quad-lumi-490-cfm-cpu-cooler-h7-quad-lumi\\\"\\u003Ehttps://de.pcpartpicker.com/product/bHcMnQ/cryorig-h7-quad-lumi-490-cfm-cpu-cooler-h7-quad-lumi\\u003C/a\\u003E) | \\u20ac53.79 @ Aquatuning \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Motherboard** | [MSI - B450M MORTAR Micro ATX AM4 Motherboard](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/FZvbt6/msi-b450m-mortar-atx-am4-motherboard-b450m-mortar\\\"\\u003Ehttps://de.pcpartpicker.com/product/FZvbt6/msi-b450m-mortar-atx-am4-motherboard-b450m-mortar\\u003C/a\\u003E) | \\u20ac101.84 @ Mindfactory \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Memory** | [Crucial - Ballistix Sport LT 16 GB (2 x 8 GB) DDR4-3200 Memory](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/gLGxFT/crucial-ballistix-sport-lt-16-gb-2-x-8-gb-ddr4-3200-memory-bls2k8g4d32aesbk\\\"\\u003Ehttps://de.pcpartpicker.com/product/gLGxFT/crucial-ballistix-sport-lt-16-gb-2-x-8-gb-ddr4-3200-memory-bls2k8g4d32aesbk\\u003C/a\\u003E) | \\u20ac74.90 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Storage** | [Crucial - P1 1 TB M.2-2280 Solid State Drive](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/pxKcCJ/crucial-p1-1tb-m2-2280-solid-state-drive-ct1000p1ssd8\\\"\\u003Ehttps://de.pcpartpicker.com/product/pxKcCJ/crucial-p1-1tb-m2-2280-solid-state-drive-ct1000p1ssd8\\u003C/a\\u003E) | \\u20ac107.00 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Video Card** | [MSI - GeForce RTX 2070 SUPER 8 GB VENTUS OC Video Card](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/NxrYcf/msi-geforce-rtx-2070-super-8-gb-ventus-oc-video-card-rtx-2070-super-ventus-oc\\\"\\u003Ehttps://de.pcpartpicker.com/product/NxrYcf/msi-geforce-rtx-2070-super-8-gb-ventus-oc-video-card-rtx-2070-super-ventus-oc\\u003C/a\\u003E) | \\u20ac560.02 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Case** | [NZXT - H400 MicroATX Mini Tower Case](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/2VL48d/nzxt-h400-white-microatx-mini-tower-case-ca-h400b-w1\\\"\\u003Ehttps://de.pcpartpicker.com/product/2VL48d/nzxt-h400-white-microatx-mini-tower-case-ca-h400b-w1\\u003C/a\\u003E) | \\u20ac105.89 @ Alternate \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Power Supply** | [Corsair - RMx (2018) 650 W 80+ Gold Certified Fully Modular ATX Power Supply](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/2HbwrH/corsair-rmx-2018-650w-80-gold-certified-fully-modular-atx-power-supply-cp-9020178-na\\\"\\u003Ehttps://de.pcpartpicker.com/product/2HbwrH/corsair-rmx-2018-650w-80-gold-certified-fully-modular-atx-power-supply-cp-9020178-na\\u003C/a\\u003E) | \\u20ac99.90 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| *Prices include shipping, taxes, rebates, and discounts* |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| **Total** | **\\u20ac1312.34**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| Generated by [PCPartPicker](\\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003Ehttps://pcpartpicker.com\\u003C/a\\u003E) 2019-07-14 22:47 CEST+0200 |\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/CH8jR_-6BWlt39w7D2B6pe90MiamwnbnNUNjk3sjCIg.jpg?auto=webp\\u0026s=db0a68a8369e5c9e500d256f3c78579b42fb9482\", \"width\": 124, \"height\": 70}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/CH8jR_-6BWlt39w7D2B6pe90MiamwnbnNUNjk3sjCIg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a642a51fc6ea6a5e7a770912d6e384aa56d7f15b\", \"width\": 108, \"height\": 60}], \"variants\": {}, \"id\": \"oLxy0t-NnNl9rxi_H4nzZV5SEAw00QCTGOGelnkJEQo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd87fh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Thaebs\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cd87fh/pc/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cd87fh/pc/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563138093.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"One simple use case:\\n\\nInstead of writing this\\n```\\ninterface TableProps {\\n rows: any[];\\n renderRow: (rows: any, index: number) =\\u003E VNode;\\n}\\n```\\nwrite this\\n```\\ninterface TableProps\\u003CT extends {[key: string]: any}\\u003E {\\n rows: T[];\\n renderRow: (rows: T, index: number) =\\u003E VNode;\\n}\\n```\", \"author_fullname\": \"t2_9jhkd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"tsvue\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cd7i32\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563163403.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOne simple use case:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstead of writing this\\n\\u003Ccode\\u003E\\ninterface TableProps {\\n rows: any[];\\n renderRow: (rows: any, index: number) =\\u0026gt; VNode;\\n}\\n\\u003C/code\\u003E\\nwrite this\\n\\u003Ccode\\u003E\\ninterface TableProps\\u0026lt;T extends {[key: string]: any}\\u0026gt; {\\n rows: T[];\\n renderRow: (rows: T, index: number) =\\u0026gt; VNode;\\n}\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd7i32\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Jcaetano\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cd7i32/tsvue/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cd7i32/tsvue/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563134603.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_45k76nb2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cd625z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/WmlOH4YAs0IBFHq6pzr8lOP8sIbxf_KlsnvGhJ7sYJ8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563156172.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/u47j1uxo6ba31.png?auto=webp\\u0026s=2dd5a06f4b5bb046d4ad32ae8ae858e75200375b\", \"width\": 1440, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://preview.redd.it/u47j1uxo6ba31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d29afd69c82f00fa4bc12e10acc46098f9f5127a\", \"width\": 108, \"height\": 81}, {\"url\": \"https://preview.redd.it/u47j1uxo6ba31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fc4ccd913cf15eb9accc28df7344be0cb17384cd\", \"width\": 216, \"height\": 162}, {\"url\": \"https://preview.redd.it/u47j1uxo6ba31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=74433f4a7c4662827e24f72da988320aae94fb33\", \"width\": 320, \"height\": 240}, {\"url\": \"https://preview.redd.it/u47j1uxo6ba31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=ced0373593f9ed0fcec06aa5b3eb8cf206799d96\", \"width\": 640, \"height\": 480}, {\"url\": \"https://preview.redd.it/u47j1uxo6ba31.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=6e0792db9d8833169d6872c7f6cb68846ffa0b3d\", \"width\": 960, \"height\": 720}, {\"url\": \"https://preview.redd.it/u47j1uxo6ba31.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=fac22e9fa02b16dd394dea7da721578f98392510\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"jfW9_NigdkfJmc55Scr7si6HrC2hmHALBrrJ9K8fqQ4\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd625z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Orisphere\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cd625z/testing/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/u47j1uxo6ba31.png\", \"subreddit_subscribers\": 754, \"created_utc\": 1563127372.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_ v\\u00a0 \\\\_\\\\_\\\\_\\\\_\\\\_\\\\_ \\uff89\\n\\n\\u03b6\\u00b0\\\\~\\u00b0\\u2579\\u00a0\\u00a0 \\u06f6\\ub208\\u2038\\ub208\\u0669 \\u00a0\\u00a0 \\u2092/\\u2044\\\\_\\u2022\\u2092\\u00a0\\u00a0 \\u30fd\\u2022\\u15e8\\u2022\\uff89\\u00a0\\u00a0 \\\\*\\u2022\\u06a1\\u2022\\\\*\\n\\n \\u03b6\\u00b0~\\u00b0\\u2579\\u00a0\\u00a0 \\u06f6\\ub208\\u2038\\ub208\\u0669 \\u00a0\\u00a0 \\u2092/\\u2044_\\u2022\\u2092\\u00a0\\u00a0 \\u30fd\\u2022\\u15e8\\u2022\\uff89\\u00a0\\u00a0 *\\u2022\\u06a1\\u2022*\", \"author_fullname\": \"t2_27oidk4w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"123\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cd52cb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563122695.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563151144.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E__________________________ v\\u00a0 ______ \\uff89\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u03b6\\u00b0~\\u00b0\\u2579\\u00a0\\u00a0 \\u06f6\\ub208\\u2038\\ub208\\u0669 \\u00a0\\u00a0 \\u2092/\\u2044_\\u2022\\u2092\\u00a0\\u00a0 \\u30fd\\u2022\\u15e8\\u2022\\uff89\\u00a0\\u00a0 *\\u2022\\u06a1\\u2022*\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u03b6\\u00b0~\\u00b0\\u2579\\u00a0\\u00a0 \\u06f6\\ub208\\u2038\\ub208\\u0669 \\u00a0\\u00a0 \\u2092/\\u2044_\\u2022\\u2092\\u00a0\\u00a0 \\u30fd\\u2022\\u15e8\\u2022\\uff89\\u00a0\\u00a0 *\\u2022\\u06a1\\u2022*\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd52cb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rayray1007\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cd52cb/123/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cd52cb/123/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563122344.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://www.amazon.ca/gp/product/B0776XSRJJ/ref=ppx\\\\_yo\\\\_dt\\\\_b\\\\_asin\\\\_title\\\\_o00\\\\_s00?ie=UTF8\\u0026psc=1](https://www.amazon.ca/gp/product/B0776XSRJJ/ref=ppx_yo_dt_b_asin_title_o00_s00?ie=UTF8\\u0026psc=1)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nThis is a very highly reviewed power supply:\\n\\n[https://linustechtips.com/main/topic/1045610-new-psu-tier-list/](https://linustechtips.com/main/topic/1045610-new-psu-tier-list/)\\n\\n\\u0026#x200B;\\n\\nmain downside is it's not modular\", \"author_fullname\": \"t2_aq4b39u\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"asd\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cczr5c\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563113443.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.amazon.ca/gp/product/B0776XSRJJ/ref=ppx_yo_dt_b_asin_title_o00_s00?ie=UTF8\\u0026amp;psc=1\\\"\\u003Ehttps://www.amazon.ca/gp/product/B0776XSRJJ/ref=ppx_yo_dt_b_asin_title_o00_s00?ie=UTF8\\u0026amp;psc=1\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is a very highly reviewed power supply:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://linustechtips.com/main/topic/1045610-new-psu-tier-list/\\\"\\u003Ehttps://linustechtips.com/main/topic/1045610-new-psu-tier-list/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Emain downside is it\\u0026#39;s not modular\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cczr5c\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AirBorneManatee\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cczr5c/asd/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cczr5c/asd/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563084643.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I have a collection of RPG\\u2019s Rhythm and other Games for various\\nconsoles. I am looking to get new games for my switch. I am also interested in\\ntrading for D\\u0026D 5E books. I would be picky but ill also accept ps4 games\\nand indie games and RPGs. \\n\\n\\u00a0\\n\\n**PS1**\\n\\nFinal Fantasy Chronicles\\n\\n[**Image](https://imgur.com/a/JnH9VkL)\\n\\n*Sealed in Box\\n\\n*Greatest Hits Version\\n\\n\\u00a0\\n\\nFinal Fantasy IX\\n\\n[**Image](https://imgur.com/a/B21jfjA)\\n\\n*CIB\\n\\n\\u00a0\\n\\nFinal Fantasy VIII\\n\\n[**Image](https://imgur.com/a/3OHSi8t)\\n\\n*Greatest Hits Version \\n\\n*CIB\\n\\n\\u00a0\\n\\nBroken Sword the shadow of the templars\\n\\n[**Image](https://imgur.com/a/dLxdohk)\\n\\n*CIB\\n\\n\\u00a0\\n\\nMetal Gear Solid The Essential Collection\\n\\n[**Image](https://imgur.com/a/q1N95Jt)\\n\\n*CIB\\n\\n*MGS1 is PS1\\n\\n*MGS2 \\u0026 MGS 3 are PS2\\n\\n\\u00a0\\n\\nIncredible Crisis\\n\\n[**Image](https://imgur.com/a/VVYaRLZ)\\n\\n*CIB\\n\\n*Case is Damaged\\n\\n\\u00a0\\n\\n**PS2**\\n\\n\\u00a0Gitaroo Man\\n\\n[**Image](https://imgur.com/a/uLVBWAV)\\n\\n*CIB\\n\\n\\u00a0\\n\\nFinal Fantasy X\\n\\n[**Image Greatest Hits](https://imgur.com/a/dUbClTn)\\n\\n[**Image](https://imgur.com/a/xz9M2Rm)\\n\\n*DISC ONLY \\n\\n*Greatest Hits and normal Version available\\n\\n\\u00a0\\n\\nShadow of the Colossus \\n\\n[**Image](https://imgur.com/a/3MSEZyU)\\n\\n*Greatest Hits Version \\n\\n*CIB\\n\\n\\u00a0\\n\\nMad Maestro\\n\\n[**Image](https://imgur.com/a/J96r5ar)\\n\\n*CIB\\n\\n\\u00a0\\n\\nFinal Fantasy X-2\\n\\n[**Image](https://imgur.com/a/okpEewB) \\n\\n*CIB\\n\\n\\u00a0\\n\\nFinal Fantasy XII\\n\\n[**Image](https://imgur.com/a/53xtkbp) \\n\\n*DISC \\u0026 CASE ONLY\\n\\n\\u00a0\\n\\nAmplitude\\n\\n[**Image](https://imgur.com/a/0Fin5Ef)\\n\\n*DISC \\u0026 CASE ONLY\\n\\n\\u00a0\\n\\nKatamari Damacy\\n\\n[**Image](https://imgur.com/a/Hou9ty9)\\n\\n*CIB\\n\\n\\u00a0\\n\\nMaximo\\n\\n[**Image](https://imgur.com/a/u9agOl2)\\n\\n*DISC ONLY\\n\\n\\u00a0\\n\\nKingdom Hearts \\n\\n[**Image](https://imgur.com/a/DgFi7xi)\\n\\n*DISC ONLY\\n\\n\\u00a0\\n\\nKingdom Hearts 2\\n\\n[**Image](https://imgur.com/a/Nj8b2xf)\\n\\n*CIB\\n\\n\\u00a0\\n\\nMetal Gear Solid The Essential Collection\\n\\n[**Image](https://imgur.com/a/q1N95Jt)\\n\\n*CIB\\n\\n*MGS1 is PS1\\n\\n*MGS2 \\u0026 MGS 3 are PS2\\n\\n\\u00a0\\n\\n**GameCube**\\n\\n\\nViewtiful Joe\\n\\n[**Image](https://imgur.com/a/OdWjFCz)\\n\\n*Game and Case Only\\n\\n\\u00a0\\n\\n**Dreamcast**\\n\\n\\nTyping of the Dead\\n\\n[**Image](https://imgur.com/a/uLVBWAV)\\n\\n*Disc Only\\n\\n\\u00a0\\n\\u00a0\\n\\n**3DS**\\n\\n\\nBravely Default\\n\\n[**Image](https://imgur.com/a/3CtiYeW)\\n\\n*CIB\\n\\n\\u00a0\\n\\nPokemon Omega Ruby\\n\\n[**Image](https://imgur.com/a/P9ex6sP)\\n\\n*CIB\\n\\n\\u00a0\\n\\n**DS**\\n\\n\\nPokemon Black (CASE)\\n\\n[**Image](https://imgur.com/a/EK09F0N)\\n\\n*CASE \\u0026 MANUAL ONLY\\n\\n\\u00a0\\n\\nPokemon White\\n\\n[**Image](https://imgur.com/a/cFhdncT)\\n\\n*CIB\\n\\n\\u00a0\\n\\nPokemon White 2\\n\\n[**Image](https://imgur.com/a/3MSEZyU)\\n\\n*CIB\\n\\n\\u00a0\\n\\n**XBOX 360**\\n\\u00a0\\n\\nSkyrim\\n\\n[**Image](https://imgur.com/a/CpoJS3h)\\n\\n*DISC ONLY\\n\\n\\u00a0\", \"author_fullname\": \"t2_79cno\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing it out\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ccx8ny\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563096516.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a collection of RPG\\u2019s Rhythm and other Games for various\\nconsoles. I am looking to get new games for my switch. I am also interested in\\ntrading for D\\u0026amp;D 5E books. I would be picky but ill also accept ps4 games\\nand indie games and RPGs. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPS1\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinal Fantasy Chronicles\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/JnH9VkL\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*Sealed in Box\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*Greatest Hits Version\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinal Fantasy IX\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/B21jfjA\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinal Fantasy VIII\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/3OHSi8t\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*Greatest Hits Version \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBroken Sword the shadow of the templars\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/dLxdohk\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMetal Gear Solid The Essential Collection\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/q1N95Jt\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*MGS1 is PS1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*MGS2 \\u0026amp; MGS 3 are PS2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIncredible Crisis\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/VVYaRLZ\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*Case is Damaged\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPS2\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0Gitaroo Man\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/uLVBWAV\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinal Fantasy X\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/dUbClTn\\\"\\u003E**Image Greatest Hits\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/xz9M2Rm\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*DISC ONLY \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*Greatest Hits and normal Version available\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShadow of the Colossus \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/3MSEZyU\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*Greatest Hits Version \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMad Maestro\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/J96r5ar\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinal Fantasy X-2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/okpEewB\\\"\\u003E**Image\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinal Fantasy XII\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/53xtkbp\\\"\\u003E**Image\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*DISC \\u0026amp; CASE ONLY\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAmplitude\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/0Fin5Ef\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*DISC \\u0026amp; CASE ONLY\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKatamari Damacy\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/Hou9ty9\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaximo\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/u9agOl2\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*DISC ONLY\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKingdom Hearts \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/DgFi7xi\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*DISC ONLY\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKingdom Hearts 2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/Nj8b2xf\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMetal Gear Solid The Essential Collection\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/q1N95Jt\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*MGS1 is PS1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*MGS2 \\u0026amp; MGS 3 are PS2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGameCube\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EViewtiful Joe\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/OdWjFCz\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*Game and Case Only\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDreamcast\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETyping of the Dead\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/uLVBWAV\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*Disc Only\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\n\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E3DS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBravely Default\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/3CtiYeW\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPokemon Omega Ruby\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/P9ex6sP\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPokemon Black (CASE)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/EK09F0N\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CASE \\u0026amp; MANUAL ONLY\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPokemon White\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/cFhdncT\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPokemon White 2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/3MSEZyU\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*CIB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EXBOX 360\\u003C/strong\\u003E\\n\\u00a0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkyrim\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/CpoJS3h\\\"\\u003E**Image\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*DISC ONLY\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00a0\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/fZvT8Auf3IJWm_yUABMDO6eYzjXPw78DKyg4MFJoPuk.jpg?auto=webp\\u0026s=3727d3061ed7a8ac9e75e7cdb87ade9bfe2d774a\", \"width\": 2048, \"height\": 1672}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/fZvT8Auf3IJWm_yUABMDO6eYzjXPw78DKyg4MFJoPuk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2f317f965ef3205392f747b476ab1572f8486825\", \"width\": 108, \"height\": 88}, {\"url\": \"https://external-preview.redd.it/fZvT8Auf3IJWm_yUABMDO6eYzjXPw78DKyg4MFJoPuk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0573b12e9aa7858eb866937c71f685ea10b28d23\", \"width\": 216, \"height\": 176}, {\"url\": \"https://external-preview.redd.it/fZvT8Auf3IJWm_yUABMDO6eYzjXPw78DKyg4MFJoPuk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c5caaaa322433b99d2d57f0abc41b2a725cf618a\", \"width\": 320, \"height\": 261}, {\"url\": \"https://external-preview.redd.it/fZvT8Auf3IJWm_yUABMDO6eYzjXPw78DKyg4MFJoPuk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=8a0ea61cc93c93babe9c89e604ca2d76236ef7ea\", \"width\": 640, \"height\": 522}, {\"url\": \"https://external-preview.redd.it/fZvT8Auf3IJWm_yUABMDO6eYzjXPw78DKyg4MFJoPuk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=3c526546b4c6426aeb8764e896b6103c21211e80\", \"width\": 960, \"height\": 783}, {\"url\": \"https://external-preview.redd.it/fZvT8Auf3IJWm_yUABMDO6eYzjXPw78DKyg4MFJoPuk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e56159950aa6da465058efc40e9279a84ba7372e\", \"width\": 1080, \"height\": 881}], \"variants\": {}, \"id\": \"4MWXfJFNewiTkg1C5x6YRtw5bNSkWN62pl3gMFzYP1Q\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccx8ny\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dancemanleo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ccx8ny/testing_it_out/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ccx8ny/testing_it_out/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563067716.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Questioner\\nIs there anything about the Stonewards that you can share that's not a RAFO? I know they're coming later.\\n\\nBrandon Sanderson\\n[Spoiler?] \\u003E!They are coming later, so not really. They were more of the Knights Radiant front line troops, as opposed to the Windrunners who were scouts. But you probably already knew that. https://wob.coppermind.net/events/375/#e12085!\\u003C\", \"author_fullname\": \"t2_1dnd1n3z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ccv7ij\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563084648.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EQuestioner\\nIs there anything about the Stonewards that you can share that\\u0026#39;s not a RAFO? I know they\\u0026#39;re coming later.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBrandon Sanderson\\n[Spoiler?] \\u003Cspan class=\\\"md-spoiler-text\\\"\\u003EThey are coming later, so not really. They were more of the Knights Radiant front line troops, as opposed to the Windrunners who were scouts. But you probably already knew that. \\u003Ca href=\\\"https://wob.coppermind.net/events/375/#e12085\\\"\\u003Ehttps://wob.coppermind.net/events/375/#e12085\\u003C/a\\u003E\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/B8AX0MUZmGvT6fiVYYM3gAOspJb6ehhDlZRr7hIB31k.jpg?auto=webp\\u0026s=43f233fe9e8a2fffa968e27336b03a58b3dade96\", \"width\": 200, \"height\": 200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/B8AX0MUZmGvT6fiVYYM3gAOspJb6ehhDlZRr7hIB31k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=46283135fa4629f9ed6ec56c02f1cefa9f0b6106\", \"width\": 108, \"height\": 108}], \"variants\": {}, \"id\": \"_MDzzVaC0XyNOlI5NX8UKqGksGGuapovQ1YL2Vh65UY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccv7ij\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Avanou\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ccv7ij/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ccv7ij/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563055848.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Managed to snag a core permit for just myself so I spent three days in the Enchantments in Washington with a day trip to the north and south summits of Enchantment Peak.\\n\\n\\u0026#x200B;\\n\\nGear: [https://lighterpack.com/r/4k83o7](https://lighterpack.com/r/4k83o7)\\n\\n\\u0026#x200B;\\n\\n(I forgot to weigh my food, shame on me)\\n\\n\\u0026#x200B;\\n\\nPhotos: [https://turigrinos.smugmug.com/Adventures/2019/The-Enchantments](https://turigrinos.smugmug.com/Adventures/2019/The-Enchantments)\\n\\n\\u0026#x200B;\\n\\nGPS: [https://www.gaiagps.com/public/owFEItejNeK3aLyuR9XPjYr5](https://www.gaiagps.com/public/owFEItejNeK3aLyuR9XPjYr5)\\n\\n\\u0026#x200B;\\n\\nFirst off, I just want to say thanks to everyone in this community for the firehose of knowledge and advice, it has truly transformed my backpacking experience.\\n\\n\\u0026#x200B;\\n\\nThis was a much heavier trip than usual because there were a lot of unknowns: would I be camping on rock or snow or dirt? Would the toilets be melted out, would I be able to dig catholes, or should I go 100% with bags? Would I need an ice axe or traction, especially given that I was going to do some off-trail scrambling? Would I be crossing tons of snow? WTA trip reports were clear on Aasgard Pass having only a single small patch of snow but were a bit fuzzy on details for the core itself. Enchantments permits are hard enough to get that I wanted to be prepared for any situation so that my trip was enjoyable since who knows when I'll be able to go again. So, I brought a bunch of stuff that I didn't need:\\n\\n\\u0026#x200B;\\n\\n* Ice axe\\n* Traction\\n* Waterproof socks\\n* Rain pants (left in car)\\n\\n\\u0026#x200B;\\n\\nThe rangers recommended a bear canister since the trees were too flimsy for Ursacks.\\n\\n\\u0026#x200B;\\n\\nTo cut weight I decided to try carrying only a single full bottle of water (700mL) instead of the usual two. This meant more water stops but since I'm lazy and use a gravity filter it really just meant more breaks, which was nice. Fortunately there were no bugs.\\n\\n\\u0026#x200B;\\n\\nDay 1: Colchuck Lake and Aasgard Pass\\n\\n\\u0026#x200B;\\n\\nLast year I entered the core from the Snow Lakes (east) side, so this year I decided to change things up and head in via the west route which means going up Aasgard Pass. This is the hardest hiking I've ever done. I was so exhausted when I reached the top that I set up camp a mile or so before my intended destination just so I could pass out and take a nap.\\n\\n\\u0026#x200B;\\n\\nAs a last-minute addition to my Lunar Solo I added some adjustable loops of cord to each stake loop so that I could more easily use rocks as anchors. This was quite helpful when my first campsite turned out to be a big flat rock with a ring of small rocks around it.\\n\\n\\u0026#x200B;\\n\\nDay 2: Prusik Pass and Enchantment Peak\\n\\n\\u0026#x200B;\\n\\nI moved camp to the north end of Perfection Lake as originally intended, in a cluster of trees just off the trail to Prusik Pass. I headed up the pass and then went west for a day of rock scrambling between the two summits while overlooking both the central and northern sections of the core. It was basically a big granite playground and the views were unbelievable. Unfortunately I did not actually reach either summit because the southern one was a needle of rock and I missed the route on the northern one, but I still had a lot of fun.\\n\\n\\u0026#x200B;\\n\\nGot a decent amount of rain in the evening. That night I scouted out some Milky Way shots across Perfection Lake but the cloud cover wasn't having it. The photo I've been wanting for a couple years is the core of the Milky Way centered in Enchantment Pass and reflected in Perfection Lake, with McClellan Peak on the left and Little Annapurna on the right. Maybe next time.\\n\\n\\u0026#x200B;\\n\\nDay 3: Hiking out\\n\\n\\u0026#x200B;\\n\\nMy shoes were wet but I had a fresh pair of dry socks, so I decided to start the hike out with bread bags to keep my feet warm and dry since there was a decent amount of snow to cross. This worked well for an hour or two until my feet got too warm and I took them off. \\n\\n\\u0026#x200B;\\n\\nWhat worked:\\n\\n\\u0026#x200B;\\n\\n* Bread bags! I started bringing them a few months ago but hadn't had a reason to use them until now. My waterproof socks have since been demoted to the \\\"unloved\\\" gear bin.\\n* SD Nitro Quilt kept me warm down to the mid-30s without using the hood.\\n* Oboz Sawtooth Lows are fantastic. I did Altras for a couple years but switched back to low hikers since I do a lot of off-trail travel (particularly on rock) and I can't find trail runners that feel anywhere near as good as the Oboz. They may not dry worth a damn but they keep my feet happy after days of hopping around on rock.\\n* Sunday Afternoons Charter Escape lets everyone know you're old and you take backpacking seriously. Great hat, very breathable.\\n* Massdrop Veil is my favorite clothing purchase of the past year. Works like a charm in a wide variety of conditions.\\n* Coppertone Sport Clear sunscreen. It's all chemical so no more ghost face, but it definitely has some nasty fumes.\\n* Nitecore NU25 headlamp. No surprise here, but the red mode was nice for nighttime photography.\\n* Nitrile gloves are a cheap way to keep your hands warm and dry (until they get sweaty) in the rain or when you're scooping water out of a half-frozen lake.\\n* Since I was solo off-trail in unfamiliar territory I sent my wife lots of messages on the inReach Mini. The bluetooth pairing makes typing out messages on your phone a cinch.\\n* Vecto gravity filter makes filtering completely painless as long as you're not in a huge hurry (and if you are you can just squeeze the Vecto).\\n* Really enjoying the Kojin + Caldera Cone combo. This is my first alcohol stove and I'm loving it.\\n* Although the clouds interfered, I think the Fuji X-T20 and XF 16mm f1.4 is a solid combo for Milky Way shots, which is the whole reason I upgraded from m43 in the first place.\\n\\n\\u0026#x200B;\\n\\nWhat didn't:\\n\\n\\u0026#x200B;\\n\\n* The Lunar Solo is amazing but it is pretty lightly colored - I think I'm going to invest in a sleep mask for daytime naps.\\n* The BA Insulated AXL Air is the most comfortable pad I've ever used, but it just isn't warm enough below 40F even when paired with a GG Thinlight. So it's back to the drawing board on pads. Might switch styles and try out the Thermarest ProLite Apex next time I'm at REI.\\n* AlpineAire Forever Young Mac \\u0026 Cheese is disgusting.\\n* I love my Prana Stretch Zions but they were a bit toasty on the hike out. I ordered a too-small pair of Montane Terra Pack Pants and in addition to being half the weight they're also much more breathable according to the Darth Vader test so I'm eagerly waiting for a properly-sized pair to arrive sometime next week.\\n* The MeFoto Backpacker Classic tripod is just too heavy and since I only need a tripod for astro I don't think I need all that height. There was a recent thread about smaller/table-top tripods so I'm going to see if I can get one of those before my next astro trip.\\n* Bic Mini was crap in even the slightest breeze so I'd like to find something a bit more reliable - or maybe I just suck at lighting stoves.\\n* Paper tape. I've been using 3M Micropore exclusively for years and usually swear by the stuff but on this trip it just didn't hold up. For rockier trips I think I'm going to have to go back to Leukotape P.\\n\\n\\u0026#x200B;\\n\\nNext time I think I'll try to go later in the season and skip out on the central core altogether in favor of Shield Lake and see if I can summit Cannon Mountain.\", \"author_fullname\": \"t2_i9xun\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Trip Report: The Enchantments (July 1st-3rd)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ccrxnd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563067786.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EManaged to snag a core permit for just myself so I spent three days in the Enchantments in Washington with a day trip to the north and south summits of Enchantment Peak.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGear: \\u003Ca href=\\\"https://lighterpack.com/r/4k83o7\\\"\\u003Ehttps://lighterpack.com/r/4k83o7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(I forgot to weigh my food, shame on me)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPhotos: \\u003Ca href=\\\"https://turigrinos.smugmug.com/Adventures/2019/The-Enchantments\\\"\\u003Ehttps://turigrinos.smugmug.com/Adventures/2019/The-Enchantments\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGPS: \\u003Ca href=\\\"https://www.gaiagps.com/public/owFEItejNeK3aLyuR9XPjYr5\\\"\\u003Ehttps://www.gaiagps.com/public/owFEItejNeK3aLyuR9XPjYr5\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst off, I just want to say thanks to everyone in this community for the firehose of knowledge and advice, it has truly transformed my backpacking experience.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis was a much heavier trip than usual because there were a lot of unknowns: would I be camping on rock or snow or dirt? Would the toilets be melted out, would I be able to dig catholes, or should I go 100% with bags? Would I need an ice axe or traction, especially given that I was going to do some off-trail scrambling? Would I be crossing tons of snow? WTA trip reports were clear on Aasgard Pass having only a single small patch of snow but were a bit fuzzy on details for the core itself. Enchantments permits are hard enough to get that I wanted to be prepared for any situation so that my trip was enjoyable since who knows when I\\u0026#39;ll be able to go again. So, I brought a bunch of stuff that I didn\\u0026#39;t need:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIce axe\\u003C/li\\u003E\\n\\u003Cli\\u003ETraction\\u003C/li\\u003E\\n\\u003Cli\\u003EWaterproof socks\\u003C/li\\u003E\\n\\u003Cli\\u003ERain pants (left in car)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe rangers recommended a bear canister since the trees were too flimsy for Ursacks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo cut weight I decided to try carrying only a single full bottle of water (700mL) instead of the usual two. This meant more water stops but since I\\u0026#39;m lazy and use a gravity filter it really just meant more breaks, which was nice. Fortunately there were no bugs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDay 1: Colchuck Lake and Aasgard Pass\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELast year I entered the core from the Snow Lakes (east) side, so this year I decided to change things up and head in via the west route which means going up Aasgard Pass. This is the hardest hiking I\\u0026#39;ve ever done. I was so exhausted when I reached the top that I set up camp a mile or so before my intended destination just so I could pass out and take a nap.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a last-minute addition to my Lunar Solo I added some adjustable loops of cord to each stake loop so that I could more easily use rocks as anchors. This was quite helpful when my first campsite turned out to be a big flat rock with a ring of small rocks around it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDay 2: Prusik Pass and Enchantment Peak\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI moved camp to the north end of Perfection Lake as originally intended, in a cluster of trees just off the trail to Prusik Pass. I headed up the pass and then went west for a day of rock scrambling between the two summits while overlooking both the central and northern sections of the core. It was basically a big granite playground and the views were unbelievable. Unfortunately I did not actually reach either summit because the southern one was a needle of rock and I missed the route on the northern one, but I still had a lot of fun.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGot a decent amount of rain in the evening. That night I scouted out some Milky Way shots across Perfection Lake but the cloud cover wasn\\u0026#39;t having it. The photo I\\u0026#39;ve been wanting for a couple years is the core of the Milky Way centered in Enchantment Pass and reflected in Perfection Lake, with McClellan Peak on the left and Little Annapurna on the right. Maybe next time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDay 3: Hiking out\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy shoes were wet but I had a fresh pair of dry socks, so I decided to start the hike out with bread bags to keep my feet warm and dry since there was a decent amount of snow to cross. This worked well for an hour or two until my feet got too warm and I took them off. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat worked:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBread bags! I started bringing them a few months ago but hadn\\u0026#39;t had a reason to use them until now. My waterproof socks have since been demoted to the \\u0026quot;unloved\\u0026quot; gear bin.\\u003C/li\\u003E\\n\\u003Cli\\u003ESD Nitro Quilt kept me warm down to the mid-30s without using the hood.\\u003C/li\\u003E\\n\\u003Cli\\u003EOboz Sawtooth Lows are fantastic. I did Altras for a couple years but switched back to low hikers since I do a lot of off-trail travel (particularly on rock) and I can\\u0026#39;t find trail runners that feel anywhere near as good as the Oboz. They may not dry worth a damn but they keep my feet happy after days of hopping around on rock.\\u003C/li\\u003E\\n\\u003Cli\\u003ESunday Afternoons Charter Escape lets everyone know you\\u0026#39;re old and you take backpacking seriously. Great hat, very breathable.\\u003C/li\\u003E\\n\\u003Cli\\u003EMassdrop Veil is my favorite clothing purchase of the past year. Works like a charm in a wide variety of conditions.\\u003C/li\\u003E\\n\\u003Cli\\u003ECoppertone Sport Clear sunscreen. It\\u0026#39;s all chemical so no more ghost face, but it definitely has some nasty fumes.\\u003C/li\\u003E\\n\\u003Cli\\u003ENitecore NU25 headlamp. No surprise here, but the red mode was nice for nighttime photography.\\u003C/li\\u003E\\n\\u003Cli\\u003ENitrile gloves are a cheap way to keep your hands warm and dry (until they get sweaty) in the rain or when you\\u0026#39;re scooping water out of a half-frozen lake.\\u003C/li\\u003E\\n\\u003Cli\\u003ESince I was solo off-trail in unfamiliar territory I sent my wife lots of messages on the inReach Mini. The bluetooth pairing makes typing out messages on your phone a cinch.\\u003C/li\\u003E\\n\\u003Cli\\u003EVecto gravity filter makes filtering completely painless as long as you\\u0026#39;re not in a huge hurry (and if you are you can just squeeze the Vecto).\\u003C/li\\u003E\\n\\u003Cli\\u003EReally enjoying the Kojin + Caldera Cone combo. This is my first alcohol stove and I\\u0026#39;m loving it.\\u003C/li\\u003E\\n\\u003Cli\\u003EAlthough the clouds interfered, I think the Fuji X-T20 and XF 16mm f1.4 is a solid combo for Milky Way shots, which is the whole reason I upgraded from m43 in the first place.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat didn\\u0026#39;t:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EThe Lunar Solo is amazing but it is pretty lightly colored - I think I\\u0026#39;m going to invest in a sleep mask for daytime naps.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe BA Insulated AXL Air is the most comfortable pad I\\u0026#39;ve ever used, but it just isn\\u0026#39;t warm enough below 40F even when paired with a GG Thinlight. So it\\u0026#39;s back to the drawing board on pads. Might switch styles and try out the Thermarest ProLite Apex next time I\\u0026#39;m at REI.\\u003C/li\\u003E\\n\\u003Cli\\u003EAlpineAire Forever Young Mac \\u0026amp; Cheese is disgusting.\\u003C/li\\u003E\\n\\u003Cli\\u003EI love my Prana Stretch Zions but they were a bit toasty on the hike out. I ordered a too-small pair of Montane Terra Pack Pants and in addition to being half the weight they\\u0026#39;re also much more breathable according to the Darth Vader test so I\\u0026#39;m eagerly waiting for a properly-sized pair to arrive sometime next week.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe MeFoto Backpacker Classic tripod is just too heavy and since I only need a tripod for astro I don\\u0026#39;t think I need all that height. There was a recent thread about smaller/table-top tripods so I\\u0026#39;m going to see if I can get one of those before my next astro trip.\\u003C/li\\u003E\\n\\u003Cli\\u003EBic Mini was crap in even the slightest breeze so I\\u0026#39;d like to find something a bit more reliable - or maybe I just suck at lighting stoves.\\u003C/li\\u003E\\n\\u003Cli\\u003EPaper tape. I\\u0026#39;ve been using 3M Micropore exclusively for years and usually swear by the stuff but on this trip it just didn\\u0026#39;t hold up. For rockier trips I think I\\u0026#39;m going to have to go back to Leukotape P.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext time I think I\\u0026#39;ll try to go later in the season and skip out on the central core altogether in favor of Shield Lake and see if I can summit Cannon Mountain.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccrxnd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Mijamo911\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ccrxnd/trip_report_the_enchantments_july_1st3rd/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ccrxnd/trip_report_the_enchantments_july_1st3rd/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563038986.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_13l727\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"So, I just got an Atlas from a 2-star mission.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_ccoqr0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/S2WVOc3xLlX9cSHIPL-nMlsr0nQ0E7Zq4lXGi8g-tZY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563049243.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"steamuserimages-a.akamaihd.net\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/wRE4UTSy7XV6kOxoQ-fmjNz1qJ58xVTX6zumvK_RmaA.jpg?auto=webp\\u0026s=feb2942837a280c77dce59afd232693b4ac7ee83\", \"width\": 1920, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/wRE4UTSy7XV6kOxoQ-fmjNz1qJ58xVTX6zumvK_RmaA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=499717b15266f7d925be678419f1e6333995a59e\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/wRE4UTSy7XV6kOxoQ-fmjNz1qJ58xVTX6zumvK_RmaA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3e0975257382a777fcf64a03309e95b86b09d58c\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/wRE4UTSy7XV6kOxoQ-fmjNz1qJ58xVTX6zumvK_RmaA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f7c7ef3563d1d061b63940d08e21d4c8bfb7f74b\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/wRE4UTSy7XV6kOxoQ-fmjNz1qJ58xVTX6zumvK_RmaA.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b7174951610c58bb8c8f86eb9fbdf7a2e4eb85a3\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/wRE4UTSy7XV6kOxoQ-fmjNz1qJ58xVTX6zumvK_RmaA.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=facd8aa81b30331e0d9f73932351346f2aae0015\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/wRE4UTSy7XV6kOxoQ-fmjNz1qJ58xVTX6zumvK_RmaA.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c2231265e5b0d517b34fc233174821e0f3a64b37\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"dqkoE0oFIZ5KpwTYJucuvlTZGakjDeoADXF9xDAh0iI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccoqr0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rollbelly\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ccoqr0/so_i_just_got_an_atlas_from_a_2star_mission/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://steamuserimages-a.akamaihd.net/ugc/780729257353477537/8B035E148DF452AB3F5F3809A7C248A5A848FF33/\", \"subreddit_subscribers\": 754, \"created_utc\": 1563020443.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Army Squad TO\\u0026E**\\n\\nQuantity | Rank | Role\\n:--|:--:|--:\\n1s | Sergeant First Class | Squad leader\\n2s | Corporal | Team leader\\n2a | Private First Class | Rifleman, automatic\\n2g | Private First Class | Grenadier\\n2r | Private First Class | Rifleman\\n\\n* s: armed with Rifle, Folsom, Caliber 7.62x51, M2A4 with Optic, Rifle, M10\\n* a: armed with Light Machine Gun, Mercer, Caliber 7.62x51, M3A2\\n* g: armed with Rifle, Folsom, Caliber 7.62x51, M2A4 with Grenade Launcher, Caliber 37x46, M301\\n* r: armed with Rifle, Folsom, Caliber 7.62x51, M2A4\", \"author_fullname\": \"t2_pw206\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test Table Formating\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cch6mi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1562973285.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562997056.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EArmy Squad TO\\u0026amp;E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EQuantity\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ERank\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ERole\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1s\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESergeant First Class\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003ESquad leader\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2s\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECorporal\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003ETeam leader\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2a\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPrivate First Class\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003ERifleman, automatic\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2g\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPrivate First Class\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003EGrenadier\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2r\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPrivate First Class\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003ERifleman\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Es: armed with Rifle, Folsom, Caliber 7.62x51, M2A4 with Optic, Rifle, M10\\u003C/li\\u003E\\n\\u003Cli\\u003Ea: armed with Light Machine Gun, Mercer, Caliber 7.62x51, M3A2\\u003C/li\\u003E\\n\\u003Cli\\u003Eg: armed with Rifle, Folsom, Caliber 7.62x51, M2A4 with Grenade Launcher, Caliber 37x46, M301\\u003C/li\\u003E\\n\\u003Cli\\u003Er: armed with Rifle, Folsom, Caliber 7.62x51, M2A4\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cch6mi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WolfInArms\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cch6mi/test_table_formating/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cch6mi/test_table_formating/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562968256.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1d9cpkit\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"From Copse To Stowe: the telemetry of the battles Hamilton vs Bottas and Vettel vs Leclerc.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_ccgwl3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/QZjuMQG7oM0hH3hGE8YoEJCXRopyaKD9v-ABIWTQQHY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562995639.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"f1ingenerale.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/u4m6km8tBNtBxbQDUssYrNwM4D7nJqVHoLS9JpStBiQ.jpg?auto=webp\\u0026s=d11e8a1cffe8a3ee45f8d89a36318179e758d8bc\", \"width\": 1920, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/u4m6km8tBNtBxbQDUssYrNwM4D7nJqVHoLS9JpStBiQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b0d1f10fca93ee99011e84a5a0fb6f1ff3420421\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/u4m6km8tBNtBxbQDUssYrNwM4D7nJqVHoLS9JpStBiQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4b7d9f0f607fb0486c1f369567fbf98e7e9c29c1\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/u4m6km8tBNtBxbQDUssYrNwM4D7nJqVHoLS9JpStBiQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8a1e0d5d46dd8436c38806e55842e3740f34160a\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/u4m6km8tBNtBxbQDUssYrNwM4D7nJqVHoLS9JpStBiQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=3cfd70210d2bd33ebd568a893717f5d01927af74\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/u4m6km8tBNtBxbQDUssYrNwM4D7nJqVHoLS9JpStBiQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=4db330cdb77f7f09a3a0bbb593441275817cd728\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/u4m6km8tBNtBxbQDUssYrNwM4D7nJqVHoLS9JpStBiQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=4a0061c1adc53c17cd8983208fac16c4c6c163f9\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"w47xdl23LdNzYTaZVVPZyd7U5Qln7uLYB9hQMDgT1dU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccgwl3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Fred_18\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ccgwl3/from_copse_to_stowe_the_telemetry_of_the_battles/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://f1ingenerale.com/f1-sfida-di-silverstone-analisi-telemetria-ferrari-mercedes/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562966839.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"comb\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_ccftm0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/7ByGAy9JL-3MXaClXH86VbXrJgmWOV7__0VPcXPQmbA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562990359.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"timenewsfeed.files.wordpress.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/qsoTG_IetYMrGAcF9oaSiUtBfK1nOs6Sbx9cqfX4Ues.jpg?auto=webp\\u0026s=c7677ad29000d4d4c6a1a94df2a4ac93e4149b48\", \"width\": 720, \"height\": 480}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/qsoTG_IetYMrGAcF9oaSiUtBfK1nOs6Sbx9cqfX4Ues.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=6d84f87a2ea230f3a09a469d5da7c501e958b6e2\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/qsoTG_IetYMrGAcF9oaSiUtBfK1nOs6Sbx9cqfX4Ues.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ca38681df5da152281fde24c52b83628974205f2\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/qsoTG_IetYMrGAcF9oaSiUtBfK1nOs6Sbx9cqfX4Ues.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b69af879e118d820abbe2521954b5a86d87f3d1e\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/qsoTG_IetYMrGAcF9oaSiUtBfK1nOs6Sbx9cqfX4Ues.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=e39fe87f7a021e527d4e676d4834002f176e2292\", \"width\": 640, \"height\": 426}], \"variants\": {}, \"id\": \"lcFF1a3YiABpEu8mY3rEi0l2J4tZGMSmseIigBFTl_M\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccftm0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ccftm0/comb/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://timenewsfeed.files.wordpress.com/2010/07/42-23247887.jpg?w=720\\u0026h=480\\u0026crop=1\", \"subreddit_subscribers\": 754, \"created_utc\": 1562961559.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"`1+0.12/1.12/(1.12^N-1) where N=5`\", \"author_fullname\": \"t2_3gy2fvj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test math\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ccejbp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562984347.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003E1+0.12/1.12/(1.12^N-1) where N=5\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccejbp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ymhsbmbesitwf\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ccejbp/test_math/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ccejbp/test_math/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562955547.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Welcome to False Notoriety, a new active sister clan to the experienced clan Bad Publicity.**\\n\\n*About us...*\\n* English speaking, base in US UK CAN.\\n* Adult 18+ Clan\\ud83d\\udd1e.\\n* We look forward to maximum participation in our first clan Games\\ud83d\\udcaf.\\n* Long standing and experienced players\\ud83d\\udcaa\\ud83c\\udffc.\\n* CWL Participation\\ud83e\\udd1d.\\n* Experienced leadership with designs on excellence\\ud83d\\udd31.\\n* Active and friendly\\u2705.\\n* Friendly \\u0026 excellent Discord Server with lots of commands\\ud83d\\udcad.\\n* Excellent donations\\ud83e\\udd32\\ud83c\\udffc.\\n\\n*About you...*\\n* Friendly and Active is a must\\u2705.\\n* Not rushed\\u274c.\\n* Always use attacks in War\\u2694\\ufe0f.\\n* Join our Discord Server\\ud83d\\udcad.\\n\\nWe are looking for friendly Clashers to come and join False Notoriety and build the clan up to eventually be as strong as our sister Clan. Whether you\\u2019re a Low or High TH we want to help you grow. Promotion here is not free, it is earned by hard work and determination. This is necessary if you want to step up and take on the responsibility of higher roles in our clan. If you want to chill out and have a laugh, this is the clan for you.\\n\\nIf you feel this is the clan for you, please join our server or PM me. If you have any questions please ask.\\nhttps://discord.gg/UmdMqXm\", \"author_fullname\": \"t2_iuonc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ccbbjo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562969360.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWelcome to False Notoriety, a new active sister clan to the experienced clan Bad Publicity.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EAbout us...\\u003C/em\\u003E\\n* English speaking, base in US UK CAN.\\n* Adult 18+ Clan\\ud83d\\udd1e.\\n* We look forward to maximum participation in our first clan Games\\ud83d\\udcaf.\\n* Long standing and experienced players\\ud83d\\udcaa\\ud83c\\udffc.\\n* CWL Participation\\ud83e\\udd1d.\\n* Experienced leadership with designs on excellence\\ud83d\\udd31.\\n* Active and friendly\\u2705.\\n* Friendly \\u0026amp; excellent Discord Server with lots of commands\\ud83d\\udcad.\\n* Excellent donations\\ud83e\\udd32\\ud83c\\udffc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EAbout you...\\u003C/em\\u003E\\n* Friendly and Active is a must\\u2705.\\n* Not rushed\\u274c.\\n* Always use attacks in War\\u2694\\ufe0f.\\n* Join our Discord Server\\ud83d\\udcad.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe are looking for friendly Clashers to come and join False Notoriety and build the clan up to eventually be as strong as our sister Clan. Whether you\\u2019re a Low or High TH we want to help you grow. Promotion here is not free, it is earned by hard work and determination. This is necessary if you want to step up and take on the responsibility of higher roles in our clan. If you want to chill out and have a laugh, this is the clan for you.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you feel this is the clan for you, please join our server or PM me. If you have any questions please ask.\\n\\u003Ca href=\\\"https://discord.gg/UmdMqXm\\\"\\u003Ehttps://discord.gg/UmdMqXm\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/jZ19H1RBOvsnLn5xaPo2oC9arAxfUfhUufKaJ3LLnEA.jpg?auto=webp\\u0026s=f37f56b8f35ba4b14c667e210852749dcbf80694\", \"width\": 256, \"height\": 256}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/jZ19H1RBOvsnLn5xaPo2oC9arAxfUfhUufKaJ3LLnEA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=17b7e5d8351913a16885e9e7b0c6441155df234c\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/jZ19H1RBOvsnLn5xaPo2oC9arAxfUfhUufKaJ3LLnEA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c6a8847ce22cf1cd73fa2faf0f7f56e1213ace46\", \"width\": 216, \"height\": 216}], \"variants\": {}, \"id\": \"YWSuQp-ioV9DFbplg6v_3SRjEuadwlM4Wiajpbl1dAs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccbbjo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"oXtC\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ccbbjo/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ccbbjo/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562940560.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Welcome to False Notoriety, a new active sister clan to the experienced clan Bad Publicity.\\n\\nAbout us\\u2026\\n\\u2022\\tEnglish speaking, based in \\ud83c\\uddfa\\ud83c\\uddf8\\ud83c\\uddec\\ud83c\\udde7\\ud83c\\udde8\\ud83c\\udde6.\\n\\u2022\\tAdult 18+ Clan\\ud83d\\udd1e.\\n\\u2022\\tWe look forward to maximum participation in our first clan Games\\ud83d\\udcaf.\\n\\u2022\\tLong standing and experienced players\\ud83d\\udcaa\\ud83c\\udffc.\\n\\u2022\\tCWL Participation\\ud83e\\udd1d.\\n\\u2022\\tExperienced leadership with designs on excellence\\ud83d\\udd31.\\n\\u2022\\tActive and friendly\\u2705.\\n\\u2022\\tFriendly \\u0026 excellent Discord Server with lots of commands\\ud83d\\udcad.\\n\\u2022\\tExcellent donations\\ud83e\\udd32\\ud83c\\udffc.\\n\\nAbout you\\u2026\\n\\u2022\\tFriendly and Active is a must\\u2705.\\n\\u2022\\tNot rushed\\u274c.\\n\\u2022\\tAlways use attacks in War\\u2694\\ufe0f.\\n\\u2022\\tJoin our Discord Server\\ud83d\\udcad.\\n\\nWe are looking for friendly Clashers to come and join False Notoriety and build the clan to eventually be as strong as our sister Clan. Weather you\\u2019re a Low or High TH we want to help you grow. Promotion here is not free, it is earned by hard work and determination. This is necessary if you want to step up and take on the responsibility of higher roles in our clan.\\n\\nIf you feel like this is the clan for you, please join our server or PM me.\\nhttps://discord.gg/UmdMqXm\", \"author_fullname\": \"t2_iuonc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[RECRUITING] False Notoriety #2902R8JOV | Sister clan to Bad Publicity | ACTIVE Lv1 Clan | All TH Welcome | War + Farm + Laughs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ccb6om\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562968677.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWelcome to False Notoriety, a new active sister clan to the experienced clan Bad Publicity.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAbout us\\u2026\\n\\u2022 English speaking, based in \\ud83c\\uddfa\\ud83c\\uddf8\\ud83c\\uddec\\ud83c\\udde7\\ud83c\\udde8\\ud83c\\udde6.\\n\\u2022 Adult 18+ Clan\\ud83d\\udd1e.\\n\\u2022 We look forward to maximum participation in our first clan Games\\ud83d\\udcaf.\\n\\u2022 Long standing and experienced players\\ud83d\\udcaa\\ud83c\\udffc.\\n\\u2022 CWL Participation\\ud83e\\udd1d.\\n\\u2022 Experienced leadership with designs on excellence\\ud83d\\udd31.\\n\\u2022 Active and friendly\\u2705.\\n\\u2022 Friendly \\u0026amp; excellent Discord Server with lots of commands\\ud83d\\udcad.\\n\\u2022 Excellent donations\\ud83e\\udd32\\ud83c\\udffc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAbout you\\u2026\\n\\u2022 Friendly and Active is a must\\u2705.\\n\\u2022 Not rushed\\u274c.\\n\\u2022 Always use attacks in War\\u2694\\ufe0f.\\n\\u2022 Join our Discord Server\\ud83d\\udcad.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe are looking for friendly Clashers to come and join False Notoriety and build the clan to eventually be as strong as our sister Clan. Weather you\\u2019re a Low or High TH we want to help you grow. Promotion here is not free, it is earned by hard work and determination. This is necessary if you want to step up and take on the responsibility of higher roles in our clan.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you feel like this is the clan for you, please join our server or PM me.\\n\\u003Ca href=\\\"https://discord.gg/UmdMqXm\\\"\\u003Ehttps://discord.gg/UmdMqXm\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/jZ19H1RBOvsnLn5xaPo2oC9arAxfUfhUufKaJ3LLnEA.jpg?auto=webp\\u0026s=f37f56b8f35ba4b14c667e210852749dcbf80694\", \"width\": 256, \"height\": 256}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/jZ19H1RBOvsnLn5xaPo2oC9arAxfUfhUufKaJ3LLnEA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=17b7e5d8351913a16885e9e7b0c6441155df234c\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/jZ19H1RBOvsnLn5xaPo2oC9arAxfUfhUufKaJ3LLnEA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c6a8847ce22cf1cd73fa2faf0f7f56e1213ace46\", \"width\": 216, \"height\": 216}], \"variants\": {}, \"id\": \"YWSuQp-ioV9DFbplg6v_3SRjEuadwlM4Wiajpbl1dAs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccb6om\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"oXtC\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ccb6om/recruiting_false_notoriety_2902r8jov_sister_clan/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ccb6om/recruiting_false_notoriety_2902r8jov_sister_clan/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562939877.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"they start going through the intersection.\\n\\n __| 3 | __\\n 1 4\\n --| 2 |---\", \"author_fullname\": \"t2_7slti\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"sdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ccaj3l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562965152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethey start going through the intersection.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E __| 3 | __\\n 1 4\\n --| 2 |---\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccaj3l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"EggdropBotnet\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ccaj3l/sdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ccaj3l/sdf/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562936352.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"____\", \"author_fullname\": \"t2_11iloo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testie test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cc97td\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563434025.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562956768.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Chr/\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cc97td\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Skulenta\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cc97td/testie_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cc97td/testie_test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562927968.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"testes testes\", \"author_fullname\": \"t2_44txkyvx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testssss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cc5yan\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562933325.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etestes testes\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cc5yan\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"blasteratyourside\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cc5yan/testssss/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cc5yan/testssss/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562904525.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"/u/john5788\", \"author_fullname\": \"t2_4j40s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Teest\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cc3u43\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562920889.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/john5788\\\"\\u003E/u/john5788\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cc3u43\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"John5788\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cc3u43/teest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cc3u43/teest/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562892089.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3mjh90gl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"polio vaccine and cancer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 43, \"hide_score\": false, \"name\": \"t3_cc3qxl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 70, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/b3dZKcBAG6gpve1YSEBiE5LL2cMI9p9MqadRsDC96mI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562920387.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"web.archive.org\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/jxc6H2cfP-0bTGeBMdHgeFbcGPTOq1-9rvzwjhKeplA.jpg?auto=webp\\u0026s=a68e41ebf16fc43234cae65bac3dd29e33765751\", \"width\": 138, \"height\": 85}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/jxc6H2cfP-0bTGeBMdHgeFbcGPTOq1-9rvzwjhKeplA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8ae115040443aad95a08efc3424eda84d9d91538\", \"width\": 108, \"height\": 66}], \"variants\": {}, \"id\": \"NZY5Jrg_dOzcKQSraMopzLzFSPegXcI-m4F05ZZmtss\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cc3qxl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vax_monitor\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cc3qxl/polio_vaccine_and_cancer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://web.archive.org/web/20120508130224/http://www.cdc.gov/vaccinesafety/updates/archive/polio_and_cancer_factsheet.htm\", \"subreddit_subscribers\": 754, \"created_utc\": 1562891587.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3mjh90gl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Polio vaccine and cancer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 43, \"hide_score\": false, \"name\": \"t3_cc3mn4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 70, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/b3dZKcBAG6gpve1YSEBiE5LL2cMI9p9MqadRsDC96mI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562919706.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"web.archive.org\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/jxc6H2cfP-0bTGeBMdHgeFbcGPTOq1-9rvzwjhKeplA.jpg?auto=webp\\u0026s=a68e41ebf16fc43234cae65bac3dd29e33765751\", \"width\": 138, \"height\": 85}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/jxc6H2cfP-0bTGeBMdHgeFbcGPTOq1-9rvzwjhKeplA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8ae115040443aad95a08efc3424eda84d9d91538\", \"width\": 108, \"height\": 66}], \"variants\": {}, \"id\": \"NZY5Jrg_dOzcKQSraMopzLzFSPegXcI-m4F05ZZmtss\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cc3mn4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vax_monitor\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cc3mn4/polio_vaccine_and_cancer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://web.archive.org/web/20120508130224/http://www.cdc.gov/vaccinesafety/updates/archive/polio_and_cancer_factsheet.htm\", \"subreddit_subscribers\": 754, \"created_utc\": 1562890906.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Our city lives in a time of great need. The Progressive Party seeks to solve these issues through brand new and long needed reforms to the Constitution of Mount Augusta. \\n\\n\\u0026nbsp;\\n\\n##Positions held by the Progressive Party\\n\\n* Precedent ought to exist, it makes life for everyone in the city easier. Our system of government should function in the following manner:\\n\\u003E1. A judge rules on a court case, interpreting the law, therefore setting precedent.\\n\\u003E2. Citizens decide whether or not they agree with the precedent set. Judges typically set good precedent based on common sense, and citizens typically agree. In cases where the citizens disagree, they change the law through a bill vote.\\n\\u003E3. In future cases judges adhere to the precedent set.\\n\\n* Mount Augusta ought to continue its tradition of being an inclusive city. Still, it is wrong to apply for citizenship without having lived in and contributed to the city. Players who apply for citizenship without having shown without a doubt that they do contribute well to Mount Augusta should be respectfully denied, and asked that they reapply again in the future.\\n\\n* Our Mayor, AllenY is well liked and broadly recognized as hardworking. The Progressive Party proposes the city gives Mayor AllenY powers to enact new laws or veto new bill proposals, provided such does not constitute an action expressly prohibited by prevailing law, including, but not limited to, a violation of the Bill of Rights, overturning a popular vote for an official position, or blocking their own impeachment. Such measures will give the mayor the powers that he/she ought to be trusted with, and the powers required to run an effective government and city. Most importantly, AllenY does not want this power, which is why he of all people should have it.\", \"author_fullname\": \"t2_11oyhu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \".\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cc2dpu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562913121.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOur city lives in a time of great need. The Progressive Party seeks to solve these issues through brand new and long needed reforms to the Constitution of Mount Augusta. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EPositions held by the Progressive Party\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPrecedent ought to exist, it makes life for everyone in the city easier. Our system of government should function in the following manner:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Col\\u003E\\n\\u003Cli\\u003EA judge rules on a court case, interpreting the law, therefore setting precedent.\\u003C/li\\u003E\\n\\u003Cli\\u003ECitizens decide whether or not they agree with the precedent set. Judges typically set good precedent based on common sense, and citizens typically agree. In cases where the citizens disagree, they change the law through a bill vote.\\u003C/li\\u003E\\n\\u003Cli\\u003EIn future cases judges adhere to the precedent set.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/blockquote\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EMount Augusta ought to continue its tradition of being an inclusive city. Still, it is wrong to apply for citizenship without having lived in and contributed to the city. Players who apply for citizenship without having shown without a doubt that they do contribute well to Mount Augusta should be respectfully denied, and asked that they reapply again in the future.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EOur Mayor, AllenY is well liked and broadly recognized as hardworking. The Progressive Party proposes the city gives Mayor AllenY powers to enact new laws or veto new bill proposals, provided such does not constitute an action expressly prohibited by prevailing law, including, but not limited to, a violation of the Bill of Rights, overturning a popular vote for an official position, or blocking their own impeachment. Such measures will give the mayor the powers that he/she ought to be trusted with, and the powers required to run an effective government and city. Most importantly, AllenY does not want this power, which is why he of all people should have it.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cc2dpu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"citylion1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cc2dpu/_/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cc2dpu/_/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562884321.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_15oc6e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cc0zmm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562906363.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cc0zmm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OaktownPirate\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cc0zmm/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cc0zmm/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562877563.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Foo:\\n\\n* https://www.virustotal.com/gui/file/018a28dd2c89125cb950fc7220f3b6efd31ea1ac3b8725947c4c8e94f505a216/detection\\n\\nBar:\\n\\n* [a582e1f89f0e2914cb53779e65255fc9e1c45b59 agent165-1.0.1-demo-linux.tar.gz](https://www.virustotal.com/gui/file/badbc967e9735a475cb1faf36c45c1f17fde7efe5f0573c05664cd1ad970e46c/detection)\\n* [69ea439d95ef5729e1ac297990dc487bf5deaa0a agent165-1.0.1-demo-mac.tar.gz](https://www.virustotal.com/gui/file/ea08acb07a043bd0a960a7fdb569def4d0f8ac08fb50706696d8a41d28b5c554/detection)\\n* [87a526cfbcda7cae6e8ef03c5cc82a60e19a8ee2 agent165-1.0.1-demo-windows.zip](https://www.virustotal.com/gui/file/a379f91369464e243175f4fc10d87e521764b34c94b856f0bc82048add73a5ac/detection)\\n\\n**NOTE:** note\", \"author_fullname\": \"t2_3ncc7xoj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Foobar\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cbxf7l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1562861617.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562890012.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFoo:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.virustotal.com/gui/file/018a28dd2c89125cb950fc7220f3b6efd31ea1ac3b8725947c4c8e94f505a216/detection\\\"\\u003Ehttps://www.virustotal.com/gui/file/018a28dd2c89125cb950fc7220f3b6efd31ea1ac3b8725947c4c8e94f505a216/detection\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EBar:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.virustotal.com/gui/file/badbc967e9735a475cb1faf36c45c1f17fde7efe5f0573c05664cd1ad970e46c/detection\\\"\\u003Ea582e1f89f0e2914cb53779e65255fc9e1c45b59 agent165-1.0.1-demo-linux.tar.gz\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.virustotal.com/gui/file/ea08acb07a043bd0a960a7fdb569def4d0f8ac08fb50706696d8a41d28b5c554/detection\\\"\\u003E69ea439d95ef5729e1ac297990dc487bf5deaa0a agent165-1.0.1-demo-mac.tar.gz\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.virustotal.com/gui/file/a379f91369464e243175f4fc10d87e521764b34c94b856f0bc82048add73a5ac/detection\\\"\\u003E87a526cfbcda7cae6e8ef03c5cc82a60e19a8ee2 agent165-1.0.1-demo-windows.zip\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENOTE:\\u003C/strong\\u003E note\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbxf7l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"YesWayGames\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbxf7l/foobar/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cbxf7l/foobar/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562861212.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I'll comment your comments and some of the OP's reasons that I disagree with:\\n\\n\\n\\u003E Server community matters;\\n\\u003E Not really.\\n\\nYes really.\\n\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Green and blue gear are relevant;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Irrelevant.\\nRelevant.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Clearing difficult dungeons requires deliberate and careful gameplay rather than completing a speed run (mythic+);\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E CCing one or two mobs isn't difficult or interesting. High level M+ requires deliberate and careful planning, which packs to skip etc.\\nI do agree with you here but what OP meant was about it not being a race and you being able to strategize over trying to do things as fast as possible. It's a matter of preference really.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Talent Trees;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Everybody is going to use one of the three viable setups anyway. Retails talents allow for more creativity.\\nYou're not wrong about there being cookie cutter builds for talent trees, and vanilla talent trees were pretty crappy in terms of balance, but trying to argue that retail talents allow more creativity over talent trees is actually hilarious.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E You set your own goals when you log on rather than feel forced to do daily quests, weekly quests, azurite farming, reputation grinding, and mythic+ completion for weekly chest;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E At least retail has content besides dungeons and raids.\\nSo does vanilla.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Professions are meaningful;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E There are about as useful as they're in retail right now. There's some good crafted gear and enchants, potions and flasks are always needed.\\nHell no. Professions in retail are as watered down as it can get. It's not even close to the same degree of relevance lol.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E No sharding;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Lmao\\nAgreed. We have layering which is a different name for something that does a very similar thing. Hoping Blizzard stays true to their word and get rid of it after launch, but I doubt it.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Terrain was immersive and travel time was relevant;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E I like to waste my time.\\nSort of agree with you here. Sort of.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Leveling up is meaningful and rewarding;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Sure, lol.\\nIt really is. Compared to the state of leveling we currently have in retail, vanilla leveling actually feels like you're playing an mmorpg.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Meaningful racial abilities;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Just leads to an imbalance.\\nNo, it leads to more diversity, which is what retail lacks. \\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Strong class identity;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E How so?\\nClasses were a lot more different from each other than in retail. For the sake of balancing blizzard has been giving every class stuff like heals and what not for example.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Hard-earned gear is not invalidated every \\u201cseason\\u201d;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Sucks for players that join at a later date when nobody wants to raid the early raids anymore. I know in Classhit you're inclined to raid MC forever, but that's shit game design.\\nI do agree with what you're saying but at the same time have your gear become irrelevant after every \\\"season\\\" is absolutely fucking shit and I hate that even more.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Many abilities are off the GCD;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Not that many.\\nYeah people circlejerk a bit on this.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Personal reputation matters;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Not really unless you were a huge ass. I don't remember a single name outside of my guild from vanilla.\\nThat's just plain wrong. You might not remember any names from vanilla back when you played over 10 years ago. But I'm sure if you get fucked by the same shitty mage ninja looting every once in a while in your groups you'll remember his name.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Real danger while leveling with real consequences;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E You die and have to run back to your corpse. Just like in retail.\\nExcept you die with 2/3 mobs in vanilla and 10+ on retail.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E The grind;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E There's more things to grind in retail.\\nYou're right. But the grind feels a lot different. There's a lot more prepping behind the grind in vanilla.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Hunter pets with different stats;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Just annoying.\\nIn your personal opinion sure. But it makes the whole pet thing a lot more interesting and original. Instead of just getting any pet of 3 families.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Rare spawns that are actually rare;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Those exist in retail too.\\nNot in the same dimension than on vanilla.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Crafting recipes that are hard to get;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Still there.\\nNot even close lol.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Crafted gear that matters and is BIS;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Still there, there's no true BIS anymore.\\nThis is so blatantly wrong it's hilarious. There's no BiS crafting gear, and there's barely any relevant crafting gear at all. Oh and yeah, there's no more BiS which is also horrible.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Spell ranks;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Obnoxious.\\nAllows for some interesting uses.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E No separate PvE and PvP gear and abilities;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E No separate gear in retail. Are you even trying.\\nTrue.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Stranglethorn Vale;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Still there.\\nHave you actually played vanilla/tbc/wotlk? He obviously didn't mean the zone being there. He meant how the whole leveling process of going through STV was. You barely have people questing on retail. Just queue up for RDF and zoom through levels.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Crowd control sometimes required;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E It's required in M+ and some raid encounters.\\nTrue.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E The screams and cheering from my guild when a really cool epic dropped;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E You're sad and lonely.\\nClear troll bait. You're the sad and lonely person if you feel the need to say this to someone.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E How happy we were for our guildmate when they got a really cool epic;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Why would you care?\\nBecause you usually care for people you do stuff with and have fun and have some sort of relationship with? You might wanna check with a therapist if you got your feelings in order bud.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E No ilevels;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Not true.\\nThey didn't matter. Now everything about gearing is based off of it.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Social grouping (quests, PvP, raids);\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Still popular.\\nNot even close. He means actually interacting with people, not entering a group, rush WQ number 7 and leave without saying a word.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Slower pace;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Not a good thing.\\nNot a bad thing either.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Content I couldn\\u2019t clear that wasn\\u2019t simply a harder version of content I could clear;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E The bosses might look different but there's little mechanical differences between MC and Aq40.\\nNot true. They're not very mechanically different for sure but saying this is silly.\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E People and guilds I admired;\\n\\u003E \\n\\u003E \\n\\u003E \\n\\u003E Lmao\\nYeah this is just a silly one. You can admire guilds on retail too. Not sure was OP meant by this.\", \"author_fullname\": \"t2_ss4vs\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Stuff\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cbw0rf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562882731.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ll comment your comments and some of the OP\\u0026#39;s reasons that I disagree with:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Server community matters;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENot really.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYes really.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Green and blue gear are relevant;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIrrelevant.\\nRelevant.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Clearing difficult dungeons requires deliberate and careful gameplay rather than completing a speed run (mythic+);\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ECCing one or two mobs isn\\u0026#39;t difficult or interesting. High level M+ requires deliberate and careful planning, which packs to skip etc.\\nI do agree with you here but what OP meant was about it not being a race and you being able to strategize over trying to do things as fast as possible. It\\u0026#39;s a matter of preference really.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Talent Trees;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EEverybody is going to use one of the three viable setups anyway. Retails talents allow for more creativity.\\nYou\\u0026#39;re not wrong about there being cookie cutter builds for talent trees, and vanilla talent trees were pretty crappy in terms of balance, but trying to argue that retail talents allow more creativity over talent trees is actually hilarious.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E You set your own goals when you log on rather than feel forced to do daily quests, weekly quests, azurite farming, reputation grinding, and mythic+ completion for weekly chest;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAt least retail has content besides dungeons and raids.\\nSo does vanilla.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Professions are meaningful;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThere are about as useful as they\\u0026#39;re in retail right now. There\\u0026#39;s some good crafted gear and enchants, potions and flasks are always needed.\\nHell no. Professions in retail are as watered down as it can get. It\\u0026#39;s not even close to the same degree of relevance lol.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E No sharding;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ELmao\\nAgreed. We have layering which is a different name for something that does a very similar thing. Hoping Blizzard stays true to their word and get rid of it after launch, but I doubt it.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Terrain was immersive and travel time was relevant;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI like to waste my time.\\nSort of agree with you here. Sort of.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Leveling up is meaningful and rewarding;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESure, lol.\\nIt really is. Compared to the state of leveling we currently have in retail, vanilla leveling actually feels like you\\u0026#39;re playing an mmorpg.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Meaningful racial abilities;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EJust leads to an imbalance.\\nNo, it leads to more diversity, which is what retail lacks. \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Strong class identity;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHow so?\\nClasses were a lot more different from each other than in retail. For the sake of balancing blizzard has been giving every class stuff like heals and what not for example.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Hard-earned gear is not invalidated every \\u201cseason\\u201d;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESucks for players that join at a later date when nobody wants to raid the early raids anymore. I know in Classhit you\\u0026#39;re inclined to raid MC forever, but that\\u0026#39;s shit game design.\\nI do agree with what you\\u0026#39;re saying but at the same time have your gear become irrelevant after every \\u0026quot;season\\u0026quot; is absolutely fucking shit and I hate that even more.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Many abilities are off the GCD;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENot that many.\\nYeah people circlejerk a bit on this.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Personal reputation matters;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENot really unless you were a huge ass. I don\\u0026#39;t remember a single name outside of my guild from vanilla.\\nThat\\u0026#39;s just plain wrong. You might not remember any names from vanilla back when you played over 10 years ago. But I\\u0026#39;m sure if you get fucked by the same shitty mage ninja looting every once in a while in your groups you\\u0026#39;ll remember his name.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Real danger while leveling with real consequences;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EYou die and have to run back to your corpse. Just like in retail.\\nExcept you die with 2/3 mobs in vanilla and 10+ on retail.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E The grind;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThere\\u0026#39;s more things to grind in retail.\\nYou\\u0026#39;re right. But the grind feels a lot different. There\\u0026#39;s a lot more prepping behind the grind in vanilla.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Hunter pets with different stats;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EJust annoying.\\nIn your personal opinion sure. But it makes the whole pet thing a lot more interesting and original. Instead of just getting any pet of 3 families.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Rare spawns that are actually rare;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThose exist in retail too.\\nNot in the same dimension than on vanilla.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Crafting recipes that are hard to get;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EStill there.\\nNot even close lol.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Crafted gear that matters and is BIS;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EStill there, there\\u0026#39;s no true BIS anymore.\\nThis is so blatantly wrong it\\u0026#39;s hilarious. There\\u0026#39;s no BiS crafting gear, and there\\u0026#39;s barely any relevant crafting gear at all. Oh and yeah, there\\u0026#39;s no more BiS which is also horrible.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Spell ranks;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EObnoxious.\\nAllows for some interesting uses.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E No separate PvE and PvP gear and abilities;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENo separate gear in retail. Are you even trying.\\nTrue.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Stranglethorn Vale;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EStill there.\\nHave you actually played vanilla/tbc/wotlk? He obviously didn\\u0026#39;t mean the zone being there. He meant how the whole leveling process of going through STV was. You barely have people questing on retail. Just queue up for RDF and zoom through levels.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Crowd control sometimes required;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s required in M+ and some raid encounters.\\nTrue.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E The screams and cheering from my guild when a really cool epic dropped;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;re sad and lonely.\\nClear troll bait. You\\u0026#39;re the sad and lonely person if you feel the need to say this to someone.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E How happy we were for our guildmate when they got a really cool epic;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhy would you care?\\nBecause you usually care for people you do stuff with and have fun and have some sort of relationship with? You might wanna check with a therapist if you got your feelings in order bud.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E No ilevels;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENot true.\\nThey didn\\u0026#39;t matter. Now everything about gearing is based off of it.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Social grouping (quests, PvP, raids);\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EStill popular.\\nNot even close. He means actually interacting with people, not entering a group, rush WQ number 7 and leave without saying a word.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Slower pace;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENot a good thing.\\nNot a bad thing either.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Content I couldn\\u2019t clear that wasn\\u2019t simply a harder version of content I could clear;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe bosses might look different but there\\u0026#39;s little mechanical differences between MC and Aq40.\\nNot true. They\\u0026#39;re not very mechanically different for sure but saying this is silly.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E People and guilds I admired;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ELmao\\nYeah this is just a silly one. You can admire guilds on retail too. Not sure was OP meant by this.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbw0rf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rownarck\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbw0rf/stuff/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cbw0rf/stuff/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562853931.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hey Guys,\\n\\n\\u0026#x200B;\\n\\nWe would like to invite you to our 2 week BETA test of our EVE Online Classic Server! We are using CCP's expansion Rubicon and various mechanics from other expansions (for example Dominion SOV) to MAKE EVE GREAT AGAIN!\\n\\n\\u0026#x200B;\\n\\nYou can find more details on our discord OR explore New Ede this weekend by yourself!\\n\\n\\u0026#x200B;\\n\\nEVE Online Classic features:\\n\\n\\\\- Custom Star Systems / Constellations called New Ede\\n\\n\\\\- Passive Moon Mining and regional moonores are back.\\n\\n\\\\- Dominion SOV\\n\\n\\\\- One Time Character Import (only Skills no Assets)\\n\\n\\\\- No Skillinjectors\\n\\n\\\\- No Citadels\\n\\n\\\\- No Space Aids\\n\\n\\\\- Real F2P (no subscription or omega / alpha bullshit)\\n\\nand more...\\n\\n\\u0026#x200B;\\n\\nJOIN NOW --\\u003E [https://discord.gg/4cyZQFw](https://discord.gg/4cyZQFw)\\n\\n\\u0026#x200B;\\n\\nsettings for [realmlist.wtf](https://realmlist.wtf):\\n\\nset realmlist [eu.logon.eve-classic.com](https://eu.logon.eve-classic.com)\\n\\nset patchlist [enGB.patch.eve-classic.com:1119/patch](https://enGB.patch.eve-classic.com:1119/patch) \\n\\nset realmlistbn \\\"\\\"\\n\\nset portal eu\\\\*\", \"author_fullname\": \"t2_13vb6b\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cbt0vl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562860782.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey Guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe would like to invite you to our 2 week BETA test of our EVE Online Classic Server! We are using CCP\\u0026#39;s expansion Rubicon and various mechanics from other expansions (for example Dominion SOV) to MAKE EVE GREAT AGAIN!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can find more details on our discord OR explore New Ede this weekend by yourself!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEVE Online Classic features:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Custom Star Systems / Constellations called New Ede\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Passive Moon Mining and regional moonores are back.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Dominion SOV\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- One Time Character Import (only Skills no Assets)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- No Skillinjectors\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- No Citadels\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- No Space Aids\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Real F2P (no subscription or omega / alpha bullshit)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand more...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJOIN NOW --\\u0026gt; \\u003Ca href=\\\"https://discord.gg/4cyZQFw\\\"\\u003Ehttps://discord.gg/4cyZQFw\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esettings for \\u003Ca href=\\\"https://realmlist.wtf\\\"\\u003Erealmlist.wtf\\u003C/a\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eset realmlist \\u003Ca href=\\\"https://eu.logon.eve-classic.com\\\"\\u003Eeu.logon.eve-classic.com\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eset patchlist \\u003Ca href=\\\"https://enGB.patch.eve-classic.com:1119/patch\\\"\\u003EenGB.patch.eve-classic.com:1119/patch\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eset realmlistbn \\u0026quot;\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eset portal eu*\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/NrM0k4TFgZEgr8X6zSpTCQhfkZ0MIgtnOgHXqaz9xQw.jpg?auto=webp\\u0026s=07aa055d081511b43f51d6152d7e9fec63864ddd\", \"width\": 256, \"height\": 256}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/NrM0k4TFgZEgr8X6zSpTCQhfkZ0MIgtnOgHXqaz9xQw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a34b352730a659e9092d283ad08d558a2ae1e546\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/NrM0k4TFgZEgr8X6zSpTCQhfkZ0MIgtnOgHXqaz9xQw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5485524da0035bcc5ed05a5d0e90d366fa893f5f\", \"width\": 216, \"height\": 216}], \"variants\": {}, \"id\": \"AGpgMeNAMyIOpO2ridPnb7myOF1UGlaA9MxDO-SsVFU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbt0vl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gangolf_Ovaert\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbt0vl/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cbt0vl/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562831982.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Turn|Incom. Dmg|HP|Incom. Damage|HP\\n:--| :--| :--| :--| :--|\\n0| |120| |100\\n1|20|100|17|83\\n2|20|80|17|66\\n3|20|60|48|18\\n4|20|40|17|1\\n5|20|20|17|-16\\n6|20|0|48|-64\", \"author_fullname\": \"t2_7im0r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Table test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cbrz8j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562853054.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETurn\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EIncom. Dmg\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EHP\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EIncom. Damage\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EHP\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E120\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E100\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E83\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E66\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E18\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-16\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-64\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbrz8j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CEO_Kasen\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbrz8j/table_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cbrz8j/table_test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562824254.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"line 1\\n\\nline 2\\n\\n\\u0026nbsp;\\n\\nline 3\", \"author_fullname\": \"t2_xx9dg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cbqndu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562844281.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eline 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eline 2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eline 3\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbqndu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"LightningStrike7\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbqndu/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cbqndu/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562815481.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test 1\\n\\ntest 2 \\n\\ntest 3\", \"author_fullname\": \"t2_11ovkt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cbq2xv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1562812443.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562840870.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etest 2 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etest 3\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbq2xv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"twonJay\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbq2xv/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cbq2xv/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562812070.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"so i tend to avoid watching anything with donald in it cause i cant stand how it talks or looks while i'll still read about the events, so i knew about the meeting with the Queen and how it was not the best but had to look it up based on your comment.\\n\\n[trump-walks-in-front-of-queen](https://www.vox.com/policy-and-politics/2018/7/14/17571986/trump-walks-in-front-of-queen)\\nI thought it was just going to be him walking alongside but more in front of the queen (which form the SCA and other type things i figure to walk alongside or behind depending on your stations) but he literally cuts her off and stops in front of her...putz\", \"author_fullname\": \"t2_15vgez\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testtestste\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cbpuuq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562839547.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eso i tend to avoid watching anything with donald in it cause i cant stand how it talks or looks while i\\u0026#39;ll still read about the events, so i knew about the meeting with the Queen and how it was not the best but had to look it up based on your comment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.vox.com/policy-and-politics/2018/7/14/17571986/trump-walks-in-front-of-queen\\\"\\u003Etrump-walks-in-front-of-queen\\u003C/a\\u003E\\nI thought it was just going to be him walking alongside but more in front of the queen (which form the SCA and other type things i figure to walk alongside or behind depending on your stations) but he literally cuts her off and stops in front of her...putz\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/9ysNb0gusnMS-eejYnpAaDdmVXQopY_BtieQEtU8H7k.jpg?auto=webp\\u0026s=0ccb0ef29c250def145ec8b69dd65c3631da5d1a\", \"width\": 1200, \"height\": 628}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/9ysNb0gusnMS-eejYnpAaDdmVXQopY_BtieQEtU8H7k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=446b5d77d576ba19af9df1d13cc187bad90a1f3f\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/9ysNb0gusnMS-eejYnpAaDdmVXQopY_BtieQEtU8H7k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=15e978b599549a176ed3db7e8d854b103e3b6db5\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/9ysNb0gusnMS-eejYnpAaDdmVXQopY_BtieQEtU8H7k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=20dff01e62433f90fb3aaf5e913be272f733844a\", \"width\": 320, \"height\": 167}, {\"url\": \"https://external-preview.redd.it/9ysNb0gusnMS-eejYnpAaDdmVXQopY_BtieQEtU8H7k.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=2b99442045ce23865437eaa11e514456813c1fba\", \"width\": 640, \"height\": 334}, {\"url\": \"https://external-preview.redd.it/9ysNb0gusnMS-eejYnpAaDdmVXQopY_BtieQEtU8H7k.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=eed1afc638ad22e25381d323a6ffa65cfb63b9f9\", \"width\": 960, \"height\": 502}, {\"url\": \"https://external-preview.redd.it/9ysNb0gusnMS-eejYnpAaDdmVXQopY_BtieQEtU8H7k.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=84c142a8637427c62e4c23901cc3c206000ae1f5\", \"width\": 1080, \"height\": 565}], \"variants\": {}, \"id\": \"82qPTFWhBz62ccqLBZjYtxdfbm-GKOb9IzN1tXIzKyE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbpuuq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Adrian_Exodus\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbpuuq/testtestste/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cbpuuq/testtestste/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562810747.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Have some old parts that I'm looking to sell and then may be in the market for some other things. We'll start with the items for sale. Here's a little quick reference chart for availability and pricing, detailed descriptions and timestamps will follow. All prices are shipped for the individual item. If more than 1 item is bought we can work out a reduced price.\\n\\nITEM|PRICE|AVAILABLE\\n:--:|:--:|:--:\\n3770K CPU | $120 | Yes\\nASROCK z77 Extreme 6 | $75 | Yes\\nPatriot RAM | $50 | Yes\\nGTX 970 with Waterblock | $120 | Yes\\nKoolance CPU 370 Waterblock | $50 | Yes\\n\\nCPU is an Intel 3770k that's LGA 1155 socket. I've had it since 2012 and it has been watercooled since then. In the last ~6 months I decided to try overclocking. I ran it at 4.5GHZ. I tried going higher but couldn't due to temperature issues at the voltages required to make it stable. I'm 99% it was the paste I was using (I used some 10y/o paste like an idiot). Running at 4.5ghz kept it under 80C at load so I stayed there. I don't know what voltage it was running at exactly as I was given very different numbers depending on the program used. I just know I had an offset of +0.08.\\n\\n\\n[Motherboard is a Asrock z77 Extreme6](https://www.asrock.com/MB/Intel/Z77%20Extreme6/index.asp](https://www.asrock.com/MB/Intel/Z77%20Extreme6/index.asp). It's done me well but it's definitely showing its age. When using headphones or speakers it will randomly drop sound until you play with the cable. I also had some issues with the USB ports but that only started after a windows reinstall so I think that's a driver issue. It's not in my timestamps but on the website provided it shows a USB 3 header, I have that and can include it if desired. Can get pics of possession if requested.\\n\\n\\nRAM is [Patriot Viper](https://www.amazon.com/gp/product/B00453R90W/ref=ppx\\\\_yo\\\\_dt\\\\_b\\\\_asin\\\\_title\\\\_o04\\\\_s00?ie=UTF8\\u0026psc=1). Only thing different than the stock image is the PCB is green instead of block. It's still 1866mhz with 10-11-10-30 timings. 2x8GB for a total of 16GB. I never OC'd it but it ran XMP without issue.\\n\\n\\nCard is a [Gigabyte G1 GTX 970](https://www.gigabyte.com/us/Graphics-Card/GV-N970G1-GAMING-4GD-rev-10-11#ov) with an [EK-FC970 GTX WF3 Acetal + Nickle waterblock](https://www.ekwb.com/shop/ek-fc970-gtx-wf3-acetal-nickel). I do NOT have the original cooler and I'm not willing to separate the block (unless there are 2 people interested and willing to pay the extra for two shipping fees). I bought it off of this sub a couple months ago and I haven't had any issues with it since. It didn't seem to mesh well with my CPU block so there is some corrosion(I guess that's what it is) but it's not bad.\\n\\n\\nCPU waterblock is a [Koolance CPU 370](https://koolance.com/cpu-370-processor-water-block)). It's suppose to work with several LGA sockets (including 1155 obviously) and AM2/AM3 boards. I have everything that comes with it except for the thermal pads or whatever those are that's in their picture layout. Same small spots of corrosion as the GPU block. In my 7ish years of using it, it never had this problem till I used it with this GPU block so I think there were just issues with mixing metals.\\n\\n\\nHere are the [timestamps](http://imgur.com/a/Va45UQl) for everything.\\n\\n\\nIf you want anymore information or pictures I can try getting them.\\n\\n\\nAs for the things I'm potentially buying. I'm looking for a cheap AM4 waterblock. Currently have my eye on a $48 barrow block so it'll definitely have to be under that. Doesn't have to be anything fancy. May consider an AM4 aircooler too. Something like the arctic freezer 34 esports duo.\\n\\n\\nAlso looking into buying a M2 NVME drive depending on price. Would prefer 1-2TB. Not looking for a 970 EVO or anything. Wouldn't mind an intel 660p but it'd have to be at a great price considering the recent price errors.\", \"author_fullname\": \"t2_9xw1o\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test swap post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cbobyg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1562803584.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562831052.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave some old parts that I\\u0026#39;m looking to sell and then may be in the market for some other things. We\\u0026#39;ll start with the items for sale. Here\\u0026#39;s a little quick reference chart for availability and pricing, detailed descriptions and timestamps will follow. All prices are shipped for the individual item. If more than 1 item is bought we can work out a reduced price.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EITEM\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPRICE\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAVAILABLE\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3770K CPU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$120\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EYes\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EASROCK z77 Extreme 6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EYes\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPatriot RAM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EYes\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGTX 970 with Waterblock\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$120\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EYes\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKoolance CPU 370 Waterblock\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EYes\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003ECPU is an Intel 3770k that\\u0026#39;s LGA 1155 socket. I\\u0026#39;ve had it since 2012 and it has been watercooled since then. In the last ~6 months I decided to try overclocking. I ran it at 4.5GHZ. I tried going higher but couldn\\u0026#39;t due to temperature issues at the voltages required to make it stable. I\\u0026#39;m 99% it was the paste I was using (I used some 10y/o paste like an idiot). Running at 4.5ghz kept it under 80C at load so I stayed there. I don\\u0026#39;t know what voltage it was running at exactly as I was given very different numbers depending on the program used. I just know I had an offset of +0.08.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.asrock.com/MB/Intel/Z77%20Extreme6/index.asp%5D(https://www.asrock.com/MB/Intel/Z77%20Extreme6/index.asp\\\"\\u003EMotherboard is a Asrock z77 Extreme6\\u003C/a\\u003E. It\\u0026#39;s done me well but it\\u0026#39;s definitely showing its age. When using headphones or speakers it will randomly drop sound until you play with the cable. I also had some issues with the USB ports but that only started after a windows reinstall so I think that\\u0026#39;s a driver issue. It\\u0026#39;s not in my timestamps but on the website provided it shows a USB 3 header, I have that and can include it if desired. Can get pics of possession if requested.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERAM is \\u003Ca href=\\\"https://www.amazon.com/gp/product/B00453R90W/ref=ppx_yo_dt_b_asin_title_o04_s00?ie=UTF8\\u0026amp;psc=1\\\"\\u003EPatriot Viper\\u003C/a\\u003E. Only thing different than the stock image is the PCB is green instead of block. It\\u0026#39;s still 1866mhz with 10-11-10-30 timings. 2x8GB for a total of 16GB. I never OC\\u0026#39;d it but it ran XMP without issue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECard is a \\u003Ca href=\\\"https://www.gigabyte.com/us/Graphics-Card/GV-N970G1-GAMING-4GD-rev-10-11#ov\\\"\\u003EGigabyte G1 GTX 970\\u003C/a\\u003E with an \\u003Ca href=\\\"https://www.ekwb.com/shop/ek-fc970-gtx-wf3-acetal-nickel\\\"\\u003EEK-FC970 GTX WF3 Acetal + Nickle waterblock\\u003C/a\\u003E. I do NOT have the original cooler and I\\u0026#39;m not willing to separate the block (unless there are 2 people interested and willing to pay the extra for two shipping fees). I bought it off of this sub a couple months ago and I haven\\u0026#39;t had any issues with it since. It didn\\u0026#39;t seem to mesh well with my CPU block so there is some corrosion(I guess that\\u0026#39;s what it is) but it\\u0026#39;s not bad.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECPU waterblock is a \\u003Ca href=\\\"https://koolance.com/cpu-370-processor-water-block\\\"\\u003EKoolance CPU 370\\u003C/a\\u003E). It\\u0026#39;s suppose to work with several LGA sockets (including 1155 obviously) and AM2/AM3 boards. I have everything that comes with it except for the thermal pads or whatever those are that\\u0026#39;s in their picture layout. Same small spots of corrosion as the GPU block. In my 7ish years of using it, it never had this problem till I used it with this GPU block so I think there were just issues with mixing metals.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are the \\u003Ca href=\\\"http://imgur.com/a/Va45UQl\\\"\\u003Etimestamps\\u003C/a\\u003E for everything.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you want anymore information or pictures I can try getting them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for the things I\\u0026#39;m potentially buying. I\\u0026#39;m looking for a cheap AM4 waterblock. Currently have my eye on a $48 barrow block so it\\u0026#39;ll definitely have to be under that. Doesn\\u0026#39;t have to be anything fancy. May consider an AM4 aircooler too. Something like the arctic freezer 34 esports duo.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso looking into buying a M2 NVME drive depending on price. Would prefer 1-2TB. Not looking for a 970 EVO or anything. Wouldn\\u0026#39;t mind an intel 660p but it\\u0026#39;d have to be at a great price considering the recent price errors.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ez6SlkWuhaDTj096_NTJmvDA-mekQqyI6r23XJtcVk8.jpg?auto=webp\\u0026s=ee32481fd04ec2f59f376843e52d136903ecd917\", \"width\": 3024, \"height\": 4032}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ez6SlkWuhaDTj096_NTJmvDA-mekQqyI6r23XJtcVk8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c08ca23ff26526b03c9391439208dddb3947503f\", \"width\": 108, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/ez6SlkWuhaDTj096_NTJmvDA-mekQqyI6r23XJtcVk8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f7d240cb38b38268dc0126dc3b3998a51cd04aab\", \"width\": 216, \"height\": 288}, {\"url\": \"https://external-preview.redd.it/ez6SlkWuhaDTj096_NTJmvDA-mekQqyI6r23XJtcVk8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9088783a1b6ddc9fd60345d6a01f90dc360a4173\", \"width\": 320, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/ez6SlkWuhaDTj096_NTJmvDA-mekQqyI6r23XJtcVk8.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a57ea2925937d31d1c225eb56b02e7d775fbf412\", \"width\": 640, \"height\": 853}, {\"url\": \"https://external-preview.redd.it/ez6SlkWuhaDTj096_NTJmvDA-mekQqyI6r23XJtcVk8.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=65e834ca62c4d96d7b0ed0605bbd507b1d32dea8\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://external-preview.redd.it/ez6SlkWuhaDTj096_NTJmvDA-mekQqyI6r23XJtcVk8.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=bf8623cf96950bd6aabed15f0ced6c15983c355c\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"h3sgKurBIQjMhpmpBR0ZwoahPhgsCW5wQXCV2YN0iDA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbobyg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"blorgensplor\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbobyg/test_swap_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cbobyg/test_swap_post/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562802252.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_ywgs0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test profile card\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cboaxi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/aWt3Ojh17SQSx3Q7lCWIeECFUz8ATVvklaEkydE3_uw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562830902.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"test.3box.io\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/V4dXex-PA38rMVUZlBPC0GYLPd90dDDe0-MiWSBa8Bs.jpg?auto=webp\\u0026s=47b649832c19bef3a4d7ab5154d391d1fadf9c79\", \"width\": 750, \"height\": 1000}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/V4dXex-PA38rMVUZlBPC0GYLPd90dDDe0-MiWSBa8Bs.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=42a28c65b90ce70aa69ec94ec2a01771cc2252f5\", \"width\": 108, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/V4dXex-PA38rMVUZlBPC0GYLPd90dDDe0-MiWSBa8Bs.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c372f3d620f64a620f7bdef818415850f875eeb7\", \"width\": 216, \"height\": 288}, {\"url\": \"https://external-preview.redd.it/V4dXex-PA38rMVUZlBPC0GYLPd90dDDe0-MiWSBa8Bs.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=20aba478e6ff5286a6b75bedfa072bbe5c05c050\", \"width\": 320, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/V4dXex-PA38rMVUZlBPC0GYLPd90dDDe0-MiWSBa8Bs.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=cac8ce1fe2302baaf3e939592a1181e2191566f7\", \"width\": 640, \"height\": 853}], \"variants\": {}, \"id\": \"H3647mbyVSinJEdiDxZ88n3bUZ-gy2-RxUkCvrC0t5g\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cboaxi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"oznekenzo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cboaxi/test_profile_card/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://test.3box.io/0xcD0c599f1B6709A026978A75e0CA2021446E2ED6\", \"subreddit_subscribers\": 754, \"created_utc\": 1562802102.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello all, haven't been on here for a while, but I'm back after seeing some of the newer Tag Team sets, the artwork on them has inspired me to collect again.\\n \\n**I ONLY TRADE, NO PAYPAL AT ALL, NON-NEGOTIABLE.**\\n\\n* [BINDER](https://imgur.com/a/3qbiQkC)\\n\\nTrading Value wise, I base the value is of TCGPlayer. If a cards condition isn't stated, it's in NM or M. If you want pictures of a specific card, I can deliver, it'll take time though, as my phones camera is horrible and the lighting here sucks. \\n\\n**Wants List**\\n_____________________________________\\n* Pheromosa \\u0026 Buzzwole GX (Alternate Art)\\n* Arceus (AR 1,2,3,4,5,8,9)\\n* Hoopa GX (Rainbow Rare) \\n* Ingo \\u0026 Emmet (Full Art)\\n* Jasmine (Full Art)\\n* Latias \\u0026 Latios GX (Full Art)\\n* Lugia GX (Full Art)\\n* Ho-Oh GX (Full Art)\\n* Articuno GX (Full Art)\\n* Rayquaza GX (Regular Art/Full Art)\\n* Stakataka GX (Full Art)\\n* Naganedal GX (Full Art)\\n* Blacephalon GX (Full Art)\\n* Yveltal EX (XY150 Alternate Art Promo)\\n* All of the Tapu Full Arts.\\n* Any Gold Stars except Flareon, don't care if MP-HP\\n* Binders, some other stuff may interest me that's not listed\\n__________________________________________________\\n\\nAlong with these, I'm looking for cards from a lesser known card game called **Battle Spirits**, it did have a US release but it's stayed JP only. I'm looking for [The BlackCorspeKing Baldanders](https://vignette.wikia.nocookie.net/battle-spirits/images/9/97/BS20-X02.PNG/revision/latest/scale-to-width-down/300?cb=20190701125300) and [The Hellflame FourDemonLord Bram-Zand](https://vignette.wikia.nocookie.net/battle-spirits/images/d/dc/The_InfernoFourDemonLord_Bram-Zand.jpg/revision/latest/scale-to-width-down/300?cb=20161115145054)\\n\\n**Happy Trading!**\", \"author_fullname\": \"t2_12mh72\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing formatting for card trading.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cbnl31\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562827150.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello all, haven\\u0026#39;t been on here for a while, but I\\u0026#39;m back after seeing some of the newer Tag Team sets, the artwork on them has inspired me to collect again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EI ONLY TRADE, NO PAYPAL AT ALL, NON-NEGOTIABLE.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://imgur.com/a/3qbiQkC\\\"\\u003EBINDER\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ETrading Value wise, I base the value is of TCGPlayer. If a cards condition isn\\u0026#39;t stated, it\\u0026#39;s in NM or M. If you want pictures of a specific card, I can deliver, it\\u0026#39;ll take time though, as my phones camera is horrible and the lighting here sucks. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWants List\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPheromosa \\u0026amp; Buzzwole GX (Alternate Art)\\u003C/li\\u003E\\n\\u003Cli\\u003EArceus (AR 1,2,3,4,5,8,9)\\u003C/li\\u003E\\n\\u003Cli\\u003EHoopa GX (Rainbow Rare)\\u003Cbr/\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EIngo \\u0026amp; Emmet (Full Art)\\u003C/li\\u003E\\n\\u003Cli\\u003EJasmine (Full Art)\\u003C/li\\u003E\\n\\u003Cli\\u003ELatias \\u0026amp; Latios GX (Full Art)\\u003C/li\\u003E\\n\\u003Cli\\u003ELugia GX (Full Art)\\u003C/li\\u003E\\n\\u003Cli\\u003EHo-Oh GX (Full Art)\\u003C/li\\u003E\\n\\u003Cli\\u003EArticuno GX (Full Art)\\u003C/li\\u003E\\n\\u003Cli\\u003ERayquaza GX (Regular Art/Full Art)\\u003C/li\\u003E\\n\\u003Cli\\u003EStakataka GX (Full Art)\\u003C/li\\u003E\\n\\u003Cli\\u003ENaganedal GX (Full Art)\\u003C/li\\u003E\\n\\u003Cli\\u003EBlacephalon GX (Full Art)\\u003C/li\\u003E\\n\\u003Cli\\u003EYveltal EX (XY150 Alternate Art Promo)\\u003C/li\\u003E\\n\\u003Cli\\u003EAll of the Tapu Full Arts.\\u003C/li\\u003E\\n\\u003Cli\\u003EAny Gold Stars except Flareon, don\\u0026#39;t care if MP-HP\\u003C/li\\u003E\\n\\u003Cli\\u003EBinders, some other stuff may interest me that\\u0026#39;s not listed\\n__________________________________________________\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAlong with these, I\\u0026#39;m looking for cards from a lesser known card game called \\u003Cstrong\\u003EBattle Spirits\\u003C/strong\\u003E, it did have a US release but it\\u0026#39;s stayed JP only. I\\u0026#39;m looking for \\u003Ca href=\\\"https://vignette.wikia.nocookie.net/battle-spirits/images/9/97/BS20-X02.PNG/revision/latest/scale-to-width-down/300?cb=20190701125300\\\"\\u003EThe BlackCorspeKing Baldanders\\u003C/a\\u003E and \\u003Ca href=\\\"https://vignette.wikia.nocookie.net/battle-spirits/images/d/dc/The_InfernoFourDemonLord_Bram-Zand.jpg/revision/latest/scale-to-width-down/300?cb=20161115145054\\\"\\u003EThe Hellflame FourDemonLord Bram-Zand\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHappy Trading!\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/y3xuldhP9jO0u_qzYZBJ-evP-STnotGFLpZMfGQrXVI.jpg?auto=webp\\u0026s=f267025d1b2059edf805f2ed70761a5abde0ca4b\", \"width\": 1440, \"height\": 2560}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/y3xuldhP9jO0u_qzYZBJ-evP-STnotGFLpZMfGQrXVI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a30cd1d87f2b6932cb069136d38d358ef8cff530\", \"width\": 108, \"height\": 192}, {\"url\": \"https://external-preview.redd.it/y3xuldhP9jO0u_qzYZBJ-evP-STnotGFLpZMfGQrXVI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f7204169b8c47cbffbb59e1f160da99099741a77\", \"width\": 216, \"height\": 384}, {\"url\": \"https://external-preview.redd.it/y3xuldhP9jO0u_qzYZBJ-evP-STnotGFLpZMfGQrXVI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1d071042937620f63d11681f4fe3a97c34c89a89\", \"width\": 320, \"height\": 568}, {\"url\": \"https://external-preview.redd.it/y3xuldhP9jO0u_qzYZBJ-evP-STnotGFLpZMfGQrXVI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=805e7910ea1a000826c22980250f61ce8a7ce7b5\", \"width\": 640, \"height\": 1137}, {\"url\": \"https://external-preview.redd.it/y3xuldhP9jO0u_qzYZBJ-evP-STnotGFLpZMfGQrXVI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=501daf8e0250c2c98a681668aa2f8843fffe6d36\", \"width\": 960, \"height\": 1706}, {\"url\": \"https://external-preview.redd.it/y3xuldhP9jO0u_qzYZBJ-evP-STnotGFLpZMfGQrXVI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d4d2e5567ee0063b146b2f897f84f5bde616f3e9\", \"width\": 1080, \"height\": 1920}], \"variants\": {}, \"id\": \"7I6PYcjziayekr0Tq0PIFDLxdmOXNgW0vjvzVRJdGQE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbnl31\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gangarli\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbnl31/testing_formatting_for_card_trading/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cbnl31/testing_formatting_for_card_trading/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562798350.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_12b9x3wp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test car post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cbn883\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/31i8Ruljmy7fVNYrFfHEt9bJfFuqImXbaPot_JwOiOw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562825335.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/b1V64vp7Fev2Zs7JSa0ejIpmsWDCKa1LfnO9x4BR-cc.jpg?auto=webp\\u0026s=4641411547c8717b984c0c82c7e4c02f163eefe6\", \"width\": 1024, \"height\": 768}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/b1V64vp7Fev2Zs7JSa0ejIpmsWDCKa1LfnO9x4BR-cc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d3f49f3d87a0e4e382a693a6c07ca248d1abe63c\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/b1V64vp7Fev2Zs7JSa0ejIpmsWDCKa1LfnO9x4BR-cc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=9e2797ac35eb5298af19c090e2d1610283f06b1f\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/b1V64vp7Fev2Zs7JSa0ejIpmsWDCKa1LfnO9x4BR-cc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d18c44edb2f975f66a4e3f93183f45a8aa84cbf8\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/b1V64vp7Fev2Zs7JSa0ejIpmsWDCKa1LfnO9x4BR-cc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=4d4b78ed8784b563e22cb2580e605b800ad72ea7\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/b1V64vp7Fev2Zs7JSa0ejIpmsWDCKa1LfnO9x4BR-cc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=a8b3eb2ed6893286bea048f01795ac583768f5c3\", \"width\": 960, \"height\": 720}], \"variants\": {}, \"id\": \"5hp0xDmo2ZIUFNDkLfPyeR892TfTHyBGDfPQmbYz6qM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbn883\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"recaptcha77\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbn883/test_car_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/AatRXud\", \"subreddit_subscribers\": 754, \"created_utc\": 1562796535.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://imgur.com/a/UFU4PdH](https://imgur.com/a/UFU4PdH)\", \"author_fullname\": \"t2_12b9x3wp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test link\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cbn3rx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562824733.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/UFU4PdH\\\"\\u003Ehttps://imgur.com/a/UFU4PdH\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/b1V64vp7Fev2Zs7JSa0ejIpmsWDCKa1LfnO9x4BR-cc.jpg?auto=webp\\u0026s=4641411547c8717b984c0c82c7e4c02f163eefe6\", \"width\": 1024, \"height\": 768}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/b1V64vp7Fev2Zs7JSa0ejIpmsWDCKa1LfnO9x4BR-cc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d3f49f3d87a0e4e382a693a6c07ca248d1abe63c\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/b1V64vp7Fev2Zs7JSa0ejIpmsWDCKa1LfnO9x4BR-cc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=9e2797ac35eb5298af19c090e2d1610283f06b1f\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/b1V64vp7Fev2Zs7JSa0ejIpmsWDCKa1LfnO9x4BR-cc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d18c44edb2f975f66a4e3f93183f45a8aa84cbf8\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/b1V64vp7Fev2Zs7JSa0ejIpmsWDCKa1LfnO9x4BR-cc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=4d4b78ed8784b563e22cb2580e605b800ad72ea7\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/b1V64vp7Fev2Zs7JSa0ejIpmsWDCKa1LfnO9x4BR-cc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=a8b3eb2ed6893286bea048f01795ac583768f5c3\", \"width\": 960, \"height\": 720}], \"variants\": {}, \"id\": \"5hp0xDmo2ZIUFNDkLfPyeR892TfTHyBGDfPQmbYz6qM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbn3rx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"recaptcha77\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbn3rx/test_link/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cbn3rx/test_link/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562795933.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_11i3y5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"OG rule 1\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_cblnwe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/KsoHeudmYERdTPx7nAjaOxKvV2L4qThZckipzAssBnU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562817749.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MKogp8XLT2hoa5p5O4yTb1G5szkK5HuJcujI9S6oRfY.jpg?auto=webp\\u0026s=becee70fb11cbe475a214e232f688d43e8c54128\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MKogp8XLT2hoa5p5O4yTb1G5szkK5HuJcujI9S6oRfY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=6182fc25279c2e4830214545ab1db83380624ea3\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/MKogp8XLT2hoa5p5O4yTb1G5szkK5HuJcujI9S6oRfY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a654ece638b64cca23c0b286f2feb3d5ba1bd68b\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/MKogp8XLT2hoa5p5O4yTb1G5szkK5HuJcujI9S6oRfY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1deb513cc6f7cb5d586d6e2fccf6f437e45f8b7d\", \"width\": 320, \"height\": 179}], \"variants\": {}, \"id\": \"-1ibg-ndLZ-GFk-d5iz0ambwVVCx-HcNwzMRObty6do\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cblnwe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Derperfier\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cblnwe/og_rule_1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/RocketLeague/comments/5apnzi/rule_1\", \"subreddit_subscribers\": 754, \"created_utc\": 1562788949.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_11i3y5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"OG rule 1.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_cblhxn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/FuHIrhL71-tKefYfA6_pqn6deixxV3-FUjGi9FDY4_4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"RocketLeague\", \"selftext\": \"\", \"author_fullname\": \"t2_ni3jf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Rule #1\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"GIF\"}], \"subreddit_name_prefixed\": \"r/RocketLeague\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"gif\", \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_5apnzi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1017, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Ftameclearhapuka\\u0026url=https%3A%2F%2Fgfycat.com%2Ftameclearhapuka-rocketleague\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FTameClearHapuka-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"5783dc6e-f935-11e5-bdf3-0e84f409924f\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Rule #1 GIF on Gfycat. Discover more rocketleague GIFs on Gfycat\", \"title\": \"Rule #1\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Ftameclearhapuka\\u0026url=https%3A%2F%2Fgfycat.com%2Ftameclearhapuka-rocketleague\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FTameClearHapuka-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/TameClearHapuka-size_restricted.gif\", \"thumbnail_height\": 250}, \"type\": \"gfycat.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Ftameclearhapuka\\u0026url=https%3A%2F%2Fgfycat.com%2Ftameclearhapuka-rocketleague\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FTameClearHapuka-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/5apnzi\", \"height\": 338}, \"link_flair_text\": \"GIF\", \"can_mod_post\": false, \"score\": 1017, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/FuHIrhL71-tKefYfA6_pqn6deixxV3-FUjGi9FDY4_4.jpg\", \"edited\": false, \"author_flair_css_class\": \"plat2\", \"author_flair_richtext\": [{\"e\": \"text\", \"t\": \"Platinum II \"}, {\"a\": \":Platinum2:\", \"e\": \"emoji\", \"u\": \"https://emoji.redditmedia.com/vwsjwbhc1o731_t5_30cz1/Platinum2\"}], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1478119647.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"richtext\", \"domain\": \"gfycat.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?format=png8\\u0026s=0e5fdedaa73b71f8b4829c6c2b93fabbe94eb3c8\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=8e771a53a0b55f1bed1e0d563018bd23e24b94d4\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=9884a9f6e5d7219c53cbdd0950cdf025ac15c4d0\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=ef79f404facede1dcb7618bde8ec688a15858247\", \"width\": 320, \"height\": 179}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?s=9a2d87ee7e983dfbbfcc20c4f17e351041cf57b2\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=108\\u0026crop=smart\\u0026s=0bb15b4f4d9f899a15d13ad3b9f878c1b1a7def9\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=216\\u0026crop=smart\\u0026s=846a608a7377f7ca5035984ddbee6b38c16e8c7b\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=320\\u0026crop=smart\\u0026s=d22d3d41b8af3a98ac2ce3f5da452b7f57690403\", \"width\": 320, \"height\": 179}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?format=mp4\\u0026s=3bc952b585e38b460f619fcab81549ae4e0c88c7\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=108\\u0026format=mp4\\u0026s=27728fdcfe3daf69ed1622c2d622731197b072fd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=216\\u0026format=mp4\\u0026s=90ea99826902602173e62645b26c2bdaea57b3fb\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=320\\u0026format=mp4\\u0026s=0230b551a52d0fb5d793ce6a6f23065dcb089b47\", \"width\": 320, \"height\": 179}]}}, \"id\": \"-1ibg-ndLZ-GFk-d5iz0ambwVVCx-HcNwzMRObty6do\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Platinum II :Platinum2:\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_30cz1\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"5apnzi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kronovi\", \"num_crossposts\": 1, \"num_comments\": 123, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/RocketLeague/comments/5apnzi/rule_1/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://gfycat.com/TameClearHapuka\", \"subreddit_subscribers\": 539981, \"created_utc\": 1478090847.0, \"discussion_type\": null, \"media\": {\"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Rule #1 GIF on Gfycat. Discover more rocketleague GIFs on Gfycat\", \"title\": \"Rule #1\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Ftameclearhapuka\\u0026url=https%3A%2F%2Fgfycat.com%2Ftameclearhapuka-rocketleague\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FTameClearHapuka-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/TameClearHapuka-size_restricted.gif\", \"thumbnail_height\": 250}, \"type\": \"gfycat.com\"}, \"is_video\": false}], \"created\": 1562816980.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gfycat.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?format=png8\\u0026s=0e5fdedaa73b71f8b4829c6c2b93fabbe94eb3c8\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=8e771a53a0b55f1bed1e0d563018bd23e24b94d4\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=9884a9f6e5d7219c53cbdd0950cdf025ac15c4d0\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=ef79f404facede1dcb7618bde8ec688a15858247\", \"width\": 320, \"height\": 179}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?s=9a2d87ee7e983dfbbfcc20c4f17e351041cf57b2\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=108\\u0026crop=smart\\u0026s=0bb15b4f4d9f899a15d13ad3b9f878c1b1a7def9\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=216\\u0026crop=smart\\u0026s=846a608a7377f7ca5035984ddbee6b38c16e8c7b\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=320\\u0026crop=smart\\u0026s=d22d3d41b8af3a98ac2ce3f5da452b7f57690403\", \"width\": 320, \"height\": 179}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?format=mp4\\u0026s=3bc952b585e38b460f619fcab81549ae4e0c88c7\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=108\\u0026format=mp4\\u0026s=27728fdcfe3daf69ed1622c2d622731197b072fd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=216\\u0026format=mp4\\u0026s=90ea99826902602173e62645b26c2bdaea57b3fb\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/Djsif4LTb-s49sVCMg94Gg3NH4r9-KFHdLaHeWo_FhA.gif?width=320\\u0026format=mp4\\u0026s=0230b551a52d0fb5d793ce6a6f23065dcb089b47\", \"width\": 320, \"height\": 179}]}}, \"id\": \"-1ibg-ndLZ-GFk-d5iz0ambwVVCx-HcNwzMRObty6do\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cblhxn\", \"is_robot_indexable\": true, \"stickied\": false, \"author\": \"Derperfier\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_5apnzi\", \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cblhxn/og_rule_1/\", \"parent_whitelist_status\": null, \"report_reasons\": null, \"url\": \"https://gfycat.com/TameClearHapuka\", \"subreddit_subscribers\": 754, \"created_utc\": 1562788180.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u003Eboo hoo\\n\\nhhoo hoo\", \"author_fullname\": \"t2_6gm2qhj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Boo hoo\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cbjskm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562809158.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eboo hoo\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003Ehhoo hoo\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbjskm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"napoleonbonerandfart\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbjskm/boo_hoo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cbjskm/boo_hoo/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562780358.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"blah blah blah di blah\\n\\n\\u0026nbsp;\\n\\nblah blah\\n\\n\\u0026nbsp;\\n\\nblah blah\\n\\n\\u0026nbsp;\\n\\n\\u003Eblah 1\\n\\n\\u0026nbsp;\\n\\nBlah blah\\n\\n\\u0026nbsp;\\n\\nBlah blah\\n\\n\\u0026nbsp;\\n\\n\\u003EBlah 2\\n\\n\\u0026nbsp;\\n\\nBlah blah\\n\\n\\u0026nbsp;\\n\\nBlah blah\", \"author_fullname\": \"t2_ihukb\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cbh9xt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562797110.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eblah blah blah di blah\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eblah blah\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eblah blah\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eblah 1\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlah blah\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlah blah\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EBlah 2\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlah blah\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlah blah\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbh9xt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Cantsleep-John\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbh9xt/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cbh9xt/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562768310.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hi, so I'm planning on buying a new computer for schoolwork, work and gaming. I work within CAD and video editing. I don't want anything extremely expensive but I want a computer that will last me a couple of years and be able to play future games at decent graphics and fps. I don't care if I play at 4k with 300fps or whatever I just want it to be able to handle future releases at mid/high-quality graphics. The current stationary pc I currently have can't handle games released after 2010 I can't play anything else with it apart from fortnite (ironically) which I don't play often at all due to it being extremely boring. My budget is $1300 but if possible I'd like something below $1200\\n\\n\\u0026#x200B;\\n\\n**Total budget and country of purchase:** $1299 (13000 SEK) \\u0026 Sweden, Stockholm \\n\\n**Do you prefer a 2 in 1 form factor, good battery life or best specifications for the money? Pick or include any that apply**: I want the best specifications for the money but if possible a decent battery for school as well, though battery life isn't that big of a deal to me.\\n\\n**How important is weight and thinness to you?** I really do not care about how thin or heavy it is, I'll carry a 20-pound laptop if I have to.\\n\\n**Which OS do you require?** Windows \\n\\n**Do you have a preferred screen size?** N/A (Doesn't matter at all to me)\\n\\n**Are you doing any CAD/video editing/photo editing/gaming? List which programs/games you desire to run:** Adobe creative cloud, Sony Vegas pro 16, Blender, 3ds max, GTA V, Madden 19, Metro Exodus, Half life, Cyberpunk 2077 (I want to be able to play it) \\u0026 Forza Horizon\\n\\n**If you're gaming, do you have certain games you want to play? At what settings and FPS do you want?** GTA V at max settings (if possible) with 70+ fps and the rest of the games I don't really care as long as the graphics are decent (mid/high) and I don't lag. (Preferably high graphics). I ***need*** to be able to play Forza Horizon on high/max settings, it's the main reason I want a new laptop I really love that game.\\n\\n**Any specific requirements such as good keyboard, reliable build quality, touch-screen, finger-print reader, optical drive or good input devices (keyboard/touchpad)?** Just a nice keyboard would be nice, I don't really mind though about any of those features. I'll be using a death adder elite mouse anyways so touchpad doesn't matter at all.\\n\\nLeave any finishing thoughts here that you may feel are necessary and beneficial to the discussion.\\\\*\\\\* I want a pc I can if possible go pick up at a retail store near me or wait a couple of days but I can't be bothered to wait 30 days or more unless it's a really good pc for a great deal. I don't care for all the extra gimmicks like 144hz or 4k, I have bad eyesight anyways I won't notice it. A very important thing is that the laptop doesn't heat up or become hot at all, unless I'm doing something stupid like rendering a complex scene whilst playing Forza Horizon on max settings.\\n\\nI look forward to hearing your advice and opinions!\", \"author_fullname\": \"t2_3h7ubkyu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cbh7r7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1562769148.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562796793.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, so I\\u0026#39;m planning on buying a new computer for schoolwork, work and gaming. I work within CAD and video editing. I don\\u0026#39;t want anything extremely expensive but I want a computer that will last me a couple of years and be able to play future games at decent graphics and fps. I don\\u0026#39;t care if I play at 4k with 300fps or whatever I just want it to be able to handle future releases at mid/high-quality graphics. The current stationary pc I currently have can\\u0026#39;t handle games released after 2010 I can\\u0026#39;t play anything else with it apart from fortnite (ironically) which I don\\u0026#39;t play often at all due to it being extremely boring. My budget is $1300 but if possible I\\u0026#39;d like something below $1200\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETotal budget and country of purchase:\\u003C/strong\\u003E $1299 (13000 SEK) \\u0026amp; Sweden, Stockholm \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDo you prefer a 2 in 1 form factor, good battery life or best specifications for the money? Pick or include any that apply\\u003C/strong\\u003E: I want the best specifications for the money but if possible a decent battery for school as well, though battery life isn\\u0026#39;t that big of a deal to me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHow important is weight and thinness to you?\\u003C/strong\\u003E I really do not care about how thin or heavy it is, I\\u0026#39;ll carry a 20-pound laptop if I have to.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhich OS do you require?\\u003C/strong\\u003E Windows \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDo you have a preferred screen size?\\u003C/strong\\u003E N/A (Doesn\\u0026#39;t matter at all to me)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAre you doing any CAD/video editing/photo editing/gaming? List which programs/games you desire to run:\\u003C/strong\\u003E Adobe creative cloud, Sony Vegas pro 16, Blender, 3ds max, GTA V, Madden 19, Metro Exodus, Half life, Cyberpunk 2077 (I want to be able to play it) \\u0026amp; Forza Horizon\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EIf you\\u0026#39;re gaming, do you have certain games you want to play? At what settings and FPS do you want?\\u003C/strong\\u003E GTA V at max settings (if possible) with 70+ fps and the rest of the games I don\\u0026#39;t really care as long as the graphics are decent (mid/high) and I don\\u0026#39;t lag. (Preferably high graphics). I \\u003Cstrong\\u003E\\u003Cem\\u003Eneed\\u003C/em\\u003E\\u003C/strong\\u003E to be able to play Forza Horizon on high/max settings, it\\u0026#39;s the main reason I want a new laptop I really love that game.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAny specific requirements such as good keyboard, reliable build quality, touch-screen, finger-print reader, optical drive or good input devices (keyboard/touchpad)?\\u003C/strong\\u003E Just a nice keyboard would be nice, I don\\u0026#39;t really mind though about any of those features. I\\u0026#39;ll be using a death adder elite mouse anyways so touchpad doesn\\u0026#39;t matter at all.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELeave any finishing thoughts here that you may feel are necessary and beneficial to the discussion.** I want a pc I can if possible go pick up at a retail store near me or wait a couple of days but I can\\u0026#39;t be bothered to wait 30 days or more unless it\\u0026#39;s a really good pc for a great deal. I don\\u0026#39;t care for all the extra gimmicks like 144hz or 4k, I have bad eyesight anyways I won\\u0026#39;t notice it. A very important thing is that the laptop doesn\\u0026#39;t heat up or become hot at all, unless I\\u0026#39;m doing something stupid like rendering a complex scene whilst playing Forza Horizon on max settings.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI look forward to hearing your advice and opinions!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbh7r7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mjam2\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbh7r7/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cbh7r7/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562767993.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_11oh07\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TEST w/ link\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_cbcr1q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/BFGsQsF-K8QTtSUXaAsncDDSmre3ywt4SrNZFpnXyE0.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562766443.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"docs.google.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JHOE2Ohln0XVuDKAvvzhALIXt9YZQVYM2O9WOl-UN3c.jpg?auto=webp\\u0026s=ec93904ea92d0727db538d3d5218573ff737f87e\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JHOE2Ohln0XVuDKAvvzhALIXt9YZQVYM2O9WOl-UN3c.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0734ca35de2fa887421473b20ec3f97ad976a117\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/JHOE2Ohln0XVuDKAvvzhALIXt9YZQVYM2O9WOl-UN3c.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=2c256ce9322a599ea3041a2d2675624265dcd6de\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/JHOE2Ohln0XVuDKAvvzhALIXt9YZQVYM2O9WOl-UN3c.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=af699f9c9dc0614ddeb4b04bf7225ca3d0a35001\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/JHOE2Ohln0XVuDKAvvzhALIXt9YZQVYM2O9WOl-UN3c.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=ae1d6d8144f3bfc5df73a526f034a5279f5cbfc0\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/JHOE2Ohln0XVuDKAvvzhALIXt9YZQVYM2O9WOl-UN3c.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=da63afc24c87f921a0850b63f71c0d0f95ac8357\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/JHOE2Ohln0XVuDKAvvzhALIXt9YZQVYM2O9WOl-UN3c.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=3332ca37c4a197192c6b79b9c16700bcff526e17\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"S7wOdNj9ricmmRw8hhu5U0PR3vVyYi0arJPMIwv2zuo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbcr1q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"matt93huang\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cbcr1q/test_w_link/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://docs.google.com/spreadsheets/d/1qXiV7jjr9L525iNbY5bTyHBcLkIE9jZmreY5Wgkybi8/edit?usp=sharing\", \"subreddit_subscribers\": 754, \"created_utc\": 1562737643.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"lalaw\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 123, \"hide_score\": false, \"name\": \"t3_cb3uw1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/IofYFDZ2vgWIzgtyZ0NCiANG5VtUjpYQCR9kGT0draY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562721756.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"pbs.twimg.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/3eORz0IqafBkwASZNt1HbBMmhv8bcSR3810e_Q7iN_4.jpg?auto=webp\\u0026s=2496ddac7e961de4851486a0d9ab86b547c70925\", \"width\": 220, \"height\": 194}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/3eORz0IqafBkwASZNt1HbBMmhv8bcSR3810e_Q7iN_4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a957971575e94bccee94a99db23364407972ffc1\", \"width\": 108, \"height\": 95}, {\"url\": \"https://external-preview.redd.it/3eORz0IqafBkwASZNt1HbBMmhv8bcSR3810e_Q7iN_4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=14de6f5bf9615be685ec8ab50a4e12551873dc98\", \"width\": 216, \"height\": 190}], \"variants\": {}, \"id\": \"0I7n1Glp2NOWIJVh_IwUMVHec0YgL9vHoR8WTepHwmY\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cb3uw1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cb3uw1/lalaw/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://pbs.twimg.com/media/DzUhFIrXQAAfsu6.jpg\", \"subreddit_subscribers\": 754, \"created_utc\": 1562692956.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_7s4yz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Who you gonna vote for? 2020 POTUS.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cb2b52\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/GH071EYe0l7OHWNiiP7rnkzmoc7kxPpt5R7AmERHC3w.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562714722.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"termpoll.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ro9FNEDGUzypm21PMH0WYSC3xeJytZanTHgn1ZyPgIA.jpg?auto=webp\\u0026s=121ee4f189b1cc48ccdbcfbcf9f090b6af461810\", \"width\": 400, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ro9FNEDGUzypm21PMH0WYSC3xeJytZanTHgn1ZyPgIA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d294f20ffd17655aac3202d41e2bf72f92f622c0\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/ro9FNEDGUzypm21PMH0WYSC3xeJytZanTHgn1ZyPgIA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6f62c1248316dc0590cfc5861188ad6145e45265\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/ro9FNEDGUzypm21PMH0WYSC3xeJytZanTHgn1ZyPgIA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=36b5a9774b2e3217d259c730818649f4764ff3f3\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"5pI8o9RfnUncvNHjZOJzj-_RAwbJYlMKdrzLRdKFZFc\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cb2b52\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bedlamensues\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cb2b52/who_you_gonna_vote_for_2020_potus/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://termpoll.com\", \"subreddit_subscribers\": 754, \"created_utc\": 1562685922.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*Part 1 is [HERE](https://old.reddit.com/r/fixingmovies/comments/ak8qt1/my_take_on_fixing_the_dark_universe/), Part 2 is [HERE](https://old.reddit.com/r/fixingmovies/comments/bomg7i/my_take_on_fixing_the_dark_universe_part_2/), and Part 3 is [HERE](https://old.reddit.com/r/fixingmovies/comments/brvelz/my_take_on_fixing_the_dark_universe_part_3/).*\\n\\n*And that's a wrap! This has been fun, but it looks like this reimagining has run its course. Thanks to everybody who's followed along up to this point! I appreciate all of the comments.*\\n\\n*[And now, the conclusion...](https://www.youtube.com/watch?v=Redja37Wav0)*\\n__________________________\\n\\n***The Age of Monsters*** *(2028)*\\n\\n*Setting: Various places, 1963*\\n\\nIn our final story, we rejoin **Eve**, **Lester Talbot**, and **Jacob Van Helsing** twenty-five years after we first met them.\\n\\nThe year is 1963. At home, America is still reeling from the horror of **President John F. Kennedy**'s assassination, which has provoked a fresh wave of social unrest as rumors spread of international conspiracies. Abroad, the Cold War with the Soviet Union rages on as American soldiers in South Vietnam brace for a looming skirmish with Communist forces. After more than two decades of adventure, Eve\\u2014who doesn't age\\u2014is still just as youthful as she was in 1938, but Lester and Jacob are both showing their age, and both men are contemplating retirement. As the 20th century rolls forward, monsters are becoming progressively rare, to the point that Eve and Lester wonder if they're the last of a dying breed. And while an aging Jacob still feels an obligation to uphold the legacy of his grandfather **Abraham Van Helsing**, he knows that there is no need for monster hunters in a world without monsters.\\n\\nBut after twenty-five years of searching, the trio *still* haven't been able to find **Dr. Hans Niemann**. And although the years have been hard on Jacob and Lester, they know that they won't be able to rest until they finally bring the sinister ex-Nazi to justice.\\n\\nBut all of that changes when they stumble upon a stolen KGB dossier.\\n\\nWhile trying to bust a ring of vampires in New Orleans, Eve accidentally comes into possession of a dossier that one of their members stole from a KGB spy hiding out in America. The file contains detailed information about the activities of **Directorate M**, a secret KGB task force that was assembled in the 1940s to research and weaponize vampire DNA. As she learns, the leader of the group was determined to track down a certain vampire living in a remote village in Romania, believing that his bloodline held special powers. But when Jacob and Lester read over the dossier with her, they soon learn that the Romanian vampire (a man called \\\"**Vladislav**\\\", or just \\\"**Vlad**\\\") was believed to be the biological son of **Dracula** himself! Not only that, Vladislav has been missing since 1948, when he escaped from Directorate M's headquarters in Moscow and fled Russia. And while the KGB never found him, they believe that he fled across the Atlantic sometime in the 1950s.\\n\\nThe son of Dracula is still alive, and he may be hiding in America! As soon as Jacob realizes this, he knows that he has to find Vlad and kill him, since it's the only way to finish what his grandfather started. Armed with a grainy photo of Vlad contained in the dossier, Jacob begins pressing his contacts in the underworld for information about the fugitive vampire. But unbeknownst to him, he and Vlad have a common enemy: Hans Niemann.\\n\\nFifteen years ago, Niemann murdered Vlad's mother **Marieta** after ordering the Red Army to raze his village to the ground. On that horrible day, the doctor narrowly slipped through Vlad's fingers when he tried to take his revenge, and he defected to the United States shortly thereafter. Ever since, Vlad has been determined to track him down and hold him accountable for his crimes\\u2014but Niemann is still just as elusive as ever. So for fifteen long years, Vlad has lived underground in America, making odd money as a freelance spy and mercenary as he searches for clues on the Niemann's whereabouts.\\n\\nWhen our story begins, Vlad is living a quiet life in Miami under a long succession of aliases, like \\\"**Victor Whitby**\\\", \\\"**Michael Alucard**\\\", and \\\"**Vladislav Sear\\u0103**\\\". There, as he walks into a seaside bar for a clandestine meeting with the Jamaican-born sailor **Oliver \\\"Twisty\\\" O'Rear**, he finally stumbles upon a clue that might lead him to Niemann. It seems that Twisty is the sole survivor of a submarine voyage to the deep Pacific ocean, where Niemann captained his vessel. While he hasn't seen Niemann since that fateful voyage, he has long suspected that the doctor's mind was affected by an encounter with a **psychic alien being** near the Marianas Trench. Since that day, he has heard rumors that the doctor has gone rogue and fled to the Caribbean, and he believes that he may be planning a new experiment.\\n\\nThough nobody knows *exactly* where Niemann has fled, Twisty tells Vlad that one of his recent voyages in the Caribbean took him near an infamous island known as \\\"**Isla de los Perdidos**\\\", or \\\"**The Isle of the Lost**\\\". While passing by Isla de los Perdidos, the entire crew suffered from a series of strange visions and bizarre nightmares, which left them so shaken that they vowed never to return to the island again. But while the rest of the crew dismissed the experience as merely \\\"bad vibes\\\", Twisty recognized it for what it truly was. He experienced similar nightmares and visions during his ill-fated voyage with the crew of the **USS** ***Ammonite***, when he and Niemann had their minds psychically invaded by **the Creature**. Further, he remembers that Niemann managed to force his way into the Creature's downed spacecraft\\u2014which was packed with alien embryos. Though it's only a hunch, he believes that Niemann might be hiding on Isla de los Perdidos, and he may have found some way to harness the Creature's psychic abilities.\\n\\nBut as Vlad tries to leave the bar, he's ambushed by a small gang of armed men dressed in civilian clothes, who pull him into an unmarked van and drive him away. Unbeknownst to the armed men, Jacob is watching them from a nearby street corner, with Eve and Lester by his side. Furious at seeing their target captured by someone else, they resolve to track down the van.\\n\\nInside the unmarked van, Vlad learns that his assailants are undercover CIA operatives. It seems that the CIA has *also* learned about the mysterious Directorate M, and they recognize Vlad as a high-priority KGB target who escaped from Moscow Centre fifteen years previously. Suspecting him of being a Soviet agent, they plan to take him back to their nearest base to interrogate him. Vlad futilely protests that it's all a misunderstanding, and the KGB are his enemies\\u2014but the agents refuse to listen.\\n\\nSuddenly, the van is driven off the road as Lester\\u2014assuming his lupine form\\u2014charges the vehicle from the side and manages to flip it over. As Vlad struggles with the agents in the back seat, Eve takes aim with a crossbow and dispatches the agent in the driver's seat, but she loses track of Vlad as he leaps from the van and runs into the distance. But as Vlad attempts to flee the scene, he runs right into Jacob.\\n\\nA tense standoff ensues as Vlad and Jacob\\u2014the son of Dracula and the grandson of Abraham Van Helsing\\u2014stare each other down, and Jacob draws his gun. Despite Jacob's advancing age, Vlad recognizes him as a professional monster hunter, and he knows that he's been trained to kill vampires. \\n\\n\\\"*Shoot me if you can, old man,\\\"* Vlad snarls. *\\\"But I promise you, I've only got a quarrel with one mortal man:* ***Hans Niemann****.\\\"*\\n\\nAs soon as Jacob hears Niemann's name spoken aloud, he falters and lowers his gun.\\n\\n*\\\"Few people know that man's name, boy,\\\"* Jacob says. *\\\"Most people don't speak it lightly.\\\"*\\n\\n*\\\"I'm no boy,\\\"* Vlad says defiantly. *\\\"I've been chasing that bastard for 15 years. And I'd chase him for another century, if I had to.\\\"*\\n\\nCurious, Jacob asks Vlad for his name.\\n\\n*\\\"My mother named me Vladislav,\\\"* he says. *\\\"Most people call me Vlad. A long time ago, I suppose, that was my father's name too. Before he bore another.\\\"*\\n\\n*\\\"Dracula...\\\"* Jacob breathes.\\n\\nVlad nods.\\n\\n*\\\"But I'm not my father, friend,\\\"* he says.\\n\\n*\\\"Thank god for that...\\\"* Jacob says.\\n\\nAs Eve and Lester catch up with Jacob, Vlad manages to talk them down, and he tells them about the information that he procured from Twisty. Armed with that information, he believes that he can finally find Niemann at Isla de los Perdidos. And if he were to team up with the three of them, they would likely be more than a match for Niemann. Although Jacob has his doubts about whether Vlad can be trusted, Eve and Lester urge Jacob to let him join them.\\n\\n*\\\"I know what it's like to be ashamed of your parents,\\\"* Eve says.\\n\\n*\\\"And I know that nobody asks to be born a monster,\\\"* Lester says. *\\\"If he's an enemy of Niemann, he's a friend of mine.\\\"*\\n\\nSufficiently convinced, Jacob agrees to let Vlad join their group, and Vlad tells them his theory about the island base on Isla de los Perdidos.\\n\\nBut unbeknownst to our heroes, strange things are brewing in the Caribbean.\\n\\nAs a US Navy ship makes its way through the warm waters of the Caribbean, it's suddenly attacked by a massive horde of **icthyoids**\\u2014the same ocean-dwelling creatures whom the crew of the *Ammonite* battled in 1958. As the scaly creatures swarm the decks of the ship and assail the crew, they eventually manage to force their way into the hold of the vessel, where they drag out a massive hoard of **nuclear warheads** enclosed in lead boxes. With the deadly weapons in hand, they drag them off toward a distant island refuge on Isla de los Perdidos, where Dr. Hans Niemann is waiting to greet them in his lab.\\n\\nFive years after the ill-fated voyage of the USS *Ammonite*, Niemann has gone rogue once again, and he now lives alone in a remote laboratory in the Caribbean. After selling his talents to Nazi Germany, the Russian KGB, and the American CIA (in that order), he's now loyal only to himself. And after years of experimenting with monster DNA, he has lofty plans for the world.\\n\\nHaving amassed a massive cache of nuclear weapons with the help of his loyal icthyoids, he now plans to launch them at both the United States and the Soviet Union, hoping that the attack will result in a nuclear exchange between the rival superpowers\\u2014destroying most of human civilization in the process. After his time spent studying the long-gone Age of Monsters, he now believes that he can return Earth's fabled monsters to dominance by stopping the forward thrust of scientific progress. Despite being a man of science, Niemann has been overcome by his reverence for the long-gone Age of Monsters, and he believes that the ascendancy of the Age of Reason has driven the world's monsters into the shadows, turning the once-mighty creatures into a dying breed. But by triggering a fiery nuclear apocalypse, he believes that he can bring about a *new* Age of Monsters.\\n\\nIn the center of his island base, Niemann maintains an enormous domed glass enclosure, where a grotesque tentacled monster writhes in fitful slumber. It's the **alien embryo** that Niemann stole from **the Creature**'s drowned spaceship in 1958\\u2014but after five years, the embryo has grown to gigantic size, and it's now a truly formidable beast on par with the Creature that spawned it. With its powerful psychic abilities, the Creature now maintains an iron grip over its army of ichthyoids, and it can broadcast psychic messages and images for hundreds of miles.\\n\\n*\\\"It's time, my pet,\\\"* Niemann says, stroking the Creature's tentacle. *\\\"The future awaits!\\\"*\\n\\nIn another part of the base, we see that he's also assembled a lavish television studio complete with its own video feed, and he's prepared to broadcast a television signal. But with the help of the Creature's psychic powers, he can ensure that the signal reaches every television screen in the United States.\\n\\nAs the cameras roll, and the Creature awakes, Niemann's signal travels across the Atlantic Ocean. All across America\\u2014in countless bars, living rooms, and department stores\\u2014television screens hiss with static as the Creature psychically hijacks their signal, and Niemann's grainy broadcast comes through. In a grandiose speech, the mad doctor announces that twin barrages of nuclear missiles will strike the United States and Russia in exactly three days, heralding the end of human civilization. As he says, he has chosen to give the nations of the world three days to prepare for Armageddon, and he promises that the strong and the ruthless may yet survive to witness the rebirth of the Age of Monsters.\\n\\nAs the broadcast ends, he raises a wineglass and offers a toast to the world.\\n\\n*\\\"A toast\\u2014to a new world of Gods and Monsters!\\\"* he cries.\\n\\nBy lucky happenstance, Jacob, Lester, Eve and Vlad are sitting in a seaside dive bar in Florida when the message goes out, and they manage to catch Niemann's broadcast on a television above the bar. All four of them stare at the television in horror as they realize what Niemann has been planning while on the run, and they realize that they only have days to stop him.\\n\\nThe good news? Vlad tells them that he might know how to find him.\\n\\n*\\\"I met somebody,\\\"* Vlad says. *\\\"I think he might be able to help us.\\\"*\\n\\nTogether, the quartet tracks down Twisty again, and he tells them all exactly what he told Vlad: he has seen strange psychic visions near Isla de los Perdidos in the Caribbean, and he believes that they might be caused by the alien embryo that Niemann stole from a drowned alien spaceship in the Pacific five years ago. If his hunch is right, he believes that Niemann may also be on Isla de los Perdidos. Now that he's seen Niemann's broadcast, Twisty realizes how truly insane the doctor has become, and he realizes that he must help the others stop him\\u2014by any means necessary.\\n\\nAs luck would have it, Twisty has a fishing trawler that's *just* fast enough to make it to Isla de los Perdidos within three days, and he offers to take the others there.\\n\\n*\\\"We're in your debt, friend,\\\"* Jacob says. *\\\"If you can get us to that island, we'll take care of the doctor. We promise you that.\\\"*\\n\\nAs night falls, Twisty raises anchor, and the four heroes set sail for the Caribbean\\u2014knowing full well that they may never return.\\n\\nOver the course of their long journey, Jacob and Lester reflect on all that they've seen and done since their battle with Dracula in 1923, and Eve and Vlad bond and commiserate over their lives of hardship and misfortune. As a duplicate of **Victor Frankenstein**'s famous creature \\\"**Adam**\\\", Eve has long felt burdened by the momentous legacy of the legendary doctor; although she values her friendship with Lester, she worries that he only values *her* because she's his last living reminder of his old friend Adam\\u2014someone whom Eve has never even known.\\n\\n*\\\"Lester would die for me, and I would die for him,\\\"* she says. *\\\"But sometimes when he looks at me, he only sees Adam. I never wanted to inherit that man's legacy. And even if I did, I know I could never be the hero that he was.\\\"*\\n\\n*\\\"I know how that feels, Eve,\\\"* Vlad says. *\\\"If it were up to me, my father's bloodline would have died with him. But it wasn't up to me. I could have lived out my days in a quiet village sheltered by the mountains. But instead, I'm here, riding into the unknown on a suicide mission. And all because of a father who I never knew.\\\"*\\n\\n*\\\"You're not your father, Vlad,\\\"* Eve says tenderly. *\\\"Trust me. I know bad men when I see them.\\\"*\\n\\nAs the ship sails into the night, Eve and Vlad embrace, and they fall asleep in each other's arms.\\n\\nTwo days later, the ship approaches Isla de los Perdidos on a moonlit night. As Niemann's laboratory comes into view, the quartet prepares to storm his fortress. Eve readies her crossbow, Lester bares his teeth and claws, Jacob loads a shotgun, and Vlad brandishes a pair of knives. Before the boat reaches the island, Jacob presents Vlad with a gift: a massive iron broadsword, polished to a fine sheen.\\n\\n*\\\"Five hundred years ago, this sword belonged to* ***Matthias Corvinus****\\u2014the first man ever to defeat your father in battle. When I faced your father with my friends by my side, it was wielded by a man called Adam\\u2014the finest man I ever knew. If anyone should wield it now, it's you.\\\"*\\n\\nVlad picks up the sword and feels its great heft. Somewhat skeptical, he looks down at it.\\n\\n*\\\"You want me to wield the sword that cut down my father?\\\"* Vlad asks.\\n\\n*\\\"If you would have it, it's yours,\\\"* Jacob says. *\\\"For five hundred years, it's been held by those that fought evil. You're a good man, Vlad\\u2014and you're worthy of its legacy. Never let anyone tell you different. Whatever sins your father committed, they were his sins alone.\\\"*\\n\\nWith a heavy heart, Vlad accepts the sword, treating it as a gesture of forgiveness. Although Jacob may not realize it, it's exactly the gift that he needs; for 15 years, Vlad has wrestled with his feelings about his true parentage, and he longs to come to terms with the bloodline that he unwillingly inherited. As he accepts the sword, Vlad realizes that Dracula's legacy doesn't need to define him\\u2014and in Jacob's eyes, he's worthy of a far greater legacy.\\n\\nJust then, all hell breaks loose as the boat is suddenly attack by a massive school of ichthyoids, which clamber up the railing and swarm the decks. Twisty struggles to keep the boat level, but it comes to a halt as one ichthyoid manages to dismantle the propellor.\\n\\n*\\\"The lifeboat!\\\"* Twisty yells. *\\\"Get to the lifeboat!\\\"*\\n\\nAs a desperate battle ensues, the quartet try to fight their way to the lifeboat with Twisty leading the way. Eve nails ichthyoids with her crossbow, Vlad cuts them down with his sword, Lester tears them to shreds with his claws, and Jacob holds them off with his shotgun. They fight bravely, but they're soon overwhelmed, and Jacob finds himself backed into a corner by the rampaging monsters. Despite his ancestral Van Helsing training, Jacob's advanced age is showing; try as he might, he's just not as fast as he was in his younger days.\\n\\nLester tries to rush to his friend's aid, but Jacob orders him to broad the lifeboat and continue to the island.\\n\\n*\\\"Just go!\\\"* Jacob cries. *\\\"Don't worry about me! I'll hold them off!\\\"*\\n\\nObeying his orders, Twisty, Eve, Vlad and Lester board the lifeboat, and Twisty lowers the small craft into the water. On the boat, Jacob reloads his shotgun and holds off wave after wave of the aquatic beasts\\u2014but finally, they overwhelm him. Holding back tears, Lester whispers a silent \\\"Goodbye\\\" to his old friend, and can only watch helplessly as the ichthyoids descend upon him. Moments later, he dies.\\n\\nWith that, Lester realizes that he's now the last survivor of the battle with Dracula in 1923. But another battle is close at hand.\\n\\nTwisty guns the lifeboat's motor, and the tiny craft tears through the ocean, finally coming to a stop as it reaches the sandy shore of Isla de los Perdidos. Eve urges Twisty to stay with the boat until they return, and promises that they *will* return.\\n\\nJust ahead, Niemann's laboratory looms above the trio at the top of a hill, and Niemann looks down at them from a high window. As he watches the trio approach, he prepares a \\\"welcoming party\\\" to greet them.\\n\\nIn the lower levels of Niemann's laboratory, we see a series of caverns, which are filled with rows and rows of cages. In each one, there's a live human test subject\\u2014and all of them are hideously mutated. Over the last five years, the ichthyoids haven't *just* been bringing Niemann stolen nuclear warheads; they've also been bringing him captured sailors\\u2014and he's been experimenting on all of them.\\n\\nSome of the captive sailors are covered with hair, and they sport fearsome fangs and claws\\u2014having been injected with **werewolf** DNA. Others sport leathery *bat wings* and grotesque bat-like faces, and they regularly suckle at bottles of blood; Niemann has also been experimenting with vampire DNA, and he's transformed some of his captives into animalistic human-bat hybrids.\\n\\nWith the push of a button, Niemann opens the doors of his cages, and he orders his mutated captives to defend his island. Obeying without question, they scamper through the caverns and bound off to intercept our heroes.\\n\\nAs Lester, Eve and Vlad charge up the hill with weapons drawn, the monsters descend on them. A tense three-way battle ensues: the winged vampires attack them from the sky, the werewolves attack them from the land, and the ichthyoids attack them from the sea. Shooting and stabbing every step of the way, the trio successfully manage to fight their way into the caverns, where they make their way into the interior of Niemann's lab. But when they do, Niemann reveals another trick up his sleeve.\\n\\n*\\\"I've had five years to prepare for this encounter, friends. You've learned much since I last met you\\u2014but so have I!\\\"*\\n\\nWith that, the Creature sends out a wave of psychic energy. The trio collapse and fall to the ground, writhing in agony. When they open their eyes, each of them discovers that their surroundings have radically changed:\\n\\nLester finds himself back in the trenches of the Western Front in 1918, shelled by German troops on the edge of a great forest. Eve finds herself strapped to a metal slab in the laboratory of **Ingolstadt University**, surrounded by medical instruments. Vlad finds himself trapped in the dungeons of **Castle Dracula** in Romania. All three of them find themselves alone, with their companions nowhere in sight.\\n\\nAlmost immediately, the trio realize what's happening: the Creature has used its psychic abilities to trap them within their own minds, imprisoning them in hallucinatory constructs of their deepest nightmares. Each of them is merely seeing an illusion\\u2014but the illusions are so eerily lifelike that they're impossible to escape.\\n\\nSoon, Lester tries to flee the German artillery lines by running into the forest, but he soon finds himself pursued by a mysterious snarling beast. As the beast gains on him, he realizes that it's a werewolf\\u2014but a larger, meaner, and more aggressive werewolf than any that he's ever encountered before. As the creature pounces on him and roars for his blood, he finally recognizes it: it's his grandfather **Lawrence Talbot**, the first man ever to inherit the title of \\\"**The Wolf Man**\\\".\\n\\n*\\\"You're no kin of mine, boy,\\\"* Talbot snarls. *\\\"You could have been great. But you ran from your instincts, and you let lesser men tame you! You were never human. Just a beast dressed in a man's skin. But I'll teach you how a true beast rules the wild forest!\\\"*\\n\\nWhile Lester fights for his life in the forest, Eve screams in terror as a familiar figure enters the laboratory: **Professor Septimus Pretorius**\\u2014the man who created her! As Pretorius looms over her and prepares to dissect her alive, Eve futilely struggles against her restraints.\\n\\n*\\\"You've disappointed me, my dear,\\\"* Pretorius whispers. *\\\"I loved you enough to give you the gift of life, and you repaid me by throwing it away! You thought you could survive beyond these stone walls\\u2014but the outside world has no place for you, and it never did. You spurned your only purpose in life. But perhaps my next creation will prove herself more sensible...\\\"*\\n\\nAs Eve screams and curses at Pretorius, Vlad tries to find his way through the dark dungeons of Castle Dracula. Suddenly, the torches and candelabras light up as a familiar figure strides down the stone staircase: it's Dracula himself\\u2014alive and well.\\n\\n*\\\"Welcome home, son,\\\"* the Prince says, smiling coldly. *\\\"I always knew you would return, some day. But my throne is not yours to inherit. My reign will never end. Death holds no sway over the Son of the Beast. And an immortal needs no heir!\\\"*\\n\\nDracula draws his blade and moves to behead his son, and Vlad scrambles to defend himself.\\n\\nOne by one, though, each of the trio gradually comes to their senses as they remind themselves that the Creature's illusions aren't real\\u2014and with enough willpower, they can bend them to their will.\\n\\nFirst, Lester manages to assume his lupine form as he runs from his grandfather. As he bares his claws and fangs, a brutal fight ensues between the two werewolves, and Lester eventually manages to blind Lawrence by slashing his eyes with his claws. As Lawrence blindly charges at him, he tackles him from behind and tears open his throat with his teeth.\\n\\n*\\\"You're not my grandfather!\\\"* Lester defiantly roars. *\\\"Lawrence Talbot was a good man, and he proved it to everyone who ever doubted that. Everything I am, I owe to him. No nightmare can ever change that!\\\"* \\n\\nNext, Eve manages to summon her superhuman strength, allowing her to break free from her restraints and disarm Pretorius. As the Professor tries to flee, she chases him down and throws him against a bank of electrical equipment, electrocuting him instantly.\\n\\n*\\\"You're not God, Septimus!\\\"* she yells. *\\\"And even if you were, I'd still kill you where you stood!\\\"*\\n\\nFinally, Vlad manages to draw Matthias Corvinus' sword, and he taunts his father by brandishing the blade that once defeated him. In an epic swordfight, he manages to stake him through the heart, and he uses a torch to set his robes on fire, immolating him.\\n\\n*\\\"Death comes for everyone, father,\\\"* Vlad says. *\\\"Your reign ended long ago. And you're nothing but a bad dream!\\\"*\\n\\nAs all three of our heroes overcome their greatest fears, the illusion gradually fades, and they finally wake up on the floor of Niemann's fortress. As they do, they realize that an alarm is blaring. It's a launch signal!\\n\\nRealizing that the warheads are about to fire, Lester makes a quick judgment call.\\n\\n*\\\"Find Niemann!\\\"* he orders Eve and Vlad. *\\\"Take care of him, and take care of that creature! I'll take care of the warheads!\\\"*\\n\\nEve and Vlad beg him not to go off alone, but Lester insists that he'll be fine. As the trio splits up, the siren continues to wail.\\n\\nAt one end of the facility, Lester makes his way to a dark bunker, where a missile launchpad is primed and ready. At the other end of the facility, Eve and Vlad make their way to the Creature's glass enclosure.\\n\\nThe Creature lashes out with its tentacles and tries to hit Eve and Vlad with a blast of psychic energy, but they manage to resist it. Eve hits the Creature with a well-placed crossbow bolt to the brain, and the life begins to ebb from its massive body.\\n\\nMeanwhile, Lester reveals a pack slung over his shoulder, which is packed with military-grade dynamite. He approaches the warhead on the launchpad and rips out its guidance chip, then moves to plant the dynamite at its base. Moments after he triggers the timer on the explosives, a horde of vampires and werewolves charges into the bunker. He makes his stand, prepared to defend the explosives until they go off.\\n\\nAs the dynamite ticks, Eve and Vlad finally confront Niemann in his private study. He visibly panics as he draws a pistol, instantly recognizing both of them. They advance on him, their weapons drawn.\\n\\n*\\\"I remember you,\\\"* he snarls. *\\\"But you mean nothing to me! One of you is a failed experiment, and one of you is the bastard spawn of a dead prince. You can't stop what's coming!\\\"*\\n\\n*\\\"I've never lost any sleep, worrying about the future,\\\"* Vlad says. *\\\"The past, though...\\\"*\\n\\n*\\\"We remember what you did, Niemann,\\\"* Eve says. *\\\"It took twenty-five years. But now, you're going to pay!\\\"*\\n\\nIn the bunker, an outnumbered Lester fights for his life against the rampaging vampires and werewolves. In the end, he fights them all off\\u2014but he's mortally wounded in the battle, and the timer on the dynamite is damaged. To destroy the warhead, he realizes that he has no other choice but to detonate the dynamite manually. He knows that the blast will kill him, but he realizes that it doesn't matter; even if he could escape the blast, he knows that he won't survive his wounds.\\n\\nAs blood gushes from his multiple open wounds, he crawls to a nearby intercom and presses his lips to the speaker. When he speaks, his voice echoes through the entire fortress.\\n\\n*\\\"Vlad... Eve...\\\"* he croaks. *\\\"You...you have to leave... You have to get out... Leave me... The lifeboat...\\\"*\\n\\nAs soon as Vlad and Eve hear his voice, they know that he's near death, and the explosives will soon go off. Before they make their escape, Eve shoots Niemann through the chest with her crossbow, spearing him to the wall; Vlad draws his dagger and slices open his cheeks, leaving blood pouring down his chest. Choosing not to deal a fatal blow, they leave him behind and run to the shore, where Twisty is waiting with the lifeboat. They give the fortress a final wistful look before jumping into the lifeboat and tearing off into the distance.\\n\\nBack in the bunker, a dying Lester pulls a crumpled photograph from his pocket as he prepares to light the fuse on the dynamite. It's a black and white photo of his grandfather Lawrence Talbot standing in front of his cabin in Canada with Adam by his side.\\n\\n*\\\"I hope I made you proud, old man...\\\"* he whispers.\\n\\nIn his study, Niemann\\u2014still impaled to the wall\\u2014struggles to free himself. But then the dynamite goes off, detonating the warheads along with it. Lester and Niemann are consumed in the resulting explosion, and Vlad and Eve narrowly outrun the blast as their lifeboat zips away. A massive mushroom cloud erupts behind them, destroying most of Isla de los Perdidos in a ball of flame.\\n\\nEve sheds a tear as she realizes that Lester is gone, and Vlad embraces her.\\n\\n*\\\"He got to die for something, in the end,\\\"* Eve says. *\\\"That's more than most people get.\\\"*\\n\\nVlad wipes a tear away from Eve's face.\\n\\n*\\\"Two good men died today,\\\"* he says. *\\\"They'll be mourned, and they'll be remembered. But never forget: this is what they wanted. The battle's over now, Eve. Now comes life.\\\"*\\n\\nThe two share a kiss as they ride into the moonlight.\\n\\nIn the final scene, Vlad and Eve relax on a beach somewhere in the Caribbean. It's a warm Summer night, and moon is full. With Niemann finally gone, the two lovers have settled down to enjoy a peaceful retirement. In their ramshackle little house, we see a montage of photos depicting Eve's many adventures throughout the 20th century with Jacob and Lester; we see them battling **giant ants** in the American Southwest, squaring off with voodoo cults in the Deep South, holding the line against **mole people** in the Midwest, and even battling the infamous **Fifty-Foot Woman** in New England. Eve will always have plenty of stories to tell\\u2014but after a lifetime of adventure, she's earned a rest in paradise.\\n\\nEve and Vlad steal a final glance at the sea before returning home for the night. Somewhere in the distance, strange lights drift over the rolling waves, and a strange metal craft can be seen in the distance. They don't see it, but it's clearly a **flying saucer**.\\n\\nThe Son of Dracula and the Daughter of Frankenstein have saved the world from evil\\u2014but it looks like their adventures may not be over quite yet...\\n______________\\n***THE END***\\n______________\\n***The Age of Monsters:*** In 1963, Vlad's search for ex-Nazi scientist Dr. Hans Niemann leads him to cross paths with Eve, who is still traveling the world with an aging Jacob Van Helsing and Lester Talbot. As Vlad, Eve, Jacob and Lester unite to finally bring Niemann to justice, they discover Niemann's plot to use a psychic alien's brain to unleash nuclear armageddon with the help of an army of vampires, werewolves and ichthyoids. As they journey to the Caribbean for a final showdown with Niemann on his island base, Jacob and Lester ultimately sacrifice their lives to stop the doctor's plot, but Eve and Vlad defeat him together. In the end, Eve and Vlad become lovers, and they settle down together in a remote Caribbean island to enjoy a peaceful retirement.\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cb1x1u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563462194.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562712901.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EPart 1 is \\u003Ca href=\\\"https://old.reddit.com/r/fixingmovies/comments/ak8qt1/my_take_on_fixing_the_dark_universe/\\\"\\u003EHERE\\u003C/a\\u003E, Part 2 is \\u003Ca href=\\\"https://old.reddit.com/r/fixingmovies/comments/bomg7i/my_take_on_fixing_the_dark_universe_part_2/\\\"\\u003EHERE\\u003C/a\\u003E, and Part 3 is \\u003Ca href=\\\"https://old.reddit.com/r/fixingmovies/comments/brvelz/my_take_on_fixing_the_dark_universe_part_3/\\\"\\u003EHERE\\u003C/a\\u003E.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EAnd that\\u0026#39;s a wrap! This has been fun, but it looks like this reimagining has run its course. Thanks to everybody who\\u0026#39;s followed along up to this point! I appreciate all of the comments.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=Redja37Wav0\\\"\\u003EAnd now, the conclusion...\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Age of Monsters\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003E(2028)\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESetting: Various places, 1963\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our final story, we rejoin \\u003Cstrong\\u003EEve\\u003C/strong\\u003E, \\u003Cstrong\\u003ELester Talbot\\u003C/strong\\u003E, and \\u003Cstrong\\u003EJacob Van Helsing\\u003C/strong\\u003E twenty-five years after we first met them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe year is 1963. At home, America is still reeling from the horror of \\u003Cstrong\\u003EPresident John F. Kennedy\\u003C/strong\\u003E\\u0026#39;s assassination, which has provoked a fresh wave of social unrest as rumors spread of international conspiracies. Abroad, the Cold War with the Soviet Union rages on as American soldiers in South Vietnam brace for a looming skirmish with Communist forces. After more than two decades of adventure, Eve\\u2014who doesn\\u0026#39;t age\\u2014is still just as youthful as she was in 1938, but Lester and Jacob are both showing their age, and both men are contemplating retirement. As the 20th century rolls forward, monsters are becoming progressively rare, to the point that Eve and Lester wonder if they\\u0026#39;re the last of a dying breed. And while an aging Jacob still feels an obligation to uphold the legacy of his grandfather \\u003Cstrong\\u003EAbraham Van Helsing\\u003C/strong\\u003E, he knows that there is no need for monster hunters in a world without monsters.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut after twenty-five years of searching, the trio \\u003Cem\\u003Estill\\u003C/em\\u003E haven\\u0026#39;t been able to find \\u003Cstrong\\u003EDr. Hans Niemann\\u003C/strong\\u003E. And although the years have been hard on Jacob and Lester, they know that they won\\u0026#39;t be able to rest until they finally bring the sinister ex-Nazi to justice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut all of that changes when they stumble upon a stolen KGB dossier.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile trying to bust a ring of vampires in New Orleans, Eve accidentally comes into possession of a dossier that one of their members stole from a KGB spy hiding out in America. The file contains detailed information about the activities of \\u003Cstrong\\u003EDirectorate M\\u003C/strong\\u003E, a secret KGB task force that was assembled in the 1940s to research and weaponize vampire DNA. As she learns, the leader of the group was determined to track down a certain vampire living in a remote village in Romania, believing that his bloodline held special powers. But when Jacob and Lester read over the dossier with her, they soon learn that the Romanian vampire (a man called \\u0026quot;\\u003Cstrong\\u003EVladislav\\u003C/strong\\u003E\\u0026quot;, or just \\u0026quot;\\u003Cstrong\\u003EVlad\\u003C/strong\\u003E\\u0026quot;) was believed to be the biological son of \\u003Cstrong\\u003EDracula\\u003C/strong\\u003E himself! Not only that, Vladislav has been missing since 1948, when he escaped from Directorate M\\u0026#39;s headquarters in Moscow and fled Russia. And while the KGB never found him, they believe that he fled across the Atlantic sometime in the 1950s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe son of Dracula is still alive, and he may be hiding in America! As soon as Jacob realizes this, he knows that he has to find Vlad and kill him, since it\\u0026#39;s the only way to finish what his grandfather started. Armed with a grainy photo of Vlad contained in the dossier, Jacob begins pressing his contacts in the underworld for information about the fugitive vampire. But unbeknownst to him, he and Vlad have a common enemy: Hans Niemann.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFifteen years ago, Niemann murdered Vlad\\u0026#39;s mother \\u003Cstrong\\u003EMarieta\\u003C/strong\\u003E after ordering the Red Army to raze his village to the ground. On that horrible day, the doctor narrowly slipped through Vlad\\u0026#39;s fingers when he tried to take his revenge, and he defected to the United States shortly thereafter. Ever since, Vlad has been determined to track him down and hold him accountable for his crimes\\u2014but Niemann is still just as elusive as ever. So for fifteen long years, Vlad has lived underground in America, making odd money as a freelance spy and mercenary as he searches for clues on the Niemann\\u0026#39;s whereabouts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen our story begins, Vlad is living a quiet life in Miami under a long succession of aliases, like \\u0026quot;\\u003Cstrong\\u003EVictor Whitby\\u003C/strong\\u003E\\u0026quot;, \\u0026quot;\\u003Cstrong\\u003EMichael Alucard\\u003C/strong\\u003E\\u0026quot;, and \\u0026quot;\\u003Cstrong\\u003EVladislav Sear\\u0103\\u003C/strong\\u003E\\u0026quot;. There, as he walks into a seaside bar for a clandestine meeting with the Jamaican-born sailor \\u003Cstrong\\u003EOliver \\u0026quot;Twisty\\u0026quot; O\\u0026#39;Rear\\u003C/strong\\u003E, he finally stumbles upon a clue that might lead him to Niemann. It seems that Twisty is the sole survivor of a submarine voyage to the deep Pacific ocean, where Niemann captained his vessel. While he hasn\\u0026#39;t seen Niemann since that fateful voyage, he has long suspected that the doctor\\u0026#39;s mind was affected by an encounter with a \\u003Cstrong\\u003Epsychic alien being\\u003C/strong\\u003E near the Marianas Trench. Since that day, he has heard rumors that the doctor has gone rogue and fled to the Caribbean, and he believes that he may be planning a new experiment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThough nobody knows \\u003Cem\\u003Eexactly\\u003C/em\\u003E where Niemann has fled, Twisty tells Vlad that one of his recent voyages in the Caribbean took him near an infamous island known as \\u0026quot;\\u003Cstrong\\u003EIsla de los Perdidos\\u003C/strong\\u003E\\u0026quot;, or \\u0026quot;\\u003Cstrong\\u003EThe Isle of the Lost\\u003C/strong\\u003E\\u0026quot;. While passing by Isla de los Perdidos, the entire crew suffered from a series of strange visions and bizarre nightmares, which left them so shaken that they vowed never to return to the island again. But while the rest of the crew dismissed the experience as merely \\u0026quot;bad vibes\\u0026quot;, Twisty recognized it for what it truly was. He experienced similar nightmares and visions during his ill-fated voyage with the crew of the \\u003Cstrong\\u003EUSS\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EAmmonite\\u003C/em\\u003E\\u003C/strong\\u003E, when he and Niemann had their minds psychically invaded by \\u003Cstrong\\u003Ethe Creature\\u003C/strong\\u003E. Further, he remembers that Niemann managed to force his way into the Creature\\u0026#39;s downed spacecraft\\u2014which was packed with alien embryos. Though it\\u0026#39;s only a hunch, he believes that Niemann might be hiding on Isla de los Perdidos, and he may have found some way to harness the Creature\\u0026#39;s psychic abilities.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut as Vlad tries to leave the bar, he\\u0026#39;s ambushed by a small gang of armed men dressed in civilian clothes, who pull him into an unmarked van and drive him away. Unbeknownst to the armed men, Jacob is watching them from a nearby street corner, with Eve and Lester by his side. Furious at seeing their target captured by someone else, they resolve to track down the van.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInside the unmarked van, Vlad learns that his assailants are undercover CIA operatives. It seems that the CIA has \\u003Cem\\u003Ealso\\u003C/em\\u003E learned about the mysterious Directorate M, and they recognize Vlad as a high-priority KGB target who escaped from Moscow Centre fifteen years previously. Suspecting him of being a Soviet agent, they plan to take him back to their nearest base to interrogate him. Vlad futilely protests that it\\u0026#39;s all a misunderstanding, and the KGB are his enemies\\u2014but the agents refuse to listen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESuddenly, the van is driven off the road as Lester\\u2014assuming his lupine form\\u2014charges the vehicle from the side and manages to flip it over. As Vlad struggles with the agents in the back seat, Eve takes aim with a crossbow and dispatches the agent in the driver\\u0026#39;s seat, but she loses track of Vlad as he leaps from the van and runs into the distance. But as Vlad attempts to flee the scene, he runs right into Jacob.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA tense standoff ensues as Vlad and Jacob\\u2014the son of Dracula and the grandson of Abraham Van Helsing\\u2014stare each other down, and Jacob draws his gun. Despite Jacob\\u0026#39;s advancing age, Vlad recognizes him as a professional monster hunter, and he knows that he\\u0026#39;s been trained to kill vampires. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Cem\\u003EShoot me if you can, old man,\\u0026quot;\\u003C/em\\u003E Vlad snarls. \\u003Cem\\u003E\\u0026quot;But I promise you, I\\u0026#39;ve only got a quarrel with one mortal man:\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EHans Niemann\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs soon as Jacob hears Niemann\\u0026#39;s name spoken aloud, he falters and lowers his gun.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Few people know that man\\u0026#39;s name, boy,\\u0026quot;\\u003C/em\\u003E Jacob says. \\u003Cem\\u003E\\u0026quot;Most people don\\u0026#39;t speak it lightly.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;m no boy,\\u0026quot;\\u003C/em\\u003E Vlad says defiantly. \\u003Cem\\u003E\\u0026quot;I\\u0026#39;ve been chasing that bastard for 15 years. And I\\u0026#39;d chase him for another century, if I had to.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECurious, Jacob asks Vlad for his name.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;My mother named me Vladislav,\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;Most people call me Vlad. A long time ago, I suppose, that was my father\\u0026#39;s name too. Before he bore another.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Dracula...\\u0026quot;\\u003C/em\\u003E Jacob breathes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVlad nods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;But I\\u0026#39;m not my father, friend,\\u0026quot;\\u003C/em\\u003E he says.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Thank god for that...\\u0026quot;\\u003C/em\\u003E Jacob says.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Eve and Lester catch up with Jacob, Vlad manages to talk them down, and he tells them about the information that he procured from Twisty. Armed with that information, he believes that he can finally find Niemann at Isla de los Perdidos. And if he were to team up with the three of them, they would likely be more than a match for Niemann. Although Jacob has his doubts about whether Vlad can be trusted, Eve and Lester urge Jacob to let him join them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I know what it\\u0026#39;s like to be ashamed of your parents,\\u0026quot;\\u003C/em\\u003E Eve says.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;And I know that nobody asks to be born a monster,\\u0026quot;\\u003C/em\\u003E Lester says. \\u003Cem\\u003E\\u0026quot;If he\\u0026#39;s an enemy of Niemann, he\\u0026#39;s a friend of mine.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESufficiently convinced, Jacob agrees to let Vlad join their group, and Vlad tells them his theory about the island base on Isla de los Perdidos.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut unbeknownst to our heroes, strange things are brewing in the Caribbean.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a US Navy ship makes its way through the warm waters of the Caribbean, it\\u0026#39;s suddenly attacked by a massive horde of \\u003Cstrong\\u003Eicthyoids\\u003C/strong\\u003E\\u2014the same ocean-dwelling creatures whom the crew of the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E battled in 1958. As the scaly creatures swarm the decks of the ship and assail the crew, they eventually manage to force their way into the hold of the vessel, where they drag out a massive hoard of \\u003Cstrong\\u003Enuclear warheads\\u003C/strong\\u003E enclosed in lead boxes. With the deadly weapons in hand, they drag them off toward a distant island refuge on Isla de los Perdidos, where Dr. Hans Niemann is waiting to greet them in his lab.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFive years after the ill-fated voyage of the USS \\u003Cem\\u003EAmmonite\\u003C/em\\u003E, Niemann has gone rogue once again, and he now lives alone in a remote laboratory in the Caribbean. After selling his talents to Nazi Germany, the Russian KGB, and the American CIA (in that order), he\\u0026#39;s now loyal only to himself. And after years of experimenting with monster DNA, he has lofty plans for the world.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHaving amassed a massive cache of nuclear weapons with the help of his loyal icthyoids, he now plans to launch them at both the United States and the Soviet Union, hoping that the attack will result in a nuclear exchange between the rival superpowers\\u2014destroying most of human civilization in the process. After his time spent studying the long-gone Age of Monsters, he now believes that he can return Earth\\u0026#39;s fabled monsters to dominance by stopping the forward thrust of scientific progress. Despite being a man of science, Niemann has been overcome by his reverence for the long-gone Age of Monsters, and he believes that the ascendancy of the Age of Reason has driven the world\\u0026#39;s monsters into the shadows, turning the once-mighty creatures into a dying breed. But by triggering a fiery nuclear apocalypse, he believes that he can bring about a \\u003Cem\\u003Enew\\u003C/em\\u003E Age of Monsters.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the center of his island base, Niemann maintains an enormous domed glass enclosure, where a grotesque tentacled monster writhes in fitful slumber. It\\u0026#39;s the \\u003Cstrong\\u003Ealien embryo\\u003C/strong\\u003E that Niemann stole from \\u003Cstrong\\u003Ethe Creature\\u003C/strong\\u003E\\u0026#39;s drowned spaceship in 1958\\u2014but after five years, the embryo has grown to gigantic size, and it\\u0026#39;s now a truly formidable beast on par with the Creature that spawned it. With its powerful psychic abilities, the Creature now maintains an iron grip over its army of ichthyoids, and it can broadcast psychic messages and images for hundreds of miles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;It\\u0026#39;s time, my pet,\\u0026quot;\\u003C/em\\u003E Niemann says, stroking the Creature\\u0026#39;s tentacle. \\u003Cem\\u003E\\u0026quot;The future awaits!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn another part of the base, we see that he\\u0026#39;s also assembled a lavish television studio complete with its own video feed, and he\\u0026#39;s prepared to broadcast a television signal. But with the help of the Creature\\u0026#39;s psychic powers, he can ensure that the signal reaches every television screen in the United States.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the cameras roll, and the Creature awakes, Niemann\\u0026#39;s signal travels across the Atlantic Ocean. All across America\\u2014in countless bars, living rooms, and department stores\\u2014television screens hiss with static as the Creature psychically hijacks their signal, and Niemann\\u0026#39;s grainy broadcast comes through. In a grandiose speech, the mad doctor announces that twin barrages of nuclear missiles will strike the United States and Russia in exactly three days, heralding the end of human civilization. As he says, he has chosen to give the nations of the world three days to prepare for Armageddon, and he promises that the strong and the ruthless may yet survive to witness the rebirth of the Age of Monsters.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the broadcast ends, he raises a wineglass and offers a toast to the world.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;A toast\\u2014to a new world of Gods and Monsters!\\u0026quot;\\u003C/em\\u003E he cries.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy lucky happenstance, Jacob, Lester, Eve and Vlad are sitting in a seaside dive bar in Florida when the message goes out, and they manage to catch Niemann\\u0026#39;s broadcast on a television above the bar. All four of them stare at the television in horror as they realize what Niemann has been planning while on the run, and they realize that they only have days to stop him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe good news? Vlad tells them that he might know how to find him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I met somebody,\\u0026quot;\\u003C/em\\u003E Vlad says. \\u003Cem\\u003E\\u0026quot;I think he might be able to help us.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETogether, the quartet tracks down Twisty again, and he tells them all exactly what he told Vlad: he has seen strange psychic visions near Isla de los Perdidos in the Caribbean, and he believes that they might be caused by the alien embryo that Niemann stole from a drowned alien spaceship in the Pacific five years ago. If his hunch is right, he believes that Niemann may also be on Isla de los Perdidos. Now that he\\u0026#39;s seen Niemann\\u0026#39;s broadcast, Twisty realizes how truly insane the doctor has become, and he realizes that he must help the others stop him\\u2014by any means necessary.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs luck would have it, Twisty has a fishing trawler that\\u0026#39;s \\u003Cem\\u003Ejust\\u003C/em\\u003E fast enough to make it to Isla de los Perdidos within three days, and he offers to take the others there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;re in your debt, friend,\\u0026quot;\\u003C/em\\u003E Jacob says. \\u003Cem\\u003E\\u0026quot;If you can get us to that island, we\\u0026#39;ll take care of the doctor. We promise you that.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs night falls, Twisty raises anchor, and the four heroes set sail for the Caribbean\\u2014knowing full well that they may never return.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOver the course of their long journey, Jacob and Lester reflect on all that they\\u0026#39;ve seen and done since their battle with Dracula in 1923, and Eve and Vlad bond and commiserate over their lives of hardship and misfortune. As a duplicate of \\u003Cstrong\\u003EVictor Frankenstein\\u003C/strong\\u003E\\u0026#39;s famous creature \\u0026quot;\\u003Cstrong\\u003EAdam\\u003C/strong\\u003E\\u0026quot;, Eve has long felt burdened by the momentous legacy of the legendary doctor; although she values her friendship with Lester, she worries that he only values \\u003Cem\\u003Eher\\u003C/em\\u003E because she\\u0026#39;s his last living reminder of his old friend Adam\\u2014someone whom Eve has never even known.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Lester would die for me, and I would die for him,\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;But sometimes when he looks at me, he only sees Adam. I never wanted to inherit that man\\u0026#39;s legacy. And even if I did, I know I could never be the hero that he was.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I know how that feels, Eve,\\u0026quot;\\u003C/em\\u003E Vlad says. \\u003Cem\\u003E\\u0026quot;If it were up to me, my father\\u0026#39;s bloodline would have died with him. But it wasn\\u0026#39;t up to me. I could have lived out my days in a quiet village sheltered by the mountains. But instead, I\\u0026#39;m here, riding into the unknown on a suicide mission. And all because of a father who I never knew.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;re not your father, Vlad,\\u0026quot;\\u003C/em\\u003E Eve says tenderly. \\u003Cem\\u003E\\u0026quot;Trust me. I know bad men when I see them.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the ship sails into the night, Eve and Vlad embrace, and they fall asleep in each other\\u0026#39;s arms.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETwo days later, the ship approaches Isla de los Perdidos on a moonlit night. As Niemann\\u0026#39;s laboratory comes into view, the quartet prepares to storm his fortress. Eve readies her crossbow, Lester bares his teeth and claws, Jacob loads a shotgun, and Vlad brandishes a pair of knives. Before the boat reaches the island, Jacob presents Vlad with a gift: a massive iron broadsword, polished to a fine sheen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Five hundred years ago, this sword belonged to\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EMatthias Corvinus\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E\\u2014the first man ever to defeat your father in battle. When I faced your father with my friends by my side, it was wielded by a man called Adam\\u2014the finest man I ever knew. If anyone should wield it now, it\\u0026#39;s you.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVlad picks up the sword and feels its great heft. Somewhat skeptical, he looks down at it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You want me to wield the sword that cut down my father?\\u0026quot;\\u003C/em\\u003E Vlad asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;If you would have it, it\\u0026#39;s yours,\\u0026quot;\\u003C/em\\u003E Jacob says. \\u003Cem\\u003E\\u0026quot;For five hundred years, it\\u0026#39;s been held by those that fought evil. You\\u0026#39;re a good man, Vlad\\u2014and you\\u0026#39;re worthy of its legacy. Never let anyone tell you different. Whatever sins your father committed, they were his sins alone.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith a heavy heart, Vlad accepts the sword, treating it as a gesture of forgiveness. Although Jacob may not realize it, it\\u0026#39;s exactly the gift that he needs; for 15 years, Vlad has wrestled with his feelings about his true parentage, and he longs to come to terms with the bloodline that he unwillingly inherited. As he accepts the sword, Vlad realizes that Dracula\\u0026#39;s legacy doesn\\u0026#39;t need to define him\\u2014and in Jacob\\u0026#39;s eyes, he\\u0026#39;s worthy of a far greater legacy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust then, all hell breaks loose as the boat is suddenly attack by a massive school of ichthyoids, which clamber up the railing and swarm the decks. Twisty struggles to keep the boat level, but it comes to a halt as one ichthyoid manages to dismantle the propellor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;The lifeboat!\\u0026quot;\\u003C/em\\u003E Twisty yells. \\u003Cem\\u003E\\u0026quot;Get to the lifeboat!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a desperate battle ensues, the quartet try to fight their way to the lifeboat with Twisty leading the way. Eve nails ichthyoids with her crossbow, Vlad cuts them down with his sword, Lester tears them to shreds with his claws, and Jacob holds them off with his shotgun. They fight bravely, but they\\u0026#39;re soon overwhelmed, and Jacob finds himself backed into a corner by the rampaging monsters. Despite his ancestral Van Helsing training, Jacob\\u0026#39;s advanced age is showing; try as he might, he\\u0026#39;s just not as fast as he was in his younger days.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELester tries to rush to his friend\\u0026#39;s aid, but Jacob orders him to broad the lifeboat and continue to the island.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Just go!\\u0026quot;\\u003C/em\\u003E Jacob cries. \\u003Cem\\u003E\\u0026quot;Don\\u0026#39;t worry about me! I\\u0026#39;ll hold them off!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EObeying his orders, Twisty, Eve, Vlad and Lester board the lifeboat, and Twisty lowers the small craft into the water. On the boat, Jacob reloads his shotgun and holds off wave after wave of the aquatic beasts\\u2014but finally, they overwhelm him. Holding back tears, Lester whispers a silent \\u0026quot;Goodbye\\u0026quot; to his old friend, and can only watch helplessly as the ichthyoids descend upon him. Moments later, he dies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith that, Lester realizes that he\\u0026#39;s now the last survivor of the battle with Dracula in 1923. But another battle is close at hand.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETwisty guns the lifeboat\\u0026#39;s motor, and the tiny craft tears through the ocean, finally coming to a stop as it reaches the sandy shore of Isla de los Perdidos. Eve urges Twisty to stay with the boat until they return, and promises that they \\u003Cem\\u003Ewill\\u003C/em\\u003E return.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust ahead, Niemann\\u0026#39;s laboratory looms above the trio at the top of a hill, and Niemann looks down at them from a high window. As he watches the trio approach, he prepares a \\u0026quot;welcoming party\\u0026quot; to greet them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the lower levels of Niemann\\u0026#39;s laboratory, we see a series of caverns, which are filled with rows and rows of cages. In each one, there\\u0026#39;s a live human test subject\\u2014and all of them are hideously mutated. Over the last five years, the ichthyoids haven\\u0026#39;t \\u003Cem\\u003Ejust\\u003C/em\\u003E been bringing Niemann stolen nuclear warheads; they\\u0026#39;ve also been bringing him captured sailors\\u2014and he\\u0026#39;s been experimenting on all of them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESome of the captive sailors are covered with hair, and they sport fearsome fangs and claws\\u2014having been injected with \\u003Cstrong\\u003Ewerewolf\\u003C/strong\\u003E DNA. Others sport leathery \\u003Cem\\u003Ebat wings\\u003C/em\\u003E and grotesque bat-like faces, and they regularly suckle at bottles of blood; Niemann has also been experimenting with vampire DNA, and he\\u0026#39;s transformed some of his captives into animalistic human-bat hybrids.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith the push of a button, Niemann opens the doors of his cages, and he orders his mutated captives to defend his island. Obeying without question, they scamper through the caverns and bound off to intercept our heroes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Lester, Eve and Vlad charge up the hill with weapons drawn, the monsters descend on them. A tense three-way battle ensues: the winged vampires attack them from the sky, the werewolves attack them from the land, and the ichthyoids attack them from the sea. Shooting and stabbing every step of the way, the trio successfully manage to fight their way into the caverns, where they make their way into the interior of Niemann\\u0026#39;s lab. But when they do, Niemann reveals another trick up his sleeve.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;ve had five years to prepare for this encounter, friends. You\\u0026#39;ve learned much since I last met you\\u2014but so have I!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith that, the Creature sends out a wave of psychic energy. The trio collapse and fall to the ground, writhing in agony. When they open their eyes, each of them discovers that their surroundings have radically changed:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELester finds himself back in the trenches of the Western Front in 1918, shelled by German troops on the edge of a great forest. Eve finds herself strapped to a metal slab in the laboratory of \\u003Cstrong\\u003EIngolstadt University\\u003C/strong\\u003E, surrounded by medical instruments. Vlad finds himself trapped in the dungeons of \\u003Cstrong\\u003ECastle Dracula\\u003C/strong\\u003E in Romania. All three of them find themselves alone, with their companions nowhere in sight.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlmost immediately, the trio realize what\\u0026#39;s happening: the Creature has used its psychic abilities to trap them within their own minds, imprisoning them in hallucinatory constructs of their deepest nightmares. Each of them is merely seeing an illusion\\u2014but the illusions are so eerily lifelike that they\\u0026#39;re impossible to escape.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESoon, Lester tries to flee the German artillery lines by running into the forest, but he soon finds himself pursued by a mysterious snarling beast. As the beast gains on him, he realizes that it\\u0026#39;s a werewolf\\u2014but a larger, meaner, and more aggressive werewolf than any that he\\u0026#39;s ever encountered before. As the creature pounces on him and roars for his blood, he finally recognizes it: it\\u0026#39;s his grandfather \\u003Cstrong\\u003ELawrence Talbot\\u003C/strong\\u003E, the first man ever to inherit the title of \\u0026quot;\\u003Cstrong\\u003EThe Wolf Man\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;re no kin of mine, boy,\\u0026quot;\\u003C/em\\u003E Talbot snarls. \\u003Cem\\u003E\\u0026quot;You could have been great. But you ran from your instincts, and you let lesser men tame you! You were never human. Just a beast dressed in a man\\u0026#39;s skin. But I\\u0026#39;ll teach you how a true beast rules the wild forest!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile Lester fights for his life in the forest, Eve screams in terror as a familiar figure enters the laboratory: \\u003Cstrong\\u003EProfessor Septimus Pretorius\\u003C/strong\\u003E\\u2014the man who created her! As Pretorius looms over her and prepares to dissect her alive, Eve futilely struggles against her restraints.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;ve disappointed me, my dear,\\u0026quot;\\u003C/em\\u003E Pretorius whispers. \\u003Cem\\u003E\\u0026quot;I loved you enough to give you the gift of life, and you repaid me by throwing it away! You thought you could survive beyond these stone walls\\u2014but the outside world has no place for you, and it never did. You spurned your only purpose in life. But perhaps my next creation will prove herself more sensible...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Eve screams and curses at Pretorius, Vlad tries to find his way through the dark dungeons of Castle Dracula. Suddenly, the torches and candelabras light up as a familiar figure strides down the stone staircase: it\\u0026#39;s Dracula himself\\u2014alive and well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Welcome home, son,\\u0026quot;\\u003C/em\\u003E the Prince says, smiling coldly. \\u003Cem\\u003E\\u0026quot;I always knew you would return, some day. But my throne is not yours to inherit. My reign will never end. Death holds no sway over the Son of the Beast. And an immortal needs no heir!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDracula draws his blade and moves to behead his son, and Vlad scrambles to defend himself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne by one, though, each of the trio gradually comes to their senses as they remind themselves that the Creature\\u0026#39;s illusions aren\\u0026#39;t real\\u2014and with enough willpower, they can bend them to their will.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, Lester manages to assume his lupine form as he runs from his grandfather. As he bares his claws and fangs, a brutal fight ensues between the two werewolves, and Lester eventually manages to blind Lawrence by slashing his eyes with his claws. As Lawrence blindly charges at him, he tackles him from behind and tears open his throat with his teeth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;re not my grandfather!\\u0026quot;\\u003C/em\\u003E Lester defiantly roars. \\u003Cem\\u003E\\u0026quot;Lawrence Talbot was a good man, and he proved it to everyone who ever doubted that. Everything I am, I owe to him. No nightmare can ever change that!\\u0026quot;\\u003C/em\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext, Eve manages to summon her superhuman strength, allowing her to break free from her restraints and disarm Pretorius. As the Professor tries to flee, she chases him down and throws him against a bank of electrical equipment, electrocuting him instantly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;re not God, Septimus!\\u0026quot;\\u003C/em\\u003E she yells. \\u003Cem\\u003E\\u0026quot;And even if you were, I\\u0026#39;d still kill you where you stood!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally, Vlad manages to draw Matthias Corvinus\\u0026#39; sword, and he taunts his father by brandishing the blade that once defeated him. In an epic swordfight, he manages to stake him through the heart, and he uses a torch to set his robes on fire, immolating him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Death comes for everyone, father,\\u0026quot;\\u003C/em\\u003E Vlad says. \\u003Cem\\u003E\\u0026quot;Your reign ended long ago. And you\\u0026#39;re nothing but a bad dream!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs all three of our heroes overcome their greatest fears, the illusion gradually fades, and they finally wake up on the floor of Niemann\\u0026#39;s fortress. As they do, they realize that an alarm is blaring. It\\u0026#39;s a launch signal!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERealizing that the warheads are about to fire, Lester makes a quick judgment call.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Find Niemann!\\u0026quot;\\u003C/em\\u003E he orders Eve and Vlad. \\u003Cem\\u003E\\u0026quot;Take care of him, and take care of that creature! I\\u0026#39;ll take care of the warheads!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEve and Vlad beg him not to go off alone, but Lester insists that he\\u0026#39;ll be fine. As the trio splits up, the siren continues to wail.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt one end of the facility, Lester makes his way to a dark bunker, where a missile launchpad is primed and ready. At the other end of the facility, Eve and Vlad make their way to the Creature\\u0026#39;s glass enclosure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Creature lashes out with its tentacles and tries to hit Eve and Vlad with a blast of psychic energy, but they manage to resist it. Eve hits the Creature with a well-placed crossbow bolt to the brain, and the life begins to ebb from its massive body.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMeanwhile, Lester reveals a pack slung over his shoulder, which is packed with military-grade dynamite. He approaches the warhead on the launchpad and rips out its guidance chip, then moves to plant the dynamite at its base. Moments after he triggers the timer on the explosives, a horde of vampires and werewolves charges into the bunker. He makes his stand, prepared to defend the explosives until they go off.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the dynamite ticks, Eve and Vlad finally confront Niemann in his private study. He visibly panics as he draws a pistol, instantly recognizing both of them. They advance on him, their weapons drawn.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I remember you,\\u0026quot;\\u003C/em\\u003E he snarls. \\u003Cem\\u003E\\u0026quot;But you mean nothing to me! One of you is a failed experiment, and one of you is the bastard spawn of a dead prince. You can\\u0026#39;t stop what\\u0026#39;s coming!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;ve never lost any sleep, worrying about the future,\\u0026quot;\\u003C/em\\u003E Vlad says. \\u003Cem\\u003E\\u0026quot;The past, though...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We remember what you did, Niemann,\\u0026quot;\\u003C/em\\u003E Eve says. \\u003Cem\\u003E\\u0026quot;It took twenty-five years. But now, you\\u0026#39;re going to pay!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the bunker, an outnumbered Lester fights for his life against the rampaging vampires and werewolves. In the end, he fights them all off\\u2014but he\\u0026#39;s mortally wounded in the battle, and the timer on the dynamite is damaged. To destroy the warhead, he realizes that he has no other choice but to detonate the dynamite manually. He knows that the blast will kill him, but he realizes that it doesn\\u0026#39;t matter; even if he could escape the blast, he knows that he won\\u0026#39;t survive his wounds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs blood gushes from his multiple open wounds, he crawls to a nearby intercom and presses his lips to the speaker. When he speaks, his voice echoes through the entire fortress.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Vlad... Eve...\\u0026quot;\\u003C/em\\u003E he croaks. \\u003Cem\\u003E\\u0026quot;You...you have to leave... You have to get out... Leave me... The lifeboat...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs soon as Vlad and Eve hear his voice, they know that he\\u0026#39;s near death, and the explosives will soon go off. Before they make their escape, Eve shoots Niemann through the chest with her crossbow, spearing him to the wall; Vlad draws his dagger and slices open his cheeks, leaving blood pouring down his chest. Choosing not to deal a fatal blow, they leave him behind and run to the shore, where Twisty is waiting with the lifeboat. They give the fortress a final wistful look before jumping into the lifeboat and tearing off into the distance.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in the bunker, a dying Lester pulls a crumpled photograph from his pocket as he prepares to light the fuse on the dynamite. It\\u0026#39;s a black and white photo of his grandfather Lawrence Talbot standing in front of his cabin in Canada with Adam by his side.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I hope I made you proud, old man...\\u0026quot;\\u003C/em\\u003E he whispers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn his study, Niemann\\u2014still impaled to the wall\\u2014struggles to free himself. But then the dynamite goes off, detonating the warheads along with it. Lester and Niemann are consumed in the resulting explosion, and Vlad and Eve narrowly outrun the blast as their lifeboat zips away. A massive mushroom cloud erupts behind them, destroying most of Isla de los Perdidos in a ball of flame.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEve sheds a tear as she realizes that Lester is gone, and Vlad embraces her.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;He got to die for something, in the end,\\u0026quot;\\u003C/em\\u003E Eve says. \\u003Cem\\u003E\\u0026quot;That\\u0026#39;s more than most people get.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVlad wipes a tear away from Eve\\u0026#39;s face.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Two good men died today,\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;They\\u0026#39;ll be mourned, and they\\u0026#39;ll be remembered. But never forget: this is what they wanted. The battle\\u0026#39;s over now, Eve. Now comes life.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe two share a kiss as they ride into the moonlight.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the final scene, Vlad and Eve relax on a beach somewhere in the Caribbean. It\\u0026#39;s a warm Summer night, and moon is full. With Niemann finally gone, the two lovers have settled down to enjoy a peaceful retirement. In their ramshackle little house, we see a montage of photos depicting Eve\\u0026#39;s many adventures throughout the 20th century with Jacob and Lester; we see them battling \\u003Cstrong\\u003Egiant ants\\u003C/strong\\u003E in the American Southwest, squaring off with voodoo cults in the Deep South, holding the line against \\u003Cstrong\\u003Emole people\\u003C/strong\\u003E in the Midwest, and even battling the infamous \\u003Cstrong\\u003EFifty-Foot Woman\\u003C/strong\\u003E in New England. Eve will always have plenty of stories to tell\\u2014but after a lifetime of adventure, she\\u0026#39;s earned a rest in paradise.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEve and Vlad steal a final glance at the sea before returning home for the night. Somewhere in the distance, strange lights drift over the rolling waves, and a strange metal craft can be seen in the distance. They don\\u0026#39;t see it, but it\\u0026#39;s clearly a \\u003Cstrong\\u003Eflying saucer\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Son of Dracula and the Daughter of Frankenstein have saved the world from evil\\u2014but it looks like their adventures may not be over quite yet...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ETHE END\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Age of Monsters:\\u003C/em\\u003E\\u003C/strong\\u003E In 1963, Vlad\\u0026#39;s search for ex-Nazi scientist Dr. Hans Niemann leads him to cross paths with Eve, who is still traveling the world with an aging Jacob Van Helsing and Lester Talbot. As Vlad, Eve, Jacob and Lester unite to finally bring Niemann to justice, they discover Niemann\\u0026#39;s plot to use a psychic alien\\u0026#39;s brain to unleash nuclear armageddon with the help of an army of vampires, werewolves and ichthyoids. As they journey to the Caribbean for a final showdown with Niemann on his island base, Jacob and Lester ultimately sacrifice their lives to stop the doctor\\u0026#39;s plot, but Eve and Vlad defeat him together. In the end, Eve and Vlad become lovers, and they settle down together in a remote Caribbean island to enjoy a peaceful retirement.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/F_0HMxvQC8X4BfJYQH7rYHApU2CykIaG1ctO2xGnACk.jpg?auto=webp\\u0026s=2105c32fa3af20d7f4f18e971dfbe5e1618ce547\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/F_0HMxvQC8X4BfJYQH7rYHApU2CykIaG1ctO2xGnACk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5e03ff998923ae63089bc3621421c4a86f2cc5bb\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/F_0HMxvQC8X4BfJYQH7rYHApU2CykIaG1ctO2xGnACk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c7e0461c4e5e8c277a2bb4e91e24043e8fd099af\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/F_0HMxvQC8X4BfJYQH7rYHApU2CykIaG1ctO2xGnACk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c5361de8c185c6cedde34783365af39fd58fc7c0\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"RY7KEUBXY3bQ4t71uXml_uBmG63nIPmI4IKhhm1OQJ4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cb1x1u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cb1x1u/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cb1x1u/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562684101.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"The height H of a wave decays such that H = H\\u003Csub\\u003E0\\u003C/sub\\u003E e\\\\^\\u221213\", \"author_fullname\": \"t2_106815\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"lorem ipsum\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cazkaj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562700062.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe height H of a wave decays such that H = H\\u0026lt;sub\\u0026gt;0\\u0026lt;/sub\\u0026gt; e^\\u221213\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cazkaj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rhapsodick\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cazkaj/lorem_ipsum/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cazkaj/lorem_ipsum/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562671262.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_41zmyfv5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cawrxw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1562652129.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562680572.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cawrxw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SeaLetter1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cawrxw/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cawrxw/test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562651772.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"###Build Help/Ready:\\n\\n**What is your intended use for this build? The more details the better.** \\n\\nI'm building my first PC, so I'm trying to absorb as much info as possible. \\nMy aim is 100+hz gaming at 1080p. \\nAside from some photos editing - gaming will by the main purpose of this PC.\\n\\nI decided to go full AMD route as I want to use free sync monitor (as its cheaper) and with current GPU and CPU prices I don't feel like I should give my money to INTEL or NVIDIA :-) \\n\\nAfter many year using laptops I want my PC to be reasonable quiet. \\n\\nSo obviously I have a lots of questions. \\n\\n**If gaming, what kind of performance are you looking for? ** : 100+ hz at 1080p / 1440p\\n\\n**What is your budget ?** : 1200 euro / 1300 usd\\n\\n**In what country are you purchasing your parts?** : Czech Republic \\n\\n[PCPartPicker Part List](https://de.pcpartpicker.com/list/MNKyJ8)\\n\\nType|Item|Price\\n:----|:----|:----\\n**CPU** | [AMD - Ryzen 5 3600 3.6 GHz 6-Core Processor](https://de.pcpartpicker.com/product/9nm323/amd-ryzen-5-3600-36-thz-6-core-processor-100-100000031box) | \\u20ac210\\n**CPU Cooler** | [SilentiumPC - Fera 3 HE1224 v2 46.5 CFM CPU Cooler](https://de.pcpartpicker.com/product/MXF48d/silentiumpc-fera-3-he1224-v2-465-cfm-cpu-cooler-fera-3-he1224-v2) | \\u20ac28\\n**Motherboard** | [MSI - B450 TOMAHAWK ATX AM4 Motherboard](https://de.pcpartpicker.com/product/Hy97YJ/msi-b450-tomahawk-atx-am4-motherboard-b450-tomahawk) | \\u20ac102 \\n**Memory** | [HyperX 16GB KIT DDR4 3333MHz CL16 Predator Series](https://www.alza.cz/kingston-16gb-kit-ddr4-sdram-3333mhz-cl16-hyperx-predator-series-d4300651.htm) | \\u20ac102\\n**Storage** | [Intel - 660p Series 1.02 TB M.2-2280 Solid State Drive](https://de.pcpartpicker.com/product/9nhKHx/intel-660p-series-1tb-m2-2280-solid-state-drive-ssdpeknw010t8x1) | \\u20ac115\\n**Video Card** | [ SECOND HAND - Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card](https://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g) | \\u20ac240\\n**Power Supply** | [be quiet! - Pure Power 11 CM 500 W 80+ Gold Certified Semi-modular ATX Power Supply](https://de.pcpartpicker.com/product/qpvbt6/be-quiet-pure-power-11-cm-500-w-80-gold-certified-semi-modular-atx-power-supply-bn297) | \\u20ac80 \\n**Monitor** | [24\\\" Acer KG241QPbiip Gaming](https://www.alza.cz/EN/24-acer-kg241qpbiip-gaming-d5478786.htm) | \\u20ac170 \\n**Case** | [SilentiumPC Signum SG1 TG](https://www.alza.cz/silentiumpc-signum-sg1-tg-d5557480.htm) | \\u20ac170 \\n | *Prices include shipping, taxes, rebates, and discounts* |\\n | **Total** | **\\u20ac1094**\\n | Generated by [PCPartPicker](https://pcpartpicker.com) 2019-07-08 23:35 CEST+0200 |\\n\\nQuestions : \\n\\n* **1)** does this build makes sense ? Is there any obvious bottleneck which I completely missed ? \\n\\nI picked 3600 as it seems to be sufficient for any gaming needs. \\nI went with *B450 TOMAHAWK* as it has bios usb flashback feature. \\n\\n* **2)** Will *SilentiumPC - Fera 3* make CPU quieter compared to stock cooler ? \\nI want to keep my CPU cool and ideally passive cooled most of time. (another reason to pick 65W CPU). \\n\\n* **3)** Can I rotate cooler by 90 degrees ? (fan blowing through heatsink to the top of the case) \\nMy case will have only front and top side unobstructed. So I was thinking about air direction from the front to the inside - from the back to the inside - from the inside to the top. \\nI assume rotating cooler will help ? \\nI picked https://www.silentiumpc.com/en/product/signum-sg1-tg/ case as it has 8 slots for fans. \\nAirflow in this case (https://imgur.com/a/YTVxl6H). (I will probably pick some noctua fans next month as this case comes with only two of them. Any recommendation ? )\\n\\n* **4)** Is there any reason not to go for 3200 C16 RAM 2x8GB RAM ? \\nThis article https://www.techpowerup.com/review/amd-zen-2-memory-performance-scaling-benchmark/ is saying that *barely a five percent performance gain to be had going from DDR4-2400 to DDR4-3600* so\\nthere I picked some cheap memery in my budged. I could probably go for \\n*Patriot Viper4 Series 16GB KIT DDR4 3400Mhz CL16* as alternative to *HyperX 16GB KIT DDR4 3200MHz CL16 Predator Series* or *HyperX 16GB KIT DDR4 3333MHz CL16 Predator Series*\\nThere is no price difference in my country for these RAMs.\\n\\n* **5)** is 500W enough for my build ? Is *be quiet! - Pure Power 11 CM* a good PSU? Is anywhere any info about how much laud if fan for which PSU ? I don't want it to be too loud, but in my case (accidental pun) PSU is at the bottom so I think case should reduce noise quite a bit. \\n\\n* **6)** I picked this monitor as cheap 1080p 144hz model with good revies. Any other good known alternative ? I would like to pick 1440p but it seems little bit over my budged. If I went this way, can vega 56 keep up ? Which model would you recommend ?\\n\\nThank you for any help. I can't wait until I will finally play Solitaire at 144hz :-D\", \"author_fullname\": \"t2_ieduu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"pcpartpicker test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_carfoc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1562626020.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562651080.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch3\\u003EBuild Help/Ready:\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat is your intended use for this build? The more details the better.\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m building my first PC, so I\\u0026#39;m trying to absorb as much info as possible. \\nMy aim is 100+hz gaming at 1080p. \\nAside from some photos editing - gaming will by the main purpose of this PC.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI decided to go full AMD route as I want to use free sync monitor (as its cheaper) and with current GPU and CPU prices I don\\u0026#39;t feel like I should give my money to INTEL or NVIDIA :-) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter many year using laptops I want my PC to be reasonable quiet. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo obviously I have a lots of questions. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*\\u003Cem\\u003EIf gaming, what kind of performance are you looking for? *\\u003C/em\\u003E : 100+ hz at 1080p / 1440p\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat is your budget ?\\u003C/strong\\u003E : 1200 euro / 1300 usd\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EIn what country are you purchasing your parts?\\u003C/strong\\u003E : Czech Republic \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://de.pcpartpicker.com/list/MNKyJ8\\\"\\u003EPCPartPicker Part List\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EType\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://de.pcpartpicker.com/product/9nm323/amd-ryzen-5-3600-36-thz-6-core-processor-100-100000031box\\\"\\u003EAMD - Ryzen 5 3600 3.6 GHz 6-Core Processor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u20ac210\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU Cooler\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://de.pcpartpicker.com/product/MXF48d/silentiumpc-fera-3-he1224-v2-465-cfm-cpu-cooler-fera-3-he1224-v2\\\"\\u003ESilentiumPC - Fera 3 HE1224 v2 46.5 CFM CPU Cooler\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u20ac28\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://de.pcpartpicker.com/product/Hy97YJ/msi-b450-tomahawk-atx-am4-motherboard-b450-tomahawk\\\"\\u003EMSI - B450 TOMAHAWK ATX AM4 Motherboard\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u20ac102\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.alza.cz/kingston-16gb-kit-ddr4-sdram-3333mhz-cl16-hyperx-predator-series-d4300651.htm\\\"\\u003EHyperX 16GB KIT DDR4 3333MHz CL16 Predator Series\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u20ac102\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://de.pcpartpicker.com/product/9nhKHx/intel-660p-series-1tb-m2-2280-solid-state-drive-ssdpeknw010t8x1\\\"\\u003EIntel - 660p Series 1.02 TB M.2-2280 Solid State Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u20ac115\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EVideo Card\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g\\\"\\u003E SECOND HAND - Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u20ac240\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EPower Supply\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://de.pcpartpicker.com/product/qpvbt6/be-quiet-pure-power-11-cm-500-w-80-gold-certified-semi-modular-atx-power-supply-bn297\\\"\\u003Ebe quiet! - Pure Power 11 CM 500 W 80+ Gold Certified Semi-modular ATX Power Supply\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u20ac80\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMonitor\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.alza.cz/EN/24-acer-kg241qpbiip-gaming-d5478786.htm\\\"\\u003E24\\u0026quot; Acer KG241QPbiip Gaming\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u20ac170\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECase\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.alza.cz/silentiumpc-signum-sg1-tg-d5557480.htm\\\"\\u003ESilentiumPC Signum SG1 TG\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u20ac170\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cem\\u003EPrices include shipping, taxes, rebates, and discounts\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETotal\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E\\u20ac1094\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGenerated by \\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003EPCPartPicker\\u003C/a\\u003E 2019-07-08 23:35 CEST+0200\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EQuestions : \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E1)\\u003C/strong\\u003E does this build makes sense ? Is there any obvious bottleneck which I completely missed ? \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI picked 3600 as it seems to be sufficient for any gaming needs. \\nI went with \\u003Cem\\u003EB450 TOMAHAWK\\u003C/em\\u003E as it has bios usb flashback feature. \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E2)\\u003C/strong\\u003E Will \\u003Cem\\u003ESilentiumPC - Fera 3\\u003C/em\\u003E make CPU quieter compared to stock cooler ? \\nI want to keep my CPU cool and ideally passive cooled most of time. (another reason to pick 65W CPU). \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E3)\\u003C/strong\\u003E Can I rotate cooler by 90 degrees ? (fan blowing through heatsink to the top of the case) \\nMy case will have only front and top side unobstructed. So I was thinking about air direction from the front to the inside - from the back to the inside - from the inside to the top. \\nI assume rotating cooler will help ? \\nI picked \\u003Ca href=\\\"https://www.silentiumpc.com/en/product/signum-sg1-tg/\\\"\\u003Ehttps://www.silentiumpc.com/en/product/signum-sg1-tg/\\u003C/a\\u003E case as it has 8 slots for fans. \\nAirflow in this case (\\u003Ca href=\\\"https://imgur.com/a/YTVxl6H\\\"\\u003Ehttps://imgur.com/a/YTVxl6H\\u003C/a\\u003E). (I will probably pick some noctua fans next month as this case comes with only two of them. Any recommendation ? )\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E4)\\u003C/strong\\u003E Is there any reason not to go for 3200 C16 RAM 2x8GB RAM ? \\nThis article \\u003Ca href=\\\"https://www.techpowerup.com/review/amd-zen-2-memory-performance-scaling-benchmark/\\\"\\u003Ehttps://www.techpowerup.com/review/amd-zen-2-memory-performance-scaling-benchmark/\\u003C/a\\u003E is saying that \\u003Cem\\u003Ebarely a five percent performance gain to be had going from DDR4-2400 to DDR4-3600\\u003C/em\\u003E so\\nthere I picked some cheap memery in my budged. I could probably go for \\n\\u003Cem\\u003EPatriot Viper4 Series 16GB KIT DDR4 3400Mhz CL16\\u003C/em\\u003E as alternative to \\u003Cem\\u003EHyperX 16GB KIT DDR4 3200MHz CL16 Predator Series\\u003C/em\\u003E or \\u003Cem\\u003EHyperX 16GB KIT DDR4 3333MHz CL16 Predator Series\\u003C/em\\u003E\\nThere is no price difference in my country for these RAMs.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E5)\\u003C/strong\\u003E is 500W enough for my build ? Is \\u003Cem\\u003Ebe quiet! - Pure Power 11 CM\\u003C/em\\u003E a good PSU? Is anywhere any info about how much laud if fan for which PSU ? I don\\u0026#39;t want it to be too loud, but in my case (accidental pun) PSU is at the bottom so I think case should reduce noise quite a bit. \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E6)\\u003C/strong\\u003E I picked this monitor as cheap 1080p 144hz model with good revies. Any other good known alternative ? I would like to pick 1440p but it seems little bit over my budged. If I went this way, can vega 56 keep up ? Which model would you recommend ?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThank you for any help. I can\\u0026#39;t wait until I will finally play Solitaire at 144hz :-D\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/4AdJpWhQx84o9XWLE_R7gtgAfe09ytUu8HrCR6Z4wlM.jpg?auto=webp\\u0026s=879ebb8719c066489a8cf5ff9a7fb8be8b40cb64\", \"width\": 1195, \"height\": 1415}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/4AdJpWhQx84o9XWLE_R7gtgAfe09ytUu8HrCR6Z4wlM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3deedead01d966c25248c49f6a40a8eddbb311af\", \"width\": 108, \"height\": 127}, {\"url\": \"https://external-preview.redd.it/4AdJpWhQx84o9XWLE_R7gtgAfe09ytUu8HrCR6Z4wlM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=54c5c45ecf599f7de8cb2a0a70aa64aff6c720cd\", \"width\": 216, \"height\": 255}, {\"url\": \"https://external-preview.redd.it/4AdJpWhQx84o9XWLE_R7gtgAfe09ytUu8HrCR6Z4wlM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c6e71cc4c26f22212cc846e55b298f438753123b\", \"width\": 320, \"height\": 378}, {\"url\": \"https://external-preview.redd.it/4AdJpWhQx84o9XWLE_R7gtgAfe09ytUu8HrCR6Z4wlM.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=7cc66c477e4ac1d72f06232088df091935e11430\", \"width\": 640, \"height\": 757}, {\"url\": \"https://external-preview.redd.it/4AdJpWhQx84o9XWLE_R7gtgAfe09ytUu8HrCR6Z4wlM.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=606a343ef7b1f63e144822171745f271689bb7c5\", \"width\": 960, \"height\": 1136}, {\"url\": \"https://external-preview.redd.it/4AdJpWhQx84o9XWLE_R7gtgAfe09ytUu8HrCR6Z4wlM.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ad63ae2adba16c81f0ee6f0c65e26b1700200e88\", \"width\": 1080, \"height\": 1278}], \"variants\": {}, \"id\": \"44h6tYjB6Nkwz66FYWteUoNGtA4oCQ9eqTfPlYDwnRk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"carfoc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mikejmt\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/carfoc/pcpartpicker_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/carfoc/pcpartpicker_test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562622280.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*separate words test*\", \"author_fullname\": \"t2_2og24f4r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Italics\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_caqukm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562648342.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003Eseparate words test\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"caqukm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"EdiacaranMacaron\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/caqukm/italics/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/caqukm/italics/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562619542.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_ywgs0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test 3Box\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cap5mc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562640601.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"test.3box.io\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cap5mc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"oznekenzo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cap5mc/test_3box/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://test.3box.io/0x59B5fbC62519DBF9B7044fd0eCb6442aC16FAe2A/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562611801.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_ywgs0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"3Box\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cap0qj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562639997.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"test.3box.io\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cap0qj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"oznekenzo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cap0qj/3box/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://test.3box.io/0x59B5fbC62519DBF9B7044fd0eCb6442aC16FAe2A/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562611197.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_ywgs0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"https://currentcrypto.nl/wat-is-waltonchain-werken-met-the-internet-of-things/\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_caotch\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562639111.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"caotch\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"oznekenzo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/caotch/httpscurrentcryptonlwatiswaltonchainwerkenmetthein/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/caotch/httpscurrentcryptonlwatiswaltonchainwerkenmetthein/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562610311.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[PCPartPicker Part List](https://pcpartpicker.com/list/KX936s)\\n\\nType|Item|Price\\n:----|:----|:----\\n**CPU** | [AMD - Ryzen 7 3700X 3.6 GHz 8-Core Processor](https://pcpartpicker.com/product/QKJtt6/amd-ryzen-7-3700x-36-ghz-8-core-processor-100-100000071box) |-\\n**Motherboard** | [MSI - X470 GAMING PLUS ATX AM4 Motherboard](https://pcpartpicker.com/product/4D7v6h/msi-x470-gaming-plus-atx-am4-motherboard-x470-gaming-plus) | $137.99 @ Newegg \\n**Memory** | [Corsair - Vengeance LPX 16 GB (2 x 8 GB) DDR4-3000 Memory](https://pcpartpicker.com/product/q7448d/corsair-vengeance-lpx-16gb-2-x-8gb-ddr4-3000-memory-cmk16gx4m2c3000c16w) |-\\n**Storage** | [Western Digital - Blue 1 TB 2.5\\\" Solid State Drive](https://pcpartpicker.com/product/GTCD4D/western-digital-blue-1tb-25-solid-state-drive-wds100t2b0a) | $114.99 @ Newegg \\n**Video Card** | [Gigabyte - GeForce RTX 2070 8 GB WINDFORCE Video Card](https://pcpartpicker.com/product/CGYLrH/gigabyte-geforce-rtx-2070-8gb-windforce-video-card-gv-n2070wf3-8gc) | $499.99 @ Newegg \\n**Case** | [Corsair - Carbide Series 275R ATX Mid Tower Case](https://pcpartpicker.com/product/KFXnTW/corsair-carbide-series-275r-black-wtempered-glass-atx-mid-tower-case-cc-9011132-ww) |-\\n**Power Supply** | [EVGA - 1000 W 80+ Gold Certified Semi-modular ATX Power Supply](https://pcpartpicker.com/product/bcTrxr/evga-power-supply-210gq1000) | $155.98 @ Newegg \\n**Operating System** | [Microsoft - Windows 10 Home OEM 64-bit](https://pcpartpicker.com/product/wtgPxr/microsoft-os-kw900140) | $109.99 @ Newegg \\n | *Prices include shipping, taxes, rebates, and discounts* |\\n | **Total** | **$1018.94**\\n | Generated by [PCPartPicker](https://pcpartpicker.com) 2019-07-08 11:53 EDT-0400 |\", \"author_fullname\": \"t2_upwun\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"pcpartpicker\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_camm8p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1562601256.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562629180.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/list/KX936s\\\"\\u003EPCPartPicker Part List\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EType\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/QKJtt6/amd-ryzen-7-3700x-36-ghz-8-core-processor-100-100000071box\\\"\\u003EAMD - Ryzen 7 3700X 3.6 GHz 8-Core Processor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/4D7v6h/msi-x470-gaming-plus-atx-am4-motherboard-x470-gaming-plus\\\"\\u003EMSI - X470 GAMING PLUS ATX AM4 Motherboard\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$137.99 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/q7448d/corsair-vengeance-lpx-16gb-2-x-8gb-ddr4-3000-memory-cmk16gx4m2c3000c16w\\\"\\u003ECorsair - Vengeance LPX 16 GB (2 x 8 GB) DDR4-3000 Memory\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/GTCD4D/western-digital-blue-1tb-25-solid-state-drive-wds100t2b0a\\\"\\u003EWestern Digital - Blue 1 TB 2.5\\u0026quot; Solid State Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$114.99 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EVideo Card\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/CGYLrH/gigabyte-geforce-rtx-2070-8gb-windforce-video-card-gv-n2070wf3-8gc\\\"\\u003EGigabyte - GeForce RTX 2070 8 GB WINDFORCE Video Card\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$499.99 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECase\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/KFXnTW/corsair-carbide-series-275r-black-wtempered-glass-atx-mid-tower-case-cc-9011132-ww\\\"\\u003ECorsair - Carbide Series 275R ATX Mid Tower Case\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EPower Supply\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/bcTrxr/evga-power-supply-210gq1000\\\"\\u003EEVGA - 1000 W 80+ Gold Certified Semi-modular ATX Power Supply\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$155.98 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EOperating System\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/wtgPxr/microsoft-os-kw900140\\\"\\u003EMicrosoft - Windows 10 Home OEM 64-bit\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$109.99 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cem\\u003EPrices include shipping, taxes, rebates, and discounts\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETotal\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$1018.94\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGenerated by \\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003EPCPartPicker\\u003C/a\\u003E 2019-07-08 11:53 EDT-0400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/4Jdovq6gkS1gQuzgtaRbqECDIzbUBJqY7JhuGB4uRCI.jpg?auto=webp\\u0026s=d2c1d18843d827183bdf470478ddf2781ae9b117\", \"width\": 500, \"height\": 375}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/4Jdovq6gkS1gQuzgtaRbqECDIzbUBJqY7JhuGB4uRCI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=855f04ff141b426a02c152869cee9853ea92249d\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/4Jdovq6gkS1gQuzgtaRbqECDIzbUBJqY7JhuGB4uRCI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=df8c9a8224d3cb607305febee93dc842a786d8db\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/4Jdovq6gkS1gQuzgtaRbqECDIzbUBJqY7JhuGB4uRCI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=30b68721fe595c9c3a6b821a109c624cf8dc1a20\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"HuHh33EhpX2F9zJOZBJgipbrCJ0r--IvlFhAbRH6LZk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"camm8p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Akvod\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/camm8p/pcpartpicker/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/camm8p/pcpartpicker/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562600380.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"RANKING CRITERIA:\\n\\n- If 1000 pokemon of type X were released as individuals into OU, with a good variation of \\ntypings/roles/stats, how good would they be on average?\\n- Are there sleeper mons like Cryogonal that might fill a niche in OU if they had a new typing?\\n- gamefreak doesn't exist - assume mons are for competitive, no incredibly shitty bug/poison types etc.\\n\\ntier definitions:\\n\\n- S: mons of these types define the tier\\n- A: mons can reliably check threats/gain momentum due to typing, or just good STAB\\n- B: mons can usually cover specific holes in a team's coverage due to typing, or just good STAB\\n- C: typing can be a liability for the team, awkward defensive/offensive utility\\n- D: typing is alright sometimes but usually a liability for the team\\n\\n- S: Steel\\n- A: Fairy, Water, Ground, Dark, Poison\\n- B: Flying, Psychic, Normal, Grass, Electric, Dragon\\n- C: Bug, Fighting, Ghost, Ice, Rock\\n- D: Fire\\n\\ntiers are ordered\\n\\nNotes:\\n\\n- Knock off moves dark up like 5 places, assuming most dark mons get knock off\\n- Tyranitar and Diancie are good for every reason other than their rock typing\\n- But also every rock type gets stealth rock\\n- Dragon types are washed lmao\\n- Stealth rock fucks up 3 types and makes flying a lot worse - every OU Flying either takes stealth \\nrock, defogs or requires team support\\n- Shadow ball and shadow punch are the most powerful ghost stabs\\n- Poison type is a sleeper, every non-OU wall wishes they were mono poison\", \"author_fullname\": \"t2_quq42\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"b\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cae2p9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562574109.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERANKING CRITERIA:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf 1000 pokemon of type X were released as individuals into OU, with a good variation of \\ntypings/roles/stats, how good would they be on average?\\u003C/li\\u003E\\n\\u003Cli\\u003EAre there sleeper mons like Cryogonal that might fill a niche in OU if they had a new typing?\\u003C/li\\u003E\\n\\u003Cli\\u003Egamefreak doesn\\u0026#39;t exist - assume mons are for competitive, no incredibly shitty bug/poison types etc.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003Etier definitions:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ES: mons of these types define the tier\\u003C/li\\u003E\\n\\u003Cli\\u003EA: mons can reliably check threats/gain momentum due to typing, or just good STAB\\u003C/li\\u003E\\n\\u003Cli\\u003EB: mons can usually cover specific holes in a team\\u0026#39;s coverage due to typing, or just good STAB\\u003C/li\\u003E\\n\\u003Cli\\u003EC: typing can be a liability for the team, awkward defensive/offensive utility\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ED: typing is alright sometimes but usually a liability for the team\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ES: Steel\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EA: Fairy, Water, Ground, Dark, Poison\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EB: Flying, Psychic, Normal, Grass, Electric, Dragon\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EC: Bug, Fighting, Ghost, Ice, Rock\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ED: Fire\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003Etiers are ordered\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENotes:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EKnock off moves dark up like 5 places, assuming most dark mons get knock off\\u003C/li\\u003E\\n\\u003Cli\\u003ETyranitar and Diancie are good for every reason other than their rock typing\\u003C/li\\u003E\\n\\u003Cli\\u003EBut also every rock type gets stealth rock\\u003C/li\\u003E\\n\\u003Cli\\u003EDragon types are washed lmao\\u003C/li\\u003E\\n\\u003Cli\\u003EStealth rock fucks up 3 types and makes flying a lot worse - every OU Flying either takes stealth \\nrock, defogs or requires team support\\u003C/li\\u003E\\n\\u003Cli\\u003EShadow ball and shadow punch are the most powerful ghost stabs\\u003C/li\\u003E\\n\\u003Cli\\u003EPoison type is a sleeper, every non-OU wall wishes they were mono poison\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cae2p9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MasterGuy1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cae2p9/b/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cae2p9/b/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562545309.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_35aabssu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ultimate Skyrim Let's Play #50 - It's Over\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cacvh2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/mL7pxp1waEQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Ultimate Skyrim Let's Play #50 - It's Over\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/mL7pxp1waEQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/mL7pxp1waEQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/mL7pxp1waEQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cacvh2\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/vcd0lEY9wt1uZ0FmdCfKZsXuJh3PEAypL8ccpp-sGEg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562567177.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Xy3_20iVOIzV2q57nxayaVabdNDdzTGHlb-bRpWBUEg.jpg?auto=webp\\u0026s=1d4f48438f27e9ad97f33393f42b0c0a1a8a21f5\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Xy3_20iVOIzV2q57nxayaVabdNDdzTGHlb-bRpWBUEg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=137ff414dae786d5e9062bbfa38d8a8dc7b565a7\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/Xy3_20iVOIzV2q57nxayaVabdNDdzTGHlb-bRpWBUEg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3fcc5744ede664aac04448c00dc2328ead5c9bff\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/Xy3_20iVOIzV2q57nxayaVabdNDdzTGHlb-bRpWBUEg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7018e1731326c90b412e9588f1a6d1b1efd34d59\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"0fMI5VDFqjPeSLfpyzpEwPSIJ37wh4UFThrk5UmnpBY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cacvh2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Goldymires\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cacvh2/ultimate_skyrim_lets_play_50_its_over/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=mL7pxp1waEQ\", \"subreddit_subscribers\": 754, \"created_utc\": 1562538377.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Ultimate Skyrim Let's Play #50 - It's Over\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/mL7pxp1waEQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/mL7pxp1waEQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_7pkc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[FLAIR] test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 58, \"hide_score\": false, \"name\": \"t3_cacqpf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/q6SwJ_od9klJ9oC5UhVyM7jlONmJ5FAOcCADZBI8HT8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562566450.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"google.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/jYmUc7J9Vfl8CLrzynXZKkot8hBeP6GRM1VC7yFU2Yk.jpg?auto=webp\\u0026s=e7485210c1621d9cf2a389b09d2d118dedf98cff\", \"width\": 1095, \"height\": 460}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/jYmUc7J9Vfl8CLrzynXZKkot8hBeP6GRM1VC7yFU2Yk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3c59a10f15e73ff37f25eeaaf8f856638855fbf1\", \"width\": 108, \"height\": 45}, {\"url\": \"https://external-preview.redd.it/jYmUc7J9Vfl8CLrzynXZKkot8hBeP6GRM1VC7yFU2Yk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=adeb7a5834bdeb764b4f7e623768dc9bbce63712\", \"width\": 216, \"height\": 90}, {\"url\": \"https://external-preview.redd.it/jYmUc7J9Vfl8CLrzynXZKkot8hBeP6GRM1VC7yFU2Yk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6eabc6c931cdf1a427e16f63ef9daa403f905637\", \"width\": 320, \"height\": 134}, {\"url\": \"https://external-preview.redd.it/jYmUc7J9Vfl8CLrzynXZKkot8hBeP6GRM1VC7yFU2Yk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a46e0b439ad178b882327b7054a38f551acdd6f4\", \"width\": 640, \"height\": 268}, {\"url\": \"https://external-preview.redd.it/jYmUc7J9Vfl8CLrzynXZKkot8hBeP6GRM1VC7yFU2Yk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=98c97e01ee7b5b5b6468155920e76b826cbd2610\", \"width\": 960, \"height\": 403}, {\"url\": \"https://external-preview.redd.it/jYmUc7J9Vfl8CLrzynXZKkot8hBeP6GRM1VC7yFU2Yk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=f46ec66df0cae99bf0378c097d66cc6e9e27e530\", \"width\": 1080, \"height\": 453}], \"variants\": {}, \"id\": \"1KMKi7cniBy7rFp7yVQHjpWktU6JKmpLONn3V8biSVo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cacqpf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ConvertCoffeeToCode\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cacqpf/flair_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://google.com\", \"subreddit_subscribers\": 754, \"created_utc\": 1562537650.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3zjl6j4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"photos taken moments before c r o n c h\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 106, \"hide_score\": false, \"name\": \"t3_caces9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Bg3xPPP1vJdl81DLCmx9yVVVB4oU8i4qvnfEnhDYwUA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562564649.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/tn1pb0tqby831.jpg?auto=webp\\u0026s=e3ffd6f0ab50c08309edb6c96abd4f27e9bb713a\", \"width\": 960, \"height\": 728}, \"resolutions\": [{\"url\": \"https://preview.redd.it/tn1pb0tqby831.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8f1df4d63c2686c4451df853c37716529d34d04a\", \"width\": 108, \"height\": 81}, {\"url\": \"https://preview.redd.it/tn1pb0tqby831.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c70a77ce6a3e3745e4c769d53d24fe7fc5a8590f\", \"width\": 216, \"height\": 163}, {\"url\": \"https://preview.redd.it/tn1pb0tqby831.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4eac67220ea5ae59a81781ea25363fe63828cf80\", \"width\": 320, \"height\": 242}, {\"url\": \"https://preview.redd.it/tn1pb0tqby831.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=51956da61fb20337fa6072b26242aa2bf5d7ed94\", \"width\": 640, \"height\": 485}, {\"url\": \"https://preview.redd.it/tn1pb0tqby831.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=80f1d03d75bb424bad9ca1393641fd921a4b5102\", \"width\": 960, \"height\": 728}], \"variants\": {}, \"id\": \"XR1FVLC65htEmmRkG5rT9PLboLpH_ksS1TUWphGRz5U\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"caces9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GayFurfaggot\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/caces9/photos_taken_moments_before_c_r_o_n_c_h/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/tn1pb0tqby831.jpg\", \"subreddit_subscribers\": 754, \"created_utc\": 1562535849.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_34r3n4tz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"An obsessive Gunner farm builder?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ca2c7h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/c9d8aE2vj0oUO9UV-2efteLa5jCY8BfHb_b3FB5ewjQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562498282.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/1bbagxefus831.png?auto=webp\\u0026s=cb75226660554fcd9cee801c503cb1fc1a7bc49b\", \"width\": 640, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://preview.redd.it/1bbagxefus831.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=30b0415fecd2671dad1309ea6c50357baab397c6\", \"width\": 108, \"height\": 182}, {\"url\": \"https://preview.redd.it/1bbagxefus831.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=20f9ff50e5559955c81a2aa4907fb2bfff9c4559\", \"width\": 216, \"height\": 364}, {\"url\": \"https://preview.redd.it/1bbagxefus831.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1edda1b509e8768bc3a1b1e77a07e1f6a135bcee\", \"width\": 320, \"height\": 540}, {\"url\": \"https://preview.redd.it/1bbagxefus831.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b6100c92daa3084382ff25ed8d8072b472acbf11\", \"width\": 640, \"height\": 1080}], \"variants\": {}, \"id\": \"2YcXBCSDwS6InAWBwZYD-Hjlfz8XfWwbNwYxxtb8coM\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ca2c7h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DragonHeinie\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ca2c7h/an_obsessive_gunner_farm_builder/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/1bbagxefus831.png\", \"subreddit_subscribers\": 754, \"created_utc\": 1562469482.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"## heading 2\\nsome text\\n\\n#### heading 4\\nsome more text\\n\\n\\nasd\", \"author_fullname\": \"t2_6c490\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"formatting test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ca2akn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562497967.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003Eheading 2\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003Esome text\\u003C/p\\u003E\\n\\n\\u003Ch4\\u003Eheading 4\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003Esome more text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Easd\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ca2akn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ElGuien\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ca2akn/formatting_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ca2akn/formatting_test/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562469167.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://i.redd.it/nk2q0y66nr831.png\\n\\nYeeeeeeeeeeeeeeeeet\\n\\nServer Events and Arena available.\\n\\n\\u0026#x200B;\\n\\nServer information:\\n\\n1\\n\\n2\\n\\n3\\n\\n4\\n\\n5\\n\\n\\u0026#x200B;\\n\\nDiscord Server: [https://discord.gg](https://discord.gg/BycrQJZ)\", \"author_fullname\": \"t2_1ngqvt7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Yeet - Yeet - Yeet\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 51, \"hide_score\": false, \"media_metadata\": {\"nk2q0y66nr831\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 274, \"x\": 746, \"u\": \"https://i.redd.it/nk2q0y66nr831.png\"}, \"m\": \"image/png\", \"id\": \"nk2q0y66nr831\"}}, \"name\": \"t3_ca01lf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/81NARjxyvPiBWE4lctiZBbfw4n4IX_-f_gAcCBUsoQM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562483689.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/nk2q0y66nr831.png\\\"\\u003Ehttps://i.redd.it/nk2q0y66nr831.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYeeeeeeeeeeeeeeeeet\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EServer Events and Arena available.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EServer information:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E3\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E4\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E5\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDiscord Server: \\u003Ca href=\\\"https://discord.gg/BycrQJZ\\\"\\u003Ehttps://discord.gg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ca01lf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"terrible_fate_\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ca01lf/yeet_yeet_yeet/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ca01lf/yeet_yeet_yeet/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562454889.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Rules \\n\\n1. Energies equalized \\n2. Battle takes place where Naruto fought Pain\\n3. Natsu has knowledge all basic ninja would have (example: what genjutsu is) \\n4. Pain has all 6 paths \\n\\n**Round 1** Natsu is restricted to base form vs Pain\\n\\n**Round 2** Natsu can use Dragon Force and Fire Dragon King Mode\\n\\n**Round 3** Same as round 2, but Natsu gains all the info Katsuyu and Jiraiya gave Naruto\\n\\n**Round 4** Same as round 3, but speed is equalized\", \"author_fullname\": \"t2_ff2y5hx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Boiii\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c9xxh0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562472079.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERules \\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EEnergies equalized \\u003C/li\\u003E\\n\\u003Cli\\u003EBattle takes place where Naruto fought Pain\\u003C/li\\u003E\\n\\u003Cli\\u003ENatsu has knowledge all basic ninja would have (example: what genjutsu is) \\u003C/li\\u003E\\n\\u003Cli\\u003EPain has all 6 paths \\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERound 1\\u003C/strong\\u003E Natsu is restricted to base form vs Pain\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERound 2\\u003C/strong\\u003E Natsu can use Dragon Force and Fire Dragon King Mode\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERound 3\\u003C/strong\\u003E Same as round 2, but Natsu gains all the info Katsuyu and Jiraiya gave Naruto\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERound 4\\u003C/strong\\u003E Same as round 3, but speed is equalized\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9xxh0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"RecreationalPlebeian\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c9xxh0/boiii/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c9xxh0/boiii/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562443279.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hi, I'm currently following this tutorial - [https://www.youtube.com/watch?v=PsIuSwSj3CM\\u0026t=757s](https://www.youtube.com/watch?v=PsIuSwSj3CM\\u0026t=757s) \\\\- the goal of which is to have a form appear in Google Sheets that, when filled out, displays that data in the spreadsheet. I wrote the html and google script as shown in the tutorial, but when filling out the fields and clicking submit, the data does not transfer to the spreadsheet (as shown in the photo below). \\n\\n\\n`\\u003Ciframe height=\\\"265\\\" style=\\\"width: 100%;\\\" scrolling=\\\"no\\\" title=\\\"MMqRGq\\\" src=\\\"`[`//codepen.io/giulianij/embed/MMqRGq/?height=265\\u0026theme-id=0\\u0026default-tab=html,result`](//codepen.io/giulianij/embed/MMqRGq/?height=265\\u0026theme-id=0\\u0026default-tab=html,result)`\\\" frameborder=\\\"no\\\" allowtransparency=\\\"true\\\" allowfullscreen=\\\"true\\\"\\u003E`\\n\\n `See the Pen \\u003Ca href='`[`https://codepen.io/giulianij/pen/MMqRGq/`](https://codepen.io/giulianij/pen/MMqRGq/)`'\\u003EMMqRGq\\u003C/a\\u003E by giulianij`\\n\\n `(\\u003Ca href='`[`https://codepen.io/giulianij`](https://codepen.io/giulianij)`'\\u003E@giulianij\\u003C/a\\u003E) on \\u003Ca href='`[`https://codepen.io`](https://codepen.io)`'\\u003ECodePen\\u003C/a\\u003E.`\\n\\n`\\u003C/iframe\\u003E`\\n\\n\\u0026#x200B;\\n\\nGoogle Script:\\n\\n function showUserForm() {\\n \\n var template = HtmlService.createTemplateFromFile(\\\"userform\\\");\\n var html = template.evaluate();\\n html.setTitle(\\\"User Form Basics\\\");\\n SpreadsheetApp.getUi().showSidebar(html);\\n \\n }\\n \\n function appendData(data){\\n \\n var ws = SpreadsheetApp.getactiveSpreadsheet().getSheetByName(\\\"Data\\\");\\n \\n ws.appendRow([data.name, data.phone])\\n \\n \\n \\n }\\n \\n \\n function errorMessage(){\\n Browser.msgBox(\\\"Name \\u0026 Phone required!\\\");\\n \\n }\\n\\n\\u0026#x200B;\\n\\nSpreadsheet:\", \"author_fullname\": \"t2_3jl7ggng\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ahfdasfasdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"media_metadata\": {\"lp9s4jqlvp831\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 341, \"x\": 902, \"u\": \"https://i.redd.it/lp9s4jqlvp831.png\"}, \"m\": \"image/png\", \"id\": \"lp9s4jqlvp831\"}}, \"name\": \"t3_c9w2ak\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/PsIuSwSj3CM?start=757\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Google Sheets - Userform\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/PsIuSwSj3CM?start=757\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Learn Google Spreadsheets\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/PsIuSwSj3CM/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UC8p19gUXJYTsUPEpusHgteQ\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/PsIuSwSj3CM?start=757\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/c9w2ak\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/qdynGhvN9WmBcMX4b4DqYOYj48N4ayUHtTnnEutzPnI.jpg\", \"edited\": 1562433889.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562462373.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I\\u0026#39;m currently following this tutorial - \\u003Ca href=\\\"https://www.youtube.com/watch?v=PsIuSwSj3CM\\u0026amp;t=757s\\\"\\u003Ehttps://www.youtube.com/watch?v=PsIuSwSj3CM\\u0026amp;t=757s\\u003C/a\\u003E - the goal of which is to have a form appear in Google Sheets that, when filled out, displays that data in the spreadsheet. I wrote the html and google script as shown in the tutorial, but when filling out the fields and clicking submit, the data does not transfer to the spreadsheet (as shown in the photo below). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026lt;iframe height=\\u0026quot;265\\u0026quot; style=\\u0026quot;width: 100%;\\u0026quot; scrolling=\\u0026quot;no\\u0026quot; title=\\u0026quot;MMqRGq\\u0026quot; src=\\u0026quot;\\u003C/code\\u003E\\u003Ca href=\\\"//codepen.io/giulianij/embed/MMqRGq/?height=265\\u0026amp;theme-id=0\\u0026amp;default-tab=html,result\\\"\\u003E\\u003Ccode\\u003E//codepen.io/giulianij/embed/MMqRGq/?height=265\\u0026amp;theme-id=0\\u0026amp;default-tab=html,result\\u003C/code\\u003E\\u003C/a\\u003E\\u003Ccode\\u003E\\u0026quot; frameborder=\\u0026quot;no\\u0026quot; allowtransparency=\\u0026quot;true\\u0026quot; allowfullscreen=\\u0026quot;true\\u0026quot;\\u0026gt;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003ESee the Pen \\u0026lt;a href=\\u0026#39;\\u003C/code\\u003E\\u003Ca href=\\\"https://codepen.io/giulianij/pen/MMqRGq/\\\"\\u003E\\u003Ccode\\u003Ehttps://codepen.io/giulianij/pen/MMqRGq/\\u003C/code\\u003E\\u003C/a\\u003E\\u003Ccode\\u003E\\u0026#39;\\u0026gt;MMqRGq\\u0026lt;/a\\u0026gt; by giulianij\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(\\u0026lt;a href=\\u0026#39;\\u003C/code\\u003E\\u003Ca href=\\\"https://codepen.io/giulianij\\\"\\u003E\\u003Ccode\\u003Ehttps://codepen.io/giulianij\\u003C/code\\u003E\\u003C/a\\u003E\\u003Ccode\\u003E\\u0026#39;\\u0026gt;@giulianij\\u0026lt;/a\\u0026gt;) on \\u0026lt;a href=\\u0026#39;\\u003C/code\\u003E\\u003Ca href=\\\"https://codepen.io\\\"\\u003E\\u003Ccode\\u003Ehttps://codepen.io\\u003C/code\\u003E\\u003C/a\\u003E\\u003Ccode\\u003E\\u0026#39;\\u0026gt;CodePen\\u0026lt;/a\\u0026gt;.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026lt;/iframe\\u0026gt;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoogle Script:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Efunction showUserForm() {\\n\\n var template = HtmlService.createTemplateFromFile(\\u0026quot;userform\\u0026quot;);\\n var html = template.evaluate();\\n html.setTitle(\\u0026quot;User Form Basics\\u0026quot;);\\n SpreadsheetApp.getUi().showSidebar(html);\\n\\n}\\n\\nfunction appendData(data){\\n\\n var ws = SpreadsheetApp.getactiveSpreadsheet().getSheetByName(\\u0026quot;Data\\u0026quot;);\\n\\n ws.appendRow([data.name, data.phone])\\n\\n\\n\\n}\\n\\n\\nfunction errorMessage(){\\n Browser.msgBox(\\u0026quot;Name \\u0026amp; Phone required!\\u0026quot;);\\n\\n}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESpreadsheet:\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/QjtLRrBGhxxuljBe7WpDchNugmzglbggL8Fv5B1K4Ig.jpg?auto=webp\\u0026s=da6e08de8d9c378f771a6409735731e914d43fe0\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/QjtLRrBGhxxuljBe7WpDchNugmzglbggL8Fv5B1K4Ig.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4ac00d7c7e7901e2c9b6d6cb715b013355b24227\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/QjtLRrBGhxxuljBe7WpDchNugmzglbggL8Fv5B1K4Ig.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c3eeae538edabe913ed0ba35bcf7fdefc8fd6b5b\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/QjtLRrBGhxxuljBe7WpDchNugmzglbggL8Fv5B1K4Ig.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=17c9386358963bc297f3367453c734f8d4aa2044\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"1lNAS3q1Fj5Sakr2RY6y194y53xbQfZ3FemDBV7tPM0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9w2ak\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jggiuliani\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c9w2ak/ahfdasfasdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c9w2ak/ahfdasfasdf/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562433573.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Google Sheets - Userform\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/PsIuSwSj3CM?start=757\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Learn Google Spreadsheets\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/PsIuSwSj3CM/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UC8p19gUXJYTsUPEpusHgteQ\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" super^script script script script script\\n\\nsuper^script script script script script\\n\\n super^script ^script ^script ^script ^script\\n\\nsuper^script ^script ^script ^script ^script\\n\\n super^script^script^script^script^script\\n\\nsuper^script^script^script^script^script\", \"author_fullname\": \"t2_pcg1pu4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"super script\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c9u1ck\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562451354.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003Esuper^script script script script script\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Esuper\\u003Csup\\u003Escript\\u003C/sup\\u003E script script script script\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Esuper^script ^script ^script ^script ^script\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Esuper\\u003Csup\\u003Escript\\u003C/sup\\u003E \\u003Csup\\u003Escript\\u003C/sup\\u003E \\u003Csup\\u003Escript\\u003C/sup\\u003E \\u003Csup\\u003Escript\\u003C/sup\\u003E \\u003Csup\\u003Escript\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Esuper^script^script^script^script^script\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Esuper\\u003Csup\\u003Escript\\u003Csup\\u003Escript\\u003Csup\\u003Escript\\u003Csup\\u003Escript\\u003Csup\\u003Escript\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9u1ck\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SapadorCastelo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c9u1ck/super_script/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c9u1ck/super_script/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562422554.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_35jsybhg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Minecraft Lego Moc\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_c9qkhc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2FI8qJuEC%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2FI8qJuEC\\u0026image=https%3A%2F%2Fi.imgur.com%2F0plPWRS.jpg%3Ffbplay\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"377\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 377}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 11 votes and 401 views. Shared by squidmittens. Minecraft Lego Moc\", \"title\": \"Minecraft Lego Moc\", \"url\": \"https://imgur.com/a/I8qJuEC\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 377, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2FI8qJuEC%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2FI8qJuEC\\u0026image=https%3A%2F%2Fi.imgur.com%2F0plPWRS.jpg%3Ffbplay\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"377\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.imgur.com/0plPWRS.jpg?fbplay\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2FI8qJuEC%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2FI8qJuEC\\u0026image=https%3A%2F%2Fi.imgur.com%2F0plPWRS.jpg%3Ffbplay\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"377\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/c9qkhc\", \"height\": 377}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/rvCGuMSJnCDDdggrwjXFdAawIyBA5-eGpQS3N0M_Wqw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562424182.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/krlOZyB3gmExbyftrT1SXh5oiye0H5kzxIX6k_Wu8fE.jpg?auto=webp\\u0026s=d89cef6dee760918fa1b0e9ec584183073438d2f\", \"width\": 600, \"height\": 315}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/krlOZyB3gmExbyftrT1SXh5oiye0H5kzxIX6k_Wu8fE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e599ce666312ff011a4e68b0a7b7837cf2565e7e\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/krlOZyB3gmExbyftrT1SXh5oiye0H5kzxIX6k_Wu8fE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=62717d6671b7760472878dd54a66ee38f60e167e\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/krlOZyB3gmExbyftrT1SXh5oiye0H5kzxIX6k_Wu8fE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6076463d79484e0ab1410b53b6333b9232f211af\", \"width\": 320, \"height\": 168}], \"variants\": {}, \"id\": \"4f-AYx56o1g0pFVrenxD4H5HX-RPOTqGajKG6qDRbkE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9qkhc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"squidmittens\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c9qkhc/minecraft_lego_moc/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/gallery/I8qJuEC\", \"subreddit_subscribers\": 754, \"created_utc\": 1562395382.0, \"discussion_type\": null, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 11 votes and 401 views. Shared by squidmittens. Minecraft Lego Moc\", \"title\": \"Minecraft Lego Moc\", \"url\": \"https://imgur.com/a/I8qJuEC\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 377, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2FI8qJuEC%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2FI8qJuEC\\u0026image=https%3A%2F%2Fi.imgur.com%2F0plPWRS.jpg%3Ffbplay\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"377\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.imgur.com/0plPWRS.jpg?fbplay\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3fq1p53n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Jordi Jordan Throws Controller After Losing Diamond Rank on Siege\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_c9n08a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FVrRTxvqesnQ%3Ffeature%3Doembed\\u0026url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DVrRTxvqesnQ\\u0026image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FVrRTxvqesnQ%2Fhqdefault.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=youtube\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"description\": \"WingsofRedemption AKA Jordi Jordan AKA Richard Sam Mcgravy Throws Controller After Losing Diamond Rank on Siege\", \"title\": \"Jordi Jordan Throws Controller After Losing Diamond Rank on Siege\", \"url\": \"http://www.youtube.com/watch?v=VrRTxvqesnQ\", \"type\": \"video\", \"author_name\": \"Offline Diet\", \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FVrRTxvqesnQ%3Ffeature%3Doembed\\u0026url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DVrRTxvqesnQ\\u0026image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FVrRTxvqesnQ%2Fhqdefault.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=youtube\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"version\": \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VrRTxvqesnQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCQJe0ZAe68UhDmmF2HDq9eQ\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FVrRTxvqesnQ%3Ffeature%3Doembed\\u0026url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DVrRTxvqesnQ\\u0026image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FVrRTxvqesnQ%2Fhqdefault.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=youtube\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/c9n08a\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/bPryNS9kgBpVfpODmuzMjE_3iFMHPn2NDrgL8V5gfN4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562399694.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/2DVTFiJ-DP00bV1MMPaCiYdVbsWUZH8d3-DrR5NGsx4.jpg?auto=webp\\u0026s=157af0dece983a4b6321d8f39ed5fdf86a3a14a4\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/2DVTFiJ-DP00bV1MMPaCiYdVbsWUZH8d3-DrR5NGsx4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4b036b07ee4060da618f954afda4f6d7ed10b85e\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/2DVTFiJ-DP00bV1MMPaCiYdVbsWUZH8d3-DrR5NGsx4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b757bcf48fca1c3743fec22deed8c3b4ed648441\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/2DVTFiJ-DP00bV1MMPaCiYdVbsWUZH8d3-DrR5NGsx4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b0e696d118011de436f8321f1107d3b7dbb6737e\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"nqHcEa2EW45x9THr0u37TRxYMyyhQ5h3RdeUetdxLoE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9n08a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OfflineDiet\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c9n08a/jordi_jordan_throws_controller_after_losing/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/attribution_link?a=Jh4f9R7nHas\\u0026u=%2Fwatch%3Fv%3DVrRTxvqesnQ%26feature%3Dshare\", \"subreddit_subscribers\": 754, \"created_utc\": 1562370894.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"description\": \"WingsofRedemption AKA Jordi Jordan AKA Richard Sam Mcgravy Throws Controller After Losing Diamond Rank on Siege\", \"title\": \"Jordi Jordan Throws Controller After Losing Diamond Rank on Siege\", \"url\": \"http://www.youtube.com/watch?v=VrRTxvqesnQ\", \"type\": \"video\", \"author_name\": \"Offline Diet\", \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FVrRTxvqesnQ%3Ffeature%3Doembed\\u0026url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DVrRTxvqesnQ\\u0026image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FVrRTxvqesnQ%2Fhqdefault.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=youtube\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"version\": \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VrRTxvqesnQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCQJe0ZAe68UhDmmF2HDq9eQ\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" \\n\\nHey, I run an instagram account called stwleakss and in the past couple of months I went from gaining 100-300 followers daily or getting -10 daily. If you'd like to view my full stats, you can use the link: [https://igblade.com/stwleakss#overview](https://igblade.com/stwleakss#overview) and switch the results from 30 days to all time.\\n\\nFrom 0-7000, nothing was wrong, I started gaining 100s of followers daily when I first started but it slowed down a little bit and my posts were getting a good amount of likes for my following count and then I started to get 100-300 a followers a day which was great.\\n\\n[https://i.imgur.com/AEeFrkx.png](https://i.imgur.com/AEeFrkx.png)\\n\\nAnd then suddenly on April 23rd, my account got shadowbanned for a reason I still don't know (a lot of my friends accounts with \\\\~50k followers were also getting shadowbanned at this time).\\n\\n[https://i.imgur.com/YhJsAdZ.png](https://i.imgur.com/YhJsAdZ.png)\\n\\nI heard that I should just stop posting for 2 weeks; so I did. And instantly when the shadowban went, I was gaining 50-70 followers.\\n\\n[https://i.imgur.com/3ldInGM.png](https://i.imgur.com/3ldInGM.png)\\n\\nAnd then on May 29th, I got shadowbanned again and the next day I instantly lost -70 followers.\\n\\n[https://i.imgur.com/W77TIXr.png](https://i.imgur.com/W77TIXr.png)\\n\\nAfter this I sort of gave up, but I noticed something; when I was unshadowbanned; I wasn't getting my constant stream of 30-60 followers again like I did when I was unshadowbanned previously.\\n\\n[https://i.imgur.com/SyeDgkF.png](https://i.imgur.com/SyeDgkF.png)\\n\\nA few days ago, I started posting again and my first couple of posts got like 100-200 likes each (not good at all) and I was still losing 1-5 followers on those days. Then one of my posts blew up; got 1.5k likes, 16k impressions \\u0026 98% of accounts weren't following me; but previously when I would get a post which would blow up to 1.5-5k likes; I would get around +30 followers that day from the post but on that day I lost 5 followers. \\n\\n[https://i.imgur.com/nmqcHNC.png](https://i.imgur.com/nmqcHNC.png)\\n\\nI'm going to record my statistics on a spreadsheet and In 2 weeks I'll see if there is any improvement with my account. As I've been shadowbanned twice; can people just no longer discover my account anymore in the explorer page or something? I really hope someone can help me out,\\n\\n[https://i.imgur.com/WIMjeA6.png](https://i.imgur.com/WIMjeA6.png) \\n\\nThanks for reading.\", \"author_fullname\": \"t2_2nd4hgpp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"title\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c9laiw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562389884.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, I run an instagram account called stwleakss and in the past couple of months I went from gaining 100-300 followers daily or getting -10 daily. If you\\u0026#39;d like to view my full stats, you can use the link: \\u003Ca href=\\\"https://igblade.com/stwleakss#overview\\\"\\u003Ehttps://igblade.com/stwleakss#overview\\u003C/a\\u003E and switch the results from 30 days to all time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom 0-7000, nothing was wrong, I started gaining 100s of followers daily when I first started but it slowed down a little bit and my posts were getting a good amount of likes for my following count and then I started to get 100-300 a followers a day which was great.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/AEeFrkx.png\\\"\\u003Ehttps://i.imgur.com/AEeFrkx.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd then suddenly on April 23rd, my account got shadowbanned for a reason I still don\\u0026#39;t know (a lot of my friends accounts with ~50k followers were also getting shadowbanned at this time).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/YhJsAdZ.png\\\"\\u003Ehttps://i.imgur.com/YhJsAdZ.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI heard that I should just stop posting for 2 weeks; so I did. And instantly when the shadowban went, I was gaining 50-70 followers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/3ldInGM.png\\\"\\u003Ehttps://i.imgur.com/3ldInGM.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd then on May 29th, I got shadowbanned again and the next day I instantly lost -70 followers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/W77TIXr.png\\\"\\u003Ehttps://i.imgur.com/W77TIXr.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter this I sort of gave up, but I noticed something; when I was unshadowbanned; I wasn\\u0026#39;t getting my constant stream of 30-60 followers again like I did when I was unshadowbanned previously.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/SyeDgkF.png\\\"\\u003Ehttps://i.imgur.com/SyeDgkF.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA few days ago, I started posting again and my first couple of posts got like 100-200 likes each (not good at all) and I was still losing 1-5 followers on those days. Then one of my posts blew up; got 1.5k likes, 16k impressions \\u0026amp; 98% of accounts weren\\u0026#39;t following me; but previously when I would get a post which would blow up to 1.5-5k likes; I would get around +30 followers that day from the post but on that day I lost 5 followers. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/nmqcHNC.png\\\"\\u003Ehttps://i.imgur.com/nmqcHNC.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m going to record my statistics on a spreadsheet and In 2 weeks I\\u0026#39;ll see if there is any improvement with my account. As I\\u0026#39;ve been shadowbanned twice; can people just no longer discover my account anymore in the explorer page or something? I really hope someone can help me out,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/WIMjeA6.png\\\"\\u003Ehttps://i.imgur.com/WIMjeA6.png\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for reading.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/0jZSF2K4wsJuY7De1STLSC2pzGxSWG3RoaROLCqpRc0.png?auto=webp\\u0026s=30ca7cb54cab68cf47476e4ea7422e987cdb4d58\", \"width\": 418, \"height\": 631}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/0jZSF2K4wsJuY7De1STLSC2pzGxSWG3RoaROLCqpRc0.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c27f34436c10ce5013f450b72302d2ae6ac1e155\", \"width\": 108, \"height\": 163}, {\"url\": \"https://external-preview.redd.it/0jZSF2K4wsJuY7De1STLSC2pzGxSWG3RoaROLCqpRc0.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1a718492fb9979b26d9d73408373ab5a9d8c31ca\", \"width\": 216, \"height\": 326}, {\"url\": \"https://external-preview.redd.it/0jZSF2K4wsJuY7De1STLSC2pzGxSWG3RoaROLCqpRc0.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=96cf458ad5364dac5e07c635887fd8372d3b653b\", \"width\": 320, \"height\": 483}], \"variants\": {}, \"id\": \"6Qf8E5spMshMBPvJkLaPdqCGZNAW0RSRSfxXUg5bqGE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9laiw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"stwleakss\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c9laiw/title/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c9laiw/title/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562361084.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[PCPartPicker Part List](https://pcpartpicker.com/list/KzJWxG)\\n\\nType|Item|Price\\n:----|:----|:----\\n**CPU** | [Intel - Core i3-9100F 3.6 GHz Quad-Core Processor](https://pcpartpicker.com/product/YTbwrH/intel-core-i3-9100f-36-ghz-quad-core-processor-bx80684i39100f) | $94.99 @ Newegg \\n**CPU Cooler** | [Thermaltake - CLP0556-B 39.7 CFM Sleeve Bearing CPU Cooler](https://pcpartpicker.com/product/CRjG3C/thermaltake-cpu-cooler-clp0556b) | $10.89 @ OutletPC \\n**Motherboard** | [ASRock - B365M Phantom Gaming 4 Micro ATX LGA1151 Motherboard](https://pcpartpicker.com/product/bPrmP6/asrock-b365m-phantom-gaming-4-micro-atx-lga1151-motherboard-b365m-phantom-gaming-4) | $91.79 @ SuperBiiz \\n**Memory** | [G.Skill - Aegis 16 GB (2 x 8 GB) DDR4-2400 Memory](https://pcpartpicker.com/product/xxs8TW/gskill-memory-f42400c15d16gis) | $55.89 @ OutletPC \\n**Storage** | [Kingston - A400 480 GB 2.5\\\" Solid State Drive](https://pcpartpicker.com/product/WGZ2FT/kingston-a400-480gb-25-solid-state-drive-sa400s37480g) | $49.97 @ Amazon \\n**Video Card** | [ASRock - Radeon RX 570 4 GB Phantom Gaming D Video Card](https://pcpartpicker.com/product/sWL48d/asrock-radeon-rx-570-4-tb-phantom-gaming-d-video-card-phantom-rx570-gdr-4g) | $139.99 @ Newegg \\n**Case** | [Cougar - MX330 ATX Mid Tower Case](https://pcpartpicker.com/product/vYp323/cougar-mx330-atx-mid-tower-case-mx330) | $39.90 @ Amazon \\n**Power Supply** | [Corsair - VS 550 W 80+ Certified ATX Power Supply](https://pcpartpicker.com/product/jZ22FT/corsair-vs-550w-80-certified-atx-power-supply-cp-9020171-na) | $33.98 @ Newegg \\n | *Prices include shipping, taxes, rebates, and discounts* |\\n | Total (before mail-in rebates) | $532.40\\n | Mail-in rebates | -$15.00\\n | **Total** | **$517.40**\\n | Generated by [PCPartPicker](https://pcpartpicker.com) 2019-07-05 10:11 EDT-0400 |\", \"author_fullname\": \"t2_pzmrj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test pcpartpicker\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c9gem3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562364795.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/list/KzJWxG\\\"\\u003EPCPartPicker Part List\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EType\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/YTbwrH/intel-core-i3-9100f-36-ghz-quad-core-processor-bx80684i39100f\\\"\\u003EIntel - Core i3-9100F 3.6 GHz Quad-Core Processor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$94.99 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU Cooler\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/CRjG3C/thermaltake-cpu-cooler-clp0556b\\\"\\u003EThermaltake - CLP0556-B 39.7 CFM Sleeve Bearing CPU Cooler\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$10.89 @ OutletPC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/bPrmP6/asrock-b365m-phantom-gaming-4-micro-atx-lga1151-motherboard-b365m-phantom-gaming-4\\\"\\u003EASRock - B365M Phantom Gaming 4 Micro ATX LGA1151 Motherboard\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$91.79 @ SuperBiiz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/xxs8TW/gskill-memory-f42400c15d16gis\\\"\\u003EG.Skill - Aegis 16 GB (2 x 8 GB) DDR4-2400 Memory\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$55.89 @ OutletPC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/WGZ2FT/kingston-a400-480gb-25-solid-state-drive-sa400s37480g\\\"\\u003EKingston - A400 480 GB 2.5\\u0026quot; Solid State Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$49.97 @ Amazon\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EVideo Card\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/sWL48d/asrock-radeon-rx-570-4-tb-phantom-gaming-d-video-card-phantom-rx570-gdr-4g\\\"\\u003EASRock - Radeon RX 570 4 GB Phantom Gaming D Video Card\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$139.99 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECase\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/vYp323/cougar-mx330-atx-mid-tower-case-mx330\\\"\\u003ECougar - MX330 ATX Mid Tower Case\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$39.90 @ Amazon\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EPower Supply\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/jZ22FT/corsair-vs-550w-80-certified-atx-power-supply-cp-9020171-na\\\"\\u003ECorsair - VS 550 W 80+ Certified ATX Power Supply\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$33.98 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cem\\u003EPrices include shipping, taxes, rebates, and discounts\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETotal (before mail-in rebates)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$532.40\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMail-in rebates\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-$15.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETotal\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$517.40\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGenerated by \\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003EPCPartPicker\\u003C/a\\u003E 2019-07-05 10:11 EDT-0400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ZWnlytiKvEvu1QD5eEa0NqBoGwApeGVwRB3OaJfPuHU.jpg?auto=webp\\u0026s=4b46595dc8de7b5be560e9643b87f58e03f19ac5\", \"width\": 500, \"height\": 500}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ZWnlytiKvEvu1QD5eEa0NqBoGwApeGVwRB3OaJfPuHU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=1884bd35c6fab3fb04ad93b4b8b8e1c1176b3e1a\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/ZWnlytiKvEvu1QD5eEa0NqBoGwApeGVwRB3OaJfPuHU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b525e62e165ee3272128c9c957912f3a18cd061b\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/ZWnlytiKvEvu1QD5eEa0NqBoGwApeGVwRB3OaJfPuHU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a57bc1e55a02e8f12cd19f9fd6308952697a9625\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"ttn0CtE8jPy_dtxi4anoGnQzqL03u-votcr1AurG-xM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9gem3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zgillet\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c9gem3/test_pcpartpicker/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c9gem3/test_pcpartpicker/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562335995.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Join bla bla bla for bla bla bal\\n\\n [https://www.kickstarter.com/projects/atthisarts/icarus-0](https://www.kickstarter.com/projects/atthisarts/icarus-0) \\n\\n\\u0026#x200B;\\n\\nhttps://reddit.com/link/c96k9g/video/c5pkvmxt2c831/player\", \"author_fullname\": \"t2_fu98v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Graphic Novel Kickstarter\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"c5pkvmxt2c831\": {\"status\": \"valid\", \"e\": \"RedditVideo\", \"dashUrl\": \"https://v.redd.it/link/c96k9g/asset/c5pkvmxt2c831/DASHPlaylist.mpd\", \"x\": 1920, \"y\": 1080, \"hlsUrl\": \"https://v.redd.it/link/c96k9g/asset/c5pkvmxt2c831/HLSPlaylist.m3u8\", \"id\": \"c5pkvmxt2c831\", \"isGif\": false}}, \"name\": \"t3_c96k9g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fatthisarts%2Ficarus-0%2Fwidget%2Fvideo.html\\u0026url=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fatthisarts%2Ficarus-0\\u0026image=https%3A%2F%2Fksr-ugc.imgix.net%2Fassets%2F025%2F541%2F592%2F5450357246a0d3c62649f7cd158b8100_original.jpg%3Fixlib%3Drb-2.1.0%26crop%3Dfaces%26w%3D560%26h%3D315%26fit%3Dcrop%26v%3D1560963247%26auto%3Dformat%26frame%3D1%26q%3D92%26s%3Da69c98e4dca94e206a428042c93b91d1\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=kickstarter\\\" width=\\\"480\\\" height=\\\"270\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 480, \"scrolling\": false, \"height\": 270}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"kickstarter.com\", \"oembed\": {\"provider_url\": \"https://www.kickstarter.com/\", \"description\": \"Atthis Arts, LLC is raising funds for Icarus \\u0026 Jellinek Graphic Novels by Gregory A. Wilson on Kickstarter! Gregory A. Wilson and \\u00c1thila Fabbio present the graphic novels of the winged young man, Icarus, and flamepetal prospector, Jellinek.\", \"title\": \"Icarus \\u0026 Jellinek Graphic Novels by Gregory A. Wilson\", \"type\": \"rich\", \"author_name\": \"Atthis Arts, LLC\", \"height\": 270, \"width\": 480, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fatthisarts%2Ficarus-0%2Fwidget%2Fvideo.html\\u0026url=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fatthisarts%2Ficarus-0\\u0026image=https%3A%2F%2Fksr-ugc.imgix.net%2Fassets%2F025%2F541%2F592%2F5450357246a0d3c62649f7cd158b8100_original.jpg%3Fixlib%3Drb-2.1.0%26crop%3Dfaces%26w%3D560%26h%3D315%26fit%3Dcrop%26v%3D1560963247%26auto%3Dformat%26frame%3D1%26q%3D92%26s%3Da69c98e4dca94e206a428042c93b91d1\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=kickstarter\\\" width=\\\"480\\\" height=\\\"270\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 560, \"version\": \"1.0\", \"provider_name\": \"Kickstarter\", \"thumbnail_url\": \"https://ksr-ugc.imgix.net/assets/025/541/592/5450357246a0d3c62649f7cd158b8100_original.jpg?ixlib=rb-2.1.0\\u0026crop=faces\\u0026w=560\\u0026h=315\\u0026fit=crop\\u0026v=1560963247\\u0026auto=format\\u0026frame=1\\u0026q=92\\u0026s=a69c98e4dca94e206a428042c93b91d1\", \"thumbnail_height\": 315, \"author_url\": \"https://www.kickstarter.com/profile/atthisarts\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fatthisarts%2Ficarus-0%2Fwidget%2Fvideo.html\\u0026url=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fatthisarts%2Ficarus-0\\u0026image=https%3A%2F%2Fksr-ugc.imgix.net%2Fassets%2F025%2F541%2F592%2F5450357246a0d3c62649f7cd158b8100_original.jpg%3Fixlib%3Drb-2.1.0%26crop%3Dfaces%26w%3D560%26h%3D315%26fit%3Dcrop%26v%3D1560963247%26auto%3Dformat%26frame%3D1%26q%3D92%26s%3Da69c98e4dca94e206a428042c93b91d1\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=kickstarter\\\" width=\\\"480\\\" height=\\\"270\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 480, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/c96k9g\", \"height\": 270}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/K4NzWMTvQAAHF-16ehczAaeZgIHDsdxy4fSavTWdezI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562296922.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJoin bla bla bla for bla bla bal\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.kickstarter.com/projects/atthisarts/icarus-0\\\"\\u003Ehttps://www.kickstarter.com/projects/atthisarts/icarus-0\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://reddit.com/link/c96k9g/video/c5pkvmxt2c831/player\\\"\\u003Ehttps://reddit.com/link/c96k9g/video/c5pkvmxt2c831/player\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/V2q38357yM5Ez2GlL_GvbJ6EZqE_e-UPtiE1UmgJG8w.jpg?auto=webp\\u0026s=a48c1ace8ca65ccaf6d52d9dae03103851bae46c\", \"width\": 560, \"height\": 315}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/V2q38357yM5Ez2GlL_GvbJ6EZqE_e-UPtiE1UmgJG8w.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=14449faf6a6956bf3f75db59d52533d273c36738\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/V2q38357yM5Ez2GlL_GvbJ6EZqE_e-UPtiE1UmgJG8w.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f6484fec6b61e8491dafd33d3b247ab35e0fe890\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/V2q38357yM5Ez2GlL_GvbJ6EZqE_e-UPtiE1UmgJG8w.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=db412350a58af51452fc7cf94ac67718b559dacc\", \"width\": 320, \"height\": 180}], \"variants\": {}, \"id\": \"jCbRfAk8_Iu43uuyI_JVrZBxCf5p-OvtOetzL7wnkWM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c96k9g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cb_atthis\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c96k9g/graphic_novel_kickstarter/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c96k9g/graphic_novel_kickstarter/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562268122.0, \"discussion_type\": null, \"media\": {\"type\": \"kickstarter.com\", \"oembed\": {\"provider_url\": \"https://www.kickstarter.com/\", \"description\": \"Atthis Arts, LLC is raising funds for Icarus \\u0026 Jellinek Graphic Novels by Gregory A. Wilson on Kickstarter! Gregory A. Wilson and \\u00c1thila Fabbio present the graphic novels of the winged young man, Icarus, and flamepetal prospector, Jellinek.\", \"title\": \"Icarus \\u0026 Jellinek Graphic Novels by Gregory A. Wilson\", \"type\": \"rich\", \"author_name\": \"Atthis Arts, LLC\", \"height\": 270, \"width\": 480, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fatthisarts%2Ficarus-0%2Fwidget%2Fvideo.html\\u0026url=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fatthisarts%2Ficarus-0\\u0026image=https%3A%2F%2Fksr-ugc.imgix.net%2Fassets%2F025%2F541%2F592%2F5450357246a0d3c62649f7cd158b8100_original.jpg%3Fixlib%3Drb-2.1.0%26crop%3Dfaces%26w%3D560%26h%3D315%26fit%3Dcrop%26v%3D1560963247%26auto%3Dformat%26frame%3D1%26q%3D92%26s%3Da69c98e4dca94e206a428042c93b91d1\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=kickstarter\\\" width=\\\"480\\\" height=\\\"270\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 560, \"version\": \"1.0\", \"provider_name\": \"Kickstarter\", \"thumbnail_url\": \"https://ksr-ugc.imgix.net/assets/025/541/592/5450357246a0d3c62649f7cd158b8100_original.jpg?ixlib=rb-2.1.0\\u0026crop=faces\\u0026w=560\\u0026h=315\\u0026fit=crop\\u0026v=1560963247\\u0026auto=format\\u0026frame=1\\u0026q=92\\u0026s=a69c98e4dca94e206a428042c93b91d1\", \"thumbnail_height\": 315, \"author_url\": \"https://www.kickstarter.com/profile/atthisarts\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"New Mastery System is THE topic on this subreddit. Looks like it managed to upset and infuriate everyone - FTP and whales, weekend players and grinders and even trusty fans like myself. We all know the complaints: predatory, limiting, frustrating, not motivating to do anything - play, spend time or money. And people sound very sincere about it. \\n\\n\\n**Here is the solution: Dota-like Mastery System. Key features:**\\n\\n* Much higher maximum level (say, 1000). Higher levels are almost impossible to grind\\n* No daily/weekly XP cap at all\\n* Lower XP gain for daily wins\\n* Level milestones with unique rewards every 50 levels or so. Pet styles, battlefield styles, avatars, card styles and sleeves, animations, cursor styles, chat wheel options, voice lines. Increasing MC prize pool. So much stuff you could actually sell for money or time!\\n* Ability to purchase levels.\\n\\n**This system works perfectly for:**\\n\\n* Whales - so many unique cool goodies to unlock as a paying customer (that's too hard to grind)\\n* FTP - super motivated to invest time to progress. Incentivized to become paying customers and buy Mastery Pass because value.\\n* Average paying customers - lots of premium stuff for your buck\\n* Grinders - system rewards their natural desire to spend more time in the game\\n* Weekend/occasional players - no need to worry about missed levels, just have a good Magic time whenever you want\\n* WotC - customers are motivated to spend more time and money in the game they like, not to rant about the current system they are genuinely unhappy about.\\n\\nThis is a long-term solution that fully adapts to upcoming new sets or seasons. Moreover, this type of battle pass has a track record of being extremely successful as a product.\\n\\nWotC, we love MTGA so please consider reinventing Mastery system for a profitable, healthy and happy game ecosystem.\", \"author_fullname\": \"t2_12jc76\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Solution to Mastery Pass Problems\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c90ovd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562262335.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENew Mastery System is THE topic on this subreddit. Looks like it managed to upset and infuriate everyone - FTP and whales, weekend players and grinders and even trusty fans like myself. We all know the complaints: predatory, limiting, frustrating, not motivating to do anything - play, spend time or money. And people sound very sincere about it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHere is the solution: Dota-like Mastery System. Key features:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EMuch higher maximum level (say, 1000). Higher levels are almost impossible to grind\\u003C/li\\u003E\\n\\u003Cli\\u003ENo daily/weekly XP cap at all\\u003C/li\\u003E\\n\\u003Cli\\u003ELower XP gain for daily wins\\u003C/li\\u003E\\n\\u003Cli\\u003ELevel milestones with unique rewards every 50 levels or so. Pet styles, battlefield styles, avatars, card styles and sleeves, animations, cursor styles, chat wheel options, voice lines. Increasing MC prize pool. So much stuff you could actually sell for money or time!\\u003C/li\\u003E\\n\\u003Cli\\u003EAbility to purchase levels.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis system works perfectly for:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EWhales - so many unique cool goodies to unlock as a paying customer (that\\u0026#39;s too hard to grind)\\u003C/li\\u003E\\n\\u003Cli\\u003EFTP - super motivated to invest time to progress. Incentivized to become paying customers and buy Mastery Pass because value.\\u003C/li\\u003E\\n\\u003Cli\\u003EAverage paying customers - lots of premium stuff for your buck\\u003C/li\\u003E\\n\\u003Cli\\u003EGrinders - system rewards their natural desire to spend more time in the game\\u003C/li\\u003E\\n\\u003Cli\\u003EWeekend/occasional players - no need to worry about missed levels, just have a good Magic time whenever you want\\u003C/li\\u003E\\n\\u003Cli\\u003EWotC - customers are motivated to spend more time and money in the game they like, not to rant about the current system they are genuinely unhappy about.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThis is a long-term solution that fully adapts to upcoming new sets or seasons. Moreover, this type of battle pass has a track record of being extremely successful as a product.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWotC, we love MTGA so please consider reinventing Mastery system for a profitable, healthy and happy game ecosystem.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c90ovd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Noe_HS\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c90ovd/the_solution_to_mastery_pass_problems/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c90ovd/the_solution_to_mastery_pass_problems/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562233535.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test\", \"author_fullname\": \"t2_p4niz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"removeddit self\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c8v2t8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562224153.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c8v2t8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"6_lasers\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c8v2t8/removeddit_self/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c8v2t8/removeddit_self/\", \"subreddit_subscribers\": 754, \"created_utc\": 1562195353.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_iba5p\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"a reasoned debate\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_c8uwqt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/17HK1NN4i3AgU-jToIMwrMkwvpNok9ZMkBnBNmbmD_M.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562223197.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgflip.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/V8XkzCvfhhxDYUUUvQpdc4oWvvKNBl7cC-9mJ4JjTrI.jpg?auto=webp\\u0026s=534e50d86a8e8f445a80be5777e0e20861ad7ed1\", \"width\": 500, \"height\": 1406}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/V8XkzCvfhhxDYUUUvQpdc4oWvvKNBl7cC-9mJ4JjTrI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f052e9dcecf05b9041bbdfa5969d3a8c233d46d5\", \"width\": 108, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/V8XkzCvfhhxDYUUUvQpdc4oWvvKNBl7cC-9mJ4JjTrI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fdd6d352f062fcbc3c38f0e379419976801f30db\", \"width\": 216, \"height\": 432}, {\"url\": \"https://external-preview.redd.it/V8XkzCvfhhxDYUUUvQpdc4oWvvKNBl7cC-9mJ4JjTrI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=e2827617bdfce67ca3ace68ea6fc339a61dd8403\", \"width\": 320, \"height\": 640}], \"variants\": {}, \"id\": \"rugqMTE_qJfJYsij80by8Q8HwN_4fG1B0v84ii_D0eY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c8uwqt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fledermaus23\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c8uwqt/a_reasoned_debate/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgflip.com/i/34vp13\", \"subreddit_subscribers\": 754, \"created_utc\": 1562194397.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}], \"after\": \"t3_c8uwqt\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["722555"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:29 GMT"], "x-ratelimit-remaining": ["588.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["12"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495028.070642,VS0,VE1049"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["572"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "recorded_at": "2019-07-19T00:10:29"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_ceye82"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:30 GMT"], "x-ratelimit-remaining": ["587.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["13"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495030.197340,VS0,VE102"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["570"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_ceye82"}, "recorded_at": "2019-07-19T00:10:30"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/hongkong/about/?raw_json=1"}, "response": {"body": {"string": "{\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBefore asking a question about visiting, moving to, or working in Hong Kong, please search the subreddit and take a look at the sidebar for some guides and FAQs that we\\u0026#39;ve put together in the past.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": true, \"user_is_muted\": false, \"user_can_flair_in_sr\": true, \"display_name\": \"HongKong\", \"header_img\": \"https://b.thumbs.redditmedia.com/9mHCX5SAKTLQwuqU.png\", \"title\": \"\\u9999\\u6e2f\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": 272, \"icon_img\": \"\", \"display_name_prefixed\": \"r/HongKong\", \"accounts_active\": 272, \"public_traffic\": false, \"subscribers\": 82462, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2rbn0\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"A subreddit for all things Hong Kong.\", \"comment_score_hide_mins\": 360, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"Before asking a question about visiting, moving to, or working in Hong Kong, please search the subreddit and take a look at the sidebar for some guides and FAQs that we've put together in the past.\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/7dM0Ht5.jpg#sidebarImage\\\"\\u003EGlobal meetup day 2019!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWelcome to \\u003Ca href=\\\"/r/HongKong\\\"\\u003Er/HongKong\\u003C/a\\u003E!\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlanning to work in Hong Kong? \\u003Ca href=\\\"http://www.reddit.com/r/HongKong/comments/jxkp5/working_in_hong_kong_a_communitycompiled_list_of/\\\"\\u003EHere\\u0026#39;s a community-compiled list of tips!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESome of our users have put together a document about what to do if you\\u0026#39;re travelling here for the first time. \\u003Ca href=\\\"https://docs.google.com/document/d/1ZulaRt3-GPHARSRqFl9OKxWkpNSIePqnGEmjZDA2C6k/edit?pli=1\\\"\\u003ESee it here!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe are a small subreddit, please do check the \\u0026#39;new\\u0026#39; page for all the posts.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003ESubreddit Friends\\u003C/h2\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.reddit.com/r/china\\\"\\u003Er/China\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.reddit.com/r/chineselanguage\\\"\\u003Er/ChineseLanguage\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.reddit.com/r/Cantonese/\\\"\\u003Er/Cantonese\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.reddit.com/r/macau\\\"\\u003Er/Macau\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.reddit.com/r/chinesepolitics\\\"\\u003Er/ChinesePolitics\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.reddit.com/r/Guangzhou\\\"\\u003Er/Guangzhou\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/taiwan\\\"\\u003Er/Taiwan\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/HongKongMusic\\\"\\u003E/r/HongKongMusic\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/CasualHK\\\"\\u003E/r/CasualHK\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Ch2\\u003ERules\\u003C/h2\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EObey Reddit\\u0026#39;s site-wide rules.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EUse the \\u003Ca href=\\\"https://old.reddit.com/message/compose?to=%2Fr%2FHongKong\\\"\\u003Emessage the moderators\\u003C/a\\u003E link to give feedback about moderation\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": \"Back to the frontpage\", \"header_size\": [250, 84], \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"#ffb000\", \"can_assign_user_flair\": true, \"created\": 1257311259.0, \"wls\": 6, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": false, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": true, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA subreddit for all things Hong Kong.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": null, \"can_assign_link_flair\": false, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": true, \"user_flair_enabled_in_sr\": true, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": true, \"id\": \"2rbn0\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"[Global meetup day 2019!](https://i.imgur.com/7dM0Ht5.jpg#sidebarImage)\\n\\n**Welcome to r/HongKong!**\\n\\nPlanning to work in Hong Kong? [Here's a community-compiled list of tips!](http://www.reddit.com/r/HongKong/comments/jxkp5/working_in_hong_kong_a_communitycompiled_list_of/)\\n\\nSome of our users have put together a document about what to do if you're travelling here for the first time. [See it here!](https://docs.google.com/document/d/1ZulaRt3-GPHARSRqFl9OKxWkpNSIePqnGEmjZDA2C6k/edit?pli=1)\\n\\nWe are a small subreddit, please do check the 'new' page for all the posts.\\n\\n##Subreddit Friends\\n\\n\\n\\u003E - [r/China](http://www.reddit.com/r/china)\\n\\n\\n\\u003E - [r/ChineseLanguage](http://www.reddit.com/r/chineselanguage)\\n\\n\\u003E - [r/Cantonese](http://www.reddit.com/r/Cantonese/)\\n\\n\\u003E - [r/Macau](http://www.reddit.com/r/macau)\\n\\n\\u003E - [r/ChinesePolitics](http://www.reddit.com/r/chinesepolitics)\\n\\n\\u003E - [r/Guangzhou](http://www.reddit.com/r/Guangzhou)\\n\\n\\u003E - [r/Taiwan](/r/taiwan)\\n\\n\\u003E - /r/HongKongMusic\\n\\n\\u003E - /r/CasualHK\\n\\n## Rules\\n\\n\\u003E 1. Obey Reddit's site-wide rules.\\n\\n\\u003E 2. Use the [message the moderators](https://old.reddit.com/message/compose?to=%2Fr%2FHongKong) link to give feedback about moderation\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": \"all_ads\", \"url\": \"/r/HongKong/\", \"created_utc\": 1257282459.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["7210"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:31 GMT"], "x-ratelimit-remaining": ["586.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["14"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495031.290271,VS0,VE113"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["569"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/hongkong/about/?raw_json=1"}, "recorded_at": "2019-07-19T00:10:31"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/HongKong/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceusn2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu68dsa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Black_Phoenix_JP\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563494447.0, \"send_replies\": true, \"parent_id\": \"t1_eu59e16\", \"score\": 1, \"author_fullname\": \"t2_12t3z4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Unfortunately one of that allies is Russia itself. It may not say that it totally supports, it may not even say that approves everything (although in the U.N. Letter were 40 countries defend China Concentration Camps, being one of the countries Russia) but Russia for Years been trying to find a way into mess around with the USA and Europe by flexing their muscles in Ukraine , annexing Crimea in 2014.\\n\\n\\u0026#x200B;\\n\\nI'm not saying an all out alliance with China, but \\\"The enemy of my enemy is my friend...\\\"\", \"link_title\": \"European Parliament approves motion on Hong Kong, as Beijing calls it full of \\u2018ignorance and prejudice\\u2019\", \"author_flair_css_class\": null, \"name\": \"t1_eu68dsa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnfortunately one of that allies is Russia itself. It may not say that it totally supports, it may not even say that approves everything (although in the U.N. Letter were 40 countries defend China Concentration Camps, being one of the countries Russia) but Russia for Years been trying to find a way into mess around with the USA and Europe by flexing their muscles in Ukraine , annexing Crimea in 2014.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not saying an all out alliance with China, but \\u0026quot;The enemy of my enemy is my friend...\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceusn2/european_parliament_approves_motion_on_hong_kong/eu68dsa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceusn2/european_parliament_approves_motion_on_hong_kong/\", \"report_reasons\": null, \"link_author\": \"lebbe\", \"author_flair_text\": null, \"link_url\": \"https://www.scmp.com/news/china/diplomacy/article/3019177/beijing-says-hong-kong-motion-tabled-members-european\", \"created\": 1563523247.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce90sv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu687q7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Raging_Eddie\", \"num_comments\": 58, \"can_mod_post\": false, \"created_utc\": 1563494341.0, \"send_replies\": true, \"parent_id\": \"t1_eu4s5ta\", \"score\": 1, \"author_fullname\": \"t2_9vs9o5c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Lol there's no reasoning with an extremist dweeb like this guy. He's just salty cuz his mommy never hugged him as a child.\", \"link_title\": \"What is stirring up Hongkongers\\u2019 emotion NOW\", \"author_flair_css_class\": null, \"name\": \"t1_eu687q7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELol there\\u0026#39;s no reasoning with an extremist dweeb like this guy. He\\u0026#39;s just salty cuz his mommy never hugged him as a child.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ce90sv/what_is_stirring_up_hongkongers_emotion_now/eu687q7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ce90sv/what_is_stirring_up_hongkongers_emotion_now/\", \"report_reasons\": null, \"link_author\": \"pretty-brat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/ce90sv/what_is_stirring_up_hongkongers_emotion_now/\", \"created\": 1563523141.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce90sv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu681h9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Raging_Eddie\", \"num_comments\": 58, \"can_mod_post\": false, \"created_utc\": 1563494230.0, \"send_replies\": true, \"parent_id\": \"t1_eu4c56y\", \"score\": 1, \"author_fullname\": \"t2_9vs9o5c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Dude that Heisenberg clown is a triggered bitch. Leave him be. He's some midget that wants to fight everybody cuz he's got a Napoleon complex\", \"link_title\": \"What is stirring up Hongkongers\\u2019 emotion NOW\", \"author_flair_css_class\": null, \"name\": \"t1_eu681h9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDude that Heisenberg clown is a triggered bitch. Leave him be. He\\u0026#39;s some midget that wants to fight everybody cuz he\\u0026#39;s got a Napoleon complex\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ce90sv/what_is_stirring_up_hongkongers_emotion_now/eu681h9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ce90sv/what_is_stirring_up_hongkongers_emotion_now/\", \"report_reasons\": null, \"link_author\": \"pretty-brat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/ce90sv/what_is_stirring_up_hongkongers_emotion_now/\", \"created\": 1563523030.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu66sjy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gossfunkel\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563493423.0, \"send_replies\": true, \"parent_id\": \"t1_eu4les7\", \"score\": 1, \"author_fullname\": \"t2_9a7ul\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Thank you for informing me about this. I think it's important to raise concerns, especially since the bill recently, about this sort of thing, considering the Chinese government's actions and (at the very least) complicity with this.\\n\\nI don't want to detract from that when I say it's important not to wrap that in with nationalist sentiments that can sometimes go about, because of course we can be both careful of that while still refusing the Chinese state's actions and considering how it may be acting based on past events and the whole... Nationalistic \\\"Communist\\\" sort of propaganda thing it's had going on for so long that gives that totalitarian weight to the state.\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu66sjy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for informing me about this. I think it\\u0026#39;s important to raise concerns, especially since the bill recently, about this sort of thing, considering the Chinese government\\u0026#39;s actions and (at the very least) complicity with this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t want to detract from that when I say it\\u0026#39;s important not to wrap that in with nationalist sentiments that can sometimes go about, because of course we can be both careful of that while still refusing the Chinese state\\u0026#39;s actions and considering how it may be acting based on past events and the whole... Nationalistic \\u0026quot;Communist\\u0026quot; sort of propaganda thing it\\u0026#39;s had going on for so long that gives that totalitarian weight to the state.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu66sjy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563522223.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceq1zt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu66rc7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"irresistiblebadidea\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563493401.0, \"send_replies\": true, \"parent_id\": \"t3_ceq1zt\", \"score\": 1, \"author_fullname\": \"t2_k28dv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"\\u003E their comrades\\n\\n*our comrades\", \"link_title\": \"Their what? Poor choice of words SCMP.\", \"author_flair_css_class\": null, \"name\": \"t1_eu66rc7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etheir comrades\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E*our comrades\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceq1zt/their_what_poor_choice_of_words_scmp/eu66rc7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceq1zt/their_what_poor_choice_of_words_scmp/\", \"report_reasons\": null, \"link_author\": \"aaclavijo\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/qyq0j2ss21b31.png\", \"created\": 1563522201.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccyye4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu66jb2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tofupods\", \"num_comments\": 28, \"can_mod_post\": false, \"created_utc\": 1563493254.0, \"send_replies\": true, \"parent_id\": \"t1_eu5pk3x\", \"score\": 1, \"author_fullname\": \"t2_39di4se8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"oh no :(\", \"link_title\": \"my sister and I put up our own post-it on the tai po lennon wall. :D (idk I just really wanted to share this)\", \"author_flair_css_class\": null, \"name\": \"t1_eu66jb2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eoh no :(\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ccyye4/my_sister_and_i_put_up_our_own_postit_on_the_tai/eu66jb2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ccyye4/my_sister_and_i_put_up_our_own_postit_on_the_tai/\", \"report_reasons\": null, \"link_author\": \"tofupods\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/ye6e8yuy57a31.jpg\", \"created\": 1563522054.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdxh9s\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu660pr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ICrackedANut\", \"num_comments\": 132, \"can_mod_post\": false, \"created_utc\": 1563492926.0, \"send_replies\": true, \"parent_id\": \"t1_etyl5f1\", \"score\": 1, \"author_fullname\": \"t2_nwnd41n\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"As if a customer service guy would know this?\", \"link_title\": \"Hundreds gathering in New Town Plaza now, demanding answers on why the mall let in the police on Sunday (Apple Daily Livestream)\", \"author_flair_css_class\": null, \"name\": \"t1_eu660pr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs if a customer service guy would know this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/cdxh9s/hundreds_gathering_in_new_town_plaza_now/eu660pr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cdxh9s/hundreds_gathering_in_new_town_plaza_now/\", \"report_reasons\": null, \"link_author\": \"phy361sm\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/a3qvujmy9oa31.png\", \"created\": 1563521726.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqn15\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu65vnw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"chinkiang_vinegar\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563492834.0, \"send_replies\": true, \"parent_id\": \"t1_eu65pq2\", \"score\": 1, \"author_fullname\": \"t2_4kx4utt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"I see all these complaints about how the MTR is over-budget, and delayed, etc. etc. etc. but I really don't think you guys know how good you have it especially when compared to literally the rest of the whole entire universe\", \"link_title\": \"Tuen Ma Line first phase to open in 2020 first quarter\", \"author_flair_css_class\": null, \"name\": \"t1_eu65vnw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see all these complaints about how the MTR is over-budget, and delayed, etc. etc. etc. but I really don\\u0026#39;t think you guys know how good you have it especially when compared to literally the rest of the whole entire universe\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceqn15/tuen_ma_line_first_phase_to_open_in_2020_first/eu65vnw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceqn15/tuen_ma_line_first_phase_to_open_in_2020_first/\", \"report_reasons\": null, \"link_author\": \"HKnational\", \"author_flair_text\": null, \"link_url\": \"http://www.thestandard.com.hk/breaking-news.php?id=131614\\u0026story_id=131614\\u0026d_str=20190718\\u0026sid=4\", \"created\": 1563521634.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqn15\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu65pq2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"chairmanwumao\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563492727.0, \"send_replies\": true, \"parent_id\": \"t1_eu5ao4o\", \"score\": 1, \"author_fullname\": \"t2_k0890\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Stop comparing everything to the US.\", \"link_title\": \"Tuen Ma Line first phase to open in 2020 first quarter\", \"author_flair_css_class\": null, \"name\": \"t1_eu65pq2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EStop comparing everything to the US.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceqn15/tuen_ma_line_first_phase_to_open_in_2020_first/eu65pq2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceqn15/tuen_ma_line_first_phase_to_open_in_2020_first/\", \"report_reasons\": null, \"link_author\": \"HKnational\", \"author_flair_text\": null, \"link_url\": \"http://www.thestandard.com.hk/breaking-news.php?id=131614\\u0026story_id=131614\\u0026d_str=20190718\\u0026sid=4\", \"created\": 1563521527.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu656wj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gossfunkel\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563492399.0, \"send_replies\": true, \"parent_id\": \"t1_eu4h03q\", \"score\": 1, \"author_fullname\": \"t2_9a7ul\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"You're talking about human beings moving somewhere, not spy agents or suchlike- migrating is quite a big deal for most people, and numbers like have been suggested sound like more than just a small group. Be careful with this sort of conspiracy theories cos it sounds a lot like what far right people here in the UK say about Polish and south Asian people. \\n\\nI'm not saying that Hong Kong isn't obviously in a challenging situation in terms of maintaining a separate identity, because of course of its physical situation, and the Chinese national identity as we all know is as pervasive and propagandised as somewhere like the USA, so it's a difficult situation to be in. Just trying to make clear that migration effects are a difficult social process and you shouldn't respond to it by resorting to 'enemy within' nationalist sentiments, because some of this discussion is just a little close to that and I think it's important. Especially in a situation such as Hong Kong's with such an ideological state surrounding it.\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu656wj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;re talking about human beings moving somewhere, not spy agents or suchlike- migrating is quite a big deal for most people, and numbers like have been suggested sound like more than just a small group. Be careful with this sort of conspiracy theories cos it sounds a lot like what far right people here in the UK say about Polish and south Asian people. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not saying that Hong Kong isn\\u0026#39;t obviously in a challenging situation in terms of maintaining a separate identity, because of course of its physical situation, and the Chinese national identity as we all know is as pervasive and propagandised as somewhere like the USA, so it\\u0026#39;s a difficult situation to be in. Just trying to make clear that migration effects are a difficult social process and you shouldn\\u0026#39;t respond to it by resorting to \\u0026#39;enemy within\\u0026#39; nationalist sentiments, because some of this discussion is just a little close to that and I think it\\u0026#39;s important. Especially in a situation such as Hong Kong\\u0026#39;s with such an ideological state surrounding it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu656wj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563521199.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cevww1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu64dc1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"isAltTrue\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563491885.0, \"send_replies\": true, \"parent_id\": \"t3_cevww1\", \"score\": 1, \"author_fullname\": \"t2_1oob2cuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"I mean, just because the US uses an electoral college does not prove that it is the most legitimate way to go about it. And there are people in the US that believe in one person one vote anyways, so it's not like everyone agrees it is the right way anyways.\", \"link_title\": \"HKU Vice-Chancellor and President: \\\"Some of you may believe that the government is not by one person one vote. Therefore it is not legitimate ... But in fact the US president is not by popular vote. If you check the record, some presidents did not win a majority vote and become presidents\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu64dc1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI mean, just because the US uses an electoral college does not prove that it is the most legitimate way to go about it. And there are people in the US that believe in one person one vote anyways, so it\\u0026#39;s not like everyone agrees it is the right way anyways.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/cevww1/hku_vicechancellor_and_president_some_of_you_may/eu64dc1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cevww1/hku_vicechancellor_and_president_some_of_you_may/\", \"report_reasons\": null, \"link_author\": \"isaacng1997\", \"author_flair_text\": null, \"link_url\": \"https://thestandnews.com/politics/%E6%B8%AF%E5%A4%A7%E5%BC%B5%E7%BF%94/?fbclid=IwAR0FSMVyxyObHTGJ_SMkxCVRIuHGRmNi20MK-5pydrRYdKQPTlh7dLta02k\", \"created\": 1563520685.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqjwo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu64bn5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kiddie19\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563491855.0, \"send_replies\": true, \"parent_id\": \"t1_eu60yw3\", \"score\": 1, \"author_fullname\": \"t2_1pz63p0u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"TIL that swerving dangerously and hard brakes are called \\u201cskill\\u201d\", \"link_title\": \"Bus crash leaves driver dead, 14 passengers hurt - RTHK\", \"author_flair_css_class\": null, \"name\": \"t1_eu64bn5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETIL that swerving dangerously and hard brakes are called \\u201cskill\\u201d\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceqjwo/bus_crash_leaves_driver_dead_14_passengers_hurt/eu64bn5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceqjwo/bus_crash_leaves_driver_dead_14_passengers_hurt/\", \"report_reasons\": null, \"link_author\": \"TangerineNightmares\", \"author_flair_text\": null, \"link_url\": \"https://news.rthk.hk/rthk/en/component/k2/1469063-20190718.htm?spTabChangeable=0\", \"created\": 1563520655.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqjwo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu60yw3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sui146714\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563489774.0, \"send_replies\": true, \"parent_id\": \"t1_eu4lopn\", \"score\": 1, \"author_fullname\": \"t2_iz6u7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Drivers Hong Kong are highly skilled\", \"link_title\": \"Bus crash leaves driver dead, 14 passengers hurt - RTHK\", \"author_flair_css_class\": null, \"name\": \"t1_eu60yw3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDrivers Hong Kong are highly skilled\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceqjwo/bus_crash_leaves_driver_dead_14_passengers_hurt/eu60yw3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceqjwo/bus_crash_leaves_driver_dead_14_passengers_hurt/\", \"report_reasons\": null, \"link_author\": \"TangerineNightmares\", \"author_flair_text\": null, \"link_url\": \"https://news.rthk.hk/rthk/en/component/k2/1469063-20190718.htm?spTabChangeable=0\", \"created\": 1563518574.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5ymzg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adz4309\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563488357.0, \"send_replies\": true, \"parent_id\": \"t1_eu5m9x8\", \"score\": 1, \"author_fullname\": \"t2_5rrb2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Tell me about it. How many people can actually say they are from Hong Kong and not a mainlanders or of mainland descent?\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu5ymzg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETell me about it. How many people can actually say they are from Hong Kong and not a mainlanders or of mainland descent?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu5ymzg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563517157.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0l9vl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5yf13\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"smokingadvice\", \"num_comments\": 162, \"can_mod_post\": false, \"created_utc\": 1563488225.0, \"send_replies\": true, \"parent_id\": \"t1_er6yzgf\", \"score\": 1, \"author_fullname\": \"t2_54ti5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Yes there is, however any access to patient records is heavily monitored. For example, if I looked into a chart for someone who was not my patient, I could potentially be fired.\", \"link_title\": \"HK Hospital Authority has issued this letter to all public hospital, that they demand receiving personal details of the protest related patients. This will violate the right of humanitarianism and any international law that HK Gov has signed previously.\", \"author_flair_css_class\": null, \"name\": \"t1_eu5yf13\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes there is, however any access to patient records is heavily monitored. For example, if I looked into a chart for someone who was not my patient, I could potentially be fired.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/c0l9vl/hk_hospital_authority_has_issued_this_letter_to/eu5yf13/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/c0l9vl/hk_hospital_authority_has_issued_this_letter_to/\", \"report_reasons\": null, \"link_author\": \"Alexktf\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/f4p6zd0t8c431.png\", \"created\": 1563517025.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ces7bv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5x5ts\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"weddle_seal\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563487380.0, \"send_replies\": true, \"parent_id\": \"t3_ces7bv\", \"score\": 1, \"author_fullname\": \"t2_gyhboer\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"They mean business this time, they got the image with guns\", \"link_title\": \"Threat of dismemberment\", \"author_flair_css_class\": null, \"name\": \"t1_eu5x5ts\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThey mean business this time, they got the image with guns\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ces7bv/threat_of_dismemberment/eu5x5ts/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ces7bv/threat_of_dismemberment/\", \"report_reasons\": null, \"link_author\": \"Hongkongjai\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/qyv55hrt82b31.jpg\", \"created\": 1563516180.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceujo6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5x0q6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"weddle_seal\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563487285.0, \"send_replies\": true, \"parent_id\": \"t3_ceujo6\", \"score\": 1, \"author_fullname\": \"t2_gyhboer\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Not much hkers use the love part, it feels more like a mainland thing\", \"link_title\": \"Love, do not go to Sha Tin, you will be beaten by police (from a friend without Reddit)\", \"author_flair_css_class\": null, \"name\": \"t1_eu5x0q6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot much hkers use the love part, it feels more like a mainland thing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceujo6/love_do_not_go_to_sha_tin_you_will_be_beaten_by/eu5x0q6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceujo6/love_do_not_go_to_sha_tin_you_will_be_beaten_by/\", \"report_reasons\": null, \"link_author\": \"T0x1cL\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/czmhogh673b31.png\", \"created\": 1563516085.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_celcb4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5v7e9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yag100\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1563486096.0, \"send_replies\": true, \"parent_id\": \"t3_celcb4\", \"score\": 1, \"author_fullname\": \"t2_146l6w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"There are a lot of amazing cantonese food you can't find literally anywhere else in the world. While I can give a list I don't know where you'll be staying so just follow these rules. \\n\\n\\n\\\\-If the shop looks old/kinda dirty but has a line up, just go eat there. \\n\\\\-Order Milk Tea \\n\\\\-Try Pineapple Buns, Egg Tarts, etc etc \\n\\\\-Don't go to disney, go to Ocean Park \\n\\\\-If you're in Sheung Wan, go to a restaurant called Fung Shing (it's a dim sum place). Down the street from it has an HK cafe called [https://www.tripadvisor.ca/Restaurant\\\\_Review-g294217-d938741-Reviews-Hoi\\\\_On\\\\_Cafe-Hong\\\\_Kong.html](https://www.tripadvisor.ca/Restaurant_Review-g294217-d938741-Reviews-Hoi_On_Cafe-Hong_Kong.html) \\n\\\\-Listen to what the others said in the post, the temples are definately worth checking out if asia is new to you. \\n\\\\-Get an Octopus card, will make your traveling easy, also pays for your 7-11/convenience store snacking. \\n\\\\-Go to the supermarket and buy some snacks for the hotel and chomp down, you won't find the same stuff in not-asia.\", \"link_title\": \"Off to Hong Kong for a few days. Looking for things to do!\", \"author_flair_css_class\": null, \"name\": \"t1_eu5v7e9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere are a lot of amazing cantonese food you can\\u0026#39;t find literally anywhere else in the world. While I can give a list I don\\u0026#39;t know where you\\u0026#39;ll be staying so just follow these rules. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-If the shop looks old/kinda dirty but has a line up, just go eat there.\\u003Cbr/\\u003E\\n-Order Milk Tea\\u003Cbr/\\u003E\\n-Try Pineapple Buns, Egg Tarts, etc etc\\u003Cbr/\\u003E\\n-Don\\u0026#39;t go to disney, go to Ocean Park\\u003Cbr/\\u003E\\n-If you\\u0026#39;re in Sheung Wan, go to a restaurant called Fung Shing (it\\u0026#39;s a dim sum place). Down the street from it has an HK cafe called \\u003Ca href=\\\"https://www.tripadvisor.ca/Restaurant_Review-g294217-d938741-Reviews-Hoi_On_Cafe-Hong_Kong.html\\\"\\u003Ehttps://www.tripadvisor.ca/Restaurant_Review-g294217-d938741-Reviews-Hoi_On_Cafe-Hong_Kong.html\\u003C/a\\u003E\\u003Cbr/\\u003E\\n-Listen to what the others said in the post, the temples are definately worth checking out if asia is new to you.\\u003Cbr/\\u003E\\n-Get an Octopus card, will make your traveling easy, also pays for your 7-11/convenience store snacking.\\u003Cbr/\\u003E\\n-Go to the supermarket and buy some snacks for the hotel and chomp down, you won\\u0026#39;t find the same stuff in not-asia.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/eu5v7e9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"report_reasons\": null, \"link_author\": \"kirbyforce\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"created\": 1563514896.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceorvq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5thk8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adz4309\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1563484991.0, \"send_replies\": true, \"parent_id\": \"t1_eu5r5h5\", \"score\": 1, \"author_fullname\": \"t2_5rrb2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"We're talking about Independence in function, to argue otherwise is just semantics to the average citizen. \\n\\nAll claims and issues with international recognition or \\\"true independence\\\" in your view is linked politically to the One China issue which is completely different than being \\\"independent\\\".\", \"link_title\": \"Hong Kong-based Public Opinion Research Institute this month found that 44% of Hong Kongers support Taiwan independence (even though question was framed confusingly as 'becoming' independent)\", \"author_flair_css_class\": null, \"name\": \"t1_eu5thk8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe\\u0026#39;re talking about Independence in function, to argue otherwise is just semantics to the average citizen. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll claims and issues with international recognition or \\u0026quot;true independence\\u0026quot; in your view is linked politically to the One China issue which is completely different than being \\u0026quot;independent\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/eu5thk8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/\", \"report_reasons\": null, \"link_author\": \"article10ECHR\", \"author_flair_text\": null, \"link_url\": \"https://www.pori.hk/nationalissues/taiwan-independence\", \"created\": 1563513791.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceycuz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5t0lk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"greatbaizuo\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563484687.0, \"send_replies\": true, \"parent_id\": \"t3_ceycuz\", \"score\": 1, \"author_fullname\": \"t2_1yk381cy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"White male mods hate this topic.\", \"link_title\": \"\\\"I am a second class citizen in the UK\\\" - Hong Kongers sound out about life in the UK\", \"author_flair_css_class\": null, \"name\": \"t1_eu5t0lk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhite male mods hate this topic.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceycuz/i_am_a_second_class_citizen_in_the_uk_hong/eu5t0lk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceycuz/i_am_a_second_class_citizen_in_the_uk_hong/\", \"report_reasons\": null, \"link_author\": \"greatbaizuo\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/ceycuz/i_am_a_second_class_citizen_in_the_uk_hong/\", \"created\": 1563513487.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cevww1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5srth\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"scaur\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563484527.0, \"send_replies\": true, \"parent_id\": \"t1_eu5b5n5\", \"score\": 1, \"author_fullname\": \"t2_h0zzj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Dame these foreign agents. /s\", \"link_title\": \"HKU Vice-Chancellor and President: \\\"Some of you may believe that the government is not by one person one vote. Therefore it is not legitimate ... But in fact the US president is not by popular vote. If you check the record, some presidents did not win a majority vote and become presidents\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu5srth\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDame these foreign agents. /s\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/cevww1/hku_vicechancellor_and_president_some_of_you_may/eu5srth/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cevww1/hku_vicechancellor_and_president_some_of_you_may/\", \"report_reasons\": null, \"link_author\": \"isaacng1997\", \"author_flair_text\": null, \"link_url\": \"https://thestandnews.com/politics/%E6%B8%AF%E5%A4%A7%E5%BC%B5%E7%BF%94/?fbclid=IwAR0FSMVyxyObHTGJ_SMkxCVRIuHGRmNi20MK-5pydrRYdKQPTlh7dLta02k\", \"created\": 1563513327.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceorvq\", \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5rbdv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"firewood010\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1563483610.0, \"send_replies\": true, \"parent_id\": \"t1_eu4hz0k\", \"score\": 1, \"author_fullname\": \"t2_tk2f5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"This is the main point of \\\"Taiwan becoming independent\\\", to get rid of the name \\\"China\\\".\", \"link_title\": \"Hong Kong-based Public Opinion Research Institute this month found that 44% of Hong Kongers support Taiwan independence (even though question was framed confusingly as 'becoming' independent)\", \"author_flair_css_class\": \"swedish-friend\", \"name\": \"t1_eu5rbdv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is the main point of \\u0026quot;Taiwan becoming independent\\u0026quot;, to get rid of the name \\u0026quot;China\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": \"dark\", \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/eu5rbdv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/\", \"report_reasons\": null, \"link_author\": \"article10ECHR\", \"author_flair_text\": \"Local\", \"link_url\": \"https://www.pori.hk/nationalissues/taiwan-independence\", \"created\": 1563512410.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceorvq\", \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5r5h5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"firewood010\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1563483510.0, \"send_replies\": true, \"parent_id\": \"t1_eu4vrgk\", \"score\": 1, \"author_fullname\": \"t2_tk2f5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"It is not considered as fully independent because there are people who still believing in One China. Even though it is a fully independent state in function, it will only considered as truly independent if only the name \\u4e2d\\u570b\\u6c11\\u570b is replaced by \\u53f0\\u7063\\u570b.\", \"link_title\": \"Hong Kong-based Public Opinion Research Institute this month found that 44% of Hong Kongers support Taiwan independence (even though question was framed confusingly as 'becoming' independent)\", \"author_flair_css_class\": \"swedish-friend\", \"name\": \"t1_eu5r5h5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt is not considered as fully independent because there are people who still believing in One China. Even though it is a fully independent state in function, it will only considered as truly independent if only the name \\u4e2d\\u570b\\u6c11\\u570b is replaced by \\u53f0\\u7063\\u570b.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": \"dark\", \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/eu5r5h5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/\", \"report_reasons\": null, \"link_author\": \"article10ECHR\", \"author_flair_text\": \"Local\", \"link_url\": \"https://www.pori.hk/nationalissues/taiwan-independence\", \"created\": 1563512310.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cey1bk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5r0nt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mat_F80\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563483427.0, \"send_replies\": true, \"parent_id\": \"t3_cey1bk\", \"score\": 1, \"author_fullname\": \"t2_vw0dxrm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Must be the lucky protestors who didn\\u2019t get their skulls bashed open from Hk Police triad group. \\nAll their actions are protected by the government and they will say you instigated the aggression and they had to use force and/or state they sent warnings and you did not leave.\", \"link_title\": \"Legality of being beaten by riot police\", \"author_flair_css_class\": null, \"name\": \"t1_eu5r0nt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMust be the lucky protestors who didn\\u2019t get their skulls bashed open from Hk Police triad group. \\nAll their actions are protected by the government and they will say you instigated the aggression and they had to use force and/or state they sent warnings and you did not leave.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/cey1bk/legality_of_being_beaten_by_riot_police/eu5r0nt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cey1bk/legality_of_being_beaten_by_riot_police/\", \"report_reasons\": null, \"link_author\": \"FATconTROLLah\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/cey1bk/legality_of_being_beaten_by_riot_police/\", \"created\": 1563512227.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceorvq\", \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5qoi4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"firewood010\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1563483221.0, \"send_replies\": true, \"parent_id\": \"t1_eu404v4\", \"score\": 1, \"author_fullname\": \"t2_tk2f5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"I think it is correct to add the word becoming. The Chinese text is simply asking \\u201cTaiwan should go independent, for or against?\\\" So it assumes Taiwan is not yet a independent state.\", \"link_title\": \"Hong Kong-based Public Opinion Research Institute this month found that 44% of Hong Kongers support Taiwan independence (even though question was framed confusingly as 'becoming' independent)\", \"author_flair_css_class\": \"swedish-friend\", \"name\": \"t1_eu5qoi4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think it is correct to add the word becoming. The Chinese text is simply asking \\u201cTaiwan should go independent, for or against?\\u0026quot; So it assumes Taiwan is not yet a independent state.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": \"dark\", \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/eu5qoi4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/\", \"report_reasons\": null, \"link_author\": \"article10ECHR\", \"author_flair_text\": \"Local\", \"link_url\": \"https://www.pori.hk/nationalissues/taiwan-independence\", \"created\": 1563512021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5qfmx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"greatbaizuo\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563483070.0, \"send_replies\": true, \"parent_id\": \"t1_eu5mjkw\", \"score\": 1, \"author_fullname\": \"t2_1yk381cy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Trump has lost his trade war. \\n\\n [https://www.nytimes.com/2019/07/04/opinion/trump-trade-wars.html](https://www.nytimes.com/2019/07/04/opinion/trump-trade-wars.html)\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu5qfmx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETrump has lost his trade war. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.nytimes.com/2019/07/04/opinion/trump-trade-wars.html\\\"\\u003Ehttps://www.nytimes.com/2019/07/04/opinion/trump-trade-wars.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu5qfmx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563511870.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ccyye4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5pk3x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"InfinityR319\", \"num_comments\": 28, \"can_mod_post\": false, \"created_utc\": 1563482540.0, \"send_replies\": true, \"parent_id\": \"t3_ccyye4\", \"score\": 1, \"author_fullname\": \"t2_80h19\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Bad news. A large group of thugs just raided the tunnel and vandalized everything.\", \"link_title\": \"my sister and I put up our own post-it on the tai po lennon wall. :D (idk I just really wanted to share this)\", \"author_flair_css_class\": null, \"name\": \"t1_eu5pk3x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBad news. A large group of thugs just raided the tunnel and vandalized everything.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ccyye4/my_sister_and_i_put_up_our_own_postit_on_the_tai/eu5pk3x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ccyye4/my_sister_and_i_put_up_our_own_postit_on_the_tai/\", \"report_reasons\": null, \"link_author\": \"tofupods\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/ye6e8yuy57a31.jpg\", \"created\": 1563511340.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cet1mf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5pfob\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"crestsands2017\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563482464.0, \"send_replies\": true, \"parent_id\": \"t1_eu4yu3v\", \"score\": 1, \"author_fullname\": \"t2_15vnbk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"It's the same response every time.\", \"link_title\": \"European MPs\\u2019 motion calls for Hong Kong to withdraw extradition bill and start democratic reform\", \"author_flair_css_class\": null, \"name\": \"t1_eu5pfob\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s the same response every time.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/cet1mf/european_mps_motion_calls_for_hong_kong_to/eu5pfob/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cet1mf/european_mps_motion_calls_for_hong_kong_to/\", \"report_reasons\": null, \"link_author\": \"lebbe\", \"author_flair_text\": null, \"link_url\": \"https://www.scmp.com/news/china/diplomacy/article/3019077/european-mps-motion-calls-hong-kong-withdraw-extradition-bill\", \"created\": 1563511264.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqoex\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5ox1i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Sweet_Assist\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563482148.0, \"send_replies\": true, \"parent_id\": \"t3_ceqoex\", \"score\": 1, \"author_fullname\": \"t2_z5vpzr4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Combined US and EU pressure should crush the communists. Too bad Canada is too small to do anything so we'll just watch in anticipation.\", \"link_title\": \"European Parliament to debate enacting export controls on tech 'used to violate basic rights' in Hong Kong\", \"author_flair_css_class\": null, \"name\": \"t1_eu5ox1i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECombined US and EU pressure should crush the communists. Too bad Canada is too small to do anything so we\\u0026#39;ll just watch in anticipation.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/eu5ox1i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/\", \"report_reasons\": null, \"link_author\": \"HKnational\", \"author_flair_text\": null, \"link_url\": \"https://www.hongkongfp.com/2019/07/18/european-parliament-debate-enacting-export-controls-tech-used-violate-basic-rights-hong-kong/\", \"created\": 1563510948.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5mjkw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"FATconTROLLah\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563480713.0, \"send_replies\": true, \"parent_id\": \"t1_eu58axi\", \"score\": 1, \"author_fullname\": \"t2_wdq3y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"\\u003E China defeated Trump\\n\\nLol, where?\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu5mjkw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EChina defeated Trump\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ELol, where?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu5mjkw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563509513.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5mept\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"FATconTROLLah\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563480630.0, \"send_replies\": true, \"parent_id\": \"t1_eu45xad\", \"score\": 1, \"author_fullname\": \"t2_wdq3y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"It\\u2019s all relative. Hong Kong Chinese think Mainland Chinese critical thinking skills are shite. Expats think local Hong Kong Chinese critical thinking skills are a joke.\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu5mept\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u2019s all relative. Hong Kong Chinese think Mainland Chinese critical thinking skills are shite. Expats think local Hong Kong Chinese critical thinking skills are a joke.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu5mept/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563509430.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5m9x8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"FATconTROLLah\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563480549.0, \"send_replies\": true, \"parent_id\": \"t1_eu4vk6p\", \"score\": 1, \"author_fullname\": \"t2_wdq3y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Lol. It hurts sometimes when they realise some white kid in their class has just as many generations in Hong Kong as they do. It\\u2019s even funnier when it\\u2019s an Indian kid too.\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu5m9x8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELol. It hurts sometimes when they realise some white kid in their class has just as many generations in Hong Kong as they do. It\\u2019s even funnier when it\\u2019s an Indian kid too.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu5m9x8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563509349.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5lkd9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BROmanceNZ\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563480118.0, \"send_replies\": true, \"parent_id\": \"t1_eu504ur\", \"score\": 1, \"author_fullname\": \"t2_hpkp7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Australian\\u2019s don\\u2019t drink Fosters. They export it.\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu5lkd9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAustralian\\u2019s don\\u2019t drink Fosters. They export it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu5lkd9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563508918.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5kuz5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"scaur\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563479700.0, \"send_replies\": true, \"parent_id\": \"t1_eu49q1i\", \"score\": 1, \"author_fullname\": \"t2_h0zzj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Isn't China has better job opportunity and the cost of living will be a lot cheaper than in HK. Sorry I am trying understand their situation.\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu5kuz5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIsn\\u0026#39;t China has better job opportunity and the cost of living will be a lot cheaper than in HK. Sorry I am trying understand their situation.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu5kuz5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563508500.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cequpd\", \"author_flair_template_id\": \"7317739e-54fb-11e9-b747-0ee35a59e0fa\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5kbmg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Haruto-Kaito\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563479381.0, \"send_replies\": true, \"parent_id\": \"t3_cequpd\", \"score\": 1, \"author_fullname\": \"t2_2925tnks\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"The comment section is full of cancer.\", \"link_title\": \"Some protest video on scmp\", \"author_flair_css_class\": null, \"name\": \"t1_eu5kbmg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe comment section is full of cancer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": \"dark\", \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/cequpd/some_protest_video_on_scmp/eu5kbmg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cequpd/some_protest_video_on_scmp/\", \"report_reasons\": null, \"link_author\": \"Tc0008\", \"author_flair_text\": \"UK\", \"link_url\": \"https://youtu.be/oM5hJnGLPng\", \"created\": 1563508181.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqoex\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5kak3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"yc_hk\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563479364.0, \"send_replies\": true, \"parent_id\": \"t1_eu5dilf\", \"score\": 1, \"author_fullname\": \"t2_e0ear\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"If I recall correctly, HK Police's current stash of tear gas is British-made.\", \"link_title\": \"European Parliament to debate enacting export controls on tech 'used to violate basic rights' in Hong Kong\", \"author_flair_css_class\": null, \"name\": \"t1_eu5kak3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I recall correctly, HK Police\\u0026#39;s current stash of tear gas is British-made.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/eu5kak3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/\", \"report_reasons\": null, \"link_author\": \"HKnational\", \"author_flair_text\": null, \"link_url\": \"https://www.hongkongfp.com/2019/07/18/european-parliament-debate-enacting-export-controls-tech-used-violate-basic-rights-hong-kong/\", \"created\": 1563508164.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqoex\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5j521\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Shinkowski\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563478675.0, \"send_replies\": true, \"parent_id\": \"t1_eu5dilf\", \"score\": 1, \"author_fullname\": \"t2_liz6m\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Most likely something that\\u2019s made in China anyway \\ud83d\\ude02\", \"link_title\": \"European Parliament to debate enacting export controls on tech 'used to violate basic rights' in Hong Kong\", \"author_flair_css_class\": null, \"name\": \"t1_eu5j521\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMost likely something that\\u2019s made in China anyway \\ud83d\\ude02\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/eu5j521/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/\", \"report_reasons\": null, \"link_author\": \"HKnational\", \"author_flair_text\": null, \"link_url\": \"https://www.hongkongfp.com/2019/07/18/european-parliament-debate-enacting-export-controls-tech-used-violate-basic-rights-hong-kong/\", \"created\": 1563507475.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqoex\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5hhd7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"DoctorWorm_\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563477673.0, \"send_replies\": true, \"parent_id\": \"t1_eu4k1b5\", \"score\": 1, \"author_fullname\": \"t2_6ah48\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Pretty hard-hitting. The EU parliament is saying that they're fully on the protesters' side here.\", \"link_title\": \"European Parliament to debate enacting export controls on tech 'used to violate basic rights' in Hong Kong\", \"author_flair_css_class\": null, \"name\": \"t1_eu5hhd7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPretty hard-hitting. The EU parliament is saying that they\\u0026#39;re fully on the protesters\\u0026#39; side here.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/eu5hhd7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/\", \"report_reasons\": null, \"link_author\": \"HKnational\", \"author_flair_text\": null, \"link_url\": \"https://www.hongkongfp.com/2019/07/18/european-parliament-debate-enacting-export-controls-tech-used-violate-basic-rights-hong-kong/\", \"created\": 1563506473.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cef8y1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5eygl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MistyMystery\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563476124.0, \"send_replies\": true, \"parent_id\": \"t1_eu3ugrh\", \"score\": 1, \"author_fullname\": \"t2_12cbrl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"There are a significant number of older Hong Kong-ers who support the younger Hong Kong-ers too.\", \"link_title\": \"Did Hong Kong Police Abuse Protesters? What the Videos Show. New York Times\", \"author_flair_css_class\": null, \"name\": \"t1_eu5eygl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere are a significant number of older Hong Kong-ers who support the younger Hong Kong-ers too.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/cef8y1/did_hong_kong_police_abuse_protesters_what_the/eu5eygl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cef8y1/did_hong_kong_police_abuse_protesters_what_the/\", \"report_reasons\": null, \"link_author\": \"R8a8\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=gHfWuUhrKQg\\u0026frags=pl%2Cwn\", \"created\": 1563504924.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cef7eo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5emrh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MistyMystery\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563475927.0, \"send_replies\": true, \"parent_id\": \"t3_cef7eo\", \"score\": 1, \"author_fullname\": \"t2_12cbrl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"This drama is probably pretty old, I vaguely remember this...\", \"link_title\": \"Even TVB is making fun of police not showing their ID\", \"author_flair_css_class\": null, \"name\": \"t1_eu5emrh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis drama is probably pretty old, I vaguely remember this...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/cef7eo/even_tvb_is_making_fun_of_police_not_showing/eu5emrh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cef7eo/even_tvb_is_making_fun_of_police_not_showing/\", \"report_reasons\": null, \"link_author\": \"ticonderoga67\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/irro6u235wa31\", \"created\": 1563504727.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqoex\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5dilf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"poupounette\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563475241.0, \"send_replies\": true, \"parent_id\": \"t3_ceqoex\", \"score\": 1, \"author_fullname\": \"t2_d3adm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Which tech from Europe would be used?\", \"link_title\": \"European Parliament to debate enacting export controls on tech 'used to violate basic rights' in Hong Kong\", \"author_flair_css_class\": null, \"name\": \"t1_eu5dilf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhich tech from Europe would be used?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/eu5dilf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/\", \"report_reasons\": null, \"link_author\": \"HKnational\", \"author_flair_text\": null, \"link_url\": \"https://www.hongkongfp.com/2019/07/18/european-parliament-debate-enacting-export-controls-tech-used-violate-basic-rights-hong-kong/\", \"created\": 1563504041.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceusn2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5bq0j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"isaacng1997\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563474131.0, \"send_replies\": true, \"parent_id\": \"t3_ceusn2\", \"score\": 1, \"author_fullname\": \"t2_gy6dp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Should watch the voting process. Literally took 5 seconds. I was amazed and impressed.\\n\\n [https://www.facebook.com/RTHKVNEWS/videos/625358204652677/](https://www.facebook.com/RTHKVNEWS/videos/625358204652677/)\", \"link_title\": \"European Parliament approves motion on Hong Kong, as Beijing calls it full of \\u2018ignorance and prejudice\\u2019\", \"author_flair_css_class\": null, \"name\": \"t1_eu5bq0j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShould watch the voting process. Literally took 5 seconds. I was amazed and impressed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.facebook.com/RTHKVNEWS/videos/625358204652677/\\\"\\u003Ehttps://www.facebook.com/RTHKVNEWS/videos/625358204652677/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceusn2/european_parliament_approves_motion_on_hong_kong/eu5bq0j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceusn2/european_parliament_approves_motion_on_hong_kong/\", \"report_reasons\": null, \"link_author\": \"lebbe\", \"author_flair_text\": null, \"link_url\": \"https://www.scmp.com/news/china/diplomacy/article/3019177/beijing-says-hong-kong-motion-tabled-members-european\", \"created\": 1563502931.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cevww1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5bpeq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"Serene_Potato\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563474120.0, \"send_replies\": true, \"parent_id\": \"t3_cevww1\", \"score\": 1, \"author_fullname\": \"t2_phyw2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"The problem isn't that its not one person one vote, the problem is that half the seats are rigged by the CCP...\", \"link_title\": \"HKU Vice-Chancellor and President: \\\"Some of you may believe that the government is not by one person one vote. Therefore it is not legitimate ... But in fact the US president is not by popular vote. If you check the record, some presidents did not win a majority vote and become presidents\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu5bpeq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe problem isn\\u0026#39;t that its not one person one vote, the problem is that half the seats are rigged by the CCP...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/cevww1/hku_vicechancellor_and_president_some_of_you_may/eu5bpeq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cevww1/hku_vicechancellor_and_president_some_of_you_may/\", \"report_reasons\": null, \"link_author\": \"isaacng1997\", \"author_flair_text\": null, \"link_url\": \"https://thestandnews.com/politics/%E6%B8%AF%E5%A4%A7%E5%BC%B5%E7%BF%94/?fbclid=IwAR0FSMVyxyObHTGJ_SMkxCVRIuHGRmNi20MK-5pydrRYdKQPTlh7dLta02k\", \"created\": 1563502920.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cevww1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5b5n5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"isaacng1997\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563473780.0, \"send_replies\": true, \"parent_id\": \"t3_cevww1\", \"score\": 1, \"author_fullname\": \"t2_gy6dp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"He is an US citizen btw. Graduated and have taught at UC Berkeley.\", \"link_title\": \"HKU Vice-Chancellor and President: \\\"Some of you may believe that the government is not by one person one vote. Therefore it is not legitimate ... But in fact the US president is not by popular vote. If you check the record, some presidents did not win a majority vote and become presidents\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu5b5n5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe is an US citizen btw. Graduated and have taught at UC Berkeley.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/cevww1/hku_vicechancellor_and_president_some_of_you_may/eu5b5n5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cevww1/hku_vicechancellor_and_president_some_of_you_may/\", \"report_reasons\": null, \"link_author\": \"isaacng1997\", \"author_flair_text\": null, \"link_url\": \"https://thestandnews.com/politics/%E6%B8%AF%E5%A4%A7%E5%BC%B5%E7%BF%94/?fbclid=IwAR0FSMVyxyObHTGJ_SMkxCVRIuHGRmNi20MK-5pydrRYdKQPTlh7dLta02k\", \"created\": 1563502580.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cevww1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5b1oz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"isaacng1997\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563473710.0, \"send_replies\": true, \"parent_id\": \"t3_cevww1\", \"score\": 1, \"author_fullname\": \"t2_gy6dp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"English:\\n\\nZhang Xiang, the president of the University of Hong Kong, issued a statement earlier, condemning 71 the violent storming into the legco. The student union was dissatisfied that he only condemned the violence of the protesters, but did not consider the whole situation and did not face the police abuse of power and other issues; and the student union asked him to withdraw the statement. Zhang Xiang attended the forum today and talked with teachers, students and alumni. In his opening speech, he reiterated that freedom of assembly and speech are the core values \\u200b\\u200bof the university, but violence is never the solution to the problem. He was asked whether he would equally condemn the police for violence. Zhang Xiang said that he knew that there were arguments on both sides of the incident. He believes that we will know whether there is any excessive violent used by the police after the investigation. If it is true, it should also be condemned. \\n\\n\\u0026#x200B;\\n\\nThe forum was held at HKU this evening and hundreds of student alumni attended the event. At the forum , some students questioned that if Zhang Xiang said that he had to investigate before he could condemn the police for violence, why did he choose to immediately condemn the demonstrators within a few days? Zhang Xiang responded that whether the police used excessive force could not be determined solely on online videos. It is necessary to have an investigation. \\n\\n\\u0026#x200B;\\n\\n \\nAt the forum , the principal was asked to withdraw the statement, but Zhang Xiang only reiterated the consequences of the violence and asked if the students wanted to see someone bleeding. However, some students screamed that there had been a bloodshed, which was caused by the police shooting at the demonstrators, and that the principal\\u2019s response was off topic. Zhang Xiang did not withdraw the condemnation statement at the end. \\n\\n\\u0026#x200B;\\n\\nHe refers to himself as a scholar, not a politician. His position is to ensure that the campus has freedom of speech and so on. When students pointed out that Hong Kong does not have democracy, Zhang Xiang, who has studied and taught in the United States, says he respect the opinion that the chief executive is not elected by one person one vote. However, he also pointed out that the US president isn't elected by one person one vote either. Candidates with fewer vote would win the election.\\n\\n\\u0026#x200B;\\n\\nHe said that freedom of speech is limited, and that if hate speech is published, there will be consequences. He asks students to respect different opinions and respect people of different skin colors. \\n\\n\\u0026#x200B;\\n\\nAlan Leung, HKU alumni, chairman of the Civic Party and senior barrister, took took Sun Yat-sen, the founding father, as an example, pointing out that sometimes violence can solve the problem. He said that of course everyone does not want to see violence, and those in power have the responsibility to listen to the voice of the public to avoid violence. His words immediately attracted the students to cheer. \\n\\n\\u0026#x200B;\\n\\nZhang Xiang responded by stressing that violence is not a solution to the problem, and that it is a modern society now and schools should not be teaching students as so.\\n\\n\\u0026#x200B;\\n\\nThere was also students, presumably from mainland, with an accent at the forum. They said that they would like to have ample resources to study. They questioned that the current campus of the University of Hong Kong was too politicized and there was a burst of laughter on the scene.\", \"link_title\": \"HKU Vice-Chancellor and President: \\\"Some of you may believe that the government is not by one person one vote. Therefore it is not legitimate ... But in fact the US president is not by popular vote. If you check the record, some presidents did not win a majority vote and become presidents\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu5b1oz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEnglish:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EZhang Xiang, the president of the University of Hong Kong, issued a statement earlier, condemning 71 the violent storming into the legco. The student union was dissatisfied that he only condemned the violence of the protesters, but did not consider the whole situation and did not face the police abuse of power and other issues; and the student union asked him to withdraw the statement. Zhang Xiang attended the forum today and talked with teachers, students and alumni. In his opening speech, he reiterated that freedom of assembly and speech are the core values \\u200b\\u200bof the university, but violence is never the solution to the problem. He was asked whether he would equally condemn the police for violence. Zhang Xiang said that he knew that there were arguments on both sides of the incident. He believes that we will know whether there is any excessive violent used by the police after the investigation. If it is true, it should also be condemned. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe forum was held at HKU this evening and hundreds of student alumni attended the event. At the forum , some students questioned that if Zhang Xiang said that he had to investigate before he could condemn the police for violence, why did he choose to immediately condemn the demonstrators within a few days? Zhang Xiang responded that whether the police used excessive force could not be determined solely on online videos. It is necessary to have an investigation. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the forum , the principal was asked to withdraw the statement, but Zhang Xiang only reiterated the consequences of the violence and asked if the students wanted to see someone bleeding. However, some students screamed that there had been a bloodshed, which was caused by the police shooting at the demonstrators, and that the principal\\u2019s response was off topic. Zhang Xiang did not withdraw the condemnation statement at the end. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe refers to himself as a scholar, not a politician. His position is to ensure that the campus has freedom of speech and so on. When students pointed out that Hong Kong does not have democracy, Zhang Xiang, who has studied and taught in the United States, says he respect the opinion that the chief executive is not elected by one person one vote. However, he also pointed out that the US president isn\\u0026#39;t elected by one person one vote either. Candidates with fewer vote would win the election.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe said that freedom of speech is limited, and that if hate speech is published, there will be consequences. He asks students to respect different opinions and respect people of different skin colors. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlan Leung, HKU alumni, chairman of the Civic Party and senior barrister, took took Sun Yat-sen, the founding father, as an example, pointing out that sometimes violence can solve the problem. He said that of course everyone does not want to see violence, and those in power have the responsibility to listen to the voice of the public to avoid violence. His words immediately attracted the students to cheer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EZhang Xiang responded by stressing that violence is not a solution to the problem, and that it is a modern society now and schools should not be teaching students as so.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere was also students, presumably from mainland, with an accent at the forum. They said that they would like to have ample resources to study. They questioned that the current campus of the University of Hong Kong was too politicized and there was a burst of laughter on the scene.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/cevww1/hku_vicechancellor_and_president_some_of_you_may/eu5b1oz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cevww1/hku_vicechancellor_and_president_some_of_you_may/\", \"report_reasons\": null, \"link_author\": \"isaacng1997\", \"author_flair_text\": null, \"link_url\": \"https://thestandnews.com/politics/%E6%B8%AF%E5%A4%A7%E5%BC%B5%E7%BF%94/?fbclid=IwAR0FSMVyxyObHTGJ_SMkxCVRIuHGRmNi20MK-5pydrRYdKQPTlh7dLta02k\", \"created\": 1563502510.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cevww1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5awqj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"NewtonPrep\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563473620.0, \"send_replies\": true, \"parent_id\": \"t3_cevww1\", \"score\": 1, \"author_fullname\": \"t2_38cqmxg5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"In actuality, the US election system is based on an electoral college where a total of 538 electors vote on candidates based on the number/percentage of voters in their home districts. \\n\\nVoters have a say in the outcome. \\n\\nIn HK, the Chief Executive is ***selected*** by a board of humorless, stuck-up dudes with a fetish for sniffing Xi Jinping's jock strap. \\n\\nThe comparison with the electoral college in the US fails to address the core problem which the HKU Vice-Chancellor/President and Carrie Lams has completely ignored: **You solve a political problem with a political solution for the greater good not with police brutality.**\", \"link_title\": \"HKU Vice-Chancellor and President: \\\"Some of you may believe that the government is not by one person one vote. Therefore it is not legitimate ... But in fact the US president is not by popular vote. If you check the record, some presidents did not win a majority vote and become presidents\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu5awqj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn actuality, the US election system is based on an electoral college where a total of 538 electors vote on candidates based on the number/percentage of voters in their home districts. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVoters have a say in the outcome. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn HK, the Chief Executive is \\u003Cstrong\\u003E\\u003Cem\\u003Eselected\\u003C/em\\u003E\\u003C/strong\\u003E by a board of humorless, stuck-up dudes with a fetish for sniffing Xi Jinping\\u0026#39;s jock strap. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe comparison with the electoral college in the US fails to address the core problem which the HKU Vice-Chancellor/President and Carrie Lams has completely ignored: \\u003Cstrong\\u003EYou solve a political problem with a political solution for the greater good not with police brutality.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/cevww1/hku_vicechancellor_and_president_some_of_you_may/eu5awqj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cevww1/hku_vicechancellor_and_president_some_of_you_may/\", \"report_reasons\": null, \"link_author\": \"isaacng1997\", \"author_flair_text\": null, \"link_url\": \"https://thestandnews.com/politics/%E6%B8%AF%E5%A4%A7%E5%BC%B5%E7%BF%94/?fbclid=IwAR0FSMVyxyObHTGJ_SMkxCVRIuHGRmNi20MK-5pydrRYdKQPTlh7dLta02k\", \"created\": 1563502420.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqn15\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5ao4o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"chinkiang_vinegar\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563473471.0, \"send_replies\": true, \"parent_id\": \"t3_ceqn15\", \"score\": 1, \"author_fullname\": \"t2_4kx4utt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"I see all these complaints about how the MTR is over-budget, and delayed, etc. etc. etc. but I really don't think you guys know how good you have it especially when compared to us over here in the US\", \"link_title\": \"Tuen Ma Line first phase to open in 2020 first quarter\", \"author_flair_css_class\": null, \"name\": \"t1_eu5ao4o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see all these complaints about how the MTR is over-budget, and delayed, etc. etc. etc. but I really don\\u0026#39;t think you guys know how good you have it especially when compared to us over here in the US\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": true, \"permalink\": \"/r/HongKong/comments/ceqn15/tuen_ma_line_first_phase_to_open_in_2020_first/eu5ao4o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceqn15/tuen_ma_line_first_phase_to_open_in_2020_first/\", \"report_reasons\": null, \"link_author\": \"HKnational\", \"author_flair_text\": null, \"link_url\": \"http://www.thestandard.com.hk/breaking-news.php?id=131614\\u0026story_id=131614\\u0026d_str=20190718\\u0026sid=4\", \"created\": 1563502271.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd3nh1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5ago5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Ze_Banded\", \"num_comments\": 20, \"can_mod_post\": false, \"created_utc\": 1563473341.0, \"send_replies\": true, \"parent_id\": \"t1_eu55zui\", \"score\": 1, \"author_fullname\": \"t2_o8yoqmg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"no, but I found out lids of plastic storage boxes could also work\", \"link_title\": \"Any Hongkong criminal lawyers/ law students here? Is it legal for the press and protestors to carry DIY shieldsfor self protection?\", \"author_flair_css_class\": null, \"name\": \"t1_eu5ago5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eno, but I found out lids of plastic storage boxes could also work\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cd3nh1/any_hongkong_criminal_lawyers_law_students_here/eu5ago5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cd3nh1/any_hongkong_criminal_lawyers_law_students_here/\", \"report_reasons\": null, \"link_author\": \"UnagiTamaDon\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/yvuz4cw95aa31.jpg\", \"created\": 1563502141.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ces7bv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5a54d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mathownsme\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563473142.0, \"send_replies\": true, \"parent_id\": \"t3_ces7bv\", \"score\": 3, \"author_fullname\": \"t2_hs72bom\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"lmao love the picture choice. Very isis like.\", \"link_title\": \"Threat of dismemberment\", \"author_flair_css_class\": null, \"name\": \"t1_eu5a54d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Elmao love the picture choice. Very isis like.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ces7bv/threat_of_dismemberment/eu5a54d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ces7bv/threat_of_dismemberment/\", \"report_reasons\": null, \"link_author\": \"Hongkongjai\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/qyv55hrt82b31.jpg\", \"created\": 1563501942.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu59v8s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiveForPanda\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563472968.0, \"send_replies\": true, \"parent_id\": \"t1_eu3vmk1\", \"score\": 0, \"author_fullname\": \"t2_sl9l6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"HK would not be able to become a city of 7 million people without mainland migrants.\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu59v8s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHK would not be able to become a city of 7 million people without mainland migrants.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu59v8s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563501768.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceplzi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu59fxh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"crestsands2017\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563472703.0, \"send_replies\": true, \"parent_id\": \"t3_ceplzi\", \"score\": 2, \"author_fullname\": \"t2_15vnbk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"With private universities, \\\"old boys\\\" also lend you a big lift. If your parents went to a certain school, you get preferential treatment.\", \"link_title\": \"TIL: Carrie Lam's 2 sons earned a BA in Math from Cambridge. Joshua's studying PhD in math at Harvard.\", \"author_flair_css_class\": null, \"name\": \"t1_eu59fxh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith private universities, \\u0026quot;old boys\\u0026quot; also lend you a big lift. If your parents went to a certain school, you get preferential treatment.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceplzi/til_carrie_lams_2_sons_earned_a_ba_in_math_from/eu59fxh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceplzi/til_carrie_lams_2_sons_earned_a_ba_in_math_from/\", \"report_reasons\": null, \"link_author\": \"eun3\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/ceplzi/til_carrie_lams_2_sons_earned_a_ba_in_math_from/\", \"created\": 1563501503.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563473999.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceusn2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu59e16\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"NewtonPrep\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563472672.0, \"send_replies\": true, \"parent_id\": \"t3_ceusn2\", \"score\": 12, \"author_fullname\": \"t2_38cqmxg5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"At the rate the CCP is going, they'll soon find themselves isolated. The only allies they'll have left are third-world dictators on China's payroll. You know the type -- recipients of infrastructure projects and loan-shark deals which they'll never repay. \\n\\nHey, good luck with that type of support once political tensions escalate.\", \"link_title\": \"European Parliament approves motion on Hong Kong, as Beijing calls it full of \\u2018ignorance and prejudice\\u2019\", \"author_flair_css_class\": null, \"name\": \"t1_eu59e16\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAt the rate the CCP is going, they\\u0026#39;ll soon find themselves isolated. The only allies they\\u0026#39;ll have left are third-world dictators on China\\u0026#39;s payroll. You know the type -- recipients of infrastructure projects and loan-shark deals which they\\u0026#39;ll never repay. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHey, good luck with that type of support once political tensions escalate.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceusn2/european_parliament_approves_motion_on_hong_kong/eu59e16/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceusn2/european_parliament_approves_motion_on_hong_kong/\", \"report_reasons\": null, \"link_author\": \"lebbe\", \"author_flair_text\": null, \"link_url\": \"https://www.scmp.com/news/china/diplomacy/article/3019177/beijing-says-hong-kong-motion-tabled-members-european\", \"created\": 1563501472.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 12}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqoex\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu598es\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"Eastern_Eagle\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563472576.0, \"send_replies\": true, \"parent_id\": \"t1_eu55u3z\", \"score\": 7, \"author_fullname\": \"t2_5apr0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"I dont like to build my pleasure on others' suffering but right now in moderacy its justified\", \"link_title\": \"European Parliament to debate enacting export controls on tech 'used to violate basic rights' in Hong Kong\", \"author_flair_css_class\": \"\", \"name\": \"t1_eu598es\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI dont like to build my pleasure on others\\u0026#39; suffering but right now in moderacy its justified\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/eu598es/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/\", \"report_reasons\": null, \"link_author\": \"HKnational\", \"author_flair_text\": \"\\u9999\\u6e2f\\u8c6c\\u6c11\", \"link_url\": \"https://www.hongkongfp.com/2019/07/18/european-parliament-debate-enacting-export-controls-tech-used-violate-basic-rights-hong-kong/\", \"created\": 1563501376.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563472619.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu58axi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"greatbaizuo\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563472018.0, \"send_replies\": true, \"parent_id\": \"t1_eu47jmi\", \"score\": -5, \"author_fullname\": \"t2_1yk381cy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"This is what racist white males like you have been trying to do to the whole world.\\n\\nChina is the solution. China defeated Trump. Your white supremacy is next!\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu58axi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is what racist white males like you have been trying to do to the whole world.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChina is the solution. China defeated Trump. Your white supremacy is next!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu58axi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563500818.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": -5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceq1a7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu57qy1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"the_oops_gamer\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563471686.0, \"send_replies\": true, \"parent_id\": \"t3_ceq1a7\", \"score\": 1, \"author_fullname\": \"t2_8m7v7pr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"I personally think Amazon is cheaper(because of discounts) then Hong Kong for gaming related stuff. Even with shipping, prices are lower.\\n\\n\\u0026#x200B;\\n\\nThat being said, \\n\\nGolden Computer Cente r(2-3 floors of heaven, Top floor are computer related, ground floors are gaming and underground is mobile stuff) - 146-152 Fuk Wa St, Sham Shui Po \\n\\n\\u0026#x200B;\\n\\n188 Game Center(More games and phone stuff) - 188 Wan Chai Road\\n\\n\\u0026#x200B;\\n\\n298 Computer zone(More headset and computer things) - 298 Hennessy Road\\n\\n\\u0026#x200B;\\n\\nIn my experience, Sham Shui Po is cheaper and lots of selection then Wan Chai. It all comes down to where you staying and how lazy you are. \\n\\n\\u0026#x200B;\\n\\nIf you have a clear idea of what headset you want. You can go to [https://www.price.com.hk/](https://www.price.com.hk/) . Find the cheapest offer and go to that store. If the store says a higher price, refer them to their offer. \\n\\n\\u0026#x200B;\\n\\nMTR is great to get around. Google maps will tell you exactly how to get there using the MTR.\", \"link_title\": \"Where to buy PC (steam), PS4, Switch Games for cheap? And also a wireless headset?\", \"author_flair_css_class\": null, \"name\": \"t1_eu57qy1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI personally think Amazon is cheaper(because of discounts) then Hong Kong for gaming related stuff. Even with shipping, prices are lower.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat being said, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGolden Computer Cente r(2-3 floors of heaven, Top floor are computer related, ground floors are gaming and underground is mobile stuff) - 146-152 Fuk Wa St, Sham Shui Po \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E188 Game Center(More games and phone stuff) - 188 Wan Chai Road\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E298 Computer zone(More headset and computer things) - 298 Hennessy Road\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my experience, Sham Shui Po is cheaper and lots of selection then Wan Chai. It all comes down to where you staying and how lazy you are. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you have a clear idea of what headset you want. You can go to \\u003Ca href=\\\"https://www.price.com.hk/\\\"\\u003Ehttps://www.price.com.hk/\\u003C/a\\u003E . Find the cheapest offer and go to that store. If the store says a higher price, refer them to their offer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMTR is great to get around. Google maps will tell you exactly how to get there using the MTR.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceq1a7/where_to_buy_pc_steam_ps4_switch_games_for_cheap/eu57qy1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceq1a7/where_to_buy_pc_steam_ps4_switch_games_for_cheap/\", \"report_reasons\": null, \"link_author\": \"Dragathar12\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/ceq1a7/where_to_buy_pc_steam_ps4_switch_games_for_cheap/\", \"created\": 1563500486.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563472188.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceorvq\", \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu576o1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phy361sm\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1563471343.0, \"send_replies\": true, \"parent_id\": \"t1_eu50cxi\", \"score\": 1, \"author_fullname\": \"t2_g3nnt6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"There are two types of independence - de facto (technically running an independent gov) and de jure (officially recognized by all other countries). Taiwan only achieves the first one, which is basically the necessary condition for any land that wants to bring up the independence issue. So it is more accurate to say that the process of Taiwan independence has just begun. I don't know why you would have an illusion that Taiwan has already achieved full independence. \\n\\nFor your reference: [https://www.quora.com/Is-Taiwan-already-independent](https://www.quora.com/Is-Taiwan-already-independent) \\n\\nHave a look at the first comment, which explains the term and how to apply on the current status of Taiwan.\", \"link_title\": \"Hong Kong-based Public Opinion Research Institute this month found that 44% of Hong Kongers support Taiwan independence (even though question was framed confusingly as 'becoming' independent)\", \"author_flair_css_class\": \"swedish-friend\", \"name\": \"t1_eu576o1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere are two types of independence - de facto (technically running an independent gov) and de jure (officially recognized by all other countries). Taiwan only achieves the first one, which is basically the necessary condition for any land that wants to bring up the independence issue. So it is more accurate to say that the process of Taiwan independence has just begun. I don\\u0026#39;t know why you would have an illusion that Taiwan has already achieved full independence. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor your reference: \\u003Ca href=\\\"https://www.quora.com/Is-Taiwan-already-independent\\\"\\u003Ehttps://www.quora.com/Is-Taiwan-already-independent\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHave a look at the first comment, which explains the term and how to apply on the current status of Taiwan.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/eu576o1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/\", \"report_reasons\": null, \"link_author\": \"article10ECHR\", \"author_flair_text\": \"\\u5929\\u4f51\\u6211\\u57ce\", \"link_url\": \"https://www.pori.hk/nationalissues/taiwan-independence\", \"created\": 1563500143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cet7xs\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu56puk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"ZWF0cHVzc3k\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563471057.0, \"send_replies\": true, \"parent_id\": \"t1_eu4zjqm\", \"score\": 5, \"author_fullname\": \"t2_2w0qnm0q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Laughs in Dunkirk.\", \"link_title\": \"950m long human supply chain at 7.14 Sha Tin protest\", \"author_flair_css_class\": null, \"name\": \"t1_eu56puk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELaughs in Dunkirk.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cet7xs/950m_long_human_supply_chain_at_714_sha_tin/eu56puk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cet7xs/950m_long_human_supply_chain_at_714_sha_tin/\", \"report_reasons\": null, \"link_author\": \"Chocobean\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/N20MejW.jpg\", \"created\": 1563499857.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cd3nh1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu55zui\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"UnagiTamaDon\", \"num_comments\": 20, \"can_mod_post\": false, \"created_utc\": 1563470626.0, \"send_replies\": true, \"parent_id\": \"t1_ette6j8\", \"score\": 1, \"author_fullname\": \"t2_176dz6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"any good against the baton and rubber bullets haha\", \"link_title\": \"Any Hongkong criminal lawyers/ law students here? Is it legal for the press and protestors to carry DIY shieldsfor self protection?\", \"author_flair_css_class\": null, \"name\": \"t1_eu55zui\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eany good against the baton and rubber bullets haha\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cd3nh1/any_hongkong_criminal_lawyers_law_students_here/eu55zui/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cd3nh1/any_hongkong_criminal_lawyers_law_students_here/\", \"report_reasons\": null, \"link_author\": \"UnagiTamaDon\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/yvuz4cw95aa31.jpg\", \"created\": 1563499426.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqoex\", \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu55u3z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"On9On9Laowai\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563470529.0, \"send_replies\": true, \"parent_id\": \"t3_ceqoex\", \"score\": 14, \"author_fullname\": \"t2_2r79q748\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Haha take that HK government. I love seeing the government humiliated. I derive sadistic pleasure from watching them get screwed.\", \"link_title\": \"European Parliament to debate enacting export controls on tech 'used to violate basic rights' in Hong Kong\", \"author_flair_css_class\": \"swedish-friend\", \"name\": \"t1_eu55u3z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHaha take that HK government. I love seeing the government humiliated. I derive sadistic pleasure from watching them get screwed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/eu55u3z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/\", \"report_reasons\": null, \"link_author\": \"HKnational\", \"author_flair_text\": \"Freedom-hi!\", \"link_url\": \"https://www.hongkongfp.com/2019/07/18/european-parliament-debate-enacting-export-controls-tech-used-violate-basic-rights-hong-kong/\", \"created\": 1563499329.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 14}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_celcb4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu55a1y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jasonhpchu\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1563470194.0, \"send_replies\": true, \"parent_id\": \"t1_eu54v41\", \"score\": 2, \"author_fullname\": \"t2_167usj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"That's true, thinking back, the aquariums were the highlights.\\n\\nSkip the dolphin show, that was lame.\", \"link_title\": \"Off to Hong Kong for a few days. Looking for things to do!\", \"author_flair_css_class\": null, \"name\": \"t1_eu55a1y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s true, thinking back, the aquariums were the highlights.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkip the dolphin show, that was lame.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/eu55a1y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"report_reasons\": null, \"link_author\": \"kirbyforce\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"created\": 1563498994.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_celcb4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu54v41\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PDNiaWdkaWNr\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1563469941.0, \"send_replies\": true, \"parent_id\": \"t1_eu54cqh\", \"score\": 1, \"author_fullname\": \"t2_6jtxvuf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"When I go to Ocean Park, I just go to see fish.\", \"link_title\": \"Off to Hong Kong for a few days. Looking for things to do!\", \"author_flair_css_class\": null, \"name\": \"t1_eu54v41\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I go to Ocean Park, I just go to see fish.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/eu54v41/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"report_reasons\": null, \"link_author\": \"kirbyforce\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"created\": 1563498741.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cet1mf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu54o5t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"someone-elsewhere\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563469826.0, \"send_replies\": true, \"parent_id\": \"t1_eu50yru\", \"score\": 6, \"author_fullname\": \"t2_12kty8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"I'd feel chuffed at my psychic abilities; if it was not the easiest guess I have ever made.\", \"link_title\": \"European MPs\\u2019 motion calls for Hong Kong to withdraw extradition bill and start democratic reform\", \"author_flair_css_class\": null, \"name\": \"t1_eu54o5t\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d feel chuffed at my psychic abilities; if it was not the easiest guess I have ever made.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cet1mf/european_mps_motion_calls_for_hong_kong_to/eu54o5t/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cet1mf/european_mps_motion_calls_for_hong_kong_to/\", \"report_reasons\": null, \"link_author\": \"lebbe\", \"author_flair_text\": null, \"link_url\": \"https://www.scmp.com/news/china/diplomacy/article/3019077/european-mps-motion-calls-hong-kong-withdraw-extradition-bill\", \"created\": 1563498626.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_celcb4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu54cqh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jasonhpchu\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1563469629.0, \"send_replies\": true, \"parent_id\": \"t1_eu3bdlb\", \"score\": 1, \"author_fullname\": \"t2_167usj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Ocean Park just feels old and dated, as others mentioned, it was more a trip down memory lane.\\n\\nDisneyland was fun, but you would need a child at heart to enjoy it.\\n\\nOverall, Ocean Park's more for older folks, while Disneyland for younger.\\n\\nBoth places will be packed with mainland tourists, so brace for that.\\n\\nOcean Park has a One Piece event currently, if you're into that.\", \"link_title\": \"Off to Hong Kong for a few days. Looking for things to do!\", \"author_flair_css_class\": null, \"name\": \"t1_eu54cqh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOcean Park just feels old and dated, as others mentioned, it was more a trip down memory lane.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDisneyland was fun, but you would need a child at heart to enjoy it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOverall, Ocean Park\\u0026#39;s more for older folks, while Disneyland for younger.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth places will be packed with mainland tourists, so brace for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOcean Park has a One Piece event currently, if you\\u0026#39;re into that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/eu54cqh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"report_reasons\": null, \"link_author\": \"kirbyforce\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"created\": 1563498429.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cet7xs\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu54aoe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"someone-elsewhere\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563469593.0, \"send_replies\": true, \"parent_id\": \"t1_eu51pen\", \"score\": 5, \"author_fullname\": \"t2_12kty8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Naa, just a little joke.\\nIf honest it's not too often there are protests in UK, some recently for climate change.\\nHong Kong really is writing the instruction manual for modern day protesting, the rest of the world is not only watching because they support you all, but also because your educating us.\", \"link_title\": \"950m long human supply chain at 7.14 Sha Tin protest\", \"author_flair_css_class\": null, \"name\": \"t1_eu54aoe\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENaa, just a little joke.\\nIf honest it\\u0026#39;s not too often there are protests in UK, some recently for climate change.\\nHong Kong really is writing the instruction manual for modern day protesting, the rest of the world is not only watching because they support you all, but also because your educating us.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cet7xs/950m_long_human_supply_chain_at_714_sha_tin/eu54aoe/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cet7xs/950m_long_human_supply_chain_at_714_sha_tin/\", \"report_reasons\": null, \"link_author\": \"Chocobean\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/N20MejW.jpg\", \"created\": 1563498393.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ces7bv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu544uo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"cliff_of_dover_white\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563469493.0, \"send_replies\": true, \"parent_id\": \"t1_eu4nf0k\", \"score\": 3, \"author_fullname\": \"t2_i4y55\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"More like Rednecks of Hong Kong.\", \"link_title\": \"Threat of dismemberment\", \"author_flair_css_class\": null, \"name\": \"t1_eu544uo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMore like Rednecks of Hong Kong.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ces7bv/threat_of_dismemberment/eu544uo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ces7bv/threat_of_dismemberment/\", \"report_reasons\": null, \"link_author\": \"Hongkongjai\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/qyv55hrt82b31.jpg\", \"created\": 1563498293.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceq1zt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu542hy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yourboijl\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563469452.0, \"send_replies\": true, \"parent_id\": \"t3_ceq1zt\", \"score\": 2, \"author_fullname\": \"t2_12sozp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"South China Morning Post?\\n\\nNo no you got it all wrong, its Alibaba News Network Now\", \"link_title\": \"Their what? Poor choice of words SCMP.\", \"author_flair_css_class\": null, \"name\": \"t1_eu542hy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESouth China Morning Post?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo no you got it all wrong, its Alibaba News Network Now\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceq1zt/their_what_poor_choice_of_words_scmp/eu542hy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceq1zt/their_what_poor_choice_of_words_scmp/\", \"report_reasons\": null, \"link_author\": \"aaclavijo\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/qyq0j2ss21b31.png\", \"created\": 1563498252.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqjwo\", \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu53m0j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"remember_that_girl\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563469172.0, \"send_replies\": true, \"parent_id\": \"t1_eu4lopn\", \"score\": -1, \"author_fullname\": \"t2_17dtax\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"They drive quite okay, and the fact that there are rarely any incidents proves it.\", \"link_title\": \"Bus crash leaves driver dead, 14 passengers hurt - RTHK\", \"author_flair_css_class\": \"swedish-friend\", \"name\": \"t1_eu53m0j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThey drive quite okay, and the fact that there are rarely any incidents proves it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceqjwo/bus_crash_leaves_driver_dead_14_passengers_hurt/eu53m0j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceqjwo/bus_crash_leaves_driver_dead_14_passengers_hurt/\", \"report_reasons\": null, \"link_author\": \"TangerineNightmares\", \"author_flair_text\": \"\\u6c92\\u6709\\u5171\\u7522\\u9ee8\\u624d\\u6709\\u65b0\\u4e2d\\u570b\", \"link_url\": \"https://news.rthk.hk/rthk/en/component/k2/1469063-20190718.htm?spTabChangeable=0\", \"created\": 1563497972.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cet7xs\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu51pen\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Chocobean\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563468008.0, \"send_replies\": true, \"parent_id\": \"t1_eu4zjqm\", \"score\": 1, \"author_fullname\": \"t2_1v1d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Even when the folks at the front need it? :) I don't know much about UK protests.\", \"link_title\": \"950m long human supply chain at 7.14 Sha Tin protest\", \"author_flair_css_class\": null, \"name\": \"t1_eu51pen\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEven when the folks at the front need it? :) I don\\u0026#39;t know much about UK protests.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cet7xs/950m_long_human_supply_chain_at_714_sha_tin/eu51pen/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cet7xs/950m_long_human_supply_chain_at_714_sha_tin/\", \"report_reasons\": null, \"link_author\": \"Chocobean\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/N20MejW.jpg\", \"created\": 1563496808.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cet1mf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu51jw3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"karmish_mafia\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563467916.0, \"send_replies\": true, \"parent_id\": \"t1_eu50yru\", \"score\": 8, \"author_fullname\": \"t2_jz0k0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"\\u003EDo the 85 MEPs who signed the document understand \\u2018the basic concept of the rule of law?\\u2019, foreign ministry\\u2019s office in Hong Kong asks\\n\\n\\n*If they do, please add me on wechat @ foreignministerWangYi88*\", \"link_title\": \"European MPs\\u2019 motion calls for Hong Kong to withdraw extradition bill and start democratic reform\", \"author_flair_css_class\": null, \"name\": \"t1_eu51jw3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDo the 85 MEPs who signed the document understand \\u2018the basic concept of the rule of law?\\u2019, foreign ministry\\u2019s office in Hong Kong asks\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EIf they do, please add me on wechat @ foreignministerWangYi88\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cet1mf/european_mps_motion_calls_for_hong_kong_to/eu51jw3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cet1mf/european_mps_motion_calls_for_hong_kong_to/\", \"report_reasons\": null, \"link_author\": \"lebbe\", \"author_flair_text\": null, \"link_url\": \"https://www.scmp.com/news/china/diplomacy/article/3019077/european-mps-motion-calls-hong-kong-withdraw-extradition-bill\", \"created\": 1563496716.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cet1mf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu50yru\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"lebbe\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563467549.0, \"send_replies\": true, \"parent_id\": \"t1_eu4yu3v\", \"score\": 13, \"author_fullname\": \"t2_az5wx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"You called it:\\n\\n[European Parliament approves motion on Hong Kong, as Beijing calls it full of \\u2018ignorance and prejudice\\u2019](https://www.scmp.com/news/china/diplomacy/article/3019177/beijing-says-hong-kong-motion-tabled-members-european)\", \"link_title\": \"European MPs\\u2019 motion calls for Hong Kong to withdraw extradition bill and start democratic reform\", \"author_flair_css_class\": null, \"name\": \"t1_eu50yru\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou called it:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.scmp.com/news/china/diplomacy/article/3019177/beijing-says-hong-kong-motion-tabled-members-european\\\"\\u003EEuropean Parliament approves motion on Hong Kong, as Beijing calls it full of \\u2018ignorance and prejudice\\u2019\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cet1mf/european_mps_motion_calls_for_hong_kong_to/eu50yru/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cet1mf/european_mps_motion_calls_for_hong_kong_to/\", \"report_reasons\": null, \"link_author\": \"lebbe\", \"author_flair_text\": null, \"link_url\": \"https://www.scmp.com/news/china/diplomacy/article/3019077/european-mps-motion-calls-hong-kong-withdraw-extradition-bill\", \"created\": 1563496349.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 13}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu50gz8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"O7GS\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563467244.0, \"send_replies\": true, \"parent_id\": \"t1_eu4as98\", \"score\": 0, \"author_fullname\": \"t2_a8hwkkq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"I\\u2019m not dogging them, like I said I consider them all good friends. \\n\\nAlthough I am unfamiliar what dogging means, I thought it was when people had sexual encounters in public\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu50gz8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u2019m not dogging them, like I said I consider them all good friends. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlthough I am unfamiliar what dogging means, I thought it was when people had sexual encounters in public\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu50gz8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563496044.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceorvq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu50cxi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adz4309\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1563467176.0, \"send_replies\": true, \"parent_id\": \"t1_eu4z6sd\", \"score\": 1, \"author_fullname\": \"t2_5rrb2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Without going into too much of the politics, the lack of \\\"Recognition\\\" is in part entirely due to the veto power on China on the UN stage and the complex diplomatic relations when countries deal with the PRC. \\n\\nThe lack of recognition from the UN does not mean that Taiwan is not an independent nation. The independence you and other HKers talk about is the \\\"One China\\\" principle where Taiwan has to be regarded in a certain way in order to be deemed \\\"independent\\\".\\n\\nLet's keep it simple, can PRC citizens visit Taiwan without their travel documents? Can your average who does not carry a Taiwanese passport visit Taiwan without their travel documents? If the answer is No, then you're your own country. \\n\\nIf you are your own country, you're independent.\", \"link_title\": \"Hong Kong-based Public Opinion Research Institute this month found that 44% of Hong Kongers support Taiwan independence (even though question was framed confusingly as 'becoming' independent)\", \"author_flair_css_class\": null, \"name\": \"t1_eu50cxi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWithout going into too much of the politics, the lack of \\u0026quot;Recognition\\u0026quot; is in part entirely due to the veto power on China on the UN stage and the complex diplomatic relations when countries deal with the PRC. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe lack of recognition from the UN does not mean that Taiwan is not an independent nation. The independence you and other HKers talk about is the \\u0026quot;One China\\u0026quot; principle where Taiwan has to be regarded in a certain way in order to be deemed \\u0026quot;independent\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet\\u0026#39;s keep it simple, can PRC citizens visit Taiwan without their travel documents? Can your average who does not carry a Taiwanese passport visit Taiwan without their travel documents? If the answer is No, then you\\u0026#39;re your own country. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you are your own country, you\\u0026#39;re independent.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/eu50cxi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/\", \"report_reasons\": null, \"link_author\": \"article10ECHR\", \"author_flair_text\": null, \"link_url\": \"https://www.pori.hk/nationalissues/taiwan-independence\", \"created\": 1563495976.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu504ur\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"O7GS\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563467039.0, \"send_replies\": true, \"parent_id\": \"t1_eu4b0g1\", \"score\": 2, \"author_fullname\": \"t2_a8hwkkq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"So you\\u2019re not a local or a mainlander. You\\u2019re Australian. \\n\\nHave a cold Fosters on me mate\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu504ur\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo you\\u2019re not a local or a mainlander. You\\u2019re Australian. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHave a cold Fosters on me mate\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu504ur/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563495839.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdman9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4zzqv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"leethal59\", \"num_comments\": 81, \"can_mod_post\": false, \"created_utc\": 1563466952.0, \"send_replies\": true, \"parent_id\": \"t1_eu1olld\", \"score\": 1, \"author_fullname\": \"t2_chhmm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"\\u003E One might have ancestral or heritage pride about China, which I do. Great food, fascinating history and 5,000 year civilization. All admirable and great. \\n\\u003E \\n\\u003EHowever, when it comes passports and the legal protections a citizenship can afford, people are rational and smart.\\n\\nI assure you that being pro china, is exactly that, it's more about culture, history and heritage, than actually being proud to have a chinese passport. I don't find it hypocritical. I'll give you the example of Polish that come to the UK or gweilos who come stay in HK or china. They come here for the experience, business opportunities,education, probably some interest in the culture and people, but really they still love their own countries, nothing wrong with that, and their reasons might be anything (maybe they like the freedoms back home, maybe because of patriotism, maybe because of their history). But that's their own reasons.I take a issue with you already assuming that these people in the chinese diaspora go to the west because of some reasons for freedom/ democracy etc. But honestly, you really don't know. Most of the time its for education, business. That isn't hypocritical at all. Again you can love a country without actually living there. and You can love more than one country. One doesn't negate the other.\", \"link_title\": \"Petition - British Citizenship to be revoked from Carrie Lam's ( \\u6797\\u912d\\u6708\\u5a25 ) family\", \"author_flair_css_class\": null, \"name\": \"t1_eu4zzqv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EOne might have ancestral or heritage pride about China, which I do. Great food, fascinating history and 5,000 year civilization. All admirable and great. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, when it comes passports and the legal protections a citizenship can afford, people are rational and smart.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI assure you that being pro china, is exactly that, it\\u0026#39;s more about culture, history and heritage, than actually being proud to have a chinese passport. I don\\u0026#39;t find it hypocritical. I\\u0026#39;ll give you the example of Polish that come to the UK or gweilos who come stay in HK or china. They come here for the experience, business opportunities,education, probably some interest in the culture and people, but really they still love their own countries, nothing wrong with that, and their reasons might be anything (maybe they like the freedoms back home, maybe because of patriotism, maybe because of their history). But that\\u0026#39;s their own reasons.I take a issue with you already assuming that these people in the chinese diaspora go to the west because of some reasons for freedom/ democracy etc. But honestly, you really don\\u0026#39;t know. Most of the time its for education, business. That isn\\u0026#39;t hypocritical at all. Again you can love a country without actually living there. and You can love more than one country. One doesn\\u0026#39;t negate the other.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cdman9/petition_british_citizenship_to_be_revoked_from/eu4zzqv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cdman9/petition_british_citizenship_to_be_revoked_from/\", \"report_reasons\": null, \"link_author\": \"someone-elsewhere\", \"author_flair_text\": null, \"link_url\": \"https://www.change.org/p/rt-hon-sajid-javid-british-citizenship-to-be-revoked-from-carrie-lam-s-%E6%9E%97%E9%84%AD%E6%9C%88%E5%A8%A5-family\", \"created\": 1563495752.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cet7xs\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4zjqm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"someone-elsewhere\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563466677.0, \"send_replies\": true, \"parent_id\": \"t1_eu4seug\", \"score\": 5, \"author_fullname\": \"t2_12kty8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"We do hold the world record for queueing, but we are more likely to drink the water than hand it down the line.\", \"link_title\": \"950m long human supply chain at 7.14 Sha Tin protest\", \"author_flair_css_class\": null, \"name\": \"t1_eu4zjqm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe do hold the world record for queueing, but we are more likely to drink the water than hand it down the line.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cet7xs/950m_long_human_supply_chain_at_714_sha_tin/eu4zjqm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cet7xs/950m_long_human_supply_chain_at_714_sha_tin/\", \"report_reasons\": null, \"link_author\": \"Chocobean\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/N20MejW.jpg\", \"created\": 1563495477.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4zac3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"someone-elsewhere\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563466515.0, \"send_replies\": true, \"parent_id\": \"t1_eu4ecta\", \"score\": 1, \"author_fullname\": \"t2_12kty8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Fun fact: \\n\\nTencent was considering a name change to Fiftycent but decided it too much effort in re-branding just because of a higher minimum wage.\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu4zac3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFun fact: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETencent was considering a name change to Fiftycent but decided it too much effort in re-branding just because of a higher minimum wage.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu4zac3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563495315.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cefaee\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4z6to\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheEggEngineer\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563466454.0, \"send_replies\": true, \"parent_id\": \"t3_cefaee\", \"score\": 1, \"author_fullname\": \"t2_8zkcbw3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"I wish old people where as cool here. Maybe it's the urgency of the problem but it's heartwarming to see older folk doing everything they can to support the young :)\", \"link_title\": \"\\\"Silent, but won't be silenced\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu4z6to\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI wish old people where as cool here. Maybe it\\u0026#39;s the urgency of the problem but it\\u0026#39;s heartwarming to see older folk doing everything they can to support the young :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cefaee/silent_but_wont_be_silenced/eu4z6to/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cefaee/silent_but_wont_be_silenced/\", \"report_reasons\": null, \"link_author\": \"natzana\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/wo9qf8xu5wa31.jpg\", \"created\": 1563495254.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceorvq\", \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4z6sd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phy361sm\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1563466454.0, \"send_replies\": true, \"parent_id\": \"t1_eu4vrgk\", \"score\": 1, \"author_fullname\": \"t2_g3nnt6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Even you think many countries \\\"see\\\" Taiwan as a sovereign state, only 19 of the UN members officially admit Taiwan as a sovereign entity. This is a fact you have to admit. The goal of Taiwan's full independence has not been reached yet.\", \"link_title\": \"Hong Kong-based Public Opinion Research Institute this month found that 44% of Hong Kongers support Taiwan independence (even though question was framed confusingly as 'becoming' independent)\", \"author_flair_css_class\": \"swedish-friend\", \"name\": \"t1_eu4z6sd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEven you think many countries \\u0026quot;see\\u0026quot; Taiwan as a sovereign state, only 19 of the UN members officially admit Taiwan as a sovereign entity. This is a fact you have to admit. The goal of Taiwan\\u0026#39;s full independence has not been reached yet.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/eu4z6sd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/\", \"report_reasons\": null, \"link_author\": \"article10ECHR\", \"author_flair_text\": \"\\u5929\\u4f51\\u6211\\u57ce\", \"link_url\": \"https://www.pori.hk/nationalissues/taiwan-independence\", \"created\": 1563495254.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cefaee\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4z2yd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheEggEngineer\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563466388.0, \"send_replies\": true, \"parent_id\": \"t1_eu4butl\", \"score\": 1, \"author_fullname\": \"t2_8zkcbw3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"It's not wrong in context. Older people are often a silent part of the population yet they still have their own opinions and don't want to lose that right to criticize and say what they want.\", \"link_title\": \"\\\"Silent, but won't be silenced\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu4z2yd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s not wrong in context. Older people are often a silent part of the population yet they still have their own opinions and don\\u0026#39;t want to lose that right to criticize and say what they want.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cefaee/silent_but_wont_be_silenced/eu4z2yd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cefaee/silent_but_wont_be_silenced/\", \"report_reasons\": null, \"link_author\": \"natzana\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/wo9qf8xu5wa31.jpg\", \"created\": 1563495188.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cet1mf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4yu3v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"someone-elsewhere\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563466236.0, \"send_replies\": true, \"parent_id\": \"t3_cet1mf\", \"score\": 20, \"author_fullname\": \"t2_12kty8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Coming soon to a news channel near you:\\n\\nChina responds and is offended the EU is interfering in their Internal affairs and that\\u00a0the Sino-British Joint Declaration of 1984 is a historic and invalid document.\\n\\nRespect China.\", \"link_title\": \"European MPs\\u2019 motion calls for Hong Kong to withdraw extradition bill and start democratic reform\", \"author_flair_css_class\": null, \"name\": \"t1_eu4yu3v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EComing soon to a news channel near you:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChina responds and is offended the EU is interfering in their Internal affairs and that\\u00a0the Sino-British Joint Declaration of 1984 is a historic and invalid document.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERespect China.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cet1mf/european_mps_motion_calls_for_hong_kong_to/eu4yu3v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cet1mf/european_mps_motion_calls_for_hong_kong_to/\", \"report_reasons\": null, \"link_author\": \"lebbe\", \"author_flair_text\": null, \"link_url\": \"https://www.scmp.com/news/china/diplomacy/article/3019077/european-mps-motion-calls-hong-kong-withdraw-extradition-bill\", \"created\": 1563495036.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 20}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ces7bv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4yp8p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xiaofo7\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563466152.0, \"send_replies\": true, \"parent_id\": \"t1_eu4wvvg\", \"score\": 1, \"author_fullname\": \"t2_2s4mu7vk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Was there a vote on removing their hk citizenship?\", \"link_title\": \"Threat of dismemberment\", \"author_flair_css_class\": null, \"name\": \"t1_eu4yp8p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWas there a vote on removing their hk citizenship?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ces7bv/threat_of_dismemberment/eu4yp8p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ces7bv/threat_of_dismemberment/\", \"report_reasons\": null, \"link_author\": \"Hongkongjai\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/qyv55hrt82b31.jpg\", \"created\": 1563494952.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cef8y1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4ym6z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kchanmon\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563466099.0, \"send_replies\": true, \"parent_id\": \"t1_eu3xrxt\", \"score\": 1, \"author_fullname\": \"t2_3x92h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Thank you for this.\", \"link_title\": \"Did Hong Kong Police Abuse Protesters? What the Videos Show. New York Times\", \"author_flair_css_class\": null, \"name\": \"t1_eu4ym6z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cef8y1/did_hong_kong_police_abuse_protesters_what_the/eu4ym6z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cef8y1/did_hong_kong_police_abuse_protesters_what_the/\", \"report_reasons\": null, \"link_author\": \"R8a8\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=gHfWuUhrKQg\\u0026frags=pl%2Cwn\", \"created\": 1563494899.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cernni\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4ykbb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Early2000sRnB\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563466066.0, \"send_replies\": true, \"parent_id\": \"t3_cernni\", \"score\": 1, \"author_fullname\": \"t2_35j1kqc8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"What about immigrants?\", \"link_title\": \"Victoria Peak, useful information if you're an expat or visiting HK\", \"author_flair_css_class\": null, \"name\": \"t1_eu4ykbb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat about immigrants?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cernni/victoria_peak_useful_information_if_youre_an/eu4ykbb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cernni/victoria_peak_useful_information_if_youre_an/\", \"report_reasons\": null, \"link_author\": \"Kingsolo90\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/mpwmBSnKXGM\", \"created\": 1563494866.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_celcb4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4y74v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kirbyforce\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1563465836.0, \"send_replies\": true, \"parent_id\": \"t1_eu42i8f\", \"score\": 1, \"author_fullname\": \"t2_5aw90\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Added to the list. Thanks!!\", \"link_title\": \"Off to Hong Kong for a few days. Looking for things to do!\", \"author_flair_css_class\": null, \"name\": \"t1_eu4y74v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAdded to the list. Thanks!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/eu4y74v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"report_reasons\": null, \"link_author\": \"kirbyforce\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"created\": 1563494636.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_celcb4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4xz6u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kirbyforce\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1563465697.0, \"send_replies\": true, \"parent_id\": \"t1_eu4uh7v\", \"score\": 2, \"author_fullname\": \"t2_5aw90\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Doing my best not to \\ud83d\\ude05\", \"link_title\": \"Off to Hong Kong for a few days. Looking for things to do!\", \"author_flair_css_class\": null, \"name\": \"t1_eu4xz6u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoing my best not to \\ud83d\\ude05\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/eu4xz6u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"report_reasons\": null, \"link_author\": \"kirbyforce\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"created\": 1563494497.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cer3q7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4xe6z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ariannachung\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1563465335.0, \"send_replies\": true, \"parent_id\": \"t1_eu4cq52\", \"score\": 1, \"author_fullname\": \"t2_2meaeyie\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"This is me, I always have amazing , clear poreless skin in Vancouver lol and my mother would also point out how much bette I look in Canada compared to hk. And then I go back to hk and I look like a \\u201c\\u9ec3\\u9762\\u5a46\\u201d LOL\", \"link_title\": \"Unhealthy Air Quality in HK vs Brisbane (AUS)\", \"author_flair_css_class\": null, \"name\": \"t1_eu4xe6z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is me, I always have amazing , clear poreless skin in Vancouver lol and my mother would also point out how much bette I look in Canada compared to hk. And then I go back to hk and I look like a \\u201c\\u9ec3\\u9762\\u5a46\\u201d LOL\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cer3q7/unhealthy_air_quality_in_hk_vs_brisbane_aus/eu4xe6z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cer3q7/unhealthy_air_quality_in_hk_vs_brisbane_aus/\", \"report_reasons\": null, \"link_author\": \"secretHK\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/cer3q7/unhealthy_air_quality_in_hk_vs_brisbane_aus/\", \"created\": 1563494135.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ces7bv\", \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4x7vo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"CaptainHK\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563465225.0, \"send_replies\": true, \"parent_id\": \"t3_ces7bv\", \"score\": 4, \"author_fullname\": \"t2_14cisz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"The supporters of the \\u201crule of law\\u201d threatening to hurt people they don\\u2019t agree with, nice!\", \"link_title\": \"Threat of dismemberment\", \"author_flair_css_class\": \"swedish-friend\", \"name\": \"t1_eu4x7vo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe supporters of the \\u201crule of law\\u201d threatening to hurt people they don\\u2019t agree with, nice!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ces7bv/threat_of_dismemberment/eu4x7vo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ces7bv/threat_of_dismemberment/\", \"report_reasons\": null, \"link_author\": \"Hongkongjai\", \"author_flair_text\": \"Drone Police\", \"link_url\": \"https://i.redd.it/qyv55hrt82b31.jpg\", \"created\": 1563494025.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ces7bv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4wvvg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dookie6191\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563465015.0, \"send_replies\": true, \"parent_id\": \"t3_ces7bv\", \"score\": 2, \"author_fullname\": \"t2_10z83f\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"lol people living in yuen long are irrelevant anyway\", \"link_title\": \"Threat of dismemberment\", \"author_flair_css_class\": null, \"name\": \"t1_eu4wvvg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Elol people living in yuen long are irrelevant anyway\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ces7bv/threat_of_dismemberment/eu4wvvg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ces7bv/threat_of_dismemberment/\", \"report_reasons\": null, \"link_author\": \"Hongkongjai\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/qyv55hrt82b31.jpg\", \"created\": 1563493815.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cequpd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4w4st\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Motoka_CK\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563464537.0, \"send_replies\": true, \"parent_id\": \"t3_cequpd\", \"score\": 2, \"author_fullname\": \"t2_39cgcgj9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"The following statements don't conclude anything.\\n\\n\\u0026#x200B;\\n\\nStatement 1: SCMP (South China Morning Post) is owned by Alibaba Group, a Chinese multinational conglomerate holding company.\\n\\nSource: SCMP website\\n\\n[https://www.scmp.com/business/companies/article/1890060/alibaba-buys-south-china-morning-post-groups-media-business](https://www.scmp.com/business/companies/article/1890060/alibaba-buys-south-china-morning-post-groups-media-business)\\n\\n\\u0026#x200B;\\n\\nStatement 2: Alibaba Group is one of the companies responsible for implementing China Social Credit System.\\n\\nSource: [https://www.thenation.com/article/china-social-credit-system/](https://www.thenation.com/article/china-social-credit-system/)\", \"link_title\": \"Some protest video on scmp\", \"author_flair_css_class\": null, \"name\": \"t1_eu4w4st\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe following statements don\\u0026#39;t conclude anything.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatement 1: SCMP (South China Morning Post) is owned by Alibaba Group, a Chinese multinational conglomerate holding company.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESource: SCMP website\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.scmp.com/business/companies/article/1890060/alibaba-buys-south-china-morning-post-groups-media-business\\\"\\u003Ehttps://www.scmp.com/business/companies/article/1890060/alibaba-buys-south-china-morning-post-groups-media-business\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatement 2: Alibaba Group is one of the companies responsible for implementing China Social Credit System.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESource: \\u003Ca href=\\\"https://www.thenation.com/article/china-social-credit-system/\\\"\\u003Ehttps://www.thenation.com/article/china-social-credit-system/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cequpd/some_protest_video_on_scmp/eu4w4st/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cequpd/some_protest_video_on_scmp/\", \"report_reasons\": null, \"link_author\": \"Tc0008\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/oM5hJnGLPng\", \"created\": 1563493337.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4vwoe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"Motoka_CK\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563464395.0, \"send_replies\": true, \"parent_id\": \"t1_eu4idzm\", \"score\": 4, \"author_fullname\": \"t2_39cgcgj9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Additional information to whom doesn't know what South China Morning Post is.\\n\\nSCMP (South China Morning Post) is owned by Alibaba Group, a Chinese multinational conglomerate holding company.\\n\\nSource: SCMP website\\n\\n[https://www.scmp.com/business/companies/article/1890060/alibaba-buys-south-china-morning-post-groups-media-business](https://www.scmp.com/business/companies/article/1890060/alibaba-buys-south-china-morning-post-groups-media-business)\\n\\n\\u0026#x200B;\\n\\nAlibaba Group is one of the companies responsible for implementing China Social Credit System.\\n\\nSource: [https://www.thenation.com/article/china-social-credit-system/](https://www.thenation.com/article/china-social-credit-system/)\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu4vwoe\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAdditional information to whom doesn\\u0026#39;t know what South China Morning Post is.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESCMP (South China Morning Post) is owned by Alibaba Group, a Chinese multinational conglomerate holding company.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESource: SCMP website\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.scmp.com/business/companies/article/1890060/alibaba-buys-south-china-morning-post-groups-media-business\\\"\\u003Ehttps://www.scmp.com/business/companies/article/1890060/alibaba-buys-south-china-morning-post-groups-media-business\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlibaba Group is one of the companies responsible for implementing China Social Credit System.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESource: \\u003Ca href=\\\"https://www.thenation.com/article/china-social-credit-system/\\\"\\u003Ehttps://www.thenation.com/article/china-social-credit-system/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu4vwoe/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563493195.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceorvq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4vrgk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adz4309\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1563464302.0, \"send_replies\": true, \"parent_id\": \"t1_eu4mw4k\", \"score\": 1, \"author_fullname\": \"t2_5rrb2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"This isn't true at all. Taiwan is seen as it's own independent country in as many places as it would matter. \\n\\n\\nDon't confuse the \\\"one china\\\" notion which i assume you're referring to and the the fact that Taiwan is itself a country.\", \"link_title\": \"Hong Kong-based Public Opinion Research Institute this month found that 44% of Hong Kongers support Taiwan independence (even though question was framed confusingly as 'becoming' independent)\", \"author_flair_css_class\": null, \"name\": \"t1_eu4vrgk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis isn\\u0026#39;t true at all. Taiwan is seen as it\\u0026#39;s own independent country in as many places as it would matter. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDon\\u0026#39;t confuse the \\u0026quot;one china\\u0026quot; notion which i assume you\\u0026#39;re referring to and the the fact that Taiwan is itself a country.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/eu4vrgk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/\", \"report_reasons\": null, \"link_author\": \"article10ECHR\", \"author_flair_text\": null, \"link_url\": \"https://www.pori.hk/nationalissues/taiwan-independence\", \"created\": 1563493102.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4vk6p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adz4309\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563464174.0, \"send_replies\": true, \"parent_id\": \"t1_eu3vmk1\", \"score\": 4, \"author_fullname\": \"t2_5rrb2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"And where were your parents or grand parents or great grandparents from?\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu4vk6p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd where were your parents or grand parents or great grandparents from?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu4vk6p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563492974.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4vesg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Motoka_CK\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563464078.0, \"send_replies\": true, \"parent_id\": \"t1_eu4oh52\", \"score\": 3, \"author_fullname\": \"t2_39cgcgj9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"This is a good news only if China could keep their promise, and all we know is China has a long and successful history of breaking their promise.\\n\\n\\u0026#x200B;\\n\\nChina says Sino-British Joint Declaration on Hong Kong no longer has meaning\\n\\n[https://www.reuters.com/article/us-hongkong-anniversary-china/china-says-sino-british-joint-declaration-on-hong-kong-no-longer-has-meaning-idUSKBN19L1J1](https://www.reuters.com/article/us-hongkong-anniversary-china/china-says-sino-british-joint-declaration-on-hong-kong-no-longer-has-meaning-idUSKBN19L1J1)\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu4vesg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is a good news only if China could keep their promise, and all we know is China has a long and successful history of breaking their promise.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChina says Sino-British Joint Declaration on Hong Kong no longer has meaning\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reuters.com/article/us-hongkong-anniversary-china/china-says-sino-british-joint-declaration-on-hong-kong-no-longer-has-meaning-idUSKBN19L1J1\\\"\\u003Ehttps://www.reuters.com/article/us-hongkong-anniversary-china/china-says-sino-british-joint-declaration-on-hong-kong-no-longer-has-meaning-idUSKBN19L1J1\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu4vesg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563492878.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceapru\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4vd9f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adz4309\", \"num_comments\": 40, \"can_mod_post\": false, \"created_utc\": 1563464052.0, \"send_replies\": true, \"parent_id\": \"t1_eu4tdk9\", \"score\": 1, \"author_fullname\": \"t2_5rrb2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Yes China's reaping benefits from the HK market but only because it's advantageous to keep HK in it's current economic state since it will inevitably become another city in China in the near future. Take away that guarantee and like i've said before, there isn't a need for HK.\\n\\nYou're not understanding the impact of the amount of change needed which is much more than just a recession. The markets will likely crash and sure the economy will be down but throw in the implementation of taxes and that is a recipe for disaster. People who have the ability to, will leave which will essentially leave HK in an even worse state than it was to begin with. \\n\\nI don't think you read my post, i already said that HK is not the crown jewel of the east that it used to be so it's not really a pick your poison kind of deal, it's sit tight and hold on. \\n\\nI don't know about you, but i'd much rather stay in HK in it's current state then suffer through some unwarranted, off-cycle, recession just because some people want \\\"independence\\\".\", \"link_title\": \"Can someone explain to me how one envisions the operation of an Independent Hong Kong?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4vd9f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes China\\u0026#39;s reaping benefits from the HK market but only because it\\u0026#39;s advantageous to keep HK in it\\u0026#39;s current economic state since it will inevitably become another city in China in the near future. Take away that guarantee and like i\\u0026#39;ve said before, there isn\\u0026#39;t a need for HK.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;re not understanding the impact of the amount of change needed which is much more than just a recession. The markets will likely crash and sure the economy will be down but throw in the implementation of taxes and that is a recipe for disaster. People who have the ability to, will leave which will essentially leave HK in an even worse state than it was to begin with. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t think you read my post, i already said that HK is not the crown jewel of the east that it used to be so it\\u0026#39;s not really a pick your poison kind of deal, it\\u0026#39;s sit tight and hold on. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t know about you, but i\\u0026#39;d much rather stay in HK in it\\u0026#39;s current state then suffer through some unwarranted, off-cycle, recession just because some people want \\u0026quot;independence\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceapru/can_someone_explain_to_me_how_one_envisions_the/eu4vd9f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceapru/can_someone_explain_to_me_how_one_envisions_the/\", \"report_reasons\": null, \"link_author\": \"polarkumabear\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/ceapru/can_someone_explain_to_me_how_one_envisions_the/\", \"created\": 1563492852.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cenb5f\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4ur4u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"simian_ninja\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563463653.0, \"send_replies\": true, \"parent_id\": \"t1_eu45z8g\", \"score\": 3, \"author_fullname\": \"t2_15jr5j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"They will never look at themselves as a tool of antagonism. As far as they're concerned they're just doing there jobs and it's everyone else that is harming them or impeding their duties.\", \"link_title\": \"'You're to blame' cop tells reporter\", \"author_flair_css_class\": null, \"name\": \"t1_eu4ur4u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThey will never look at themselves as a tool of antagonism. As far as they\\u0026#39;re concerned they\\u0026#39;re just doing there jobs and it\\u0026#39;s everyone else that is harming them or impeding their duties.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cenb5f/youre_to_blame_cop_tells_reporter/eu4ur4u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cenb5f/youre_to_blame_cop_tells_reporter/\", \"report_reasons\": null, \"link_author\": \"HKnational\", \"author_flair_text\": null, \"link_url\": \"http://www.thestandard.com.hk/section-news.php?id=209725\\u0026sid=21\", \"created\": 1563492453.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_celcb4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4uh7v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"spiceweezel_BAM\", \"num_comments\": 35, \"can_mod_post\": false, \"created_utc\": 1563463476.0, \"send_replies\": true, \"parent_id\": \"t1_eu3ckgh\", \"score\": 3, \"author_fullname\": \"t2_gnohqm4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"It\\u2019s great, don\\u2019t listen to them.\", \"link_title\": \"Off to Hong Kong for a few days. Looking for things to do!\", \"author_flair_css_class\": null, \"name\": \"t1_eu4uh7v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u2019s great, don\\u2019t listen to them.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/eu4uh7v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"report_reasons\": null, \"link_author\": \"kirbyforce\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"created\": 1563492276.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cer3q7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4trar\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"secretHK\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1563462999.0, \"send_replies\": true, \"parent_id\": \"t1_eu4lugd\", \"score\": 0, \"author_fullname\": \"t2_2yzaxqyu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Well. No one is forcing you to stay here and breathe toxic air. That's on you :)\", \"link_title\": \"Unhealthy Air Quality in HK vs Brisbane (AUS)\", \"author_flair_css_class\": null, \"name\": \"t1_eu4trar\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell. No one is forcing you to stay here and breathe toxic air. That\\u0026#39;s on you :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cer3q7/unhealthy_air_quality_in_hk_vs_brisbane_aus/eu4trar/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cer3q7/unhealthy_air_quality_in_hk_vs_brisbane_aus/\", \"report_reasons\": null, \"link_author\": \"secretHK\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/cer3q7/unhealthy_air_quality_in_hk_vs_brisbane_aus/\", \"created\": 1563491799.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563462949.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceapru\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4tdk9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"asianhipppy\", \"num_comments\": 40, \"can_mod_post\": false, \"created_utc\": 1563462745.0, \"send_replies\": true, \"parent_id\": \"t1_eu4omnc\", \"score\": 1, \"author_fullname\": \"t2_ii6de\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"I do see what you mean. But, China's sucking out money as much as they're making it seem like we're completely reliant on them. I mean the transition phase will absolutely hurt economically, but its happened before, like '97. Also, from where we're currently heading, the bridges we're building, the artificial island, all those will completely spend all HK's reserve, which is like almost $2 trillion USD. When this reserve is spent, HKD will crash and die, then don't even speak of crown jewel of the east, all we'd have is a statue of Bruce Lee. Its kind of a pick your poison kind of deal.\", \"link_title\": \"Can someone explain to me how one envisions the operation of an Independent Hong Kong?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4tdk9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do see what you mean. But, China\\u0026#39;s sucking out money as much as they\\u0026#39;re making it seem like we\\u0026#39;re completely reliant on them. I mean the transition phase will absolutely hurt economically, but its happened before, like \\u0026#39;97. Also, from where we\\u0026#39;re currently heading, the bridges we\\u0026#39;re building, the artificial island, all those will completely spend all HK\\u0026#39;s reserve, which is like almost $2 trillion USD. When this reserve is spent, HKD will crash and die, then don\\u0026#39;t even speak of crown jewel of the east, all we\\u0026#39;d have is a statue of Bruce Lee. Its kind of a pick your poison kind of deal.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceapru/can_someone_explain_to_me_how_one_envisions_the/eu4tdk9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceapru/can_someone_explain_to_me_how_one_envisions_the/\", \"report_reasons\": null, \"link_author\": \"polarkumabear\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/ceapru/can_someone_explain_to_me_how_one_envisions_the/\", \"created\": 1563491545.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cer3q7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4t3bx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"armored-dinnerjacket\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1563462559.0, \"send_replies\": true, \"parent_id\": \"t1_eu4lugd\", \"score\": 1, \"author_fullname\": \"t2_9mrsw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"oh thats creative. did your mum think of that for you?\", \"link_title\": \"Unhealthy Air Quality in HK vs Brisbane (AUS)\", \"author_flair_css_class\": null, \"name\": \"t1_eu4t3bx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eoh thats creative. did your mum think of that for you?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/cer3q7/unhealthy_air_quality_in_hk_vs_brisbane_aus/eu4t3bx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/cer3q7/unhealthy_air_quality_in_hk_vs_brisbane_aus/\", \"report_reasons\": null, \"link_author\": \"secretHK\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/HongKong/comments/cer3q7/unhealthy_air_quality_in_hk_vs_brisbane_aus/\", \"created\": 1563491359.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceo4u4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4t02i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"H9419\", \"num_comments\": 79, \"can_mod_post\": false, \"created_utc\": 1563462500.0, \"send_replies\": true, \"parent_id\": \"t1_eu3wpfc\", \"score\": 1, \"author_fullname\": \"t2_13zq6d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2rbn0\", \"body\": \"Would it happen to be 2990k?\", \"link_title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eu4t02i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWould it happen to be 2990k?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"HongKong\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/eu4t02i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"report_reasons\": null, \"link_author\": \"ssj4rab\", \"author_flair_text\": null, \"link_url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"created\": 1563491300.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/HongKong\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_eu4t02i\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["250277"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:32 GMT"], "x-ratelimit-remaining": ["585.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["15"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495032.393063,VS0,VE575"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["568"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/HongKong/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-07-19T00:10:33"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/HongKong/comments/?raw_json=1&limit=100&before=t1_eu68dsa"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:34 GMT"], "x-ratelimit-remaining": ["584.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["16"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495034.988091,VS0,VE96"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["566"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/HongKong/comments/?raw_json=1&limit=100&before=t1_eu68dsa"}, "recorded_at": "2019-07-19T00:10:34"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/HongKong/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_2w0qnm0q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"An extremely detailed article by The Stand News on various types of government supporters.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": true, \"name\": \"t3_cezwlb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/L2T6N5VV6fQbunk0lsSN3MlNrzQ_M_Loo0UOu-tM8yQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563520998.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"thestandnews.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Rk026k24pkmSNVB3QZWpprKyaLZiEtUrHpERZ7hU6es.jpg?auto=webp\\u0026s=858405f9995c6faa12d9d6d609933c2c5bbc7184\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Rk026k24pkmSNVB3QZWpprKyaLZiEtUrHpERZ7hU6es.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f411beb12063765d69fafbbfa390a5fd094be319\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/Rk026k24pkmSNVB3QZWpprKyaLZiEtUrHpERZ7hU6es.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c1000fdbdb332d97ab7707fb6e834dc1e02f0d45\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/Rk026k24pkmSNVB3QZWpprKyaLZiEtUrHpERZ7hU6es.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cf563cfa2919f6674925fedd65c31ab3aa67d875\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/Rk026k24pkmSNVB3QZWpprKyaLZiEtUrHpERZ7hU6es.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=8efa1a94cd0ebc49ad590f5ad05c4e64cd896b31\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/Rk026k24pkmSNVB3QZWpprKyaLZiEtUrHpERZ7hU6es.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f5fb674db0c3fa49ae21397f7cea26a894f3e203\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/Rk026k24pkmSNVB3QZWpprKyaLZiEtUrHpERZ7hU6es.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=0146c9b7cc080b09645558d162c0011fb301d2fb\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"N0NnUHIgr6vjueKxl5Ccbm7Pfz9oit1RYIGunGIq268\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cezwlb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ZWF0cHVzc3k\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cezwlb/an_extremely_detailed_article_by_the_stand_news/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://thestandnews.com/politics/%E8%97%8D%E7%B5%B2%E6%94%BB%E7%95%A5-%E6%8B%86%E8%A7%A3-18-%E7%A8%AE%E5%BB%BA%E5%88%B6/?fbclid=IwAR2ZqpE09365AwDsI0N02dVWnPTktqo63LU7bYD9-mmVP7zMeZc3eTXUPKo\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563492198.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_nwnd41n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Town Plaza Explaining\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": true, \"name\": \"t3_ceznh7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FMf005B6BwvA%3Ffeature%3Doembed\\u0026url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DMf005B6BwvA\\u0026image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FMf005B6BwvA%2Fhqdefault.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=youtube\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"description\": \"\\u5927\\u6279\\u5e02\\u6c11\\u5230\\u6c99\\u7530\\u65b0\\u57ce\\u5e02\\u5ee3\\u5834\\u8981\\u6c42\\u65b0\\u9d3b\\u57fa\\u4ea4\\u4ee3\\u8b66\\u65b9\\u70ba\\u4f55\\u9032\\u5165\\u5546\\u5834\\u6e05\\u5834 \\u5546\\u5834\\u4fdd\\u5b89\\u7d1b\\u7d1b\\u4ee5\\u8eab\\u9ad4\\u4e0d\\u9069\\u96e2\\u958b\\u9ad8\\u5c64\\u4e0d\\u898b\\u4eba \\u73fe\\u5834\\u4e0d\\u65b7\\u9f13\\u8b5f\", \"title\": \"\\u5927\\u6279\\u5e02\\u6c11\\u5230\\u6c99\\u7530\\u65b0\\u57ce\\u5e02\\u5ee3\\u5834\\u8981\\u6c42\\u65b0\\u9d3b\\u57fa\\u4ea4\\u4ee3\\u8b66\\u65b9\\u70ba\\u4f55\\u9032\\u5165\\u5546\\u5834\\u6e05\\u5834 \\u5546\\u5834\\u4fdd\\u5b89\\u7d1b\\u7d1b\\u4ee5\\u8eab\\u9ad4\\u4e0d\\u9069\\u96e2\\u958b\\u9ad8\\u5c64\\u4e0d\\u898b\\u4eba \\u73fe\\u5834\\u4e0d\\u65b7\\u9f13\\u8b5f\", \"url\": \"http://www.youtube.com/watch?v=Mf005B6BwvA\", \"author_name\": \"HK The Epoch Times\", \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FMf005B6BwvA%3Ffeature%3Doembed\\u0026url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DMf005B6BwvA\\u0026image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FMf005B6BwvA%2Fhqdefault.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=youtube\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"version\": \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/Mf005B6BwvA/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCSwoCb9L7sJxL7dmDnicYEQ\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FMf005B6BwvA%3Ffeature%3Doembed\\u0026url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DMf005B6BwvA\\u0026image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FMf005B6BwvA%2Fhqdefault.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=youtube\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/ceznh7\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/vxRUY2c3DfStAw1aggl7X4YJI6RwHYg6D_134RrKMn4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563519664.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/tprGs-J47p_DPHzeDnIqO2wLCJj7tHU_cS77eNmhaFQ.jpg?auto=webp\\u0026s=6309cd74df2df783a87fa9d0724bc040bc942c07\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/tprGs-J47p_DPHzeDnIqO2wLCJj7tHU_cS77eNmhaFQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=74f8c5f9c7eb860c3265d81c2c6ab443481fc75b\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/tprGs-J47p_DPHzeDnIqO2wLCJj7tHU_cS77eNmhaFQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6dd3c998f24ef7dd963642f844ad0e71ddac793c\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/tprGs-J47p_DPHzeDnIqO2wLCJj7tHU_cS77eNmhaFQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a2d5df90f09cf22d1eeb51b6d6c113e8243c3cc9\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"ZRN7h-TuEHZGhcE7I2rqrZK73wQQAF9eTUEFk16Jp7k\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceznh7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ICrackedANut\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceznh7/new_town_plaza_explaining/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/attribution_link?a=200fCwAKVqM\\u0026u=%2Fwatch%3Fv%3DMf005B6BwvA%26feature%3Dshare\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563490864.0, \"discussion_type\": null, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"description\": \"\\u5927\\u6279\\u5e02\\u6c11\\u5230\\u6c99\\u7530\\u65b0\\u57ce\\u5e02\\u5ee3\\u5834\\u8981\\u6c42\\u65b0\\u9d3b\\u57fa\\u4ea4\\u4ee3\\u8b66\\u65b9\\u70ba\\u4f55\\u9032\\u5165\\u5546\\u5834\\u6e05\\u5834 \\u5546\\u5834\\u4fdd\\u5b89\\u7d1b\\u7d1b\\u4ee5\\u8eab\\u9ad4\\u4e0d\\u9069\\u96e2\\u958b\\u9ad8\\u5c64\\u4e0d\\u898b\\u4eba \\u73fe\\u5834\\u4e0d\\u65b7\\u9f13\\u8b5f\", \"title\": \"\\u5927\\u6279\\u5e02\\u6c11\\u5230\\u6c99\\u7530\\u65b0\\u57ce\\u5e02\\u5ee3\\u5834\\u8981\\u6c42\\u65b0\\u9d3b\\u57fa\\u4ea4\\u4ee3\\u8b66\\u65b9\\u70ba\\u4f55\\u9032\\u5165\\u5546\\u5834\\u6e05\\u5834 \\u5546\\u5834\\u4fdd\\u5b89\\u7d1b\\u7d1b\\u4ee5\\u8eab\\u9ad4\\u4e0d\\u9069\\u96e2\\u958b\\u9ad8\\u5c64\\u4e0d\\u898b\\u4eba \\u73fe\\u5834\\u4e0d\\u65b7\\u9f13\\u8b5f\", \"url\": \"http://www.youtube.com/watch?v=Mf005B6BwvA\", \"author_name\": \"HK The Epoch Times\", \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FMf005B6BwvA%3Ffeature%3Doembed\\u0026url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DMf005B6BwvA\\u0026image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FMf005B6BwvA%2Fhqdefault.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=youtube\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"version\": \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/Mf005B6BwvA/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCSwoCb9L7sJxL7dmDnicYEQ\"}, \"type\": \"youtube.com\"}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"For any lawyers out there, if you\\u2019re caught in a protest by riot police who decide to start wailing on you with batons - what sort of defence can you put up legally?\\n\\nOr are you legitimately expected to allow police to hit you without any sort of push back?\", \"author_fullname\": \"t2_wdq3y\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Legality of being beaten by riot police\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cey1bk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563511736.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor any lawyers out there, if you\\u2019re caught in a protest by riot police who decide to start wailing on you with batons - what sort of defence can you put up legally?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr are you legitimately expected to allow police to hit you without any sort of push back?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cey1bk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"FATconTROLLah\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cey1bk/legality_of_being_beaten_by_riot_police/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/cey1bk/legality_of_being_beaten_by_riot_police/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563482936.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"The place I'll be staying in for the next 4 months does not have Wifi installed.\\n\\nThis means that I'll probably have to hotspot my phone to my laptop.\\n\\nI don't really do much but browse the web and watch shows/movies but even so, in a month I think I'll be using quite a large amount of data. \\n\\nAre there any good unlimited data plans that are not bound to yearly contracts? Or does anyone have any recommendations for my situation?\", \"author_fullname\": \"t2_neo7j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Unlimited Data/Wifi Plans?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cex0e5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563506869.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe place I\\u0026#39;ll be staying in for the next 4 months does not have Wifi installed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis means that I\\u0026#39;ll probably have to hotspot my phone to my laptop.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t really do much but browse the web and watch shows/movies but even so, in a month I think I\\u0026#39;ll be using quite a large amount of data. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre there any good unlimited data plans that are not bound to yearly contracts? Or does anyone have any recommendations for my situation?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cex0e5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"janthefan\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cex0e5/unlimited_datawifi_plans/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/cex0e5/unlimited_datawifi_plans/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563478069.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_gy6dp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HKU Vice-Chancellor and President: \\\"Some of you may believe that the government is not by one person one vote. Therefore it is not legitimate ... But in fact the US president is not by popular vote. If you check the record, some presidents did not win a majority vote and become presidents\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_cevww1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/nbg0QRzcQX5WsVhb5gozfPuV76PIQ2JKPf9icgzeMIs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563501655.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"thestandnews.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/8NttmXgNQMlvpsEy9WTAN9DxX5umjAz7b55PHQpVxk8.jpg?auto=webp\\u0026s=2e3bf43a5d7beebafe0a556b3f1a5dc48b7dac39\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/8NttmXgNQMlvpsEy9WTAN9DxX5umjAz7b55PHQpVxk8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7c8264d1acd07dbcf2a357e74a843d8e432de85f\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/8NttmXgNQMlvpsEy9WTAN9DxX5umjAz7b55PHQpVxk8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=318d890927ef6573765759581d496374e296669b\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/8NttmXgNQMlvpsEy9WTAN9DxX5umjAz7b55PHQpVxk8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=893b9aa0671de48c38d615fe007a78846deaea62\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/8NttmXgNQMlvpsEy9WTAN9DxX5umjAz7b55PHQpVxk8.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=825a19b9b7f4e3b087a101fe9b8871f320d4243b\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/8NttmXgNQMlvpsEy9WTAN9DxX5umjAz7b55PHQpVxk8.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=07ad49fc5e0b7bae65a6c8f23877c76743eac6f9\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/8NttmXgNQMlvpsEy9WTAN9DxX5umjAz7b55PHQpVxk8.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=0fddf696f45c93626ffc8f8c54a05027e79d8348\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"Q94ktspVnAC78LKc6_fpdFKnmCOJu7J6hAw2FkisZRk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cevww1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"isaacng1997\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cevww1/hku_vicechancellor_and_president_some_of_you_may/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://thestandnews.com/politics/%E6%B8%AF%E5%A4%A7%E5%BC%B5%E7%BF%94/?fbclid=IwAR0FSMVyxyObHTGJ_SMkxCVRIuHGRmNi20MK-5pydrRYdKQPTlh7dLta02k\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563472855.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_az5wx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"European Parliament approves motion on Hong Kong, as Beijing calls it full of \\u2018ignorance and prejudice\\u2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_ceusn2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 30, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 30, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/pqRPNOQ7wSSFE42la1kBg8clCiYZUvR2hcLJDAIlqvg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563496462.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"scmp.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/j-RNBziFrx_a5JxCBSRdSsEwrf_yE3_bFzwRxLI7FY8.jpg?auto=webp\\u0026s=c107029f6e6d4244b8975afdcb509ab4cc98e616\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/j-RNBziFrx_a5JxCBSRdSsEwrf_yE3_bFzwRxLI7FY8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d43c19b8573121ab61e71a9641781bc316111ad5\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/j-RNBziFrx_a5JxCBSRdSsEwrf_yE3_bFzwRxLI7FY8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=9a3c40585da0c90cda83e3868c09755106d089c6\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/j-RNBziFrx_a5JxCBSRdSsEwrf_yE3_bFzwRxLI7FY8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=45211fa6ef6e5b82c10a9064fd08d27038f92a9e\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/j-RNBziFrx_a5JxCBSRdSsEwrf_yE3_bFzwRxLI7FY8.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=708d0e8f60f48b3b5b7429c8f637b3216f670155\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/j-RNBziFrx_a5JxCBSRdSsEwrf_yE3_bFzwRxLI7FY8.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=81ed8a682532dd8d22512072fb2b1baae285a43d\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/j-RNBziFrx_a5JxCBSRdSsEwrf_yE3_bFzwRxLI7FY8.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=7963879df43269976ba3515851c6831f630d4996\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"YjFhXATViMniWAeRBEmkMIhSw5THH20f-q-fz_7Ot6E\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceusn2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lebbe\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceusn2/european_parliament_approves_motion_on_hong_kong/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.scmp.com/news/china/diplomacy/article/3019177/beijing-says-hong-kong-motion-tabled-members-european\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563467662.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_2iahcj7o\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Love, do not go to Sha Tin, you will be beaten by police (from a friend without Reddit)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ceujo6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"7317739e-54fb-11e9-b747-0ee35a59e0fa\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Av4A6RBfs7NrkJzRJKbghEG6LT7yu64ZWx5krtCRMo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563495329.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/czmhogh673b31.png?auto=webp\\u0026s=35ac000d63e3770cced4fc600023863786857100\", \"width\": 1080, \"height\": 2340}, \"resolutions\": [{\"url\": \"https://preview.redd.it/czmhogh673b31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c6cb7bfa5cf3279bee74bf50ebb8c6e204dc73ad\", \"width\": 108, \"height\": 216}, {\"url\": \"https://preview.redd.it/czmhogh673b31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ca74b71fe54e25b51c908bf4cdf2004a84135730\", \"width\": 216, \"height\": 432}, {\"url\": \"https://preview.redd.it/czmhogh673b31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=273c2609f0b9838e7a94a303627f5152493e51f6\", \"width\": 320, \"height\": 640}, {\"url\": \"https://preview.redd.it/czmhogh673b31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d2797aebbe1e5662d496075a78beaa5b84ea5a45\", \"width\": 640, \"height\": 1280}, {\"url\": \"https://preview.redd.it/czmhogh673b31.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=915aa5045d50c310250e6db15b683f9c7384e6de\", \"width\": 960, \"height\": 1920}, {\"url\": \"https://preview.redd.it/czmhogh673b31.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=21f10921c21e06cbd272c5622f4f12a9a9ee04df\", \"width\": 1080, \"height\": 2160}], \"variants\": {}, \"id\": \"4tv2ymDdCXs5rOyY1h8LcdWWnpf2ND14iffc3n2RDWM\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"HKer\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceujo6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"T0x1cL\", \"num_crossposts\": 1, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/HongKong/comments/ceujo6/love_do_not_go_to_sha_tin_you_will_be_beaten_by/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/czmhogh673b31.png\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563466529.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_1v1d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"950m long human supply chain at 7.14 Sha Tin protest\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_cet7xs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 88, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 88, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/XHlmRhKSH-ZEhI4n6RYCf4ONQa0WivbG9gfgkgzkxhY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563489052.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/_P6PkYbQe9nMoKQJnUw3wgmvqKPYtiMLmJ-4e0wvB3Q.jpg?auto=webp\\u0026s=f5cae3f7ffb74929b7334f8a4eb98c241dd698cd\", \"width\": 1280, \"height\": 853}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/_P6PkYbQe9nMoKQJnUw3wgmvqKPYtiMLmJ-4e0wvB3Q.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=58ea92ec81c16f610956c4ab415307ee8ba6003c\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/_P6PkYbQe9nMoKQJnUw3wgmvqKPYtiMLmJ-4e0wvB3Q.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=049fbfe84c225140548d5ae090545dce6de12450\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/_P6PkYbQe9nMoKQJnUw3wgmvqKPYtiMLmJ-4e0wvB3Q.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f2df096cfb56574da386a51658318c5407d955b7\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/_P6PkYbQe9nMoKQJnUw3wgmvqKPYtiMLmJ-4e0wvB3Q.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=e3596a2f4fd7ec0933f45972825525e4bfa8e460\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/_P6PkYbQe9nMoKQJnUw3wgmvqKPYtiMLmJ-4e0wvB3Q.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f812c0407ca638920acee7c89d97a16915a57d85\", \"width\": 960, \"height\": 639}, {\"url\": \"https://external-preview.redd.it/_P6PkYbQe9nMoKQJnUw3wgmvqKPYtiMLmJ-4e0wvB3Q.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=222b67094f93ac474f9bf0d10c973b03e3ebf232\", \"width\": 1080, \"height\": 719}], \"variants\": {}, \"id\": \"YGVGcGjw3gIGwN6QWIWCiPEcMH0vz-QzGhUXxtALztE\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cet7xs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Chocobean\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cet7xs/950m_long_human_supply_chain_at_714_sha_tin/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://imgur.com/N20MejW.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563460252.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_az5wx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"European MPs\\u2019 motion calls for Hong Kong to withdraw extradition bill and start democratic reform\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_cet1mf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 57, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 57, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/VIQSwKuMqRIPjP2SyyFTLtaGegEfrdpAWDiPjame2b0.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563488160.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"scmp.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/AglLZNt2LXSL2wWMStXdGdnsCIU84f0QJk2J5G0xvKQ.jpg?auto=webp\\u0026s=976bb335264dbd09982fa04a572851b340a90173\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/AglLZNt2LXSL2wWMStXdGdnsCIU84f0QJk2J5G0xvKQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=eb44b69b8e9e8bcfab519a396e83d5c7eedf7e23\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/AglLZNt2LXSL2wWMStXdGdnsCIU84f0QJk2J5G0xvKQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=70a9d642e59b674d2988b535c9d92d6eab2c16fe\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/AglLZNt2LXSL2wWMStXdGdnsCIU84f0QJk2J5G0xvKQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d99cd4d97866b6dbd3cd747464d16de580733fce\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/AglLZNt2LXSL2wWMStXdGdnsCIU84f0QJk2J5G0xvKQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=8dcd3c993d4b0f9bd9ae09a2179bdea47ce54a8c\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/AglLZNt2LXSL2wWMStXdGdnsCIU84f0QJk2J5G0xvKQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=7bd52f8fe5654c3c429fd6ab5eff576f6e034de1\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/AglLZNt2LXSL2wWMStXdGdnsCIU84f0QJk2J5G0xvKQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8eb6d04399f4aa66e672b9d260d92792aea3b741\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"XftOz6At3HVMgUVAXBm-hW6Fqm04eaoctZmh_9yvWa0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cet1mf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lebbe\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cet1mf/european_mps_motion_calls_for_hong_kong_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.scmp.com/news/china/diplomacy/article/3019077/european-mps-motion-calls-hong-kong-withdraw-extradition-bill\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563459360.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_1lz3rmn3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Threat of dismemberment\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ces7bv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/1VQoK4rH2H0fQmb5j3Zyrcm59p69uodSzcA-ApHb-AA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563483776.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/qyv55hrt82b31.jpg?auto=webp\\u0026s=0abf0d63d95bea3c4ef144ac36be5621e0f9513d\", \"width\": 1125, \"height\": 1699}, \"resolutions\": [{\"url\": \"https://preview.redd.it/qyv55hrt82b31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=923947ffecea604100d71125279acdf2d88dd0b2\", \"width\": 108, \"height\": 163}, {\"url\": \"https://preview.redd.it/qyv55hrt82b31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=363ed4842b5680e5ff4260b9ad68d69466c2b64c\", \"width\": 216, \"height\": 326}, {\"url\": \"https://preview.redd.it/qyv55hrt82b31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c3e7b83a65aa076d264776c867b467a6254257b2\", \"width\": 320, \"height\": 483}, {\"url\": \"https://preview.redd.it/qyv55hrt82b31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=2e8bb89269ca195d762d8614b8f59353718d794e\", \"width\": 640, \"height\": 966}, {\"url\": \"https://preview.redd.it/qyv55hrt82b31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=c15647ea342286e041fbf21299e7da2810e6cae4\", \"width\": 960, \"height\": 1449}, {\"url\": \"https://preview.redd.it/qyv55hrt82b31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8179cb0fb0f89cec8162b0e5486d8eaacc02fc91\", \"width\": 1080, \"height\": 1631}], \"variants\": {}, \"id\": \"OZGNY0lN8-kkthIwX6dTi8Yl6sDn3MM6vrA4z7TIZQg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ces7bv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Hongkongjai\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ces7bv/threat_of_dismemberment/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/qyv55hrt82b31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563454976.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_11l5a0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"This song deserves more likes, if anyone out there who can read and understand Cantonese, give it a shot\\u300a\\u865b\\u4f5c\\u7121\\u8072\\u300b\\u539f\\uff1aSpeechless\\u3010\\u7cb5\\u8a9e\\u7248\\u3011\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cerylt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/imjZ7aHZRuY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"\\u3010\\u53cd\\u9001\\u4e2d\\u3011\\u3010\\u9999\\u6e2fMV\\u3011\\u300a\\u865b\\u4f5c\\u7121\\u8072\\u300b\\u539f\\uff1aSpeechless\\u3010\\u7cb5\\u8a9e\\u7248\\u3011\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/imjZ7aHZRuY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"\\u633d\\u6b4c\\u4e4b\\u8072\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/imjZ7aHZRuY/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/singtosay\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/imjZ7aHZRuY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cerylt\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/bxi9p4IZozSU1ZiX-0JJZS28cSpeWrT54xUYl5Hgpr8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563482410.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/3OVQpkH2XD2Be3Y1gJGyeNKEFfiSr-YVhmDykmX6cvg.jpg?auto=webp\\u0026s=84c6dcf7e179da2a5f5617f7172774386d3712f1\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/3OVQpkH2XD2Be3Y1gJGyeNKEFfiSr-YVhmDykmX6cvg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e4252096bed42ef1021411f9aa5b7e2cca7cd863\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/3OVQpkH2XD2Be3Y1gJGyeNKEFfiSr-YVhmDykmX6cvg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4e293ed50e50b49e740f9a4ecd9dbfdebcb8e5ce\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/3OVQpkH2XD2Be3Y1gJGyeNKEFfiSr-YVhmDykmX6cvg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=af2fb27fff12c8cd4c370d09803ac420bd198628\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"5LZOcokxu2kc_WDlNM4cgCYLm8pySwGSVffcIrcFzF8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cerylt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moritashun\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cerylt/this_song_deserves_more_likes_if_anyone_out_there/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=imjZ7aHZRuY\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563453610.0, \"discussion_type\": null, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"\\u3010\\u53cd\\u9001\\u4e2d\\u3011\\u3010\\u9999\\u6e2fMV\\u3011\\u300a\\u865b\\u4f5c\\u7121\\u8072\\u300b\\u539f\\uff1aSpeechless\\u3010\\u7cb5\\u8a9e\\u7248\\u3011\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/imjZ7aHZRuY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"\\u633d\\u6b4c\\u4e4b\\u8072\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/imjZ7aHZRuY/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/singtosay\"}, \"type\": \"youtube.com\"}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_2nvfmokd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Very cool, Europe, very cool - European Parliament adopts resolution calling for export controls on tech \\u2018used to violate basic rights\\u2019 in Hong Kong\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_cer9np\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 44, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 44, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/yHoquDfw-fvDSsudapO3EubgezGVgSVLxulgxBJqlV4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563478180.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"hongkongfp.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/WS5Izeojnuj_JFT1xNsbyEhGMXI6Rcgm8WlukSntfc0.jpg?auto=webp\\u0026s=a99e532168585a4a282ca9f32b80ef80fac485b7\", \"width\": 1050, \"height\": 550}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/WS5Izeojnuj_JFT1xNsbyEhGMXI6Rcgm8WlukSntfc0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7b380706c9b28c3715d2b32f89f764229b0b7c3f\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/WS5Izeojnuj_JFT1xNsbyEhGMXI6Rcgm8WlukSntfc0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a3297a7fa9e80461716e11b214b64ea6b51958f1\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/WS5Izeojnuj_JFT1xNsbyEhGMXI6Rcgm8WlukSntfc0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1daa93e93ea56dd792c189f1b397d05edfef7bfa\", \"width\": 320, \"height\": 167}, {\"url\": \"https://external-preview.redd.it/WS5Izeojnuj_JFT1xNsbyEhGMXI6Rcgm8WlukSntfc0.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=58f1f94feab0deb4eac67c1773cfa8aeed0a6b9e\", \"width\": 640, \"height\": 335}, {\"url\": \"https://external-preview.redd.it/WS5Izeojnuj_JFT1xNsbyEhGMXI6Rcgm8WlukSntfc0.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=3bfc11615b8ec3b63d12823381ed8219cff652f8\", \"width\": 960, \"height\": 502}], \"variants\": {}, \"id\": \"LgftNrjcsPIk7ub7e_p1Z5BUM9D-xNTZ5TSD-NPWAyQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cer9np\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Nekotizimo\", \"num_crossposts\": 1, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cer9np/very_cool_europe_very_cool_european_parliament/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.hongkongfp.com/2019/07/18/european-parliament-adopts-resolution-calling-export-controls-tech-used-violate-basic-rights-hong-kong/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563449380.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"Just thought I'd share the air quality difference from my home (Brisbane, AUS) vs where I live now for work (Hong Kong)\\n\\nI noticed a concerning amount of smog in HK this morning while I was on my way to work and thought I'd check the 'Air Quality Index' website and I was shocked.\\n\\n\\u0026#x200B;\\n\\nHK has a current reading of 155 (Unhealthy) \\n\\nNot only does HK have an overall bad reading. There is also dangerous chemicals present in the air. \\n\\n1. N02 (Nitrogen Dioxide)\\n2. S02 (Sulfur Dioxide)\\n3. C0 (Carbon Monoxide)\\n\\n[https://aqicn.org/city/hongkong/](https://aqicn.org/city/hongkong/)\\n\\n\\u0026#x200B;\\n\\nBrisbane has a current reading of 10 (Good)\\n\\nWith no traceable amounts of N02, S02 or C0.\\n\\n[http://aqicn.org/city/australia/queensland/brisbane-cbd/](http://aqicn.org/city/australia/queensland/brisbane-cbd/)\\n\\nI can't wait to go home and breathe clean air again. I took it for granted.\", \"author_fullname\": \"t2_2yzaxqyu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Unhealthy Air Quality in HK vs Brisbane (AUS)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cer3q7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563477089.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust thought I\\u0026#39;d share the air quality difference from my home (Brisbane, AUS) vs where I live now for work (Hong Kong)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI noticed a concerning amount of smog in HK this morning while I was on my way to work and thought I\\u0026#39;d check the \\u0026#39;Air Quality Index\\u0026#39; website and I was shocked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHK has a current reading of 155 (Unhealthy) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot only does HK have an overall bad reading. There is also dangerous chemicals present in the air. \\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EN02 (Nitrogen Dioxide)\\u003C/li\\u003E\\n\\u003Cli\\u003ES02 (Sulfur Dioxide)\\u003C/li\\u003E\\n\\u003Cli\\u003EC0 (Carbon Monoxide)\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://aqicn.org/city/hongkong/\\\"\\u003Ehttps://aqicn.org/city/hongkong/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBrisbane has a current reading of 10 (Good)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith no traceable amounts of N02, S02 or C0.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://aqicn.org/city/australia/queensland/brisbane-cbd/\\\"\\u003Ehttp://aqicn.org/city/australia/queensland/brisbane-cbd/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can\\u0026#39;t wait to go home and breathe clean air again. I took it for granted.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/DJTx79w6irZhXN_UCK8FICAmQbCDDMNTS30olXoW5fI.jpg?auto=webp\\u0026s=10586325859e36c3c3a7ea4b7955c4072f0d0c8e\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/DJTx79w6irZhXN_UCK8FICAmQbCDDMNTS30olXoW5fI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c9938d6ee0bde2e7dcc59e3c98642e34062fd8d0\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/DJTx79w6irZhXN_UCK8FICAmQbCDDMNTS30olXoW5fI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5753495d8e5aca522563567d2b7f45a79124f626\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/DJTx79w6irZhXN_UCK8FICAmQbCDDMNTS30olXoW5fI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9888d201d9f6641110ca4a1a9c6db51016d977cf\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/DJTx79w6irZhXN_UCK8FICAmQbCDDMNTS30olXoW5fI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=61e7e47490d7e59d80fcb958f904cb86569694cf\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/DJTx79w6irZhXN_UCK8FICAmQbCDDMNTS30olXoW5fI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=6d26daaf3fe0c2cae0ce831623d9f5fddc8936f7\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/DJTx79w6irZhXN_UCK8FICAmQbCDDMNTS30olXoW5fI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9b55b99e37c81194012fcc80e6d4a87a955090a8\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"R0iSrnxFNWxyIOZQiryQ_0mUklAqN2TFL9rK4cDkF-0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cer3q7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"secretHK\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cer3q7/unhealthy_air_quality_in_hk_vs_brisbane_aus/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/cer3q7/unhealthy_air_quality_in_hk_vs_brisbane_aus/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563448289.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_13tnxg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Some protest video on scmp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cequpd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/oM5hJnGLPng?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"How do Hongkongers feel about the violent protests?\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/oM5hJnGLPng?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"South China Morning Post\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/oM5hJnGLPng/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/scmp888\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/oM5hJnGLPng?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cequpd\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/D-KRQWFf7uIVTo4KWzLi2js7PT3DOcWgm2AQG3Se42c.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563475413.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/75GUdqx-ihCM6ueZACy2-fETZXXHSyE6aYDGr859Ikc.jpg?auto=webp\\u0026s=97eb448d8d75b621a8afcafe0df8966856d6d3af\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/75GUdqx-ihCM6ueZACy2-fETZXXHSyE6aYDGr859Ikc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4e03f7c8bb082e085ad1d9fa700bc46a2832e4e4\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/75GUdqx-ihCM6ueZACy2-fETZXXHSyE6aYDGr859Ikc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=02749c1c58421807940311432a363c0072479949\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/75GUdqx-ihCM6ueZACy2-fETZXXHSyE6aYDGr859Ikc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=56b3d9c0223cb4ee5f0431967044b22d8458599f\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"8G-aQbKw0YNezRWLk-od4QFO_GMs5ybzb3PJkj9_kRU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cequpd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tc0008\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cequpd/some_protest_video_on_scmp/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/oM5hJnGLPng\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563446613.0, \"discussion_type\": null, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"How do Hongkongers feel about the violent protests?\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/oM5hJnGLPng?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"South China Morning Post\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/oM5hJnGLPng/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/scmp888\"}, \"type\": \"youtube.com\"}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_20milhuc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"European Parliament to debate enacting export controls on tech 'used to violate basic rights' in Hong Kong\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_ceqoex\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 360, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 360, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/MxBbC1OGjaAGhzkcRQTFD4-m2ICMSgO2CHqxb36C41g.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563474191.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"hongkongfp.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/m72AbM-97PnVSBjFJQIMgZxU7NutQ2BS4sl04MRj0Ls.jpg?auto=webp\\u0026s=82ee132f46cdf9672d29f2ab249bc6250259a6b8\", \"width\": 1050, \"height\": 551}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/m72AbM-97PnVSBjFJQIMgZxU7NutQ2BS4sl04MRj0Ls.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=598fae5f105e8df9819b5c6fcecf3f95cb705506\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/m72AbM-97PnVSBjFJQIMgZxU7NutQ2BS4sl04MRj0Ls.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=93d54c2a3a17459d374dd745310d3df5c9257124\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/m72AbM-97PnVSBjFJQIMgZxU7NutQ2BS4sl04MRj0Ls.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=fa9daa9261fe1d14531dbbef05c6a0fae5c9e32a\", \"width\": 320, \"height\": 167}, {\"url\": \"https://external-preview.redd.it/m72AbM-97PnVSBjFJQIMgZxU7NutQ2BS4sl04MRj0Ls.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=9f4e296826d284bae0f2501776acfe0ec955481e\", \"width\": 640, \"height\": 335}, {\"url\": \"https://external-preview.redd.it/m72AbM-97PnVSBjFJQIMgZxU7NutQ2BS4sl04MRj0Ls.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=b7b8eab7766bd39becfd10b7ed5c3adc0a0f91f2\", \"width\": 960, \"height\": 503}], \"variants\": {}, \"id\": \"IG9M2E-G03J3y_J1fUm6oA34mXJ7_wOhsxAcyZjr_Lo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceqoex\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HKnational\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceqoex/european_parliament_to_debate_enacting_export/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.hongkongfp.com/2019/07/18/european-parliament-debate-enacting-export-controls-tech-used-violate-basic-rights-hong-kong/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563445391.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_20milhuc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tuen Ma Line first phase to open in 2020 first quarter\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_ceqn15\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/iPpcA7TOmXnd8EJ8wmKDbKaiHhUHFC1GXZwz70ZiZiU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563473912.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"thestandard.com.hk\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ccvn5hbs3eKh7teuk8dElpjSMuyQ2D-tmTjl0VTwsDM.jpg?auto=webp\\u0026s=7cb1694098b59248988dc551e48e059a6000ab66\", \"width\": 1000, \"height\": 667}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ccvn5hbs3eKh7teuk8dElpjSMuyQ2D-tmTjl0VTwsDM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4efea6c6ff7d16d546c7ae9d2b7511de6fa5521e\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/ccvn5hbs3eKh7teuk8dElpjSMuyQ2D-tmTjl0VTwsDM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0dd5f043f0320174addc50e6dd0de68a5a575cb1\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/ccvn5hbs3eKh7teuk8dElpjSMuyQ2D-tmTjl0VTwsDM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=05fc0f250dd5d450fa551302a5c50881bd3fddb9\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/ccvn5hbs3eKh7teuk8dElpjSMuyQ2D-tmTjl0VTwsDM.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=01c336dd0ee503c2e747b9c0443c8b9112ece0b7\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/ccvn5hbs3eKh7teuk8dElpjSMuyQ2D-tmTjl0VTwsDM.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=057b5b5614706ff8fedf2d41cf68f34052b8e52c\", \"width\": 960, \"height\": 640}], \"variants\": {}, \"id\": \"YcO5f0Z4B6FHZO-LZ0MRTArEOkDOmIi3JX8Qn2Nsjwk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceqn15\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HKnational\", \"num_crossposts\": 1, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceqn15/tuen_ma_line_first_phase_to_open_in_2020_first/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://www.thestandard.com.hk/breaking-news.php?id=131614\\u0026story_id=131614\\u0026d_str=20190718\\u0026sid=4\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563445112.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_20milhuc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hong Kong democrat Fernando Cheung withdraws private bill that would have enabled extraditions to Taiwan\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_ceqlw8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 79, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 79, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/CVEI9qs9Z51TJgieQDEbzr0irHBEVyFGacln0X9HKV4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563473697.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"hongkongfp.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/WycjgD1OUn2rcBJjYuQge2OsvhSE1W8azBOHCfVy9Ao.jpg?auto=webp\\u0026s=c1ed72d7028d72b82b594874f319a00758c0f4e5\", \"width\": 1050, \"height\": 552}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/WycjgD1OUn2rcBJjYuQge2OsvhSE1W8azBOHCfVy9Ao.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=00f7e81dcc421127cbfcb425416364f5e2b3806b\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/WycjgD1OUn2rcBJjYuQge2OsvhSE1W8azBOHCfVy9Ao.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=8d88c5093d476204af048b4c750c3e7dd81729d9\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/WycjgD1OUn2rcBJjYuQge2OsvhSE1W8azBOHCfVy9Ao.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=07bf23ebfdac475a87cc6fa35bf73ec9c8ab1a31\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/WycjgD1OUn2rcBJjYuQge2OsvhSE1W8azBOHCfVy9Ao.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1c08c019c4101afb27c21c751cc256514947d0fd\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/WycjgD1OUn2rcBJjYuQge2OsvhSE1W8azBOHCfVy9Ao.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=a6deb03d5051cd27988a15e01d4b36b2f9f1ec63\", \"width\": 960, \"height\": 504}], \"variants\": {}, \"id\": \"u40Enn6jPn--BZec0YrvLHINPUcxrDh0h9mWDjjTWWk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceqlw8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HKnational\", \"num_crossposts\": 1, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceqlw8/hong_kong_democrat_fernando_cheung_withdraws/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.hongkongfp.com/2019/07/18/hong-kong-democrat-fernando-cheung-defends-private-bill-enable-case-case-extraditions-taiwan/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563444897.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_10b154\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Bus crash leaves driver dead, 14 passengers hurt - RTHK\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_ceqjwo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/v1ISVgILzlQ7DHi1C_A8es1Vj0zDYCalWihQVUXuXNU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563473335.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"news.rthk.hk\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/utNlpBspP3otf5RZ_Hrhk8_Wom87EsVLVI3keMC_FTY.jpg?auto=webp\\u0026s=ce2d2287caff2a7baa3a83137a03a840202e89b6\", \"width\": 1280, \"height\": 960}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/utNlpBspP3otf5RZ_Hrhk8_Wom87EsVLVI3keMC_FTY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fd2d8be456191dca875a19a3551095299ddf5907\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/utNlpBspP3otf5RZ_Hrhk8_Wom87EsVLVI3keMC_FTY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=47a7ae979d4d4ea387233b48f873011786afdd26\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/utNlpBspP3otf5RZ_Hrhk8_Wom87EsVLVI3keMC_FTY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9b0c155e6f81714fc16bc34fe475ebe867f0e7a5\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/utNlpBspP3otf5RZ_Hrhk8_Wom87EsVLVI3keMC_FTY.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=c90ec74d3d832aaec1f9d771e7c0eab5ca75aaba\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/utNlpBspP3otf5RZ_Hrhk8_Wom87EsVLVI3keMC_FTY.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=ad2667a53cc3768ae17556490592689034ee1017\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/utNlpBspP3otf5RZ_Hrhk8_Wom87EsVLVI3keMC_FTY.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=315ef0c10c213777be8e66580a8b8bfb85425483\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"suG4fuxNERMZsbtD2k1QipYzPi9rDwNy9DxysMm6UTM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceqjwo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TangerineNightmares\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceqjwo/bus_crash_leaves_driver_dead_14_passengers_hurt/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://news.rthk.hk/rthk/en/component/k2/1469063-20190718.htm?spTabChangeable=0\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563444535.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_hvnl7et\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 87, \"hide_score\": false, \"name\": \"t3_ceq47k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/QHoIRKYo9kwncoFpoACHHDiNL1k4qgKLfxoCoH2cqfM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563470115.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/0tbuwfk741b31.jpg?auto=webp\\u0026s=d88adc0e2e4b5f5f6d98df19d5286f10bd38fa34\", \"width\": 816, \"height\": 512}, \"resolutions\": [{\"url\": \"https://preview.redd.it/0tbuwfk741b31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=93570761014d9c6c749050807bc7b264e5f38c25\", \"width\": 108, \"height\": 67}, {\"url\": \"https://preview.redd.it/0tbuwfk741b31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=48ba6825d1184b1cea24422390f3aee4047e30b3\", \"width\": 216, \"height\": 135}, {\"url\": \"https://preview.redd.it/0tbuwfk741b31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=89d8ec0282f5ce66afbfcf9355149c5bc6b2617e\", \"width\": 320, \"height\": 200}, {\"url\": \"https://preview.redd.it/0tbuwfk741b31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=c443b6e39108e191f127818215c2b2b3c26b2dfc\", \"width\": 640, \"height\": 401}], \"variants\": {}, \"id\": \"hIuZmx-EAHKwCGh60dp-nRAekIuIRF0-5SVk15YzF8Y\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceq47k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"IosueYu\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceq47k/what/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/0tbuwfk741b31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563441315.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ehrm1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\\"It's not about how much we have lost, it's about how much we have left\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_ceq3a5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/kVURRBwauKE?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"[\\u53cd\\u9001\\u4e2d]\\u3010Hongkongers! Assemble! \\u3011- \\u5149\\u5fa9\\u9999\\u6e2f\\uff01\\u6c92\\u6709\\u66b4\\u6c11\\uff0c\\u53ea\\u6709\\u66b4\\u653f\\uff01Hong Kong Anti-Extradition Bill 2019\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/kVURRBwauKE?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"JustOneOfTheHongkonger\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/kVURRBwauKE/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCAm7vzExB3V3N6LS6fb3uLQ\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/kVURRBwauKE?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/ceq3a5\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/zLaHxhH0AZpAXMPveTM_Kc8V-3zyrvvNg2_Nd8Ght3M.jpg\", \"edited\": false, \"author_flair_css_class\": \"swedish-friend\", \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563469916.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/36aiy-ZT5lG-kvm7LJjl746u0AshGb370OVa1vkcfP4.jpg?auto=webp\\u0026s=3819bfc0d18bd877b397dcfcfe981e3e1ee4ad88\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/36aiy-ZT5lG-kvm7LJjl746u0AshGb370OVa1vkcfP4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8f9fe58389fb848e8feeaf30ed1ee8caca7b2a98\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/36aiy-ZT5lG-kvm7LJjl746u0AshGb370OVa1vkcfP4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3b3a17f64b1bcc36ddceb8af4b56d46c39f3e843\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/36aiy-ZT5lG-kvm7LJjl746u0AshGb370OVa1vkcfP4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6540399ae3b908b55109c7ab9e4cce38dddd058e\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"gTgX33p-zddeWzkMAidreL8opXIzJmnI48FxhIuYALM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"612 never forget\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceq3a5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"2015071\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/HongKong/comments/ceq3a5/its_not_about_how_much_we_have_lost_its_about_how/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=kVURRBwauKE\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563441116.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"[\\u53cd\\u9001\\u4e2d]\\u3010Hongkongers! Assemble! \\u3011- \\u5149\\u5fa9\\u9999\\u6e2f\\uff01\\u6c92\\u6709\\u66b4\\u6c11\\uff0c\\u53ea\\u6709\\u66b4\\u653f\\uff01Hong Kong Anti-Extradition Bill 2019\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/kVURRBwauKE?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"JustOneOfTheHongkonger\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/kVURRBwauKE/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCAm7vzExB3V3N6LS6fb3uLQ\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_15k6s9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Their what? Poor choice of words SCMP.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ceq1zt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/EzDcnniQZq5CUtq-1AWKitjZY8Ln1wgfSRea69SWm2Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563469642.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/qyq0j2ss21b31.png?auto=webp\\u0026s=5a023125d11aad17d3fc287370ee29057042fe82\", \"width\": 1344, \"height\": 2048}, \"resolutions\": [{\"url\": \"https://preview.redd.it/qyq0j2ss21b31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a34c16caaa05456ae4ea159eecbabe2f3cc8a8c4\", \"width\": 108, \"height\": 164}, {\"url\": \"https://preview.redd.it/qyq0j2ss21b31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4bd95d7046fe33847939789ff10c601b43a6782a\", \"width\": 216, \"height\": 329}, {\"url\": \"https://preview.redd.it/qyq0j2ss21b31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=145fbd11fd05dfa40d7cb7162b84230c05b33a80\", \"width\": 320, \"height\": 487}, {\"url\": \"https://preview.redd.it/qyq0j2ss21b31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=bd40a1e9904caf80a3a58205cf814199d22c0fc0\", \"width\": 640, \"height\": 975}, {\"url\": \"https://preview.redd.it/qyq0j2ss21b31.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f9e1d309f71f8fd5f5b783a4ac08a2708677bd9b\", \"width\": 960, \"height\": 1462}, {\"url\": \"https://preview.redd.it/qyq0j2ss21b31.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=15035fc699224176849ae34b2356d9d696b41e09\", \"width\": 1080, \"height\": 1645}], \"variants\": {}, \"id\": \"kkHll7ZTcjrc7uhpQ3CYpo8s61dTZfuAjl83Ub0RN0o\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceq1zt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aaclavijo\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceq1zt/their_what_poor_choice_of_words_scmp/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/qyq0j2ss21b31.png\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563440842.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_3l041eap\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Any good food recommendations around Tsim Sha Tsui?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceq1zj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563469641.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceq1zj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"stirapple718\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceq1zj/any_good_food_recommendations_around_tsim_sha_tsui/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/ceq1zj/any_good_food_recommendations_around_tsim_sha_tsui/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563440841.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"Hi guys. So, around January next yr, my fam and I will go to Hong Kong. I was hoping to know if there was any place selling games for cheap? Like below standard/sale prices, 2nd hands with no problems are good too. And also, how to get there?\\n\\nAnd and, anyone know where I could get original headsets for cheap as well? (Wireless, gonna use for laptop, switch, and phone so preferably BT as well, around 600Hkd or less hopefully)\\n\\nThanks! Hopefully they're quite near, since if I could I'll try to ask for a day by myself to check 'em out.\", \"author_fullname\": \"t2_11msqw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Where to buy PC (steam), PS4, Switch Games for cheap? And also a wireless headset?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceq1a7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563469495.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys. So, around January next yr, my fam and I will go to Hong Kong. I was hoping to know if there was any place selling games for cheap? Like below standard/sale prices, 2nd hands with no problems are good too. And also, how to get there?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd and, anyone know where I could get original headsets for cheap as well? (Wireless, gonna use for laptop, switch, and phone so preferably BT as well, around 600Hkd or less hopefully)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks! Hopefully they\\u0026#39;re quite near, since if I could I\\u0026#39;ll try to ask for a day by myself to check \\u0026#39;em out.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceq1a7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dragathar12\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceq1a7/where_to_buy_pc_steam_ps4_switch_games_for_cheap/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/ceq1a7/where_to_buy_pc_steam_ps4_switch_games_for_cheap/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563440695.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_18mjq2xf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"At Ocean Park :)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cepztl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 37, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 37, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/gPkgUz801rmDjIQXdNCtl0Q_9BXUQNrnzRl07cLLhmA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563469219.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/jduoiicj11b31.jpg?auto=webp\\u0026s=a96980dba4426311e8d58c86de2f2f39ce72e7e2\", \"width\": 2096, \"height\": 3724}, \"resolutions\": [{\"url\": \"https://preview.redd.it/jduoiicj11b31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4af5e366fe0305dd759c208524d14961cc6ee09b\", \"width\": 108, \"height\": 191}, {\"url\": \"https://preview.redd.it/jduoiicj11b31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5e0696145e809c06fa3f48a9b820ac668f1ac6f8\", \"width\": 216, \"height\": 383}, {\"url\": \"https://preview.redd.it/jduoiicj11b31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=aaa58b0c3f9a2156e4832cf9aac31e34a2aaab1b\", \"width\": 320, \"height\": 568}, {\"url\": \"https://preview.redd.it/jduoiicj11b31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=234adeb1442d779d18dfbf2781a079e53a4a168c\", \"width\": 640, \"height\": 1137}, {\"url\": \"https://preview.redd.it/jduoiicj11b31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=86a20ed0a692dff6200af010df08278814868c88\", \"width\": 960, \"height\": 1705}, {\"url\": \"https://preview.redd.it/jduoiicj11b31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ce5d112e70eea1a7fc7d6472219e575715d2e5aa\", \"width\": 1080, \"height\": 1918}], \"variants\": {}, \"id\": \"_BUH1kyMqfQ5SM3rCU38HiGyvQIghd5aotdVu0rFjMA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cepztl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Luke050715\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cepztl/at_ocean_park/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/jduoiicj11b31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563440419.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"No, I don't like her politics. But as someone who failed Real Analysis in undergrad, I'm a touch impressed by their math proficiency! \\n\\n- Jeremy Lam Jit-si [went to Charterhouse School, then earned just BA Math from Cambridge](https://hk.linkedin.com/in/jeremy-lam-746355b9). \\n\\n\\n- [Joshua's page at Harvard](http://www.math.harvard.edu/people/LamJoshua.html). [Linkedin](https://www.linkedin.com/in/joshua-lam-4a933612b) shows him as having earned BA, MMath.\\n\\n- Her husband, Lam Siu-Por, has a [PhD in math from Cambridge](https://www.genealogy.math.ndsu.nodak.edu/id.php?id=24520).\", \"author_fullname\": \"t2_u9jtor2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TIL: Carrie Lam's 2 sons earned a BA in Math from Cambridge. Joshua's studying PhD in math at Harvard.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceplzi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563466085.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, I don\\u0026#39;t like her politics. But as someone who failed Real Analysis in undergrad, I\\u0026#39;m a touch impressed by their math proficiency! \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EJeremy Lam Jit-si \\u003Ca href=\\\"https://hk.linkedin.com/in/jeremy-lam-746355b9\\\"\\u003Ewent to Charterhouse School, then earned just BA Math from Cambridge\\u003C/a\\u003E. \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.math.harvard.edu/people/LamJoshua.html\\\"\\u003EJoshua\\u0026#39;s page at Harvard\\u003C/a\\u003E. \\u003Ca href=\\\"https://www.linkedin.com/in/joshua-lam-4a933612b\\\"\\u003ELinkedin\\u003C/a\\u003E shows him as having earned BA, MMath.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHer husband, Lam Siu-Por, has a \\u003Ca href=\\\"https://www.genealogy.math.ndsu.nodak.edu/id.php?id=24520\\\"\\u003EPhD in math from Cambridge\\u003C/a\\u003E.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/eNitc8wW-WUe8adjCefEb9o60YwZxhMCSVuQ3Sr6nu8.jpg?auto=webp\\u0026s=1a582ca637b2d256623fbc643d2bd494cc142b7d\", \"width\": 200, \"height\": 200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/eNitc8wW-WUe8adjCefEb9o60YwZxhMCSVuQ3Sr6nu8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=74e9585a7e074e501c265c974a60ac16e68a812a\", \"width\": 108, \"height\": 108}], \"variants\": {}, \"id\": \"7DBALMTG8h5L1AeOMVBQRgBo-juo9fhXfZ-PkJSIt5M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceplzi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eun3\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceplzi/til_carrie_lams_2_sons_earned_a_ba_in_math_from/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/ceplzi/til_carrie_lams_2_sons_earned_a_ba_in_math_from/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563437285.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_36q3a\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In Pictures: Photoshop whizz plasters imaginary Hong Kong gov't HQ with 'real' protester post-it notes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_ceov6y\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/p2HlQoj2MtqnrX9r2PrKj5k5x0UrfTpfXK14nw3rNJk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563460432.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"hongkongfp.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/FWhq9gTG6wj9vHAEI0WPq75a4zct5_9nlMGXdr1NJpI.jpg?auto=webp\\u0026s=7a9fa236bfe1a2ef59916e1e1e86a481f6b1122f\", \"width\": 1050, \"height\": 548}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/FWhq9gTG6wj9vHAEI0WPq75a4zct5_9nlMGXdr1NJpI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=755fedee1484ec3e1d54ee021bf8ec8ed71d15b6\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/FWhq9gTG6wj9vHAEI0WPq75a4zct5_9nlMGXdr1NJpI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=2da5915a54c1be401acbb9a3b83a2bd1064395e1\", \"width\": 216, \"height\": 112}, {\"url\": \"https://external-preview.redd.it/FWhq9gTG6wj9vHAEI0WPq75a4zct5_9nlMGXdr1NJpI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1f754cebfe71ac92450d8f78ed1cc544f27bafeb\", \"width\": 320, \"height\": 167}, {\"url\": \"https://external-preview.redd.it/FWhq9gTG6wj9vHAEI0WPq75a4zct5_9nlMGXdr1NJpI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=fd10f83cd63dfa7212c94ce4430286c24f556ef1\", \"width\": 640, \"height\": 334}, {\"url\": \"https://external-preview.redd.it/FWhq9gTG6wj9vHAEI0WPq75a4zct5_9nlMGXdr1NJpI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=bb60fc48e43d0b28fcd5dae1d25f9d6a8f133f2d\", \"width\": 960, \"height\": 501}], \"variants\": {}, \"id\": \"HciMUx64n4pEHJtI_42QKcmXwCr2UFdxhgqHIdlJW4I\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceov6y\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mod83\", \"num_crossposts\": 1, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceov6y/in_pictures_photoshop_whizz_plasters_imaginary/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.hongkongfp.com/2019/07/18/pictures-photoshop-whizz-plasters-imaginary-hong-kong-govt-hq-real-protester-post-notes/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563431632.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_nuvpg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hong Kong-based Public Opinion Research Institute this month found that 44% of Hong Kongers support Taiwan independence (even though question was framed confusingly as 'becoming' independent)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceorvq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 38, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 38, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563459786.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"pori.hk\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceorvq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"article10ECHR\", \"num_crossposts\": 1, \"num_comments\": 24, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceorvq/hong_kongbased_public_opinion_research_institute/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.pori.hk/nationalissues/taiwan-independence\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563430986.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ndzg4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hong Kong police leaders \\u2018ordered Sha Tin rescue mission for besieged officers\\u2019 at New Town Plaza, where bloody clashes occurred\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_ceo8bj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/PLA3K2g5NIsHp948hzdtIg5C4388iDB9S32gsrBfsxE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563455980.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"scmp.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/tf0ycUn0QsLqF_ib9D0ZFlW07jFftz6UrlI_reoX10w.jpg?auto=webp\\u0026s=ff902cbca42937209dc7d61a37f02b54935eb36f\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/tf0ycUn0QsLqF_ib9D0ZFlW07jFftz6UrlI_reoX10w.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=518ffc1ecc692bbc12d5aa208a1e04f5bb22e6d7\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/tf0ycUn0QsLqF_ib9D0ZFlW07jFftz6UrlI_reoX10w.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e24ccff13ee5c4e39fe926c7244ec6e5c5c85c8d\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/tf0ycUn0QsLqF_ib9D0ZFlW07jFftz6UrlI_reoX10w.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=974398f39abee85836eeaa780a708017495f3923\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/tf0ycUn0QsLqF_ib9D0ZFlW07jFftz6UrlI_reoX10w.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=ea4dc21e67982698217e714599412d9a1fc6f0ed\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/tf0ycUn0QsLqF_ib9D0ZFlW07jFftz6UrlI_reoX10w.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=b3e1a5322bfa0553b276ce072a10c101bfcae060\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/tf0ycUn0QsLqF_ib9D0ZFlW07jFftz6UrlI_reoX10w.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=16476611da81350e707ffea83cce316addc84dc4\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"BtTEuWWucbVyVNjGQGd5aO2RWAGK1kGKC7K2MLTEQGE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceo8bj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ticonderoga67\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceo8bj/hong_kong_police_leaders_ordered_sha_tin_rescue/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.scmp.com/news/hong-kong/law-and-crime/article/3019058/hong-kong-police-leaders-ordered-sha-tin-rescue\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563427180.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_3l3hbuk7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Bloomberg] China Drafting Urgent Plan to Resolve Hong Kong Chaos - \\\"Use of Chinese military force has been ruled out, Long-term strategy may lead to change in how it oversees city\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_ceo4u4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 181, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 181, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/zkFmFYErAiOSiVhYPtZ7M2QPFyF50V7yeM6fP5GyI2I.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563455344.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"bloomberg.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Yk96cnZUOfgoUGPxHi-yaL4IGrr1vX859xVPg0jokOE.jpg?auto=webp\\u0026s=e55996ce4db6e96242ddb10dc7c8c0cd14583f70\", \"width\": 1200, \"height\": 800}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Yk96cnZUOfgoUGPxHi-yaL4IGrr1vX859xVPg0jokOE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ccfef7075eeaba1bf5b0f7f67ad3a138902bf924\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/Yk96cnZUOfgoUGPxHi-yaL4IGrr1vX859xVPg0jokOE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=bb2c705a4d775054e401da0df084aa1400488e19\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/Yk96cnZUOfgoUGPxHi-yaL4IGrr1vX859xVPg0jokOE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1dfa89a0f5938a9728ad79834a9e2f6061d279be\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/Yk96cnZUOfgoUGPxHi-yaL4IGrr1vX859xVPg0jokOE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=ddfcc93f1c71b8596f8f34b4acf3a0f483b0d93e\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/Yk96cnZUOfgoUGPxHi-yaL4IGrr1vX859xVPg0jokOE.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=7dd44f115a5f88f32317c0417302c1aa809b4afa\", \"width\": 960, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/Yk96cnZUOfgoUGPxHi-yaL4IGrr1vX859xVPg0jokOE.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=5d385d85a2d99da28e91d86be88f465edbdb4543\", \"width\": 1080, \"height\": 720}], \"variants\": {}, \"id\": \"pLBa4N-bKdReVq5_3epYDSN6hv_4th6hzDToY2flV_0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceo4u4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ssj4rab\", \"num_crossposts\": 0, \"num_comments\": 79, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceo4u4/bloomberg_china_drafting_urgent_plan_to_resolve/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.bloomberg.com/news/articles/2019-07-18/china-drafting-urgent-plan-to-resolve-hong-kong-chaos-scmp-says\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563426544.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_1evcevjt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"For the Hong Kongers here, this is the real \\u5929\\u68af\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 123, \"hide_score\": false, \"name\": \"t3_ceo3wm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/9tPLEhGgIVR6Txaq5ElrtDvRsWbL8dTi7NmIMm25uv4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"interestingasfuck\", \"selftext\": \"\", \"author_fullname\": \"t2_17hwtdq1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"A Chinese artist created a ladder to heaven 1,600 feet in height using fireworks in tribute to his grandmother\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/interestingasfuck\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"approve\", \"downs\": 0, \"thumbnail_height\": 123, \"hide_score\": false, \"name\": \"t3_cemj37\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 31043, \"total_awards_received\": 2, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"/r/ALL\", \"can_mod_post\": false, \"score\": 31043, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_1\": 1, \"gid_2\": 1}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563445606.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}, {\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Silver Award\", \"coin_reward\": 0, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/silver_512.png\", \"days_of_premium\": 0, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 100, \"id\": \"gid_1\", \"name\": \"Silver\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhsa\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cemj37\", \"is_robot_indexable\": false, \"report_reasons\": null, \"author\": \"WhiteShaneDiesel\", \"num_crossposts\": 16, \"num_comments\": 543, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/interestingasfuck/comments/cemj37/a_chinese_artist_created_a_ladder_to_heaven_1600/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.imgur.com/DXJHFpA.gifv\", \"subreddit_subscribers\": 3958746, \"created_utc\": 1563416806.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1563455170.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/7RkUJdoD1CyGIZyCuDuP0TRUaKa2SayI9n-6kEfmcKs.gif?format=png8\\u0026s=86174fac23327e7ed4cfd613b03d2fa03e994403\", \"width\": 454, \"height\": 401}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/7RkUJdoD1CyGIZyCuDuP0TRUaKa2SayI9n-6kEfmcKs.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=79df9f3a4d5efb8b5ef6a4897a8533425b426a0d\", \"width\": 108, \"height\": 95}, {\"url\": \"https://external-preview.redd.it/7RkUJdoD1CyGIZyCuDuP0TRUaKa2SayI9n-6kEfmcKs.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=72d52d13bad2d3aab3872b3d41cdd465e04de47e\", \"width\": 216, \"height\": 190}, {\"url\": \"https://external-preview.redd.it/7RkUJdoD1CyGIZyCuDuP0TRUaKa2SayI9n-6kEfmcKs.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=5ee3ded548c674d6ca8b14a060017f274dab16a7\", \"width\": 320, \"height\": 282}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/7RkUJdoD1CyGIZyCuDuP0TRUaKa2SayI9n-6kEfmcKs.gif?s=3b0f70bff92447ea69e879d6a7289f198ea210a5\", \"width\": 454, \"height\": 401}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/7RkUJdoD1CyGIZyCuDuP0TRUaKa2SayI9n-6kEfmcKs.gif?width=108\\u0026crop=smart\\u0026s=3f422206acc59b9755eb3c642346aa685a074166\", \"width\": 108, \"height\": 95}, {\"url\": \"https://external-preview.redd.it/7RkUJdoD1CyGIZyCuDuP0TRUaKa2SayI9n-6kEfmcKs.gif?width=216\\u0026crop=smart\\u0026s=2fbb7074f0bb829a7a29fe956af709fd3b62b762\", \"width\": 216, \"height\": 190}, {\"url\": \"https://external-preview.redd.it/7RkUJdoD1CyGIZyCuDuP0TRUaKa2SayI9n-6kEfmcKs.gif?width=320\\u0026crop=smart\\u0026s=76a4c695117091337eb3111245170bf05bb43f6f\", \"width\": 320, \"height\": 282}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/7RkUJdoD1CyGIZyCuDuP0TRUaKa2SayI9n-6kEfmcKs.gif?format=mp4\\u0026s=4492dcca6c0fdf3cd38d6f4ab02335e3beb0399b\", \"width\": 454, \"height\": 401}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/7RkUJdoD1CyGIZyCuDuP0TRUaKa2SayI9n-6kEfmcKs.gif?width=108\\u0026format=mp4\\u0026s=891e8ba04acf1be0fdee42271ebe88317e8e1cf5\", \"width\": 108, \"height\": 95}, {\"url\": \"https://external-preview.redd.it/7RkUJdoD1CyGIZyCuDuP0TRUaKa2SayI9n-6kEfmcKs.gif?width=216\\u0026format=mp4\\u0026s=1fbb125a6f4e4623aa5b2aa94848f57c0e9e6fa3\", \"width\": 216, \"height\": 190}, {\"url\": \"https://external-preview.redd.it/7RkUJdoD1CyGIZyCuDuP0TRUaKa2SayI9n-6kEfmcKs.gif?width=320\\u0026format=mp4\\u0026s=39cf85bb37771f29497af3e46642cf69e5e8730a\", \"width\": 320, \"height\": 282}]}}, \"id\": \"E5Uy2spcgUrHayH2vxtVCnyQ4wgce062HfCF24aTr1I\"}], \"reddit_video_preview\": {\"fallback_url\": \"https://v.redd.it/nl9hkgfc3za31/DASH_360\", \"height\": 360, \"width\": 406, \"scrubber_media_url\": \"https://v.redd.it/nl9hkgfc3za31/DASH_96\", \"dash_url\": \"https://v.redd.it/nl9hkgfc3za31/DASHPlaylist.mpd\", \"duration\": 20, \"hls_url\": \"https://v.redd.it/nl9hkgfc3za31/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceo3wm\", \"is_robot_indexable\": true, \"stickied\": false, \"author\": \"cucumberbae\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_cemj37\", \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceo3wm/for_the_hong_kongers_here_this_is_the_real_\\u5929\\u68af/\", \"parent_whitelist_status\": \"all_ads\", \"report_reasons\": null, \"url\": \"https://i.imgur.com/DXJHFpA.gifv\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563426370.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_2bego28r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Revival of the dead Extradition Bill by Fernando Cheung, a pan-democratic legco member (Picture drawn by: Cuson Lo)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cenmfa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 28, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 28, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ypfPn-urCPhexckVlQRqXxYTOo3J2ZGs71imHCoHydU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563452067.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/26ygl37jmza31.jpg?auto=webp\\u0026s=346626c099e3e344264b303b39c8e097c6602751\", \"width\": 1440, \"height\": 1440}, \"resolutions\": [{\"url\": \"https://preview.redd.it/26ygl37jmza31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b22b5089724ec4a053d6143c7b5b0debb0fb6444\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/26ygl37jmza31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c9a968b94bcfab18e093de91cc78d6347fcd99f8\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/26ygl37jmza31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2980574e58b584b6649a8b905b226b576e04bd15\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/26ygl37jmza31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=bae0b2fa77287b6d476de6099e1cca8526b1d903\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/26ygl37jmza31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e747d493309e8e185782b475107b51d66263c161\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/26ygl37jmza31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=87c2624416e73bee724942c1df1b6d166b020422\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"5w3b2Q4zOxBFwgSR9J1qlQ2rEh8zo17Bxt-vJ3rXG1Y\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cenmfa\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"badgordo\", \"num_crossposts\": 1, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cenmfa/revival_of_the_dead_extradition_bill_by_fernando/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/26ygl37jmza31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563423267.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ld1a9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How a Hong Kong startup gets caught up in US-China trade war \\u2013 TechCrunch\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 74, \"hide_score\": false, \"name\": \"t3_cengpk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/eaWcAR8P-T_p7AhlENWqAV4vd1OrO6vRnyqRPfhOFwE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563451100.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"techcrunch.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/GArHIAu5JKu4EP-fVqG-xuJm1StDSdPFHLe7wLO3kbA.jpg?auto=webp\\u0026s=dc20959f44b7d08971ac55a3afd0e9216de02ba7\", \"width\": 751, \"height\": 399}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/GArHIAu5JKu4EP-fVqG-xuJm1StDSdPFHLe7wLO3kbA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3269d715289902212edf2a9bfa1856fd7b26dc06\", \"width\": 108, \"height\": 57}, {\"url\": \"https://external-preview.redd.it/GArHIAu5JKu4EP-fVqG-xuJm1StDSdPFHLe7wLO3kbA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=10af8ed1fcbd166ddd40371828d231c157fae836\", \"width\": 216, \"height\": 114}, {\"url\": \"https://external-preview.redd.it/GArHIAu5JKu4EP-fVqG-xuJm1StDSdPFHLe7wLO3kbA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=632272b22844d99917625d24505bcbb49ce94d0a\", \"width\": 320, \"height\": 170}, {\"url\": \"https://external-preview.redd.it/GArHIAu5JKu4EP-fVqG-xuJm1StDSdPFHLe7wLO3kbA.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=6f028b115351c3c5b33a02be304305e31cae6efe\", \"width\": 640, \"height\": 340}], \"variants\": {}, \"id\": \"dR8AoYAl1Sa30ciGNUtekZ3KF8Nlry6qNYwwsK0jY0Y\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cengpk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dtlv5813\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cengpk/how_a_hong_kong_startup_gets_caught_up_in_uschina/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://techcrunch.com/2019/07/17/us-china-trade-war-hong-kong/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563422300.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_20milhuc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"'You're to blame' cop tells reporter\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cenb5f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 24, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 24, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/2TdkUm9UoLBls5rQLorrISClhIiJ5y0MKmwbB3rZIg8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563450165.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"thestandard.com.hk\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/YWyCPDLkM89WDhA_cN36vrFshPeOoP_W34oitztGz0Q.jpg?auto=webp\\u0026s=62d5da02e705f50bd87bade145b1a1f731fcc338\", \"width\": 1000, \"height\": 1238}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/YWyCPDLkM89WDhA_cN36vrFshPeOoP_W34oitztGz0Q.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=1a03bde2a591fdb13dc70e10011b107f199b79fb\", \"width\": 108, \"height\": 133}, {\"url\": \"https://external-preview.redd.it/YWyCPDLkM89WDhA_cN36vrFshPeOoP_W34oitztGz0Q.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=dfeb8528fae0ad272b4c08aadc61f338ab33a84b\", \"width\": 216, \"height\": 267}, {\"url\": \"https://external-preview.redd.it/YWyCPDLkM89WDhA_cN36vrFshPeOoP_W34oitztGz0Q.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3f9c3d0e2f95c8bda3600434e3e2847fb289ed22\", \"width\": 320, \"height\": 396}, {\"url\": \"https://external-preview.redd.it/YWyCPDLkM89WDhA_cN36vrFshPeOoP_W34oitztGz0Q.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=c514d5b36f3593f745e57e5618b3b2c8948671f4\", \"width\": 640, \"height\": 792}, {\"url\": \"https://external-preview.redd.it/YWyCPDLkM89WDhA_cN36vrFshPeOoP_W34oitztGz0Q.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e731bf3163b714320d36b292659e4447011fa708\", \"width\": 960, \"height\": 1188}], \"variants\": {}, \"id\": \"32jd_rfFCP0w83QozHY3UcJxS7oN1rKb3hUUsGAAAEE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cenb5f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HKnational\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cenb5f/youre_to_blame_cop_tells_reporter/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://www.thestandard.com.hk/section-news.php?id=209725\\u0026sid=21\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563421365.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_gbig6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Chinese officials scramble to deliver new Hong Kong strategy but military response not an option\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_cen4ty\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/7YOxkGUncyRlz3Y3iYZdO35LX09BW6flbu9-5gcwxnY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563449146.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"scmp.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/KFojS5pwWIQdjxQGonAJgU49Nu2GddVX9NwPP_nMhns.jpg?auto=webp\\u0026s=41cf2c3ad5d229a19436ba08bee6072981d4fd80\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/KFojS5pwWIQdjxQGonAJgU49Nu2GddVX9NwPP_nMhns.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2793e8df01ddf6c39d38f41e32c013092a308b76\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/KFojS5pwWIQdjxQGonAJgU49Nu2GddVX9NwPP_nMhns.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=bbef8bc56b8441a0b5713c582292f44b0b521c8b\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/KFojS5pwWIQdjxQGonAJgU49Nu2GddVX9NwPP_nMhns.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=bd06be174f43ff94d4d0f216aa73fadd7d99fc48\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/KFojS5pwWIQdjxQGonAJgU49Nu2GddVX9NwPP_nMhns.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d5845670c68940414c256d02942f0f4f534b6cdc\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/KFojS5pwWIQdjxQGonAJgU49Nu2GddVX9NwPP_nMhns.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=b00ff106287954f1e4827b019845298b5236f132\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/KFojS5pwWIQdjxQGonAJgU49Nu2GddVX9NwPP_nMhns.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=1a49c557b54407912d408b75531809b04c919968\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"jYdlTshKUcprGMZschOdzPF4KDrJIXyH7ZemBHxY2vo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cen4ty\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jarady\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cen4ty/chinese_officials_scramble_to_deliver_new_hong/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.scmp.com/news/china/politics/article/3019007/chinese-officials-scramble-deliver-new-hong-kong-strategy\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563420346.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_20vrcs9c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Extradition Bill Meme- Keep Fighting the Good Fight Hong Kong\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_celpha\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/9Xje7a1rL0V53nGnrCVyQV1zyGm2b-lVtaseJwB2y48.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563440912.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/aags3qv9pya31.png?auto=webp\\u0026s=2f837df6badde6a501442a0ee7572870908563b0\", \"width\": 1080, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://preview.redd.it/aags3qv9pya31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e18aaa9e987941e519fed0ab851ca53621107a84\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/aags3qv9pya31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=98f713fae587486606f96eaf43bc303aad221acb\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/aags3qv9pya31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=0384056c1dae1afe05f8fe983b4e9fd17fb963d7\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/aags3qv9pya31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=e3a5a7b001502dc9fca3686d6d89068a4fd039ef\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/aags3qv9pya31.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=7c5604a0f353fca573e07decba993abd1f20715f\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/aags3qv9pya31.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=bbe8faad88d32c4ed94b39259138a19149b6c23a\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"7V_WaYJl3Kww1BxqgZXBGdOlXwX8T5xveWh9s4MMyvM\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"celpha\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Arjent3\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/celpha/extradition_bill_meme_keep_fighting_the_good/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/aags3qv9pya31.png\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563412112.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_2w0qnm0q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"RTHK staff union accuses management of instructing reporters to include false info on Sha Tin protest\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 74, \"hide_score\": false, \"name\": \"t3_celhie\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 149, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 149, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/GJYN__IEVMf0GT-CKeyo36k3wJXDRL3R6zPFoL64HBc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563439673.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"hongkongfp.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ZAJ4Q--Ea5LDd28nMBZM4JViFVOSai2QUw1MQ6kssvM.jpg?auto=webp\\u0026s=def834b0b614b8d952588b7553c626837d743b96\", \"width\": 1050, \"height\": 557}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ZAJ4Q--Ea5LDd28nMBZM4JViFVOSai2QUw1MQ6kssvM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e957661457668e58e56ad90ec8574493dcdf457e\", \"width\": 108, \"height\": 57}, {\"url\": \"https://external-preview.redd.it/ZAJ4Q--Ea5LDd28nMBZM4JViFVOSai2QUw1MQ6kssvM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=50f4db8b2305cd6b817913757c0a02830939813b\", \"width\": 216, \"height\": 114}, {\"url\": \"https://external-preview.redd.it/ZAJ4Q--Ea5LDd28nMBZM4JViFVOSai2QUw1MQ6kssvM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7b1fb50197bfc0b7eb6fe65f8cf00582a37fc426\", \"width\": 320, \"height\": 169}, {\"url\": \"https://external-preview.redd.it/ZAJ4Q--Ea5LDd28nMBZM4JViFVOSai2QUw1MQ6kssvM.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5c4124f00773483afa83af47f5ba32c61ee3f7e4\", \"width\": 640, \"height\": 339}, {\"url\": \"https://external-preview.redd.it/ZAJ4Q--Ea5LDd28nMBZM4JViFVOSai2QUw1MQ6kssvM.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=666dfa5a9137d10c641912f4cbb291b59e9a300a\", \"width\": 960, \"height\": 509}], \"variants\": {}, \"id\": \"21E9Qf1f85E1e-KXNIVsm4Mc_R9gdPTQArJUHw60B44\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"celhie\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ZWF0cHVzc3k\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/celhie/rthk_staff_union_accuses_management_of/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.hongkongfp.com/2019/07/18/rthk-staff-union-accuses-management-instructing-reporters-include-false-info-sha-tin-protest/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563410873.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"Hi guys,\\n\\nThis question might get buried in with the recent protest posts, but I\\u2019m hopeful someone will see it. \\n\\nOff to HK for 5 days. 23rd July to the 28th (Tuesday-Sunday). \\n\\nI had booked this trip with my SO, but for reasons, I\\u2019ll be going alone. I have Disneyland booked and maybe a visit to Happy Valley on Wednesday evening, but other than that, I don\\u2019t know what else a solo traveler can do. \\n\\nAny suggestions would be a big help! Thanks!\", \"author_fullname\": \"t2_5aw90\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Off to Hong Kong for a few days. Looking for things to do!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_celcb4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563438860.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis question might get buried in with the recent protest posts, but I\\u2019m hopeful someone will see it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOff to HK for 5 days. 23rd July to the 28th (Tuesday-Sunday). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI had booked this trip with my SO, but for reasons, I\\u2019ll be going alone. I have Disneyland booked and maybe a visit to Happy Valley on Wednesday evening, but other than that, I don\\u2019t know what else a solo traveler can do. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny suggestions would be a big help! Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"celcb4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kirbyforce\", \"num_crossposts\": 0, \"num_comments\": 35, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/celcb4/off_to_hong_kong_for_a_few_days_looking_for/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563410060.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"Hello! I\\u2019m a first generation low-income student studying abroad in Hong Kong next semester. I can\\u2019t work at any conventional place because I am on a student visa, but my school has given me very minimal amounts money to stay in Hong Kong even though I will be there for four months. I\\u2019ve been working this summer, but have been having to give a lot of money back to my family. If anyone has any ideas or advice I would super appreciate it! Thanks.\", \"author_fullname\": \"t2_c6c5f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Abroad Student Looking for A Way To Make Money in HK\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cel62g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563437918.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": true, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello! I\\u2019m a first generation low-income student studying abroad in Hong Kong next semester. I can\\u2019t work at any conventional place because I am on a student visa, but my school has given me very minimal amounts money to stay in Hong Kong even though I will be there for four months. I\\u2019ve been working this summer, but have been having to give a lot of money back to my family. If anyone has any ideas or advice I would super appreciate it! Thanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cel62g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Mightybear123\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cel62g/abroad_student_looking_for_a_way_to_make_money_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/cel62g/abroad_student_looking_for_a_way_to_make_money_in/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563409118.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_2bego28r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SF Gate reports on the Hong Kong elderly march yesterday in support of younger protestors.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_cejk3e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 37, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 37, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/s3y7HzKdx3QPlAOg6k5bGqjzPCzKVT7Oc38DuW7FcYY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563429673.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"m.sfgate.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Hec1Is4Z0zYzjqSF5s6v6p0epc-Kaey6COZaMCwg5C4.jpg?auto=webp\\u0026s=425683ec370a4c4c8bf97ffef3f0b3970b2015b9\", \"width\": 2048, \"height\": 1365}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Hec1Is4Z0zYzjqSF5s6v6p0epc-Kaey6COZaMCwg5C4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=96659797dc297a2a1007229aa4a40886d3e93310\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/Hec1Is4Z0zYzjqSF5s6v6p0epc-Kaey6COZaMCwg5C4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=bed8520d8b49eafbf63b1be76b25dda835aa162d\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/Hec1Is4Z0zYzjqSF5s6v6p0epc-Kaey6COZaMCwg5C4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cfc95d06c392dd291ae5c7ea071f97a2285f0dca\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/Hec1Is4Z0zYzjqSF5s6v6p0epc-Kaey6COZaMCwg5C4.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=0b33f61dad646f93dda5cb854e5cb8609c823c68\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/Hec1Is4Z0zYzjqSF5s6v6p0epc-Kaey6COZaMCwg5C4.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=58f492c419b37d3e069b8491863f25512a231d1b\", \"width\": 960, \"height\": 639}, {\"url\": \"https://external-preview.redd.it/Hec1Is4Z0zYzjqSF5s6v6p0epc-Kaey6COZaMCwg5C4.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8f4eb7815e4bf733791264f520a3255962e247fb\", \"width\": 1080, \"height\": 719}], \"variants\": {}, \"id\": \"eTVR_34U5GhEV5lKqHsXI2dFueje1gVzy7qI1KHooCc\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cejk3e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"badgordo\", \"num_crossposts\": 1, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cejk3e/sf_gate_reports_on_the_hong_kong_elderly_march/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://m.sfgate.com/news/world/article/Hong-Kong-elders-march-to-support-young-14101562.php\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563400873.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_2w0qnm0q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Journalist from Commerical Radio Hong Kong being beaten and repeatedly block by the police during protests.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cefynj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 77, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/LE9XtsM2hyU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"\\u3010\\u9644\\u8b66\\u54e1\\u963b\\u6493\\u7247\\u6bb5\\u3011\\u672c\\u53f0\\u8a18\\u8005\\u5c31\\u88ab\\u8b66\\u54e1\\u963b\\u6493\\u63a1\\u8a2a\\u7684\\u81ea\\u767d\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/LE9XtsM2hyU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"Hong Kong Toolbar\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/LE9XtsM2hyU/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/HongKongToolbar\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/LE9XtsM2hyU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cefynj\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 77, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/wBZdfs6jdzSNGpU_eBSz5NGAvO_eQendSAo34gaC9po.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563413341.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/d8gBr-ntYGFyT0U-cfpeo8GkKyJdS9pl_Cg5znGZRvM.jpg?auto=webp\\u0026s=282ec52be0245b63c412271a92f577e227f278eb\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/d8gBr-ntYGFyT0U-cfpeo8GkKyJdS9pl_Cg5znGZRvM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0536e0e3a71e06daa4c996c85f8407b2e2ceb922\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/d8gBr-ntYGFyT0U-cfpeo8GkKyJdS9pl_Cg5znGZRvM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a9c70a04875c9158ce4116083d74de778d654408\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/d8gBr-ntYGFyT0U-cfpeo8GkKyJdS9pl_Cg5znGZRvM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8d234e2c6f33c4f9738ef30461c26c92b21562d2\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"R4SKcoP1qu72_pf_Qscqb7wBigHUjHWpXcR-XUJSkpY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cefynj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ZWF0cHVzc3k\", \"num_crossposts\": 1, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cefynj/journalist_from_commerical_radio_hong_kong_being/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/LE9XtsM2hyU\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563384541.0, \"discussion_type\": null, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"\\u3010\\u9644\\u8b66\\u54e1\\u963b\\u6493\\u7247\\u6bb5\\u3011\\u672c\\u53f0\\u8a18\\u8005\\u5c31\\u88ab\\u8b66\\u54e1\\u963b\\u6493\\u63a1\\u8a2a\\u7684\\u81ea\\u767d\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/LE9XtsM2hyU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"Hong Kong Toolbar\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/LE9XtsM2hyU/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/HongKongToolbar\"}, \"type\": \"youtube.com\"}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"Damn this is art. \\n\\n[https://www.youtube.com/watch?v=ukhKS3aaHxE](https://www.youtube.com/watch?v=ukhKS3aaHxE)\", \"author_fullname\": \"t2_1n9so7vk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Just found this great rap on YouTube by rapper JB\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cefld6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563411671.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDamn this is art. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=ukhKS3aaHxE\\\"\\u003Ehttps://www.youtube.com/watch?v=ukhKS3aaHxE\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/10l7gCXEDGHQS5bpOuRfru7TbOmXTRUPtKFRN3onjpw.jpg?auto=webp\\u0026s=2cb466f41a01df66d09fbd2118575a4af0d6b433\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/10l7gCXEDGHQS5bpOuRfru7TbOmXTRUPtKFRN3onjpw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5c6578bee3f4cc3df7c6178cf1f50cc26ff2e417\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/10l7gCXEDGHQS5bpOuRfru7TbOmXTRUPtKFRN3onjpw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a8e3b8d2095861a4fe8523a1ae19942a11c37cbd\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/10l7gCXEDGHQS5bpOuRfru7TbOmXTRUPtKFRN3onjpw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6ca74600d11f600c7b8622d88bb992e1c082a227\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"lNsjohQ9GjKowoDbptWfZsONk0WKaui55vVmCH-dV6o\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cefld6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sparkling_Water_\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cefld6/just_found_this_great_rap_on_youtube_by_rapper_jb/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/cefld6/just_found_this_great_rap_on_youtube_by_rapper_jb/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563382871.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ndzg4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Police refused to let protestors leave Shatin area, 14/7\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cefixg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 25, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/iyBWmB8N8eM?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"20190714 \\u8b66\\u65b9\\u8207\\u6c99\\u7530\\u5340\\u8b70\\u54e1\\u4e92\\u76f8\\u5c0d\\u7f75\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/iyBWmB8N8eM?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"TMHK - Truth Media (Hong Kong)\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/iyBWmB8N8eM/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCPJGOTbtle2zjkziXLBkmHA\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/iyBWmB8N8eM?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cefixg\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 25, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ja0v3Ar12eaayGKPvBY6TR4I8DVMq1UIf9IhDSiU0RU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563411363.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/rsUbQRrFt1_GN747F_2A69X_VCpEDEX8SI_TpgrKEFU.jpg?auto=webp\\u0026s=d6864a0b5423923eee32b8bb9bfd90096529e614\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/rsUbQRrFt1_GN747F_2A69X_VCpEDEX8SI_TpgrKEFU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7e838d0e470a59542cd786bd8ada5a98a46b6015\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/rsUbQRrFt1_GN747F_2A69X_VCpEDEX8SI_TpgrKEFU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b2b323a0b7493959c9c2289dcd2227a91ca896c0\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/rsUbQRrFt1_GN747F_2A69X_VCpEDEX8SI_TpgrKEFU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=e93778127eaa55afdbb089cdb8f57626bd1794f2\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"WESxayZMQZbpKB7KoibyxbTBh5J3yXeB6nTNIuClwZM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cefixg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ticonderoga67\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cefixg/police_refused_to_let_protestors_leave_shatin/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=iyBWmB8N8eM\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563382563.0, \"discussion_type\": null, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"20190714 \\u8b66\\u65b9\\u8207\\u6c99\\u7530\\u5340\\u8b70\\u54e1\\u4e92\\u76f8\\u5c0d\\u7f75\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/iyBWmB8N8eM?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"TMHK - Truth Media (Hong Kong)\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/iyBWmB8N8eM/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCPJGOTbtle2zjkziXLBkmHA\"}, \"type\": \"youtube.com\"}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_16srh8o\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\\"Silent, but won't be silenced\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_cefaee\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 169, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 169, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/i0uXhbMkl9Iof6MOoW2A-EZAtYl1U76YRW1Cikdr44M.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563410281.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/wo9qf8xu5wa31.jpg?auto=webp\\u0026s=42026436cbd09e9148220dd3a977bf1e94e69e3e\", \"width\": 1598, \"height\": 1065}, \"resolutions\": [{\"url\": \"https://preview.redd.it/wo9qf8xu5wa31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=1bd6cbc8f267bb3e174ba3897a7b4fb9799e5d0e\", \"width\": 108, \"height\": 71}, {\"url\": \"https://preview.redd.it/wo9qf8xu5wa31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e4d84f8510cf4bc5b3490ad6fd415624b110c554\", \"width\": 216, \"height\": 143}, {\"url\": \"https://preview.redd.it/wo9qf8xu5wa31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=399977bc81dfc2a4b5990d6d3a836788b0286af5\", \"width\": 320, \"height\": 213}, {\"url\": \"https://preview.redd.it/wo9qf8xu5wa31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=24b2f149bb79a2677565d27be1e48cb5f2b40bcf\", \"width\": 640, \"height\": 426}, {\"url\": \"https://preview.redd.it/wo9qf8xu5wa31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=80839b0d280c81f0fa17b02455c78027f1c5280a\", \"width\": 960, \"height\": 639}, {\"url\": \"https://preview.redd.it/wo9qf8xu5wa31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c2273604fa22ba7379d25632c2fb6383bc5919e3\", \"width\": 1080, \"height\": 719}], \"variants\": {}, \"id\": \"9hC8yArU6neC_O7v80Br6Cqo-FM3myCKMAW8-5tLPFM\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cefaee\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"natzana\", \"num_crossposts\": 1, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cefaee/silent_but_wont_be_silenced/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/wo9qf8xu5wa31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563381481.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_hy57h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Did Hong Kong Police Abuse Protesters? What the Videos Show. New York Times\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cef8y1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 55, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/gHfWuUhrKQg?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"Did Hong Kong Police Abuse Protesters? What the Videos Show. | Visual Investigations\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/gHfWuUhrKQg?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"The New York Times\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/gHfWuUhrKQg/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/TheNewYorkTimes\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/gHfWuUhrKQg?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cef8y1\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 55, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/HbGkW-Coaew-STVVjG5m1sMpZ37lq2hOLuDagxe_gTk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563410105.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/f8f6U8Xkvw6bzm67RbmffuHVjTdHgn9XA8AdYO4lWlo.jpg?auto=webp\\u0026s=05b0cea897af1e6728555d25429790b423700247\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/f8f6U8Xkvw6bzm67RbmffuHVjTdHgn9XA8AdYO4lWlo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5c4dc1069d5702b4f4ba63255823827ac5c5543a\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/f8f6U8Xkvw6bzm67RbmffuHVjTdHgn9XA8AdYO4lWlo.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b9e0a9d547ee2d1c71c6286704c22e2b446b9831\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/f8f6U8Xkvw6bzm67RbmffuHVjTdHgn9XA8AdYO4lWlo.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7a88741fdc0863f38c92d88b6479343e1c0be497\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"jvb3EH2yAF4EgMb2_v2XWvNThUjlUyeB6cNKLiPqs5M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cef8y1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"R8a8\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cef8y1/did_hong_kong_police_abuse_protesters_what_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=gHfWuUhrKQg\\u0026frags=pl%2Cwn\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563381305.0, \"discussion_type\": null, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"Did Hong Kong Police Abuse Protesters? What the Videos Show. | Visual Investigations\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/gHfWuUhrKQg?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"The New York Times\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/gHfWuUhrKQg/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/TheNewYorkTimes\"}, \"type\": \"youtube.com\"}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ndzg4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Even TVB is making fun of police not showing their ID\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_cef7eo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 100, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/irro6u235wa31/DASH_720?source=fallback\", \"height\": 720, \"width\": 1280, \"scrubber_media_url\": \"https://v.redd.it/irro6u235wa31/DASH_96\", \"dash_url\": \"https://v.redd.it/irro6u235wa31/DASHPlaylist.mpd\", \"duration\": 33, \"hls_url\": \"https://v.redd.it/irro6u235wa31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 100, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/bOTpfAQe67XqTjlKIA_g7yaQ_9QO3zv29q2SrZwMAxg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563409914.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Gud19f5CJ--YGVWoRq6rLhPOlnsS4VPabTVEKIMN8F8.png?format=pjpg\\u0026auto=webp\\u0026s=1ed156da5e32c125415af7040ff701eb636c0781\", \"width\": 1280, \"height\": 720}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Gud19f5CJ--YGVWoRq6rLhPOlnsS4VPabTVEKIMN8F8.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=c75a0e41aeda2475afd29810ec053ec9e9227634\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/Gud19f5CJ--YGVWoRq6rLhPOlnsS4VPabTVEKIMN8F8.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=155fc29bfdf33d6660a769e6723b0d2d2e60ee62\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/Gud19f5CJ--YGVWoRq6rLhPOlnsS4VPabTVEKIMN8F8.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=201baa14bf8ee78629142b1be9a07bebba35dd7b\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/Gud19f5CJ--YGVWoRq6rLhPOlnsS4VPabTVEKIMN8F8.png?width=640\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=a6c8ea0cca1b941cb4219dfcc37646b6a8859081\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/Gud19f5CJ--YGVWoRq6rLhPOlnsS4VPabTVEKIMN8F8.png?width=960\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=9460f07ee1c87d0daf3f820106831518f2813c34\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/Gud19f5CJ--YGVWoRq6rLhPOlnsS4VPabTVEKIMN8F8.png?width=1080\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=094714976d45ae0d8f9f6f9e8cc84c892e839492\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"Ju2jikys1WBpclwf7Ka29Xioq8ucVYD62rgH5c0OpeY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cef7eo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ticonderoga67\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cef7eo/even_tvb_is_making_fun_of_police_not_showing/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://v.redd.it/irro6u235wa31\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563381114.0, \"discussion_type\": null, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/irro6u235wa31/DASH_720?source=fallback\", \"height\": 720, \"width\": 1280, \"scrubber_media_url\": \"https://v.redd.it/irro6u235wa31/DASH_96\", \"dash_url\": \"https://v.redd.it/irro6u235wa31/DASHPlaylist.mpd\", \"duration\": 33, \"hls_url\": \"https://v.redd.it/irro6u235wa31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ehrm1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The reasons behind subtle differences of reporting Anti-Extradition Law between CCTVB, I-Cable News, and Now TV News (\\u9999\\u6e2fTVB\\u3001\\u6709\\u7dda\\u65b0\\u805e\\u3001Now \\u96fb\\u8996\\u53f0\\u5831\\u9053\\u300c\\u53cd\\u9001\\u4e2d\\u300d\\u6297\\u8b70\\u7684\\u7d30\\u5fae\\u5dee\\u5225\\u80cc\\u5f8c)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_ceeqsy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 34, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 34, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/RhV2DDHd-MpZ7LvejbdqNwf_0EkRHaAyS_X2QzLhPes.jpg\", \"edited\": false, \"author_flair_css_class\": \"swedish-friend\", \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563407891.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"bbc.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/7z6j5RCVyhPNbncFQUipCQ-4MerhtNOtBMFZLREAOxE.jpg?auto=webp\\u0026s=eb9e2ec363e0d2976e8d461d12e94a44183f7be2\", \"width\": 1024, \"height\": 576}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/7z6j5RCVyhPNbncFQUipCQ-4MerhtNOtBMFZLREAOxE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=46029eef14f4e5ae9a24acf3dc0bcfc9d536151a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/7z6j5RCVyhPNbncFQUipCQ-4MerhtNOtBMFZLREAOxE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=23ec568bcfe8452465689844cdddf7c5b2580cb1\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/7z6j5RCVyhPNbncFQUipCQ-4MerhtNOtBMFZLREAOxE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b1c8861745bfc8e361ed8d7664ce5820bd2bb00c\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/7z6j5RCVyhPNbncFQUipCQ-4MerhtNOtBMFZLREAOxE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=730f0c72bde8f8f3a01af30dd911ca2d4b05193d\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/7z6j5RCVyhPNbncFQUipCQ-4MerhtNOtBMFZLREAOxE.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=37e0d79b0d1aa401c3e47f858d6b55291d14feeb\", \"width\": 960, \"height\": 540}], \"variants\": {}, \"id\": \"O_FyyybKMRDdFLK2DtQA5d7s705KVqp1cR8EL1Fhsfw\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"612 never forget\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceeqsy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"2015071\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/HongKong/comments/ceeqsy/the_reasons_behind_subtle_differences_of/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.bbc.com/zhongwen/trad/chinese-news-49001797\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563379091.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_20milhuc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"'No rioters, only a tyrannical regime': Thousands of Hong Kong seniors march in support of young extradition law protesters\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_ceep6b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 82, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 82, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/bNSCSpH_ZXlNuHvCx98vvTKmNL0rdFbYKzF0rYtwzLU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563407677.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"hongkongfp.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MwZcnmZkuowA-03QVuWqKZq9NdnQrGBMFdbAHuSBhDg.jpg?auto=webp\\u0026s=de1d994743067468693eb4ede06639254351b486\", \"width\": 1050, \"height\": 551}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MwZcnmZkuowA-03QVuWqKZq9NdnQrGBMFdbAHuSBhDg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0989ded7220bd580e0fbb78ce294ae625c8d1392\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/MwZcnmZkuowA-03QVuWqKZq9NdnQrGBMFdbAHuSBhDg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0148656f5c2bc54c70a355a7820989a08d729018\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/MwZcnmZkuowA-03QVuWqKZq9NdnQrGBMFdbAHuSBhDg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=60359d082db23add5273c69466de64f10dbef61d\", \"width\": 320, \"height\": 167}, {\"url\": \"https://external-preview.redd.it/MwZcnmZkuowA-03QVuWqKZq9NdnQrGBMFdbAHuSBhDg.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=765164c1822921d95501293172939a57c28d22e2\", \"width\": 640, \"height\": 335}, {\"url\": \"https://external-preview.redd.it/MwZcnmZkuowA-03QVuWqKZq9NdnQrGBMFdbAHuSBhDg.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=95371b8e2d356208922a47de34f581ea624da31e\", \"width\": 960, \"height\": 503}], \"variants\": {}, \"id\": \"jMzSP-p7mZY3JGCQsW4kUzwf29MA0m_EoySjqwwQZKQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceep6b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HKnational\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceep6b/no_rioters_only_a_tyrannical_regime_thousands_of/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.hongkongfp.com/2019/07/17/no-rioters-tyrannical-regime-thousands-hong-kong-seniors-march-support-young-extradition-law-protesters/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563378877.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ehrm1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Note: the 721 protest changed from gathering at Admiralty to a march starting from Victoria park to Supreme Court.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ceefpb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 32, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 32, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/N8RbXc7Mka-rZPDUv8S1GUJi-vwo_kklhE68DmLiH_U.jpg\", \"edited\": false, \"author_flair_css_class\": \"swedish-friend\", \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563406474.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/eim93bl8uva31.png?auto=webp\\u0026s=fe30242a32aeeeeca5f9d3bf946381e01033b2d5\", \"width\": 750, \"height\": 750}, \"resolutions\": [{\"url\": \"https://preview.redd.it/eim93bl8uva31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d6d955bf71c6293ba3c67f51cb16abd114e470d4\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/eim93bl8uva31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c947337338a097b028a782e197839d5acbcfb4d8\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/eim93bl8uva31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b868d135a07d427d6a8e83b1584d206fd1fd56dc\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/eim93bl8uva31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=6dacff0e0f917a084ebefc68b18969f2ecda499b\", \"width\": 640, \"height\": 640}], \"variants\": {}, \"id\": \"lpzKeRWKO9emOe9lhi7CjKs8S-UtHXwoPl9_pdGf2i0\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"612 never forget\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceefpb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"2015071\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/HongKong/comments/ceefpb/note_the_721_protest_changed_from_gathering_at/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/eim93bl8uva31.png\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563377674.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_g3nnt6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Workers are removing railings along Gloucester Road in Causeway Bay (Source: LIHKG)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 104, \"hide_score\": false, \"name\": \"t3_cednht\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/fthlMWAZzSuS3FwqAc3Sh9ZrCXSNkWy4gLxIM5XgWRU.jpg\", \"edited\": false, \"author_flair_css_class\": \"swedish-friend\", \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563402864.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/gc1upwcgjva31.png?auto=webp\\u0026s=c1e6fc13d815518162522c2f4faac45fecd34590\", \"width\": 540, \"height\": 404}, \"resolutions\": [{\"url\": \"https://preview.redd.it/gc1upwcgjva31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=cdbd143116d07ada125e242853bf0a37fe0f13d6\", \"width\": 108, \"height\": 80}, {\"url\": \"https://preview.redd.it/gc1upwcgjva31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a7e83ede96e455b99e317f7c39dffd044228432d\", \"width\": 216, \"height\": 161}, {\"url\": \"https://preview.redd.it/gc1upwcgjva31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=332738e03f105c18a6739fcf65be458455374b62\", \"width\": 320, \"height\": 239}], \"variants\": {}, \"id\": \"knh855Atx4EaiNCsxVIVU_C9K3DoTc90ti9GmOa-ReU\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\\u5929\\u4f51\\u6211\\u57ce\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cednht\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"phy361sm\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/HongKong/comments/cednht/workers_are_removing_railings_along_gloucester/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/gc1upwcgjva31.png\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563374064.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ndzg4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Aerial Lennon Wall in New Town Plaza\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cedcup\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 92, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 92, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/8fdM1iXQYB-uYhnbgCLWMflsNlK9iFlMlkcbrc_Kbkw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563401465.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/8y88pr32gva31.jpg?auto=webp\\u0026s=a1054e1c81610eb587709f2f6bef5b183fd9380b\", \"width\": 1040, \"height\": 1166}, \"resolutions\": [{\"url\": \"https://preview.redd.it/8y88pr32gva31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bf0d6b6a841be7154e4340b3555b410b947f690b\", \"width\": 108, \"height\": 121}, {\"url\": \"https://preview.redd.it/8y88pr32gva31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f3078f52b0ed1cca70574289cf2f1c5f62433830\", \"width\": 216, \"height\": 242}, {\"url\": \"https://preview.redd.it/8y88pr32gva31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=36d23d029142c658acccb051ebc51a7aa60060b7\", \"width\": 320, \"height\": 358}, {\"url\": \"https://preview.redd.it/8y88pr32gva31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=dab9ac041ba55e320640b56baff5966a7fdc8bfe\", \"width\": 640, \"height\": 717}, {\"url\": \"https://preview.redd.it/8y88pr32gva31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e644435dcefd37e00fe0cc13d9e4c912339195cc\", \"width\": 960, \"height\": 1076}], \"variants\": {}, \"id\": \"fkcxDngYFYSPKR87dv8Y00ycaffndSDhiB-fmbAjNCs\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cedcup\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ticonderoga67\", \"num_crossposts\": 1, \"num_comments\": 9, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cedcup/aerial_lennon_wall_in_new_town_plaza/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/8y88pr32gva31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563372665.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_g3wkr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Railings on Gloucester Road were removed\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 104, \"hide_score\": false, \"name\": \"t3_ced133\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/kCy37hLUL7S8RbWc3jBPxkCGIpmlh9tvvecd0HZt8Rg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563399859.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"na.cx\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/aneyNtoeN0J3OLG6RF4wJGuWa4SmcMgqhuXmlPhMS_A.png?auto=webp\\u0026s=a7988a9657c6ed29e116056b56e5f048995d3728\", \"width\": 1242, \"height\": 930}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/aneyNtoeN0J3OLG6RF4wJGuWa4SmcMgqhuXmlPhMS_A.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=70143d3eb0e615a9936d24a746d2d52ee00afeb8\", \"width\": 108, \"height\": 80}, {\"url\": \"https://external-preview.redd.it/aneyNtoeN0J3OLG6RF4wJGuWa4SmcMgqhuXmlPhMS_A.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5d6b2787b52d266562ad3af5ec03d63671cb2dec\", \"width\": 216, \"height\": 161}, {\"url\": \"https://external-preview.redd.it/aneyNtoeN0J3OLG6RF4wJGuWa4SmcMgqhuXmlPhMS_A.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4773d730e13449bd50ae97a7a7e7dea2351df150\", \"width\": 320, \"height\": 239}, {\"url\": \"https://external-preview.redd.it/aneyNtoeN0J3OLG6RF4wJGuWa4SmcMgqhuXmlPhMS_A.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=cddaed7412bc27e50c3949ba14193406b9639589\", \"width\": 640, \"height\": 479}, {\"url\": \"https://external-preview.redd.it/aneyNtoeN0J3OLG6RF4wJGuWa4SmcMgqhuXmlPhMS_A.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=786aa04b45f10c3e82575df42480e57a8c960062\", \"width\": 960, \"height\": 718}, {\"url\": \"https://external-preview.redd.it/aneyNtoeN0J3OLG6RF4wJGuWa4SmcMgqhuXmlPhMS_A.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c58af0636f82a3f79f798025518381e9dbaaf2de\", \"width\": 1080, \"height\": 808}], \"variants\": {}, \"id\": \"uixfC88ECwNm9zOzI8hVNN-zmi8vPou6Zk2ecrIMhYU\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ced133\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"joker_wcy\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ced133/railings_on_gloucester_road_were_removed/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://na.cx/i/9qV9ia1.png\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563371059.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_qw0f5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Apple files trademarks for Apple Card in the UK and elsewhere\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 70, \"hide_score\": false, \"name\": \"t3_cecsa4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/0bs8oR2QfEAjkMYH3aN7SUEjWqNKOEn59ADg5k3Hu8g.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563398591.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"9to5mac.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/DOHpsSbO2Ib1fjINb40JlqTq9FHqtLKu7aazWGHDK0E.jpg?auto=webp\\u0026s=da075c203e699e4ffe61b905beacfee2fe06761f\", \"width\": 1500, \"height\": 750}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/DOHpsSbO2Ib1fjINb40JlqTq9FHqtLKu7aazWGHDK0E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=11f14acd410c20d325f28b505843b5d10f5f1f51\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/DOHpsSbO2Ib1fjINb40JlqTq9FHqtLKu7aazWGHDK0E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3e730ebcbb14b95833fb16390ffa85c411828221\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/DOHpsSbO2Ib1fjINb40JlqTq9FHqtLKu7aazWGHDK0E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=456a1d765ceffea371b2f011b68424d6341934d0\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/DOHpsSbO2Ib1fjINb40JlqTq9FHqtLKu7aazWGHDK0E.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=008c36c5543d846618ac1608bb0fcae1c1f75470\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/DOHpsSbO2Ib1fjINb40JlqTq9FHqtLKu7aazWGHDK0E.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e77a5b221d3daf2675ff670d73340645924b9ccf\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/DOHpsSbO2Ib1fjINb40JlqTq9FHqtLKu7aazWGHDK0E.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=60396677a66ded3cd41c35125c68ba8d5f18c24e\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"uJC_su03v3Bks0ia6dsbmX6D83qGLzmnmaZRgXYGhUE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cecsa4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TechieWeirdo\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cecsa4/apple_files_trademarks_for_apple_card_in_the_uk/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://9to5mac.com/2019/07/17/apple-card-in-the-uk/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563369791.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_xg4zjr3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Time for a ~~crusade~~ Great Leap Forward\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cec4nx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 57, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 57, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/tHRK9zCn1UgGgK3bmX2D2AnRZzmY1Diq9ijBvRmM_Zs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563395006.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/nxb2rkxkwua31.png?auto=webp\\u0026s=4cc80b9dfff113388567217d2b9b29421f379f5c\", \"width\": 1933, \"height\": 2497}, \"resolutions\": [{\"url\": \"https://preview.redd.it/nxb2rkxkwua31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=26c612a22c451ae30dfdadf337d46dc5fb8033f3\", \"width\": 108, \"height\": 139}, {\"url\": \"https://preview.redd.it/nxb2rkxkwua31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=9f7ed54cfc4e075db1d9472bd34f4607b92bef11\", \"width\": 216, \"height\": 279}, {\"url\": \"https://preview.redd.it/nxb2rkxkwua31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=25c2441a129700dcdd357d3e38e4fe1ac8984af6\", \"width\": 320, \"height\": 413}, {\"url\": \"https://preview.redd.it/nxb2rkxkwua31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=6978c59ad094533791d61098674357b16211d1d7\", \"width\": 640, \"height\": 826}, {\"url\": \"https://preview.redd.it/nxb2rkxkwua31.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=ae90e629591002d739d2b3f9f732c77500098ae6\", \"width\": 960, \"height\": 1240}, {\"url\": \"https://preview.redd.it/nxb2rkxkwua31.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=35fab382be03a06fdf2999f8900bd008ae3e1965\", \"width\": 1080, \"height\": 1395}], \"variants\": {}, \"id\": \"4BPLU3ZOAKjhn_pNpi18YJnv0903KdWVDyvCrFx_CIQ\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cec4nx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kitsunedaisuki\", \"num_crossposts\": 1, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cec4nx/time_for_a_crusade_great_leap_forward/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/nxb2rkxkwua31.png\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563366206.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"Where can I buy Minoxidil foam in Hong Kong?\", \"author_fullname\": \"t2_12sxqd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Where to buy Minoxidil Foam in HK\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cec24p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563394629.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhere can I buy Minoxidil foam in Hong Kong?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cec24p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yolo24seven\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cec24p/where_to_buy_minoxidil_foam_in_hk/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/cec24p/where_to_buy_minoxidil_foam_in_hk/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563365829.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_142mxepc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Central 1 hr ago\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cebbcb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 375, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 375, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/BIk3ZcZESlRdi9NkjPFn7AhO88cbh5E8ylZ-TwDXol4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563390041.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/vrhtq5y3iua31.jpg?auto=webp\\u0026s=58fd701b5a305f3878784c50eeeeee0f00955345\", \"width\": 1200, \"height\": 1600}, \"resolutions\": [{\"url\": \"https://preview.redd.it/vrhtq5y3iua31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3c9102201adf1202e233a0cd00ee754ace5c7a50\", \"width\": 108, \"height\": 144}, {\"url\": \"https://preview.redd.it/vrhtq5y3iua31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=7e2929a9431ea5417da63990391883e856e80b5d\", \"width\": 216, \"height\": 288}, {\"url\": \"https://preview.redd.it/vrhtq5y3iua31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=0f4fa92d8381b2aecbf561fa1be9ee5ea40bb589\", \"width\": 320, \"height\": 426}, {\"url\": \"https://preview.redd.it/vrhtq5y3iua31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=31034d97e9525ebda60b40097c10e1c8811e3719\", \"width\": 640, \"height\": 853}, {\"url\": \"https://preview.redd.it/vrhtq5y3iua31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=22110e182d7baa25f535c4d74a5cd6755ea9b0b2\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://preview.redd.it/vrhtq5y3iua31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=de2ed21c7c0909c982bd8d1b3d1cf46673e8de23\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"mHDmzix0wkrXT27ckv_YGp9etjxIwwDL2bPQhn0QhoQ\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cebbcb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tradediscount\", \"num_crossposts\": 1, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cebbcb/central_1_hr_ago/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/vrhtq5y3iua31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563361241.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_g3nnt6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"Hundreds of Elderly HKers gathering for a pro-democracy \\u201cgrey-hair march\\u201d now, showing their support to teenagers against extradition bill (Photo: Twitter@EricCheungwc)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_ceb3wi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1676, \"total_awards_received\": 4, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1676, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ALJ6lS6mtynii-M4jPZQqCSoLtV8e9YNvCZWSosRUgo.jpg\", \"edited\": false, \"author_flair_css_class\": \"swedish-friend\", \"author_flair_richtext\": [], \"gildings\": {\"gid_1\": 3, \"gid_2\": 1}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563388595.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/mgg9jh4cbua31.png?auto=webp\\u0026s=01e4b6decc974cc7aef8e6025da49b1c460f49d4\", \"width\": 2048, \"height\": 1536}, \"resolutions\": [{\"url\": \"https://preview.redd.it/mgg9jh4cbua31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=29e6b5d812ec0cbc8473792d5e65039e693b085e\", \"width\": 108, \"height\": 81}, {\"url\": \"https://preview.redd.it/mgg9jh4cbua31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=165de63f2728b2d4d972a985d7cee7a972cea9bc\", \"width\": 216, \"height\": 162}, {\"url\": \"https://preview.redd.it/mgg9jh4cbua31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ec8b74aae3b7c51d6794675c8bda7801bebfdb58\", \"width\": 320, \"height\": 240}, {\"url\": \"https://preview.redd.it/mgg9jh4cbua31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=789d3af50345b6ca369bd7e32427473b3ad4492a\", \"width\": 640, \"height\": 480}, {\"url\": \"https://preview.redd.it/mgg9jh4cbua31.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=dd9822e6da1f491a253c4355c96063355e8882aa\", \"width\": 960, \"height\": 720}, {\"url\": \"https://preview.redd.it/mgg9jh4cbua31.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=11066220fe569aef4606e31a5511ae68fdb8096c\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"g3l4GtC6Cu5GpB2is5UfyBDVr-P4_IdNpR9Rpoc7ris\"}], \"enabled\": true}, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}, {\"is_enabled\": true, \"count\": 3, \"subreddit_id\": null, \"description\": \"Silver Award\", \"coin_reward\": 0, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/silver_512.png\", \"days_of_premium\": 0, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 100, \"id\": \"gid_1\", \"name\": \"Silver\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\\u5929\\u4f51\\u6211\\u57ce\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceb3wi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"phy361sm\", \"num_crossposts\": 3, \"num_comments\": 65, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/HongKong/comments/ceb3wi/hundreds_of_elderly_hkers_gathering_for_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/mgg9jh4cbua31.png\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563359795.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_1cicvnn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\\"I am having a good time in this extremely crowded place\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_ceb13o\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 28, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 28, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/S58mCENxMsZUbmRHA-nCVpVxnH-ir8-CSR_0u4OJkxk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"nottheonion\", \"selftext\": \"\", \"author_fullname\": \"t2_c0555\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A postcard mailed from Hong Kong in 1993 arrived in Illinois last week\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"Not oniony - Removed\"}], \"subreddit_name_prefixed\": \"r/nottheonion\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"ntonion\", \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_ce3m9f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 683, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Not oniony - Removed\", \"can_mod_post\": false, \"score\": 683, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/S58mCENxMsZUbmRHA-nCVpVxnH-ir8-CSR_0u4OJkxk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563342611.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"cnn.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?auto=webp\\u0026s=c70726a942a757020e4a3665771367da781d7ae5\", \"width\": 1100, \"height\": 619}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=486e91bb3565a7ed50f6433156fc44c8bf63f0c2\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=65eff1010fb394052812cfeaa1b01419873d6ed1\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=25163479dc22b243fa3bbff8922b3a05b0fcdeb0\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=349a0bc5d70ebeffaed6126734ef2b474b64b832\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=bc2a056a4b0e74906136510bd231b0d3b0f91899\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=43d4ca445cfb89972bdc175dbfe206da1abea320\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"7aFKUIh8z8YLwLg3m7KW9rYG1uLiXaPAYYlvQdxSgCA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"1fcf2ab6-3abf-11e4-8864-12313d167053\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qnts\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce3m9f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Miztorr\", \"num_crossposts\": 2, \"num_comments\": 44, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/nottheonion/comments/ce3m9f/a_postcard_mailed_from_hong_kong_in_1993_arrived/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.cnn.com/2019/07/16/us/illinois-postcard-mystery-trnd/index.html?ofs=fbia\", \"subreddit_subscribers\": 15472131, \"created_utc\": 1563313811.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1563388051.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"cnn.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?auto=webp\\u0026s=c70726a942a757020e4a3665771367da781d7ae5\", \"width\": 1100, \"height\": 619}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=486e91bb3565a7ed50f6433156fc44c8bf63f0c2\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=65eff1010fb394052812cfeaa1b01419873d6ed1\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=25163479dc22b243fa3bbff8922b3a05b0fcdeb0\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=349a0bc5d70ebeffaed6126734ef2b474b64b832\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=bc2a056a4b0e74906136510bd231b0d3b0f91899\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/sQEZUJ1yGxAoQiITJ6M_VlrhufHyc5GF33M1ThqO9jU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=43d4ca445cfb89972bdc175dbfe206da1abea320\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"7aFKUIh8z8YLwLg3m7KW9rYG1uLiXaPAYYlvQdxSgCA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceb13o\", \"is_robot_indexable\": true, \"stickied\": false, \"author\": \"uiharu-s\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_ce3m9f\", \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceb13o/i_am_having_a_good_time_in_this_extremely_crowded/\", \"parent_whitelist_status\": \"all_ads\", \"report_reasons\": null, \"url\": \"https://www.cnn.com/2019/07/16/us/illinois-postcard-mystery-trnd/index.html?ofs=fbia\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563359251.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"The recent protests seem to have put a bigger spotlight on how young millennials in HK are struggling with life in general. Whether it's unaffordable housing, low paying jobs, high cost of living etc, many seem to feel uncertain about their future...or even angry and hopeless .\\n\\nBut isn't the same thing happening all over major cities in the world? It feels like young people in HK are more negative in comparison to the US or other western countries. They might think life overseas must be better where in reality it might not be the case. And there would be discussions about which country to immigrate to if things get worse.\\n\\nLet's take US as an example, the average millennial living there can't afford houses either. They have huge student debts (or even credit card debt), car loan payments, low savings in their bank accounts, high taxes, etc. So even in a democratic country like the US, are young people over there really better off than young people in HK?\\n\\nI guess my argument here is that many millennials in general are struggling, not just HK. Given the current economic conditions, it's totally normal not to be able to afford a home (I mean who really can unless your parents are rich?). And there's no need for HKers to feel extra depressed just because they can't own a home. I think this mentality of \\\"oh my life is hopeless because I can't own a home\\\" is quite toxic to some degree. So it's not just you HKers, people living elsewhere can't afford them too!\", \"author_fullname\": \"t2_1tom4yik\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Are young people in HK worse off than millennials in North America?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceawry\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563387218.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe recent protests seem to have put a bigger spotlight on how young millennials in HK are struggling with life in general. Whether it\\u0026#39;s unaffordable housing, low paying jobs, high cost of living etc, many seem to feel uncertain about their future...or even angry and hopeless .\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut isn\\u0026#39;t the same thing happening all over major cities in the world? It feels like young people in HK are more negative in comparison to the US or other western countries. They might think life overseas must be better where in reality it might not be the case. And there would be discussions about which country to immigrate to if things get worse.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet\\u0026#39;s take US as an example, the average millennial living there can\\u0026#39;t afford houses either. They have huge student debts (or even credit card debt), car loan payments, low savings in their bank accounts, high taxes, etc. So even in a democratic country like the US, are young people over there really better off than young people in HK?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI guess my argument here is that many millennials in general are struggling, not just HK. Given the current economic conditions, it\\u0026#39;s totally normal not to be able to afford a home (I mean who really can unless your parents are rich?). And there\\u0026#39;s no need for HKers to feel extra depressed just because they can\\u0026#39;t own a home. I think this mentality of \\u0026quot;oh my life is hopeless because I can\\u0026#39;t own a home\\u0026quot; is quite toxic to some degree. So it\\u0026#39;s not just you HKers, people living elsewhere can\\u0026#39;t afford them too!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceawry\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thematchalatte\", \"num_crossposts\": 0, \"num_comments\": 29, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceawry/are_young_people_in_hk_worse_off_than_millennials/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/ceawry/are_young_people_in_hk_worse_off_than_millennials/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563358418.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"Just ordered some Carolina Reaper (amongst others) seeds and was wondering if anyone else on here had grown any? \\n\\nJust looking for tips...and for a gardening store!\", \"author_fullname\": \"t2_14nbm0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Has anyone grown hot peppers here?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceaqg7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563385981.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust ordered some Carolina Reaper (amongst others) seeds and was wondering if anyone else on here had grown any? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust looking for tips...and for a gardening store!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceaqg7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kura88\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceaqg7/has_anyone_grown_hot_peppers_here/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/ceaqg7/has_anyone_grown_hot_peppers_here/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563357181.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"Before everyone goes crazy, I'll state my own position regarding this issue. I am pro-democracy and the fact that Hong Kong should not change until the time is due(as per the Chinese-UK agreement). I do believe the extradition bill would erode the freedom and autonomy of Hong Kong. I do not agree with the outright rejection of China because it's obvious the relationship is necessary for Hong Kong to survive as it has. I'm genuinely curious how one expects Hong Kong to operate as a sovereign independent country.\\n\\nJust to point out some glaring issues:\\n\\n-Hong Kong is an island nation that owes almost all of its resources to imports from foreign countries.\\n\\n-Hong Kong does not have its own military branch.\\n\\n-Hong Kong itself does not do not produce goods but instead acts as a base of operation for many businesses and countries with an interest in the Chinese market.\", \"author_fullname\": \"t2_xobdx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can someone explain to me how one envisions the operation of an Independent Hong Kong?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceapru\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563385843.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBefore everyone goes crazy, I\\u0026#39;ll state my own position regarding this issue. I am pro-democracy and the fact that Hong Kong should not change until the time is due(as per the Chinese-UK agreement). I do believe the extradition bill would erode the freedom and autonomy of Hong Kong. I do not agree with the outright rejection of China because it\\u0026#39;s obvious the relationship is necessary for Hong Kong to survive as it has. I\\u0026#39;m genuinely curious how one expects Hong Kong to operate as a sovereign independent country.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust to point out some glaring issues:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-Hong Kong is an island nation that owes almost all of its resources to imports from foreign countries.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-Hong Kong does not have its own military branch.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-Hong Kong itself does not do not produce goods but instead acts as a base of operation for many businesses and countries with an interest in the Chinese market.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceapru\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"polarkumabear\", \"num_crossposts\": 0, \"num_comments\": 40, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ceapru/can_someone_explain_to_me_how_one_envisions_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/ceapru/can_someone_explain_to_me_how_one_envisions_the/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563357043.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_a1t2z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tribute to the Lennon Wall in the UK.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 104, \"hide_score\": false, \"name\": \"t3_ce9ox5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 147, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 147, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5wUIZXVBT925C-oS_S2CY-puV_QVMYNv8irSEUpDi6g.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563378018.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/286bnjxcita31.jpg?auto=webp\\u0026s=6a7b20af2bc4e8651338cfe2553d0c74564650eb\", \"width\": 3016, \"height\": 2250}, \"resolutions\": [{\"url\": \"https://preview.redd.it/286bnjxcita31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=30836579f398734b2e85fac6b894ac3a10b08036\", \"width\": 108, \"height\": 80}, {\"url\": \"https://preview.redd.it/286bnjxcita31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3a35df305c568cdb41a8b7002345f97e73130585\", \"width\": 216, \"height\": 161}, {\"url\": \"https://preview.redd.it/286bnjxcita31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4996655f58ab18461979ae4b2e21c5c1f97124a6\", \"width\": 320, \"height\": 238}, {\"url\": \"https://preview.redd.it/286bnjxcita31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=8301be70c825080138dc148601769c5c014a62ca\", \"width\": 640, \"height\": 477}, {\"url\": \"https://preview.redd.it/286bnjxcita31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=ffc7d789a7800c1c51dd0a4174e5b204ff3718bb\", \"width\": 960, \"height\": 716}, {\"url\": \"https://preview.redd.it/286bnjxcita31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=1f3b86730dd81464a982787a59ac70cbd5ce3948\", \"width\": 1080, \"height\": 805}], \"variants\": {}, \"id\": \"gHBxf_AwOoIWyIzDKWd4nH2e-ggmamHJJOTGgmUYdpw\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce9ox5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Trueogre\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce9ox5/tribute_to_the_lennon_wall_in_the_uk/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/286bnjxcita31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563349218.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ndzg4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"(translated) A timeline \\u0026 map of the Shatin protest by Apple Daily detailing the deployment \\u0026 kettling tactics by the HKPF which trapped protesters inside a shopping mall and led to chaos \\u0026 clashes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 113, \"hide_score\": false, \"name\": \"t3_ce9cqs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 43, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 43, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/8coLXbAEQpDlpL4s_zTSO14b787erwep9-RZ18jUHQs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563375551.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/d64xj6rtata31.jpg?auto=webp\\u0026s=e1b74c3f85b09046def4d6e41aee3beba29dcc6d\", \"width\": 1185, \"height\": 960}, \"resolutions\": [{\"url\": \"https://preview.redd.it/d64xj6rtata31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3b9f728919f02f82b4fb06e8d2af26981600a6e4\", \"width\": 108, \"height\": 87}, {\"url\": \"https://preview.redd.it/d64xj6rtata31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=17139d6667858c1d63d0fb1fa2090fa9d2014291\", \"width\": 216, \"height\": 174}, {\"url\": \"https://preview.redd.it/d64xj6rtata31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a44ac9354e6eb9a408ab91953b89450d687ff440\", \"width\": 320, \"height\": 259}, {\"url\": \"https://preview.redd.it/d64xj6rtata31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=8f6ff28136c7c2847f1b7d60c60f81138c8764f3\", \"width\": 640, \"height\": 518}, {\"url\": \"https://preview.redd.it/d64xj6rtata31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=540317a1b98c2cd3a0e323199d48ab4dd65f02b0\", \"width\": 960, \"height\": 777}, {\"url\": \"https://preview.redd.it/d64xj6rtata31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=340df7b14b0836017fa37ae580c9b29b58af4bf8\", \"width\": 1080, \"height\": 874}], \"variants\": {}, \"id\": \"t8L_bvynl0_5f7BImYqtd6GLXUXiHmW7iFKFLsLLooE\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce9cqs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ticonderoga67\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce9cqs/translated_a_timeline_map_of_the_shatin_protest/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/d64xj6rtata31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563346751.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_2cbiez0l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I foind the enyire set of sacred text in the book fair\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ce926h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 26, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 26, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/wIkzKaa7J3u-VEAvRVDWEKl2EX7e3GhC_acZrGZUeLI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563373463.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/jxtlu7bs4ta31.jpg?auto=webp\\u0026s=0191b1b9d01043bd62ee5a1d0f59ea03cc5bc17f\", \"width\": 3480, \"height\": 4640}, \"resolutions\": [{\"url\": \"https://preview.redd.it/jxtlu7bs4ta31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0369acb51821557457efabb1746c8d43b94b3d5e\", \"width\": 108, \"height\": 144}, {\"url\": \"https://preview.redd.it/jxtlu7bs4ta31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4a4bed376170b5527c048d6d62aa5db568751065\", \"width\": 216, \"height\": 288}, {\"url\": \"https://preview.redd.it/jxtlu7bs4ta31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3930b653d38eb4ca62030e35a1475f0c57d54b13\", \"width\": 320, \"height\": 426}, {\"url\": \"https://preview.redd.it/jxtlu7bs4ta31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=346f6acfca421425c616a5b49aa3cb1c6017582f\", \"width\": 640, \"height\": 853}, {\"url\": \"https://preview.redd.it/jxtlu7bs4ta31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e7ee6f4c1c6cc29329b8489131751c086174bff8\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://preview.redd.it/jxtlu7bs4ta31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=06bb452b08f02c1935800161672cafb97118389f\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"TAcLnpQNIwk8fPfYF2yDNOkD5_sj54qJuhxSWVva-PY\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce926h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CSIpiller-RBLX\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce926h/i_foind_the_enyire_set_of_sacred_text_in_the_book/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/jxtlu7bs4ta31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563344663.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"I'm just a kid and I'm bored\", \"author_fullname\": \"t2_2cbiez0l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone in book fair?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ce91np\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563373366.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m just a kid and I\\u0026#39;m bored\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce91np\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CSIpiller-RBLX\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce91np/anyone_in_book_fair/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/ce91np/anyone_in_book_fair/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563344566.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"What\\u2019s stirring up Hongkongers\\u2019 emotion NOW:\\nHow a shoping mall denies on leading the police to start an almost-killing spree.\\n \\nYES you hear me, on the 14th July, the protest against the anti-extradition bill and the 5 demands, namely,\\n1. A complete withdrawal of the extradition bill\\n2. Carry out investigations regarding to the police\\u2019s brutality and the inappropriate use of force\\n3. A sharp recall of the 6.12 \\u201criot\\u201d claim\\n4. Free and drop the charges of the arrested protesters\\n5. urge Carrie Lam to step down,\\ncontinued with the aim of striving for democracy.\\n \\nEverything went downhill when the advocates were ready to go home. Why did it have to do with New Town Plaza? Let me walk you through \\u201cthe massacre\\u201d attributed by New Town Plaza that is under Sun Hung Kai Properties.\\n \\nThat night when the protest almost came to an end, riot police advanced on advocates (which makes no sense cause at that time the protest was still warrant-proved), resulting an influx of protesters flooding into the plaza where it links to the railway station. But what had ushered in the violent clashes was NOT ONLY the police BUT ALSO THE STAFFS FROM THE PLAZA GUIDING THEIR WAY TO GET INSIDE. In this case, New Town Plaza was the major culprit of caging the protesters, consequently provided a chance for the police to beat the shit out of the unarmed protesters. As if this was not the worst, photos also show that citizens ranging from adults to kids had to walk through the chaos under limited protection from the police and the press.\\n \\nImagine your kid had no choice but to see how police and citizens fight, how the former ruthlessly intruding the community and making them feel unsafe. Is this a place we can call home anymore? Is police the one we can really count on?\\n \\nLater that night statements from New Town Plaza were released on their social media claiming that they didn\\u2019t reach out to cops to help nor ask their staffs to get the police inside. They insisted that the staffs were only there for facilitating the discipline and assist people inside the mall.\\n \\nYet, almost at the same period that night, photos posted by different press depicted a complete opposite side of the story on the internet and thus the plaza has been receiving backlashes from HongKongers since then as they lied to the public of what had happened.\\n \\nAs the matter started to boil up, yesterday on 15th July, hundreds of people, including the habitants living in the neighborhood went to New Town Plaza to ask for apologies and file complains. No senior staffs were there to give formal response to the public and later a statement was out addressing the same stories they proclaimed.\\n \\nToday, a photo of a cleaning staff ripping the complains off from walls and discarding them as rubbish has again fueled many Hongkongers.\\n \\nAll I\\u2019ve been wanted to say is that\\n\\nDon\\u2019t shop at New Town Plaza.\\n\\nDon\\u2019t trust Sun Hung Kai Properties.\\n\\nDon\\u2019t fool others and yourself when the truth is out there shouting out loud.\\n\\nAt last, don\\u2019t be a joke who thinks people are that stupid to believe in you.\\n\\n[Videos of staffs from New Town Plaza leading the police to get inside](https://m.facebook.com/groups/hkon9agroup/permalink/2939481456092899?sfns=mo)\\n\\n[photo of family passing through the mall01](https://scontent-hkg3-2.xx.fbcdn.net/v/t1.0-9/67281651_3175264169180850_8828217066889674752_n.png?_nc_cat=109\\u0026_nc_oc=AQmdJYcA6QSmdVSxamzjXIcm9_OXWD1LV1qlZno10MKP82GS7oCCM5xbDzUqm4z9jLs\\u0026_nc_ht=scontent-hkg3-2.xx\\u0026oh=61944188df7f9b3fd44bdc6c8e76a133\\u0026oe=5DB488EC)\\n\\n[New Town Plaza Facebook ](https://www.facebook.com/pg/newtownplaza/posts/?ref=page_internal)\", \"author_fullname\": \"t2_3xxbqplv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is stirring up Hongkongers\\u2019 emotion NOW\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ce90sv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563355408.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563373200.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat\\u2019s stirring up Hongkongers\\u2019 emotion NOW:\\nHow a shoping mall denies on leading the police to start an almost-killing spree.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYES you hear me, on the 14th July, the protest against the anti-extradition bill and the 5 demands, namely,\\n1. A complete withdrawal of the extradition bill\\n2. Carry out investigations regarding to the police\\u2019s brutality and the inappropriate use of force\\n3. A sharp recall of the 6.12 \\u201criot\\u201d claim\\n4. Free and drop the charges of the arrested protesters\\n5. urge Carrie Lam to step down,\\ncontinued with the aim of striving for democracy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEverything went downhill when the advocates were ready to go home. Why did it have to do with New Town Plaza? Let me walk you through \\u201cthe massacre\\u201d attributed by New Town Plaza that is under Sun Hung Kai Properties.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat night when the protest almost came to an end, riot police advanced on advocates (which makes no sense cause at that time the protest was still warrant-proved), resulting an influx of protesters flooding into the plaza where it links to the railway station. But what had ushered in the violent clashes was NOT ONLY the police BUT ALSO THE STAFFS FROM THE PLAZA GUIDING THEIR WAY TO GET INSIDE. In this case, New Town Plaza was the major culprit of caging the protesters, consequently provided a chance for the police to beat the shit out of the unarmed protesters. As if this was not the worst, photos also show that citizens ranging from adults to kids had to walk through the chaos under limited protection from the police and the press.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EImagine your kid had no choice but to see how police and citizens fight, how the former ruthlessly intruding the community and making them feel unsafe. Is this a place we can call home anymore? Is police the one we can really count on?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELater that night statements from New Town Plaza were released on their social media claiming that they didn\\u2019t reach out to cops to help nor ask their staffs to get the police inside. They insisted that the staffs were only there for facilitating the discipline and assist people inside the mall.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYet, almost at the same period that night, photos posted by different press depicted a complete opposite side of the story on the internet and thus the plaza has been receiving backlashes from HongKongers since then as they lied to the public of what had happened.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the matter started to boil up, yesterday on 15th July, hundreds of people, including the habitants living in the neighborhood went to New Town Plaza to ask for apologies and file complains. No senior staffs were there to give formal response to the public and later a statement was out addressing the same stories they proclaimed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EToday, a photo of a cleaning staff ripping the complains off from walls and discarding them as rubbish has again fueled many Hongkongers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll I\\u2019ve been wanted to say is that\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDon\\u2019t shop at New Town Plaza.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDon\\u2019t trust Sun Hung Kai Properties.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDon\\u2019t fool others and yourself when the truth is out there shouting out loud.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt last, don\\u2019t be a joke who thinks people are that stupid to believe in you.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://m.facebook.com/groups/hkon9agroup/permalink/2939481456092899?sfns=mo\\\"\\u003EVideos of staffs from New Town Plaza leading the police to get inside\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://scontent-hkg3-2.xx.fbcdn.net/v/t1.0-9/67281651_3175264169180850_8828217066889674752_n.png?_nc_cat=109\\u0026amp;_nc_oc=AQmdJYcA6QSmdVSxamzjXIcm9_OXWD1LV1qlZno10MKP82GS7oCCM5xbDzUqm4z9jLs\\u0026amp;_nc_ht=scontent-hkg3-2.xx\\u0026amp;oh=61944188df7f9b3fd44bdc6c8e76a133\\u0026amp;oe=5DB488EC\\\"\\u003Ephoto of family passing through the mall01\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.facebook.com/pg/newtownplaza/posts/?ref=page_internal\\\"\\u003ENew Town Plaza Facebook \\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/N4AteF_R3t5PUvdFSljZbXLRM-Qr0fT_RLo6J7npSI8.png?auto=webp\\u0026s=e2f5189e9084d5632e60ddfb73d929621fb1fbfd\", \"width\": 940, \"height\": 492}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/N4AteF_R3t5PUvdFSljZbXLRM-Qr0fT_RLo6J7npSI8.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7f4b29497950e1becb7123d11c327fb76b62ef09\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/N4AteF_R3t5PUvdFSljZbXLRM-Qr0fT_RLo6J7npSI8.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0298173973294eb8b073e1a92585bd4d42ed011c\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/N4AteF_R3t5PUvdFSljZbXLRM-Qr0fT_RLo6J7npSI8.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d280595abf848bc49cddd9bf0aea5c33e09d5987\", \"width\": 320, \"height\": 167}, {\"url\": \"https://external-preview.redd.it/N4AteF_R3t5PUvdFSljZbXLRM-Qr0fT_RLo6J7npSI8.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=0255d8a85591b8e4102ad5b8615d803a69d0b3b3\", \"width\": 640, \"height\": 334}], \"variants\": {}, \"id\": \"NLl2MZQe0BH3n8FtmfJHrbhKJAO4DV7gjiyb6KWgkh4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce90sv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pretty-brat\", \"num_crossposts\": 1, \"num_comments\": 58, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce90sv/what_is_stirring_up_hongkongers_emotion_now/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/ce90sv/what_is_stirring_up_hongkongers_emotion_now/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563344400.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://i.redd.it/3zh6xku85ta31.png\\n\\n\\\"\\u6211\\u5927\\u62b5\\u53c8\\u5f97\\u7f6a\\u5169\\u908a\\u4eba\\u4e86\\u3002\\u6c92\\u6240\\u8b02\\uff0c\\u6211\\u53cd\\u6b63\\u4e0d\\u6703\\u6295\\u8eab\\u653f\\u6cbb\\u3002\\u6700\\u5f8c\\u4e00\\u63d0\\u7684\\uff0c\\u662f\\u6211\\u8877\\u5fc3\\u6b3d\\u4f69\\u90a3\\u4f4d\\u4e0d\\u9867\\u81ea\\u5df1\\u3001\\u4ee5\\u8eab\\u9a45\\u4fdd\\u8b77\\u8b66\\u54e1\\u7684\\u8a18\\u8005\\u3002\\u4ed6\\u7576\\u665a\\u7684\\u8eab\\u4efd\\u662f\\u50b3\\u5a92\\uff0c\\u5927\\u53ef\\u7f6e\\u8eab\\u4e8b\\u5916\\u4efb\\u7531\\u8b66\\u54e1\\u88ab\\u6bc6\\uff0c\\u81ea\\u5df1\\u7ad9\\u5728\\u5074\\u65c1\\u60f3\\u60f3\\u600e\\u6a23\\u62cd\\u651d\\u5c31\\u53ef\\u4ee5\\u4e86\\u3002\\u4f46\\u5728\\u5343\\u921e\\u4e00\\u9aee\\u9593\\uff0c\\u4ed6\\u6beb\\u4e0d\\u7336\\u8c6b\\u7684\\u9078\\u64c7\\u300c\\u4eba\\u9053\\u300d\\u3002\\\"\\n\\n[https://thestandnews.com/politics/%E8%AD%A6%E6%96%B9%E9%80%B2%E9%80%80%E5%A4%B1%E6%93%9A-%E6%94%BF%E5%BA%9C%E6%8E%A9%E8%80%B3%E7%9B%9C%E9%88%B4/](https://thestandnews.com/politics/%E8%AD%A6%E6%96%B9%E9%80%B2%E9%80%80%E5%A4%B1%E6%93%9A-%E6%94%BF%E5%BA%9C%E6%8E%A9%E8%80%B3%E7%9B%9C%E9%88%B4/)\\n\\nPlease tell me why it didn't happen the other way around?\\n\\nWhen Police is beating activist, Has any reporter save them ? try to save them?\\n\\nShall reporter save them? Please explain, I can't understand the logic!\", \"author_fullname\": \"t2_ramcd39\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"re : \\u8b66\\u65b9\\u9032\\u9000\\u5931\\u64da\\uff0c\\u653f\\u5e9c\\u63a9\\u8033\\u76dc\\u9234, \\u300c\\u4eba\\u9053\\u300d?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"media_metadata\": {\"3zh6xku85ta31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 799, \"x\": 1200, \"u\": \"https://i.redd.it/3zh6xku85ta31.png\"}, \"m\": \"image/png\", \"id\": \"3zh6xku85ta31\"}}, \"name\": \"t3_ce90rw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/JEPC2xY7Lj0VV1ITRBCTfjPkXM3-I43uM1qHC9ymVTk.jpg\", \"edited\": 1563344811.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563373194.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": true, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/3zh6xku85ta31.png\\\"\\u003Ehttps://i.redd.it/3zh6xku85ta31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u6211\\u5927\\u62b5\\u53c8\\u5f97\\u7f6a\\u5169\\u908a\\u4eba\\u4e86\\u3002\\u6c92\\u6240\\u8b02\\uff0c\\u6211\\u53cd\\u6b63\\u4e0d\\u6703\\u6295\\u8eab\\u653f\\u6cbb\\u3002\\u6700\\u5f8c\\u4e00\\u63d0\\u7684\\uff0c\\u662f\\u6211\\u8877\\u5fc3\\u6b3d\\u4f69\\u90a3\\u4f4d\\u4e0d\\u9867\\u81ea\\u5df1\\u3001\\u4ee5\\u8eab\\u9a45\\u4fdd\\u8b77\\u8b66\\u54e1\\u7684\\u8a18\\u8005\\u3002\\u4ed6\\u7576\\u665a\\u7684\\u8eab\\u4efd\\u662f\\u50b3\\u5a92\\uff0c\\u5927\\u53ef\\u7f6e\\u8eab\\u4e8b\\u5916\\u4efb\\u7531\\u8b66\\u54e1\\u88ab\\u6bc6\\uff0c\\u81ea\\u5df1\\u7ad9\\u5728\\u5074\\u65c1\\u60f3\\u60f3\\u600e\\u6a23\\u62cd\\u651d\\u5c31\\u53ef\\u4ee5\\u4e86\\u3002\\u4f46\\u5728\\u5343\\u921e\\u4e00\\u9aee\\u9593\\uff0c\\u4ed6\\u6beb\\u4e0d\\u7336\\u8c6b\\u7684\\u9078\\u64c7\\u300c\\u4eba\\u9053\\u300d\\u3002\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://thestandnews.com/politics/%E8%AD%A6%E6%96%B9%E9%80%B2%E9%80%80%E5%A4%B1%E6%93%9A-%E6%94%BF%E5%BA%9C%E6%8E%A9%E8%80%B3%E7%9B%9C%E9%88%B4/\\\"\\u003Ehttps://thestandnews.com/politics/%E8%AD%A6%E6%96%B9%E9%80%B2%E9%80%80%E5%A4%B1%E6%93%9A-%E6%94%BF%E5%BA%9C%E6%8E%A9%E8%80%B3%E7%9B%9C%E9%88%B4/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease tell me why it didn\\u0026#39;t happen the other way around?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen Police is beating activist, Has any reporter save them ? try to save them?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShall reporter save them? Please explain, I can\\u0026#39;t understand the logic!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce90rw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WildFish01\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce90rw/re_\\u8b66\\u65b9\\u9032\\u9000\\u5931\\u64da\\u653f\\u5e9c\\u63a9\\u8033\\u76dc\\u9234_\\u4eba\\u9053/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/ce90rw/re_\\u8b66\\u65b9\\u9032\\u9000\\u5931\\u64da\\u653f\\u5e9c\\u63a9\\u8033\\u76dc\\u9234_\\u4eba\\u9053/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563344394.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_zm0rskw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Only in HK\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ce8xbs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 522, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 522, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/GZnSQGrsVOGahaPFxFb66NaoA2tzDpTTxtiXhOkQ_Qg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563372540.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/wa1t2m522ta31.jpg?auto=webp\\u0026s=d6af0900fa8d9787098cf37cbc3923b33106c048\", \"width\": 3024, \"height\": 4032}, \"resolutions\": [{\"url\": \"https://preview.redd.it/wa1t2m522ta31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=465ad7e77e450f295e7e20a7f9fca78bf9ecb79f\", \"width\": 108, \"height\": 144}, {\"url\": \"https://preview.redd.it/wa1t2m522ta31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a82331f8658409e4e91e81b02af8ba49f0caa876\", \"width\": 216, \"height\": 288}, {\"url\": \"https://preview.redd.it/wa1t2m522ta31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=47cc46196d8b7f375fddc13ec4f1fc70c6431e4f\", \"width\": 320, \"height\": 426}, {\"url\": \"https://preview.redd.it/wa1t2m522ta31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=999d91b509e192bd6ab576dc06ba592c9ffada05\", \"width\": 640, \"height\": 853}, {\"url\": \"https://preview.redd.it/wa1t2m522ta31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=59792e4b9971f3285931cd7f3cc6dacfd55cb5ae\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://preview.redd.it/wa1t2m522ta31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=3831a78873380fef1c9899b69c3c1601b8547c34\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"rtz_pzcElKGWd9xQyQLo974DFhrvPuo-11JKITI3Aw0\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce8xbs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bbgow\", \"num_crossposts\": 1, \"num_comments\": 76, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce8xbs/only_in_hk/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/wa1t2m522ta31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563343740.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_2rzxcyh7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Explanation on whats happenening right now(funny)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ce8vcd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/y5t3488u0ta31/DASH_360?source=fallback\", \"height\": 360, \"width\": 298, \"scrubber_media_url\": \"https://v.redd.it/y5t3488u0ta31/DASH_96\", \"dash_url\": \"https://v.redd.it/y5t3488u0ta31/DASHPlaylist.mpd\", \"duration\": 201, \"hls_url\": \"https://v.redd.it/y5t3488u0ta31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Y2zOCHAhBXu9uXCEXHA-m8LJJQ0GwpByrWjInCQQlYk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563372167.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/YPUCzJsN3z_z7ArrJDMCJvHKq2g4xKCiDHEU3HvfGHw.png?format=pjpg\\u0026auto=webp\\u0026s=b1f98d2b7c45163960e0e2b8771bf374f1375c43\", \"width\": 332, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/YPUCzJsN3z_z7ArrJDMCJvHKq2g4xKCiDHEU3HvfGHw.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=fee47ffa31293dffc44b37af3e2820402d99e4c0\", \"width\": 108, \"height\": 130}, {\"url\": \"https://external-preview.redd.it/YPUCzJsN3z_z7ArrJDMCJvHKq2g4xKCiDHEU3HvfGHw.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=ae18b78a1fde369597bac17542046d5292645288\", \"width\": 216, \"height\": 260}, {\"url\": \"https://external-preview.redd.it/YPUCzJsN3z_z7ArrJDMCJvHKq2g4xKCiDHEU3HvfGHw.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=a0218540d7ec2264ead856a579b59f70b218fce9\", \"width\": 320, \"height\": 385}], \"variants\": {}, \"id\": \"5kLSGF41oMdpgjUEqRhoflp06IWEd8nf5BjlBm1SvIU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce8vcd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_Forgot_name_\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce8vcd/explanation_on_whats_happenening_right_nowfunny/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://v.redd.it/y5t3488u0ta31\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563343367.0, \"discussion_type\": null, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/y5t3488u0ta31/DASH_360?source=fallback\", \"height\": 360, \"width\": 298, \"scrubber_media_url\": \"https://v.redd.it/y5t3488u0ta31/DASH_96\", \"dash_url\": \"https://v.redd.it/y5t3488u0ta31/DASHPlaylist.mpd\", \"duration\": 201, \"hls_url\": \"https://v.redd.it/y5t3488u0ta31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_2r79q748\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"hong-kong-police-anger-has-reached-boiling-point\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_ce8gv8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/s1mKgYUBISqxLTpeCAzHESdCSXtobVOcfb_RAOiQLfQ.jpg\", \"edited\": false, \"author_flair_css_class\": \"swedish-friend\", \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563369461.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"scmp.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/seWhrTgzyv1uUEoBbuMo_CU8cmGQSVUwcTKDWLigvH8.jpg?auto=webp\\u0026s=c7d90e6c2cf1910cc5a8b2093a5497fe06ae92b1\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/seWhrTgzyv1uUEoBbuMo_CU8cmGQSVUwcTKDWLigvH8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=10c556147384ab5b17ee3181e3fa8012d98b87d0\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/seWhrTgzyv1uUEoBbuMo_CU8cmGQSVUwcTKDWLigvH8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=85b83f0ea2a5d998e2aec9a8c8f69cf9d64cdc08\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/seWhrTgzyv1uUEoBbuMo_CU8cmGQSVUwcTKDWLigvH8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9494422cd251b0b61014c6a8e6fa8d255056bcfe\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/seWhrTgzyv1uUEoBbuMo_CU8cmGQSVUwcTKDWLigvH8.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=4e39dc122c9ddbdcf0cfa5682c6cf716bf57c2aa\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/seWhrTgzyv1uUEoBbuMo_CU8cmGQSVUwcTKDWLigvH8.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=a7123d8db93b81e518900cdf38e4b0f0ce6a0a13\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/seWhrTgzyv1uUEoBbuMo_CU8cmGQSVUwcTKDWLigvH8.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e01bed8cd1c53ca2f2ddf3b0a6b6bba9407bd791\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"eoioxrjNQZhmgQu8cCLfBre8Qtkv6eddDsAFO3l37SI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Freedom-hi!\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce8gv8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"On9On9Laowai\", \"num_crossposts\": 1, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/HongKong/comments/ce8gv8/hongkongpoliceangerhasreachedboilingpoint/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.scmp.com/news/hong-kong/law-and-crime/article/3018890/hong-kong-police-anger-has-reached-boiling-point-after\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563340661.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_36ry0fb6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Saw it on r/dankmemes credit to u/Abruptsystem\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ce7srn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 42, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 42, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/oYBUxxrQbIhFTjjRHsNnVPArkbEMPu2VytJPZZe4urw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"HistoryMemes\", \"selftext\": \"\", \"author_fullname\": \"t2_2k2q8q2b\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Saw it on r/dankmemes credit to u/Abruptsystem\", \"link_flair_richtext\": [{\"e\": \"text\", \"t\": \"REPOST\"}], \"subreddit_name_prefixed\": \"r/HistoryMemes\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"000000\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ce0b40\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2805, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"REPOST\", \"can_mod_post\": false, \"score\": 2805, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/oYBUxxrQbIhFTjjRHsNnVPArkbEMPu2VytJPZZe4urw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563327606.0, \"link_flair_type\": \"richtext\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?auto=webp\\u0026s=607085a07f32ac5835bd4d413ddeb57c3fedd72e\", \"width\": 1242, \"height\": 2117}, \"resolutions\": [{\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c44046488bc3786c8bc65e6d8f19318aceb2a8ae\", \"width\": 108, \"height\": 184}, {\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3bbb079b2b3069729d400ff837942a2faf734374\", \"width\": 216, \"height\": 368}, {\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8cebeb03e72af6af4247b58087cee2c34468b74e\", \"width\": 320, \"height\": 545}, {\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5d0c0a10ad174eba8e528eb508d1f8ca6ca6503d\", \"width\": 640, \"height\": 1090}, {\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e572dcbfccfe111c2274f781ad584667d6b96e59\", \"width\": 960, \"height\": 1636}, {\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c195f0cb0fbc9f6969633ec8e877c0ab1f9349bf\", \"width\": 1080, \"height\": 1840}], \"variants\": {}, \"id\": \"PoMq1i1O5xKw-xfL0ehfrar2al2iWf51nnHLJc9cIi4\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"4846a56a-5389-11e7-ad4b-0ee565e17c1a\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2v2cd\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#ffd635\", \"id\": \"ce0b40\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eplalrikot\", \"num_crossposts\": 1, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HistoryMemes/comments/ce0b40/saw_it_on_rdankmemes_credit_to_uabruptsystem/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/kdlb44kgcpa31.jpg\", \"subreddit_subscribers\": 888847, \"created_utc\": 1563298806.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1563365169.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?auto=webp\\u0026s=607085a07f32ac5835bd4d413ddeb57c3fedd72e\", \"width\": 1242, \"height\": 2117}, \"resolutions\": [{\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c44046488bc3786c8bc65e6d8f19318aceb2a8ae\", \"width\": 108, \"height\": 184}, {\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3bbb079b2b3069729d400ff837942a2faf734374\", \"width\": 216, \"height\": 368}, {\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8cebeb03e72af6af4247b58087cee2c34468b74e\", \"width\": 320, \"height\": 545}, {\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5d0c0a10ad174eba8e528eb508d1f8ca6ca6503d\", \"width\": 640, \"height\": 1090}, {\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e572dcbfccfe111c2274f781ad584667d6b96e59\", \"width\": 960, \"height\": 1636}, {\"url\": \"https://preview.redd.it/kdlb44kgcpa31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c195f0cb0fbc9f6969633ec8e877c0ab1f9349bf\", \"width\": 1080, \"height\": 1840}], \"variants\": {}, \"id\": \"PoMq1i1O5xKw-xfL0ehfrar2al2iWf51nnHLJc9cIi4\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce7srn\", \"is_robot_indexable\": true, \"stickied\": false, \"author\": \"evilofignorance\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_ce0b40\", \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce7srn/saw_it_on_rdankmemes_credit_to_uabruptsystem/\", \"parent_whitelist_status\": \"all_ads\", \"report_reasons\": null, \"url\": \"https://i.redd.it/kdlb44kgcpa31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563336369.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"[https://www.youtube.com/watch?v=imjZ7aHZRuY\\u0026list=RDimjZ7aHZRuY\\u0026loop=0](https://www.youtube.com/watch?v=imjZ7aHZRuY\\u0026list=RDimjZ7aHZRuY\\u0026loop=0)\\n\\n\\u0026#x200B;\\n\\nVocal\\uff1aClaudia Koh \\u8a31\\u6771\\u6674\\n\\nLyrics\\uff1aSingtosay\\n\\nOrignal\\uff1aSpeechless by Naomi Scott\\n\\n\\u0026#x200B;\\n\\n\\\\#antiELAB #Savehk #Speechless #Aladdin #Naomi Scott\", \"author_fullname\": \"t2_v8klr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\u300a\\u865b\\u4f5c\\u7121\\u8072\\u300bCantonese Cover of Aladdin's Speechless\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ce7k8j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563335130.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563363717.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=imjZ7aHZRuY\\u0026amp;list=RDimjZ7aHZRuY\\u0026amp;loop=0\\\"\\u003Ehttps://www.youtube.com/watch?v=imjZ7aHZRuY\\u0026amp;list=RDimjZ7aHZRuY\\u0026amp;loop=0\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVocal\\uff1aClaudia Koh \\u8a31\\u6771\\u6674\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELyrics\\uff1aSingtosay\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrignal\\uff1aSpeechless by Naomi Scott\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#antiELAB #Savehk #Speechless #Aladdin #Naomi Scott\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/3OVQpkH2XD2Be3Y1gJGyeNKEFfiSr-YVhmDykmX6cvg.jpg?auto=webp\\u0026s=84c6dcf7e179da2a5f5617f7172774386d3712f1\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/3OVQpkH2XD2Be3Y1gJGyeNKEFfiSr-YVhmDykmX6cvg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e4252096bed42ef1021411f9aa5b7e2cca7cd863\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/3OVQpkH2XD2Be3Y1gJGyeNKEFfiSr-YVhmDykmX6cvg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4e293ed50e50b49e740f9a4ecd9dbfdebcb8e5ce\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/3OVQpkH2XD2Be3Y1gJGyeNKEFfiSr-YVhmDykmX6cvg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=af2fb27fff12c8cd4c370d09803ac420bd198628\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"5LZOcokxu2kc_WDlNM4cgCYLm8pySwGSVffcIrcFzF8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce7k8j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"danielhtpang\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce7k8j/\\u865b\\u4f5c\\u7121\\u8072cantonese_cover_of_aladdins_speechless/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/ce7k8j/\\u865b\\u4f5c\\u7121\\u8072cantonese_cover_of_aladdins_speechless/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563334917.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_11gprl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How many protesters took to the streets on July 1?: Reuters measures the torrent of marchers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_ce7g2i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/OouhTfaJ7PG5cLgcXm2O7l18vKFu7A-7vuoA53NsSyk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563363041.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"graphics.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ekyxqhSbxDvjP0_S3FutaBIBSL-TazOgjsYzdMrQKmE.jpg?auto=webp\\u0026s=bf13002f2adc4e3c71a86a26bcbeab44bc25c95c\", \"width\": 1280, \"height\": 720}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ekyxqhSbxDvjP0_S3FutaBIBSL-TazOgjsYzdMrQKmE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2154d0ed52d9b5696e111c48c098e77250893180\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/ekyxqhSbxDvjP0_S3FutaBIBSL-TazOgjsYzdMrQKmE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=89bb6bc1595339042cc8b70a40ff0cdfe8c90aba\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/ekyxqhSbxDvjP0_S3FutaBIBSL-TazOgjsYzdMrQKmE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=21339b48e24096fb57014281b8a62cf45e3e045b\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/ekyxqhSbxDvjP0_S3FutaBIBSL-TazOgjsYzdMrQKmE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=e650f7d88cd833ec2e9e32dc0ec3517ff35ec66d\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/ekyxqhSbxDvjP0_S3FutaBIBSL-TazOgjsYzdMrQKmE.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e6c09b1fe29269481daf3b15672e3ba5c9c89efa\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/ekyxqhSbxDvjP0_S3FutaBIBSL-TazOgjsYzdMrQKmE.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b0784e8c46c97fa50cccf35e8493242c4356f021\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"8iAamYjyM18HEhMqAL9gnLS-oQIarFCzT3Kze-vAO84\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce7g2i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hugosince1999\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce7g2i/how_many_protesters_took_to_the_streets_on_july_1/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://graphics.reuters.com/HONGKONG-EXTRADITION-CROWDSIZE/0100B05W0BE/index.html\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563334241.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"I'll ask again this time with my opinion omitted. \\n\\nI am travelling with my friend and his family to Hong Kong. We are going to stop in HK for 2.5 days en route to Tokyo from Sydney. I know it is last minute, but are there areas I should avoid this weekend. As I definitely don't want their two days to be disrupted. Are there any sightseeing spots would you recommend away from the crowd? Will Central, CWB and TST be affected? What is the chance MTR will be affected too?\", \"author_fullname\": \"t2_10j08i\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Where to visit this weekend\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ce7ccp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563362432.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ll ask again this time with my opinion omitted. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am travelling with my friend and his family to Hong Kong. We are going to stop in HK for 2.5 days en route to Tokyo from Sydney. I know it is last minute, but are there areas I should avoid this weekend. As I definitely don\\u0026#39;t want their two days to be disrupted. Are there any sightseeing spots would you recommend away from the crowd? Will Central, CWB and TST be affected? What is the chance MTR will be affected too?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce7ccp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tsukiyon\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce7ccp/where_to_visit_this_weekend/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/ce7ccp/where_to_visit_this_weekend/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563333632.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_5vdzj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TVB news anchor Liz Kam Ying (\\u91d1\\u76c8) hits back on 'biased' reports\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ce6r4d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/wEp02hE6ZadZrZak7rcTDowsgnrSX4kuQwXijrHZPSI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563358991.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"thestandard.com.hk\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/6q5NmHfZkACmeflJ4uLrsIiChkEC4B5eJQQhTsWu12I.jpg?auto=webp\\u0026s=909e210b7da67f88e4d7523f155d798c5c1d0edf\", \"width\": 1000, \"height\": 1498}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/6q5NmHfZkACmeflJ4uLrsIiChkEC4B5eJQQhTsWu12I.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d00498c61190a9268c3c4b6f06f25b4da44fa06f\", \"width\": 108, \"height\": 161}, {\"url\": \"https://external-preview.redd.it/6q5NmHfZkACmeflJ4uLrsIiChkEC4B5eJQQhTsWu12I.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=becb77112088374e2f1f28ec744f088f7b78bece\", \"width\": 216, \"height\": 323}, {\"url\": \"https://external-preview.redd.it/6q5NmHfZkACmeflJ4uLrsIiChkEC4B5eJQQhTsWu12I.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f8c2b423120c5e0eb70fc10bb746012fbc2de995\", \"width\": 320, \"height\": 479}, {\"url\": \"https://external-preview.redd.it/6q5NmHfZkACmeflJ4uLrsIiChkEC4B5eJQQhTsWu12I.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=ed6f53151c922c6153d59a2e6a43ffcdbf6ee0ec\", \"width\": 640, \"height\": 958}, {\"url\": \"https://external-preview.redd.it/6q5NmHfZkACmeflJ4uLrsIiChkEC4B5eJQQhTsWu12I.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=d61c2e2357cbbb4b436571f719b9f34877e2ac18\", \"width\": 960, \"height\": 1438}], \"variants\": {}, \"id\": \"gp31-Rh5SbBr5XQfz3E_gC8BtVvy8azmwAKDOnH1JN8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce6r4d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"familiar_ground\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce6r4d/tvb_news_anchor_liz_kam_ying_\\u91d1\\u76c8_hits_back_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://www.thestandard.com.hk/section-news.php?id=209577\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563330191.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_b5t2s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"An Inquiry Into Hong Kong - The Traveling Dukes' Time Travel Mystery Hour\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_ce5zct\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/videoseries?list=PLZ0juZ-78poCTmASfRMqmRmI3zFr-Y1Js\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Time Travel Mystery Hour- Hong Kong, Part 1.\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/videoseries?list=PLZ0juZ-78poCTmASfRMqmRmI3zFr-Y1Js\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"The Traveling Dukes\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/f0CC9xm2HGQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UC67RoLYeiwTlKb8YUFsKpuQ\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/videoseries?list=PLZ0juZ-78poCTmASfRMqmRmI3zFr-Y1Js\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/ce5zct\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/JKeZWDZ2iw4tPHVrZ9GIamF3XsTqWOY8Txw6936CDRU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563354703.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/cg5014lW1TO2OtbrmaFcsq1henErO36iFHcSH3LZG0c.jpg?auto=webp\\u0026s=065140aedcf59947f1b70b0eeb2a79c0895f4ebe\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cg5014lW1TO2OtbrmaFcsq1henErO36iFHcSH3LZG0c.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0868cce5018dd8fb1c540f0f403847c21acbca33\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/cg5014lW1TO2OtbrmaFcsq1henErO36iFHcSH3LZG0c.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=949c46f6af3aec2474270b27323fe858d281fc6e\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/cg5014lW1TO2OtbrmaFcsq1henErO36iFHcSH3LZG0c.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6407df3716e4196a40208f035c13f23fb836aa19\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"i7c4KZl7540jnxBWjfwNH8UyS-NmPcEuddkcAt2ZoZ4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce5zct\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bongoshaftsburry\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce5zct/an_inquiry_into_hong_kong_the_traveling_dukes/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=f0CC9xm2HGQ\\u0026list=PLZ0juZ-78poCTmASfRMqmRmI3zFr-Y1Js\\u0026index=2\\u0026t=72s\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563325903.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Time Travel Mystery Hour- Hong Kong, Part 1.\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/videoseries?list=PLZ0juZ-78poCTmASfRMqmRmI3zFr-Y1Js\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"The Traveling Dukes\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/f0CC9xm2HGQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UC67RoLYeiwTlKb8YUFsKpuQ\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"Just a reminder to diversify your sources of news. Publishers often have an intent to sway public opinions. A common tactic is to omit key facts to create a narrative.\\n\\n\\u0026#x200B;\\n\\nChina is notable for creating fake news, for example, China Daily. SCMP is currently owned by the Alibaba group, and their content will generally back China.\\n\\n\\u0026#x200B;\\n\\nHere is an example: [https://www.scmp.com/news/hong-kong/law-and-crime/article/3018831/hong-kong-protester-appears-court-accused-biting](https://www.scmp.com/news/hong-kong/law-and-crime/article/3018831/hong-kong-protester-appears-court-accused-biting) \\n\\nThe article makes no mention of the fact that the police officer attempted to take his eye out. Now the readers who have not seen the video are more likely to side with the police.\\n\\n\\u0026#x200B;\\n\\nPlease use a variety of news sources and be ware of the publishers' intent. There is propaganda on both sides of this conflict.\", \"author_fullname\": \"t2_q1vj7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SCMP is a biased news source\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ce58gb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 77, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": \"7317739e-54fb-11e9-b747-0ee35a59e0fa\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 77, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563350655.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust a reminder to diversify your sources of news. Publishers often have an intent to sway public opinions. A common tactic is to omit key facts to create a narrative.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChina is notable for creating fake news, for example, China Daily. SCMP is currently owned by the Alibaba group, and their content will generally back China.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is an example: \\u003Ca href=\\\"https://www.scmp.com/news/hong-kong/law-and-crime/article/3018831/hong-kong-protester-appears-court-accused-biting\\\"\\u003Ehttps://www.scmp.com/news/hong-kong/law-and-crime/article/3018831/hong-kong-protester-appears-court-accused-biting\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe article makes no mention of the fact that the police officer attempted to take his eye out. Now the readers who have not seen the video are more likely to side with the police.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease use a variety of news sources and be ware of the publishers\\u0026#39; intent. There is propaganda on both sides of this conflict.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/026xBoJTzKMh6497fAzFymb2kwBvx1vzUqjWnIgefqQ.jpg?auto=webp\\u0026s=8202407c6508a49afb01af35b82a0ef38f9cc7c0\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/026xBoJTzKMh6497fAzFymb2kwBvx1vzUqjWnIgefqQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=1a28173458eaf4314d757a3b94e8c0836fa08cfa\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/026xBoJTzKMh6497fAzFymb2kwBvx1vzUqjWnIgefqQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=963a928634db65819abc6a66e70c36c704ea57a4\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/026xBoJTzKMh6497fAzFymb2kwBvx1vzUqjWnIgefqQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1d475e70869a34e75de3475a21cedb1ff9e8bfd6\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/026xBoJTzKMh6497fAzFymb2kwBvx1vzUqjWnIgefqQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=e5da0e6de94e151e839d5dfb9cea4b3ef5782e3e\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/026xBoJTzKMh6497fAzFymb2kwBvx1vzUqjWnIgefqQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=ea5c997a7bf128182bdc341ed9736a48f95cbd41\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/026xBoJTzKMh6497fAzFymb2kwBvx1vzUqjWnIgefqQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c017f3426e51699aa9d08429f2acf64d9c199079\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"4iUvvag5JlrVmkYOw_zpOpk1qDz_wjpf1azxpWVWttw\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"US\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce58gb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mnpirates\", \"num_crossposts\": 1, \"num_comments\": 69, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/HongKong/comments/ce58gb/scmp_is_a_biased_news_source/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/ce58gb/scmp_is_a_biased_news_source/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563321855.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_hkqu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Young or old, Hongkongers want better government\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_ce4xr2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 32, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 32, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/z8z5B5oGHxK82yxKDxI6t_wALo7XHXU38mQw-plD2vU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563349037.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"scmp.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/_9nVmbLc9qJ98AOJdU0GPijPg6ipEWYlfOsedK9qQbE.jpg?auto=webp\\u0026s=1d4eff3ff775f495198b74ee5ba7c983f5dbbfe9\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/_9nVmbLc9qJ98AOJdU0GPijPg6ipEWYlfOsedK9qQbE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2890f6c6642a29d8eea679e4b84e18386b6ae37f\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/_9nVmbLc9qJ98AOJdU0GPijPg6ipEWYlfOsedK9qQbE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=72817e302cb66b202318a4def67f41a10fd03dca\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/_9nVmbLc9qJ98AOJdU0GPijPg6ipEWYlfOsedK9qQbE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=350141a0afc272d793477a99a1e42f7e0ccade76\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/_9nVmbLc9qJ98AOJdU0GPijPg6ipEWYlfOsedK9qQbE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=9c5e2e188924b69a4b9a67a7ed7b9947fdd566b5\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/_9nVmbLc9qJ98AOJdU0GPijPg6ipEWYlfOsedK9qQbE.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=851a7b2b332ff23961d79e06fbb939299b340477\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/_9nVmbLc9qJ98AOJdU0GPijPg6ipEWYlfOsedK9qQbE.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=5ef8cfd7f02aa6f0b5df38fcadac18b277140ef4\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"H79FdZDDtw9iNanr1TQYIRJ_HKPFOYtUjCUFmGdL6dc\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce4xr2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"magnusjonsson\", \"num_crossposts\": 1, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce4xr2/young_or_old_hongkongers_want_better_government/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.scmp.com/comment/opinion/article/3018413/protest-violence-should-not-be-focus-young-or-old-hongkongers-just\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563320237.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_2bego28r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\\"Be water my friend\\\" Analysis of Hong Kong situation by Simon Lau of Singjai Radio. Guest: Andrew To (Cantonese, no subtitle)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_ce4swa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/_f1pif-J2Co?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Be water my friend - 16/07/19 \\u300c\\u596a\\u547dLoudzone\\u300d\\u9577\\u7248\\u672c\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/_f1pif-J2Co?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"\\u57ce\\u5be8 Singjai\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/_f1pif-J2Co/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/kowloonsingjai\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/_f1pif-J2Co?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/ce4swa\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/mcXJOJi9USxtPwuasUMMJ915KSWYwcThYZovSWN5QIo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563348371.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/76GGloToDpF8e6ngpMvv03VBsLaAYsqfA8muR9rZYko.jpg?auto=webp\\u0026s=f7fce207ec9ea23d87df9b7697f69205f68c6983\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/76GGloToDpF8e6ngpMvv03VBsLaAYsqfA8muR9rZYko.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b0061c2f393a3acb0906751f50d96f26237747f3\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/76GGloToDpF8e6ngpMvv03VBsLaAYsqfA8muR9rZYko.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4b413340dafb6c9d8cf531f0d6c5d99cd0e4ee0d\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/76GGloToDpF8e6ngpMvv03VBsLaAYsqfA8muR9rZYko.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=e2061d37206489180d404c2be70b803a5605a817\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"NGVN5g4eaYQmiB6TXbB3sTJX-1HvofK_RhfLPRxAy7c\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce4swa\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"badgordo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce4swa/be_water_my_friend_analysis_of_hong_kong/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/_f1pif-J2Co\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563319571.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Be water my friend - 16/07/19 \\u300c\\u596a\\u547dLoudzone\\u300d\\u9577\\u7248\\u672c\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/_f1pif-J2Co?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"\\u57ce\\u5be8 Singjai\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/_f1pif-J2Co/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/kowloonsingjai\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_2w0qnm0q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Times] Hong Kong Protestors - The 25 Most Influential People on the Internet\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_ce30tw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 47, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 47, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/uqUGR6F1UWjUPvg--BxVTFB-gVc7razKMPSJGTz2zkc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563339835.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"time.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/8JQh4ZqvBfLtH1SjJ5IThl9-rxbMEbJEIZCIe5yz6xA.jpg?auto=webp\\u0026s=ddaf23002c85135bf1c5e4d5f5d7276ca2cdf11c\", \"width\": 1200, \"height\": 628}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/8JQh4ZqvBfLtH1SjJ5IThl9-rxbMEbJEIZCIe5yz6xA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=67f89d07c89662e2d76ec973343b139fdf999bdb\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/8JQh4ZqvBfLtH1SjJ5IThl9-rxbMEbJEIZCIe5yz6xA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1f514c794c20c2e738aa2565240125c0a7a76422\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/8JQh4ZqvBfLtH1SjJ5IThl9-rxbMEbJEIZCIe5yz6xA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cde9bf97bb1d2de42328d9d748c368fba92daf29\", \"width\": 320, \"height\": 167}, {\"url\": \"https://external-preview.redd.it/8JQh4ZqvBfLtH1SjJ5IThl9-rxbMEbJEIZCIe5yz6xA.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=df093ba9c60d6771c7d5b87da2ec6518418eda70\", \"width\": 640, \"height\": 334}, {\"url\": \"https://external-preview.redd.it/8JQh4ZqvBfLtH1SjJ5IThl9-rxbMEbJEIZCIe5yz6xA.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5bfa1cb3deb060d07dca4d01349ab91268934cd3\", \"width\": 960, \"height\": 502}, {\"url\": \"https://external-preview.redd.it/8JQh4ZqvBfLtH1SjJ5IThl9-rxbMEbJEIZCIe5yz6xA.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=7e7c3bb078e1b3523ff868574da7a50b7fa6165d\", \"width\": 1080, \"height\": 565}], \"variants\": {}, \"id\": \"vVM25uWQVMYOfSoAw5_XKRRQR8FuFTagblkxgH2PkxE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce30tw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ZWF0cHVzc3k\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce30tw/times_hong_kong_protestors_the_25_most/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://time.com/5626827/the-25-most-influential-people-on-the-internet/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563311035.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_12i4dt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Umbrella\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ce2o65\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 148, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 148, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Xg7jWFZtecQJve8Be3t5bfMJUqKSpcGEj4kGZ7jePIc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563338242.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/49xjk5238qa31.jpg?auto=webp\\u0026s=fae1af2af68cafb9f22544e85195561bef4fac2e\", \"width\": 720, \"height\": 1252}, \"resolutions\": [{\"url\": \"https://preview.redd.it/49xjk5238qa31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=08819f083f416be5096d684b389523fc7c9d1cff\", \"width\": 108, \"height\": 187}, {\"url\": \"https://preview.redd.it/49xjk5238qa31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3c37fcf9fe051b82febfacd590431a08b59bbdd0\", \"width\": 216, \"height\": 375}, {\"url\": \"https://preview.redd.it/49xjk5238qa31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=45b05017b8ba5ff5b0fc4857a398dc1b2e98bed5\", \"width\": 320, \"height\": 556}, {\"url\": \"https://preview.redd.it/49xjk5238qa31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=232f8d91cbc19523d113b5cd07467af974c9e25a\", \"width\": 640, \"height\": 1112}], \"variants\": {}, \"id\": \"rc569gNzFw6y6kRes4dqV77qVCBj-xhyUip7xI721Tc\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce2o65\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Jameson401\", \"num_crossposts\": 1, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce2o65/umbrella/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/49xjk5238qa31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563309442.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_161h1p\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Organisers planning another mass rally in Hong Kong warn police not to reject their request as move would effectively mean imposing curfew in city\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_ce019n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/XT-CYZKoW7e_rhuGLxi4MKAaBkbZQvRyHiRf6s4LL2E.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563326399.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"scmp.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Uf62Z3z3SohCZPT1pjBktKRoCXoyVUTBOyrVj-LM8Ug.jpg?auto=webp\\u0026s=b0de9271b544fd57bab4c30fb1cfe88d97b75e4d\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Uf62Z3z3SohCZPT1pjBktKRoCXoyVUTBOyrVj-LM8Ug.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5a3e0df629e354c5edd94e829e0383b9bf1202df\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/Uf62Z3z3SohCZPT1pjBktKRoCXoyVUTBOyrVj-LM8Ug.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=bdaa50352e38497d47d9eb1c836da1e90ea95cf6\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/Uf62Z3z3SohCZPT1pjBktKRoCXoyVUTBOyrVj-LM8Ug.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=07f4a1f65ec50cc296e40c599dfbecec32fc086a\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/Uf62Z3z3SohCZPT1pjBktKRoCXoyVUTBOyrVj-LM8Ug.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=08195587da99bf60478e76fe6b47a2b536d48c14\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/Uf62Z3z3SohCZPT1pjBktKRoCXoyVUTBOyrVj-LM8Ug.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=75c3b357fa37003d65b1f57d91fd8f37f4cc1be9\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/Uf62Z3z3SohCZPT1pjBktKRoCXoyVUTBOyrVj-LM8Ug.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9a2950db0f5e4e3595b9fe44e78f3d6f07ff80c9\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"_BPeCuxLgEjUm_mJ7RHQv0wByt8nVWwlZJTPbIJKZxs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce019n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"boppinmule\", \"num_crossposts\": 1, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/ce019n/organisers_planning_another_mass_rally_in_hong/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.scmp.com/news/hong-kong/politics/article/3018885/organisers-planning-another-mass-rally-hong-kong-warn\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563297599.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_s4va8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"New Emblem of Hong Kong\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 98, \"hide_score\": false, \"name\": \"t3_cdytcv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 134, \"total_awards_received\": 1, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 134, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/1woH9xB3qRW56ZyJFGIQS2tzKce2rqKHEO0M6ERzXBc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563320968.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/8o34yctpsoa31.jpg?auto=webp\\u0026s=500f0e1d8de74f49ddfaa4644c876364676c738d\", \"width\": 2048, \"height\": 1448}, \"resolutions\": [{\"url\": \"https://preview.redd.it/8o34yctpsoa31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0e895b216bc2f5239b38cd83d6c5c57829c5d95e\", \"width\": 108, \"height\": 76}, {\"url\": \"https://preview.redd.it/8o34yctpsoa31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=078ce911ab7126281bd6d1efd603413fa904dfea\", \"width\": 216, \"height\": 152}, {\"url\": \"https://preview.redd.it/8o34yctpsoa31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d03d13e5072e57e3b9934da0ca59190e1c18e9c9\", \"width\": 320, \"height\": 226}, {\"url\": \"https://preview.redd.it/8o34yctpsoa31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=3446bd0c128ce88ff7636c88e6b64dd3bb291b8f\", \"width\": 640, \"height\": 452}, {\"url\": \"https://preview.redd.it/8o34yctpsoa31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=ca11200dbd5241566d2ac4815fb2dab4572886bb\", \"width\": 960, \"height\": 678}, {\"url\": \"https://preview.redd.it/8o34yctpsoa31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ab408123b28604f18dcebe1619d6619591209916\", \"width\": 1080, \"height\": 763}], \"variants\": {}, \"id\": \"R8hLBCrQS5a4GSCM5zJMPYdVobugc6znLzdTfonnyOQ\"}], \"enabled\": true}, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdytcv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Charlie_Yu\", \"num_crossposts\": 1, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cdytcv/new_emblem_of_hong_kong/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/8o34yctpsoa31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563292168.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"Two groups look like mainly uncles with fat bellies shouting at each other... heard some random dude on live saying triads are involved.... cops are here too\", \"author_fullname\": \"t2_ma4lq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What\\u2019s happening in Yuen Long?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdyem6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563319067.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETwo groups look like mainly uncles with fat bellies shouting at each other... heard some random dude on live saying triads are involved.... cops are here too\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdyem6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"match_d\", \"num_crossposts\": 1, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cdyem6/whats_happening_in_yuen_long/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/cdyem6/whats_happening_in_yuen_long/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563290267.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ndzg4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Police \\\"kettled\\\" parents, children and elderly into the active conflict zone in the New Trade Plaza atrium\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_cdxh6m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 212, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/99xt2d4yfna31/DASH_240?source=fallback\", \"height\": 224, \"width\": 400, \"scrubber_media_url\": \"https://v.redd.it/99xt2d4yfna31/DASH_96\", \"dash_url\": \"https://v.redd.it/99xt2d4yfna31/DASHPlaylist.mpd\", \"duration\": 82, \"hls_url\": \"https://v.redd.it/99xt2d4yfna31/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 212, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ESOmjNULD21jUgrda6LTtk8b_PrML1T3HHWBXRgVrNc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563314751.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/SZQyTNbGEzxuBcrJn2DEhHXaUUtxZyf8thLbO4ljsSI.png?format=pjpg\\u0026auto=webp\\u0026s=25fe590f8ef394b166d0ab8985eaa1fc6905f6ec\", \"width\": 400, \"height\": 225}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/SZQyTNbGEzxuBcrJn2DEhHXaUUtxZyf8thLbO4ljsSI.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=efa115ff4165fc87d3674021967fd220d6763e6f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/SZQyTNbGEzxuBcrJn2DEhHXaUUtxZyf8thLbO4ljsSI.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=1a72a2a904cbd4e1e5bc6c93229879a7c46e8c8f\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/SZQyTNbGEzxuBcrJn2DEhHXaUUtxZyf8thLbO4ljsSI.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=6131b091ad45ae6d67460a7b79c2f6f61580cf9f\", \"width\": 320, \"height\": 180}], \"variants\": {}, \"id\": \"gQzkXOMsH09twvZcWXg29yh_r4qV5QmpKXPXlA4kAnU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdxh6m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ticonderoga67\", \"num_crossposts\": 1, \"num_comments\": 39, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cdxh6m/police_kettled_parents_children_and_elderly_into/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://v.redd.it/99xt2d4yfna31\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563285951.0, \"discussion_type\": null, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/99xt2d4yfna31/DASH_240?source=fallback\", \"height\": 224, \"width\": 400, \"scrubber_media_url\": \"https://v.redd.it/99xt2d4yfna31/DASH_96\", \"dash_url\": \"https://v.redd.it/99xt2d4yfna31/DASHPlaylist.mpd\", \"duration\": 82, \"hls_url\": \"https://v.redd.it/99xt2d4yfna31/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_g3nnt6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hundreds gathering in New Town Plaza now, demanding answers on why the mall let in the police on Sunday (Apple Daily Livestream)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_cdxh9s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 805, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 805, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/JbzLj1zqdL6-pNZ2_5nidAfwSWQSY4D3zJtkGfjdor8.jpg\", \"edited\": false, \"author_flair_css_class\": \"swedish-friend\", \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563314761.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/a3qvujmy9oa31.png?auto=webp\\u0026s=bd0635e3586bf70af4e64d080c326036a875b7af\", \"width\": 1920, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://preview.redd.it/a3qvujmy9oa31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=74059518f2fd21b07395c2f9398cc087a5685649\", \"width\": 108, \"height\": 60}, {\"url\": \"https://preview.redd.it/a3qvujmy9oa31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f62bed35d4d04a65523cf01c67232bc2b36117c1\", \"width\": 216, \"height\": 121}, {\"url\": \"https://preview.redd.it/a3qvujmy9oa31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3294b72e19c60129e1b5b10390c9442672d05252\", \"width\": 320, \"height\": 180}, {\"url\": \"https://preview.redd.it/a3qvujmy9oa31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=3c8e33a61bc9125efe6539c018cb55162efa920b\", \"width\": 640, \"height\": 360}, {\"url\": \"https://preview.redd.it/a3qvujmy9oa31.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=33c5526d27a5bb9368d0c843913258987d97994f\", \"width\": 960, \"height\": 540}, {\"url\": \"https://preview.redd.it/a3qvujmy9oa31.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=4d83859bb564f5f3253ef12f4459b99bc89ae5dd\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"I8JWw5Bfa-G3T4wzWbB9sRicPe-_-BbLSQ5r1YmHClc\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\\u5929\\u4f51\\u6211\\u57ce\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdxh9s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"phy361sm\", \"num_crossposts\": 0, \"num_comments\": 132, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/HongKong/comments/cdxh9s/hundreds_gathering_in_new_town_plaza_now/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/a3qvujmy9oa31.png\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563285961.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ehrm1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Diagram showing how the police forced the protesters into New Town Plaza. (from Apple Daily)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 113, \"hide_score\": false, \"name\": \"t3_cdwxzq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 127, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"3ece9734-64ee-11e1-a8b9-12313d2c1af1\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 127, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/e64UC4njjy-s_UdiS5q4VY0dZ7t3vh20s4mTioh1NMg.jpg\", \"edited\": false, \"author_flair_css_class\": \"swedish-friend\", \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563311966.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/34ha12yvzna31.jpg?auto=webp\\u0026s=a3fdd0bcbd6fc8ae70939cfe78487a8d74474c66\", \"width\": 2000, \"height\": 1625}, \"resolutions\": [{\"url\": \"https://preview.redd.it/34ha12yvzna31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4f3003061df6902929e9c477e29e71e418991811\", \"width\": 108, \"height\": 87}, {\"url\": \"https://preview.redd.it/34ha12yvzna31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=12d04ee27cab6752fb02fdc364a205709b7b024c\", \"width\": 216, \"height\": 175}, {\"url\": \"https://preview.redd.it/34ha12yvzna31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=57744e8d9c5f447085a0aa6a9336bf1ccd0e35e8\", \"width\": 320, \"height\": 260}, {\"url\": \"https://preview.redd.it/34ha12yvzna31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=68c89c205a8cf54bad3939fb981ea22836c4902b\", \"width\": 640, \"height\": 520}, {\"url\": \"https://preview.redd.it/34ha12yvzna31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=4bb94acbb16eb861d3da5b316beb865cb0fd772b\", \"width\": 960, \"height\": 780}, {\"url\": \"https://preview.redd.it/34ha12yvzna31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c92100bcc78dd0d32c74cc8654f9f04a8ad5564d\", \"width\": 1080, \"height\": 877}], \"variants\": {}, \"id\": \"372PjNP_UDTxvNk8U2QQPEuVKlPXi5liJuG4OjDS8mY\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"612 never forget\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdwxzq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"2015071\", \"num_crossposts\": 1, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/HongKong/comments/cdwxzq/diagram_showing_how_the_police_forced_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/34ha12yvzna31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563283166.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_13tnxg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Visitors saved by police and reporters during protest\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cdwxfo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/M7GXD9Y-HDc0G6Ai20OJ62Ps_R9YQm6H0BYiw4IP6-8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563311887.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/3xoh39xp1oa31.jpg?auto=webp\\u0026s=d5a7712d4051db2f2f27c4c220a2c5325b682ad8\", \"width\": 720, \"height\": 542}, \"resolutions\": [{\"url\": \"https://preview.redd.it/3xoh39xp1oa31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=496ad68480f354ca12771d68b60a920c9318c7c2\", \"width\": 108, \"height\": 81}, {\"url\": \"https://preview.redd.it/3xoh39xp1oa31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=492b374fcf7b6d5da0e167702de03f0f43d6572d\", \"width\": 216, \"height\": 162}, {\"url\": \"https://preview.redd.it/3xoh39xp1oa31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2f5b7ba0dcbf2cc5aa2b6d09db9dd3e51ca93027\", \"width\": 320, \"height\": 240}, {\"url\": \"https://preview.redd.it/3xoh39xp1oa31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=34e9a20866da7f7323bb819b56a059628d314122\", \"width\": 640, \"height\": 481}], \"variants\": {}, \"id\": \"egMNjVu0S_tiuYGrrve2DBNHdZi3zuiGYw7h60ysAUU\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdwxfo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tc0008\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cdwxfo/visitors_saved_by_police_and_reporters_during/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/3xoh39xp1oa31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563283087.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ndzg4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Lots of people submitting complaint forms in New Town Plaza right now, many shops closed\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_cdwtxu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 62, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 62, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/N-s1gwCuP9JeGiVB_l7Y901JmrxzJAFtFJdoY17KuFE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563311384.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"facebook.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/tcUCeQmhsBwLy3cZJSzdBScG61mqVevxzWQk2vXAz_Y.jpg?auto=webp\\u0026s=2b3a595a52a5aa4d0b77eef822d341acb8899fc0\", \"width\": 355, \"height\": 200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/tcUCeQmhsBwLy3cZJSzdBScG61mqVevxzWQk2vXAz_Y.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=39603fa471a78d364594636476091fdd895e152e\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/tcUCeQmhsBwLy3cZJSzdBScG61mqVevxzWQk2vXAz_Y.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6c01e98b8f0289ef64dc5d8408f4b4953cceb187\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/tcUCeQmhsBwLy3cZJSzdBScG61mqVevxzWQk2vXAz_Y.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=061be0f77166f07ad2d8cf6dee7fcb43d523abd7\", \"width\": 320, \"height\": 180}], \"variants\": {}, \"id\": \"z9wH86QjuKk1XguatuVaKLK-hnX9M5acBa81TtznYiM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdwtxu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ticonderoga67\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cdwtxu/lots_of_people_submitting_complaint_forms_in_new/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.facebook.com/standnewshk/videos/671430856614869/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563282584.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_iygyp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Pro-China supporter beats young activist and gets apprehended by authorities.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 102, \"hide_score\": false, \"name\": \"t3_cdwqu6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 275, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kpxz6d7smma31/DASH_240?source=fallback\", \"height\": 240, \"width\": 328, \"scrubber_media_url\": \"https://v.redd.it/kpxz6d7smma31/DASH_96\", \"dash_url\": \"https://v.redd.it/kpxz6d7smma31/DASHPlaylist.mpd\", \"duration\": 16, \"hls_url\": \"https://v.redd.it/kpxz6d7smma31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 275, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/PnCbZ2GsJCu4HaVFAkewFYJRHNYNcrd_cT37JkdzOb4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563310935.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/XQlK5dMu0tZBA8eSXl93Dm1o8CtkLk2IaeLLDPdu6ME.png?format=pjpg\\u0026auto=webp\\u0026s=dace02ebdadc08fe27730a20a6ffef47aaf94f6b\", \"width\": 480, \"height\": 352}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/XQlK5dMu0tZBA8eSXl93Dm1o8CtkLk2IaeLLDPdu6ME.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=0c3db191f7b2a1bf482e9bbaa6a95304c6ea5b89\", \"width\": 108, \"height\": 79}, {\"url\": \"https://external-preview.redd.it/XQlK5dMu0tZBA8eSXl93Dm1o8CtkLk2IaeLLDPdu6ME.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=dacfd18948699603b188d87743858cb1adc5952f\", \"width\": 216, \"height\": 158}, {\"url\": \"https://external-preview.redd.it/XQlK5dMu0tZBA8eSXl93Dm1o8CtkLk2IaeLLDPdu6ME.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=4ae735fb9e26c8cf755b05b997348defeb1299ca\", \"width\": 320, \"height\": 234}], \"variants\": {}, \"id\": \"H_KfWZu6NPxokVVblzpY-BZaTokXEqkaVC33azRd03c\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdwqu6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"masturbake\", \"num_crossposts\": 0, \"num_comments\": 76, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cdwqu6/prochina_supporter_beats_young_activist_and_gets/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://v.redd.it/kpxz6d7smma31\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563282135.0, \"discussion_type\": null, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kpxz6d7smma31/DASH_240?source=fallback\", \"height\": 240, \"width\": 328, \"scrubber_media_url\": \"https://v.redd.it/kpxz6d7smma31/DASH_96\", \"dash_url\": \"https://v.redd.it/kpxz6d7smma31/DASHPlaylist.mpd\", \"duration\": 16, \"hls_url\": \"https://v.redd.it/kpxz6d7smma31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_qw0f5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Lennon Wall at Tsim Sha Tsui. See yall on the 21st!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 104, \"hide_score\": false, \"name\": \"t3_cdwhss\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 94, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 94, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/ElzEYczjNhOtchDLFcDpjaPk_JY5GeVrPcRzakHoTu4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563309520.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/zr86q6DLFlHKMnL92GiZYtmfABfTZfizqrqP-x5O2Bw.jpg?auto=webp\\u0026s=b6e1bbb929e178f1f2adba883e9b1e06d90b3595\", \"width\": 3226, \"height\": 2419}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/zr86q6DLFlHKMnL92GiZYtmfABfTZfizqrqP-x5O2Bw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=493e5f07a149c9136ab3807f05f9593212f5777d\", \"width\": 108, \"height\": 80}, {\"url\": \"https://external-preview.redd.it/zr86q6DLFlHKMnL92GiZYtmfABfTZfizqrqP-x5O2Bw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d97d9a32a1fc9caa7dbfd1d7d04578f88d46e68b\", \"width\": 216, \"height\": 161}, {\"url\": \"https://external-preview.redd.it/zr86q6DLFlHKMnL92GiZYtmfABfTZfizqrqP-x5O2Bw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9ca55dcca7fab2d39e594b7c779c8e0e2775a8ad\", \"width\": 320, \"height\": 239}, {\"url\": \"https://external-preview.redd.it/zr86q6DLFlHKMnL92GiZYtmfABfTZfizqrqP-x5O2Bw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=6c1eb1b7af69e5fbdee075f9788012d5035cb1be\", \"width\": 640, \"height\": 479}, {\"url\": \"https://external-preview.redd.it/zr86q6DLFlHKMnL92GiZYtmfABfTZfizqrqP-x5O2Bw.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=7f96e4c7059e2411bd3694db8531abd62f392fb5\", \"width\": 960, \"height\": 719}, {\"url\": \"https://external-preview.redd.it/zr86q6DLFlHKMnL92GiZYtmfABfTZfizqrqP-x5O2Bw.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9859b82b10b89e6a27c96cdd501e5977fa474d12\", \"width\": 1080, \"height\": 809}], \"variants\": {}, \"id\": \"8g7zXjwNWkfBIfWdlfjA6BVWX0QlWXAYKbkUQK0cAfk\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdwhss\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TechieWeirdo\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cdwhss/lennon_wall_at_tsim_sha_tsui_see_yall_on_the_21st/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.imgur.com/zhu5Pyv.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563280720.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"What is the general mentality of the Police force now?\\n\\nDo they still generally believe what they are doing is \\\"right\\\"? Are there some people who are quitting because of what is happening? At this point, I don't believe \\\"I do as ordered\\\" still stands as a valid reason.\\n\\n\\u0026#x200B;\\n\\nIf you are interested, here is why I am asking.\\n\\nI have moved out of Hong Kong for a couple of years (right before 2014), and I am still trying to keep track of what is happening in HK. It is disheartening to see what is happening there, but it feels so distant to me. Hong Kong Police was never what they look like now, they are nothing more than those goofy figures on TV you see when you go visit your granny. I simply fail to compile what is happening. I have read quite a bit on the internet on the pro-protest clips and stories, but I don't seem to be able to find any public police response (apart from the official account which seems to be run by a 12yo).\", \"author_fullname\": \"t2_105an2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"Do anyone knows someone who works in HK Police force?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdw09n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 56, \"total_awards_received\": 1, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 56, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563306691.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": true, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat is the general mentality of the Police force now?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo they still generally believe what they are doing is \\u0026quot;right\\u0026quot;? Are there some people who are quitting because of what is happening? At this point, I don\\u0026#39;t believe \\u0026quot;I do as ordered\\u0026quot; still stands as a valid reason.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you are interested, here is why I am asking.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have moved out of Hong Kong for a couple of years (right before 2014), and I am still trying to keep track of what is happening in HK. It is disheartening to see what is happening there, but it feels so distant to me. Hong Kong Police was never what they look like now, they are nothing more than those goofy figures on TV you see when you go visit your granny. I simply fail to compile what is happening. I have read quite a bit on the internet on the pro-protest clips and stories, but I don\\u0026#39;t seem to be able to find any public police response (apart from the official account which seems to be run by a 12yo).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdw09n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tobyclh\", \"num_crossposts\": 1, \"num_comments\": 53, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cdw09n/do_anyone_knows_someone_who_works_in_hk_police/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/cdw09n/do_anyone_knows_someone_who_works_in_hk_police/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563277891.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"I'm looking for podcasts/audio/video content relating current Hong Kong political issues - English language please.\", \"author_fullname\": \"t2_f0s8h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Looking for Hong Kong news/talk podcasts/stream\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdvw5h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563305968.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": true, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m looking for podcasts/audio/video content relating current Hong Kong political issues - English language please.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdvw5h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"da_cruz\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cdvw5h/looking_for_hong_kong_newstalk_podcastsstream/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/cdvw5h/looking_for_hong_kong_newstalk_podcastsstream/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563277168.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ndzg4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Rally planned for July 21 in Admiralty \\\"morphing into a full on march instead\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cdvm88\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 36, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 36, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/jThhLCuGdpRZ5TcbNdx31hTS_xX5NfVNwCjEnG7PVhE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563304272.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"news.rthk.hk\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/cwP9y8p9oLA-UOKPppZDoALIfMRmiwYSQVJdC96Evc4.jpg?auto=webp\\u0026s=47be6da80c8a69b576eaca8738a93436e608af0d\", \"width\": 1280, \"height\": 960}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cwP9y8p9oLA-UOKPppZDoALIfMRmiwYSQVJdC96Evc4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0b281a8ec6406e5e6dc4affa9d9d1680642b46a7\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/cwP9y8p9oLA-UOKPppZDoALIfMRmiwYSQVJdC96Evc4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=90cfcd8ab3e6575688fe19e5e06dfeee0a838b56\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/cwP9y8p9oLA-UOKPppZDoALIfMRmiwYSQVJdC96Evc4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b831809e97eb5a7eedb079707d011be2d5e0b3b4\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/cwP9y8p9oLA-UOKPppZDoALIfMRmiwYSQVJdC96Evc4.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=efb7686fd518ee80205b8a6e369c8b416e726b00\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/cwP9y8p9oLA-UOKPppZDoALIfMRmiwYSQVJdC96Evc4.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=ad3e3affad75cb197b8d061941bdb113417d2d21\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/cwP9y8p9oLA-UOKPppZDoALIfMRmiwYSQVJdC96Evc4.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=781f162495a11b07a9030f794c2eddd75bd9128c\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"uFZxA-AVfj30rHN6RshEiQa9UNxUK11jRBSZ9OiC8mk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdvm88\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ticonderoga67\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cdvm88/rally_planned_for_july_21_in_admiralty_morphing/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://news.rthk.hk/rthk/en/component/k2/1468700-20190716.htm\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563275472.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"What did the residents at Lek Yuk Estate do wrong?\\n\\nAs protestors gathered at Yuen Wo Road, a group of fully-equipped riot police marched into the nearby Lek Yuen Estate, where there were no protestors. Around 100 riot police officers were stationed outside Foo Yu Building.\\n\\nCitizens on-site strongly condemned the police, accusing Chief Executive Carrie Lam as the source of the ongoing unrest and confrontation between the Police and citizens.\\n\\nSource: Apple Daily\\n\\n[\\\\#HongKong](https://www.facebook.com/hashtag/hongkong?source=feed_text\\u0026epa=HASHTAG\\u0026__xts__%5B0%5D=68.ARBLn9Oh5hAzKYWIpjtfLTlfvTDMt7vlXac5vUvRWrlGxZ3aBzfLkBqSKYeg01WOWcscvOVmmfi9Ycn3zv4l6djc0KygZCGMvTN7WNjbvj2Ib2RsvaSZhb3glY5pwr1mj9fqSBz4yefyjtPabBMK5k66qdkKWPL6uouYLh2cZ_N0ydv9xlONqjuCtB_MMy7wt7k2ilg5eC1KExFMa0LDg4ATpnR-uQ2f4o-wrsgBai3-gzJwXyVPwML8uyFlpJhErGys5mh03K2pyRJK-AY5oOXXHtZEgRswS20_WONb_2bkXCP_1S0FQtaHLy9KjYlN_d8gv_YfPgCvozcQAjdplzu_OEnx\\u0026__tn__=%2ANK-R)\\n\\n[https://www.facebook.com/2406628919558580/posts/2406711026217036?s=684746285\\u0026sfns=mo](https://www.facebook.com/2406628919558580/posts/2406711026217036?s=684746285\\u0026sfns=mo)\", \"author_fullname\": \"t2_naszd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Riot police equipped with tear gas stormed into public housing estate, 14 July 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdvl04\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 34, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 34, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563304046.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat did the residents at Lek Yuk Estate do wrong?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs protestors gathered at Yuen Wo Road, a group of fully-equipped riot police marched into the nearby Lek Yuen Estate, where there were no protestors. Around 100 riot police officers were stationed outside Foo Yu Building.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECitizens on-site strongly condemned the police, accusing Chief Executive Carrie Lam as the source of the ongoing unrest and confrontation between the Police and citizens.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESource: Apple Daily\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.facebook.com/hashtag/hongkong?source=feed_text\\u0026amp;epa=HASHTAG\\u0026amp;__xts__%5B0%5D=68.ARBLn9Oh5hAzKYWIpjtfLTlfvTDMt7vlXac5vUvRWrlGxZ3aBzfLkBqSKYeg01WOWcscvOVmmfi9Ycn3zv4l6djc0KygZCGMvTN7WNjbvj2Ib2RsvaSZhb3glY5pwr1mj9fqSBz4yefyjtPabBMK5k66qdkKWPL6uouYLh2cZ_N0ydv9xlONqjuCtB_MMy7wt7k2ilg5eC1KExFMa0LDg4ATpnR-uQ2f4o-wrsgBai3-gzJwXyVPwML8uyFlpJhErGys5mh03K2pyRJK-AY5oOXXHtZEgRswS20_WONb_2bkXCP_1S0FQtaHLy9KjYlN_d8gv_YfPgCvozcQAjdplzu_OEnx\\u0026amp;__tn__=%2ANK-R\\\"\\u003E#HongKong\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.facebook.com/2406628919558580/posts/2406711026217036?s=684746285\\u0026amp;sfns=mo\\\"\\u003Ehttps://www.facebook.com/2406628919558580/posts/2406711026217036?s=684746285\\u0026amp;sfns=mo\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdvl04\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JonathanHo1226\", \"num_crossposts\": 1, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cdvl04/riot_police_equipped_with_tear_gas_stormed_into/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/cdvl04/riot_police_equipped_with_tear_gas_stormed_into/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563275246.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_36q3a\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"3 more anti-extradition law protests planned for this week, with Hong Kong's social workers and elderly community set to mobilise\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_cduy7z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 52, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 52, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/18t16j1L_zZBcdilSydKQcKGbPiGv0wkOD1MxuFZNTU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563299630.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"hongkongfp.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ReTmZhbOtAMayyY3Ye1jJMVnC8DUTc9y1L8B7QeT7RA.jpg?auto=webp\\u0026s=d2740c306bbb90d182b412387bdcede2c3d33740\", \"width\": 1050, \"height\": 550}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ReTmZhbOtAMayyY3Ye1jJMVnC8DUTc9y1L8B7QeT7RA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ca92e2a2a98e569bedfff43a015ea270b1006acc\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/ReTmZhbOtAMayyY3Ye1jJMVnC8DUTc9y1L8B7QeT7RA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c626d26104e8c08538a0d53e4adb5d7feae23d3a\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/ReTmZhbOtAMayyY3Ye1jJMVnC8DUTc9y1L8B7QeT7RA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=531a7a50c559c06afdd0d993d2fe3dbc0c6045f9\", \"width\": 320, \"height\": 167}, {\"url\": \"https://external-preview.redd.it/ReTmZhbOtAMayyY3Ye1jJMVnC8DUTc9y1L8B7QeT7RA.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5e3dd1ba0476a47d13b0e9be8a6b27fa1edf96fb\", \"width\": 640, \"height\": 335}, {\"url\": \"https://external-preview.redd.it/ReTmZhbOtAMayyY3Ye1jJMVnC8DUTc9y1L8B7QeT7RA.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=79894fdb3ae7ea500a31175843c0a99dea4cb411\", \"width\": 960, \"height\": 502}], \"variants\": {}, \"id\": \"4eiiDDxCzs4nnE-86Hwy4VDL7-NWUCfbRhvVmR9yCaE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cduy7z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mod83\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cduy7z/3_more_antiextradition_law_protests_planned_for/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.hongkongfp.com/2019/07/16/3-anti-extradition-law-protests-planned-week-hong-kongs-social-workers-elderly-community-set-mobilise/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563270830.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ptc7n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Extremist mobs? How China's propaganda machine tried to control the message in the Hong Kong protests\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 68, \"hide_score\": false, \"name\": \"t3_cduuts\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 36, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 36, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/eiiwtltRLDK83lMyDvUuv11COf4xyPMq-k16pgQxZZI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563298875.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"theconversation.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/y5klfujf8KHnxKozE5E6QZnIQA-_6KFV5n3kb9Ovrpk.jpg?auto=webp\\u0026s=4a82bc4c75789dcf72cc9c712af59be8a897c6dd\", \"width\": 1356, \"height\": 668}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/y5klfujf8KHnxKozE5E6QZnIQA-_6KFV5n3kb9Ovrpk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c7a16eed01568f5c43228c449a8516d441ad8513\", \"width\": 108, \"height\": 53}, {\"url\": \"https://external-preview.redd.it/y5klfujf8KHnxKozE5E6QZnIQA-_6KFV5n3kb9Ovrpk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b592745e17b398c85eed1fd19281461a817bc543\", \"width\": 216, \"height\": 106}, {\"url\": \"https://external-preview.redd.it/y5klfujf8KHnxKozE5E6QZnIQA-_6KFV5n3kb9Ovrpk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1adb5a612f002490354598ef5ab02e7f8a668181\", \"width\": 320, \"height\": 157}, {\"url\": \"https://external-preview.redd.it/y5klfujf8KHnxKozE5E6QZnIQA-_6KFV5n3kb9Ovrpk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=19614d33171fbbb14bc5cf01bec4610861ce11d0\", \"width\": 640, \"height\": 315}, {\"url\": \"https://external-preview.redd.it/y5klfujf8KHnxKozE5E6QZnIQA-_6KFV5n3kb9Ovrpk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=caaf38cd3bf66e4a79013c1bab794ebb2db6b919\", \"width\": 960, \"height\": 472}, {\"url\": \"https://external-preview.redd.it/y5klfujf8KHnxKozE5E6QZnIQA-_6KFV5n3kb9Ovrpk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=02fe13f0142f96d49c306c44e2ec99c94d2b2e2a\", \"width\": 1080, \"height\": 532}], \"variants\": {}, \"id\": \"da5IXOI3MD14f4dh3EQpav-iIS2rKBKjTj9gsDnoiyQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cduuts\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"me-i-am\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cduuts/extremist_mobs_how_chinas_propaganda_machine/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://theconversation.com/extremist-mobs-how-chinas-propaganda-machine-tried-to-control-the-message-in-the-hong-kong-protests-119646\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563270075.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_ptc7n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"China\\u2019s surveillance technology is terrifying \\u2013 and on show in London (this is exactly what China will eventually bring to Hong Kong)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_cduufz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 27, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 27, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/FbxfzIeFGyrkcYnjfYRYCOPfPqS0r9vkwC5gAvPjYqo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563298790.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"spectator.co.uk\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/hEa69CaO0ZqSqcXTuw8_9Kbh2POHf8lFUXProXpui-Q.jpg?auto=webp\\u0026s=94e77809a40d5d6bf0e75d82ae970f3c485e55c0\", \"width\": 730, \"height\": 486}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/hEa69CaO0ZqSqcXTuw8_9Kbh2POHf8lFUXProXpui-Q.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=dcf55e739e1421f4dd1d54226d7f1b8cbceedeb3\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/hEa69CaO0ZqSqcXTuw8_9Kbh2POHf8lFUXProXpui-Q.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=515d6529d707348b62ce17d90e7da08da01e392c\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/hEa69CaO0ZqSqcXTuw8_9Kbh2POHf8lFUXProXpui-Q.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d2a1675af186f45f9ed0ff097d7596d18de87e69\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/hEa69CaO0ZqSqcXTuw8_9Kbh2POHf8lFUXProXpui-Q.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=58f01cc9852863f0f504930992d566e744b04c57\", \"width\": 640, \"height\": 426}], \"variants\": {}, \"id\": \"9Zu9-Q4YzjxWfD2cahWnCrE8KDv5F_QDvSE4zbC49UA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cduufz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"me-i-am\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cduufz/chinas_surveillance_technology_is_terrifying_and/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.spectator.co.uk/2019/07/chinas-surveillance-technology-is-terrifying-and-on-show-in-london/?fbclid=IwAR1oY0LB7jtp6JS2upCC205QWkA28OoA0c27zDMtCuH4hQJ-hI_xO3vGuOM\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563269990.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"1.\\u62c6\\u8d70HDD,\\u8a18\\u61b6\\u5361(\\u653e\\u53bb\\u7b2c\\u4e8c\\u5ea6)\\n\\n2.\\u642c\\u8d70\\u96fb\\u5b50\\u7522\\u54c1,\\u52a0\\u6d17\\u6a5f\\u3002\\n\\n3.\\u6211\\u7121\\u91ce\\u8b1b\\u3002\\n\\n4.\\u5514\\u597d\\u7c3d\\u4efb\\u4f55\\u53e3\\u4f9b/\\u6587\\u4ef6\\u3002\\n\\n5.\\u4e0d\\u8981\\u8207\\u72d7\\u9592\\u804a\\u3002\\n\\n6.\\u5514\\u597d\\u89e3\\u9396\\u3002\\n\\n7.\\u5165\\u5c4b\\u524d\\u8981\\u6709\\u641c\\u67e5\\u4ee4\\u3002\\n\\n8.\\u6284\\u4f4e\\u5f8b\\u5e2b\\u96fb\\u8a71\", \"author_fullname\": \"t2_2qukpiq8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\u88ab\\u6355\\u9808\\u77e5\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cdupx8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 40, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 40, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563297817.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E1.\\u62c6\\u8d70HDD,\\u8a18\\u61b6\\u5361(\\u653e\\u53bb\\u7b2c\\u4e8c\\u5ea6)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2.\\u642c\\u8d70\\u96fb\\u5b50\\u7522\\u54c1,\\u52a0\\u6d17\\u6a5f\\u3002\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E3.\\u6211\\u7121\\u91ce\\u8b1b\\u3002\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E4.\\u5514\\u597d\\u7c3d\\u4efb\\u4f55\\u53e3\\u4f9b/\\u6587\\u4ef6\\u3002\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E5.\\u4e0d\\u8981\\u8207\\u72d7\\u9592\\u804a\\u3002\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E6.\\u5514\\u597d\\u89e3\\u9396\\u3002\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E7.\\u5165\\u5c4b\\u524d\\u8981\\u6709\\u641c\\u67e5\\u4ee4\\u3002\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E8.\\u6284\\u4f4e\\u5f8b\\u5e2b\\u96fb\\u8a71\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdupx8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Lawrencecea\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cdupx8/\\u88ab\\u6355\\u9808\\u77e5/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/cdupx8/\\u88ab\\u6355\\u9808\\u77e5/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563269017.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"that the bill is not gonna past, ms lam doesn't want her ego to be broken\", \"author_fullname\": \"t2_1936gthm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"can we all agree pro extradition or not\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cduh97\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563295927.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.HongKong\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethat the bill is not gonna past, ms lam doesn\\u0026#39;t want her ego to be broken\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cduh97\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"perrypoon\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cduh97/can_we_all_agree_pro_extradition_or_not/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/HongKong/comments/cduh97/can_we_all_agree_pro_extradition_or_not/\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563267127.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"HongKong\", \"selftext\": \"\", \"author_fullname\": \"t2_2o5taedo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"legislator Ann Chiang : Why are there foreigners showing up at every riot? do you see him commanding the rioters? Image 2: Why does everyone react so much to the Miss Ann video, it seems like many users are trying to cover up for him, hows suspicious.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/HongKong\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 128, \"hide_score\": false, \"name\": \"t3_cdufyg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 166, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 166, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/_EYNdchLXJAuLQlxptjAUPYhdwG-FlVoaUkXYYITM-8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563295611.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/4maol8gbpma31.jpg?auto=webp\\u0026s=384d73a149b30cec92f02f4a989067e9aefea839\", \"width\": 527, \"height\": 484}, \"resolutions\": [{\"url\": \"https://preview.redd.it/4maol8gbpma31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=703e7fd91e1662f90ea3d992691811344a2a3743\", \"width\": 108, \"height\": 99}, {\"url\": \"https://preview.redd.it/4maol8gbpma31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=06c57479f5812f82103ef0b4a34bfe17f353e72c\", \"width\": 216, \"height\": 198}, {\"url\": \"https://preview.redd.it/4maol8gbpma31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=310087a2369dddc3526c84544dce29f6190dfcc8\", \"width\": 320, \"height\": 293}], \"variants\": {}, \"id\": \"Din9AzJpZaA_uuMinbtZvwhIfHfTc4CKD4nZONvToOM\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2rbn0\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cdufyg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dynamic-Overlord\", \"num_crossposts\": 0, \"num_comments\": 64, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/HongKong/comments/cdufyg/legislator_ann_chiang_why_are_there_foreigners/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/4maol8gbpma31.jpg\", \"subreddit_subscribers\": 82462, \"created_utc\": 1563266811.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}], \"after\": \"t3_cdufyg\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["440606"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:36 GMT"], "x-ratelimit-remaining": ["583.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["17"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495035.071238,VS0,VE946"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["565"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/HongKong/new?raw_json=1&limit=100"}, "recorded_at": "2019-07-19T00:10:36"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=BXdaZ7hOTzJoXAeaMz"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/HongKong/new?raw_json=1&limit=100&before=t3_cezwlb"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:10:37 GMT"], "x-ratelimit-remaining": ["582.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18121-EWR"], "x-ratelimit-used": ["18"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495037.050218,VS0,VE77"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["563"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/HongKong/new?raw_json=1&limit=100&before=t3_cezwlb"}, "recorded_at": "2019-07-19T00:10:37"}], "recorded_with": "betamax/0.8.1"} \ No newline at end of file diff --git a/tests/cassettes/inbox.json b/tests/cassettes/inbox.json new file mode 100644 index 0000000..139ad71 --- /dev/null +++ b/tests/cassettes/inbox.json @@ -0,0 +1 @@ +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": "grant_type=refresh_token&refresh_token=**********"}, "headers": {"User-Agent": ["Linux:nnreddit:0.1.1 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.3.0"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "Connection": ["keep-alive"], "Content-Length": ["79"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["**********"]}, "method": "POST", "uri": "https://www.reddit.com/api/v1/access_token"}, "response": {"body": {"encoding": "UTF-8", "string": "{\"access_token\": \"**********\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"edit history identity mysubreddits privatemessages read report save submit subscribe vote\"}"}, "headers": {"Connection": ["keep-alive"], "Content-Length": ["209"], "Content-Type": ["application/json; charset=UTF-8"], "x-frame-options": ["SAMEORIGIN"], "x-content-type-options": ["nosniff"], "x-xss-protection": ["1; mode=block"], "cache-control": ["max-age=0, must-revalidate"], "X-Moose": ["majestic"], "Accept-Ranges": ["bytes"], "Date": ["Wed, 25 Nov 2020 18:50:44 GMT"], "Via": ["1.1 varnish"], "Set-Cookie": ["edgebucket=EybcjNOfmh59xW6M7J; Domain=reddit.com; Max-Age=63071999; Path=/; secure"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "Server": ["snooserv"]}, "status": {"code": 200, "message": "OK"}, "url": "https://www.reddit.com/api/v1/access_token"}, "recorded_at": "2020-11-25T18:50:44"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["Linux:nnreddit:0.1.1 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.3.0"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "Connection": ["keep-alive"], "Authorization": ["bearer **********"], "Cookie": ["edgebucket=EybcjNOfmh59xW6M7J"]}, "method": "GET", "uri": "https://oauth.reddit.com/subreddits/mine/subscriber/?limit=100&raw_json=1"}, "response": {"body": {"encoding": "UTF-8", "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOnly flair with \\u0026quot;Meta\\u0026quot; if you want to discuss the subreddit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"emacs\", \"header_img\": \"https://f.thumbs.redditmedia.com/1CBmBnoqVxNCXdVS.png\", \"title\": \"M-x emacs-reddit\", \"allow_galleries\": true, \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/emacs\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 46692, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2qhwu\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"The extensible, customizable, self-documenting real-time display editor.\", \"comment_score_hide_mins\": 0, \"allow_predictions\": false, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"https://styles.redditmedia.com/t5_2qhwu/styles/communityIcon_a5atrxo85yn31.png?width=256\\u0026s=2c9270e17210dd39eb526819ee3477a17706725c\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"Only flair with \\\"Meta\\\" if you want to discuss the subreddit.\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA sub-reddit for the timeless and infinitely powerful editor. \\u003Ca href=\\\"http://emacsrocks.com/\\\"\\u003EWant to see what Emacs is capable of?!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGet Emacs\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://ftp.gnu.org/gnu/emacs/windows/\\\"\\u003EWindows\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://emacsformacosx.com/\\\"\\u003EMac OS X\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGNU/Linux and BSD (Just get it from your distribution\\u0026#39;s package manager)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://git.savannah.gnu.org/cgit/emacs.git/tree/INSTALL\\\"\\u003EBuild it from source\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Resources\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/\\\"\\u003EEmacs Wiki\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://wikemacs.org/\\\"\\u003EWikEmacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://emacs.zeef.com/ehartc\\\"\\u003EEmacs Reference\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://shop.oreilly.com/product/9780596006488.do\\\"\\u003ELearning GNU Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf\\\"\\u003EEmacs Reference Card\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026amp;restrict_sr=on\\u0026amp;sort=new\\u0026amp;t=all\\\"\\u003EWeekly tips/tricks/etc threads\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Tutorials\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/\\\"\\u003EBeginner\\u2019s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/\\\"\\u003EAbsolute Beginner\\u0026#39;s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/\\\"\\u003EHow to Learn Emacs: A Hand-drawn One-pager for Beginners\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERelated Subreddits\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/orgmode\\\"\\u003Er/orgmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/evilmode\\\"\\u003Er/evilmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/spacemacs\\\"\\u003Er/spacemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/planetemacs\\\"\\u003Er/planetemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/doomemacs\\\"\\u003Er/doomemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUseful Emacs configuration files and distributions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://git.sr.ht/%7Etechnomancy/better-defaults\\\"\\u003EBetter Defaults\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick pain-saver tip\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/emacs/MovingTheCtrlKey\\\"\\u003EPut the Caps Lock key to better use!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": \"\", \"header_size\": [152, 50], \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1210079411.0, \"wls\": 6, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"allow_polls\": true, \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe extensible, customizable, self-documenting real-time display editor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"is_crosspostable_subreddit\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": \"\", \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_chat_post_creation\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2qhwu\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"A sub-reddit for the timeless and infinitely powerful editor. [Want to see what Emacs is capable of?!](http://emacsrocks.com/)\\n\\n**Get Emacs**\\n\\n* [Windows](http://ftp.gnu.org/gnu/emacs/windows/)\\n* [Mac OS X](http://emacsformacosx.com/)\\n* GNU/Linux and BSD (Just get it from your distribution's package manager)\\n* [Build it from source] (http://git.savannah.gnu.org/cgit/emacs.git/tree/INSTALL)\\n\\n**Emacs Resources**\\n\\n* [Emacs Wiki](http://www.emacswiki.org/)\\n* [WikEmacs](http://wikemacs.org/)\\n* [Emacs Reference](https://emacs.zeef.com/ehartc)\\n* [Learning GNU Emacs](http://shop.oreilly.com/product/9780596006488.do)\\n* [Emacs Reference Card](https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf)\\n* [Weekly tips/tricks/etc threads](/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026restrict_sr=on\\u0026sort=new\\u0026t=all)\\n\\n**Emacs Tutorials**\\n\\n* [Beginner\\u2019s Guide to Emacs](http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/)\\n* [Absolute Beginner's Guide to Emacs](http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/)\\n* [How to Learn Emacs: A Hand-drawn One-pager for Beginners](http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/)\\n\\n**Related Subreddits**\\n\\n* r/orgmode\\n* r/evilmode\\n* r/spacemacs\\n* r/planetemacs\\n* r/doomemacs\\n\\n**Useful Emacs configuration files and distributions**\\n\\n* [Better Defaults](https://git.sr.ht/~technomancy/better-defaults)\\n\\n**Quick pain-saver tip**\\n\\n* [Put the Caps Lock key to better use!](http://www.emacswiki.org/emacs/MovingTheCtrlKey)\", \"is_chat_post_feature_enabled\": true, \"submit_link_label\": \"\", \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": \"all_ads\", \"url\": \"/r/emacs/\", \"created_utc\": 1210050611.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}], \"after\": null, \"before\": null}}"}, "headers": {"Connection": ["keep-alive"], "Content-Length": ["8541"], "Content-Type": ["application/json; charset=UTF-8"], "x-ua-compatible": ["IE=edge"], "x-frame-options": ["SAMEORIGIN"], "x-content-type-options": ["nosniff"], "x-xss-protection": ["1; mode=block"], "expires": ["-1"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate"], "x-ratelimit-remaining": ["599.0"], "x-ratelimit-used": ["1"], "x-ratelimit-reset": ["556"], "X-Moose": ["majestic"], "Accept-Ranges": ["bytes"], "Date": ["Wed, 25 Nov 2020 18:50:45 GMT"], "Via": ["1.1 varnish"], "Vary": ["accept-encoding"], "Set-Cookie": ["session_tracker=aigqdcjojippkqqagh.0.1606330244996.Z0FBQUFBQmZ2cWVGMzFpTTNFNDMzVmtkSm1LRXJWWEMxRExIWUN5aF9EZUFxcElUbTJ0bVFMdy1IQzdpR3oyWEstMlU1OHV2TU9xMGwwTDZocDRRLWM0WUZINzlPbDliblhRNGdMcFVLT092SGxiMWZiLVVzRUZlT1pTSHFqd05MeU1DUE5JMVdjS3g; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 25-Nov-2020 20:50:45 GMT; secure; SameSite=None; Secure", "redesign_optout=true; Domain=reddit.com; Max-Age=94607999; Path=/; expires=Sat, 25-Nov-2023 18:50:45 GMT; secure", "csv=1; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "Server": ["snooserv"]}, "status": {"code": 200, "message": "OK"}, "url": "https://oauth.reddit.com/subreddits/mine/subscriber/?limit=100&raw_json=1"}, "recorded_at": "2020-11-25T18:50:45"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["Linux:nnreddit:0.1.1 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.3.0"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "Connection": ["keep-alive"], "Authorization": ["bearer **********"], "Cookie": ["csv=1; edgebucket=EybcjNOfmh59xW6M7J; redesign_optout=true; session_tracker=aigqdcjojippkqqagh.0.1606330244996.Z0FBQUFBQmZ2cWVGMzFpTTNFNDMzVmtkSm1LRXJWWEMxRExIWUN5aF9EZUFxcElUbTJ0bVFMdy1IQzdpR3oyWEstMlU1OHV2TU9xMGwwTDZocDRRLWM0WUZINzlPbDliblhRNGdMcFVLT092SGxiMWZiLVVzRUZlT1pTSHFqd05MeU1DUE5JMVdjS3g"]}, "method": "GET", "uri": "https://oauth.reddit.com/api/v1/me?raw_json=1"}, "response": {"body": {"encoding": "UTF-8", "string": "{\"is_employee\": false, \"seen_layout_switch\": true, \"has_visited_new_profile\": false, \"pref_no_profanity\": true, \"has_external_account\": false, \"pref_geopopular\": \"\", \"seen_redesign_modal\": true, \"pref_show_trending\": true, \"subreddit\": {\"default_set\": true, \"user_is_contributor\": false, \"banner_img\": \"\", \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"community_icon\": null, \"show_media\": true, \"icon_color\": \"#25B79F\", \"user_is_muted\": false, \"display_name\": \"u_nnreddit-user\", \"header_img\": null, \"title\": \"\", \"coins\": 0, \"previous_names\": [], \"over_18\": false, \"icon_size\": [256, 256], \"primary_color\": \"\", \"icon_img\": \"https://www.redditstatic.com/avatars/avatar_default_16_25B79F.png\", \"description\": \"\", \"submit_link_label\": \"\", \"header_size\": null, \"restrict_commenting\": false, \"subscribers\": 0, \"submit_text_label\": \"\", \"is_default_icon\": true, \"link_flair_position\": \"\", \"display_name_prefixed\": \"u/nnreddit-user\", \"key_color\": \"\", \"name\": \"t5_125o8u\", \"is_default_banner\": true, \"url\": \"/user/nnreddit-user/\", \"quarantine\": false, \"banner_size\": null, \"user_is_moderator\": true, \"public_description\": \"\", \"link_flair_enabled\": false, \"disable_contributor_requests\": false, \"subreddit_type\": \"user\", \"user_is_subscriber\": false}, \"snoovatar_img\": \"\", \"snoovatar_size\": null, \"gold_expiration\": null, \"has_gold_subscription\": false, \"is_sponsor\": false, \"num_friends\": 0, \"features\": {\"mod_service_mute_writes\": true, \"promoted_trend_blanks\": true, \"show_amp_link\": true, \"report_service_handles_report_writes_to_db_for_helpdesk_reports\": true, \"report_service_handles_self_harm_reports\": true, \"report_service_handles_report_writes_to_db_for_modmail_reports\": true, \"chat\": true, \"mweb_link_tab\": {\"owner\": \"growth\", \"variant\": \"control_1\", \"experiment_id\": 404}, \"reports_double_write_to_report_service_for_spam\": true, \"is_email_permission_required\": false, \"reports_double_write_to_report_service_for_modmail_reports\": true, \"mod_awards\": true, \"report_service_handles_report_writes_to_db_for_sendbird_chats\": true, \"expensive_coins_package\": true, \"mweb_xpromo_revamp_v2\": {\"owner\": \"growth\", \"variant\": \"treatment_5\", \"experiment_id\": 457}, \"econ_wallet_service\": true, \"awards_on_streams\": true, \"report_service_handles_accept_report\": true, \"mweb_xpromo_modal_listing_click_daily_dismissible_ios\": true, \"reports_double_write_to_report_service_for_som\": true, \"chat_subreddit\": true, \"reports_double_write_to_report_service_for_users\": true, \"modlog_copyright_removal\": true, \"report_service_handles_report_writes_to_db_for_users\": true, \"do_not_track\": true, \"report_service_handles_report_writes_to_db\": true, \"reports_double_write_to_report_service_for_helpdesk_reports\": true, \"report_service_handles_report_writes_to_db_for_spam\": true, \"reports_double_write_to_report_service_for_sendbird_chats\": true, \"mod_service_mute_reads\": true, \"mweb_xpromo_interstitial_comments_ios\": true, \"noreferrer_to_noopener\": true, \"chat_user_settings\": true, \"premium_subscriptions_table\": true, \"reports_double_write_to_report_service\": true, \"mweb_xpromo_interstitial_comments_android\": true, \"report_service_handles_report_writes_to_db_for_awards\": true, \"reports_double_write_to_report_service_for_awards\": true, \"mweb_sharing_web_share_api\": {\"owner\": \"growth\", \"variant\": \"control_1\", \"experiment_id\": 314}, \"chat_group_rollout\": true, \"resized_styles_images\": true, \"spez_modal\": true, \"mweb_xpromo_modal_listing_click_daily_dismissible_android\": true, \"mweb_xpromo_revamp_v3\": {\"owner\": \"growth\", \"variant\": \"control_2\", \"experiment_id\": 480}, \"report_service_handles_report_writes_to_db_for_som\": true}, \"has_android_subscription\": false, \"verified\": true, \"new_modmail_exists\": null, \"pref_autoplay\": true, \"coins\": 0, \"has_paypal_subscription\": false, \"has_subscribed_to_premium\": false, \"id\": \"3um52nx7\", \"has_stripe_subscription\": false, \"oauth_client_id\": \"KBV2seGZgHOa9g\", \"can_create_subreddit\": true, \"over_18\": true, \"is_gold\": false, \"is_mod\": false, \"awarder_karma\": 0, \"suspension_expiration_utc\": null, \"has_verified_email\": true, \"is_suspended\": false, \"pref_video_autoplay\": true, \"in_chat\": true, \"can_edit_name\": false, \"in_redesign_beta\": false, \"icon_img\": \"https://www.redditstatic.com/avatars/avatar_default_16_25B79F.png\", \"has_mod_mail\": false, \"pref_nightmode\": false, \"awardee_karma\": 0, \"hide_from_robots\": false, \"password_set\": true, \"link_karma\": 127, \"force_password_reset\": false, \"total_karma\": 156, \"seen_give_award_tooltip\": false, \"inbox_count\": 2, \"seen_premium_adblock_modal\": false, \"pref_top_karma_subreddits\": true, \"has_mail\": true, \"pref_show_snoovatar\": false, \"name\": \"nnreddit-user\", \"pref_clickgadget\": 5, \"created\": 1559101744.0, \"gold_creddits\": 0, \"created_utc\": 1559072944.0, \"has_ios_subscription\": false, \"pref_show_twitter\": false, \"in_beta\": false, \"comment_karma\": 29, \"has_subscribed\": true, \"linked_identities\": [], \"seen_subreddit_chat_ftux\": false}"}, "headers": {"Connection": ["keep-alive"], "Content-Length": ["4955"], "Content-Type": ["application/json; charset=UTF-8"], "x-frame-options": ["SAMEORIGIN"], "x-content-type-options": ["nosniff"], "x-xss-protection": ["1; mode=block"], "expires": ["-1"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate"], "x-ratelimit-remaining": ["598.0"], "x-ratelimit-used": ["2"], "x-ratelimit-reset": ["555"], "X-Moose": ["majestic"], "Accept-Ranges": ["bytes"], "Date": ["Wed, 25 Nov 2020 18:50:45 GMT"], "Via": ["1.1 varnish"], "Vary": ["accept-encoding"], "Set-Cookie": ["session_tracker=aigqdcjojippkqqagh.0.1606330245140.Z0FBQUFBQmZ2cWVGNVpMQnF5Y204dnR3NUVWQ2hjSnJnaHlGZjRqNllBU2VNNnNwb1laX3RmQlhwRWRrRHh2T3RTemVNZmpPWUNjUkF1c0RGdGpRNlJlaDgydFlKc0tpc0lmeGhQSWZVaGtiRTh6QWFVUlFnVnctVTFfaHdMZVljZU9OczBGQ3hlR2Q; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 25-Nov-2020 20:50:45 GMT; secure; SameSite=None; Secure"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "Server": ["snooserv"]}, "status": {"code": 200, "message": "OK"}, "url": "https://oauth.reddit.com/api/v1/me?raw_json=1"}, "recorded_at": "2020-11-25T18:50:45"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["Linux:nnreddit:0.1.1 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.3.0"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "Connection": ["keep-alive"], "Authorization": ["bearer **********"], "Cookie": ["csv=1; edgebucket=EybcjNOfmh59xW6M7J; redesign_optout=true; session_tracker=aigqdcjojippkqqagh.0.1606330245140.Z0FBQUFBQmZ2cWVGNVpMQnF5Y204dnR3NUVWQ2hjSnJnaHlGZjRqNllBU2VNNnNwb1laX3RmQlhwRWRrRHh2T3RTemVNZmpPWUNjUkF1c0RGdGpRNlJlaDgydFlKc0tpc0lmeGhQSWZVaGtiRTh6QWFVUlFnVnctVTFfaHdMZVljZU9OczBGQ3hlR2Q"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?limit=100&raw_json=1"}, "response": {"body": {"encoding": "UTF-8", "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0u68w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdku6nr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tconfrey\", \"num_comments\": 1, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606329410.0, \"send_replies\": true, \"parent_id\": \"t3_k0u68w\", \"score\": 1, \"author_fullname\": \"t2_y2nwrq4\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not sure if you want to center as you are searching but C-l (ie recenter-top-bottom) will move the current buffer line to the middle line on the screen. [This post](http://pragmaticemacs.com/emacs/dont-search-swipe/) shows how to get swiper to recenter on exit.\", \"link_title\": \"How to get swiper(or other searches) to move the found text to the middle of the window?\", \"author_flair_css_class\": null, \"name\": \"t1_gdku6nr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not sure if you want to center as you are searching but C-l (ie recenter-top-bottom) will move the current buffer line to the middle line on the screen. \\u003Ca href=\\\"http://pragmaticemacs.com/emacs/dont-search-swipe/\\\"\\u003EThis post\\u003C/a\\u003E shows how to get swiper to recenter on exit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0u68w/how_to_get_swiperor_other_searches_to_move_the/gdku6nr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0u68w/how_to_get_swiperor_other_searches_to_move_the/\", \"report_reasons\": null, \"link_author\": \"nedhanks\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0u68w/how_to_get_swiperor_other_searches_to_move_the/\", \"created\": 1606358210.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0wcu3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdkt4x7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"wouldyoumindawfully\", \"num_comments\": 2, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606328901.0, \"send_replies\": true, \"parent_id\": \"t1_gdkqu2y\", \"score\": 1, \"author_fullname\": \"t2_4wl2xsbn\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It sounds like it was working fine before. I\\u2019ve never done much stuff with golang, but I remember reading an acknowledgment of the relative immaturity of their LSP server. Worth opening an issue on the repo with retro steps\", \"link_title\": \"golang + LSP causes sustained CPU usage\", \"author_flair_css_class\": null, \"name\": \"t1_gdkt4x7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt sounds like it was working fine before. I\\u2019ve never done much stuff with golang, but I remember reading an acknowledgment of the relative immaturity of their LSP server. Worth opening an issue on the repo with retro steps\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0wcu3/golang_lsp_causes_sustained_cpu_usage/gdkt4x7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0wcu3/golang_lsp_causes_sustained_cpu_usage/\", \"report_reasons\": null, \"link_author\": \"gws10463\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0wcu3/golang_lsp_causes_sustained_cpu_usage/\", \"created\": 1606357701.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdks7qq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Okesa\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606328456.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 1, \"author_fullname\": \"t2_4utg0yv\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Org mode.\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_gdks7qq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOrg mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdks7qq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606357256.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0wcu3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdkqu2y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ieure\", \"num_comments\": 2, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606327772.0, \"send_replies\": true, \"parent_id\": \"t3_k0wcu3\", \"score\": 1, \"author_fullname\": \"t2_41fij\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"The problem is that gopls is absolutely awful, which is a natural consequence of Go itself being an egregiously dumb language. There is no fix except to not use those things.\", \"link_title\": \"golang + LSP causes sustained CPU usage\", \"author_flair_css_class\": null, \"name\": \"t1_gdkqu2y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe problem is that gopls is absolutely awful, which is a natural consequence of Go itself being an egregiously dumb language. There is no fix except to not use those things.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0wcu3/golang_lsp_causes_sustained_cpu_usage/gdkqu2y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0wcu3/golang_lsp_causes_sustained_cpu_usage/\", \"report_reasons\": null, \"link_author\": \"gws10463\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0wcu3/golang_lsp_causes_sustained_cpu_usage/\", \"created\": 1606356572.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdkp0kw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ir210\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606326892.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 1, \"author_fullname\": \"t2_2822oi7\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Programmability\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdkp0kw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EProgrammability\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdkp0kw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606355692.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jvpccf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdkouh6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"lafrenierejm\", \"num_comments\": 43, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606326811.0, \"send_replies\": true, \"parent_id\": \"t1_gdcjf6p\", \"score\": 1, \"author_fullname\": \"t2_zkcrg\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"What directory is the `find` command being invoked from when running via the makefile?\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_gdkouh6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat directory is the \\u003Ccode\\u003Efind\\u003C/code\\u003E command being invoked from when running via the makefile?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jvpccf/weekly_tipstricketc_thread/gdkouh6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jvpccf/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jvpccf/weekly_tipstricketc_thread/\", \"created\": 1606355611.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdknw8e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"burning_spear_rtp\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606326365.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 1, \"author_fullname\": \"t2_40il24vc\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"The fact I can do everything without having to take my hands off the keyboard to reach for a mouse. It makes it SO much faster. Second, I find the ability to easily record a macro to be a real time saver when doing repetitive tasks.\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdknw8e\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe fact I can do everything without having to take my hands off the keyboard to reach for a mouse. It makes it SO much faster. Second, I find the ability to easily record a macro to be a real time saver when doing repetitive tasks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdknw8e/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606355165.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0muwu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdknk1s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nobiot\", \"num_comments\": 12, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606326204.0, \"send_replies\": true, \"parent_id\": \"t1_gdklqz6\", \"score\": 1, \"author_fullname\": \"t2_5bzjut1f\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I think it has already gone beyond my book and is a project on its own :)\\n\\nI just looked through org-clones code; very interesting. For essentially the same problem, a very different solution approach. I can learn a lot from how it identifies the region to sync, and keep clones in sync.\", \"link_title\": \"You probably all know this but I found this post on zettelkasten interesting. I didn't know about transclusion. The author mentions Emacs but do you know if it supports transclusion as well?\", \"author_flair_css_class\": null, \"name\": \"t1_gdknk1s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think it has already gone beyond my book and is a project on its own :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI just looked through org-clones code; very interesting. For essentially the same problem, a very different solution approach. I can learn a lot from how it identifies the region to sync, and keep clones in sync.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/gdknk1s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/\", \"report_reasons\": null, \"link_author\": \"emacsexplorer\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"created\": 1606355004.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0muwu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdklqz6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 12, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606325343.0, \"send_replies\": true, \"parent_id\": \"t1_gdk2egx\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I regret I can't really contribute but you implementation so far is the most complete/promising, I'll really hope it can grow beyond a single book writing :-)\", \"link_title\": \"You probably all know this but I found this post on zettelkasten interesting. I didn't know about transclusion. The author mentions Emacs but do you know if it supports transclusion as well?\", \"author_flair_css_class\": null, \"name\": \"t1_gdklqz6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI regret I can\\u0026#39;t really contribute but you implementation so far is the most complete/promising, I\\u0026#39;ll really hope it can grow beyond a single book writing :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/gdklqz6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/\", \"report_reasons\": null, \"link_author\": \"emacsexplorer\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"created\": 1606354143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jzhmwb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdkkq0x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"publicvoit\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606324844.0, \"send_replies\": true, \"parent_id\": \"t1_gdk3ec8\", \"score\": 1, \"author_fullname\": \"t2_4ih66csc\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I can think of several things that might diminish your user experience following that strategy. Maybe the host ID is a different one (I don't know how it is generated) so that you can not sync to your home computer. Maybe the config gets confused when the folder structure is slightly different. Maybe Syncthing gets confused when the scan of the sync folders differs too much. And so forth.\\n\\nI'd try to run it on a USB thumb drive which is 100% under your control so that you avoid as much issues as possible. The potential issue with the random ID still persists though.\", \"link_title\": \"Sync documents between school computer and home PC\", \"author_flair_css_class\": null, \"name\": \"t1_gdkkq0x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can think of several things that might diminish your user experience following that strategy. Maybe the host ID is a different one (I don\\u0026#39;t know how it is generated) so that you can not sync to your home computer. Maybe the config gets confused when the folder structure is slightly different. Maybe Syncthing gets confused when the scan of the sync folders differs too much. And so forth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d try to run it on a USB thumb drive which is 100% under your control so that you avoid as much issues as possible. The potential issue with the random ID still persists though.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jzhmwb/sync_documents_between_school_computer_and_home_pc/gdkkq0x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jzhmwb/sync_documents_between_school_computer_and_home_pc/\", \"report_reasons\": null, \"link_author\": \"Bu156\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jzhmwb/sync_documents_between_school_computer_and_home_pc/\", \"created\": 1606353644.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0q2xf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdkh6mw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"github-alphapapa\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606323136.0, \"send_replies\": true, \"parent_id\": \"t1_gdkczy5\", \"score\": 5, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I don't understand why you would write all that. Thierry *is* still working on Helm. Go look at the list of recent commits. He doesn't have to make a proclamation about it if he doesn't want to. *If* there comes a time that Helm needs to be forked, so be it. Unless and until then, why the chatter about it? Let it be.\", \"link_title\": \"Future of Helm and new maintainer?\", \"author_flair_css_class\": null, \"name\": \"t1_gdkh6mw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t understand why you would write all that. Thierry \\u003Cem\\u003Eis\\u003C/em\\u003E still working on Helm. Go look at the list of recent commits. He doesn\\u0026#39;t have to make a proclamation about it if he doesn\\u0026#39;t want to. \\u003Cem\\u003EIf\\u003C/em\\u003E there comes a time that Helm needs to be forked, so be it. Unless and until then, why the chatter about it? Let it be.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/gdkh6mw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"report_reasons\": null, \"link_author\": \"ambrevar\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"created\": 1606351936.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdkdqlx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SaraBiYo\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606321458.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 2, \"author_fullname\": \"t2_4se2x\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Honestly, because it is **fun**!\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdkdqlx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHonestly, because it is \\u003Cstrong\\u003Efun\\u003C/strong\\u003E!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdkdqlx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606350258.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0q2xf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdkczy5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vfclists\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606321096.0, \"send_replies\": true, \"parent_id\": \"t1_gdk6n8y\", \"score\": 1, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It looks like Thierry is saying that he is not actively maintaining the project anymore, ie he shouldn't be depended upon to implement some needed fixes and features, or even be asked for help or advice if something isn't working as expected or desired.\\n\\nThe best thing to do is to fork it, and check with thierry if there are some fixes or features in the fork he would like to merge into his repo. He might even give up on his and give some advice on the fork where he is the one who understands the rationale for things being the way they are.\\n\\nI don't think this is any different from the Neovim fork, or Guido van Rossum not being actively involved in Python anymore.\\n\\nIf users of the project feel Thierry has done a lot of work he should be rewarded for, they are free to make him some donations whether or not he continues with the project, or whether he supports, contributes and advises on any fork or not. That is quite a separate issue.\\n\\nEither way you can't expect people who have come to depend on a project to be indifferent to issues which still remain within it and its future.\", \"link_title\": \"Future of Helm and new maintainer?\", \"author_flair_css_class\": null, \"name\": \"t1_gdkczy5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt looks like Thierry is saying that he is not actively maintaining the project anymore, ie he shouldn\\u0026#39;t be depended upon to implement some needed fixes and features, or even be asked for help or advice if something isn\\u0026#39;t working as expected or desired.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe best thing to do is to fork it, and check with thierry if there are some fixes or features in the fork he would like to merge into his repo. He might even give up on his and give some advice on the fork where he is the one who understands the rationale for things being the way they are.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t think this is any different from the Neovim fork, or Guido van Rossum not being actively involved in Python anymore.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf users of the project feel Thierry has done a lot of work he should be rewarded for, they are free to make him some donations whether or not he continues with the project, or whether he supports, contributes and advises on any fork or not. That is quite a separate issue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEither way you can\\u0026#39;t expect people who have come to depend on a project to be indifferent to issues which still remain within it and its future.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/gdkczy5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"report_reasons\": null, \"link_author\": \"ambrevar\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"created\": 1606349896.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0q2xf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdkckmi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606320883.0, \"send_replies\": true, \"parent_id\": \"t1_gdk7qn7\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I know your intentions are good. I'm just trying to take a hint from what I see: Thierry unarchived the repo and is making commits again. Maybe he doesn't want to have a big, public, \\\"I'm back!\\\" announcement. Maybe he doesn't want to commit to anything. Maybe he just wants to work on Helm when he has time and feels like it. And I'm fine with that. Helm is great, and it doesn't need much done to it.\", \"link_title\": \"Future of Helm and new maintainer?\", \"author_flair_css_class\": null, \"name\": \"t1_gdkckmi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know your intentions are good. I\\u0026#39;m just trying to take a hint from what I see: Thierry unarchived the repo and is making commits again. Maybe he doesn\\u0026#39;t want to have a big, public, \\u0026quot;I\\u0026#39;m back!\\u0026quot; announcement. Maybe he doesn\\u0026#39;t want to commit to anything. Maybe he just wants to work on Helm when he has time and feels like it. And I\\u0026#39;m fine with that. Helm is great, and it doesn\\u0026#39;t need much done to it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/gdkckmi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"report_reasons\": null, \"link_author\": \"ambrevar\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"created\": 1606349683.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdkbo5u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"renat2017\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606320434.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 2, \"author_fullname\": \"t2_8z6pnxtl\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"The keybindings, of course.\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdkbo5u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe keybindings, of course.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdkbo5u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606349234.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0q2xf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdkb28k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"michaelhoffman\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606320125.0, \"send_replies\": true, \"parent_id\": \"t3_k0q2xf\", \"score\": 6, \"author_fullname\": \"t2_4s43f\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I don't feel opening like your issue was out of line. And closing it for now seems like a good idea too.\\n\\nI'm sure everyone would rather see Thierry keep maintaining Helm if he wants to. Or to have as long a break as he wants without thinking about it or making public statements. His previous statement on it did seem pretty final though.\", \"link_title\": \"Future of Helm and new maintainer?\", \"author_flair_css_class\": null, \"name\": \"t1_gdkb28k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t feel opening like your issue was out of line. And closing it for now seems like a good idea too.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sure everyone would rather see Thierry keep maintaining Helm if he wants to. Or to have as long a break as he wants without thinking about it or making public statements. His previous statement on it did seem pretty final though.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/gdkb28k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"report_reasons\": null, \"link_author\": \"ambrevar\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"created\": 1606348925.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdkaole\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Jerryy_\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606319931.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 2, \"author_fullname\": \"t2_13xxhx\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Org mode\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdkaole\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOrg mode\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdkaole/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606348731.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0q2xf\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdkakum\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ambrevar\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606319878.0, \"send_replies\": true, \"parent_id\": \"t1_gdka7z4\", \"score\": 2, \"author_fullname\": \"t2_ac3lmr\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"The notice is still online: https://github.com/emacs-helm/helm/issues/2386\\n\\n\\nThe last release suggests it's going to be the last version under his maintenance:\\n\\nhttps://github.com/emacs-helm/helm/releases/tag/v3.7.0\", \"link_title\": \"Future of Helm and new maintainer?\", \"author_flair_css_class\": null, \"name\": \"t1_gdkakum\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe notice is still online: \\u003Ca href=\\\"https://github.com/emacs-helm/helm/issues/2386\\\"\\u003Ehttps://github.com/emacs-helm/helm/issues/2386\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last release suggests it\\u0026#39;s going to be the last version under his maintenance:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/emacs-helm/helm/releases/tag/v3.7.0\\\"\\u003Ehttps://github.com/emacs-helm/helm/releases/tag/v3.7.0\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/gdkakum/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"report_reasons\": null, \"link_author\": \"ambrevar\", \"subreddit\": \"emacs\", \"author_flair_text\": \"Guix Next Emms Helm Evil Collection\", \"link_url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"created\": 1606348678.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0q2xf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdka7z4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606319698.0, \"send_replies\": true, \"parent_id\": \"t1_gdk8ucj\", \"score\": 2, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Search thir reddit or elswhere; I think Thierry removed notice about his letting go Helm from his Github; but do a search and you will find it. Helm was archived for a week, and as you see now it is back to normal again.\", \"link_title\": \"Future of Helm and new maintainer?\", \"author_flair_css_class\": null, \"name\": \"t1_gdka7z4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESearch thir reddit or elswhere; I think Thierry removed notice about his letting go Helm from his Github; but do a search and you will find it. Helm was archived for a week, and as you see now it is back to normal again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/gdka7z4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"report_reasons\": null, \"link_author\": \"ambrevar\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"created\": 1606348498.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk8w6j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sisyphus\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606319022.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 2, \"author_fullname\": \"t2_31lml\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It\\u2019s the best program for fast typers to input text with and I type fast and input a lot of text.\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdk8w6j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u2019s the best program for fast typers to input text with and I type fast and input a lot of text.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdk8w6j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606347822.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0q2xf\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk8ucj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ambrevar\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606318996.0, \"send_replies\": true, \"parent_id\": \"t1_gdk821q\", \"score\": 1, \"author_fullname\": \"t2_ac3lmr\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Oh, I wasn't aware of this. Which news is it?\", \"link_title\": \"Future of Helm and new maintainer?\", \"author_flair_css_class\": null, \"name\": \"t1_gdk8ucj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh, I wasn\\u0026#39;t aware of this. Which news is it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/gdk8ucj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"report_reasons\": null, \"link_author\": \"ambrevar\", \"subreddit\": \"emacs\", \"author_flair_text\": \"Guix Next Emms Helm Evil Collection\", \"link_url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"created\": 1606347796.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0q2xf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk821q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606318590.0, \"send_replies\": true, \"parent_id\": \"t3_k0q2xf\", \"score\": 3, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thierry took a break and archived it for a week or so; he is back again. It is yesterdays news. Rather ask how you could help Tierry in the future (a donation might be a good start).\", \"link_title\": \"Future of Helm and new maintainer?\", \"author_flair_css_class\": null, \"name\": \"t1_gdk821q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThierry took a break and archived it for a week or so; he is back again. It is yesterdays news. Rather ask how you could help Tierry in the future (a donation might be a good start).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/gdk821q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"report_reasons\": null, \"link_author\": \"ambrevar\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"created\": 1606347390.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0q2xf\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk7qn7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ambrevar\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606318424.0, \"send_replies\": true, \"parent_id\": \"t1_gdk6n8y\", \"score\": 0, \"author_fullname\": \"t2_ac3lmr\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E It seems to me that that's what happens over and over again. \\n\\nI didn't see such issue raised on GitHub since he retired. It's been 2 months since the announcement:\\n\\nhttps://github.com/emacs-helm/helm/issues/2386\\n\\nand no discussion has happened yet. It's just about getting a bit organized about the future of Helm :)\\n\\nI just meant to bring up a harmless discussion between benevolent Helm supporters, that's it ;)\", \"link_title\": \"Future of Helm and new maintainer?\", \"author_flair_css_class\": null, \"name\": \"t1_gdk7qn7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIt seems to me that that\\u0026#39;s what happens over and over again. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI didn\\u0026#39;t see such issue raised on GitHub since he retired. It\\u0026#39;s been 2 months since the announcement:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/emacs-helm/helm/issues/2386\\\"\\u003Ehttps://github.com/emacs-helm/helm/issues/2386\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand no discussion has happened yet. It\\u0026#39;s just about getting a bit organized about the future of Helm :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI just meant to bring up a harmless discussion between benevolent Helm supporters, that\\u0026#39;s it ;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/gdk7qn7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"report_reasons\": null, \"link_author\": \"ambrevar\", \"subreddit\": \"emacs\", \"author_flair_text\": \"Guix Next Emms Helm Evil Collection\", \"link_url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"created\": 1606347224.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0q2xf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk6n8y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"github-alphapapa\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606317851.0, \"send_replies\": true, \"parent_id\": \"t1_gdk2pj2\", \"score\": 13, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"How would you feel if you maintained a project with over 2.4 million downloads, developed with over 10,000 commits and 2,000 closed issues and pull requests, and every time you take a little break, threads pop up on your repo and on Reddit asking, \\\"What about Helm? Do we need to fork it yet? Shouldn't he hand it over to someone else?\\\" It seems to me that that's what happens over and over again. If I were him, it would not help me feel recharged and ready to dive back in. (And in this case, it looks like he already has.) \\n\\nPlease, just give it a rest and enjoy what we've been given. If the time ever comes that Thierry wants to truly retire from Helm's stewardship, he will do what's needed to ensure that it's well taken care of. :)\", \"link_title\": \"Future of Helm and new maintainer?\", \"author_flair_css_class\": null, \"name\": \"t1_gdk6n8y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow would you feel if you maintained a project with over 2.4 million downloads, developed with over 10,000 commits and 2,000 closed issues and pull requests, and every time you take a little break, threads pop up on your repo and on Reddit asking, \\u0026quot;What about Helm? Do we need to fork it yet? Shouldn\\u0026#39;t he hand it over to someone else?\\u0026quot; It seems to me that that\\u0026#39;s what happens over and over again. If I were him, it would not help me feel recharged and ready to dive back in. (And in this case, it looks like he already has.) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease, just give it a rest and enjoy what we\\u0026#39;ve been given. If the time ever comes that Thierry wants to truly retire from Helm\\u0026#39;s stewardship, he will do what\\u0026#39;s needed to ensure that it\\u0026#39;s well taken care of. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/gdk6n8y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"report_reasons\": null, \"link_author\": \"ambrevar\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"created\": 1606346651.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 13}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk6id1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"loafofpiecrust\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606317778.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 2, \"author_fullname\": \"t2_sizaw\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Discoverable keyboard interfaces. I don't have to use the mouse to learn keyboard shortcuts, flipping between those. When I learn that \\\"c c\\\" commits in Magit, that's all I need. That plus ease of producing such interfaces can easily cover a surprising amount of day to day software needs.\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdk6id1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDiscoverable keyboard interfaces. I don\\u0026#39;t have to use the mouse to learn keyboard shortcuts, flipping between those. When I learn that \\u0026quot;c c\\u0026quot; commits in Magit, that\\u0026#39;s all I need. That plus ease of producing such interfaces can easily cover a surprising amount of day to day software needs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdk6id1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606346578.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0kyi4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk4jnu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"itistheblurstoftimes\", \"num_comments\": 7, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606316715.0, \"send_replies\": true, \"parent_id\": \"t1_gdk34is\", \"score\": 2, \"author_fullname\": \"t2_3gjjtpnq\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Good idea. Occurred to me as well, at least in passing. Definitely not difficult to add. Will work on fixing the org-ql side-effect issue first.\", \"link_title\": \"[RFC] org-timed-alerts - receive warnings for upcoming events in your day\", \"author_flair_css_class\": null, \"name\": \"t1_gdk4jnu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood idea. Occurred to me as well, at least in passing. Definitely not difficult to add. Will work on fixing the org-ql side-effect issue first.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/gdk4jnu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"report_reasons\": null, \"link_author\": \"itistheblurstoftimes\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"created\": 1606345515.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0kyi4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk3g4z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pimiddy\", \"num_comments\": 7, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606316110.0, \"send_replies\": true, \"parent_id\": \"t1_gdjo4ga\", \"score\": 1, \"author_fullname\": \"t2_6slii\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Oh, that's a very good idea! Can anyone provide a snippet that accomplishes this?\", \"link_title\": \"[RFC] org-timed-alerts - receive warnings for upcoming events in your day\", \"author_flair_css_class\": null, \"name\": \"t1_gdk3g4z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh, that\\u0026#39;s a very good idea! Can anyone provide a snippet that accomplishes this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/gdk3g4z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"report_reasons\": null, \"link_author\": \"itistheblurstoftimes\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"created\": 1606344910.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jzhmwb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk3ec8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vfclists\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606316081.0, \"send_replies\": true, \"parent_id\": \"t1_gdcasdm\", \"score\": 1, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"If Windows allows you to run software from your personal directories you should be able to run it there. Just extract the syncthing executables there and see if it will run, preferably in its own CMD window.\", \"link_title\": \"Sync documents between school computer and home PC\", \"author_flair_css_class\": null, \"name\": \"t1_gdk3ec8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf Windows allows you to run software from your personal directories you should be able to run it there. Just extract the syncthing executables there and see if it will run, preferably in its own CMD window.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jzhmwb/sync_documents_between_school_computer_and_home_pc/gdk3ec8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jzhmwb/sync_documents_between_school_computer_and_home_pc/\", \"report_reasons\": null, \"link_author\": \"Bu156\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jzhmwb/sync_documents_between_school_computer_and_home_pc/\", \"created\": 1606344881.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0kyi4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk34is\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606315930.0, \"send_replies\": true, \"parent_id\": \"t1_gdjyw2w\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sounds like yours is the best one! :)\\n\\nHere's a quick idea: use an optional property on items to define how many minutes before an event a timed alert should be displayed. For example, I might want to be reminded an hour before an important meeting, and then 30 minutes before it, then 15, etc. CalDAV clients offer that kind of multiple-alert feature, which is pretty handy sometimes. org-ql would make it easy to retrieve that value, then you could split the string and apply the multiple values, something like:\\n\\n :PROPERTIES:\\n :timed-alerts: 1:00 0:30 0:15\\n :END:\\n\\nOr even:\\n\\n :timed-alerts: 60 30 15\\n\\n\\u003E Every time I have to deal with timestamps, ts is there to save me from parsing hell. Thank you for that and org-ql as well.\\n\\nI'm always glad to hear they're useful to someone. Please let me know if you have any ideas for them.\", \"link_title\": \"[RFC] org-timed-alerts - receive warnings for upcoming events in your day\", \"author_flair_css_class\": null, \"name\": \"t1_gdk34is\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESounds like yours is the best one! :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s a quick idea: use an optional property on items to define how many minutes before an event a timed alert should be displayed. For example, I might want to be reminded an hour before an important meeting, and then 30 minutes before it, then 15, etc. CalDAV clients offer that kind of multiple-alert feature, which is pretty handy sometimes. org-ql would make it easy to retrieve that value, then you could split the string and apply the multiple values, something like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E:PROPERTIES:\\n:timed-alerts: 1:00 0:30 0:15\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EOr even:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E:timed-alerts: 60 30 15\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EEvery time I have to deal with timestamps, ts is there to save me from parsing hell. Thank you for that and org-ql as well.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m always glad to hear they\\u0026#39;re useful to someone. Please let me know if you have any ideas for them.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/gdk34is/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"report_reasons\": null, \"link_author\": \"itistheblurstoftimes\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"created\": 1606344730.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0q2xf\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk2pj2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ambrevar\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606315693.0, \"send_replies\": true, \"parent_id\": \"t1_gdjz159\", \"score\": 0, \"author_fullname\": \"t2_ac3lmr\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I don't mean to pressure anyone and I hope I didn't :p\\n\\nThe repo has been unarchived, so it seems to me it's the right place to discuss the maintenance of Helm. If the maintainer wishes the issue tracker to stay clean, no problem, we can move the discussion here for instance.\\n\\nFinally this is just about having a discussion within the Helm community. Since Helm is free software, maybe someone would be interested in a fork. Important thing is keeping this discussion public and transparent :)\", \"link_title\": \"Future of Helm and new maintainer?\", \"author_flair_css_class\": null, \"name\": \"t1_gdk2pj2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t mean to pressure anyone and I hope I didn\\u0026#39;t :p\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe repo has been unarchived, so it seems to me it\\u0026#39;s the right place to discuss the maintenance of Helm. If the maintainer wishes the issue tracker to stay clean, no problem, we can move the discussion here for instance.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally this is just about having a discussion within the Helm community. Since Helm is free software, maybe someone would be interested in a fork. Important thing is keeping this discussion public and transparent :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/gdk2pj2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"report_reasons\": null, \"link_author\": \"ambrevar\", \"subreddit\": \"emacs\", \"author_flair_text\": \"Guix Next Emms Helm Evil Collection\", \"link_url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"created\": 1606344493.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 1, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0muwu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk2egx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"nobiot\", \"num_comments\": 12, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606315518.0, \"send_replies\": true, \"parent_id\": \"t1_gdje1va\", \"score\": 4, \"author_fullname\": \"t2_5bzjut1f\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks for the mention, /u/ftrx, and for your very favorable comment. \\nI didn't know abut org-clone; I will look at it as a reference. \\n\\n\\nI am developing it primarily for my own needs in writing a non-fiction book (for my domain of work). I am humbled to see so much positive feedback. I am trying to have another update in 1 our 2 weekends -- I can only work on it on weekends. Fingers crossed ;)\", \"link_title\": \"You probably all know this but I found this post on zettelkasten interesting. I didn't know about transclusion. The author mentions Emacs but do you know if it supports transclusion as well?\", \"author_flair_css_class\": null, \"name\": \"t1_gdk2egx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for the mention, \\u003Ca href=\\\"/u/ftrx\\\"\\u003E/u/ftrx\\u003C/a\\u003E, and for your very favorable comment.\\u003Cbr/\\u003E\\nI didn\\u0026#39;t know abut org-clone; I will look at it as a reference. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am developing it primarily for my own needs in writing a non-fiction book (for my domain of work). I am humbled to see so much positive feedback. I am trying to have another update in 1 our 2 weekends -- I can only work on it on weekends. Fingers crossed ;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/gdk2egx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/\", \"report_reasons\": null, \"link_author\": \"emacsexplorer\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"created\": 1606344318.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k011fo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk1sdh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"w0ntfix\", \"num_comments\": 4, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606315165.0, \"send_replies\": true, \"parent_id\": \"t1_gdjz2mg\", \"score\": 2, \"author_fullname\": \"t2_19rrs330\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"`org-clock-sum-current-item` is what I think I'm looking for\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_gdk1sdh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Eorg-clock-sum-current-item\\u003C/code\\u003E is what I think I\\u0026#39;m looking for\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k011fo/weekly_tipstricketc_thread/gdk1sdh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k011fo/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k011fo/weekly_tipstricketc_thread/\", \"created\": 1606343965.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0b4qv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdk070x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"elgalloitaliano\", \"num_comments\": 14, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606314216.0, \"send_replies\": true, \"parent_id\": \"t1_gdh8r3w\", \"score\": 1, \"author_fullname\": \"t2_dgscxd4\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'd also be interested\", \"link_title\": \"Fun with a distractionless Emacs and posframes\", \"author_flair_css_class\": null, \"name\": \"t1_gdk070x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d also be interested\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0b4qv/fun_with_a_distractionless_emacs_and_posframes/gdk070x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0b4qv/fun_with_a_distractionless_emacs_and_posframes/\", \"report_reasons\": null, \"link_author\": \"rfeynman42\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/gallery/k0b4qv\", \"created\": 1606343016.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjzzdq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fergie\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606314088.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 1, \"author_fullname\": \"t2_1u8e\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It is the most powerful IDE available. To some people this is not obvious, since it requires more effort to get up to speed in than other platforms.\\n\\nSince Emacs does everything, it is not the best at certain things. For example- if you are all-in on TypeScript, then Visual Studio is going to be the best editor for you. However, when it comes to building things with based on actual standards (POSIX, W3C, etc), then Emacs generally has the best support available.\\n\\nIt is very portable- you can use it in any terminal. You can move from one PC to another (mac/windows/linux) and all you have to do is download your conf file to get it set up.\\n\\nI have been programming for 20 years, and Emacs is a constant. I have never had to jump from Dreamweaver to Eclipse to Visual Studio to Sublime to Visual Studio Code. Emacs has been consistently just as good as these other IDEs.\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjzzdq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt is the most powerful IDE available. To some people this is not obvious, since it requires more effort to get up to speed in than other platforms.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince Emacs does everything, it is not the best at certain things. For example- if you are all-in on TypeScript, then Visual Studio is going to be the best editor for you. However, when it comes to building things with based on actual standards (POSIX, W3C, etc), then Emacs generally has the best support available.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is very portable- you can use it in any terminal. You can move from one PC to another (mac/windows/linux) and all you have to do is download your conf file to get it set up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been programming for 20 years, and Emacs is a constant. I have never had to jump from Dreamweaver to Eclipse to Visual Studio to Sublime to Visual Studio Code. Emacs has been consistently just as good as these other IDEs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdjzzdq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606342888.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0kyi4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjzfgn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"itistheblurstoftimes\", \"num_comments\": 7, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606313748.0, \"send_replies\": true, \"parent_id\": \"t1_gdjo4ga\", \"score\": 1, \"author_fullname\": \"t2_3gjjtpnq\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Not as it is now; this just allows notifications via alert.el.\", \"link_title\": \"[RFC] org-timed-alerts - receive warnings for upcoming events in your day\", \"author_flair_css_class\": null, \"name\": \"t1_gdjzfgn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot as it is now; this just allows notifications via alert.el.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/gdjzfgn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"report_reasons\": null, \"link_author\": \"itistheblurstoftimes\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"created\": 1606342548.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjzefh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 15, \"edited\": 1606314927.0, \"can_mod_post\": false, \"created_utc\": 1606313730.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 1, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Pressing keys or occurring events can run programs that you can easily adapt or change by writing your own code without any restrictions by the API, you have full access to Emacs capabilities.\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjzefh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPressing keys or occurring events can run programs that you can easily adapt or change by writing your own code without any restrictions by the API, you have full access to Emacs capabilities.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdjzefh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606342530.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k011fo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjz2mg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"w0ntfix\", \"num_comments\": 4, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606313525.0, \"send_replies\": true, \"parent_id\": \"t3_k011fo\", \"score\": 1, \"author_fullname\": \"t2_19rrs330\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"is there a way to query time clocked on an org mode heading? I'm looking to do something like a timecap on a heading -- some way to tell if I've done \\\"misc\\\" to much this week and can harass myself\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_gdjz2mg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eis there a way to query time clocked on an org mode heading? I\\u0026#39;m looking to do something like a timecap on a heading -- some way to tell if I\\u0026#39;ve done \\u0026quot;misc\\u0026quot; to much this week and can harass myself\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k011fo/weekly_tipstricketc_thread/gdjz2mg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k011fo/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k011fo/weekly_tipstricketc_thread/\", \"created\": 1606342325.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0q2xf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjz159\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"marineabcd\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606313500.0, \"send_replies\": true, \"parent_id\": \"t3_k0q2xf\", \"score\": 7, \"author_fullname\": \"t2_4p2qh\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I disagree with this\\n\\u2018Sure thing, well, since the discussion is happening here, Thierry will chime in if he feels the need to\\u2019\\n\\nExactly as Michael said on the GitHub chain, what if the maintainer needs a break, that\\u2019s about more than not coding on the project it\\u2019s about mental space. If I was worried about burning out I\\u2019d also want space from issues on the project too...\", \"link_title\": \"Future of Helm and new maintainer?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjz159\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI disagree with this\\n\\u2018Sure thing, well, since the discussion is happening here, Thierry will chime in if he feels the need to\\u2019\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExactly as Michael said on the GitHub chain, what if the maintainer needs a break, that\\u2019s about more than not coding on the project it\\u2019s about mental space. If I was worried about burning out I\\u2019d also want space from issues on the project too...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/gdjz159/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"report_reasons\": null, \"link_author\": \"ambrevar\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"created\": 1606342300.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0kyi4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjyw2w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"itistheblurstoftimes\", \"num_comments\": 7, \"edited\": 1606313916.0, \"can_mod_post\": false, \"created_utc\": 1606313412.0, \"send_replies\": true, \"parent_id\": \"t1_gdjfc5l\", \"score\": 1, \"author_fullname\": \"t2_3gjjtpnq\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I appreciate the explanation re: caching.\\n\\nWith regard to other packages, as far as I can tell, `org-alert` just bombs alerts about upcoming deadlines. `Org-notify` doesn't use libnotify/growl-type notifications and requires setting special properties. `Org-wild-notify` is the closest but requires todo keywords or tags, and doesn't allow much customization of the alert message (e.g., setting the title or the alert string). For example, I want to know how much time I have until the event, not just that the event is approaching. I also don't want to worry about whether I set the proper TODO (or any TODO, really) or tag to get alerts, hence relying solely on finding timestamps.\\n\\nGood heads up re: `today`. Not something that applies to me but I should fix it.\\n\\nEvery time I have to deal with timestamps, `ts` is there to save me from parsing hell. Thank you for that and `org-ql` as well.\", \"link_title\": \"[RFC] org-timed-alerts - receive warnings for upcoming events in your day\", \"author_flair_css_class\": null, \"name\": \"t1_gdjyw2w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI appreciate the explanation re: caching.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith regard to other packages, as far as I can tell, \\u003Ccode\\u003Eorg-alert\\u003C/code\\u003E just bombs alerts about upcoming deadlines. \\u003Ccode\\u003EOrg-notify\\u003C/code\\u003E doesn\\u0026#39;t use libnotify/growl-type notifications and requires setting special properties. \\u003Ccode\\u003EOrg-wild-notify\\u003C/code\\u003E is the closest but requires todo keywords or tags, and doesn\\u0026#39;t allow much customization of the alert message (e.g., setting the title or the alert string). For example, I want to know how much time I have until the event, not just that the event is approaching. I also don\\u0026#39;t want to worry about whether I set the proper TODO (or any TODO, really) or tag to get alerts, hence relying solely on finding timestamps.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGood heads up re: \\u003Ccode\\u003Etoday\\u003C/code\\u003E. Not something that applies to me but I should fix it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEvery time I have to deal with timestamps, \\u003Ccode\\u003Ets\\u003C/code\\u003E is there to save me from parsing hell. Thank you for that and \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E as well.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/gdjyw2w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"report_reasons\": null, \"link_author\": \"itistheblurstoftimes\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"created\": 1606342212.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjycc8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WarWeasle\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606313065.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 1, \"author_fullname\": \"t2_48aw1\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Lisp.\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjycc8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELisp.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdjycc8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606341865.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjya99\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mood-Still\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606313027.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 1, \"author_fullname\": \"t2_6z387nca\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"GUI without bloat (also foss)\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjya99\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGUI without bloat (also foss)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdjya99/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606341827.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjy9wp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"crlsh\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606313021.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 2, \"author_fullname\": \"t2_112hgx\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \" If the information is in text format, I can do whatever I want, no matter what it represents.\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjy9wp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf the information is in text format, I can do whatever I want, no matter what it represents.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdjy9wp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606341821.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjx9b5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"github-alphapapa\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606312356.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 7, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Freedom from churn (relative to most other software, anyway). Foundations that aren't constantly shifting under my feet on someone else's whim. One can't stand on a giant's shoulders if it's constantly bending over.\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjx9b5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFreedom from churn (relative to most other software, anyway). Foundations that aren\\u0026#39;t constantly shifting under my feet on someone else\\u0026#39;s whim. One can\\u0026#39;t stand on a giant\\u0026#39;s shoulders if it\\u0026#39;s constantly bending over.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdjx9b5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606341156.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0b4qv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjwxxy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"AlonTzarafi\", \"num_comments\": 14, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606312152.0, \"send_replies\": true, \"parent_id\": \"t3_k0b4qv\", \"score\": 1, \"author_fullname\": \"t2_2fuzofcf\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I don't know if I could live without modeline BUT I would definitely use the notifications package if you publish it\", \"link_title\": \"Fun with a distractionless Emacs and posframes\", \"author_flair_css_class\": null, \"name\": \"t1_gdjwxxy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t know if I could live without modeline BUT I would definitely use the notifications package if you publish it\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0b4qv/fun_with_a_distractionless_emacs_and_posframes/gdjwxxy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0b4qv/fun_with_a_distractionless_emacs_and_posframes/\", \"report_reasons\": null, \"link_author\": \"rfeynman42\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/gallery/k0b4qv\", \"created\": 1606340952.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0s6bn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjwrox\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"spinochet\", \"num_comments\": 15, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606312040.0, \"send_replies\": true, \"parent_id\": \"t3_k0s6bn\", \"score\": 9, \"author_fullname\": \"t2_3gm3c\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Emacs lisp. It is effectively a lisp machine in a text editor. This easy access configurability provides any and all other \\\"killer features.\\\"\", \"link_title\": \"What is the single thing that makes you want to use emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjwrox\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEmacs lisp. It is effectively a lisp machine in a text editor. This easy access configurability provides any and all other \\u0026quot;killer features.\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/gdjwrox/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"report_reasons\": null, \"link_author\": \"diogocasado\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"created\": 1606340840.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 9}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jzn9we\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjuic4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Moostropfen\", \"num_comments\": 4, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606310462.0, \"send_replies\": true, \"parent_id\": \"t1_gdgbrhl\", \"score\": 1, \"author_fullname\": \"t2_40ghs5rp\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Ah yes, zsh here\", \"link_title\": \"Shell-mode / Comint - blank line before prompt\", \"author_flair_css_class\": null, \"name\": \"t1_gdjuic4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAh yes, zsh here\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jzn9we/shellmode_comint_blank_line_before_prompt/gdjuic4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jzn9we/shellmode_comint_blank_line_before_prompt/\", \"report_reasons\": null, \"link_author\": \"Moostropfen\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jzn9we/shellmode_comint_blank_line_before_prompt/\", \"created\": 1606339262.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jzzov9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjtqun\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nagora\", \"num_comments\": 29, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606309896.0, \"send_replies\": true, \"parent_id\": \"t3_jzzov9\", \"score\": 1, \"author_fullname\": \"t2_rrtp7\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm a writer and I self-police until an editor sees it. Grammarly isn't worth the time it takes to read its opinions.\\n\\nThe problem is style - for very formal stuff Grammarly and I suppose things like Word and LibreOffice's suggestions are probably okay. But for prose they are worse than useless.\", \"link_title\": \"Are there really no good grammar-checking packages?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjtqun\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a writer and I self-police until an editor sees it. Grammarly isn\\u0026#39;t worth the time it takes to read its opinions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe problem is style - for very formal stuff Grammarly and I suppose things like Word and LibreOffice\\u0026#39;s suggestions are probably okay. But for prose they are worse than useless.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jzzov9/are_there_really_no_good_grammarchecking_packages/gdjtqun/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jzzov9/are_there_really_no_good_grammarchecking_packages/\", \"report_reasons\": null, \"link_author\": \"FluentFelicity\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jzzov9/are_there_really_no_good_grammarchecking_packages/\", \"created\": 1606338696.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjsy77\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606309292.0, \"send_replies\": true, \"parent_id\": \"t1_gdjqxzb\", \"score\": 2, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"are you using ivy/helm?\\n\\nbecause it's `LilyPond-mode` :D, I don't care since `counsel-M-x` is case insensitive\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjsy77\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eare you using ivy/helm?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebecause it\\u0026#39;s \\u003Ccode\\u003ELilyPond-mode\\u003C/code\\u003E :D, I don\\u0026#39;t care since \\u003Ccode\\u003Ecounsel-M-x\\u003C/code\\u003E is case insensitive\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjsy77/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": \"reverse-im\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606338092.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjqxzb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zosterops_p\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606307693.0, \"send_replies\": true, \"parent_id\": \"t1_gdjp4x2\", \"score\": 1, \"author_fullname\": \"t2_k6iusct\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"for some reason it can't find the function when i try to M-x lilypond-mode. \\neven after i manually loaded the lilypond library and the message windows listed all of the lilypond .el being loaded\\uff1b including lilypond.mode.el\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjqxzb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efor some reason it can\\u0026#39;t find the function when i try to M-x lilypond-mode. \\neven after i manually loaded the lilypond library and the message windows listed all of the lilypond .el being loaded\\uff1b including lilypond.mode.el\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjqxzb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606336493.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jzkv57\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjpkre\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"unhammer\", \"num_comments\": 5, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606306504.0, \"send_replies\": true, \"parent_id\": \"t1_gdeyi54\", \"score\": 2, \"author_fullname\": \"t2_99da7\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"tmux also works, if you trust your friends\", \"link_title\": \"emacs support for \\\"teletype\\\" as in \\\"teletype for atom\\\"?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjpkre\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etmux also works, if you trust your friends\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jzkv57/emacs_support_for_teletype_as_in_teletype_for_atom/gdjpkre/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jzkv57/emacs_support_for_teletype_as_in_teletype_for_atom/\", \"report_reasons\": null, \"link_author\": \"doomvox\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jzkv57/emacs_support_for_teletype_as_in_teletype_for_atom/\", \"created\": 1606335304.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jzkv57\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjpjcj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"unhammer\", \"num_comments\": 5, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606306468.0, \"send_replies\": true, \"parent_id\": \"t3_jzkv57\", \"score\": 1, \"author_fullname\": \"t2_99da7\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There's also [https://floobits.com/](https://floobits.com/) (better name? at least searchable =P)\", \"link_title\": \"emacs support for \\\"teletype\\\" as in \\\"teletype for atom\\\"?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjpjcj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s also \\u003Ca href=\\\"https://floobits.com/\\\"\\u003Ehttps://floobits.com/\\u003C/a\\u003E (better name? at least searchable =P)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jzkv57/emacs_support_for_teletype_as_in_teletype_for_atom/gdjpjcj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jzkv57/emacs_support_for_teletype_as_in_teletype_for_atom/\", \"report_reasons\": null, \"link_author\": \"doomvox\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jzkv57/emacs_support_for_teletype_as_in_teletype_for_atom/\", \"created\": 1606335268.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjp4x2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606306104.0, \"send_replies\": true, \"parent_id\": \"t1_gdjjwax\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"`M-x lilypond-mode` in the buffer\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjp4x2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003EM-x lilypond-mode\\u003C/code\\u003E in the buffer\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjp4x2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": \"reverse-im\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606334904.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0muwu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjot57\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"entercaspa\", \"num_comments\": 12, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606305803.0, \"send_replies\": true, \"parent_id\": \"t1_gdjdrgg\", \"score\": 1, \"author_fullname\": \"t2_l9no1\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"i think in many ways the wikipedia corpus is a a huge collection of backlinks\", \"link_title\": \"You probably all know this but I found this post on zettelkasten interesting. I didn't know about transclusion. The author mentions Emacs but do you know if it supports transclusion as well?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjot57\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei think in many ways the wikipedia corpus is a a huge collection of backlinks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/gdjot57/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/\", \"report_reasons\": null, \"link_author\": \"emacsexplorer\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"created\": 1606334603.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjonva\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606305663.0, \"send_replies\": true, \"parent_id\": \"t3_k0mld2\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Here's some code I use. I can't offer any help with it, but maybe it will be useful to you.\\n\\n (use-package lyqi-mode\\n :load-path \\\"~/src/archive/emacs/lyqi/\\\"\\n :custom\\n (lyqi:midi-command \\\"timidity\\\")\\n (lyqi:pdf-command \\\"okular\\\")\\n (lyqi:prefered-languages '(\\\"English\\\"))\\n\\n :config\\n (defun ap/lilypond-make ()\\n \\\"Run Lilypond and play MIDI file.\\\"\\n (interactive)\\n (lyqi:compile-ly)\\n (lyqi:open-midi)))\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjonva\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s some code I use. I can\\u0026#39;t offer any help with it, but maybe it will be useful to you.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package lyqi-mode\\n :load-path \\u0026quot;~/src/archive/emacs/lyqi/\\u0026quot;\\n :custom\\n (lyqi:midi-command \\u0026quot;timidity\\u0026quot;)\\n (lyqi:pdf-command \\u0026quot;okular\\u0026quot;)\\n (lyqi:prefered-languages \\u0026#39;(\\u0026quot;English\\u0026quot;))\\n\\n :config\\n (defun ap/lilypond-make ()\\n \\u0026quot;Run Lilypond and play MIDI file.\\u0026quot;\\n (interactive)\\n (lyqi:compile-ly)\\n (lyqi:open-midi)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjonva/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606334463.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0q2xf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjoi7k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"github-alphapapa\", \"num_comments\": 13, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606305517.0, \"send_replies\": true, \"parent_id\": \"t3_k0q2xf\", \"score\": 20, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"As I posted on GitHub:\\n\\n\\u003E I don't know if he's retired. I see quite a few recent commits by him: https://github.com/emacs-helm/helm/commits/master Sometimes people just need a break from staring at code all the time. I think that, if Thierry were ready to turn over Helm to someone else, he would say so. Let's not be presumptuous. :)\", \"link_title\": \"Future of Helm and new maintainer?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjoi7k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs I posted on GitHub:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI don\\u0026#39;t know if he\\u0026#39;s retired. I see quite a few recent commits by him: \\u003Ca href=\\\"https://github.com/emacs-helm/helm/commits/master\\\"\\u003Ehttps://github.com/emacs-helm/helm/commits/master\\u003C/a\\u003E Sometimes people just need a break from staring at code all the time. I think that, if Thierry were ready to turn over Helm to someone else, he would say so. Let\\u0026#39;s not be presumptuous. :)\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/gdjoi7k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"report_reasons\": null, \"link_author\": \"ambrevar\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"created\": 1606334317.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 20}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0muwu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjobjo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"ftrx\", \"num_comments\": 12, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606305343.0, \"send_replies\": true, \"parent_id\": \"t1_gdjmpbx\", \"score\": 5, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It's not that simple though, not in mere \\\"coding\\\" terms but in conceptual terms. Information is more complex than lego briks so we more or less often need some bits of information in more than one place BUT perhaps not in exactly the same form, defining \\\"content\\\" and \\\"where it appear\\\" it's not easy. Suppose you handle basic HR for a company, you likely have a \\\"list of all the employees\\\", a bullet list with name, surname and perhaps age. Than individual documents, one per employee, with name and surname as title, age in some field in a \\\"kind-of\\\" form-style document. How you handle this remain flexible, so not a \\\"real form\\\", with classic text files and filesystem for persistent storage? In other words how you \\\"decompose\\\" the bits of information to makes them ready for proper and generic transclusion? How to track changes and then how to properly \\\"merge\\\" them anywhere?\\n\\nClassic solution is form+DB (*sv files included, not just \\\"SQL DB\\\" or \\\"NoSQL DB\\\"). They works well for the SOLE purpose they are designed for. They are dramatically rigid. With SQL we can generate some \\\"data representation\\\" on the fly, but it's still more rigid than free form text and constructing such views is actually writing down a kind-of form, definitively not \\\"natural\\\" for a human. Notes are free form text, to be effective they need to be free forms, without constraints. Notes must be immediate to write and consult, crafting queries on the fly is not exactly ideal.\\n\\nLong story short it's complex. AFAIK no software really have born a \\\"good complete solution\\\", TiddlyWiki with it transclusion links, curious tags usage and automatic indexes probably offer the most complete solution, but it's itself limited and not much comfortable to use. Emacs can offer something with org-mode/org-ql/the experimental transclusion, but in both and all cases I know of the root is still long...\", \"link_title\": \"You probably all know this but I found this post on zettelkasten interesting. I didn't know about transclusion. The author mentions Emacs but do you know if it supports transclusion as well?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjobjo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s not that simple though, not in mere \\u0026quot;coding\\u0026quot; terms but in conceptual terms. Information is more complex than lego briks so we more or less often need some bits of information in more than one place BUT perhaps not in exactly the same form, defining \\u0026quot;content\\u0026quot; and \\u0026quot;where it appear\\u0026quot; it\\u0026#39;s not easy. Suppose you handle basic HR for a company, you likely have a \\u0026quot;list of all the employees\\u0026quot;, a bullet list with name, surname and perhaps age. Than individual documents, one per employee, with name and surname as title, age in some field in a \\u0026quot;kind-of\\u0026quot; form-style document. How you handle this remain flexible, so not a \\u0026quot;real form\\u0026quot;, with classic text files and filesystem for persistent storage? In other words how you \\u0026quot;decompose\\u0026quot; the bits of information to makes them ready for proper and generic transclusion? How to track changes and then how to properly \\u0026quot;merge\\u0026quot; them anywhere?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EClassic solution is form+DB (*sv files included, not just \\u0026quot;SQL DB\\u0026quot; or \\u0026quot;NoSQL DB\\u0026quot;). They works well for the SOLE purpose they are designed for. They are dramatically rigid. With SQL we can generate some \\u0026quot;data representation\\u0026quot; on the fly, but it\\u0026#39;s still more rigid than free form text and constructing such views is actually writing down a kind-of form, definitively not \\u0026quot;natural\\u0026quot; for a human. Notes are free form text, to be effective they need to be free forms, without constraints. Notes must be immediate to write and consult, crafting queries on the fly is not exactly ideal.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELong story short it\\u0026#39;s complex. AFAIK no software really have born a \\u0026quot;good complete solution\\u0026quot;, TiddlyWiki with it transclusion links, curious tags usage and automatic indexes probably offer the most complete solution, but it\\u0026#39;s itself limited and not much comfortable to use. Emacs can offer something with org-mode/org-ql/the experimental transclusion, but in both and all cases I know of the root is still long...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/gdjobjo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/\", \"report_reasons\": null, \"link_author\": \"emacsexplorer\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"created\": 1606334143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0kyi4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjo4ga\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"unhammer\", \"num_comments\": 7, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606305159.0, \"send_replies\": true, \"parent_id\": \"t3_k0kyi4\", \"score\": 1, \"author_fullname\": \"t2_99da7\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Could I use this to also get a persistent notification in e.g. modeline about the next upcoming event?\", \"link_title\": \"[RFC] org-timed-alerts - receive warnings for upcoming events in your day\", \"author_flair_css_class\": null, \"name\": \"t1_gdjo4ga\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECould I use this to also get a persistent notification in e.g. modeline about the next upcoming event?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/gdjo4ga/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"report_reasons\": null, \"link_author\": \"itistheblurstoftimes\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"created\": 1606333959.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0muwu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjmpbx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"emacsexplorer\", \"num_comments\": 12, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606303774.0, \"send_replies\": true, \"parent_id\": \"t1_gdje1va\", \"score\": 2, \"author_fullname\": \"t2_6eqb2nlx\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yeah, I'm reading more about it now and, in retrospect, it's such an obvious yet powerful concept. Thanks!\", \"link_title\": \"You probably all know this but I found this post on zettelkasten interesting. I didn't know about transclusion. The author mentions Emacs but do you know if it supports transclusion as well?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjmpbx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, I\\u0026#39;m reading more about it now and, in retrospect, it\\u0026#39;s such an obvious yet powerful concept. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/gdjmpbx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/\", \"report_reasons\": null, \"link_author\": \"emacsexplorer\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"created\": 1606332574.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0muwu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjmmfe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"emacsexplorer\", \"num_comments\": 12, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606303692.0, \"send_replies\": true, \"parent_id\": \"t1_gdjdrgg\", \"score\": 3, \"author_fullname\": \"t2_6eqb2nlx\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Zettelk\\u00e4sten proposes a system of taking notes that goes beyond just having backlinks. It expects one central idea per note, for example. This post has lots of details about it: [https://zettelkasten.de/introduction/#the-anatomy-of-a-zettel](https://zettelkasten.de/introduction/#the-anatomy-of-a-zettel)\", \"link_title\": \"You probably all know this but I found this post on zettelkasten interesting. I didn't know about transclusion. The author mentions Emacs but do you know if it supports transclusion as well?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjmmfe\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EZettelk\\u00e4sten proposes a system of taking notes that goes beyond just having backlinks. It expects one central idea per note, for example. This post has lots of details about it: \\u003Ca href=\\\"https://zettelkasten.de/introduction/#the-anatomy-of-a-zettel\\\"\\u003Ehttps://zettelkasten.de/introduction/#the-anatomy-of-a-zettel\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/gdjmmfe/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/\", \"report_reasons\": null, \"link_author\": \"emacsexplorer\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"created\": 1606332492.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0o8ir\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjlxxf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"VanLaser\", \"num_comments\": 3, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606302998.0, \"send_replies\": true, \"parent_id\": \"t3_k0o8ir\", \"score\": 1, \"author_fullname\": \"t2_eyihb\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Apart from the other solutions, there's also MSYS2 with Mingw-w64, if you intend to have more 'Unix-like' tools, with a packager tool similar to that used in Arch Linux (pacman). So you can install the emacs package, and make a shortcut to the 'runemacs' executable (which runs without opening a console window).\", \"link_title\": \"win10 emacs native\", \"author_flair_css_class\": null, \"name\": \"t1_gdjlxxf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EApart from the other solutions, there\\u0026#39;s also MSYS2 with Mingw-w64, if you intend to have more \\u0026#39;Unix-like\\u0026#39; tools, with a packager tool similar to that used in Arch Linux (pacman). So you can install the emacs package, and make a shortcut to the \\u0026#39;runemacs\\u0026#39; executable (which runs without opening a console window).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0o8ir/win10_emacs_native/gdjlxxf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0o8ir/win10_emacs_native/\", \"report_reasons\": null, \"link_author\": \"zsome\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0o8ir/win10_emacs_native/\", \"created\": 1606331798.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0b4qv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjlsdu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zarkone\", \"num_comments\": 14, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606302847.0, \"send_replies\": true, \"parent_id\": \"t3_k0b4qv\", \"score\": 1, \"author_fullname\": \"t2_fly56\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"nice! also, LaTeX in notifications is a killer feature imho.\", \"link_title\": \"Fun with a distractionless Emacs and posframes\", \"author_flair_css_class\": null, \"name\": \"t1_gdjlsdu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enice! also, LaTeX in notifications is a killer feature imho.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0b4qv/fun_with_a_distractionless_emacs_and_posframes/gdjlsdu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0b4qv/fun_with_a_distractionless_emacs_and_posframes/\", \"report_reasons\": null, \"link_author\": \"rfeynman42\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/gallery/k0b4qv\", \"created\": 1606331647.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jb8tf6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjl1sa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"exilsteira\", \"num_comments\": 5, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606302082.0, \"send_replies\": true, \"parent_id\": \"t3_jb8tf6\", \"score\": 1, \"author_fullname\": \"t2_2cdb87os\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I succeeded following this solution: [https://spin.atomicobject.com/2019/12/12/fixing-emacs-macos-catalina/](https://spin.atomicobject.com/2019/12/12/fixing-emacs-macos-catalina/)\", \"link_title\": \"Emacs.App won't start on Mac OS X Catalina (probably newbie problem)\", \"author_flair_css_class\": null, \"name\": \"t1_gdjl1sa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI succeeded following this solution: \\u003Ca href=\\\"https://spin.atomicobject.com/2019/12/12/fixing-emacs-macos-catalina/\\\"\\u003Ehttps://spin.atomicobject.com/2019/12/12/fixing-emacs-macos-catalina/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jb8tf6/emacsapp_wont_start_on_mac_os_x_catalina_probably/gdjl1sa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jb8tf6/emacsapp_wont_start_on_mac_os_x_catalina_probably/\", \"report_reasons\": null, \"link_author\": \"dahanbn\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jb8tf6/emacsapp_wont_start_on_mac_os_x_catalina_probably/\", \"created\": 1606330882.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jzjtv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjl0z1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"daraul\", \"num_comments\": 69, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606302057.0, \"send_replies\": true, \"parent_id\": \"t1_gdi7e2z\", \"score\": 1, \"author_fullname\": \"t2_gmpcb\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E using with-eval-after-load to defer the evaluation of any dependent code until that point\\n\\nOh, I have seen that in some configurations, but had no idea what it did so I never used it. Thanks! \\n\\n\\u003E learn all about the profiler: `C-h i g (elisp)Profiling`\\n\\nWill do, thanks.\", \"link_title\": \"Doom emacs vs vanilla emacs\", \"author_flair_css_class\": null, \"name\": \"t1_gdjl0z1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eusing with-eval-after-load to defer the evaluation of any dependent code until that point\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOh, I have seen that in some configurations, but had no idea what it did so I never used it. Thanks! \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Elearn all about the profiler: \\u003Ccode\\u003EC-h i g (elisp)Profiling\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWill do, thanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jzjtv0/doom_emacs_vs_vanilla_emacs/gdjl0z1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jzjtv0/doom_emacs_vs_vanilla_emacs/\", \"report_reasons\": null, \"link_author\": \"yelinaung98\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jzjtv0/doom_emacs_vs_vanilla_emacs/\", \"created\": 1606330857.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0o8ir\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjk81x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RichieHHam\", \"num_comments\": 3, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606301222.0, \"send_replies\": true, \"parent_id\": \"t3_k0o8ir\", \"score\": 1, \"author_fullname\": \"t2_6i3ydmox\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Try googling \\\"emacs for windows download\\\". Tricky, I know.\\n\\n[https://www.gnu.org/software/emacs/download.html](https://www.gnu.org/software/emacs/download.html)\", \"link_title\": \"win10 emacs native\", \"author_flair_css_class\": null, \"name\": \"t1_gdjk81x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETry googling \\u0026quot;emacs for windows download\\u0026quot;. Tricky, I know.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/download.html\\\"\\u003Ehttps://www.gnu.org/software/emacs/download.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0o8ir/win10_emacs_native/gdjk81x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0o8ir/win10_emacs_native/\", \"report_reasons\": null, \"link_author\": \"zsome\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0o8ir/win10_emacs_native/\", \"created\": 1606330022.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjk5xc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RichieHHam\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606301161.0, \"send_replies\": true, \"parent_id\": \"t1_gdjamxl\", \"score\": 0, \"author_fullname\": \"t2_6i3ydmox\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u0026#x200B;\\n\\n\\u003E Why would you use emacs in Windows, or even, why are you using Windows?\\n\\nMany top emacs users an developers use Windows. What is your problem? Keep your OS flamewar fuel in your basement.\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjk5xc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWhy would you use emacs in Windows, or even, why are you using Windows?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMany top emacs users an developers use Windows. What is your problem? Keep your OS flamewar fuel in your basement.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjk5xc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606329961.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 1, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjjwax\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zosterops_p\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606300892.0, \"send_replies\": true, \"parent_id\": \"t1_gdjgddo\", \"score\": 1, \"author_fullname\": \"t2_k6iusct\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"ya i have the lilypond package installed from arch's official repo. \\ndid (require 'lilypond-mode) \\nopened a lilypond file but emacs doesn't show it's in lilypond-mode, (just the default Fundamental mode) and there's no syntax coloring either. :(\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjjwax\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eya i have the lilypond package installed from arch\\u0026#39;s official repo. \\ndid (require \\u0026#39;lilypond-mode)\\u003Cbr/\\u003E\\nopened a lilypond file but emacs doesn\\u0026#39;t show it\\u0026#39;s in lilypond-mode, (just the default Fundamental mode) and there\\u0026#39;s no syntax coloring either. :(\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjjwax/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606329692.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jzzov9\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjih1p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 29, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606299374.0, \"send_replies\": true, \"parent_id\": \"t1_gdfid5v\", \"score\": 2, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"AFAIK they are a Clojure shop as well\", \"link_title\": \"Are there really no good grammar-checking packages?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjih1p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAFAIK they are a Clojure shop as well\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jzzov9/are_there_really_no_good_grammarchecking_packages/gdjih1p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jzzov9/are_there_really_no_good_grammarchecking_packages/\", \"report_reasons\": null, \"link_author\": \"FluentFelicity\", \"subreddit\": \"emacs\", \"author_flair_text\": \"reverse-im\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/jzzov9/are_there_really_no_good_grammarchecking_packages/\", \"created\": 1606328174.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0o8ir\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjglv1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"w0wt1p\", \"num_comments\": 3, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606297468.0, \"send_replies\": true, \"parent_id\": \"t3_k0o8ir\", \"score\": 1, \"author_fullname\": \"t2_4rfi7\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hi, \\n\\nWindows builds can be found at:\\n\\nhttp://ftpmirror.gnu.org/emacs/windows/emacs-27\", \"link_title\": \"win10 emacs native\", \"author_flair_css_class\": null, \"name\": \"t1_gdjglv1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWindows builds can be found at:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://ftpmirror.gnu.org/emacs/windows/emacs-27\\\"\\u003Ehttp://ftpmirror.gnu.org/emacs/windows/emacs-27\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0o8ir/win10_emacs_native/gdjglv1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0o8ir/win10_emacs_native/\", \"report_reasons\": null, \"link_author\": \"zsome\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0o8ir/win10_emacs_native/\", \"created\": 1606326268.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjgddo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606297225.0, \"send_replies\": true, \"parent_id\": \"t1_gdjepe5\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"if you're on debian/ubuntu, you should install `lilypond` (system) package and then `(require 'lilypond-mode)`\\n\\nAt least it worked for me :)\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjgddo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eif you\\u0026#39;re on debian/ubuntu, you should install \\u003Ccode\\u003Elilypond\\u003C/code\\u003E (system) package and then \\u003Ccode\\u003E(require \\u0026#39;lilypond-mode)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt least it worked for me :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjgddo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": \"reverse-im\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606326025.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0kyi4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjfc5l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"edited\": 1606296654.0, \"can_mod_post\": false, \"created_utc\": 1606296185.0, \"send_replies\": true, \"parent_id\": \"t3_k0kyi4\", \"score\": 5, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I don't use any of them, but I'm pretty sure that there are packages that do this....ah, I see you noted them in your readme:\\n\\n\\u003E org-alert. See https://github.com/spegoraro/org-alert.\\n\\n\\u003E org-notify. See https://code.orgmode.org/bzg/org-mode/raw/master/contrib/lisp/org-notify.el.\\n\\n\\u003E org-wild-notify. See https://github.com/akhramov/org-wild-notifier.el.\\n\\nCool, I'm glad to see that you used `org-ql` and `ts` in this. :)\\n\\nBTW, the questionable thing I see is how you use the `org-ql-select` ACTION for side effects, which requires you to clear the org-ql-cache (which is an internal implementation detail, which would break if I ever change that): https://github.com/legalnonsense/org-timed-alerts/blob/0b428a6e34616e2224003169ada5fbf428da9d31/org-timed-alerts.el#L294. I plan to add more flexibility with regard to caching and side effects in the future, but in the meantime, query and action expressions should avoid side effects. I recently added a note to the documentation about that here: https://github.com/alphapapa/org-ql#caching\\n\\nSo it would be better if you gathered a list of results and processed them afterward. That way, the cache can remain useful, and it will probably improve performance.\\n\\nOne other thing: the query you use only selects results for `today`: https://github.com/legalnonsense/org-timed-alerts/blob/0b428a6e34616e2224003169ada5fbf428da9d31/org-timed-alerts.el#L302 It may not matter for your use case, but that only returns results up until 11:59 PM, so if the query ran shortly before midnight, you might miss alerts for events that happen shortly after midnight.\", \"link_title\": \"[RFC] org-timed-alerts - receive warnings for upcoming events in your day\", \"author_flair_css_class\": null, \"name\": \"t1_gdjfc5l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t use any of them, but I\\u0026#39;m pretty sure that there are packages that do this....ah, I see you noted them in your readme:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eorg-alert. See \\u003Ca href=\\\"https://github.com/spegoraro/org-alert\\\"\\u003Ehttps://github.com/spegoraro/org-alert\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorg-notify. See \\u003Ca href=\\\"https://code.orgmode.org/bzg/org-mode/raw/master/contrib/lisp/org-notify.el\\\"\\u003Ehttps://code.orgmode.org/bzg/org-mode/raw/master/contrib/lisp/org-notify.el\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorg-wild-notify. See \\u003Ca href=\\\"https://github.com/akhramov/org-wild-notifier.el\\\"\\u003Ehttps://github.com/akhramov/org-wild-notifier.el\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECool, I\\u0026#39;m glad to see that you used \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E and \\u003Ccode\\u003Ets\\u003C/code\\u003E in this. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBTW, the questionable thing I see is how you use the \\u003Ccode\\u003Eorg-ql-select\\u003C/code\\u003E ACTION for side effects, which requires you to clear the org-ql-cache (which is an internal implementation detail, which would break if I ever change that): \\u003Ca href=\\\"https://github.com/legalnonsense/org-timed-alerts/blob/0b428a6e34616e2224003169ada5fbf428da9d31/org-timed-alerts.el#L294\\\"\\u003Ehttps://github.com/legalnonsense/org-timed-alerts/blob/0b428a6e34616e2224003169ada5fbf428da9d31/org-timed-alerts.el#L294\\u003C/a\\u003E. I plan to add more flexibility with regard to caching and side effects in the future, but in the meantime, query and action expressions should avoid side effects. I recently added a note to the documentation about that here: \\u003Ca href=\\\"https://github.com/alphapapa/org-ql#caching\\\"\\u003Ehttps://github.com/alphapapa/org-ql#caching\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo it would be better if you gathered a list of results and processed them afterward. That way, the cache can remain useful, and it will probably improve performance.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne other thing: the query you use only selects results for \\u003Ccode\\u003Etoday\\u003C/code\\u003E: \\u003Ca href=\\\"https://github.com/legalnonsense/org-timed-alerts/blob/0b428a6e34616e2224003169ada5fbf428da9d31/org-timed-alerts.el#L302\\\"\\u003Ehttps://github.com/legalnonsense/org-timed-alerts/blob/0b428a6e34616e2224003169ada5fbf428da9d31/org-timed-alerts.el#L302\\u003C/a\\u003E It may not matter for your use case, but that only returns results up until 11:59 PM, so if the query ran shortly before midnight, you might miss alerts for events that happen shortly after midnight.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/gdjfc5l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"report_reasons\": null, \"link_author\": \"itistheblurstoftimes\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"created\": 1606324985.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjepe5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zosterops_p\", \"num_comments\": 16, \"edited\": 1606296817.0, \"can_mod_post\": false, \"created_utc\": 1606295554.0, \"send_replies\": true, \"parent_id\": \"t1_gdjear2\", \"score\": 1, \"author_fullname\": \"t2_k6iusct\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"lilypond package installs some Emacs files including /usr/share/emacs/site-lisp/lilypond-mode.el.\\n\\nTo use lilypond-mode, firstly M-x load-library \\u003CRET\\u003E lilypond-mode \\u003CRET\\u003E then again M-x lilypond-mode \\u003CRET\\u003E. \\n\\nthis is the archlinux wiki. i did that but M-x lilypond-mode didn't do anything for me :(\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjepe5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Elilypond package installs some Emacs files including /usr/share/emacs/site-lisp/lilypond-mode.el.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo use lilypond-mode, firstly M-x load-library \\u0026lt;RET\\u0026gt; lilypond-mode \\u0026lt;RET\\u0026gt; then again M-x lilypond-mode \\u0026lt;RET\\u0026gt;. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethis is the archlinux wiki. i did that but M-x lilypond-mode didn\\u0026#39;t do anything for me :(\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjepe5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606324354.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjear2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"J-ky\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606295154.0, \"send_replies\": true, \"parent_id\": \"t1_gdjc4b1\", \"score\": 1, \"author_fullname\": \"t2_jz0p0yd\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"How did you install your LilyPond? Do your LilyPond path include a resource file? Try to link to the \\u003CLilyPond path\\u003E/Resources/share/emacs/site-lisp in your .emacs instead of copying the files like lilypond-init.el to your original load path.\\n\\nIt might help.\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjear2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow did you install your LilyPond? Do your LilyPond path include a resource file? Try to link to the \\u0026lt;LilyPond path\\u0026gt;/Resources/share/emacs/site-lisp in your .emacs instead of copying the files like lilypond-init.el to your original load path.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt might help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjear2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606323954.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdje3pl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"J-ky\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606294956.0, \"send_replies\": true, \"parent_id\": \"t1_gdjbxm9\", \"score\": 1, \"author_fullname\": \"t2_jz0p0yd\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I don't know. I am not the original author of the guide. I just commented some lines for better usage. I just share a guide I found that works. \\n\\nYou really remind me to move my lazy ass to make some changes myself. I believe it is better not to edit the source file.\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdje3pl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t know. I am not the original author of the guide. I just commented some lines for better usage. I just share a guide I found that works. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou really remind me to move my lazy ass to make some changes myself. I believe it is better not to edit the source file.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdje3pl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606323756.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0muwu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdje1va\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"ftrx\", \"num_comments\": 12, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606294907.0, \"send_replies\": true, \"parent_id\": \"t1_gdjc7al\", \"score\": 4, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thank you for keeping up the \\\"discussion stream\\\" :-)\\n\\nTransclusion is not a new concept and few Emacs packages have apperead in the past, like:\\n\\n - https://github.com/legalnonsense/org-clones\\n\\n - https://github.com/whacked/transclusion-minor-mode\\n\\nNobiot org-transclusion is the most recent and probably the most complete, perhaps this time the idea of transclusion in Emacs will see the light really!\", \"link_title\": \"You probably all know this but I found this post on zettelkasten interesting. I didn't know about transclusion. The author mentions Emacs but do you know if it supports transclusion as well?\", \"author_flair_css_class\": null, \"name\": \"t1_gdje1va\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for keeping up the \\u0026quot;discussion stream\\u0026quot; :-)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETransclusion is not a new concept and few Emacs packages have apperead in the past, like:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/legalnonsense/org-clones\\\"\\u003Ehttps://github.com/legalnonsense/org-clones\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/whacked/transclusion-minor-mode\\\"\\u003Ehttps://github.com/whacked/transclusion-minor-mode\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ENobiot org-transclusion is the most recent and probably the most complete, perhaps this time the idea of transclusion in Emacs will see the light really!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/gdje1va/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/\", \"report_reasons\": null, \"link_author\": \"emacsexplorer\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"created\": 1606323707.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0muwu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjdrgg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fazalmajid\", \"num_comments\": 12, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606294625.0, \"send_replies\": true, \"parent_id\": \"t3_k0muwu\", \"score\": 3, \"author_fullname\": \"t2_pt0vni\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Zettelk\\u00e4sten keep popping up in my feeds for the last few weeks. How are they different from a Wiki with backlinks?\", \"link_title\": \"You probably all know this but I found this post on zettelkasten interesting. I didn't know about transclusion. The author mentions Emacs but do you know if it supports transclusion as well?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjdrgg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EZettelk\\u00e4sten keep popping up in my feeds for the last few weeks. How are they different from a Wiki with backlinks?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/gdjdrgg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/\", \"report_reasons\": null, \"link_author\": \"emacsexplorer\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"created\": 1606323425.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k08dax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjcaql\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"danflsr\", \"num_comments\": 8, \"edited\": 1606293800.0, \"can_mod_post\": false, \"created_utc\": 1606293220.0, \"send_replies\": true, \"parent_id\": \"t3_k08dax\", \"score\": 1, \"author_fullname\": \"t2_3an2nmcs\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I use Zotero to save all the references. It's open source and has a lot of useful plugins. One of the plugin is called Better-Bibtex; it syncs a bibtex file where ever you want on your computer. I then use the excellent `org-ref` to interact with the references: I can search, insert citations and jump to the PDFs or Web snapshot from inside Emacs.\\n\\nI also use `citeproc-org` to generate nice citations when exporting to non-latex documents, i.e. markdown and HTML.\\n\\nThe nice thing is that everything is independent; the Zotero DB folder, the folder where PDFs are automatically downloaded, saved and renamed, the place where the Bibtex file is created and synced to be read later by org-mode.\\n\\nI guess that for me, exporting of my writing was a design goal, so citations are an important part of taking literature notes (I've also read that book, excellent read), so citations need to work for every possible format. \\n\\nI'm really happy with my setup, and it's quite simple, just a few config lines and it just works.\", \"link_title\": \"How do you manage your reference material in a zettlelkasten workflow?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjcaql\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use Zotero to save all the references. It\\u0026#39;s open source and has a lot of useful plugins. One of the plugin is called Better-Bibtex; it syncs a bibtex file where ever you want on your computer. I then use the excellent \\u003Ccode\\u003Eorg-ref\\u003C/code\\u003E to interact with the references: I can search, insert citations and jump to the PDFs or Web snapshot from inside Emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also use \\u003Ccode\\u003Eciteproc-org\\u003C/code\\u003E to generate nice citations when exporting to non-latex documents, i.e. markdown and HTML.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe nice thing is that everything is independent; the Zotero DB folder, the folder where PDFs are automatically downloaded, saved and renamed, the place where the Bibtex file is created and synced to be read later by org-mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI guess that for me, exporting of my writing was a design goal, so citations are an important part of taking literature notes (I\\u0026#39;ve also read that book, excellent read), so citations need to work for every possible format. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m really happy with my setup, and it\\u0026#39;s quite simple, just a few config lines and it just works.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k08dax/how_do_you_manage_your_reference_material_in_a/gdjcaql/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k08dax/how_do_you_manage_your_reference_material_in_a/\", \"report_reasons\": null, \"link_author\": \"jasonmirk\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k08dax/how_do_you_manage_your_reference_material_in_a/\", \"created\": 1606322020.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0muwu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjc7al\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"emacsexplorer\", \"num_comments\": 12, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606293129.0, \"send_replies\": true, \"parent_id\": \"t1_gdj8d33\", \"score\": 2, \"author_fullname\": \"t2_6eqb2nlx\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks! This looks pretty cool.\", \"link_title\": \"You probably all know this but I found this post on zettelkasten interesting. I didn't know about transclusion. The author mentions Emacs but do you know if it supports transclusion as well?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjc7al\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks! This looks pretty cool.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/gdjc7al/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/\", \"report_reasons\": null, \"link_author\": \"emacsexplorer\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"created\": 1606321929.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjc4b1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zosterops_p\", \"num_comments\": 16, \"edited\": 1606293415.0, \"can_mod_post\": false, \"created_utc\": 1606293052.0, \"send_replies\": true, \"parent_id\": \"t1_gdjamxl\", \"score\": 1, \"author_fullname\": \"t2_k6iusct\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"i'm on linux.\\n/usr/share/emacs/site-lisp is already in the load-path by default\\ni (require 'lilypond-mode)\\nand then M-x .... but it doens't seem to recognize lilypond-mode\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjc4b1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei\\u0026#39;m on linux.\\n/usr/share/emacs/site-lisp is already in the load-path by default\\ni (require \\u0026#39;lilypond-mode)\\nand then M-x .... but it doens\\u0026#39;t seem to recognize lilypond-mode\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjc4b1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606321852.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjbxm9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nv-elisp\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606292877.0, \"send_replies\": true, \"parent_id\": \"t1_gdjanc0\", \"score\": 2, \"author_fullname\": \"t2_2dw7h444\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Any reason why you need to edit the source files instead of using the customization system, or use-package?\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjbxm9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny reason why you need to edit the source files instead of using the customization system, or use-package?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjbxm9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606321677.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjbjxm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"nv-elisp\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606292523.0, \"send_replies\": true, \"parent_id\": \"t1_gdjamxl\", \"score\": 8, \"author_fullname\": \"t2_2dw7h444\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Why would you use emacs in Windows, or even, why are you using Windows? \\n\\n \\n\\n\\n\\u003E I use macOS, currently in Big Sur... \\n \\n\\n\\nhttps://sneak.berlin/20201112/your-computer-isnt-yours/\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjbjxm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWhy would you use emacs in Windows, or even, why are you using Windows? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use macOS, currently in Big Sur... \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://sneak.berlin/20201112/your-computer-isnt-yours/\\\"\\u003Ehttps://sneak.berlin/20201112/your-computer-isnt-yours/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjbjxm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606321323.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0b4qv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjbfa7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mattfromeurope\", \"num_comments\": 14, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606292407.0, \"send_replies\": true, \"parent_id\": \"t1_gdh8r3w\", \"score\": 3, \"author_fullname\": \"t2_150ro0\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E\\tIf people are interested I could attempt to add more functionality to the posframe notifications and package it through MELPA.\\n\\nYes, please!\", \"link_title\": \"Fun with a distractionless Emacs and posframes\", \"author_flair_css_class\": null, \"name\": \"t1_gdjbfa7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIf people are interested I could attempt to add more functionality to the posframe notifications and package it through MELPA.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYes, please!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0b4qv/fun_with_a_distractionless_emacs_and_posframes/gdjbfa7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0b4qv/fun_with_a_distractionless_emacs_and_posframes/\", \"report_reasons\": null, \"link_author\": \"rfeynman42\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/gallery/k0b4qv\", \"created\": 1606321207.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjanc0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"J-ky\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606291697.0, \"send_replies\": true, \"parent_id\": \"t1_gdjamxl\", \"score\": 1, \"author_fullname\": \"t2_jz0p0yd\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\---\\n\\n\\\\#+TITLE: Setting up LilyPond\\n\\n\\\\* Setting up lilypond in emacs\\n\\nThis is a terrible experience. A lot of tutorials are outdated, including the one on the official website, even if some of them are up-to-date, they are not for macOS.\\n\\nLuckily, I found a really detailed guide specified for macOS and emacs.\\n\\n[http://www.danielhensel.de/www.danielhensel.de\\\\_en/styled-19/styled-22/styled-23/](http://www.danielhensel.de/www.danielhensel.de_en/styled-19/styled-22/styled-23/)\\n\\n\\u0026#x200B;\\n\\nThe following is for backup.\\n\\n\\\\*\\\\* The original guide\\n\\n\\\\# I modified a bit for better view in org mode.\\n\\nThis is what finally worked for me. Thanks to Orm Finnendahl:\\n\\n\\u0026#x200B;\\n\\nInstall emacs: [http://emacsformacosx.com](http://emacsformacosx.com)\\n\\n\\u0026#x200B;\\n\\nInstall LilyPond:\\n\\n\\u0026#x200B;\\n\\n[http://www.lilypond.org/index.de.html](http://www.lilypond.org/index.de.html)\\n\\n\\u0026#x200B;\\n\\nFor absolute beginners: open your terminal. Go to /Applications/Utilities/Terminal.app\\n\\n\\u0026#x200B;\\n\\nLilypond emacs-Setup OS X\\n\\n\\u0026#x200B;\\n\\nAt first add LilyPond to your PATH:\\n\\nOpen Terminal\\n\\n\\\\# Opening Terminal is not a must, you can stick with the shell in emacs, which is much pleasant to use.\\n\\n\\u0026#x200B;\\n\\n\\\\#+begin\\\\_src sh\\n\\n sudo touch \\\\~/.bash\\\\_profile\\n\\n\\\\#+end\\\\_src\\n\\n\\u0026#x200B;\\n\\nOpen .bash-profile in your favorite editor and fill in:\\n\\nexport PATH=\\\"/Applications/LilyPond.app/Contents/Resources/bin:$PATH\\\"\\n\\n\\u0026#x200B;\\n\\n\\\\# In macOS Catalina, zsh is the default shell, you have no need to shift back to bash. Just create or modify the .zshrc in home directory, paste the same thing.\\n\\n\\\\# This step is very optional, as the official website of LilyPond has another approach, but I prefer this one as it is much simpler.\\n\\nSave\\n\\n\\u0026#x200B;\\n\\ncontrol with echo $PATH\\n\\n\\u0026#x200B;\\n\\nNow you can start LilyPond by typing \\\"lilypond\\\" in your terminal.\\n\\n\\u0026#x200B;\\n\\nCD to /Applications/LilyPond.app/Contents/Resources/share/emacs/site-lisp\\n\\n\\u0026#x200B;\\n\\nType:\\n\\n\\u0026#x200B;\\n\\nsudo ln -s /Applications/LilyPond.app/Contents/Resources/share/emacs/site-lisp /Applications/Emacs.app/Contents/Resources/site-lisp\\n\\n\\u0026#x200B;\\n\\nNow we have to edit lilypond-mode.el. Right click on the [LilyPond.app](https://LilyPond.app). Show packages: navigate to Applications/LilyPond.app/Contents/Resources/share/emacs/site-lisp\\n\\n\\\\# I prefer doing this step in emacs purely. As long as you have permitted emacs to have full access to your disk, you can just C-x C-f /Applications/LilyPond.app/Contents/Resources/share/emacs/site-lisp in emacs. But the tricky part for emacs to access the full disk is that, not only you have to permit emacs, but you also have to permit ruby, since emacs probably uses ruby the navigate the disk.\\n\\n\\u0026#x200B;\\n\\nOpen lilypond-mode.el in emacs\\n\\ntype M-g-g\\n\\nGo to line 335 and change (defcustom LilyPond-lilypond-command\\n\\nchange to\\n\\n\\\\#+begin\\\\_src elisp\\n\\n (defcustom LilyPond-lilypond-command \\\"/Applications/LilyPond.app/Contents/Resources/bin/lilypond\\\"\\n\\n \\\"Command used to compile LY files.\\\"\\n\\n :group 'LilyPond\\n\\n :type 'string)\\n\\n\\\\#+end\\\\_src\\n\\n\\u0026#x200B;\\n\\nWe want to use our [Preview.App](https://Preview.App) for PS-Files, so change the above lines, too.\\n\\n\\\\#+begin\\\\_src elisp\\n\\n (defcustom LilyPond-ps-command \\\" /Applications/Preview.app/Contents/MacOS/Preview --watch\\\"\\n\\n \\\"Command used to display PS files.\\\"\\n\\n\\u0026#x200B;\\n\\n :group 'LilyPond\\n\\n :type 'string)\\n\\n\\\\#+end\\\\_src\\n\\n\\u0026#x200B;\\n\\nThe same is with our standard PDF-Viewer, we choose Safari for URL-Handling.\\n\\n\\\\#+begin\\\\_src elisp\\n\\n (defcustom LilyPond-pdf-command \\\"/Applications/Safari.app/Contents/MacOS/Safari\\u201c\\n\\n \\\"Command used to display PDF files.\\\"\\n\\n\\u0026#x200B;\\n\\n :group 'LilyPond\\n\\n :type 'string)\\n\\n\\\\#+end\\\\_src\\n\\n\\u0026#x200B;\\n\\n/\\\\* not yet working as expected\\n\\n\\u0026#x200B;\\n\\nChange MIDI\\n\\n\\\\#+begin\\\\_src elisp\\n\\n (defcustom LilyPond-midi-command \\\"open\\\"\\n\\n \\\"Command used to play MIDI files.\\\"\\n\\n\\\\#+end\\\\_src\\n\\n\\u0026#x200B;\\n\\nChange MIDI-Player to Logic Pro X.\\n\\n\\\\#+begin\\\\_src elisp\\n\\n(defcustom LilyPond-all-midi-command \\\"/Applications/Logic\\\\\\\\ Pro\\\\\\\\ [X.app/Contents/MacOS/Logic\\\\\\\\](https://X.app/Contents/MacOS/Logic\\\\) Pro\\\\\\\\ X -ia\\\"\\n\\n\\\"Command used to play MIDI files.\\\"\\n\\n\\u0026#x200B;\\n\\n:group 'LilyPond\\n\\n:type 'string)\\n\\n\\\\#+end\\\\_src\\n\\n\\u0026#x200B;\\n\\n\\\\# Since not everyone have purchased Logic Pro X, GarageBand is an free alternative.\\n\\n\\u0026#x200B;\\n\\nsave with M-x-s\\n\\n\\u0026#x200B;\\n\\non a Mac now type alt-shift-:\\n\\n\\u0026#x200B;\\n\\ntype\\n\\n(find-file user-init-file)\\n\\n\\\\# This step is a bit dumb, just go to your home directory and open .emacs, or even C-x C-f \\\\~/.emacs\\n\\n\\u0026#x200B;\\n\\nstandard lilypond.mode-config-suggestions do not use .ily-files, so I modified them too. Copy and Paste the following to your .emacs\\n\\n\\u0026#x200B;\\n\\nin emacs type C-y\\n\\n\\u0026#x200B;\\n\\n(setq load-path (append (list (expand-file-name\\\"/Applications/LilyPond.app/Contents/Resources/share/emacs/site-lisp\\\")) load-path))\\n\\n(autoload 'LilyPond-mode \\\"lilypond-mode\\\" \\\"LilyPond Editing Mode\\\" t)\\n\\n(add-to-list 'auto-mode-alist '(\\\"\\\\\\\\\\\\\\\\.ly$\\\" . LilyPond-mode))\\n\\n(add-to-list 'auto-mode-alist '(\\\"\\\\\\\\\\\\\\\\.ily$\\\" . LilyPond-mode))\\n\\n(add-to-list 'auto-mode-alist '(\\\"\\\\\\\\\\\\\\\\.lytex$\\\" . LilyPond-mode))\\n\\n(add-hook 'LilyPond-mode-hook (lambda () (turn-on-font-lock)))\\n\\n\\u0026#x200B;\\n\\n(setq locale-coding-system 'utf-8)\\n\\n(set-terminal-coding-system 'utf-8)\\n\\n(set-keyboard-coding-system 'utf-8)\\n\\n(set-selection-coding-system 'utf-8)\\n\\n(prefer-coding-system 'utf-8)\\n\\n\\u0026#x200B;\\n\\nrestart emacs\\n\\n\\u0026#x200B;\\n\\nYou are done\\n\\n\\u0026#x200B;\\n\\nOpen a LilyPond-file in emacs and you'll see!\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjanc0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E---\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+TITLE: Setting up LilyPond\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Setting up lilypond in emacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is a terrible experience. A lot of tutorials are outdated, including the one on the official website, even if some of them are up-to-date, they are not for macOS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuckily, I found a really detailed guide specified for macOS and emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.danielhensel.de/www.danielhensel.de_en/styled-19/styled-22/styled-23/\\\"\\u003Ehttp://www.danielhensel.de/www.danielhensel.de_en/styled-19/styled-22/styled-23/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe following is for backup.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** The original guide\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# I modified a bit for better view in org mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is what finally worked for me. Thanks to Orm Finnendahl:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstall emacs: \\u003Ca href=\\\"http://emacsformacosx.com\\\"\\u003Ehttp://emacsformacosx.com\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstall LilyPond:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.lilypond.org/index.de.html\\\"\\u003Ehttp://www.lilypond.org/index.de.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor absolute beginners: open your terminal. Go to /Applications/Utilities/Terminal.app\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELilypond emacs-Setup OS X\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt first add LilyPond to your PATH:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOpen Terminal\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# Opening Terminal is not a must, you can stick with the shell in emacs, which is much pleasant to use.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+begin_src sh\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esudo touch ~/.bash_profile\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+end_src\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOpen .bash-profile in your favorite editor and fill in:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eexport PATH=\\u0026quot;/Applications/LilyPond.app/Contents/Resources/bin:$PATH\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# In macOS Catalina, zsh is the default shell, you have no need to shift back to bash. Just create or modify the .zshrc in home directory, paste the same thing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# This step is very optional, as the official website of LilyPond has another approach, but I prefer this one as it is much simpler.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESave\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Econtrol with echo $PATH\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow you can start LilyPond by typing \\u0026quot;lilypond\\u0026quot; in your terminal.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECD to /Applications/LilyPond.app/Contents/Resources/share/emacs/site-lisp\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EType:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esudo ln -s /Applications/LilyPond.app/Contents/Resources/share/emacs/site-lisp /Applications/Emacs.app/Contents/Resources/site-lisp\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow we have to edit lilypond-mode.el. Right click on the \\u003Ca href=\\\"https://LilyPond.app\\\"\\u003ELilyPond.app\\u003C/a\\u003E. Show packages: navigate to Applications/LilyPond.app/Contents/Resources/share/emacs/site-lisp\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# I prefer doing this step in emacs purely. As long as you have permitted emacs to have full access to your disk, you can just C-x C-f /Applications/LilyPond.app/Contents/Resources/share/emacs/site-lisp in emacs. But the tricky part for emacs to access the full disk is that, not only you have to permit emacs, but you also have to permit ruby, since emacs probably uses ruby the navigate the disk.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOpen lilypond-mode.el in emacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etype M-g-g\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGo to line 335 and change (defcustom LilyPond-lilypond-command\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Echange to\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+begin_src elisp\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(defcustom LilyPond-lilypond-command \\u0026quot;/Applications/LilyPond.app/Contents/Resources/bin/lilypond\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;Command used to compile LY files.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:group \\u0026#39;LilyPond\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:type \\u0026#39;string)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+end_src\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe want to use our \\u003Ca href=\\\"https://Preview.App\\\"\\u003EPreview.App\\u003C/a\\u003E for PS-Files, so change the above lines, too.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+begin_src elisp\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(defcustom LilyPond-ps-command \\u0026quot; /Applications/Preview.app/Contents/MacOS/Preview --watch\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;Command used to display PS files.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:group \\u0026#39;LilyPond\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:type \\u0026#39;string)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+end_src\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe same is with our standard PDF-Viewer, we choose Safari for URL-Handling.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+begin_src elisp\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(defcustom LilyPond-pdf-command \\u0026quot;/Applications/Safari.app/Contents/MacOS/Safari\\u201c\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;Command used to display PDF files.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:group \\u0026#39;LilyPond\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:type \\u0026#39;string)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+end_src\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E/* not yet working as expected\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChange MIDI\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+begin_src elisp\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(defcustom LilyPond-midi-command \\u0026quot;open\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;Command used to play MIDI files.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+end_src\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChange MIDI-Player to Logic Pro X.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+begin_src elisp\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(defcustom LilyPond-all-midi-command \\u0026quot;/Applications/Logic\\\\ Pro\\\\ [X.app/Contents/MacOS/Logic\\\\](\\u003Ca href=\\\"https://X.app/Contents/MacOS/Logic%5C\\\"\\u003Ehttps://X.app/Contents/MacOS/Logic\\\\\\u003C/a\\u003E) Pro\\\\ X -ia\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;Command used to play MIDI files.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:group \\u0026#39;LilyPond\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:type \\u0026#39;string)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+end_src\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# Since not everyone have purchased Logic Pro X, GarageBand is an free alternative.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esave with M-x-s\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eon a Mac now type alt-shift-:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etype\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(find-file user-init-file)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# This step is a bit dumb, just go to your home directory and open .emacs, or even C-x C-f ~/.emacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Estandard lilypond.mode-config-suggestions do not use .ily-files, so I modified them too. Copy and Paste the following to your .emacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ein emacs type C-y\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(setq load-path (append (list (expand-file-name\\u0026quot;/Applications/LilyPond.app/Contents/Resources/share/emacs/site-lisp\\u0026quot;)) load-path))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(autoload \\u0026#39;LilyPond-mode \\u0026quot;lilypond-mode\\u0026quot; \\u0026quot;LilyPond Editing Mode\\u0026quot; t)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;auto-mode-alist \\u0026#39;(\\u0026quot;\\\\\\\\.ly$\\u0026quot; . LilyPond-mode))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;auto-mode-alist \\u0026#39;(\\u0026quot;\\\\\\\\.ily$\\u0026quot; . LilyPond-mode))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;auto-mode-alist \\u0026#39;(\\u0026quot;\\\\\\\\.lytex$\\u0026quot; . LilyPond-mode))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-hook \\u0026#39;LilyPond-mode-hook (lambda () (turn-on-font-lock)))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(setq locale-coding-system \\u0026#39;utf-8)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(set-terminal-coding-system \\u0026#39;utf-8)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(set-keyboard-coding-system \\u0026#39;utf-8)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(set-selection-coding-system \\u0026#39;utf-8)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(prefer-coding-system \\u0026#39;utf-8)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Erestart emacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou are done\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOpen a LilyPond-file in emacs and you\\u0026#39;ll see!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjanc0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606320497.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdjamxl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"J-ky\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606291688.0, \"send_replies\": true, \"parent_id\": \"t3_k0mld2\", \"score\": 2, \"author_fullname\": \"t2_jz0p0yd\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have been using LilyPond for a while. I wonder what OS you are using, if you are using Windows, you may just skip all my advices. Why would you use emacs in Windows, or even, why are you using Windows? \\n\\nLilyPond is quite easy to setup in Linux, but I use macOS, currently in Big Sur, macOS version does not really matter. \\n\\nA lot of tutorials in setting up LilyPond in Emacs are outdated, and even if they are up-to-date, they are not for macOS. It was a terrible experience of setting up LilyPond in macOS.\\n\\nI found an incredible tutorial for setting up LilyPond in Emacs for macOS at the link below.\\n\\n[http://www.danielhensel.de/www.danielhensel.de\\\\_en/styled-19/styled-22/styled-23/](http://www.danielhensel.de/www.danielhensel.de_en/styled-19/styled-22/styled-23/)\\n\\nI modified a little bit for better reading experience in org mode, and added some comments.\\n\\nYou may open a blank org file and paste the following into your Emacs.\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdjamxl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have been using LilyPond for a while. I wonder what OS you are using, if you are using Windows, you may just skip all my advices. Why would you use emacs in Windows, or even, why are you using Windows? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELilyPond is quite easy to setup in Linux, but I use macOS, currently in Big Sur, macOS version does not really matter. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA lot of tutorials in setting up LilyPond in Emacs are outdated, and even if they are up-to-date, they are not for macOS. It was a terrible experience of setting up LilyPond in macOS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI found an incredible tutorial for setting up LilyPond in Emacs for macOS at the link below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.danielhensel.de/www.danielhensel.de_en/styled-19/styled-22/styled-23/\\\"\\u003Ehttp://www.danielhensel.de/www.danielhensel.de_en/styled-19/styled-22/styled-23/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI modified a little bit for better reading experience in org mode, and added some comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou may open a blank org file and paste the following into your Emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdjamxl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606320488.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0muwu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdj8d33\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"ftrx\", \"num_comments\": 12, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606289682.0, \"send_replies\": true, \"parent_id\": \"t3_k0muwu\", \"score\": 12, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"/u/nobiot actually working on it (see https://github.com/nobiot/org-transclusion) it's usable, easy to test, despite still under development.\", \"link_title\": \"You probably all know this but I found this post on zettelkasten interesting. I didn't know about transclusion. The author mentions Emacs but do you know if it supports transclusion as well?\", \"author_flair_css_class\": null, \"name\": \"t1_gdj8d33\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/nobiot\\\"\\u003E/u/nobiot\\u003C/a\\u003E actually working on it (see \\u003Ca href=\\\"https://github.com/nobiot/org-transclusion\\\"\\u003Ehttps://github.com/nobiot/org-transclusion\\u003C/a\\u003E) it\\u0026#39;s usable, easy to test, despite still under development.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/gdj8d33/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/\", \"report_reasons\": null, \"link_author\": \"emacsexplorer\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"created\": 1606318482.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 12}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0muwu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdj7y6f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"franburstall\", \"num_comments\": 12, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606289323.0, \"send_replies\": true, \"parent_id\": \"t3_k0muwu\", \"score\": 5, \"author_fullname\": \"t2_aamk6\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"LMGTFY: [https://github.com/alphapapa/transclusion-in-emacs](https://github.com/alphapapa/transclusion-in-emacs)\", \"link_title\": \"You probably all know this but I found this post on zettelkasten interesting. I didn't know about transclusion. The author mentions Emacs but do you know if it supports transclusion as well?\", \"author_flair_css_class\": null, \"name\": \"t1_gdj7y6f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELMGTFY: \\u003Ca href=\\\"https://github.com/alphapapa/transclusion-in-emacs\\\"\\u003Ehttps://github.com/alphapapa/transclusion-in-emacs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/gdj7y6f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/\", \"report_reasons\": null, \"link_author\": \"emacsexplorer\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"created\": 1606318123.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0mld2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdj3qp0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jtmoulia\", \"num_comments\": 16, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606285910.0, \"send_replies\": true, \"parent_id\": \"t3_k0mld2\", \"score\": 3, \"author_fullname\": \"t2_264dh\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hi! I haven't used Lilypond, let alone from Emacs but here are some thoughts. You need to load the lilypond elisp files -- given they're in the load path you can [`require`](https://www.gnu.org/software/emacs/manual/html_node/elisp/Named-Features.html#Named-Features). Assuming a `lilypond.el`, add this to your config:\\n\\n (require 'lilypond)\\n\\nNow you'll have to enter lilypond mode once you're in a lilypond buffer. Something like running the interactive command `M-x lilypond-mode` should work.\\n\\nIf you're wondering how to add elisp to your config or how to run an interactive command check out an intro like [this](https://blog.aaronbieber.com/2015/07/05/a-gentle-introduction-to-emacs-configuration.html).\", \"link_title\": \"Using Lilypond in Emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_gdj3qp0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi! I haven\\u0026#39;t used Lilypond, let alone from Emacs but here are some thoughts. You need to load the lilypond elisp files -- given they\\u0026#39;re in the load path you can \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/elisp/Named-Features.html#Named-Features\\\"\\u003E\\u003Ccode\\u003Erequire\\u003C/code\\u003E\\u003C/a\\u003E. Assuming a \\u003Ccode\\u003Elilypond.el\\u003C/code\\u003E, add this to your config:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;lilypond)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENow you\\u0026#39;ll have to enter lilypond mode once you\\u0026#39;re in a lilypond buffer. Something like running the interactive command \\u003Ccode\\u003EM-x lilypond-mode\\u003C/code\\u003E should work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you\\u0026#39;re wondering how to add elisp to your config or how to run an interactive command check out an intro like \\u003Ca href=\\\"https://blog.aaronbieber.com/2015/07/05/a-gentle-introduction-to-emacs-configuration.html\\\"\\u003Ethis\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/gdj3qp0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"report_reasons\": null, \"link_author\": \"zosterops_p\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"created\": 1606314710.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k0b4qv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdj3aac\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ndamee\", \"num_comments\": 14, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606285562.0, \"send_replies\": true, \"parent_id\": \"t3_k0b4qv\", \"score\": 2, \"author_fullname\": \"t2_3xqifjws\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You should create separate packages of these features.\\n\\nE.g., you could make a notification package which could be installed via elpa and then one could simply call a function to display such notifications.\", \"link_title\": \"Fun with a distractionless Emacs and posframes\", \"author_flair_css_class\": null, \"name\": \"t1_gdj3aac\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou should create separate packages of these features.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EE.g., you could make a notification package which could be installed via elpa and then one could simply call a function to display such notifications.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k0b4qv/fun_with_a_distractionless_emacs_and_posframes/gdj3aac/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k0b4qv/fun_with_a_distractionless_emacs_and_posframes/\", \"report_reasons\": null, \"link_author\": \"rfeynman42\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/gallery/k0b4qv\", \"created\": 1606314362.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ire660\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdj1dcy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zosterops_p\", \"num_comments\": 6, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606284110.0, \"send_replies\": true, \"parent_id\": \"t1_g4zweqg\", \"score\": 1, \"author_fullname\": \"t2_k6iusct\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"i'm new to emacs. \\nhow do i actually get lilypond to work on emacs? \\nlilypond's page mentioned to add it to the path but i checked the load-path variable and it seems ...site-lisp is already in the path? shouldn't it just work then? :(\", \"link_title\": \"Using emacs to enter simple music scores for the purpose of playing back to learn to sing?\", \"author_flair_css_class\": null, \"name\": \"t1_gdj1dcy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei\\u0026#39;m new to emacs.\\u003Cbr/\\u003E\\nhow do i actually get lilypond to work on emacs?\\u003Cbr/\\u003E\\nlilypond\\u0026#39;s page mentioned to add it to the path but i checked the load-path variable and it seems ...site-lisp is already in the path? shouldn\\u0026#39;t it just work then? :(\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ire660/using_emacs_to_enter_simple_music_scores_for_the/gdj1dcy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ire660/using_emacs_to_enter_simple_music_scores_for_the/\", \"report_reasons\": null, \"link_author\": \"yubrshen\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ire660/using_emacs_to_enter_simple_music_scores_for_the/\", \"created\": 1606312910.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ire660\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdj1cwc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zosterops_p\", \"num_comments\": 6, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606284100.0, \"send_replies\": true, \"parent_id\": \"t1_g4xzyp3\", \"score\": 1, \"author_fullname\": \"t2_k6iusct\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"i'm new to emacs. \\nhow do i actually get lilypond to work on emacs? \\nlilypond's page mentioned to add it to the path but i checked the load-path variable and it seems ...site-lisp is already in the path? shouldn't it just work then? :(\", \"link_title\": \"Using emacs to enter simple music scores for the purpose of playing back to learn to sing?\", \"author_flair_css_class\": null, \"name\": \"t1_gdj1cwc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei\\u0026#39;m new to emacs.\\u003Cbr/\\u003E\\nhow do i actually get lilypond to work on emacs?\\u003Cbr/\\u003E\\nlilypond\\u0026#39;s page mentioned to add it to the path but i checked the load-path variable and it seems ...site-lisp is already in the path? shouldn\\u0026#39;t it just work then? :(\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ire660/using_emacs_to_enter_simple_music_scores_for_the/gdj1cwc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ire660/using_emacs_to_enter_simple_music_scores_for_the/\", \"report_reasons\": null, \"link_author\": \"yubrshen\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ire660/using_emacs_to_enter_simple_music_scores_for_the/\", \"created\": 1606312900.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jzzo1q\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdj1599\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 7, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606283943.0, \"send_replies\": true, \"parent_id\": \"t3_jzzo1q\", \"score\": 1, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have \\\"C-v\\\" \\u003Center\\u003E to kill other windows (leaves just current window) and \\\"C-v --\\\" is for winner-undo from the winner-mode. \\nYou can use other prefix then C-v if you want, and you can make your own \\\"toggle\\\" function to toggle between those two. Check my keys if they make sense to you:\\n\\n\\u0026#x200B;\\n\\n (with-key-map global\\n ;; Window-buffer operations\\n ([f1] . term-toggle)\\n ([f2] . term-toggle-eshell)\\n ([f9] . ispell-word)\\n ([S-f10] . next-buffer)\\n ([f10] . previous-buffer)\\n ([f12] . kill-buffer-but-not-some)\\n ([M-f12] . kill-buffer-other-window)\\n ([C-M-f12] . only-current-buffer)\\n \\n ;; Emacs windows\\n (\\\"C-v \\u003Cleft\\u003E\\\" . windmove-left)\\n (\\\"C-v \\u003Cright\\u003E\\\" . windmove-right)\\n (\\\"C-v \\u003Cup\\u003E\\\" . windmove-up)\\n (\\\"C-v \\u003Cdown\\u003E\\\" . windmove-down)\\n (\\\"C-v o\\\" . other-window)\\n (\\\"C-v s\\\" . z-swap-windows)\\n (\\\"C-v l\\\" . windmove-left)\\n (\\\"C-v r\\\" . windmove-right)\\n (\\\"C-v u\\\" . windmove-up)\\n (\\\"C-v d\\\" . windmove-down)\\n (\\\"C-v C-+\\\" . enlarge-window-horizontally)\\n (\\\"C-v C-,\\\" . enlarge-window-vertically)\\n (\\\"C-v C--\\\" . shrink-window-horizontally)\\n (\\\"C-v C-.\\\" . shrink-window-vertically)\\n (\\\"C-v -\\\" . winner-undo)\\n (\\\"C-v +\\\" . winner-redo)\\n (\\\"C-v C-k\\\" . delete-window)\\n (\\\"C-v C-l\\\" . kill-window-left)\\n (\\\"C-v C-r\\\" . kill-window-right)\\n (\\\"C-v C-a\\\" . kill-window-above)\\n (\\\"C-v C-b\\\" . kill-window-below)\\n (\\\"C-v \\u003Creturn\\u003E\\\" . delete-other-windows)\\n (\\\"C-v ,\\\" . split-window-right)\\n (\\\"C-v .\\\" . split-window-below)\\n \\n ;; cursor movement\\n (\\\"M-n\\\" . scroll-up-line)\\n (\\\"M-N\\\" . scroll-up-command)\\n (\\\"M-p\\\" . scroll-down-line)\\n (\\\"M-P\\\" . scroll-down-command)\\n (\\\"C-f n\\\" . next-buffer)\\n (\\\"C-f p\\\" . previous-buffer)\\n (\\\"C-f C-c\\\" . org-capture)\\n \\n ;; some random stuff\\n (\\\"C-f f\\\" . right-char)\\n (\\\"C-x C-j\\\" . dired-jump)\\n (\\\"C-x 4 C-j\\\" . dired-jump-other-window)\\n (\\\"C-f i\\\" . (lambda() \\n (interactive)\\n (find-file (expand-file-name\\n \\\"init.org\\\" user-emacs-directory))))))\", \"link_title\": \"Expand buffer/split temporarily\", \"author_flair_css_class\": null, \"name\": \"t1_gdj1599\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have \\u0026quot;C-v\\u0026quot; \\u0026lt;enter\\u0026gt; to kill other windows (leaves just current window) and \\u0026quot;C-v --\\u0026quot; is for winner-undo from the winner-mode.\\u003Cbr/\\u003E\\nYou can use other prefix then C-v if you want, and you can make your own \\u0026quot;toggle\\u0026quot; function to toggle between those two. Check my keys if they make sense to you:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(with-key-map global\\n ;; Window-buffer operations\\n ([f1] . term-toggle)\\n ([f2] . term-toggle-eshell)\\n ([f9] . ispell-word)\\n ([S-f10] . next-buffer)\\n ([f10] . previous-buffer)\\n ([f12] . kill-buffer-but-not-some)\\n ([M-f12] . kill-buffer-other-window)\\n ([C-M-f12] . only-current-buffer)\\n\\n ;; Emacs windows\\n (\\u0026quot;C-v \\u0026lt;left\\u0026gt;\\u0026quot; . windmove-left)\\n (\\u0026quot;C-v \\u0026lt;right\\u0026gt;\\u0026quot; . windmove-right)\\n (\\u0026quot;C-v \\u0026lt;up\\u0026gt;\\u0026quot; . windmove-up)\\n (\\u0026quot;C-v \\u0026lt;down\\u0026gt;\\u0026quot; . windmove-down)\\n (\\u0026quot;C-v o\\u0026quot; . other-window)\\n (\\u0026quot;C-v s\\u0026quot; . z-swap-windows)\\n (\\u0026quot;C-v l\\u0026quot; . windmove-left)\\n (\\u0026quot;C-v r\\u0026quot; . windmove-right)\\n (\\u0026quot;C-v u\\u0026quot; . windmove-up)\\n (\\u0026quot;C-v d\\u0026quot; . windmove-down)\\n (\\u0026quot;C-v C-+\\u0026quot; . enlarge-window-horizontally)\\n (\\u0026quot;C-v C-,\\u0026quot; . enlarge-window-vertically)\\n (\\u0026quot;C-v C--\\u0026quot; . shrink-window-horizontally)\\n (\\u0026quot;C-v C-.\\u0026quot; . shrink-window-vertically)\\n (\\u0026quot;C-v -\\u0026quot; . winner-undo)\\n (\\u0026quot;C-v +\\u0026quot; . winner-redo)\\n (\\u0026quot;C-v C-k\\u0026quot; . delete-window)\\n (\\u0026quot;C-v C-l\\u0026quot; . kill-window-left)\\n (\\u0026quot;C-v C-r\\u0026quot; . kill-window-right)\\n (\\u0026quot;C-v C-a\\u0026quot; . kill-window-above)\\n (\\u0026quot;C-v C-b\\u0026quot; . kill-window-below)\\n (\\u0026quot;C-v \\u0026lt;return\\u0026gt;\\u0026quot; . delete-other-windows)\\n (\\u0026quot;C-v ,\\u0026quot; . split-window-right)\\n (\\u0026quot;C-v .\\u0026quot; . split-window-below)\\n\\n ;; cursor movement\\n (\\u0026quot;M-n\\u0026quot; . scroll-up-line)\\n (\\u0026quot;M-N\\u0026quot; . scroll-up-command)\\n (\\u0026quot;M-p\\u0026quot; . scroll-down-line)\\n (\\u0026quot;M-P\\u0026quot; . scroll-down-command)\\n (\\u0026quot;C-f n\\u0026quot; . next-buffer)\\n (\\u0026quot;C-f p\\u0026quot; . previous-buffer)\\n (\\u0026quot;C-f C-c\\u0026quot; . org-capture)\\n\\n ;; some random stuff\\n (\\u0026quot;C-f f\\u0026quot; . right-char)\\n (\\u0026quot;C-x C-j\\u0026quot; . dired-jump)\\n (\\u0026quot;C-x 4 C-j\\u0026quot; . dired-jump-other-window)\\n (\\u0026quot;C-f i\\u0026quot; . (lambda() \\n (interactive)\\n (find-file (expand-file-name\\n \\u0026quot;init.org\\u0026quot; user-emacs-directory))))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jzzo1q/expand_buffersplit_temporarily/gdj1599/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jzzo1q/expand_buffersplit_temporarily/\", \"report_reasons\": null, \"link_author\": \"enzlbtyn\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jzzo1q/expand_buffersplit_temporarily/\", \"created\": 1606312743.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jy2ost\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdiyuxf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 29, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606282310.0, \"send_replies\": true, \"parent_id\": \"t1_gdgniq0\", \"score\": 1, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes; I know; I saw it before. There is a nice post by Rougier today in the Reddit, take a look if you like his stuff.\", \"link_title\": \"If you would create your own Emacs distro ...\", \"author_flair_css_class\": null, \"name\": \"t1_gdiyuxf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes; I know; I saw it before. There is a nice post by Rougier today in the Reddit, take a look if you like his stuff.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jy2ost/if_you_would_create_your_own_emacs_distro/gdiyuxf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jy2ost/if_you_would_create_your_own_emacs_distro/\", \"report_reasons\": null, \"link_author\": \"arthurno1\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jy2ost/if_you_would_create_your_own_emacs_distro/\", \"created\": 1606311110.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jz2v8m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdiyi0t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 23, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606282065.0, \"send_replies\": true, \"parent_id\": \"t1_gdgeeww\", \"score\": 1, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003EBest of luck finding a provider that works for you.\\n\\n:-) Was that necessary? What does my service provider has to do with you not understanding me? So if somebody does not agree with you on something or a part, you can't understand that person? I feel some passive aggresivity there :-) Anyway; have a good day; don't take reddit chats too seriously.\", \"link_title\": \"January changes to Google apps and Emacs / Gnus\", \"author_flair_css_class\": null, \"name\": \"t1_gdiyi0t\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EBest of luck finding a provider that works for you.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E:-) Was that necessary? What does my service provider has to do with you not understanding me? So if somebody does not agree with you on something or a part, you can\\u0026#39;t understand that person? I feel some passive aggresivity there :-) Anyway; have a good day; don\\u0026#39;t take reddit chats too seriously.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jz2v8m/january_changes_to_google_apps_and_emacs_gnus/gdiyi0t/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jz2v8m/january_changes_to_google_apps_and_emacs_gnus/\", \"report_reasons\": null, \"link_author\": \"Amonwilde\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jz2v8m/january_changes_to_google_apps_and_emacs_gnus/\", \"created\": 1606310865.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jxqnjr\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdisb3v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"shooki7\", \"num_comments\": 9, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606278033.0, \"send_replies\": true, \"parent_id\": \"t1_gd4sq3x\", \"score\": 2, \"author_fullname\": \"t2_1xof3onn\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Eventually I just re-installed doom emacs, now it works fully. Couldn't explain the error, but at least it works :)\\n\\nThanks for the help!\", \"link_title\": \"[Doom] about autocomplete using company\", \"author_flair_css_class\": null, \"name\": \"t1_gdisb3v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEventually I just re-installed doom emacs, now it works fully. Couldn\\u0026#39;t explain the error, but at least it works :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for the help!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jxqnjr/doom_about_autocomplete_using_company/gdisb3v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jxqnjr/doom_about_autocomplete_using_company/\", \"report_reasons\": null, \"link_author\": \"shooki7\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jxqnjr/doom_about_autocomplete_using_company/\", \"created\": 1606306833.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jzzov9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdied4v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ramin-honary-xc\", \"num_comments\": 29, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606269964.0, \"send_replies\": true, \"parent_id\": \"t1_gdgol1i\", \"score\": 3, \"author_fullname\": \"t2_8mof715w\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes, I read this blog post: https://www.grammarly.com/blog/engineering/running-lisp-in-production/\\n\\nIt was a while ago so I don't remember many details. I just know the back-end part where the grammar rules are actually specified is written in Common Lisp. I imagine the front end, and possibly even the HTTP server is written in a different language.\", \"link_title\": \"Are there really no good grammar-checking packages?\", \"author_flair_css_class\": null, \"name\": \"t1_gdied4v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, I read this blog post: \\u003Ca href=\\\"https://www.grammarly.com/blog/engineering/running-lisp-in-production/\\\"\\u003Ehttps://www.grammarly.com/blog/engineering/running-lisp-in-production/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt was a while ago so I don\\u0026#39;t remember many details. I just know the back-end part where the grammar rules are actually specified is written in Common Lisp. I imagine the front end, and possibly even the HTTP server is written in a different language.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jzzov9/are_there_really_no_good_grammarchecking_packages/gdied4v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jzzov9/are_there_really_no_good_grammarchecking_packages/\", \"report_reasons\": null, \"link_author\": \"FluentFelicity\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jzzov9/are_there_really_no_good_grammarchecking_packages/\", \"created\": 1606298764.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jyowe0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdiby5v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"daehoidar3\", \"num_comments\": 63, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606268642.0, \"send_replies\": true, \"parent_id\": \"t1_gdhzxwd\", \"score\": 2, \"author_fullname\": \"t2_a3k96\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This will add the mu4e action to the `headers-view` so that pressing `a o` will open the current message in a `webkit` buffer which will be displayed in the same window that was displaying the `*mu4e-view*` buffer. So yes it will appear in the message \\\"pane\\\".\", \"link_title\": \"Introducing emacs-webkit - A successor to xwidget-webkit\", \"author_flair_css_class\": null, \"name\": \"t1_gdiby5v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis will add the mu4e action to the \\u003Ccode\\u003Eheaders-view\\u003C/code\\u003E so that pressing \\u003Ccode\\u003Ea o\\u003C/code\\u003E will open the current message in a \\u003Ccode\\u003Ewebkit\\u003C/code\\u003E buffer which will be displayed in the same window that was displaying the \\u003Ccode\\u003E*mu4e-view*\\u003C/code\\u003E buffer. So yes it will appear in the message \\u0026quot;pane\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jyowe0/introducing_emacswebkit_a_successor_to/gdiby5v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jyowe0/introducing_emacswebkit_a_successor_to/\", \"report_reasons\": null, \"link_author\": \"daehoidar3\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/htpfdfdaqp061.gif\", \"created\": 1606297442.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jzjtv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdi7e2z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"7890yuiop\", \"num_comments\": 69, \"edited\": 1606281880.0, \"can_mod_post\": false, \"created_utc\": 1606266142.0, \"send_replies\": true, \"parent_id\": \"t1_gdi24xs\", \"score\": 1, \"author_fullname\": \"t2_xw3p4\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Again, it's really hard to say. An Emacs configuration is a software program written in a general-purpose programming language -- and as with any other language, you can write a slow elisp program in any number of ways. No small set of tips can cover all the possibilities. I could say things like \\\"avoid running expensive code more frequently than necessary\\\", but that's probably not *particularly* helpful.\\n\\nThe only really easy thing I can think of to give tips about is regarding loading. If you are `require`ing libraries at init time, but don't actually need them until some later point, then you can improve your start-up time by relying on autoloading to load things on demand, and using `with-eval-after-load` to defer the evaluation of any dependent code until that point. You can write custom `autoload` declarations if necessary (but ELPA packages tend to take care of that).\\n\\nFor run-time performance problems, my best tip is to learn all about the profiler: `C-h i g (elisp)Profiling`.\", \"link_title\": \"Doom emacs vs vanilla emacs\", \"author_flair_css_class\": null, \"name\": \"t1_gdi7e2z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAgain, it\\u0026#39;s really hard to say. An Emacs configuration is a software program written in a general-purpose programming language -- and as with any other language, you can write a slow elisp program in any number of ways. No small set of tips can cover all the possibilities. I could say things like \\u0026quot;avoid running expensive code more frequently than necessary\\u0026quot;, but that\\u0026#39;s probably not \\u003Cem\\u003Eparticularly\\u003C/em\\u003E helpful.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe only really easy thing I can think of to give tips about is regarding loading. If you are \\u003Ccode\\u003Erequire\\u003C/code\\u003Eing libraries at init time, but don\\u0026#39;t actually need them until some later point, then you can improve your start-up time by relying on autoloading to load things on demand, and using \\u003Ccode\\u003Ewith-eval-after-load\\u003C/code\\u003E to defer the evaluation of any dependent code until that point. You can write custom \\u003Ccode\\u003Eautoload\\u003C/code\\u003E declarations if necessary (but ELPA packages tend to take care of that).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor run-time performance problems, my best tip is to learn all about the profiler: \\u003Ccode\\u003EC-h i g (elisp)Profiling\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jzjtv0/doom_emacs_vs_vanilla_emacs/gdi7e2z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jzjtv0/doom_emacs_vs_vanilla_emacs/\", \"report_reasons\": null, \"link_author\": \"yelinaung98\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jzjtv0/doom_emacs_vs_vanilla_emacs/\", \"created\": 1606294942.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jzjtv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdi24xs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"daraul\", \"num_comments\": 69, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606263273.0, \"send_replies\": true, \"parent_id\": \"t1_gddvuhd\", \"score\": 1, \"author_fullname\": \"t2_gmpcb\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I was not hoping for a panacea that would make my configuration blazing fast. \\n\\nInstead I was hoping for something along the line of tips, or best-practices. Things I should do, or not do, to ensure good performance is maintained as I configure my emacs.\", \"link_title\": \"Doom emacs vs vanilla emacs\", \"author_flair_css_class\": null, \"name\": \"t1_gdi24xs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was not hoping for a panacea that would make my configuration blazing fast. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstead I was hoping for something along the line of tips, or best-practices. Things I should do, or not do, to ensure good performance is maintained as I configure my emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jzjtv0/doom_emacs_vs_vanilla_emacs/gdi24xs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jzjtv0/doom_emacs_vs_vanilla_emacs/\", \"report_reasons\": null, \"link_author\": \"yelinaung98\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/jzjtv0/doom_emacs_vs_vanilla_emacs/\", \"created\": 1606292073.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jya77n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdi1ard\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheDrownedKraken\", \"num_comments\": 1, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606262815.0, \"send_replies\": true, \"parent_id\": \"t3_jya77n\", \"score\": 1, \"author_fullname\": \"t2_79lfk\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"The reason setting the `hl-line-mode` to `nil` doesn\\u2019t work is that `global-hl-line-mode` and `hl-line-mode` are different modes! The local only mode is already off. In fact, if you call it with M-x trying to toggle it, you\\u2019ll see that you actually turn it on. Then when you call global with M-x, the line is still highlighted because you have the local only mode on now. I figured this out the hard way a few weeks ago when I was trying to figure out the face under the point, and it always came up as highlight line face.\", \"link_title\": \"Disable global-hl-line-mode for Specific Modes\", \"author_flair_css_class\": null, \"name\": \"t1_gdi1ard\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe reason setting the \\u003Ccode\\u003Ehl-line-mode\\u003C/code\\u003E to \\u003Ccode\\u003Enil\\u003C/code\\u003E doesn\\u2019t work is that \\u003Ccode\\u003Eglobal-hl-line-mode\\u003C/code\\u003E and \\u003Ccode\\u003Ehl-line-mode\\u003C/code\\u003E are different modes! The local only mode is already off. In fact, if you call it with M-x trying to toggle it, you\\u2019ll see that you actually turn it on. Then when you call global with M-x, the line is still highlighted because you have the local only mode on now. I figured this out the hard way a few weeks ago when I was trying to figure out the face under the point, and it always came up as highlight line face.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jya77n/disable_globalhllinemode_for_specific_modes/gdi1ard/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jya77n/disable_globalhllinemode_for_specific_modes/\", \"report_reasons\": null, \"link_author\": \"bozhidarb\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://emacsredux.com/blog/2020/11/21/disable-global-hl-line-mode-for-specific-modes/\", \"created\": 1606291615.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_k08dax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdi0ki0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Nanjigen\", \"num_comments\": 8, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606262415.0, \"send_replies\": true, \"parent_id\": \"t1_gdhqvn4\", \"score\": 1, \"author_fullname\": \"t2_xlmtz\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes they are part of the same brain, but seeing as anything in a subfolder contained within the same folder of the main brain is prefixed with the name of that subfolder in helm searches, it's possible to narrow searches based on regex in the search buffer.\\n\\nThat said, the brain-switch functionality exists and definitely has use cases which you are demonstrating - currently I'm encountering one myself where I may need to generate another, separate brain.\\n\\nIn your zettel-like method, are you allowing headers to = zettels? This seems a firm strength of org and org-ids and the single file note methods seem a waste in orgmode. I think people complain about speed, but are not aware of the org-id indexing that occurs at the first start up of org-brain. Searches of headings and files (\\\"nodes\\\") are completely instantaneous for me with helm-brain\", \"link_title\": \"How do you manage your reference material in a zettlelkasten workflow?\", \"author_flair_css_class\": null, \"name\": \"t1_gdi0ki0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes they are part of the same brain, but seeing as anything in a subfolder contained within the same folder of the main brain is prefixed with the name of that subfolder in helm searches, it\\u0026#39;s possible to narrow searches based on regex in the search buffer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat said, the brain-switch functionality exists and definitely has use cases which you are demonstrating - currently I\\u0026#39;m encountering one myself where I may need to generate another, separate brain.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn your zettel-like method, are you allowing headers to = zettels? This seems a firm strength of org and org-ids and the single file note methods seem a waste in orgmode. I think people complain about speed, but are not aware of the org-id indexing that occurs at the first start up of org-brain. Searches of headings and files (\\u0026quot;nodes\\u0026quot;) are completely instantaneous for me with helm-brain\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/k08dax/how_do_you_manage_your_reference_material_in_a/gdi0ki0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/k08dax/how_do_you_manage_your_reference_material_in_a/\", \"report_reasons\": null, \"link_author\": \"jasonmirk\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/k08dax/how_do_you_manage_your_reference_material_in_a/\", \"created\": 1606291215.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_jyowe0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"gdhzxwd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LainDotExe\", \"num_comments\": 63, \"edited\": false, \"can_mod_post\": false, \"created_utc\": 1606262075.0, \"send_replies\": true, \"parent_id\": \"t1_gdhk5yr\", \"score\": 1, \"author_fullname\": \"t2_57go53hv\", \"over_18\": false, \"treatment_tags\": [], \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"thank you! I am curious if this snippet will allow me to view the message in the message pane?\", \"link_title\": \"Introducing emacs-webkit - A successor to xwidget-webkit\", \"author_flair_css_class\": null, \"name\": \"t1_gdhzxwd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethank you! I am curious if this snippet will allow me to view the message in the message pane?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/jyowe0/introducing_emacswebkit_a_successor_to/gdhzxwd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/jyowe0/introducing_emacswebkit_a_successor_to/\", \"report_reasons\": null, \"link_author\": \"daehoidar3\", \"subreddit\": \"emacs\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/htpfdfdaqp061.gif\", \"created\": 1606290875.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_gdhzxwd\", \"before\": null}}"}, "headers": {"Connection": ["keep-alive"], "Content-Length": ["295082"], "Content-Type": ["application/json; charset=UTF-8"], "x-ua-compatible": ["IE=edge"], "x-frame-options": ["SAMEORIGIN"], "x-content-type-options": ["nosniff"], "x-xss-protection": ["1; mode=block"], "expires": ["-1"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate"], "x-ratelimit-remaining": ["597.0"], "x-ratelimit-used": ["3"], "x-ratelimit-reset": ["555"], "X-Moose": ["majestic"], "Accept-Ranges": ["bytes"], "Date": ["Wed, 25 Nov 2020 18:50:45 GMT"], "Via": ["1.1 varnish"], "Vary": ["accept-encoding"], "Set-Cookie": ["session_tracker=aigqdcjojippkqqagh.0.1606330245283.Z0FBQUFBQmZ2cWVGc2dLNVNDWVlwaWhUcnE3QWI3djNiX1lrVUhEN2trMDY2SE1TcXltUnZxUm10VFZnV0lxc2R6NFdZMjViQmdKeEVIVTNDOXNTV0NEQlF2OHJjdEhLNmFkcWcwNzB0RWpWSXdZc19hY0tPNmR0LUJOTm1zdXVFTi02NHZ3RTdCTm0; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 25-Nov-2020 20:50:45 GMT; secure; SameSite=None; Secure"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "Server": ["snooserv"]}, "status": {"code": 200, "message": "OK"}, "url": "https://oauth.reddit.com/r/emacs/comments/?limit=100&raw_json=1"}, "recorded_at": "2020-11-25T18:50:45"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["Linux:nnreddit:0.1.1 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.3.0"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "Connection": ["keep-alive"], "Authorization": ["bearer **********"], "Cookie": ["csv=1; edgebucket=EybcjNOfmh59xW6M7J; redesign_optout=true; session_tracker=aigqdcjojippkqqagh.0.1606330245283.Z0FBQUFBQmZ2cWVGc2dLNVNDWVlwaWhUcnE3QWI3djNiX1lrVUhEN2trMDY2SE1TcXltUnZxUm10VFZnV0lxc2R6NFdZMjViQmdKeEVIVTNDOXNTV0NEQlF2OHJjdEhLNmFkcWcwNzB0RWpWSXdZc19hY0tPNmR0LUJOTm1zdXVFTi02NHZ3RTdCTm0"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?before=t1_gdku6nr&limit=100&raw_json=1"}, "response": {"body": {"encoding": "UTF-8", "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}"}, "headers": {"Connection": ["keep-alive"], "Content-Length": ["104"], "Content-Type": ["application/json; charset=UTF-8"], "x-ua-compatible": ["IE=edge"], "x-frame-options": ["SAMEORIGIN"], "x-content-type-options": ["nosniff"], "x-xss-protection": ["1; mode=block"], "expires": ["-1"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate"], "x-ratelimit-remaining": ["596.0"], "x-ratelimit-used": ["4"], "x-ratelimit-reset": ["555"], "X-Moose": ["majestic"], "Accept-Ranges": ["bytes"], "Date": ["Wed, 25 Nov 2020 18:50:46 GMT"], "Via": ["1.1 varnish"], "Set-Cookie": ["session_tracker=aigqdcjojippkqqagh.0.1606330245962.Z0FBQUFBQmZ2cWVGcnJBdDFoRjlZaXRLV1dHT3BwX29pZEhuYVV0R09wNzF5a1ZxMk96VFBjYXluN1BJNkR5aXhQakt2bXk5bC1Cc2VjZXRYcks4c3hWU0lWV3hYaVlrS0pXRGhENGRpTjZZNjFWQkl5R0JUSGNtZXBhamhvVGhLOTd2OFVFdUpGQ00; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 25-Nov-2020 20:50:45 GMT; secure; SameSite=None; Secure"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "Server": ["snooserv"]}, "status": {"code": 200, "message": "OK"}, "url": "https://oauth.reddit.com/r/emacs/comments/?before=t1_gdku6nr&limit=100&raw_json=1"}, "recorded_at": "2020-11-25T18:50:46"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["Linux:nnreddit:0.1.1 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.3.0"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "Connection": ["keep-alive"], "Authorization": ["bearer **********"], "Cookie": ["csv=1; edgebucket=EybcjNOfmh59xW6M7J; redesign_optout=true; session_tracker=aigqdcjojippkqqagh.0.1606330245962.Z0FBQUFBQmZ2cWVGcnJBdDFoRjlZaXRLV1dHT3BwX29pZEhuYVV0R09wNzF5a1ZxMk96VFBjYXluN1BJNkR5aXhQakt2bXk5bC1Cc2VjZXRYcks4c3hWU0lWV3hYaVlrS0pXRGhENGRpTjZZNjFWQkl5R0JUSGNtZXBhamhvVGhLOTd2OFVFdUpGQ00"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?limit=100&raw_json=1"}, "response": {"body": {"encoding": "UTF-8", "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi fellow emacs users,\\n\\nI have an use-package config. So no vim keybinds for me (unless I wanna get evil-mode, which I dont, really, I want to keep the keybinds closer to the defaults.) So far I love it, but I dont like the method of movement. Those are the C- pn fb keys, for forward, backward, next and prevous. They are mnemonic, but not really ergonomic.\\n\\nAny suggestions?\\n\\nTLDR: I need better movement keys than the default.\", \"author_fullname\": \"t2_4wofjg5q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Movement keys\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": true, \"name\": \"t3_k0y52w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606358882.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi fellow emacs users,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have an use-package config. So no vim keybinds for me (unless I wanna get evil-mode, which I dont, really, I want to keep the keybinds closer to the defaults.) So far I love it, but I dont like the method of movement. Those are the C- pn fb keys, for forward, backward, next and prevous. They are mnemonic, but not really ergonomic.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny suggestions?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETLDR: I need better movement keys than the default.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0y52w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"18gatenmaker6\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k0y52w/movement_keys/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/k0y52w/movement_keys/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606330082.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I was really enjoying LSP + golang couple days ago, company-complete showing all with a type of \\\".\\\". However, when I tried again today, it becomes a CPU hug, and the auto complete stop working. I'm not sure if I installed anything in between (I was in the process of tweaking my emacs, switching between doom and my own setup).\\n\\n\\u0026#x200B;\\n\\nThis is true for both my own setup (vanilla emacs) or doom emacs now.\\n\\n\\u0026#x200B;\\n\\nI did a 'list-process' and noticed there are couple of \\\"doom-modeline-env\\\" process that doesn't exist before I loaded any golang file that triggers LSP.\\n\\n\\u0026#x200B;\\n\\nAny thought on how to debug this?\\n\\nEdit: there seems issues with LSP itself. I deleted the gopls binary so it can't be found. The CPU usage by emacs itself is high, along with these bash processes it spawns.\", \"author_fullname\": \"t2_13ykj5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"golang + LSP causes sustained CPU usage\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": true, \"name\": \"t3_k0wcu3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1606325643.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606353683.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was really enjoying LSP + golang couple days ago, company-complete showing all with a type of \\u0026quot;.\\u0026quot;. However, when I tried again today, it becomes a CPU hug, and the auto complete stop working. I\\u0026#39;m not sure if I installed anything in between (I was in the process of tweaking my emacs, switching between doom and my own setup).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is true for both my own setup (vanilla emacs) or doom emacs now.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did a \\u0026#39;list-process\\u0026#39; and noticed there are couple of \\u0026quot;doom-modeline-env\\u0026quot; process that doesn\\u0026#39;t exist before I loaded any golang file that triggers LSP.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny thought on how to debug this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: there seems issues with LSP itself. I deleted the gopls binary so it can\\u0026#39;t be found. The CPU usage by emacs itself is high, along with these bash processes it spawns.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0wcu3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gws10463\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k0wcu3/golang_lsp_causes_sustained_cpu_usage/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/k0wcu3/golang_lsp_causes_sustained_cpu_usage/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606324883.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I can't figure out how to get searches, isearch, swiper, etc; to move the found text to the center of the window. Other editors/word processors I have used will do this.\", \"author_fullname\": \"t2_9xiwc2c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to get swiper(or other searches) to move the found text to the middle of the window?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k0u68w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606346925.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t figure out how to get searches, isearch, swiper, etc; to move the found text to the center of the window. Other editors/word processors I have used will do this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0u68w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nedhanks\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k0u68w/how_to_get_swiperor_other_searches_to_move_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/k0u68w/how_to_get_swiperor_other_searches_to_move_the/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606318125.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Are customize settings independent of the packages that depend on them?\\n\\nI run the `custom.el` routine and it clobbered some settings I put in `init.e` l, so I want to know if the settings in `custom.el` are pure emacs variables and don't depend on the packages the values set in it apply to.\\n\\nThat way I can set it to execute earlier in the start up sequence and let my overrides in `init.el` be the final settings.\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can the settings in customize be run at any time?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k0sun1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.5, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606342303.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAre customize settings independent of the packages that depend on them?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI run the \\u003Ccode\\u003Ecustom.el\\u003C/code\\u003E routine and it clobbered some settings I put in \\u003Ccode\\u003Einit.e\\u003C/code\\u003E l, so I want to know if the settings in \\u003Ccode\\u003Ecustom.el\\u003C/code\\u003E are pure emacs variables and don\\u0026#39;t depend on the packages the values set in it apply to.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat way I can set it to execute earlier in the start up sequence and let my overrides in \\u003Ccode\\u003Einit.el\\u003C/code\\u003E be the final settings.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0sun1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k0sun1/can_the_settings_in_customize_be_run_at_any_time/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/k0sun1/can_the_settings_in_customize_be_run_at_any_time/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606313503.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Pick one thing. Try to be specific. I'm curious. That's all.\", \"author_fullname\": \"t2_r9kzcvy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is the single thing that makes you want to use emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k0s6bn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.8, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606339738.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPick one thing. Try to be specific. I\\u0026#39;m curious. That\\u0026#39;s all.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0s6bn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"diogocasado\", \"discussion_type\": null, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/k0s6bn/what_is_the_single_thing_that_makes_you_want_to/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606310938.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_lbvyqif\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Thought: Define a :vc header argument to specify version of code in src blocks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k0rzjx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Context: reflecting on the reproducibility of analysis in my org mode lab notebook.\\n\\nI run python analysis scripts on local/remote machines by specifying the `:dir` header. Since the underlying script changes over time, revisiting a 6 month old \\\"experiment\\\" and re-executing the code leads to potentially different results. However, the scripts are version controlled. In the past, I have included links to the version used in the analysis in my notes (by using [org-git-link](https://orgmode.org/worg/org-contrib/org-git-link.html) which is very cool), but simply having this information doesn't make it easier to auto-magically use the right version/commit hash when `C-c C-c` ing on a source block.\\n\\nIdea: Specify commit \\\"ID\\\"s (hashes, tags, dates maybe?) using a `:vc` header argument or similar, and dwim the right checkout command based on the repository at `:dir` before starting the process.\\n\\n1. Does this make sense?\\n2. Does something like this exist already? How hard would it be to implement? Pointers to examples of extending org source block functionality appreciated.\\n3. Would this be useful from a reproducible-research point of view? Does anyone know of similar features in jupyter notebooks/Rmarkdown?\", \"author_fullname\": \"t2_lbvyqif\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Thought: Define a :vc header argument to specify version of code in src blocks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k0ryy7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606338885.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EContext: reflecting on the reproducibility of analysis in my org mode lab notebook.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI run python analysis scripts on local/remote machines by specifying the \\u003Ccode\\u003E:dir\\u003C/code\\u003E header. Since the underlying script changes over time, revisiting a 6 month old \\u0026quot;experiment\\u0026quot; and re-executing the code leads to potentially different results. However, the scripts are version controlled. In the past, I have included links to the version used in the analysis in my notes (by using \\u003Ca href=\\\"https://orgmode.org/worg/org-contrib/org-git-link.html\\\"\\u003Eorg-git-link\\u003C/a\\u003E which is very cool), but simply having this information doesn\\u0026#39;t make it easier to auto-magically use the right version/commit hash when \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E ing on a source block.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIdea: Specify commit \\u0026quot;ID\\u0026quot;s (hashes, tags, dates maybe?) using a \\u003Ccode\\u003E:vc\\u003C/code\\u003E header argument or similar, and dwim the right checkout command based on the repository at \\u003Ccode\\u003E:dir\\u003C/code\\u003E before starting the process.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EDoes this make sense?\\u003C/li\\u003E\\n\\u003Cli\\u003EDoes something like this exist already? How hard would it be to implement? Pointers to examples of extending org source block functionality appreciated.\\u003C/li\\u003E\\n\\u003Cli\\u003EWould this be useful from a reproducible-research point of view? Does anyone know of similar features in jupyter notebooks/Rmarkdown?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0ryy7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jalihal\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/k0ryy7/thought_define_a_vc_header_argument_to_specify/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/k0ryy7/thought_define_a_vc_header_argument_to_specify/\", \"subreddit_subscribers\": 12637, \"created_utc\": 1606310085.0, \"num_crossposts\": 1, \"media\": null, \"is_video\": false}], \"created\": 1606338958.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"/r/orgmode/comments/k0ryy7/thought_define_a_vc_header_argument_to_specify/\", \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0rzjx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jalihal\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_k0ryy7\", \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k0rzjx/thought_define_a_vc_header_argument_to_specify/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"/r/orgmode/comments/k0ryy7/thought_define_a_vc_header_argument_to_specify/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606310158.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_ac3lmr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Future of Helm and new maintainer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k0q2xf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.72, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1606330388.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/emacs-helm/helm/issues/2389\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Guix Next Emms Helm Evil Collection\", \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0q2xf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ambrevar\", \"discussion_type\": null, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/k0q2xf/future_of_helm_and_new_maintainer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/emacs-helm/helm/issues/2389\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606301588.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\ndo you know about a builded version from the emacs navitve ?\\n\\nI just intend to try it, but I don't want to build it by myself\", \"author_fullname\": \"t2_gvnql7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"win10 emacs native\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k0o8ir\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606321227.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Edo you know about a builded version from the emacs navitve ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI just intend to try it, but I don\\u0026#39;t want to build it by myself\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0o8ir\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zsome\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k0o8ir/win10_emacs_native/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/k0o8ir/win10_emacs_native/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606292427.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_6eqb2nlx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"You probably all know this but I found this post on zettelkasten interesting. I didn't know about transclusion. The author mentions Emacs but do you know if it supports transclusion as well?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k0muwu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.95, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1606314769.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"riclage.medium.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0muwu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"emacsexplorer\", \"discussion_type\": null, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k0muwu/you_probably_all_know_this_but_i_found_this_post/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://riclage.medium.com/get-your-second-brain-with-a-note-taking-habit-5d5962ec0f0b\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606285969.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm new to Emacs and Lilypond. \\nHow do I actually get Lilypond to work in Emacs? I read the description from Lilypond's page and it mentioned to include /usr/share/emacs/site-lisp to the load-path, but i checked that variable and that path is already in the load-path. Furthermore, all the lilypond files like lilypond-init.el, lilypond-mode.el are already in /usr/share/emacs/site-lisp.... so shouldn't it just work automatically? \\nCould really use some help on how to set up lilypond in Emacs properly. As well as maybe setting up live automatic pdf preview on lilypond file? \\n\\nthanks in advance.\", \"author_fullname\": \"t2_k6iusct\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using Lilypond in Emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k0mld2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606313539.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m new to Emacs and Lilypond.\\u003Cbr/\\u003E\\nHow do I actually get Lilypond to work in Emacs? I read the description from Lilypond\\u0026#39;s page and it mentioned to include /usr/share/emacs/site-lisp to the load-path, but i checked that variable and that path is already in the load-path. Furthermore, all the lilypond files like lilypond-init.el, lilypond-mode.el are already in /usr/share/emacs/site-lisp.... so shouldn\\u0026#39;t it just work automatically?\\u003Cbr/\\u003E\\nCould really use some help on how to set up lilypond in Emacs properly. As well as maybe setting up live automatic pdf preview on lilypond file? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethanks in advance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0mld2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zosterops_p\", \"discussion_type\": null, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/k0mld2/using_lilypond_in_emacs/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606284739.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I didn't see any package out there that did what I wanted, so took a stab at one. \\n\\n`org-timed-alerts` scans your agenda files, finds any timestamps (active, deadline, or scheduled) with a time-of-day specification, and sends event warnings via `alert.el` according to whatever intervals you specify with custom alert messages.\\n\\nThis is specifically for events that have a time-of-day specification. Ever look at your clock 10 minutes before a scheduled phone call, keep working on something else, and then not look at your clock until 2 minutes after the phone call was supposed to begin? That's the problem I am trying to solve. It is a simple package but has been useful for me.\\n\\nSee [https://github.com/legalnonsense/org-timed-alerts](https://github.com/legalnonsense/org-timed-alerts).\\n\\nAny feedback is welcome. I know there are some questionable, hopefully minor, design choices. If it is useful to others I'd like to get it cleaned up and finalized. If it is not, I will happily leave it in its current state and use it myself.\", \"author_fullname\": \"t2_3gjjtpnq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[RFC] org-timed-alerts - receive warnings for upcoming events in your day\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k0kyi4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606306622.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI didn\\u0026#39;t see any package out there that did what I wanted, so took a stab at one. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-timed-alerts\\u003C/code\\u003E scans your agenda files, finds any timestamps (active, deadline, or scheduled) with a time-of-day specification, and sends event warnings via \\u003Ccode\\u003Ealert.el\\u003C/code\\u003E according to whatever intervals you specify with custom alert messages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is specifically for events that have a time-of-day specification. Ever look at your clock 10 minutes before a scheduled phone call, keep working on something else, and then not look at your clock until 2 minutes after the phone call was supposed to begin? That\\u0026#39;s the problem I am trying to solve. It is a simple package but has been useful for me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESee \\u003Ca href=\\\"https://github.com/legalnonsense/org-timed-alerts\\\"\\u003Ehttps://github.com/legalnonsense/org-timed-alerts\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny feedback is welcome. I know there are some questionable, hopefully minor, design choices. If it is useful to others I\\u0026#39;d like to get it cleaned up and finalized. If it is not, I will happily leave it in its current state and use it myself.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0kyi4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itistheblurstoftimes\", \"discussion_type\": null, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/k0kyi4/rfc_orgtimedalerts_receive_warnings_for_upcoming/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606277822.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\\n- Is there already a function similar to paredil-kill that kills the line backwards (respecting delimiters)? E.g. \\\"foo bar| baz\\\" -\\u003E \\\"baz\\\"\\n\\n- Is there already a function similar to kill-whole-line that retains structure, i.e. does beginning-of-line, paredit-kill, join-line?\\n\\n- What other functions do you think are missing from paredit? What functions are present in paredit, but are underappreciated by paredit's users?\", \"author_fullname\": \"t2_feyt858\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"paredit's missing functions\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k0kvyy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606306338.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIs there already a function similar to paredil-kill that kills the line backwards (respecting delimiters)? E.g. \\u0026quot;foo bar| baz\\u0026quot; -\\u0026gt; \\u0026quot;baz\\u0026quot;\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIs there already a function similar to kill-whole-line that retains structure, i.e. does beginning-of-line, paredit-kill, join-line?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EWhat other functions do you think are missing from paredit? What functions are present in paredit, but are underappreciated by paredit\\u0026#39;s users?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0kvyy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Eno6ohng\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k0kvyy/paredits_missing_functions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/k0kvyy/paredits_missing_functions/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606277538.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_36mb3d52\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"is_gallery\": true, \"title\": \"Fun with a distractionless Emacs and posframes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"media_metadata\": {\"xn3ks1gbi8161\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/png\", \"p\": [{\"y\": 60, \"x\": 108, \"u\": \"https://preview.redd.it/xn3ks1gbi8161.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=170c294ef84cb6e9376933cfa0080ab437a784ef\"}, {\"y\": 121, \"x\": 216, \"u\": \"https://preview.redd.it/xn3ks1gbi8161.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=958f728d21af5a65d478beee96afb828effa8955\"}, {\"y\": 180, \"x\": 320, \"u\": \"https://preview.redd.it/xn3ks1gbi8161.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6ac75f2b70d0988fc840515c85b89f72b17781ed\"}, {\"y\": 360, \"x\": 640, \"u\": \"https://preview.redd.it/xn3ks1gbi8161.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=11811fa951db1aa06929ed8f65f2c74818b45c0e\"}, {\"y\": 540, \"x\": 960, \"u\": \"https://preview.redd.it/xn3ks1gbi8161.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=755da22179c9352a6a036de6127874e16a1e2e15\"}, {\"y\": 607, \"x\": 1080, \"u\": \"https://preview.redd.it/xn3ks1gbi8161.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=20e131a550d7e65cf70fbd7ca0af329914e52cde\"}], \"s\": {\"y\": 1080, \"x\": 1920, \"u\": \"https://preview.redd.it/xn3ks1gbi8161.png?width=1920\\u0026format=png\\u0026auto=webp\\u0026s=650d2f03eb980061d56fb036d824638ba8452398\"}, \"id\": \"xn3ks1gbi8161\"}, \"00unsmbbi8161\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/png\", \"p\": [{\"y\": 60, \"x\": 108, \"u\": \"https://preview.redd.it/00unsmbbi8161.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c7f31dbd36b4082bf8ed2ebe47a0ad071851d4ca\"}, {\"y\": 121, \"x\": 216, \"u\": \"https://preview.redd.it/00unsmbbi8161.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f4e889015df44c32209e268a4920f367adb0ab68\"}, {\"y\": 180, \"x\": 320, \"u\": \"https://preview.redd.it/00unsmbbi8161.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=81743aceeace2362e33867318f2b6fdfe8aedd3c\"}, {\"y\": 360, \"x\": 640, \"u\": \"https://preview.redd.it/00unsmbbi8161.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1a5abd51cb1ea4e8619e715e683778637dff4b3f\"}, {\"y\": 540, \"x\": 960, \"u\": \"https://preview.redd.it/00unsmbbi8161.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=7425dc4e4856f609f453c3d618a9220430c85219\"}, {\"y\": 607, \"x\": 1080, \"u\": \"https://preview.redd.it/00unsmbbi8161.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=81f342fe9fcc81a9f104724d0e8fe70a40f3b1e5\"}], \"s\": {\"y\": 1080, \"x\": 1920, \"u\": \"https://preview.redd.it/00unsmbbi8161.png?width=1920\\u0026format=png\\u0026auto=webp\\u0026s=a6e6ce7ffa79f5e4f064cd097b1d21e342a3b5ea\"}, \"id\": \"00unsmbbi8161\"}, \"msa4v2xbi8161\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/png\", \"p\": [{\"y\": 60, \"x\": 108, \"u\": \"https://preview.redd.it/msa4v2xbi8161.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5144b800246f681bf85a1af31c6f84ade4285b77\"}, {\"y\": 121, \"x\": 216, \"u\": \"https://preview.redd.it/msa4v2xbi8161.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0775351dd4f37d12bb672ff21337737491cafa4b\"}, {\"y\": 180, \"x\": 320, \"u\": \"https://preview.redd.it/msa4v2xbi8161.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=84f5ee26d14bfbe613b33b2735b5a6a8a7fbb4c2\"}, {\"y\": 360, \"x\": 640, \"u\": \"https://preview.redd.it/msa4v2xbi8161.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f9a8ec6edab0e862e0db0c184921977fcd856f1f\"}, {\"y\": 540, \"x\": 960, \"u\": \"https://preview.redd.it/msa4v2xbi8161.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f8a58bd5162c6a3ad0a4b67a23184b2a7690db38\"}, {\"y\": 607, \"x\": 1080, \"u\": \"https://preview.redd.it/msa4v2xbi8161.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ecc13e03601b250ba23eb04e031ab314a05b17e6\"}], \"s\": {\"y\": 1080, \"x\": 1920, \"u\": \"https://preview.redd.it/msa4v2xbi8161.png?width=1920\\u0026format=png\\u0026auto=webp\\u0026s=ddd9ff70e9b0bfb7d1d0a4bb1241de5c3b67cf77\"}, \"id\": \"msa4v2xbi8161\"}, \"ptzwydmbi8161\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/png\", \"p\": [{\"y\": 60, \"x\": 108, \"u\": \"https://preview.redd.it/ptzwydmbi8161.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d5b4c664a83006a50366000c8807b133ef68500d\"}, {\"y\": 121, \"x\": 216, \"u\": \"https://preview.redd.it/ptzwydmbi8161.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6693ad21e9540a7be46d7fbe463faf3628445e7c\"}, {\"y\": 180, \"x\": 320, \"u\": \"https://preview.redd.it/ptzwydmbi8161.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1825c0ac0f6b1646c257518374982667d10befe6\"}, {\"y\": 360, \"x\": 640, \"u\": \"https://preview.redd.it/ptzwydmbi8161.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=dbe129463bf793674c6e360a49d1282f574093fa\"}, {\"y\": 540, \"x\": 960, \"u\": \"https://preview.redd.it/ptzwydmbi8161.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=0bb2f678a2a19138a5951deed674d78fc948721c\"}, {\"y\": 607, \"x\": 1080, \"u\": \"https://preview.redd.it/ptzwydmbi8161.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=5cd4a74dd910b782dcf9c65d7140085660d2a5e3\"}], \"s\": {\"y\": 1080, \"x\": 1920, \"u\": \"https://preview.redd.it/ptzwydmbi8161.png?width=1920\\u0026format=png\\u0026auto=webp\\u0026s=3fb68a85314205a62e03d4a6473ca8ecd068853c\"}, \"id\": \"ptzwydmbi8161\"}}, \"name\": \"t3_k0b4qv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.99, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 86, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"gallery_data\": {\"items\": [{\"media_id\": \"00unsmbbi8161\", \"id\": 14270641}, {\"media_id\": \"xn3ks1gbi8161\", \"id\": 14270642}, {\"media_id\": \"ptzwydmbi8161\", \"id\": 14270643}, {\"media_id\": \"msa4v2xbi8161\", \"id\": 14270644}]}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 86, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1606272722.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://www.reddit.com/gallery/k0b4qv\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k0b4qv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rfeynman42\", \"discussion_type\": null, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k0b4qv/fun_with_a_distractionless_emacs_and_posframes/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/gallery/k0b4qv\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606243922.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am reading \\\"How to take smart notes\\\" and one of the \\\"rules\\\" is to have a separate archive or place where you store all your pdfs. I think the author recommends zotero on his website.\\n\\norg-roam works well to create a networked collection of notes but...\\n\\nHow do you store all your pdfs and link to them from your notes? I am thinking zotero links could work. But something simpler and more lightweight could work too.\\n\\nAre you using just simple links to files? What about if you move machines or folders?\", \"author_fullname\": \"t2_16r9xj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you manage your reference material in a zettlelkasten workflow?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k08dax\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.97, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 32, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 32, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606264576.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am reading \\u0026quot;How to take smart notes\\u0026quot; and one of the \\u0026quot;rules\\u0026quot; is to have a separate archive or place where you store all your pdfs. I think the author recommends zotero on his website.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorg-roam works well to create a networked collection of notes but...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do you store all your pdfs and link to them from your notes? I am thinking zotero links could work. But something simpler and more lightweight could work too.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre you using just simple links to files? What about if you move machines or folders?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k08dax\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jasonmirk\", \"discussion_type\": null, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k08dax/how_do_you_manage_your_reference_material_in_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/k08dax/how_do_you_manage_your_reference_material_in_a/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606235776.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"NO registry fixes.NO special hardware keyboards.\\n\\nJUST use Microsoft PowerToys and do this:\\n\\n[PowerToys Keyboard Manager](https://preview.redd.it/kh1vgodn46161.png?width=1394\\u0026format=png\\u0026auto=webp\\u0026s=9d80580cd3befbbe2a1fe2083edb55c1d6e10337)\\n\\nDONE. What you say?\", \"author_fullname\": \"t2_ivqhz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Solve \\\"Pinky\\\" issue with remapping Caps -\\u003E Ctr in Windows in 10seconds!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"media_metadata\": {\"kh1vgodn46161\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/png\", \"p\": [{\"y\": 49, \"x\": 108, \"u\": \"https://preview.redd.it/kh1vgodn46161.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=47d5a0545ff66193bd4572bf51dbb13f36487c94\"}, {\"y\": 98, \"x\": 216, \"u\": \"https://preview.redd.it/kh1vgodn46161.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=87afdc804de9e3da9944b22885e293060dcd011e\"}, {\"y\": 145, \"x\": 320, \"u\": \"https://preview.redd.it/kh1vgodn46161.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=efd01e90ce9c694038612e592d74c7bb86e3de27\"}, {\"y\": 291, \"x\": 640, \"u\": \"https://preview.redd.it/kh1vgodn46161.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=8e5d1458a6dbcbbc057a5ab6c6a383a1594ee121\"}, {\"y\": 437, \"x\": 960, \"u\": \"https://preview.redd.it/kh1vgodn46161.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=175ae34d8544a2e49f088b886d0d36fb373a73d5\"}, {\"y\": 492, \"x\": 1080, \"u\": \"https://preview.redd.it/kh1vgodn46161.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=67257545792305f1b40a30e977da8dc65fb049ac\"}], \"s\": {\"y\": 636, \"x\": 1394, \"u\": \"https://preview.redd.it/kh1vgodn46161.png?width=1394\\u0026format=png\\u0026auto=webp\\u0026s=9d80580cd3befbbe2a1fe2083edb55c1d6e10337\"}, \"id\": \"kh1vgodn46161\"}}, \"name\": \"t3_k02vyc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.5, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606243963.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENO registry fixes.NO special hardware keyboards.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJUST use Microsoft PowerToys and do this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://preview.redd.it/kh1vgodn46161.png?width=1394\\u0026amp;format=png\\u0026amp;auto=webp\\u0026amp;s=9d80580cd3befbbe2a1fe2083edb55c1d6e10337\\\"\\u003EPowerToys Keyboard Manager\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDONE. What you say?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k02vyc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jburkhard\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k02vyc/solve_pinky_issue_with_remapping_caps_ctr_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/k02vyc/solve_pinky_issue_with_remapping_caps_ctr_in/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606215163.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"This may be blindingly obvious, so apologies in advance if it is.\\n\\nIs there a way to change how the menu looks (that is, the menu that is shown when you press F10)?\\n\\nI rarely use it, but it is sometimes useful for example when learning a new mode, and every time I do it jars because the face of the selected top-level menu is wider than the underlying face so that the selected item covers up part of all of its neighbours.\\n\\nI looked via customize-face but couldn't find anything obvious in there and I couldn't see any entry with red background and bold yellow text either.\", \"author_fullname\": \"t2_17jqezcy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Change menu face?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k02szc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.5, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606243500.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis may be blindingly obvious, so apologies in advance if it is.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way to change how the menu looks (that is, the menu that is shown when you press F10)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI rarely use it, but it is sometimes useful for example when learning a new mode, and every time I do it jars because the face of the selected top-level menu is wider than the underlying face so that the selected item covers up part of all of its neighbours.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI looked via customize-face but couldn\\u0026#39;t find anything obvious in there and I couldn\\u0026#39;t see any entry with red background and bold yellow text either.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k02szc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AlienRepresentative\", \"discussion_type\": null, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k02szc/change_menu_face/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/k02szc/change_menu_face/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606214700.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, ledger-mode does not align numbers to significant digits. I get this:\\n\\n Expenses:Groceries 319\\n Expenses:Groceries 87.9\\n Expenses:Groceries 69\\n Expenses:Groceries 216.9\\n\\nbut I want this:\\n\\n Expenses:Groceries 319\\n Expenses:Groceries 87.9\\n Expenses:Groceries 69\\n Expenses:Groceries 216.9\\n\\nWhere do I start looking? Where lies the code that does the aligning upon pressing tab?\", \"author_fullname\": \"t2_2s2xclvi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ledger-mode alignment of numbers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k01qzf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606238165.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, ledger-mode does not align numbers to significant digits. I get this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EExpenses:Groceries 319\\nExpenses:Groceries 87.9\\nExpenses:Groceries 69\\nExpenses:Groceries 216.9\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ebut I want this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EExpenses:Groceries 319\\nExpenses:Groceries 87.9\\nExpenses:Groceries 69\\nExpenses:Groceries 216.9\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhere do I start looking? Where lies the code that does the aligning upon pressing tab?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k01qzf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Expensive_Pain\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k01qzf/ledgermode_alignment_of_numbers/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/k01qzf/ledgermode_alignment_of_numbers/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606209365.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As in the previous thread don't feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly tips/trick/etc/ thread\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_k011fo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606234432.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs in the previous thread don\\u0026#39;t feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"k011fo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/k011fo/weekly_tipstricketc_thread/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": true, \"url\": \"https://www.reddit.com/r/emacs/comments/k011fo/weekly_tipstricketc_thread/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606205632.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"This is something that actually surprises me. Searching through this subreddit's posts, I haven't been able to find any package which provides good grammar checking in Emacs. I was hoping for something as good as the built-in grammar checking in browsers. \\n\\nIf you're writer: How do you get around this?\", \"author_fullname\": \"t2_ovpcw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Are there really no good grammar-checking packages?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzzov9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.96, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 41, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 41, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606227696.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is something that actually surprises me. Searching through this subreddit\\u0026#39;s posts, I haven\\u0026#39;t been able to find any package which provides good grammar checking in Emacs. I was hoping for something as good as the built-in grammar checking in browsers. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you\\u0026#39;re writer: How do you get around this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzzov9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"FluentFelicity\", \"discussion_type\": null, \"num_comments\": 29, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzzov9/are_there_really_no_good_grammarchecking_packages/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzzov9/are_there_really_no_good_grammarchecking_packages/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606198896.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm pretty new to emacs. Just wondering if it is possible to expand/view a split buffer to encapsulate the entire viewable screen.\\n\\nTo clarify what I mean. For example: if I press CTRL+SPC then the current buffer/split I am in will expand as if I am viewing a single buffer, if I hit CTRL+SPC again it will revert back to the original view. The workflow I am thinking is if I have two files open, e.g. a header and implementation file, or a split to view documentation whilst I write code.\\n\\nThanks\", \"author_fullname\": \"t2_nfcdw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Expand buffer/split temporarily\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzzo1q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606227587.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m pretty new to emacs. Just wondering if it is possible to expand/view a split buffer to encapsulate the entire viewable screen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo clarify what I mean. For example: if I press CTRL+SPC then the current buffer/split I am in will expand as if I am viewing a single buffer, if I hit CTRL+SPC again it will revert back to the original view. The workflow I am thinking is if I have two files open, e.g. a header and implementation file, or a split to view documentation whilst I write code.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzzo1q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"enzlbtyn\", \"discussion_type\": null, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzzo1q/expand_buffersplit_temporarily/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzzo1q/expand_buffersplit_temporarily/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606198787.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Sometimes (not always, but mostly) when I do `vc-checkin`, it pops up a new window called `*log-edit-files*` containing just the filename?\\n\\nThis is how I invoke it:\\n\\n (vc-checkin (list buffer-file-name) backend \\\"auto-checkin\\\" nil))\\n\\n... so the log-in message is provided - so why, oh why is log-edit involved anyway?\\n\\nAny ideas on suppressing the popup?\\n\\n**EDIT/UPDATE**: I tried this and it seems to delete the popup window:\\n\\n (delete-window (get-buffer-window log-edit-files-buf))\\n\\nbut it gives an error:\\n\\n Attempt to delete minibuffer or sole ordinary window\\n\\n\\u0026#x200B;\", \"author_fullname\": \"t2_1rydgv7x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to stop vc-checkin popping up a window\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzsc87\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1606190488.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606199996.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESometimes (not always, but mostly) when I do \\u003Ccode\\u003Evc-checkin\\u003C/code\\u003E, it pops up a new window called \\u003Ccode\\u003E*log-edit-files*\\u003C/code\\u003E containing just the filename?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is how I invoke it:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(vc-checkin (list buffer-file-name) backend \\u0026quot;auto-checkin\\u0026quot; nil))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E... so the log-in message is provided - so why, oh why is log-edit involved anyway?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas on suppressing the popup?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEDIT/UPDATE\\u003C/strong\\u003E: I tried this and it seems to delete the popup window:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(delete-window (get-buffer-window log-edit-files-buf))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ebut it gives an error:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EAttempt to delete minibuffer or sole ordinary window\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzsc87\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"StrangeAstronomer\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzsc87/how_to_stop_vccheckin_popping_up_a_window/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzsc87/how_to_stop_vccheckin_popping_up_a_window/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606171196.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"After using gnus in read-only mode on my home machine, I setup mbsync and notmuch and enabled sending email. I have two problems (one technical and one methodological):\\n\\n1. I have two email accounts that use the same hostname (smtp.mail.provider.com). Given the .authinfo setup, I can only send from one of the email addresses (the one that's first in the file). How do people typically deal with sending to multiple authenticated email accounts on the same provider?\\n2. How to deal with tagging? I've been going through with keys like the following: `-unread -inbox` to get them out of the unread pile. This works but it's onerous even with a kbd macro that makes it a `C-x e`. What workflow do people typically use for tagging? Currently, I'd have 4-5 patterns I'd want to set tags on (e.g. `-unread -inbox +a_distinct_tag`) and while I could do named kbd macros for all of them that seems unreasonable.\\n\\nRelevant aside: minus mbsync's error messages that make it look like things aren't working when they are, I like it so far.\", \"author_fullname\": \"t2_4ae7x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Notmuch email workflow\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzr0ik\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606195909.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter using gnus in read-only mode on my home machine, I setup mbsync and notmuch and enabled sending email. I have two problems (one technical and one methodological):\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E I have two email accounts that use the same hostname (smtp.mail.provider.com). Given the .authinfo setup, I can only send from one of the email addresses (the one that\\u0026#39;s first in the file). How do people typically deal with sending to multiple authenticated email accounts on the same provider?\\u003C/li\\u003E\\n\\u003Cli\\u003E How to deal with tagging? I\\u0026#39;ve been going through with keys like the following: \\u003Ccode\\u003E-unread -inbox\\u003C/code\\u003E to get them out of the unread pile. This works but it\\u0026#39;s onerous even with a kbd macro that makes it a \\u003Ccode\\u003EC-x e\\u003C/code\\u003E. What workflow do people typically use for tagging? Currently, I\\u0026#39;d have 4-5 patterns I\\u0026#39;d want to set tags on (e.g. \\u003Ccode\\u003E-unread -inbox +a_distinct_tag\\u003C/code\\u003E) and while I could do named kbd macros for all of them that seems unreasonable.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ERelevant aside: minus mbsync\\u0026#39;s error messages that make it look like things aren\\u0026#39;t working when they are, I like it so far.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzr0ik\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragbot\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzr0ik/notmuch_email_workflow/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzr0ik/notmuch_email_workflow/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606167109.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want to change it from DONE to \\u2713, as I find the latter less distracting.\\n\\nAt the moment I get the message \\n\\n\\u003E TODO state change from TODO to blocked (by \\\"TODO myheading :sometag:\\\") \\n\\nMy code is\\n\\n (setq org-todo-keyword-faces\\n '((\\\"TODO\\\" . \\\"orange\\\"))\\n org-todo-keywords\\n '((sequence \\\"TODO(t)\\\" \\\"REVIEW(r)\\\" \\\"|\\\" \\\"\\u2713(d)\\\"))\\n\\nE: I AM STUPID!\\n\\nThe code works. I just had a minor TODO that blocked the big TODO one... Yeah, sorry :)\", \"author_fullname\": \"t2_a42en\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Orgmode: How can I set my TODO and DONE keywords to Unicode symbols? \\u2713\\ud83d\\uddd2?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzp4ws\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1606168279.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606190294.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to change it from DONE to \\u2713, as I find the latter less distracting.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the moment I get the message \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ETODO state change from TODO to blocked (by \\u0026quot;TODO myheading :sometag:\\u0026quot;) \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMy code is\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-todo-keyword-faces\\n \\u0026#39;((\\u0026quot;TODO\\u0026quot; . \\u0026quot;orange\\u0026quot;))\\n org-todo-keywords\\n \\u0026#39;((sequence \\u0026quot;TODO(t)\\u0026quot; \\u0026quot;REVIEW(r)\\u0026quot; \\u0026quot;|\\u0026quot; \\u0026quot;\\u2713(d)\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EE: I AM STUPID!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code works. I just had a minor TODO that blocked the big TODO one... Yeah, sorry :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzp4ws\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Annegrim\", \"discussion_type\": null, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzp4ws/orgmode_how_can_i_set_my_todo_and_done_keywords/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzp4ws/orgmode_how_can_i_set_my_todo_and_done_keywords/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606161494.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm very fond of emacs' shell-mode. To enhance aesthetics I want to have a blank line before each prompt. How do I achieve this?\", \"author_fullname\": \"t2_40ghs5rp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Shell-mode / Comint - blank line before prompt\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzn9we\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606184820.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m very fond of emacs\\u0026#39; shell-mode. To enhance aesthetics I want to have a blank line before each prompt. How do I achieve this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzn9we\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Moostropfen\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzn9we/shellmode_comint_blank_line_before_prompt/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzn9we/shellmode_comint_blank_line_before_prompt/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606156020.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"This probably isn\\u2019t useful, but I think is fun to share. ;)\\n\\nhttps://github.com/jcs-elpa/scroll-text\", \"author_fullname\": \"t2_15yvs0wo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"scroll-text - Scroll the text for content\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzlm2y\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606180009.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis probably isn\\u2019t useful, but I think is fun to share. ;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/jcs-elpa/scroll-text\\\"\\u003Ehttps://github.com/jcs-elpa/scroll-text\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzlm2y\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jcs090218\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzlm2y/scrolltext_scroll_the_text_for_content/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzlm2y/scrolltext_scroll_the_text_for_content/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606151209.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"There's a friend of mine who always wants to\\nexperiment with \\\"teletype for atom\\\", which is\\nevidently a way for multiple people to\\nsimultaneously edit the same text with a shared\\ndisplay:\\n\\n https://teletype.atom.io/\\n\\nI've heard rumors about some attempts at adding\\nsupport for \\\"Teletype\\\" to emacs. Does anyone know\\nanything about that?\\n\\n(\\\"Teletype\\\" is one of those dumbest names\\never... a web search is guaranteed to tell you a\\nlot about basic terminal software, but nothing\\nabout this new, obscure thing that most people\\nhaven't heard of...)\", \"author_fullname\": \"t2_s32d0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"emacs support for \\\"teletype\\\" as in \\\"teletype for atom\\\"?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzkv57\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606177889.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s a friend of mine who always wants to\\nexperiment with \\u0026quot;teletype for atom\\u0026quot;, which is\\nevidently a way for multiple people to\\nsimultaneously edit the same text with a shared\\ndisplay:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://teletype.atom.io/\\\"\\u003Ehttps://teletype.atom.io/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve heard rumors about some attempts at adding\\nsupport for \\u0026quot;Teletype\\u0026quot; to emacs. Does anyone know\\nanything about that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u0026quot;Teletype\\u0026quot; is one of those dumbest names\\never... a web search is guaranteed to tell you a\\nlot about basic terminal software, but nothing\\nabout this new, obscure thing that most people\\nhaven\\u0026#39;t heard of...)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzkv57\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doomvox\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzkv57/emacs_support_for_teletype_as_in_teletype_for_atom/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzkv57/emacs_support_for_teletype_as_in_teletype_for_atom/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606149089.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_pqfv9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there an easy way to do playback speed multiplier in emms?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzkdfv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606176366.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzkdfv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Androkon\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzkdfv/is_there_an_easy_way_to_do_playback_speed/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzkdfv/is_there_an_easy_way_to_do_playback_speed/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606147566.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have been using vanilla emacs for 3 years now. Mostly for web development and orgs. I have tons of installed packages in my emacs config. I noticed my emacs configs are a bit slow while comparing to doom emacs which is super fast. Do you think I should stop using vanilla emacs and migrate to doom emacs and add/customize my packages there? or shall I just try to optimize my emacs configs. I don't want to give too much time on this too. What do you guys think? What are the advantages and disadvantages?.\", \"author_fullname\": \"t2_okkyea\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Doom emacs vs vanilla emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzjtv0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.95, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 56, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 56, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606174665.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": true, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have been using vanilla emacs for 3 years now. Mostly for web development and orgs. I have tons of installed packages in my emacs config. I noticed my emacs configs are a bit slow while comparing to doom emacs which is super fast. Do you think I should stop using vanilla emacs and migrate to doom emacs and add/customize my packages there? or shall I just try to optimize my emacs configs. I don\\u0026#39;t want to give too much time on this too. What do you guys think? What are the advantages and disadvantages?.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzjtv0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yelinaung98\", \"discussion_type\": null, \"num_comments\": 69, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzjtv0/doom_emacs_vs_vanilla_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzjtv0/doom_emacs_vs_vanilla_emacs/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606145865.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_60f7vexz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Reminder] Last week to fill out the Emacs User Survey!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzizuv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 32, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 32, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1606172020.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"emacssurvey.org\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://emacssurvey.org/\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzizuv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"abrochard\", \"discussion_type\": null, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzizuv/reminder_last_week_to_fill_out_the_emacs_user/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://emacssurvey.org/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606143220.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've converted my personal ispell dictionary to aspell and pointed emacs to the correct location, but it keeps displaying the squiggly red lines under words which are in my personal dictionary but not in the standard dictionary. When I \\\\] s it does go to the next squiggled word, but when I z = it simply says that the word is correct (since it's in the personal dictionary).\\n\\nAny way to fix this?\", \"author_fullname\": \"t2_5hcmk5aa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ispell/aspell squiggly red lines won't go away\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzi30t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606168791.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve converted my personal ispell dictionary to aspell and pointed emacs to the correct location, but it keeps displaying the squiggly red lines under words which are in my personal dictionary but not in the standard dictionary. When I ] s it does go to the next squiggled word, but when I z = it simply says that the word is correct (since it\\u0026#39;s in the personal dictionary).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny way to fix this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzi30t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lopsidedcroc\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzi30t/ispellaspell_squiggly_red_lines_wont_go_away/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzi30t/ispellaspell_squiggly_red_lines_wont_go_away/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606139991.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hey, I'm wondering what the best way is to sync my org mode documents between my home and school pc. I've considered using Git but I don't know the best way to implement it.\\n\\nMy current system is very ineffective, I use Nextcloud for my PC and Laptop and Onedrive for my school pc, copying over the files I need at a given moment between them.\\n\\nThis is because I can't install the Nextcloud sync client on my school computer and Nextcloud is way faster than OneDrive over RClone on my home pcs. Also I want to be able to share my notes via Nextcloud as my friends sometimes ask for them so I have a folder which I just share with them.\\n\\nHow would I go about improving this system or replacing it? It's kind of annoying to have stuff in different places.\\n\\nThanks in advance\", \"author_fullname\": \"t2_2faac2g7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sync documents between school computer and home PC\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzhmwb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606167103.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, I\\u0026#39;m wondering what the best way is to sync my org mode documents between my home and school pc. I\\u0026#39;ve considered using Git but I don\\u0026#39;t know the best way to implement it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current system is very ineffective, I use Nextcloud for my PC and Laptop and Onedrive for my school pc, copying over the files I need at a given moment between them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is because I can\\u0026#39;t install the Nextcloud sync client on my school computer and Nextcloud is way faster than OneDrive over RClone on my home pcs. Also I want to be able to share my notes via Nextcloud as my friends sometimes ask for them so I have a folder which I just share with them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would I go about improving this system or replacing it? It\\u0026#39;s kind of annoying to have stuff in different places.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzhmwb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bu156\", \"discussion_type\": null, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzhmwb/sync_documents_between_school_computer_and_home_pc/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzhmwb/sync_documents_between_school_computer_and_home_pc/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606138303.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm creating a simple status bar with a keybinding to appear in echo area with the function (message \\\"text\\\"). \\nFor the ease of read (I got used to it from i3status) I need all the text aligned to right.\\n\\nMaybe I need a special key like \\\\\\\\n or \\\\\\\\t to push all the text to right.\\n\\np.s: any advice about status bar is also appreciated, I started to use EXWM and I can't see any info like date, time, current workspace, volume, wireless info etc.\", \"author_fullname\": \"t2_8q1ceeqc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to align text right (message \\\"text\\\") in echo area?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzh7on\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606165443.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m creating a simple status bar with a keybinding to appear in echo area with the function (message \\u0026quot;text\\u0026quot;).\\u003Cbr/\\u003E\\nFor the ease of read (I got used to it from i3status) I need all the text aligned to right.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaybe I need a special key like \\\\n or \\\\t to push all the text to right.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ep.s: any advice about status bar is also appreciated, I started to use EXWM and I can\\u0026#39;t see any info like date, time, current workspace, volume, wireless info etc.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzh7on\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vemironic\", \"discussion_type\": null, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzh7on/how_to_align_text_right_message_text_in_echo_area/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzh7on/how_to_align_text_right_message_text_in_echo_area/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606136643.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to have spell checking while I'm translating text in po-mode but it don't work.\\n\\nI have this function:\\n\\n```\\n(defun lang (lang)\\n (interactive \\\"sLanguage: \\\")\\n (ispell-change-dictionary lang)\\n (flyspell-buffer))\\n```\\n\\nI used `M-x flyspell-mode` and `M-x lang RET pl_PL` but I don't have any errors, even if type nonsense into edit area.\\n\\nIs there a way to have spell checking in po files?\\n\\nI also have code from [EmacsWiki](https://www.emacswiki.org/emacs/PoMode) but it don't make any difference I don't have spell checking.\", \"author_fullname\": \"t2_42euq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to use flyspell inside po-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzfrpa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1606130287.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606158758.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to have spell checking while I\\u0026#39;m translating text in po-mode but it don\\u0026#39;t work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have this function:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(defun lang (lang)\\n (interactive \\u0026quot;sLanguage: \\u0026quot;)\\n (ispell-change-dictionary lang)\\n (flyspell-buffer))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used \\u003Ccode\\u003EM-x flyspell-mode\\u003C/code\\u003E and \\u003Ccode\\u003EM-x lang RET pl_PL\\u003C/code\\u003E but I don\\u0026#39;t have any errors, even if type nonsense into edit area.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way to have spell checking in po files?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also have code from \\u003Ca href=\\\"https://www.emacswiki.org/emacs/PoMode\\\"\\u003EEmacsWiki\\u003C/a\\u003E but it don\\u0026#39;t make any difference I don\\u0026#39;t have spell checking.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzfrpa\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jcubic\", \"discussion_type\": null, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzfrpa/how_to_use_flyspell_inside_pomode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzfrpa/how_to_use_flyspell_inside_pomode/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606129958.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If have JSON data like so (see that objects is inside list):\\n\\n```\\n{\\n \\\"foo\\\" : [\\n { \\\"bar\\\" : 2 },\\n { \\\"baz\\\" : 3 }\\n ]\\n}\\n```\\n\\nCannot parse with the `json-read` *or* also the `json-parse-buffer` (as default, which `json-object-type` is to `'alist`). Produce result like so:\\n\\n```\\n((foo . [(...) (...)]))\\n```\\n\\nIf to provide custom `object-type` selecting as `'plist`, then okey:\\n\\n`Eval: (let ((json-object-type 'plist)) (json-read))` or `Eval: (json-parse-buffer :object-type 'plist)` out come:\\n\\n```\\n(:foo [(:bar 2) (:baz 3)])\\n```\\n\\nWhy come garbage `...` with alist? Can it be better?\\n\\nIn Emacs 27.1\\n\\nEDIT: More, even comes the dots for plist when have larger object! Why?\\n\\n```\\n{\\n \\\"foo\\\" : [\\n {\\n \\\"path\\\" : \\\"/dir/file\\\",\\n \\\"version\\\" : \\\"123\\\",\\n \\\"secondPath\\\" : \\\"/somedir/file\\\",\\n \\\"id\\\" : \\\"000-0000-000\\\",\\n \\\"number\\\" : \\\"13.5\\\",\\n \\\"flag\\\" : true,\\n \\\"name\\\" : \\\"Item 1\\\"\\n }\\n ]\\n}\\n```\\n\\n`Eval: (json-parse-buffer :object-type 'plist)` out come:\\n\\n```\\n(:foo [(:path \\\"/dir/file\\\" :version \\\"123\\\" :secondPath \\\"/somedir/file\\\" :id \\\"000-0000-000\\\" :number \\\"13.5\\\" :flag t ...)])\\n```\\n\\nMissing pair of `\\\"name\\\" : \\\"Item 1\\\"`!\", \"author_fullname\": \"t2_9012z3fa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Alist only dots with json-read and json-parse-buffer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jz5d0s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1606087155.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606114060.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf have JSON data like so (see that objects is inside list):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n{\\n \\u0026quot;foo\\u0026quot; : [\\n { \\u0026quot;bar\\u0026quot; : 2 },\\n { \\u0026quot;baz\\u0026quot; : 3 }\\n ]\\n}\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECannot parse with the \\u003Ccode\\u003Ejson-read\\u003C/code\\u003E \\u003Cem\\u003Eor\\u003C/em\\u003E also the \\u003Ccode\\u003Ejson-parse-buffer\\u003C/code\\u003E (as default, which \\u003Ccode\\u003Ejson-object-type\\u003C/code\\u003E is to \\u003Ccode\\u003E\\u0026#39;alist\\u003C/code\\u003E). Produce result like so:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n((foo . [(...) (...)]))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf to provide custom \\u003Ccode\\u003Eobject-type\\u003C/code\\u003E selecting as \\u003Ccode\\u003E\\u0026#39;plist\\u003C/code\\u003E, then okey:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EEval: (let ((json-object-type \\u0026#39;plist)) (json-read))\\u003C/code\\u003E or \\u003Ccode\\u003EEval: (json-parse-buffer :object-type \\u0026#39;plist)\\u003C/code\\u003E out come:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(:foo [(:bar 2) (:baz 3)])\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy come garbage \\u003Ccode\\u003E...\\u003C/code\\u003E with alist? Can it be better?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Emacs 27.1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: More, even comes the dots for plist when have larger object! Why?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n{\\n \\u0026quot;foo\\u0026quot; : [\\n {\\n \\u0026quot;path\\u0026quot; : \\u0026quot;/dir/file\\u0026quot;,\\n \\u0026quot;version\\u0026quot; : \\u0026quot;123\\u0026quot;,\\n \\u0026quot;secondPath\\u0026quot; : \\u0026quot;/somedir/file\\u0026quot;,\\n \\u0026quot;id\\u0026quot; : \\u0026quot;000-0000-000\\u0026quot;,\\n \\u0026quot;number\\u0026quot; : \\u0026quot;13.5\\u0026quot;,\\n \\u0026quot;flag\\u0026quot; : true,\\n \\u0026quot;name\\u0026quot; : \\u0026quot;Item 1\\u0026quot;\\n }\\n ]\\n}\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EEval: (json-parse-buffer :object-type \\u0026#39;plist)\\u003C/code\\u003E out come:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(:foo [(:path \\u0026quot;/dir/file\\u0026quot; :version \\u0026quot;123\\u0026quot; :secondPath \\u0026quot;/somedir/file\\u0026quot; :id \\u0026quot;000-0000-000\\u0026quot; :number \\u0026quot;13.5\\u0026quot; :flag t ...)])\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMissing pair of \\u003Ccode\\u003E\\u0026quot;name\\u0026quot; : \\u0026quot;Item 1\\u0026quot;\\u003C/code\\u003E!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jz5d0s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PlazaNoseDanny\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jz5d0s/alist_only_dots_with_jsonread_and_jsonparsebuffer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jz5d0s/alist_only_dots_with_jsonread_and_jsonparsebuffer/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606085260.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have been using emacs for more than 5 years now, but never wrote a elisp except few changes in config. I'd like get my hands dirty with elisp. is the book *Writing GNU Emacs Extensions* still worth reading, or would I find deprecated functions. I have *Mastering Emacs* and *Teach yourself Emacs in 24 hours,* but are there any other books that focuses on extension development like this one?\", \"author_fullname\": \"t2_11fwcjw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Book - Writing GNU Emacs Extensions\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzdfsl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.97, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 26, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 26, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606146547.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have been using emacs for more than 5 years now, but never wrote a elisp except few changes in config. I\\u0026#39;d like get my hands dirty with elisp. is the book \\u003Cem\\u003EWriting GNU Emacs Extensions\\u003C/em\\u003E still worth reading, or would I find deprecated functions. I have \\u003Cem\\u003EMastering Emacs\\u003C/em\\u003E and \\u003Cem\\u003ETeach yourself Emacs in 24 hours,\\u003C/em\\u003E but are there any other books that focuses on extension development like this one?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzdfsl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paarulakan\", \"discussion_type\": null, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzdfsl/book_writing_gnu_emacs_extensions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzdfsl/book_writing_gnu_emacs_extensions/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606117747.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"By default, C-m is RET in Emacs. I don't like this, it serves no purpose to me, but this shortcut can be useful if I just rebind them. As you probably know, (global-set-key) doesn't work on this and lots of other shortcuts. On google, I found this:\\n \\n (define-key input-decode-map [?\\\\C-m] [C-m])\\n\\nBasically, I want a list where I can type all the keys that the GUI sees but can't be rebind (this includes C-m, C-i, C-[ ...), then run a for loop (not sure how it's done in Lisp) that will rebind them to their normal behaviour. I tried this and this doesn't work because concat returns a string and strings are bad.\\n\\n (setq boomerkeys '(\\\"C-m\\\" \\\"C-i\\\"))\\n\\n (dolist (key boomerkeys)\\n (define-key input-decode-map [(concat \\\"?\\\\\\\\\\\" key)] [key]))\\n\\nThe code below works but I don't think that it's good to copy\\u0026paste the same line and then it'll be harder to add new keys that I forgot.\\n\\n (define-key input-decode-map [?\\\\C-i] [C-i])\\n (define-key input-decode-map [?\\\\C-m] [C-m])\\n\\nAlso it would really help if you could find a list of all the keys that cannot be bound in Emacs by default but can be rebound by changing the input-decode-map.\\n\\nEdit: I tried this\\n \\n (setq boomerkeys '(\\\"C-m\\\" \\\"C-i\\\"))\\n (let ((i 0))\\n (while (\\u003C i (length boomerkeys))\\n (setq i (+ i 1))\\n (define-key input-decode-map (string-to-vector (concat \\\"?\\\\\\\\\\\" (nth (- i 1) boomerkeys))) (string-to-vector (nth (- i 1) boomerkeys)))))\\n\\nStill not working.\", \"author_fullname\": \"t2_81zthuef\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Question] Rebinding C-m, C-i, and everything else without Copy\\u0026Pasting?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzdf1k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.75, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1606133490.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606146440.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBy default, C-m is RET in Emacs. I don\\u0026#39;t like this, it serves no purpose to me, but this shortcut can be useful if I just rebind them. As you probably know, (global-set-key) doesn\\u0026#39;t work on this and lots of other shortcuts. On google, I found this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(define-key input-decode-map [?\\\\C-m] [C-m])\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBasically, I want a list where I can type all the keys that the GUI sees but can\\u0026#39;t be rebind (this includes C-m, C-i, C-[ ...), then run a for loop (not sure how it\\u0026#39;s done in Lisp) that will rebind them to their normal behaviour. I tried this and this doesn\\u0026#39;t work because concat returns a string and strings are bad.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq boomerkeys \\u0026#39;(\\u0026quot;C-m\\u0026quot; \\u0026quot;C-i\\u0026quot;))\\n\\n(dolist (key boomerkeys)\\n (define-key input-decode-map [(concat \\u0026quot;?\\\\\\\\\\u0026quot; key)] [key]))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe code below works but I don\\u0026#39;t think that it\\u0026#39;s good to copy\\u0026amp;paste the same line and then it\\u0026#39;ll be harder to add new keys that I forgot.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(define-key input-decode-map [?\\\\C-i] [C-i])\\n(define-key input-decode-map [?\\\\C-m] [C-m])\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAlso it would really help if you could find a list of all the keys that cannot be bound in Emacs by default but can be rebound by changing the input-decode-map.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: I tried this\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq boomerkeys \\u0026#39;(\\u0026quot;C-m\\u0026quot; \\u0026quot;C-i\\u0026quot;))\\n(let ((i 0))\\n (while (\\u0026lt; i (length boomerkeys))\\n (setq i (+ i 1))\\n (define-key input-decode-map (string-to-vector (concat \\u0026quot;?\\\\\\\\\\u0026quot; (nth (- i 1) boomerkeys))) (string-to-vector (nth (- i 1) boomerkeys)))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EStill not working.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzdf1k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"okimka\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzdf1k/question_rebinding_cm_ci_and_everything_else/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzdf1k/question_rebinding_cm_ci_and_everything_else/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606117640.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org QL Custom Predicates Tutorial\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"blue\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzd5kb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.96, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 24, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"News\", \"can_mod_post\": false, \"score\": 24, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1606145058.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/alphapapa/org-ql/blob/master/examples/defpred.org\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"aeb9dc36-2329-11e6-b4ef-0e888a520d23\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzd5kb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"discussion_type\": null, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzd5kb/org_ql_custom_predicates_tutorial/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/alphapapa/org-ql/blob/master/examples/defpred.org\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606116258.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \" *** Welcome to IELM *** Type (describe-mode) for help.\\n ELISP\\u003E list-with-duplicates\\n (\\\"Delete Me!\\\" \\\"Delete Me!\\\" \\\"Keep Me!\\\" \\\"And Me!\\\" \\\"Not Me!\\\" \\\"Not Me!\\\")\\n \\n ELISP\\u003E (uniq list-with-duplicates)\\n (\\\"Keep Me!\\\" \\\"And Me!\\\")\\n\\nI want something like `uniq --unique`. Things like `cl-remove-duplicates` or `delete-dups` do not work since they work like `uniq` without the `--unique` flag, that is, it returns a list without duplicates, but it doesn't return a list with all non-unique elements removed from it.\\n\\nIs something like this built-in?\\n\\nIt's fine if, like `uniq -u`, it only works for adjacent items.\", \"author_fullname\": \"t2_9c5ij\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Question] Keep only unique elements (uniq -u)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jzcefc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1606112760.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606141347.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E*** Welcome to IELM *** Type (describe-mode) for help.\\nELISP\\u0026gt; list-with-duplicates\\n(\\u0026quot;Delete Me!\\u0026quot; \\u0026quot;Delete Me!\\u0026quot; \\u0026quot;Keep Me!\\u0026quot; \\u0026quot;And Me!\\u0026quot; \\u0026quot;Not Me!\\u0026quot; \\u0026quot;Not Me!\\u0026quot;)\\n\\nELISP\\u0026gt; (uniq list-with-duplicates)\\n(\\u0026quot;Keep Me!\\u0026quot; \\u0026quot;And Me!\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI want something like \\u003Ccode\\u003Euniq --unique\\u003C/code\\u003E. Things like \\u003Ccode\\u003Ecl-remove-duplicates\\u003C/code\\u003E or \\u003Ccode\\u003Edelete-dups\\u003C/code\\u003E do not work since they work like \\u003Ccode\\u003Euniq\\u003C/code\\u003E without the \\u003Ccode\\u003E--unique\\u003C/code\\u003E flag, that is, it returns a list without duplicates, but it doesn\\u0026#39;t return a list with all non-unique elements removed from it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs something like this built-in?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s fine if, like \\u003Ccode\\u003Euniq -u\\u003C/code\\u003E, it only works for adjacent items.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jzcefc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bodertz\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jzcefc/question_keep_only_unique_elements_uniq_u/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jzcefc/question_keep_only_unique_elements_uniq_u/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606112547.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have netsurf and links2 installed currently. When I do `. v` in a message, it opens in netsurf. How do I make notmuch open links2 instead?\", \"author_fullname\": \"t2_z1ejkz8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"notmuch: how do I specify which browser to use for opening html part of a message?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jza1uk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606131364.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have netsurf and links2 installed currently. When I do \\u003Ccode\\u003E. v\\u003C/code\\u003E in a message, it opens in netsurf. How do I make notmuch open links2 instead?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jza1uk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"whudwl\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jza1uk/notmuch_how_do_i_specify_which_browser_to_use_for/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jza1uk/notmuch_how_do_i_specify_which_browser_to_use_for/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606102564.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[ANN] org-ql 0.5 released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"blue\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jz71fj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.96, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 53, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"News\", \"can_mod_post\": false, \"score\": 53, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1606119959.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/alphapapa/org-ql#05\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"aeb9dc36-2329-11e6-b4ef-0e888a520d23\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jz71fj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jz71fj/ann_orgql_05_released/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/alphapapa/org-ql#05\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606091159.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why does the recent zettelkasten craze use one file per note rather than one headline per note?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jz49ke\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.9, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is this just imitation of other systems? Are there hidden advantages? In general I think org prefers things in fewer, larger files. I would have thought that putting each note under a separate headline in a single file would be the natural choice given org mode's functions.\\n\\n(I don't use the zettelkasten method, but I've been reading about it and about packages such as org-roam, gkroam and zetteldeft, and this multiple tiny file business has me puzzled.)\", \"author_fullname\": \"t2_3fxjo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why does the recent zettelkasten craze use one file per note rather than one headline per note?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jysnrf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 32, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 32, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606064278.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs this just imitation of other systems? Are there hidden advantages? In general I think org prefers things in fewer, larger files. I would have thought that putting each note under a separate headline in a single file would be the natural choice given org mode\\u0026#39;s functions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(I don\\u0026#39;t use the zettelkasten method, but I\\u0026#39;ve been reading about it and about packages such as org-roam, gkroam and zetteldeft, and this multiple tiny file business has me puzzled.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jysnrf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"oantolin\", \"discussion_type\": null, \"num_comments\": 138, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/jysnrf/why_does_the_recent_zettelkasten_craze_use_one/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/jysnrf/why_does_the_recent_zettelkasten_craze_use_one/\", \"subreddit_subscribers\": 12637, \"created_utc\": 1606035478.0, \"num_crossposts\": 1, \"media\": null, \"is_video\": false}], \"created\": 1606110343.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"/r/orgmode/comments/jysnrf/why_does_the_recent_zettelkasten_craze_use_one/\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jz49ke\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"discussion_type\": null, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_jysnrf\", \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jz49ke/why_does_the_recent_zettelkasten_craze_use_one/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"/r/orgmode/comments/jysnrf/why_does_the_recent_zettelkasten_craze_use_one/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606081543.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Apparently, org pretty table mode which had some bugs got fixed, so you can have org tables like this: \\n\\nhttps://i.imgur.com/VLJrGGp.png\\n\\nCode: https://github.com/Fuco1/org-pretty-table\", \"author_fullname\": \"t2_3xqifjws\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org pretty table mode got fixes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jz45ap\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 36, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 36, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606109960.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": true, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EApparently, org pretty table mode which had some bugs got fixed, so you can have org tables like this: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/VLJrGGp.png\\\"\\u003Ehttps://i.imgur.com/VLJrGGp.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECode: \\u003Ca href=\\\"https://github.com/Fuco1/org-pretty-table\\\"\\u003Ehttps://github.com/Fuco1/org-pretty-table\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jz45ap\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ndamee\", \"discussion_type\": null, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jz45ap/org_pretty_table_mode_got_fixes/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jz45ap/org_pretty_table_mode_got_fixes/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606081160.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Doom Emacs on X (Trisquel GNU/Linux)\\n\\n\\nHow can I get the width in characters of the current window (not frame)?\\n\\nHow can I display this in the mode line?\\n\\nHow can I automatically change the font when the window is resized?\\n\\n\\nI tried a few things but now I am lost :)\", \"author_fullname\": \"t2_24omemnv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Questions about window sizes and fonts\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jz2yz5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.6, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606106148.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoom Emacs on X (Trisquel GNU/Linux)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I get the width in characters of the current window (not frame)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I display this in the mode line?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I automatically change the font when the window is resized?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried a few things but now I am lost :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jz2yz5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GrilledGuru\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jz2yz5/questions_about_window_sizes_and_fonts/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jz2yz5/questions_about_window_sizes_and_fonts/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606077348.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've heard that in January, Google will be locking down many or most of their applications and services and requiring authentication with a non-embedded and Javascript-enabled browser. I wanted to ask those of us who use Gnus in particular, but Emacs for email more generally, if there will still be a way to get email with Gmail to work in Emacs. If the answer is no, does this community have recommendations for an email service to use? I did some research into Tutanota, which doesn't support IMAP or POP3, and Protonmail requires a bridge application that seems fiddly to get working with Emacs. Obviously I can host my own email, but that's kind of a pain and the webmail solutions tend to be janky. Thanks, all.\", \"author_fullname\": \"t2_pgji9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"January changes to Google apps and Emacs / Gnus\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jz2v8m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.79, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606105809.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve heard that in January, Google will be locking down many or most of their applications and services and requiring authentication with a non-embedded and Javascript-enabled browser. I wanted to ask those of us who use Gnus in particular, but Emacs for email more generally, if there will still be a way to get email with Gmail to work in Emacs. If the answer is no, does this community have recommendations for an email service to use? I did some research into Tutanota, which doesn\\u0026#39;t support IMAP or POP3, and Protonmail requires a bridge application that seems fiddly to get working with Emacs. Obviously I can host my own email, but that\\u0026#39;s kind of a pain and the webmail solutions tend to be janky. Thanks, all.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jz2v8m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Amonwilde\", \"discussion_type\": null, \"num_comments\": 23, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jz2v8m/january_changes_to_google_apps_and_emacs_gnus/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jz2v8m/january_changes_to_google_apps_and_emacs_gnus/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606077009.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_8jl130vx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you start applications on EXWM?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jz1odv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606101982.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jz1odv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CP999-\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jz1odv/how_do_you_start_applications_on_exwm/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jz1odv/how_do_you_start_applications_on_exwm/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606073182.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_jc7hp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"display-buffer-alist: new frame for org-roam buffer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyzakb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"DoomEmacs\", \"selftext\": \"I am using the `org-roam` package. One functionality is that it has distinct buffer `*org-roam*` which shows backlinks to other `org-mode` files. I want to open this ` *org-roam*` in its own persistent frame. After consultation of the documentation this should in theory work:\\n\\n (setq display-buffer-alist \\n '(\\\"^\\\\\\\\*org-roam\\\"\\n (display-buffer-reuse-window display-buffer-pop-up-frame)))\\n\\nHowever, it does not, although `display-buffer-alist` as configured by `Doom` is totally replaced by this snippet. I think there must be still something particular to `Doom` that prevents this. Any hints appreciated!\", \"author_fullname\": \"t2_jc7hp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"display-buffer-alist: new frame for org-roam buffer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/DoomEmacs\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyyuyn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606092795.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.DoomEmacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am using the \\u003Ccode\\u003Eorg-roam\\u003C/code\\u003E package. One functionality is that it has distinct buffer \\u003Ccode\\u003E*org-roam*\\u003C/code\\u003E which shows backlinks to other \\u003Ccode\\u003Eorg-mode\\u003C/code\\u003E files. I want to open this \\u003Ccode\\u003E*org-roam*\\u003C/code\\u003E in its own persistent frame. After consultation of the documentation this should in theory work:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq display-buffer-alist \\n \\u0026#39;(\\u0026quot;^\\\\\\\\*org-roam\\u0026quot;\\n (display-buffer-reuse-window display-buffer-pop-up-frame)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHowever, it does not, although \\u003Ccode\\u003Edisplay-buffer-alist\\u003C/code\\u003E as configured by \\u003Ccode\\u003EDoom\\u003C/code\\u003E is totally replaced by this snippet. I think there must be still something particular to \\u003Ccode\\u003EDoom\\u003C/code\\u003E that prevents this. Any hints appreciated!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2oz8p8\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyyuyn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"olmu1944\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/DoomEmacs/comments/jyyuyn/displaybufferalist_new_frame_for_orgroam_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/DoomEmacs/comments/jyyuyn/displaybufferalist_new_frame_for_orgroam_buffer/\", \"subreddit_subscribers\": 1043, \"created_utc\": 1606063995.0, \"num_crossposts\": 1, \"media\": null, \"is_video\": false}], \"created\": 1606094229.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.DoomEmacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"/r/DoomEmacs/comments/jyyuyn/displaybufferalist_new_frame_for_orgroam_buffer/\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyzakb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"olmu1944\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_jyyuyn\", \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyzakb/displaybufferalist_new_frame_for_orgroam_buffer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"/r/DoomEmacs/comments/jyyuyn/displaybufferalist_new_frame_for_orgroam_buffer/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606065429.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_6hhee0ag\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"why 'church of emacs' not 'Temple of emacs' instead not use any relegious terms?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyya65\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.05, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606090805.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyya65\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Psycho-logical-being\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyya65/why_church_of_emacs_not_temple_of_emacs_instead/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jyya65/why_church_of_emacs_not_temple_of_emacs_instead/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606062005.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So, I found [this](https://github.com/johnbcoughlin/calctex) package on Github, which is a minor mode for the M-x calc which looks very promising allowing you to use calc's very easy to remember formatting to write equations that render like Latex ones. I would be very interested to see it work. But unfortunately the moment I activate the minor-mode from inside calc, Emacs freezes. Knowing no elisp, I have come here in hope that someone knows how to fix it. There is a similar issue in the repo but the author hasn't replied so I doubt there is any hope there.\\n\\nSteps to reproduce:\\n\\n\\\\- Add the calctex package to your load-path and in your init.el add the following snippet\\n\\n`(require 'calctex)`\\n\\n\\\\- Install the latex dependencies mentioned, personally I also had to install a package called \\\"stix2-type1\\\" or else I would get an error when entering the minor-mode inside calc. Note that you need to do the fixes mentioned in the [Arch Wiki](https://wiki.archlinux.org/index.php/TeX_Live) if you haven't used tlmgr before (at least I had to, so I mention it so you need to do less searching)\\n\\n\\\\- Finally, if you have all these setup, when opening a M-x menu from inside calc, you should be able to activate calctex-mode, without it giving any type of error. When you do that, a few messages will pop up, the last one being \\\"Rendering Latex: \\\\\\\\begin{allign\\\\*} . \\\\\\\\end{allign\\\\*}\\\". After Emacs shows this message it freezes completely. You cant use any keybinding inside it and the only way to close it is through killall Emacs from a terminal.\\n\\nI assume there is some problem with the elisp that is executed when activating the minor-mode. Would anyone be willing to help me with fixing this. I think it would be of great help to both me and other people that may have faced this problem as this minor-mode looks very useful for people that need a lot of equations in their document.\\n\\nIf you take the time to understand what is happening I sincerely thank you for your help!!\", \"author_fullname\": \"t2_pwmkq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Calctex, a minor mode for the M-x calc freezes on startup. Knowing no elisp to interpret why this happens I have come here for help.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyxond\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.57, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606088712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo, I found \\u003Ca href=\\\"https://github.com/johnbcoughlin/calctex\\\"\\u003Ethis\\u003C/a\\u003E package on Github, which is a minor mode for the M-x calc which looks very promising allowing you to use calc\\u0026#39;s very easy to remember formatting to write equations that render like Latex ones. I would be very interested to see it work. But unfortunately the moment I activate the minor-mode from inside calc, Emacs freezes. Knowing no elisp, I have come here in hope that someone knows how to fix it. There is a similar issue in the repo but the author hasn\\u0026#39;t replied so I doubt there is any hope there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESteps to reproduce:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Add the calctex package to your load-path and in your init.el add the following snippet\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(require \\u0026#39;calctex)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Install the latex dependencies mentioned, personally I also had to install a package called \\u0026quot;stix2-type1\\u0026quot; or else I would get an error when entering the minor-mode inside calc. Note that you need to do the fixes mentioned in the \\u003Ca href=\\\"https://wiki.archlinux.org/index.php/TeX_Live\\\"\\u003EArch Wiki\\u003C/a\\u003E if you haven\\u0026#39;t used tlmgr before (at least I had to, so I mention it so you need to do less searching)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Finally, if you have all these setup, when opening a M-x menu from inside calc, you should be able to activate calctex-mode, without it giving any type of error. When you do that, a few messages will pop up, the last one being \\u0026quot;Rendering Latex: \\\\begin{allign*} . \\\\end{allign*}\\u0026quot;. After Emacs shows this message it freezes completely. You cant use any keybinding inside it and the only way to close it is through killall Emacs from a terminal.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI assume there is some problem with the elisp that is executed when activating the minor-mode. Would anyone be willing to help me with fixing this. I think it would be of great help to both me and other people that may have faced this problem as this minor-mode looks very useful for people that need a lot of equations in their document.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you take the time to understand what is happening I sincerely thank you for your help!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyxond\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AuroraDraco\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyxond/calctex_a_minor_mode_for_the_mx_calc_freezes_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jyxond/calctex_a_minor_mode_for_the_mx_calc_freezes_on/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606059912.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_8jl130vx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to change the color of the \\\"Statusbar\\\" on Emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jywri3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606085221.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jywri3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CP999-\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jywri3/how_to_change_the_color_of_the_statusbar_on_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jywri3/how_to_change_the_color_of_the_statusbar_on_emacs/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606056421.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_15f4er\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Symex Mode - Editing Lisp Code in a Vim-like Way\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"pink\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jywp53\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/a5s1ScTx8Zk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Symex Mode: Editing Lisp Code in a Vim-like Way\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/a5s1ScTx8Zk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Emacs SF\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/a5s1ScTx8Zk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCFk8kgNu_bqsRZewxMGqkzQ\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/a5s1ScTx8Zk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/jywp53\", \"height\": 338}, \"link_flair_text\": \"emacs-fu\", \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1606084972.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://www.youtube.com/watch?v=a5s1ScTx8Zk\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b862c57e-6b8a-11e5-8194-0e1d3ee68d31\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jywp53\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"trimorphic\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jywp53/symex_mode_editing_lisp_code_in_a_vimlike_way/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=a5s1ScTx8Zk\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606056172.0, \"num_crossposts\": 0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Symex Mode: Editing Lisp Code in a Vim-like Way\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/a5s1ScTx8Zk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Emacs SF\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/a5s1ScTx8Zk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCFk8kgNu_bqsRZewxMGqkzQ\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Yes, it doesn't have all that fancy functionality, but it is fast and solid.\\n\\n[https://blog.aaronbieber.com/2016/12/29/don-t-use-terminal-emacs.html](https://blog.aaronbieber.com/2016/12/29/don-t-use-terminal-emacs.html)\", \"author_fullname\": \"t2_8jl130vx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs terminal - Is it really THAT bad?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jywdiz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.84, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 32, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 32, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606083670.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": true, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, it doesn\\u0026#39;t have all that fancy functionality, but it is fast and solid.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://blog.aaronbieber.com/2016/12/29/don-t-use-terminal-emacs.html\\\"\\u003Ehttps://blog.aaronbieber.com/2016/12/29/don-t-use-terminal-emacs.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jywdiz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CP999-\", \"discussion_type\": null, \"num_comments\": 38, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jywdiz/emacs_terminal_is_it_really_that_bad/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jywdiz/emacs_terminal_is_it_really_that_bad/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606054870.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've searched the web for \\\"emacs package texinfo\\\" and similar queries, but I only find help for end-users like how to install a package or how to use the info system, nothing for the developer. I also checked the built-in section on packaging in Elisp. No dice. \\n\\nThe farthest I got was create a `.texi` file. Learn the format, yadda yadda... Ok, then what? How do I make the result appear in `C-h i`?\\n\\nHere's what I expect. When I make a package, I make a folder with one or more `.el` files, and these files contain `(provide 'something)`. To load it, I put the directory in the load path and run, say, `(require 'something)`. At this point I want an info node to to be added to the info directory.\", \"author_fullname\": \"t2_2s2xclvi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Shipping Info nodes with a package\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyw9f4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.75, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606083210.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve searched the web for \\u0026quot;emacs package texinfo\\u0026quot; and similar queries, but I only find help for end-users like how to install a package or how to use the info system, nothing for the developer. I also checked the built-in section on packaging in Elisp. No dice. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe farthest I got was create a \\u003Ccode\\u003E.texi\\u003C/code\\u003E file. Learn the format, yadda yadda... Ok, then what? How do I make the result appear in \\u003Ccode\\u003EC-h i\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s what I expect. When I make a package, I make a folder with one or more \\u003Ccode\\u003E.el\\u003C/code\\u003E files, and these files contain \\u003Ccode\\u003E(provide \\u0026#39;something)\\u003C/code\\u003E. To load it, I put the directory in the load path and run, say, \\u003Ccode\\u003E(require \\u0026#39;something)\\u003C/code\\u003E. At this point I want an info node to to be added to the info directory.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyw9f4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Expensive_Pain\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyw9f4/shipping_info_nodes_with_a_package/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jyw9f4/shipping_info_nodes_with_a_package/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606054410.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm going to fork and fix the package that has not been maintained since 2004 and publish it on melpa.\\n\\n[https://github.com/black7375/ll-debug](https://github.com/black7375/ll-debug)\\n\\n\\u0026#x200B;\\n\\nhttps://preview.redd.it/5w0okn36fs061.png?width=1508\\u0026format=png\\u0026auto=webp\\u0026s=f898d8e093b23f71fd9acaa406dfeef46a460ee6\\n\\nBut there was one problem.\\n\\nI tried to fix the message(`Use \\\\\\\\\\u003Ckeymap\\u003E \\u0026 \\\\\\\\[function] instead` ) , but I don't know how.\\n\\nWhat can I do?\", \"author_fullname\": \"t2_2w4jgfjv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I fix checkdoc's \\u003Ckeymap\\u003E warning info?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"media_metadata\": {\"5w0okn36fs061\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/png\", \"p\": [{\"y\": 73, \"x\": 108, \"u\": \"https://preview.redd.it/5w0okn36fs061.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2c273563230c6441185fc860aaf222532b2cff4c\"}, {\"y\": 146, \"x\": 216, \"u\": \"https://preview.redd.it/5w0okn36fs061.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=43dc4478864e3af6cff772bcd3f3f8054434bce6\"}, {\"y\": 217, \"x\": 320, \"u\": \"https://preview.redd.it/5w0okn36fs061.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d762a8434e0d0a9630485996c3720202ec8ee34a\"}, {\"y\": 434, \"x\": 640, \"u\": \"https://preview.redd.it/5w0okn36fs061.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1e2a38a26464ac2698d12436f82d685e668b89ec\"}, {\"y\": 651, \"x\": 960, \"u\": \"https://preview.redd.it/5w0okn36fs061.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f0e0b5a632f7af8152eb4dfa74f6f17600648823\"}, {\"y\": 732, \"x\": 1080, \"u\": \"https://preview.redd.it/5w0okn36fs061.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8ee941b11a4ec803f69dd8eb3c44281649d4478b\"}], \"s\": {\"y\": 1023, \"x\": 1508, \"u\": \"https://preview.redd.it/5w0okn36fs061.png?width=1508\\u0026format=png\\u0026auto=webp\\u0026s=f898d8e093b23f71fd9acaa406dfeef46a460ee6\"}, \"id\": \"5w0okn36fs061\"}}, \"name\": \"t3_jyv8jz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606078621.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m going to fork and fix the package that has not been maintained since 2004 and publish it on melpa.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/black7375/ll-debug\\\"\\u003Ehttps://github.com/black7375/ll-debug\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://preview.redd.it/5w0okn36fs061.png?width=1508\\u0026amp;format=png\\u0026amp;auto=webp\\u0026amp;s=f898d8e093b23f71fd9acaa406dfeef46a460ee6\\\"\\u003Ehttps://preview.redd.it/5w0okn36fs061.png?width=1508\\u0026amp;format=png\\u0026amp;auto=webp\\u0026amp;s=f898d8e093b23f71fd9acaa406dfeef46a460ee6\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut there was one problem.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to fix the message(\\u003Ccode\\u003EUse \\\\\\\\\\u0026lt;keymap\\u0026gt; \\u0026amp; \\\\\\\\[function] instead\\u003C/code\\u003E ) , but I don\\u0026#39;t know how.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat can I do?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyv8jz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"black7375\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyv8jz/how_can_i_fix_checkdocs_keymap_warning_info/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jyv8jz/how_can_i_fix_checkdocs_keymap_warning_info/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606049821.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is it a thing?\\n\\nFor example MS VisualStudio supports:\\n\\nhttps://docs.microsoft.com/en-us/visualstudio/ide/create-portable-custom-editor-options?view=vs-2019\\n\\n* indent_style\\n* indent_size\\n* tab_width\\n* end_of_line\\n* charset\\n* trim_trailing_whitespace\\n* insert_final_newline\\n\\nI see https://github.com/editorconfig/editorconfig-emacs but the question is it good to introduce it to software project, pros/cons?\", \"author_fullname\": \"t2_4mzdi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs \\u0026 https://editorconfig.org/ ??\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyu2l0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.63, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606072556.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it a thing?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example MS VisualStudio supports:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://docs.microsoft.com/en-us/visualstudio/ide/create-portable-custom-editor-options?view=vs-2019\\\"\\u003Ehttps://docs.microsoft.com/en-us/visualstudio/ide/create-portable-custom-editor-options?view=vs-2019\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Eindent_style\\u003C/li\\u003E\\n\\u003Cli\\u003Eindent_size\\u003C/li\\u003E\\n\\u003Cli\\u003Etab_width\\u003C/li\\u003E\\n\\u003Cli\\u003Eend_of_line\\u003C/li\\u003E\\n\\u003Cli\\u003Echarset\\u003C/li\\u003E\\n\\u003Cli\\u003Etrim_trailing_whitespace\\u003C/li\\u003E\\n\\u003Cli\\u003Einsert_final_newline\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI see \\u003Ca href=\\\"https://github.com/editorconfig/editorconfig-emacs\\\"\\u003Ehttps://github.com/editorconfig/editorconfig-emacs\\u003C/a\\u003E but the question is it good to introduce it to software project, pros/cons?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyu2l0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gavenkoa\", \"discussion_type\": null, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyu2l0/emacs_httpseditorconfigorg/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jyu2l0/emacs_httpseditorconfigorg/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606043756.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When I forward emails in Notmuch it adds the email address of the From: person. I.e.:\\n\\nSubject: \\\\[email@isp.com\\\\] test email\\n\\nIs there a way to turn that off?\\n\\nThanks.\", \"author_fullname\": \"t2_20zre11d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Notmuch Forward\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jytvlu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.75, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606071553.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I forward emails in Notmuch it adds the email address of the From: person. I.e.:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESubject: [\\u003Ca href=\\\"mailto:email@isp.com\\\"\\u003Eemail@isp.com\\u003C/a\\u003E] test email\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way to turn that off?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jytvlu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"j22fineman\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jytvlu/notmuch_forward/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jytvlu/notmuch_forward/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606042753.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"1. How do I write my Doom config as an Org file? I saw a reference somewhere to Doom automatically tangling config files but haven't found any details\\n2. Is there a Doom version of layers? I.e. when I add package with major mode, do I have to define all of the SPC-foo keybindings myself every time to get the leader key behavior? Or is there a way that this is automated, or done beforehand by the community?\\n3. Is there a Doom equivalent of Spacemacs \\\"hybrid\\\" mode? Ie emacs (and possibly CUA) bindings in insert mode?\\n4. Any other tips you have for making the transition from Spacemacs to Doom!\", \"author_fullname\": \"t2_8xyym\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A couple Spacemacs -\\u003E Doom questions\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyrqjq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606058882.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Col\\u003E\\n\\u003Cli\\u003EHow do I write my Doom config as an Org file? I saw a reference somewhere to Doom automatically tangling config files but haven\\u0026#39;t found any details\\u003C/li\\u003E\\n\\u003Cli\\u003EIs there a Doom version of layers? I.e. when I add package with major mode, do I have to define all of the SPC-foo keybindings myself every time to get the leader key behavior? Or is there a way that this is automated, or done beforehand by the community?\\u003C/li\\u003E\\n\\u003Cli\\u003EIs there a Doom equivalent of Spacemacs \\u0026quot;hybrid\\u0026quot; mode? Ie emacs (and possibly CUA) bindings in insert mode?\\u003C/li\\u003E\\n\\u003Cli\\u003EAny other tips you have for making the transition from Spacemacs to Doom!\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyrqjq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jmite\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyrqjq/a_couple_spacemacs_doom_questions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jyrqjq/a_couple_spacemacs_doom_questions/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606030082.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_a3k96\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Introducing emacs-webkit - A successor to xwidget-webkit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyowe0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.99, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 214, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 214, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1606045378.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://i.redd.it/htpfdfdaqp061.gif\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"giver_coin_reward\": 0, \"subreddit_id\": null, \"is_new\": false, \"days_of_drip_extension\": 0, \"coin_price\": 150, \"id\": \"award_a7f9cbd7-c0f1-4569-a913-ebf8d18de00b\", \"penny_donate\": 0, \"award_sub_type\": \"GLOBAL\", \"coin_reward\": 0, \"icon_url\": \"https://i.redd.it/award_images/t5_22cerq/9jr8pv84v7i51_TakeMyMoney.png\", \"days_of_premium\": 0, \"tiers_by_required_awardings\": null, \"resized_icons\": [{\"url\": \"https://preview.redd.it/award_images/t5_22cerq/9jr8pv84v7i51_TakeMyMoney.png?width=16\\u0026height=16\\u0026auto=webp\\u0026s=29e0718bc073af110b87f599ff4a811c0fee8eea\", \"width\": 16, \"height\": 16}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/9jr8pv84v7i51_TakeMyMoney.png?width=32\\u0026height=32\\u0026auto=webp\\u0026s=37a178a45c7c94a2603188b7981dd4bac5dfcd11\", \"width\": 32, \"height\": 32}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/9jr8pv84v7i51_TakeMyMoney.png?width=48\\u0026height=48\\u0026auto=webp\\u0026s=7b07d4f2c621e1e4fe4814eb55dee9ab0ddf9a5d\", \"width\": 48, \"height\": 48}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/9jr8pv84v7i51_TakeMyMoney.png?width=64\\u0026height=64\\u0026auto=webp\\u0026s=d1d740de812f5ffd0428fc4c917c2769a2b4c7ff\", \"width\": 64, \"height\": 64}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/9jr8pv84v7i51_TakeMyMoney.png?width=128\\u0026height=128\\u0026auto=webp\\u0026s=569b704beed364b5fb5d9eecefde79d8dafeecf5\", \"width\": 128, \"height\": 128}], \"icon_width\": 2048, \"static_icon_width\": 2048, \"start_date\": null, \"is_enabled\": true, \"awardings_required_to_grant_benefits\": null, \"description\": \"I'm buying what you're selling\", \"end_date\": null, \"subreddit_coin_reward\": 0, \"count\": 1, \"static_icon_height\": 2048, \"name\": \"Take My Money\", \"resized_static_icons\": [{\"url\": \"https://preview.redd.it/award_images/t5_22cerq/9jr8pv84v7i51_TakeMyMoney.png?width=16\\u0026height=16\\u0026auto=webp\\u0026s=29e0718bc073af110b87f599ff4a811c0fee8eea\", \"width\": 16, \"height\": 16}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/9jr8pv84v7i51_TakeMyMoney.png?width=32\\u0026height=32\\u0026auto=webp\\u0026s=37a178a45c7c94a2603188b7981dd4bac5dfcd11\", \"width\": 32, \"height\": 32}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/9jr8pv84v7i51_TakeMyMoney.png?width=48\\u0026height=48\\u0026auto=webp\\u0026s=7b07d4f2c621e1e4fe4814eb55dee9ab0ddf9a5d\", \"width\": 48, \"height\": 48}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/9jr8pv84v7i51_TakeMyMoney.png?width=64\\u0026height=64\\u0026auto=webp\\u0026s=d1d740de812f5ffd0428fc4c917c2769a2b4c7ff\", \"width\": 64, \"height\": 64}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/9jr8pv84v7i51_TakeMyMoney.png?width=128\\u0026height=128\\u0026auto=webp\\u0026s=569b704beed364b5fb5d9eecefde79d8dafeecf5\", \"width\": 128, \"height\": 128}], \"icon_format\": \"PNG\", \"icon_height\": 2048, \"penny_price\": 0, \"award_type\": \"global\", \"static_icon_url\": \"https://i.redd.it/award_images/t5_22cerq/9jr8pv84v7i51_TakeMyMoney.png\"}], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyowe0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"daehoidar3\", \"discussion_type\": null, \"num_comments\": 63, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyowe0/introducing_emacswebkit_a_successor_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/htpfdfdaqp061.gif\", \"subreddit_subscribers\": 46692, \"created_utc\": 1606016578.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I like to have a slightly darker background on my headings but i want TODO or other keyword headings to have the default background. Basically i want normal headings and TODO headings to look differently, is that possible?\\n\\n**EDIT**: Managed to do what i wanted *with some caveats* by utilizing the following customization options\\n\\n\\u003Eorg-fontify-whole-heading-line \\n\\u003E \\n\\u003Eorg-fontify-todo-headline\\n\\nThanks to u/terjel.\", \"author_fullname\": \"t2_iyl499d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to use a different face for TODO headings (not just the keyword) than every other heading?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyhr5j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1606130050.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606018679.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like to have a slightly darker background on my headings but i want TODO or other keyword headings to have the default background. Basically i want normal headings and TODO headings to look differently, is that possible?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEDIT\\u003C/strong\\u003E: Managed to do what i wanted \\u003Cem\\u003Ewith some caveats\\u003C/em\\u003E by utilizing the following customization options\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eorg-fontify-whole-heading-line \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorg-fontify-todo-headline\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThanks to \\u003Ca href=\\\"/u/terjel\\\"\\u003Eu/terjel\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyhr5j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lemonaidMax\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyhr5j/is_there_a_way_to_use_a_different_face_for_todo/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jyhr5j/is_there_a_way_to_use_a_different_face_for_todo/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605989879.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How many \\u201edef....\\u201c forms do we have in Emacs Lisp? Anyone can point to a document?\", \"author_fullname\": \"t2_15r3rh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"defun defvar defmacro etc - how many variants?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jygu0l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606015577.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow many \\u201edef....\\u201c forms do we have in Emacs Lisp? Anyone can point to a document?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jygu0l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pragmat1c1\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jygu0l/defun_defvar_defmacro_etc_how_many_variants/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jygu0l/defun_defvar_defmacro_etc_how_many_variants/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605986777.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I was wondering if there is any outline-mode or sidebar-mode that can show me the various sections in a large LaTeX file I am working on. Something that looks like \\\\`neotree\\\\` and can just live as a small sidebar on the edge?\", \"author_fullname\": \"t2_zexcngm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Outline/Sidebar for LaTeX files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyg2mm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606013097.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering if there is any outline-mode or sidebar-mode that can show me the various sections in a large LaTeX file I am working on. Something that looks like `neotree` and can just live as a small sidebar on the edge?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyg2mm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackofthebeanstalk\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyg2mm/outlinesidebar_for_latex_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jyg2mm/outlinesidebar_for_latex_files/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605984297.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3agn0ex9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Getting Started With Emacs Lisp Hands On - A Practical Beginners Tutorial\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"pink\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyf42j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.98, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 116, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"emacs-fu\", \"can_mod_post\": false, \"score\": 116, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1606009962.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"benwindsorcode.github.io\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://benwindsorcode.github.io/Getting-Started-With-Emacs-Lisp/\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b862c57e-6b8a-11e5-8194-0e1d3ee68d31\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyf42j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"benWindsorCode\", \"discussion_type\": null, \"num_comments\": 21, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyf42j/getting_started_with_emacs_lisp_hands_on_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://benwindsorcode.github.io/Getting-Started-With-Emacs-Lisp/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605981162.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_ybflf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs on terminal\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyf16y\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.89, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1606009698.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"wandersoncferreira.github.io\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://wandersoncferreira.github.io/blog/emacs-on-terminal/\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyf16y\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bartuka\", \"discussion_type\": null, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyf16y/emacs_on_terminal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://wandersoncferreira.github.io/blog/emacs-on-terminal/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605980898.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nI just got a new computer and when trying to run `M-x package-list-packages` on emacs I get this error: `The TLS Connection to` [`elpa.org:443`](https://elpa.org:443) `is insecure`. Never happened to me before... Anyone knows how to fix this?\\n\\nThanks!\", \"author_fullname\": \"t2_1vv3kte\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The TLS Connection to elpa.org:443 is insecure\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyez4x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.75, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1605980981.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606009509.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI just got a new computer and when trying to run \\u003Ccode\\u003EM-x package-list-packages\\u003C/code\\u003E on emacs I get this error: \\u003Ccode\\u003EThe TLS Connection to\\u003C/code\\u003E \\u003Ca href=\\\"https://elpa.org:443\\\"\\u003E\\u003Ccode\\u003Eelpa.org:443\\u003C/code\\u003E\\u003C/a\\u003E \\u003Ccode\\u003Eis insecure\\u003C/code\\u003E. Never happened to me before... Anyone knows how to fix this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyez4x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ctm-8400\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyez4x/the_tls_connection_to_elpaorg443_is_insecure/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jyez4x/the_tls_connection_to_elpaorg443_is_insecure/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605980709.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Since doom doesn't use \\\\``use-package`\\\\` . \\n\\n `(use-package all-the-icons-dired`\\n\\n`:hook (dired-mode . all-the-icons-dired-mode))`\", \"author_fullname\": \"t2_13ykj5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to do this in doom emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyepq3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1606008653.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESince doom doesn\\u0026#39;t use `\\u003Ccode\\u003Euse-package\\u003C/code\\u003E` . \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(use-package all-the-icons-dired\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:hook (dired-mode . all-the-icons-dired-mode))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyepq3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gws10463\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyepq3/how_to_do_this_in_doom_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jyepq3/how_to_do_this_in_doom_emacs/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605979853.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I use org-roam-graph to create svg file for my org-roam files. This svg files can be seen in raw format. I cannot open it in svg graph format in emacs. I am able to open it in the browser and see the graph. Now, it has org-protocol links for each file. It does not open either in emacs or browser. I am on windows machine and using the chrome browser. I may not have permission to tweak settings as I am on work-machine. Which setups are required for reasonable viewing ? If I reduce the number of nodes, I can open svg igraph in Emacs properly, but still cannot click on nodes to view the individual files. \", \"author_fullname\": \"t2_23nftag2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Handling org-protocol with org-roam-graph\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jyagzo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1605966148.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605993011.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use org-roam-graph to create svg file for my org-roam files. This svg files can be seen in raw format. I cannot open it in svg graph format in emacs. I am able to open it in the browser and see the graph. Now, it has org-protocol links for each file. It does not open either in emacs or browser. I am on windows machine and using the chrome browser. I may not have permission to tweak settings as I am on work-machine. Which setups are required for reasonable viewing ? If I reduce the number of nodes, I can open svg igraph in Emacs properly, but still cannot click on nodes to view the individual files. \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jyagzo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aartist111\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jyagzo/handling_orgprotocol_with_orgroamgraph/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jyagzo/handling_orgprotocol_with_orgroamgraph/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605964211.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_9ugds\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Disable global-hl-line-mode for Specific Modes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jya77n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.9, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1605991801.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"emacsredux.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://emacsredux.com/blog/2020/11/21/disable-global-hl-line-mode-for-specific-modes/\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jya77n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bozhidarb\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jya77n/disable_globalhllinemode_for_specific_modes/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://emacsredux.com/blog/2020/11/21/disable-global-hl-line-mode-for-specific-modes/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605963001.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[ANN] unpackaged/reload-package: Command to reload a package's features after upgrading (so restarting Emacs isn't necessary)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"blue\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jy9wa1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.96, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 24, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"News\", \"can_mod_post\": false, \"score\": 24, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1605990295.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/alphapapa/unpackaged.el#reload-a-packages-features\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"aeb9dc36-2329-11e6-b4ef-0e888a520d23\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jy9wa1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jy9wa1/ann_unpackagedreloadpackage_command_to_reload_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/alphapapa/unpackaged.el#reload-a-packages-features\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605961495.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[ANN] org-super-agenda 1.2 released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"blue\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jy87i3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.98, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 84, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"News\", \"can_mod_post\": false, \"score\": 84, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1605980730.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/alphapapa/org-super-agenda#changelog\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"giver_coin_reward\": 0, \"subreddit_id\": null, \"is_new\": false, \"days_of_drip_extension\": 0, \"coin_price\": 80, \"id\": \"award_8352bdff-3e03-4189-8a08-82501dd8f835\", \"penny_donate\": 0, \"award_sub_type\": \"GLOBAL\", \"coin_reward\": 0, \"icon_url\": \"https://i.redd.it/award_images/t5_22cerq/niiatoknifn51_Hugz.png\", \"days_of_premium\": 0, \"tiers_by_required_awardings\": null, \"resized_icons\": [{\"url\": \"https://preview.redd.it/award_images/t5_22cerq/niiatoknifn51_Hugz.png?width=16\\u0026height=16\\u0026auto=webp\\u0026s=85b1aa61933f163dd2b77b1e78f4d82d9c947ec1\", \"width\": 16, \"height\": 16}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/niiatoknifn51_Hugz.png?width=32\\u0026height=32\\u0026auto=webp\\u0026s=67935636337b07ca5b98d945f4bcdae26e5f567e\", \"width\": 32, \"height\": 32}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/niiatoknifn51_Hugz.png?width=48\\u0026height=48\\u0026auto=webp\\u0026s=547d5fb33f5a4a5d6fc154cbd658638cc2b1c3a0\", \"width\": 48, \"height\": 48}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/niiatoknifn51_Hugz.png?width=64\\u0026height=64\\u0026auto=webp\\u0026s=e17bc331183e7ba194314a34e43b35460a835fff\", \"width\": 64, \"height\": 64}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/niiatoknifn51_Hugz.png?width=128\\u0026height=128\\u0026auto=webp\\u0026s=1b4e617f18af8d4e2c47c2f154d4422be43c809f\", \"width\": 128, \"height\": 128}], \"icon_width\": 2048, \"static_icon_width\": 2048, \"start_date\": null, \"is_enabled\": true, \"awardings_required_to_grant_benefits\": null, \"description\": \"Everything is better with a good hug\", \"end_date\": null, \"subreddit_coin_reward\": 0, \"count\": 1, \"static_icon_height\": 2048, \"name\": \"Hugz\", \"resized_static_icons\": [{\"url\": \"https://preview.redd.it/award_images/t5_22cerq/niiatoknifn51_Hugz.png?width=16\\u0026height=16\\u0026auto=webp\\u0026s=85b1aa61933f163dd2b77b1e78f4d82d9c947ec1\", \"width\": 16, \"height\": 16}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/niiatoknifn51_Hugz.png?width=32\\u0026height=32\\u0026auto=webp\\u0026s=67935636337b07ca5b98d945f4bcdae26e5f567e\", \"width\": 32, \"height\": 32}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/niiatoknifn51_Hugz.png?width=48\\u0026height=48\\u0026auto=webp\\u0026s=547d5fb33f5a4a5d6fc154cbd658638cc2b1c3a0\", \"width\": 48, \"height\": 48}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/niiatoknifn51_Hugz.png?width=64\\u0026height=64\\u0026auto=webp\\u0026s=e17bc331183e7ba194314a34e43b35460a835fff\", \"width\": 64, \"height\": 64}, {\"url\": \"https://preview.redd.it/award_images/t5_22cerq/niiatoknifn51_Hugz.png?width=128\\u0026height=128\\u0026auto=webp\\u0026s=1b4e617f18af8d4e2c47c2f154d4422be43c809f\", \"width\": 128, \"height\": 128}], \"icon_format\": \"PNG\", \"icon_height\": 2048, \"penny_price\": 0, \"award_type\": \"global\", \"static_icon_url\": \"https://i.redd.it/award_images/t5_22cerq/niiatoknifn51_Hugz.png\"}], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"aeb9dc36-2329-11e6-b4ef-0e888a520d23\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jy87i3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"discussion_type\": null, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jy87i3/ann_orgsuperagenda_12_released/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/alphapapa/org-super-agenda#changelog\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605951930.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi there! Maybe this sounds weird, but let me explain. I discovered the [remind](https://dianne.skoll.ca/projects/remind/) application a few weeks ago and I'm in love with it. I'm using it not only for my personal calendar but for other kinds of calendars wich I used to painfully make on LibreOffice Calc. One of the features of remind is to print an ASCII calendar to STDOUT. I want to add that ASCII calendar to my org-mode agenda, so I can see my tasks (a normal org-mode file) and my calendar (generated with the command `remind -c+1 ~/calendar.rem`.\\n\\nI have read [some documentation for the custom agenda commands](https://orgmode.org/worg/org-tutorials/org-custom-agenda-commands.html) and I see I can add custom functions. So, is it possible to add this to an agenda buffer? If not, is there a way to automatically add that calendar to the end or the beggining of the file (maybe with `C-u M-! `) and replace it every time I open the file? (this sound incredible hard to do, but maybe with sed, tail and a lot of patience)? Thanks in advance!!!\", \"author_fullname\": \"t2_nklq0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Print the output of a shell command on an org-mode agenda buffer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jy64ad\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605968779.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi there! Maybe this sounds weird, but let me explain. I discovered the \\u003Ca href=\\\"https://dianne.skoll.ca/projects/remind/\\\"\\u003Eremind\\u003C/a\\u003E application a few weeks ago and I\\u0026#39;m in love with it. I\\u0026#39;m using it not only for my personal calendar but for other kinds of calendars wich I used to painfully make on LibreOffice Calc. One of the features of remind is to print an ASCII calendar to STDOUT. I want to add that ASCII calendar to my org-mode agenda, so I can see my tasks (a normal org-mode file) and my calendar (generated with the command \\u003Ccode\\u003Eremind -c+1 ~/calendar.rem\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have read \\u003Ca href=\\\"https://orgmode.org/worg/org-tutorials/org-custom-agenda-commands.html\\\"\\u003Esome documentation for the custom agenda commands\\u003C/a\\u003E and I see I can add custom functions. So, is it possible to add this to an agenda buffer? If not, is there a way to automatically add that calendar to the end or the beggining of the file (maybe with \\u003Ccode\\u003EC-u M-!\\u003C/code\\u003E) and replace it every time I open the file? (this sound incredible hard to do, but maybe with sed, tail and a lot of patience)? Thanks in advance!!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jy64ad\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"juacq97\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jy64ad/print_the_output_of_a_shell_command_on_an_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jy64ad/print_the_output_of_a_shell_command_on_an_orgmode/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605939979.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I would like to execute python code that creates a graph (e.g. with matplotlib) such that the plot it produces is created in a new buffer within Emacs (as opposed to it being created in a new GUI window).\\n\\nI'm aware of possibilities with Org and Jupyter but would like to use python files.\", \"author_fullname\": \"t2_e6nxw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Show python plots inside Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jy48gr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605960127.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to execute python code that creates a graph (e.g. with matplotlib) such that the plot it produces is created in a new buffer within Emacs (as opposed to it being created in a new GUI window).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m aware of possibilities with Org and Jupyter but would like to use python files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jy48gr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"chaosprism\", \"discussion_type\": null, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jy48gr/show_python_plots_inside_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jy48gr/show_python_plots_inside_emacs/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605931327.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How I need to be able to set the username and hostname as variables in the scripts execution parameters.\\n\\n\\n #+NAME: gen_export_dirs\\n #+header: :var SITENAME=\\\"test01.domain.com\\\"\\n #+header: :var SUBDOMAIN=\\\"testdir\\\"\\n #+header: :var HOSTNAME=\\\"testhost\\\"\\n #+header: :var USERNAME=\\\"testuser\\\"\\n #+begin_src sh :dir /ssh:$USERNAME@$HOSTNAME:tmp :results output\\n \\n mkdir -p ~/sites/$SITENAME/www/html/sites/default/files/private/exports/$SUBDOMAIN\\n mkdir -p ~/sites/$SITENAME/www/html/sites/default/files/public/exports/$SUBDOMAIN\\n mkdir -p ~/sites/$SITENAME/www/html/sites/default/files/private/exports/$SUBDOMAIN\\n mkdir -p ~/sites/$SITENAME/www/html/sites/default/files/public/exports/$SUBDOMAIN\\n \\n # link installation based directories \\n mkdir -p ~/$SITENAME/$SUBDOMAIN/;\\n ln -s ~/sites/$SITENAME/www/html/sites/default/files/private/exports/$SUBDOMAIN ~/$SITENAME/$SUBDOMAIN/private\\n ln -s ~/sites/$SITENAME/www/html/sites/default/files/public/exports/$SUBDOMAIN ~/$SITENAME/$SUBDOMAIN/public\\n \\n #+end_src\\n \\nIt is mainly for setting some directories for a Drupal installation.\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I set the hostname and username as variables in remote babel block's execution parameters, and not in the source alone?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jy2q1b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605953917.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow I need to be able to set the username and hostname as variables in the scripts execution parameters.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+NAME: gen_export_dirs\\n#+header: :var SITENAME=\\u0026quot;test01.domain.com\\u0026quot;\\n#+header: :var SUBDOMAIN=\\u0026quot;testdir\\u0026quot;\\n#+header: :var HOSTNAME=\\u0026quot;testhost\\u0026quot;\\n#+header: :var USERNAME=\\u0026quot;testuser\\u0026quot;\\n#+begin_src sh :dir /ssh:$USERNAME@$HOSTNAME:tmp :results output\\n\\nmkdir -p ~/sites/$SITENAME/www/html/sites/default/files/private/exports/$SUBDOMAIN\\nmkdir -p ~/sites/$SITENAME/www/html/sites/default/files/public/exports/$SUBDOMAIN\\nmkdir -p ~/sites/$SITENAME/www/html/sites/default/files/private/exports/$SUBDOMAIN\\nmkdir -p ~/sites/$SITENAME/www/html/sites/default/files/public/exports/$SUBDOMAIN\\n\\n# link installation based directories \\nmkdir -p ~/$SITENAME/$SUBDOMAIN/;\\nln -s ~/sites/$SITENAME/www/html/sites/default/files/private/exports/$SUBDOMAIN ~/$SITENAME/$SUBDOMAIN/private\\nln -s ~/sites/$SITENAME/www/html/sites/default/files/public/exports/$SUBDOMAIN ~/$SITENAME/$SUBDOMAIN/public\\n\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIt is mainly for setting some directories for a Drupal installation.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jy2q1b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jy2q1b/how_can_i_set_the_hostname_and_username_as/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jy2q1b/how_can_i_set_the_hostname_and_username_as/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605925117.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"... what would be \\\"bare essentials\\\" packages you would like to include? I don't mean heavy things like evil or helm/ivy that completely change Emacs experience, or packages that target certain category of users like Cider or JS2 nor do I mean libraries like s.el or.el and similar. I mean things like which-key, diminish/delight, avy or helpful and similar that enhance overall Emacs experience that most people can find useful. I am just curious what would such collection look like.\", \"author_fullname\": \"t2_13zo3p\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"If you would create your own Emacs distro ...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jy2ost\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.64, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605953781.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E... what would be \\u0026quot;bare essentials\\u0026quot; packages you would like to include? I don\\u0026#39;t mean heavy things like evil or helm/ivy that completely change Emacs experience, or packages that target certain category of users like Cider or JS2 nor do I mean libraries like s.el or.el and similar. I mean things like which-key, diminish/delight, avy or helpful and similar that enhance overall Emacs experience that most people can find useful. I am just curious what would such collection look like.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jy2ost\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"arthurno1\", \"discussion_type\": null, \"num_comments\": 29, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jy2ost/if_you_would_create_your_own_emacs_distro/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jy2ost/if_you_would_create_your_own_emacs_distro/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605924981.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've been using libvterm with ssh for some time now and remote directory tracking works well enough to at least recognize the host and set up a TRAMP remote file name for find-file and friends (the actual directory wasn't tracking correctly, however).\\n\\nAfter trying mosh, which I'd really like to use, I've completely lost all directory tracking, such that a remote file path isn't set up as before.\\n\\nHas anyone experienced this? Any suggestions on how to fix it?\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"libvterm + mosh: lost directory tracking\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jy1gv9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1605991508.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605949039.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been using libvterm with ssh for some time now and remote directory tracking works well enough to at least recognize the host and set up a TRAMP remote file name for find-file and friends (the actual directory wasn\\u0026#39;t tracking correctly, however).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter trying mosh, which I\\u0026#39;d really like to use, I\\u0026#39;ve completely lost all directory tracking, such that a remote file path isn\\u0026#39;t set up as before.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHas anyone experienced this? Any suggestions on how to fix it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jy1gv9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jy1gv9/libvterm_mosh_lost_directory_tracking/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jy1gv9/libvterm_mosh_lost_directory_tracking/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605920239.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hey guys, do you have any straight to the point good tutorials (written is preferred over video) for someone that has never used EMACS or VI ? I\\u2018m pretty comfortable with the command line tho.\\nI got convinced to learn Emacs first.\\nThanks\", \"author_fullname\": \"t2_16358z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Looking for Tutorial\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxwkpf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605932144.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey guys, do you have any straight to the point good tutorials (written is preferred over video) for someone that has never used EMACS or VI ? I\\u2018m pretty comfortable with the command line tho.\\nI got convinced to learn Emacs first.\\nThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxwkpf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"khiari_hamdi\", \"discussion_type\": null, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxwkpf/looking_for_tutorial/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxwkpf/looking_for_tutorial/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605903344.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Eldoc works for me in emacs mode, and I have run php-extras-generate-eldoc which creates and loads a big file of PHP function definitions, but when I try to enter eldoc mode from a PHP file it says \\\"There is no ElDoc support in this buffer\\\". Is there some piece I am missing?\", \"author_fullname\": \"t2_4b96y\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"PHP-mode eldoc not working\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxw6pl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605930928.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEldoc works for me in emacs mode, and I have run php-extras-generate-eldoc which creates and loads a big file of PHP function definitions, but when I try to enter eldoc mode from a PHP file it says \\u0026quot;There is no ElDoc support in this buffer\\u0026quot;. Is there some piece I am missing?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxw6pl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"linuxwes\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxw6pl/phpmode_eldoc_not_working/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxw6pl/phpmode_eldoc_not_working/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605902128.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm using `doom-emacs` as a base, and I've got its `(ruby +rails)` module enabled. And I've been having a lot of issues with the default indentation settings that are being employed. I guess I (my company and myself not just me) go way against the grain of what is considered \\\"standard\\\" or \\\"defualt\\\" ruby indentation patterns but I'm pretty much ready to just turn off all auto-indentation for ruby code but I really don't know how.\\n\\nSo far I've turned off `ruby-use-smie` so I can turn off `ruby-deep-arglist` and `ruby-deep-indent-paren`, but now it seems that I've been bitten because I can't disable `ruby-align-to-stmt-keywords` (or enable it, it's weird to me because it aligns to keywords if it's `nil` but if it's `t` it aligns to the beginning of the line...) because it requires `ruby-use-smie` to be set to `t`...\\n\\nI tried removing the electric indent mode (not being familiar enough to know if that matters) but that didn't seem to do anything for me. The problem I'm seeing now is that apparently `ruby-mode` indentation is thinking that `if:` (a symbol) is a keyword and aligning to it so I end up with situations like this:\\n\\n validate :ability_to_set_value, if: :will_save_change_to_parent_id?\\n # indentation starts here\\n\\nPerfectly valid Ruby, standard Rails code.\\n\\nI've thought about trying out `enh-ruby-mode` but I'm a bit off put by the warnings of it not being optimized (sadly the code base I work on has some pretty gargantuan files). I also don't know how deeply integrated `ruby-mode` is in `doom-emacs` so I'm a bit worried about breaking/losing something I don't know I'm getting by switching to `enh-ruby-mode`.\\n\\n**So my ultimate question is:**\\n\\nCan I tone down `ruby-mode` indentation to fix this specific issue (and maybe similar ones I haven't encountered yet) or just turn off all \\\"advanced\\\" indentation (other than simply \\\"you're in a block here's some indentation\\\") for `ruby-mode`?\\n\\n**edit:** fix indentation offset example and the note below\\n\\nFor what it's worth, this indentation continues even after I've added code and try to start a new line below it, something like\\n\\n validate :ability_to_set_value, if: :will_save_change_to_parent_id?\\n\\n scope :a_new_scope, -\\u003E (a_param) { where(the_thing: a_param) }\\n # indentation starts here\\n\\nWhich is wild, since it still appears to be trying to align to that `if:` (I had to manually fix the indentation of the `scope` but if anything auto formats that line it jumps back out and I have to fix it again).\\n\\n**edit 2:** spelling/grammar\", \"author_fullname\": \"t2_afn26\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Having issues with ruby-mode indentation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxvy38\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1605901830.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605930148.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using \\u003Ccode\\u003Edoom-emacs\\u003C/code\\u003E as a base, and I\\u0026#39;ve got its \\u003Ccode\\u003E(ruby +rails)\\u003C/code\\u003E module enabled. And I\\u0026#39;ve been having a lot of issues with the default indentation settings that are being employed. I guess I (my company and myself not just me) go way against the grain of what is considered \\u0026quot;standard\\u0026quot; or \\u0026quot;defualt\\u0026quot; ruby indentation patterns but I\\u0026#39;m pretty much ready to just turn off all auto-indentation for ruby code but I really don\\u0026#39;t know how.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo far I\\u0026#39;ve turned off \\u003Ccode\\u003Eruby-use-smie\\u003C/code\\u003E so I can turn off \\u003Ccode\\u003Eruby-deep-arglist\\u003C/code\\u003E and \\u003Ccode\\u003Eruby-deep-indent-paren\\u003C/code\\u003E, but now it seems that I\\u0026#39;ve been bitten because I can\\u0026#39;t disable \\u003Ccode\\u003Eruby-align-to-stmt-keywords\\u003C/code\\u003E (or enable it, it\\u0026#39;s weird to me because it aligns to keywords if it\\u0026#39;s \\u003Ccode\\u003Enil\\u003C/code\\u003E but if it\\u0026#39;s \\u003Ccode\\u003Et\\u003C/code\\u003E it aligns to the beginning of the line...) because it requires \\u003Ccode\\u003Eruby-use-smie\\u003C/code\\u003E to be set to \\u003Ccode\\u003Et\\u003C/code\\u003E...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried removing the electric indent mode (not being familiar enough to know if that matters) but that didn\\u0026#39;t seem to do anything for me. The problem I\\u0026#39;m seeing now is that apparently \\u003Ccode\\u003Eruby-mode\\u003C/code\\u003E indentation is thinking that \\u003Ccode\\u003Eif:\\u003C/code\\u003E (a symbol) is a keyword and aligning to it so I end up with situations like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E validate :ability_to_set_value, if: :will_save_change_to_parent_id?\\n # indentation starts here\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EPerfectly valid Ruby, standard Rails code.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve thought about trying out \\u003Ccode\\u003Eenh-ruby-mode\\u003C/code\\u003E but I\\u0026#39;m a bit off put by the warnings of it not being optimized (sadly the code base I work on has some pretty gargantuan files). I also don\\u0026#39;t know how deeply integrated \\u003Ccode\\u003Eruby-mode\\u003C/code\\u003E is in \\u003Ccode\\u003Edoom-emacs\\u003C/code\\u003E so I\\u0026#39;m a bit worried about breaking/losing something I don\\u0026#39;t know I\\u0026#39;m getting by switching to \\u003Ccode\\u003Eenh-ruby-mode\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESo my ultimate question is:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECan I tone down \\u003Ccode\\u003Eruby-mode\\u003C/code\\u003E indentation to fix this specific issue (and maybe similar ones I haven\\u0026#39;t encountered yet) or just turn off all \\u0026quot;advanced\\u0026quot; indentation (other than simply \\u0026quot;you\\u0026#39;re in a block here\\u0026#39;s some indentation\\u0026quot;) for \\u003Ccode\\u003Eruby-mode\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003Eedit:\\u003C/strong\\u003E fix indentation offset example and the note below\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor what it\\u0026#39;s worth, this indentation continues even after I\\u0026#39;ve added code and try to start a new line below it, something like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E validate :ability_to_set_value, if: :will_save_change_to_parent_id?\\n\\n scope :a_new_scope, -\\u0026gt; (a_param) { where(the_thing: a_param) }\\n # indentation starts here\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhich is wild, since it still appears to be trying to align to that \\u003Ccode\\u003Eif:\\u003C/code\\u003E (I had to manually fix the indentation of the \\u003Ccode\\u003Escope\\u003C/code\\u003E but if anything auto formats that line it jumps back out and I have to fix it again).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003Eedit 2:\\u003C/strong\\u003E spelling/grammar\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxvy38\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"izuriel\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxvy38/having_issues_with_rubymode_indentation/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxvy38/having_issues_with_rubymode_indentation/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605901348.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have found that the mind is like a stack. A mental stack.\\n\\n+ Inspired by my own [How do I stop myself from getting distracted with Org Mode](https://old.reddit.com/r/emacs/comments/jkqj4e/how_to_make_emacs_stop_oneself_from_getting/) post.\\nI was thinking about how to improve my own mental strength and productivity.\\n\\nI found that me getting distracted usually follows this pattern:\\n\\nI go to do one thing, and then I have to do another thing. For example,\\n\\n+ I need to write a program in Scheme that can read in the textual representation of a tree\\n\\n + Research what is a tree\\n + Found cool package that allows you to visualize trees in Emacs\\n\\n + Need to add setup for this package in init.el\\n\\n + What was I doing? Oh yeah, let's read the entire documentation for that tree package\\n and try out lots of different examples\\n (this takes me 5 hours, when I just wanted to write a simple Scheme program.\\n How to avoid this? I should have cut myself off way before 5 hours)\\n\\nThis resembles a \\\"stack\\\" data structure that basic computer science teaches us (the bottom of the indented list here would be the\\n\\\"top\\\" of the stack). I want to explicitly record\\nthis kind of thing, and make sure that I stop before wasting too much time, or make myself accountable\\nfor every new action that I delve into (and make sure to think if it is worthy of my time).\\n\\nOrg Mode, in some shape or form can likely help us out here. I'm not sure though, since I am a complete newbie\\nat Emacs.\\n\\n+ What other Emacs modes might be suited for this?\\n+ Has anyone implemented something similar?\\n+ Is there a package that might easily allow you to \\\"pop\\\" off the stack like we usually might?\\n+ What about recording the time you spend on one of these lateral tasks?\\n+ Basically, can Emacs do this, and how best would you do this in Emacs?\", \"author_fullname\": \"t2_1jrpj7e6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to explicitly record the mental stack?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxvm1h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.72, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605929041.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have found that the mind is like a stack. A mental stack.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EInspired by my own \\u003Ca href=\\\"https://old.reddit.com/r/emacs/comments/jkqj4e/how_to_make_emacs_stop_oneself_from_getting/\\\"\\u003EHow do I stop myself from getting distracted with Org Mode\\u003C/a\\u003E post.\\nI was thinking about how to improve my own mental strength and productivity.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI found that me getting distracted usually follows this pattern:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI go to do one thing, and then I have to do another thing. For example,\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI need to write a program in Scheme that can read in the textual representation of a tree\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EResearch what is a tree\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFound cool package that allows you to visualize trees in Emacs\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENeed to add setup for this package in init.el\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EWhat was I doing? Oh yeah, let\\u0026#39;s read the entire documentation for that tree package\\nand try out lots of different examples\\n(this takes me 5 hours, when I just wanted to write a simple Scheme program.\\nHow to avoid this? I should have cut myself off way before 5 hours)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThis resembles a \\u0026quot;stack\\u0026quot; data structure that basic computer science teaches us (the bottom of the indented list here would be the\\n\\u0026quot;top\\u0026quot; of the stack). I want to explicitly record\\nthis kind of thing, and make sure that I stop before wasting too much time, or make myself accountable\\nfor every new action that I delve into (and make sure to think if it is worthy of my time).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg Mode, in some shape or form can likely help us out here. I\\u0026#39;m not sure though, since I am a complete newbie\\nat Emacs.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EWhat other Emacs modes might be suited for this?\\u003C/li\\u003E\\n\\u003Cli\\u003EHas anyone implemented something similar?\\u003C/li\\u003E\\n\\u003Cli\\u003EIs there a package that might easily allow you to \\u0026quot;pop\\u0026quot; off the stack like we usually might?\\u003C/li\\u003E\\n\\u003Cli\\u003EWhat about recording the time you spend on one of these lateral tasks?\\u003C/li\\u003E\\n\\u003Cli\\u003EBasically, can Emacs do this, and how best would you do this in Emacs?\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxvm1h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"FarmaSuitical\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxvm1h/how_to_explicitly_record_the_mental_stack/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxvm1h/how_to_explicitly_record_the_mental_stack/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605900241.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Tried `jabber` package, but it just throws `jabber-read-jid-completing: Symbol\\u2019s function definition is void: assoc-ignore-case` error :(\\nAnd as i understood `assoc-ignore-case` no longer exists inside emacs\\n\\nAny way to solve this? Or maybe other jabber clients for emacs?\", \"author_fullname\": \"t2_2txf0ybb\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"jabber package not works\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxvl0s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.5, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605928948.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETried \\u003Ccode\\u003Ejabber\\u003C/code\\u003E package, but it just throws \\u003Ccode\\u003Ejabber-read-jid-completing: Symbol\\u2019s function definition is void: assoc-ignore-case\\u003C/code\\u003E error :(\\nAnd as i understood \\u003Ccode\\u003Eassoc-ignore-case\\u003C/code\\u003E no longer exists inside emacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny way to solve this? Or maybe other jabber clients for emacs?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxvl0s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_clstr_\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxvl0s/jabber_package_not_works/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxvl0s/jabber_package_not_works/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605900148.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am an emacs/elisp noob and wanted to write a function in init.el for my custom agenda config in org mode.\\n\\nWhat I want to achieve is to turn the following part of my custom agenda configuration into a function so that I can use it in other places in init.el :\\n\\n (defun my/agenda-goal-function ()\\n (\\n (tags \\\"goal\\\" ((org-agenda-overriding-header \\\"Goals\\\")\\n (org-super-agenda-groups '(\\n (:name \\\"\\\"\\n :anything t\\n :order 1)\\n ))\\n )\\n )\\n )\\n )\\n\\nsuch as\\n\\n (setq org-agenda-custom-commands\\n '(\\n (\\\"G\\\" \\\"Goals\\\" (\\n (my/agenda-goal-function)\\n ))\\n )\\n )\\n\\nHowever, the following error is thrown:\\n\\n funcall: Wrong number of arguments: ((t) nil ((tags \\\"goal\\\" ((org-agenda-overriding-header \\\"Goals\\\") (org-super-agenda-groups (quote ((:name \\\"\\\" :anything t :order 1)))))))), 1\\n\\nI guess I am missing something about the number of argument my/agenda-goal-function takes (which doesn't take any arguments :/), but cannot pinpoint the exact problem.\", \"author_fullname\": \"t2_3uirmn74\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Writing a Function for my Custom Agenda in init.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxvcqm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605928178.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am an emacs/elisp noob and wanted to write a function in init.el for my custom agenda config in org mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat I want to achieve is to turn the following part of my custom agenda configuration into a function so that I can use it in other places in init.el :\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun my/agenda-goal-function ()\\n (\\n (tags \\u0026quot;goal\\u0026quot; ((org-agenda-overriding-header \\u0026quot;Goals\\u0026quot;)\\n (org-super-agenda-groups \\u0026#39;(\\n (:name \\u0026quot;\\u0026quot;\\n :anything t\\n :order 1)\\n ))\\n )\\n )\\n )\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Esuch as\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-custom-commands\\n \\u0026#39;(\\n (\\u0026quot;G\\u0026quot; \\u0026quot;Goals\\u0026quot; (\\n (my/agenda-goal-function)\\n ))\\n )\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHowever, the following error is thrown:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Efuncall: Wrong number of arguments: ((t) nil ((tags \\u0026quot;goal\\u0026quot; ((org-agenda-overriding-header \\u0026quot;Goals\\u0026quot;) (org-super-agenda-groups (quote ((:name \\u0026quot;\\u0026quot; :anything t :order 1)))))))), 1\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI guess I am missing something about the number of argument my/agenda-goal-function takes (which doesn\\u0026#39;t take any arguments :/), but cannot pinpoint the exact problem.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxvcqm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ugurbolat\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxvcqm/writing_a_function_for_my_custom_agenda_in_initel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxvcqm/writing_a_function_for_my_custom_agenda_in_initel/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605899378.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"The regular built-in terminals and Eshell inside Emacs will lag badly after 10K lines of input or render/behave strangely when used with ncurses programs or have some weirdness that regular terminals outside of Emacs don't have. \\n\\nSo that makes me to wondering, even if Emacs does have his own window manager (EXWM), what is the reason that there is no 'normal' terminal for Emacs?\", \"author_fullname\": \"t2_dnrz4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why does Emacs don't have a good terminal mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxt39s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.87, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605921276.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe regular built-in terminals and Eshell inside Emacs will lag badly after 10K lines of input or render/behave strangely when used with ncurses programs or have some weirdness that regular terminals outside of Emacs don\\u0026#39;t have. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo that makes me to wondering, even if Emacs does have his own window manager (EXWM), what is the reason that there is no \\u0026#39;normal\\u0026#39; terminal for Emacs?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxt39s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ReneFroger\", \"discussion_type\": null, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxt39s/why_does_emacs_dont_have_a_good_terminal_mode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxt39s/why_does_emacs_dont_have_a_good_terminal_mode/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605892476.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I compile with gcc, but I like having the lsp-clangd backend thingy for linting. It keeps telling me string.h is not found:\\n\\n 'string.h' file not found [pp_file_not_found]\\n\\nI'm assuming this has to do with the fact that I'm compiling for arm using the gnu arm toolchain. Is there a way I can explicitly tell clang to ignore this warning?\", \"author_fullname\": \"t2_8jacpa1h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I tell lsp-clangd (my c-c++ backend server) to ignore a specific warning?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxsn1o\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605919915.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI compile with gcc, but I like having the lsp-clangd backend thingy for linting. It keeps telling me string.h is not found:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026#39;string.h\\u0026#39; file not found [pp_file_not_found]\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m assuming this has to do with the fact that I\\u0026#39;m compiling for arm using the gnu arm toolchain. Is there a way I can explicitly tell clang to ignore this warning?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxsn1o\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"penguindied\", \"discussion_type\": null, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxsn1o/how_can_i_tell_lspclangd_my_cc_backend_server_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxsn1o/how_can_i_tell_lspclangd_my_cc_backend_server_to/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605891115.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to write a function that opens a shell in a new frame. Doesn't sound too complicated, and surely isn't, but I don't get it to work properly. Any advice?\", \"author_fullname\": \"t2_40ghs5rp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to open a shell in a new frame?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxrelm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.7, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605916089.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to write a function that opens a shell in a new frame. Doesn\\u0026#39;t sound too complicated, and surely isn\\u0026#39;t, but I don\\u0026#39;t get it to work properly. Any advice?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxrelm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Moostropfen\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxrelm/how_to_open_a_shell_in_a_new_frame/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxrelm/how_to_open_a_shell_in_a_new_frame/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605887289.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Year ago I asked: https://emacs.stackexchange.com/questions/53863/encrypt-excerpts-in-org-file-passwords-only\\n\\nToday I visited my `.netrc` file and passwords were hidden!\\n\\nSome reading of `auth-source.el` \\u0026 `reveal.el` and here it is:\\n\\n```\\n(defvar mypasshide-prefix-re \\\"^pass: *\\\")\\n\\n(defun mypasshide--toggle-display (overlay hide)\\n \\\"Hide or reveal region. Signature follows convention for\\n`reveal-toggle-invisible' from `reveal' mode.\\\"\\n (if hide\\n (overlay-put overlay 'display (propertize \\\"****\\\" 'face 'warning))\\n (overlay-put overlay 'display nil)))\\n\\n(defun mypasshide--hide ()\\n (save-excursion\\n (goto-char (point-min))\\n (while (re-search-forward mypasshide-prefix-re nil t)\\n (let* ((beg (match-end 0))\\n (end (line-end-position))\\n (overlay (make-overlay beg end)))\\n (mypasshide--toggle-display overlay t)\\n (overlay-put overlay 'reveal-toggle-invisible #'mypasshide--toggle-display)\\n ))))\\n\\n(define-minor-mode mypasshide-mode\\n \\\"Hide passwords after `mypasshide-prefix-re' and activate\\n`reveal-mode'. Disabling is not implemented.\\\"\\n :group 'reveal\\n (if mypasshide-mode\\n (progn\\n (mypasshide--hide)\\n (reveal-mode))))\\n\\n(provide 'mypasshide)\\n```\\n\\nWhy is it important? I manage credentials in `.org` files and sometimes they were revealed during screen sharing.\\n\\nIdeally I wanted for a password phrase:\\n\\n* to be encrypted\\n* copied into copy-buffer without displaying (like without `reveal-mode`) on C-Ins\\n\\nBut the original task of hiding passwords is solved. No more accidental leaks of passwords file during screen sharing sessions ))\", \"author_fullname\": \"t2_4mzdi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hiding passwords\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxr7cs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.75, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605915435.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYear ago I asked: \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/53863/encrypt-excerpts-in-org-file-passwords-only\\\"\\u003Ehttps://emacs.stackexchange.com/questions/53863/encrypt-excerpts-in-org-file-passwords-only\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EToday I visited my \\u003Ccode\\u003E.netrc\\u003C/code\\u003E file and passwords were hidden!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESome reading of \\u003Ccode\\u003Eauth-source.el\\u003C/code\\u003E \\u0026amp; \\u003Ccode\\u003Ereveal.el\\u003C/code\\u003E and here it is:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\n(defvar mypasshide-prefix-re \\u0026quot;\\u003Csup\\u003Epass:\\u003C/sup\\u003E *\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(defun mypasshide--toggle-display (overlay hide)\\n \\u0026quot;Hide or reveal region. Signature follows convention for\\n\\u003Ccode\\u003Ereveal-toggle-invisible\\u0026#39; from\\u003C/code\\u003Ereveal\\u0026#39; mode.\\u0026quot;\\n (if hide\\n (overlay-put overlay \\u0026#39;display (propertize \\u0026quot;****\\u0026quot; \\u0026#39;face \\u0026#39;warning))\\n (overlay-put overlay \\u0026#39;display nil)))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(defun mypasshide--hide ()\\n (save-excursion\\n (goto-char (point-min))\\n (while (re-search-forward mypasshide-prefix-re nil t)\\n (let* ((beg (match-end 0))\\n (end (line-end-position))\\n (overlay (make-overlay beg end)))\\n (mypasshide--toggle-display overlay t)\\n (overlay-put overlay \\u0026#39;reveal-toggle-invisible #\\u0026#39;mypasshide--toggle-display)\\n ))))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(define-minor-mode mypasshide-mode\\n \\u0026quot;Hide passwords after \\u003Ccode\\u003Emypasshide-prefix-re\\u0026#39; and activate\\n\\u003C/code\\u003Ereveal-mode\\u0026#39;. Disabling is not implemented.\\u0026quot;\\n :group \\u0026#39;reveal\\n (if mypasshide-mode\\n (progn\\n (mypasshide--hide)\\n (reveal-mode))))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(provide \\u0026#39;mypasshide)\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy is it important? I manage credentials in \\u003Ccode\\u003E.org\\u003C/code\\u003E files and sometimes they were revealed during screen sharing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIdeally I wanted for a password phrase:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Eto be encrypted\\u003C/li\\u003E\\n\\u003Cli\\u003Ecopied into copy-buffer without displaying (like without \\u003Ccode\\u003Ereveal-mode\\u003C/code\\u003E) on C-Ins\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EBut the original task of hiding passwords is solved. No more accidental leaks of passwords file during screen sharing sessions ))\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxr7cs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gavenkoa\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxr7cs/hiding_passwords/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxr7cs/hiding_passwords/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605886635.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am new to emacs (coming from Vim), trying the Doom version . Everything is excellent, love the looks, enjoy the multi windows, getting to know org-mode etc.\\n\\nThe only problem I have is related to **company** and it's auto completion. It doesn't work.\\n\\nI found issues related to my situation on the issue-tracker on github, but any advice over there didn't solve my issue.\\n\\nI followed the FAQ entry : How do I enable LSP support for \\u003Cinsert language here\\u003E . \\n\\nWhat am I missing ? Why doesn't it work?\\n\\nThanks\", \"author_fullname\": \"t2_1xof3onn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Doom] about autocomplete using company\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxqnjr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.9, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1605886072.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605913635.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am new to emacs (coming from Vim), trying the Doom version . Everything is excellent, love the looks, enjoy the multi windows, getting to know org-mode etc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe only problem I have is related to \\u003Cstrong\\u003Ecompany\\u003C/strong\\u003E and it\\u0026#39;s auto completion. It doesn\\u0026#39;t work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI found issues related to my situation on the issue-tracker on github, but any advice over there didn\\u0026#39;t solve my issue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI followed the FAQ entry : How do I enable LSP support for \\u0026lt;insert language here\\u0026gt; . \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat am I missing ? Why doesn\\u0026#39;t it work?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxqnjr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"shooki7\", \"discussion_type\": null, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxqnjr/doom_about_autocomplete_using_company/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxqnjr/doom_about_autocomplete_using_company/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605884835.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3fo5w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Desktop Environment #2 - Improving the EXWM Experience (LIVE 11/20, 9:15 am PST)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxqvgp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.99, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 60, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/9gfKrrTtyOk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 459, \"scrolling\": false, \"height\": 344}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Desktop Environment #2 - Improving the EXWM Experience\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 344, \"width\": 459, \"html\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/9gfKrrTtyOk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"System Crafters\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/9gfKrrTtyOk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCAiiOTio8Yu69c3XnR7nQBQ\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/9gfKrrTtyOk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 459, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/jxqvgp\", \"height\": 344}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 60, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1605914358.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://youtu.be/9gfKrrTtyOk\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxqvgp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"daviwil\", \"discussion_type\": null, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxqvgp/emacs_desktop_environment_2_improving_the_exwm/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/9gfKrrTtyOk\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605885558.0, \"num_crossposts\": 0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Desktop Environment #2 - Improving the EXWM Experience\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 344, \"width\": 459, \"html\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/9gfKrrTtyOk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"System Crafters\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/9gfKrrTtyOk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCAiiOTio8Yu69c3XnR7nQBQ\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As a clueless noob, I have 2 questions for the Emacs faithful.\\n\\n\\u0026#x200B;\\n\\nFor background, \\\"go run\\\" is a command that runs your Golang code and prints the result to the console.\\n\\n\\u0026#x200B;\\n\\nFirst question, I call \\\"go run\\\" through \\\"M-x compile\\\" and the result is printed in a special \\\\*compile\\\\* buffer which I cannot switch to using the keyboard doing a regular \\\"C-x o\\\". Does anyone know how to switch to that buffer so I can close it?\\n\\n\\u0026#x200B;\\n\\nSecond, the result of running code could make use of prettier printing by way of having some empty space between the \\\"go run\\\" command and the result. Let me explain the point by comparing the result obtained from Emacs to that of SpaceVim.\\n\\n\\u0026#x200B;\\n\\nEmacs:\\n\\n`-*- mode: compilation; default-directory: \\\"~\\\" -*-`\\n\\n`Compilation started at Fri Nov 20 17:03:21`\\n\\n\\u0026#x200B;\\n\\n`go run hello.go`\\n\\n`hello world`\\n\\n\\u0026#x200B;\\n\\n`Compilation finished at Fri Nov 20 17:03:21`\\n\\n\\u0026#x200B;\\n\\nSpaceVim:\\n\\n`[Running] go run hello.go`\\n\\n\\u0026#x200B;\\n\\n`--------------------`\\n\\n`hello world`\\n\\n\\u0026#x200B;\\n\\n`[Done] exited with code=0 in 0.559454 seconds`\\n\\n\\u0026#x200B;\\n\\nA result similar to that of SpaceVim can also be obtained in VSCode using the Code Runner plugin. Is there a plugin similar to VSCode's Code Runner for Emacs or is there any code I can add to the config file for obtaining a similar result to those obtained from SpaceVim or VSCode?\\n\\n\\u0026#x200B;\\n\\nMe and future noobs shall be grateful.\", \"author_fullname\": \"t2_8oruwha4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Making go run nice on Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxptf1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.56, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605910770.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a clueless noob, I have 2 questions for the Emacs faithful.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor background, \\u0026quot;go run\\u0026quot; is a command that runs your Golang code and prints the result to the console.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst question, I call \\u0026quot;go run\\u0026quot; through \\u0026quot;M-x compile\\u0026quot; and the result is printed in a special *compile* buffer which I cannot switch to using the keyboard doing a regular \\u0026quot;C-x o\\u0026quot;. Does anyone know how to switch to that buffer so I can close it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESecond, the result of running code could make use of prettier printing by way of having some empty space between the \\u0026quot;go run\\u0026quot; command and the result. Let me explain the point by comparing the result obtained from Emacs to that of SpaceVim.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmacs:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E-*- mode: compilation; default-directory: \\u0026quot;~\\u0026quot; -*-\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003ECompilation started at Fri Nov 20 17:03:21\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ego run hello.go\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ehello world\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003ECompilation finished at Fri Nov 20 17:03:21\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESpaceVim:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[Running] go run hello.go\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E--------------------\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ehello world\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[Done] exited with code=0 in 0.559454 seconds\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA result similar to that of SpaceVim can also be obtained in VSCode using the Code Runner plugin. Is there a plugin similar to VSCode\\u0026#39;s Code Runner for Emacs or is there any code I can add to the config file for obtaining a similar result to those obtained from SpaceVim or VSCode?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMe and future noobs shall be grateful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxptf1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"notablepanda\", \"discussion_type\": null, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxptf1/making_go_run_nice_on_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxptf1/making_go_run_nice_on_emacs/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605881970.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I was wondering if there's a way to change the theme per mode. While I prefer dark modes for code development, I prefer a light mode for writing prose. Is there a way to set something like, use always a dark mode but change it to a light mode for files with a certain extension?\", \"author_fullname\": \"t2_21ec\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Per mode Theme\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxou44\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605907000.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": true, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering if there\\u0026#39;s a way to change the theme per mode. While I prefer dark modes for code development, I prefer a light mode for writing prose. Is there a way to set something like, use always a dark mode but change it to a light mode for files with a certain extension?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxou44\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pmatos\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxou44/per_mode_theme/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxou44/per_mode_theme/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605878200.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I would like to know if it is possible to extend emacs in a way it would have to find or find/replace bars like in casual editors.\\n\\nPS:\\n\\nI know it is not very emac'ish but it is really important feature for me. As it is a common need to search for something that is stored in your copy buffer.\", \"author_fullname\": \"t2_t3w9t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"search bar\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxo86n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.3, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605904425.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to know if it is possible to extend emacs in a way it would have to find or find/replace bars like in casual editors.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know it is not very emac\\u0026#39;ish but it is really important feature for me. As it is a common need to search for something that is stored in your copy buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxo86n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"qazyll\", \"discussion_type\": null, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxo86n/search_bar/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxo86n/search_bar/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605875625.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_yr6y8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Highlighting yanked region using pulse.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxlsms\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 34, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 34, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1605891688.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"blog.meain.io\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://blog.meain.io/2020/emacs-highlight-yanked/\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxlsms\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"meain\", \"discussion_type\": null, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxlsms/highlighting_yanked_region_using_pulseel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://blog.meain.io/2020/emacs-highlight-yanked/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605862888.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, all. I use mu4e to view emails and smtpmail to send emails. I was wondering if the following things are possible:\\n\\n1. Scheduled send. I send an email but the recipient receives the email at whatever date and time I want. This is something that Gmail has.\\n2. Formatting text. I'm not aware of a way to send formatted text (e.g. bold, hyperlinks, italics) in the emails I send.\\n\\nThanks.\", \"author_fullname\": \"t2_ovpcw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Smtpmail formatting and schedule\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxi63x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605873882.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, all. I use mu4e to view emails and smtpmail to send emails. I was wondering if the following things are possible:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EScheduled send. I send an email but the recipient receives the email at whatever date and time I want. This is something that Gmail has.\\u003C/li\\u003E\\n\\u003Cli\\u003EFormatting text. I\\u0026#39;m not aware of a way to send formatted text (e.g. bold, hyperlinks, italics) in the emails I send.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxi63x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"FluentFelicity\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxi63x/smtpmail_formatting_and_schedule/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxi63x/smtpmail_formatting_and_schedule/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605845082.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"BLUF: On macOS, how can I tell emacs to expand \\\"\\\\~\\\" and \\\"$HOME\\\" to \\\"/Users/me\\\" instead of \\\"/home/me/\\\"?\\n\\n\\u0026#x200B;\\n\\nI have a .emacs (really, .spacemacs) file that I like. My computers run Ubuntu. Thanks to work, I now have to also use a Mac running macOS Catalina. I'd like to use the same .emacs, but unfortunately filename expansions fail because the lisp interpreter expands \\\"\\\\~\\\" to \\\"/home/me/\\\", regardless of system. Obviously this breaks the paths on macOS. Why is this happening and how can I fix it?\\n\\nEDIT: Fixed it, I was using my Ubuntu version of .spacemacs.env. Got rid of it and everything is working fine now.\", \"author_fullname\": \"t2_3u3iu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Home folder expansion in macOS gives /home/ instead of /Users/\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxhkri\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1605849114.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605871392.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBLUF: On macOS, how can I tell emacs to expand \\u0026quot;~\\u0026quot; and \\u0026quot;$HOME\\u0026quot; to \\u0026quot;/Users/me\\u0026quot; instead of \\u0026quot;/home/me/\\u0026quot;?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a .emacs (really, .spacemacs) file that I like. My computers run Ubuntu. Thanks to work, I now have to also use a Mac running macOS Catalina. I\\u0026#39;d like to use the same .emacs, but unfortunately filename expansions fail because the lisp interpreter expands \\u0026quot;~\\u0026quot; to \\u0026quot;/home/me/\\u0026quot;, regardless of system. Obviously this breaks the paths on macOS. Why is this happening and how can I fix it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Fixed it, I was using my Ubuntu version of .spacemacs.env. Got rid of it and everything is working fine now.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxhkri\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jondiced\", \"discussion_type\": null, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxhkri/home_folder_expansion_in_macos_gives_home_instead/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxhkri/home_folder_expansion_in_macos_gives_home_instead/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605842592.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Any advice? Why with all the custom, ergonomic keyboards out there am I finding it impossible to find a keyboard designed for Emacs-style usage with keycaps labeled as described here. (I know I can remap keys but I want at least these keys pre-labeled as desired):\\n\\nControl - to the left of the 'A' key\\n\\nEscape - directly above the TAB key, with the tilde and backtick directly above that\\n\\nMeta - to the left and right of the spacebar\\n\\nCan be used split in half or bonded together for as desired.\\n\\nI don't need Hyper and Super keys but I might use them if offered. Emacs and applications that use Emacs bindings continue to advance but it seems keyboard designers have left it behind or expect such users to contort their hands in undesirable ways. Just wondering if anyone can help.\", \"author_fullname\": \"t2_zxjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Want an Emacs-friendly keyboard\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxg2t0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1605852805.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605865496.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny advice? Why with all the custom, ergonomic keyboards out there am I finding it impossible to find a keyboard designed for Emacs-style usage with keycaps labeled as described here. (I know I can remap keys but I want at least these keys pre-labeled as desired):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EControl - to the left of the \\u0026#39;A\\u0026#39; key\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEscape - directly above the TAB key, with the tilde and backtick directly above that\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMeta - to the left and right of the spacebar\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECan be used split in half or bonded together for as desired.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t need Hyper and Super keys but I might use them if offered. Emacs and applications that use Emacs bindings continue to advance but it seems keyboard designers have left it behind or expect such users to contort their hands in undesirable ways. Just wondering if anyone can help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxg2t0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rswgnu\", \"discussion_type\": null, \"num_comments\": 39, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxg2t0/want_an_emacsfriendly_keyboard/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxg2t0/want_an_emacsfriendly_keyboard/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605836696.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi guys, I would your opinion about my workflow with org-roam, in particular with a new template to my notes. \\n\\nMy aim is to have cleaner links and to use all the power of `org-id.`\\n\\nI did this,\\n\\n (\\\"n\\\" \\\"note\\\" plain (function org-roam--capture-get-point)\\n \\\"%?\\\"\\n :file-name \\\"%\\u003C%Y%m%d%H%M%S\\u003E-${slug}\\\"\\n :head \\\":PROPERTIES:\\n :ID: %\\u003C%Y%m%d%H%M%S\\u003E\\n :END:\\n #+TITLE: ${title}\\n #+ROAM_KEY: %\\u003C%Y%m%d%H%M%S\\u003E\\n #+ROAM_ALIAS:\\n #+ROAM_TAGS:\\n Time-stamp: \\u003C\\u003E\\n \\\" :unnarrowed t :jump-to-captured t)\\n\\nThe main \\\"feature\\\" is that it uses the timestamp as `roam_key` and as property for `:ID:.`\\n\\nThis way my note are formatted as\\n\\n\\u0026#x200B;\\n\\n :PROPERTIES:\\n :ID: 20200625172419\\n :END:\\n #+TITLE: My note\\n #+ROAM_KEY: 20200625172419\\n #+ROAM_TAGS: \\n blah blah\\n\\nWith this template I can link the note as `[[id:20200625172419][My note]]`\\n\\nWhat do you think?\\n\\nIs it make sense or not?\", \"author_fullname\": \"t2_7dsjp6w5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Opinion for my org-roam template\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxf4pu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1605833317.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605861912.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys, I would your opinion about my workflow with org-roam, in particular with a new template to my notes. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy aim is to have cleaner links and to use all the power of \\u003Ccode\\u003Eorg-id.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did this,\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;n\\u0026quot; \\u0026quot;note\\u0026quot; plain (function org-roam--capture-get-point)\\n \\u0026quot;%?\\u0026quot;\\n :file-name \\u0026quot;%\\u0026lt;%Y%m%d%H%M%S\\u0026gt;-${slug}\\u0026quot;\\n :head \\u0026quot;:PROPERTIES:\\n:ID: %\\u0026lt;%Y%m%d%H%M%S\\u0026gt;\\n:END:\\n#+TITLE: ${title}\\n#+ROAM_KEY: %\\u0026lt;%Y%m%d%H%M%S\\u0026gt;\\n#+ROAM_ALIAS:\\n#+ROAM_TAGS:\\nTime-stamp: \\u0026lt;\\u0026gt;\\n\\u0026quot; :unnarrowed t :jump-to-captured t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe main \\u0026quot;feature\\u0026quot; is that it uses the timestamp as \\u003Ccode\\u003Eroam_key\\u003C/code\\u003E and as property for \\u003Ccode\\u003E:ID:.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis way my note are formatted as\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E:PROPERTIES:\\n:ID: 20200625172419\\n:END:\\n#+TITLE: My note\\n#+ROAM_KEY: 20200625172419\\n#+ROAM_TAGS: \\nblah blah\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith this template I can link the note as \\u003Ccode\\u003E[[id:20200625172419][My note]]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat do you think?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs it make sense or not?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxf4pu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mklsls\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxf4pu/opinion_for_my_orgroam_template/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxf4pu/opinion_for_my_orgroam_template/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605833112.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm not entirely sure how this happened but some of the org functions are no longer available in my emacs setup. I even tried updating to a newer org version 9.4.\\n\\nI'm using:\\n\\n GNU Emacs 26.2 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.22.30) of 2020-08-10.\\n\\nI'm now getting the following error on my code that used to work:\\n\\n Symbol\\u2019s function definition is void: org-table-convert-region\\n\\nSearching for the function with Ctrl-h f shows no entries starting with org-table.\\n\\nI have no idea how to start debugging this or if this has happened to anyone else.\\n\\nEdit: I went to the installation directory using which\\n\\n which emacs\\n\\nand going to\\n\\n /designtools/emacs_26.2/share/emacs/26.2/lisp/org/\\n\\nI can see the org-table.elc files among other org files. Opening org-table.elc I can see the functions that I can't use anymore.\\n\\nEdit: I saw I had a function called\\n\\n org-reload is an interactive autoloaded Lisp function in \\u2018org.el\\u2019.\\n \\n (org-reload \\u0026optional UNCOMPILED)\\n \\n Reload all Org Lisp files.\\n With prefix arg UNCOMPILED, load the uncompiled versions.\\n\\nI ran it and my functions appeared again? I have no idea why they wouldn't load automatically as it does not persist if I close and open emacs.\\n\\nFinal Edit:\\n\\nIt seems that now I need to put \\n\\n (require 'org)\\n\\nin my init file for all the required org functions to show up. It's not the worst of all things and it's somewhat clean.\", \"author_fullname\": \"t2_431l0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Some org functions have disappeared from my setup.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxe0xg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1606265990.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605857898.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not entirely sure how this happened but some of the org functions are no longer available in my emacs setup. I even tried updating to a newer org version 9.4.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EGNU Emacs 26.2 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.22.30) of 2020-08-10.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m now getting the following error on my code that used to work:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ESymbol\\u2019s function definition is void: org-table-convert-region\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESearching for the function with Ctrl-h f shows no entries starting with org-table.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have no idea how to start debugging this or if this has happened to anyone else.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: I went to the installation directory using which\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ewhich emacs\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eand going to\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E/designtools/emacs_26.2/share/emacs/26.2/lisp/org/\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI can see the org-table.elc files among other org files. Opening org-table.elc I can see the functions that I can\\u0026#39;t use anymore.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: I saw I had a function called\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eorg-reload is an interactive autoloaded Lisp function in \\u2018org.el\\u2019.\\n\\n(org-reload \\u0026amp;optional UNCOMPILED)\\n\\nReload all Org Lisp files.\\nWith prefix arg UNCOMPILED, load the uncompiled versions.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI ran it and my functions appeared again? I have no idea why they wouldn\\u0026#39;t load automatically as it does not persist if I close and open emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinal Edit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems that now I need to put \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;org)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ein my init file for all the required org functions to show up. It\\u0026#39;s not the worst of all things and it\\u0026#39;s somewhat clean.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxe0xg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DCL88\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxe0xg/some_org_functions_have_disappeared_from_my_setup/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxe0xg/some_org_functions_have_disappeared_from_my_setup/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605829098.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When I am working with `org-roam`, I want to ensure that the `*org-roam*` buffer is always present when I switch to a buffer with `org-mode` major mode. To achieve this I add a function activating the `*org-roam*` buffer to the `buffer-list-update-hook`. However, when doing so, I end up with a `Lisp nesting exceeds` error, and Emacs is unusable. What am I doing wrong here? \\n\\n (defun is-org-mode-p ()\\n (string= major-mode \\\"org-mode\\\"))\\n \\n (defun org-roam-buffer-on ()\\n (if (is-org-mode-p)\\n (org-roam-buffer-activate)\\n nil))\\n\\n (add-hook 'buffer-list-update-hook 'org-roam-buffer-on)\", \"author_fullname\": \"t2_jc7hp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Call function on switching buffer with specific major mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jxb31g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605848137.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I am working with \\u003Ccode\\u003Eorg-roam\\u003C/code\\u003E, I want to ensure that the \\u003Ccode\\u003E*org-roam*\\u003C/code\\u003E buffer is always present when I switch to a buffer with \\u003Ccode\\u003Eorg-mode\\u003C/code\\u003E major mode. To achieve this I add a function activating the \\u003Ccode\\u003E*org-roam*\\u003C/code\\u003E buffer to the \\u003Ccode\\u003Ebuffer-list-update-hook\\u003C/code\\u003E. However, when doing so, I end up with a \\u003Ccode\\u003ELisp nesting exceeds\\u003C/code\\u003E error, and Emacs is unusable. What am I doing wrong here? \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun is-org-mode-p ()\\n(string= major-mode \\u0026quot;org-mode\\u0026quot;))\\n\\n(defun org-roam-buffer-on ()\\n (if (is-org-mode-p)\\n (org-roam-buffer-activate)\\n nil))\\n\\n (add-hook \\u0026#39;buffer-list-update-hook \\u0026#39;org-roam-buffer-on)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jxb31g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"olmu1944\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jxb31g/call_function_on_switching_buffer_with_specific/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jxb31g/call_function_on_switching_buffer_with_specific/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605819337.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to do some stuff with regular expressions, and it's being a freaking nightmare. I wish there is some elisp library that simplifies it, because right now I feel very very limited.\\n\\nIf I want to search for a regex in the current buffer my best option is to use ***re-search-forward*** (or *re-search-backward*). This function allows me to search forward for the given regex, however when it finds a match, instead of returning its data, it just moves the cursor to the end of the match.\\n\\nTo really access the matched regex data I have to use save-excursion in order to prevent the cursor from moving, and then match-data to get the info of the last searched anything on emacs.\\n\\nSo I got this:\\n\\n (defun get-regex-data (regex)\\n (save-excursion (re-search-backward regex nil t 1))\\n (match-data))\\n\\nAnd now, when point is over the regex I want to find, instead of returning the relative to the buffer beginning and end of the match, it just returns my **current cursor position** (and the end of the match).\\n\\nSo, how do I get the real beginning of the matched regex?\\n\\nAnd why couldn't regex be like:\\n\\n (defun search regex (regex source \\u0026optional count limit)\\n \\\"Looks for the given regex in the given source and returns a list of results (Each result consisting in a list '(match-number matched-string beginning end)).\\n regex :: Regular expression to search.\\n source :: Source of text from where to search. It can be a string, a buffer or a file.\\n count :: If count is a positive number the search is done n times forward. If it's negative the search will be backwards. If it's 'f' it will search forward till the limit. If it's 'b' it will search backward till the limit. It defaults to 1.\\n limit :: If the search exceeds the number of characters specified on limit, it fill stop. It defaults to nil.\\n \\\")\\n\\nI could even do a library with this function myself. Shouldn't be difficult once I solve this issue.\\n\\n\\u0026#x200B;\\n\\n. . .\\n\\n. . .\\n\\n\\u0026#x200B;\\n\\n# Example\\n\\n (defun regex-search-test ()\\n (interactive)\\n (message\\n \\\"Forward: %s - Backward: %s\\\"\\n (funcall (lambda () (save-excursion (re-search-backward \\\"[a-zA-Z0-9]+\\\" nil t 1)) (match-string 0)))\\n (funcall (lambda () (save-excursion (re-search-forward \\\"[a-zA-Z0-9]+\\\" nil t 1)) (match-string 0)))))\\n \\n ;; Test zone:\\n ;; ****+++//%%%\\u0026\\u0026\\u0026 ABCDEFGH123456789 $$%%\\u00ac\\u00ac\\u00ac??\\u00bf\\u00bf\\n\\nThis little function will search backward and forward for every block of characters with letters and/or numbers. You can test it here: [https://regexr.com/](https://regexr.com/) \\\\- Regex: \\\\[a-zA-Z0-9\\\\]+\\n\\nIf you call it on the Test zone you will see that `re-search-backward` doesn't bother to find the start of the whole regex, instead it will stop searching as soon as it finds a match.\\n\\nThis is due to re-search-backward behavior. It doesn't *search backward*, in reality (I assume) it steps back 1 character and searches forward, until it finds a match.\\n\\n - Right now when I call regex-search-test here ( [] = cursor):\\n ****+++//%%%\\u0026\\u0026\\u0026 ABCDEFGH123456789 $$%[%]\\u00ac\\u00ac\\u00ac??\\u00bf\\u00bf\\n - I would like to get:\\n ABCDEFGH123456789\\n - Instead I get:\\n 9\\n \\n If re-search-backward were a mirror image of re-search-forward, it would be the way I want. Unfortunately, as the documentation says, this is not the case. So I'll try to do my own regex search with blackjack and hookers.\\n\\nDocumentation: [https://www.gnu.org/software/emacs/manual/html\\\\_node/elisp/Regexp-Search.html](https://www.gnu.org/software/emacs/manual/html_node/elisp/Regexp-Search.html)\", \"author_fullname\": \"t2_8fbrjlhy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I get the width of the next REGEX match? + Why are regex in elisp so frustrating?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jx6beh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.5, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": 1605877956.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605833600.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to do some stuff with regular expressions, and it\\u0026#39;s being a freaking nightmare. I wish there is some elisp library that simplifies it, because right now I feel very very limited.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I want to search for a regex in the current buffer my best option is to use \\u003Cstrong\\u003E\\u003Cem\\u003Ere-search-forward\\u003C/em\\u003E\\u003C/strong\\u003E (or \\u003Cem\\u003Ere-search-backward\\u003C/em\\u003E). This function allows me to search forward for the given regex, however when it finds a match, instead of returning its data, it just moves the cursor to the end of the match.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo really access the matched regex data I have to use save-excursion in order to prevent the cursor from moving, and then match-data to get the info of the last searched anything on emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I got this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun get-regex-data (regex)\\n (save-excursion (re-search-backward regex nil t 1))\\n (match-data))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnd now, when point is over the regex I want to find, instead of returning the relative to the buffer beginning and end of the match, it just returns my \\u003Cstrong\\u003Ecurrent cursor position\\u003C/strong\\u003E (and the end of the match).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, how do I get the real beginning of the matched regex?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd why couldn\\u0026#39;t regex be like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun search regex (regex source \\u0026amp;optional count limit)\\n\\u0026quot;Looks for the given regex in the given source and returns a list of results (Each result consisting in a list \\u0026#39;(match-number matched-string beginning end)).\\nregex :: Regular expression to search.\\nsource :: Source of text from where to search. It can be a string, a buffer or a file.\\ncount :: If count is a positive number the search is done n times forward. If it\\u0026#39;s negative the search will be backwards. If it\\u0026#39;s \\u0026#39;f\\u0026#39; it will search forward till the limit. If it\\u0026#39;s \\u0026#39;b\\u0026#39; it will search backward till the limit. It defaults to 1.\\nlimit :: If the search exceeds the number of characters specified on limit, it fill stop. It defaults to nil.\\n\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI could even do a library with this function myself. Shouldn\\u0026#39;t be difficult once I solve this issue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E. . .\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E. . .\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EExample\\u003C/h1\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun regex-search-test ()\\n (interactive)\\n (message\\n \\u0026quot;Forward: %s - Backward: %s\\u0026quot;\\n (funcall (lambda () (save-excursion (re-search-backward \\u0026quot;[a-zA-Z0-9]+\\u0026quot; nil t 1)) (match-string 0)))\\n (funcall (lambda () (save-excursion (re-search-forward \\u0026quot;[a-zA-Z0-9]+\\u0026quot; nil t 1)) (match-string 0)))))\\n\\n;; Test zone:\\n;; ****+++//%%%\\u0026amp;\\u0026amp;\\u0026amp; ABCDEFGH123456789 $$%%\\u00ac\\u00ac\\u00ac??\\u00bf\\u00bf\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis little function will search backward and forward for every block of characters with letters and/or numbers. You can test it here: \\u003Ca href=\\\"https://regexr.com/\\\"\\u003Ehttps://regexr.com/\\u003C/a\\u003E - Regex: [a-zA-Z0-9]+\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you call it on the Test zone you will see that \\u003Ccode\\u003Ere-search-backward\\u003C/code\\u003E doesn\\u0026#39;t bother to find the start of the whole regex, instead it will stop searching as soon as it finds a match.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is due to re-search-backward behavior. It doesn\\u0026#39;t \\u003Cem\\u003Esearch backward\\u003C/em\\u003E, in reality (I assume) it steps back 1 character and searches forward, until it finds a match.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E- Right now when I call regex-search-test here ( [] = cursor):\\n****+++//%%%\\u0026amp;\\u0026amp;\\u0026amp; ABCDEFGH123456789 $$%[%]\\u00ac\\u00ac\\u00ac??\\u00bf\\u00bf\\n- I would like to get:\\nABCDEFGH123456789\\n- Instead I get:\\n9\\n\\nIf re-search-backward were a mirror image of re-search-forward, it would be the way I want. Unfortunately, as the documentation says, this is not the case. So I\\u0026#39;ll try to do my own regex search with blackjack and hookers.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EDocumentation: \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/elisp/Regexp-Search.html\\\"\\u003Ehttps://www.gnu.org/software/emacs/manual/html_node/elisp/Regexp-Search.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jx6beh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ThisMousse5497\", \"discussion_type\": null, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jx6beh/how_can_i_get_the_width_of_the_next_regex_match/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jx6beh/how_can_i_get_the_width_of_the_next_regex_match/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605804800.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\\\\`Debugger entered--Lisp error: (error \\\"Command attempted to use minibuffer while in minibuffer\\\")\\\\`\\n\\nLOL\", \"author_fullname\": \"t2_5l50dztv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"`Debugger entered--Lisp error: (error \\\"Command attempted to use minibuffer while in minibuffer\\\")`\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jx3ia4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605824451.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E`Debugger entered--Lisp error: (error \\u0026quot;Command attempted to use minibuffer while in minibuffer\\u0026quot;)`\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELOL\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jx3ia4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"djrdjrdjrdjrdjr\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jx3ia4/debugger_enteredlisp_error_error_command/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jx3ia4/debugger_enteredlisp_error_error_command/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605795651.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"One of the advantages of email over forums is that if you subscribe and download regularly your client or mail server always has the full content, and with some mailing lists you can even retrieve content that existed before you subscribed to it.\\n\\nIt is not so with forums or reddits.\\n\\nIs the content of this subreddit archived somewhere on some \\\"official\\\" manner by some emacs users, or do we have to look at other archiving projects and hope that this subreddit is archived with them.\\n\\nAre there any estimates of the size of copy of r/emacs, both compressed and uncompressed?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What happens to the content of this subreddit if the company running Reddit decides to shutdown, close this subreddit or something else?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jx2uma\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605822009.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOne of the advantages of email over forums is that if you subscribe and download regularly your client or mail server always has the full content, and with some mailing lists you can even retrieve content that existed before you subscribed to it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is not so with forums or reddits.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs the content of this subreddit archived somewhere on some \\u0026quot;official\\u0026quot; manner by some emacs users, or do we have to look at other archiving projects and hope that this subreddit is archived with them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre there any estimates of the size of copy of \\u003Ca href=\\\"/r/emacs\\\"\\u003Er/emacs\\u003C/a\\u003E, both compressed and uncompressed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jx2uma\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"discussion_type\": null, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/jx2uma/what_happens_to_the_content_of_this_subreddit_if/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jx2uma/what_happens_to_the_content_of_this_subreddit_if/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605793209.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hullo again, I was recently using visual studio code, and really like the tab/shift-tab to increase/reduce code indentation.\\n\\nI looked at ways to replicate this in Emacs, but found I liked even more the default behaviour bound to tab. That is, the smart alignment detailed here: https://www.gnu.org/software/emacs/manual/html_node/emacs/Indentation.html\\n\\nI also found that shift-tab was interpreted as \\\"backtab\\\" but doesn't have anything bound to it.\\n\\nSo I'm wondering what people here are using for the \\\"increase and decrease indentation\\\" behaviour, what people are using backtab for, and in general what indentation tricks and plugins people are using.\\n\\nThank you for reading, and thank you a whole bunch if you reply!\\n\\n*I'm just a lowly DevOps person writing Terraform, Ansible, and JSON/YAML stuff. I am also looking at writing Python and JavaScript for AWS Lambda functions.*\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What are you all using to indent code?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"pink\", \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jx26f2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.81, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"emacs-fu\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1605819324.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHullo again, I was recently using visual studio code, and really like the tab/shift-tab to increase/reduce code indentation.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI looked at ways to replicate this in Emacs, but found I liked even more the default behaviour bound to tab. That is, the smart alignment detailed here: \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/emacs/Indentation.html\\\"\\u003Ehttps://www.gnu.org/software/emacs/manual/html_node/emacs/Indentation.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also found that shift-tab was interpreted as \\u0026quot;backtab\\u0026quot; but doesn\\u0026#39;t have anything bound to it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;m wondering what people here are using for the \\u0026quot;increase and decrease indentation\\u0026quot; behaviour, what people are using backtab for, and in general what indentation tricks and plugins people are using.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you for reading, and thank you a whole bunch if you reply!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EI\\u0026#39;m just a lowly DevOps person writing Terraform, Ansible, and JSON/YAML stuff. I am also looking at writing Python and JavaScript for AWS Lambda functions.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"b862c57e-6b8a-11e5-8194-0e1d3ee68d31\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Emacs+Org=Happy\", \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jx26f2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"discussion_type\": null, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/jx26f2/what_are_you_all_using_to_indent_code/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/jx26f2/what_are_you_all_using_to_indent_code/\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605790524.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_5w8cs1bi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Draco - Reddit thread to Org document\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jx11x5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.95, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 56, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 56, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"purple\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_5w8cs1bi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Draco - Reddit thread to Org document\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_jx1059\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.97, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 34, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 34, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1605813768.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"andinus.nand.sh\", \"allow_live_comments\": true, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://andinus.nand.sh/draco\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jx1059\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andinus\", \"discussion_type\": null, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/jx1059/draco_reddit_thread_to_org_document/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://andinus.nand.sh/draco\", \"subreddit_subscribers\": 12637, \"created_utc\": 1605784968.0, \"num_crossposts\": 1, \"media\": null, \"is_video\": false}], \"created\": 1605814028.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"andinus.nand.sh\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://andinus.nand.sh/draco\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"GNU Emacs\", \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"jx11x5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andinus\", \"discussion_type\": null, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_jx1059\", \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/jx11x5/draco_reddit_thread_to_org_document/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://andinus.nand.sh/draco\", \"subreddit_subscribers\": 46692, \"created_utc\": 1605785228.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_jx11x5\", \"before\": null}}"}, "headers": {"Connection": ["keep-alive"], "Content-Length": ["419510"], "Content-Type": ["application/json; charset=UTF-8"], "x-ua-compatible": ["IE=edge"], "x-frame-options": ["SAMEORIGIN"], "x-content-type-options": ["nosniff"], "x-xss-protection": ["1; mode=block"], "expires": ["-1"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate"], "x-ratelimit-remaining": ["595.0"], "x-ratelimit-used": ["5"], "x-ratelimit-reset": ["554"], "X-Moose": ["majestic"], "Accept-Ranges": ["bytes"], "Date": ["Wed, 25 Nov 2020 18:50:47 GMT"], "Via": ["1.1 varnish"], "Vary": ["accept-encoding"], "Set-Cookie": ["session_tracker=aigqdcjojippkqqagh.0.1606330246205.Z0FBQUFBQmZ2cWVIYmJHZVpoWUVTQklXVnVsLW1EWlAwSmNuaU14LVg0NEZoNkQ0QUkwYzRjelRYZjlHUnZBQjdKaGJ5Q0xVWjNXS3d2bXpIdFI1RmJFQndHM1VGcmxaTG9xd21pSHBPTUdpWGVIOE5XYU9sUFpCYnQwYjhHMWw1dnF0Rkh5eWRvT1Y; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 25-Nov-2020 20:50:47 GMT; secure; SameSite=None; Secure"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "Server": ["snooserv"]}, "status": {"code": 200, "message": "OK"}, "url": "https://oauth.reddit.com/r/emacs/new?limit=100&raw_json=1"}, "recorded_at": "2020-11-25T18:50:47"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["Linux:nnreddit:0.1.1 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.3.0"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "Connection": ["keep-alive"], "Authorization": ["bearer **********"], "Cookie": ["csv=1; edgebucket=EybcjNOfmh59xW6M7J; redesign_optout=true; session_tracker=aigqdcjojippkqqagh.0.1606330246205.Z0FBQUFBQmZ2cWVIYmJHZVpoWUVTQklXVnVsLW1EWlAwSmNuaU14LVg0NEZoNkQ0QUkwYzRjelRYZjlHUnZBQjdKaGJ5Q0xVWjNXS3d2bXpIdFI1RmJFQndHM1VGcmxaTG9xd21pSHBPTUdpWGVIOE5XYU9sUFpCYnQwYjhHMWw1dnF0Rkh5eWRvT1Y"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?before=t3_k0y52w&limit=100&raw_json=1"}, "response": {"body": {"encoding": "UTF-8", "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}"}, "headers": {"Connection": ["keep-alive"], "Content-Length": ["104"], "Content-Type": ["application/json; charset=UTF-8"], "x-ua-compatible": ["IE=edge"], "x-frame-options": ["SAMEORIGIN"], "x-content-type-options": ["nosniff"], "x-xss-protection": ["1; mode=block"], "expires": ["-1"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate"], "x-ratelimit-remaining": ["594.0"], "x-ratelimit-used": ["6"], "x-ratelimit-reset": ["553"], "X-Moose": ["majestic"], "Accept-Ranges": ["bytes"], "Date": ["Wed, 25 Nov 2020 18:50:47 GMT"], "Via": ["1.1 varnish"], "Set-Cookie": ["session_tracker=aigqdcjojippkqqagh.0.1606330247198.Z0FBQUFBQmZ2cWVIcUdqSG91Y0RzWmplVkxKYVVOclBKRTZDYVFCR2lKOGlsQ1kzZC01c2txR3hzcTYtbFQzZENOcndxTFFmYThzZDBxUndkRGhJRmZ2S1RsQWUxVThRSHF4eDlLenRqLXQwVzEwZFg2ZDBTOXVPdnpweXJBTDZkcW8wckRaRmlkZG0; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 25-Nov-2020 20:50:47 GMT; secure; SameSite=None; Secure"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "Server": ["snooserv"]}, "status": {"code": 200, "message": "OK"}, "url": "https://oauth.reddit.com/r/emacs/new?before=t3_k0y52w&limit=100&raw_json=1"}, "recorded_at": "2020-11-25T18:50:47"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["Linux:nnreddit:0.1.1 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.3.0"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "Connection": ["keep-alive"], "Authorization": ["bearer **********"], "Cookie": ["csv=1; edgebucket=EybcjNOfmh59xW6M7J; redesign_optout=true; session_tracker=aigqdcjojippkqqagh.0.1606330247198.Z0FBQUFBQmZ2cWVIcUdqSG91Y0RzWmplVkxKYVVOclBKRTZDYVFCR2lKOGlsQ1kzZC01c2txR3hzcTYtbFQzZENOcndxTFFmYThzZDBxUndkRGhJRmZ2S1RsQWUxVThRSHF4eDlLenRqLXQwVzEwZFg2ZDBTOXVPdnpweXJBTDZkcW8wckRaRmlkZG0"]}, "method": "GET", "uri": "https://oauth.reddit.com/message/unread/?mark=False&limit=100&raw_json=1"}, "response": {"body": {"encoding": "UTF-8", "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 2, \"children\": [{\"kind\": \"t1\", \"data\": {\"first_message\": null, \"first_message_name\": null, \"subreddit\": \"emacs\", \"likes\": null, \"replies\": \"\", \"id\": \"g2zd0zu\", \"subject\": \"post reply\", \"associated_awarding_id\": null, \"score\": 1, \"author\": \"Sevenstrangemelons\", \"num_comments\": 2, \"parent_id\": \"t3_igazje\", \"subreddit_name_prefixed\": \"r/emacs\", \"new\": true, \"type\": \"post_reply\", \"body\": \"Nice! I thought I was the only one who used emacs and rojo. This seems like a nice alternative to rojo\", \"link_title\": \"Roblox With Emacs\", \"dest\": \"nnreddit-user\", \"was_comment\": true, \"body_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice! I thought I was the only one who used emacs and rojo. This seems like a nice alternative to rojo\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"name\": \"t1_g2zd0zu\", \"created\": 1598524651.0, \"created_utc\": 1598495851.0, \"context\": \"/r/emacs/comments/igazje/roblox_with_emacs/g2zd0zu/?context=3\", \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"first_message\": null, \"first_message_name\": null, \"subreddit\": \"emacs\", \"likes\": null, \"replies\": \"\", \"id\": \"g2kkcv3\", \"subject\": \"post reply\", \"associated_awarding_id\": null, \"score\": 1, \"author\": \"gepheir6yoF\", \"num_comments\": 34, \"parent_id\": \"t3_fpbd1t\", \"subreddit_name_prefixed\": \"r/emacs\", \"new\": true, \"type\": \"post_reply\", \"body\": \"As someone who is now comfortably using Gnus, my number one tip about Gnus is, you have to understand Usenet. Gnus started as a newsreader and is still primarily a newsreader. It maps email concepts onto news concepts, so if you don't understand news, most of how Gnus works is going to be alien to you. Gnus was alien to me the first few times I tried it, and then I started using it only for reading news. After that, it was really easy adding email and now I use it full time.\", \"link_title\": \"Gnus, A Tough Sell\", \"dest\": \"nnreddit-user\", \"was_comment\": true, \"body_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs someone who is now comfortably using Gnus, my number one tip about Gnus is, you have to understand Usenet. Gnus started as a newsreader and is still primarily a newsreader. It maps email concepts onto news concepts, so if you don\\u0026#39;t understand news, most of how Gnus works is going to be alien to you. Gnus was alien to me the first few times I tried it, and then I started using it only for reading news. After that, it was really easy adding email and now I use it full time.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"name\": \"t1_g2kkcv3\", \"created\": 1598207745.0, \"created_utc\": 1598178945.0, \"context\": \"/r/emacs/comments/fpbd1t/gnus_a_tough_sell/g2kkcv3/?context=3\", \"distinguished\": null}}], \"after\": null, \"before\": null}}"}, "headers": {"Connection": ["keep-alive"], "Content-Length": ["2820"], "Content-Type": ["application/json; charset=UTF-8"], "x-ua-compatible": ["IE=edge"], "x-frame-options": ["SAMEORIGIN"], "x-content-type-options": ["nosniff"], "x-xss-protection": ["1; mode=block"], "expires": ["-1"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate"], "x-ratelimit-remaining": ["593.0"], "x-ratelimit-used": ["7"], "x-ratelimit-reset": ["553"], "X-Moose": ["majestic"], "Accept-Ranges": ["bytes"], "Date": ["Wed, 25 Nov 2020 18:50:47 GMT"], "Via": ["1.1 varnish"], "Vary": ["accept-encoding"], "Set-Cookie": ["session_tracker=aigqdcjojippkqqagh.0.1606330247464.Z0FBQUFBQmZ2cWVIeHdPQ1lMWndiWGthU0NvQVd3dTRtdmNzdTAyTjQ4NUlSNkw1OWlKQmZUajdnZ0wtYV81QzZ1ZFRiMkp3YW96a2FWejYyWm5UeVpnVjRlbDFkR3hpSUktcWc0ajRQSDZyenZzM1lnNWM3ZjMzQjAwWjBWZXVCOUs2MXJUb3NGWjM; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 25-Nov-2020 20:50:47 GMT; secure; SameSite=None; Secure"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "Server": ["snooserv"]}, "status": {"code": 200, "message": "OK"}, "url": "https://oauth.reddit.com/message/unread/?mark=False&limit=100&raw_json=1"}, "recorded_at": "2020-11-25T18:50:47"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["Linux:nnreddit:0.1.1 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.3.0"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "Connection": ["keep-alive"], "Authorization": ["bearer **********"], "Cookie": ["csv=1; edgebucket=EybcjNOfmh59xW6M7J; redesign_optout=true; session_tracker=aigqdcjojippkqqagh.0.1606330247464.Z0FBQUFBQmZ2cWVIeHdPQ1lMWndiWGthU0NvQVd3dTRtdmNzdTAyTjQ4NUlSNkw1OWlKQmZUajdnZ0wtYV81QzZ1ZFRiMkp3YW96a2FWejYyWm5UeVpnVjRlbDFkR3hpSUktcWc0ajRQSDZyenZzM1lnNWM3ZjMzQjAwWjBWZXVCOUs2MXJUb3NGWjM"]}, "method": "GET", "uri": "https://oauth.reddit.com/message/unread/?before=t1_g2zd0zu&mark=False&limit=100&raw_json=1"}, "response": {"body": {"encoding": "UTF-8", "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}"}, "headers": {"Connection": ["keep-alive"], "Content-Length": ["104"], "Content-Type": ["application/json; charset=UTF-8"], "x-ua-compatible": ["IE=edge"], "x-frame-options": ["SAMEORIGIN"], "x-content-type-options": ["nosniff"], "x-xss-protection": ["1; mode=block"], "expires": ["-1"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate"], "x-ratelimit-remaining": ["592.0"], "x-ratelimit-used": ["8"], "x-ratelimit-reset": ["553"], "X-Moose": ["majestic"], "Accept-Ranges": ["bytes"], "Date": ["Wed, 25 Nov 2020 18:50:47 GMT"], "Via": ["1.1 varnish"], "Set-Cookie": ["session_tracker=aigqdcjojippkqqagh.0.1606330247578.Z0FBQUFBQmZ2cWVIazVHdXhiOUhOZXJodkFCSGdzeTU0S0NJZ1dIblBIbEE1d2NaZndwY2g3Z2RvUzU1a0dTUnp1M0VSTllBNmtJQmdBaDRITUFrMkVnUEtleWswbjZGUG1hSDdnSEo1cy1nZktEaXI0bEdNRkVIT2x6QVRKMnNncmNaSi1ZQWU5dzU; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 25-Nov-2020 20:50:47 GMT; secure; SameSite=None; Secure"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "Server": ["snooserv"]}, "status": {"code": 200, "message": "OK"}, "url": "https://oauth.reddit.com/message/unread/?before=t1_g2zd0zu&mark=False&limit=100&raw_json=1"}, "recorded_at": "2020-11-25T18:50:47"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["Linux:nnreddit:0.1.1 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.3.0"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "Connection": ["keep-alive"], "Authorization": ["bearer **********"], "Cookie": ["csv=1; edgebucket=EybcjNOfmh59xW6M7J; redesign_optout=true; session_tracker=aigqdcjojippkqqagh.0.1606330247578.Z0FBQUFBQmZ2cWVIazVHdXhiOUhOZXJodkFCSGdzeTU0S0NJZ1dIblBIbEE1d2NaZndwY2g3Z2RvUzU1a0dTUnp1M0VSTllBNmtJQmdBaDRITUFrMkVnUEtleWswbjZGUG1hSDdnSEo1cy1nZktEaXI0bEdNRkVIT2x6QVRKMnNncmNaSi1ZQWU5dzU"]}, "method": "GET", "uri": "https://oauth.reddit.com/api/info/?id=t1_g2zd0zu&raw_json=1"}, "response": {"body": {"encoding": "UTF-8", "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_igazje\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"g2zd0zu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Sevenstrangemelons\", \"can_mod_post\": false, \"created_utc\": 1598495851.0, \"send_replies\": true, \"parent_id\": \"t3_igazje\", \"score\": 1, \"author_fullname\": \"t2_wwsxs\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Nice! I thought I was the only one who used emacs and rojo. This seems like a nice alternative to rojo\", \"awarders\": [], \"author_flair_css_class\": null, \"name\": \"t1_g2zd0zu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice! I thought I was the only one who used emacs and rojo. This seems like a nice alternative to rojo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/igazje/roblox_with_emacs/g2zd0zu/\", \"num_reports\": null, \"locked\": false, \"report_reasons\": null, \"created\": 1598524651.0, \"subreddit\": \"emacs\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": null, \"before\": null}}"}, "headers": {"Connection": ["keep-alive"], "Content-Length": ["1969"], "Content-Type": ["application/json; charset=UTF-8"], "x-ua-compatible": ["IE=edge"], "x-frame-options": ["SAMEORIGIN"], "x-content-type-options": ["nosniff"], "x-xss-protection": ["1; mode=block"], "expires": ["-1"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate"], "x-ratelimit-remaining": ["591.0"], "x-ratelimit-used": ["9"], "x-ratelimit-reset": ["553"], "X-Moose": ["majestic"], "Accept-Ranges": ["bytes"], "Date": ["Wed, 25 Nov 2020 18:50:47 GMT"], "Via": ["1.1 varnish"], "Vary": ["accept-encoding"], "Set-Cookie": ["session_tracker=aigqdcjojippkqqagh.0.1606330247839.Z0FBQUFBQmZ2cWVIeWEzSkoxNVNNUWdCcTU5UkxqZ01aNGVKdDctVUFuR2VJSWtlNzFRWXVFOGwtaHJKR3B1YnhTMDljMTFLdDR2QW9CNTFFQU5RYmN6LTJxTzNEV3NaUzZ5MzluOUZCVnM1bHlCeFZDSUlrSFBTamdIRThYZGZ3NXU0MEdhQ2tTTzY; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 25-Nov-2020 20:50:47 GMT; secure; SameSite=None; Secure"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "Server": ["snooserv"]}, "status": {"code": 200, "message": "OK"}, "url": "https://oauth.reddit.com/api/info/?id=t1_g2zd0zu&raw_json=1"}, "recorded_at": "2020-11-25T18:50:47"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["Linux:nnreddit:0.1.1 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.3.0"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "Connection": ["keep-alive"], "Authorization": ["bearer **********"], "Cookie": ["csv=1; edgebucket=EybcjNOfmh59xW6M7J; redesign_optout=true; session_tracker=aigqdcjojippkqqagh.0.1606330247839.Z0FBQUFBQmZ2cWVIeWEzSkoxNVNNUWdCcTU5UkxqZ01aNGVKdDctVUFuR2VJSWtlNzFRWXVFOGwtaHJKR3B1YnhTMDljMTFLdDR2QW9CNTFFQU5RYmN6LTJxTzNEV3NaUzZ5MzluOUZCVnM1bHlCeFZDSUlrSFBTamdIRThYZGZ3NXU0MEdhQ2tTTzY"]}, "method": "GET", "uri": "https://oauth.reddit.com/comments/igazje/?limit=2048&sort=best&raw_json=1"}, "response": {"body": {"encoding": "UTF-8", "string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Roblox With Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_igazje\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.7, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_3um52nx7\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1598386556.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/dickmao/rbxlx-env\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ytqRvJPLBukutTe5xF94BI_HSGZ49U08jS_on6HA1Ho.jpg?auto=webp\\u0026s=30646a346f87d89f6410c793254e30fd1c381013\", \"width\": 420, \"height\": 420}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ytqRvJPLBukutTe5xF94BI_HSGZ49U08jS_on6HA1Ho.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=808c2c187ac80c3a48fa35c04cc9c9c667291a44\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/ytqRvJPLBukutTe5xF94BI_HSGZ49U08jS_on6HA1Ho.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c64b1b8c6ea59e81081127fae54f6e60a670ebe9\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/ytqRvJPLBukutTe5xF94BI_HSGZ49U08jS_on6HA1Ho.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=445aef35945ac6a10ab4bfac8f2374413f413f85\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"j0TNn7T506ZzQaveMFeB8Zi7ok7WeYFMUtFaRXTGukk\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"igazje\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/igazje/roblox_with_emacs/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/dickmao/rbxlx-env\", \"subreddit_subscribers\": 46692, \"created_utc\": 1598357756.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_igazje\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"g2v060s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"alkalisun\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_igazje\", \"score\": 1, \"author_fullname\": \"t2_3kycs97i\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I ...\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI ...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/igazje/roblox_with_emacs/g2v060s/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_g2v060s\", \"created\": 1598430948.0, \"subreddit\": \"emacs\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1598402148.0, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_igazje\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"g2zd0zu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Sevenstrangemelons\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_igazje\", \"score\": 1, \"author_fullname\": \"t2_wwsxs\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Nice! I thought I was the only one who used emacs and rojo. This seems like a nice alternative to rojo\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice! I thought I was the only one who used emacs and rojo. This seems like a nice alternative to rojo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/igazje/roblox_with_emacs/g2zd0zu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_g2zd0zu\", \"created\": 1598524651.0, \"subreddit\": \"emacs\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1598495851.0, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]"}, "headers": {"Connection": ["keep-alive"], "Content-Length": ["7350"], "Content-Type": ["application/json; charset=UTF-8"], "x-ua-compatible": ["IE=edge"], "x-frame-options": ["SAMEORIGIN"], "x-content-type-options": ["nosniff"], "x-xss-protection": ["1; mode=block"], "expires": ["-1"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate"], "x-ratelimit-remaining": ["590.0"], "x-ratelimit-used": ["10"], "x-ratelimit-reset": ["553"], "X-Moose": ["majestic"], "Accept-Ranges": ["bytes"], "Date": ["Wed, 25 Nov 2020 18:50:48 GMT"], "Via": ["1.1 varnish"], "Vary": ["accept-encoding"], "Set-Cookie": ["session_tracker=aigqdcjojippkqqagh.0.1606330247973.Z0FBQUFBQmZ2cWVJRVhCRjMwaUtRSmdYS1lJakp6bnk4MUdZT05fdVBjZFBEQkJBLTEtaHRhbWhSUVBNV0RzNGQ3RjhmWGVTWlVOU0M1R3RBZzZyemd0a1hXWkJ4MHc3UVBJRTJ2dUt0MzJfSXJVUEgyeVdVVTFQV3hidk56Qnd6VXFTVTZvZlJMN1k; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 25-Nov-2020 20:50:48 GMT; secure; SameSite=None; Secure"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "Server": ["snooserv"]}, "status": {"code": 200, "message": "OK"}, "url": "https://oauth.reddit.com/comments/igazje/?limit=2048&sort=best&raw_json=1"}, "recorded_at": "2020-11-25T18:50:48"}], "recorded_with": "betamax/0.8.1"} \ No newline at end of file diff --git a/tests/cassettes/loose.json b/tests/cassettes/loose.json new file mode 100644 index 0000000..edbd899 --- /dev/null +++ b/tests/cassettes/loose.json @@ -0,0 +1 @@ +{"http_interactions": [{"request": {"body": {"string": "grant_type=refresh_token&refresh_token=**********", "encoding": "utf-8"}, "headers": {"Content-Length": ["79"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["**********"]}, "method": "POST", "uri": "https://www.reddit.com/api/v1/access_token"}, "response": {"body": {"string": "{\"access_token\": \"**********\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"edit history identity mysubreddits privatemessages read report save submit subscribe vote\"}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["206"], "x-xss-protection": ["1; mode=block"], "X-Cache": ["MISS"], "x-content-type-options": ["nosniff"], "Set-Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS; Domain=reddit.com; Max-Age=63071999; Path=/; secure"], "Accept-Ranges": ["bytes"], "X-Timer": ["S1560360200.528107,VS0,VE49"], "X-Served-By": ["cache-lga21931-LGA"], "X-Moose": ["majestic"], "Connection": ["keep-alive"], "Via": ["1.1 varnish"], "X-Cache-Hits": ["0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "cache-control": ["max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:19 GMT"], "x-frame-options": ["SAMEORIGIN"], "Server": ["snooserv"], "Content-Type": ["application/json; charset=UTF-8"]}, "status": {"message": "OK", "code": 200}, "url": "https://www.reddit.com/api/v1/access_token"}, "recorded_at": "2019-06-12T17:23:19"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 3, \"children\": [{\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"emacs\", \"header_img\": \"https://f.thumbs.redditmedia.com/1CBmBnoqVxNCXdVS.png\", \"title\": \"M-x emacs-reddit\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/emacs\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 30003, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2qhwu\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"The extensible, customizable, self-documenting real-time display editor.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA sub-reddit for the timeless and infinitely powerful editor. \\u003Ca href=\\\"http://emacsrocks.com/\\\"\\u003EWant to see what Emacs is capable of?!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGet Emacs\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://ftp.gnu.org/gnu/emacs/windows/\\\"\\u003EWindows\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://emacsformacosx.com/\\\"\\u003EMac OS X\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGNU/Linux and BSD (Just get it from your distribution\\u0026#39;s package manager)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.gnu.org/software/emacs/#Obtaining\\\"\\u003EBuild it from source\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Resources\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/\\\"\\u003EEmacs Wiki\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://wikemacs.org/\\\"\\u003EWikEmacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://emacs.zeef.com/ehartc\\\"\\u003EEmacs Reference\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://shop.oreilly.com/product/9780596006488.do\\\"\\u003ELearning GNU Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf\\\"\\u003EEmacs Reference Card\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026amp;restrict_sr=on\\u0026amp;sort=new\\u0026amp;t=all\\\"\\u003EWeekly tips/tricks/etc threads\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Tutorials\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/\\\"\\u003EBeginner\\u2019s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/\\\"\\u003EAbsolute Beginner\\u0026#39;s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/\\\"\\u003EHow to Learn Emacs: A Hand-drawn One-pager for Beginners\\n\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERelated Subreddits\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/orgmode\\\"\\u003Er/orgmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/evilmode\\\"\\u003Er/evilmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/spacemacs\\\"\\u003Er/spacemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/planetemacs\\\"\\u003Er/planetemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUseful Emacs configuration files and distributions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/technomancy/better-defaults\\\"\\u003EBetter Defaults\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick pain-saver tip\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/emacs/MovingTheCtrlKey\\\"\\u003EPut the Caps Lock key to better use!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": [152, 50], \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1210079411.0, \"wls\": 6, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe extensible, customizable, self-documenting real-time display editor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2qhwu\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"A sub-reddit for the timeless and infinitely powerful editor. [Want to see what Emacs is capable of?!](http://emacsrocks.com/)\\n\\n**Get Emacs**\\n\\n* [Windows](http://ftp.gnu.org/gnu/emacs/windows/)\\n* [Mac OS X](http://emacsformacosx.com/)\\n* GNU/Linux and BSD (Just get it from your distribution's package manager)\\n* [Build it from source] (http://www.gnu.org/software/emacs/#Obtaining)\\n\\n**Emacs Resources**\\n\\n* [Emacs Wiki](http://www.emacswiki.org/)\\n* [WikEmacs](http://wikemacs.org/)\\n* [Emacs Reference](https://emacs.zeef.com/ehartc)\\n* [Learning GNU Emacs](http://shop.oreilly.com/product/9780596006488.do)\\n* [Emacs Reference Card](https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf)\\n* [Weekly tips/tricks/etc threads](/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026restrict_sr=on\\u0026sort=new\\u0026t=all)\\n\\n**Emacs Tutorials**\\n\\n* [Beginner\\u2019s Guide to Emacs](http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/)\\n* [Absolute Beginner's Guide to Emacs](http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/)\\n* [How to Learn Emacs: A Hand-drawn One-pager for Beginners\\n](http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/)\\n\\n**Related Subreddits**\\n\\n* r/orgmode\\n* r/evilmode\\n* r/spacemacs\\n* r/planetemacs\\n\\n**Useful Emacs configuration files and distributions**\\n\\n* [Better Defaults](https://github.com/technomancy/better-defaults)\\n\\n**Quick pain-saver tip**\\n\\n* [Put the Caps Lock key to better use!](http://www.emacswiki.org/emacs/MovingTheCtrlKey)\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": \"all_ads\", \"url\": \"/r/emacs/\", \"created_utc\": 1210050611.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": true, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"orgmode\", \"header_img\": null, \"title\": \"Org-mode\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/orgmode\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 4808, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2s5ak\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"[Org-mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EAbout Org mode\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EResources\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://orgmode.org/#docs\\\"\\u003EOfficial Documentation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/worg/\\\"\\u003ECommunity Documentation (Worg)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/guide/\\\"\\u003ECompact Org-mode Guide\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://lists.gnu.org/archive/html/emacs-orgmode/\\\"\\u003EOfficial Mailing list\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EIRC Channel: #org-mode on \\u003Ca href=\\\"http://freenode.net/\\\"\\u003EFreenode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMatrix: \\u003Ca href=\\\"https://matrix.to/#/#org-mode:matrix.org\\\"\\u003E#org-mode:matrix.org\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003ERelated Subreddits\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1287182517.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg-mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2s5ak\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"# About Org mode\\n\\n[Org mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\n\\n# Resources\\n\\n* [Official Documentation](http://orgmode.org/#docs)\\n* [Community Documentation (Worg)](https://orgmode.org/worg/)\\n* [Compact Org-mode Guide](https://orgmode.org/guide/)\\n* [Official Mailing list](http://lists.gnu.org/archive/html/emacs-orgmode/)\\n* IRC Channel: #org-mode on [Freenode](http://freenode.net/)\\n* Matrix: [#org-mode:matrix.org](https://matrix.to/#/#org-mode:matrix.org)\\n\\n# Related Subreddits\\n\\n* /r/emacs\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/orgmode/\", \"created_utc\": 1287153717.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"PostPreview\", \"header_img\": null, \"title\": \"Preview your Reddit posts\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/PostPreview\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 709, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2waml\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"A place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWhat this is\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAllowed posts\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYou can post whatever and however much you\\u0026#39;d like here, \\u003Cstrong\\u003Eas long as it conforms to \\u003Ca href=\\\"http://www.reddit.com/rules\\\"\\u003Ereddiquette\\u003C/a\\u003E\\u003C/strong\\u003E (eg. NO personal info, no alt accounts, etc). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPlease\\u003C/strong\\u003E utilize the Report button for content you feel breaks these rules, we can\\u0026#39;t sift through EVERYTHING, so your help is greatly appreciated.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpam filter\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESome posts/comments may be auto-rejected by Reddit\\u0026#39;s spam filter, despite the threshold set to \\u0026quot;Minimal\\u0026quot; here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you don\\u0026#39;t see you post show up, it\\u0026#39;s likely it got rejected. Message the mod mail and we can override it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHave fun previewing!\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"#24a0ed\", \"can_assign_user_flair\": true, \"created\": 1360563027.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": \"Try a text post!\", \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": \"confidence\", \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": true, \"id\": \"2waml\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"**What this is** \\n\\u003E A place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\n \\n**Allowed posts**\\n\\u003E You can post whatever and however much you'd like here, **as long as it conforms to [reddiquette](http://www.reddit.com/rules)** (eg. NO personal info, no alt accounts, etc). \\n\\u003E \\n\\u003E **Please** utilize the Report button for content you feel breaks these rules, we can't sift through EVERYTHING, so your help is greatly appreciated.\\n \\n**Spam filter** \\n\\u003E Some posts/comments may be auto-rejected by Reddit's spam filter, despite the threshold set to \\\"Minimal\\\" here. \\n\\u003E \\n\\u003E If you don't see you post show up, it's likely it got rejected. Message the mod mail and we can override it.\\n\\n**Have fun previewing!**\\n\\n \\n \", \"submit_link_label\": \"Test out a link!\", \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/PostPreview/\", \"created_utc\": 1360534227.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["18143"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:19 GMT"], "x-ratelimit-remaining": ["599.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["1"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360200.636427,VS0,VE160"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["401"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "recorded_at": "2019-06-12T17:23:19"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_by28x5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwo359\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hakanserce\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1560359466.0, \"send_replies\": true, \"parent_id\": \"t1_eqvlazf\", \"score\": 1, \"author_fullname\": \"t2_135uwum\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sure, here are some of the issues I have seen:\\n - While trying M-RET on {C-u C-p} (included within hyperbole Demo as well) , I got an error complaining about missing closing paren (I don\\u2019t remember the exact error message)\\n - Documentation says Hyperbole can recognize urls without the prefix \\u201chttp://\\u201c, etc. But it doesn\\u2019t work without that for me. Example, http://google.com works but google.com doesn\\u2019t work.\\n - Implicit buttons like facebook@user works only if cursor is on specific locations of the string. It doesn\\u2019t work for instance if it is after @ symbol.\\n\\nI was hoping to develop my own implicit buttons, but seeing these potential issues/limitations made me question that :(\\n\\n\\nThanks,\\nHakan\", \"link_title\": \"My GNU Hyperbole Vision Quest; or, Jupiter and Beyond the Infinite\", \"author_flair_css_class\": null, \"name\": \"t1_eqwo359\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESure, here are some of the issues I have seen:\\n - While trying M-RET on {C-u C-p} (included within hyperbole Demo as well) , I got an error complaining about missing closing paren (I don\\u2019t remember the exact error message)\\n - Documentation says Hyperbole can recognize urls without the prefix \\u201chttp://\\u201c, etc. But it doesn\\u2019t work without that for me. Example, \\u003Ca href=\\\"http://google.com\\\"\\u003Ehttp://google.com\\u003C/a\\u003E works but google.com doesn\\u2019t work.\\n - Implicit buttons like facebook@user works only if cursor is on specific locations of the string. It doesn\\u2019t work for instance if it is after @ symbol.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was hoping to develop my own implicit buttons, but seeing these potential issues/limitations made me question that :(\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks,\\nHakan\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/eqwo359/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/\", \"report_reasons\": null, \"link_author\": \"sugarbridalsentry\", \"author_flair_text\": null, \"link_url\": \"https://github.com/termitereform/JunkPile/blob/master/HyperboleNotes.org\", \"created\": 1560388266.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzt74m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwk149\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"andreyorst\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560358031.0, \"send_replies\": true, \"parent_id\": \"t3_bzt74m\", \"score\": 1, \"author_fullname\": \"t2_w7w9e32\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Not exactly that, but imenu-list may be used for something like that\", \"link_title\": \"Preview for imenu\", \"author_flair_css_class\": null, \"name\": \"t1_eqwk149\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot exactly that, but imenu-list may be used for something like that\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzt74m/preview_for_imenu/eqwk149/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzt74m/preview_for_imenu/\", \"report_reasons\": null, \"link_author\": \"NAb_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzt74m/preview_for_imenu/\", \"created\": 1560386831.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_by28x5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwjwi6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1560357980.0, \"send_replies\": true, \"parent_id\": \"t1_eqvon1u\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes, redone quickly now before responding. I found implicit buttons nice for some paths\\nthat, for instance, are not automatically recognized by org or some other current major\\nmode, nice the C-c / default web search bind, etc\\n\\nThere are thing that capture my attention and interest, but I still not found a way to\\nuse it in practice. They give \\\"WOW effect\\\", for my knowledge of Emacs Hyperbole is \\ncertainly a damn nice piece of lisp. But in daily use I still miss its value...\", \"link_title\": \"My GNU Hyperbole Vision Quest; or, Jupiter and Beyond the Infinite\", \"author_flair_css_class\": null, \"name\": \"t1_eqwjwi6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, redone quickly now before responding. I found implicit buttons nice for some paths\\nthat, for instance, are not automatically recognized by org or some other current major\\nmode, nice the C-c / default web search bind, etc\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere are thing that capture my attention and interest, but I still not found a way to\\nuse it in practice. They give \\u0026quot;WOW effect\\u0026quot;, for my knowledge of Emacs Hyperbole is \\ncertainly a damn nice piece of lisp. But in daily use I still miss its value...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/eqwjwi6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/\", \"report_reasons\": null, \"link_author\": \"sugarbridalsentry\", \"author_flair_text\": null, \"link_url\": \"https://github.com/termitereform/JunkPile/blob/master/HyperboleNotes.org\", \"created\": 1560386780.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzrkyu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwicdt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Quick_A_Distraction\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1560357439.0, \"send_replies\": true, \"parent_id\": \"t3_bzrkyu\", \"score\": 1, \"author_fullname\": \"t2_62bnf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Is that cyberpunk theme?\", \"link_title\": \"How can I change the background colour of which-key / which-key posframe\", \"author_flair_css_class\": null, \"name\": \"t1_eqwicdt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs that cyberpunk theme?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzrkyu/how_can_i_change_the_background_colour_of/eqwicdt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzrkyu/how_can_i_change_the_background_colour_of/\", \"report_reasons\": null, \"link_author\": \"xircon\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/faop1bv9mx331.png\", \"created\": 1560386239.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwh74q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vale_fallacia\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1560357046.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 1, \"author_fullname\": \"t2_2al88q3x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Here's a curated list of open source typefaces: https://beautifulwebtype.com/\\n\\nI personally use Source Code Pro\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eqwh74q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s a curated list of open source typefaces: \\u003Ca href=\\\"https://beautifulwebtype.com/\\\"\\u003Ehttps://beautifulwebtype.com/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI personally use Source Code Pro\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eqwh74q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1560385846.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzrkyu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwgdqz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"00-11\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1560356775.0, \"send_replies\": true, \"parent_id\": \"t1_eqw2d7y\", \"score\": 1, \"author_fullname\": \"t2_3upsyt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"`C-u C-x =` tells you about the faces at point (text properties and overlays). For cases where that's not helpful you can use `M-x list-faces-display` - usually you can easily guess, if this more than one face that appears the same or similar.\\n\\nThe place to look first is Emacs itself - *ask Emacs*. Most of the time you won't need Reddit or Stack* to get answers to questions like this. And asking Emacs really helps you learn more than just the answer to a question - it helps you learn how to ask Emacs (!), including in deeper and deeper ways.\", \"link_title\": \"How can I change the background colour of which-key / which-key posframe\", \"author_flair_css_class\": null, \"name\": \"t1_eqwgdqz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003EC-u C-x =\\u003C/code\\u003E tells you about the faces at point (text properties and overlays). For cases where that\\u0026#39;s not helpful you can use \\u003Ccode\\u003EM-x list-faces-display\\u003C/code\\u003E - usually you can easily guess, if this more than one face that appears the same or similar.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe place to look first is Emacs itself - \\u003Cem\\u003Eask Emacs\\u003C/em\\u003E. Most of the time you won\\u0026#39;t need Reddit or Stack* to get answers to questions like this. And asking Emacs really helps you learn more than just the answer to a question - it helps you learn how to ask Emacs (!), including in deeper and deeper ways.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzrkyu/how_can_i_change_the_background_colour_of/eqwgdqz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzrkyu/how_can_i_change_the_background_colour_of/\", \"report_reasons\": null, \"link_author\": \"xircon\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/faop1bv9mx331.png\", \"created\": 1560385575.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz2uob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwg3n7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"FuriousHandRubbing\", \"num_comments\": 69, \"can_mod_post\": false, \"created_utc\": 1560356688.0, \"send_replies\": true, \"parent_id\": \"t1_equvkgh\", \"score\": 1, \"author_fullname\": \"t2_13irho0h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Normal computer mice have never been an RSI issue for me, but touchpads are. But then again who wants to carry a computer mouse around with them all the time? Better to stick with the keyboard.\", \"link_title\": \"Do people find emacs's bindings inferior to vim's?\", \"author_flair_css_class\": null, \"name\": \"t1_eqwg3n7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENormal computer mice have never been an RSI issue for me, but touchpads are. But then again who wants to carry a computer mouse around with them all the time? Better to stick with the keyboard.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/eqwg3n7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"report_reasons\": null, \"link_author\": \"forppinrange\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"created\": 1560385488.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz2uob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwfutp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"FuriousHandRubbing\", \"num_comments\": 69, \"can_mod_post\": false, \"created_utc\": 1560356611.0, \"send_replies\": true, \"parent_id\": \"t1_eqsl0t0\", \"score\": 1, \"author_fullname\": \"t2_13irho0h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"My suspicion is that chording in particular is an aggrevater of RSI, as is anything else that requires moving your hand while also applying pressure with it (e.g. pressing down control with your pinky then moving the same hand so that your middle or index finger can press another key simultaneously. Beyond emacs, I find this is also a problem with macbook style touchpads, specifically dragging/dropping with them. Keeping pressure with one finger while moving with it or another finger absolutely destroys me. For this reason games like OpenTTD are only viable if I have a real mouse available.\\n\\nI would therefore suspect that god-mode eliminates the RSI threat posed by emacs. I've not tried this though, it's not worth the risk. I already know that vim/evil is safe for me, so I'm not willing to try something that *might* not be safe.\", \"link_title\": \"Do people find emacs's bindings inferior to vim's?\", \"author_flair_css_class\": null, \"name\": \"t1_eqwfutp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy suspicion is that chording in particular is an aggrevater of RSI, as is anything else that requires moving your hand while also applying pressure with it (e.g. pressing down control with your pinky then moving the same hand so that your middle or index finger can press another key simultaneously. Beyond emacs, I find this is also a problem with macbook style touchpads, specifically dragging/dropping with them. Keeping pressure with one finger while moving with it or another finger absolutely destroys me. For this reason games like OpenTTD are only viable if I have a real mouse available.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would therefore suspect that god-mode eliminates the RSI threat posed by emacs. I\\u0026#39;ve not tried this though, it\\u0026#39;s not worth the risk. I already know that vim/evil is safe for me, so I\\u0026#39;m not willing to try something that \\u003Cem\\u003Emight\\u003C/em\\u003E not be safe.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/eqwfutp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"report_reasons\": null, \"link_author\": \"forppinrange\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"created\": 1560385411.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzjx6j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwedj2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"w0wt1p\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560356152.0, \"send_replies\": true, \"parent_id\": \"t1_eqvqrmh\", \"score\": 1, \"author_fullname\": \"t2_4rfi7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Tried pandoc Tex \\u003E\\u003E Org on the gnu emacs ref card sources, but no luck. To much hands on post-work.\\n\\nBut it seems pretty straight forward copy/yanking from PDF to org and then scripting most of the formatting.\\n\\nWonder if it would be ok posting final org files on a public GitHub repo? Copyright / license wise...\", \"link_title\": \"Managing \\\"cheatsheets\\\" and other documentation in emacs or org?\", \"author_flair_css_class\": null, \"name\": \"t1_eqwedj2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETried pandoc Tex \\u0026gt;\\u0026gt; Org on the gnu emacs ref card sources, but no luck. To much hands on post-work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut it seems pretty straight forward copy/yanking from PDF to org and then scripting most of the formatting.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWonder if it would be ok posting final org files on a public GitHub repo? Copyright / license wise...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/eqwedj2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"report_reasons\": null, \"link_author\": \"Jyan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"created\": 1560384952.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz2uob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwdt4y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"FuriousHandRubbing\", \"num_comments\": 69, \"can_mod_post\": false, \"created_utc\": 1560355973.0, \"send_replies\": true, \"parent_id\": \"t3_bz2uob\", \"score\": 1, \"author_fullname\": \"t2_13irho0h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Put it this way. Evil mode is a lot more popular than whatever emacs-emulation layer might exist for vim.\", \"link_title\": \"Do people find emacs's bindings inferior to vim's?\", \"author_flair_css_class\": null, \"name\": \"t1_eqwdt4y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPut it this way. Evil mode is a lot more popular than whatever emacs-emulation layer might exist for vim.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/eqwdt4y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"report_reasons\": null, \"link_author\": \"forppinrange\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"created\": 1560384773.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_b5uvgw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwb3j7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"midwestcsstudent\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1560355124.0, \"send_replies\": true, \"parent_id\": \"t1_ejk6qym\", \"score\": 1, \"author_fullname\": \"t2_12xcn3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003EGit, with auto-commit installed. It does a push on every save for files that have the correct header line.\\n\\nWhat auto-commit do you use? Been trying to look for it but there seem to be many small projects yet no universally used one\", \"link_title\": \"How do you sync your org-mode files nowadays\\u200b?\", \"author_flair_css_class\": null, \"name\": \"t1_eqwb3j7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EGit, with auto-commit installed. It does a push on every save for files that have the correct header line.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhat auto-commit do you use? Been trying to look for it but there seem to be many small projects yet no universally used one\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/b5uvgw/how_do_you_sync_your_orgmode_files_nowadays/eqwb3j7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/b5uvgw/how_do_you_sync_your_orgmode_files_nowadays/\", \"report_reasons\": null, \"link_author\": \"divenvrsk\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/b5uvgw/how_do_you_sync_your_orgmode_files_nowadays/\", \"created\": 1560383924.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzmvrz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqw9nx3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gnuvince\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560354669.0, \"send_replies\": true, \"parent_id\": \"t1_eqtwmv3\", \"score\": 1, \"author_fullname\": \"t2_1s0v\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That looks like Meslo LG.\", \"link_title\": \"naysayer-theme.el: Emacs theme inspired by Jonathan Blow's livestreams\", \"author_flair_css_class\": null, \"name\": \"t1_eqw9nx3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat looks like Meslo LG.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzmvrz/naysayerthemeel_emacs_theme_inspired_by_jonathan/eqw9nx3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzmvrz/naysayerthemeel_emacs_theme_inspired_by_jonathan/\", \"report_reasons\": null, \"link_author\": \"twenty393\", \"author_flair_text\": null, \"link_url\": \"https://github.com/nickav/naysayer-theme.el\", \"created\": 1560383469.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzjx6j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqw6paq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vale_fallacia\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560353728.0, \"send_replies\": true, \"parent_id\": \"t3_bzjx6j\", \"score\": 1, \"author_fullname\": \"t2_2al88q3x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There was this thread a while back:\\n\\nhttps://www.reddit.com/r/emacs/comments/bv5e7k/easily_making_cheatsheets_with_orgmode/\\n\\nThat might be useful.\", \"link_title\": \"Managing \\\"cheatsheets\\\" and other documentation in emacs or org?\", \"author_flair_css_class\": null, \"name\": \"t1_eqw6paq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere was this thread a while back:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/bv5e7k/easily_making_cheatsheets_with_orgmode/\\\"\\u003Ehttps://www.reddit.com/r/emacs/comments/bv5e7k/easily_making_cheatsheets_with_orgmode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat might be useful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/eqw6paq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"report_reasons\": null, \"link_author\": \"Jyan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"created\": 1560382528.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560358418.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzmvrz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqw4ijt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clojure-noob\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560353051.0, \"send_replies\": true, \"parent_id\": \"t3_bzmvrz\", \"score\": 3, \"author_fullname\": \"t2_3w29qs3c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"He also uses just stock emacs, no third party packages and almost no customization, yet he is still incredibly productive ;)\\n\\nSometimes we just get too much hang up on our tools.\", \"link_title\": \"naysayer-theme.el: Emacs theme inspired by Jonathan Blow's livestreams\", \"author_flair_css_class\": null, \"name\": \"t1_eqw4ijt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe also uses just stock emacs, no third party packages and almost no customization, yet he is still incredibly productive ;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESometimes we just get too much hang up on our tools.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzmvrz/naysayerthemeel_emacs_theme_inspired_by_jonathan/eqw4ijt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzmvrz/naysayerthemeel_emacs_theme_inspired_by_jonathan/\", \"report_reasons\": null, \"link_author\": \"twenty393\", \"author_flair_text\": null, \"link_url\": \"https://github.com/nickav/naysayer-theme.el\", \"created\": 1560381851.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzrkyu\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqw2d7y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1560352378.0, \"send_replies\": true, \"parent_id\": \"t1_eqvzwfc\", \"score\": 1, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thankyou, been looking (in all the wrong places).\", \"link_title\": \"How can I change the background colour of which-key / which-key posframe\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eqw2d7y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThankyou, been looking (in all the wrong places).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzrkyu/how_can_i_change_the_background_colour_of/eqw2d7y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzrkyu/how_can_i_change_the_background_colour_of/\", \"report_reasons\": null, \"link_author\": \"xircon\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://i.redd.it/faop1bv9mx331.png\", \"created\": 1560381178.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqw0czc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560351734.0, \"send_replies\": true, \"parent_id\": \"t1_eqvubh5\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I know, but see no point in trying to bend Spacemacs when I can create my Emacs with\\nfar less work...\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqw0czc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know, but see no point in trying to bend Spacemacs when I can create my Emacs with\\nfar less work...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqw0czc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560380534.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqw04om\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560351659.0, \"send_replies\": true, \"parent_id\": \"t1_eqvwlvz\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Did you miss something in Emacs packages? Did you read The Mythical Man-month?\\n\\nHaving tons of newcomers that keep asking \\\"why not rewrite Emacs in $language\\\" or \\n\\\"why not use js instead of elisp\\\" is useful only to have tons of crap. Did you know\\nfor instance Google Play compared to classic distro repositories? There are normally\\nmore \\\"apps\\\" on Google Play than the richest distro. Only 90+% of them are crap used\\nonly for advertisement or malware.\\n\\nVSCode is an editor, Emacs is an operating environment. Emacs can even run VSCode if\\nyou with so. Comparing them it's a nonsense. It's like saying \\\"hey Microsoft World is\\nmore popular than FreeBSD!\\\". I repeat: recently Emacs, zsh and other small tools gain\\ntraction because people are tired by modern crapps and try to rediscover and modernize\\nclassic tools. Did you see how many new \\\"famous Emacs configs\\\" appear recently? Did you\\nsee the success of thing like Oh-my-zsh? Did you see how many power users ditch classic\\nDEs to minimal or tiling WMs?\\n\\nOf course that's for power users, dummy people do not even know such things exists and\\nthat's normal.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqw04om\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDid you miss something in Emacs packages? Did you read The Mythical Man-month?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHaving tons of newcomers that keep asking \\u0026quot;why not rewrite Emacs in $language\\u0026quot; or \\n\\u0026quot;why not use js instead of elisp\\u0026quot; is useful only to have tons of crap. Did you know\\nfor instance Google Play compared to classic distro repositories? There are normally\\nmore \\u0026quot;apps\\u0026quot; on Google Play than the richest distro. Only 90+% of them are crap used\\nonly for advertisement or malware.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVSCode is an editor, Emacs is an operating environment. Emacs can even run VSCode if\\nyou with so. Comparing them it\\u0026#39;s a nonsense. It\\u0026#39;s like saying \\u0026quot;hey Microsoft World is\\nmore popular than FreeBSD!\\u0026quot;. I repeat: recently Emacs, zsh and other small tools gain\\ntraction because people are tired by modern crapps and try to rediscover and modernize\\nclassic tools. Did you see how many new \\u0026quot;famous Emacs configs\\u0026quot; appear recently? Did you\\nsee the success of thing like Oh-my-zsh? Did you see how many power users ditch classic\\nDEs to minimal or tiling WMs?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course that\\u0026#39;s for power users, dummy people do not even know such things exists and\\nthat\\u0026#39;s normal.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqw04om/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560380459.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzrkyu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvzwfc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yanghaoxie\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1560351583.0, \"send_replies\": true, \"parent_id\": \"t3_bzrkyu\", \"score\": 1, \"author_fullname\": \"t2_yophh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Check face which-key-posframe\", \"link_title\": \"How can I change the background colour of which-key / which-key posframe\", \"author_flair_css_class\": null, \"name\": \"t1_eqvzwfc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECheck face which-key-posframe\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzrkyu/how_can_i_change_the_background_colour_of/eqvzwfc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzrkyu/how_can_i_change_the_background_colour_of/\", \"report_reasons\": null, \"link_author\": \"xircon\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/faop1bv9mx331.png\", \"created\": 1560380383.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560351338.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvye1q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ToastedJcaw\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560351086.0, \"send_replies\": true, \"parent_id\": \"t1_eqtwgve\", \"score\": 2, \"author_fullname\": \"t2_3wvmuhbm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Honestly I think the main takeaway is that Spacemacs isn't that *good* at introducing things. Which I think is a reasonable position. It has pretty mediocre documentation and the API is more complicated than it needs to be. Discoverability is good, but it throws everything at you at once.\\n\\nI was thinking of possibly writing an \\\"introduction\\\" mode that progressively enables packages (or at least, keybinds).\\n\\nAll packages are disabled initially. Packages are then enabled one at a time. A new package is enabled, you now have to learn it. The keys from the most recent package are listed in a sidebar. Perhaps you have to use every spacemacs-bound key from a package before the next one will load. Something that genuinely does force the user to learn gradually, and holds their hand through the process.\\n\\nActually, now I think about it, it might be possible to write something like this for general consumption by advising `use-package`.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqvye1q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHonestly I think the main takeaway is that Spacemacs isn\\u0026#39;t that \\u003Cem\\u003Egood\\u003C/em\\u003E at introducing things. Which I think is a reasonable position. It has pretty mediocre documentation and the API is more complicated than it needs to be. Discoverability is good, but it throws everything at you at once.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was thinking of possibly writing an \\u0026quot;introduction\\u0026quot; mode that progressively enables packages (or at least, keybinds).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll packages are disabled initially. Packages are then enabled one at a time. A new package is enabled, you now have to learn it. The keys from the most recent package are listed in a sidebar. Perhaps you have to use every spacemacs-bound key from a package before the next one will load. Something that genuinely does force the user to learn gradually, and holds their hand through the process.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EActually, now I think about it, it might be possible to write something like this for general consumption by advising \\u003Ccode\\u003Euse-package\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqvye1q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560379886.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzq3m4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvxx1g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560350940.0, \"send_replies\": true, \"parent_id\": \"t3_bzq3m4\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Seeing https://github.com/emacs-helm/helm/blob/master/helm-external.el\\nyou can use `helm-run-external-command` with a personal function instead\\nof `helm-external-commands-list-1` that return a list of your scripts.\\n\\nHowever if your script does not run a kind of GUI you can only launch it\\nbut not see any output. You need a comint process for that.\", \"link_title\": \"How to make helm run an external script like dmenu?\", \"author_flair_css_class\": null, \"name\": \"t1_eqvxx1g\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESeeing \\u003Ca href=\\\"https://github.com/emacs-helm/helm/blob/master/helm-external.el\\\"\\u003Ehttps://github.com/emacs-helm/helm/blob/master/helm-external.el\\u003C/a\\u003E\\nyou can use \\u003Ccode\\u003Ehelm-run-external-command\\u003C/code\\u003E with a personal function instead\\nof \\u003Ccode\\u003Ehelm-external-commands-list-1\\u003C/code\\u003E that return a list of your scripts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever if your script does not run a kind of GUI you can only launch it\\nbut not see any output. You need a comint process for that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzq3m4/how_to_make_helm_run_an_external_script_like_dmenu/eqvxx1g/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzq3m4/how_to_make_helm_run_an_external_script_like_dmenu/\", \"report_reasons\": null, \"link_author\": \"forppinrange\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzq3m4/how_to_make_helm_run_an_external_script_like_dmenu/\", \"created\": 1560379740.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvx7e8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ToastedJcaw\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560350720.0, \"send_replies\": true, \"parent_id\": \"t1_eqs6rua\", \"score\": 2, \"author_fullname\": \"t2_3wvmuhbm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You didn't get many upvotes but I think this is a reasonable point.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqvx7e8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou didn\\u0026#39;t get many upvotes but I think this is a reasonable point.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqvx7e8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560379520.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvwlvz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ToastedJcaw\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560350513.0, \"send_replies\": true, \"parent_id\": \"t1_equ184m\", \"score\": 1, \"author_fullname\": \"t2_3wvmuhbm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003ESo what? \\n\\nSo, there's less people to write packages for Emacs. Less development. The capabilities of the editor won't keep up with the changing tech environment - which makes VSCode more competetive, which means more people leave for VSCode, which means less packages for Emacs...\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqvwlvz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESo what? \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESo, there\\u0026#39;s less people to write packages for Emacs. Less development. The capabilities of the editor won\\u0026#39;t keep up with the changing tech environment - which makes VSCode more competetive, which means more people leave for VSCode, which means less packages for Emacs...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqvwlvz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560379313.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvv749\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ToastedJcaw\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560350060.0, \"send_replies\": true, \"parent_id\": \"t1_equle7f\", \"score\": 1, \"author_fullname\": \"t2_3wvmuhbm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003EExploring more does not meat that you will explore further.\\n\\nGood quote.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqvv749\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EExploring more does not meat that you will explore further.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EGood quote.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqvv749/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560378860.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvubh5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ToastedJcaw\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560349749.0, \"send_replies\": true, \"parent_id\": \"t1_equfzlr\", \"score\": 1, \"author_fullname\": \"t2_3wvmuhbm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Bear in mind Elisp isn't like other languages. If you don't like how Spacemacs does something, you actually *can* rip it out and replace it, and it usually only takes a few lines. It's *actually possible* to \\\"write your own\\\" in Elisp, without having to fork and rebuild the entire project.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqvubh5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBear in mind Elisp isn\\u0026#39;t like other languages. If you don\\u0026#39;t like how Spacemacs does something, you actually \\u003Cem\\u003Ecan\\u003C/em\\u003E rip it out and replace it, and it usually only takes a few lines. It\\u0026#39;s \\u003Cem\\u003Eactually possible\\u003C/em\\u003E to \\u0026quot;write your own\\u0026quot; in Elisp, without having to fork and rebuild the entire project.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqvubh5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560378549.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvsxwj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ToastedJcaw\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560349262.0, \"send_replies\": true, \"parent_id\": \"t1_equ878t\", \"score\": 1, \"author_fullname\": \"t2_3wvmuhbm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm talking about packages, not core Emacs.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqvsxwj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m talking about packages, not core Emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqvsxwj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560378062.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzq3m4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvrxxy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"poiu-\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560348924.0, \"send_replies\": true, \"parent_id\": \"t3_bzq3m4\", \"score\": 1, \"author_fullname\": \"t2_dcfnv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Guess: create a helm source that uses start-process.\", \"link_title\": \"How to make helm run an external script like dmenu?\", \"author_flair_css_class\": null, \"name\": \"t1_eqvrxxy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGuess: create a helm source that uses start-process.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzq3m4/how_to_make_helm_run_an_external_script_like_dmenu/eqvrxxy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzq3m4/how_to_make_helm_run_an_external_script_like_dmenu/\", \"report_reasons\": null, \"link_author\": \"forppinrange\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzq3m4/how_to_make_helm_run_an_external_script_like_dmenu/\", \"created\": 1560377724.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzjx6j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvrcrz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mobiledevguy5554\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560348721.0, \"send_replies\": true, \"parent_id\": \"t3_bzjx6j\", \"score\": 1, \"author_fullname\": \"t2_mrpk6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I wanted to start building my own cheatsheets but to be printed and i want to keep the in a binder. Is the generally accepted way of building these Latex?\", \"link_title\": \"Managing \\\"cheatsheets\\\" and other documentation in emacs or org?\", \"author_flair_css_class\": null, \"name\": \"t1_eqvrcrz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI wanted to start building my own cheatsheets but to be printed and i want to keep the in a binder. Is the generally accepted way of building these Latex?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/eqvrcrz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"report_reasons\": null, \"link_author\": \"Jyan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"created\": 1560377521.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzjx6j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvqrmh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Jyan\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560348520.0, \"send_replies\": true, \"parent_id\": \"t1_eqvp2g7\", \"score\": 1, \"author_fullname\": \"t2_4wbfj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yeah -- I want searchable text and something I can easily get to and modify within emacs.\", \"link_title\": \"Managing \\\"cheatsheets\\\" and other documentation in emacs or org?\", \"author_flair_css_class\": null, \"name\": \"t1_eqvqrmh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah -- I want searchable text and something I can easily get to and modify within emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/eqvqrmh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"report_reasons\": null, \"link_author\": \"Jyan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"created\": 1560377320.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzrkyu\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvpm6o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1560348107.0, \"send_replies\": true, \"parent_id\": \"t3_bzrkyu\", \"score\": 1, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I am trying to replicate the above, but for which-key, internet searches not helping. I cannot see a variable with C-h v.\", \"link_title\": \"How can I change the background colour of which-key / which-key posframe\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eqvpm6o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to replicate the above, but for which-key, internet searches not helping. I cannot see a variable with C-h v.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzrkyu/how_can_i_change_the_background_colour_of/eqvpm6o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzrkyu/how_can_i_change_the_background_colour_of/\", \"report_reasons\": null, \"link_author\": \"xircon\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://i.redd.it/faop1bv9mx331.png\", \"created\": 1560376907.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzjx6j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvp2g7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"w0wt1p\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560347909.0, \"send_replies\": true, \"parent_id\": \"t3_bzjx6j\", \"score\": 1, \"author_fullname\": \"t2_4rfi7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"A GitHub repo with Org versions of common cheat sheets would be nice... if one only had more free time :)\\n\\nUsually cheat sheets are cramming as much info into one to two pages as possible, for easy overview. Maybe you lose some of the purpose with more top-to-bottom plain text files?\", \"link_title\": \"Managing \\\"cheatsheets\\\" and other documentation in emacs or org?\", \"author_flair_css_class\": null, \"name\": \"t1_eqvp2g7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA GitHub repo with Org versions of common cheat sheets would be nice... if one only had more free time :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUsually cheat sheets are cramming as much info into one to two pages as possible, for easy overview. Maybe you lose some of the purpose with more top-to-bottom plain text files?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/eqvp2g7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"report_reasons\": null, \"link_author\": \"Jyan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"created\": 1560376709.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_by28x5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvon1u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rswgnu\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1560347767.0, \"send_replies\": true, \"parent_id\": \"t1_equ01m0\", \"score\": 1, \"author_fullname\": \"t2_zxjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Have you go e through the entire DEMO or most of it?\\n\\nWhen I have some time, I will supply a list of implicit buttons that do useful things and will ask you to show the same capabilities with Org markup and then we will have a side-by-side comparison for people who are curious about both packages.\\n\\nIn the meantime, I would suggest you try out personal uses of the kbd-key implicit button type, the brace-delimited one that kets you string together multiple key sequences or interactive commands, as a start.\", \"link_title\": \"My GNU Hyperbole Vision Quest; or, Jupiter and Beyond the Infinite\", \"author_flair_css_class\": null, \"name\": \"t1_eqvon1u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave you go e through the entire DEMO or most of it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I have some time, I will supply a list of implicit buttons that do useful things and will ask you to show the same capabilities with Org markup and then we will have a side-by-side comparison for people who are curious about both packages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the meantime, I would suggest you try out personal uses of the kbd-key implicit button type, the brace-delimited one that kets you string together multiple key sequences or interactive commands, as a start.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/eqvon1u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/\", \"report_reasons\": null, \"link_author\": \"sugarbridalsentry\", \"author_flair_text\": null, \"link_url\": \"https://github.com/termitereform/JunkPile/blob/master/HyperboleNotes.org\", \"created\": 1560376567.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byi635\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvlo13\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"00-11\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1560346749.0, \"send_replies\": true, \"parent_id\": \"t1_equvhqo\", \"score\": 1, \"author_fullname\": \"t2_3upsyt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \";-)\\n\\nChurch of Emacs pardons.\", \"link_title\": \"How to run an external script to modify the contents of a buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqvlo13\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E;-)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChurch of Emacs pardons.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/byi635/how_to_run_an_external_script_to_modify_the/eqvlo13/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/byi635/how_to_run_an_external_script_to_modify_the/\", \"report_reasons\": null, \"link_author\": \"TomSwirly\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/byi635/how_to_run_an_external_script_to_modify_the/\", \"created\": 1560375549.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_by28x5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvlazf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rswgnu\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1560346617.0, \"send_replies\": true, \"parent_id\": \"t1_equ36uj\", \"score\": 1, \"author_fullname\": \"t2_zxjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Why don\\u2019t you show what did not work and show what happened so we can see if it is your configuration or something that should be resolved for everyone?\\n\\nMany times it is a matter of a simple change.\", \"link_title\": \"My GNU Hyperbole Vision Quest; or, Jupiter and Beyond the Infinite\", \"author_flair_css_class\": null, \"name\": \"t1_eqvlazf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy don\\u2019t you show what did not work and show what happened so we can see if it is your configuration or something that should be resolved for everyone?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany times it is a matter of a simple change.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/eqvlazf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/\", \"report_reasons\": null, \"link_author\": \"sugarbridalsentry\", \"author_flair_text\": null, \"link_url\": \"https://github.com/termitereform/JunkPile/blob/master/HyperboleNotes.org\", \"created\": 1560375417.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_by28x5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvkpcj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rswgnu\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1560346399.0, \"send_replies\": true, \"parent_id\": \"t1_eqqe3nk\", \"score\": 1, \"author_fullname\": \"t2_zxjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Do you use every file in the Lisp directory of your Emacs? Di you even know all that is there? I doubt it. Yet you still find Emacs useful. Unless you are under bandwidth constraints, I don\\u2019t understand why people have a problem with a package that contains a toolchest of subsystems that are all related in that they help you manage your everyday information through hypertextual links. You can learn one thing at a time and grow into additional subsystems when ready without the need to search for another package. The concept is exactly like Emacs itself whose Lisp libraries are more diverse than those of Hyperbole\\u2019s.\\n\\nSo don\\u2019t worry about what is included but about whether you can learn how to use features you want. And for new users, the way to do that is to work through the DEMO file and then the Koutliner Example file. The Hyperbole Manual is very clearly marked as a reference manual, not as an introductory tutorial.\", \"link_title\": \"My GNU Hyperbole Vision Quest; or, Jupiter and Beyond the Infinite\", \"author_flair_css_class\": null, \"name\": \"t1_eqvkpcj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDo you use every file in the Lisp directory of your Emacs? Di you even know all that is there? I doubt it. Yet you still find Emacs useful. Unless you are under bandwidth constraints, I don\\u2019t understand why people have a problem with a package that contains a toolchest of subsystems that are all related in that they help you manage your everyday information through hypertextual links. You can learn one thing at a time and grow into additional subsystems when ready without the need to search for another package. The concept is exactly like Emacs itself whose Lisp libraries are more diverse than those of Hyperbole\\u2019s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo don\\u2019t worry about what is included but about whether you can learn how to use features you want. And for new users, the way to do that is to work through the DEMO file and then the Koutliner Example file. The Hyperbole Manual is very clearly marked as a reference manual, not as an introductory tutorial.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/eqvkpcj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/\", \"report_reasons\": null, \"link_author\": \"sugarbridalsentry\", \"author_flair_text\": null, \"link_url\": \"https://github.com/termitereform/JunkPile/blob/master/HyperboleNotes.org\", \"created\": 1560375199.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzn11k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvj4v1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nv-elisp\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560345890.0, \"send_replies\": true, \"parent_id\": \"t3_bzn11k\", \"score\": 1, \"author_fullname\": \"t2_2dw7h444\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is fantastic. I was about to organize a meeting in the area myself. I'm not on meetup.com, but will definitely be attending. Thank you. Any specific plans for the first meeting?\", \"link_title\": \"Princeton, NJ Emacs Meetup, June 17, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eqvj4v1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is fantastic. I was about to organize a meeting in the area myself. I\\u0026#39;m not on meetup.com, but will definitely be attending. Thank you. Any specific plans for the first meeting?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzn11k/princeton_nj_emacs_meetup_june_17_2019/eqvj4v1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzn11k/princeton_nj_emacs_meetup_june_17_2019/\", \"report_reasons\": null, \"link_author\": \"jonathanchu\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzn11k/princeton_nj_emacs_meetup_june_17_2019/\", \"created\": 1560374690.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz6imz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvgq7y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dakra\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1560345051.0, \"send_replies\": true, \"parent_id\": \"t1_eqqe4gv\", \"score\": 2, \"author_fullname\": \"t2_6it00\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm the same. I use borg+use-package in [my config](https://github.com/dakra/dmacs)\\nwith over 300 packages but with virtually everything lazy loaded\\nEmacs starts in \\u003C1s even without batch mode on my Thinkpad X1:\\n\\n $ time emacs -nw --eval '(kill-emacs)'\\n 0.66user 0.33system 0:01.04elapsed 95%CPU (0avgtext+0avgdata 110688maxresident)k\\n 0inputs+72outputs (0major+22272minor)pagefaults 0swaps\\n \\n $ time emacs -nw -batch --eval '(message \\\"Hello, world!\\\")'\\n Hello, world!\\n 0.11user 0.01system 0:00.12elapsed 95%CPU (0avgtext+0avgdata 51628maxresident)k\\n 0inputs+0outputs (0major+4437minor)pagefaults 0swaps\\n\\nI also don't use (most) of those packages but it's simply handy to\\nhave them when I need it and it doesn't add anything to startup\\ntime/memory if I don't use it.\", \"link_title\": \"Heavy config or minimum essentials?\", \"author_flair_css_class\": null, \"name\": \"t1_eqvgq7y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m the same. I use borg+use-package in \\u003Ca href=\\\"https://github.com/dakra/dmacs\\\"\\u003Emy config\\u003C/a\\u003E\\nwith over 300 packages but with virtually everything lazy loaded\\nEmacs starts in \\u0026lt;1s even without batch mode on my Thinkpad X1:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E$ time emacs -nw --eval \\u0026#39;(kill-emacs)\\u0026#39;\\n0.66user 0.33system 0:01.04elapsed 95%CPU (0avgtext+0avgdata 110688maxresident)k\\n0inputs+72outputs (0major+22272minor)pagefaults 0swaps\\n\\n$ time emacs -nw -batch --eval \\u0026#39;(message \\u0026quot;Hello, world!\\u0026quot;)\\u0026#39;\\nHello, world!\\n0.11user 0.01system 0:00.12elapsed 95%CPU (0avgtext+0avgdata 51628maxresident)k\\n0inputs+0outputs (0major+4437minor)pagefaults 0swaps\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI also don\\u0026#39;t use (most) of those packages but it\\u0026#39;s simply handy to\\nhave them when I need it and it doesn\\u0026#39;t add anything to startup\\ntime/memory if I don\\u0026#39;t use it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz6imz/heavy_config_or_minimum_essentials/eqvgq7y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz6imz/heavy_config_or_minimum_essentials/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz6imz/heavy_config_or_minimum_essentials/\", \"created\": 1560373851.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bua5ex\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvf245\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rswgnu\", \"num_comments\": 46, \"can_mod_post\": false, \"created_utc\": 1560344490.0, \"send_replies\": true, \"parent_id\": \"t1_eqveeco\", \"score\": 1, \"author_fullname\": \"t2_zxjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Please show your customizations if they are generally applicable. Maybe they will help someone.\", \"link_title\": \"GNU Hyperbole 7.0.3 is released and ready for action\", \"author_flair_css_class\": null, \"name\": \"t1_eqvf245\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPlease show your customizations if they are generally applicable. Maybe they will help someone.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/eqvf245/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"report_reasons\": null, \"link_author\": \"rswgnu\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"created\": 1560373290.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bua5ex\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqveeco\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NetherOrb\", \"num_comments\": 46, \"can_mod_post\": false, \"created_utc\": 1560344262.0, \"send_replies\": true, \"parent_id\": \"t1_eqn3o8z\", \"score\": 1, \"author_fullname\": \"t2_126ui3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Some variables had to be tweaked but my issues resolved.\", \"link_title\": \"GNU Hyperbole 7.0.3 is released and ready for action\", \"author_flair_css_class\": null, \"name\": \"t1_eqveeco\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESome variables had to be tweaked but my issues resolved.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/eqveeco/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"report_reasons\": null, \"link_author\": \"rswgnu\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"created\": 1560373062.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byc0rs\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqv9cj2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kryptomatrix\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1560342437.0, \"send_replies\": true, \"parent_id\": \"t1_eqqcp0z\", \"score\": 1, \"author_fullname\": \"t2_1ij7p2fr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes, I need the cua mode for editing normal files. \\nC-h k C-c doesn nothing, e.g. C-h k C-c C-d prints: \\\"C-c C-d is undefined\\\" (doesn't matter if cua-mode is on or off).\", \"link_title\": \"Copy with C-c in multi-term\", \"author_flair_css_class\": null, \"name\": \"t1_eqv9cj2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, I need the cua mode for editing normal files.\\u003Cbr/\\u003E\\nC-h k C-c doesn nothing, e.g. C-h k C-c C-d prints: \\u0026quot;C-c C-d is undefined\\u0026quot; (doesn\\u0026#39;t matter if cua-mode is on or off).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/byc0rs/copy_with_cc_in_multiterm/eqv9cj2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/byc0rs/copy_with_cc_in_multiterm/\", \"report_reasons\": null, \"link_author\": \"kryptomatrix\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/byc0rs/copy_with_cc_in_multiterm/\", \"created\": 1560371237.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzjx6j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqv8vxo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Jyan\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560342257.0, \"send_replies\": true, \"parent_id\": \"t1_equq04w\", \"score\": 1, \"author_fullname\": \"t2_4wbfj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks, I think I will be following a similar path.\", \"link_title\": \"Managing \\\"cheatsheets\\\" and other documentation in emacs or org?\", \"author_flair_css_class\": null, \"name\": \"t1_eqv8vxo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I think I will be following a similar path.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/eqv8vxo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"report_reasons\": null, \"link_author\": \"Jyan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"created\": 1560371057.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzjx6j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqv8prs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Jyan\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560342190.0, \"send_replies\": true, \"parent_id\": \"t1_eqtwo28\", \"score\": 1, \"author_fullname\": \"t2_4wbfj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is a nice repository, but it is all pdfs which is exactly what I'm trying to avoid.\", \"link_title\": \"Managing \\\"cheatsheets\\\" and other documentation in emacs or org?\", \"author_flair_css_class\": null, \"name\": \"t1_eqv8prs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is a nice repository, but it is all pdfs which is exactly what I\\u0026#39;m trying to avoid.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/eqv8prs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"report_reasons\": null, \"link_author\": \"Jyan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"created\": 1560370990.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz4o5e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqv8lnn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eli-zaretskii\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1560342148.0, \"send_replies\": true, \"parent_id\": \"t1_eqv2x8c\", \"score\": 1, \"author_fullname\": \"t2_13cvre\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I almost never *install* closed-source software. Stuff that came with the system out of the box, sure, but that's not the issue at hand here.\", \"link_title\": \"Where do I start with plugins?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eqv8lnn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI almost never \\u003Cem\\u003Einstall\\u003C/em\\u003E closed-source software. Stuff that came with the system out of the box, sure, but that\\u0026#39;s not the issue at hand here.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz4o5e/where_do_i_start_with_plugins/eqv8lnn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz4o5e/where_do_i_start_with_plugins/\", \"report_reasons\": null, \"link_author\": \"portal-runner\", \"author_flair_text\": \"GNU Emacs maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz4o5e/where_do_i_start_with_plugins/\", \"created\": 1560370948.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9rxn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqv7yjr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xu_chunyang\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1560341894.0, \"send_replies\": true, \"parent_id\": \"t1_eqv1sr9\", \"score\": 1, \"author_fullname\": \"t2_rxvm883\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I know that, the point is I prefer\\n\\n (+ 1 2 3)\\n ;; =\\u003E 6\\n\\nover\\n\\n (+ 1 2 3)\\n 6\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eqv7yjr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know that, the point is I prefer\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(+ 1 2 3)\\n;; =\\u0026gt; 6\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eover\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(+ 1 2 3)\\n6\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/eqv7yjr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"created\": 1560370694.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz4o5e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqv2x8c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1560339849.0, \"send_replies\": true, \"parent_id\": \"t1_eqqsrdo\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003EThat's one more reason why I read the code of everything I install\\n\\nDon't you use any closed-source software?\", \"link_title\": \"Where do I start with plugins?\", \"author_flair_css_class\": null, \"name\": \"t1_eqv2x8c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThat\\u0026#39;s one more reason why I read the code of everything I install\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EDon\\u0026#39;t you use any closed-source software?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz4o5e/where_do_i_start_with_plugins/eqv2x8c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz4o5e/where_do_i_start_with_plugins/\", \"report_reasons\": null, \"link_author\": \"portal-runner\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz4o5e/where_do_i_start_with_plugins/\", \"created\": 1560368649.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9rxn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqv1sr9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1560339386.0, \"send_replies\": true, \"parent_id\": \"t1_eqrf693\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \" (defun eval-last-sexp (eval-last-sexp-arg-internal)\\n \\\"Evaluate sexp before point; print value in the echo area.\\n Interactively, with a non `-' prefix argument, print output into\\n current buffer.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eqv1sr9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E(defun eval-last-sexp (eval-last-sexp-arg-internal)\\n \\u0026quot;Evaluate sexp before point; print value in the echo area.\\nInteractively, with a non `-\\u0026#39; prefix argument, print output into\\ncurrent buffer.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/eqv1sr9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"created\": 1560368186.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9rxn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqv1cp1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xu_chunyang\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1560339196.0, \"send_replies\": true, \"parent_id\": \"t1_eqsw8wo\", \"score\": 1, \"author_fullname\": \"t2_rxvm883\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Great. It's much better and cleaner.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eqv1cp1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreat. It\\u0026#39;s much better and cleaner.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/eqv1cp1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"created\": 1560367996.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqv0i7s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560338861.0, \"send_replies\": true, \"parent_id\": \"t1_equle7f\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Exploring mre means knowing more things, so being able to \\\"travel\\\" easier. On chat\\ncomments... Well, I do not use as much as I can chats, I consider them the most\\ndistracting and fruitless way of communicate. In the past and even today in certain\\nconditions (for instance on submarines/ship traveling far away we might have had no\\nother option, these days we have ubiquitous *audio* calls and emails.\\n\\nAnyway I tried Spacemacs last years, for a couple of days and it simply does not fit\\nmy workflow because I create it to suite my need, a thing probably again I'll not do\\nif I start with a \\\"featured config\\\". Emacs now is \\\"integrated\\\" in my home taxonomy, \\nnot a simple operating environment standalone.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqv0i7s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EExploring mre means knowing more things, so being able to \\u0026quot;travel\\u0026quot; easier. On chat\\ncomments... Well, I do not use as much as I can chats, I consider them the most\\ndistracting and fruitless way of communicate. In the past and even today in certain\\nconditions (for instance on submarines/ship traveling far away we might have had no\\nother option, these days we have ubiquitous \\u003Cem\\u003Eaudio\\u003C/em\\u003E calls and emails.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway I tried Spacemacs last years, for a couple of days and it simply does not fit\\nmy workflow because I create it to suite my need, a thing probably again I\\u0026#39;ll not do\\nif I start with a \\u0026quot;featured config\\u0026quot;. Emacs now is \\u0026quot;integrated\\u0026quot; in my home taxonomy, \\nnot a simple operating environment standalone.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqv0i7s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560367661.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzjx6j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equxuhu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rgrau\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560337539.0, \"send_replies\": true, \"parent_id\": \"t3_bzjx6j\", \"score\": 1, \"author_fullname\": \"t2_7p0zo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You can give a look into https://github.com/dash-docs-el . \\n\\nIt's thought for full blown reference manuals but if you find/create your cheatsheets in the same dash format, it should work fine\", \"link_title\": \"Managing \\\"cheatsheets\\\" and other documentation in emacs or org?\", \"author_flair_css_class\": null, \"name\": \"t1_equxuhu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can give a look into \\u003Ca href=\\\"https://github.com/dash-docs-el\\\"\\u003Ehttps://github.com/dash-docs-el\\u003C/a\\u003E . \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s thought for full blown reference manuals but if you find/create your cheatsheets in the same dash format, it should work fine\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/equxuhu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"report_reasons\": null, \"link_author\": \"Jyan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"created\": 1560366339.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byi635\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equwun0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TomSwirly\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1560337010.0, \"send_replies\": true, \"parent_id\": \"t1_eqkezk1\", \"score\": 1, \"author_fullname\": \"t2_333rr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"So this worked generally well, but FYI, I ran into an emacs crashing bug from blacken-mode:\\n\\nhttps://github.com/proofit404/blacken/issues/27\", \"link_title\": \"How to run an external script to modify the contents of a buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_equwun0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo this worked generally well, but FYI, I ran into an emacs crashing bug from blacken-mode:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/proofit404/blacken/issues/27\\\"\\u003Ehttps://github.com/proofit404/blacken/issues/27\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/byi635/how_to_run_an_external_script_to_modify_the/equwun0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/byi635/how_to_run_an_external_script_to_modify_the/\", \"report_reasons\": null, \"link_author\": \"TomSwirly\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/byi635/how_to_run_an_external_script_to_modify_the/\", \"created\": 1560365810.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz2uob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equvkgh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 69, \"can_mod_post\": false, \"created_utc\": 1560336299.0, \"send_replies\": true, \"parent_id\": \"t1_eqse4ec\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\\\u003E My constant battles with RSI got easier when I switched to vim keybindings, after years of Emacs bindings.\\n\\n\\u0026#x200B;\\n\\nI moved almost all of my computer activities to Emacs (chats, email etc), so I don't have to touch mouse so often and my RSI has gone (10 years ago!)\\n\\n\\u0026#x200B;\\n\\nP.S. Yes, I use CapsLock as the main Ctrl key.\", \"link_title\": \"Do people find emacs's bindings inferior to vim's?\", \"author_flair_css_class\": null, \"name\": \"t1_equvkgh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt; My constant battles with RSI got easier when I switched to vim keybindings, after years of Emacs bindings.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI moved almost all of my computer activities to Emacs (chats, email etc), so I don\\u0026#39;t have to touch mouse so often and my RSI has gone (10 years ago!)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EP.S. Yes, I use CapsLock as the main Ctrl key.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/equvkgh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"report_reasons\": null, \"link_author\": \"forppinrange\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"created\": 1560365099.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byi635\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equvhqo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TomSwirly\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1560336262.0, \"send_replies\": true, \"parent_id\": \"t1_eqims25\", \"score\": 1, \"author_fullname\": \"t2_333rr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Poor reading skills on my part?\", \"link_title\": \"How to run an external script to modify the contents of a buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_equvhqo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPoor reading skills on my part?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/byi635/how_to_run_an_external_script_to_modify_the/equvhqo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/byi635/how_to_run_an_external_script_to_modify_the/\", \"report_reasons\": null, \"link_author\": \"TomSwirly\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/byi635/how_to_run_an_external_script_to_modify_the/\", \"created\": 1560365062.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz2uob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equuuat\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 69, \"can_mod_post\": false, \"created_utc\": 1560335928.0, \"send_replies\": true, \"parent_id\": \"t1_eqs6kdb\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\\\u003E it\\u2019s easier for me to press keys in sequence than in a chord.\\n\\n\\u0026#x200B;\\n\\nevil-mode, god-mode, viper, modalka, name it - there are a lot of modal plugins for Emacs\", \"link_title\": \"Do people find emacs's bindings inferior to vim's?\", \"author_flair_css_class\": null, \"name\": \"t1_equuuat\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt; it\\u2019s easier for me to press keys in sequence than in a chord.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eevil-mode, god-mode, viper, modalka, name it - there are a lot of modal plugins for Emacs\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/equuuat/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"report_reasons\": null, \"link_author\": \"forppinrange\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"created\": 1560364728.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz2uob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equul84\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 69, \"can_mod_post\": false, \"created_utc\": 1560335785.0, \"send_replies\": true, \"parent_id\": \"t1_eqseli0\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\\\u003EI do hope things will change with the new Remacs project, \\n\\n\\u0026#x200B;\\n\\nthey won't, REmacs is just a 1:1 rewrite\\n\\n\\u0026#x200B;\\n\\n\\\\\\u003E somehow Vim plugins tend to be of better quality\\n\\n\\u0026#x200B;\\n\\ncould you give a couple of examples?\\n\\n\\u0026#x200B;\\n\\n\\\\\\u003Eonly available on a proprietary Youtube platform, that completely goes against the spirit of the author of Emacs.\\n\\n\\u0026#x200B;\\n\\nAre you serious?\", \"link_title\": \"Do people find emacs's bindings inferior to vim's?\", \"author_flair_css_class\": null, \"name\": \"t1_equul84\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;I do hope things will change with the new Remacs project, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethey won\\u0026#39;t, REmacs is just a 1:1 rewrite\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026gt; somehow Vim plugins tend to be of better quality\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ecould you give a couple of examples?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026gt;only available on a proprietary Youtube platform, that completely goes against the spirit of the author of Emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre you serious?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/equul84/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"report_reasons\": null, \"link_author\": \"forppinrange\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"created\": 1560364585.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzjx6j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equq04w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560333690.0, \"send_replies\": true, \"parent_id\": \"t3_bzjx6j\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hum,\\nIMVHO cheatsheets are normally pdfs because they are only a way to present something like\\na manifesto, not to be useful. My own personal cheatsheet is a search engine, my personal\\nwiki, casually my NNTP saved messages, mails (RSS2Email) but nothing created to be a \\ncheatsheet...\\n\\nOn other documentation in org, well personally I try to use less files prefer a single big\\ncontainers, easier to search, easy to modify/refactor but I still have many files normally\\nlinked in a single \\\"index\\\" (linkmarks bookmarks) accessed via helm. Export is not that easy\\nif you look for nice results, you need to build or choose a good set of templates and use\\nyasnippet/skeletor to create/modify docs. Interlinking is still a bit manual, perhaps\\nHyperbole can do a better job in that sense, otherwise using IDs/CUSTOM_IDs properties and\\n`#+name`s on code blocks/tables give a nice help together with `org-store-link`. IME have \\na massively linked docs is not really useful, good search from \\\"file/buffer local\\\" like\\n`swiper` to `wgrep` passing through recoll (accessed via counsel) are more efficient and\\nless long to maintain.\\n\\nLong story short a personal wiki composed of few org-files (eg. one per \\\"big\\\" topic) with\\nlinkmarks for accessing (or org-wiki if you prefer) and local searches works fairly well.\\nTo craft such documents IMO the best way is a first light write-up and after add anything\\nyou look for, at least capturing it and complete after so you'll end up collecting only\\nreally useful information you may need and having the \\\"good keywords\\\" to access them.\\nLife-cycle for me is: first taxonomy design, very little content normally trying to redo\\nthe \\\"knowledge path\\\" followed before =\\u003E adding content for a long period of time, as \\nneeded, =\\u003E periodic consolidation (cleanup/refactor) of the content to let it be a bit\\nordered and clean / up-to-date.\", \"link_title\": \"Managing \\\"cheatsheets\\\" and other documentation in emacs or org?\", \"author_flair_css_class\": null, \"name\": \"t1_equq04w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHum,\\nIMVHO cheatsheets are normally pdfs because they are only a way to present something like\\na manifesto, not to be useful. My own personal cheatsheet is a search engine, my personal\\nwiki, casually my NNTP saved messages, mails (RSS2Email) but nothing created to be a \\ncheatsheet...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn other documentation in org, well personally I try to use less files prefer a single big\\ncontainers, easier to search, easy to modify/refactor but I still have many files normally\\nlinked in a single \\u0026quot;index\\u0026quot; (linkmarks bookmarks) accessed via helm. Export is not that easy\\nif you look for nice results, you need to build or choose a good set of templates and use\\nyasnippet/skeletor to create/modify docs. Interlinking is still a bit manual, perhaps\\nHyperbole can do a better job in that sense, otherwise using IDs/CUSTOM_IDs properties and\\n\\u003Ccode\\u003E#+name\\u003C/code\\u003Es on code blocks/tables give a nice help together with \\u003Ccode\\u003Eorg-store-link\\u003C/code\\u003E. IME have \\na massively linked docs is not really useful, good search from \\u0026quot;file/buffer local\\u0026quot; like\\n\\u003Ccode\\u003Eswiper\\u003C/code\\u003E to \\u003Ccode\\u003Ewgrep\\u003C/code\\u003E passing through recoll (accessed via counsel) are more efficient and\\nless long to maintain.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELong story short a personal wiki composed of few org-files (eg. one per \\u0026quot;big\\u0026quot; topic) with\\nlinkmarks for accessing (or org-wiki if you prefer) and local searches works fairly well.\\nTo craft such documents IMO the best way is a first light write-up and after add anything\\nyou look for, at least capturing it and complete after so you\\u0026#39;ll end up collecting only\\nreally useful information you may need and having the \\u0026quot;good keywords\\u0026quot; to access them.\\nLife-cycle for me is: first taxonomy design, very little content normally trying to redo\\nthe \\u0026quot;knowledge path\\u0026quot; followed before =\\u0026gt; adding content for a long period of time, as \\nneeded, =\\u0026gt; periodic consolidation (cleanup/refactor) of the content to let it be a bit\\nordered and clean / up-to-date.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/equq04w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"report_reasons\": null, \"link_author\": \"Jyan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"created\": 1560362490.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equle7f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yyoncho\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560331597.0, \"send_replies\": true, \"parent_id\": \"t1_equfzlr\", \"score\": 1, \"author_fullname\": \"t2_4s4u03u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E If I decide to go for Spacemacs I can tell what will happen but it's easy to speculate that I would explore FAR less since I found nearly all in place, perhaps I even do not know what packages I'm actually using \\n\\nExploring more does not meat that you will explore further.\\n\\n\\u003E since they are integrated by someone else.\\n\\nYou mean that they have been integrated by someone that often knows much more than you(often the original package owner) and who exposed a functionality that you would never find? Do you know how often someone in gitter chat says: \\\"I was running a custom config for 10+ years and got more productive with vanilla spacemacs after a week.\\\" (I was like that too).\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_equle7f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIf I decide to go for Spacemacs I can tell what will happen but it\\u0026#39;s easy to speculate that I would explore FAR less since I found nearly all in place, perhaps I even do not know what packages I\\u0026#39;m actually using \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EExploring more does not meat that you will explore further.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Esince they are integrated by someone else.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYou mean that they have been integrated by someone that often knows much more than you(often the original package owner) and who exposed a functionality that you would never find? Do you know how often someone in gitter chat says: \\u0026quot;I was running a custom config for 10+ years and got more productive with vanilla spacemacs after a week.\\u0026quot; (I was like that too).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/equle7f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560360397.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzg7fp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equjtx4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Centotrecento\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560330948.0, \"send_replies\": true, \"parent_id\": \"t1_eqsx3ok\", \"score\": 1, \"author_fullname\": \"t2_2aas2vcs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes snippets/templates are important for any markup language. I use yasnippet.\", \"link_title\": \"Inserting LaTeX symbols in comfort\", \"author_flair_css_class\": null, \"name\": \"t1_equjtx4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes snippets/templates are important for any markup language. I use yasnippet.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/equjtx4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/\", \"report_reasons\": null, \"link_author\": \"aidansch\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/\", \"created\": 1560359748.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz1w43\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equjlyj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"abo-abo\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560330851.0, \"send_replies\": true, \"parent_id\": \"t3_bz1w43\", \"score\": 2, \"author_fullname\": \"t2_et0j2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I wrote [helm-make](https://github.com/abo-abo/helm-make/) and [cook](https://github.com/abo-abo/cook) packages that are an Emacs interface to task runners. See also `counsel-compile` from [counsel](https://github.com/abo-abo/swiper/).\", \"link_title\": \"Task Runner\", \"author_flair_css_class\": null, \"name\": \"t1_equjlyj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI wrote \\u003Ca href=\\\"https://github.com/abo-abo/helm-make/\\\"\\u003Ehelm-make\\u003C/a\\u003E and \\u003Ca href=\\\"https://github.com/abo-abo/cook\\\"\\u003Ecook\\u003C/a\\u003E packages that are an Emacs interface to task runners. See also \\u003Ccode\\u003Ecounsel-compile\\u003C/code\\u003E from \\u003Ca href=\\\"https://github.com/abo-abo/swiper/\\\"\\u003Ecounsel\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz1w43/task_runner/equjlyj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz1w43/task_runner/\", \"report_reasons\": null, \"link_author\": \"omgitsjoao\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz1w43/task_runner/\", \"created\": 1560359651.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560331141.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzg7fp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equjdgj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Centotrecento\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560330749.0, \"send_replies\": true, \"parent_id\": \"t1_eqs7gh5\", \"score\": 1, \"author_fullname\": \"t2_2aas2vcs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I use [parenthesis.el](https://www.emacswiki.org/emacs/parenthesis.el) to insert matching pairs of any \\\"bracket\\\" character so typing $\\\\`a does the same thing with the same number of keystrokes. But I see that `cdlatex` does parentheses as well as quite a lot more so thanks, I'll look into that.\", \"link_title\": \"Inserting LaTeX symbols in comfort\", \"author_flair_css_class\": null, \"name\": \"t1_equjdgj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use \\u003Ca href=\\\"https://www.emacswiki.org/emacs/parenthesis.el\\\"\\u003Eparenthesis.el\\u003C/a\\u003E to insert matching pairs of any \\u0026quot;bracket\\u0026quot; character so typing $`a does the same thing with the same number of keystrokes. But I see that \\u003Ccode\\u003Ecdlatex\\u003C/code\\u003E does parentheses as well as quite a lot more so thanks, I\\u0026#39;ll look into that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/equjdgj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/\", \"report_reasons\": null, \"link_author\": \"aidansch\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/\", \"created\": 1560359549.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equfzlr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560329327.0, \"send_replies\": true, \"parent_id\": \"t1_equ6ke9\", \"score\": 2, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is a classic \\\"commercial reply\\\", not different by whom who say \\\"hey you have the \\nsources, it if dislike something write your own\\\". Theoretically true, practically false.\\n\\nIf you use Emacs for a bit of time you know that upstream bugs rarely hit someone. On \\ncontrary config bankruptcy are a \\\"normal\\\" issue that came from time to time. When this\\nhappen if you have started from scratch, typically with two files (init.el / init.org)\\nyou can normally wipe your ~/.emacs.d and restart from scratch. Re-enabling one heading,\\nuse-package block at a time. With pre-cooked configs is often more complicated, you do \\nnot have only your config but also the predefined one and you do not really know it so\\nwhen Emacs complaint about something you do not know where to look.\\n\\nSince for myself in three months Emacs became my operating environment, WM included, it's\\nnot that hard starting from scratch. When I came to Emacs I have essentially no knowledge\\nof lisp in general, I was a hardcore vimmer that only see Emacs many years ago at XEmacs\\ntime for a day, born on unix, not LispM, not ITS etc. So I decide to give a go to an alien\\nthing and in three months, few evenings a week, it became my main human-computer interface.\\n\\nIf I decide to go for Spacemacs I can tell what will happen but it's easy to speculate\\nthat I would explore FAR less since I found nearly all in place, perhaps I even do not\\nknow what packages I'm actually using since they are integrated by someone else. When I\\nhave to rebuild my config I probably have to re-create from zero, not simply refactor the\\nold, mostly because thing changes in my ~/.emacs.d and I do not know that changes because\\nthey came from another upstream.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_equfzlr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is a classic \\u0026quot;commercial reply\\u0026quot;, not different by whom who say \\u0026quot;hey you have the \\nsources, it if dislike something write your own\\u0026quot;. Theoretically true, practically false.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you use Emacs for a bit of time you know that upstream bugs rarely hit someone. On \\ncontrary config bankruptcy are a \\u0026quot;normal\\u0026quot; issue that came from time to time. When this\\nhappen if you have started from scratch, typically with two files (init.el / init.org)\\nyou can normally wipe your ~/.emacs.d and restart from scratch. Re-enabling one heading,\\nuse-package block at a time. With pre-cooked configs is often more complicated, you do \\nnot have only your config but also the predefined one and you do not really know it so\\nwhen Emacs complaint about something you do not know where to look.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince for myself in three months Emacs became my operating environment, WM included, it\\u0026#39;s\\nnot that hard starting from scratch. When I came to Emacs I have essentially no knowledge\\nof lisp in general, I was a hardcore vimmer that only see Emacs many years ago at XEmacs\\ntime for a day, born on unix, not LispM, not ITS etc. So I decide to give a go to an alien\\nthing and in three months, few evenings a week, it became my main human-computer interface.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I decide to go for Spacemacs I can tell what will happen but it\\u0026#39;s easy to speculate\\nthat I would explore FAR less since I found nearly all in place, perhaps I even do not\\nknow what packages I\\u0026#39;m actually using since they are integrated by someone else. When I\\nhave to rebuild my config I probably have to re-create from zero, not simply refactor the\\nold, mostly because thing changes in my ~/.emacs.d and I do not know that changes because\\nthey came from another upstream.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/equfzlr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560358127.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz6imz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equb5l8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"7890yuiop\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1560327255.0, \"send_replies\": true, \"parent_id\": \"t1_eqqzp42\", \"score\": 0, \"author_fullname\": \"t2_xw3p4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"We're Emacs users. We *like* our old habits. We don't want to use a new thing if we already know how to use an older *better* thing.\", \"link_title\": \"Heavy config or minimum essentials?\", \"author_flair_css_class\": null, \"name\": \"t1_equb5l8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe\\u0026#39;re Emacs users. We \\u003Cem\\u003Elike\\u003C/em\\u003E our old habits. We don\\u0026#39;t want to use a new thing if we already know how to use an older \\u003Cem\\u003Ebetter\\u003C/em\\u003E thing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz6imz/heavy_config_or_minimum_essentials/equb5l8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz6imz/heavy_config_or_minimum_essentials/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz6imz/heavy_config_or_minimum_essentials/\", \"created\": 1560356055.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equ878t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eli-zaretskii\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560326038.0, \"send_replies\": true, \"parent_id\": \"t1_eqrl06n\", \"score\": 1, \"author_fullname\": \"t2_13cvre\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E \\u003E Generally speaking Emacs is designed\\n\\n\\u003E I don't buy it. Emacs isn't designed - it's a borg, it's a random collection of things\\n\\nThis assertion has no factual basis. Just reading the discussions on the devel list will easily show how much thought and efforts are devoted to considerations of design and usability. I'm following the development forums since 1993, and these basic attitudes never changed.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_equ878t\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EGenerally speaking Emacs is designed\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t buy it. Emacs isn\\u0026#39;t designed - it\\u0026#39;s a borg, it\\u0026#39;s a random collection of things\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis assertion has no factual basis. Just reading the discussions on the devel list will easily show how much thought and efforts are devoted to considerations of design and usability. I\\u0026#39;m following the development forums since 1993, and these basic attitudes never changed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/equ878t/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": \"GNU Emacs maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560354838.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzmvrz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equ73in\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"ftrx\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560325589.0, \"send_replies\": true, \"parent_id\": \"t1_eqto1ss\", \"score\": 4, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"AFAIK there is nothing like that built-in in Emacs, however there are few galleries \\nlike:\\n - https://peach-melpa.org\\n - https://emacsthemes.com\\n - https://pawelbx.github.io/emacs-theme-gallery\\n\\nNot much but normally enough to pick one :-)\\n\\nIn the end pick a theme of one \\\"category\\\" (I mean light, dark, high contrast, low\\ncontrast) and adapt to their taste, perhaps with a color picker is super easy.\", \"link_title\": \"naysayer-theme.el: Emacs theme inspired by Jonathan Blow's livestreams\", \"author_flair_css_class\": null, \"name\": \"t1_equ73in\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAFAIK there is nothing like that built-in in Emacs, however there are few galleries \\nlike:\\n - \\u003Ca href=\\\"https://peach-melpa.org\\\"\\u003Ehttps://peach-melpa.org\\u003C/a\\u003E\\n - \\u003Ca href=\\\"https://emacsthemes.com\\\"\\u003Ehttps://emacsthemes.com\\u003C/a\\u003E\\n - \\u003Ca href=\\\"https://pawelbx.github.io/emacs-theme-gallery\\\"\\u003Ehttps://pawelbx.github.io/emacs-theme-gallery\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot much but normally enough to pick one :-)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the end pick a theme of one \\u0026quot;category\\u0026quot; (I mean light, dark, high contrast, low\\ncontrast) and adapt to their taste, perhaps with a color picker is super easy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzmvrz/naysayerthemeel_emacs_theme_inspired_by_jonathan/equ73in/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzmvrz/naysayerthemeel_emacs_theme_inspired_by_jonathan/\", \"report_reasons\": null, \"link_author\": \"twenty393\", \"author_flair_text\": null, \"link_url\": \"https://github.com/nickav/naysayer-theme.el\", \"created\": 1560354389.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equ6ke9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yyoncho\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560325358.0, \"send_replies\": true, \"parent_id\": \"t1_eqty5eg\", \"score\": 2, \"author_fullname\": \"t2_4s4u03u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E \\\"Starter kits\\\" are the same: you start quickly with ease and pleasure but you do not really know Emacs enough.\\n\\nIs starting with bare emacs slow enough? Maybe first you will need to spend a few years contributing to C core and creating elisp packages before committing to Emacs because if hit a C bug you won't have enough knowledge to recover? Just curious, what if you start now you may spend the same time you would have spent for vanilla Emacs for learning lets say emacs+spacemacs, what would be your result? \\n\\n\\u003E On contrary if you start from standard Emacs and learn Emacs will NOT be your production environment so quickly and than when something brake you probably know enough to fix it.\\n\\nThis is not even close to reality - the majority of those who use emacs are able only to copy/paste configuration snippets and does not have any knowledge of Elisp. And this is perfectly fine for the traditional Emacs users just because you are building something for you, isn't that funny?\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_equ6ke9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u0026quot;Starter kits\\u0026quot; are the same: you start quickly with ease and pleasure but you do not really know Emacs enough.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIs starting with bare emacs slow enough? Maybe first you will need to spend a few years contributing to C core and creating elisp packages before committing to Emacs because if hit a C bug you won\\u0026#39;t have enough knowledge to recover? Just curious, what if you start now you may spend the same time you would have spent for vanilla Emacs for learning lets say emacs+spacemacs, what would be your result? \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EOn contrary if you start from standard Emacs and learn Emacs will NOT be your production environment so quickly and than when something brake you probably know enough to fix it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is not even close to reality - the majority of those who use emacs are able only to copy/paste configuration snippets and does not have any knowledge of Elisp. And this is perfectly fine for the traditional Emacs users just because you are building something for you, isn\\u0026#39;t that funny?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/equ6ke9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560354158.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equ3wki\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hakanserce\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1560324243.0, \"send_replies\": true, \"parent_id\": \"t1_eqsq1do\", \"score\": 2, \"author_fullname\": \"t2_135uwum\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks for considering the input.\\n\\nI think it can be just a list curated subject areas and levels. And if you make this extensible (like a list where people can add to by developing new packages), then people (including me) can jump in and add more subject areas and levels. \\n\\nPlease take a look at [www.shortcutfoo.com](https://www.shortcutfoo.com), play around with Emacs shortcuts there. You will understand better what I mean.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_equ3wki\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for considering the input.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think it can be just a list curated subject areas and levels. And if you make this extensible (like a list where people can add to by developing new packages), then people (including me) can jump in and add more subject areas and levels. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease take a look at \\u003Ca href=\\\"https://www.shortcutfoo.com\\\"\\u003Ewww.shortcutfoo.com\\u003C/a\\u003E, play around with Emacs shortcuts there. You will understand better what I mean.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/equ3wki/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1560353043.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_by28x5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equ36uj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hakanserce\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1560323927.0, \"send_replies\": true, \"parent_id\": \"t1_eqtt0w3\", \"score\": 1, \"author_fullname\": \"t2_135uwum\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"They didn't work for me unfortunately, as I got errors when I tried some of the actions. Maybe related with a conflict with my configuration. \\n\\nI strongly recommend taking a look at org-mode, if you haven't done so already, org-mode is THE (initial) REASON to jump ships to emacs for a lot of people.\\n\\nJust take a look at [this video](https://www.youtube.com/watch?v=SzA2YODtgK4). It is about an hour long, but touches a lot of things that org-mode can do. This video was the initial reason for me. :)\", \"link_title\": \"My GNU Hyperbole Vision Quest; or, Jupiter and Beyond the Infinite\", \"author_flair_css_class\": null, \"name\": \"t1_equ36uj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThey didn\\u0026#39;t work for me unfortunately, as I got errors when I tried some of the actions. Maybe related with a conflict with my configuration. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI strongly recommend taking a look at org-mode, if you haven\\u0026#39;t done so already, org-mode is THE (initial) REASON to jump ships to emacs for a lot of people.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust take a look at \\u003Ca href=\\\"https://www.youtube.com/watch?v=SzA2YODtgK4\\\"\\u003Ethis video\\u003C/a\\u003E. It is about an hour long, but touches a lot of things that org-mode can do. This video was the initial reason for me. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/equ36uj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/\", \"report_reasons\": null, \"link_author\": \"sugarbridalsentry\", \"author_flair_text\": null, \"link_url\": \"https://github.com/termitereform/JunkPile/blob/master/HyperboleNotes.org\", \"created\": 1560352727.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzmvrz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equ21qa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GeorgeStorm\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560323402.0, \"send_replies\": true, \"parent_id\": \"t3_bzmvrz\", \"score\": 1, \"author_fullname\": \"t2_5f5ma\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Ooh that looks nice, might give this a go. I'm currently using Doom modeline, should I change that?\", \"link_title\": \"naysayer-theme.el: Emacs theme inspired by Jonathan Blow's livestreams\", \"author_flair_css_class\": null, \"name\": \"t1_equ21qa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOoh that looks nice, might give this a go. I\\u0026#39;m currently using Doom modeline, should I change that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzmvrz/naysayerthemeel_emacs_theme_inspired_by_jonathan/equ21qa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzmvrz/naysayerthemeel_emacs_theme_inspired_by_jonathan/\", \"report_reasons\": null, \"link_author\": \"twenty393\", \"author_flair_text\": null, \"link_url\": \"https://github.com/nickav/naysayer-theme.el\", \"created\": 1560352202.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equ184m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560323037.0, \"send_replies\": true, \"parent_id\": \"t1_eqt3uq4\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"So what? We know that intelligence, competence are in an even steeper decline. We know\\nthat today's doctors, engineers, physicist etc are far less competent and smart than\\ntheir past colleagues and situation is getting mostly only worse. Emacs can't fix that.\\n\\nSee the popularity of Android: following your reasoning we should copy Android since it's\\nso successful and in the end it's GNU/Linux with a framework on top. I hope you disagree\\nwith that. The same is for Emacs. Emacs \\\"decline\\\" is simply the fact that modern \\nuniversities do not teach anymore on powerful workstation with powerful software, normally\\nchoosing limited and limiting commercial product they less and less prepared students \\nalready know (so it's easier for teachers) and the commercial vendor give some sort of\\nbenefit for the implicit advertising it get from universities.\\n\\nI know that the dream to push good software is only a dream, I see that the GNU/Linux on\\ndesktop momentum is ended and today we are heading back to a small \\u00e9lite. But try to be \\ncommercial crap to gain users it's not an answer is like shoot themselves in the foots.\\nWe are there, new users arrive and push the community, our software land evolve. That's\\nis. When commercial crap collapse, as they do in the past we were still there and in a \\nbetter shape than ever, if we do not get contaminated too much by newcomers ideas that \\nare essentially commercial ideas since it's the sole paradigms newcomers know of, the sole\\nthat modern universities teach.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_equ184m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo what? We know that intelligence, competence are in an even steeper decline. We know\\nthat today\\u0026#39;s doctors, engineers, physicist etc are far less competent and smart than\\ntheir past colleagues and situation is getting mostly only worse. Emacs can\\u0026#39;t fix that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESee the popularity of Android: following your reasoning we should copy Android since it\\u0026#39;s\\nso successful and in the end it\\u0026#39;s GNU/Linux with a framework on top. I hope you disagree\\nwith that. The same is for Emacs. Emacs \\u0026quot;decline\\u0026quot; is simply the fact that modern \\nuniversities do not teach anymore on powerful workstation with powerful software, normally\\nchoosing limited and limiting commercial product they less and less prepared students \\nalready know (so it\\u0026#39;s easier for teachers) and the commercial vendor give some sort of\\nbenefit for the implicit advertising it get from universities.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know that the dream to push good software is only a dream, I see that the GNU/Linux on\\ndesktop momentum is ended and today we are heading back to a small \\u00e9lite. But try to be \\ncommercial crap to gain users it\\u0026#39;s not an answer is like shoot themselves in the foots.\\nWe are there, new users arrive and push the community, our software land evolve. That\\u0026#39;s\\nis. When commercial crap collapse, as they do in the past we were still there and in a \\nbetter shape than ever, if we do not get contaminated too much by newcomers ideas that \\nare essentially commercial ideas since it\\u0026#39;s the sole paradigms newcomers know of, the sole\\nthat modern universities teach.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/equ184m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560351837.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_by28x5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equ01m0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1560322480.0, \"send_replies\": true, \"parent_id\": \"t1_eqth9or\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's why I'm still around with Hyperbole discussions, I feel there is something but do\\nnot get it. Maybe it's my limit, of course, but that's is. I'm also interesting in \\ncombining Hyperbole and org. But before I have to understand.\\n\\nFor now I see only very little and apart of markup differences between hyperbole buttons\\nand org links I can't get differences. I hope, since discussion about Hyperbole are \\ncyclic, that someone sooner or later publish something that finally help me getting there...\", \"link_title\": \"My GNU Hyperbole Vision Quest; or, Jupiter and Beyond the Infinite\", \"author_flair_css_class\": null, \"name\": \"t1_equ01m0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s why I\\u0026#39;m still around with Hyperbole discussions, I feel there is something but do\\nnot get it. Maybe it\\u0026#39;s my limit, of course, but that\\u0026#39;s is. I\\u0026#39;m also interesting in \\ncombining Hyperbole and org. But before I have to understand.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor now I see only very little and apart of markup differences between hyperbole buttons\\nand org links I can\\u0026#39;t get differences. I hope, since discussion about Hyperbole are \\ncyclic, that someone sooner or later publish something that finally help me getting there...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/equ01m0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/\", \"report_reasons\": null, \"link_author\": \"sugarbridalsentry\", \"author_flair_text\": null, \"link_url\": \"https://github.com/termitereform/JunkPile/blob/master/HyperboleNotes.org\", \"created\": 1560351280.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_by28x5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtzfjw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1560322204.0, \"send_replies\": true, \"parent_id\": \"t1_eqtji2b\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"The main difference is that I built my knowledge/environment a bit at a time, starting\\nwith little thing and than expand. With Hyperbole I actually fail doing the same. \\nI install it and start looking around, fond nice thing but not a use for them, I try to\\ngo a bit deeper reading the manual, but I do not find it much helpful. Very detailed as\\na reference, but very little useful to a newcomers.\\n\\nWith org yes, I spent ours to learn, but my first attempt on org are simple few bit of\\nlisp grabbed from a blog post, and I start really using it. The more that it's use grow\\nthe more docs I'm look for, including the paper version of org 8 manual. If I start with\\nthis very manual... Well probably today I will not use org.\\n\\nThat's the whole point: reading \\\"hyperbole is like the web for you local text docs\\\" is a\\nsuper-interesting thing, the path to understand it, for me it's not such clear and since\\nit's age, popularity and cyclic restart of public discussions I think I'm not alone.\\nProbably a really valuable, landmark project that unfortunately still have to find a way\\nto spread it's beauty.\", \"link_title\": \"My GNU Hyperbole Vision Quest; or, Jupiter and Beyond the Infinite\", \"author_flair_css_class\": null, \"name\": \"t1_eqtzfjw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe main difference is that I built my knowledge/environment a bit at a time, starting\\nwith little thing and than expand. With Hyperbole I actually fail doing the same. \\nI install it and start looking around, fond nice thing but not a use for them, I try to\\ngo a bit deeper reading the manual, but I do not find it much helpful. Very detailed as\\na reference, but very little useful to a newcomers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith org yes, I spent ours to learn, but my first attempt on org are simple few bit of\\nlisp grabbed from a blog post, and I start really using it. The more that it\\u0026#39;s use grow\\nthe more docs I\\u0026#39;m look for, including the paper version of org 8 manual. If I start with\\nthis very manual... Well probably today I will not use org.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s the whole point: reading \\u0026quot;hyperbole is like the web for you local text docs\\u0026quot; is a\\nsuper-interesting thing, the path to understand it, for me it\\u0026#39;s not such clear and since\\nit\\u0026#39;s age, popularity and cyclic restart of public discussions I think I\\u0026#39;m not alone.\\nProbably a really valuable, landmark project that unfortunately still have to find a way\\nto spread it\\u0026#39;s beauty.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/eqtzfjw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/\", \"report_reasons\": null, \"link_author\": \"sugarbridalsentry\", \"author_flair_text\": null, \"link_url\": \"https://github.com/termitereform/JunkPile/blob/master/HyperboleNotes.org\", \"created\": 1560351004.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqty5eg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560321670.0, \"send_replies\": true, \"parent_id\": \"t1_eqtnbfa\", \"score\": 2, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You can became a surgeon staying together and actual surgeon and see it's daily work, but\\nyou do not really learn enough so sooner or later you'll make disasters. \\\"Starter kits\\\"\\nare the same: you start quickly with ease and pleasure but you do not really know Emacs\\nenough. As a result you start to be productive in Emacs until something brake mostly \\nbecause of ignorance and you are screwed: you do not have enough knowledge to recover and\\nEmacs is now your production environment.\\n\\nOn contrary if you start from standard Emacs and learn Emacs will NOT be your production\\nenvironment so quickly and than when something brake you probably know enough to fix it.\\n\\nYou know we do not start work and after study what we need, we study for a certain amount\\nof years, when we have a family that support us, when we have time and energy and only \\nwhen we have enough knowledge we enter the \\\"work world\\\". Trying to do different with\\nsoftware prove to be a disaster.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqty5eg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can became a surgeon staying together and actual surgeon and see it\\u0026#39;s daily work, but\\nyou do not really learn enough so sooner or later you\\u0026#39;ll make disasters. \\u0026quot;Starter kits\\u0026quot;\\nare the same: you start quickly with ease and pleasure but you do not really know Emacs\\nenough. As a result you start to be productive in Emacs until something brake mostly \\nbecause of ignorance and you are screwed: you do not have enough knowledge to recover and\\nEmacs is now your production environment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn contrary if you start from standard Emacs and learn Emacs will NOT be your production\\nenvironment so quickly and than when something brake you probably know enough to fix it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou know we do not start work and after study what we need, we study for a certain amount\\nof years, when we have a family that support us, when we have time and energy and only \\nwhen we have enough knowledge we enter the \\u0026quot;work world\\u0026quot;. Trying to do different with\\nsoftware prove to be a disaster.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqty5eg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560350470.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtxd4r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560321328.0, \"send_replies\": true, \"parent_id\": \"t1_eqtpy2w\", \"score\": 0, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Emacs itself is a community project with a \\\"whole community\\\" working on it... Also spent\\ntime in learning someone else \\\"curated config\\\" instead to learn the actual tool you use\\nis a way to \\\"fragment\\\" communities and push newcomers away from the upstream.\\n\\n\\\"upstream\\\" does change, but with slow and calculated motions, personal configs, even the\\n\\\"most popular\\\" are far more evanescent so the time spent of them is simply wasted time.\\nTake a look at them, copy part of them you want it's normal, but sitting in the shoulders\\nof another Emacs user simply because it's quick it's like trying to be a surgeon seeing\\nactual surgeons work. You may learn something useful, but you do not really know what \\nhappen and that's sooner or later produce problems.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqtxd4r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEmacs itself is a community project with a \\u0026quot;whole community\\u0026quot; working on it... Also spent\\ntime in learning someone else \\u0026quot;curated config\\u0026quot; instead to learn the actual tool you use\\nis a way to \\u0026quot;fragment\\u0026quot; communities and push newcomers away from the upstream.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;upstream\\u0026quot; does change, but with slow and calculated motions, personal configs, even the\\n\\u0026quot;most popular\\u0026quot; are far more evanescent so the time spent of them is simply wasted time.\\nTake a look at them, copy part of them you want it\\u0026#39;s normal, but sitting in the shoulders\\nof another Emacs user simply because it\\u0026#39;s quick it\\u0026#39;s like trying to be a surgeon seeing\\nactual surgeons work. You may learn something useful, but you do not really know what \\nhappen and that\\u0026#39;s sooner or later produce problems.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqtxd4r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560350128.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtwp8p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560321006.0, \"send_replies\": true, \"parent_id\": \"t1_eqtr38o\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"So it's about religion that most of people are not top-guns, parachutist, divers, \\nastronauts, MDs/PhDs in various field, do not speak tons of languages, master the\\nlaw of their own country etc?\\n\\nI bet not. Many people are simply ignorant, that's because of society, of individual\\ncapacity and stimulus, of poverty etc, not because \\\"they believe in the religion of\\nignorance\\\". We all know that the refrain of empowering people with ease, it's a classic\\nmarketing push by closed source vendors, notably IBM before and Microsoft after and \\nprobably a tons of business software houses. It simply not work and worse, it produce\\ndisasters. Like the actual sorry state of IT.\\n\\nAlso you know how many \\\"programmers\\\" are actually code monkeys that try to keep up with\\nanything that advertise \\\"being God in 24h\\\". And that's the real life. Learning Emacs is\\nnot much different in concept that attend various kind of schools before start a job, we\\ndo not start to pilot a passengers jet simply sit aside a pilot and start to play with\\npedals and stick. Not because airplane makers want to force a certain \\\"hard\\\" path but\\nbecause that's the working way.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqtwp8p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo it\\u0026#39;s about religion that most of people are not top-guns, parachutist, divers, \\nastronauts, MDs/PhDs in various field, do not speak tons of languages, master the\\nlaw of their own country etc?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI bet not. Many people are simply ignorant, that\\u0026#39;s because of society, of individual\\ncapacity and stimulus, of poverty etc, not because \\u0026quot;they believe in the religion of\\nignorance\\u0026quot;. We all know that the refrain of empowering people with ease, it\\u0026#39;s a classic\\nmarketing push by closed source vendors, notably IBM before and Microsoft after and \\nprobably a tons of business software houses. It simply not work and worse, it produce\\ndisasters. Like the actual sorry state of IT.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso you know how many \\u0026quot;programmers\\u0026quot; are actually code monkeys that try to keep up with\\nanything that advertise \\u0026quot;being God in 24h\\u0026quot;. And that\\u0026#39;s the real life. Learning Emacs is\\nnot much different in concept that attend various kind of schools before start a job, we\\ndo not start to pilot a passengers jet simply sit aside a pilot and start to play with\\npedals and stick. Not because airplane makers want to force a certain \\u0026quot;hard\\u0026quot; path but\\nbecause that\\u0026#39;s the working way.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqtwp8p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560349806.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzjx6j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtwo28\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rajasegarc\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560320992.0, \"send_replies\": true, \"parent_id\": \"t3_bzjx6j\", \"score\": 1, \"author_fullname\": \"t2_ue0uaio\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Have you checked out this repository\\n\\n[https://github.com/detailyang/awesome-cheatsheet](https://github.com/detailyang/awesome-cheatsheet)\", \"link_title\": \"Managing \\\"cheatsheets\\\" and other documentation in emacs or org?\", \"author_flair_css_class\": null, \"name\": \"t1_eqtwo28\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave you checked out this repository\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/detailyang/awesome-cheatsheet\\\"\\u003Ehttps://github.com/detailyang/awesome-cheatsheet\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/eqtwo28/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"report_reasons\": null, \"link_author\": \"Jyan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"created\": 1560349792.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzmvrz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtwmv3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"mr_snowf1ake\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560320974.0, \"send_replies\": true, \"parent_id\": \"t3_bzmvrz\", \"score\": 3, \"author_fullname\": \"t2_ehrdy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Looks great! What font are you using? Both the theme and the font come together for a very clean look.\", \"link_title\": \"naysayer-theme.el: Emacs theme inspired by Jonathan Blow's livestreams\", \"author_flair_css_class\": null, \"name\": \"t1_eqtwmv3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks great! What font are you using? Both the theme and the font come together for a very clean look.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzmvrz/naysayerthemeel_emacs_theme_inspired_by_jonathan/eqtwmv3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzmvrz/naysayerthemeel_emacs_theme_inspired_by_jonathan/\", \"report_reasons\": null, \"link_author\": \"twenty393\", \"author_flair_text\": null, \"link_url\": \"https://github.com/nickav/naysayer-theme.el\", \"created\": 1560349774.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtwgve\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yyoncho\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560320902.0, \"send_replies\": true, \"parent_id\": \"t1_eqs7y28\", \"score\": 3, \"author_fullname\": \"t2_4s4u03u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E If your goal is to learn to use Emacs more quickly and be more productive more quickly, then you should use less configuration complexity and learn to use basic Emacs instead, not so much anyone's special configuration of it.\\n\\nReally? You will be more productive more quickly if you start from vanilla than if you start using preconfigured startup kit like Spacemacs which is designed to make the stuff easy to discover and working out of the box?\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqtwgve\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIf your goal is to learn to use Emacs more quickly and be more productive more quickly, then you should use less configuration complexity and learn to use basic Emacs instead, not so much anyone\\u0026#39;s special configuration of it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EReally? You will be more productive more quickly if you start from vanilla than if you start using preconfigured startup kit like Spacemacs which is designed to make the stuff easy to discover and working out of the box?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqtwgve/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560349702.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtvn49\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560320467.0, \"send_replies\": true, \"parent_id\": \"t1_eqtr7yy\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Oracle software does not contain FOSS? Did you know UBL only to name one?\\nDid you try to run a simple ldd and see list of libs.\\n\\nI do not talk about Microsoft Office, but since now it's a web based crapp... Microsoft \\nrun it's services most on FreeBSD and GNU/Linux, so it's still based on FOSS and in \\ngeneral the web and internet are based on FOSS. Think for instance at Bind DNS.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqtvn49\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOracle software does not contain FOSS? Did you know UBL only to name one?\\nDid you try to run a simple ldd and see list of libs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI do not talk about Microsoft Office, but since now it\\u0026#39;s a web based crapp... Microsoft \\nrun it\\u0026#39;s services most on FreeBSD and GNU/Linux, so it\\u0026#39;s still based on FOSS and in \\ngeneral the web and internet are based on FOSS. Think for instance at Bind DNS.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqtvn49/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560349267.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzjx6j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtt3su\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TyrionBean\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560318929.0, \"send_replies\": true, \"parent_id\": \"t3_bzjx6j\", \"score\": 1, \"author_fullname\": \"t2_dmarn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I was actually wondering the same myself. For example: The GNU Emacs cheat sheet is wonderful (a set of 2 sheets) but they are PDF pages. Try to select them and paste them into a text file and...it's a mess. I keep them around in a folder in documents to refer to them easily, but it would be nice to have an Org option for them, or just have them in plain text.\", \"link_title\": \"Managing \\\"cheatsheets\\\" and other documentation in emacs or org?\", \"author_flair_css_class\": null, \"name\": \"t1_eqtt3su\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was actually wondering the same myself. For example: The GNU Emacs cheat sheet is wonderful (a set of 2 sheets) but they are PDF pages. Try to select them and paste them into a text file and...it\\u0026#39;s a mess. I keep them around in a folder in documents to refer to them easily, but it would be nice to have an Org option for them, or just have them in plain text.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/eqtt3su/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"report_reasons\": null, \"link_author\": \"Jyan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"created\": 1560347729.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_by28x5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtt0w3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"roadiereloaded\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1560318881.0, \"send_replies\": true, \"parent_id\": \"t1_eqry740\", \"score\": 1, \"author_fullname\": \"t2_188fofx0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thank you for sharing.\\nI like the buttons too - did they work for what you wanted to do? The genius thing with hyperbole (imo) is that it is NOT a single piece of software like org or office etc but just provides the tools to interlink all the docs I have scattered around the HD's and Internets. But I think you are right, it's scary and frustrating for some people. ... I mean, what does it do? How am I supposed to use it??? Maybe Org is more like IKEA and Hyperbole like a toolbox. But I never used Org so its just my opinion.\", \"link_title\": \"My GNU Hyperbole Vision Quest; or, Jupiter and Beyond the Infinite\", \"author_flair_css_class\": null, \"name\": \"t1_eqtt0w3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for sharing.\\nI like the buttons too - did they work for what you wanted to do? The genius thing with hyperbole (imo) is that it is NOT a single piece of software like org or office etc but just provides the tools to interlink all the docs I have scattered around the HD\\u0026#39;s and Internets. But I think you are right, it\\u0026#39;s scary and frustrating for some people. ... I mean, what does it do? How am I supposed to use it??? Maybe Org is more like IKEA and Hyperbole like a toolbox. But I never used Org so its just my opinion.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/eqtt0w3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/\", \"report_reasons\": null, \"link_author\": \"sugarbridalsentry\", \"author_flair_text\": null, \"link_url\": \"https://github.com/termitereform/JunkPile/blob/master/HyperboleNotes.org\", \"created\": 1560347681.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz1w43\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtsboo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ibizaman\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560318409.0, \"send_replies\": true, \"parent_id\": \"t3_bz1w43\", \"score\": 1, \"author_fullname\": \"t2_sxb1k\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"If you put your tasks in a Makefile, this combined with projectile could do it: https://github.com/thiderman/makefile-executor.el\", \"link_title\": \"Task Runner\", \"author_flair_css_class\": null, \"name\": \"t1_eqtsboo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you put your tasks in a Makefile, this combined with projectile could do it: \\u003Ca href=\\\"https://github.com/thiderman/makefile-executor.el\\\"\\u003Ehttps://github.com/thiderman/makefile-executor.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz1w43/task_runner/eqtsboo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz1w43/task_runner/\", \"report_reasons\": null, \"link_author\": \"omgitsjoao\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz1w43/task_runner/\", \"created\": 1560347209.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtr7yy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WalterGR\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560317661.0, \"send_replies\": true, \"parent_id\": \"t1_eqs0q92\", \"score\": 1, \"author_fullname\": \"t2_3c1ug\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Take a look at today status: there is essentially nearly no commercial product that does not root itself or at least significantly depend on FOSS code.\\n\\nMicrosoft Windows.\\n\\nMicrosoft Word.\\n\\nMicrosoft Excel.\\n\\nMicrosoft Outlook.\\n\\nAnything Oracle.\\n\\nAnything SAS.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqtr7yy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ETake a look at today status: there is essentially nearly no commercial product that does not root itself or at least significantly depend on FOSS code.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMicrosoft Windows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMicrosoft Word.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMicrosoft Excel.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMicrosoft Outlook.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnything Oracle.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnything SAS.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqtr7yy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560346461.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560318113.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtr38o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WalterGR\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560317573.0, \"send_replies\": true, \"parent_id\": \"t1_eqsl8no\", \"score\": 2, \"author_fullname\": \"t2_3c1ug\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E If you expect the masses, people that buy pre-installed desktops at nearest shop use Emacs well... Then instead of a super-environment Emacs should became a crappy app for brainless users. That's the nature.\\n\\nTotally.\\n\\nSane defaults are basically \\\"blub\\\" defaults, when you recognize how much power Emacs has.\\n\\nAnd we all know about blub languages, and therefore blub developers.\\n\\nAnd the *very definition* of non-blub is anyone who accepts stock Emacs whole-heartedly, without any expectations or reservations.\\n\\nThe only non-blub way is to let go and accept Emacs whole-heartedly.\\n\\nBut this is a *technical* thing, not a religious thing.\\n\\nTo be clear.\\n\\nI'm sure that goes without mentioning.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqtr38o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIf you expect the masses, people that buy pre-installed desktops at nearest shop use Emacs well... Then instead of a super-environment Emacs should became a crappy app for brainless users. That\\u0026#39;s the nature.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETotally.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESane defaults are basically \\u0026quot;blub\\u0026quot; defaults, when you recognize how much power Emacs has.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd we all know about blub languages, and therefore blub developers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd the \\u003Cem\\u003Every definition\\u003C/em\\u003E of non-blub is anyone who accepts stock Emacs whole-heartedly, without any expectations or reservations.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe only non-blub way is to let go and accept Emacs whole-heartedly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut this is a \\u003Cem\\u003Etechnical\\u003C/em\\u003E thing, not a religious thing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo be clear.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sure that goes without mentioning.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqtr38o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560346373.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzg7fp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtr1s7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"aidansch\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560317544.0, \"send_replies\": true, \"parent_id\": \"t1_eqsx3ok\", \"score\": 2, \"author_fullname\": \"t2_2bvnyi6g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There certainly are autocompletion mechanisms out there for inserting LaTeX symbols but I have no experience with them. I found this discussion of them:\\n\\n[https://emacs.stackexchange.com/questions/5938/how-to-make-auto-complete-work-in-auctex-mode](https://emacs.stackexchange.com/questions/5938/how-to-make-auto-complete-work-in-auctex-mode)\\n\\nIt is also useful to have key sequences that quickly insert the ones you use most commonly.\", \"link_title\": \"Inserting LaTeX symbols in comfort\", \"author_flair_css_class\": null, \"name\": \"t1_eqtr1s7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere certainly are autocompletion mechanisms out there for inserting LaTeX symbols but I have no experience with them. I found this discussion of them:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://emacs.stackexchange.com/questions/5938/how-to-make-auto-complete-work-in-auctex-mode\\\"\\u003Ehttps://emacs.stackexchange.com/questions/5938/how-to-make-auto-complete-work-in-auctex-mode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is also useful to have key sequences that quickly insert the ones you use most commonly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/eqtr1s7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/\", \"report_reasons\": null, \"link_author\": \"aidansch\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/\", \"created\": 1560346344.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtpy2w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"didibus\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560316798.0, \"send_replies\": true, \"parent_id\": \"t1_eqrhmud\", \"score\": 2, \"author_fullname\": \"t2_4xpocx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I disagree. Starter Kits are just Emacs after all. Just as easy to modify and adapt to your liking.\\n\\nNot sure if you should start with one though. In fact, maybe starter kit is the wrong term. They're more like I've plateaued what I could think of and configure on my own, and now I want the power of a whole community working on the config.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqtpy2w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI disagree. Starter Kits are just Emacs after all. Just as easy to modify and adapt to your liking.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot sure if you should start with one though. In fact, maybe starter kit is the wrong term. They\\u0026#39;re more like I\\u0026#39;ve plateaued what I could think of and configure on my own, and now I want the power of a whole community working on the config.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqtpy2w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560345598.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtplh3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"didibus\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560316564.0, \"send_replies\": true, \"parent_id\": \"t3_bzbozv\", \"score\": 0, \"author_fullname\": \"t2_4xpocx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes, it supports all of them.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqtplh3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, it supports all of them.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqtplh3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560345364.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzmvrz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqto1ss\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tbarge1038\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560315543.0, \"send_replies\": true, \"parent_id\": \"t3_bzmvrz\", \"score\": 2, \"author_fullname\": \"t2_dfr3c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You have no idea how long I\\u2019ve been hoping for a theme closer to the one he uses on stream! I found the \\u201covercast\\u201d theme to be good enough for government work, but this looks even better!\", \"link_title\": \"naysayer-theme.el: Emacs theme inspired by Jonathan Blow's livestreams\", \"author_flair_css_class\": null, \"name\": \"t1_eqto1ss\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou have no idea how long I\\u2019ve been hoping for a theme closer to the one he uses on stream! I found the \\u201covercast\\u201d theme to be good enough for government work, but this looks even better!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzmvrz/naysayerthemeel_emacs_theme_inspired_by_jonathan/eqto1ss/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzmvrz/naysayerthemeel_emacs_theme_inspired_by_jonathan/\", \"report_reasons\": null, \"link_author\": \"twenty393\", \"author_flair_text\": null, \"link_url\": \"https://github.com/nickav/naysayer-theme.el\", \"created\": 1560344343.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtnbfa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yyoncho\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560315074.0, \"send_replies\": true, \"parent_id\": \"t1_eqrhmud\", \"score\": 3, \"author_fullname\": \"t2_4s4u03u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This very personal position is the common position in r/vim and r/emacs (a. k. a. NIH syndrome). The reality is that you could build your own house starting from probably any(?) startup kit and I would speculate that it will take you less time for achieving similar results. The time you would spend studying that particular startup kit is insignificant compared to the time you would spend learning emacs...\\n\\n\\u003E Think only about way Spacemacs handle pkgs and eventual (regular) bugs when you try to install something by yourself.\\n\\nWhat are you talking about? Assuming that you are using `package.el` you will be able to handle the packages the same way you are doing this right now. Even more, with few minor adjustments, you will be able to load your custom config on top of spacemacs. If you are talking about layers they are not mandatory...\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqtnbfa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis very personal position is the common position in \\u003Ca href=\\\"/r/vim\\\"\\u003Er/vim\\u003C/a\\u003E and \\u003Ca href=\\\"/r/emacs\\\"\\u003Er/emacs\\u003C/a\\u003E (a. k. a. NIH syndrome). The reality is that you could build your own house starting from probably any(?) startup kit and I would speculate that it will take you less time for achieving similar results. The time you would spend studying that particular startup kit is insignificant compared to the time you would spend learning emacs...\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThink only about way Spacemacs handle pkgs and eventual (regular) bugs when you try to install something by yourself.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhat are you talking about? Assuming that you are using \\u003Ccode\\u003Epackage.el\\u003C/code\\u003E you will be able to handle the packages the same way you are doing this right now. Even more, with few minor adjustments, you will be able to load your custom config on top of spacemacs. If you are talking about layers they are not mandatory...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqtnbfa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560343874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_by28x5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtji2b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rswgnu\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1560312879.0, \"send_replies\": true, \"parent_id\": \"t1_eqjqbva\", \"score\": 1, \"author_fullname\": \"t2_zxjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You posts are super interesting for all the details you provide of your extensive information management workflow that you have tailored to your needs while you claim that people have no time and expect to learn what they know is a large set of capabilities within a few minutes of being exposed to them. I think a huge number of technical people continue to read as well. Info mode works great when you want to learn something with a bit of detail. Blog posts are helpful often as introductions but are not the ways people become productive with professional toolsets.\\n\\nArguing over Org mode vs Hyperbole is like Mercedes and BMW owners arguing over who has the better shifter while most other people are riding around in Yugos with no airbags. You are in the daily information management 1% whether you like it or not and Hyperbole although potentially helpful to someone like you is designed more for those who want to get there but have to leave their Yugos on the side of the road first.\", \"link_title\": \"My GNU Hyperbole Vision Quest; or, Jupiter and Beyond the Infinite\", \"author_flair_css_class\": null, \"name\": \"t1_eqtji2b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou posts are super interesting for all the details you provide of your extensive information management workflow that you have tailored to your needs while you claim that people have no time and expect to learn what they know is a large set of capabilities within a few minutes of being exposed to them. I think a huge number of technical people continue to read as well. Info mode works great when you want to learn something with a bit of detail. Blog posts are helpful often as introductions but are not the ways people become productive with professional toolsets.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EArguing over Org mode vs Hyperbole is like Mercedes and BMW owners arguing over who has the better shifter while most other people are riding around in Yugos with no airbags. You are in the daily information management 1% whether you like it or not and Hyperbole although potentially helpful to someone like you is designed more for those who want to get there but have to leave their Yugos on the side of the road first.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/eqtji2b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/\", \"report_reasons\": null, \"link_author\": \"sugarbridalsentry\", \"author_flair_text\": null, \"link_url\": \"https://github.com/termitereform/JunkPile/blob/master/HyperboleNotes.org\", \"created\": 1560341679.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_by28x5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqthv0u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rswgnu\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1560311977.0, \"send_replies\": true, \"parent_id\": \"t1_eqiipwl\", \"score\": 1, \"author_fullname\": \"t2_zxjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003EI dislike the \\\"wizard\\\" approach\\n\\nIf by 'wizard approach', you mean that Hyperbole figures out what to do and it does it while you just tell it to 'act' in many contexts, that certainly requires a bit of letting go, but that is what computers were really built for, to extend our own capabilities. In any context you can always press {C-h A} to see exactly what Hyperbole's Action Key will do there. I think it is the only system that lets you see how hyperbuttons will behave before you activate them instead of after, increasing your security and allowing you to learn a bit at a time. Buttons may also be embedded in email and the same key works there too.\", \"link_title\": \"My GNU Hyperbole Vision Quest; or, Jupiter and Beyond the Infinite\", \"author_flair_css_class\": null, \"name\": \"t1_eqthv0u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI dislike the \\u0026quot;wizard\\u0026quot; approach\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIf by \\u0026#39;wizard approach\\u0026#39;, you mean that Hyperbole figures out what to do and it does it while you just tell it to \\u0026#39;act\\u0026#39; in many contexts, that certainly requires a bit of letting go, but that is what computers were really built for, to extend our own capabilities. In any context you can always press {C-h A} to see exactly what Hyperbole\\u0026#39;s Action Key will do there. I think it is the only system that lets you see how hyperbuttons will behave before you activate them instead of after, increasing your security and allowing you to learn a bit at a time. Buttons may also be embedded in email and the same key works there too.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/eqthv0u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/\", \"report_reasons\": null, \"link_author\": \"sugarbridalsentry\", \"author_flair_text\": null, \"link_url\": \"https://github.com/termitereform/JunkPile/blob/master/HyperboleNotes.org\", \"created\": 1560340777.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_by28x5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqth9or\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rswgnu\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1560311654.0, \"send_replies\": true, \"parent_id\": \"t1_eqhncn1\", \"score\": 1, \"author_fullname\": \"t2_zxjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003EThanks, I tried yesterday evening but... Well I still not see a point... Did you have tried linkmarks? \\n\\nI took a quick look at Linkmarks and it appears it just reimplemented a some of Hyperbole global/explicit button capabilities for Org mode. This is of course useful but not anything that is better or more extensive than Hyperbole's capabilities in terms of links and buttons. The helm interface no doubt is good and that is something we should get done for Hyperbole too.\\n\\nAs we have said many times, if you use Org mode for many things just continue doing so. If it is sufficient then stop. If it is insufficient, you might choose to \\\\*combine\\\\* Hyperbole with it to gain additional functionalities like the extensive implicit buttons.\", \"link_title\": \"My GNU Hyperbole Vision Quest; or, Jupiter and Beyond the Infinite\", \"author_flair_css_class\": null, \"name\": \"t1_eqth9or\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThanks, I tried yesterday evening but... Well I still not see a point... Did you have tried linkmarks? \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI took a quick look at Linkmarks and it appears it just reimplemented a some of Hyperbole global/explicit button capabilities for Org mode. This is of course useful but not anything that is better or more extensive than Hyperbole\\u0026#39;s capabilities in terms of links and buttons. The helm interface no doubt is good and that is something we should get done for Hyperbole too.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs we have said many times, if you use Org mode for many things just continue doing so. If it is sufficient then stop. If it is insufficient, you might choose to *combine* Hyperbole with it to gain additional functionalities like the extensive implicit buttons.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/eqth9or/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/\", \"report_reasons\": null, \"link_author\": \"sugarbridalsentry\", \"author_flair_text\": null, \"link_url\": \"https://github.com/termitereform/JunkPile/blob/master/HyperboleNotes.org\", \"created\": 1560340454.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9rxn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtdexh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xu_chunyang\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1560309190.0, \"send_replies\": true, \"parent_id\": \"t1_eqt0z1f\", \"score\": 2, \"author_fullname\": \"t2_rxvm883\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"No, it stops loading the init file right now. For example the following init file won't omit an error even it contains errors.\\n\\n (message \\\"Loading my init file\\\")\\n \\n (with-current-buffer \\\" *load*\\\"\\n (goto-char (point-max)))\\n \\n (this will not run!)\\n\\nThe following maybe does what you described\\n\\n (with-current-buffer \\\" *load*\\\"\\n (add-hook\\n 'kill-buffer-hook\\n (lambda ()\\n (unless (eobp)\\n (let ((p (point)))\\n (with-current-buffer (find-file-noselect user-init-file)\\n (goto-char p)))))\\n t t))\\n\\nHowever, you should use the Lisp debugger instead with --debug-init, it will tell you the error and explain what's wrong with it.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eqtdexh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, it stops loading the init file right now. For example the following init file won\\u0026#39;t omit an error even it contains errors.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(message \\u0026quot;Loading my init file\\u0026quot;)\\n\\n(with-current-buffer \\u0026quot; *load*\\u0026quot;\\n (goto-char (point-max)))\\n\\n(this will not run!)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe following maybe does what you described\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(with-current-buffer \\u0026quot; *load*\\u0026quot;\\n (add-hook\\n \\u0026#39;kill-buffer-hook\\n (lambda ()\\n (unless (eobp)\\n (let ((p (point)))\\n (with-current-buffer (find-file-noselect user-init-file)\\n (goto-char p)))))\\n t t))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHowever, you should use the Lisp debugger instead with --debug-init, it will tell you the error and explain what\\u0026#39;s wrong with it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/eqtdexh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"created\": 1560337990.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqt9brx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"defunErgodic\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560305793.0, \"send_replies\": true, \"parent_id\": \"t3_bzbozv\", \"score\": 1, \"author_fullname\": \"t2_1208tx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Check out [Web-mode](http://web-mode.org/). It can support these languages and many web templates, even being able to edit them in the same buffer, without using polytope.\\n\\n\\u0026#x200B;\\n\\nAlso try those:\\n\\n* `js2-mode` is a major mode for javascript, offering a more specialized option than web-mode.\\n* Both `skewer` and `impatient mode` provide live interaction.\\n* `rainbow-mode` is a native minor mode that colorize strings that represent colors. (i.e. blue is highlighted in blue, #FFFFFF in white, etc). Can be useful in CSS editing.\\n* `Company-web` gives you auto-completion in web-mode and others. And `web-mode-edit-element-minor-mode` can enhance element handling in web-mode.\\n* `xah-html-mode` are some options for editing raw html, and `emmet-mode` improves your workflow.\\n\\nAnd for some general Emacs recommendations, there is:\\n\\n* A good font does wonders for Emacs, and with variable pitch (`variable-pitch-mode`) you can switch from a monospaced to proportional font wherever you want. This helps if you are editing plain text.\\n* [Narrowing](https://www.gnu.org/software/emacs/manual/html_node/emacs/Narrowing.html) can be pretty useful in some occasions.\\n* Set up a folder for backups through `backup-directory-alist` if you want, otherwise keep them alongside your files.\\n* Check out the wiki for more.\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqt9brx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECheck out \\u003Ca href=\\\"http://web-mode.org/\\\"\\u003EWeb-mode\\u003C/a\\u003E. It can support these languages and many web templates, even being able to edit them in the same buffer, without using polytope.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso try those:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003Ejs2-mode\\u003C/code\\u003E is a major mode for javascript, offering a more specialized option than web-mode.\\u003C/li\\u003E\\n\\u003Cli\\u003EBoth \\u003Ccode\\u003Eskewer\\u003C/code\\u003E and \\u003Ccode\\u003Eimpatient mode\\u003C/code\\u003E provide live interaction.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003Erainbow-mode\\u003C/code\\u003E is a native minor mode that colorize strings that represent colors. (i.e. blue is highlighted in blue, #FFFFFF in white, etc). Can be useful in CSS editing.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003ECompany-web\\u003C/code\\u003E gives you auto-completion in web-mode and others. And \\u003Ccode\\u003Eweb-mode-edit-element-minor-mode\\u003C/code\\u003E can enhance element handling in web-mode.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003Exah-html-mode\\u003C/code\\u003E are some options for editing raw html, and \\u003Ccode\\u003Eemmet-mode\\u003C/code\\u003E improves your workflow.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAnd for some general Emacs recommendations, there is:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EA good font does wonders for Emacs, and with variable pitch (\\u003Ccode\\u003Evariable-pitch-mode\\u003C/code\\u003E) you can switch from a monospaced to proportional font wherever you want. This helps if you are editing plain text.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/emacs/Narrowing.html\\\"\\u003ENarrowing\\u003C/a\\u003E can be pretty useful in some occasions.\\u003C/li\\u003E\\n\\u003Cli\\u003ESet up a folder for backups through \\u003Ccode\\u003Ebackup-directory-alist\\u003C/code\\u003E if you want, otherwise keep them alongside your files.\\u003C/li\\u003E\\n\\u003Cli\\u003ECheck out the wiki for more.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqt9brx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560334593.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqt7m8c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"StrangeAstronomer\", \"num_comments\": 63, \"can_mod_post\": false, \"created_utc\": 1560304416.0, \"send_replies\": true, \"parent_id\": \"t1_eqgrean\", \"score\": 1, \"author_fullname\": \"t2_1rydgv7x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"After a few days of having key-chords it has earned a permanent place in my config - thank you!\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eqt7m8c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter a few days of having key-chords it has earned a permanent place in my config - thank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eqt7m8c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1560333216.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560301930.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzbozv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqt3uq4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ToastedJcaw\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1560301432.0, \"send_replies\": true, \"parent_id\": \"t1_eqs08kg\", \"score\": 1, \"author_fullname\": \"t2_3wvmuhbm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003EMh, personally I do not see any hemorrhage in Emacs land, the contrary I see a rise of newcomers, many simply tired by limit and restrains of modern environments...\\n\\nEmacs has been in dramatic userbase decline for years. Look at the Google trends:\\n\\n[https://trends.google.com/trends/explore?date=all\\u0026geo=US\\u0026q=%2Fm%2F01yp0m](https://trends.google.com/trends/explore?date=all\\u0026geo=US\\u0026q=%2Fm%2F01yp0m)\\n\\nThat's by topic, *not* search term. Compare to VSCode if you want to die inside:\\n\\n[https://trends.google.com/trends/explore?date=today%205-y\\u0026geo=US\\u0026q=%2Fm%2F0134xwrk,%2Fm%2F01yp0m](https://trends.google.com/trends/explore?date=today%205-y\\u0026geo=US\\u0026q=%2Fm%2F0134xwrk,%2Fm%2F01yp0m)\", \"link_title\": \"Multiple language support?\", \"author_flair_css_class\": null, \"name\": \"t1_eqt3uq4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EMh, personally I do not see any hemorrhage in Emacs land, the contrary I see a rise of newcomers, many simply tired by limit and restrains of modern environments...\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EEmacs has been in dramatic userbase decline for years. Look at the Google trends:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://trends.google.com/trends/explore?date=all\\u0026amp;geo=US\\u0026amp;q=%2Fm%2F01yp0m\\\"\\u003Ehttps://trends.google.com/trends/explore?date=all\\u0026amp;geo=US\\u0026amp;q=%2Fm%2F01yp0m\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s by topic, \\u003Cem\\u003Enot\\u003C/em\\u003E search term. Compare to VSCode if you want to die inside:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://trends.google.com/trends/explore?date=today%205-y\\u0026amp;geo=US\\u0026amp;q=%2Fm%2F0134xwrk,%2Fm%2F01yp0m\\\"\\u003Ehttps://trends.google.com/trends/explore?date=today%205-y\\u0026amp;geo=US\\u0026amp;q=%2Fm%2F0134xwrk,%2Fm%2F01yp0m\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/eqt3uq4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"report_reasons\": null, \"link_author\": \"Mosquite_Leaf\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"created\": 1560330232.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byvov4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqt0zs8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1560299177.0, \"send_replies\": true, \"parent_id\": \"t1_eqs5m0s\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Nonsense. These silly, mindless chains are useless noise. There's plenty of other subreddits for them.\\n\\nActual humor is funny.\", \"link_title\": \"Why You Should Buy Into the Emacs Platform\", \"author_flair_css_class\": null, \"name\": \"t1_eqt0zs8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENonsense. These silly, mindless chains are useless noise. There\\u0026#39;s plenty of other subreddits for them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EActual humor is funny.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/byvov4/why_you_should_buy_into_the_emacs_platform/eqt0zs8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/byvov4/why_you_should_buy_into_the_emacs_platform/\", \"report_reasons\": null, \"link_author\": \"rajasegarc\", \"author_flair_text\": null, \"link_url\": \"https://two-wrongs.com/why-you-should-buy-into-the-emacs-platform\", \"created\": 1560327977.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9rxn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqt0z1f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ReneFroger\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1560299160.0, \"send_replies\": true, \"parent_id\": \"t1_eqregrz\", \"score\": 2, \"author_fullname\": \"t2_dnrz4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"So when you have an error in your init file, it points where the error is located without breaking things?\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eqt0z1f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo when you have an error in your init file, it points where the error is located without breaking things?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/eqt0z1f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"created\": 1560327960.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byv08z\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqsxdl4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"npostavs\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560296357.0, \"send_replies\": true, \"parent_id\": \"t1_eqnx6eu\", \"score\": 1, \"author_fullname\": \"t2_5ha0gu1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"SXEmacs isn't a window manager, it's a fork of XEmacs.\", \"link_title\": \"EXWM alternative for those that can't use it\", \"author_flair_css_class\": null, \"name\": \"t1_eqsxdl4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESXEmacs isn\\u0026#39;t a window manager, it\\u0026#39;s a fork of XEmacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/byv08z/exwm_alternative_for_those_that_cant_use_it/eqsxdl4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/byv08z/exwm_alternative_for_those_that_cant_use_it/\", \"report_reasons\": null, \"link_author\": \"cshurtsmybrain\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/byv08z/exwm_alternative_for_those_that_cant_use_it/\", \"created\": 1560325157.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzg7fp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqsx3ok\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ibizaman\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560296144.0, \"send_replies\": true, \"parent_id\": \"t3_bzg7fp\", \"score\": 1, \"author_fullname\": \"t2_sxb1k\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have admittedly no experience with writing LaTeX in Emacs but what about autocompletion? For example writing \\\"f\\\" then pressing tab could provide a list of choices to autocomplete from.\", \"link_title\": \"Inserting LaTeX symbols in comfort\", \"author_flair_css_class\": null, \"name\": \"t1_eqsx3ok\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have admittedly no experience with writing LaTeX in Emacs but what about autocompletion? For example writing \\u0026quot;f\\u0026quot; then pressing tab could provide a list of choices to autocomplete from.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/eqsx3ok/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/\", \"report_reasons\": null, \"link_author\": \"aidansch\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/\", \"created\": 1560324944.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzdmax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqswx91\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"00-11\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1560296003.0, \"send_replies\": true, \"parent_id\": \"t3_bzdmax\", \"score\": 1, \"author_fullname\": \"t2_3upsyt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"@oantolin answered wrt what `M-f` does. \\n\\nIf you instead want to move to the *beginning* of the next or the previous word you can use `fw-to-next-thing` and `fw-to-previous-thing`, from library [Find Where](https://www.emacswiki.org/emacs/FindWhere). \\n\\nThe first time (only) that you use one of them it asks for the THING type you want: type `word` (with completion), since you want to move to word beginnings.\\n\\nIf even entering `word` once is too much trouble, just define your own move-to-word-beginning commands (and bind them to keys, if you want), like this (after doing `(require 'find-where)`):\\n\\n (defun to-next-word (\\u0026optional n)\\n \\\"Move to start of Nth next word (default first).\\\"\\n (interactive \\\"p\\\")\\n (fw-to-next-thing 'word (point) n nil nil t))\\n\\n (defun to-previous-word (\\u0026optional n)\\n \\\"Move to start of Nth previous word (default first).\\\"\\n (interactive \\\"p\\\")\\n (fw-to-previous-thing 'word (point) n nil nil t))\", \"link_title\": \"Understanding M-f movement pattern\", \"author_flair_css_class\": null, \"name\": \"t1_eqswx91\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E@oantolin answered wrt what \\u003Ccode\\u003EM-f\\u003C/code\\u003E does. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you instead want to move to the \\u003Cem\\u003Ebeginning\\u003C/em\\u003E of the next or the previous word you can use \\u003Ccode\\u003Efw-to-next-thing\\u003C/code\\u003E and \\u003Ccode\\u003Efw-to-previous-thing\\u003C/code\\u003E, from library \\u003Ca href=\\\"https://www.emacswiki.org/emacs/FindWhere\\\"\\u003EFind Where\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first time (only) that you use one of them it asks for the THING type you want: type \\u003Ccode\\u003Eword\\u003C/code\\u003E (with completion), since you want to move to word beginnings.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf even entering \\u003Ccode\\u003Eword\\u003C/code\\u003E once is too much trouble, just define your own move-to-word-beginning commands (and bind them to keys, if you want), like this (after doing \\u003Ccode\\u003E(require \\u0026#39;find-where)\\u003C/code\\u003E):\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun to-next-word (\\u0026amp;optional n)\\n \\u0026quot;Move to start of Nth next word (default first).\\u0026quot;\\n (interactive \\u0026quot;p\\u0026quot;)\\n (fw-to-next-thing \\u0026#39;word (point) n nil nil t))\\n\\n(defun to-previous-word (\\u0026amp;optional n)\\n \\u0026quot;Move to start of Nth previous word (default first).\\u0026quot;\\n (interactive \\u0026quot;p\\u0026quot;)\\n (fw-to-previous-thing \\u0026#39;word (point) n nil nil t))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzdmax/understanding_mf_movement_pattern/eqswx91/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzdmax/understanding_mf_movement_pattern/\", \"report_reasons\": null, \"link_author\": \"Sewing31\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzdmax/understanding_mf_movement_pattern/\", \"created\": 1560324803.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzdmax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqswjv2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"npostavs\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1560295715.0, \"send_replies\": true, \"parent_id\": \"t1_eqs5thr\", \"score\": 1, \"author_fullname\": \"t2_5ha0gu1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E print_(\\\"_Hello_\\\")_\\n\\u003E\\n\\u003E I prefer that.\\n\\n`forward-same-syntax` might work for you.\", \"link_title\": \"Understanding M-f movement pattern\", \"author_flair_css_class\": null, \"name\": \"t1_eqswjv2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eprint_(\\u0026quot;_Hello_\\u0026quot;)_\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI prefer that.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eforward-same-syntax\\u003C/code\\u003E might work for you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bzdmax/understanding_mf_movement_pattern/eqswjv2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bzdmax/understanding_mf_movement_pattern/\", \"report_reasons\": null, \"link_author\": \"Sewing31\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bzdmax/understanding_mf_movement_pattern/\", \"created\": 1560324515.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9rxn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqsw8wo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"npostavs\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1560295480.0, \"send_replies\": true, \"parent_id\": \"t1_eqregrz\", \"score\": 3, \"author_fullname\": \"t2_5ha0gu1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I prefer `(keyboard-quit)` for this, which produces a signal, but using the `quit` symbol which isn't an error, so doesn't trigger the debugger.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eqsw8wo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI prefer \\u003Ccode\\u003E(keyboard-quit)\\u003C/code\\u003E for this, which produces a signal, but using the \\u003Ccode\\u003Equit\\u003C/code\\u003E symbol which isn\\u0026#39;t an error, so doesn\\u0026#39;t trigger the debugger.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/eqsw8wo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"created\": 1560324280.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}], \"after\": \"t1_eqsw8wo\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["274265"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:21 GMT"], "x-ratelimit-remaining": ["598.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["2"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360200.483032,VS0,VE613"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["400"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-12T17:23:21"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_eqwo359"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:21 GMT"], "x-ratelimit-remaining": ["597.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["3"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360202.811916,VS0,VE98"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["399"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_eqwo359"}, "recorded_at": "2019-06-12T17:23:21"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I would like to have an interactive preview for imenu similar to what swiper has, that is, when I'm browsing through the imenu canditates, the buffer position would update automatically to show the currently selected candidate.\\n\\nDoes something like this already exist, or would I need to implement this myself?\", \"author_fullname\": \"t2_5sffy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Preview for imenu\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_bzt74m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560385147.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to have an interactive preview for imenu similar to what swiper has, that is, when I\\u0026#39;m browsing through the imenu canditates, the buffer position would update automatically to show the currently selected candidate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes something like this already exist, or would I need to implement this myself?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzt74m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NAb_\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bzt74m/preview_for_imenu/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bzt74m/preview_for_imenu/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560356347.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Found these nice emacs feature, but after opening a file over ssh with tramp and calling project-find-file I get the following:\\n\\nfind: \\u2018/ssh:admin@x.x.x.x:/home/foo/project/\\u2019: No such file or directory\\n\\nDoes someone has it working?\", \"author_fullname\": \"t2_3w29qs3c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"project-find-file over tramp, is it supported?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_bzsnd0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560382366.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFound these nice emacs feature, but after opening a file over ssh with tramp and calling project-find-file I get the following:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Efind: \\u2018/ssh:\\u003Ca href=\\\"mailto:admin@x.x.x.x\\\"\\u003Eadmin@x.x.x.x\\u003C/a\\u003E:/home/foo/project/\\u2019: No such file or directory\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes someone has it working?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzsnd0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"clojure-noob\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bzsnd0/projectfindfile_over_tramp_is_it_supported/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bzsnd0/projectfindfile_over_tramp_is_it_supported/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560353566.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_6zxya\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I change the background colour of which-key / which-key posframe\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzrkyu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"purple\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560376834.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"GNU Emacs\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzrkyu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"xircon\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/bzrkyu/how_can_i_change_the_background_colour_of/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/faop1bv9mx331.png\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560348034.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I know about `helm-run-external-script` but I don't know how to make helm run extrernal scripts\", \"author_fullname\": \"t2_3ixmiy8z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make helm run an external script like dmenu?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzq3m4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560368131.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know about \\u003Ccode\\u003Ehelm-run-external-script\\u003C/code\\u003E but I don\\u0026#39;t know how to make helm run extrernal scripts\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzq3m4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"forppinrange\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bzq3m4/how_to_make_helm_run_an_external_script_like_dmenu/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bzq3m4/how_to_make_helm_run_an_external_script_like_dmenu/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560339331.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello! I started a meetup group in Princeton, NJ for anyone who uses Emacs or even remotely interested in learning more. Emacsers of all experience levels are welcomed - from just starting out all the way to Elisp pros. We also welcome anyone who uses other editors and just wants to learn more about Emacs. :) \\n\\n\\u0026#x200B;\\n\\nOur first meetup is Monday, June 17, 2019 in Princeton, NJ.\\n\\n[https://www.meetup.com/Princeton-Emacs/events/261616342/](https://www.meetup.com/Princeton-Emacs/events/261616342/)\", \"author_fullname\": \"t2_pdmko\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Princeton, NJ Emacs Meetup, June 17, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzn11k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560344985.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello! I started a meetup group in Princeton, NJ for anyone who uses Emacs or even remotely interested in learning more. Emacsers of all experience levels are welcomed - from just starting out all the way to Elisp pros. We also welcome anyone who uses other editors and just wants to learn more about Emacs. :) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur first meetup is Monday, June 17, 2019 in Princeton, NJ.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.meetup.com/Princeton-Emacs/events/261616342/\\\"\\u003Ehttps://www.meetup.com/Princeton-Emacs/events/261616342/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzn11k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jonathanchu\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bzn11k/princeton_nj_emacs_meetup_june_17_2019/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bzn11k/princeton_nj_emacs_meetup_june_17_2019/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560316185.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_dy7d0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"naysayer-theme.el: Emacs theme inspired by Jonathan Blow's livestreams\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzmvrz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 42, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 42, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560343968.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzmvrz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"twenty393\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bzmvrz/naysayerthemeel_emacs_theme_inspired_by_jonathan/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/nickav/naysayer-theme.el\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560315168.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"There are a lot of cheatsheets for various programming languages and frameworks out there, i.e. \\\\[python,\\\\]([https://gto76.github.io/python-cheatsheet/](https://gto76.github.io/python-cheatsheet/)), \\\\[scipy ecosystem etc,\\\\]([https://www.datacamp.com/community/data-science-cheatsheets](https://www.datacamp.com/community/data-science-cheatsheets)) \\\\[another example.\\\\]([https://www.analyticsvidhya.com/blog/2017/02/top-28-cheat-sheets-for-machine-learning-data-science-probability-sql-big-data/](https://www.analyticsvidhya.com/blog/2017/02/top-28-cheat-sheets-for-machine-learning-data-science-probability-sql-big-data/))\\n\\n\\u0026#x200B;\\n\\nThese are cool, but they are almost always in pdf format. This makes them look nice, but isn't necessarily practically useful (i.e. they aren't searchable, usually require using the mouse, etc.). Are there any packages or repositories for keeping track of similarly styled information (quick references for common tasks) built around emacs, or otherwise plain text?\\n\\n\\u0026#x200B;\\n\\nI think I am going to start writing down my own reference card in org-mode and then just bind a key to open it, but am looking to see if there is another canonical solution out there. Can this kind of thing be integrated effectively with the emacs built in help docs?\", \"author_fullname\": \"t2_4wbfj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Managing \\\"cheatsheets\\\" and other documentation in emacs or org?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzjx6j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560325364.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere are a lot of cheatsheets for various programming languages and frameworks out there, i.e. [python,](\\u003Ca href=\\\"https://gto76.github.io/python-cheatsheet/\\\"\\u003Ehttps://gto76.github.io/python-cheatsheet/\\u003C/a\\u003E), [scipy ecosystem etc,](\\u003Ca href=\\\"https://www.datacamp.com/community/data-science-cheatsheets\\\"\\u003Ehttps://www.datacamp.com/community/data-science-cheatsheets\\u003C/a\\u003E) [another example.](\\u003Ca href=\\\"https://www.analyticsvidhya.com/blog/2017/02/top-28-cheat-sheets-for-machine-learning-data-science-probability-sql-big-data/\\\"\\u003Ehttps://www.analyticsvidhya.com/blog/2017/02/top-28-cheat-sheets-for-machine-learning-data-science-probability-sql-big-data/\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThese are cool, but they are almost always in pdf format. This makes them look nice, but isn\\u0026#39;t necessarily practically useful (i.e. they aren\\u0026#39;t searchable, usually require using the mouse, etc.). Are there any packages or repositories for keeping track of similarly styled information (quick references for common tasks) built around emacs, or otherwise plain text?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I am going to start writing down my own reference card in org-mode and then just bind a key to open it, but am looking to see if there is another canonical solution out there. Can this kind of thing be integrated effectively with the emacs built in help docs?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzjx6j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Jyan\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bzjx6j/managing_cheatsheets_and_other_documentation_in/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560296564.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When typing in LaTeX using AucTeX, it is very useful to be able to insert a number of LaTeX symbols by typing key sequences that begin with \\\"\\\\`\\\". For example, \\\"\\\\`a\\\" inserts \\\"\\\\\\\\alpha\\\" when inside a math environment and \\\"\\\\`I\\\" inserts \\\"\\\\\\\\infty\\\". Further, with a prefix argument, it will insert what you want inside a couple of dollars. that is, the key sequence \\\"C-u \\\\` a\\\" will insert \\\"$\\\\\\\\alpha$\\\".\\n\\nThe problem with this is that typing \\\"C-u \\\\`\\\" is a pain in the tendon. It is true that you can also type \\\"C-2 \\\\`\\\" which has the same effect. however there is a better way.\\n\\nWe want to be able to do this. Suppose that the key sequence \\\"\\\\`bar\\\" inserts \\\"\\\\\\\\foo\\\" when in a math environment, then \\\"\\\\`\\\\`bar\\\" inserts \\\"$\\\\\\\\foo$\\\". We use the following key definition\\n\\n\\u0026#x200B;\\n\\n(define-key LaTeX-math-mode-map \\\"\\\\`\\\\`\\\"\\n\\n(lambda (ks)\\n\\n(interactive \\\"k\\\")\\n\\n(execute-kbd-macro (concat (kbd \\\"C-u \\\\`\\\") ks))))\\n\\n\\u0026#x200B;\\n\\nIt is a lot kinder on the hands to type \\\"\\\\`\\\\`a\\\" to get \\\"$\\\\\\\\alpha$\\\" than to type \\\"C-u\\\\`a\\\".\", \"author_fullname\": \"t2_2bvnyi6g\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inserting LaTeX symbols in comfort\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzg7fp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560306315.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen typing in LaTeX using AucTeX, it is very useful to be able to insert a number of LaTeX symbols by typing key sequences that begin with \\u0026quot;`\\u0026quot;. For example, \\u0026quot;`a\\u0026quot; inserts \\u0026quot;\\\\alpha\\u0026quot; when inside a math environment and \\u0026quot;`I\\u0026quot; inserts \\u0026quot;\\\\infty\\u0026quot;. Further, with a prefix argument, it will insert what you want inside a couple of dollars. that is, the key sequence \\u0026quot;C-u ` a\\u0026quot; will insert \\u0026quot;$\\\\alpha$\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe problem with this is that typing \\u0026quot;C-u `\\u0026quot; is a pain in the tendon. It is true that you can also type \\u0026quot;C-2 `\\u0026quot; which has the same effect. however there is a better way.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe want to be able to do this. Suppose that the key sequence \\u0026quot;`bar\\u0026quot; inserts \\u0026quot;\\\\foo\\u0026quot; when in a math environment, then \\u0026quot;``bar\\u0026quot; inserts \\u0026quot;$\\\\foo$\\u0026quot;. We use the following key definition\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(define-key LaTeX-math-mode-map \\u0026quot;``\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(lambda (ks)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(interactive \\u0026quot;k\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(execute-kbd-macro (concat (kbd \\u0026quot;C-u `\\u0026quot;) ks))))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is a lot kinder on the hands to type \\u0026quot;``a\\u0026quot; to get \\u0026quot;$\\\\alpha$\\u0026quot; than to type \\u0026quot;C-u`a\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzg7fp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aidansch\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bzg7fp/inserting_latex_symbols_in_comfort/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560277515.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am having trouble wrapping my head around the M-x movements.\\n\\n\\u0026#x200B;\\n\\n print(\\\"Hello\\\")\\n\\nputs the cursor just in front of the opening bracket after hitting M-f once while the point was at the beginning of the line. Pressing the combination again puts point just before the closing quotation mark, why is that?\", \"author_fullname\": \"t2_3p3qqcr1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Understanding M-f movement pattern\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzdmax\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560294313.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am having trouble wrapping my head around the M-x movements.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eprint(\\u0026quot;Hello\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eputs the cursor just in front of the opening bracket after hitting M-f once while the point was at the beginning of the line. Pressing the combination again puts point just before the closing quotation mark, why is that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzdmax\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sewing31\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bzdmax/understanding_mf_movement_pattern/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bzdmax/understanding_mf_movement_pattern/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560265513.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Every day I read almost all the entries of my agenda and I either delete them or reschedule them. For this reason is quite annoyng to set the number of days in the schedule menu each time. How do you deal with this problem? Anyone has got an hydra to schedule automatically a task after 1 or 10 or 100 days?\", \"author_fullname\": \"t2_ukyja4e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hydra for scheduling agenda entries after 1, 10 or 100 days\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzc58h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560286647.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEvery day I read almost all the entries of my agenda and I either delete them or reschedule them. For this reason is quite annoyng to set the number of days in the schedule menu each time. How do you deal with this problem? Anyone has got an hydra to schedule automatically a task after 1 or 10 or 100 days?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzc58h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"FormerAct\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bzc58h/hydra_for_scheduling_agenda_entries_after_1_10_or/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bzc58h/hydra_for_scheduling_agenda_entries_after_1_10_or/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560257847.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\nI\\u2019m an absolute beginner to the emacs editor but i have programming experience. Can emacs support html,css,JavaScript, Ruby, php as these will be languages I will be using heavily? Thanks!\", \"author_fullname\": \"t2_140igb2u\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Multiple language support?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzbozv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560283967.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\nI\\u2019m an absolute beginner to the emacs editor but i have programming experience. Can emacs support html,css,JavaScript, Ruby, php as these will be languages I will be using heavily? Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzbozv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Mosquite_Leaf\", \"num_crossposts\": 0, \"num_comments\": 55, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bzbozv/multiple_language_support/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bzbozv/multiple_language_support/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560255167.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have followed the guides on using `backup-directory-alist` to set backup file locations and it doesn't seem to work for me.\\n\\nMy understanding is that an expression such as\\n\\n (setq backup-directory-alist `((\\\".\\\" . \\\".editorbackups\\\")))\\n\\n should create a directory called `.editorbackups` in the under the directory of the file being edited and save the temporary files. What I get is the `.editorbackups` directory being created only under `.emacs.d` and only `recentf~` is saved there. The other files are created in their regular locations.\\n\\nHow is the pair being `(\\\".\\\" . \\\".editorbackups\\\")` interpreted if it works only on `.emacs.d`, because \\\".\\\" also means the current directory in Unix which is I presume is the default directory for emacs?\\n\\nWhat am I missing?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"backup-directory-alist does not work for me\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzao1w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560248860.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560277031.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have followed the guides on using \\u003Ccode\\u003Ebackup-directory-alist\\u003C/code\\u003E to set backup file locations and it doesn\\u0026#39;t seem to work for me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy understanding is that an expression such as\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq backup-directory-alist `((\\u0026quot;.\\u0026quot; . \\u0026quot;.editorbackups\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eshould create a directory called \\u003Ccode\\u003E.editorbackups\\u003C/code\\u003E in the under the directory of the file being edited and save the temporary files. What I get is the \\u003Ccode\\u003E.editorbackups\\u003C/code\\u003E directory being created only under \\u003Ccode\\u003E.emacs.d\\u003C/code\\u003E and only \\u003Ccode\\u003Erecentf~\\u003C/code\\u003E is saved there. The other files are created in their regular locations.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow is the pair being \\u003Ccode\\u003E(\\u0026quot;.\\u0026quot; . \\u0026quot;.editorbackups\\u0026quot;)\\u003C/code\\u003E interpreted if it works only on \\u003Ccode\\u003E.emacs.d\\u003C/code\\u003E, because \\u0026quot;.\\u0026quot; also means the current directory in Unix which is I presume is the default directory for emacs?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat am I missing?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzao1w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bzao1w/backupdirectoryalist_does_not_work_for_me/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bzao1w/backupdirectoryalist_does_not_work_for_me/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560248231.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As in the previous thread don't feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly tips/trick/etc/ thread\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz9rxn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 38, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 38, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560269705.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs in the previous thread don\\u0026#39;t feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz9rxn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": true, \"url\": \"https://www.reddit.com/r/emacs/comments/bz9rxn/weekly_tipstricketc_thread/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560240905.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am trying to build magit from source, but I am getting the error \\\"libgit: unable to load the libegit2 dynamic module\\\".\\n\\nAlso I have built emacs with `--with-modules` flag.\\n\\nThis is my [`config.mk`](https://config.mk) file\\n\\n LOAD_PATH = -L /home/user/.emacs.d/packages/magit/magit/lisp\\n LOAD_PATH += -L /home/user/.emacs.d/packages/magnars/dash.el\\n LOAD_PATH += -L ../../abo-abo/hydra\\n LOAD_PATH += -L ../transient\\n LOAD_PATH += -L /home/user/.emacs.d/packages/magit/with-editor\\n LOAD_PATH += -L /home/user/.emacs.d/packages/magit/libegit2\", \"author_fullname\": \"t2_3tn7pcdr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help: Building Magit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz9mdc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560249629.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560268355.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to build magit from source, but I am getting the error \\u0026quot;libgit: unable to load the libegit2 dynamic module\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso I have built emacs with \\u003Ccode\\u003E--with-modules\\u003C/code\\u003E flag.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is my \\u003Ca href=\\\"https://config.mk\\\"\\u003E\\u003Ccode\\u003Econfig.mk\\u003C/code\\u003E\\u003C/a\\u003E file\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ELOAD_PATH = -L /home/user/.emacs.d/packages/magit/magit/lisp\\nLOAD_PATH += -L /home/user/.emacs.d/packages/magnars/dash.el\\nLOAD_PATH += -L ../../abo-abo/hydra\\nLOAD_PATH += -L ../transient\\nLOAD_PATH += -L /home/user/.emacs.d/packages/magit/with-editor\\nLOAD_PATH += -L /home/user/.emacs.d/packages/magit/libegit2\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz9mdc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SidharthArya-\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz9mdc/help_building_magit/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz9mdc/help_building_magit/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560239555.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How many packages do you currently have when starting up Emacs? I want to know what approaches you guys take: an extremely powerful and heavy config, or mostly defaults and install only essential packages.\\n\\n\\u0026#x200B;\\n\\nI used to be a heavy package user and had over 40-50 packages, and starting up Emacs takes close to 8-9 seconds. Recently I've been reading about software minimalism and tried to adopt the concept by trimming down to only around 10-15 essential packages, the start-up time subsequently improved to about 1 to 2 seconds. But then I wondered if this was defeating the purpose of Emacs being the unlimited customizable tool that should be tailored to completely suit its user.\\n\\n\\u0026#x200B;\\n\\n**Edit**: here's my config [https://github.com/ianpan870102/.emacs.d/blob/master/config.org](https://github.com/ianpan870102/.emacs.d/blob/master/config.org)\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Heavy config or minimum essentials?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz6imz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560223549.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560247094.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow many packages do you currently have when starting up Emacs? I want to know what approaches you guys take: an extremely powerful and heavy config, or mostly defaults and install only essential packages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used to be a heavy package user and had over 40-50 packages, and starting up Emacs takes close to 8-9 seconds. Recently I\\u0026#39;ve been reading about software minimalism and tried to adopt the concept by trimming down to only around 10-15 essential packages, the start-up time subsequently improved to about 1 to 2 seconds. But then I wondered if this was defeating the purpose of Emacs being the unlimited customizable tool that should be tailored to completely suit its user.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit\\u003C/strong\\u003E: here\\u0026#39;s my config \\u003Ca href=\\\"https://github.com/ianpan870102/.emacs.d/blob/master/config.org\\\"\\u003Ehttps://github.com/ianpan870102/.emacs.d/blob/master/config.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz6imz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 34, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz6imz/heavy_config_or_minimum_essentials/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz6imz/heavy_config_or_minimum_essentials/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560218294.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I think I'm reading the treemacs follow mode wrong or something. I grabbed the default configuration from the github page but either it's not working or it doesn't do what I expected. I was hoping it would jump to the location of the file in the current window?\", \"author_fullname\": \"t2_2cx5rm5n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"treemacs follow window\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz69xt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560245661.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think I\\u0026#39;m reading the treemacs follow mode wrong or something. I grabbed the default configuration from the github page but either it\\u0026#39;s not working or it doesn\\u0026#39;t do what I expected. I was hoping it would jump to the location of the file in the current window?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz69xt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"shrimpmacs\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz69xt/treemacs_follow_window/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz69xt/treemacs_follow_window/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560216861.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello ! I just installed plantuml-mode to make neat uml use cases but it seems like I have an encoding problem.\\n\\nWhen I type\\n\\n`Alice -\\u003E Bob: Authentication Request`\\n\\n`Bob --\\u003E Alice: Authentication Response`\\n\\nIn my test.plantuml file while in plantuml-mode\\n\\nI get the following.\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/3zh21n28ro331.png\\n\\n\\u0026#x200B;\\n\\nUpon opening a .plantuml file I get the following error line\\n\\n`File mode specification error: (wrong-type-argument stringp nil)`\\n\\nFrom what I read this means that the path to the jar is unspecified. But the jar file is downloaded at it's default location. And I cannot find how to specify it in my config file (the only command I found threw an error - probably because it is deprecated).\\n\\n\\u0026#x200B;\\n\\nThanks for the help !\\n\\n\\u0026#x200B;\\n\\n**Edit: Plantuml-mode random encoding errors are still present but in org mode it works as expected. (solved)**\", \"author_fullname\": \"t2_i8v4l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Plantuml encoding problem\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"3zh21n28ro331\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 124, \"x\": 380, \"u\": \"https://i.redd.it/3zh21n28ro331.png\"}, \"m\": \"image/png\", \"id\": \"3zh21n28ro331\"}}, \"name\": \"t3_bz5flf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560289953.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560240693.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello ! I just installed plantuml-mode to make neat uml use cases but it seems like I have an encoding problem.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I type\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EAlice -\\u0026gt; Bob: Authentication Request\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EBob --\\u0026gt; Alice: Authentication Response\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my test.plantuml file while in plantuml-mode\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI get the following.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/3zh21n28ro331.png\\\"\\u003Ehttps://i.redd.it/3zh21n28ro331.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpon opening a .plantuml file I get the following error line\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile mode specification error: (wrong-type-argument stringp nil)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom what I read this means that the path to the jar is unspecified. But the jar file is downloaded at it\\u0026#39;s default location. And I cannot find how to specify it in my config file (the only command I found threw an error - probably because it is deprecated).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for the help !\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit: Plantuml-mode random encoding errors are still present but in org mode it works as expected. (solved)\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz5flf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Maisquestce\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz5flf/plantuml_encoding_problem/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz5flf/plantuml_encoding_problem/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560211893.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"https://github.com/alphapapa/org-ql\\n\\n`org-ql` has received several updates, including better documentation, an improved `org-ql-search` command, and new `(ts)` predicates that select entries by timestamp.\\n\\nHere's a [screencast](https://github.com/alphapapa/org-ql/raw/master/images/org-ql-search.gif) of the improved `org-ql-search` command.\\n\\nFeedback would be appreciated. I plan to submit it to MELPA, but I think it needs more testing and polishing first.\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Updates to org-ql\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz5eqv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 34, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 34, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560240569.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/org-ql\\\"\\u003Ehttps://github.com/alphapapa/org-ql\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E has received several updates, including better documentation, an improved \\u003Ccode\\u003Eorg-ql-search\\u003C/code\\u003E command, and new \\u003Ccode\\u003E(ts)\\u003C/code\\u003E predicates that select entries by timestamp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s a \\u003Ca href=\\\"https://github.com/alphapapa/org-ql/raw/master/images/org-ql-search.gif\\\"\\u003Escreencast\\u003C/a\\u003E of the improved \\u003Ccode\\u003Eorg-ql-search\\u003C/code\\u003E command.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeedback would be appreciated. I plan to submit it to MELPA, but I think it needs more testing and polishing first.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz5eqv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560211769.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am following the directions [here](https://www.masteringemacs.org/article/comint-writing-command-interpreter) to set up a simple comint mode, and I am running into a problem. The program that I am interfacing with needs to be run from within a certain directory. When comint runs it, it is doing it in my home directory, and the process fails. How can I make the process start from a different directory?\", \"author_fullname\": \"t2_3235n7gs\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Specify where comint runs a program from\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz56qc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560239319.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am following the directions \\u003Ca href=\\\"https://www.masteringemacs.org/article/comint-writing-command-interpreter\\\"\\u003Ehere\\u003C/a\\u003E to set up a simple comint mode, and I am running into a problem. The program that I am interfacing with needs to be run from within a certain directory. When comint runs it, it is doing it in my home directory, and the process fails. How can I make the process start from a different directory?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz56qc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_buttlicker_69\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz56qc/specify_where_comint_runs_a_program_from/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz56qc/specify_where_comint_runs_a_program_from/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560210519.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I just started trying emacs as a vim user and I ran into my first problem opening my first file. I opened a .md file and it looks like a normal text file. There's no formatting applied and no indication emacs thinks this is a markdown file. With vim, I'm used to a 'filetype' variable and syntax plugins for highlighting and quality of life features, such as adding bullet points after I hit enter.\\n\\n\\u0026#x200B;\\n\\nI would like a parser, but more importantly, there's a ton of plugins, how do I know what's good? The only thing I think I know is ones I read about often: evil, org-mode, dired, magit (spelling?), and helm.\\n\\n\\u0026#x200B;\\n\\nI don't want to try spacemacs - I'd rather build from vanilla into something I like, but it's really daunting and humbling to go from very productive and experienced in vim to not knowing the simplest things in emacs.\", \"author_fullname\": \"t2_hl3ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Where do I start with plugins?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz4o5e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560236510.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just started trying emacs as a vim user and I ran into my first problem opening my first file. I opened a .md file and it looks like a normal text file. There\\u0026#39;s no formatting applied and no indication emacs thinks this is a markdown file. With vim, I\\u0026#39;m used to a \\u0026#39;filetype\\u0026#39; variable and syntax plugins for highlighting and quality of life features, such as adding bullet points after I hit enter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like a parser, but more importantly, there\\u0026#39;s a ton of plugins, how do I know what\\u0026#39;s good? The only thing I think I know is ones I read about often: evil, org-mode, dired, magit (spelling?), and helm.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t want to try spacemacs - I\\u0026#39;d rather build from vanilla into something I like, but it\\u0026#39;s really daunting and humbling to go from very productive and experienced in vim to not knowing the simplest things in emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz4o5e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"portal-runner\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz4o5e/where_do_i_start_with_plugins/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz4o5e/where_do_i_start_with_plugins/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560207710.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I switched from vim to emacs and I prefer the default emacs bindings over vim's.\\n\\nI always had an impression that emacs bindings suck when reading about the editors online. Why?\", \"author_fullname\": \"t2_3ixmiy8z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Do people find emacs's bindings inferior to vim's?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz2uob\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560227225.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI switched from vim to emacs and I prefer the default emacs bindings over vim\\u0026#39;s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI always had an impression that emacs bindings suck when reading about the editors online. Why?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz2uob\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"forppinrange\", \"num_crossposts\": 0, \"num_comments\": 69, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz2uob/do_people_find_emacss_bindings_inferior_to_vims/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560198425.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi guys!\\nAnyone knows of a package that allows to select a command from a predefined set, maybe even with per project support, so I have a task named \\\"test\\\" which executes a \\\"mvn test -Dproperty\\\" for example.\", \"author_fullname\": \"t2_dp6isw1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Task Runner\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz1w43\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560222476.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys!\\nAnyone knows of a package that allows to select a command from a predefined set, maybe even with per project support, so I have a task named \\u0026quot;test\\u0026quot; which executes a \\u0026quot;mvn test -Dproperty\\u0026quot; for example.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz1w43\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"omgitsjoao\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz1w43/task_runner/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz1w43/task_runner/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560193676.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_8dk3r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doom E06: Quick, horizontal movements with evil-snipe\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byxa5g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 26, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ywRExNOyybY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E06: Quick, horizontal movements with evil-snipe\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ywRExNOyybY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ywRExNOyybY/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ywRExNOyybY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/byxa5g\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 26, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560198731.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byxa5g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zaiste\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byxa5g/emacs_doom_e06_quick_horizontal_movements_with/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=ywRExNOyybY\\u0026feature=youtu.be\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560169931.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E06: Quick, horizontal movements with evil-snipe\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ywRExNOyybY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ywRExNOyybY/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_fal1d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Converted my Synthwave Theme to Emacs, as I convert myself to Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byx3bp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560197482.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byx3bp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"unusedredditname\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byx3bp/converted_my_synthwave_theme_to_emacs_as_i/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/TroyFletcher/emacs-synthwave-theme\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560168682.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_ue0uaio\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why You Should Buy Into the Emacs Platform\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byvov4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 158, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 158, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560187288.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"two-wrongs.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byvov4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rajasegarc\", \"num_crossposts\": 0, \"num_comments\": 34, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byvov4/why_you_should_buy_into_the_emacs_platform/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://two-wrongs.com/why-you-should-buy-into-the-emacs-platform\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560158488.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Could anyone identify this theme? It's named Dark Emacs Default on Magit's page but I can't find it elsewhere.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byvjo1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560186065.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byvjo1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byvjo1/could_anyone_identify_this_theme_its_named_dark/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/y6j898y0vh331.png\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560157265.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello all, I'm really catching the emacs bug. My friends that love vim poke fun at it, saying that they don't want to use an editor that's trying to be an operating system. To be fair emacs can basically do everything and replace most of my terminal programs. It's been recommended to me to try [exwm](https://github.com/ch11ng/exwm). However 1) it's not available for my OS (FreeBSD) 2) getting it working would be rough. Not saying it's impossible, but I'm too busy for that project (maybe someday). So I discovered an easy, lazy, simple alternative. Using [ratpoison](https://www.nongnu.org/ratpoison/) with emacs. Yes, it's ironic that ratpoison is \\\"non-gnu\\\", but it was pretty much created with the emacs user in mind. All the keybindings are designed to not interfere with emacs. Not only that, it's really, really lightweight. I just add this line to my .ratpoisonrc\\n\\n exec sakura -e emacs -nw\\n\\nWhen I fire up ratpoison, it's just a fullscreen emacs and a paperthin wm in the background. Perfect! Then I let emacs \\\"become the operating system\\\". Anyways, cheers and thank you for reading my nonsense.\\n\\n(sakura is just another X11 terminal emulator)\", \"author_fullname\": \"t2_3d6u59wh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"EXWM alternative for those that can't use it\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byv08z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560181390.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello all, I\\u0026#39;m really catching the emacs bug. My friends that love vim poke fun at it, saying that they don\\u0026#39;t want to use an editor that\\u0026#39;s trying to be an operating system. To be fair emacs can basically do everything and replace most of my terminal programs. It\\u0026#39;s been recommended to me to try \\u003Ca href=\\\"https://github.com/ch11ng/exwm\\\"\\u003Eexwm\\u003C/a\\u003E. However 1) it\\u0026#39;s not available for my OS (FreeBSD) 2) getting it working would be rough. Not saying it\\u0026#39;s impossible, but I\\u0026#39;m too busy for that project (maybe someday). So I discovered an easy, lazy, simple alternative. Using \\u003Ca href=\\\"https://www.nongnu.org/ratpoison/\\\"\\u003Eratpoison\\u003C/a\\u003E with emacs. Yes, it\\u0026#39;s ironic that ratpoison is \\u0026quot;non-gnu\\u0026quot;, but it was pretty much created with the emacs user in mind. All the keybindings are designed to not interfere with emacs. Not only that, it\\u0026#39;s really, really lightweight. I just add this line to my .ratpoisonrc\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eexec sakura -e emacs -nw\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I fire up ratpoison, it\\u0026#39;s just a fullscreen emacs and a paperthin wm in the background. Perfect! Then I let emacs \\u0026quot;become the operating system\\u0026quot;. Anyways, cheers and thank you for reading my nonsense.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(sakura is just another X11 terminal emulator)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byv08z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cshurtsmybrain\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byv08z/exwm_alternative_for_those_that_cant_use_it/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/byv08z/exwm_alternative_for_those_that_cant_use_it/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560152590.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"dmenu is really amazing and it can do many things. Is there something like that for emacs? I heard helm can behave like dmenu, but I couldn't figure out how.\", \"author_fullname\": \"t2_3ixmiy8z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there anything like dmenu for emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bypmog\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560145969.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edmenu is really amazing and it can do many things. Is there something like that for emacs? I heard helm can behave like dmenu, but I couldn\\u0026#39;t figure out how.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bypmog\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"forppinrange\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bypmog/is_there_anything_like_dmenu_for_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bypmog/is_there_anything_like_dmenu_for_emacs/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560117169.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hear me out, this is not a dumb question. how do \\\\*you\\\\* switch between buffers? do use the default bindings?\", \"author_fullname\": \"t2_3ixmiy8z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you switch between buffers?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byovog\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560141913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHear me out, this is not a dumb question. how do *you* switch between buffers? do use the default bindings?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byovog\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"forppinrange\", \"num_crossposts\": 0, \"num_comments\": 39, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byovog/how_do_you_switch_between_buffers/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/byovog/how_do_you_switch_between_buffers/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560113113.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've been having trouble launching spacemacs as a terminal mode client that connects to my daemon. What do I need to do in order for this to work? Simply using runemacs.exe --daemon and emacsclientw.exe -nw does not work. \\n\\n\\u0026#x200B;\\n\\nAlso, I was wondering how to change the colors used in terminal mode. Any help is appreciated!\", \"author_fullname\": \"t2_3ozqn6j0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Trouble with terminal mode (Win10)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byohn4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560139807.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been having trouble launching spacemacs as a terminal mode client that connects to my daemon. What do I need to do in order for this to work? Simply using runemacs.exe --daemon and emacsclientw.exe -nw does not work. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, I was wondering how to change the colors used in terminal mode. Any help is appreciated!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byohn4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"b1ackw0menRgay\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byohn4/trouble_with_terminal_mode_win10/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/byohn4/trouble_with_terminal_mode_win10/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560111007.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_1cqjsfrj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Blogging for Fun and Profit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bymxqz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 50, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 50, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560131558.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"loomcom.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bymxqz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_priyadarshan\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bymxqz/emacs_blogging_for_fun_and_profit/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://loomcom.com/blog/0110_emacs_blogging_for_fun_and_profit.html\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560102758.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I\\u2019m currently running spacemacs. Like it quite a lot. Though \\u2460 mild annoyance is that I can\\u2019t seem to run macros over a range. Normally, I\\u2019d type qq to define a macro, q to complete the macro and then type :start,$norm! @q to run the macro q over a range of values, but in emacs with evil it just says (after 0 kbd macro iterations: Quit). Is there a different way to run macros over a range. I know emacs has a run-macro-over-region method, but I\\u2019d rather not put a mark in two places just to run a macro over them.\", \"author_fullname\": \"t2_16wn0k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Evil: how to run a macro over a range using :norm\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byjyii\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560113948.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u2019m currently running spacemacs. Like it quite a lot. Though \\u2460 mild annoyance is that I can\\u2019t seem to run macros over a range. Normally, I\\u2019d type qq to define a macro, q to complete the macro and then type :start,$norm! @q to run the macro q over a range of values, but in emacs with evil it just says (after 0 kbd macro iterations: Quit). Is there a different way to run macros over a range. I know emacs has a run-macro-over-region method, but I\\u2019d rather not put a mark in two places just to run a macro over them.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byjyii\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Mohkale77\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byjyii/emacs_evil_how_to_run_a_macro_over_a_range_using/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/byjyii/emacs_evil_how_to_run_a_macro_over_a_range_using/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560085148.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've failed to figure out how to get these two lines working:\\n\\n(global-set-key (kbd \\\"C-\\u003C\\\") 'begining-of-buffer)\\n(global-set-key (kbd \\\"C-\\u003E\\\") 'end-of-buffer)\\n\\n\\u003C and \\u003E must be named something else, but what? Anyone knows? Thanks!\", \"author_fullname\": \"t2_4fd0kww\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to map C-\\u003C and C-\\u003E to begining-of-buffer resp end-of-buffer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byj0xi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560106005.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve failed to figure out how to get these two lines working:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(global-set-key (kbd \\u0026quot;C-\\u0026lt;\\u0026quot;) \\u0026#39;begining-of-buffer)\\n(global-set-key (kbd \\u0026quot;C-\\u0026gt;\\u0026quot;) \\u0026#39;end-of-buffer)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt; and \\u0026gt; must be named something else, but what? Anyone knows? Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byj0xi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bitbrist\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byj0xi/how_to_map_c_and_c_to_beginingofbuffer_resp/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/byj0xi/how_to_map_c_and_c_to_beginingofbuffer_resp/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560077205.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello, \\nI was wondering if there was an easy way to generate a list of words from within a document that I can use as a glossary? \\nI'm writing a document with a bunch of military terms that need explanations. \\n\\n\\u0026#x200B;\\n\\n It would be convenient to designate keywords as I write, then, later on, have emacs generate a list of those words so I could add the definitions.\\n\\n\\u0026#x200B;\\n\\nThe way I'm doing it at the moment seems tedious. Basically, whenever I come across a word for the glossary I stop writing and add the word to my glossary. \\n\\n\\u0026#x200B;\\n\\nI guess it's not too disruptive I just figured there might be an emacs way of doing such things (I'm new to Emacs). \\nAny help would be appreciated. \\nThanks.\", \"author_fullname\": \"t2_emvma\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to create a Glossary?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byio1m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560102662.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello,\\u003Cbr/\\u003E\\nI was wondering if there was an easy way to generate a list of words from within a document that I can use as a glossary?\\u003Cbr/\\u003E\\nI\\u0026#39;m writing a document with a bunch of military terms that need explanations. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt would be convenient to designate keywords as I write, then, later on, have emacs generate a list of those words so I could add the definitions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe way I\\u0026#39;m doing it at the moment seems tedious. Basically, whenever I come across a word for the glossary I stop writing and add the word to my glossary. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI guess it\\u0026#39;s not too disruptive I just figured there might be an emacs way of doing such things (I\\u0026#39;m new to Emacs).\\u003Cbr/\\u003E\\nAny help would be appreciated.\\u003Cbr/\\u003E\\nThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byio1m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taijeronv\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byio1m/how_to_create_a_glossary/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/byio1m/how_to_create_a_glossary/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560073862.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I use an automatic tool called \\\"black\\\" to reformat my Python code. Right now I run this as part of my toolchain.\\n\\nIt would be much nicer if I could do this directly in an emacs buffer so I can say, in essence, \\\"Run \\\"black\\\" on this buffer\\\". In fact, I need this for several other less important tasks too.\\n\\nMore generally, I need to be able to do one of two very similar things:\\n\\n* Call an external script with the contents of this buffer and use the results to replace this buffer; or, just as good:\\n\\n* Call an external script with this buffer's filename and use the results to replace this buffer.\\n\\nUnfortunately, I'm not coming up with good search terms, as I find too many irrelevant results essentially about `M-x compile`. \\n\\nThe emacswiki [`ExecuteExternalCommand`](https://www.emacswiki.org/emacs/ExecuteExternalCommand) doesn't quite hit it. It leads to [`ex`'](https://www.emacswiki.org/emacs/ex), but that seems to require you to have the code inline, so I'd have to have some sort of bash adaptor in there... and it doesn't seem to have a way to get and set the buffer, which is sort of a dead end.\\n\\nIdeas?\", \"author_fullname\": \"t2_333rr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to run an external script to modify the contents of a buffer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byi635\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560097619.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use an automatic tool called \\u0026quot;black\\u0026quot; to reformat my Python code. Right now I run this as part of my toolchain.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt would be much nicer if I could do this directly in an emacs buffer so I can say, in essence, \\u0026quot;Run \\u0026quot;black\\u0026quot; on this buffer\\u0026quot;. In fact, I need this for several other less important tasks too.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMore generally, I need to be able to do one of two very similar things:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECall an external script with the contents of this buffer and use the results to replace this buffer; or, just as good:\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECall an external script with this buffer\\u0026#39;s filename and use the results to replace this buffer.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EUnfortunately, I\\u0026#39;m not coming up with good search terms, as I find too many irrelevant results essentially about \\u003Ccode\\u003EM-x compile\\u003C/code\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe emacswiki \\u003Ca href=\\\"https://www.emacswiki.org/emacs/ExecuteExternalCommand\\\"\\u003E\\u003Ccode\\u003EExecuteExternalCommand\\u003C/code\\u003E\\u003C/a\\u003E doesn\\u0026#39;t quite hit it. It leads to \\u003Ca href=\\\"https://www.emacswiki.org/emacs/ex\\\"\\u003E\\u003Ccode\\u003Eex\\u003C/code\\u003E\\u0026#39;\\u003C/a\\u003E, but that seems to require you to have the code inline, so I\\u0026#39;d have to have some sort of bash adaptor in there... and it doesn\\u0026#39;t seem to have a way to get and set the buffer, which is sort of a dead end.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIdeas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byi635\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TomSwirly\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byi635/how_to_run_an_external_script_to_modify_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/byi635/how_to_run_an_external_script_to_modify_the/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560068819.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I currently use ccls+lsp-mode for my default C/C++ development.\\n\\nccls needs compile\\\\_commands.json and actually many build systems can somehow generate compile\\\\_commands.json (thanks to bear)\\n\\nHowever, one exceptional case was bazel.\\n\\nAlthough there are some compilation database generation tools for bazel, they didn't work for me...\\n\\nAnyone can share your experiences of setting up IDE for bazel-built C++ projects?\\n\\nThanks!\", \"author_fullname\": \"t2_29ak1e2c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to setup emacs for bazel-built C++ projects?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byht8z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560093993.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI currently use ccls+lsp-mode for my default C/C++ development.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eccls needs compile_commands.json and actually many build systems can somehow generate compile_commands.json (thanks to bear)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, one exceptional case was bazel.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlthough there are some compilation database generation tools for bazel, they didn\\u0026#39;t work for me...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone can share your experiences of setting up IDE for bazel-built C++ projects?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byht8z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"shpark1\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byht8z/how_to_setup_emacs_for_bazelbuilt_c_projects/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/byht8z/how_to_setup_emacs_for_bazelbuilt_c_projects/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560065193.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here's the next installment in my Year of Emacs blog.\\n\\nDired is far, FAR more useful and bigger than I anticipated. I'll have to return to this when I'm not also trying to wrap up the last week of school. I picked dired for this week because it was the last week of school, and cleaning up from a year of school includes lots of file and directory management as I archive old classes and set up new classes. But the mode has just too many awesome things in it to look at even half of them in the last week.\\n\\n[https://jonathanabennett.github.io/blog/2019/06/05/file-management-in-emacs-with-dired-mode/](https://jonathanabennett.github.io/blog/2019/06/05/file-management-in-emacs-with-dired-mode/)\", \"author_fullname\": \"t2_jqpn4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"File Management with dired in Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byhf6w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 37, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 37, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560090229.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s the next installment in my Year of Emacs blog.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDired is far, FAR more useful and bigger than I anticipated. I\\u0026#39;ll have to return to this when I\\u0026#39;m not also trying to wrap up the last week of school. I picked dired for this week because it was the last week of school, and cleaning up from a year of school includes lots of file and directory management as I archive old classes and set up new classes. But the mode has just too many awesome things in it to look at even half of them in the last week.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://jonathanabennett.github.io/blog/2019/06/05/file-management-in-emacs-with-dired-mode/\\\"\\u003Ehttps://jonathanabennett.github.io/blog/2019/06/05/file-management-in-emacs-with-dired-mode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byhf6w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doulos05\", \"num_crossposts\": 0, \"num_comments\": 29, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byhf6w/file_management_with_dired_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/byhf6w/file_management_with_dired_in_emacs/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560061429.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"This might be a simple question. But I am not too familiar with elisp smile.\\n\\nIs there a way to have \\\\`C-c C-o\\\\` in char mode to switch to other buffer (same behavior as line mode) but have the current buffer stay in char mode?\\n\\n\\u0026#x200B;\\n\\nmaybe this can be achieved mapping \\\\`C-c C-o\\\\` to a custom function?\", \"author_fullname\": \"t2_ho4ww\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ansiterm and exwm: switch buffer with `C-c C-o` in char mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bygzwm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560086527.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis might be a simple question. But I am not too familiar with elisp smile.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way to have `C-c C-o` in char mode to switch to other buffer (same behavior as line mode) but have the current buffer stay in char mode?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Emaybe this can be achieved mapping `C-c C-o` to a custom function?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bygzwm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cyc115\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bygzwm/ansiterm_and_exwm_switch_buffer_with_cc_co_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bygzwm/ansiterm_and_exwm_switch_buffer_with_cc_co_in/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560057727.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Ive just started using magit and Im not sure of the best way to review a PR. \\nIve been checking out the branch and looking at each commit, but I have to keep switching back to github-web to check that Im looking at the correct commits and to make comments. \\n\\n\\nIs there a better way?\", \"author_fullname\": \"t2_3o4eo2bk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Magit - How do you do review a pull requests?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bye8zn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560067121.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIve just started using magit and Im not sure of the best way to review a PR.\\u003Cbr/\\u003E\\nIve been checking out the branch and looking at each commit, but I have to keep switching back to github-web to check that Im looking at the correct commits and to make comments. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a better way?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bye8zn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jholden29\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bye8zn/magit_how_do_you_do_review_a_pull_requests/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bye8zn/magit_how_do_you_do_review_a_pull_requests/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560038321.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've used emacs for a little while now and have developed my own configuration which borrows from popular packages I liked when using things like Frontmacs, Doom Emacs, Spacemacs etc. I by no means am any sort of expert and this may be made more evident by how stupid of a mistake I may have made. \\n\\nMy question is regarding Python mode. I am unable to use python mode for anything because I get one of a few errors: \\n\\n* \\\"File mode specification error: ... function void\\\"\\n\\nThen I was able to get rid of that error by requiring python-mode however whenever I input a character I get the following:\\n\\n* \\\"emacs python wrong type argument syntax-table-p nil\\\"\\n\\n\\u0026#x200B;\\n\\nThis is the following python config I have\\n\\n\\\\#+BEGIN\\\\_SRC emacs-lisp\\n\\n(use-package python-mode)\\n\\n(use-package elpy\\n\\n:ensure t\\n\\n:init (elpy-enable)\\n\\n;;(define-key yas-minor-mode-map ())\\n\\n)\\n\\n;; PYTHON IDE\\n\\n;; Install rope, flake8, importmagic, autopep8 via pip\\n\\nadd-hook 'python-mode-hook (highlight-indentation-mode nil)) **-- This line was added from \\\"**[**https://emacs.stackexchange.com/questions/18582/file-mode-specification-error-void-function-nil-after-opening-python-file**](https://emacs.stackexchange.com/questions/18582/file-mode-specification-error-void-function-nil-after-opening-python-file)**\\\"**\\n\\n\\\\#+END\\\\_SRC\\n\\n\\u0026#x200B;\\n\\nDoes anyone have any idea what may be the cause of this? Thank you in advance and I apologize if there is a stupid error\\n\\n\\u0026#x200B;\\n\\nIf it helps, my previous version can be found at [https://github.com/rkabrick/brickmacs](https://github.com/rkabrick/brickmacs) and I found the error also was present here\", \"author_fullname\": \"t2_yugxl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Python Error\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bydwi6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560064862.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve used emacs for a little while now and have developed my own configuration which borrows from popular packages I liked when using things like Frontmacs, Doom Emacs, Spacemacs etc. I by no means am any sort of expert and this may be made more evident by how stupid of a mistake I may have made. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy question is regarding Python mode. I am unable to use python mode for anything because I get one of a few errors: \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u0026quot;File mode specification error: ... function void\\u0026quot;\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThen I was able to get rid of that error by requiring python-mode however whenever I input a character I get the following:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u0026quot;emacs python wrong type argument syntax-table-p nil\\u0026quot;\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the following python config I have\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+BEGIN_SRC emacs-lisp\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(use-package python-mode)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(use-package elpy\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:ensure t\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:init (elpy-enable)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E;;(define-key yas-minor-mode-map ())\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E;; PYTHON IDE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E;; Install rope, flake8, importmagic, autopep8 via pip\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eadd-hook \\u0026#39;python-mode-hook (highlight-indentation-mode nil)) \\u003Cstrong\\u003E-- This line was added from \\u0026quot;\\u003C/strong\\u003E\\u003Ca href=\\\"https://emacs.stackexchange.com/questions/18582/file-mode-specification-error-void-function-nil-after-opening-python-file\\\"\\u003E\\u003Cstrong\\u003Ehttps://emacs.stackexchange.com/questions/18582/file-mode-specification-error-void-function-nil-after-opening-python-file\\u003C/strong\\u003E\\u003C/a\\u003E\\u003Cstrong\\u003E\\u0026quot;\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#+END_SRC\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have any idea what may be the cause of this? Thank you in advance and I apologize if there is a stupid error\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf it helps, my previous version can be found at \\u003Ca href=\\\"https://github.com/rkabrick/brickmacs\\\"\\u003Ehttps://github.com/rkabrick/brickmacs\\u003C/a\\u003E and I found the error also was present here\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bydwi6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rkabrick\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bydwi6/emacs_python_error/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bydwi6/emacs_python_error/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560036062.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_h5re9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[emacs-devel] HarfBuzz is now available on master\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byddvm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 25, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 25, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560061583.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"lists.gnu.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byddvm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zreeon\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byddvm/emacsdevel_harfbuzz_is_now_available_on_master/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://lists.gnu.org/archive/html/emacs-devel/2019-06/msg00123.html\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560032783.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I love Emacs, but I am scared. I saw this today: [https://blog.npmjs.org/post/185397814280/plot-to-steal-cryptocurrency-foiled-by-the-npm](https://blog.npmjs.org/post/185397814280/plot-to-steal-cryptocurrency-foiled-by-the-npm). It's unrelated to Emacs, but it reminded me that every Emacs package I install has full access to my computer, it can steal my data, or do anything it likes. And yet, by design there's no way to limit a package to have certain \\\"permissions\\\", an elisp function can do and change anything it likes. And yet, a package is updated on MELPA as soon as someone commits to the repository. There zero review process. It's a free for all. Perhaps I trust my package maintainers, but my trust is only as good as how well they secure their GitHub credentials. So what can I do, review every change myself? Never update? Somehow sandbox Emacs? What does everyone here do?\", \"author_fullname\": \"t2_8zx2q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs: Insecure by default\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bycwta\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 58, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 58, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_1\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560058756.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love Emacs, but I am scared. I saw this today: \\u003Ca href=\\\"https://blog.npmjs.org/post/185397814280/plot-to-steal-cryptocurrency-foiled-by-the-npm\\\"\\u003Ehttps://blog.npmjs.org/post/185397814280/plot-to-steal-cryptocurrency-foiled-by-the-npm\\u003C/a\\u003E. It\\u0026#39;s unrelated to Emacs, but it reminded me that every Emacs package I install has full access to my computer, it can steal my data, or do anything it likes. And yet, by design there\\u0026#39;s no way to limit a package to have certain \\u0026quot;permissions\\u0026quot;, an elisp function can do and change anything it likes. And yet, a package is updated on MELPA as soon as someone commits to the repository. There zero review process. It\\u0026#39;s a free for all. Perhaps I trust my package maintainers, but my trust is only as good as how well they secure their GitHub credentials. So what can I do, review every change myself? Never update? Somehow sandbox Emacs? What does everyone here do?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Silver Award\", \"coin_reward\": 0, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/silver_512.png\", \"days_of_premium\": 0, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 100, \"id\": \"gid_1\", \"name\": \"Silver\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bycwta\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"prawnandcocktail\", \"num_crossposts\": 0, \"num_comments\": 46, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bycwta/emacs_insecure_by_default/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bycwta/emacs_insecure_by_default/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560029956.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"This is my current org-mode configuration in use-package. If there are some obvious faults in it that shouldn't be surprising it because I copied from the wild without any proper understanding.\\n\\n (use-package org-mode\\n :ensure org-plus-contrib\\n :diminish \\\" \\u229e\\\"\\n :mode \\\"\\\\\\\\.org\\\\\\\\(.gpg|_archive\\\\\\\\)?$\\\"\\n :init\\n (add-hook 'org-log-buffer-setup-hook #'evil-insert-state)\\n :bind\\n (\\\"C-c t\\\" . orgtbl-mode)\\n (\\\"C-c l\\\" . org-store-link)\\n (\\\"C-c r\\\" . org-capture)\\n (\\\"C-c b\\\" . org-iswitchb)\\n (\\\"\\u003Cf12\\u003E\\\" . org-agenda)\\n (\\\"H-z\\\" . org-agenda)\\n (\\\"\\u003Capps\\u003E\\\" . org-agenda)\\n :config\\n (bind-key \\\"M-i\\\" 'org-toggle-inline-images org-mode-map)\\n (bind-key \\\"C-c a\\\" 'org-agenda org-mode-map)\\n (add-hook 'org-babel-after-execute-hook\\n (lambda () (org-display-inline-images nil t)))\\n )\\n \\nBelow is a `defadvice` I want to integrate into the org config. I have created an `init_org.el` for it and future additions as it is bound to grow bigger.\\n\\nIs there some proper way to `include` the `init_org.el` into the `use-package` config or should I move the `use-package` config into `init_org.el`?\\n\\nIf I move the `use-package` into the `init_org.el` how should I integrate the `defadvice` with it?\\n\\nJust leave it as it is in for the `require` to do its job or include it somehow into the `use-package` clause?\\n\\n ;;\\n ;; Archive subtrees under the same hierarchy as the original org file.\\n ;; Link: https://gist.github.com/Fuco1/e86fb5e0a5bb71ceafccedb5ca22fcfb\\n ;;\\n (require 'dash)\\n \\n (defadvice org-archive-subtree (around fix-hierarchy activate)\\n (let* ((fix-archive-p (and (not current-prefix-arg)\\n (not (use-region-p))))\\n (afile (car (org-archive--compute-location\\n \\t\\t (or (org-entry-get nil \\\"ARCHIVE\\\" 'inherit) org-archive-location))))\\n (buffer (or (find-buffer-visiting afile) (find-file-noselect afile))))\\n ad-do-it\\n (when fix-archive-p\\n (with-current-buffer buffer\\n (goto-char (point-max))\\n (while (org-up-heading-safe))\\n (let* ((olpath (org-entry-get (point) \\\"ARCHIVE_OLPATH\\\"))\\n (path (and olpath (split-string olpath \\\"/\\\")))\\n (level 1)\\n tree-text)\\n (when olpath\\n (org-mark-subtree)\\n (setq tree-text (buffer-substring (region-beginning) (region-end)))\\n (let (this-command) (org-cut-subtree))\\n (goto-char (point-min))\\n (save-restriction\\n (widen)\\n (-each path\\n (lambda (heading)\\n (if (re-search-forward\\n (rx-to-string\\n `(: bol (repeat ,level \\\"*\\\") (1+ \\\" \\\") ,heading)) nil t)\\n (org-narrow-to-subtree)\\n (goto-char (point-max))\\n (unless (looking-at \\\"^\\\")\\n (insert \\\"\\\\n\\\"))\\n (insert (make-string level ?*)\\n \\\" \\\"\\n heading\\n \\\"\\\\n\\\"))\\n (cl-incf level)))\\n (widen)\\n (org-end-of-subtree t t)\\n (org-paste-subtree level tree-text))))))))\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is the appropriate way integrating a defadvice into use-package?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byceer\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560055727.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is my current org-mode configuration in use-package. If there are some obvious faults in it that shouldn\\u0026#39;t be surprising it because I copied from the wild without any proper understanding.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package org-mode\\n :ensure org-plus-contrib\\n :diminish \\u0026quot; \\u229e\\u0026quot;\\n :mode \\u0026quot;\\\\\\\\.org\\\\\\\\(.gpg|_archive\\\\\\\\)?$\\u0026quot;\\n :init\\n (add-hook \\u0026#39;org-log-buffer-setup-hook #\\u0026#39;evil-insert-state)\\n :bind\\n (\\u0026quot;C-c t\\u0026quot; . orgtbl-mode)\\n (\\u0026quot;C-c l\\u0026quot; . org-store-link)\\n (\\u0026quot;C-c r\\u0026quot; . org-capture)\\n (\\u0026quot;C-c b\\u0026quot; . org-iswitchb)\\n (\\u0026quot;\\u0026lt;f12\\u0026gt;\\u0026quot; . org-agenda)\\n (\\u0026quot;H-z\\u0026quot; . org-agenda)\\n (\\u0026quot;\\u0026lt;apps\\u0026gt;\\u0026quot; . org-agenda)\\n :config\\n (bind-key \\u0026quot;M-i\\u0026quot; \\u0026#39;org-toggle-inline-images org-mode-map)\\n (bind-key \\u0026quot;C-c a\\u0026quot; \\u0026#39;org-agenda org-mode-map)\\n (add-hook \\u0026#39;org-babel-after-execute-hook\\n (lambda () (org-display-inline-images nil t)))\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBelow is a \\u003Ccode\\u003Edefadvice\\u003C/code\\u003E I want to integrate into the org config. I have created an \\u003Ccode\\u003Einit_org.el\\u003C/code\\u003E for it and future additions as it is bound to grow bigger.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there some proper way to \\u003Ccode\\u003Einclude\\u003C/code\\u003E the \\u003Ccode\\u003Einit_org.el\\u003C/code\\u003E into the \\u003Ccode\\u003Euse-package\\u003C/code\\u003E config or should I move the \\u003Ccode\\u003Euse-package\\u003C/code\\u003E config into \\u003Ccode\\u003Einit_org.el\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I move the \\u003Ccode\\u003Euse-package\\u003C/code\\u003E into the \\u003Ccode\\u003Einit_org.el\\u003C/code\\u003E how should I integrate the \\u003Ccode\\u003Edefadvice\\u003C/code\\u003E with it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust leave it as it is in for the \\u003Ccode\\u003Erequire\\u003C/code\\u003E to do its job or include it somehow into the \\u003Ccode\\u003Euse-package\\u003C/code\\u003E clause?\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;;\\n;; Archive subtrees under the same hierarchy as the original org file.\\n;; Link: https://gist.github.com/Fuco1/e86fb5e0a5bb71ceafccedb5ca22fcfb\\n;;\\n(require \\u0026#39;dash)\\n\\n(defadvice org-archive-subtree (around fix-hierarchy activate)\\n (let* ((fix-archive-p (and (not current-prefix-arg)\\n (not (use-region-p))))\\n (afile (car (org-archive--compute-location\\n (or (org-entry-get nil \\u0026quot;ARCHIVE\\u0026quot; \\u0026#39;inherit) org-archive-location))))\\n (buffer (or (find-buffer-visiting afile) (find-file-noselect afile))))\\n ad-do-it\\n (when fix-archive-p\\n (with-current-buffer buffer\\n (goto-char (point-max))\\n (while (org-up-heading-safe))\\n (let* ((olpath (org-entry-get (point) \\u0026quot;ARCHIVE_OLPATH\\u0026quot;))\\n (path (and olpath (split-string olpath \\u0026quot;/\\u0026quot;)))\\n (level 1)\\n tree-text)\\n (when olpath\\n (org-mark-subtree)\\n (setq tree-text (buffer-substring (region-beginning) (region-end)))\\n (let (this-command) (org-cut-subtree))\\n (goto-char (point-min))\\n (save-restriction\\n (widen)\\n (-each path\\n (lambda (heading)\\n (if (re-search-forward\\n (rx-to-string\\n `(: bol (repeat ,level \\u0026quot;*\\u0026quot;) (1+ \\u0026quot; \\u0026quot;) ,heading)) nil t)\\n (org-narrow-to-subtree)\\n (goto-char (point-max))\\n (unless (looking-at \\u0026quot;^\\u0026quot;)\\n (insert \\u0026quot;\\\\n\\u0026quot;))\\n (insert (make-string level ?*)\\n \\u0026quot; \\u0026quot;\\n heading\\n \\u0026quot;\\\\n\\u0026quot;))\\n (cl-incf level)))\\n (widen)\\n (org-end-of-subtree t t)\\n (org-paste-subtree level tree-text))))))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byceer\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byceer/what_is_the_appropriate_way_integrating_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/byceer/what_is_the_appropriate_way_integrating_a/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560026927.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_8dk3r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doom E05: Installing Packages with org-super-agenda as an example\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bycbzi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 31, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/hZpDdbflt8c?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E05: Installing Packages with org-super-agenda as an example\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/hZpDdbflt8c?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/hZpDdbflt8c/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/hZpDdbflt8c?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bycbzi\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 31, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560055321.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bycbzi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zaiste\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bycbzi/emacs_doom_e05_installing_packages_with/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=hZpDdbflt8c\\u0026feature=youtu.be\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560026521.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E05: Installing Packages with org-super-agenda as an example\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/hZpDdbflt8c?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/hZpDdbflt8c/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello,\\n\\nI use [https://www.emacswiki.org/emacs/MultiTerm](https://www.emacswiki.org/emacs/MultiTerm) . I want to be able to copy text from multi-term using Ctrl c. I put stty intr \\\\^j in my .bashrc so that C-c is no longer interrupt. I can bind copy to e.g. C-x or C-c C-c using\\n\\n`(add-to-list 'term-bind-key-alist '(\\\"C-x\\\" . kill-region))`\\n\\nbut I cannot bind it to C-c using the same way (even after working on it for a couple of hours). I would be thankful if anyone could tell me how to do this.\\n\\nOh and please don't comment that I shouldn't use C-c for copying. I want it to be C-c because it is C-c in other programs and having different shortcuts for copy would mess up my muscle memory. \\n\\n\\nUpdate: \\n\\nThe following works:\\n\\n (global-set-key (kbd \\\"C-v\\\") 'yank)\\n (global-set-key (kbd \\\"C-x\\\") 'kill-region)\\n (define-key input-decode-map (kbd \\\"C-c\\\") (kbd \\\"M-w\\\"))\\n (add-to-list 'term-bind-key-alist '(\\\"C-v\\\" . term-paste))\\n\\nWhy is emacs so unnecessary complicated?\", \"author_fullname\": \"t2_1ij7p2fr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Copy with C-c in multi-term\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byc0rs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560345232.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560053449.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use \\u003Ca href=\\\"https://www.emacswiki.org/emacs/MultiTerm\\\"\\u003Ehttps://www.emacswiki.org/emacs/MultiTerm\\u003C/a\\u003E . I want to be able to copy text from multi-term using Ctrl c. I put stty intr ^j in my .bashrc so that C-c is no longer interrupt. I can bind copy to e.g. C-x or C-c C-c using\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(add-to-list \\u0026#39;term-bind-key-alist \\u0026#39;(\\u0026quot;C-x\\u0026quot; . kill-region))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut I cannot bind it to C-c using the same way (even after working on it for a couple of hours). I would be thankful if anyone could tell me how to do this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOh and please don\\u0026#39;t comment that I shouldn\\u0026#39;t use C-c for copying. I want it to be C-c because it is C-c in other programs and having different shortcuts for copy would mess up my muscle memory. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe following works:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(global-set-key (kbd \\u0026quot;C-v\\u0026quot;) \\u0026#39;yank)\\n(global-set-key (kbd \\u0026quot;C-x\\u0026quot;) \\u0026#39;kill-region)\\n(define-key input-decode-map (kbd \\u0026quot;C-c\\u0026quot;) (kbd \\u0026quot;M-w\\u0026quot;))\\n(add-to-list \\u0026#39;term-bind-key-alist \\u0026#39;(\\u0026quot;C-v\\u0026quot; . term-paste))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhy is emacs so unnecessary complicated?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byc0rs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kryptomatrix\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byc0rs/copy_with_cc_in_multiterm/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/byc0rs/copy_with_cc_in_multiterm/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560024649.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"This is a poll, about which emacs completion engine reddit emacs useres use. \\n\\nI'd like to know which emacs completion engine (for file and buffer names) you are using. \\nYou can choose from: `helm`, `ido`, `ivy`, `none` or `something else`. \\n\\nI will create 5 messages in this thread, one for every choice. Please upvote the message corresponding to the completion engine you are using. \\n\\nIf you use `something else` please drop an note, about what you are using. `company` and similar things, are not an option because it is a completion framework for a different purpose.\\n\\n*edit:* the correct term for this completion is, according to [emacs wiki](https://www.emacswiki.org/emacs/Completion#completion): `Input Completion`\\n\\n*edit 2:* I forgot to mention tab completion, votes for this should go into `none`, since this is emacs default behaviour.\", \"author_fullname\": \"t2_1rke6ck4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"POLL: which emacs completion engine do you use?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bybupl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560028273.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560052460.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is a poll, about which emacs completion engine reddit emacs useres use. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to know which emacs completion engine (for file and buffer names) you are using.\\u003Cbr/\\u003E\\nYou can choose from: \\u003Ccode\\u003Ehelm\\u003C/code\\u003E, \\u003Ccode\\u003Eido\\u003C/code\\u003E, \\u003Ccode\\u003Eivy\\u003C/code\\u003E, \\u003Ccode\\u003Enone\\u003C/code\\u003E or \\u003Ccode\\u003Esomething else\\u003C/code\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI will create 5 messages in this thread, one for every choice. Please upvote the message corresponding to the completion engine you are using. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you use \\u003Ccode\\u003Esomething else\\u003C/code\\u003E please drop an note, about what you are using. \\u003Ccode\\u003Ecompany\\u003C/code\\u003E and similar things, are not an option because it is a completion framework for a different purpose.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003Eedit:\\u003C/em\\u003E the correct term for this completion is, according to \\u003Ca href=\\\"https://www.emacswiki.org/emacs/Completion#completion\\\"\\u003Eemacs wiki\\u003C/a\\u003E: \\u003Ccode\\u003EInput Completion\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003Eedit 2:\\u003C/em\\u003E I forgot to mention tab completion, votes for this should go into \\u003Ccode\\u003Enone\\u003C/code\\u003E, since this is emacs default behaviour.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bybupl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SlowValue\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bybupl/poll_which_emacs_completion_engine_do_you_use/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bybupl/poll_which_emacs_completion_engine_do_you_use/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560023660.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am looking for a way to keep my xresources synchronized with my emacs theme. I know that it is possible to write an emacs theme that pulls it's colors from the xresources file, but I would like this to work the other way around. That way, I can change my emacs theme dynamically with elisp, and other programs will adjust accordingly. Any ideas?\", \"author_fullname\": \"t2_3235n7gs\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Synchronizing xresources with emacs theme\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byau45\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560046512.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am looking for a way to keep my xresources synchronized with my emacs theme. I know that it is possible to write an emacs theme that pulls it\\u0026#39;s colors from the xresources file, but I would like this to work the other way around. That way, I can change my emacs theme dynamically with elisp, and other programs will adjust accordingly. Any ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byau45\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_buttlicker_69\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/byau45/synchronizing_xresources_with_emacs_theme/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/byau45/synchronizing_xresources_with_emacs_theme/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560017712.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm using `evil-mode` and am trying to bind `, e` to `org-edit-special`. I then also want to be able to exit the resulting `org-src-mode` buffer using the same key sequence. First thing I tried was this:\\n\\n (add-hook 'org-mode-hook\\n (lambda ()\\n (define-key evil-normal-state-map (kbd \\\",\\\") nil)\\n (define-key evil-normal-state-map (kbd \\\", e\\\") 'org-edit-special)))\\n (add-hook 'org-src-mode-hook\\n (lambda ()\\n (define-key evil-normal-state-map (kbd \\\", e\\\") 'org-edit-src-exit)\\n (define-key evil-normal-state-map (kbd \\\", q\\\") 'org-edit-src-abort)))\\n\\nThat would work, but since the hooks didn't just affect the local buffers, I'd be able to use `, e` only once to call `org-edit-special`, and then exit. After that, it would still be bound to `org-edit-src-exit`, so I couldn't use it anymore. Then I found about `add-hook`'s optional `local` argument, and tried the following:\\n\\n (add-hook 'org-mode-hook\\n (lambda ()\\n (define-key evil-normal-state-map (kbd \\\",\\\") nil)\\n (define-key evil-normal-state-map (kbd \\\", e\\\") 'org-edit-special))\\n nil t)\\n (add-hook 'org-src-mode-hook\\n (lambda ()\\n (define-key evil-normal-state-map (kbd \\\", e\\\") 'org-edit-src-exit)\\n (define-key evil-normal-state-map (kbd \\\", q\\\") 'org-edit-src-abort))\\n nil t)\\n\\nBut now, nothing is rebound at all, I can't even use `, e` once. What am I doing wrong?\", \"author_fullname\": \"t2_3d2ya3z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Need help with making local hooks work\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_by690t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560014955.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using \\u003Ccode\\u003Eevil-mode\\u003C/code\\u003E and am trying to bind \\u003Ccode\\u003E, e\\u003C/code\\u003E to \\u003Ccode\\u003Eorg-edit-special\\u003C/code\\u003E. I then also want to be able to exit the resulting \\u003Ccode\\u003Eorg-src-mode\\u003C/code\\u003E buffer using the same key sequence. First thing I tried was this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(add-hook \\u0026#39;org-mode-hook\\n (lambda ()\\n (define-key evil-normal-state-map (kbd \\u0026quot;,\\u0026quot;) nil)\\n (define-key evil-normal-state-map (kbd \\u0026quot;, e\\u0026quot;) \\u0026#39;org-edit-special)))\\n(add-hook \\u0026#39;org-src-mode-hook\\n (lambda ()\\n (define-key evil-normal-state-map (kbd \\u0026quot;, e\\u0026quot;) \\u0026#39;org-edit-src-exit)\\n (define-key evil-normal-state-map (kbd \\u0026quot;, q\\u0026quot;) \\u0026#39;org-edit-src-abort)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThat would work, but since the hooks didn\\u0026#39;t just affect the local buffers, I\\u0026#39;d be able to use \\u003Ccode\\u003E, e\\u003C/code\\u003E only once to call \\u003Ccode\\u003Eorg-edit-special\\u003C/code\\u003E, and then exit. After that, it would still be bound to \\u003Ccode\\u003Eorg-edit-src-exit\\u003C/code\\u003E, so I couldn\\u0026#39;t use it anymore. Then I found about \\u003Ccode\\u003Eadd-hook\\u003C/code\\u003E\\u0026#39;s optional \\u003Ccode\\u003Elocal\\u003C/code\\u003E argument, and tried the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(add-hook \\u0026#39;org-mode-hook\\n (lambda ()\\n (define-key evil-normal-state-map (kbd \\u0026quot;,\\u0026quot;) nil)\\n (define-key evil-normal-state-map (kbd \\u0026quot;, e\\u0026quot;) \\u0026#39;org-edit-special))\\n nil t)\\n(add-hook \\u0026#39;org-src-mode-hook\\n (lambda ()\\n (define-key evil-normal-state-map (kbd \\u0026quot;, e\\u0026quot;) \\u0026#39;org-edit-src-exit)\\n (define-key evil-normal-state-map (kbd \\u0026quot;, q\\u0026quot;) \\u0026#39;org-edit-src-abort))\\n nil t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBut now, nothing is rebound at all, I can\\u0026#39;t even use \\u003Ccode\\u003E, e\\u003C/code\\u003E once. What am I doing wrong?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"by690t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sprudelfrisch\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/by690t/need_help_with_making_local_hooks_work/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/by690t/need_help_with_making_local_hooks_work/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559986155.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Update: I solved it. See bolow for my solution\\n\\n\\u0026#x200B;\\n\\nHello,\\n\\nI use [https://www.emacswiki.org/emacs/TabBarMode](https://www.emacswiki.org/emacs/TabBarMode) and [https://www.emacswiki.org/emacs/MultiTerm](https://www.emacswiki.org/emacs/MultiTerm) but there is a problem with those two: Tabbar also shows the special tabs \\\\*Messages\\\\*, \\\\*scratch\\\\*, \\\\*Completions\\\\*. This is very annoying (especially \\\\*Completions\\\\*). I found a way to hide those buffers:\\n\\n ;; 1- if remove-if is not found, add here (require 'cl)\\n ;; 2- in my emacs 23, I had to remove the \\\"b\\\" from \\\"lambda (b)\\\"\\n (when (require 'tabbar nil t)\\n (setq tabbar-buffer-groups-function\\n (lambda () (list \\\"All Buffers\\\")))\\n (setq tabbar-buffer-list-function\\n (lambda ()\\n (remove-if\\n (lambda(buffer)\\n (find (aref (buffer-name buffer) 0) \\\" *\\\"))\\n (buffer-list))))\\n (tabbar-mode))\\n\\nThis works, but this also hides the terminal tabs from multiterm (because their buffer name is \\\\*terminal\\u003C1\\u003E\\\\* . How can I make tabbar hide \\\\*Completions\\\\* but not my terminal tabs?\\n\\nEDIT: I solved it: The following works just fine\\n\\n (setq tabbar-buffer-groups-function\\n \\t\\t (lambda ()\\n \\t\\t (if (member (buffer-name) (list \\\"*scratch*\\\" \\\"*Messages*\\\" \\\"*Completions*\\\") ) (list \\\"special\\\") (list \\\"All\\\"))\\n \\t\\t ))\", \"author_fullname\": \"t2_1ij7p2fr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Problem with tabbar and multiterm\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_by2ghj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559993609.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559985963.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUpdate: I solved it. See bolow for my solution\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use \\u003Ca href=\\\"https://www.emacswiki.org/emacs/TabBarMode\\\"\\u003Ehttps://www.emacswiki.org/emacs/TabBarMode\\u003C/a\\u003E and \\u003Ca href=\\\"https://www.emacswiki.org/emacs/MultiTerm\\\"\\u003Ehttps://www.emacswiki.org/emacs/MultiTerm\\u003C/a\\u003E but there is a problem with those two: Tabbar also shows the special tabs *Messages*, *scratch*, *Completions*. This is very annoying (especially *Completions*). I found a way to hide those buffers:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E ;; 1- if remove-if is not found, add here (require \\u0026#39;cl)\\n ;; 2- in my emacs 23, I had to remove the \\u0026quot;b\\u0026quot; from \\u0026quot;lambda (b)\\u0026quot;\\n (when (require \\u0026#39;tabbar nil t)\\n (setq tabbar-buffer-groups-function\\n (lambda () (list \\u0026quot;All Buffers\\u0026quot;)))\\n (setq tabbar-buffer-list-function\\n (lambda ()\\n (remove-if\\n (lambda(buffer)\\n (find (aref (buffer-name buffer) 0) \\u0026quot; *\\u0026quot;))\\n (buffer-list))))\\n (tabbar-mode))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis works, but this also hides the terminal tabs from multiterm (because their buffer name is *terminal\\u0026lt;1\\u0026gt;* . How can I make tabbar hide *Completions* but not my terminal tabs?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: I solved it: The following works just fine\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq tabbar-buffer-groups-function\\n (lambda ()\\n (if (member (buffer-name) (list \\u0026quot;*scratch*\\u0026quot; \\u0026quot;*Messages*\\u0026quot; \\u0026quot;*Completions*\\u0026quot;) ) (list \\u0026quot;special\\u0026quot;) (list \\u0026quot;All\\u0026quot;))\\n ))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"by2ghj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kryptomatrix\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/by2ghj/problem_with_tabbar_and_multiterm/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/by2ghj/problem_with_tabbar_and_multiterm/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559957163.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_i9gakgq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"My GNU Hyperbole Vision Quest; or, Jupiter and Beyond the Infinite\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_by28x5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559984512.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"by28x5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sugarbridalsentry\", \"num_crossposts\": 0, \"num_comments\": 54, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/by28x5/my_gnu_hyperbole_vision_quest_or_jupiter_and/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/termitereform/JunkPile/blob/master/HyperboleNotes.org\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559955712.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As the title states, I need help disabling the \\\\*scratch\\\\* buffer which happens to be opened on start up. \\n\\n\\u0026#x200B;\\n\\nSince i set up my config to load in some packages when the \\\"prog-mode\\\" hook is set off, all the packages with the prog-mode hook are being loaded at startup making my emacs start up slower. Do you guys have any remedies to this?\", \"author_fullname\": \"t2_xyjvost\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Disabling *scratch* buffer on start up.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_by1fqp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559979328.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs the title states, I need help disabling the *scratch* buffer which happens to be opened on start up. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince i set up my config to load in some packages when the \\u0026quot;prog-mode\\u0026quot; hook is set off, all the packages with the prog-mode hook are being loaded at startup making my emacs start up slower. Do you guys have any remedies to this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"by1fqp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JeusyLeusy\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/by1fqp/disabling_scratch_buffer_on_start_up/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/by1fqp/disabling_scratch_buffer_on_start_up/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559950528.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I made a theme with subtle syntax highlighting for Emacs. Do you like the palette? [Link in comments]\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_by0345\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 132, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 132, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559971672.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"by0345\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/by0345/i_made_a_theme_with_subtle_syntax_highlighting/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/7no6w84g50331.png\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559942872.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So I'm one of those people who does care how the UI looks. I've been using Spacemacs Dark even though I don't use Spacemacs (I believe in configuring my own editor). I also love Monokai Pro (not the original Monokai theme). What are some of the themes that you're particularly in love with?\\n\\nMy .emacs.d: [https://github.com/ianpan870102/.emacs.d](https://github.com/ianpan870102/.emacs.d)\\n\\n\\u0026#x200B;\\n\\n**Edit**: I checked out some of the themes suggested by y'all and **made this theme** just now [https://github.com/ianpan870102/Emacs-Wilmersdorf-Theme/blob/master/README.md](https://github.com/ianpan870102/Emacs-Wilmersdorf-Theme/blob/master/README.md)\\n\\n\\u0026#x200B;\\n\\nFeel free to give me feedbacks down below!\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What Emacs color scheme do you use?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxyp3k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559974444.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559964272.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I\\u0026#39;m one of those people who does care how the UI looks. I\\u0026#39;ve been using Spacemacs Dark even though I don\\u0026#39;t use Spacemacs (I believe in configuring my own editor). I also love Monokai Pro (not the original Monokai theme). What are some of the themes that you\\u0026#39;re particularly in love with?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy .emacs.d: \\u003Ca href=\\\"https://github.com/ianpan870102/.emacs.d\\\"\\u003Ehttps://github.com/ianpan870102/.emacs.d\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit\\u003C/strong\\u003E: I checked out some of the themes suggested by y\\u0026#39;all and \\u003Cstrong\\u003Emade this theme\\u003C/strong\\u003E just now \\u003Ca href=\\\"https://github.com/ianpan870102/Emacs-Wilmersdorf-Theme/blob/master/README.md\\\"\\u003Ehttps://github.com/ianpan870102/Emacs-Wilmersdorf-Theme/blob/master/README.md\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeel free to give me feedbacks down below!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxyp3k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 61, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxyp3k/what_emacs_color_scheme_do_you_use/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxyp3k/what_emacs_color_scheme_do_you_use/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559935472.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Because I want the org archive files to mirror the structure of org files I adapted a function I found on stackexchange - [Keeping the context when archiving in Emacs org-mode](https://stackoverflow.com/a/35475878/172406), but I am using a later update from a [Github gist](https://gist.github.com/kepi/2f4acc3cc93403c75fbba5684c5d852d)\\n\\nThere are 3 issues so far with it:\\n\\n1. Running the command `C-c $` or `org-archive-subtree` results in the error `command-execute: Wrong type argument: commandp, org-archive-subtree`. When I execute `org-archive-subtree-hierarchical` it works.\\n\\n2. The archived subtree doesn't contain the archive stats like that you expect it to like\\n \\n :PROPERTIES:\\n :ARCHIVE_TIME: 2019-06-06 Thu 11:56\\n :ARCHIVE_FILE: ~/org/errands/errands.org\\n :ARCHIVE_OLPATH: Errands/Archive\\n :ARCHIVE_CATEGORY: errands_01\\n :ARCHIVE_TODO: DONE\\n :ARCHIVE_ITAGS: archive\\n :END:\\n\\n3. I also get this message when I try some commands, `C-c` results in `error in process filter: Symbol\\u2019s value as variable is void: term-pending-delete-marker`.\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help needed with org-archive-subtree substitute?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxyfpf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559962930.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause I want the org archive files to mirror the structure of org files I adapted a function I found on stackexchange - \\u003Ca href=\\\"https://stackoverflow.com/a/35475878/172406\\\"\\u003EKeeping the context when archiving in Emacs org-mode\\u003C/a\\u003E, but I am using a later update from a \\u003Ca href=\\\"https://gist.github.com/kepi/2f4acc3cc93403c75fbba5684c5d852d\\\"\\u003EGithub gist\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere are 3 issues so far with it:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERunning the command \\u003Ccode\\u003EC-c $\\u003C/code\\u003E or \\u003Ccode\\u003Eorg-archive-subtree\\u003C/code\\u003E results in the error \\u003Ccode\\u003Ecommand-execute: Wrong type argument: commandp, org-archive-subtree\\u003C/code\\u003E. When I execute \\u003Ccode\\u003Eorg-archive-subtree-hierarchical\\u003C/code\\u003E it works.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EThe archived subtree doesn\\u0026#39;t contain the archive stats like that you expect it to like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E:PROPERTIES:\\n:ARCHIVE_TIME: 2019-06-06 Thu 11:56\\n:ARCHIVE_FILE: ~/org/errands/errands.org\\n:ARCHIVE_OLPATH: Errands/Archive\\n:ARCHIVE_CATEGORY: errands_01\\n:ARCHIVE_TODO: DONE\\n:ARCHIVE_ITAGS: archive\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI also get this message when I try some commands, \\u003Ccode\\u003EC-c\\u003C/code\\u003E results in \\u003Ccode\\u003Eerror in process filter: Symbol\\u2019s value as variable is void: term-pending-delete-marker\\u003C/code\\u003E.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxyfpf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxyfpf/help_needed_with_orgarchivesubtree_substitute/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxyfpf/help_needed_with_orgarchivesubtree_substitute/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559934130.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\n\\u0026#x200B;\\n\\nJust a question about using dired for rename / move dirs on remote\\n\\nmachine (sorry for my poor english).\\n\\n\\u0026#x200B;\\n\\nI have a home headless server and i connect to it from my desktop\\n\\nPC. In the server i have various dirs with multiple large files (\\u003E\\n\\nGB).\\n\\n\\u0026#x200B;\\n\\nI have notice two situations that make me avoid using emacs (in this\\n\\nsituations):\\n\\n\\u0026#x200B;\\n\\n1- Using dired, i connect via ssh (C-x d) to the server. I want to rename /\\n\\nmove a dir, so: Shift + R. Enter the destination or new file.\\n\\n\\u0026#x200B;\\n\\n2- Using dired, i connect via ssh to the server (C-x d). I want to rename a\\n\\ndir. So, wdired and change it. When done: C-c C-C.\\n\\n\\u0026#x200B;\\n\\nIn both situations, it lasts a lot of time. What is really happening\\n\\nis that the original dir is copied to the destination dir with the new\\n\\nname, and when finished, deletes the original dir. Using midnight\\n\\ncommander, this doesn't happens, and the operation duration is near 0.\\n\\n\\u0026#x200B;\\n\\nWhen local, all is fine, this only happens when operating with\\n\\nremote systems.\\n\\n\\u0026#x200B;\\n\\nIs this normal? Any ideas?\\n\\n\\u0026#x200B;\\n\\nThanks!\", \"author_fullname\": \"t2_c3qwyj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using dired(+tramp) for rename / move dirs on remote machine\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxvtfb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559949495.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust a question about using dired for rename / move dirs on remote\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Emachine (sorry for my poor english).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a home headless server and i connect to it from my desktop\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPC. In the server i have various dirs with multiple large files (\\u0026gt;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGB).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have notice two situations that make me avoid using emacs (in this\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esituations):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E1- Using dired, i connect via ssh (C-x d) to the server. I want to rename /\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Emove a dir, so: Shift + R. Enter the destination or new file.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2- Using dired, i connect via ssh to the server (C-x d). I want to rename a\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Edir. So, wdired and change it. When done: C-c C-C.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn both situations, it lasts a lot of time. What is really happening\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eis that the original dir is copied to the destination dir with the new\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ename, and when finished, deletes the original dir. Using midnight\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ecommander, this doesn\\u0026#39;t happens, and the operation duration is near 0.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen local, all is fine, this only happens when operating with\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eremote systems.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this normal? Any ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxvtfb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dienadel_007\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxvtfb/using_diredtramp_for_rename_move_dirs_on_remote/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxvtfb/using_diredtramp_for_rename_move_dirs_on_remote/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559920695.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"One strong part of my emacs or elisp workflow has always been the ease in jumping to source on core (if that's the right word) elisp functions. Sometimes it tells me something faster than the docs, sometimes I use it alongside the docs, or sometimes I just like looking through it, but with my most current emacs, there seem to only be the byte compiled versions of the source, and so trying to jump to them gives me a 'Can't find library /usr/share/../lisp/blah.el' error. This particular emacs used spacemacs as the starting point, which I have not done in the past, so I don't know if this happened to be a setting involved there or if its unrelated. Does anyone know the most straightforward way to get the .el versions in there as well? Thanks a bunch!\\n\\nEdit: I have solved it by reinstalling emacs completely from source, thanks everyone\", \"author_fullname\": \"t2_15g5qn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"/usr/share/emacs/26.1/lisp/* only contains the compiled .elc files of its libraries, would anyone know the most straightforward way to also have the .el files so I can jump to definition when reading more core elisp code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxv7fa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559929603.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559946216.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOne strong part of my emacs or elisp workflow has always been the ease in jumping to source on core (if that\\u0026#39;s the right word) elisp functions. Sometimes it tells me something faster than the docs, sometimes I use it alongside the docs, or sometimes I just like looking through it, but with my most current emacs, there seem to only be the byte compiled versions of the source, and so trying to jump to them gives me a \\u0026#39;Can\\u0026#39;t find library /usr/share/../lisp/blah.el\\u0026#39; error. This particular emacs used spacemacs as the starting point, which I have not done in the past, so I don\\u0026#39;t know if this happened to be a setting involved there or if its unrelated. Does anyone know the most straightforward way to get the .el versions in there as well? Thanks a bunch!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: I have solved it by reinstalling emacs completely from source, thanks everyone\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxv7fa\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ElBroet\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559917416.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So Emacs is pretty old, and it has `grep.el` and `find-dired` that allow to use external tools to search for files and in files. But that can cause difficulties when those tools are not available. Sure, `grep` and `find` are available on every *nix environment (ahem, BSD and GNU actually differ, ahem), but that's not the case for Windows. I'm not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\n\\nI'm aware of [xah-find](https://github.com/xahlee/xah-find), which declares these features:\\n\\n\\u003E\\u2022 Pure emacs lisp. No dependencies on unix/linux grep/sed/find. Especially useful on Windows.\\n\\u003E\\n\\u003E\\u2022 Output is highlighted and clickable for jumping to occurence.\\n\\u003E\\n\\u003E\\u2022 Using emacs regex, not bash/perl etc regex.\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that\\u2019s multiple lines.\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that contains lots Unicode characters. See [unix uniq unicode bug](http://xahlee.info/comp/unix_uniq_unicode_bug.html) and [emacs calling unix grep problem](http://ergoemacs.org/emacs/emacs_grep_problem.html)\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that contains lots escape slashes or backslashes. For example, Find/Replace string that\\u2019s regex in source code.\\n\\nAnd it's seem to be nice solution for searching within file contents when `grep` or alternatives aren't available, but it's not in the default Emacs, you have to use googlefu in order to find it. And also it features output format that is quite different from what `grep` produces.\\n\\nAs for file search, I know that [Projectile](https://github.com/bbatsov/projectile) provides a [native](https://docs.projectile.mx/en/latest/configuration/#project-indexing-method) way of searching for files written in elisp, but again, it's not in the core, for obvious reasons.\\n\\nI wonder why there's no builtin commands to do arbitrary file search and contents search from Emacs like in, say, VSCode, Sublime Text, and Atom, which have cross-platform methods to search for and in files, which make sense to me, since I will get similar results across platforms, and will not be worried if my system features GNU grep or BSD grep, and GNU find or BSD find, which can be an issue on Linux and MacOS, and will require setting up GNU utilities on Windows.\\n\\nSo are there any historical or technical reasons for that? I know that elisp can be pretty slow for such task, but it seems that `xah-find` performs pretty good on my machine, and `native` method in projectile works acceptable as well.\", \"author_fullname\": \"t2_w7w9e32\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"grep and find but in pure Emacs LISP?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxtwfg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559938474.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo Emacs is pretty old, and it has \\u003Ccode\\u003Egrep.el\\u003C/code\\u003E and \\u003Ccode\\u003Efind-dired\\u003C/code\\u003E that allow to use external tools to search for files and in files. But that can cause difficulties when those tools are not available. Sure, \\u003Ccode\\u003Egrep\\u003C/code\\u003E and \\u003Ccode\\u003Efind\\u003C/code\\u003E are available on every *nix environment (ahem, BSD and GNU actually differ, ahem), but that\\u0026#39;s not the case for Windows. I\\u0026#39;m not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m aware of \\u003Ca href=\\\"https://github.com/xahlee/xah-find\\\"\\u003Exah-find\\u003C/a\\u003E, which declares these features:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u2022 Pure emacs lisp. No dependencies on unix/linux grep/sed/find. Especially useful on Windows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Output is highlighted and clickable for jumping to occurence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Using emacs regex, not bash/perl etc regex.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that\\u2019s multiple lines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that contains lots Unicode characters. See \\u003Ca href=\\\"http://xahlee.info/comp/unix_uniq_unicode_bug.html\\\"\\u003Eunix uniq unicode bug\\u003C/a\\u003E and \\u003Ca href=\\\"http://ergoemacs.org/emacs/emacs_grep_problem.html\\\"\\u003Eemacs calling unix grep problem\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that contains lots escape slashes or backslashes. For example, Find/Replace string that\\u2019s regex in source code.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAnd it\\u0026#39;s seem to be nice solution for searching within file contents when \\u003Ccode\\u003Egrep\\u003C/code\\u003E or alternatives aren\\u0026#39;t available, but it\\u0026#39;s not in the default Emacs, you have to use googlefu in order to find it. And also it features output format that is quite different from what \\u003Ccode\\u003Egrep\\u003C/code\\u003E produces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for file search, I know that \\u003Ca href=\\\"https://github.com/bbatsov/projectile\\\"\\u003EProjectile\\u003C/a\\u003E provides a \\u003Ca href=\\\"https://docs.projectile.mx/en/latest/configuration/#project-indexing-method\\\"\\u003Enative\\u003C/a\\u003E way of searching for files written in elisp, but again, it\\u0026#39;s not in the core, for obvious reasons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wonder why there\\u0026#39;s no builtin commands to do arbitrary file search and contents search from Emacs like in, say, VSCode, Sublime Text, and Atom, which have cross-platform methods to search for and in files, which make sense to me, since I will get similar results across platforms, and will not be worried if my system features GNU grep or BSD grep, and GNU find or BSD find, which can be an issue on Linux and MacOS, and will require setting up GNU utilities on Windows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo are there any historical or technical reasons for that? I know that elisp can be pretty slow for such task, but it seems that \\u003Ccode\\u003Exah-find\\u003C/code\\u003E performs pretty good on my machine, and \\u003Ccode\\u003Enative\\u003C/code\\u003E method in projectile works acceptable as well.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxtwfg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andreyorst\", \"num_crossposts\": 0, \"num_comments\": 23, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559909674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"There was a post recently about why people quit using helm and I said that the TAB key usage was just too jarring (by default). I said that I gave up but prompted to change them I tried, but I didn't like any of my options that I could find. So I write my own. This will make the tab:\\n\\n* If there's more than one candidate flash the mode-line. This is a close enough approximation of the default `find-file` behavior that expands the candidates\\n* If there's one or less candidates do whatever the default persistent action is.\\n\\nNow helm doesn't really conflict with two decades of `find-file` or `execute-extended-command` usage(\\\\*):\\n\\nSo the flasher ([source](https://www.emacswiki.org/emacs/AlarmBell)):\\n\\n defun double-flash-mode-line ()\\n \\\"Flash the modeline\\\"\\n (let ((flash-sec (/ 1.0 20)))\\n (invert-face 'mode-line)\\n (run-with-timer flash-sec nil #'invert-face 'mode-line)\\n (run-with-timer (* 2 flash-sec) nil #'invert-face 'mode-line)\\n (run-with-timer (* 3 flash-sec) nil #'invert-face 'mode-line)))\\n\\nThe action:\\n\\n (defun helm-execute-if-single-persistent-action (\\u0026optional attr split-onewindow)\\n \\\"Execute persistent action if the candidate list is less than 2\\\"\\n (interactive)\\n (with-helm-alive-p\\n (if (\\u003E (helm-get-candidate-number) 2)\\n (double-flash-mode-line)\\n (helm-execute-persistent-action)\\n )))\\n\\nSo here's my helm-related configuration in it's entirety for now. I'm probably still missing a lot of gems to get the most out of it but still:\\n\\n (use-package helm\\n :demand t\\n :bind* (:map helm-map \\n ([tab] . helm-execute-if-single-persistent-action)\\n (\\\"C-i\\\" . helm-execute-persistent-action)\\n ))\\n \\n (use-package helm-files\\n :bind (:map helm-find-files-map\\n (\\\"\\u003CC-backspace\\u003E\\\" . helm-find-files-up-one-level)\\n )\\n )\\n \\n (require 'helm-config)\\n (global-set-key (kbd \\\"M-x\\\") 'helm-M-x)\\n (global-set-key (kbd \\\"C-x b\\\") 'helm-buffers-list)\\n (global-set-key (kbd \\\"C-x C-f\\\") 'helm-find-files)\\n (helm-mode 1)\\n\\nSimple enough and now helm can get off my lawn and back to my emacs.\\n\\n\\u0026#x200B;\\n\\n(\\\\*) I still make mistakes when I want a new file and there's a close candidate, but I can live with that.\", \"author_fullname\": \"t2_z7asf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Helm and the Tab key\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxt0cz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559932255.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere was a post recently about why people quit using helm and I said that the TAB key usage was just too jarring (by default). I said that I gave up but prompted to change them I tried, but I didn\\u0026#39;t like any of my options that I could find. So I write my own. This will make the tab:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf there\\u0026#39;s more than one candidate flash the mode-line. This is a close enough approximation of the default \\u003Ccode\\u003Efind-file\\u003C/code\\u003E behavior that expands the candidates\\u003C/li\\u003E\\n\\u003Cli\\u003EIf there\\u0026#39;s one or less candidates do whatever the default persistent action is.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ENow helm doesn\\u0026#39;t really conflict with two decades of \\u003Ccode\\u003Efind-file\\u003C/code\\u003E or \\u003Ccode\\u003Eexecute-extended-command\\u003C/code\\u003E usage(*):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo the flasher (\\u003Ca href=\\\"https://www.emacswiki.org/emacs/AlarmBell\\\"\\u003Esource\\u003C/a\\u003E):\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edefun double-flash-mode-line ()\\n \\u0026quot;Flash the modeline\\u0026quot;\\n (let ((flash-sec (/ 1.0 20)))\\n (invert-face \\u0026#39;mode-line)\\n (run-with-timer flash-sec nil #\\u0026#39;invert-face \\u0026#39;mode-line)\\n (run-with-timer (* 2 flash-sec) nil #\\u0026#39;invert-face \\u0026#39;mode-line)\\n (run-with-timer (* 3 flash-sec) nil #\\u0026#39;invert-face \\u0026#39;mode-line)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe action:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun helm-execute-if-single-persistent-action (\\u0026amp;optional attr split-onewindow)\\n \\u0026quot;Execute persistent action if the candidate list is less than 2\\u0026quot;\\n (interactive)\\n (with-helm-alive-p\\n (if (\\u0026gt; (helm-get-candidate-number) 2)\\n (double-flash-mode-line)\\n (helm-execute-persistent-action)\\n )))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo here\\u0026#39;s my helm-related configuration in it\\u0026#39;s entirety for now. I\\u0026#39;m probably still missing a lot of gems to get the most out of it but still:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package helm\\n :demand t\\n :bind* (:map helm-map \\n ([tab] . helm-execute-if-single-persistent-action)\\n (\\u0026quot;C-i\\u0026quot; . helm-execute-persistent-action)\\n ))\\n\\n(use-package helm-files\\n :bind (:map helm-find-files-map\\n (\\u0026quot;\\u0026lt;C-backspace\\u0026gt;\\u0026quot; . helm-find-files-up-one-level)\\n )\\n )\\n\\n(require \\u0026#39;helm-config)\\n(global-set-key (kbd \\u0026quot;M-x\\u0026quot;) \\u0026#39;helm-M-x)\\n(global-set-key (kbd \\u0026quot;C-x b\\u0026quot;) \\u0026#39;helm-buffers-list)\\n(global-set-key (kbd \\u0026quot;C-x C-f\\u0026quot;) \\u0026#39;helm-find-files)\\n(helm-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESimple enough and now helm can get off my lawn and back to my emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(*) I still make mistakes when I want a new file and there\\u0026#39;s a close candidate, but I can live with that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxt0cz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TTRation\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxt0cz/helm_and_the_tab_key/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxt0cz/helm_and_the_tab_key/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559903455.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm currently using\\n\\n```\\n(defvar default-font \\\"DejaVu Sans Mono-11.0:antialias=natural\\\")\\n(add-to-list 'default-frame-alist `(font . ,default-font))\\n```\\n\\nbut I'm wondering whether there is sth better out there.\", \"author_fullname\": \"t2_q52rf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What font settings would you recommend?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxsydi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559931829.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m currently using\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(defvar default-font \\u0026quot;DejaVu Sans Mono-11.0:antialias=natural\\u0026quot;)\\n(add-to-list \\u0026#39;default-frame-alist `(font . ,default-font))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut I\\u0026#39;m wondering whether there is sth better out there.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsydi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackjackk0\", \"num_crossposts\": 0, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559903029.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have install the MELPA stable packages for pandoc, mark-down-mode and pandoc-mode. Can export, compile etc fine with mark-down mode but I cannot get the pandoc-mode exporting to work as the error is 'Searching for program: No such file or directory, pandoc'\\n\\n\\u0026#x200B;\\n\\nIn my .emacs file I have (setq markdown-command \\\"/usr/local/bin/pandoc\\\")\\n\\n\\u0026#x200B;\\n\\nGoing through finder, I do have a 50.9MB pandoc file (with no extension though) in /usr/local/bin\\n\\n\\u0026#x200B;\\n\\nAny ideas?\", \"author_fullname\": \"t2_5034r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help installing pandoc, markdown-mode, pandoc-mode. OSX\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxsvnc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559931249.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have install the MELPA stable packages for pandoc, mark-down-mode and pandoc-mode. Can export, compile etc fine with mark-down mode but I cannot get the pandoc-mode exporting to work as the error is \\u0026#39;Searching for program: No such file or directory, pandoc\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my .emacs file I have (setq markdown-command \\u0026quot;/usr/local/bin/pandoc\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoing through finder, I do have a 50.9MB pandoc file (with no extension though) in /usr/local/bin\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsvnc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"richardsplash\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559902449.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Because the `elpa` directory is in the `emacs.d` directory when I try to search for some strings in own `init.el` it shows results from the `elpa` directory which I don't need.\\n\\nDo some of the grepping packages (projectile-grep for instance) have options to restrict or exclude some directories from the search?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to configure a grep command not to search some directories?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxrxm0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559923409.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause the \\u003Ccode\\u003Eelpa\\u003C/code\\u003E directory is in the \\u003Ccode\\u003Eemacs.d\\u003C/code\\u003E directory when I try to search for some strings in own \\u003Ccode\\u003Einit.el\\u003C/code\\u003E it shows results from the \\u003Ccode\\u003Eelpa\\u003C/code\\u003E directory which I don\\u0026#39;t need.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo some of the grepping packages (projectile-grep for instance) have options to restrict or exclude some directories from the search?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxrxm0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559894609.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I don't know why I hadn't done this sooner, but today I installed kubuntu on a memory stick and am now running that on my otherwise Windows 10 laptop.\\n\\nOf course, the first thing I did after installing 106 kubuntu updates was to install Emacs, which happens to be version 26.1. I noticed, however, that the kubuntu repository doesn't include any of the `.info` files!\\n\\nSo I uninstalled, downloaded 26.2 from [GNU Land](https://www.gnu.org/software/emacs/download.html) and read through the installation instructions. I got as far as running `./configure` and came up with this message:\\n\\n configure: error: You seem to be running X, but no X development libraries\\n were found. You should install the relevant development files for X\\n and for the toolkit you want, such as Gtk+ or Motif. Also make\\n sure you have development files for image handling, i.e.\\n tiff, gif, jpeg, png and xpm.\\n If you are sure you want Emacs compiled without X window support, pass\\n --without-x\\n to configure.\\n\\nI went into the Muon package manager, typed in `x window development library`, and found these two lovelies:\\n\\n- libclxclient-dev (X Window System C++ access library)\\n- libdri2-dev (library for the DRI2 extension to the X Window System)\\n\\nWhich means very little to me :-( I haven't even looked at Gtk+ or Motif, as well as the development files for image handling.\\n\\nI've Googled, and most of what I've found is at least 2 years old. Hoping someone would offer some guidance here, please.\", \"author_fullname\": \"t2_3n4c5vdo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Roadblock when installing Emacs 26.2 on kubuntu 19.04\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxrwro\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559923220.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t know why I hadn\\u0026#39;t done this sooner, but today I installed kubuntu on a memory stick and am now running that on my otherwise Windows 10 laptop.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, the first thing I did after installing 106 kubuntu updates was to install Emacs, which happens to be version 26.1. I noticed, however, that the kubuntu repository doesn\\u0026#39;t include any of the \\u003Ccode\\u003E.info\\u003C/code\\u003E files!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I uninstalled, downloaded 26.2 from \\u003Ca href=\\\"https://www.gnu.org/software/emacs/download.html\\\"\\u003EGNU Land\\u003C/a\\u003E and read through the installation instructions. I got as far as running \\u003Ccode\\u003E./configure\\u003C/code\\u003E and came up with this message:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Econfigure: error: You seem to be running X, but no X development libraries\\nwere found. You should install the relevant development files for X\\nand for the toolkit you want, such as Gtk+ or Motif. Also make\\nsure you have development files for image handling, i.e.\\ntiff, gif, jpeg, png and xpm.\\nIf you are sure you want Emacs compiled without X window support, pass\\n --without-x\\nto configure.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI went into the Muon package manager, typed in \\u003Ccode\\u003Ex window development library\\u003C/code\\u003E, and found these two lovelies:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Elibclxclient-dev (X Window System C++ access library)\\u003C/li\\u003E\\n\\u003Cli\\u003Elibdri2-dev (library for the DRI2 extension to the X Window System)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhich means very little to me :-( I haven\\u0026#39;t even looked at Gtk+ or Motif, as well as the development files for image handling.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve Googled, and most of what I\\u0026#39;ve found is at least 2 years old. Hoping someone would offer some guidance here, please.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxrwro\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"granti128\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559894420.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello r/emacs\\n\\nI would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz.[1](https://www.floydmortuary.com/obituaries/Eric-Ritz/) I didn't know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his `php-mode`.\\n\\nI'm not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\\n\\n**EDIT**:\\n\\n\\u0026#x200B;\\n\\nI just submitted this letter to GitHub using contact page: [https://github.com/contact](https://github.com/contact)\\n\\n\\u0026#x200B;\\n\\n\\u003EHello Github/Microsoft, \\n\\u003E \\n\\u003EI'll start by sharing a post i put on r/emacs. [https://old.reddit.com/r/emacs/comments/bxq3a0/meta\\\\_an\\\\_in\\\\_memoriam\\\\_page/](https://old.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/) \\n\\u003E \\n\\u003E\\\"I would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz. I didn't know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his php-mode. \\n\\u003E \\n\\u003EI'm not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\\\" \\n\\u003E \\n\\u003EI'm referring to this GitHub user: [https://github.com/ejmr](https://github.com/ejmr) \\n\\u003E \\n\\u003EOnline obit page: [https://www.floydmortuary.com/obituaries/Eric-Ritz/](https://www.floydmortuary.com/obituaries/Eric-Ritz/) \\n\\u003E \\n\\u003EMy post concerned how the emacs community could memorialize contributors to the emacs cause. What could you guys do to memorialize GH members as a general policy \\u00e0 la Facebook? \\n\\u003E \\n\\u003EThank you for your time.\", \"author_fullname\": \"t2_gilh3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[meta] An \\\"in memoriam\\\" page?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"turquoise\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxq3a0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 87, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Meta\", \"can_mod_post\": false, \"score\": 87, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559933183.0, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559908284.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/emacs\\\"\\u003Er/emacs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz.\\u003Ca href=\\\"https://www.floydmortuary.com/obituaries/Eric-Ritz/\\\"\\u003E1\\u003C/a\\u003E I didn\\u0026#39;t know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his \\u003Ccode\\u003Ephp-mode\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEDIT\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI just submitted this letter to GitHub using contact page: \\u003Ca href=\\\"https://github.com/contact\\\"\\u003Ehttps://github.com/contact\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EHello Github/Microsoft, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ll start by sharing a post i put on \\u003Ca href=\\\"/r/emacs\\\"\\u003Er/emacs\\u003C/a\\u003E. \\u003Ca href=\\\"https://old.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\\\"\\u003Ehttps://old.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;I would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz. I didn\\u0026#39;t know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his php-mode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\\u0026quot; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m referring to this GitHub user: \\u003Ca href=\\\"https://github.com/ejmr\\\"\\u003Ehttps://github.com/ejmr\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnline obit page: \\u003Ca href=\\\"https://www.floydmortuary.com/obituaries/Eric-Ritz/\\\"\\u003Ehttps://www.floydmortuary.com/obituaries/Eric-Ritz/\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy post concerned how the emacs community could memorialize contributors to the emacs cause. What could you guys do to memorialize GH members as a general policy \\u00e0 la Facebook? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you for your time.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"171710ba-1fbb-11e9-852d-0eba022ed4aa\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"export EDITOR=emacs\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxq3a0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paxperscientiam\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559879484.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_6b5tg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxmyy8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 32, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 32, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559889098.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxmyy8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"LiterallyCarlSagan\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/federicotdn/key-quiz\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559860298.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a package that will let me forget which files I've already opened? Not so much a project exploration package or a do-everything completion system, just a slight twist on switch-to-buffer which would look for files if tab-completing to an existing buffer has failed. Kind of like how finding a file that's already open just switches to its buffer. Ideally as similar to switch-to-buffer's UI as possible.\", \"author_fullname\": \"t2_ajc92\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Package to switch to buffer or file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxm847\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559885167.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a package that will let me forget which files I\\u0026#39;ve already opened? Not so much a project exploration package or a do-everything completion system, just a slight twist on switch-to-buffer which would look for files if tab-completing to an existing buffer has failed. Kind of like how finding a file that\\u0026#39;s already open just switches to its buffer. Ideally as similar to switch-to-buffer\\u0026#39;s UI as possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxm847\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"phalp\", \"num_crossposts\": 0, \"num_comments\": 22, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559856367.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm pretty new to emacs, I just installed spacemacs on my arch machine. In the terminal, the interface is near-unreadable. I just see \\\\u6969 all over the place where arrows and other unicode characters would be. Is there a font package I'm missing or something?\", \"author_fullname\": \"t2_eim28\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs showing unicode sequences in the terminal\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxjr2h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559872476.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m pretty new to emacs, I just installed spacemacs on my arch machine. In the terminal, the interface is near-unreadable. I just see \\\\u6969 all over the place where arrows and other unicode characters would be. Is there a font package I\\u0026#39;m missing or something?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxjr2h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rpgwaiter\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559843676.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If I'm writing a document to be published via latex, what, if any, advantages are there to author it in org-babel vs. pure latex? Does the answer change if the document includes things like mathematical equations, technical diagrams and/or code examples?\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-babel for latex\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxiz6w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559868561.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I\\u0026#39;m writing a document to be published via latex, what, if any, advantages are there to author it in org-babel vs. pure latex? Does the answer change if the document includes things like mathematical equations, technical diagrams and/or code examples?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxiz6w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559839761.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to debug python, but when it asks for a template and I type in \\\"python,\\\" nothing comes up. Where do I get a template?\", \"author_fullname\": \"t2_14xlbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Where do I find templates for dap-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxhod6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559861885.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to debug python, but when it asks for a template and I type in \\u0026quot;python,\\u0026quot; nothing comes up. Where do I get a template?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxhod6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_wade\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559833085.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have a setup where I'm forced to work on a Windows machine and connect to a remote linux server.\\n\\nMy initial idea was to start a emacs in daemon mode with `emacs --daemon` and having it persistently running on the server. Then, from windows and using putty (with X-forwarding) + vcxsrv (X Server for Windows), I could call `emacsclient -c` and have a client to this persistent session every time I need in a dedicated window in my Windows pc.\\n\\n\\nThis setup for me would be great because my sessions would survive connection instabilities. Even if my putty session dropped (which happens sometimes), I could just start another emacsclient and resume the work from where I left, including long-running `compile` commands.\\n\\n\\nHowever what happens is that after my connection drops for the first time (or I close a emacsclient) is that the next call to `emacsclient` fails. The system simply hangs and nothing happens. This happened with `emacsclient foo`, `emacsclient -c`, `emacsclient -e nil`, `emacsclient -t`, etc. It hangs (saying \\\"Waiting for Emacs\\\" if the -n flag is passed) as usual, but it never really opens a new emacs frame. \\n\\n\\nRestarting the server solves the issue, but of course I lose all my work.\\n\\n\\nAny ideas?\\n\\n\\n```\\nThis is GNU Emacs 25.1.1 (x86\\\\_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-15, modified by Debian\\n```\", \"author_fullname\": \"t2_2nkdd29t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxfdd1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847473.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a setup where I\\u0026#39;m forced to work on a Windows machine and connect to a remote linux server.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy initial idea was to start a emacs in daemon mode with \\u003Ccode\\u003Eemacs --daemon\\u003C/code\\u003E and having it persistently running on the server. Then, from windows and using putty (with X-forwarding) + vcxsrv (X Server for Windows), I could call \\u003Ccode\\u003Eemacsclient -c\\u003C/code\\u003E and have a client to this persistent session every time I need in a dedicated window in my Windows pc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis setup for me would be great because my sessions would survive connection instabilities. Even if my putty session dropped (which happens sometimes), I could just start another emacsclient and resume the work from where I left, including long-running \\u003Ccode\\u003Ecompile\\u003C/code\\u003E commands.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever what happens is that after my connection drops for the first time (or I close a emacsclient) is that the next call to \\u003Ccode\\u003Eemacsclient\\u003C/code\\u003E fails. The system simply hangs and nothing happens. This happened with \\u003Ccode\\u003Eemacsclient foo\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -c\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -e nil\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -t\\u003C/code\\u003E, etc. It hangs (saying \\u0026quot;Waiting for Emacs\\u0026quot; if the -n flag is passed) as usual, but it never really opens a new emacs frame. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERestarting the server solves the issue, but of course I lose all my work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\nThis is GNU Emacs 25.1.1 (x86\\\\_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-15, modified by Debian\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfdd1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vitorqb23\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559818673.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I used to get a longer undo history, I would frequently use visualize-undo-tree to navigate through my undo states... suddenly my tree is always a single path. \\n\\nAnyone have any idea what I might have changed?\", \"author_fullname\": \"t2_krp1j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Somehow my undo history is truncated... what did I inadvertently change?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx82j3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559798322.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used to get a longer undo history, I would frequently use visualize-undo-tree to navigate through my undo states... suddenly my tree is always a single path. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone have any idea what I might have changed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx82j3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moxxon\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559769522.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"well, recently i am using emacs to manage agenda, to write academic docs, to write some scripts for programming contest and so on until sudendly i find myself unproductive and crazy closing all buffer related to magit, org-mode, eshell, etc.... so i want to know how do you deal with all buffers?, how do you find and change to a buffer quickly?....\\n\\nany ideas is well received... thanks you!!\", \"author_fullname\": \"t2_rpq4n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"how to deal with a lot of buffers in emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx7m7a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 54, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 54, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559796022.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewell, recently i am using emacs to manage agenda, to write academic docs, to write some scripts for programming contest and so on until sudendly i find myself unproductive and crazy closing all buffer related to magit, org-mode, eshell, etc.... so i want to know how do you deal with all buffers?, how do you find and change to a buffer quickly?....\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eany ideas is well received... thanks you!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx7m7a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ch0ff\", \"num_crossposts\": 0, \"num_comments\": 63, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559767222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Even Better 'Better Defaults'\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx54uk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559783750.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx54uk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/ianpan870102/.emacs.d\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559754950.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've made an example [restclient file](https://github.com/TatriX/realworld-rust-rocket/blob/master/tests/dev.http) for my [realworld](https://github.com/TatriX/realworld-rust-rocket) implementation in Rust.\\n\\n[Restclient](https://github.com/pashky/restclient.el) is useful for http testing. So if you never tried it I encourage you to do so!\\n\\nhttps://i.redd.it/lfmdm6x2mj231.png\", \"author_fullname\": \"t2_tpfed\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Restclient example\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"lfmdm6x2mj231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1810, \"x\": 1915, \"u\": \"https://i.redd.it/lfmdm6x2mj231.png\"}, \"m\": \"image/png\", \"id\": \"lfmdm6x2mj231\"}}, \"name\": \"t3_bx2t14\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559771552.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve made an example \\u003Ca href=\\\"https://github.com/TatriX/realworld-rust-rocket/blob/master/tests/dev.http\\\"\\u003Erestclient file\\u003C/a\\u003E for my \\u003Ca href=\\\"https://github.com/TatriX/realworld-rust-rocket\\\"\\u003Erealworld\\u003C/a\\u003E implementation in Rust.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/pashky/restclient.el\\\"\\u003ERestclient\\u003C/a\\u003E is useful for http testing. So if you never tried it I encourage you to do so!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/lfmdm6x2mj231.png\\\"\\u003Ehttps://i.redd.it/lfmdm6x2mj231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2t14\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tatrics\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559742752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_eqgha\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx2swo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559771533.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2swo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andreas-marschke\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559742733.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want to make it so that all variable and function calls are highlighted in the same way they are in definitions but I cannot work out how to properly do so.\\n\\n[Image](https://imgur.com/t9sIhUs) of my current highlighting.\", \"author_fullname\": \"t2_3bwix9h6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx2cy9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559768909.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to make it so that all variable and function calls are highlighted in the same way they are in definitions but I cannot work out how to properly do so.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/t9sIhUs\\\"\\u003EImage\\u003C/a\\u003E of my current highlighting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2cy9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ConfidentGarbage9\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559740109.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to get into writing backends for Gnus, and I'm having a hard time wrapping my head around it coneptwise, essentialwise and otherwise.\\n\\n\\u0026#x200B;\\n\\nI think I've seen a blog-post or somesuch years ago walking through the basics, but all my attempts at finding it have evaluated to nil.\\n\\n\\u0026#x200B;\\n\\nWould I be so lucky that one of you might be able provide any pointers?\", \"author_fullname\": \"t2_mdzdbt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The woes of writing Gnus backends\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx25j5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559767624.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to get into writing backends for Gnus, and I\\u0026#39;m having a hard time wrapping my head around it coneptwise, essentialwise and otherwise.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I\\u0026#39;ve seen a blog-post or somesuch years ago walking through the basics, but all my attempts at finding it have evaluated to nil.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWould I be so lucky that one of you might be able provide any pointers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx25j5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"StoffePro\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx25j5/the_woes_of_writing_gnus_backends/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx25j5/the_woes_of_writing_gnus_backends/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559738824.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have some interesting agenda entries dating back to 2017 that I want to use in my current org files and I have set the TODO values to TODO2017, but there is too much to see when I am working on current items.\\n\\nIs there a way to filter the editing page to hide the TODO2017 or any other items?\\n\\nI think I can filter them out in the agenda view, but in this case I need them filtered when viewing or editing the page.\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can some org TODOs filtered out from normal working view?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx0bp9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559752893.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have some interesting agenda entries dating back to 2017 that I want to use in my current org files and I have set the TODO values to TODO2017, but there is too much to see when I am working on current items.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way to filter the editing page to hide the TODO2017 or any other items?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I can filter them out in the agenda view, but in this case I need them filtered when viewing or editing the page.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx0bp9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx0bp9/how_can_some_org_todos_filtered_out_from_normal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx0bp9/how_can_some_org_todos_filtered_out_from_normal/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559724093.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I saw [an earlier thread](https://www.reddit.com/r/emacs/comments/8e24t9/writing_reactjsx_in_2018_what_addons_do_you_all/) asking about users\\u2019 setups for JSX. Since I can\\u2019t respond to that thread, I thought I\\u2019d make a new one / an announcement.\\n\\nSince Emacs 25, js-jsx-mode was added to provide some indentation support for JSX \\u2014 however, the indentation code had many bugs and limitations. Not everyone knew about js-jsx-mode either.\\n\\nI decided to return to the Emacs core and fix the indentation code. I also added highlighting for JSX. I even made it so that JSX could be detected and used in normal JavaScript buffers, without the user needing to know about js-jsx-mode.\\n\\n[JSX code highlighted in Emacs 27](https://i.redd.it/hh8uds9elh231.png)\\n\\nAll these features are now available on the Emacs master branch, and eventually will be released in Emacs 27. I invite JS devs to take my improvements for a spin. Hopefully they will be pleasant for you to use!\\n\\nMy goal was to do most of the same things that the combination of js2-mode+rjsx-mode would achieve, without needing to install and configure extra modes, and hopefully with better performance.\", \"author_fullname\": \"t2_3w4fpd4t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"Improved JSX support now available in js-mode on Emacs master\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"hh8uds9elh231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 684, \"x\": 816, \"u\": \"https://i.redd.it/hh8uds9elh231.png\"}, \"m\": \"image/png\", \"id\": \"hh8uds9elh231\"}}, \"name\": \"t3_bwzpw0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 116, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 116, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559747224.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI saw \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/8e24t9/writing_reactjsx_in_2018_what_addons_do_you_all/\\\"\\u003Ean earlier thread\\u003C/a\\u003E asking about users\\u2019 setups for JSX. Since I can\\u2019t respond to that thread, I thought I\\u2019d make a new one / an announcement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince Emacs 25, js-jsx-mode was added to provide some indentation support for JSX \\u2014 however, the indentation code had many bugs and limitations. Not everyone knew about js-jsx-mode either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI decided to return to the Emacs core and fix the indentation code. I also added highlighting for JSX. I even made it so that JSX could be detected and used in normal JavaScript buffers, without the user needing to know about js-jsx-mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/hh8uds9elh231.png\\\"\\u003EJSX code highlighted in Emacs 27\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll these features are now available on the Emacs master branch, and eventually will be released in Emacs 27. I invite JS devs to take my improvements for a spin. Hopefully they will be pleasant for you to use!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy goal was to do most of the same things that the combination of js2-mode+rjsx-mode would achieve, without needing to install and configure extra modes, and hopefully with better performance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwzpw0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jacksonrayhamilton\", \"num_crossposts\": 0, \"num_comments\": 25, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559718424.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"It is kind of annoying to have to use capital letters to get a complete suggestion in many cases. So I was wondering if it possible to make company-lsp non-case-sensitive.\\n\\n\\u0026#x200B;\\n\\nThanks.\", \"author_fullname\": \"t2_3d69xp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make company-lsp non-case-sensitive?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwt79w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559706779.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt is kind of annoying to have to use capital letters to get a complete suggestion in many cases. So I was wondering if it possible to make company-lsp non-case-sensitive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwt79w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ram535\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwt79w/how_to_make_companylsp_noncasesensitive/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwt79w/how_to_make_companylsp_noncasesensitive/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559677979.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm a long-time vim user who's been intrigued for a while by what emacs has to offer. I recently made the plunge and have been been using emacs for my workflow with C/C++ development mostly. One issue that I'm running into is that I can't seem to get autoindent to behave nicely, or at least to behave like it does in vim.\\n\\nIn my .vimrc, I have two lines:\\n\\n set tabstop=4\\n set shiftwidth=4\\n\\nThere is a third option, set notabexpand, which is on by default and keeps tabs as tabs, instead of substituting spaces.\\n\\nThis is the behavior that I'm trying to create in emacs. The tab character is displayed as 4 spaces wide, but is actually saved as a tab character in the file instead of four spaces. Autoindentation also inserts tabs, which are displayed as 4 spaces wide.\\n\\nHow do I reproduce this in emacs? I've gone through half a dozen guides, each recommending something different, and all of them have had funky results. Currently I've got:\\n\\n (setq-default tab-width 4)\\n (setq tap-stop-list (number-sequence 4 80 4))\\n\\nAutoindents give me a tab two characters wide. I'm not sure if it's a tab being displayed as two spaces, or two actual spaces.\\n\\nI tried adding: \\n\\n (setq c-default-style \\\"linux\\\" tab-width 4)\\n\\nWhen I did this, tabs were indeed displayed as 4 characters wide, but each level of indention was giving me 2 tabs for a total of 8 characters of indentation per level.\\n\\nWhat am I missing here? I feel like I *must* be making this way harder than it is because such basic functionality can't be hidden behind 10 lines of configuration.\\n\\n\\nEdit:\\n\\nI did a little bit more tinkering, and I seem to have found a combination of settings that (mostly) gets the correct behavior.\\n\\nBasically, I got rid of everything in my .emacs that mentioned indentation and added the following:\\n\\n (setq-default c-basic-offset 4\\n tab-width 4\\n indent-tabs-mode t)\\n\\nWith that change, everything *seems* to be working correctly. c-basic-offset is how many spaces emacs will indent a level of code, tab width is how many spaces the tab character is equal to, and indent-tabs-mode is a boolean variable that determines if tabs are used (t) or spaces (f). At least that's what I'm gathering.\", \"author_fullname\": \"t2_ge28w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I get my tabs and auto-indent to behave nicely?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bws522\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559712779.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559701657.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a long-time vim user who\\u0026#39;s been intrigued for a while by what emacs has to offer. I recently made the plunge and have been been using emacs for my workflow with C/C++ development mostly. One issue that I\\u0026#39;m running into is that I can\\u0026#39;t seem to get autoindent to behave nicely, or at least to behave like it does in vim.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my .vimrc, I have two lines:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eset tabstop=4\\nset shiftwidth=4\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThere is a third option, set notabexpand, which is on by default and keeps tabs as tabs, instead of substituting spaces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the behavior that I\\u0026#39;m trying to create in emacs. The tab character is displayed as 4 spaces wide, but is actually saved as a tab character in the file instead of four spaces. Autoindentation also inserts tabs, which are displayed as 4 spaces wide.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I reproduce this in emacs? I\\u0026#39;ve gone through half a dozen guides, each recommending something different, and all of them have had funky results. Currently I\\u0026#39;ve got:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq-default tab-width 4)\\n(setq tap-stop-list (number-sequence 4 80 4))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAutoindents give me a tab two characters wide. I\\u0026#39;m not sure if it\\u0026#39;s a tab being displayed as two spaces, or two actual spaces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried adding: \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq c-default-style \\u0026quot;linux\\u0026quot; tab-width 4)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I did this, tabs were indeed displayed as 4 characters wide, but each level of indention was giving me 2 tabs for a total of 8 characters of indentation per level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat am I missing here? I feel like I \\u003Cem\\u003Emust\\u003C/em\\u003E be making this way harder than it is because such basic functionality can\\u0026#39;t be hidden behind 10 lines of configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did a little bit more tinkering, and I seem to have found a combination of settings that (mostly) gets the correct behavior.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically, I got rid of everything in my .emacs that mentioned indentation and added the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq-default c-basic-offset 4\\n tab-width 4\\n indent-tabs-mode t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith that change, everything \\u003Cem\\u003Eseems\\u003C/em\\u003E to be working correctly. c-basic-offset is how many spaces emacs will indent a level of code, tab width is how many spaces the tab character is equal to, and indent-tabs-mode is a boolean variable that determines if tabs are used (t) or spaces (f). At least that\\u0026#39;s what I\\u0026#39;m gathering.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bws522\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"morganmachine91\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bws522/how_do_i_get_my_tabs_and_autoindent_to_behave/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bws522/how_do_i_get_my_tabs_and_autoindent_to_behave/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559672857.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_r6lg7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Will this Debian buster (testing) bug of Emacs related to a 16 year old upstream gtk+ bug affect those waiting for buster?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwrhq4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559698416.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"bugs.debian.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwrhq4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jumpUpHigh\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwrhq4/will_this_debian_buster_testing_bug_of_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://bugs.debian.org/cgi-bin/bugreport.cgi?archive=no\\u0026bug=929567\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559669616.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello everyone,\\n\\nI have been wanting to customize emacs to my needs for a long time but except for org-mode haven't quite done anything. Figured now would be a good time to start.\\n\\nThe first thing that I want is I create a lot of buffers on emacs but sometimes when my work laptop decides to restart I loose all those buffers (since they aren't associated with any file).\\n\\nHow do I get emacs to auto save my buffers\\\\*\\\\* to a particular location? \\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\* When I say buffer I basically mean \\\\`C-x b\\\\` type in a new name and start working on it.\", \"author_fullname\": \"t2_u6flf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make emacs automatically save buffers to a location\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwqw72\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"3a5e1042-1094-11e7-bb00-0e3b6c7befce\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559695385.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been wanting to customize emacs to my needs for a long time but except for org-mode haven\\u0026#39;t quite done anything. Figured now would be a good time to start.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first thing that I want is I create a lot of buffers on emacs but sometimes when my work laptop decides to restart I loose all those buffers (since they aren\\u0026#39;t associated with any file).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I get emacs to auto save my buffers** to a particular location? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** When I say buffer I basically mean `C-x b` type in a new name and start working on it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwqw72\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"abhixec\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/bwqw72/how_to_make_emacs_automatically_save_buffers_to_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwqw72/how_to_make_emacs_automatically_save_buffers_to_a/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559666585.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am trying to create a package manager for emacs which doesn't rely on package.el, is very minimalistic, and does all of its operations in the background. I have done some basic operations using shell scripts, Maybe I will use elisp code instead at some point. Any feedbacks or comments are very much appreciated.\\n\\nhttps://github.com/SidharthArya/emacsit\", \"author_fullname\": \"t2_3tn7pcdr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A simple package manager for emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwptua\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559661450.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559689923.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to create a package manager for emacs which doesn\\u0026#39;t rely on package.el, is very minimalistic, and does all of its operations in the background. I have done some basic operations using shell scripts, Maybe I will use elisp code instead at some point. Any feedbacks or comments are very much appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/SidharthArya/emacsit\\\"\\u003Ehttps://github.com/SidharthArya/emacsit\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwptua\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SidharthArya-\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwptua/a_simple_package_manager_for_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwptua/a_simple_package_manager_for_emacs/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559661123.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cr743\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"dianyou 0.0.3 is out (Gnus tool to search/analyze mails)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwohf8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559682405.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"blog.binchen.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwohf8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"redguardtoo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwohf8/dianyou_003_is_out_gnus_tool_to_searchanalyze/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://blog.binchen.org/posts/dianyou-0-0-3-is-out.html\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559653605.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I know that `emacs` is not multi-threaded, but I'd hope to be able to spawn a child process from `eshell`. Running `M-x shell` and then `yes \\u003E /dev/null` results in a process `yes` being spawned and it is occupying one core's 100%, it does not block `emacs`, all is good.\\n\\nHowever, when running `M-x eshell` and then `yes \\u003E /dev/null` results in the `emacs` process chugging 100% cpu, therefore `eshell` spawns a process as a child `emacs` process? Do I get this right?\\n\\nSo the question is: Can `eshell` spawn a process that is detached from `emacs`, just like `M-x shell` does?\", \"author_fullname\": \"t2_17fhdh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Eshell don't blocks Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwn89f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559673594.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know that \\u003Ccode\\u003Eemacs\\u003C/code\\u003E is not multi-threaded, but I\\u0026#39;d hope to be able to spawn a child process from \\u003Ccode\\u003Eeshell\\u003C/code\\u003E. Running \\u003Ccode\\u003EM-x shell\\u003C/code\\u003E and then \\u003Ccode\\u003Eyes \\u0026gt; /dev/null\\u003C/code\\u003E results in a process \\u003Ccode\\u003Eyes\\u003C/code\\u003E being spawned and it is occupying one core\\u0026#39;s 100%, it does not block \\u003Ccode\\u003Eemacs\\u003C/code\\u003E, all is good.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, when running \\u003Ccode\\u003EM-x eshell\\u003C/code\\u003E and then \\u003Ccode\\u003Eyes \\u0026gt; /dev/null\\u003C/code\\u003E results in the \\u003Ccode\\u003Eemacs\\u003C/code\\u003E process chugging 100% cpu, therefore \\u003Ccode\\u003Eeshell\\u003C/code\\u003E spawns a process as a child \\u003Ccode\\u003Eemacs\\u003C/code\\u003E process? Do I get this right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo the question is: Can \\u003Ccode\\u003Eeshell\\u003C/code\\u003E spawn a process that is detached from \\u003Ccode\\u003Eemacs\\u003C/code\\u003E, just like \\u003Ccode\\u003EM-x shell\\u003C/code\\u003E does?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwn89f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"grimscythe_\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwn89f/eshell_dont_blocks_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwn89f/eshell_dont_blocks_emacs/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559644794.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559637338.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As in the previous thread don't feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly tips/trick/etc/ thread\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwm94g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559664939.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs in the previous thread don\\u0026#39;t feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwm94g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 32, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559636139.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_661dm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A keyboard that changes as you type.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwlncu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 82, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 82, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559659632.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwlncu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jaccarmac\", \"num_crossposts\": 1, \"num_comments\": 25, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwlncu/a_keyboard_that_changes_as_you_type/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/shapr/markovkeyboard\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559630832.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"After set debug-on-error to t in order to make sure that there is no error inside my .emacs file then i got some error on startup.\\n\\n Debugger entered--Lisp error: (wrong-type-argument undo-tree nil)\\n signal(wrong-type-argument (undo-tree nil))\\n undo-tree-current(nil)\\n (undo-tree-node-previous (undo-tree-current buffer-undo-tree))\\n (and undo-tree-mode (not buffer-read-only) (not (eq t buffer-undo-list)) (undo-tree-node-previous (undo-tree-current buffer-undo-tree)))\\n redisplay_internal\\\\ \\\\(C\\\\ function\\\\)()\\n message(\\\"Loading %s (source)...\\\" \\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\")\\n load-with-code-conversion(\\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\" \\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\" nil nil)\\n #\\u003Csubr load\\u003E(\\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\" nil nil nil nil)\\n ad-Advice-load(#\\u003Csubr load\\u003E \\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n apply(ad-Advice-load #\\u003Csubr load\\u003E \\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n load(\\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n eval-buffer(#\\u003Cbuffer *load*\\u003E nil \\\"/home/yourpc/.emacs\\\" nil t) ; Reading at buffer position 29657\\n load-with-code-conversion(\\\"/home/yourpc/.emacs\\\" \\\"/home/yourpc/.emacs\\\" t t)\\n load(\\\"~/.emacs\\\" noerror nomessage)\\n startup--load-user-init-file(#f(compiled-function () #\\u003Cbytecode 0x1fd3c2958e75\\u003E) #f(compiled-function () #\\u003Cbytecode 0x1fd3c2958e03\\u003E) t)\\n command-line()\\n normal-top-level()\\n\\nAnyone could help me fix this? I just want an error free.\", \"author_fullname\": \"t2_3uh7inav\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Set debug-on-error to t then startup with undo-tree error.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwleyk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559657730.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter set debug-on-error to t in order to make sure that there is no error inside my .emacs file then i got some error on startup.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EDebugger entered--Lisp error: (wrong-type-argument undo-tree nil)\\n signal(wrong-type-argument (undo-tree nil))\\n undo-tree-current(nil)\\n (undo-tree-node-previous (undo-tree-current buffer-undo-tree))\\n (and undo-tree-mode (not buffer-read-only) (not (eq t buffer-undo-list)) (undo-tree-node-previous (undo-tree-current buffer-undo-tree)))\\n redisplay_internal\\\\ \\\\(C\\\\ function\\\\)()\\n message(\\u0026quot;Loading %s (source)...\\u0026quot; \\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot;)\\n load-with-code-conversion(\\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot; \\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot; nil nil)\\n #\\u0026lt;subr load\\u0026gt;(\\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot; nil nil nil nil)\\n ad-Advice-load(#\\u0026lt;subr load\\u0026gt; \\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n apply(ad-Advice-load #\\u0026lt;subr load\\u0026gt; \\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n load(\\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n eval-buffer(#\\u0026lt;buffer *load*\\u0026gt; nil \\u0026quot;/home/yourpc/.emacs\\u0026quot; nil t) ; Reading at buffer position 29657\\n load-with-code-conversion(\\u0026quot;/home/yourpc/.emacs\\u0026quot; \\u0026quot;/home/yourpc/.emacs\\u0026quot; t t)\\n load(\\u0026quot;~/.emacs\\u0026quot; noerror nomessage)\\n startup--load-user-init-file(#f(compiled-function () #\\u0026lt;bytecode 0x1fd3c2958e75\\u0026gt;) #f(compiled-function () #\\u0026lt;bytecode 0x1fd3c2958e03\\u0026gt;) t)\\n command-line()\\n normal-top-level()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnyone could help me fix this? I just want an error free.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwleyk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cuhabaho\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwleyk/set_debugonerror_to_t_then_startup_with_undotree/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwleyk/set_debugonerror_to_t_then_startup_with_undotree/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559628930.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Unfortunately, this is not a just a statement about the longevity of Emacs, it's an actual problem I'm having: when I try to exit Emacs (either by C -x-C-c or closing the window), I get this error message in the minibuffer: \\n\\n\\nWrong type argument: number-or-marker-p, (+ -8) \\n\\n\\nI have to force quit it to get out. When I start Emacs with -q, this doesn't happen, so I'm getting ready to go through my whole init file, but I was hoping someone else might have encountered this and could save me some time. Thanks!\", \"author_fullname\": \"t2_gu9ty\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs won't quit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwjenz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559643882.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnfortunately, this is not a just a statement about the longevity of Emacs, it\\u0026#39;s an actual problem I\\u0026#39;m having: when I try to exit Emacs (either by C -x-C-c or closing the window), I get this error message in the minibuffer: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWrong type argument: number-or-marker-p, (+ -8) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have to force quit it to get out. When I start Emacs with -q, this doesn\\u0026#39;t happen, so I\\u0026#39;m getting ready to go through my whole init file, but I was hoping someone else might have encountered this and could save me some time. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwjenz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"viscountslim\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559615082.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello All,\\n\\nI have a single org file with lots of entries. Each entry has a few tags. I would like to view full entries for a specific a tag.\\n\\nI tried org-occur: it seem to highlight matching tags but keeps all entries in view\\n\\nI came across this old thread: [https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines](https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines) \\n\\nBefore trying this I wanted to see if there is something already baked in.\", \"author_fullname\": \"t2_62u3sb0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-mode: Narrow org buffer to matching tag entries such that full entry is in view\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwjdry\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559643739.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello All,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a single org file with lots of entries. Each entry has a few tags. I would like to view full entries for a specific a tag.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried org-occur: it seem to highlight matching tags but keeps all entries in view\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI came across this old thread: \\u003Ca href=\\\"https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines\\\"\\u003Ehttps://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore trying this I wanted to see if there is something already baked in.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwjdry\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"manojm321\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwjdry/orgmode_narrow_org_buffer_to_matching_tag_entries/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwjdry/orgmode_narrow_org_buffer_to_matching_tag_entries/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559614939.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My use case is this, I usually have emacs split into three vertical frames (left, center, and right) and I prefer editing in the middle buffer while using the right for reference and the left for compilation, testing, etc. Is there a way to make it so that when I open a buffer (or switch to a buffer) in the middle frame and it is open in the right, it swaps the middle and right buffers? This would be very nice for me so that I don't have to go back to the right buffer to change it myself. Is there a package for this or a simple script to make it work?\", \"author_fullname\": \"t2_apgh2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to swap if buffer is open in other frame, swap frame buffers instead of having two frames with the same buffer.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwdztj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559614819.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy use case is this, I usually have emacs split into three vertical frames (left, center, and right) and I prefer editing in the middle buffer while using the right for reference and the left for compilation, testing, etc. Is there a way to make it so that when I open a buffer (or switch to a buffer) in the middle frame and it is open in the right, it swaps the middle and right buffers? This would be very nice for me so that I don\\u0026#39;t have to go back to the right buffer to change it myself. Is there a package for this or a simple script to make it work?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwdztj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Twosided13\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwdztj/is_there_a_way_to_swap_if_buffer_is_open_in_other/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwdztj/is_there_a_way_to_swap_if_buffer_is_open_in_other/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559586019.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have the following code in my `.emacs` file:\\n\\n````\\n(custom-set-faces\\n '(default ((t (:family \\\"Source Code Pro\\\" :foundry \\\"ADBO\\\" :slant normal :weight normal :height 160 :width normal)))))\\n(set-fontset-font \\\"fontset-default\\\"\\n\\t\\t 'arabic\\n\\t\\t (font-spec :family \\\"Kawkab Mono\\\" :size 14))\\n````\\n\\nSetting `Source Code Pro` is done successfully for English text. But `Kawkab Mono` doesn't get applied on Arabic text, I still need to put the point at the end of that section, press C-x C-e to execute it.\\n\\nStarting emacs with `--debug-init` doesn't show any error message.\", \"author_fullname\": \"t2_169z83\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doesn't Execute `set-fontset-font` code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwchvn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559607309.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have the following code in my \\u003Ccode\\u003E.emacs\\u003C/code\\u003E file:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(custom-set-faces\\n \\u0026#39;(default ((t (:family \\u0026quot;Source Code Pro\\u0026quot; :foundry \\u0026quot;ADBO\\u0026quot; :slant normal :weight normal :height 160 :width normal)))))\\n(set-fontset-font \\u0026quot;fontset-default\\u0026quot;\\n \\u0026#39;arabic\\n (font-spec :family \\u0026quot;Kawkab Mono\\u0026quot; :size 14))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESetting \\u003Ccode\\u003ESource Code Pro\\u003C/code\\u003E is done successfully for English text. But \\u003Ccode\\u003EKawkab Mono\\u003C/code\\u003E doesn\\u0026#39;t get applied on Arabic text, I still need to put the point at the end of that section, press C-x C-e to execute it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStarting emacs with \\u003Ccode\\u003E--debug-init\\u003C/code\\u003E doesn\\u0026#39;t show any error message.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwchvn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tareefdev\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwchvn/emacs_doesnt_execute_setfontsetfont_code/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwchvn/emacs_doesnt_execute_setfontsetfont_code/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559578509.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[https://github.com/abrochard/emacs-todoist](https://github.com/abrochard/emacs-todoist)\\n\\n\\u0026#x200B;\\n\\nI'm a big fan of [todoist.com](https://todoist.com) and it's so convenient to be able to just create a new task from a binding, or pull out the task list in an org-mode buffer.\", \"author_fullname\": \"t2_10q1g7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"emacs-todoist: interact with todoist.com for task management\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwc9lr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559606158.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/abrochard/emacs-todoist\\\"\\u003Ehttps://github.com/abrochard/emacs-todoist\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a big fan of \\u003Ca href=\\\"https://todoist.com\\\"\\u003Etodoist.com\\u003C/a\\u003E and it\\u0026#39;s so convenient to be able to just create a new task from a binding, or pull out the task list in an org-mode buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwc9lr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Metr0idFusi0n\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559577358.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[leaf.el](https://github.com/conao3/leaf.el)\\n\\n[feather.el](https://github.com/conao3/feather.el)\\n\\nBoth seem interesting, and I didn't see them in MELPA so I thought I'd give them exposure. :) Currently there's very few contributors, so maybe people here might be interested in contributing.\\n\\nI don't own these, just btw.\", \"author_fullname\": \"t2_md275\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Interesting Emacs packages: leaf.el and feather.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwbo9n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 25, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 25, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559603044.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/conao3/leaf.el\\\"\\u003Eleaf.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/conao3/feather.el\\\"\\u003Efeather.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth seem interesting, and I didn\\u0026#39;t see them in MELPA so I thought I\\u0026#39;d give them exposure. :) Currently there\\u0026#39;s very few contributors, so maybe people here might be interested in contributing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t own these, just btw.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbo9n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ProfessorSexyTime\", \"num_crossposts\": 0, \"num_comments\": 20, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559574244.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_960gwtm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I wrote some elisp to insert pretty comments. Please code review! :)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwbmc3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559602783.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gist.github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbmc3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nsapte\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbmc3/i_wrote_some_elisp_to_insert_pretty_comments/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://gist.github.com/suvratapte/fc3f5bfbc9c9d649e3ef080ec66bf9d5\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559573983.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So when I try to change custom themes, the previous theme is overwriting the new theme in my init.el. When I change it, this is what I'm seeing in my custom-set-theme section.\\n\\n\\u0026#x200B;\\n\\n '(ansi-color-names-vector\\n [\\\"#1F1611\\\" \\\"#660000\\\" \\\"#144212\\\" \\\"#EFC232\\\" \\\"#5798AE\\\" \\\"#BE73FD\\\" \\\"#93C1BC\\\" \\\"#E6E1DC\\\"])\\n '(ansi-term-color-vector\\n [unspecified \\\"#1F1611\\\" \\\"#660000\\\" \\\"#144212\\\" \\\"#EFC232\\\" \\\"#5798AE\\\" \\\"#BE73FD\\\" \\\"#93C1BC\\\" \\\"#E6E1DC\\\"])\\n '(custom-safe-themes\\n (quote\\n (\\\"3e83abe75cebf5621e34ce1cbe6e12e4d80766bed0755033febed5794d0c69bf\\\" \\\"35b000995eb4a526249078664d91b056feab7e96e81b2f226a0d9cad7f0a416e\\\" \\\"4b19d61c560a93ef90767abe513c11f236caec2864617d718aa366618133704c\\\" default)))\\n '(fci-rule-character-color \\\"#452E2E\\\")\\n '(fci-rule-color \\\"#452E2E\\\")\\n\\n\\u0026#x200B;\\n\\nDeleting this doesn't do anything, it just adds it in next time.\\n\\nHere are some screenshots to clarify what it is I'm seeing.\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[https://i.redd.it/kr94yn9hm5231.png](https://i.redd.it/kr94yn9hm5231.png)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[https://i.redd.it/84g8yxfkm5231.png](https://i.redd.it/84g8yxfkm5231.png)\\n\\nThe custom theme is supposed to look like [this](https://peach-melpa.org/themes/birds-of-paradise-plus-theme). Uninstalling the autumn-light theme doesn't help, either.\\n\\nEDIT: Color v custom\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/anogyn56vq231.gif\", \"author_fullname\": \"t2_14xlbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I'm getting a strange color theme bug in 26.2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"anogyn56vq231\": {\"status\": \"valid\", \"e\": \"AnimatedImage\", \"s\": {\"y\": 534, \"gif\": \"https://i.redd.it/anogyn56vq231.gif\", \"mp4\": \"https://external-preview.redd.it/anogyn56vq231.gif?format=mp4\\u0026s=862f232535c436319569146e87e81869651931c2\", \"x\": 500}, \"m\": \"image/gif\", \"id\": \"anogyn56vq231\"}}, \"name\": \"t3_bwbizf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559830430.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559602269.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo when I try to change custom themes, the previous theme is overwriting the new theme in my init.el. When I change it, this is what I\\u0026#39;m seeing in my custom-set-theme section.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026#39;(ansi-color-names-vector\\n[\\u0026quot;#1F1611\\u0026quot; \\u0026quot;#660000\\u0026quot; \\u0026quot;#144212\\u0026quot; \\u0026quot;#EFC232\\u0026quot; \\u0026quot;#5798AE\\u0026quot; \\u0026quot;#BE73FD\\u0026quot; \\u0026quot;#93C1BC\\u0026quot; \\u0026quot;#E6E1DC\\u0026quot;])\\n\\u0026#39;(ansi-term-color-vector\\n[unspecified \\u0026quot;#1F1611\\u0026quot; \\u0026quot;#660000\\u0026quot; \\u0026quot;#144212\\u0026quot; \\u0026quot;#EFC232\\u0026quot; \\u0026quot;#5798AE\\u0026quot; \\u0026quot;#BE73FD\\u0026quot; \\u0026quot;#93C1BC\\u0026quot; \\u0026quot;#E6E1DC\\u0026quot;])\\n\\u0026#39;(custom-safe-themes\\n(quote\\n(\\u0026quot;3e83abe75cebf5621e34ce1cbe6e12e4d80766bed0755033febed5794d0c69bf\\u0026quot; \\u0026quot;35b000995eb4a526249078664d91b056feab7e96e81b2f226a0d9cad7f0a416e\\u0026quot; \\u0026quot;4b19d61c560a93ef90767abe513c11f236caec2864617d718aa366618133704c\\u0026quot; default)))\\n\\u0026#39;(fci-rule-character-color \\u0026quot;#452E2E\\u0026quot;)\\n\\u0026#39;(fci-rule-color \\u0026quot;#452E2E\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeleting this doesn\\u0026#39;t do anything, it just adds it in next time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are some screenshots to clarify what it is I\\u0026#39;m seeing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/kr94yn9hm5231.png\\\"\\u003Ehttps://i.redd.it/kr94yn9hm5231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/84g8yxfkm5231.png\\\"\\u003Ehttps://i.redd.it/84g8yxfkm5231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe custom theme is supposed to look like \\u003Ca href=\\\"https://peach-melpa.org/themes/birds-of-paradise-plus-theme\\\"\\u003Ethis\\u003C/a\\u003E. Uninstalling the autumn-light theme doesn\\u0026#39;t help, either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Color v custom\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/anogyn56vq231.gif\\\"\\u003Ehttps://i.redd.it/anogyn56vq231.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbizf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_wade\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559573469.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here's the story:\\n\\nOnce upon a time, I wanted to convert some videos into mp3 files. But why download some GUI program off the internet or write a script when you can open up Emacs, right?\\n\\nSo after messing around with some Elisp code for running ffmpeg as a subprocess, I stumbled on Eshell! Not only does it work amazingly with Evil (it's like a regular buffer and bash had a baby), but you can throw in all the other Emacs favourites like Helm for getting file paths, and Company for some auto-complete.\\n\\nHere are some (Evil) manoeuvres.\\n\\n`:eshell`\\n\\n`cd C-x C-f` choose a file `C-c i` insert file path.\\n\\nWant to copy past your cool Eshell script to Reddit?\\n\\n`ESC` to go back to normal mode (or `jk` if you're fancy) `yy` yank the line.\\n\\n`\\u003E\\u003E for f in *.mkv {ffmpeg -i $f -aq 3 output/$(file-name-sans-extension f).mp3}`\\n\\n`i` go back to insert mode, run your mini-script. Horrah! All files converted.\\n\\nWhat's `$(file-name-sans-extension f)` you ask? That's Elisp code. That's right, you can just throw in the entire power of Emacs Lisp into your one line script.\\n\\nThere is just one little issue I ran into and that's when typing $(file-name...) Company bugged out and wouldn't complete the function name so I had to type the whole thing out (the horror!).\\n\\n\\u003Cedit\\u003E Found some extra links, since the documentation for Eshell inside emacs is a bit sparse.\\n\\nhttps://www.emacswiki.org/emacs/CategoryEshell\\n\\nhttps://masteringemacs.org/article/complete-guide-mastering-eshell\", \"author_fullname\": \"t2_c4blft1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Did you know that the Eshell is awesome?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9yo7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 93, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 93, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559574338.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559592800.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s the story:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce upon a time, I wanted to convert some videos into mp3 files. But why download some GUI program off the internet or write a script when you can open up Emacs, right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo after messing around with some Elisp code for running ffmpeg as a subprocess, I stumbled on Eshell! Not only does it work amazingly with Evil (it\\u0026#39;s like a regular buffer and bash had a baby), but you can throw in all the other Emacs favourites like Helm for getting file paths, and Company for some auto-complete.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are some (Evil) manoeuvres.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:eshell\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ecd C-x C-f\\u003C/code\\u003E choose a file \\u003Ccode\\u003EC-c i\\u003C/code\\u003E insert file path.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWant to copy past your cool Eshell script to Reddit?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EESC\\u003C/code\\u003E to go back to normal mode (or \\u003Ccode\\u003Ejk\\u003C/code\\u003E if you\\u0026#39;re fancy) \\u003Ccode\\u003Eyy\\u003C/code\\u003E yank the line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026gt;\\u0026gt; for f in *.mkv {ffmpeg -i $f -aq 3 output/$(file-name-sans-extension f).mp3}\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ei\\u003C/code\\u003E go back to insert mode, run your mini-script. Horrah! All files converted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s \\u003Ccode\\u003E$(file-name-sans-extension f)\\u003C/code\\u003E you ask? That\\u0026#39;s Elisp code. That\\u0026#39;s right, you can just throw in the entire power of Emacs Lisp into your one line script.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is just one little issue I ran into and that\\u0026#39;s when typing $(file-name...) Company bugged out and wouldn\\u0026#39;t complete the function name so I had to type the whole thing out (the horror!).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;edit\\u0026gt; Found some extra links, since the documentation for Eshell inside emacs is a bit sparse.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/CategoryEshell\\\"\\u003Ehttps://www.emacswiki.org/emacs/CategoryEshell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://masteringemacs.org/article/complete-guide-mastering-eshell\\\"\\u003Ehttps://masteringemacs.org/article/complete-guide-mastering-eshell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9yo7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"202700000000\", \"num_crossposts\": 0, \"num_comments\": 25, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559564000.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_64sbo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9azu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559588032.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9azu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rainymood_XI\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/Rainymood/dotemacs\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559559232.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nAs above, I'm wanting to access OneDrive from my emacs init as I'm trying to use org-mode/agenda, and want to be able to use OneDrive to sync between locations, however emacs always says can't find the file regardless if I use:\\n\\n\\\\~/OneDrive...\\n\\n%userprofile%/OneDrive\\n\\n%systemdrive%%homepath%/OneDrive\\n\\nFrom here:\\n\\n[https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt](https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt)\\n\\n\\u0026#x200B;\\n\\nBasically want this:\\n\\nsetq org-agenda-files (list \\\"\\\\~/OneDrive/org/general.org\\\")\\n\\n\\u0026#x200B;\\n\\nSince I have different user names at work/home I can't use a full path, any ideas? Most of the comments about home on windows seem to be with moving the .emacs.d directory, which I'm fine keeping that where it is.\", \"author_fullname\": \"t2_5f5ma\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Accessing OneDrive from emacs init?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw8ejb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559580110.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs above, I\\u0026#39;m wanting to access OneDrive from my emacs init as I\\u0026#39;m trying to use org-mode/agenda, and want to be able to use OneDrive to sync between locations, however emacs always says can\\u0026#39;t find the file regardless if I use:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E~/OneDrive...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E%userprofile%/OneDrive\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E%systemdrive%%homepath%/OneDrive\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt\\\"\\u003Ehttps://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically want this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esetq org-agenda-files (list \\u0026quot;~/OneDrive/org/general.org\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince I have different user names at work/home I can\\u0026#39;t use a full path, any ideas? Most of the comments about home on windows seem to be with moving the .emacs.d directory, which I\\u0026#39;m fine keeping that where it is.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw8ejb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GeorgeStorm\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw8ejb/accessing_onedrive_from_emacs_init/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw8ejb/accessing_onedrive_from_emacs_init/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559551310.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bw8ejb\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["390915"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:23 GMT"], "x-ratelimit-remaining": ["596.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["4"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360203.589665,VS0,VE939"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["398"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-12T17:23:23"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_bzt74m"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:24 GMT"], "x-ratelimit-remaining": ["595.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["5"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360204.253966,VS0,VE128"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["396"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_bzt74m"}, "recorded_at": "2019-06-12T17:23:24"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvbe0n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skouakskouek\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560343176.0, \"send_replies\": true, \"parent_id\": \"t1_eqarokm\", \"score\": 1, \"author_fullname\": \"t2_elo7h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Damn, it's a really silly mistake. \\nActually, syntax highlighting worked, my code was just not relevant for syntax highlighting exemple:\\n\\n Math.random() \\n Math.floor()\\n Math.ceil();\\n Math.floor(Math.random() * 190);\\n console.log(Number.isInteger(2017));\\n \\nAs soon as I add a function, it works.\\nthanks for your help.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eqvbe0n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDamn, it\\u0026#39;s a really silly mistake. \\nActually, syntax highlighting worked, my code was just not relevant for syntax highlighting exemple:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EMath.random() \\nMath.floor()\\nMath.ceil();\\nMath.floor(Math.random() * 190);\\nconsole.log(Number.isInteger(2017));\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAs soon as I add a function, it works.\\nthanks for your help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/eqvbe0n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1560371976.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equuw9z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Japhiri\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560335960.0, \"send_replies\": true, \"parent_id\": \"t1_eqsuwjl\", \"score\": 1, \"author_fullname\": \"t2_r4y6z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I wasn't using any crazy characters, but thanks for highlighting the potential source of error.\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_equuw9z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI wasn\\u0026#39;t using any crazy characters, but thanks for highlighting the potential source of error.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/equuw9z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1560364760.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560336020.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equhuiu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Japhiri\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560330118.0, \"send_replies\": true, \"parent_id\": \"t1_eqt1ktn\", \"score\": 1, \"author_fullname\": \"t2_r4y6z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Using svg or eps could also be an option for me. I'll have a look at the complicated answer again later. Thanks!\\n\\nEven on `emacs -q` after evaluating just these 4 lines in my scratch it doesn't work, it tries to show the pdf but it results in a 600 px wide, one line high rectangle. But now the *Messages* buffer shows the following warning: `ImageMagick error: attempt to perform an operation not allowed by the security policy 'PDF' @ error/constitute.c/IsCoderAuthorized/408 [3 times]`, which seems related to some ImageMagick security settings to circumvent a bug in ghostscript ([see paperless issue](https://github.com/the-paperless-project/paperless/issues/439) and the upstream [ImageMagick issue](https://github.com/ImageMagick/ImageMagick/issues/1262)). I've tried to fix it by changing the policy.xml file but this didn't work. But now I know it's not an emacs issue but rather something with my ImageMagick config.\\n\\nI'm on Arch Linux x86_64 kernel 5.1.8-arch1-1-ARCH with GNU Emacs 26.2 and ImageMagick 7.0.8-49.\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_equhuiu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsing svg or eps could also be an option for me. I\\u0026#39;ll have a look at the complicated answer again later. Thanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEven on \\u003Ccode\\u003Eemacs -q\\u003C/code\\u003E after evaluating just these 4 lines in my scratch it doesn\\u0026#39;t work, it tries to show the pdf but it results in a 600 px wide, one line high rectangle. But now the \\u003Cem\\u003EMessages\\u003C/em\\u003E buffer shows the following warning: \\u003Ccode\\u003EImageMagick error: attempt to perform an operation not allowed by the security policy \\u0026#39;PDF\\u0026#39; @ error/constitute.c/IsCoderAuthorized/408 [3 times]\\u003C/code\\u003E, which seems related to some ImageMagick security settings to circumvent a bug in ghostscript (\\u003Ca href=\\\"https://github.com/the-paperless-project/paperless/issues/439\\\"\\u003Esee paperless issue\\u003C/a\\u003E and the upstream \\u003Ca href=\\\"https://github.com/ImageMagick/ImageMagick/issues/1262\\\"\\u003EImageMagick issue\\u003C/a\\u003E). I\\u0026#39;ve tried to fix it by changing the policy.xml file but this didn\\u0026#39;t work. But now I know it\\u0026#39;s not an emacs issue but rather something with my ImageMagick config.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m on Arch Linux x86_64 kernel 5.1.8-arch1-1-ARCH with GNU Emacs 26.2 and ImageMagick 7.0.8-49.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/equhuiu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1560358918.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equ4s6e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ValentinPearce\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560324625.0, \"send_replies\": true, \"parent_id\": \"t3_bxu83g\", \"score\": 1, \"author_fullname\": \"t2_e8tz3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm currently writing a beamer presentation and I've noticed a unfortunate bahaviour. The table of contents is labeled \\\"Outline\\\" whatever the export language. \\n\\n\\u0026#x200B;\\n\\nI'll just edit the LaTeX file for the presentation I have in acouple of days but I was thinking of making this automatic. Would any other non-english speakers be interested in that ?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_equ4s6e\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m currently writing a beamer presentation and I\\u0026#39;ve noticed a unfortunate bahaviour. The table of contents is labeled \\u0026quot;Outline\\u0026quot; whatever the export language. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ll just edit the LaTeX file for the presentation I have in acouple of days but I was thinking of making this automatic. Would any other non-english speakers be interested in that ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/equ4s6e/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1560353425.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9niq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtcfgp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"__i_forgot_my_name__\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560308386.0, \"send_replies\": true, \"parent_id\": \"t1_eqs2hfk\", \"score\": 1, \"author_fullname\": \"t2_3agebbhs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Emacs isn't a window manager thought, it's a desktop environment. I rely on XMonad for everything that has to do with controlling the environment itself. \\n\\nFor example, I get the Emacs email client frame from XMonad with `S-c m`, because I don't want to focus on Emacs every time I want the mail client obviously. The magic is I can do all that with `emacsclient -ce '(mu4e)'` and it creates the frame and gets the Emacs mail client literally instantly. It's just pure insanity.\", \"link_title\": \"Org Files In Cli\", \"author_flair_css_class\": null, \"name\": \"t1_eqtcfgp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEmacs isn\\u0026#39;t a window manager thought, it\\u0026#39;s a desktop environment. I rely on XMonad for everything that has to do with controlling the environment itself. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example, I get the Emacs email client frame from XMonad with \\u003Ccode\\u003ES-c m\\u003C/code\\u003E, because I don\\u0026#39;t want to focus on Emacs every time I want the mail client obviously. The magic is I can do all that with \\u003Ccode\\u003Eemacsclient -ce \\u0026#39;(mu4e)\\u0026#39;\\u003C/code\\u003E and it creates the frame and gets the Emacs mail client literally instantly. It\\u0026#39;s just pure insanity.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/eqtcfgp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"report_reasons\": null, \"link_author\": \"SidharthArya-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"created\": 1560337186.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqt1ktn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"frumious\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560299639.0, \"send_replies\": true, \"parent_id\": \"t3_bzas9r\", \"score\": 1, \"author_fullname\": \"t2_32juj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"FWIW, the 4-liner works for me with emacs 26. \\n\\nBut, the resulting inline PNG is rather ugly. It would be great if the inline format would be SVG. I got SVG inline of PDF working by modifying:\\n\\nhttps://stackoverflow.com/a/27652570\\n\\nto use `inkskape` instead of `convert`.\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_eqt1ktn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFWIW, the 4-liner works for me with emacs 26. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut, the resulting inline PNG is rather ugly. It would be great if the inline format would be SVG. I got SVG inline of PDF working by modifying:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://stackoverflow.com/a/27652570\\\"\\u003Ehttps://stackoverflow.com/a/27652570\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eto use \\u003Ccode\\u003Einkskape\\u003C/code\\u003E instead of \\u003Ccode\\u003Econvert\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/eqt1ktn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1560328439.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqsuwjl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560294450.0, \"send_replies\": true, \"parent_id\": \"t1_eqryl9x\", \"score\": 1, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Just to check, don't use ASCII over 128 in the filenames, or it won't be able to read them (just found that using Spanish accented names).\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_eqsuwjl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust to check, don\\u0026#39;t use ASCII over 128 in the filenames, or it won\\u0026#39;t be able to read them (just found that using Spanish accented names).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/eqsuwjl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1560323250.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9niq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqst918\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SidharthArya-\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560293208.0, \"send_replies\": true, \"parent_id\": \"t1_eqs3id9\", \"score\": 1, \"author_fullname\": \"t2_3tn7pcdr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thnk you for the guidance. I will try that perhaps.\", \"link_title\": \"Org Files In Cli\", \"author_flair_css_class\": null, \"name\": \"t1_eqst918\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThnk you for the guidance. I will try that perhaps.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/eqst918/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"report_reasons\": null, \"link_author\": \"SidharthArya-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"created\": 1560322008.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9niq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqs3id9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ReinH\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560275871.0, \"send_replies\": true, \"parent_id\": \"t3_bz9niq\", \"score\": 1, \"author_fullname\": \"t2_34svr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I don't know of anyone who has built this, perhaps because no one has wanted it yet. But if you want it, you could try to build it! Maybe start with the [orga](https://xiaoxinghu.github.io/orgajs/) org-mode parser. Or, if you're into them, try a parser in [rust](https://github.com/org-rs/org-rs) or [haskell](http://hackage.haskell.org/package/orgmode-parse).\", \"link_title\": \"Org Files In Cli\", \"author_flair_css_class\": null, \"name\": \"t1_eqs3id9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t know of anyone who has built this, perhaps because no one has wanted it yet. But if you want it, you could try to build it! Maybe start with the \\u003Ca href=\\\"https://xiaoxinghu.github.io/orgajs/\\\"\\u003Eorga\\u003C/a\\u003E org-mode parser. Or, if you\\u0026#39;re into them, try a parser in \\u003Ca href=\\\"https://github.com/org-rs/org-rs\\\"\\u003Erust\\u003C/a\\u003E or \\u003Ca href=\\\"http://hackage.haskell.org/package/orgmode-parse\\\"\\u003Ehaskell\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/eqs3id9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"report_reasons\": null, \"link_author\": \"SidharthArya-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"created\": 1560304671.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9niq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqs2hfk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560275227.0, \"send_replies\": true, \"parent_id\": \"t1_eqrtgwf\", \"score\": 4, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Well... Emacs can be your desktop, It became mine in three month of use so not that hard.\\nThis is the only real way to achieve super-duper-integration at a level classic WM/DE\\nusers can't even think.\\n\\nOur information is still essentially text, and Emacs is a text-centric system, no modern\\nGUIs can compete. Even Plan9 flexible GUIs, even NeXT graphic environment. Thanks to \\nEmacs I get a boost in my desktop activity performance, easiness and pleasure that \\nsometimes I'm feeling bored, I get stuff done so quick that have to found a way to spent\\nwork time!\", \"link_title\": \"Org Files In Cli\", \"author_flair_css_class\": null, \"name\": \"t1_eqs2hfk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell... Emacs can be your desktop, It became mine in three month of use so not that hard.\\nThis is the only real way to achieve super-duper-integration at a level classic WM/DE\\nusers can\\u0026#39;t even think.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur information is still essentially text, and Emacs is a text-centric system, no modern\\nGUIs can compete. Even Plan9 flexible GUIs, even NeXT graphic environment. Thanks to \\nEmacs I get a boost in my desktop activity performance, easiness and pleasure that \\nsometimes I\\u0026#39;m feeling bored, I get stuff done so quick that have to found a way to spent\\nwork time!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/eqs2hfk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"report_reasons\": null, \"link_author\": \"SidharthArya-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"created\": 1560304027.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqs1pig\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BeetleB\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560274745.0, \"send_replies\": true, \"parent_id\": \"t1_eqryl9x\", \"score\": 1, \"author_fullname\": \"t2_1tduz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003ESo if I understand correctly, these config do work for you?\\n\\nHave not tried it, to be frank.\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_eqs1pig\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESo if I understand correctly, these config do work for you?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EHave not tried it, to be frank.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/eqs1pig/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1560303545.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqryl9x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Japhiri\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560272784.0, \"send_replies\": true, \"parent_id\": \"t1_eqrwhvc\", \"score\": 1, \"author_fullname\": \"t2_r4y6z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yeah, still doesn't work. Also doesn't work without the last line and with the line you suggested. Now it doesn't display the square anymore, and the pdfs are not highlighted as org-links anymore initially. Only when I copy/paste them.\\n\\nSo if I understand correctly, these config do work for you? Because on the SO thread somebody else exprienced the same issue, with just a rectangle showing, and there was also a more complicated solution posted there.\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_eqryl9x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, still doesn\\u0026#39;t work. Also doesn\\u0026#39;t work without the last line and with the line you suggested. Now it doesn\\u0026#39;t display the square anymore, and the pdfs are not highlighted as org-links anymore initially. Only when I copy/paste them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo if I understand correctly, these config do work for you? Because on the SO thread somebody else exprienced the same issue, with just a rectangle showing, and there was also a more complicated solution posted there.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/eqryl9x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1560301584.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqrwhvc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BeetleB\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560271500.0, \"send_replies\": true, \"parent_id\": \"t1_eqrt6m2\", \"score\": 1, \"author_fullname\": \"t2_1tduz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"So it sounds like your problem is still there?\\n\\nIf so, perhaps remove the last statement and try without it. Make sure you update the org-image-actual-width to t first.\\n\\n (setq org-image-actual-width t)\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_eqrwhvc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo it sounds like your problem is still there?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf so, perhaps remove the last statement and try without it. Make sure you update the org-image-actual-width to t first.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-image-actual-width t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/eqrwhvc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1560300300.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9niq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqrwazn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"takethecannoli4\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560271384.0, \"send_replies\": true, \"parent_id\": \"t1_eqr5apu\", \"score\": 3, \"author_fullname\": \"t2_13p6gig2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Create a daemon especially for the command line and do not keep restarting that.\", \"link_title\": \"Org Files In Cli\", \"author_flair_css_class\": null, \"name\": \"t1_eqrwazn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECreate a daemon especially for the command line and do not keep restarting that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/eqrwazn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"report_reasons\": null, \"link_author\": \"SidharthArya-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"created\": 1560300184.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqrw9ti\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1560271361.0, \"send_replies\": true, \"parent_id\": \"t3_bxu83g\", \"score\": 1, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm trying to use a key binding as shortcut to export my org-beamer files to a beamer pdf and to export my regular org files as regular pdf files. however my regular pdf files are also getting coverted to beamer. can you help me?\\n\\n (use-package ox-latex\\n :after ox\\n :config\\n (add-to-list 'org-latex-packages-alist '(\\\"\\\" \\\"minted\\\"))\\n (setq org-latex-listings 'minted)\\n (setq org-latex-pdf-process\\n '(\\\"pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f\\\"\\n \\\"pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f\\\"\\n \\\"pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f\\\"\\n )\\n )\\n :bind (\\\"\\u003Cf5\\u003E\\\" . org-latex-export-to-pdf)\\n\\n )\\n\\n (use-package ox-beamer\\n :after ox\\n :bind (\\\"\\u003Cf5\\u003E\\\" . org-beamer-export-to-pdf)\\n )\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eqrw9ti\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to use a key binding as shortcut to export my org-beamer files to a beamer pdf and to export my regular org files as regular pdf files. however my regular pdf files are also getting coverted to beamer. can you help me?\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package ox-latex\\n :after ox\\n :config\\n (add-to-list \\u0026#39;org-latex-packages-alist \\u0026#39;(\\u0026quot;\\u0026quot; \\u0026quot;minted\\u0026quot;))\\n (setq org-latex-listings \\u0026#39;minted)\\n (setq org-latex-pdf-process\\n \\u0026#39;(\\u0026quot;pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f\\u0026quot;\\n \\u0026quot;pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f\\u0026quot;\\n \\u0026quot;pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f\\u0026quot;\\n )\\n )\\n :bind (\\u0026quot;\\u0026lt;f5\\u0026gt;\\u0026quot; . org-latex-export-to-pdf)\\n\\n)\\n\\n(use-package ox-beamer\\n :after ox\\n :bind (\\u0026quot;\\u0026lt;f5\\u0026gt;\\u0026quot; . org-beamer-export-to-pdf)\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/eqrw9ti/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1560300161.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9niq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqrtgwf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SidharthArya-\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560269483.0, \"send_replies\": true, \"parent_id\": \"t1_eqrh26n\", \"score\": 0, \"author_fullname\": \"t2_3tn7pcdr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I know about eval buffer and evaluting sexp. \\n\\nYeah i am aware about orgzilly for mobile. I want org mode to be integrated with desktop rather than with emacs.\", \"link_title\": \"Org Files In Cli\", \"author_flair_css_class\": null, \"name\": \"t1_eqrtgwf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know about eval buffer and evaluting sexp. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYeah i am aware about orgzilly for mobile. I want org mode to be integrated with desktop rather than with emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/eqrtgwf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"report_reasons\": null, \"link_author\": \"SidharthArya-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"created\": 1560298283.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqrt6m2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Japhiri\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560269286.0, \"send_replies\": true, \"parent_id\": \"t1_eqrobko\", \"score\": 1, \"author_fullname\": \"t2_r4y6z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks a lot for the explanation!\\n\\n1) yup, `identify -version` results in ImageMagick 7.0.8-49 and some more jumbo. When running `M-: (getenv \\\"PATH\\\")` I get `\\\"/usr/local/sbin:/usr/local/bin:/usr/bin\\\"`, which contains convert etc.\\n\\n2) I didn't know this was a thing, but apparently, yes. `M-: (image-type-available-p 'imagemagick)` results in `t`\\n\\nI found the right commands in [this reddit thread on installing imagemagick support](https://www.reddit.com/r/emacs/comments/44id5o/how_to_install_emacs_with_imagemagick_support/)\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_eqrt6m2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks a lot for the explanation!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E1) yup, \\u003Ccode\\u003Eidentify -version\\u003C/code\\u003E results in ImageMagick 7.0.8-49 and some more jumbo. When running \\u003Ccode\\u003EM-: (getenv \\u0026quot;PATH\\u0026quot;)\\u003C/code\\u003E I get \\u003Ccode\\u003E\\u0026quot;/usr/local/sbin:/usr/local/bin:/usr/bin\\u0026quot;\\u003C/code\\u003E, which contains convert etc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2) I didn\\u0026#39;t know this was a thing, but apparently, yes. \\u003Ccode\\u003EM-: (image-type-available-p \\u0026#39;imagemagick)\\u003C/code\\u003E results in \\u003Ccode\\u003Et\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI found the right commands in \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/44id5o/how_to_install_emacs_with_imagemagick_support/\\\"\\u003Ethis reddit thread on installing imagemagick support\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/eqrt6m2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1560298086.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqrobko\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BeetleB\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560265971.0, \"send_replies\": true, \"parent_id\": \"t3_bzas9r\", \"score\": 2, \"author_fullname\": \"t2_1tduz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Looking at the docstrings:\\n\\nimage-type-file-name-regexps: Alist of (REGEXP . IMAGE-TYPE) pairs used to identify image files.\\n\\nSo this is saying anything with .pdf in the name should be treated as an imagemagick type.\\n\\nThe second statement is saying that .pdf files should be treated as an image.\\n\\nThe third statement says to remove PDF from the list of extensions that should *not* be treated as an image.\\n\\nThe last statement is saying to use imagemagick to resize the image to 600px before displaying it.\\n\\nQuestions:\\n\\n1. Do you have imagemagick installed and is it in your path?\\n\\n2. Is your Emacs built with imagemagick support?\\n\\n(Coincidentally, I was debugging images in my Emacs a day ago and I discovered my Emacs was not built with imagemagick support - I had to rebuild it).\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_eqrobko\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooking at the docstrings:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eimage-type-file-name-regexps: Alist of (REGEXP . IMAGE-TYPE) pairs used to identify image files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo this is saying anything with .pdf in the name should be treated as an imagemagick type.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe second statement is saying that .pdf files should be treated as an image.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe third statement says to remove PDF from the list of extensions that should \\u003Cem\\u003Enot\\u003C/em\\u003E be treated as an image.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last statement is saying to use imagemagick to resize the image to 600px before displaying it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuestions:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo you have imagemagick installed and is it in your path?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIs your Emacs built with imagemagick support?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E(Coincidentally, I was debugging images in my Emacs a day ago and I discovered my Emacs was not built with imagemagick support - I had to rebuild it).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/eqrobko/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1560294771.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9niq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqrh26n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560260737.0, \"send_replies\": true, \"parent_id\": \"t1_eqr8o7r\", \"score\": 2, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Mh, you do not need to restart Emacs to see change, simply run `eval-buffer` with\\nyour init.el opened and that's is. You can also evaluate individual sexp, regions\\netc...\\n\\nA part of that I do not know any complete org implementation outside Emacs, there\\nare few partial both in form of mobile apps, web services etc, but most no desktop\\nGUIs or CLIs AFAIK...\", \"link_title\": \"Org Files In Cli\", \"author_flair_css_class\": null, \"name\": \"t1_eqrh26n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMh, you do not need to restart Emacs to see change, simply run \\u003Ccode\\u003Eeval-buffer\\u003C/code\\u003E with\\nyour init.el opened and that\\u0026#39;s is. You can also evaluate individual sexp, regions\\netc...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA part of that I do not know any complete org implementation outside Emacs, there\\nare few partial both in form of mobile apps, web services etc, but most no desktop\\nGUIs or CLIs AFAIK...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/eqrh26n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"report_reasons\": null, \"link_author\": \"SidharthArya-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"created\": 1560289537.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9niq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqr8o7r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SidharthArya-\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560253162.0, \"send_replies\": true, \"parent_id\": \"t1_eqr79kk\", \"score\": 1, \"author_fullname\": \"t2_3tn7pcdr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Because i am constantly changing my init file. And i want to see those changes on a fresh emacs instance.\\nI am aware about emacs daemon and client.\", \"link_title\": \"Org Files In Cli\", \"author_flair_css_class\": null, \"name\": \"t1_eqr8o7r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause i am constantly changing my init file. And i want to see those changes on a fresh emacs instance.\\nI am aware about emacs daemon and client.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/eqr8o7r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"report_reasons\": null, \"link_author\": \"SidharthArya-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"created\": 1560281962.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9niq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqr79kk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"usb_mouse\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560251532.0, \"send_replies\": true, \"parent_id\": \"t1_eqr5apu\", \"score\": 2, \"author_fullname\": \"t2_6rllgoz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Why do you constantly restart emacs?\\n\\nYou might not know this: you can run macs run as a daemon.\", \"link_title\": \"Org Files In Cli\", \"author_flair_css_class\": null, \"name\": \"t1_eqr79kk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy do you constantly restart emacs?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou might not know this: you can run macs run as a daemon.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/eqr79kk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"report_reasons\": null, \"link_author\": \"SidharthArya-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"created\": 1560280332.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9niq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqr5apu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SidharthArya-\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560248935.0, \"send_replies\": true, \"parent_id\": \"t1_eqr4ip6\", \"score\": 2, \"author_fullname\": \"t2_3tn7pcdr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I mean to use org mode independent of emacs. Since I constantly restart emacs. Is it possible?\\n\\nI would like to do some basic tasks like add todo item with schedule and deadline. Make a quick note.\", \"link_title\": \"Org Files In Cli\", \"author_flair_css_class\": null, \"name\": \"t1_eqr5apu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI mean to use org mode independent of emacs. Since I constantly restart emacs. Is it possible?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to do some basic tasks like add todo item with schedule and deadline. Make a quick note.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/eqr5apu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"report_reasons\": null, \"link_author\": \"SidharthArya-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"created\": 1560277735.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9niq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqr4ip6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560247783.0, \"send_replies\": true, \"parent_id\": \"t3_bz9niq\", \"score\": 3, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You can actually use emacs in the shell or you can export your tasks to another simple format too... You mean something lighter than that? What is your use case?\", \"link_title\": \"Org Files In Cli\", \"author_flair_css_class\": null, \"name\": \"t1_eqr4ip6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can actually use emacs in the shell or you can export your tasks to another simple format too... You mean something lighter than that? What is your use case?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/eqr4ip6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"report_reasons\": null, \"link_author\": \"SidharthArya-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"created\": 1560276583.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqptsvk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WalterGR\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560204286.0, \"send_replies\": true, \"parent_id\": \"t1_eqi7deq\", \"score\": 1, \"author_fullname\": \"t2_3c1ug\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E\\u003E Does org-mode not work on Windows?\\n\\n\\u003E Of course it does. Why wouldn't it?\\n\\nYep. I misread that sentence.\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqptsvk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDoes org-mode not work on Windows?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOf course it does. Why wouldn\\u0026#39;t it?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYep. I misread that sentence.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqptsvk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560233086.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz0258\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqpj5wl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560200276.0, \"send_replies\": true, \"parent_id\": \"t3_bz0258\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Nice writeup! Thanks for sharing that. It's a good reference for people who want to customize syntax.\\n\\nAs you probably know, `:word:` syntax is used for tags in Org headings. While it could be used for this other purpose in non-heading lines, I would recommend against it. The reason is that regexp searching is used extensively in Org and related packages, and it's likely that there is existing code that searches for `:word:` syntax to find tags. Even though such code ought to be using e.g. `org-heading-regexp`, which only searches heading lines, I'm guessing there's code \\\"in the wild\\\" that doesn't, so using this syntax would break that code.\\n\\nOf course, in your own config, do whatever you like. But I don't think this should be merged into Org itself.\\n\\nInstead, I would propose working on making custom syntax easier to use in Org. For example, if it were possible to set a buffer-local variable with a file-local variable line that set an alist of custom syntax types for that document, it could be done in a somewhat-declarative, portable manner that wouldn't require custom configuration outside of the file that uses it. And maybe that could even be done in a dir-local variable to apply to multiple files.\", \"link_title\": \"Adding highlight markup to org\", \"author_flair_css_class\": null, \"name\": \"t1_eqpj5wl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice writeup! Thanks for sharing that. It\\u0026#39;s a good reference for people who want to customize syntax.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs you probably know, \\u003Ccode\\u003E:word:\\u003C/code\\u003E syntax is used for tags in Org headings. While it could be used for this other purpose in non-heading lines, I would recommend against it. The reason is that regexp searching is used extensively in Org and related packages, and it\\u0026#39;s likely that there is existing code that searches for \\u003Ccode\\u003E:word:\\u003C/code\\u003E syntax to find tags. Even though such code ought to be using e.g. \\u003Ccode\\u003Eorg-heading-regexp\\u003C/code\\u003E, which only searches heading lines, I\\u0026#39;m guessing there\\u0026#39;s code \\u0026quot;in the wild\\u0026quot; that doesn\\u0026#39;t, so using this syntax would break that code.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, in your own config, do whatever you like. But I don\\u0026#39;t think this should be merged into Org itself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstead, I would propose working on making custom syntax easier to use in Org. For example, if it were possible to set a buffer-local variable with a file-local variable line that set an alist of custom syntax types for that document, it could be done in a somewhat-declarative, portable manner that wouldn\\u0026#39;t require custom configuration outside of the file that uses it. And maybe that could even be done in a dir-local variable to apply to multiple files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz0258/adding_highlight_markup_to_org/eqpj5wl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz0258/adding_highlight_markup_to_org/\", \"report_reasons\": null, \"link_author\": \"gonsie\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz0258/adding_highlight_markup_to_org/\", \"created\": 1560229076.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byjkmm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqmmwit\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tshanno\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560165190.0, \"send_replies\": true, \"parent_id\": \"t3_byjkmm\", \"score\": 1, \"author_fullname\": \"t2_16nda8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks to both of you for your answers. I will look into these options. I have a feeling that org-agenda-skip-function-global may be where I'm headed.\", \"link_title\": \"Property to exclude an entry from the agenda?\", \"author_flair_css_class\": null, \"name\": \"t1_eqmmwit\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks to both of you for your answers. I will look into these options. I have a feeling that org-agenda-skip-function-global may be where I\\u0026#39;m headed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/eqmmwit/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"report_reasons\": null, \"link_author\": \"tshanno\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"created\": 1560193990.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnbtfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eql1dh6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"osugisakae\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1560135253.0, \"send_replies\": true, \"parent_id\": \"t1_eqheml5\", \"score\": 1, \"author_fullname\": \"t2_1mpdb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks. I wasn't aware of peek. I'll give it a try.\", \"link_title\": \"Org-mode Hidden Gems 2 - Tables\", \"author_flair_css_class\": null, \"name\": \"t1_eql1dh6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks. I wasn\\u0026#39;t aware of peek. I\\u0026#39;ll give it a try.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bnbtfg/orgmode_hidden_gems_2_tables/eql1dh6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bnbtfg/orgmode_hidden_gems_2_tables/\", \"report_reasons\": null, \"link_author\": \"c17g\", \"author_flair_text\": null, \"link_url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"created\": 1560164053.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byjkmm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqk1q6i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560114765.0, \"send_replies\": true, \"parent_id\": \"t3_byjkmm\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"arvindsv's answer is the official, canonical way to do it.\\n\\nYou may also find these useful:\\n\\n* https://github.com/alphapapa/org-super-agenda could easily filter out entries with the `discard` selector.\\n* https://github.com/alphapapa/org-ql provides alternative ways to find and view items in agenda-like views.\", \"link_title\": \"Property to exclude an entry from the agenda?\", \"author_flair_css_class\": null, \"name\": \"t1_eqk1q6i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Earvindsv\\u0026#39;s answer is the official, canonical way to do it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou may also find these useful:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/org-super-agenda\\\"\\u003Ehttps://github.com/alphapapa/org-super-agenda\\u003C/a\\u003E could easily filter out entries with the \\u003Ccode\\u003Ediscard\\u003C/code\\u003E selector.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/org-ql\\\"\\u003Ehttps://github.com/alphapapa/org-ql\\u003C/a\\u003E provides alternative ways to find and view items in agenda-like views.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/eqk1q6i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"report_reasons\": null, \"link_author\": \"tshanno\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"created\": 1560143565.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqjn6wc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kccole42\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560108027.0, \"send_replies\": true, \"parent_id\": \"t3_byflyn\", \"score\": 1, \"author_fullname\": \"t2_xxunp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I cannot install this on my lg - seems there is an incompatible hardware issue.\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqjn6wc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI cannot install this on my lg - seems there is an incompatible hardware issue.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqjn6wc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560136827.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqinz3u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ValentinPearce\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560090482.0, \"send_replies\": true, \"parent_id\": \"t1_eqhrc9z\", \"score\": 1, \"author_fullname\": \"t2_e8tz3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Recently, termux has added a bar above the keyboard with ```ctrl``` ```esc``` ```tab``` ```alt```, ```-``` and up down keys which makes it easy enough to use with the default android keyboard :)\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqinz3u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERecently, termux has added a bar above the keyboard with \\u003Ccode\\u003Ectrl\\u003C/code\\u003E \\u003Ccode\\u003Eesc\\u003C/code\\u003E \\u003Ccode\\u003Etab\\u003C/code\\u003E \\u003Ccode\\u003Ealt\\u003C/code\\u003E, \\u003Ccode\\u003E-\\u003C/code\\u003E and up down keys which makes it easy enough to use with the default android keyboard :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqinz3u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560119282.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byjkmm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqib1j2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arvindsv\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560083292.0, \"send_replies\": true, \"parent_id\": \"t3_byjkmm\", \"score\": 3, \"author_fullname\": \"t2_23hf8dkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I use org-agenda-skip-function for this. [https://orgmode.org/manual/Special-agenda-views.html](https://orgmode.org/manual/Special-agenda-views.html)\\n\\n\\u0026#x200B;\\n\\nYou can also pass in filters to commands like todo and tags-tree, if you're using custom agenda views: [https://orgmode.org/manual/Setting-options.html](https://orgmode.org/manual/Setting-options.html)\\n\\n\\u0026#x200B;\\n\\nEdit: You mentioned default agenda views. org-agenda-skip-function-global might be more relevant.\", \"link_title\": \"Property to exclude an entry from the agenda?\", \"author_flair_css_class\": null, \"name\": \"t1_eqib1j2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use org-agenda-skip-function for this. \\u003Ca href=\\\"https://orgmode.org/manual/Special-agenda-views.html\\\"\\u003Ehttps://orgmode.org/manual/Special-agenda-views.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can also pass in filters to commands like todo and tags-tree, if you\\u0026#39;re using custom agenda views: \\u003Ca href=\\\"https://orgmode.org/manual/Setting-options.html\\\"\\u003Ehttps://orgmode.org/manual/Setting-options.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: You mentioned default agenda views. org-agenda-skip-function-global might be more relevant.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/eqib1j2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"report_reasons\": null, \"link_author\": \"tshanno\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"created\": 1560112092.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqi7ttb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mediapathic\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560081252.0, \"send_replies\": true, \"parent_id\": \"t1_eqhouu3\", \"score\": 2, \"author_fullname\": \"t2_42hw1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Another way of thinking about Inbox: the system I use names this file \\u201crefile.org\\u201d, as in, you put stuff in there to refile later when you want to focus on that instead of whatever you were doing when you had the idea.\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqi7ttb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnother way of thinking about Inbox: the system I use names this file \\u201crefile.org\\u201d, as in, you put stuff in there to refile later when you want to focus on that instead of whatever you were doing when you had the idea.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqi7ttb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560110052.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqi7deq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TTRation\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560080868.0, \"send_replies\": true, \"parent_id\": \"t1_eqhouu3\", \"score\": 1, \"author_fullname\": \"t2_z7asf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\n\\u003EDoes org-mode not work on Windows?\\n\\nOf course it does. Why wouldn't it?\\n\\n\\u003E\\u003E I also have a separate Inbox.org file (again taken from GTD, the method I\\u2019m trying to follow as much as I can in Org-mode). \\n\\u003E\\n\\u003ECan anyone expand on this? When I see \\\"Inbox\\\" I think of integration between email and org-mode... But I'm not familiar with GTD.\\n\\nTo me \\\"GTD inbox\\\" means having an inbox for new incoming TODO items. When something comes up you dump it there and forget about it. Then later the same day you clear the inbox in a single batch, either by doing the tasks (=very small), delegate them forward or put them on the agenda for some day.\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqi7deq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDoes org-mode not work on Windows?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOf course it does. Why wouldn\\u0026#39;t it?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI also have a separate Inbox.org file (again taken from GTD, the method I\\u2019m trying to follow as much as I can in Org-mode). \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECan anyone expand on this? When I see \\u0026quot;Inbox\\u0026quot; I think of integration between email and org-mode... But I\\u0026#39;m not familiar with GTD.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETo me \\u0026quot;GTD inbox\\u0026quot; means having an inbox for new incoming TODO items. When something comes up you dump it there and forget about it. Then later the same day you clear the inbox in a single batch, either by doing the tasks (=very small), delegate them forward or put them on the agenda for some day.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqi7deq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560109668.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqi5xao\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560079799.0, \"send_replies\": true, \"parent_id\": \"t1_eqhouu3\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Inbox: (sorry I'm mobile and the UI is kind of limited) \\n\\nIt's a \\\"grab all\\\" org file. The Getting Things Done system (it's huge and is a bit of a \\\"cult\\\" if you ask me haha) talks about this in length. Just Google it. \\n\\nThe quick explanation (and how I use it):\\nI have an \\\"Oh Snap!\\\" notebook (an org file). Every time I remember something I grab the phone, hit the plus on my widget, and record the idea. It's toward the end of the post. \\n\\nThe idea is that is that you don't think and waste time on organization on the go if you can't. This allows you to really capture almost everything you need quickly. Later you sit down at your laptop and organize it.\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqi5xao\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EInbox: (sorry I\\u0026#39;m mobile and the UI is kind of limited) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a \\u0026quot;grab all\\u0026quot; org file. The Getting Things Done system (it\\u0026#39;s huge and is a bit of a \\u0026quot;cult\\u0026quot; if you ask me haha) talks about this in length. Just Google it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe quick explanation (and how I use it):\\nI have an \\u0026quot;Oh Snap!\\u0026quot; notebook (an org file). Every time I remember something I grab the phone, hit the plus on my widget, and record the idea. It\\u0026#39;s toward the end of the post. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe idea is that is that you don\\u0026#39;t think and waste time on organization on the go if you can\\u0026#39;t. This allows you to really capture almost everything you need quickly. Later you sit down at your laptop and organize it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqi5xao/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560108599.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqi5ixr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560079523.0, \"send_replies\": true, \"parent_id\": \"t3_byflyn\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Windows: yes it does, but (my understanding) is that it's floating on top of the OS in a different container to be able to work, while in Macs, you can use Homebrew and it's almost fully built in. \\n\\nI might be wrong about both. \\n\\nFor me, Emacs is meant to live in Linux and I'm a Linux guy so I use VMs for that.\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqi5ixr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWindows: yes it does, but (my understanding) is that it\\u0026#39;s floating on top of the OS in a different container to be able to work, while in Macs, you can use Homebrew and it\\u0026#39;s almost fully built in. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI might be wrong about both. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor me, Emacs is meant to live in Linux and I\\u0026#39;m a Linux guy so I use VMs for that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqi5ixr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560108323.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqi5ddt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560079408.0, \"send_replies\": true, \"parent_id\": \"t1_eqhsboe\", \"score\": 2, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm glad you liked it, I might do more... Though I'd day I'm coming from a so what different background so I don't know if \\\"my\\\"Emacs folks might be different then \\\"yours\\\" lol.\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqi5ddt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m glad you liked it, I might do more... Though I\\u0026#39;d day I\\u0026#39;m coming from a so what different background so I don\\u0026#39;t know if \\u0026quot;my\\u0026quot;Emacs folks might be different then \\u0026quot;yours\\u0026quot; lol.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqi5ddt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560108208.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqi59pr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560079331.0, \"send_replies\": true, \"parent_id\": \"t1_eqhq1wb\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I think it's completely independent. You could, for example, write the clock-in clock-out syntax in the tasks's description in orgzly, and full org-mode would figure it out on a desktop. \\n\\nAs to the problem described, I record time under the \\\"created\\\" properties, which is automatically created in Orgzly. When I'm done I create an \\\"end\\\" property (I know there's \\\"closed\\\" property too but doesn't matter here you will see why in a sec) and add the time. \\n\\nOn. Desktop later I clock in and out and adjust the time to be what I entered. Yes it's not automatic but at least I know how much time I spent. I don't use it often enough to really bother me. \\n\\nI also record when I visit places with a different app and do something similar later on. If there's interest I can exapnd on this later.\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqi59pr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think it\\u0026#39;s completely independent. You could, for example, write the clock-in clock-out syntax in the tasks\\u0026#39;s description in orgzly, and full org-mode would figure it out on a desktop. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs to the problem described, I record time under the \\u0026quot;created\\u0026quot; properties, which is automatically created in Orgzly. When I\\u0026#39;m done I create an \\u0026quot;end\\u0026quot; property (I know there\\u0026#39;s \\u0026quot;closed\\u0026quot; property too but doesn\\u0026#39;t matter here you will see why in a sec) and add the time. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn. Desktop later I clock in and out and adjust the time to be what I entered. Yes it\\u0026#39;s not automatic but at least I know how much time I spent. I don\\u0026#39;t use it often enough to really bother me. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also record when I visit places with a different app and do something similar later on. If there\\u0026#39;s interest I can exapnd on this later.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqi59pr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560108131.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqhsboe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"github-alphapapa\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560069051.0, \"send_replies\": true, \"parent_id\": \"t3_byflyn\", \"score\": 4, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Great interview! I hope you do more interviews with members of the Emacs community. Thanks for sharing this.\\n\\nI'm glad you chose Neven. Orgzly is a great project, and he deserves more recognition for it.\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqhsboe\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreat interview! I hope you do more interviews with members of the Emacs community. Thanks for sharing this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m glad you chose Neven. Orgzly is a great project, and he deserves more recognition for it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqhsboe/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560097851.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqhrc9z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"moanrisy\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560068305.0, \"send_replies\": true, \"parent_id\": \"t1_eqh4tra\", \"score\": 2, \"author_fullname\": \"t2_16ihgvyy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have tried both, it hard to use emacs in tmux if using android keyboard. So i prefer orgzlly\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqhrc9z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have tried both, it hard to use emacs in tmux if using android keyboard. So i prefer orgzlly\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqhrc9z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560097105.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqhq1wb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WalterGR\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560067001.0, \"send_replies\": true, \"parent_id\": \"t1_eqhpegq\", \"score\": 2, \"author_fullname\": \"t2_3c1ug\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Right. I'm just asking if Orgzly is an independent implementation of org-mode.\\n\\nSeems to be, but I'm not sure.\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqhq1wb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERight. I\\u0026#39;m just asking if Orgzly is an independent implementation of org-mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESeems to be, but I\\u0026#39;m not sure.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqhq1wb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560095801.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqhpegq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"moanrisy\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560066462.0, \"send_replies\": true, \"parent_id\": \"t1_eqhoqir\", \"score\": 1, \"author_fullname\": \"t2_16ihgvyy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"https://www.gnu.org/software/emacs/manual/html_node/org/Clocking-commands.html\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqhpegq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/org/Clocking-commands.html\\\"\\u003Ehttps://www.gnu.org/software/emacs/manual/html_node/org/Clocking-commands.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqhpegq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560095262.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560067024.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqhouu3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WalterGR\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560066045.0, \"send_replies\": true, \"parent_id\": \"t3_byflyn\", \"score\": 1, \"author_fullname\": \"t2_3c1ug\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Org-mode is built into Emacs, which in turn is built into Linux (or, with some alternations, into macOS). \\n\\nDoes org-mode not work on Windows?\\n\\n\\u003E I also have a separate Inbox.org file (again taken from GTD, the method I\\u2019m trying to follow as much as I can in Org-mode). \\n\\nCan anyone expand on this? When I see \\\"Inbox\\\" I think of integration between email and org-mode... But I'm not familiar with GTD.\\n\\n\\u003E First, It was intriguing to hear the Neven\\u2019s opinion about non-tech and non-Org users. In a way, he looks up to them as inspiration: the more they can use the app, the better the app is. This makes me think about the Org-mode and Emacs manual. It is very detailed, very informative, yet in the beginning it served me as a last resort only. That\\u2019s because it feels the Emacs was written from the \\u201cinside\\u201d by people who understand programming and Linux. ... The manual was intuitive, made sense, and small. I think Neven is on to something very important here.\\n\\n*Fully* agree!\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqhouu3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EOrg-mode is built into Emacs, which in turn is built into Linux (or, with some alternations, into macOS). \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EDoes org-mode not work on Windows?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI also have a separate Inbox.org file (again taken from GTD, the method I\\u2019m trying to follow as much as I can in Org-mode). \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECan anyone expand on this? When I see \\u0026quot;Inbox\\u0026quot; I think of integration between email and org-mode... But I\\u0026#39;m not familiar with GTD.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EFirst, It was intriguing to hear the Neven\\u2019s opinion about non-tech and non-Org users. In a way, he looks up to them as inspiration: the more they can use the app, the better the app is. This makes me think about the Org-mode and Emacs manual. It is very detailed, very informative, yet in the beginning it served me as a last resort only. That\\u2019s because it feels the Emacs was written from the \\u201cinside\\u201d by people who understand programming and Linux. ... The manual was intuitive, made sense, and small. I think Neven is on to something very important here.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EFully\\u003C/em\\u003E agree!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqhouu3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560094845.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqhoqir\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WalterGR\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560065967.0, \"send_replies\": true, \"parent_id\": \"t1_eqhixl2\", \"score\": 2, \"author_fullname\": \"t2_3c1ug\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E org-clock-in then org-clock-out\\n\\nThat Orgzly doesn't support this suggests that it's an independent implementation of Org mode. Is that correct?\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqhoqir\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eorg-clock-in then org-clock-out\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat Orgzly doesn\\u0026#39;t support this suggests that it\\u0026#39;s an independent implementation of Org mode. Is that correct?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqhoqir/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560094767.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqhixl2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"moanrisy\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560060608.0, \"send_replies\": true, \"parent_id\": \"t3_byflyn\", \"score\": 1, \"author_fullname\": \"t2_16ihgvyy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Do you have plan to implement log time for a task?\\nusually i start org-clock-in then org-clock-out.\\nso i can know how long i work on that task\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqhixl2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDo you have plan to implement log time for a task?\\nusually i start org-clock-in then org-clock-out.\\nso i can know how long i work on that task\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqhixl2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560089408.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqhhd2x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"enilkcals\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1560058991.0, \"send_replies\": true, \"parent_id\": \"t1_eq29p8x\", \"score\": 1, \"author_fullname\": \"t2_91o9h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Just clocked [this interview with Orgzly developer](https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/) thought you might find it interesting.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eqhhd2x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust clocked \\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/\\\"\\u003Ethis interview with Orgzly developer\\u003C/a\\u003E thought you might find it interesting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eqhhd2x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1560087791.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnbtfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqheml5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"c17g\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1560056539.0, \"send_replies\": true, \"parent_id\": \"t1_eqg456v\", \"score\": 1, \"author_fullname\": \"t2_cpi6z95\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, I tweaked it a bit and now it works. The [blog post](https://yiufung.net/post/org-mode-hidden-gems-pt2/) is updated now. Never knew the existence of `basename` command, thanks for the tip. \\n\\nFor screen capture, I use [peek](https://github.com/phw/peek).\", \"link_title\": \"Org-mode Hidden Gems 2 - Tables\", \"author_flair_css_class\": null, \"name\": \"t1_eqheml5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I tweaked it a bit and now it works. The \\u003Ca href=\\\"https://yiufung.net/post/org-mode-hidden-gems-pt2/\\\"\\u003Eblog post\\u003C/a\\u003E is updated now. Never knew the existence of \\u003Ccode\\u003Ebasename\\u003C/code\\u003E command, thanks for the tip. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor screen capture, I use \\u003Ca href=\\\"https://github.com/phw/peek\\\"\\u003Epeek\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bnbtfg/orgmode_hidden_gems_2_tables/eqheml5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bnbtfg/orgmode_hidden_gems_2_tables/\", \"report_reasons\": null, \"link_author\": \"c17g\", \"author_flair_text\": null, \"link_url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"created\": 1560085339.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqh6w9n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"figurehe4d\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560050557.0, \"send_replies\": true, \"parent_id\": \"t3_byflyn\", \"score\": 2, \"author_fullname\": \"t2_149msi\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I like orgzly, although I don't use emacs much anymore or org mode, it was pretty nice for what it was.\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqh6w9n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like orgzly, although I don\\u0026#39;t use emacs much anymore or org mode, it was pretty nice for what it was.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqh6w9n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560079357.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560049705.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqh4tra\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1560049038.0, \"send_replies\": true, \"parent_id\": \"t3_byflyn\", \"score\": 3, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"How does Orgzly compare to using Emacs on Termux? It might seem crazy to some, but you can use volume up / down as modifier keys, so it ends up being more ergonomic than you might initially think. However, Orgzly looks like it has a really pleasant to use UI.\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_eqh4tra\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow does Orgzly compare to using Emacs on Termux? It might seem crazy to some, but you can use volume up / down as modifier keys, so it ends up being more ergonomic than you might initially think. However, Orgzly looks like it has a really pleasant to use UI.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/eqh4tra/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560077838.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnbtfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqg456v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"osugisakae\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1560031376.0, \"send_replies\": true, \"parent_id\": \"t3_bnbtfg\", \"score\": 1, \"author_fullname\": \"t2_1mpdb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Just got around to reading this. Thanks for the interesting info.\\n\\n\\u0026#x200B;\\n\\nRegarding fixing the names after converting the video - could the basename command help? Not sure how it would work with the ?, but maybe something like:\\n\\n`ffmpeg -i ? -vf \\\"pad=ceil(iw/2)*2:ceil(ih/2)*2\\\" \\u003Cbacktick\\u003Ebasename -s webm '?'\\u003Cbacktick\\u003E.mp4`\\n\\nI am enjoying the hidden gems series. Did I miss somewhere - what software do you use to do the screen capture?\\n\\nThanks.\\n\\nEdit: put in \\u003Cbacktick\\u003E instead of the actual character, because that is the character that markdown uses for code start / stop.\", \"link_title\": \"Org-mode Hidden Gems 2 - Tables\", \"author_flair_css_class\": null, \"name\": \"t1_eqg456v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust got around to reading this. Thanks for the interesting info.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding fixing the names after converting the video - could the basename command help? Not sure how it would work with the ?, but maybe something like:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Effmpeg -i ? -vf \\u0026quot;pad=ceil(iw/2)*2:ceil(ih/2)*2\\u0026quot; \\u0026lt;backtick\\u0026gt;basename -s webm \\u0026#39;?\\u0026#39;\\u0026lt;backtick\\u0026gt;.mp4\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am enjoying the hidden gems series. Did I miss somewhere - what software do you use to do the screen capture?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: put in \\u0026lt;backtick\\u0026gt; instead of the actual character, because that is the character that markdown uses for code start / stop.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bnbtfg/orgmode_hidden_gems_2_tables/eqg456v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bnbtfg/orgmode_hidden_gems_2_tables/\", \"report_reasons\": null, \"link_author\": \"c17g\", \"author_flair_text\": null, \"link_url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"created\": 1560060176.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqbseio\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ijustwantanfingname\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559955443.0, \"send_replies\": true, \"parent_id\": \"t1_eqabec2\", \"score\": 2, \"author_fullname\": \"t2_63w28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E And it would be a bit noisy perhaps to have every TODO item in a file have the same tag on them just to be able to do that.\\n\\nNope. [File tags.](https://emacs.stackexchange.com/questions/13376/orgmode-is-it-possible-to-set-tags-at-a-file-level)\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqbseio\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAnd it would be a bit noisy perhaps to have every TODO item in a file have the same tag on them just to be able to do that.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ENope. \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/13376/orgmode-is-it-possible-to-set-tags-at-a-file-level\\\"\\u003EFile tags.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqbseio/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559984243.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559951257.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqbf2jg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559948625.0, \"send_replies\": true, \"parent_id\": \"t3_bxwovd\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You might also find this useful: \\n\\n* https://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\\n* https://github.com/alphapapa/unpackaged.el#agenda-for-outline-path\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqbf2jg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou might also find this useful: \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\\\"\\u003Ehttps://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/unpackaged.el#agenda-for-outline-path\\\"\\u003Ehttps://github.com/alphapapa/unpackaged.el#agenda-for-outline-path\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqbf2jg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559977425.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqartjj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559938702.0, \"send_replies\": true, \"parent_id\": \"t1_eq7h9nd\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yeah, `fold` is sort of an Emacsism, so you almost have to know what to search for. \\\"Almost,\\\" because if you do something like `M-x customize-apropos RET helm case RET` and look through all of the options, you'll find it eventually. ;)\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eqartjj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, \\u003Ccode\\u003Efold\\u003C/code\\u003E is sort of an Emacsism, so you almost have to know what to search for. \\u0026quot;Almost,\\u0026quot; because if you do something like \\u003Ccode\\u003EM-x customize-apropos RET helm case RET\\u003C/code\\u003E and look through all of the options, you\\u0026#39;ll find it eventually. ;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eqartjj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559967502.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqarokm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559938627.0, \"send_replies\": true, \"parent_id\": \"t1_eq9nx63\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"What code block? What version of Emacs? What version of Org? Can you reproduce it with `emacs -q`? Have you explored the customization options for Org, e.g. `M-x customize-group RET org RET`?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eqarokm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat code block? What version of Emacs? What version of Org? Can you reproduce it with \\u003Ccode\\u003Eemacs -q\\u003C/code\\u003E? Have you explored the customization options for Org, e.g. \\u003Ccode\\u003EM-x customize-group RET org RET\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/eqarokm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1559967427.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqal12f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ballfresno\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559935014.0, \"send_replies\": true, \"parent_id\": \"t3_bxwovd\", \"score\": 2, \"author_fullname\": \"t2_2b5qxk6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Not quite what others are suggesting and maybe not what you want but you might like to try org-sparse-tree (which, for me, is bound to C-c /): it allows you to highlight subtrees that meet certain criteria.\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqal12f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot quite what others are suggesting and maybe not what you want but you might like to try org-sparse-tree (which, for me, is bound to C-c /): it allows you to highlight subtrees that meet certain criteria.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqal12f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559963814.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqac83q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"livrem\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559930079.0, \"send_replies\": true, \"parent_id\": \"t1_eqabqmk\", \"score\": 3, \"author_fullname\": \"t2_68in0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \":) Thanks! I just came back here to post that as I noticed it in the documentation for org-agenda as I was finalizing my solution. No need for that now then! I was searching google for an answer instead of just pressing C-h f org-agenda. Silly.\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqac83q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E:) Thanks! I just came back here to post that as I noticed it in the documentation for org-agenda as I was finalizing my solution. No need for that now then! I was searching google for an answer instead of just pressing C-h f org-agenda. Silly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqac83q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559958879.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqabqmk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"argtri\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559929777.0, \"send_replies\": true, \"parent_id\": \"t3_bxwovd\", \"score\": 7, \"author_fullname\": \"t2_b3vk3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Open org-agenda \\\"C-c a\\\"\\n\\nType \\\"\\u003C a\\\"\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n\\\"\\u003C\\\" is the command for buffer, subtree, region restriction.\\n\\n\\\"\\u003E\\\" reverses the restriction.\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqabqmk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOpen org-agenda \\u0026quot;C-c a\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EType \\u0026quot;\\u0026lt; a\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u0026lt;\\u0026quot; is the command for buffer, subtree, region restriction.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u0026gt;\\u0026quot; reverses the restriction.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqabqmk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559958577.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559930265.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqabqi5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"livrem\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559929775.0, \"send_replies\": true, \"parent_id\": \"t1_eqab80l\", \"score\": 3, \"author_fullname\": \"t2_68in0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This actually seems to do the trick:\\n\\n (let ((org-agenda-files (list (buffer-file-name)))) (org-agenda))\\n\\nEDIT: See other comment by /u/argtri about how this is already built into org-agenda by just pressing \\\"\\u003C\\\".\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqabqi5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis actually seems to do the trick:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(let ((org-agenda-files (list (buffer-file-name)))) (org-agenda))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EEDIT: See other comment by \\u003Ca href=\\\"/u/argtri\\\"\\u003E/u/argtri\\u003C/a\\u003E about how this is already built into org-agenda by just pressing \\u0026quot;\\u0026lt;\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqabqi5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559958575.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqabec2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"livrem\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559929555.0, \"send_replies\": true, \"parent_id\": \"t1_eqaarkn\", \"score\": 1, \"author_fullname\": \"t2_68in0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"OK. But that still requires that I put all my project's org-files in org-agenda-files, which is what I primarily want to avoid. And it would be a bit noisy perhaps to have every TODO item in a file have the same tag on them just to be able to do that.\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqabec2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOK. But that still requires that I put all my project\\u0026#39;s org-files in org-agenda-files, which is what I primarily want to avoid. And it would be a bit noisy perhaps to have every TODO item in a file have the same tag on them just to be able to do that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqabec2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559958355.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqab80l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"livrem\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559929436.0, \"send_replies\": true, \"parent_id\": \"t1_eqaa7vf\", \"score\": 1, \"author_fullname\": \"t2_68in0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Looks like really good info that I could use, but almost like the opposite of what I want. I just want what is in the current file, nothing from any other org-files anywhere.\\n\\nIf there is nothing built-in I guess it might be feasible to write a little function that wraps org-agenda to set org-agenda-files temporarily to just the current buffer's file and hope that org is not somehow confused by that.\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqab80l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks like really good info that I could use, but almost like the opposite of what I want. I just want what is in the current file, nothing from any other org-files anywhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf there is nothing built-in I guess it might be feasible to write a little function that wraps org-agenda to set org-agenda-files temporarily to just the current buffer\\u0026#39;s file and hope that org is not somehow confused by that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqab80l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559958236.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqaarkn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Fulk0\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559929136.0, \"send_replies\": true, \"parent_id\": \"t1_eqaansv\", \"score\": 1, \"author_fullname\": \"t2_127kf2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Tag all the TODOs with a tag with the name of the project. Then just filter by tags.\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqaarkn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETag all the TODOs with a tag with the name of the project. Then just filter by tags.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqaarkn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559957936.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqaansv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"livrem\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559929067.0, \"send_replies\": true, \"parent_id\": \"t1_eqa514p\", \"score\": 1, \"author_fullname\": \"t2_68in0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Not sure how they would help?\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqaansv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot sure how they would help?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqaansv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559957867.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqaa7vf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"scaba23\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559928767.0, \"send_replies\": true, \"parent_id\": \"t3_bxwovd\", \"score\": 2, \"author_fullname\": \"t2_i18ft\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This guy shows how to set up custom agenda views:\\n\\n[https://blog.aaronbieber.com/2016/09/24/an-agenda-for-life-with-org-mode.html](https://blog.aaronbieber.com/2016/09/24/an-agenda-for-life-with-org-mode.html)\\n\\n\\u0026#x200B;\\n\\nAnd if you want to install org-super-agenda, you can do even more:\\n\\n[https://github.com/alphapapa/org-super-agenda](https://github.com/alphapapa/org-super-agenda) \\n\\n\\u0026#x200B;\\n\\nMaybe between those two resources you can work something out. If you do, show us what you did!\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqaa7vf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis guy shows how to set up custom agenda views:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://blog.aaronbieber.com/2016/09/24/an-agenda-for-life-with-org-mode.html\\\"\\u003Ehttps://blog.aaronbieber.com/2016/09/24/an-agenda-for-life-with-org-mode.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd if you want to install org-super-agenda, you can do even more:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/org-super-agenda\\\"\\u003Ehttps://github.com/alphapapa/org-super-agenda\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaybe between those two resources you can work something out. If you do, show us what you did!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqaa7vf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559957567.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa9faa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559928242.0, \"send_replies\": true, \"parent_id\": \"t3_bxu83g\", \"score\": 2, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm trying to improve a bit my org-contacts, more in details I'm \\nlooking for a way to properly sync org-contacts to vcard with\\nba\\u00efkal (carddav server) and DAVx\\u2075 on Android.\\n\\nEssentially I'm looking for a way to have my contacts usable on\\nAndroid for all vcard fields that have sense on mobile...\\n\\nFor know it does not work much... BBDB and EBDB or HyRolo (Hyperbole)\\ndoes not convince me much and I still miss a working solution.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eqa9faa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to improve a bit my org-contacts, more in details I\\u0026#39;m \\nlooking for a way to properly sync org-contacts to vcard with\\nba\\u00efkal (carddav server) and DAVx\\u2075 on Android.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEssentially I\\u0026#39;m looking for a way to have my contacts usable on\\nAndroid for all vcard fields that have sense on mobile...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor know it does not work much... BBDB and EBDB or HyRolo (Hyperbole)\\ndoes not convince me much and I still miss a working solution.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/eqa9faa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1559957042.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxooz7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa7qk5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eeg_bert\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559927109.0, \"send_replies\": true, \"parent_id\": \"t1_eq9g6db\", \"score\": 1, \"author_fullname\": \"t2_uhm4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks this worked!\", \"link_title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"author_flair_css_class\": null, \"name\": \"t1_eqa7qk5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks this worked!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/eqa7qk5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"created\": 1559955909.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa514p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Fulk0\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559925307.0, \"send_replies\": true, \"parent_id\": \"t3_bxwovd\", \"score\": 3, \"author_fullname\": \"t2_127kf2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"What comes first to my mind is to use tags.\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqa514p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat comes first to my mind is to use tags.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqa514p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559954107.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9nx63\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skouakskouek\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559913189.0, \"send_replies\": true, \"parent_id\": \"t3_bxu83g\", \"score\": 1, \"author_fullname\": \"t2_elo7h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hi, I'm not sure about what I should do to have syntax highlighting on my code block.\\n\\nI added this to my emacs file, to no success:\\n\\n (setq org-src-fontify-natively t\\n org-src-tab-acts-natively t\\n org-confirm-babel-evaluate nil\\n org-edit-src-content-indentation 0)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eq9nx63\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I\\u0026#39;m not sure about what I should do to have syntax highlighting on my code block.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI added this to my emacs file, to no success:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-src-fontify-natively t\\n org-src-tab-acts-natively t\\n org-confirm-babel-evaluate nil\\n org-edit-src-content-indentation 0)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/eq9nx63/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1559941989.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxooz7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g6db\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559905273.0, \"send_replies\": true, \"parent_id\": \"t3_bxooz7\", \"score\": 2, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Try `(add-to-list 'org-src-lang-modes '(\\\"mathematica\\\" . wolfram)).`\", \"link_title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g6db\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETry \\u003Ccode\\u003E(add-to-list \\u0026#39;org-src-lang-modes \\u0026#39;(\\u0026quot;mathematica\\u0026quot; . wolfram)).\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/eq9g6db/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"created\": 1559934073.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7h9nd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559846733.0, \"send_replies\": true, \"parent_id\": \"t1_eq7e68j\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Oh my, TIL. Thanks for pointing me into the right direction! I even stumbled upon that variable but ignored it because of the *fold* in it's name. So, thank you again! :-)\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7h9nd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh my, TIL. Thanks for pointing me into the right direction! I even stumbled upon that variable but ignored it because of the \\u003Cem\\u003Efold\\u003C/em\\u003E in it\\u0026#39;s name. So, thank you again! :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7h9nd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559875533.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7h0nk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559846610.0, \"send_replies\": true, \"parent_id\": \"t1_eq6cg2w\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003Ean *all small caps* string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search\\n\\nSpot on, I didn't even notice that, thank you!\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7h0nk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ean \\u003Cem\\u003Eall small caps\\u003C/em\\u003E string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESpot on, I didn\\u0026#39;t even notice that, thank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7h0nk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559875410.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7e68j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559845225.0, \"send_replies\": true, \"parent_id\": \"t3_bxfd1r\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \" helm-case-fold-search is a variable defined in \\u2018helm.el\\u2019.\\n Its value is \\u2018smart\\u2019\\n\\n Documentation:\\n Adds \\u2019smart\\u2019 option to \\u2018case-fold-search\\u2019.\\n Smart option ignores case for searches as long as there are no\\n upper case characters in the pattern.\\n\\n Use nil or t to turn off smart behavior and use\\n \\u2018case-fold-search\\u2019 behavior.\\n\\n Default is smart.\\n\\n NOTE: Case fold search has no effect when searching asynchronous\\n sources, which rely on customized features implemented directly\\n into their execution process. See helm-grep.el for an example.\\n\\n You can customize this variable.\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7e68j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003Ehelm-case-fold-search is a variable defined in \\u2018helm.el\\u2019.\\nIts value is \\u2018smart\\u2019\\n\\nDocumentation:\\nAdds \\u2019smart\\u2019 option to \\u2018case-fold-search\\u2019.\\nSmart option ignores case for searches as long as there are no\\nupper case characters in the pattern.\\n\\nUse nil or t to turn off smart behavior and use\\n\\u2018case-fold-search\\u2019 behavior.\\n\\nDefault is smart.\\n\\nNOTE: Case fold search has no effect when searching asynchronous\\nsources, which rely on customized features implemented directly\\ninto their execution process. See helm-grep.el for an example.\\n\\nYou can customize this variable.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7e68j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559874025.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7dx8p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559845112.0, \"send_replies\": true, \"parent_id\": \"t1_eq6t46m\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Well, there is one potential solution I can think of: Write a function which can be used as advice to the appropriate function which would add the proper prefix to image paths when Org displays inline images, and activate the advice with `eval` in a buffer-local variable line in each Org file. (Using dir-locals would be even better, but I don't know if you can `eval` with that.)\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7dx8p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, there is one potential solution I can think of: Write a function which can be used as advice to the appropriate function which would add the proper prefix to image paths when Org displays inline images, and activate the advice with \\u003Ccode\\u003Eeval\\u003C/code\\u003E in a buffer-local variable line in each Org file. (Using dir-locals would be even better, but I don\\u0026#39;t know if you can \\u003Ccode\\u003Eeval\\u003C/code\\u003E with that.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq7dx8p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559873912.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq74izr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559840395.0, \"send_replies\": true, \"parent_id\": \"t1_eq0moy7\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I did something like that.\\n\\nIs yours text or gui?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq74izr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI did something like that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs yours text or gui?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq74izr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559869195.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq74am7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559840281.0, \"send_replies\": true, \"parent_id\": \"t1_epo4x0j\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \" \\u003E I'm curious as to what a \\\"stand-alone\\\" version of org mode would look like.\\n\\nInteresting question. To start off, please tell me what\\n\\n emacs -f org-mode my-big-org-mode-file.txt\\n\\nwould lack, as an implementation.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eq74am7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026gt; I\\u0026#39;m curious as to what a \\u0026quot;stand-alone\\u0026quot; version of org mode would look like.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EInteresting question. To start off, please tell me what\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eemacs -f org-mode my-big-org-mode-file.txt\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewould lack, as an implementation.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/eq74am7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559869081.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6t46m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559834955.0, \"send_replies\": true, \"parent_id\": \"t1_eq4m54v\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Usually, I prefer to define something once instead of copying it multiple times.\\n\\nThen, if I need to change the folder name, I just need to change on variable at the beginning of my org-mode file instead of having to do a search/replace thing.\\n\\nBut this is just personal preference.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6t46m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsually, I prefer to define something once instead of copying it multiple times.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen, if I need to change the folder name, I just need to change on variable at the beginning of my org-mode file instead of having to do a search/replace thing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut this is just personal preference.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq6t46m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559863755.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6cg2w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559826572.0, \"send_replies\": true, \"parent_id\": \"t3_bxfd1r\", \"score\": 4, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm not a helm user myself, but a frequent behaviour I meet around in regex searches are that an _all small caps_ string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search. So, if this is the same behaviour there, `\\\"Berlin/Todo\\\"` is case sensitive, whereas `\\\"berlin/todo\\\"` wouldn't be. (That's only a guess though...)\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq6cg2w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not a helm user myself, but a frequent behaviour I meet around in regex searches are that an \\u003Cem\\u003Eall small caps\\u003C/em\\u003E string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search. So, if this is the same behaviour there, \\u003Ccode\\u003E\\u0026quot;Berlin/Todo\\u0026quot;\\u003C/code\\u003E is case sensitive, whereas \\u003Ccode\\u003E\\u0026quot;berlin/todo\\u0026quot;\\u003C/code\\u003E wouldn\\u0026#39;t be. (That\\u0026#39;s only a guess though...)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq6cg2w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559855372.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq61yd0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559820069.0, \"send_replies\": true, \"parent_id\": \"t1_eq0mczn\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I can't reproduce this. I had to add (use-package dash) to your init.el file, but after that, ivy-contacts worked fine for me, and showed your two contacts. Maybe if you run M-x toggle-debug-on-error a more informative error message might be shown.\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_eq61yd0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t reproduce this. I had to add (use-package dash) to your init.el file, but after that, ivy-contacts worked fine for me, and showed your two contacts. Maybe if you run M-x toggle-debug-on-error a more informative error message might be shown.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/eq61yd0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559848869.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq4m54v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559779949.0, \"send_replies\": true, \"parent_id\": \"t1_eq499va\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Maybe I could use a snippet for that that automatically write the name of the figure folder (it's based on the note filename) but I don't really like that...\\n\\nWhy?\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq4m54v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EMaybe I could use a snippet for that that automatically write the name of the figure folder (it\\u0026#39;s based on the note filename) but I don\\u0026#39;t really like that...\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhy?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq4m54v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559808749.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq499va\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559772032.0, \"send_replies\": true, \"parent_id\": \"t1_eq3fu1x\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have a folder with all my notes on books or articles.\\nEach note has its own org file.\\nThen I have a figs folder and subfolders for each of my notes. I don't want to have one fog folder for all my notes as I have hundreds of figures.\\n\\nSo in the end, I have to manually put [[figs/verylongfilename/figurename]] which is quite boring. Maybe I could use a snippet for that that automatically write the name of the figure folder (it's based on the note filename) but I don't really like that...\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq499va\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a folder with all my notes on books or articles.\\nEach note has its own org file.\\nThen I have a figs folder and subfolders for each of my notes. I don\\u0026#39;t want to have one fog folder for all my notes as I have hundreds of figures.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo in the end, I have to manually put [[figs/verylongfilename/figurename]] which is quite boring. Maybe I could use a snippet for that that automatically write the name of the figure folder (it\\u0026#39;s based on the note filename) but I don\\u0026#39;t really like that...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq499va/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559800832.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq3fu1x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559755118.0, \"send_replies\": true, \"parent_id\": \"t1_epztbtv\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E The thing is that I have complicated folder names for my figures.\\n\\nThat's a key point that you didn't mention in your question. Without knowing that, it seems like you're trying to avoid typing `figs/`, which would be kind of silly. :)\\n\\nSo why don't you put all the figures in `figs/`?\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq3fu1x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe thing is that I have complicated folder names for my figures.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s a key point that you didn\\u0026#39;t mention in your question. Without knowing that, it seems like you\\u0026#39;re trying to avoid typing \\u003Ccode\\u003Efigs/\\u003C/code\\u003E, which would be kind of silly. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo why don\\u0026#39;t you put all the figures in \\u003Ccode\\u003Efigs/\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq3fu1x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559783918.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq2i8vy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dr_Schmoctor\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559737707.0, \"send_replies\": true, \"parent_id\": \"t1_eq2g6te\", \"score\": 1, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"What I'd like to see most is notifications being able to notify before the deadline. I make due by setting 'scheduled' some time before the 'deadline' so it notifies me beforehand, but it'd be nice to have an easier setting for it.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq2i8vy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat I\\u0026#39;d like to see most is notifications being able to notify before the deadline. I make due by setting \\u0026#39;scheduled\\u0026#39; some time before the \\u0026#39;deadline\\u0026#39; so it notifies me beforehand, but it\\u0026#39;d be nice to have an easier setting for it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq2i8vy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559766507.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq2g6te\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"enilkcals\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559736393.0, \"send_replies\": true, \"parent_id\": \"t1_eq29p8x\", \"score\": 1, \"author_fullname\": \"t2_91o9h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Nice, I'd somehow missed that will give it a whirl, thank you.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq2g6te\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice, I\\u0026#39;d somehow missed that will give it a whirl, thank you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq2g6te/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559765193.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq29p8x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dr_Schmoctor\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559731937.0, \"send_replies\": true, \"parent_id\": \"t1_eq1kjlt\", \"score\": 3, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003Ethe only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application \\n\\nI have the Auto-sync (experimental) option enabled and it syncs as you go.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq29p8x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ethe only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI have the Auto-sync (experimental) option enabled and it syncs as you go.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq29p8x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559760737.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwcmiw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq28lvx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gabrielelana\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559731176.0, \"send_replies\": true, \"parent_id\": \"t3_bwcmiw\", \"score\": 1, \"author_fullname\": \"t2_flffy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I was really disappointed by this unilateral and arbitrary change without a way to opt-out :-(\\n\\nAnyway I solved the issue with [this piece of code](https://github.com/gabrielelana/dotfiles/blob/master/emacs.d/local-packages/org-functions.el) in particular the function `cc/org-mode-buffer-force-uppercase-keywords`\", \"link_title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"author_flair_css_class\": null, \"name\": \"t1_eq28lvx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was really disappointed by this unilateral and arbitrary change without a way to opt-out :-(\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway I solved the issue with \\u003Ca href=\\\"https://github.com/gabrielelana/dotfiles/blob/master/emacs.d/local-packages/org-functions.el\\\"\\u003Ethis piece of code\\u003C/a\\u003E in particular the function \\u003Ccode\\u003Ecc/org-mode-buffer-force-uppercase-keywords\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/eq28lvx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"report_reasons\": null, \"link_author\": \"BOOF_GOBLIN_69\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"created\": 1559759976.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq1kjlt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"enilkcals\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559711909.0, \"send_replies\": true, \"parent_id\": \"t1_eq0o23a\", \"score\": 3, \"author_fullname\": \"t2_91o9h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Came to suggest exactly the same thing which is what I too do. Its a nice smooth experience, phone uses Syncthing to synchronise the files between internal SD and computer when connected to WiFi at home, the only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq1kjlt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECame to suggest exactly the same thing which is what I too do. Its a nice smooth experience, phone uses Syncthing to synchronise the files between internal SD and computer when connected to WiFi at home, the only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq1kjlt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559740709.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0qw8h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559691873.0, \"send_replies\": true, \"parent_id\": \"t1_eq0o23a\", \"score\": 2, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have heard of Orgzly and I would like to give it a try. It looks like it is a win in the ease of use category! Using full-blown emacs on a little phone screen (taken up primarily by the keyboard) is not easy! However, what this lacks in ease of use, it makes up in completeness; I have access to everything I can do with org mode on my laptop -- on my phone. It has all my capture templates, custom bindings, todo keywords. Everything!\\n\\nI'm not sure I would be able to do that with Orgzly, but I have not tried yet. What do you think?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0qw8h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have heard of Orgzly and I would like to give it a try. It looks like it is a win in the ease of use category! Using full-blown emacs on a little phone screen (taken up primarily by the keyboard) is not easy! However, what this lacks in ease of use, it makes up in completeness; I have access to everything I can do with org mode on my laptop -- on my phone. It has all my capture templates, custom bindings, todo keywords. Everything!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure I would be able to do that with Orgzly, but I have not tried yet. What do you think?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0qw8h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559720673.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0o23a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"Dr_Schmoctor\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559689650.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 9, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"[Orgzly](https://play.google.com/store/apps/details?id=com.orgzly\\u0026hl=en) is quite nice. \\n\\nI have it synced with my computer's .org files with Syncthing.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0o23a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://play.google.com/store/apps/details?id=com.orgzly\\u0026amp;hl=en\\\"\\u003EOrgzly\\u003C/a\\u003E is quite nice. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have it synced with my computer\\u0026#39;s .org files with Syncthing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0o23a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559718450.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 9}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0n3x7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559688909.0, \"send_replies\": true, \"parent_id\": \"t1_eq0l8hv\", \"score\": 2, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Will do!\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0n3x7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWill do!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0n3x7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559717709.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0moy7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559688592.0, \"send_replies\": true, \"parent_id\": \"t1_eq0dh59\", \"score\": 9, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I used Termux [https://termux.com/](https://termux.com/) to run linux on the pixel 2. I ran `apt install emacs` and `apt install git`. I installed \\\"Hacker Keyboard\\\" to make it easier to write commands within termux, and to use emacs.\\n\\nI cloned my dotfiles `git clone https://github.com/nackjicholson/dotfiles`.\\n\\nI used [https://syncthing.net/](https://syncthing.net/) to sync my org files at `~/Sync/org` between both my laptop and pixel 2.\\n\\nI had to enable \\\"storage\\\" in Termux to let it access my androids files.\\n\\nThen I had to do some symlinking.\\n\\n`ln -s \\\"$HOME/storage/shared/Sync\\\" \\\"$HOME/Sync\\\"`\\n\\n`ln -s \\\"$HOME/dotfiles/mac/emacs.d\\\" \\\"$HOME/.emacs.d\\\"`\\n\\n\\u0026#x200B;\\n\\nDoes this all work? Yes.\\n\\nDoes this all work really well? Not really.\\n\\nDid I do a lot of this on the bus to work today? Yup.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0moy7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used Termux \\u003Ca href=\\\"https://termux.com/\\\"\\u003Ehttps://termux.com/\\u003C/a\\u003E to run linux on the pixel 2. I ran \\u003Ccode\\u003Eapt install emacs\\u003C/code\\u003E and \\u003Ccode\\u003Eapt install git\\u003C/code\\u003E. I installed \\u0026quot;Hacker Keyboard\\u0026quot; to make it easier to write commands within termux, and to use emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cloned my dotfiles \\u003Ccode\\u003Egit clone https://github.com/nackjicholson/dotfiles\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used \\u003Ca href=\\\"https://syncthing.net/\\\"\\u003Ehttps://syncthing.net/\\u003C/a\\u003E to sync my org files at \\u003Ccode\\u003E~/Sync/org\\u003C/code\\u003E between both my laptop and pixel 2.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI had to enable \\u0026quot;storage\\u0026quot; in Termux to let it access my androids files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I had to do some symlinking.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eln -s \\u0026quot;$HOME/storage/shared/Sync\\u0026quot; \\u0026quot;$HOME/Sync\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eln -s \\u0026quot;$HOME/dotfiles/mac/emacs.d\\u0026quot; \\u0026quot;$HOME/.emacs.d\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes this all work? Yes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes this all work really well? Not really.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDid I do a lot of this on the bus to work today? Yup.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0moy7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559717392.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 9}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0mczn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"_martini97\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559688343.0, \"send_replies\": true, \"parent_id\": \"t1_epyu7qo\", \"score\": 1, \"author_fullname\": \"t2_9eav0az\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hey u/jkitchin I'm having some issues with the `contacts-update-cache` when trying to use `ivy-contacts`, it is throwing this error:\\n\\n Updating contacts cache for \\u003Cmy contacts file\\u003E\\n let*: Wrong type argument: consp, nil\\n\\nI created [this branch](https://github.com/martini97/.emacs.d/tree/scimax-contacts) that reproduces the issue with a minimal config.\\n\\nAny pointers?\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_eq0mczn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey \\u003Ca href=\\\"/u/jkitchin\\\"\\u003Eu/jkitchin\\u003C/a\\u003E I\\u0026#39;m having some issues with the \\u003Ccode\\u003Econtacts-update-cache\\u003C/code\\u003E when trying to use \\u003Ccode\\u003Eivy-contacts\\u003C/code\\u003E, it is throwing this error:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EUpdating contacts cache for \\u0026lt;my contacts file\\u0026gt;\\nlet*: Wrong type argument: consp, nil\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI created \\u003Ca href=\\\"https://github.com/martini97/.emacs.d/tree/scimax-contacts\\\"\\u003Ethis branch\\u003C/a\\u003E that reproduces the issue with a minimal config.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny pointers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/eq0mczn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559717143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0l8hv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hmlwilliams\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559687491.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 3, \"author_fullname\": \"t2_s1eux6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Couldn't help but notice your GTD Todos included a journal, make sure to give [org-journal](https://github.com/bastibe/org-journal) a look!\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0l8hv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECouldn\\u0026#39;t help but notice your GTD Todos included a journal, make sure to give \\u003Ca href=\\\"https://github.com/bastibe/org-journal\\\"\\u003Eorg-journal\\u003C/a\\u003E a look!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0l8hv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559716291.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0ivh2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ford_beeblebrox\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559685763.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 2, \"author_fullname\": \"t2_9hd4y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Termux rules ! \\n\\nEmacs , org , python , ssh \\u0026 mosh - fast to set things up, all only an apt-get away.\\n\\nCompiling apk's for the platform on the platform.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0ivh2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETermux rules ! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmacs , org , python , ssh \\u0026amp; mosh - fast to set things up, all only an apt-get away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECompiling apk\\u0026#39;s for the platform on the platform.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0ivh2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559714563.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0hbsy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Salpal673\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559684698.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 6, \"author_fullname\": \"t2_2drmw0wd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Using **Termux**, a Linux distribution for Android.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0hbsy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsing \\u003Cstrong\\u003ETermux\\u003C/strong\\u003E, a Linux distribution for Android.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0hbsy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559713498.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0gs1z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RoccoTech00\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559684420.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 2, \"author_fullname\": \"t2_88l5xwz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Android? How?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0gs1z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAndroid? How?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0gs1z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559713220.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0dh59\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"loskutak-the-ptak\", \"num_comments\": 15, \"can_mod_post\": false, \"created_utc\": 1559682620.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 6, \"author_fullname\": \"t2_ke7apcf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"how?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0dh59\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehow?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0dh59/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559711420.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epztbtv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559672254.0, \"send_replies\": true, \"parent_id\": \"t1_epzrglx\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I know that, the point is that I don't want to have to type the folder each time.\\nThe thing is that I have complicated folder names for my figures.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_epztbtv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know that, the point is that I don\\u0026#39;t want to have to type the folder each time.\\nThe thing is that I have complicated folder names for my figures.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/epztbtv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559701054.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epzrglx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559671221.0, \"send_replies\": true, \"parent_id\": \"t3_bwmraz\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Use `[[figs/figurename.png]]`.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_epzrglx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUse \\u003Ccode\\u003E[[figs/figurename.png]]\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/epzrglx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559700021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epywsc9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"_martini97\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559653023.0, \"send_replies\": true, \"parent_id\": \"t1_epyu7qo\", \"score\": 1, \"author_fullname\": \"t2_9eav0az\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, I'm still getting to know elisp so I have a hard time doing things from scratch, I will test it tonight and let you know if it worked\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epywsc9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I\\u0026#39;m still getting to know elisp so I have a hard time doing things from scratch, I will test it tonight and let you know if it worked\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epywsc9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559681823.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw916a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyuk3k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559651343.0, \"send_replies\": true, \"parent_id\": \"t3_bw916a\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I don't think you can do this with C+u method. I think you have to manually edit the link after it is inserted.\\n\\nYou probably can do this though where you want the link:\\n\\nC-c C-l then, type cite: and select the kind of cite you want. You can then select which key to use. And finally you type the page numbers into the description.\", \"link_title\": \"How do you include page number in page number in org-ref with helm?\", \"author_flair_css_class\": null, \"name\": \"t1_epyuk3k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t think you can do this with C+u method. I think you have to manually edit the link after it is inserted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou probably can do this though where you want the link:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EC-c C-l then, type cite: and select the kind of cite you want. You can then select which key to use. And finally you type the page numbers into the description.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/epyuk3k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"report_reasons\": null, \"link_author\": \"kandidate\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"created\": 1559680143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyu7qo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559651075.0, \"send_replies\": true, \"parent_id\": \"t3_bwk33h\", \"score\": 2, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I do something like this in https://github.com/jkitchin/scimax/blob/master/contacts.el#L320 with ivy. There is also a helm version (https://github.com/jkitchin/scimax/blob/master/contacts.el#L518) that I don't use anymore (there is a note that it is slow).\\n\\nThis is roughly built on the format of org-contacts and should be compatible with it.\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epyu7qo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do something like this in \\u003Ca href=\\\"https://github.com/jkitchin/scimax/blob/master/contacts.el#L320\\\"\\u003Ehttps://github.com/jkitchin/scimax/blob/master/contacts.el#L320\\u003C/a\\u003E with ivy. There is also a helm version (\\u003Ca href=\\\"https://github.com/jkitchin/scimax/blob/master/contacts.el#L518\\\"\\u003Ehttps://github.com/jkitchin/scimax/blob/master/contacts.el#L518\\u003C/a\\u003E) that I don\\u0026#39;t use anymore (there is a note that it is slow).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is roughly built on the format of org-contacts and should be compatible with it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epyu7qo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559679875.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epylnd4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559642162.0, \"send_replies\": true, \"parent_id\": \"t3_bwk33h\", \"score\": 2, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"While I can't elispit myself, I'm sure you can use helm or ivy to open a list of contacts and -upon selection- insert directly a link to it...\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epylnd4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile I can\\u0026#39;t elispit myself, I\\u0026#39;m sure you can use helm or ivy to open a list of contacts and -upon selection- insert directly a link to it...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epylnd4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559670962.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}], \"after\": \"t1_epylnd4\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["250668"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:25 GMT"], "x-ratelimit-remaining": ["594.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["6"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360205.061413,VS0,VE551"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["395"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-12T17:23:25"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_eqvbe0n"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:26 GMT"], "x-ratelimit-remaining": ["593.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["7"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360206.321772,VS0,VE92"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["394"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_eqvbe0n"}, "recorded_at": "2019-06-12T17:23:26"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I would like to get pdf output from source code to display inline. I've been using png output for the preparation of a manuscript recently, but now that I'm close to submission I have to switch to vector graphics in pdf (or eps) for latex export. This works fine, but doesn't allow me to preview the images anymore. Which should work, since pdf-tools readily shows pdf previews.\\n\\n[On the mailing list](https://lists.gnu.org/archive/html/emacs-orgmode/2016-02/msg00204.html) there's a pretty old question of somebody trying to achieve the same but without any answers. They found their own 4-liner solution, which didn't work for me (resulting in an outlined little square)\\n\\n```\\n(add-to-list 'image-type-file-name-regexps '(\\\"\\\\\\\\.pdf\\\\\\\\'\\\" . imagemagick))\\n(add-to-list 'image-file-name-extensions \\\"pdf\\\")\\n(setq imagemagick-types-inhibit (remove 'PDF imagemagick-types-inhibit))\\n(setq org-image-actual-width 600)\\n```\\n\\nThat's also the second solution posted to [this SO question](https://stackoverflow.com/questions/15407485/inline-pdf-images-in-org-mode). The first solution there seems quite fancy but since my knowledge of elisp is not extensive, I couldn't debug the inevitable error when opening an org-file with pdfs or when creating a new one.\\n\\nThere's also this [SO solution that I didn't try](https://emacs.stackexchange.com/questions/390/display-pdf-images-in-org-mode) since it requires a different format for the source.\\n\\nAny ideas on how to do this with the most recent versions of emacs and org-mode?\", \"author_fullname\": \"t2_r4y6z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inline PDF images from source in org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzas9r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560277909.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to get pdf output from source code to display inline. I\\u0026#39;ve been using png output for the preparation of a manuscript recently, but now that I\\u0026#39;m close to submission I have to switch to vector graphics in pdf (or eps) for latex export. This works fine, but doesn\\u0026#39;t allow me to preview the images anymore. Which should work, since pdf-tools readily shows pdf previews.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://lists.gnu.org/archive/html/emacs-orgmode/2016-02/msg00204.html\\\"\\u003EOn the mailing list\\u003C/a\\u003E there\\u0026#39;s a pretty old question of somebody trying to achieve the same but without any answers. They found their own 4-liner solution, which didn\\u0026#39;t work for me (resulting in an outlined little square)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(add-to-list \\u0026#39;image-type-file-name-regexps \\u0026#39;(\\u0026quot;\\\\\\\\.pdf\\\\\\\\\\u0026#39;\\u0026quot; . imagemagick))\\n(add-to-list \\u0026#39;image-file-name-extensions \\u0026quot;pdf\\u0026quot;)\\n(setq imagemagick-types-inhibit (remove \\u0026#39;PDF imagemagick-types-inhibit))\\n(setq org-image-actual-width 600)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s also the second solution posted to \\u003Ca href=\\\"https://stackoverflow.com/questions/15407485/inline-pdf-images-in-org-mode\\\"\\u003Ethis SO question\\u003C/a\\u003E. The first solution there seems quite fancy but since my knowledge of elisp is not extensive, I couldn\\u0026#39;t debug the inevitable error when opening an org-file with pdfs or when creating a new one.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere\\u0026#39;s also this \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/390/display-pdf-images-in-org-mode\\\"\\u003ESO solution that I didn\\u0026#39;t try\\u003C/a\\u003E since it requires a different format for the source.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas on how to do this with the most recent versions of emacs and org-mode?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzas9r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Japhiri\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1560249109.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I was wondering if there is anything similar to taskwarrior that can do the same thing with org files.\", \"author_fullname\": \"t2_3tn7pcdr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org Files In Cli\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz9niq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560268621.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering if there is anything similar to taskwarrior that can do the same thing with org files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz9niq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SidharthArya-\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1560239821.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Updates to org-ql\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz5esl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"https://github.com/alphapapa/org-ql\\n\\n`org-ql` has received several updates, including better documentation, an improved `org-ql-search` command, and new `(ts)` predicates that select entries by timestamp.\\n\\nHere's a [screencast](https://github.com/alphapapa/org-ql/raw/master/images/org-ql-search.gif) of the improved `org-ql-search` command.\\n\\nFeedback would be appreciated. I plan to submit it to MELPA, but I think it needs more testing and polishing first.\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Updates to org-ql\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz5eqv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 30, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 30, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560240569.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/org-ql\\\"\\u003Ehttps://github.com/alphapapa/org-ql\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E has received several updates, including better documentation, an improved \\u003Ccode\\u003Eorg-ql-search\\u003C/code\\u003E command, and new \\u003Ccode\\u003E(ts)\\u003C/code\\u003E predicates that select entries by timestamp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s a \\u003Ca href=\\\"https://github.com/alphapapa/org-ql/raw/master/images/org-ql-search.gif\\\"\\u003Escreencast\\u003C/a\\u003E of the improved \\u003Ccode\\u003Eorg-ql-search\\u003C/code\\u003E command.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeedback would be appreciated. I plan to submit it to MELPA, but I think it needs more testing and polishing first.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz5eqv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1560211769.0, \"media\": null, \"is_video\": false}], \"created\": 1560240576.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz5esl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bz5eqv\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bz5esl/updates_to_orgql/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1560211776.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"http://www.gonsie.com/blorg/org-highlight.html\\n\\nI wrote a short post on how I added a highlight markup to orgmode, where I use ':' to mark the start and end of a phrase (similar to the bold or italic markup). For example a `:highlighted:` word becomes `\\u003Cmark\\u003Ehighlighted\\u003C/mark\\u003E` when exported with an HTML backend.\\n\\nI hope this is useful for someone else. If there is some interest, I would propose to put this into the org standard.\", \"author_fullname\": \"t2_6c42k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Adding highlight markup to org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz0258\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560213612.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.gonsie.com/blorg/org-highlight.html\\\"\\u003Ehttp://www.gonsie.com/blorg/org-highlight.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wrote a short post on how I added a highlight markup to orgmode, where I use \\u0026#39;:\\u0026#39; to mark the start and end of a phrase (similar to the bold or italic markup). For example a \\u003Ccode\\u003E:highlighted:\\u003C/code\\u003E word becomes \\u003Ccode\\u003E\\u0026lt;mark\\u0026gt;highlighted\\u0026lt;/mark\\u0026gt;\\u003C/code\\u003E when exported with an HTML backend.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI hope this is useful for someone else. If there is some interest, I would propose to put this into the org standard.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz0258\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gonsie\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bz0258/adding_highlight_markup_to_org/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bz0258/adding_highlight_markup_to_org/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1560184812.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, guys.\\n\\nBefore I start defining my own custom property for this I wanted to makes sure there wasn't an existing way to do it. I'm looking for a property or something that would automatically exclude an entry from the default agenda views. I don't see one in the property completion list but it seems like the kind of thing someone may have already thought of.\\n\\nI don't have a problem with filtering on my own property or tag. But I'd rather not duplicate something that's already built in.\\n\\nThanks.\", \"author_fullname\": \"t2_16nda8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Property to exclude an entry from the agenda?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byjkmm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560110840.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, guys.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore I start defining my own custom property for this I wanted to makes sure there wasn\\u0026#39;t an existing way to do it. I\\u0026#39;m looking for a property or something that would automatically exclude an entry from the default agenda views. I don\\u0026#39;t see one in the property completion list but it seems like the kind of thing someone may have already thought of.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t have a problem with filtering on my own property or tag. But I\\u0026#39;d rather not duplicate something that\\u0026#39;s already built in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byjkmm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tshanno\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1560082040.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Those of you who use Org-mode with Android are probably familiar with [Orgzly](http://www.orgzly.com/). In this post, a friendly FAQ with it's creator, who was kind enough to answer a few questions. I also described how I work with it toward the end.\\n\\n\\u0026#x200B;\\n\\nThis read might be useful for anyone who uses Org-mode on the go, rather you're familiar with Orgzly or not. Let me know what you think :)\\n\\n\\u0026#x200B;\\n\\n[https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/](https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/)\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Orgzly: an interview with the creator\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byflyn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 33, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 33, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560078985.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560076152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThose of you who use Org-mode with Android are probably familiar with \\u003Ca href=\\\"http://www.orgzly.com/\\\"\\u003EOrgzly\\u003C/a\\u003E. In this post, a friendly FAQ with it\\u0026#39;s creator, who was kind enough to answer a few questions. I also described how I work with it toward the end.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis read might be useful for anyone who uses Org-mode on the go, rather you\\u0026#39;re familiar with Orgzly or not. Let me know what you think :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/\\\"\\u003Ehttps://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byflyn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1560047352.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is it possible to get a quick org-agenda shown for just all the dates in the current org-buffer? I have too many little projects with their own org-documents, and usually I am only interested in what I need to do on the project I have right in front of me, not the default agenda files.\", \"author_fullname\": \"t2_68in0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Agenda for current buffer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxwovd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559954023.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to get a quick org-agenda shown for just all the dates in the current org-buffer? I have too many little projects with their own org-documents, and usually I am only interested in what I need to do on the project I have right in front of me, not the default agenda files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxwovd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"livrem\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559925223.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxu83g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559940568.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu83g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"parent_whitelist_status\": null, \"stickied\": true, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559911768.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have [ob-mathematica](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el) (which allows me to execute mathematica snippets via org-babel) combined with [wolfram-mode](https://github.com/kawabata/wolfram-mode) (which provides syntax highlighting).\\n\\nSo right now I have the conundrum that if I label an org-babel source block `mathematica`, then I can evaluate it via `C-c C-c` but without syntax highlighting. On the other hand, if I label the block `wolfram`, then I can no longer evaluate it, but I get source highlighting!\\n\\nHow do I combine these two to get the best of both worlds?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxooz7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559899393.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Eob-mathematica\\u003C/a\\u003E (which allows me to execute mathematica snippets via org-babel) combined with \\u003Ca href=\\\"https://github.com/kawabata/wolfram-mode\\\"\\u003Ewolfram-mode\\u003C/a\\u003E (which provides syntax highlighting).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo right now I have the conundrum that if I label an org-babel source block \\u003Ccode\\u003Emathematica\\u003C/code\\u003E, then I can evaluate it via \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E but without syntax highlighting. On the other hand, if I label the block \\u003Ccode\\u003Ewolfram\\u003C/code\\u003E, then I can no longer evaluate it, but I get source highlighting!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I combine these two to get the best of both worlds?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxooz7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559870593.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone. Has anyone some hints on how to make helm`(org-refile)` case insensitive? E.g. I want to refile the current headline below `RubyBerlin/ToDo` (note the capital `D`). Typing the correct `\\\"Berlin/ToDo\\\"` will work and offer the headline to refile below:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/6swhzzsmvp231.png\\n\\nBut typing the lower case version `\\\"Berlin/Todo\\\"` will only give results of headlines below the one I want to refile to:\\n\\n \\n\\nhttps://i.redd.it/9mlv6bxuvp231.png\\n\\nI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\", \"author_fullname\": \"t2_5cbr5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Case insensitive (org-refile)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"6swhzzsmvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 91, \"x\": 467, \"u\": \"https://i.redd.it/6swhzzsmvp231.png\"}, \"m\": \"image/png\", \"id\": \"6swhzzsmvp231\"}, \"9mlv6bxuvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 124, \"x\": 692, \"u\": \"https://i.redd.it/9mlv6bxuvp231.png\"}, \"m\": \"image/png\", \"id\": \"9mlv6bxuvp231\"}}, \"name\": \"t3_bxfd1r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847398.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone. Has anyone some hints on how to make helm\\u003Ccode\\u003E(org-refile)\\u003C/code\\u003E case insensitive? E.g. I want to refile the current headline below \\u003Ccode\\u003ERubyBerlin/ToDo\\u003C/code\\u003E (note the capital \\u003Ccode\\u003ED\\u003C/code\\u003E). Typing the correct \\u003Ccode\\u003E\\u0026quot;Berlin/ToDo\\u0026quot;\\u003C/code\\u003E will work and offer the headline to refile below:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/6swhzzsmvp231.png\\\"\\u003Ehttps://i.redd.it/6swhzzsmvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut typing the lower case version \\u003Ccode\\u003E\\u0026quot;Berlin/Todo\\u0026quot;\\u003C/code\\u003E will only give results of headlines below the one I want to refile to:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/9mlv6bxuvp231.png\\\"\\u003Ehttps://i.redd.it/9mlv6bxuvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfd1r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bascht\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559818598.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_j2fhy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwtuob\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559710022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwtuob\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thenackjicholson\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/fldtyuwije231.png\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559681222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi guys,\\n\\nI would like to be able to preview inline images in Org-Mode without specifying its folder.\\n\\nFor instance, I would like to have `[[figurename.png]]` even tough the figure is in a folder named `figs`.\\n\\n\\u0026#x200B;\\n\\nRight now, I am using `#+LATEX_HEADER: \\\\graphicspath{{./figs/}}` and it is working good for LaTeX exports, but I don't have the nice preview in orgmode. Any idea how I could do that?\\n\\nThanks!\", \"author_fullname\": \"t2_6nzpkw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Default directory for inline images?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmraz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559669671.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to be able to preview inline images in Org-Mode without specifying its folder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor instance, I would like to have \\u003Ccode\\u003E[[figurename.png]]\\u003C/code\\u003E even tough the figure is in a folder named \\u003Ccode\\u003Efigs\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now, I am using \\u003Ccode\\u003E#+LATEX_HEADER: \\\\graphicspath{{./figs/}}\\u003C/code\\u003E and it is working good for LaTeX exports, but I don\\u0026#39;t have the nice preview in orgmode. Any idea how I could do that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmraz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tdehaeze\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559640871.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdoe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559637338.0, \"media\": null, \"is_video\": false}], \"created\": 1559666163.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdoe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bwmdlj\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmdoe/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559637363.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi all, I'm trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is: \\n1. Find the contact (M-x org-contacts)\\n\\n2. Create link (C-c l)\\n\\n3. Go to task\\n\\n4. Insert link\\n\\nThis is not very good, I would like to know if there's a way to have my contacts links permanently stored on emacs, and if there's a easier way to insert a contact in a task.\\n\\nFor more information, the reason I want this is because sometimes I create tasks as: **Ping John about foo**, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\n\\nThanks for the help.\\n\\nPS: This is my config if it helps: [https://github.com/martini97/.emacs.d](https://github.com/martini97/.emacs.d)\", \"author_fullname\": \"t2_9eav0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Linking contacts to tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwk33h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559648146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I\\u0026#39;m trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is:\\u003Cbr/\\u003E\\n1. Find the contact (M-x org-contacts)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECreate link (C-c l)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGo to task\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EInsert link\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is not very good, I would like to know if there\\u0026#39;s a way to have my contacts links permanently stored on emacs, and if there\\u0026#39;s a easier way to insert a contact in a task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more information, the reason I want this is because sometimes I create tasks as: \\u003Cstrong\\u003EPing John about foo\\u003C/strong\\u003E, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for the help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: This is my config if it helps: \\u003Ca href=\\\"https://github.com/martini97/.emacs.d\\\"\\u003Ehttps://github.com/martini97/.emacs.d\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwk33h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_martini97\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559619346.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Came across this function/variable while improving my agenda views and thought it'd be interesting ... except it doesn't seem to work for me! If I activate this in an agenda view where I know I archived a task that's now DONE, nothing shows up.\\n\\nMy archive files are located in a different directory than my main org files:\\n\\n (setq org-archive-location (concat archive-dir (format-time-string \\\"%Y\\\" (current-time)) \\\".org_archive::datetree/\\\"))\\n\\nThese YYYY.org_archive files are not part of my `org-agenda-files` either.\\n\\nDoes archives mode only work if the `:ARCHIVED:` headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How is org-agenda-archives-mode supposed to work?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwi4qu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559636288.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECame across this function/variable while improving my agenda views and thought it\\u0026#39;d be interesting ... except it doesn\\u0026#39;t seem to work for me! If I activate this in an agenda view where I know I archived a task that\\u0026#39;s now DONE, nothing shows up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy archive files are located in a different directory than my main org files:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-archive-location (concat archive-dir (format-time-string \\u0026quot;%Y\\u0026quot; (current-time)) \\u0026quot;.org_archive::datetree/\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThese YYYY.org_archive files are not part of my \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes archives mode only work if the \\u003Ccode\\u003E:ARCHIVED:\\u003C/code\\u003E headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwi4qu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559607488.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"how do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwcmiw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559607953.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehow do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwcmiw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559579153.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a time table like so with the following table format formula.\\n\\n |-------+----------+--------------|\\n | Start | Duration | Title |\\n |-------+----------+--------------|\\n | 9:00 | 00:15 | Introduction |\\n | 9:15 | 00:45 | Basics |\\n | 10:00 | 00:30 | Break |\\n | 10:30 | 01:30 | Intermediate |\\n | 12:00 | 01:00 | Lunch Break |\\n | 13:00 | 02:00 | Advanced |\\n | 15:00 | 00:30 | Break |\\n | 15:30 | 01:30 | Party |\\n | 17:00 | | End |\\n |-------+----------+--------------|\\n #+TBLFM: $2=@+1$1-$1;U\\n\\nMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\n\\n\\u003E user-error: Row descriptor +1 leads outside table\\n\\nIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\n\\nUpdate: `#+TBLFM: @\\u003C\\u003C$2..@\\u003E\\u003E$2=@+1$1-$1;U` seems to do the trick, thanks cipharius !\", \"author_fullname\": \"t2_5n9uk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9eiq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559564152.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559588764.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a time table like so with the following table format formula.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E|-------+----------+--------------|\\n| Start | Duration | Title |\\n|-------+----------+--------------|\\n| 9:00 | 00:15 | Introduction |\\n| 9:15 | 00:45 | Basics |\\n| 10:00 | 00:30 | Break |\\n| 10:30 | 01:30 | Intermediate |\\n| 12:00 | 01:00 | Lunch Break |\\n| 13:00 | 02:00 | Advanced |\\n| 15:00 | 00:30 | Break |\\n| 15:30 | 01:30 | Party |\\n| 17:00 | | End |\\n|-------+----------+--------------|\\n#+TBLFM: $2=@+1$1-$1;U\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Euser-error: Row descriptor +1 leads outside table\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate: \\u003Ccode\\u003E#+TBLFM: @\\u0026lt;\\u0026lt;$2..@\\u0026gt;\\u0026gt;$2=@+1$1-$1;U\\u003C/code\\u003E seems to do the trick, thanks cipharius !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9eiq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gausby\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559559964.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I found this post: [https://www.reddit.com/r/orgmode/comments/90sk11/how\\\\_do\\\\_you\\\\_cite\\\\_pages\\\\_for\\\\_quotes\\\\_with\\\\_orgref/](https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/), which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\", \"author_fullname\": \"t2_js9by\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you include page number in page number in org-ref with helm?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw916a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559585779.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI found this post: \\u003Ca href=\\\"https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\\"\\u003Ehttps://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\u003C/a\\u003E, which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw916a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kandidate\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559556979.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The function `org-tags-view` allows you to build up semi-complex searches for tags using regexp:\\n\\n```\\n(org-tags-view t \\\"+PROP1={value}\\u0026+PROP2={[1-2]}\\\")\\n```\\n\\nHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header's properties, do some computations on them, and returns `t` or `nil` depending upon whether the computation matches in the way I specify?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Searching for org-tags programmatically (without regexp)?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw317n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559542522.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe function \\u003Ccode\\u003Eorg-tags-view\\u003C/code\\u003E allows you to build up semi-complex searches for tags using regexp:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(org-tags-view t \\u0026quot;+PROP1={value}\\u0026amp;+PROP2={[1-2]}\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header\\u0026#39;s properties, do some computations on them, and returns \\u003Ccode\\u003Et\\u003C/code\\u003E or \\u003Ccode\\u003Enil\\u003C/code\\u003E depending upon whether the computation matches in the way I specify?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw317n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559513722.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"# Context\\n\\nI have a very strange org-mode workflow, and I don't know how better to ask this question without first explaining it. So bear with me :)\\n\\nEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\n\\n1. **Resources.** Resources are things like `Rcomputer`, `Rnone` (for pure \\\"thinking\\\" tasks), and combinatory resources like `RDevice` (defined as `Rphone` OR `Rcomputer`). They should ultimately be placed in a bracket notation such as `[Rnone]` or `[Rcomputer, Rphone]`.\\n2. **Energy.** Energy can be thought of as a real number between `E1` and `E10` (i.e., `E10` might making a hard emotional decision, while an `E1` task takes almost no effort). Energy should also ultimately be placed in brackets like `[E5]` (single value) or `[E2, E6]` (a range of energy).\\n3. **Tags.** Tags are high-level wrappers for the previous two categories. For example, `@Thinking` could convert to `E4` and `Rnone`, while `@Reading` might convert to `E3` and `RDevice`.\\n\\n# Problem\\n\\n**What I don't know how best to do:** programatically convert (3) into (1) and (2) in a sensible way. So, for example, I'd like to have a function which can convert\\n\\n * An org-mode thinking task. :@Thinking:\\n\\nto this:\\n\\n * An org-mode thinking task. :@Thinking:\\n :PROPERTIES:\\n :R: [Rnone]\\n :E: [E4]\\n :END:\\n\\nor more complicatedly, convert a task with two tags:\\n\\n * An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n :PROPERTIES:\\n :R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u003E [Rnone], while @Reading -\\u003E [RDevice] -\\u003E [Rcompter, Rphone]\\n :E: [E3, E4] ; @Thinking -\\u003E E3; @Reading -\\u003E E4\\n :END:\\n\\nHow best to encode all of this in elisp?\\n\\n# Attempt\\n\\nFirst we have high level resources:\\n\\n``` elisp\\n(setq high-level-resources (\\n (\\\"RDevice\\\" . '(\\\"Rcomputer\\\" \\\"Rphone\\\")) ;; Notice that \\\"high-level\\\" resources are capitalized while \\\"low-level\\\" resource are non-capitalized\\n ;; ..\\n )\\n```\\n\\nthen we have high-level tags (which define both a resource and an energy component):\\n\\n``` elisp\\n(setq tags ( \\n (\\\"@Reading\\\" . '((\\\"E\\\" . \\\"E3\\\") (\\\"R\\\" . \\\"RDevice\\\")))\\n (\\\"@Thinking\\\" . '((\\\"E\\\" . \\\"E2\\\") (\\\"R\\\" . \\\"Rnone\\\")))\\n ;; ..\\n )\\n```\\n\\nThen we need a function which converts tags to their resources/energy:\\n\\n``` elisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n```\\n\\nHow can we implement `convert-tags-to-resources-and-energy`?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Converting org-tags into properties (recursively)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvz12r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559520969.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EContext\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI have a very strange org-mode workflow, and I don\\u0026#39;t know how better to ask this question without first explaining it. So bear with me :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EResources.\\u003C/strong\\u003E Resources are things like \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E, \\u003Ccode\\u003ERnone\\u003C/code\\u003E (for pure \\u0026quot;thinking\\u0026quot; tasks), and combinatory resources like \\u003Ccode\\u003ERDevice\\u003C/code\\u003E (defined as \\u003Ccode\\u003ERphone\\u003C/code\\u003E OR \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E). They should ultimately be placed in a bracket notation such as \\u003Ccode\\u003E[Rnone]\\u003C/code\\u003E or \\u003Ccode\\u003E[Rcomputer, Rphone]\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EEnergy.\\u003C/strong\\u003E Energy can be thought of as a real number between \\u003Ccode\\u003EE1\\u003C/code\\u003E and \\u003Ccode\\u003EE10\\u003C/code\\u003E (i.e., \\u003Ccode\\u003EE10\\u003C/code\\u003E might making a hard emotional decision, while an \\u003Ccode\\u003EE1\\u003C/code\\u003E task takes almost no effort). Energy should also ultimately be placed in brackets like \\u003Ccode\\u003E[E5]\\u003C/code\\u003E (single value) or \\u003Ccode\\u003E[E2, E6]\\u003C/code\\u003E (a range of energy).\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003ETags.\\u003C/strong\\u003E Tags are high-level wrappers for the previous two categories. For example, \\u003Ccode\\u003E@Thinking\\u003C/code\\u003E could convert to \\u003Ccode\\u003EE4\\u003C/code\\u003E and \\u003Ccode\\u003ERnone\\u003C/code\\u003E, while \\u003Ccode\\u003E@Reading\\u003C/code\\u003E might convert to \\u003Ccode\\u003EE3\\u003C/code\\u003E and \\u003Ccode\\u003ERDevice\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Ch1\\u003EProblem\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat I don\\u0026#39;t know how best to do:\\u003C/strong\\u003E programatically convert (3) into (1) and (2) in a sensible way. So, for example, I\\u0026#39;d like to have a function which can convert\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eto this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n:PROPERTIES:\\n:R: [Rnone]\\n:E: [E4]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eor more complicatedly, convert a task with two tags:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n:PROPERTIES:\\n:R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u0026gt; [Rnone], while @Reading -\\u0026gt; [RDevice] -\\u0026gt; [Rcompter, Rphone]\\n:E: [E3, E4] ; @Thinking -\\u0026gt; E3; @Reading -\\u0026gt; E4\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHow best to encode all of this in elisp?\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EAttempt\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFirst we have high level resources:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq high-level-resources (\\n (\\u0026quot;RDevice\\u0026quot; . \\u0026#39;(\\u0026quot;Rcomputer\\u0026quot; \\u0026quot;Rphone\\u0026quot;)) ;; Notice that \\u0026quot;high-level\\u0026quot; resources are capitalized while \\u0026quot;low-level\\u0026quot; resource are non-capitalized\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethen we have high-level tags (which define both a resource and an energy component):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq tags ( \\n (\\u0026quot;@Reading\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E3\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;RDevice\\u0026quot;)))\\n (\\u0026quot;@Thinking\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E2\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;Rnone\\u0026quot;)))\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen we need a function which converts tags to their resources/energy:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can we implement \\u003Ccode\\u003Econvert-tags-to-resources-and-energy\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvz12r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559492169.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvsa9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Running a fresh Emacs session with `emacs -Q`, I evaluated the following:\\n\\n (setq org-agenda-files '(\\\"~/index.org\\\"))\\n (setq org-enforce-todo-dependencies t)\\n (setq org-agenda-dim-blocked-tasks 'invisible)\\n\\nwhere `~/index.org` simply contains:\\n\\n * Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO First subheading\\n ** TODO Second subheading\\n\\nWhen I call `(org-agenda nil \\\"t\\\")` to display the available TODOs, it correctly displays only \\\"First subheading.\\\" However, if I then export that buffer with `org-agenda-write`, then the resulting file contains both \\\"First subheading\\\" and \\\"Second subheading.\\\"\\n\\nWhat is going on here, and can it be fixed?\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvs6jo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559467712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERunning a fresh Emacs session with \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E, I evaluated the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files \\u0026#39;(\\u0026quot;~/index.org\\u0026quot;))\\n(setq org-enforce-todo-dependencies t)\\n(setq org-agenda-dim-blocked-tasks \\u0026#39;invisible)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E~/index.org\\u003C/code\\u003E simply contains:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO First subheading\\n** TODO Second subheading\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I call \\u003Ccode\\u003E(org-agenda nil \\u0026quot;t\\u0026quot;)\\u003C/code\\u003E to display the available TODOs, it correctly displays only \\u0026quot;First subheading.\\u0026quot; However, if I then export that buffer with \\u003Ccode\\u003Eorg-agenda-write\\u003C/code\\u003E, then the resulting file contains both \\u0026quot;First subheading\\u0026quot; and \\u0026quot;Second subheading.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is going on here, and can it be fixed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvs6jo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559438912.0, \"media\": null, \"is_video\": false}], \"created\": 1559468360.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvsa9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bvs6jo\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvsa9b/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559439560.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"In a list of `files` I have org tasks with the property `E` such that each `E` is marked with an interval range.\\n\\n * Some task1\\n :PROPERTIES:\\n :E: [E1, E3]\\n :END:\\n\\n * Some task2\\n :PROPERTIES:\\n :E: [E4, E7]\\n :END:\\n\\n...and so forth.\\n\\n**Question:** How can I `search` through `files` and obtain an agenda view of all tasks that intersect within a range `min` to `max`?\\n\\nSo for example `(search files 3 7)` should display tasks that have, i,e., `[E2, E4]`, `[E4, E5]` or `[E6, E8]` but *not* display tasks have `[E1, E2]` or `[E8, E9]`.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Matching org tasks against an interval of values\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvqyqw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559459994.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn a list of \\u003Ccode\\u003Efiles\\u003C/code\\u003E I have org tasks with the property \\u003Ccode\\u003EE\\u003C/code\\u003E such that each \\u003Ccode\\u003EE\\u003C/code\\u003E is marked with an interval range.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Some task1\\n:PROPERTIES:\\n:E: [E1, E3]\\n:END:\\n\\n* Some task2\\n:PROPERTIES:\\n:E: [E4, E7]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E...and so forth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion:\\u003C/strong\\u003E How can I \\u003Ccode\\u003Esearch\\u003C/code\\u003E through \\u003Ccode\\u003Efiles\\u003C/code\\u003E and obtain an agenda view of all tasks that intersect within a range \\u003Ccode\\u003Emin\\u003C/code\\u003E to \\u003Ccode\\u003Emax\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for example \\u003Ccode\\u003E(search files 3 7)\\u003C/code\\u003E should display tasks that have, i,e., \\u003Ccode\\u003E[E2, E4]\\u003C/code\\u003E, \\u003Ccode\\u003E[E4, E5]\\u003C/code\\u003E or \\u003Ccode\\u003E[E6, E8]\\u003C/code\\u003E but \\u003Cem\\u003Enot\\u003C/em\\u003E display tasks have \\u003Ccode\\u003E[E1, E2]\\u003C/code\\u003E or \\u003Ccode\\u003E[E8, E9]\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvqyqw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559431194.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-src-window-setup not behaving as expected with multi-term-dedicated opened? (more info in comments) (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvavuq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559354935.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvavuq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvavuq/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvai3u/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559326135.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv747t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559335751.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv747t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559306951.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi Everyone, \\n\\nI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\n\\n\\u0026#x200B;\\n\\n (cond ((eq system-type 'windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list 'exec-path \\\"c:/cygwin64/bin/\\\")\\n (setenv \\\"PATH\\\"\\n (concat\\n \\\"c:/cygwin64/bin/aspell.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/zip.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/unzip.exe\\\" \\\";\\\"\\n (getenv \\\"PATH\\\")\\n )\\n )\\n (setq ispell-program-name \\\"aspell.exe\\\")\\n )\\n )\\n\\nThis is my \\\\*Only Windows\\\\* Configuration Part as I cant include it to the Windows PATH Variable.\\n\\nNow (org-odt-export-to-odt) has the following problem. \\n\\n\\u0026#x200B;\\n\\n OpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\n sh: unzip: command not found\\n test of Configuration.odt FAILED\\n \\n zip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n )\\n\\nAny ideas?\\n\\nJust Message me if there is more Info needed\\n\\n\\u0026#x200B;\\n\\nThanks in advance\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Win10 Org Odt Export Unzip Problem\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv54oy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559321590.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi Everyone, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(cond ((eq system-type \\u0026#39;windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list \\u0026#39;exec-path \\u0026quot;c:/cygwin64/bin/\\u0026quot;)\\n (setenv \\u0026quot;PATH\\u0026quot;\\n (concat\\n \\u0026quot;c:/cygwin64/bin/aspell.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/zip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/unzip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n (getenv \\u0026quot;PATH\\u0026quot;)\\n )\\n )\\n (setq ispell-program-name \\u0026quot;aspell.exe\\u0026quot;)\\n )\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis is my *Only Windows* Configuration Part as I cant include it to the Windows PATH Variable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow (org-odt-export-to-odt) has the following problem. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EOpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\nsh: unzip: command not found\\ntest of Configuration.odt FAILED\\n\\nzip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust Message me if there is more Info needed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv54oy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559292790.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Dear Orgers...\\n\\nI'm exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\\"Contents\\\"). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\n\\nhttps://i.redd.it/71ml0g0ikf131.png\\n\\nHow can I prevent this from happening?\\n\\nI see here 2 possibilities:\\n\\n1. the ToC title exists, but doesn't appears in the ToC itself.\\n2. There is no ToC title!\\n\\nI'm obviously searching with the wrong keywords since I'm not finding a solution to this...\\n\\nIn every case, thanks a lot for your help. :)\", \"author_fullname\": \"t2_dyrlf6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Avoid ToC entry in ToC export to pdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"71ml0g0ikf131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1210, \"x\": 918, \"u\": \"https://i.redd.it/71ml0g0ikf131.png\"}, \"m\": \"image/png\", \"id\": \"71ml0g0ikf131\"}}, \"name\": \"t3_buzxzp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559286714.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDear Orgers...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\u0026quot;Contents\\u0026quot;). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/71ml0g0ikf131.png\\\"\\u003Ehttps://i.redd.it/71ml0g0ikf131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I prevent this from happening?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI see here 2 possibilities:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Ethe ToC title exists, but doesn\\u0026#39;t appears in the ToC itself.\\u003C/li\\u003E\\n\\u003Cli\\u003EThere is no ToC title!\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m obviously searching with the wrong keywords since I\\u0026#39;m not finding a solution to this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn every case, thanks a lot for your help. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buzxzp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"edumerco\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559257914.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a `calendar.org` buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\n\\nIs this possible? Where can I start looking at this?\\n\\nThanks!\", \"author_fullname\": \"t2_3tdxdj82\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly agenda view: not show past items from certain buffers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burp9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559242335.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a \\u003Ccode\\u003Ecalendar.org\\u003C/code\\u003E buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this possible? Where can I start looking at this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burp9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mirenbe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559213535.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl9k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl5q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 77, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 77, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559241478.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl5q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burl5q/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1559212678.0, \"media\": null, \"is_video\": false}], \"created\": 1559241501.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl9k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_burl5q\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burl9k/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559212701.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Any way to hide these headers/footers? It's a bit distracting with lots of small code examples.\\n\\n #+begin_src haskell\\n ...\\n #+end_src\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I hide source block header and footer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buopeh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559218136.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny way to hide these headers/footers? It\\u0026#39;s a bit distracting with lots of small code examples.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+begin_src haskell\\n...\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buopeh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559189336.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\n\\nI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\n\\nI'm pretty sure I'm overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\", \"author_fullname\": \"t2_ycu34\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Handling Github Badges in Org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buhsue\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559180889.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m pretty sure I\\u0026#39;m overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buhsue\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hardrived_\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559152089.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I add TODO to list items instead of just headers?\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Add todo to list item?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budm5j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159049.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I add TODO to list items instead of just headers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budm5j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559130249.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello!\\n\\nI'd like to use the ORDERED property but it doesn't seem to be working in the way I'd expect, so I wanted to check that my expectation is correct.\\n\\n * TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO Check contents of disks\\n ** TODO Securely wipe disks\\n ** TODO Take disks to recycling center\\n\\nWith the ORDERED property set, I figured that I wouldn't be able to mark \\\"Securely wipe disks\\\" as DONE before I had completed \\\"Check contents of disks\\\". However I can mark these items as DONE in any order I like.\\n\\nDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Possible confusion over ORDERED property\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu1tby\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559088369.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to use the ORDERED property but it doesn\\u0026#39;t seem to be working in the way I\\u0026#39;d expect, so I wanted to check that my expectation is correct.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO Check contents of disks\\n** TODO Securely wipe disks\\n** TODO Take disks to recycling center\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith the ORDERED property set, I figured that I wouldn\\u0026#39;t be able to mark \\u0026quot;Securely wipe disks\\u0026quot; as DONE before I had completed \\u0026quot;Check contents of disks\\u0026quot;. However I can mark these items as DONE in any order I like.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu1tby\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559059569.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I was wondering how one could make one entry inherit the DEADLINE of the parent. I know about `org-use-property-inheritance` but it doesn't seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\", \"author_fullname\": \"t2_q52rf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inherit DEADLINE from parent\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btzy6m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559078444.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering how one could make one entry inherit the DEADLINE of the parent. I know about \\u003Ccode\\u003Eorg-use-property-inheritance\\u003C/code\\u003E but it doesn\\u0026#39;t seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btzy6m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackjackk0\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1559049644.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi y'all, this is probably a simple question for some of you, but I can't quite figure it out on my own.\\n\\nI'm trying to edit my `org-agenda-prefix-format` for an agenda view, such that:\\n\\n* If the entry has a scheduled or deadline timestamp, show the standard \\\"Deadline:\\\" / \\\"In N d.:\\\" / \\\"Scheduled:\\\" / \\\"Sched. 10 d.:\\\" strings.\\n* Otherwise, show the category\\n\\n**Example**: Agenda view\\n\\n Sunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\nIs there a way to display a conditional prefix like this?\\n\\nThe code I was tinkering with before posting looked like:\\n\\n (defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\\"sched (%s), dead (%s)\\\" is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\\" %-12s%-12t \\\"\\n \\\" %-12:c%-12t \\\")))\\n\\n ; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n (org-agenda-custom-prefix (test/custom-prefix))\\n\\nNot exactly the same as above, but it was a WIP, and the problem was that `is-scheduled` and `is-deadlined` were always both `nil` for some reason, despite the tasks having a scheduled / deadline timestamp.\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btovhk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559007583.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi y\\u0026#39;all, this is probably a simple question for some of you, but I can\\u0026#39;t quite figure it out on my own.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to edit my \\u003Ccode\\u003Eorg-agenda-prefix-format\\u003C/code\\u003E for an agenda view, such that:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf the entry has a scheduled or deadline timestamp, show the standard \\u0026quot;Deadline:\\u0026quot; / \\u0026quot;In N d.:\\u0026quot; / \\u0026quot;Scheduled:\\u0026quot; / \\u0026quot;Sched. 10 d.:\\u0026quot; strings.\\u003C/li\\u003E\\n\\u003Cli\\u003EOtherwise, show the category\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EExample\\u003C/strong\\u003E: Agenda view\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ESunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs there a way to display a conditional prefix like this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code I was tinkering with before posting looked like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\u0026quot;sched (%s), dead (%s)\\u0026quot; is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\u0026quot; %-12s%-12t \\u0026quot;\\n \\u0026quot; %-12:c%-12t \\u0026quot;)))\\n\\n; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n(org-agenda-custom-prefix (test/custom-prefix))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENot exactly the same as above, but it was a WIP, and the problem was that \\u003Ccode\\u003Eis-scheduled\\u003C/code\\u003E and \\u003Ccode\\u003Eis-deadlined\\u003C/code\\u003E were always both \\u003Ccode\\u003Enil\\u003C/code\\u003E for some reason, despite the tasks having a scheduled / deadline timestamp.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btovhk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558978783.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Not exactly sure how to phrase this question, so I'll do my best to explain what I'd like to do and why...\\n\\nI've been writing quite a few projects using literate programming via org-mode. Lately, I've been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\n\\nI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\n\\nThanks!\", \"author_fullname\": \"t2_4hzm8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using org-agenda on individual files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btdd9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558934196.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot exactly sure how to phrase this question, so I\\u0026#39;ll do my best to explain what I\\u0026#39;d like to do and why...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been writing quite a few projects using literate programming via org-mode. Lately, I\\u0026#39;ve been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btdd9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ralphbluecoat\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558905396.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I insert a string into an org file and change its appearance by using `(put-text-property start end 'font-lock-face 'my-face my-string)`, the face assignment doesn't persist after the file is saved and re-opened.\\n\\n\\u0026#x200B;\\n\\nIt also appears that I cannot use `(put-text-property start end 'face 'my-face)` in an org buffer (but it does work when the file is in fundamental mode).\\n\\n\\u0026#x200B;\\n\\nHow can I assign a persistent face to a section of an org buffer?\\n\\n\\u0026#x200B;\\n\\n(Edit: posted before I finished writing, typos.)\", \"author_fullname\": \"t2_3gjjtpnq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Persistent font changes in an org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btasp7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558892947.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558921535.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I insert a string into an org file and change its appearance by using \\u003Ccode\\u003E(put-text-property start end \\u0026#39;font-lock-face \\u0026#39;my-face my-string)\\u003C/code\\u003E, the face assignment doesn\\u0026#39;t persist after the file is saved and re-opened.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt also appears that I cannot use \\u003Ccode\\u003E(put-text-property start end \\u0026#39;face \\u0026#39;my-face)\\u003C/code\\u003E in an org buffer (but it does work when the file is in fundamental mode).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I assign a persistent face to a section of an org buffer?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Edit: posted before I finished writing, typos.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btasp7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itistheblurstoftimes\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558892735.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9f5z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'd like to better show \\\"Today\\\" in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\n\\nFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\n\\nThanks!\\n\\nMy current habit-related settings are:\\n\\n (setq org-habit-show-habits-only-for-today nil)\\n (setq org-habit-graph-column 60)\\n (setq org-habit-following-days 3)\\n\\nAlthough I don't think that they change anything to do with this question.\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9atw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558913913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d like to better show \\u0026quot;Today\\u0026quot; in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current habit-related settings are:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-habit-show-habits-only-for-today nil)\\n(setq org-habit-graph-column 60)\\n(setq org-habit-following-days 3)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAlthough I don\\u0026#39;t think that they change anything to do with this question.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9atw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1558885113.0, \"media\": null, \"is_video\": false}], \"created\": 1558914521.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9f5z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bt9atw\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558885721.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Many times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\", \"author_fullname\": \"t2_38v6e72q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Question] Paste with source format\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsnq2u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558768415.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMany times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsnq2u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GracefulToucan\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558739615.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 24, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsgj6t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558730956.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsgj6t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558702156.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"doing kanban in org mode? (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs8w8p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558677597.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs8w8p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs8w8p/doing_kanban_in_org_mode_xpost_remacs/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bs8rpm/doing_kanban_in_org_mode/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558648797.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\n\\nDoes anyone of you have the same set up with a working configuration?\", \"author_fullname\": \"t2_3tjqi9un\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Has anyone set up beorg with nextcloud sucessfully?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs1jef\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558638131.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone of you have the same set up with a working configuration?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs1jef\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CuriousQuasar\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558609331.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_4utg0yv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using the Eisenhower Matrix in Emacs Org-Mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bry1c2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 18, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 18, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558609281.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"tompurl.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bry1c2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Okesa\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.tompurl.com/2015-12-29-emacs-eisenhower-matrix.html\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558580481.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The following renders with `org-toggle-latex-fragment`:\\n\\n$$\\n2+2 = 4\\n$$\\n\\nbut the following doesn't\\n\\n#+begin_latex\\n2+2 = 4\\n#+end_latex\\n\\nHow do I get the bottom to render as well?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Rendering inside \\\"#+begin_latex ... #+end_latex\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brs51i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558577715.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe following renders with \\u003Ccode\\u003Eorg-toggle-latex-fragment\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E$$\\n2+2 = 4\\n$$\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut the following doesn\\u0026#39;t\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+begin_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E2+2 = 4\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+end_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EHow do I get the bottom to render as well?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brs51i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558548915.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"When I export to pdf from org, the font is a bitmap font.\\n\\nHow can I change the export such that vector fonts will be used?\\n\\nThanks!\", \"author_fullname\": \"t2_q43ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org export to pdf: vector font instead of bitmap font\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brkczh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558528248.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I export to pdf from org, the font is a bitmap font.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I change the export such that vector fonts will be used?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brkczh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HumanBrainMapper\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558499448.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I had posted this some months ago here: https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\n\\nI've updated and added some new features to it!\\n\\nIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\n\\nIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\n\\nThe new features are: It auto generates indexes, has support for tags, header, and footer! \\n\\nRight now the main missing feature is generating the RSS.\\n\\nHere is a working example: https://ivanaf.com/org-export-head/index.html, and the source is here: https://github.com/itf/org-export-head\", \"author_fullname\": \"t2_21clngjz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Single file Blog in org mode - update\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br5iur\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 18, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 18, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558438826.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI had posted this some months ago here: \\u003Ca href=\\\"https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\\"\\u003Ehttps://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve updated and added some new features to it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe new features are: It auto generates indexes, has support for tags, header, and footer! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now the main missing feature is generating the RSS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is a working example: \\u003Ca href=\\\"https://ivanaf.com/org-export-head/index.html\\\"\\u003Ehttps://ivanaf.com/org-export-head/index.html\\u003C/a\\u003E, and the source is here: \\u003Ca href=\\\"https://github.com/itf/org-export-head\\\"\\u003Ehttps://github.com/itf/org-export-head\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br5iur\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itadeufa\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558410026.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm using spacemacs and am trying to figure out how to use the following package: [here](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el).\\n\\nIt's supposed to add mathematica support to org-babel snippets.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I use ob-mathematica.el?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br2g1m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558420778.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using spacemacs and am trying to figure out how to use the following package: \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s supposed to add mathematica support to org-babel snippets.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br2g1m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558391978.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\n\\nWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\n\\nThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\n\\n2019-05-12 \\nTask A : 3h 20m \\nTask B : 2h 5m\\n\\n2019-05-13 \\nTask A : 2h 10m \\nTask B : 1h 20m\\n\\nI've read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\", \"author_fullname\": \"t2_37uew703\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"View clock table entries by date?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bqu8sp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558379941.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-12\\u003Cbr/\\u003E\\nTask A : 3h 20m\\u003Cbr/\\u003E\\nTask B : 2h 5m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-13\\u003Cbr/\\u003E\\nTask A : 2h 10m\\u003Cbr/\\u003E\\nTask B : 1h 20m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqu8sp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OverthrowDissent\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558351141.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Have some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\n\\nbeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\n\\n\\u0026#x200B;\\n\\nBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\n\\n\\u0026#x200B;\\n\\n(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\n\\nand then format all the returns, into a working log entry I can put notes into along with some screenshots\\n\\n\\u0026#x200B;\\n\\nAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\n\\nAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\n\\n\\u0026#x200B;\\n\\nThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\n\\n\\u0026#x200B;\\n\\nadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\n\\n\\u0026#x200B;\\n\\nYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\", \"author_fullname\": \"t2_nb9r4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode / LISP Mentor or Tutor?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq9kxd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558246612.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand then format all the returns, into a working log entry I can put notes into along with some screenshots\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq9kxd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"psychocoonass\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558217812.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I'm on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\n\\nI have a lot of files in Deft that I would rather access through org-capture.\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to make the capture template selection list window (\\\"Org Select\\\") scrollable so that when you have a large number of capture templates (e.g.\\u003E 26), the display is not truncated?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq8ohl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558241466.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I\\u0026#39;m on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a lot of files in Deft that I would rather access through org-capture.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq8ohl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558212666.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 17, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpquo9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558126152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpquo9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558097352.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I see two packages: \\n\\n* https://github.com/mattduck/org-toggl-py\\n* https://github.com/mmagnus/emacs-toggl\\n\\nBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having `toggl` installed and connect to their service on task start.\\n\\nI want to log my time and send whenever I'm ready _in emacs_ using the name of the item associated with my clock entries with the ability to override/change this via properties. \\n\\norg-toggl-py has some property support, but requires exporting with external command. \\n\\nReally maybe external command is okay but wanted to see what others are using.\\n\\n\\n**Update 1**: Found https://github.com/mbork/org-toggl. Investigating...\\n\\n**Update 2**: Timer on org-toggle cannot be stopped see PR [#6](https://github.com/mbork/org-toggl/pull/6) and [#3](https://github.com/mbork/org-toggl/pull/3) \\u2013which are from 2018. Also **does not** seem to integrate with Org mode as advertised.\\n\\n**Update 3**: Tried [Fuco1's fork](https://github.com/Fuco1/org-toggl) which fixes [#6](https://github.com/mbork/org-toggl/pull/6) but Org mode integration still is not working. Went to org-toggle-py [but couldn't get it to work](https://github.com/mattduck/org-toggl-py/issues/1)\\n\\n\\nSeems like best approach is to call `toggl-start-time-entry`/`toggl-stop-time-entry ` around `org-clock-in`/`org-clock-out` and then write some export function using these. \\n\\nNot sure if it's possible to check if an export is new or requires updating. Will have to investigate Toggl's API.\", \"author_fullname\": \"t2_h8sck\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone Use Org mode With Toggl\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpjh7e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558056916.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558076490.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see two packages: \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py\\\"\\u003Ehttps://github.com/mattduck/org-toggl-py\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mmagnus/emacs-toggl\\\"\\u003Ehttps://github.com/mmagnus/emacs-toggl\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having \\u003Ccode\\u003Etoggl\\u003C/code\\u003E installed and connect to their service on task start.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to log my time and send whenever I\\u0026#39;m ready \\u003Cem\\u003Ein emacs\\u003C/em\\u003E using the name of the item associated with my clock entries with the ability to override/change this via properties. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorg-toggl-py has some property support, but requires exporting with external command. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReally maybe external command is okay but wanted to see what others are using.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 1\\u003C/strong\\u003E: Found \\u003Ca href=\\\"https://github.com/mbork/org-toggl\\\"\\u003Ehttps://github.com/mbork/org-toggl\\u003C/a\\u003E. Investigating...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 2\\u003C/strong\\u003E: Timer on org-toggle cannot be stopped see PR \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E and \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/3\\\"\\u003E#3\\u003C/a\\u003E \\u2013which are from 2018. Also \\u003Cstrong\\u003Edoes not\\u003C/strong\\u003E seem to integrate with Org mode as advertised.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 3\\u003C/strong\\u003E: Tried \\u003Ca href=\\\"https://github.com/Fuco1/org-toggl\\\"\\u003EFuco1\\u0026#39;s fork\\u003C/a\\u003E which fixes \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E but Org mode integration still is not working. Went to org-toggle-py \\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py/issues/1\\\"\\u003Ebut couldn\\u0026#39;t get it to work\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESeems like best approach is to call \\u003Ccode\\u003Etoggl-start-time-entry\\u003C/code\\u003E/\\u003Ccode\\u003Etoggl-stop-time-entry\\u003C/code\\u003E around \\u003Ccode\\u003Eorg-clock-in\\u003C/code\\u003E/\\u003Ccode\\u003Eorg-clock-out\\u003C/code\\u003E and then write some export function using these. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot sure if it\\u0026#39;s possible to check if an export is new or requires updating. Will have to investigate Toggl\\u0026#39;s API.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpjh7e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sshaw_\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1558047690.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to find an note taking website that I can used to stay organized on computers that don't have emacs.\\n\\nAll of the online note taking apps I have found like SimpleNote or \\\"Tutrl\\\" can only understand markdown.\\n\\nIs there any note taking web service that can understand and edit org files like markdown.\\n\\n\\n\\nI have my own server so I can host my own app if necessary.\", \"author_fullname\": \"t2_gm7cp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Looking for a Evernote-like note taking web app that can understand org-files\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bp8uw7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558013986.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to find an note taking website that I can used to stay organized on computers that don\\u0026#39;t have emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll of the online note taking apps I have found like SimpleNote or \\u0026quot;Tutrl\\u0026quot; can only understand markdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any note taking web service that can understand and edit org files like markdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have my own server so I can host my own app if necessary.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bp8uw7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CeamoreCash\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bp8uw7/looking_for_a_evernotelike_note_taking_web_app/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bp8uw7/looking_for_a_evernotelike_note_taking_web_app/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557985186.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have made a function which \\\"intelligently\\\" inserts a new heading, TODO, list item, or checkbox based on the the type of the current entry at the point. I find it quite useful, so I thought would share it here.\\n\\nWhen inserting new headings/items into an org subtree, I don't like having to remember which command to use based on whether the current entry is a heading (`C-RET`), a TODO (`C-S-RET`), a list item (`M-x org-insert-item`), or a checkbox (`C-u M-x org-insert-item`). I also don't like that the behavior changes depending on whether the point is at the beginning of the line. \\n\\nBased on these requirements, I made the function `sbr-org-insert-dwim` listed below. It is highly opinionated based on my use preferences:\\n\\n* Lines are never split (for the duration of the command, `org-M-RET-may-split-line` is set to nil). If I really need to split the line, I can either do `C-k sbr-org-insert-dwim C-y` or use the built in `M-RET` or `M-S-RET`\\n* The behavior of `sbr-org-insert-dwim` is the same regardless of where the point is on the current line, on the asterisks/dash, at the beginning/middle/end of the entry, or even if the point is after ellipses (i.e. the subtree of the current entry is hidden). The builtin commands `org-insert-heading` and `org-insert-item` have unspecified behavior when used after ellipses.\\n* By default, the new entry in inserted below the current subtree/item. With the prefix `C-u`, the entry is inserted before the current entry and the end of previous subtree (similar to `C-u C-u org-insert-heading`). The inserted entry never breaks up a subtree, which in my opinion, would break the abstraction of the subtree hierarchy. In order to break up and edit subtree structure, I use the `M-\\u003Carrow\\u003E` commands.\\n* If the point is above the first heading, simply insert a level-1 heading. When used above the first heading, `C-RET` (`org-insert-heading-respect-content`) confusingly converts:\\n\\n\\u0026#8203;\\n\\n \\u003E \\u003C\\n * First Heading \\n Something Something\\n Something Something\\n\\ninto:\\n\\n \\n * \\u003E*\\u003C First Heading \\n Something Something\\n Something Something\\n\\nwhere `\\u003E \\u003C` is the point.\\n\\nSince `S-RET` is bound to `org-table-copy-down`, which only works in a table, I made a function `sbr-org-shift-return` that enables me to use `sbr-org-insert-dwim` outside of tables, while preserving the default behavior.\\n\\nThe code is listed below. It's a little more complicated then I would like in order for it to handle all the edge cases (e.g., point after ellipses or before the first heading), and also because the org insert functions don't behave uniformly. For example `org-insert-todo-heading` inserts a checkbox if the point is on a list item, but `org-insert-heading` doesn't similarly insert a list item when the point is on a list item (even though its documentation claims that it does). Any suggestions for streamlining this code are welcome!\\n\\n (defun sbr-org-insert-dwim (\\u0026optional arg)\\n \\\"Insert another entry of the same type as the current\\n entry. For example, if the point is on a list item, then add\\n another list item of the same type, and if the point is on a\\n checkbox list item, then add an empty checkbox item. If instead\\n the point is in a heading, then add another heading. If the point \\n is in a TODO heading, then add another TODO heading (set to the \\n TODO state). \\n \\n By default, the new entry is inserted below the current\\n subtree/item. With a 'C-u' prefix, insert the entry above the\\n current heading/item instead.\\\"\\n (interactive \\\"P\\\")\\n (when (eq major-mode 'org-mode)\\n (let ((org-special-ctrl-a/e t)\\n (below? (unless (equal arg '(4)) '(4))))\\n ;; hack to ensure that the point is not after ellipses because\\n ;; that would mess up org-at-item-p etc.\\n (org-beginning-of-line)\\n (cond ((org-at-item-p) ;; at list item or checkbox\\n (let ((org-M-RET-may-split-line nil)\\n (org-enable-sort-checkbox nil))\\n ;; hack to make item be inserted after the current one\\n ;; doesn't work if we are on an empty item line\\n (when below?\\n (org-end-of-line)) \\n (org-insert-item (org-at-item-checkbox-p))))\\n ((org-before-first-heading-p) ;; above first heading\\n (org-insert-heading))\\n (t ;; in some kind of heading\\n (org-back-to-heading)\\n (if (org-get-todo-state)\\n ;; at TODO heading\\n (org-insert-todo-heading t below?)\\n ;; at non-TODO heading \\n (org-insert-heading below?)))))))\\n \\n (defun sbr-org-shift-return (\\u0026optional arg)\\n \\\"If point is at a table, copy the table cell downward (i.e.,\\n the usual effect of typing S-RET). Otherwise, insert the same\\n kind of heading or item as the current entry containing the\\n point. \\\"\\n (interactive \\\"P\\\")\\n (if (org-at-table-p)\\n (org-table-copy-down (prefix-numeric-value arg))\\n (sbr-org-insert-dwim arg)))\\n \\n (bind-keys :map org-mode-map (\\\"\\u003CS-return\\u003E\\\" . sbr-org-insert-dwim))\", \"author_fullname\": \"t2_7nfrv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"function for DWIM insertion of new entries\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_boyu8r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557960504.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have made a function which \\u0026quot;intelligently\\u0026quot; inserts a new heading, TODO, list item, or checkbox based on the the type of the current entry at the point. I find it quite useful, so I thought would share it here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen inserting new headings/items into an org subtree, I don\\u0026#39;t like having to remember which command to use based on whether the current entry is a heading (\\u003Ccode\\u003EC-RET\\u003C/code\\u003E), a TODO (\\u003Ccode\\u003EC-S-RET\\u003C/code\\u003E), a list item (\\u003Ccode\\u003EM-x org-insert-item\\u003C/code\\u003E), or a checkbox (\\u003Ccode\\u003EC-u M-x org-insert-item\\u003C/code\\u003E). I also don\\u0026#39;t like that the behavior changes depending on whether the point is at the beginning of the line. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBased on these requirements, I made the function \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E listed below. It is highly opinionated based on my use preferences:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ELines are never split (for the duration of the command, \\u003Ccode\\u003Eorg-M-RET-may-split-line\\u003C/code\\u003E is set to nil). If I really need to split the line, I can either do \\u003Ccode\\u003EC-k sbr-org-insert-dwim C-y\\u003C/code\\u003E or use the built in \\u003Ccode\\u003EM-RET\\u003C/code\\u003E or \\u003Ccode\\u003EM-S-RET\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EThe behavior of \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E is the same regardless of where the point is on the current line, on the asterisks/dash, at the beginning/middle/end of the entry, or even if the point is after ellipses (i.e. the subtree of the current entry is hidden). The builtin commands \\u003Ccode\\u003Eorg-insert-heading\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-insert-item\\u003C/code\\u003E have unspecified behavior when used after ellipses.\\u003C/li\\u003E\\n\\u003Cli\\u003EBy default, the new entry in inserted below the current subtree/item. With the prefix \\u003Ccode\\u003EC-u\\u003C/code\\u003E, the entry is inserted before the current entry and the end of previous subtree (similar to \\u003Ccode\\u003EC-u C-u org-insert-heading\\u003C/code\\u003E). The inserted entry never breaks up a subtree, which in my opinion, would break the abstraction of the subtree hierarchy. In order to break up and edit subtree structure, I use the \\u003Ccode\\u003EM-\\u0026lt;arrow\\u0026gt;\\u003C/code\\u003E commands.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf the point is above the first heading, simply insert a level-1 heading. When used above the first heading, \\u003Ccode\\u003EC-RET\\u003C/code\\u003E (\\u003Ccode\\u003Eorg-insert-heading-respect-content\\u003C/code\\u003E) confusingly converts:\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#8203;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E \\u0026gt; \\u0026lt;\\n* First Heading \\nSomething Something\\nSomething Something\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Einto:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* \\u0026gt;*\\u0026lt; First Heading \\nSomething Something\\nSomething Something\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E\\u0026gt; \\u0026lt;\\u003C/code\\u003E is the point.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince \\u003Ccode\\u003ES-RET\\u003C/code\\u003E is bound to \\u003Ccode\\u003Eorg-table-copy-down\\u003C/code\\u003E, which only works in a table, I made a function \\u003Ccode\\u003Esbr-org-shift-return\\u003C/code\\u003E that enables me to use \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E outside of tables, while preserving the default behavior.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code is listed below. It\\u0026#39;s a little more complicated then I would like in order for it to handle all the edge cases (e.g., point after ellipses or before the first heading), and also because the org insert functions don\\u0026#39;t behave uniformly. For example \\u003Ccode\\u003Eorg-insert-todo-heading\\u003C/code\\u003E inserts a checkbox if the point is on a list item, but \\u003Ccode\\u003Eorg-insert-heading\\u003C/code\\u003E doesn\\u0026#39;t similarly insert a list item when the point is on a list item (even though its documentation claims that it does). Any suggestions for streamlining this code are welcome!\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun sbr-org-insert-dwim (\\u0026amp;optional arg)\\n \\u0026quot;Insert another entry of the same type as the current\\nentry. For example, if the point is on a list item, then add\\nanother list item of the same type, and if the point is on a\\ncheckbox list item, then add an empty checkbox item. If instead\\nthe point is in a heading, then add another heading. If the point \\nis in a TODO heading, then add another TODO heading (set to the \\nTODO state). \\n\\nBy default, the new entry is inserted below the current\\nsubtree/item. With a \\u0026#39;C-u\\u0026#39; prefix, insert the entry above the\\ncurrent heading/item instead.\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (when (eq major-mode \\u0026#39;org-mode)\\n (let ((org-special-ctrl-a/e t)\\n (below? (unless (equal arg \\u0026#39;(4)) \\u0026#39;(4))))\\n ;; hack to ensure that the point is not after ellipses because\\n ;; that would mess up org-at-item-p etc.\\n (org-beginning-of-line)\\n (cond ((org-at-item-p) ;; at list item or checkbox\\n (let ((org-M-RET-may-split-line nil)\\n (org-enable-sort-checkbox nil))\\n ;; hack to make item be inserted after the current one\\n ;; doesn\\u0026#39;t work if we are on an empty item line\\n (when below?\\n (org-end-of-line)) \\n (org-insert-item (org-at-item-checkbox-p))))\\n ((org-before-first-heading-p) ;; above first heading\\n (org-insert-heading))\\n (t ;; in some kind of heading\\n (org-back-to-heading)\\n (if (org-get-todo-state)\\n ;; at TODO heading\\n (org-insert-todo-heading t below?)\\n ;; at non-TODO heading \\n (org-insert-heading below?)))))))\\n\\n(defun sbr-org-shift-return (\\u0026amp;optional arg)\\n \\u0026quot;If point is at a table, copy the table cell downward (i.e.,\\nthe usual effect of typing S-RET). Otherwise, insert the same\\nkind of heading or item as the current entry containing the\\npoint. \\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (if (org-at-table-p)\\n (org-table-copy-down (prefix-numeric-value arg))\\n (sbr-org-insert-dwim arg)))\\n\\n(bind-keys :map org-mode-map (\\u0026quot;\\u0026lt;S-return\\u0026gt;\\u0026quot; . sbr-org-insert-dwim))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"boyu8r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cottasteel\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557931704.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello! I have a question regarding org-agenda. I just updated org-mode 9.2.3 on Emacs 26.1 and I have a problem with the location of the org-agenda tags. First (before the upgrade) I had them on the right, now automatically they always appear on a new line (in all agenda views). Do you know how I can go back to having tags on the right?\", \"author_fullname\": \"t2_3rz1w0lq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-agenda and tags position\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_boymdt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557959366.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello! I have a question regarding org-agenda. I just updated org-mode 9.2.3 on Emacs 26.1 and I have a problem with the location of the org-agenda tags. First (before the upgrade) I had them on the right, now automatically they always appear on a new line (in all agenda views). Do you know how I can go back to having tags on the right?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"boymdt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cyberl3o\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557930566.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 03 Hyperlinks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5yvk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 27, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 27, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 03 Hyperlinks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5wkl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 37, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 37, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557794720.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5wkl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bo5wkl/orgmode_hidden_gems_03_hyperlinks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt3/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1557765920.0, \"media\": null, \"is_video\": false}], \"created\": 1557795022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5yvk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bo5wkl\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo5yvk/orgmode_hidden_gems_03_hyperlinks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt3/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557766222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a main directory of all my org-files. I want to be able to export any part of an org-file to markdown in a a separate `/exports` folder (rather than cluttering up my main directory). \\n\\nI know I can constantly set my export file name property, but that becomes cumbersome. I'd like to be able to just set this up once and be done with it. \\n\\nMost of the guides out there on publishing are about setting up a full blogging system with jeckyll or something similar and it's giving me way more information than I need. \\n\\nI think the main thing I need to do is set up the projects alist? What would that look like for a simple scenario like this? Thanks for any help.\", \"author_fullname\": \"t2_130p93\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help Setting Up a Simple Export Folder\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5ly1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557793341.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a main directory of all my org-files. I want to be able to export any part of an org-file to markdown in a a separate \\u003Ccode\\u003E/exports\\u003C/code\\u003E folder (rather than cluttering up my main directory). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know I can constantly set my export file name property, but that becomes cumbersome. I\\u0026#39;d like to be able to just set this up once and be done with it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMost of the guides out there on publishing are about setting up a full blogging system with jeckyll or something similar and it\\u0026#39;s giving me way more information than I need. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think the main thing I need to do is set up the projects alist? What would that look like for a simple scenario like this? Thanks for any help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5ly1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ManiacMcCree\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo5ly1/help_setting_up_a_simple_export_folder/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bo5ly1/help_setting_up_a_simple_export_folder/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557764541.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI would like to link to my emails from Orgmode, but it seems like I'm missing something.\\n\\nI followed the tutorial here:\\n\\n[https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts](https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts)\\n\\n\\u0026#x200B;\\n\\nAnd added this to my .emacs file:\\n\\n\\u0026#x200B;\\n\\n (require 'org)\\n \\n (org-add-link-type \\\"thunderlink\\\" 'org-thunderlink-open)\\n (defun org-thunderlink-open (path)\\n \\\"Opens a specified email in Thunderbird with the help of the add-on\\n ThunderLink.\\\"\\n (start-process \\\"myname\\\" nil \\\"thunderbird\\\" \\\"-thunderlink\\\" (concat\\n \\\"thunderlink:\\\" path)))\\n \\n (provide 'org-thunderlink)\\n\\n\\u0026#x200B;\\n\\nBut it does not seems to work. When I click on a link I have an error message: \\\"No match-create this as a new heading\\\"\\n\\n\\u0026#x200B;\\n\\nDoes anyone managed to get it to work?\\n\\nMany thanks in advance\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Link to email in Thunderbird from orgmode with Thunderlink extension\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo13sc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1557739179.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557767182.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to link to my emails from Orgmode, but it seems like I\\u0026#39;m missing something.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI followed the tutorial here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts\\\"\\u003Ehttps://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd added this to my .emacs file:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;org)\\n\\n(org-add-link-type \\u0026quot;thunderlink\\u0026quot; \\u0026#39;org-thunderlink-open)\\n(defun org-thunderlink-open (path)\\n\\u0026quot;Opens a specified email in Thunderbird with the help of the add-on\\nThunderLink.\\u0026quot;\\n(start-process \\u0026quot;myname\\u0026quot; nil \\u0026quot;thunderbird\\u0026quot; \\u0026quot;-thunderlink\\u0026quot; (concat\\n\\u0026quot;thunderlink:\\u0026quot; path)))\\n\\n(provide \\u0026#39;org-thunderlink)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut it does not seems to work. When I click on a link I have an error message: \\u0026quot;No match-create this as a new heading\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone managed to get it to work?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo13sc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo13sc/link_to_email_in_thunderbird_from_orgmode_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bo13sc/link_to_email_in_thunderbird_from_orgmode_with/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557738382.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I create an elisp function that refiles the current header at point (and all of its children) to the ID `id`, but such that instead of just placing the header directly under `id`, it places it under its subheading of name `subheading` (whether or not `subheading` exists yet)?\\n\\nSo for example if I have\\n\\n```org-mode\\n* A heading\\n```\\n\\nhow can I refile this to\\n\\n```org-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n```\\n\\n\\nso that the end result will look like\\n\\n```org-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n** subheading\\n*** A heading\\n```\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Refiling header to a new sub-header?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bni3ll\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557643814.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I create an elisp function that refiles the current header at point (and all of its children) to the ID \\u003Ccode\\u003Eid\\u003C/code\\u003E, but such that instead of just placing the header directly under \\u003Ccode\\u003Eid\\u003C/code\\u003E, it places it under its subheading of name \\u003Ccode\\u003Esubheading\\u003C/code\\u003E (whether or not \\u003Ccode\\u003Esubheading\\u003C/code\\u003E exists yet)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for example if I have\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* A heading\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ehow can I refile this to\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eso that the end result will look like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n** subheading\\n*** A heading\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bni3ll\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bni3ll/refiling_header_to_a_new_subheader/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bni3ll/refiling_header_to_a_new_subheader/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557615014.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"**Question:** How can I retrieve, over a set of files `S` (in particular: over my agenda files + their archive files) the total time clocked (as the return value of an elisp function; not as a clock table)? So for example, if I have:\\n\\n```org-mode\\n* SATISFICED Header1\\n CLOSED: [2019-05-01 Wed 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-01 Sat 18:10]--[2019-05-01 Sat 18:30] =\\u003E 0:20\\n :END:\\n\\n# File2\\n* SATISFICED Header2\\n CLOSED: [2019-05-11 Sat 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:11] =\\u003E 0:01\\n :END:\\n* SATISFICED Header3\\n CLOSED: [2019-05-11 Sat 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:20] =\\u003E 0:10\\n :END:\\n```\\n\\nI'd like to run a function like `(sum--all-time-from \\\"[2019-05-10]\\\" \\\"[2019-05-12]\\\")` to get as answer ~0:11~.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Retrieve the total time CLOCKED over a given interval\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnhu7v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557642259.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion:\\u003C/strong\\u003E How can I retrieve, over a set of files \\u003Ccode\\u003ES\\u003C/code\\u003E (in particular: over my agenda files + their archive files) the total time clocked (as the return value of an elisp function; not as a clock table)? So for example, if I have:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```org-mode\\n* SATISFICED Header1\\n CLOSED: [2019-05-01 Wed 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-01 Sat 18:10]--[2019-05-01 Sat 18:30] =\\u0026gt; 0:20\\n :END:\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EFile2\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESATISFICED Header2\\nCLOSED: [2019-05-11 Sat 18:13]\\n:LOGBOOK:\\nCLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:11] =\\u0026gt; 0:01\\n:END:\\u003C/li\\u003E\\n\\u003Cli\\u003ESATISFICED Header3\\nCLOSED: [2019-05-11 Sat 18:13]\\n:LOGBOOK:\\nCLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:20] =\\u0026gt; 0:10\\n:END:\\n```\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to run a function like \\u003Ccode\\u003E(sum--all-time-from \\u0026quot;[2019-05-10]\\u0026quot; \\u0026quot;[2019-05-12]\\u0026quot;)\\u003C/code\\u003E to get as answer ~0:11~.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnhu7v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bnhu7v/retrieve_the_total_time_clocked_over_a_given/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bnhu7v/retrieve_the_total_time_clocked_over_a_given/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557613459.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems 2 - Tables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnbtfg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 22, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 22, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems 2 - Tables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnbdye\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 87, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 87, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557605382.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnbdye\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 24, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bnbdye/orgmode_hidden_gems_2_tables/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1557576582.0, \"media\": null, \"is_video\": false}], \"created\": 1557608502.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnbtfg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bnbdye\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bnbtfg/orgmode_hidden_gems_2_tables/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557579702.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to get started with ox-beamer.\\n\\nI use the basic config:\\n\\n (require 'ox-latex)\\n (add-to-list 'org-latex-classes\\n '(\\\"beamer\\\"\\n \\\"\\\\\\\\documentclass\\\\[presentation\\\\]\\\\{beamer\\\\}\\\"\\n (\\\"\\\\\\\\section\\\\{%s\\\\}\\\" . \\\"\\\\\\\\section*\\\\{%s\\\\}\\\")\\n (\\\"\\\\\\\\subsection\\\\{%s\\\\}\\\" . \\\"\\\\\\\\subsection*\\\\{%s\\\\}\\\")\\n (\\\"\\\\\\\\subsubsection\\\\{%s\\\\}\\\" . \\\"\\\\\\\\subsubsection*\\\\{%s\\\\}\\\")))\\n\\n\\u0026#x200B;\\n\\nFirst, I want to reproduce [https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org](https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org)\\n\\nBut even on this basic example, I fail to get the correct sectioning into frames.\\n\\n[https://www.scribd.com/document/409442757/Beamer-Example](https://www.scribd.com/document/409442757/Beamer-Example)\\n\\n\\u0026#x200B;\\n\\nAny idea what's wrong?\", \"author_fullname\": \"t2_2b6wlz4w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Issue with ox-beamer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmy4qe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557522795.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to get started with ox-beamer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use the basic config:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;ox-latex)\\n(add-to-list \\u0026#39;org-latex-classes\\n \\u0026#39;(\\u0026quot;beamer\\u0026quot;\\n \\u0026quot;\\\\\\\\documentclass\\\\[presentation\\\\]\\\\{beamer\\\\}\\u0026quot;\\n (\\u0026quot;\\\\\\\\section\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\section*\\\\{%s\\\\}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsection\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\subsection*\\\\{%s\\\\}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsubsection\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\subsubsection*\\\\{%s\\\\}\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, I want to reproduce \\u003Ca href=\\\"https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org\\\"\\u003Ehttps://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut even on this basic example, I fail to get the correct sectioning into frames.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.scribd.com/document/409442757/Beamer-Example\\\"\\u003Ehttps://www.scribd.com/document/409442757/Beamer-Example\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny idea what\\u0026#39;s wrong?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmy4qe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hagetarou\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmy4qe/issue_with_oxbeamer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bmy4qe/issue_with_oxbeamer/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557493995.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 10, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmxvlv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557521353.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmxvlv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmxvlv/weekly_rorgmode_open_discussion_may_10_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bmxvlv/weekly_rorgmode_open_discussion_may_10_2019/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557492553.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmxv6e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 47, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 47, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmwec1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 141, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 141, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {\"gid_1\": 1}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557511141.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Silver Award\", \"coin_reward\": 0, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/silver_512.png\", \"days_of_premium\": 0, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 100, \"id\": \"gid_1\", \"name\": \"Silver\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmwec1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 21, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bmwec1/orgmode_hidden_gems/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt1/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1557482341.0, \"media\": null, \"is_video\": false}], \"created\": 1557521280.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmxv6e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bmwec1\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmxv6e/orgmode_hidden_gems/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt1/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557492480.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\n\\u0026#x200B;\\n\\nI have an org-file with several code blocks. Is there any way to run all of them at once instead of having to access each one individually and run c-c to make them execute?\", \"author_fullname\": \"t2_cc87w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Execute all code blocks at once\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bm856i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557365469.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have an org-file with several code blocks. Is there any way to run all of them at once instead of having to access each one individually and run c-c to make them execute?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bm856i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eljuman\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bm856i/execute_all_code_blocks_at_once/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bm856i/execute_all_code_blocks_at_once/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557336669.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I've been using org mode for task management for several months. I'm trying to transition into using it for note taking but I've found a recurrent error with the tables in org mode.\\n\\nIf I have a table with a column set to a short width, and then increase the size of the column to a width that is still shorter than the content of the longest cell in the column I get an error as shown below.\\n\\n\\u0026#x200B;\\n\\nI'm using Windows 10; GNU Emacs 26.1 (build 1, x86\\\\_64-w64-mingw32) of 2018-05-30; and Org mode version 9.1.9 (release\\\\_9.1.9-65-g5e4542 @ c:/Users/mccombsp/emacs/share/emacs/26.1/lisp/org/)\\n\\n\\u0026#x200B;\\n\\nEDIT:\\n\\nI duplicated the error on MacOs 10.14.4; GNU Emacs 26.1 (build 1, x86\\\\_64-apple-darwin14.5.0, NS appkit-1348.17 Version 10.10.5 (Build 14F2511)) of 2018-05-30; and Org mode version 9.1.9 (release\\\\_9.1.9-65-g5e4542 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)\\n\\n\\u0026#x200B;\\n\\n | short | short | long text that goes on and on and on and on |\\n | short | short | not so long text that only goes on |\\n | short | short | short |\\n | | | \\u003C5\\u003E |\\n \\n The above table works fine.\\n \\n | short | short | long text that goes on and on and on and on |\\n | short | short | not so long text that only goes on |\\n | short | short | short |\\n | | | \\u003C10\\u003E |\\n \\n The above table will work but only if I remove the width entirely first.\\n\\nEither table above table works fine. But if I change the the last cell from \\u003C5\\u003E to \\u003C10\\u003E I get the following emacs lisp error, and it doesn't adjust the table.\\n\\n org-table-next-field: Args out of range: #(\\\"long text that goes on and on and on and on\\\" 0 3 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 3 4 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 4 5 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 5 9 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 9 14 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 14 19 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 19 22 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 22 26 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 26 29 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 29 33 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 33 36 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 36 40 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 40 43 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth)), 0, 44\", \"author_fullname\": \"t2_3kfzu0nx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Error on increasing width of table columns\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_blz7uj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1557279529.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557308015.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been using org mode for task management for several months. I\\u0026#39;m trying to transition into using it for note taking but I\\u0026#39;ve found a recurrent error with the tables in org mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I have a table with a column set to a short width, and then increase the size of the column to a width that is still shorter than the content of the longest cell in the column I get an error as shown below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using Windows 10; GNU Emacs 26.1 (build 1, x86_64-w64-mingw32) of 2018-05-30; and Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ c:/Users/mccombsp/emacs/share/emacs/26.1/lisp/org/)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI duplicated the error on MacOs 10.14.4; GNU Emacs 26.1 (build 1, x86_64-apple-darwin14.5.0, NS appkit-1348.17 Version 10.10.5 (Build 14F2511)) of 2018-05-30; and Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E| short | short | long text that goes on and on and on and on |\\n| short | short | not so long text that only goes on |\\n| short | short | short |\\n| | | \\u0026lt;5\\u0026gt; |\\n\\nThe above table works fine.\\n\\n| short | short | long text that goes on and on and on and on |\\n| short | short | not so long text that only goes on |\\n| short | short | short |\\n| | | \\u0026lt;10\\u0026gt; |\\n\\nThe above table will work but only if I remove the width entirely first.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EEither table above table works fine. But if I change the the last cell from \\u0026lt;5\\u0026gt; to \\u0026lt;10\\u0026gt; I get the following emacs lisp error, and it doesn\\u0026#39;t adjust the table.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eorg-table-next-field: Args out of range: #(\\u0026quot;long text that goes on and on and on and on\\u0026quot; 0 3 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 3 4 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 4 5 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 5 9 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 9 14 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 14 19 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 19 22 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 22 26 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 26 29 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 29 33 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 33 36 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 36 40 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 40 43 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth)), 0, 44\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blz7uj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paulmccombs\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/blz7uj/error_on_increasing_width_of_table_columns/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/blz7uj/error_on_increasing_width_of_table_columns/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557279215.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3m2tic11\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Run C-c C-c fixups everywhere in a file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_blvp48\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557289465.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blvp48\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"telotortium\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/blvp48/run_cc_cc_fixups_everywhere_in_a_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/blvk82/run_cc_cc_fixups_everywhere_in_a_file/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557260665.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"https://gitlab.com/kisaragi-hiu/org-msr\\n\\nWhile trying to remember vocabulary words using Org, I thought it would be interesting if I use todo keywords and add schedules based on them to implement spaced repetition.\\n\\nI haven't used it for too long^[1] , but I made it its own package since there's too much to just stuff in my init. If this approach works, I hope this can serve as some sort of reference on how this can be done as well.\\n\\nThe package provides a function to update schedule based on the todo keyword, according to an alist (`org-msr-keyword-frequency-alist`). It also provides a minor mode that runs the function after `org-todo`).\\n\\nPlease check it out!\\n\\n[1]\\\\: The aforementioned org file is 6 days old currently (2019-05-05).\", \"author_fullname\": \"t2_10cocd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-msr: Minimal Spaced Repetition with todo keywords\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkxsd1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"elisp library\", \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557092245.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://gitlab.com/kisaragi-hiu/org-msr\\\"\\u003Ehttps://gitlab.com/kisaragi-hiu/org-msr\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile trying to remember vocabulary words using Org, I thought it would be interesting if I use todo keywords and add schedules based on them to implement spaced repetition.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t used it for too long\\u003Csup\\u003E[1]\\u003C/sup\\u003E , but I made it its own package since there\\u0026#39;s too much to just stuff in my init. If this approach works, I hope this can serve as some sort of reference on how this can be done as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe package provides a function to update schedule based on the todo keyword, according to an alist (\\u003Ccode\\u003Eorg-msr-keyword-frequency-alist\\u003C/code\\u003E). It also provides a minor mode that runs the function after \\u003Ccode\\u003Eorg-todo\\u003C/code\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease check it out!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[1]: The aforementioned org file is 6 days old currently (2019-05-05).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"698f39e4-c2ff-11e8-9e96-0e341354a6a2\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkxsd1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"flyin1501\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bkxsd1/orgmsr_minimal_spaced_repetition_with_todo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bkxsd1/orgmsr_minimal_spaced_repetition_with_todo/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1557063445.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode with Spacemacs: The Absolute Minimum\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkfckb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"article\", \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode with Spacemacs: The Absolute Minimum\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkfare\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 50, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Org mode and Spacemacs: The Absolute Minimum you need to know\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Jack of Some\", \"thumbnail_height\": 360, \"thumbnail_url\": \"https://i.ytimg.com/vi/S4f-GUxu3CY/hqdefault.jpg\", \"type\": \"video\", \"provider_name\": \"YouTube\", \"author_url\": \"https://www.youtube.com/channel/UCe6ABcJkH_Gso9HJOt4x9fg\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bkfare\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 50, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556957136.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkfare\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jack-of-some\", \"num_crossposts\": 4, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bkfare/org_mode_with_spacemacs_the_absolute_minimum/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/S4f-GUxu3CY\", \"subreddit_subscribers\": 30003, \"created_utc\": 1556928336.0, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Org mode and Spacemacs: The Absolute Minimum you need to know\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Jack of Some\", \"thumbnail_height\": 360, \"thumbnail_url\": \"https://i.ytimg.com/vi/S4f-GUxu3CY/hqdefault.jpg\", \"type\": \"video\", \"provider_name\": \"YouTube\", \"author_url\": \"https://www.youtube.com/channel/UCe6ABcJkH_Gso9HJOt4x9fg\"}, \"type\": \"youtube.com\"}, \"is_video\": false}], \"created\": 1556957464.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c5c6b84c-c2fd-11e8-a9b1-0ea723e3b826\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkfckb\", \"is_robot_indexable\": true, \"stickied\": false, \"author\": \"jack-of-some\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bkfare\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bkfckb/org_mode_with_spacemacs_the_absolute_minimum/\", \"parent_whitelist_status\": null, \"report_reasons\": null, \"url\": \"https://youtu.be/S4f-GUxu3CY\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556928664.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 03, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bk83wf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556916567.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bk83wf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bk83wf/weekly_rorgmode_open_discussion_may_03_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bk83wf/weekly_rorgmode_open_discussion_may_03_2019/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556887767.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Does anyone have experience trying to share Emacs/org-mode with outsiders? \\n\\nI do realize how easily it is for me to sound like an evangelist when it comes to expressing my thoughts about the utility of a \\\"second brain\\\" on your computer, but I have been wondering on what aspects of the org-mode experience are most appealing to people who have mild interests in becoming more productive.\\n\\nPersonally, I tend to default to the \\\"don't ask don't tell\\\" approach when it comes to my deeper interests, but there seems to be something about this integration with technology that I wish I was taught about in school and thus, I feel a need to inform others. \\n\\nAll of this is not to forget that certain systems aren't suitable for all people, but I'm curious to know if anyone has a practiced \\\"elevator pitch\\\" for Emacs and org-mode? How do you go about sharing this, if you even do it at all? \\n\\nThanks\", \"author_fullname\": \"t2_w32dym0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sharing org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjyhvh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556851291.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone have experience trying to share Emacs/org-mode with outsiders? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI do realize how easily it is for me to sound like an evangelist when it comes to expressing my thoughts about the utility of a \\u0026quot;second brain\\u0026quot; on your computer, but I have been wondering on what aspects of the org-mode experience are most appealing to people who have mild interests in becoming more productive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPersonally, I tend to default to the \\u0026quot;don\\u0026#39;t ask don\\u0026#39;t tell\\u0026quot; approach when it comes to my deeper interests, but there seems to be something about this integration with technology that I wish I was taught about in school and thus, I feel a need to inform others. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll of this is not to forget that certain systems aren\\u0026#39;t suitable for all people, but I\\u0026#39;m curious to know if anyone has a practiced \\u0026quot;elevator pitch\\u0026quot; for Emacs and org-mode? How do you go about sharing this, if you even do it at all? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjyhvh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"swarmalator\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjyhvh/sharing_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjyhvh/sharing_orgmode/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556822491.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, \\n\\n\\u0026#x200B;\\n\\nI'm using orgmode + komascript to generate pdf from org-mode. It seems very handy.\\n\\nHowever, I would like to be able to store some \\\"profiles\\\" and then include it in my letter.\\n\\nExample: \\nA profile for personal letters which would include my personal address\\n\\nA profile for professional letters, which would include my office address\\n\\nIt seems like it is possible with LCO files but the documentation is not very clear about that.\\n\\n\\u0026#x200B;\\n\\nDoes anyone have experience with that?\\n\\nMany thanks in advance\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Managing different letter Template with Org mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjv50e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556833647.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using orgmode + komascript to generate pdf from org-mode. It seems very handy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I would like to be able to store some \\u0026quot;profiles\\u0026quot; and then include it in my letter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample:\\u003Cbr/\\u003E\\nA profile for personal letters which would include my personal address\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA profile for professional letters, which would include my office address\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems like it is possible with LCO files but the documentation is not very clear about that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have experience with that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjv50e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjv50e/managing_different_letter_template_with_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjv50e/managing_different_letter_template_with_org_mode/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556804847.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Inspired by this [StackExchange post](https://superuser.com/questions/567916/org-mode-command-to-create-new-file-from-subtree/568300#568300), I made a function that exports the current subtree to a file and replaces it with a link to that file. More specifically it does the following:\\n\\n1. Copy the subtree to a file whose filename is the subtree title\\n2. Replace the subtree with a link to the newly created file\\n3. In the file, promote all direct children of the subtree node to be level-1 headings\\n4. In the file, convert the original subtree title to be a `#+TITLE` parameter\\n\\nFor my work, I use a date-tree file to store my work notes. I use this function to move large subtrees of notes to their own dedicated file in order to keep the work notes file from growing too large. It seems to work well enough, but I feel that the code I have written is overly complicated. In particular, the mechanism I use to delete everything but the subtree headline is very similar to the mechanism I use to promote of the subtree children. Is there a simpler, more streamlined way to implement this function? The code is listed below:\\n\\n (defun sbr-org-file-from-subtree (\\u0026optional name)\\n \\\"Take the current subtree and create a new file from\\n it. Replace the current subtree with its main heading (i.e.,\\n delete all of its childen), and make the heading into a link\\n to the newly created file,\\n \\n In the new file, promote all direct children of the original\\n subtree to be level 1-headings, and transform the original\\n heading into the '#+TITLE' parameter.\\n \\n If called with the universal argument, prompt for new filename,\\n otherwise use the subtree title.\\\"\\n (interactive \\\"P\\\")\\n (org-back-to-heading)\\n (let ((filename (cond\\n (current-prefix-arg\\n (expand-file-name\\n (read-file-name \\\"New file name: \\\")))\\n (t\\n (concat\\n (expand-file-name\\n (org-element-property :title\\n (org-element-at-point))\\n default-directory)\\n \\\".org\\\")))))\\n ;; Copy current subtree into clipboard \\n (org-copy-subtree)\\n \\n ;; Delete everything but the headline\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (call-interactively 'delete-region)\\n (org-previous-visible-heading 1)\\n \\n ;; Mark the current headline text\\n (org-end-of-line)\\n (call-interactively 'set-mark-command)\\n (org-beginning-of-line)\\n \\n ;; Convert headline to a link of the to-be-created file\\n (org-insert-link nil filename)\\n \\n ;; Create file for subtree\\n (with-temp-file filename\\n ;; Paste in the subtree\\n (org-mode)\\n (org-paste-subtree)\\n ;; Promote all children, original headline is at level \\\"zero\\\"\\n (sbr-org-promote-subtree-to-zero)\\n (insert \\\"#+TITLE: \\\"))))\\n \\n (defun sbr-org-promote-subtree-to-zero ()\\n \\\"Promote the entire subtree. If the root heading is at level 1,\\n 'promote' it to level 0 by removing the heading.\\\"\\n (interactive)\\n (if (= (org-current-level) 1)\\n (progn\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (org-do-promote)\\n (org-previous-visible-heading 1)\\n (org-mark-subtree)\\n (org-toggle-heading))\\n (org-promote-subtree)))\", \"author_fullname\": \"t2_7nfrv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cleaner way to export subtree to file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjulhb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556830403.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EInspired by this \\u003Ca href=\\\"https://superuser.com/questions/567916/org-mode-command-to-create-new-file-from-subtree/568300#568300\\\"\\u003EStackExchange post\\u003C/a\\u003E, I made a function that exports the current subtree to a file and replaces it with a link to that file. More specifically it does the following:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECopy the subtree to a file whose filename is the subtree title\\u003C/li\\u003E\\n\\u003Cli\\u003EReplace the subtree with a link to the newly created file\\u003C/li\\u003E\\n\\u003Cli\\u003EIn the file, promote all direct children of the subtree node to be level-1 headings\\u003C/li\\u003E\\n\\u003Cli\\u003EIn the file, convert the original subtree title to be a \\u003Ccode\\u003E#+TITLE\\u003C/code\\u003E parameter\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EFor my work, I use a date-tree file to store my work notes. I use this function to move large subtrees of notes to their own dedicated file in order to keep the work notes file from growing too large. It seems to work well enough, but I feel that the code I have written is overly complicated. In particular, the mechanism I use to delete everything but the subtree headline is very similar to the mechanism I use to promote of the subtree children. Is there a simpler, more streamlined way to implement this function? The code is listed below:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun sbr-org-file-from-subtree (\\u0026amp;optional name)\\n \\u0026quot;Take the current subtree and create a new file from\\n it. Replace the current subtree with its main heading (i.e.,\\n delete all of its childen), and make the heading into a link\\n to the newly created file,\\n\\nIn the new file, promote all direct children of the original\\n subtree to be level 1-headings, and transform the original\\n heading into the \\u0026#39;#+TITLE\\u0026#39; parameter.\\n\\nIf called with the universal argument, prompt for new filename,\\notherwise use the subtree title.\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (org-back-to-heading)\\n (let ((filename (cond\\n (current-prefix-arg\\n (expand-file-name\\n (read-file-name \\u0026quot;New file name: \\u0026quot;)))\\n (t\\n (concat\\n (expand-file-name\\n (org-element-property :title\\n (org-element-at-point))\\n default-directory)\\n \\u0026quot;.org\\u0026quot;)))))\\n ;; Copy current subtree into clipboard \\n (org-copy-subtree)\\n\\n ;; Delete everything but the headline\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (call-interactively \\u0026#39;delete-region)\\n (org-previous-visible-heading 1)\\n\\n ;; Mark the current headline text\\n (org-end-of-line)\\n (call-interactively \\u0026#39;set-mark-command)\\n (org-beginning-of-line)\\n\\n ;; Convert headline to a link of the to-be-created file\\n (org-insert-link nil filename)\\n\\n ;; Create file for subtree\\n (with-temp-file filename\\n ;; Paste in the subtree\\n (org-mode)\\n (org-paste-subtree)\\n ;; Promote all children, original headline is at level \\u0026quot;zero\\u0026quot;\\n (sbr-org-promote-subtree-to-zero)\\n (insert \\u0026quot;#+TITLE: \\u0026quot;))))\\n\\n(defun sbr-org-promote-subtree-to-zero ()\\n \\u0026quot;Promote the entire subtree. If the root heading is at level 1,\\n\\u0026#39;promote\\u0026#39; it to level 0 by removing the heading.\\u0026quot;\\n (interactive)\\n (if (= (org-current-level) 1)\\n (progn\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (org-do-promote)\\n (org-previous-visible-heading 1)\\n (org-mark-subtree)\\n (org-toggle-heading))\\n (org-promote-subtree)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjulhb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cottasteel\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjulhb/cleaner_way_to_export_subtree_to_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjulhb/cleaner_way_to_export_subtree_to_file/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556801603.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_esdtt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to jump to a heading in a date tree\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjb692\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556700958.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"emacs.stackexchange.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjb692\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"plotnick\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjb692/how_to_jump_to_a_heading_in_a_date_tree/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://emacs.stackexchange.com/questions/50253/how-to-jump-to-a-heading-in-a-date-tree\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556672158.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How to export code blocks so that they will be side-by-side in exported HTML (like in table)? \\n\\nFor example:\\n\\n\\u0026#x200B;\\n\\n[Something like this](https://i.redd.it/g2njbopc0cv21.png)\", \"author_fullname\": \"t2_11whf3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Export code block side by side\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"g2njbopc0cv21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 73, \"x\": 250, \"u\": \"https://i.redd.it/g2njbopc0cv21.png\"}, \"m\": \"image/png\", \"id\": \"g2njbopc0cv21\"}}, \"name\": \"t3_bizbk6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556628452.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow to export code blocks so that they will be side-by-side in exported HTML (like in table)? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/g2njbopc0cv21.png\\\"\\u003ESomething like this\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bizbk6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lkmokadam\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bizbk6/export_code_block_side_by_side/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bizbk6/export_code_block_side_by_side/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556599652.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \" Create a file called issue tracker.org\\n\\nPut these in-buffer settings at the top of the file:\\n\\n #+AUTHOR: Your Name\\n #+STARTUP:indent\\n #+OPTIONS: num:nil toc:nil\\n #+TODO: ONCE(o) EPISODIC ONGOING POTENTIAL | RESOLVED IMPROVED UNRESOLVABLE TOLERATED INACTIVE\\n #+TODO: MALFUNCTION DAMAGE | REPAIRED REPLACED DISCARDED\\n #+TITLE:ISSUE TRACKER\\n \\n\\nAdd a capture template to your .emacs, e.g.:\\n\\n (\\\"i\\\" \\\"issue\\\" entry\\n (file+olp+datetree \\\"~ /org/issue tracker.org\\\")\\n \\\"* ONCE %?\\\" :time-prompt t)\\n\\n\\u0026#x200B;\\n\\nOutput appears in a datetree. Track issue statuses using TODO states. Use a sparse tree if you want to filter the log by status, date, or text string.\\n\\nExample output:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/fowvur8ow7v21.png\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using org-mode as a quick-and-dirty issue tracker.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"fowvur8ow7v21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 492, \"x\": 968, \"u\": \"https://i.redd.it/fowvur8ow7v21.png\"}, \"m\": \"image/png\", \"id\": \"fowvur8ow7v21\"}}, \"name\": \"t3_biqhjc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 22, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 22, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556578999.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECreate a file called issue tracker.org\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPut these in-buffer settings at the top of the file:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+AUTHOR: Your Name\\n#+STARTUP:indent\\n#+OPTIONS: num:nil toc:nil\\n#+TODO: ONCE(o) EPISODIC ONGOING POTENTIAL | RESOLVED IMPROVED UNRESOLVABLE TOLERATED INACTIVE\\n#+TODO: MALFUNCTION DAMAGE | REPAIRED REPLACED DISCARDED\\n#+TITLE:ISSUE TRACKER\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAdd a capture template to your .emacs, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;i\\u0026quot; \\u0026quot;issue\\u0026quot; entry\\n (file+olp+datetree \\u0026quot;~ /org/issue tracker.org\\u0026quot;)\\n \\u0026quot;* ONCE %?\\u0026quot; :time-prompt t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOutput appears in a datetree. Track issue statuses using TODO states. Use a sparse tree if you want to filter the log by status, date, or text string.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample output:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/fowvur8ow7v21.png\\\"\\u003Ehttps://i.redd.it/fowvur8ow7v21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"biqhjc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/biqhjc/using_orgmode_as_a_quickanddirty_issue_tracker/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/biqhjc/using_orgmode_as_a_quickanddirty_issue_tracker/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556550199.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I recently came across org-journal. Seems pretty sweet, but I'm overall more happy with using org-capture to log to a datetree. But, one thing I really liked about org-journal was that it was easy to set each entry to have a HH:MM timestamp as its headline title on creation.\\n\\nI've got something like\\n\\n (\\\"l\\\" \\\"Log\\\" entry (file+datetree \\\"log.org\\\") \\\"* %?\\n \\n %i\\\" :empty-lines 1 :clock-resume t)\\n\\nas my capture template. I'd love to have it the headline part be like \\\\`:\\\\* %H:%M %?\\\\`. But that doesn't work.\\n\\nIs there any way to get what I am after?\", \"author_fullname\": \"t2_mfiiw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"timestamp in capture template?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bim468\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556546700.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recently came across org-journal. Seems pretty sweet, but I\\u0026#39;m overall more happy with using org-capture to log to a datetree. But, one thing I really liked about org-journal was that it was easy to set each entry to have a HH:MM timestamp as its headline title on creation.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve got something like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;l\\u0026quot; \\u0026quot;Log\\u0026quot; entry (file+datetree \\u0026quot;log.org\\u0026quot;) \\u0026quot;* %?\\n\\n %i\\u0026quot; :empty-lines 1 :clock-resume t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eas my capture template. I\\u0026#39;d love to have it the headline part be like `:* %H:%M %?`. But that doesn\\u0026#39;t work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way to get what I am after?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bim468\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PhilosopherAboutTown\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bim468/timestamp_in_capture_template/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bim468/timestamp_in_capture_template/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556517900.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi I'm considering going to emacs org mode for work and school. One pretty critical question for me is: \\nI use Anki for studying. I take my notes and put them on Anki and I can walk around and get some studying done. Is there any similar thing with org-drill? So that I could sync flash cards to phone and study at any convenient time? Thanks\", \"author_fullname\": \"t2_21immxp8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Mobile drill\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bi3va7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556429497.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi I\\u0026#39;m considering going to emacs org mode for work and school. One pretty critical question for me is:\\u003Cbr/\\u003E\\nI use Anki for studying. I take my notes and put them on Anki and I can walk around and get some studying done. Is there any similar thing with org-drill? So that I could sync flash cards to phone and study at any convenient time? Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bi3va7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"a_person_anon\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bi3va7/mobile_drill/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bi3va7/mobile_drill/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556400697.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi. Is it possible to define a project as:\\n\\n1. a headline that is not a todo item, and\\n2. that has at least one direct child todo item (one level below)\\n\\nThis would allow nested projects. I want to add this to `org-agenda-custom-commands`, but am lacking the necessary elisp skills. I want to avoid having to use a `PROJECT` todo keyword for readability, nor a `PROJECT` tag, which demands diligence.\\n\\nBonus question: is it possible to additionally display a the direct parent project of sub-projects in the agenda view?\", \"author_fullname\": \"t2_tihct\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Project as a Headline that has direct Todo Item Children\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhwy7b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556381209.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi. Is it possible to define a project as:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Ea headline that is not a todo item, and\\u003C/li\\u003E\\n\\u003Cli\\u003Ethat has at least one direct child todo item (one level below)\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis would allow nested projects. I want to add this to \\u003Ccode\\u003Eorg-agenda-custom-commands\\u003C/code\\u003E, but am lacking the necessary elisp skills. I want to avoid having to use a \\u003Ccode\\u003EPROJECT\\u003C/code\\u003E todo keyword for readability, nor a \\u003Ccode\\u003EPROJECT\\u003C/code\\u003E tag, which demands diligence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBonus question: is it possible to additionally display a the direct parent project of sub-projects in the agenda view?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhwy7b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nopedoesntwork\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhwy7b/project_as_a_headline_that_has_direct_todo_item/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhwy7b/project_as_a_headline_that_has_direct_todo_item/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556352409.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 26, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhlvza\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556311753.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhlvza\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhlvza/weekly_rorgmode_open_discussion_april_26_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhlvza/weekly_rorgmode_open_discussion_april_26_2019/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556282953.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to recreate the functionality of an old Mac app I saw over a decade ago that had the concept of \\\"variable time repeating tasks\\\".\\n\\nIn other words, do \\\"water the plants\\\" every 4 to 8 days. It looks like I can sort of do this with:\\n\\n EDIT: \\u003C2019-04-26 Fri .+8d -4d\\u003E\\n\\nBut does anyone know of a better way to accomplish this?\\n\\nIdeally I'd be able to see how often I watered the plants last month, showing a timeline with marks every time I complete the task. So:\\n\\n March: 1st, 5th, 12th, 20th, 24th, 29th\\n\\nTo see how lax I was, or if I was doing something too frequently.\\n\\nSorry, weird problem/request, and I'm pretty terrible at describing it.\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Repeating tasks, do X every a to b days?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhczz6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1556222407.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556250552.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to recreate the functionality of an old Mac app I saw over a decade ago that had the concept of \\u0026quot;variable time repeating tasks\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn other words, do \\u0026quot;water the plants\\u0026quot; every 4 to 8 days. It looks like I can sort of do this with:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EEDIT: \\u0026lt;2019-04-26 Fri .+8d -4d\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBut does anyone know of a better way to accomplish this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIdeally I\\u0026#39;d be able to see how often I watered the plants last month, showing a timeline with marks every time I complete the task. So:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EMarch: 1st, 5th, 12th, 20th, 24th, 29th\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ETo see how lax I was, or if I was doing something too frequently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESorry, weird problem/request, and I\\u0026#39;m pretty terrible at describing it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhczz6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhczz6/repeating_tasks_do_x_every_a_to_b_days/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhczz6/repeating_tasks_do_x_every_a_to_b_days/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556221752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_64sbo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Unexpected behavior in org-mode when dealing with paragraphs, for example \\\"vip\\\" (visual inner paragraph) and [ and ] don't work as they should. Help?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bh9imi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1728, \"scrubber_media_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_96\", \"dash_url\": \"https://v.redd.it/kj55kbq3bfu21/DASHPlaylist.mpd\", \"duration\": 27, \"hls_url\": \"https://v.redd.it/kj55kbq3bfu21/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556232582.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bh9imi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rainymood_XI\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bh9imi/unexpected_behavior_in_orgmode_when_dealing_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/kj55kbq3bfu21\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556203782.0, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1728, \"scrubber_media_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_96\", \"dash_url\": \"https://v.redd.it/kj55kbq3bfu21/DASHPlaylist.mpd\", \"duration\": 27, \"hls_url\": \"https://v.redd.it/kj55kbq3bfu21/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI want to filter the current agenda using elisp commands mapped to a shortcut. I know that I could create separate agenda for different filters but this time, I'd prefer to have an arbitrary agenda and filter it.\\n\\nIn my case, I'd like to show only higest priority tasks: `[#A]`\\n\\nI could not find a specific command for filtering according to priority. However, interactively this can be achieved using `org-agenda-filter-by-regexp` (mapped to `=`) and then entering the regular expression `.*\\\\[#A\\\\].*`.\\n\\nI tried to debug `org-agenda-filter-by-regexp` and then `org-agenda-filter-apply` in order to find out how the elisp command including the parameters has to look like when I want to use it in a DIY-function.\\n\\nWhen I apply `(org-agenda-filter-apply \\\"+.*\\\\\\\\[#A\\\\\\\\].*\\\" \\\"+\\\" nil)` in the agenda (via `M-:`), I only get `nil` and nothing is changed. This clearly is wrong somehow.\\n\\nWhen debugging my elisp command and comparing to the interactive invocation, the regex as well as the second parameter do not match. This is where my elisp knowledge ends so far.\\n\\nAre you able to help me finding out what the magic spell is to *activate* the filter via an elisp command?\\n\\nThanks!\\n\\nPS: What I could find out myself is the command to disable the filter: `(org-agenda-filter-show-all-re)` \\u2026 hooray.\", \"author_fullname\": \"t2_dp04z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Elisp command to filter the agenda to show only [#A] prio tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgzod3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556167047.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to filter the current agenda using elisp commands mapped to a shortcut. I know that I could create separate agenda for different filters but this time, I\\u0026#39;d prefer to have an arbitrary agenda and filter it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my case, I\\u0026#39;d like to show only higest priority tasks: \\u003Ccode\\u003E[#A]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI could not find a specific command for filtering according to priority. However, interactively this can be achieved using \\u003Ccode\\u003Eorg-agenda-filter-by-regexp\\u003C/code\\u003E (mapped to \\u003Ccode\\u003E=\\u003C/code\\u003E) and then entering the regular expression \\u003Ccode\\u003E.*\\\\[#A\\\\].*\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to debug \\u003Ccode\\u003Eorg-agenda-filter-by-regexp\\u003C/code\\u003E and then \\u003Ccode\\u003Eorg-agenda-filter-apply\\u003C/code\\u003E in order to find out how the elisp command including the parameters has to look like when I want to use it in a DIY-function.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I apply \\u003Ccode\\u003E(org-agenda-filter-apply \\u0026quot;+.*\\\\\\\\[#A\\\\\\\\].*\\u0026quot; \\u0026quot;+\\u0026quot; nil)\\u003C/code\\u003E in the agenda (via \\u003Ccode\\u003EM-:\\u003C/code\\u003E), I only get \\u003Ccode\\u003Enil\\u003C/code\\u003E and nothing is changed. This clearly is wrong somehow.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen debugging my elisp command and comparing to the interactive invocation, the regex as well as the second parameter do not match. This is where my elisp knowledge ends so far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre you able to help me finding out what the magic spell is to \\u003Cem\\u003Eactivate\\u003C/em\\u003E the filter via an elisp command?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: What I could find out myself is the command to disable the filter: \\u003Ccode\\u003E(org-agenda-filter-show-all-re)\\u003C/code\\u003E \\u2026 hooray.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgzod3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"murdsdrum\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgzod3/elisp_command_to_filter_the_agenda_to_show_only_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgzod3/elisp_command_to_filter_the_agenda_to_show_only_a/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556138247.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is there anyway to automate refiling according to tag? For example, let's say that I have a bunch of todos and notes in [inbox.org](https://inbox.org) captured by a template.\\n\\n\\u0026#x200B;\\n\\n* `TODO Finish task :project1:`\\n* `Reference for emacs theme :emacs:`\\n* `TODO Email Robert :project2:`\\n\\n\\u0026#x200B;\\n\\nCould all headings in [inbox.org](https://inbox.org) tagged :project1: be automatically refiled to [project1.org](https://project1.org); those tagged with :project2: refiled to [project2.org](https://project2.org); and those tagged :emacs: be refiled to [emacs.org](https://emacs.org)? maybe tied to a key binding, or through a cron job?\\n\\n\\u0026#x200B;\\n\\nMany thanks in advance!\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Automate refiling according to tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgy3v6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556159094.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there anyway to automate refiling according to tag? For example, let\\u0026#39;s say that I have a bunch of todos and notes in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E captured by a template.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003ETODO Finish task :project1:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EReference for emacs theme :emacs:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003ETODO Email Robert :project2:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECould all headings in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E tagged :project1: be automatically refiled to \\u003Ca href=\\\"https://project1.org\\\"\\u003Eproject1.org\\u003C/a\\u003E; those tagged with :project2: refiled to \\u003Ca href=\\\"https://project2.org\\\"\\u003Eproject2.org\\u003C/a\\u003E; and those tagged :emacs: be refiled to \\u003Ca href=\\\"https://emacs.org\\\"\\u003Eemacs.org\\u003C/a\\u003E? maybe tied to a key binding, or through a cron job?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgy3v6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556130294.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"On org-agenda, a new window is opened with the agenda. How can I open org-agenda in the current window and not have it open a new one?\", \"author_fullname\": \"t2_q43ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Open org-agenda in current window\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgpycx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556106434.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn org-agenda, a new window is opened with the agenda. How can I open org-agenda in the current window and not have it open a new one?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgpycx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HumanBrainMapper\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgpycx/open_orgagenda_in_current_window/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgpycx/open_orgagenda_in_current_window/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556077634.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I can't seem to get the variable to expand into src block\\n\\n #+BEGIN_SRC conf :tangle ~/.config/mine.conf :var argument=abcde\\n setting1 1234\\n setting2 argument\\n #+END_SRC\\n\\nWhen I export the file for tangling (C-c C-v t), the \\\"argument\\\" keyword is not expanded into \\\"abcde\\\". \\n\\nI realise this is because I am not evaluatiing the block but exporting it. \\n\\nHow do I achieve my desired output in the tangled file?\", \"author_fullname\": \"t2_xup40\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Passing variable into a org babel code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgdr5m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556035419.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t seem to get the variable to expand into src block\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+BEGIN_SRC conf :tangle ~/.config/mine.conf :var argument=abcde\\nsetting1 1234\\nsetting2 argument\\n#+END_SRC\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I export the file for tangling (C-c C-v t), the \\u0026quot;argument\\u0026quot; keyword is not expanded into \\u0026quot;abcde\\u0026quot;. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI realise this is because I am not evaluatiing the block but exporting it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I achieve my desired output in the tangled file?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgdr5m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tomatoaway\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgdr5m/passing_variable_into_a_org_babel_code/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgdr5m/passing_variable_into_a_org_babel_code/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1556006619.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a custom clocktable as a dynamic block that I'd like to export alongside an agenda view to a file. \\n\\nIs it possible to either create a dynamic block with a custom agenda view (i.e. have this as two dynamic blocks)? Or is it possible to have an agenda execute/display a custom dynamic block (add the dyn block to the org agenda and export via the agenda?)\", \"author_fullname\": \"t2_1mhaum0e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Execute agenda command as a dynamic block? Or add a dynamic block to block agenda?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bg1vh6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555967071.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a custom clocktable as a dynamic block that I\\u0026#39;d like to export alongside an agenda view to a file. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs it possible to either create a dynamic block with a custom agenda view (i.e. have this as two dynamic blocks)? Or is it possible to have an agenda execute/display a custom dynamic block (add the dyn block to the org agenda and export via the agenda?)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bg1vh6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jethro_spackle\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bg1vh6/execute_agenda_command_as_a_dynamic_block_or_add/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bg1vh6/execute_agenda_command_as_a_dynamic_block_or_add/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555938271.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a narrowing function I use which I detail in [this post.](https://www.reddit.com/r/emacs/comments/b8jqor/making_orgmode_narrowing_as_intuitive_as_workflow/) However, is there a way that I can take the heading I narrowed into and turn into the title of the newly created indirect buffer? So for example:\\n\\nTake this:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/l7quj7b7ult21.png\\n\\nand transform into this:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/tvm0qqueult21.png\\n\\nBonus points if changing the title of the indirect buffer also updates the heading in the parent buffer.\", \"author_fullname\": \"t2_39gpz9p3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make parent heading of subtree of indirect buffer appear as title\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"tvm0qqueult21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 116, \"x\": 266, \"u\": \"https://i.redd.it/tvm0qqueult21.png\"}, \"m\": \"image/png\", \"id\": \"tvm0qqueult21\"}, \"l7quj7b7ult21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 154, \"x\": 193, \"u\": \"https://i.redd.it/l7quj7b7ult21.png\"}, \"m\": \"image/png\", \"id\": \"l7quj7b7ult21\"}}, \"name\": \"t3_bfnzqd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555875949.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a narrowing function I use which I detail in \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/b8jqor/making_orgmode_narrowing_as_intuitive_as_workflow/\\\"\\u003Ethis post.\\u003C/a\\u003E However, is there a way that I can take the heading I narrowed into and turn into the title of the newly created indirect buffer? So for example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/l7quj7b7ult21.png\\\"\\u003Ehttps://i.redd.it/l7quj7b7ult21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand transform into this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/tvm0qqueult21.png\\\"\\u003Ehttps://i.redd.it/tvm0qqueult21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBonus points if changing the title of the indirect buffer also updates the heading in the parent buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bfnzqd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ykhurshid\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bfnzqd/make_parent_heading_of_subtree_of_indirect_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bfnzqd/make_parent_heading_of_subtree_of_indirect_buffer/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555847149.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"That's all (stick it in your .emacs of course, and M-x load-file RET .emacs)! I find it handy and use it to outline my day away from the agenda view, to take notes, or to keep a live tree of info for current tasks and it allows me to easily refile any text in said buffer should I decide to keep it later.\", \"author_fullname\": \"t2_3kdg6g4t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tip: Set *scratch* buffer default mode to Org: (setq initial-major-mode 'org-mode)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bf3xw3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1555739479.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555734699.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s all (stick it in your .emacs of course, and M-x load-file RET .emacs)! I find it handy and use it to outline my day away from the agenda view, to take notes, or to keep a live tree of info for current tasks and it allows me to easily refile any text in said buffer should I decide to keep it later.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bf3xw3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PeanutButterGuru\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bf3xw3/tip_set_scratch_buffer_default_mode_to_org_setq/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bf3xw3/tip_set_scratch_buffer_default_mode_to_org_setq/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555705899.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 19, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_beyq0w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555706949.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"beyq0w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/beyq0w/weekly_rorgmode_open_discussion_april_19_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/beyq0w/weekly_rorgmode_open_discussion_april_19_2019/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555678149.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Anyone use org-caldav? Do you know how to don't display the \\\"org caldav sync result\\\" buffer after sync?\", \"author_fullname\": \"t2_14ghl9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Don't show me \\\"org caldav sync result\\\" !\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bexsu1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555700116.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnyone use org-caldav? Do you know how to don\\u0026#39;t display the \\u0026quot;org caldav sync result\\u0026quot; buffer after sync?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bexsu1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"floZx\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bexsu1/dont_show_me_org_caldav_sync_result/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bexsu1/dont_show_me_org_caldav_sync_result/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555671316.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_2lebcxk6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"is it possible to rename the :ARCHIVE: tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bemm49\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555628701.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bemm49\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"grouchy_otter\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bemm49/is_it_possible_to_rename_the_archive_tag/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bemm49/is_it_possible_to_rename_the_archive_tag/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555599901.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a plain shopping list which I reuse. When I need an item I put a tick mark by it, and when I purchase it I marked it as ticked.\\n\\nPreparing a shopping list simply means frequenting the same list and reticking the things I need if they are unticked and usually means this type of syntax\\n\\n - [X] Item 1\\n - [ ] Item 2\\n\\nI am trying out orgzly with this syntax and backspacing in small touchkeyboard to edit lines like this is rather clunky.\\n\\nIs there another syntax that makes it easier to type on a mobile phone keyboard?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is the simplest way of express a shopping list in org?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_beaxfo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555552869.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a plain shopping list which I reuse. When I need an item I put a tick mark by it, and when I purchase it I marked it as ticked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPreparing a shopping list simply means frequenting the same list and reticking the things I need if they are unticked and usually means this type of syntax\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E- [X] Item 1\\n- [ ] Item 2\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI am trying out orgzly with this syntax and backspacing in small touchkeyboard to edit lines like this is rather clunky.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there another syntax that makes it easier to type on a mobile phone keyboard?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"beaxfo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/beaxfo/what_is_the_simplest_way_of_express_a_shopping/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/beaxfo/what_is_the_simplest_way_of_express_a_shopping/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555524069.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey folks. In the past I used Orgmode quite a lot, both for organizing my everyday life and for organizing my research. But then I grew tired of its text-heavy style. I wanted something more visual, more two dimensional. I tried Zim and even though it is a decent software, it was not as capable as the good Org. So I have a dilemma. Short of writing my own software, Org seems to be the only game in town for me.\\n\\n\\u0026#x200B;\\n\\nSo, is there any way to make Org more visual, more 2-dimensional? Or are there any such variants of it (or software inspired by it)? By more visual I mean the ability to have different font sizes (or headers), colors, etc. In short, basic HTML formatting capabilities. When I'm working on an Org file it's like I'm writing source code.\", \"author_fullname\": \"t2_15qtbm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Good old Orgmode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_be8m4x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1555514167.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555541001.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey folks. In the past I used Orgmode quite a lot, both for organizing my everyday life and for organizing my research. But then I grew tired of its text-heavy style. I wanted something more visual, more two dimensional. I tried Zim and even though it is a decent software, it was not as capable as the good Org. So I have a dilemma. Short of writing my own software, Org seems to be the only game in town for me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, is there any way to make Org more visual, more 2-dimensional? Or are there any such variants of it (or software inspired by it)? By more visual I mean the ability to have different font sizes (or headers), colors, etc. In short, basic HTML formatting capabilities. When I\\u0026#39;m working on an Org file it\\u0026#39;s like I\\u0026#39;m writing source code.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"be8m4x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"badmanbrown\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/be8m4x/good_old_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/be8m4x/good_old_orgmode/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555512201.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Some of you may know the Don't break the Chain Method to gain good habits. \\n\\nI plan to organize this with a simple org table (Better suggestions are welcome).\\n\\nnow i Insert a Timestamp with `C-c .` how can I now generate like 1 month of lines in this table.\\n\\nOr how can I fill a table with consequtive Dates. \\n\\n\\u0026#x200B;\\n\\n[Table View](https://i.redd.it/wvee4lu9mls21.png)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[Wanted functionality](https://i.redd.it/gtvwmilkmls21.png)\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Don't Break the Chain with Org Mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"wvee4lu9mls21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 90, \"x\": 522, \"u\": \"https://i.redd.it/wvee4lu9mls21.png\"}, \"m\": \"image/png\", \"id\": \"wvee4lu9mls21\"}, \"gtvwmilkmls21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 294, \"x\": 495, \"u\": \"https://i.redd.it/gtvwmilkmls21.png\"}, \"m\": \"image/png\", \"id\": \"gtvwmilkmls21\"}}, \"name\": \"t3_bds2qx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555437328.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESome of you may know the Don\\u0026#39;t break the Chain Method to gain good habits. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI plan to organize this with a simple org table (Better suggestions are welcome).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Enow i Insert a Timestamp with \\u003Ccode\\u003EC-c .\\u003C/code\\u003E how can I now generate like 1 month of lines in this table.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr how can I fill a table with consequtive Dates. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/wvee4lu9mls21.png\\\"\\u003ETable View\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/gtvwmilkmls21.png\\\"\\u003EWanted functionality\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bds2qx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bds2qx/dont_break_the_chain_with_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bds2qx/dont_break_the_chain_with_org_mode/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555408528.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone I've got a problem with my org agenda while using global linum mode. \\n\\nI have a function that generates a window layout with left an agenda and right another file \\n\\n\\nIf i use global linum mode the tags are always shifted to the right, so you cant read everything. \\n\\n \\n\\n\\n[with linum mode](https://i.redd.it/d6rhurfqpks21.png)\\n\\n\\u0026#x200B;\\n\\n[without linum mode](https://i.redd.it/l98vvqtvpks21.png)\\n\\n\\u0026#x200B;\\n\\nHow can I solve this problem\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Split Agenda Buffer Tag visability Error (linum mode)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"d6rhurfqpks21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 457, \"x\": 954, \"u\": \"https://i.redd.it/d6rhurfqpks21.png\"}, \"m\": \"image/png\", \"id\": \"d6rhurfqpks21\"}, \"l98vvqtvpks21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 450, \"x\": 977, \"u\": \"https://i.redd.it/l98vvqtvpks21.png\"}, \"m\": \"image/png\", \"id\": \"l98vvqtvpks21\"}}, \"name\": \"t3_bdqsi1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555426345.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone I\\u0026#39;ve got a problem with my org agenda while using global linum mode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a function that generates a window layout with left an agenda and right another file \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf i use global linum mode the tags are always shifted to the right, so you cant read everything. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/d6rhurfqpks21.png\\\"\\u003Ewith linum mode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/l98vvqtvpks21.png\\\"\\u003Ewithout linum mode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I solve this problem\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bdqsi1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bdqsi1/split_agenda_buffer_tag_visability_error_linum/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bdqsi1/split_agenda_buffer_tag_visability_error_linum/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555397545.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I define a timestamp that:\\n\\n\\u0026#x200B;\\n\\n* takes place on multiple consecutive days (date range)\\n* at a fixed time interval each day (e.g. 9am-5pm)\\n\\n\\u0026#x200B;\\n\\nI'm trying:\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E--\\u003C2019-04-30 Tue 09:00-21:00\\u003E\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E--\\u003C2019-04-30 Tue\\u003E\\n\\n\\u0026#x200B;\\n\\nBut only the first day show's a time, the rest is shown as a whole day event.\\n\\n\\u0026#x200B;\\n\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E\\n \\u003C2019-04-24 Wed 09:00-21:00\\u003E\\n \\u003C2019-04-25 Thu 09:00-21:00\\u003E\\n \\u003C2019-04-26 Fri 09:00-21:00\\u003E\\n \\u003C2019-04-27 Sat 09:00-21:00\\u003E\\n \\u003C2019-04-28 Sun 09:00-21:00\\u003E\\n \\u003C2019-04-28 Sun 09:00-21:00\\u003E\\n \\u003C2019-04-30 Tue 09:00-21:00\\u003E\\n\\nSeems to work, but is seriously broken =)\", \"author_fullname\": \"t2_dcfnv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Define a date range with time interval for each day?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bdekci\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555354229.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I define a timestamp that:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Etakes place on multiple consecutive days (date range)\\u003C/li\\u003E\\n\\u003Cli\\u003Eat a fixed time interval each day (e.g. 9am-5pm)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;--\\u0026lt;2019-04-30 Tue 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;--\\u0026lt;2019-04-30 Tue\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut only the first day show\\u0026#39;s a time, the rest is shown as a whole day event.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-24 Wed 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-25 Thu 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-26 Fri 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-27 Sat 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-28 Sun 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-28 Sun 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-30 Tue 09:00-21:00\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESeems to work, but is seriously broken =)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bdekci\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"poiu-\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bdekci/define_a_date_range_with_time_interval_for_each/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bdekci/define_a_date_range_with_time_interval_for_each/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555325429.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly reports from org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd9prf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm starting to use more advanced features of org and am loving it!\\n\\nI'd like to be able to export a weekly report from org, based on TODOs I've either marked done or TODOs that have a timestamped note underneath them within the week previous to the current day. For example, if today is Thursday and I finished TODO A on Tuesday and made notes to TODO B on Friday and Wednesday but did not update TODO C at all, I'd like the export to contain TODOS A and B, along with any notes made under them in the past week.\\n\\nI imagine someone has implemented something like this before. Is there a module or package that does it, or an org agenda export config that would do it?\\n\\nThank you!\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly reports from org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd7asx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555303180.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m starting to use more advanced features of org and am loving it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to be able to export a weekly report from org, based on TODOs I\\u0026#39;ve either marked done or TODOs that have a timestamped note underneath them within the week previous to the current day. For example, if today is Thursday and I finished TODO A on Tuesday and made notes to TODO B on Friday and Wednesday but did not update TODO C at all, I\\u0026#39;d like the export to contain TODOS A and B, along with any notes made under them in the past week.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI imagine someone has implemented something like this before. Is there a module or package that does it, or an org agenda export config that would do it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd7asx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"subreddit_subscribers\": 30003, \"created_utc\": 1555274380.0, \"media\": null, \"is_video\": false}], \"created\": 1555317009.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd9prf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bd7asx\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bd9prf/weekly_reports_from_org/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555288209.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"In Org, you arrange projects as a TODO with sub-TODOs (and so on). These TODOs may be ordered such that the first TODO in a project must be finished before the next TODO can start. I have two questions:\\n\\n1. Can you create an agenda that shows TODOs hierarchically? That is, an agenda that shows all the projects with sub-TODOs that need attention?\\n\\n2. Can an agenda be made to not show TODOs that are blocked by TODOs that still have to be done?\", \"author_fullname\": \"t2_baw354f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hierarchical Agendas?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd4ka9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555288456.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn Org, you arrange projects as a TODO with sub-TODOs (and so on). These TODOs may be ordered such that the first TODO in a project must be finished before the next TODO can start. I have two questions:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECan you create an agenda that shows TODOs hierarchically? That is, an agenda that shows all the projects with sub-TODOs that need attention?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECan an agenda be made to not show TODOs that are blocked by TODOs that still have to be done?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd4ka9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SmoothInternet\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555259656.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I try something like this:\\n\\n * Hello\\n ** World\\n Some *notes* /here/. \\n ** Foo\\n #+begin_src org\\n *Hello* +world+ /sailor/. =Emacs=.\\n #+end_src\\n \\nthe text inside the org src block does not get proper font-locking/syntax-highlighting for Org mode (e.g. `*Hello*` is not shown in bold; `+world+` is not struck-through, etc.). (If I open the src block in a new buffer with `C-c '` the proper font-locking applies in the new buffer.)\\n\\nLikewise, when the point is inside the org src block, the echo area displays `eldoc error: (error Variable binding depth exceeds max-specpdl-size)`.\\n\\nIs there any way around these issues with Org-in-Org? Or is this a limitation on embedded Org blocks in Org?\", \"author_fullname\": \"t2_8a43c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Getting proper font-locking/syntax-highlighting in embedded org src blocks in Org mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bct1in\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555206091.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I try something like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Hello\\n** World\\n Some *notes* /here/. \\n** Foo\\n#+begin_src org\\n*Hello* +world+ /sailor/. =Emacs=.\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ethe text inside the org src block does not get proper font-locking/syntax-highlighting for Org mode (e.g. \\u003Ccode\\u003E*Hello*\\u003C/code\\u003E is not shown in bold; \\u003Ccode\\u003E+world+\\u003C/code\\u003E is not struck-through, etc.). (If I open the src block in a new buffer with \\u003Ccode\\u003EC-c \\u0026#39;\\u003C/code\\u003E the proper font-locking applies in the new buffer.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELikewise, when the point is inside the org src block, the echo area displays \\u003Ccode\\u003Eeldoc error: (error Variable binding depth exceeds max-specpdl-size)\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way around these issues with Org-in-Org? Or is this a limitation on embedded Org blocks in Org?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bct1in\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"emacsomancer\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bct1in/getting_proper_fontlockingsyntaxhighlighting_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bct1in/getting_proper_fontlockingsyntaxhighlighting_in/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555177291.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is it possible to set (setq org-agenda-files) files as all .org files in a directory that contain \\\"project\\\" somewhere in their filename? I've been playing around with both (find-lisp-find-files) and also (file-expand-wildcards) but cannot make it work. Much documentation re \\\\*.org but not \\\\*project\\\\*.org. Many thanks in advance!\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Possible to set agenda files to files in a directory that match partial filename?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcnamp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555161639.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to set (setq org-agenda-files) files as all .org files in a directory that contain \\u0026quot;project\\u0026quot; somewhere in their filename? I\\u0026#39;ve been playing around with both (find-lisp-find-files) and also (file-expand-wildcards) but cannot make it work. Much documentation re *.org but not *project*.org. Many thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcnamp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcnamp/possible_to_set_agenda_files_to_files_in_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcnamp/possible_to_set_agenda_files_to_files_in_a/\", \"subreddit_subscribers\": 4808, \"created_utc\": 1555132839.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bcnamp\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["418874"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:28 GMT"], "x-ratelimit-remaining": ["592.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["8"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360207.090105,VS0,VE1310"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["393"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-12T17:23:28"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_bzas9r"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:29 GMT"], "x-ratelimit-remaining": ["591.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["9"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360209.127526,VS0,VE78"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["391"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_bzas9r"}, "recorded_at": "2019-06-12T17:23:29"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwoano\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"nnreddit-user\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560359536.0, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_3um52nx7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"Testing inline image links. Is it a url link or an inline image render?\", \"author_flair_css_class\": null, \"name\": \"t1_eqwoano\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": false, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/eqwoano/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"report_reasons\": null, \"link_author\": \"MeddyEvalNight\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"created\": 1560388336.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"rte_mode\": \"richtext\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzl5p5\", \"author_flair_template_id\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwe7dx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"nnreddit-user\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560356100.0, \"send_replies\": true, \"parent_id\": \"t3_bzl5p5\", \"score\": 1, \"author_fullname\": \"t2_3um52nx7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E\\u003E\\u003E\\u003E\\u003E aegisninja \\u003Caegisninja\\u003E writes:\\n\\n\\u003E https://www.youtube.com/watch?v=hWPKGP6n5qk\\u0026feature=youtu.be\\n\\nthis be a test\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eqwe7dx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eaegisninja \\u0026lt;aegisninja\\u0026gt; writes:\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=hWPKGP6n5qk\\u0026amp;feature=youtu.be\\\"\\u003Ehttps://www.youtube.com/watch?v=hWPKGP6n5qk\\u0026amp;feature=youtu.be\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003Ethis be a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": false, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzl5p5/test/eqwe7dx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzl5p5/test/\", \"report_reasons\": null, \"link_author\": \"aegisninja\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=hWPKGP6n5qk\\u0026feature=youtu.be\", \"created\": 1560384900.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"rte_mode\": \"markdown\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzo7q6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqw0q32\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Decahedran\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560351861.0, \"send_replies\": true, \"parent_id\": \"t3_bzo7q6\", \"score\": 1, \"author_fullname\": \"t2_17ck50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Where are you posting to? Wanna check it out\", \"link_title\": \"-\", \"author_flair_css_class\": null, \"name\": \"t1_eqw0q32\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhere are you posting to? Wanna check it out\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzo7q6/_/eqw0q32/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"report_reasons\": null, \"link_author\": \"OverlordMikan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"created\": 1560380661.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzmm85\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtkmc8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imguralbumbot\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560313512.0, \"send_replies\": true, \"parent_id\": \"t1_eqtklpz\", \"score\": 1, \"author_fullname\": \"t2_180i376\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"^(Hi, I'm a bot for linking direct images of albums with only 1 image)\\n\\n**https://i.imgur.com/g1bMj4I.jpg**\\n\\n^^[Source](https://github.com/AUTplayed/imguralbumbot) ^^| ^^[Why?](https://github.com/AUTplayed/imguralbumbot/blob/master/README.md) ^^| ^^[Creator](https://np.reddit.com/user/AUTplayed/) ^^| ^^[ignoreme](https://np.reddit.com/message/compose/?to=imguralbumbot\\u0026subject=ignoreme\\u0026message=ignoreme)^^| ^^[deletthis](https://np.reddit.com/message/compose/?to=imguralbumbot\\u0026subject=delet%20this\\u0026message=delet%20this%20eqtkmc8)\", \"link_title\": \"Imgur test\", \"author_flair_css_class\": null, \"name\": \"t1_eqtkmc8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Csup\\u003EHi, I\\u0026#39;m a bot for linking direct images of albums with only 1 image\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"https://i.imgur.com/g1bMj4I.jpg\\\"\\u003Ehttps://i.imgur.com/g1bMj4I.jpg\\u003C/a\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/AUTplayed/imguralbumbot\\\"\\u003ESource\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/AUTplayed/imguralbumbot/blob/master/README.md\\\"\\u003EWhy?\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://np.reddit.com/user/AUTplayed/\\\"\\u003ECreator\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://np.reddit.com/message/compose/?to=imguralbumbot\\u0026amp;subject=ignoreme\\u0026amp;message=ignoreme\\\"\\u003Eignoreme\\u003C/a\\u003E\\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://np.reddit.com/message/compose/?to=imguralbumbot\\u0026amp;subject=delet%20this\\u0026amp;message=delet%20this%20eqtkmc8\\\"\\u003Edeletthis\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzmm85/imgur_test/eqtkmc8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzmm85/imgur_test/\", \"report_reasons\": null, \"link_author\": \"GloomyTeddyBear96\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/vft9wGE\", \"created\": 1560342312.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzmm85\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtklpz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GloomyTeddyBear96\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560313501.0, \"send_replies\": true, \"parent_id\": \"t3_bzmm85\", \"score\": 1, \"author_fullname\": \"t2_3k2b5rqg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Imgur](https://imgur.com/a/vft9wGE)\", \"link_title\": \"Imgur test\", \"author_flair_css_class\": null, \"name\": \"t1_eqtklpz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/vft9wGE\\\"\\u003EImgur\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzmm85/imgur_test/eqtklpz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzmm85/imgur_test/\", \"report_reasons\": null, \"link_author\": \"GloomyTeddyBear96\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/vft9wGE\", \"created\": 1560342301.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eql2f7h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SilenceoftheSamz\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560135803.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_espuh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"nah\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eql2f7h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enah\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eql2f7h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560164603.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykfrf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqinbdb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560090124.0, \"send_replies\": true, \"parent_id\": \"t3_bykfrf\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I'm \\\\*pretty\\\\* sure I found it:\\n\\n\\\\[Not of This Earth\\\\]([https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz\\\\_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1](https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1))\", \"link_title\": \"NOTE post\", \"author_flair_css_class\": null, \"name\": \"t1_eqinbdb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m *pretty* sure I found it:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Not of This Earth](\\u003Ca href=\\\"https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\\"\\u003Ehttps://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykfrf/note_post/eqinbdb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykfrf/note_post/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykfrf/note_post/\", \"created\": 1560118924.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqin2uk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560090013.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\\\*\\\\[Umbrella Monster\\\\]\\\\*\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqin2uk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E*[Umbrella Monster]*\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqin2uk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118813.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimxup\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089940.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\\\[Umbrella Monster\\\\](\\\"[https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz\\\\_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1](https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1)\\\")\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimxup\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[Umbrella Monster](\\u0026quot;\\u003Ca href=\\\"https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\\"\\u003Ehttps://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\u003C/a\\u003E\\u0026quot;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimxup/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118740.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimw1d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089914.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[Umbrella Monster\\\\]([https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz\\\\_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1](https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1))\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimw1d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[Umbrella Monster](\\u003Ca href=\\\"https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\\"\\u003Ehttps://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimw1d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118714.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimf19\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089669.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\\\[Umbrella Monster\\\\]\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\" )\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimf19\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[Umbrella Monster]\\u0026quot;\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u003C/a\\u003E\\u0026quot; )\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimf19/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118469.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimcz5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089638.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n [Umbrella Monster](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimcz5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E[Umbrella Monster](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimcz5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118438.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimask\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089608.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n [Umbrella Monster](\\n\\n\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\" )\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimask\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E[Umbrella Monster](\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u003C/a\\u003E\\u0026quot; )\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimask/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118408.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqim6p5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089551.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"`[Umbrella Monster](`\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\" )\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqim6p5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003E[Umbrella Monster](\\u003C/code\\u003E\\u0026quot;\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u003C/a\\u003E\\u0026quot; )\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqim6p5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118351.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqim0dz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089457.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\"\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqim0dz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u003C/a\\u003E\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqim0dz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118257.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqilvoa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089394.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\u003Ca href=\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\"\\u003EUmbrella Monster\\u003C/a\\u003E\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqilvoa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;a href=\\u0026quot;[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\u0026quot;\\u0026gt;Umbrella Monster\\u0026lt;/a\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqilvoa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118194.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqilpg6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089308.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\u003Ca href=\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\\\\\\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003EUmbrella](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella)\\\"\\u003E\\u003C/a\\u003E\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqilpg6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;a href=\\u0026quot;[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\\\\\\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u0026quot;\\u0026gt;Umbrella](\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg%5D(http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella)%22%3E\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella)\\u0026quot;\\u0026gt;\\u003C/a\\u003E\\u0026lt;/a\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqilpg6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118108.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqilj47\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089217.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\u003Ca href=\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\\\\\\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\\](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\"\\u003EUmbrella](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella)\\u003C/a\\u003E\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqilj47\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;a href=\\u0026quot;[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\\\\\\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\\](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\u0026quot;\\u0026gt;Umbrella](\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg%5D(http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella\\u003C/a\\u003E)\\u0026lt;/a\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqilj47/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118017.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqilgsh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089186.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003Ca href=\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\"\\u003EUmbrella\\u003C/a\\u003E\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqilgsh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;a href=\\u0026quot;[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\u0026quot;\\u0026gt;Umbrella\\u0026lt;/a\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqilgsh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560117986.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bydio9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqglkyt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pd50\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560038304.0, \"send_replies\": true, \"parent_id\": \"t3_bydio9\", \"score\": 1, \"author_fullname\": \"t2_3wp9tjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"higher res image: [https://shroomposter.com](https://shroomposter.com/)\", \"link_title\": \"test 300ppi tinypng\", \"author_flair_css_class\": null, \"name\": \"t1_eqglkyt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehigher res image: \\u003Ca href=\\\"https://shroomposter.com/\\\"\\u003Ehttps://shroomposter.com\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bydio9/test_300ppi_tinypng/eqglkyt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bydio9/test_300ppi_tinypng/\", \"report_reasons\": null, \"link_author\": \"pd50\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/g63xs5ndn7331.png\", \"created\": 1560067104.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bydio9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqgjotx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ExtraAnchovies\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560037453.0, \"send_replies\": true, \"parent_id\": \"t3_bydio9\", \"score\": 1, \"author_fullname\": \"t2_5kogj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"trippy\", \"link_title\": \"test 300ppi tinypng\", \"author_flair_css_class\": null, \"name\": \"t1_eqgjotx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etrippy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bydio9/test_300ppi_tinypng/eqgjotx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bydio9/test_300ppi_tinypng/\", \"report_reasons\": null, \"link_author\": \"pd50\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/g63xs5ndn7331.png\", \"created\": 1560066253.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_an940a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqgdmdi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"swornintheratking\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560034822.0, \"send_replies\": true, \"parent_id\": \"t1_enyeogf\", \"score\": 1, \"author_fullname\": \"t2_165u0z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://sxyprn.com/post/5cea75f1d7ffa.html?sk=Jordan-Kennedy\\u0026so=0\\u0026ss=latest](https://sxyprn.com/post/5cea75f1d7ffa.html?sk=Jordan-Kennedy\\u0026so=0\\u0026ss=latest)\", \"link_title\": \"Prn\", \"author_flair_css_class\": null, \"name\": \"t1_eqgdmdi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://sxyprn.com/post/5cea75f1d7ffa.html?sk=Jordan-Kennedy\\u0026amp;so=0\\u0026amp;ss=latest\\\"\\u003Ehttps://sxyprn.com/post/5cea75f1d7ffa.html?sk=Jordan-Kennedy\\u0026amp;so=0\\u0026amp;ss=latest\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/an940a/prn/eqgdmdi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/an940a/prn/\", \"report_reasons\": null, \"link_author\": \"swornintheratking\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/an940a/prn/\", \"created\": 1560063622.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bydbbm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqg6p8h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BooCMB\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560032371.0, \"send_replies\": true, \"parent_id\": \"t1_eqg6o86\", \"score\": 1, \"author_fullname\": \"t2_2e1vudyl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hey /u/CommonMisspellingBot, just a quick heads up: \\nYour spelling hints are really shitty because they're all essentially \\\"remember the fucking spelling of the fucking word\\\".\\n\\nAnd your fucking delete function doesn't work. You're useless.\\n\\nHave a nice day!\\n\\n[^Save ^your ^breath, ^I'm ^a ^bot.](https://www.reddit.com/user/BooCMB/comments/9vnzpd/faq/)\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eqg6p8h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey \\u003Ca href=\\\"/u/CommonMisspellingBot\\\"\\u003E/u/CommonMisspellingBot\\u003C/a\\u003E, just a quick heads up:\\u003Cbr/\\u003E\\nYour spelling hints are really shitty because they\\u0026#39;re all essentially \\u0026quot;remember the fucking spelling of the fucking word\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd your fucking delete function doesn\\u0026#39;t work. You\\u0026#39;re useless.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHave a nice day!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/user/BooCMB/comments/9vnzpd/faq/\\\"\\u003E\\u003Csup\\u003ESave\\u003C/sup\\u003E \\u003Csup\\u003Eyour\\u003C/sup\\u003E \\u003Csup\\u003Ebreath,\\u003C/sup\\u003E \\u003Csup\\u003EI\\u0026#39;m\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bydbbm/test/eqg6p8h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bydbbm/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/vg4s1oifj7331.jpg\", \"created\": 1560061171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bydbbm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqg6o86\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"CommonMisspellingBot\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560032361.0, \"send_replies\": true, \"parent_id\": \"t1_eqg6ns5\", \"score\": 1, \"author_fullname\": \"t2_15yi94\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hey, Arch\\\\_girl, just a quick heads-up: \\n**recieve** is actually spelled **receive**. You can remember it by **e before i**. \\nHave a nice day!\\n\\n^^^^The ^^^^parent ^^^^commenter ^^^^can ^^^^reply ^^^^with ^^^^'delete' ^^^^to ^^^^delete ^^^^this ^^^^comment.\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eqg6o86\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, Arch_girl, just a quick heads-up:\\u003Cbr/\\u003E\\n\\u003Cstrong\\u003Erecieve\\u003C/strong\\u003E is actually spelled \\u003Cstrong\\u003Ereceive\\u003C/strong\\u003E. You can remember it by \\u003Cstrong\\u003Ee before i\\u003C/strong\\u003E.\\u003Cbr/\\u003E\\nHave a nice day!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003EThe\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Eparent\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Ecommenter\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Ecan\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Ereply\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Ewith\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u0026#39;delete\\u0026#39;\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Eto\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Edelete\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Ethis\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Ecomment.\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bydbbm/test/eqg6o86/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bydbbm/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/vg4s1oifj7331.jpg\", \"created\": 1560061161.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560032542.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bydbbm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqg6ns5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Arch_girl\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560032356.0, \"send_replies\": true, \"parent_id\": \"t3_bydbbm\", \"score\": 1, \"author_fullname\": \"t2_f79gn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"This is the link to my [Budget Spreadsheet](https://docs.google.com/spreadsheets/d/1CZfFnNBsVJxnxlE2GTv9o2GtEN4rzfZ7o8Yqe4KmAQ8/copy)\\n\\nI see many people asking for advise on budgeting and the main advice is to keep a track of money flow, and to write down all of the expenses.\\n\\nI have been using a spreadsheet for a couple of years, constantly tweaking it to my needs. In it I keep track of the money I recieve and try to keep track of every expense i make. It helps to see where the money is going and it also already helped me catch some forgotten bills before they were overdue. For me it also helps with impulse buys, because knowing that I will have to write it down makes me rethink about it.\\n\\nHere is a copy version of that, which can be costumized as needed.\\n\\nIt is based on a free template, altered to be able to continuously track transations. There is no need to make a new one every month and all the transactions history stay in one file.It\\u00b4s on Google Sheets so it is acessible in any computer with internet and also on mobile.\\n\\nThere are instructions inside the file.\\n\\nI hope that someone can take use of it and any suggestions are welcome.\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eqg6ns5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is the link to my \\u003Ca href=\\\"https://docs.google.com/spreadsheets/d/1CZfFnNBsVJxnxlE2GTv9o2GtEN4rzfZ7o8Yqe4KmAQ8/copy\\\"\\u003EBudget Spreadsheet\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI see many people asking for advise on budgeting and the main advice is to keep a track of money flow, and to write down all of the expenses.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been using a spreadsheet for a couple of years, constantly tweaking it to my needs. In it I keep track of the money I recieve and try to keep track of every expense i make. It helps to see where the money is going and it also already helped me catch some forgotten bills before they were overdue. For me it also helps with impulse buys, because knowing that I will have to write it down makes me rethink about it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is a copy version of that, which can be costumized as needed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is based on a free template, altered to be able to continuously track transations. There is no need to make a new one every month and all the transactions history stay in one file.It\\u00b4s on Google Sheets so it is acessible in any computer with internet and also on mobile.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere are instructions inside the file.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI hope that someone can take use of it and any suggestions are welcome.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bydbbm/test/eqg6ns5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bydbbm/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/vg4s1oifj7331.jpg\", \"created\": 1560061156.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bybucw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqg6kwd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pd50\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560032326.0, \"send_replies\": true, \"parent_id\": \"t3_bybucw\", \"score\": 1, \"author_fullname\": \"t2_3wp9tjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://shroomposter.com](https://shroomposter.com/)\", \"link_title\": \"tinypng test\", \"author_flair_css_class\": null, \"name\": \"t1_eqg6kwd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://shroomposter.com/\\\"\\u003Ehttps://shroomposter.com\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bybucw/tinypng_test/eqg6kwd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bybucw/tinypng_test/\", \"report_reasons\": null, \"link_author\": \"pd50\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/n715q8p3s6331.png\", \"created\": 1560061126.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bybgq8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqfjuu3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pd50\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560021974.0, \"send_replies\": true, \"parent_id\": \"t3_bybgq8\", \"score\": 1, \"author_fullname\": \"t2_3wp9tjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://shroomposter.com/](https://shroomposter.com/)\", \"link_title\": \"test larger jpeg\", \"author_flair_css_class\": null, \"name\": \"t1_eqfjuu3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://shroomposter.com/\\\"\\u003Ehttps://shroomposter.com/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bybgq8/test_larger_jpeg/eqfjuu3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bybgq8/test_larger_jpeg/\", \"report_reasons\": null, \"link_author\": \"pd50\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/ei1vdxvml6331.jpg\", \"created\": 1560050774.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byamfk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqf7zu2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pd50\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560016564.0, \"send_replies\": true, \"parent_id\": \"t3_byamfk\", \"score\": 1, \"author_fullname\": \"t2_3wp9tjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://shroomposter.com/](https://shroomposter.com/)\", \"link_title\": \"jpeg test\", \"author_flair_css_class\": null, \"name\": \"t1_eqf7zu2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://shroomposter.com/\\\"\\u003Ehttps://shroomposter.com/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/byamfk/jpeg_test/eqf7zu2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/byamfk/jpeg_test/\", \"report_reasons\": null, \"link_author\": \"pd50\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/iwrzauii36331.jpg\", \"created\": 1560045364.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxxrzi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqafucn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WikiTextBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559932103.0, \"send_replies\": true, \"parent_id\": \"t1_eqaftwp\", \"score\": 1, \"author_fullname\": \"t2_32duad4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Marvin the Paranoid Android**\\n\\nMarvin the Paranoid Android is a fictional character in The Hitchhiker's Guide to the Galaxy series by Douglas Adams. Marvin is the ship's robot aboard the starship Heart of Gold. Originally built as one of many failed prototypes of Sirius Cybernetics Corporation's GPP (Genuine People Personalities) technology, Marvin is afflicted with severe depression and boredom, in part because he has a \\\"brain the size of a planet\\\" which he is seldom, if ever, given the chance to use. Indeed, the true horror of Marvin's existence is that no task he could be given would occupy even the tiniest fraction of his vast intellect.\\n\\n***\\n\\n^[ [^PM](https://www.reddit.com/message/compose?to=kittens_from_space) ^| [^Exclude ^me](https://reddit.com/message/compose?to=WikiTextBot\\u0026message=Excludeme\\u0026subject=Excludeme) ^| [^Exclude ^from ^subreddit](https://np.reddit.com/r/PostPreview/about/banned) ^| [^FAQ ^/ ^Information](https://np.reddit.com/r/WikiTextBot/wiki/index) ^| [^Source](https://github.com/kittenswolf/WikiTextBot) ^]\\n^Downvote ^to ^remove ^| ^v0.28\", \"link_title\": \"test baby test baby 123\", \"author_flair_css_class\": null, \"name\": \"t1_eqafucn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EMarvin the Paranoid Android\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMarvin the Paranoid Android is a fictional character in The Hitchhiker\\u0026#39;s Guide to the Galaxy series by Douglas Adams. Marvin is the ship\\u0026#39;s robot aboard the starship Heart of Gold. Originally built as one of many failed prototypes of Sirius Cybernetics Corporation\\u0026#39;s GPP (Genuine People Personalities) technology, Marvin is afflicted with severe depression and boredom, in part because he has a \\u0026quot;brain the size of a planet\\u0026quot; which he is seldom, if ever, given the chance to use. Indeed, the true horror of Marvin\\u0026#39;s existence is that no task he could be given would occupy even the tiniest fraction of his vast intellect.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E[\\u003C/sup\\u003E \\u003Ca href=\\\"https://www.reddit.com/message/compose?to=kittens_from_space\\\"\\u003E\\u003Csup\\u003EPM\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Ca href=\\\"https://reddit.com/message/compose?to=WikiTextBot\\u0026amp;message=Excludeme\\u0026amp;subject=Excludeme\\\"\\u003E\\u003Csup\\u003EExclude\\u003C/sup\\u003E \\u003Csup\\u003Eme\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Ca href=\\\"https://np.reddit.com/r/PostPreview/about/banned\\\"\\u003E\\u003Csup\\u003EExclude\\u003C/sup\\u003E \\u003Csup\\u003Efrom\\u003C/sup\\u003E \\u003Csup\\u003Esubreddit\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Ca href=\\\"https://np.reddit.com/r/WikiTextBot/wiki/index\\\"\\u003E\\u003Csup\\u003EFAQ\\u003C/sup\\u003E \\u003Csup\\u003E/\\u003C/sup\\u003E \\u003Csup\\u003EInformation\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Ca href=\\\"https://github.com/kittenswolf/WikiTextBot\\\"\\u003E\\u003Csup\\u003ESource\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E]\\u003C/sup\\u003E\\n\\u003Csup\\u003EDownvote\\u003C/sup\\u003E \\u003Csup\\u003Eto\\u003C/sup\\u003E \\u003Csup\\u003Eremove\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Csup\\u003Ev0.28\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxxrzi/test_baby_test_baby_123/eqafucn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxxrzi/test_baby_test_baby_123/\", \"report_reasons\": null, \"link_author\": \"nnreddit-user\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxxrzi/test_baby_test_baby_123/\", \"created\": 1559960903.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560059410.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsgv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cbr7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Heroquetarro10\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559899469.0, \"send_replies\": true, \"parent_id\": \"t3_bxsgv0\", \"score\": 1, \"author_fullname\": \"t2_288py4gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E \\u003Etest test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test\\n\\u003E test\\n\\nYes\", \"link_title\": \"Text\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cbr7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etest test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test\\ntest\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYes\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/eq9cbr7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"report_reasons\": null, \"link_author\": \"Heroquetarro10\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"created\": 1559928269.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560060134.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsgv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9c8db\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Heroquetarro10\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559899311.0, \"send_replies\": true, \"parent_id\": \"t3_bxsgv0\", \"score\": 1, \"author_fullname\": \"t2_288py4gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E test \\u003E\\u003E test\", \"link_title\": \"Text\", \"author_flair_css_class\": null, \"name\": \"t1_eq9c8db\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etest \\u0026gt;\\u0026gt; test\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/eq9c8db/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"report_reasons\": null, \"link_author\": \"Heroquetarro10\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"created\": 1559928111.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwsi3l\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq4tbku\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"testforcal\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559785341.0, \"send_replies\": true, \"parent_id\": \"t3_bwsi3l\", \"score\": 1, \"author_fullname\": \"t2_3wac7yjb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"test!\", \"link_title\": \"I CAN GO 15 SECONDS WITH ANYTHING. Howard looks like he is going to make doodie in his pants when GB hijacks his mic. Would GB walk away from this encounter if he bullied Howard in 2019? T O P L E S S\", \"author_flair_css_class\": null, \"name\": \"t1_eq4tbku\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/eq4tbku/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/\", \"report_reasons\": null, \"link_author\": \"Gooforme\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\\u0026t=2s\", \"created\": 1559814141.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwme1e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyizc2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"InsiderMemeBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559637515.0, \"send_replies\": true, \"parent_id\": \"t3_bwme1e\", \"score\": 1, \"author_fullname\": \"t2_2sm6difp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Template](/r/InsiderMemeTrading/comments/bwmd74/test/)\", \"link_title\": \"Image test\", \"author_flair_css_class\": null, \"name\": \"t1_epyizc2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/InsiderMemeTrading/comments/bwmd74/test/\\\"\\u003ETemplate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwme1e/image_test/epyizc2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwme1e/image_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/xju3qepdxa231.jpg\", \"created\": 1559666315.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwme78\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyiz7w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Crywren\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559637509.0, \"send_replies\": true, \"parent_id\": \"t3_bwme78\", \"score\": 1, \"author_fullname\": \"t2_18vy1b\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif](https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif)\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_epyiz7w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif\\\"\\u003Ehttps://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwme78/test/epyiz7w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwme78/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/vzxqgtbhxa231.png\", \"created\": 1559666309.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmads\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyih18\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"InsiderMemeBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559636627.0, \"send_replies\": true, \"parent_id\": \"t3_bwmads\", \"score\": 1, \"author_fullname\": \"t2_2sm6difp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Template](/r/InsiderMemeTrading/comments/bwmajp/cap_pointing/)\", \"link_title\": \"yeet\", \"author_flair_css_class\": null, \"name\": \"t1_epyih18\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/InsiderMemeTrading/comments/bwmajp/cap_pointing/\\\"\\u003ETemplate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwmads/yeet/epyih18/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwmads/yeet/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/b0ad3b9gua231.jpg\", \"created\": 1559665427.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw86r0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epwwjmw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erebusmaster\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559586407.0, \"send_replies\": true, \"parent_id\": \"t3_bw86r0\", \"score\": 1, \"author_fullname\": \"t2_gbhji\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"success!\", \"link_title\": \"testagain3\", \"author_flair_css_class\": null, \"name\": \"t1_epwwjmw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Esuccess!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bw86r0/testagain3/epwwjmw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"report_reasons\": null, \"link_author\": \"erebusmaster\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"created\": 1559615207.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epn2c0q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Brewsterion\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559320247.0, \"send_replies\": true, \"parent_id\": \"t1_epn250f\", \"score\": 1, \"author_fullname\": \"t2_118qqr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"A few days usually, just send it to the mods to get it approved. They\\u2019ll give some more feedback if it\\u2019s needed.\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_epn2c0q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA few days usually, just send it to the mods to get it approved. They\\u2019ll give some more feedback if it\\u2019s needed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/epn2c0q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559349047.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epn250f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SYwaves\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559320172.0, \"send_replies\": true, \"parent_id\": \"t1_eplphoy\", \"score\": 2, \"author_fullname\": \"t2_2j4j6rg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks man. I\\u2019m still thinking of making more edits, but 3790 makes taking the declass to any solid conclusion difficult:P\\n\\nAs a side note, how long does it usually take to get approved?\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_epn250f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks man. I\\u2019m still thinking of making more edits, but 3790 makes taking the declass to any solid conclusion difficult:P\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a side note, how long does it usually take to get approved?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/epn250f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559348972.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv7huc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epm852r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"binjajer\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559309424.0, \"send_replies\": false, \"parent_id\": \"t3_bv7huc\", \"score\": 1, \"author_fullname\": \"t2_3g10qxu5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Tired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens? \\n\\n\\nCheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.) \\n\\n\\n[https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/](https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/) \\n\\n\\nSquadron discord details will be disbursed upon application. \\n\\n\\n Fly bigly, commanders!\", \"link_title\": \"Make the Galaxy Great Again!\", \"author_flair_css_class\": null, \"name\": \"t1_epm852r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\\"\\u003Ehttps://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESquadron discord details will be disbursed upon application. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFly bigly, commanders!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/epm852r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"created\": 1559338224.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplphoy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Brewsterion\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559300826.0, \"send_replies\": true, \"parent_id\": \"t3_bv2mv5\", \"score\": 1, \"author_fullname\": \"t2_118qqr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"As a frequent poster to SCPD, I like what you\\u2019ve done here with explaining all the references and the main theme of the article. Good luck on getting it approved by mods.\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_eplphoy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a frequent poster to SCPD, I like what you\\u2019ve done here with explaining all the references and the main theme of the article. Good luck on getting it approved by mods.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/eplphoy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559329626.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buz6bd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epjgsbw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dwolfj\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559253716.0, \"send_replies\": true, \"parent_id\": \"t3_buz6bd\", \"score\": 1, \"author_fullname\": \"t2_2awf2pwl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" ............................................________ \\n ....................................,.-'\\\"...................``~., \\n .............................,.-\\\"...................................\\\"-., \\n .........................,/...............................................\\\":, \\n .....................,?......................................................, \\n .................../...........................................................,} \\n ................./......................................................,:`^`..} \\n .............../...................................................,:\\\"........./ \\n ..............?.....__.........................................:`.........../ \\n ............./__.(.....\\\"~-,_..............................,:`........../ \\n .........../(_....\\\"~,_........\\\"~,_....................,:`........_/ \\n ..........{.._$;_......\\\"=,_.......\\\"-,_.......,.-~-,},.~\\\";/....} \\n ...........((.....*~_.......\\\"=-._......\\\";,,./`..../\\\"............../ \\n ...,,,___.`~,......\\\"~.,....................`.....}............../ \\n ............(....`=-,,.......`........................(......;_,,-\\\" \\n ............/.`~,......`-...................................../ \\n .............`~.*-,.....................................|,./.....,__ \\n ,,_..........}.\\u003E-._...................................|..............`=~-, \\n .....`=~-,__......`,................................. \\n ...................`=~-,,.,............................... \\n ................................`:,,...........................`..............__ \\n .....................................`=-,...................,%`\\u003E--==`` \\n ........................................_..........._,-%.......` \\n ...................................,\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_epjgsbw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E............................................________ \\n....................................,.-\\u0026#39;\\u0026quot;...................``~., \\n.............................,.-\\u0026quot;...................................\\u0026quot;-., \\n.........................,/...............................................\\u0026quot;:, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\u0026quot;........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\u0026quot;~-,_..............................,:`........../ \\n.........../(_....\\u0026quot;~,_........\\u0026quot;~,_....................,:`........_/ \\n..........{.._$;_......\\u0026quot;=,_.......\\u0026quot;-,_.......,.-~-,},.~\\u0026quot;;/....} \\n...........((.....*~_.......\\u0026quot;=-._......\\u0026quot;;,,./`..../\\u0026quot;............../ \\n...,,,___.`~,......\\u0026quot;~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\u0026quot; \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u0026gt;-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u0026gt;--==`` \\n........................................_..........._,-%.......` \\n...................................,\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/buz6bd/test/epjgsbw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"report_reasons\": null, \"link_author\": \"dwolfj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"created\": 1559282516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbhff3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559142650.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts\\n**1 Correct Seed:** 15pts\\n**2 Correct Seeds:** +30pts(45 total)\\n**(S)emi(F)inalist:** 180pts\\n**(F)inalist:** 380pts\\n**(W)inners:** 780pts\\n**Score in favor of your winner:** 190pts\\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | |\\n | | | | | | |\\n Group A| | | | | | |\\nNRG|QF |1 |SF |F |W |4-3 | |\\nINTZ|QF |2 | | | | | |\\nPSG| | | | | | | WC |\\n | | | | | | |\\nGroup B | | | | | | | \\nRV | | | | | | | |\\nG2 |QF |1 |SF |F | | | |\\nOOO |QF |2 | | | | | |\\n | | | | | | |\\nGroup C | | | | | | |\\nRNG |QF |1 |SF | | | | |\\nFCB |QF |2 |SF | | | | |\\nRGE | | | | | | | |\\n | | | | | | |\\nGroup D | | | | | | |\\nLKE |QF |2 | | | | | |\\nC9 | | | | | | | WC |\\nTT |QF |1 | | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbhff3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts\\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15pts\\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30pts(45 total)\\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180pts\\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380pts\\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780pts\\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190pts\\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | |\\n | | | | | | |\\n Group A| | | | | | |\\nNRG|QF |1 |SF |F |W |4-3 | |\\nINTZ|QF |2 | | | | | |\\nPSG| | | | | | | WC |\\n | | | | | | |\\nGroup B | | | | | | | \\nRV | | | | | | | |\\nG2 |QF |1 |SF |F | | | |\\nOOO |QF |2 | | | | | |\\n | | | | | | |\\nGroup C | | | | | | |\\nRNG |QF |1 |SF | | | | |\\nFCB |QF |2 |SF | | | | |\\nRGE | | | | | | | |\\n | | | | | | |\\nGroup D | | | | | | |\\nLKE |QF |2 | | | | | |\\nC9 | | | | | | | WC |\\nTT |QF |1 | | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbhff3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559171450.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbfzp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559142036.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n(Q)uarter(F)inalist: 100 pts 1 Correct Seed: 15 pts 2 Correct Seeds: +30 pts(45 total) (S)emi(F)inalist: 180 pts (F)inalist: 380 pts (W)inners: 780 pts Score in favor of your winner: 190 pts Score in favor of your winner AND you guessed the other Finalist: +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\nWhat predictions would look like is this...\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n| | | | | | | | | | | | \\nGroup A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 | \\nINTZ|QF |2 | | | | | \\nPSG| | | | | | | \\nWC | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | | \\nOOO |QF |2 | | | | | | | | | | | \\nGroup C | | | | | | \\nRNG |QF |1 |SF | | | | \\nFCB |QF |2 |SF | | | | \\nRGE | | | | | | | | | | | | | \\nGroup D | | | | | | \\nLKE |QF |2 | | | | | \\nC9 | | | | | | | WC \\nTT |QF |1 | | | | |\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\nAdvice: Take the teams\\n\\nA1 v B2 D1 v C2\\n\\nB1 v A2 C1 v D2\\n\\nAnd substitute them with your predictions to keep track:\\n\\nNRG v OOO TT v FCB\\n\\nG2 v INTZ RNG v LKE\\n\\n Disclaimer: I\\u2019ll post this about every week and a couple days before LAN.\\n\\nRules and Guidelines:\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game. Please submit your predictions as unedited comments or Dms to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\nQuestions\\n\\nWhy am I not doing Dreamhack? I haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\nWill I do this for other tournaments in the future? For majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\nWill there be analysis on my part? Likely, but not guaranteed. I may try to get someone else on board.\\n\\nWhen and where will results be posted? Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n\\nNOTES:\\n\\nI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\nTwo Questions From Me:\\n\\nHow would you like the Wildcard picks to work? I\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n\\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be?\\n\\nThe table format will be in the comments.\\n\\nOne with a blank sheet. The other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbfzp8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Q)uarter(F)inalist: 100 pts 1 Correct Seed: 15 pts 2 Correct Seeds: +30 pts(45 total) (S)emi(F)inalist: 180 pts (F)inalist: 380 pts (W)inners: 780 pts Score in favor of your winner: 190 pts Score in favor of your winner AND you guessed the other Finalist: +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n| | | | | | | | | | | | \\nGroup A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 | \\nINTZ|QF |2 | | | | | \\nPSG| | | | | | | \\nWC | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | | \\nOOO |QF |2 | | | | | | | | | | | \\nGroup C | | | | | | \\nRNG |QF |1 |SF | | | | \\nFCB |QF |2 |SF | | | | \\nRGE | | | | | | | | | | | | | \\nGroup D | | | | | | \\nLKE |QF |2 | | | | | \\nC9 | | | | | | | WC \\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2 D1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2 C1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO TT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ RNG v LKE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERules and Guidelines:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game. Please submit your predictions as unedited comments or Dms to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuestions\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy am I not doing Dreamhack? I haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWill I do this for other tournaments in the future? For majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWill there be analysis on my part? Likely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen and where will results be posted? Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENOTES:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETwo Questions From Me:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work? I\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet. The other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbfzp8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170836.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbekt2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559141502.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts \\n**1 Correct Seed:** 15 pts \\n**2 Correct Seeds:** +30 pts(45 total) \\n**(S)emi(F)inalist:** 180 pts \\n**(F)inalist:** 380 pts \\n**(W)inners:** 780 pts \\n**Score in favor of your winner:** 190 pts \\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total) \\n \\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbekt2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts \\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15 pts \\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30 pts(45 total) \\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180 pts \\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380 pts \\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780 pts \\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190 pts \\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbekt2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170302.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbe3h9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559141322.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Why won\\u2019t the table work\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbe3h9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy won\\u2019t the table work\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbe3h9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170122.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559109977.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu790e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep9gim2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"elcocotero\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559109744.0, \"send_replies\": true, \"parent_id\": \"t3_bu790e\", \"score\": 1, \"author_fullname\": \"t2_ps7sm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"That would be [Danza Kuduro by puerto rican reggeaton artist Don Omar](https://www.youtube.com/watch?v=7zp1TbLFPp8).\\n\\n Now i'm not a big reggaeton fan but this guy's one of the best. \\\"Sali\\u00f3 el sol\\\" is amazing. Also \\\"Diva Virtual\\\".\", \"link_title\": \"Upcoming Tile Based Strategy Game: \\\"Claim Game\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ep9gim2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat would be \\u003Ca href=\\\"https://www.youtube.com/watch?v=7zp1TbLFPp8\\\"\\u003EDanza Kuduro by puerto rican reggeaton artist Don Omar\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow i\\u0026#39;m not a big reggaeton fan but this guy\\u0026#39;s one of the best. \\u0026quot;Sali\\u00f3 el sol\\u0026quot; is amazing. Also \\u0026quot;Diva Virtual\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/ep9gim2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/\", \"created\": 1559138544.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu8y26\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep8kbww\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dekarde\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559096074.0, \"send_replies\": true, \"parent_id\": \"t3_bu8y26\", \"score\": 1, \"author_fullname\": \"t2_jb0ym\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"field 1\", \"link_title\": \"up-test\", \"author_flair_css_class\": null, \"name\": \"t1_ep8kbww\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efield 1\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bu8y26/uptest/ep8kbww/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"report_reasons\": null, \"link_author\": \"Dekarde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"created\": 1559124874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bt0w6n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eosnfxq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"User09060657542\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558826026.0, \"send_replies\": true, \"parent_id\": \"t3_bt0w6n\", \"score\": 1, \"author_fullname\": \"t2_f4ra2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"..\", \"link_title\": \"testing 123\", \"author_flair_css_class\": null, \"name\": \"t1_eosnfxq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bt0w6n/testing_123/eosnfxq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"report_reasons\": null, \"link_author\": \"User09060657542\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"created\": 1558854826.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsyl0k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoruj65\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"T-8-0-0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558813105.0, \"send_replies\": true, \"parent_id\": \"t3_bsyl0k\", \"score\": 1, \"author_fullname\": \"t2_2zkr00l4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003Cblockquote class=\\\"imgur-embed-pub\\\" lang=\\\"en\\\" data-id=\\\"a/MWQxuVC\\\"\\u003E\\u003Ca href=\\\"[//imgur.com/MWQxuVC](//imgur.com/MWQxuVC)\\\"\\u003EBvS\\u003C/a\\u003E\\u003C/blockquote\\u003E\\u003Cscript async src=\\\"[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\", \"link_title\": \"BvS\", \"author_flair_css_class\": null, \"name\": \"t1_eoruj65\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;blockquote class=\\u0026quot;imgur-embed-pub\\u0026quot; lang=\\u0026quot;en\\u0026quot; data-id=\\u0026quot;a/MWQxuVC\\u0026quot;\\u0026gt;\\u0026lt;a href=\\u0026quot;[//imgur.com/MWQxuVC](//imgur.com/MWQxuVC)\\u0026quot;\\u0026gt;BvS\\u0026lt;/a\\u0026gt;\\u0026lt;/blockquote\\u0026gt;\\u0026lt;script async src=\\u0026quot;[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\u0026quot; charset=\\u0026quot;utf-8\\u0026quot;\\u0026gt;\\u0026lt;/script\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bsyl0k/bvs/eoruj65/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"report_reasons\": null, \"link_author\": \"T-8-0-0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"created\": 1558841905.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsveoo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoqtetr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"YOUREABOT\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558796617.0, \"send_replies\": true, \"parent_id\": \"t3_bsveoo\", \"score\": 1, \"author_fullname\": \"t2_3b1gaoke\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"dang, i never noticed the sound of kane cocking the gun.\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eoqtetr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edang, i never noticed the sound of kane cocking the gun.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bsveoo/test/eoqtetr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bsveoo/test/\", \"report_reasons\": null, \"link_author\": \"Ihuarraquax__\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=goQiwNZzoVA\", \"created\": 1558825417.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bskwuj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoo6l31\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558730695.0, \"send_replies\": true, \"parent_id\": \"t3_bskwuj\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"who who what what\", \"link_title\": \"Pokecube II\", \"author_flair_css_class\": null, \"name\": \"t1_eoo6l31\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewho who what what\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bskwuj/pokecube_ii/eoo6l31/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"report_reasons\": null, \"link_author\": \"vandergus\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"created\": 1558759495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs053g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eonr18y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"IncendiaryGames\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558719419.0, \"send_replies\": true, \"parent_id\": \"t1_eon0nk4\", \"score\": 1, \"author_fullname\": \"t2_kz0h4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks Ed! I just realized I accidentally linked you to my post preview post and not the one on /r/hometheater. Here is that link if you want to repost your comment there: \\nhttps://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eonr18y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks Ed! I just realized I accidentally linked you to my post preview post and not the one on \\u003Ca href=\\\"/r/hometheater\\\"\\u003E/r/hometheater\\u003C/a\\u003E. Here is that link if you want to repost your comment there: \\n\\u003Ca href=\\\"https://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\\\"\\u003Ehttps://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs053g/test/eonr18y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"report_reasons\": null, \"link_author\": \"IncendiaryGames\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"created\": 1558748219.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs053g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eon0nk4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"svsound\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558700754.0, \"send_replies\": true, \"parent_id\": \"t3_bs053g\", \"score\": 1, \"author_fullname\": \"t2_i0b8n\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Considering you're not going to be moving for 5+ years, I would size the subwoofer to your current system/loudspeakers and an apartment setting where you listen at -15 to -10. \\n\\nAn SB-4000 would be a good fit for your application, providing tight, accurate, punchy bass with excellent deep extension. You'll have plenty of SPL for the current playback level of -15 to -10. \\n\\nAfter running Audyssey XT32 in the Denon, make sure all speakers are set to Small and the crossovers should be fronts 60 Hz, center 80 Hz, surrounds 80 Hz and overheads 100-120 Hz (unless Audyssey sets them higher). \\n\\nUnder Bass the subwoofer mode should be LFE and the LPF/LFE should be 120 Hz. \\n\\nXT32 will have you level match the subwoofer to 75 dB as part of the initial set-up. This will likely result in the subwoofer volume set to somewhere in the -20 to -15 range (which is fine). The Denon will probably trim-out the subwoofer channel somewhere in the low negative range (which is also fine). \\n\\nIf you want to run the subwoofer channel hotter than the Audyssey level match, then increase the sub channel in the Denon by a few dB.\\n\\nEd M - SVS\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eon0nk4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EConsidering you\\u0026#39;re not going to be moving for 5+ years, I would size the subwoofer to your current system/loudspeakers and an apartment setting where you listen at -15 to -10. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn SB-4000 would be a good fit for your application, providing tight, accurate, punchy bass with excellent deep extension. You\\u0026#39;ll have plenty of SPL for the current playback level of -15 to -10. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter running Audyssey XT32 in the Denon, make sure all speakers are set to Small and the crossovers should be fronts 60 Hz, center 80 Hz, surrounds 80 Hz and overheads 100-120 Hz (unless Audyssey sets them higher). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnder Bass the subwoofer mode should be LFE and the LPF/LFE should be 120 Hz. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EXT32 will have you level match the subwoofer to 75 dB as part of the initial set-up. This will likely result in the subwoofer volume set to somewhere in the -20 to -15 range (which is fine). The Denon will probably trim-out the subwoofer channel somewhere in the low negative range (which is also fine). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you want to run the subwoofer channel hotter than the Audyssey level match, then increase the sub channel in the Denon by a few dB.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEd M - SVS\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs053g/test/eon0nk4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"report_reasons\": null, \"link_author\": \"IncendiaryGames\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"created\": 1558729554.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs5jg4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoj2zwz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558632235.0, \"send_replies\": true, \"parent_id\": \"t3_bs5jg4\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"care bears\", \"link_title\": \"my lil pony\", \"author_flair_css_class\": null, \"name\": \"t1_eoj2zwz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ecare bears\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs5jg4/my_lil_pony/eoj2zwz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs5jg4/my_lil_pony/\", \"report_reasons\": null, \"link_author\": \"fragglestickcar0\", \"author_flair_text\": null, \"link_url\": \"http://www.youtube.com/watch?v=21ix1OwPoY8\", \"created\": 1558661035.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs4zeb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoiznnd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"emackn\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558630564.0, \"send_replies\": true, \"parent_id\": \"t3_bs4zeb\", \"score\": 1, \"author_fullname\": \"t2_9gu2i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Build details:**\\n\\n* ***Aero Precision M4E1 Upper***\\n * Aero Precision 15\\\" Enhanced M-LOK handguard, gen 2\\n * Columbia River Arms 16\\\" 1:7 barrel in FDE\\n * VG6 Gamma 556 compensator\\n * spikes tactical gas tube\\n * superlative arms gas block\\n * Vortex Strikefire II red dot\\n* ***Aero Precision M4E1 Lower (stripped, PEW edition)***\\n * BCM BCG in FDE\\n * BAD mag release\\n * BAD ambi saftey\\n * Geissele 2 stage trigger\\n * Geissele buffer tube with super 42 spring\\n * Geissele Maritime Bolt Catch\\n\\n* ***Magpul furniture***\\n * MOE-K2 Grip\\n * CTR carbine stock\\n * Pmag\\n * handstop\\n * BUIS\\n\\n\\n**Other Images:**\\n\\n * [side fire select](https://i.postimg.cc/85FMMngJ/AR15-pew-2.jpg)\\n * [view of FDE barrel](https://i.postimg.cc/zB9WjSqd/AR15-pew-3.jpg)\\n\\n\\u0026nbsp;\\n\\n\\u0026nbsp;\\n\\nNext up is 10.5 300BLK in OD Green\", \"link_title\": \"First AR Build Friday\", \"author_flair_css_class\": null, \"name\": \"t1_eoiznnd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBuild details:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAero Precision M4E1 Upper\\u003C/em\\u003E\\u003C/strong\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAero Precision 15\\u0026quot; Enhanced M-LOK handguard, gen 2\\u003C/li\\u003E\\n\\u003Cli\\u003EColumbia River Arms 16\\u0026quot; 1:7 barrel in FDE\\u003C/li\\u003E\\n\\u003Cli\\u003EVG6 Gamma 556 compensator\\u003C/li\\u003E\\n\\u003Cli\\u003Espikes tactical gas tube\\u003C/li\\u003E\\n\\u003Cli\\u003Esuperlative arms gas block\\u003C/li\\u003E\\n\\u003Cli\\u003EVortex Strikefire II red dot\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAero Precision M4E1 Lower (stripped, PEW edition)\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBCM BCG in FDE\\u003C/li\\u003E\\n\\u003Cli\\u003EBAD mag release\\u003C/li\\u003E\\n\\u003Cli\\u003EBAD ambi saftey\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele 2 stage trigger\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele buffer tube with super 42 spring\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele Maritime Bolt Catch\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EMagpul furniture\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EMOE-K2 Grip\\u003C/li\\u003E\\n\\u003Cli\\u003ECTR carbine stock\\u003C/li\\u003E\\n\\u003Cli\\u003EPmag\\u003C/li\\u003E\\n\\u003Cli\\u003Ehandstop\\u003C/li\\u003E\\n\\u003Cli\\u003EBUIS\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EOther Images:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://i.postimg.cc/85FMMngJ/AR15-pew-2.jpg\\\"\\u003Eside fire select\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://i.postimg.cc/zB9WjSqd/AR15-pew-3.jpg\\\"\\u003Eview of FDE barrel\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext up is 10.5 300BLK in OD Green\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs4zeb/first_ar_build_friday/eoiznnd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs4zeb/first_ar_build_friday/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/if35r70kjzz21.jpg\", \"created\": 1558659364.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bq9bgb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoid65v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558616951.0, \"send_replies\": true, \"parent_id\": \"t3_bq9bgb\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\\nbugaboo\", \"link_title\": \"we\", \"author_flair_css_class\": null, \"name\": \"t1_eoid65v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\nbugaboo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bq9bgb/we/eoid65v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bq9bgb/we/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bq9bgb/we/\", \"created\": 1558645751.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_brgcyy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoibl85\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558615819.0, \"send_replies\": true, \"parent_id\": \"t3_brgcyy\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"HGCE Freedom Gundam Album\", \"author_flair_css_class\": null, \"name\": \"t1_eoibl85\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/eoibl85/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/\", \"report_reasons\": null, \"link_author\": \"NeonRunner\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/EKjeyR4\", \"created\": 1558644619.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_b892bv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoibfr4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558615716.0, \"send_replies\": true, \"parent_id\": \"t1_ejwhbla\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eoibfr4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/b892bv/test/eoibfr4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/b892bv/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/OFkJjXL\", \"created\": 1558644516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bay8r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoi61fx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558611465.0, \"send_replies\": true, \"parent_id\": \"t1_ekgl4mf\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eoi61fx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bay8r2/test/eoi61fx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bay8r2/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bay8r2/test/\", \"created\": 1558640265.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqs0lm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoah4bg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NamiPickles\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558417762.0, \"send_replies\": true, \"parent_id\": \"t1_eo84uif\", \"score\": 2, \"author_fullname\": \"t2_cp3cb3l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"thanks my dude\", \"link_title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"author_flair_css_class\": null, \"name\": \"t1_eoah4bg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks my dude\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/eoah4bg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"report_reasons\": null, \"link_author\": \"NamiPickles\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/VmalKIuFimk\", \"created\": 1558446562.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqs0lm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo84uif\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Flying-Croissant\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558357381.0, \"send_replies\": true, \"parent_id\": \"t3_bqs0lm\", \"score\": 1, \"author_fullname\": \"t2_1d8oz7i8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Good shit\", \"link_title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"author_flair_css_class\": null, \"name\": \"t1_eo84uif\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood shit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/eo84uif/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"report_reasons\": null, \"link_author\": \"NamiPickles\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/VmalKIuFimk\", \"created\": 1558386181.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqofzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo67e75\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imperatorz\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558313245.0, \"send_replies\": true, \"parent_id\": \"t3_bqofzt\", \"score\": 1, \"author_fullname\": \"t2_3s7t8gxj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hi folks,\\n\\nFirst of all, thanks for all the quality posts here, i created an account just for this community !\\nI'm a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\n\\nD1 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD2 : Squat (55)- OHP (35)\\nD3 : Rest\\nD4 : Squat (55)- OHP (35)\\nD5 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD6 : Squat (55)- OHP (35) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\nD7 : Rest\\n\\nI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP\\n\\nFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7\\n\\nMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\n\\nThanks for all you're doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_eo67e75\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\nI\\u0026#39;m a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD2 : Squat (55)- OHP (35)\\nD3 : Rest\\nD4 : Squat (55)- OHP (35)\\nD5 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD6 : Squat (55)- OHP (35) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\nD7 : Rest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/eo67e75/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"report_reasons\": null, \"link_author\": \"imperatorz\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"created\": 1558342045.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqofzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo67cm7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imperatorz\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558313217.0, \"send_replies\": true, \"parent_id\": \"t3_bqofzt\", \"score\": 1, \"author_fullname\": \"t2_3s7t8gxj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hi folks,\\n\\nFirst of all, thanks for all the quality posts here, i created an account just for this community ! \\nI'm a 20 yo male who recently got back into lifting. \\nSince the end of march I have been training consistently 4-5 times a week with the following program : \\n\\nD1 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5) \\nD2 : Squat (5*5)- OHP (3*5) \\nD3 : Rest \\nD4 : Squat (5*5)- OHP (3*5) \\nD5 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5) \\nD6 : Squat (5*5)- OHP (3*5) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\nD7 : Rest \\n \\nI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP \\n \\nFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7 \\n\\nMy questions are, in a perspective of continuing fat loss : \\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ? \\n\\u2022 Should I start cardio/HIIT to eliminate more fat ? \\n\\u2022 Have you got any recommendation altogether ? All advices appreciated. \\n \\nThanks for all you're doing in here and sorry for broken english, \\nAn over-Atlantic enthusiast\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_eo67cm7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\u003Cbr/\\u003E\\nI\\u0026#39;m a 20 yo male who recently got back into lifting.\\u003Cbr/\\u003E\\nSince the end of march I have been training consistently 4-5 times a week with the following program : \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD2 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD3 : Rest\\u003Cbr/\\u003E\\nD4 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD5 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD6 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\u003Cbr/\\u003E\\nD7 : Rest \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\u003Cbr/\\u003E\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\u003Cbr/\\u003E\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\u003Cbr/\\u003E\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\u003Cbr/\\u003E\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/eo67cm7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"report_reasons\": null, \"link_author\": \"imperatorz\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"created\": 1558342017.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ens8t9m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558025712.0, \"send_replies\": true, \"parent_id\": \"t1_ens8roy\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Omg it works!!\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_ens8t9m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOmg it works!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/ens8t9m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1558054512.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ens8roy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558025695.0, \"send_replies\": true, \"parent_id\": \"t3_bpezwp\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E testing testing one two three\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_ens8roy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etesting testing one two three\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/ens8roy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1558054495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpdae9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enrm2j5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558017205.0, \"send_replies\": true, \"parent_id\": \"t3_bpdae9\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"As good as it gets - MASSIVE 60ft Nazare\", \"author_flair_css_class\": null, \"name\": \"t1_enrm2j5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpdae9/as_good_as_it_gets_massive_60ft_nazare/enrm2j5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpdae9/as_good_as_it_gets_massive_60ft_nazare/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1558046005.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh7bm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931730.0, \"send_replies\": true, \"parent_id\": \"t3_boytzt\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"https://youtu.be/yTob1CPeL6I\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh7bm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh7bm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960530.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh4ms\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931703.0, \"send_replies\": true, \"parent_id\": \"t1_enmh2vx\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh4ms\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh4ms/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960503.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh2vx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931685.0, \"send_replies\": true, \"parent_id\": \"t3_boytzt\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh2vx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh2vx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960485.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bowuds\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enlndge\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GameInfusionTC\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557920346.0, \"send_replies\": true, \"parent_id\": \"t3_bowuds\", \"score\": 1, \"author_fullname\": \"t2_18i8688m\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"y^ikes\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_enlndge\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ey\\u003Csup\\u003Eikes\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bowuds/test/enlndge/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"created\": 1557949146.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bowuds\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enlnbx5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GameInfusionTC\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557920327.0, \"send_replies\": true, \"parent_id\": \"t3_bowuds\", \"score\": 1, \"author_fullname\": \"t2_18i8688m\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u2013\\u2013strikethrough\\u2013\\u2013\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_enlnbx5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u2013\\u2013strikethrough\\u2013\\u2013\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bowuds/test/enlnbx5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"created\": 1557949127.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bogbq5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enfx5gc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheB333\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557824074.0, \"send_replies\": true, \"parent_id\": \"t3_bogbq5\", \"score\": 1, \"author_fullname\": \"t2_10snnt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Last week there was a post considering a weekly theory crafting thread. I kind of liked the idea. People discussed when and how that post and the formatting should be made.\\n\\n\\u0026#x200B;\\n\\nI may not be up to date with this idea, since i couldnt follow the reddit in the last week due to my working shedule. But i want to give it a shot.\\n\\n\\u0026#x200B;\\n\\nAs the Esther hype fades, i want to dedicate this post to our beloved queen of damage dealers. \\n\\n\\\\##Let us gather and share all possible and crazy ideas, that come to your mind.\\n\\n\\u0026#x200B;\\n\\nEsther is such an easy charackter, yet i bet that there are strategies that i cannot even imagine in my boldest dreams. There are a few reasons for this: She has innitiate evade, can work as AoE tank, absorbs lightning damage, has chaining counters, just to list a few important features.\\n\\n\\u0026#x200B;\\n\\nHow do i Imagine the struckture of this thread:\\n\\nHere\\\\`s an example on how you could make the formatting of your comment:\\n\\n\\u0026#x200B;\\n\\n\\\\# \\\\*\\\\*Title/Trial/Strategy\\\\*\\\\* #\\n\\nDescription\\n\\n\\u0026#x200B;\\n\\n\\\\* \\\\*\\\\*Difficulty/Equipment needed:\\\\*\\\\*/Beginner-Casual-Whale\\n\\n\\\\* \\\\*\\\\*Team Comp:\\\\*\\\\* (with eqipment, best would be FFBE equip link)\\n\\n\\\\* \\\\*\\\\*Turn rotation:\\\\*\\\\*\\n\\n\\\\* \\\\*\\\\*Useful tips:\\\\*\\\\*\\n\\n\\\\* \\\\*\\\\*Friend Code:\\\\*\\\\* (for Carry)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n\\\\##I would really love to heaer some strategies with her. Can she solo Ramuh? What ist the potential of 6 evade Esthers (with phoenix) ? In wich trails does she shine? What are the best unit synergies? \\n\\n\\u0026#x200B;\\n\\nI will try to give it a start:\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n\\\\# \\\\*\\\\*0TK Alexander 3\\\\* entrust LB kill\\\\*\\\\* #\\n\\nBasically you use two low level \\\\[units with entrust\\\\]([https://exvius.gamepedia.com/Entrust](https://exvius.gamepedia.com/Entrust)) that you fill their LB with either Aileen or Nyx in first turn. Then you imbue both your Esthers with water so you get the benefit of the 300% imperil. Use two chaining LB first turn -\\u003E finish. It's not all achievements but it saved me a lot of nerves. \\n\\n\\u0026#x200B;\\n\\n\\\\* \\\\*\\\\*Difficulty/Equipment needed:\\\\*\\\\*Casual-Dolphin\\n\\n\\\\* \\\\*\\\\*Requirements:\\\\*\\\\* \\\\[Build\\\\]([http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4](http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4)), Basically you need 2x low level entrusters, Aileen or Nxy, CG Nichol or SS Nichol, 2x Esthers with as much Machine Killer you can find.\\n\\n\\\\* \\\\*\\\\*Turn rotation:\\\\*\\\\* Turn 1: Aileen/Nyx is using LB fill, 2x entrust to both Esthers, dualcast water imbue on Esthers and then kill Alexander 3\\\\* with 2x limit chain Esther\\n\\n\\\\* \\\\*\\\\*Useful tips:\\\\*\\\\* Make sure to give Esther all the machine killer that you have and LB damage boosting eqipment. NOTE: If you use Aileen, make sure that the LB of the entrust units get filled! You can just let them be on lv 1 to make sure of this.\\n\\n\\\\* \\\\*\\\\*Friend Code:\\\\*\\\\* not carrying right now since im at work, sorry guys!\\n\\n\\u0026#x200B;\\n\\nI know that this strategy may not only be possible with Esther but Zeno or many more too! Feel free to comment and incite some nice discussions/comparisons/replacements.\\n\\n\\u0026#x200B;\\n\\nPS. Sorry if theres any problems with formatting.\", \"link_title\": \"y\", \"author_flair_css_class\": null, \"name\": \"t1_enfx5gc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELast week there was a post considering a weekly theory crafting thread. I kind of liked the idea. People discussed when and how that post and the formatting should be made.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI may not be up to date with this idea, since i couldnt follow the reddit in the last week due to my working shedule. But i want to give it a shot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the Esther hype fades, i want to dedicate this post to our beloved queen of damage dealers. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##Let us gather and share all possible and crazy ideas, that come to your mind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEsther is such an easy charackter, yet i bet that there are strategies that i cannot even imagine in my boldest dreams. There are a few reasons for this: She has innitiate evade, can work as AoE tank, absorbs lightning damage, has chaining counters, just to list a few important features.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do i Imagine the struckture of this thread:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere`s an example on how you could make the formatting of your comment:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# **Title/Trial/Strategy** #\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Difficulty/Equipment needed:**/Beginner-Casual-Whale\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Team Comp:** (with eqipment, best would be FFBE equip link)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Turn rotation:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Useful tips:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Friend Code:** (for Carry)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##I would really love to heaer some strategies with her. Can she solo Ramuh? What ist the potential of 6 evade Esthers (with phoenix) ? In wich trails does she shine? What are the best unit synergies? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI will try to give it a start:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# **0TK Alexander 3* entrust LB kill** #\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically you use two low level [units with entrust](\\u003Ca href=\\\"https://exvius.gamepedia.com/Entrust\\\"\\u003Ehttps://exvius.gamepedia.com/Entrust\\u003C/a\\u003E) that you fill their LB with either Aileen or Nyx in first turn. Then you imbue both your Esthers with water so you get the benefit of the 300% imperil. Use two chaining LB first turn -\\u0026gt; finish. It\\u0026#39;s not all achievements but it saved me a lot of nerves. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Difficulty/Equipment needed:**Casual-Dolphin\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Requirements:** [Build](\\u003Ca href=\\\"http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4\\\"\\u003Ehttp://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4\\u003C/a\\u003E), Basically you need 2x low level entrusters, Aileen or Nxy, CG Nichol or SS Nichol, 2x Esthers with as much Machine Killer you can find.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Turn rotation:** Turn 1: Aileen/Nyx is using LB fill, 2x entrust to both Esthers, dualcast water imbue on Esthers and then kill Alexander 3* with 2x limit chain Esther\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Useful tips:** Make sure to give Esther all the machine killer that you have and LB damage boosting eqipment. NOTE: If you use Aileen, make sure that the LB of the entrust units get filled! You can just let them be on lv 1 to make sure of this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Friend Code:** not carrying right now since im at work, sorry guys!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know that this strategy may not only be possible with Esther but Zeno or many more too! Feel free to comment and incite some nice discussions/comparisons/replacements.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS. Sorry if theres any problems with formatting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bogbq5/y/enfx5gc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bogbq5/y/\", \"report_reasons\": null, \"link_author\": \"TheB333\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bogbq5/y/\", \"created\": 1557852874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo84dx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"endic87\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DrHandyman\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557783117.0, \"send_replies\": true, \"parent_id\": \"t3_bo84dx\", \"score\": 0, \"author_fullname\": \"t2_2wbf73p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"`|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|`\\n\\n`:-:|:-:|:-:|:-:|:-:|:-:|`\\n\\n`|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|`\\n\\n`|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|`\\n\\n`|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|`\\n\\n`|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|`\\n\\n`|Blanton's|$14.00|$99.99|$224.00|$124.01|124.02%|`\\n\\n`|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|`\\n\\n`|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|`\\n\\n`|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|`\\n\\n`|Basil Hayden's|$10.00|$39.99|$160.00|$120.01|300.10%|`\\n\\n`|Noah's Mill|$15.00|$49.99|$240.00|$190.01|380.10%|`\\n\\n`|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|`\\n\\n`|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|`\\n\\n`|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|`\\n\\n`|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|`\", \"link_title\": \"Table Test\", \"author_flair_css_class\": null, \"name\": \"t1_endic87\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003E|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:-:|:-:|:-:|:-:|:-:|:-:|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Blanton\\u0026#39;s|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Basil Hayden\\u0026#39;s|$10.00|$39.99|$160.00|$120.01|300.10%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Noah\\u0026#39;s Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo84dx/table_test/endic87/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"report_reasons\": null, \"link_author\": \"Rammzie\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"created\": 1557811917.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo84dx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"endib3d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DrHandyman\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557783105.0, \"send_replies\": true, \"parent_id\": \"t3_bo84dx\", \"score\": 0, \"author_fullname\": \"t2_2wbf73p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"|\\\\*\\\\*Name\\\\*\\\\*|\\\\*\\\\*ACME Price Per 1.5oz\\\\*\\\\*|\\\\*\\\\*Bottle Street Price\\\\*\\\\*|\\\\*\\\\*Revenue Per Bottle (16 pours) \\\\*\\\\*|\\\\*\\\\*Profit Per Bottle\\\\*\\\\*|\\\\*\\\\*Profit Percentage\\\\*\\\\*|\\n\\n:-:|:-:|:-:|:-:|:-:|:-:|\\n\\n|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\n\\n|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\n\\n|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\n\\n|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\n\\n|Blanton's|$14.00|$99.99|$224.00|$124.01|124.02%|\\n\\n|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\n\\n|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\n\\n|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\n\\n|Basil Hayden's|$10.00|$39.99|$160.00|$120.01|300.10%|\\n\\n|Noah's Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\n\\n|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\n\\n|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\n\\n|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\n\\n|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\", \"link_title\": \"Table Test\", \"author_flair_css_class\": null, \"name\": \"t1_endib3d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:-:|:-:|:-:|:-:|:-:|:-:|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Blanton\\u0026#39;s|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Basil Hayden\\u0026#39;s|$10.00|$39.99|$160.00|$120.01|300.10%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Noah\\u0026#39;s Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo84dx/table_test/endib3d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"report_reasons\": null, \"link_author\": \"Rammzie\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"created\": 1557811905.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbsgh6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557754397.0, \"send_replies\": true, \"parent_id\": \"t3_bo3eog\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbsgh6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbsgh6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557783197.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbsf7d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557754377.0, \"send_replies\": true, \"parent_id\": \"t1_enbrfwi\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbsf7d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbsf7d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557783177.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbrfwi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557753791.0, \"send_replies\": true, \"parent_id\": \"t1_enbrecx\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbrfwi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbrfwi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557782591.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbrecx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557753764.0, \"send_replies\": true, \"parent_id\": \"t3_bo3eog\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbrecx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbrecx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557782564.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnh87u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5kn7c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DefNotPolonius\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557609950.0, \"send_replies\": true, \"parent_id\": \"t3_bnh87u\", \"score\": 1, \"author_fullname\": \"t2_3r6vjfb1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Looks legit to me!\", \"link_title\": \"A recent study suggests rates of step-siblings getting married is increasing exponentially\", \"author_flair_css_class\": null, \"name\": \"t1_en5kn7c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks legit to me!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnh87u/a_recent_study_suggests_rates_of_stepsiblings/en5kn7c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnh87u/a_recent_study_suggests_rates_of_stepsiblings/\", \"report_reasons\": null, \"link_author\": \"PraisetheKing1\", \"author_flair_text\": null, \"link_url\": \"https://www.theatlantic.com/entertainment/archive/2019/05/state-of-the-union-sundance-tv-review/589117/\", \"created\": 1557638750.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnh3at\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5j7r9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DefNotPolonius\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557609148.0, \"send_replies\": true, \"parent_id\": \"t3_bnh3at\", \"score\": 1, \"author_fullname\": \"t2_3r6vjfb1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Murderous indeed\", \"link_title\": \"Classic Murderous Hamlet\", \"author_flair_css_class\": null, \"name\": \"t1_en5j7r9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMurderous indeed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnh3at/classic_murderous_hamlet/en5j7r9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnh3at/classic_murderous_hamlet/\", \"report_reasons\": null, \"link_author\": \"PraisetheKing1\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/wqo9b9e3enx21.jpg\", \"created\": 1557637948.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bngumb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5h7hv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bummy_mans\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557608063.0, \"send_replies\": true, \"parent_id\": \"t3_bngumb\", \"score\": 1, \"author_fullname\": \"t2_15oya7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Murderous Indeed\", \"link_title\": \"Classic Murderous Hamlet\", \"author_flair_css_class\": null, \"name\": \"t1_en5h7hv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMurderous Indeed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bngumb/classic_murderous_hamlet/en5h7hv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bngumb/classic_murderous_hamlet/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/v4u3ua21anx21.jpg\", \"created\": 1557636863.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bndgzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4lk6i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fear_from_ignorance\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557590014.0, \"send_replies\": true, \"parent_id\": \"t3_bndgzp\", \"score\": 1, \"author_fullname\": \"t2_116zo5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#Countries that Shooting people in last 12 months\\n\\n|Country | Total Shooting \\n|:-----------|------------:|\\n| France| 14+(without yellow vest|\\n| Germany| 14+|\\n| U.K|3+| \\n\\nGreat good holy countries, only E.U \\n##We can not put a nobleman to death! :)\", \"link_title\": \"t\", \"author_flair_css_class\": null, \"name\": \"t1_en4lk6i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECountries that Shooting people in last 12 months\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ECountry\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ETotal Shooting\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFrance\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14+(without yellow vest\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGermany\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14+\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU.K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3+\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EGreat good holy countries, only E.U \\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EWe can not put a nobleman to death! :)\\u003C/h2\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bndgzp/t/en4lk6i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"report_reasons\": null, \"link_author\": \"fear_from_ignorance\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"created\": 1557618814.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bndgzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4lilt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fear_from_ignorance\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557589986.0, \"send_replies\": true, \"parent_id\": \"t3_bndgzp\", \"score\": 1, \"author_fullname\": \"t2_116zo5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\#Countries that Shooting people in last 12 months\\n\\n\\u0026#x200B;\\n\\n|Country | Total Shooting \\n\\n|:-----------|------------:|\\n\\n| France| 14+(without yellow vest|\\n\\n| Germany| 14+|\\n\\n| U.K|3+| \\n\\n\\u0026#x200B;\\n\\nGreat good holy countries, only E.U \\n\\n\\\\##We can not put a nobleman to death! :)\", \"link_title\": \"t\", \"author_flair_css_class\": null, \"name\": \"t1_en4lilt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#Countries that Shooting people in last 12 months\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Country | Total Shooting \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|:-----------|------------:|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| France| 14+(without yellow vest|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| Germany| 14+|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| U.K|3+| \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreat good holy countries, only E.U \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##We can not put a nobleman to death! :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bndgzp/t/en4lilt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"report_reasons\": null, \"link_author\": \"fear_from_ignorance\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"created\": 1557618786.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnddi4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4km0v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bacalado\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557589379.0, \"send_replies\": true, \"parent_id\": \"t3_bnddi4\", \"score\": 1, \"author_fullname\": \"t2_zs6we\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Test pot\", \"link_title\": \"Test post\", \"author_flair_css_class\": null, \"name\": \"t1_en4km0v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest pot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnddi4/test_post/en4km0v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnddi4/test_post/\", \"report_reasons\": null, \"link_author\": \"KindlyPangolin\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bnddi4/test_post/\", \"created\": 1557618179.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgvc57\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2j37y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533822.0, \"send_replies\": true, \"parent_id\": \"t3_bgvc57\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"What does this do\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_en2j37y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat does this do\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgvc57/test/en2j37y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgvc57/test/\", \"report_reasons\": null, \"link_author\": \"harison86\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgvc57/test/\", \"created\": 1557562622.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgz2ru\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2j1b8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533788.0, \"send_replies\": true, \"parent_id\": \"t3_bgz2ru\", \"score\": 0, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"We want shaggy\", \"link_title\": \"Settra the Imperishable, the Majestic Emperor of the Shifting Sands, Great Hawk Of The Heavens, King of Kings, Monarch of the Sky, High King of Nehekhara and many, many more, invades Outworld during the events of Mortal Kombat X. Can he claim it?\", \"author_flair_css_class\": null, \"name\": \"t1_en2j1b8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe want shaggy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/en2j1b8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/\", \"report_reasons\": null, \"link_author\": \"TitanBrass\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/\", \"created\": 1557562588.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bjy4q1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2iyjr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533739.0, \"send_replies\": true, \"parent_id\": \"t3_bjy4q1\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Neat\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_en2iyjr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENeat\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bjy4q1/test/en2iyjr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bjy4q1/test/\", \"report_reasons\": null, \"link_author\": \"Toemism\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/vSa7WcG\", \"created\": 1557562539.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk5dk7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2ix0e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533713.0, \"send_replies\": true, \"parent_id\": \"t3_bk5dk7\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Reddit doesn't work like that\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_en2ix0e\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EReddit doesn\\u0026#39;t work like that\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk5dk7/test/en2ix0e/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk5dk7/test/\", \"report_reasons\": null, \"link_author\": \"lucasade7\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk5dk7/test/\", \"created\": 1557562513.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2iq27\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557533589.0, \"send_replies\": true, \"parent_id\": \"t3_blxuys\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Just uses you're magic to convince him\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_en2iq27\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust uses you\\u0026#39;re magic to convince him\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/en2iq27/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557562389.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1557490423.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bmfbja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en0e11l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rew01f\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557490240.0, \"send_replies\": true, \"parent_id\": \"t3_bmfbja\", \"score\": 1, \"author_fullname\": \"t2_3mmzhxol\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\ud83d\\udf8eTest\\n\\n\\ud83d\\udf8e Test\\n\\n\\ud83d\\udf8e Testing as ordered\", \"link_title\": \"testy\", \"author_flair_css_class\": null, \"name\": \"t1_en0e11l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\ud83d\\udf8eTest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\ud83d\\udf8e Test\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\ud83d\\udf8e Testing as ordered\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bmfbja/testy/en0e11l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bmfbja/testy/\", \"report_reasons\": null, \"link_author\": \"Sleepchao\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bmfbja/testy/\", \"created\": 1557519040.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bme57y\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emvxrme\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TotesMessenger\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557368561.0, \"send_replies\": true, \"parent_id\": \"t3_bme57y\", \"score\": 1, \"author_fullname\": \"t2_kq14w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I'm a bot, *bleep*, *bloop*. Someone has linked to this thread from another place on reddit:\\n\\n- [/r/porsche] [First time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!](https://www.reddit.com/r/Porsche/comments/bme8ym/first_time_porsche_owner_takes_immediate_cayman/)\\n\\n\\u0026nbsp;*^(If you follow any of the above links, please respect the rules of reddit and don't vote in the other threads.) ^\\\\([Info](/r/TotesMessenger) ^/ ^[Contact](/message/compose?to=/r/TotesMessenger))*\", \"link_title\": \"First time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!\", \"author_flair_css_class\": null, \"name\": \"t1_emvxrme\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a bot, \\u003Cem\\u003Ebleep\\u003C/em\\u003E, \\u003Cem\\u003Ebloop\\u003C/em\\u003E. Someone has linked to this thread from another place on reddit:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E[\\u003Ca href=\\\"/r/porsche\\\"\\u003E/r/porsche\\u003C/a\\u003E] \\u003Ca href=\\\"https://www.reddit.com/r/Porsche/comments/bme8ym/first_time_porsche_owner_takes_immediate_cayman/\\\"\\u003EFirst time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003Cem\\u003E\\u003Csup\\u003EIf you follow any of the above links, please respect the rules of reddit and don\\u0026#39;t vote in the other threads.\\u003C/sup\\u003E \\u003Csup\\u003E(\\u003Ca href=\\\"/r/TotesMessenger\\\"\\u003EInfo\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E/\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"/message/compose?to=/r/TotesMessenger\\\"\\u003EContact\\u003C/a\\u003E)\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/emvxrme/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/\", \"report_reasons\": null, \"link_author\": \"Null-P\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/\", \"created\": 1557397361.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ems8494\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DoingSchoolProject2\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557271693.0, \"send_replies\": true, \"parent_id\": \"t1_ems7zov\", \"score\": 2, \"author_fullname\": \"t2_3q15i8tn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Growing well\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_ems8494\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGrowing well\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/ems8494/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557300493.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ems7zov\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DoingSchoolProject\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557271609.0, \"send_replies\": true, \"parent_id\": \"t3_blxuys\", \"score\": 2, \"author_fullname\": \"t2_3otlbacn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hey Elizabeth, hows the baby doing\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_ems7zov\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey Elizabeth, hows the baby doing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/ems7zov/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557300409.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkze3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257480.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Future Features People Want (Compiled from Blizzard forums)\\n#### *Disclaimer* These very wildly in implementation time. They also aren't too specific. That's for another thread.\\n\\n#### Ease of Coding\\n- [Text-based Editor/IDE/Ability to Import File](#s \\\"Anything for more coding speed\\\")\\n- Conditionals\\n- Functions\\n- Hotkey Saves/Auto Saves\\n- Hotkey Undo\\n- Events/Statuses for every [possible thing](#s \\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\")\\n- [Classes/Object Types/Enums](#s \\\"Bad class objects hurt\\\")\\n- [Multiple-Script Compilation](#s \\\"I make a piece, you make a piece, we compile the codes together\\\")\\n- Disable/Enable Rule options\\n- Custom Strings/Variable Names\\n\\t\\n####Importation of art assets\\n- Custom Skins\\n- Custom Emotes\\n- Custom Hero Models\\n- Custom Animations\\n\\t\\n#### Bigger Creations\\n- Rule Limit Increase\\n- Effect Increase\\n- More Presets Saves\\n- More Variables\\n\\n#### Recognition of Good Modes\\n- Best-of-Workshop Arcade Mode\\n- Popularity contests between [similar game-modes](#s \\\"See which gun game people like best\\\")\\n\\t\\n#### Map Editor\\n- Ability to create gameplay zones\\n- Change Lighting\\n- Custom Maps\\n\\t\\n#### Hero Editor\\n- Being able to give [one hero's ability to another hero](#s \\\"Tracer with Piledriver\\\")\\n- More Control over [Effects](#s \\\"On-destruct, custom IDs, etc\\\")\\n- Control over [hero-specific variables](#s \\\"Number of Symmetra Turrets, headshot dmg, passives\\\")\\n- Being able to use Arcade Enemies/All Models\\n- Custom Cooldowns/Modify Cooldowns\\n- Control over animations\\n- Control over fire/POTG worthy actions\\n\\t\\t\\n#### Object Editor\\n- Deployables\\n- Weapon Qualities\\n- Collisions\\n- Objectives/Payloads\\n- Access to Old Assets/Abilities\\n- Custom Effect Durations\\n- Custom Conditions\\n- Custom Physics Engine\\n\\t\\n#### AI Editor\\n- PVE Mode Access\\n- Ease of Making Bots\\n- Bots in any Mode\\n\\t\\t\\n#### Gameplay Editor\\n- Change Spawn Points\\n- Switch Teams\\n- Change Team Size\\n\\t\\n####Hosting Games\\n- Being able to host Workshop Games locally\\n\\t\\n#### Workshop-Specific Assets\\n- Extra Animations\\n- More effects\\n- [Non-Graphics intensive testing map](#s \\\"Just a White Room\\\")\\n- [Arena map](#s \\\"Just a square\\\")\\n\\n#### More Recognition of Dan and Keith\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkze3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFuture Features People Want (Compiled from Blizzard forums)\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003E\\u003Cem\\u003EDisclaimer\\u003C/em\\u003E These very wildly in implementation time. They also aren\\u0026#39;t too specific. That\\u0026#39;s for another thread.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EEase of Coding\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Anything for more coding speed\\\"\\u003EText-based Editor/IDE/Ability to Import File\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EConditionals\\u003C/li\\u003E\\n\\u003Cli\\u003EFunctions\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Saves/Auto Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Undo\\u003C/li\\u003E\\n\\u003Cli\\u003EEvents/Statuses for every \\u003Ca href=\\\"#s\\\" title=\\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\"\\u003Epossible thing\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Bad class objects hurt\\\"\\u003EClasses/Object Types/Enums\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"I make a piece, you make a piece, we compile the codes together\\\"\\u003EMultiple-Script Compilation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDisable/Enable Rule options\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Strings/Variable Names\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EImportation of art assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECustom Skins\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Emotes\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Hero Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Animations\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EBigger Creations\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERule Limit Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EEffect Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Presets Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Variables\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ERecognition of Good Modes\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBest-of-Workshop Arcade Mode\\u003C/li\\u003E\\n\\u003Cli\\u003EPopularity contests between \\u003Ca href=\\\"#s\\\" title=\\\"See which gun game people like best\\\"\\u003Esimilar game-modes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMap Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAbility to create gameplay zones\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Lighting\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Maps\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHero Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to give \\u003Ca href=\\\"#s\\\" title=\\\"Tracer with Piledriver\\\"\\u003Eone hero\\u0026#39;s ability to another hero\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Control over \\u003Ca href=\\\"#s\\\" title=\\\"On-destruct, custom IDs, etc\\\"\\u003EEffects\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over \\u003Ca href=\\\"#s\\\" title=\\\"Number of Symmetra Turrets, headshot dmg, passives\\\"\\u003Ehero-specific variables\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBeing able to use Arcade Enemies/All Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Cooldowns/Modify Cooldowns\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over animations\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over fire/POTG worthy actions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EObject Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDeployables\\u003C/li\\u003E\\n\\u003Cli\\u003EWeapon Qualities\\u003C/li\\u003E\\n\\u003Cli\\u003ECollisions\\u003C/li\\u003E\\n\\u003Cli\\u003EObjectives/Payloads\\u003C/li\\u003E\\n\\u003Cli\\u003EAccess to Old Assets/Abilities\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Effect Durations\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Conditions\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Physics Engine\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EAI Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPVE Mode Access\\u003C/li\\u003E\\n\\u003Cli\\u003EEase of Making Bots\\u003C/li\\u003E\\n\\u003Cli\\u003EBots in any Mode\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EGameplay Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EChange Spawn Points\\u003C/li\\u003E\\n\\u003Cli\\u003ESwitch Teams\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Team Size\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHosting Games\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to host Workshop Games locally\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWorkshop-Specific Assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EExtra Animations\\u003C/li\\u003E\\n\\u003Cli\\u003EMore effects\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a White Room\\\"\\u003ENon-Graphics intensive testing map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a square\\\"\\u003EArena map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMore Recognition of Dan and Keith\\u003C/h4\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkze3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286280.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkqzg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257336.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#One-Stop Workshop\\n## Workshop FAQ\\n### What is Overwatch Workshop?\\n- In layman's terms, its just [additional](#s \\\"Many, many additional\\\") features for designing custom games, using more drop-down menus.\\n\\n### What is the One-Stop Workshop?\\n- \\tThis is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\n-\\tI call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\n\\n### What is an FAQ?\\n-\\tFrantically Answering Questions!\\n\\n### How to access the Workshop?\\n-\\tMake sure you have the PTR installed.\\n- \\tPlay \\u003E Game Browser \\u003E Create \\u003E Settings \\u003E Workshop\\n\\n### What resources does Workshop give us?\\n-\\tCreation of Effects\\n-\\tConditional Changes to Rules\\n-\\tAdding HUD elements\\n-\\tAnd More\\n\\n### Can you test heroes with workshop?\\n- \\tYesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\n- \\tHowever, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\n-\\tBut, don't fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\n\\n### Is it a map editor?\\n- \\tNo. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\n\\n### Do I need to know how to code to use it? Can normal people use it?\\n- \\tNo and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\n\\n### What presets does it have for me to build off of?\\n- \\tMolten Floor - You set on fire while touching the floor.\\n- \\tOne Ultimate - Elimination mode where you start with your Ultimate, but can't get Ultimate charge.\\n- \\tHide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\n- \\tDouble Jump - Everyone can double jump.\\n- \\tFire Dome - A dome slowly shrinks, limiting the play space. (*Cough* Battle Royale *Cough*)\\n- \\tBalanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\n- \\tMirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\n- \\tZombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\n- \\tHero Gauntlet - Gun Game\\n\\n### Is it on Console?\\n-\\tNot yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\n\\n### Who built this?\\n-\\tKeith and Dan, our two buddy devs, in their free time. They have now been labeled [Hero 31 and Hero 32](#s \\\"Dan is 31, fight me\\\") by the reddit community.\\n\\n### Is this going to get updates?\\n- It has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\n\\n### Is there a limit to sizes of script/number of objects.\\n- Yes. 64 icons/effects, and some limit to the size of the script. \\n- However, the devs are working to increase these numbers.\\n\\n### Is this Overwatch getting a bunch of people to be their unpaid interns?\\n- Sadly, it doesn't seem to be. Plenty of people would love to design stuff for Blizzard for free. Instead, you can just make fun modes for people to enjoy. \\n\\n### Do I have control over my modes? Can I link/post other peoples content?\\n#### The Bad\\n- You do not have ownership over your creations\\n- Your code could be overriden at any time\\n- Other people can use your mode by just clicking on it and copying your 5-character code\\n- Currently, there are numerous bugs that can delete your work, if you have a slow connection, too much code, or are just plain unlucky\\n\\n#### The Good\\n- You can check out any code you find interesting and get ideas\\n- You don't have to worry about someone else running their server. With the 5-character code, you can start one yourself\\n- Your code will carry over to the Live version and the Console version, as the actual data is stored in the cloud\\n- The Devs are fixing all work-deleting bugs\\n- The Devs will (almost certainly) add enough characters to the codes to prevent your code from being overriden\\n- You can store the info for your mode on this page if you want people to know that a mode was originally created by you\\n\\n#### The Neutral\\n- Being polite and asking for permission is the correct thing to do if you want to repost their work, modify their work, or look at their rules\\n\\n#### The Time Saving\\n- I propose that if you create a mode that you want anyone to be able to modify or use, while crediting you, you write \\\"Free Use\\\" on it somewhere, so that those who want to use it won't [constantly bug you](#s \\\"Sorry all people I bugged about adding your stuff to this post\\\")\\n- I propose that if you create a mode and don't care about being credited, you write \\\"Free Game\\\", and people can use your mode without crediting you, but shouldn't act like they invented it whole-sale\\n- I propose that the community shares any useful tricks, codes, or ideas somewhere. This post works as well as any other place.\\n\\n### Why does the Workshop Community need to be organized?\\n- For [Casual Players](#s \\\"Filthy Casuals\\\"): An organized community will make it easier to find good, fun, game modes.\\n\\n- For [Ranked Players](#s \\\"Sports Nuts\\\"): With a few changes, I personally think that Workshop can allow for [more frequent patch testing.](#s \\\"More Powerful Workshop = Give out Patch Codes instead of Downloads\\\") An organized community could help the workshop get to that state sooner.\\n\\n- For [Creators](#s \\\"Over-Dedicated Fans\\\"): An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\n\\n- For [Devs](#s \\\"All-Mighty Deities\\\"): An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\n\\n##Useful Links\\n### Mode Lists\\nhttps://dutchdemons.com - u/Marinosbitter\\n\\nhttps://overwatchcustom.games - u/Thriver\\n\\nhttps://overwatchmodding.com/ - u/xSailboats\\n\\nhttps://workshop.elohell.gg/ - EloHell Discord\\n\\nhttps://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA - u/alloriginalnamesused\\n\\n[Lier1's Code List]()\\n\\n### Discord Channels\\n[OW Scripting](https://discord.gg/9pc4yyE)\\n\\n[Overwatch Workshop](https://discord.gg/qa9vR94)\\n\\n[Elo Hell Workshops](https://discord.gg/U5ARg2Fs)\\n\\n### Youtube Channels\\n#### Mode Creation Help:\\n[SamstaTV](https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g)\\n\\n[RunicOW](https://www.youtube.com/channel/UCB1j7mXXRgCRBBri6E5Ch2A)\\n\\n#### Creation Showcases:\\n[Master Ian Gamer](https://www.youtube.com/channel/UCh7qwd3VnN1AGqlqec8K8Zw)\\n\\n### Miscellaneous Sites/Posts\\n[List of Flat Areas with few Obstacles](https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/) - u/Zezombye\\n\\n[Workshop Syntax \\u0026 Script Database](https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92) - WyomingMyst\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkqzg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EOne-Stop Workshop\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EWorkshop FAQ\\u003C/h2\\u003E\\n\\n\\u003Ch3\\u003EWhat is Overwatch Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E In layman\\u0026#39;s terms, its just \\u003Ca href=\\\"#s\\\" title=\\\"Many, many additional\\\"\\u003Eadditional\\u003C/a\\u003E features for designing custom games, using more drop-down menus.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat is the One-Stop Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E This is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\u003C/li\\u003E\\n\\u003Cli\\u003E I call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat is an FAQ?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Frantically Answering Questions!\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EHow to access the Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Make sure you have the PTR installed.\\u003C/li\\u003E\\n\\u003Cli\\u003E Play \\u0026gt; Game Browser \\u0026gt; Create \\u0026gt; Settings \\u0026gt; Workshop\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat resources does Workshop give us?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Creation of Effects\\u003C/li\\u003E\\n\\u003Cli\\u003E Conditional Changes to Rules\\u003C/li\\u003E\\n\\u003Cli\\u003E Adding HUD elements\\u003C/li\\u003E\\n\\u003Cli\\u003E And More\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003ECan you test heroes with workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Yesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\u003C/li\\u003E\\n\\u003Cli\\u003E However, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\u003C/li\\u003E\\n\\u003Cli\\u003E But, don\\u0026#39;t fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs it a map editor?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EDo I need to know how to code to use it? Can normal people use it?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat presets does it have for me to build off of?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Molten Floor - You set on fire while touching the floor.\\u003C/li\\u003E\\n\\u003Cli\\u003E One Ultimate - Elimination mode where you start with your Ultimate, but can\\u0026#39;t get Ultimate charge.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\u003C/li\\u003E\\n\\u003Cli\\u003E Double Jump - Everyone can double jump.\\u003C/li\\u003E\\n\\u003Cli\\u003E Fire Dome - A dome slowly shrinks, limiting the play space. (\\u003Cem\\u003ECough\\u003C/em\\u003E Battle Royale \\u003Cem\\u003ECough\\u003C/em\\u003E)\\u003C/li\\u003E\\n\\u003Cli\\u003E Balanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\u003C/li\\u003E\\n\\u003Cli\\u003E Mirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\u003C/li\\u003E\\n\\u003Cli\\u003E Zombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hero Gauntlet - Gun Game\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs it on Console?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Not yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWho built this?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Keith and Dan, our two buddy devs, in their free time. They have now been labeled \\u003Ca href=\\\"#s\\\" title=\\\"Dan is 31, fight me\\\"\\u003EHero 31 and Hero 32\\u003C/a\\u003E by the reddit community.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs this going to get updates?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs there a limit to sizes of script/number of objects.\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYes. 64 icons/effects, and some limit to the size of the script. \\u003C/li\\u003E\\n\\u003Cli\\u003EHowever, the devs are working to increase these numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs this Overwatch getting a bunch of people to be their unpaid interns?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESadly, it doesn\\u0026#39;t seem to be. Plenty of people would love to design stuff for Blizzard for free. Instead, you can just make fun modes for people to enjoy. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EDo I have control over my modes? Can I link/post other peoples content?\\u003C/h3\\u003E\\n\\n\\u003Ch4\\u003EThe Bad\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou do not have ownership over your creations\\u003C/li\\u003E\\n\\u003Cli\\u003EYour code could be overriden at any time\\u003C/li\\u003E\\n\\u003Cli\\u003EOther people can use your mode by just clicking on it and copying your 5-character code\\u003C/li\\u003E\\n\\u003Cli\\u003ECurrently, there are numerous bugs that can delete your work, if you have a slow connection, too much code, or are just plain unlucky\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Good\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou can check out any code you find interesting and get ideas\\u003C/li\\u003E\\n\\u003Cli\\u003EYou don\\u0026#39;t have to worry about someone else running their server. With the 5-character code, you can start one yourself\\u003C/li\\u003E\\n\\u003Cli\\u003EYour code will carry over to the Live version and the Console version, as the actual data is stored in the cloud\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Devs are fixing all work-deleting bugs\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Devs will (almost certainly) add enough characters to the codes to prevent your code from being overriden\\u003C/li\\u003E\\n\\u003Cli\\u003EYou can store the info for your mode on this page if you want people to know that a mode was originally created by you\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Neutral\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing polite and asking for permission is the correct thing to do if you want to repost their work, modify their work, or look at their rules\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Time Saving\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EI propose that if you create a mode that you want anyone to be able to modify or use, while crediting you, you write \\u0026quot;Free Use\\u0026quot; on it somewhere, so that those who want to use it won\\u0026#39;t \\u003Ca href=\\\"#s\\\" title=\\\"Sorry all people I bugged about adding your stuff to this post\\\"\\u003Econstantly bug you\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EI propose that if you create a mode and don\\u0026#39;t care about being credited, you write \\u0026quot;Free Game\\u0026quot;, and people can use your mode without crediting you, but shouldn\\u0026#39;t act like they invented it whole-sale\\u003C/li\\u003E\\n\\u003Cli\\u003EI propose that the community shares any useful tricks, codes, or ideas somewhere. This post works as well as any other place.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhy does the Workshop Community need to be organized?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Filthy Casuals\\\"\\u003ECasual Players\\u003C/a\\u003E: An organized community will make it easier to find good, fun, game modes.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Sports Nuts\\\"\\u003ERanked Players\\u003C/a\\u003E: With a few changes, I personally think that Workshop can allow for \\u003Ca href=\\\"#s\\\" title=\\\"More Powerful Workshop = Give out Patch Codes instead of Downloads\\\"\\u003Emore frequent patch testing.\\u003C/a\\u003E An organized community could help the workshop get to that state sooner.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Over-Dedicated Fans\\\"\\u003ECreators\\u003C/a\\u003E: An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"All-Mighty Deities\\\"\\u003EDevs\\u003C/a\\u003E: An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EUseful Links\\u003C/h2\\u003E\\n\\n\\u003Ch3\\u003EMode Lists\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://dutchdemons.com\\\"\\u003Ehttps://dutchdemons.com\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Marinosbitter\\\"\\u003Eu/Marinosbitter\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchcustom.games\\\"\\u003Ehttps://overwatchcustom.games\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Thriver\\\"\\u003Eu/Thriver\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchmodding.com/\\\"\\u003Ehttps://overwatchmodding.com/\\u003C/a\\u003E - \\u003Ca href=\\\"/u/xSailboats\\\"\\u003Eu/xSailboats\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://workshop.elohell.gg/\\\"\\u003Ehttps://workshop.elohell.gg/\\u003C/a\\u003E - EloHell Discord\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA\\\"\\u003Ehttps://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA\\u003C/a\\u003E - \\u003Ca href=\\\"/u/alloriginalnamesused\\\"\\u003Eu/alloriginalnamesused\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Lier1\\u0026#39;s Code List]()\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EDiscord Channels\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/9pc4yyE\\\"\\u003EOW Scripting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/qa9vR94\\\"\\u003EOverwatch Workshop\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/U5ARg2Fs\\\"\\u003EElo Hell Workshops\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EYoutube Channels\\u003C/h3\\u003E\\n\\n\\u003Ch4\\u003EMode Creation Help:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g\\\"\\u003ESamstaTV\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UCB1j7mXXRgCRBBri6E5Ch2A\\\"\\u003ERunicOW\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch4\\u003ECreation Showcases:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UCh7qwd3VnN1AGqlqec8K8Zw\\\"\\u003EMaster Ian Gamer\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EMiscellaneous Sites/Posts\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/\\\"\\u003EList of Flat Areas with few Obstacles\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92\\\"\\u003EWorkshop Syntax \\u0026amp; Script Database\\u003C/a\\u003E - WyomingMyst\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkqzg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286136.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkof9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257292.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"# Custom Content\\n\\n### Disclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\n\\n### Names with u/ are from reddit. Names without are from the Overwatch Forum unless labeled otherwise.\\n\\n### If you like a mode, go to the original post and like or comment. Let them know you appreciate it. I'll add links directly to each post once I figure out if Reddit allows that and I get around to it.\\n\\n### If you want to add a mode to the list, just PM me and I'll add it eventually.\\n\\n## Fun Modes\\n- K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n- 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n- RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n- EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n- N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n- 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n- M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n- T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n- NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n- R4DWM - BloodBorne in Overwatch - u/Elodeona\\n- EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n- FHQZ4 - Bridgette Pong - u/AJ_Black\\n- KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n- 53J3R - Shooters Vs Stabbers - Lilsis\\n- BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n- BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n- 5KCP4 - Dva Eject into Random Ult - u/qbbftw - ORIGINAL IDEA FROM: u/Woolin\\n- YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n- 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n- 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n- MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n- SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n- VJCT2 - Chase the Snowmen - u/andygmb\\n- 6PC67 - Take Hero of Kills - u/CrenderMutant\\n- 9J42E - Mcree Hot Potato - u/olipoulihot\\n- 85J46 - TF2 the Return - u/Greg266\\n- 7792M - Ninja Sword Fight - u/zhpete\\n- VQ5W8 - Turn Based 3v3 Deathmatch - u/nodas9990\\n- 56XNH - Reinhardt's Completely Stoned Bumper Car Emporeum v14 - u/TheRedstoneBlaze\\n- R68FF - Lucio Ball - u/Telefrag_Ent\\n- V5NKR - Volleybomb - u/Telefrag_Ent\\n- GB9PM - Instagib Railgun : Ashe Team Deathmatch - u/Telefrag_Ent\\n- PGF9P - 1 v 1 High Noon Duel - u/Zenmill\\n- ZKQVG - One in the Chamber: 3 Lives - u/iejb\\n- QT7TQ - Torbjorn Golfing - u/officialraider\\n-\\n- 0D2W5 - Hampster Chase - u/Woolin\\n- 6E3Z5 - Lucio Tag - u/Woolin\\n-\\n- 4J6KW - Screencheat - u/PotsNPans\\n- MN787 - Screencheat - u/microcosm_ow\\n-\\n- PTTNK - Weeping Angels (Zen Mcree) - u/Semproser\\n- X2HH9 - Weeping Angels (Mercy Mei) - u/Hogrid125\\n-\\n- NJGZ4 - Deathmatch Rivals - u/Hypno--Toad\\n- A6736 - Rival System - u/Hypno--Toad\\n-\\n- JWY47 - Hammond Racing - @DanielFedder (Twitter)\\n- D9RND - Hamster Ball Racing - u/qwook\\n-\\n- SH9XN - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n- 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray\\n-\\n- RGH0D - High Speed: FFA - u/rbnsky\\n- SF1R2 - High Speed Gun Game - u/rbnsky\\n-\\n- E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n- QH5SP - PVE Horde Mode - u/Jechto\\n- 52Y5Y - PvE RPG - u/ES_Curse\\n\\n## Training Modes\\n- RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n- 2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n- QKAAM - Placeable Cameras - u/ItsDeltin\\n- CQ00S - Elemental Aspects - u/poststakhanovist\\n- 179QN - Slot Machine - u/Cowboy_Jimmy\\n- 6WXRW - Navi - u/andygmb - u/Lymbow\\n- P9DC5 - Custom Bouncing Projectiles - u/JayTheYggdrasil\\n- FM3WR - Retaliation Damage - u/bacondev\\n-\\n- NK1YF - 2-D Sidescroller - u/HaxD3\\n- D8ZQC - 3rd Person View - u/Jiggy_Jigsaw\\n- 4V8NC - Top Down Shooter - u/microcosm_ow\\n-\\n- ZW1PY - Scoreboard - u/Paf13\\n- 9EKZB - Scoreboard - u/caldoran2\\n-\\n- QESP4 - Walls - u/Zezombye\\n- TZYK6 - Walls - u/Gecktendo\\n- RFJ4G - Walls - u/Gecktendo\\n-\\n- P4Y50 - Bunny Hopping - u/microcosm_ow\\n- WV5HH - Bunny Hop - u/TyzoneLyraNature\\n\\n## Hero Ideas\\n- XJZB1 - Orisa AoE Push - AlexEptit\\n- H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n- RNKKJ - All Heroes Hover Jet - u/microcosm_ow\\n- 8H2DN - Sym Gravity Gun (Half-life) - u/IFIsc\\n- XGAPQ - Genji as Maeve (Paladins) - u/jprosk\\n- BE2J7 - Portal Gun - u/Lymbow - u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkof9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECustom Content\\u003C/h1\\u003E\\n\\n\\u003Ch3\\u003EDisclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003ENames with u/ are from reddit. Names without are from the Overwatch Forum unless labeled otherwise.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003EIf you like a mode, go to the original post and like or comment. Let them know you appreciate it. I\\u0026#39;ll add links directly to each post once I figure out if Reddit allows that and I get around to it.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003EIf you want to add a mode to the list, just PM me and I\\u0026#39;ll add it eventually.\\u003C/h3\\u003E\\n\\n\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9J42E - Mcree Hot Potato - \\u003Ca href=\\\"/u/olipoulihot\\\"\\u003Eu/olipoulihot\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E85J46 - TF2 the Return - \\u003Ca href=\\\"/u/Greg266\\\"\\u003Eu/Greg266\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E7792M - Ninja Sword Fight - \\u003Ca href=\\\"/u/zhpete\\\"\\u003Eu/zhpete\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVQ5W8 - Turn Based 3v3 Deathmatch - \\u003Ca href=\\\"/u/nodas9990\\\"\\u003Eu/nodas9990\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E56XNH - Reinhardt\\u0026#39;s Completely Stoned Bumper Car Emporeum v14 - \\u003Ca href=\\\"/u/TheRedstoneBlaze\\\"\\u003Eu/TheRedstoneBlaze\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER68FF - Lucio Ball - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EV5NKR - Volleybomb - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGB9PM - Instagib Railgun : Ashe Team Deathmatch - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EPGF9P - 1 v 1 High Noon Duel - \\u003Ca href=\\\"/u/Zenmill\\\"\\u003Eu/Zenmill\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZKQVG - One in the Chamber: 3 Lives - \\u003Ca href=\\\"/u/iejb\\\"\\u003Eu/iejb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- QT7TQ - Torbjorn Golfing - \\u003Ca href=\\\"/u/officialraider\\\"\\u003Eu/officialraider\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E0D2W5 - Hampster Chase - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 6E3Z5 - Lucio Tag - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E4J6KW - Screencheat - \\u003Ca href=\\\"/u/PotsNPans\\\"\\u003Eu/PotsNPans\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- MN787 - Screencheat - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPTTNK - Weeping Angels (Zen Mcree) - \\u003Ca href=\\\"/u/Semproser\\\"\\u003Eu/Semproser\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- X2HH9 - Weeping Angels (Mercy Mei) - \\u003Ca href=\\\"/u/Hogrid125\\\"\\u003Eu/Hogrid125\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENJGZ4 - Deathmatch Rivals - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- A6736 - Rival System - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EJWY47 - Hammond Racing - @DanielFedder (Twitter)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- D9RND - Hamster Ball Racing - \\u003Ca href=\\\"/u/qwook\\\"\\u003Eu/qwook\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESH9XN - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- SF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E52Y5Y - PvE RPG - \\u003Ca href=\\\"/u/ES_Curse\\\"\\u003Eu/ES_Curse\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E179QN - Slot Machine - \\u003Ca href=\\\"/u/Cowboy_Jimmy\\\"\\u003Eu/Cowboy_Jimmy\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EP9DC5 - Custom Bouncing Projectiles - \\u003Ca href=\\\"/u/JayTheYggdrasil\\\"\\u003Eu/JayTheYggdrasil\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- FM3WR - Retaliation Damage - \\u003Ca href=\\\"/u/bacondev\\\"\\u003Eu/bacondev\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENK1YF - 2-D Sidescroller - \\u003Ca href=\\\"/u/HaxD3\\\"\\u003Eu/HaxD3\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ED8ZQC - 3rd Person View - \\u003Ca href=\\\"/u/Jiggy_Jigsaw\\\"\\u003Eu/Jiggy_Jigsaw\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 4V8NC - Top Down Shooter - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETZYK6 - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- RFJ4G - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EP4Y50 - Bunny Hopping - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERNKKJ - All Heroes Hover Jet - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8H2DN - Sym Gravity Gun (Half-life) - \\u003Ca href=\\\"/u/IFIsc\\\"\\u003Eu/IFIsc\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EXGAPQ - Genji as Maeve (Paladins) - \\u003Ca href=\\\"/u/jprosk\\\"\\u003Eu/jprosk\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkof9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286092.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkm0q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257251.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#Reddit Post Organization\\n\\n####If posts are organized in a readable manner, it will help people to:\\n\\n- [Locate modes they like](#s \\\"Or hate\\\")\\n\\n- [Easily lend assistance](#s \\\"Hardly\\\")\\n\\n- [Not have to deal with ugly things](#s \\\"Except walking Zenyattas and wall-climbing Torbs\\\")\\n\\n##Post Example Layout\\n\\n- [Descriptive Title](#s \\\"Flaired Appropriately\\\")\\n\\n- Post Body\\n - Picture/Video [(Optional)](#s \\\"Follow this subs rules\\\")\\n - Code\\n - [Brief Summary](#s \\\"Or why your code is the awesomest ever\\\")\\n - Detailed Description (Optional)\\n - [Future Improvements](#s \\\"Unnecessary as your creation is perfect\\\") (Optional)\\n - [Credits](#s \\\"Those whose stuff you stole\\\")\\n\\n##General Posting Tips\\n\\n\\n\\n- Title\\tTips\\n\\n - Do use this phrasing: _[MyThing](#s \\\"What you made\\\") from [OtherMedia](#s \\\"What you stole the idea from\\\")_\\n\\n - Do be very specific. _Alphabetic Gun Game_ is better than simply _Gun Game_.\\n\\n - Good Example: _Alphabetic Gun Game from [CS:S:HTMLGO](#s \\\"CS Major\\\")_\\n\\n- Post Body Tips\\n\\n - Do use a visual if possible. [Video \\u003E Picture \\u003E Text](#s \\\"\\u003E Lier1\\\")\\n\\n - Do use formatting, titles, or at the very least, [paragraph breaks](#s \\\"Hit enter twice, not once\\\")\\n\\n - Do keep updated modes organized, either with new posts commented in the original post, or with update codes added with [edits](#s \\\"v3.1 Never mind\\\")\\n\\n - Do put things you are unsure how to do under [Future Improvements](#s \\\"As you will somehow be smarter in the future\\\")\\n\\n - Do [credit](#s \\\"I'll talk about using others work later\\\") other users in your post. It's only polite\\n\\n - Do your [research.](#s \\\"See that other people have posted working code before\\\") It will save you time and effort\\n\\n - Don't go into the [nitty gritty.](#s \\\"I used this rule with this condition\\\") Explain how it works in game, not in code\\n\\n\\n\\n---\\n\\n\\n\\n#Reddit Comment Organization\\n\\n#### If comments are organized in a helpful manner, it will help people to:\\n\\n- Get useful feedback\\n\\n- Raise their self-esteem\\n\\n\\n\\n\\n\\n\\n\\n##Comment Example Layout\\n\\n- [Notice the Good](#s \\\"It does exists, its just hiding\\\")\\n\\n- Harsh reality (Optional)\\n\\n- [Useful feedback](#s \\\"Unnecessary\\\")\\n\\n\\n\\n\\n\\n##General Tips\\n\\n\\n\\n- Do always be positive. There is [no need nor reason for negativity.](#s \\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\")\\n\\n- Do mention similar ideas. Link to them so the poster can get some ideas.\\n\\n- Do give actual information/feedback.\\n\\n- Do keep comments to the post at hand.\\n\\n- Don't simply comment [\\\"Great job\\\"](#s \\\"Great Job, finding this hover text\\\"). That's what liking is usually for.\\n\\n- Don't assume that the [posters vision matches yours.](#s \\\"My vision isn't 20-20, you see\\\")\\n\\n- Good Example: \\\"Me and a few friends played this mode, because we love it from Halloo 4. It's a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There's some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\\"\\n\\n---\\n\\n# Reddit Mode Specific\\n\\n\\n##Game Mode Post\\n\\n- Do label the specific [play mode](#s \\\"FFA, 5CP, Domination\\\") used in the code if it is unclear\\n\\n\\n\\n---\\n\\n\\n\\n##Game Mode Comment\\n\\n- Do play and share your experiences\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Post\\n\\n\\n\\n####Hero Description Example Layout\\n\\n- Health\\n\\n- Passives\\n\\n- Triggered Abilities\\n\\n - Stats\\n\\n - Other Features\\n\\n\\n\\n- ###Brief Summary Tips\\n\\n - Do mention what [role](#s \\\"Flanker, Tank, Monkey, etc.\\\") your hero should fill\\n\\n - Don't talk about how your hero will [destroy the meta](#s \\\"It won't\\\")\\n\\n\\n\\n- ### Triggered Ability Tips\\n\\n - Do use numbers to describe hero [DPS](#s \\\"Deaths per Second\\\") and [HPS](#s \\\"i need Healing per Second\\\") if you want balance advice\\n\\n - Do keep any numbers used checked against [actual heroes](#s \\\"No supports firing 20 rounds of 15 dmg a second\\\")\\n\\n - Do check sources such as this _linked_ [Overwatch GamePedia](https://overwatch.gamepedia.com/Overwatch_Wiki) page for how to describe abilities\\n\\n\\n\\n- ### General Tips\\n\\n - Do follow precedent for most parts of your character. They don't need a new leveling system, 50 HP, and a different [control scheme](#s \\\"Command Line\\\")\\n\\n - Do make heroes both fun to play and [fun to play against](#s \\\"mostly the second\\\")\\n\\n - Don't make a character with [lots of exceptions](#s \\\"Blocks all CC except Doomfist Punch\\\")\\n\\n - Don't step on too many [toes](#s \\\"*Cough* Pre-nerf Bridgette *Cough*\\\")\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Comment\\n\\n- Do keep balance comparisons within Overwatch. Comparing to Bastion is [OK](#s \\\"If dangerous\\\"). Comparing to Demo is less [helpful](#s \\\"Unless they are making TF2 accurate Demo\\\")\\n\\n- Do think of the character as a [whole](#s \\\"They can't attack while their shield is up? Useless\\\")\\n\\n- Do be kind. Not all posters are secretly [Blizzard Devs testing new heroes](#s \\\"But some are, right?\\\")\\n\\n- Don't talk balance unless the poster [wants to.](#s \\\"The hero will be horribly underpowered their first time. Let that go.\\\") They may just be creating for fun\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Post\\n\\n- Do try to keep the code as [simple and self-contained](#s \\\"Minimize Dependencies\\\") as possible\\n\\n- Do mention what variables you use\\n\\n- Do explain how you accomplished your [goal](#s \\\"Magic is an acceptable response\\\")\\n\\n- Do explain [bugs and edge cases](#s \\\"Or treat them as just part of the experience\\\")\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Comment\\n\\n- Do mention what cool game-modes you can imagine using with it\\n\\n- Do mention alternate ideas for how to implement it\\n\\n- Do post links to other [implementations](#s \\\"With permission\\\")\\n\\n- Do be amazed at what they managed to do\\n\\n---\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkm0q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EReddit Post Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf posts are organized in a readable manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or hate\\\"\\u003ELocate modes they like\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Hardly\\\"\\u003EEasily lend assistance\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Except walking Zenyattas and wall-climbing Torbs\\\"\\u003ENot have to deal with ugly things\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EPost Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Flaired Appropriately\\\"\\u003EDescriptive Title\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPicture/Video \\u003Ca href=\\\"#s\\\" title=\\\"Follow this subs rules\\\"\\u003E(Optional)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECode\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or why your code is the awesomest ever\\\"\\u003EBrief Summary\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDetailed Description (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary as your creation is perfect\\\"\\u003EFuture Improvements\\u003C/a\\u003E (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Those whose stuff you stole\\\"\\u003ECredits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Posting Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETitle Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use this phrasing: \\u003Cem\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What you made\\\"\\u003EMyThing\\u003C/a\\u003E from \\u003Ca href=\\\"#s\\\" title=\\\"What you stole the idea from\\\"\\u003EOtherMedia\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo be very specific. \\u003Cem\\u003EAlphabetic Gun Game\\u003C/em\\u003E is better than simply \\u003Cem\\u003EGun Game\\u003C/em\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003EGood Example: \\u003Cem\\u003EAlphabetic Gun Game from \\u003Ca href=\\\"#s\\\" title=\\\"CS Major\\\"\\u003ECS:S:HTMLGO\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use a visual if possible. \\u003Ca href=\\\"#s\\\" title=\\\"\\u0026gt; Lier1\\\"\\u003EVideo \\u0026gt; Picture \\u0026gt; Text\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo use formatting, titles, or at the very least, \\u003Ca href=\\\"#s\\\" title=\\\"Hit enter twice, not once\\\"\\u003Eparagraph breaks\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep updated modes organized, either with new posts commented in the original post, or with update codes added with \\u003Ca href=\\\"#s\\\" title=\\\"v3.1 Never mind\\\"\\u003Eedits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo put things you are unsure how to do under \\u003Ca href=\\\"#s\\\" title=\\\"As you will somehow be smarter in the future\\\"\\u003EFuture Improvements\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo \\u003Ca href=\\\"#s\\\" title=\\\"I\\u0026#39;ll talk about using others work later\\\"\\u003Ecredit\\u003C/a\\u003E other users in your post. It\\u0026#39;s only polite\\u003C/li\\u003E\\n\\u003Cli\\u003EDo your \\u003Ca href=\\\"#s\\\" title=\\\"See that other people have posted working code before\\\"\\u003Eresearch.\\u003C/a\\u003E It will save you time and effort\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t go into the \\u003Ca href=\\\"#s\\\" title=\\\"I used this rule with this condition\\\"\\u003Enitty gritty.\\u003C/a\\u003E Explain how it works in game, not in code\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Comment Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf comments are organized in a helpful manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGet useful feedback\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERaise their self-esteem\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EComment Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"It does exists, its just hiding\\\"\\u003ENotice the Good\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHarsh reality (Optional)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary\\\"\\u003EUseful feedback\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo always be positive. There is \\u003Ca href=\\\"#s\\\" title=\\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\"\\u003Eno need nor reason for negativity.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention similar ideas. Link to them so the poster can get some ideas.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo give actual information/feedback.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep comments to the post at hand.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t simply comment \\u003Ca href=\\\"#s\\\" title=\\\"Great Job, finding this hover text\\\"\\u003E\\u0026quot;Great job\\u0026quot;\\u003C/a\\u003E. That\\u0026#39;s what liking is usually for.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t assume that the \\u003Ca href=\\\"#s\\\" title=\\\"My vision isn\\u0026#39;t 20-20, you see\\\"\\u003Eposters vision matches yours.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGood Example: \\u0026quot;Me and a few friends played this mode, because we love it from Halloo 4. It\\u0026#39;s a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There\\u0026#39;s some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\u0026quot;\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Mode Specific\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo label the specific \\u003Ca href=\\\"#s\\\" title=\\\"FFA, 5CP, Domination\\\"\\u003Eplay mode\\u003C/a\\u003E used in the code if it is unclear\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo play and share your experiences\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Post\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EHero Description Example Layout\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHealth\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPassives\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETriggered Abilities\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EStats\\u003C/li\\u003E\\n\\u003Cli\\u003EOther Features\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EBrief Summary Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo mention what \\u003Ca href=\\\"#s\\\" title=\\\"Flanker, Tank, Monkey, etc.\\\"\\u003Erole\\u003C/a\\u003E your hero should fill\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t talk about how your hero will \\u003Ca href=\\\"#s\\\" title=\\\"It won\\u0026#39;t\\\"\\u003Edestroy the meta\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003ETriggered Ability Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use numbers to describe hero \\u003Ca href=\\\"#s\\\" title=\\\"Deaths per Second\\\"\\u003EDPS\\u003C/a\\u003E and \\u003Ca href=\\\"#s\\\" title=\\\"i need Healing per Second\\\"\\u003EHPS\\u003C/a\\u003E if you want balance advice\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep any numbers used checked against \\u003Ca href=\\\"#s\\\" title=\\\"No supports firing 20 rounds of 15 dmg a second\\\"\\u003Eactual heroes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo check sources such as this \\u003Cem\\u003Elinked\\u003C/em\\u003E \\u003Ca href=\\\"https://overwatch.gamepedia.com/Overwatch_Wiki\\\"\\u003EOverwatch GamePedia\\u003C/a\\u003E page for how to describe abilities\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EGeneral Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo follow precedent for most parts of your character. They don\\u0026#39;t need a new leveling system, 50 HP, and a different \\u003Ca href=\\\"#s\\\" title=\\\"Command Line\\\"\\u003Econtrol scheme\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo make heroes both fun to play and \\u003Ca href=\\\"#s\\\" title=\\\"mostly the second\\\"\\u003Efun to play against\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t make a character with \\u003Ca href=\\\"#s\\\" title=\\\"Blocks all CC except Doomfist Punch\\\"\\u003Elots of exceptions\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t step on too many \\u003Ca href=\\\"#s\\\" title=\\\"*Cough* Pre-nerf Bridgette *Cough*\\\"\\u003Etoes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep balance comparisons within Overwatch. Comparing to Bastion is \\u003Ca href=\\\"#s\\\" title=\\\"If dangerous\\\"\\u003EOK\\u003C/a\\u003E. Comparing to Demo is less \\u003Ca href=\\\"#s\\\" title=\\\"Unless they are making TF2 accurate Demo\\\"\\u003Ehelpful\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo think of the character as a \\u003Ca href=\\\"#s\\\" title=\\\"They can\\u0026#39;t attack while their shield is up? Useless\\\"\\u003Ewhole\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be kind. Not all posters are secretly \\u003Ca href=\\\"#s\\\" title=\\\"But some are, right?\\\"\\u003EBlizzard Devs testing new heroes\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t talk balance unless the poster \\u003Ca href=\\\"#s\\\" title=\\\"The hero will be horribly underpowered their first time. Let that go.\\\"\\u003Ewants to.\\u003C/a\\u003E They may just be creating for fun\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo try to keep the code as \\u003Ca href=\\\"#s\\\" title=\\\"Minimize Dependencies\\\"\\u003Esimple and self-contained\\u003C/a\\u003E as possible\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what variables you use\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain how you accomplished your \\u003Ca href=\\\"#s\\\" title=\\\"Magic is an acceptable response\\\"\\u003Egoal\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain \\u003Ca href=\\\"#s\\\" title=\\\"Or treat them as just part of the experience\\\"\\u003Ebugs and edge cases\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what cool game-modes you can imagine using with it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention alternate ideas for how to implement it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo post links to other \\u003Ca href=\\\"#s\\\" title=\\\"With permission\\\"\\u003Eimplementations\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be amazed at what they managed to do\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkm0q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286051.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkcxj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257095.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**[TLDR:](#s \\\"Too Logical, Died Reading\\\")** I think that the Overwatch Workshop Community should get organized, and have some [ideas on doing so.](#s \\\"Not good ideas, mind you\\\")\\n\\n**Brief disclaimer:**\\n\\n- I by no means think these are the best ideas, I'm just trying to get a discussion started.\\n\\n- Please comment with better ideas, or parts I'm wrong about, or just because you feel like it.\\n\\n- A lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\n\\n- Also, liberal hover tags abound, and [none](#s \\\"some are funny, however\\\") are useful. The only things you can click on are specifically called out as links.\\n\\n- This got really big, really fast. I've split it into a few seperate posts. If the organization seems off, please tell me how to [fix it.](#s \\\"Because I don't know how to.\\\")\\n\\n---\\n\\n# Table of Contents\\n\\n##[Reddit Organization](#s \\\"How to do better than this post\\\") A.K.A Proposals\\n\\n- #### Posts\\n\\n- #### Comments\\n\\n- #### Mode Specific Tips\\n\\n- #### Ownership Discussion\\n\\n##[One-Stop Assistance](#s \\\"More like None-Start\\\") A.K.A Resources\\n\\n- #### [Workshop FAQ](#s \\\"What is an FAQ?\\\")\\n\\n- #### [Useful Links](#s \\\"May be copywrite infringing\\\")\\n - ###### Discord Channels\\n - ###### Youtube Channels\\n - ###### Dev Updates\\n - ###### Mode/Code Lists\\n\\n## [Workshop Improvement Ideas](#s \\\"Nonexistent\\\")\\n\\n## [Future](#s \\\"Implying they will get done\\\") Projects\\n\\n## Random [Asides](#s \\\"Also B-sides\\\")\\n - #### [TLDR](#s \\\"You look for the TLDR in the Table of Contents?\\\")\\n---\\n\\n[Reddit Organization Post Link]()\\n\\n[One Stop Assistance Post Link]()\\n\\n[My Code List Link]()\\n\\n[Workshop Improvement Ideas Link]()\\n\\n## Future Projects\\n#### I'll probably see what I can do to organize a large-scale modding project once we get enough space on the workshop for it.\\n#### I'll be updating and correcting this post with all the information you commentors give me, and the actual game-modes I've been collection. Maybe I'll add more hover-text jokes.\\n#### I'm planning on adding a section with advice on creating a new mode or character, instead of just how to post one.\\n\\n## Random Asides\\n#### About Me: I'm Lier1. I'm a filthy casual, I make lots of jokes, and I [main DPS.](#s \\\"The worst sort of main, I know\\\") However, I don't wish to offend, and hope to improve this resource, so feel free to comment and ask questions, fix my mistakes, or add more resources.\\n#### TLDR: I have some ideas for organizing the reddit posts and comments, the feedback we give the devs, an FAQ for answering your questions, and a One-Stop Workshop for leading you to resources.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkcxj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Too Logical, Died Reading\\\"\\u003ETLDR:\\u003C/a\\u003E\\u003C/strong\\u003E I think that the Overwatch Workshop Community should get organized, and have some \\u003Ca href=\\\"#s\\\" title=\\\"Not good ideas, mind you\\\"\\u003Eideas on doing so.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBrief disclaimer:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI by no means think these are the best ideas, I\\u0026#39;m just trying to get a discussion started.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPlease comment with better ideas, or parts I\\u0026#39;m wrong about, or just because you feel like it.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EA lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EAlso, liberal hover tags abound, and \\u003Ca href=\\\"#s\\\" title=\\\"some are funny, however\\\"\\u003Enone\\u003C/a\\u003E are useful. The only things you can click on are specifically called out as links.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EThis got really big, really fast. I\\u0026#39;ve split it into a few seperate posts. If the organization seems off, please tell me how to \\u003Ca href=\\\"#s\\\" title=\\\"Because I don\\u0026#39;t know how to.\\\"\\u003Efix it.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ETable of Contents\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"How to do better than this post\\\"\\u003EReddit Organization\\u003C/a\\u003E A.K.A Proposals\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EPosts\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EComments\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EMode Specific Tips\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EOwnership Discussion\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"More like None-Start\\\"\\u003EOne-Stop Assistance\\u003C/a\\u003E A.K.A Resources\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What is an FAQ?\\\"\\u003EWorkshop FAQ\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"May be copywrite infringing\\\"\\u003EUseful Links\\u003C/a\\u003E\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E###### Discord Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Youtube Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Dev Updates\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Mode/Code Lists\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Nonexistent\\\"\\u003EWorkshop Improvement Ideas\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Implying they will get done\\\"\\u003EFuture\\u003C/a\\u003E Projects\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ERandom \\u003Ca href=\\\"#s\\\" title=\\\"Also B-sides\\\"\\u003EAsides\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003E - #### \\u003Ca href=\\\"#s\\\" title=\\\"You look for the TLDR in the Table of Contents?\\\"\\u003ETLDR\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E[Reddit Organization Post Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[One Stop Assistance Post Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[My Code List Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Workshop Improvement Ideas Link]()\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EFuture Projects\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;ll probably see what I can do to organize a large-scale modding project once we get enough space on the workshop for it.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;ll be updating and correcting this post with all the information you commentors give me, and the actual game-modes I\\u0026#39;ve been collection. Maybe I\\u0026#39;ll add more hover-text jokes.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;m planning on adding a section with advice on creating a new mode or character, instead of just how to post one.\\u003C/h4\\u003E\\n\\n\\u003Ch2\\u003ERandom Asides\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EAbout Me: I\\u0026#39;m Lier1. I\\u0026#39;m a filthy casual, I make lots of jokes, and I \\u003Ca href=\\\"#s\\\" title=\\\"The worst sort of main, I know\\\"\\u003Emain DPS.\\u003C/a\\u003E However, I don\\u0026#39;t wish to offend, and hope to improve this resource, so feel free to comment and ask questions, fix my mistakes, or add more resources.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003ETLDR: I have some ideas for organizing the reddit posts and comments, the feedback we give the devs, an FAQ for answering your questions, and a One-Stop Workshop for leading you to resources.\\u003C/h4\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkcxj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557285895.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emo4wbj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557169931.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Fun Modes\\n\\n* K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n* 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n* RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n* EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n* N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n* 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n* M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n* T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n* NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n* R4DWM - BloodBorne in Overwatch - u/Elodeona\\n* EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n* FHQZ4 - Bridgette Pong - u/AJ_Black\\n* KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n* 53J3R - Shooters Vs Stabbers - Lilsis\\n* BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n* BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n* 5KCP4 - Dva Eject into Random Ult - u/qbbftw \\\\- ORIGINAL IDEA FROM: u/Woolin\\n* YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n* 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n* 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n* MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n* SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n* VJCT2 - Chase the Snowmen - u/andygmb\\n* 6PC67 - Take Hero of Kills - u/CrenderMutant\\n* 9J42E - Mcree Hot Potato - u/olipoulihot\\n* 85J46 - TF2 the Return - u/Greg266\\n* 7792M - Ninja Sword Fight - u/zhpete\\n* VQ5W8 - Turn Based 3v3 Deathmatch - u/nodas9990\\n* 56XNH - Reinhardt's Completely Stoned Bumper Car Emporeum v14 - u/TheRedstoneBlaze\\n* R68FF - Lucio Ball - u/Telefrag_Ent\\n* V5NKR - Volleybomb - u/Telefrag_Ent\\n* GB9PM - Instagib Railgun : Ashe Team Deathmatch - u/Telefrag_Ent\\n* PGF9P - 1 v 1 High Noon Duel - u/Zenmill\\n* ZKQVG - One in the Chamber: 3 Lives - u/iejb\\n* \\u00a0\\n* 0D2W5 - Hampster Chase - u/Woolin\\n* 6E3Z5 - Lucio Tag - u/Woolin \\u00a0\\n*\\n* 4J6KW - Screencheat - u/PotsNPans\\n* MN787 - Screencheat - u/microcosm_ow \\u00a0\\n*\\n* PTTNK - Weeping Angels (Zen Mcree) - u/Semproser\\n* X2HH9 - Weeping Angels (Mercy Mei) - u/Hogrid125 \\u00a0\\n*\\n* NJGZ4 - Deathmatch Rivals - u/Hypno--Toad\\n* A6736 - Rival System - u/Hypno--Toad \\u00a0\\n*\\n* JWY47 - Hammond Racing - @DanielFedder (Twitter)\\n* D9RND - Hamster Ball Racing - u/qwook \\u00a0\\n*\\n* SH9XN - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n* 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray \\u00a0\\n*\\n* RGH0D - High Speed: FFA - u/rbnsky\\n* SF1R2 - High Speed Gun Game - u/rbnsky \\u00a0\\n*\\n* E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n* QH5SP - PVE Horde Mode - u/Jechto\\n\\n## Training Modes\\n\\n* RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n* 2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n\\n* QKAAM - Placeable Cameras - u/ItsDeltin\\n* CQ00S - Elemental Aspects - u/poststakhanovist\\n* 179QN - Slot Machine - u/Cowboy_Jimmy\\n* 6WXRW - Navi - u/andygmb \\\\- u/Lymbow \\u00a0\\n*\\n* NK1YF - 2-D Sidescroller - u/HaxD3\\n* 4V8NC - Top Down Shooter - u/microcosm_ow \\u00a0\\n*\\n* ZW1PY - Scoreboard - u/Paf13\\n* 9EKZB - Scoreboard - u/caldoran2 \\u00a0\\n*\\n* QESP4 - Walls - u/Zezombye\\n* TZYK6 - Walls - u/Gecktendo\\n* RFJ4G - Walls - u/Gecktendo \\u00a0\\n*\\n* P4Y50 - Bunny Hopping - u/microcosm_ow\\n* WV5HH - Bunny Hop - u/TyzoneLyraNature\\n\\n## Hero Ideas\\n\\n* XJZB1 - Orisa AoE Push - AlexEptit\\n* H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n* RNKKJ - All Heroes Hover Jet - u/microcosm_ow\\n* 8H2DN - Sym Gravity Gun (Half-life) - u/IFIsc\\n* XGAPQ - Genji as Maeve (Paladins) - u/jprosk\\n* BE2J7 - Portal Gun - u/Lymbow \\\\- u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emo4wbj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9J42E - Mcree Hot Potato - \\u003Ca href=\\\"/u/olipoulihot\\\"\\u003Eu/olipoulihot\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E85J46 - TF2 the Return - \\u003Ca href=\\\"/u/Greg266\\\"\\u003Eu/Greg266\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E7792M - Ninja Sword Fight - \\u003Ca href=\\\"/u/zhpete\\\"\\u003Eu/zhpete\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVQ5W8 - Turn Based 3v3 Deathmatch - \\u003Ca href=\\\"/u/nodas9990\\\"\\u003Eu/nodas9990\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E56XNH - Reinhardt\\u0026#39;s Completely Stoned Bumper Car Emporeum v14 - \\u003Ca href=\\\"/u/TheRedstoneBlaze\\\"\\u003Eu/TheRedstoneBlaze\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER68FF - Lucio Ball - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EV5NKR - Volleybomb - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGB9PM - Instagib Railgun : Ashe Team Deathmatch - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EPGF9P - 1 v 1 High Noon Duel - \\u003Ca href=\\\"/u/Zenmill\\\"\\u003Eu/Zenmill\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZKQVG - One in the Chamber: 3 Lives - \\u003Ca href=\\\"/u/iejb\\\"\\u003Eu/iejb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u00a0\\u003C/li\\u003E\\n\\u003Cli\\u003E0D2W5 - Hampster Chase - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6E3Z5 - Lucio Tag - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003E4J6KW - Screencheat - \\u003Ca href=\\\"/u/PotsNPans\\\"\\u003Eu/PotsNPans\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMN787 - Screencheat - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EPTTNK - Weeping Angels (Zen Mcree) - \\u003Ca href=\\\"/u/Semproser\\\"\\u003Eu/Semproser\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EX2HH9 - Weeping Angels (Mercy Mei) - \\u003Ca href=\\\"/u/Hogrid125\\\"\\u003Eu/Hogrid125\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ENJGZ4 - Deathmatch Rivals - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EA6736 - Rival System - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EJWY47 - Hammond Racing - @DanielFedder (Twitter)\\u003C/li\\u003E\\n\\u003Cli\\u003ED9RND - Hamster Ball Racing - \\u003Ca href=\\\"/u/qwook\\\"\\u003Eu/qwook\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ESH9XN - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E179QN - Slot Machine - \\u003Ca href=\\\"/u/Cowboy_Jimmy\\\"\\u003Eu/Cowboy_Jimmy\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ENK1YF - 2-D Sidescroller - \\u003Ca href=\\\"/u/HaxD3\\\"\\u003Eu/HaxD3\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E4V8NC - Top Down Shooter - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETZYK6 - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERFJ4G - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EP4Y50 - Bunny Hopping - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERNKKJ - All Heroes Hover Jet - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8H2DN - Sym Gravity Gun (Half-life) - \\u003Ca href=\\\"/u/IFIsc\\\"\\u003Eu/IFIsc\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EXGAPQ - Genji as Maeve (Paladins) - \\u003Ca href=\\\"/u/jprosk\\\"\\u003Eu/jprosk\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emo4wbj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557198731.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emny9vc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MeddyEvalNight\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557166074.0, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Image was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u003Cimg/\\u003E . It looks like an inline rendered image needs to be uploaded\\n\\n\\u0026#x200B;\\n\\n[Video link](https://www.youtube.com/watch?v=yd98RGxad0U)\", \"link_title\": \"Testing inline image links. Is it a url link or an inline image render?\", \"author_flair_css_class\": null, \"name\": \"t1_emny9vc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EImage was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u0026lt;img/\\u0026gt; . It looks like an inline rendered image needs to be uploaded\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=yd98RGxad0U\\\"\\u003EVideo link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emny9vc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"report_reasons\": null, \"link_author\": \"MeddyEvalNight\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"created\": 1557194874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_emny9vc\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["355738"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:30 GMT"], "x-ratelimit-remaining": ["590.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["10"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360210.876410,VS0,VE555"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["391"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-12T17:23:30"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_eqwoano"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:31 GMT"], "x-ratelimit-remaining": ["589.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["11"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360211.165643,VS0,VE144"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["389"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_eqwoano"}, "recorded_at": "2019-06-12T17:23:31"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" [https://i.imgur.com/BcLJd0R.png](https://i.imgur.com/BcLJd0R.png)\", \"author_fullname\": \"t2_10ql04\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"-\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzo7q6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560353902.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/BcLJd0R.png\\\"\\u003Ehttps://i.imgur.com/BcLJd0R.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?auto=webp\\u0026s=4a378a7bc3457274b66b8ee8eb882ff642783683\", \"width\": 1336, \"height\": 1519}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=cbc6f3e7a6ecda90701d73011e3e790d45bbd90c\", \"width\": 108, \"height\": 122}, {\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=03e2f4af6ddf5c8737890b30e79ed72b9901f862\", \"width\": 216, \"height\": 245}, {\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d74a93b14c46489883c5f02c33da450d77ebe37e\", \"width\": 320, \"height\": 363}, {\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=011a46bab1307092be3c2fd323b1b3a8b27656a3\", \"width\": 640, \"height\": 727}, {\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=a549051db6975bc4d42a278dfa5be098628f5ad8\", \"width\": 960, \"height\": 1091}, {\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=809198336bfae74a54407360e2b303e1cea27afc\", \"width\": 1080, \"height\": 1227}], \"variants\": {}, \"id\": \"8JTQHHdDgC8_SeALTNL4NU6CLxxL9rjJ8peDHR20b-0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzo7q6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OverlordMikan\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzo7q6/_/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"subreddit_subscribers\": 709, \"created_utc\": 1560325102.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3k2b5rqg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Imgur test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bzmm85\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D640\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE\\u0026image=https%3A%2F%2Fi.imgur.com%2Fg1bMj4I.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"506\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 506}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views.\", \"title\": \"Imgur\", \"url\": \"https://imgur.com/a/vft9wGE\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 506, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D640\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE\\u0026image=https%3A%2F%2Fi.imgur.com%2Fg1bMj4I.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"506\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2Fg1bMj4I.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D640\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE\\u0026image=https%3A%2F%2Fi.imgur.com%2Fg1bMj4I.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"506\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bzmm85\", \"height\": 506}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/LPwD9l2igDdZHDhVW4SCg24zHEoKuO8JsVd5cLJw9jc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560342095.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/0az18JhjwNYZ250yTYrxHdB4t6VZCsTwWEg_EM1ts0E.jpg?auto=webp\\u0026s=bac5ca929900b55921c0c0fe830ed835ee3f1167\", \"width\": 640, \"height\": 480}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/0az18JhjwNYZ250yTYrxHdB4t6VZCsTwWEg_EM1ts0E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8e23fe990734476d61c7dcd7fd133d31ea6427a0\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/0az18JhjwNYZ250yTYrxHdB4t6VZCsTwWEg_EM1ts0E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=826bd8a95c8478b6530268766d4ae729d7e75c19\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/0az18JhjwNYZ250yTYrxHdB4t6VZCsTwWEg_EM1ts0E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b9c97fc463baaf51df71b79e46a52dedd84737d9\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/0az18JhjwNYZ250yTYrxHdB4t6VZCsTwWEg_EM1ts0E.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=39f67445637d3aae53a663de548a6f13953b9fbb\", \"width\": 640, \"height\": 480}], \"variants\": {}, \"id\": \"SZO-MAwDJE7bvKYpk3YhFlvXU7NsUi0U5Ue1j2BRy2I\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzmm85\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GloomyTeddyBear96\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzmm85/imgur_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/vft9wGE\", \"subreddit_subscribers\": 709, \"created_utc\": 1560313295.0, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views.\", \"title\": \"Imgur\", \"url\": \"https://imgur.com/a/vft9wGE\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 506, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D640\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE\\u0026image=https%3A%2F%2Fi.imgur.com%2Fg1bMj4I.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"506\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2Fg1bMj4I.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_rdpix\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"bbb\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bzmli2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/IkGhTHeoIfgIa9BSk64I5vVYHeNz_iZUT8uh7GN4DTo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560341954.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"steamcommunity.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/wGJ-JNT0v7Mtd34-V_u3hIVkli-YlvsRGyj5qYTXo5E.jpg?auto=webp\\u0026s=ca5ef1efa04d7fa91aef99f8a1ed5e3ea2543d9d\", \"width\": 512, \"height\": 288}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/wGJ-JNT0v7Mtd34-V_u3hIVkli-YlvsRGyj5qYTXo5E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3fe34f97d5d8131e79975d34f18f4a295a4e4b9a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/wGJ-JNT0v7Mtd34-V_u3hIVkli-YlvsRGyj5qYTXo5E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5c1ad9637a0e7eff8721ea0f10c88857fbfc9ca5\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/wGJ-JNT0v7Mtd34-V_u3hIVkli-YlvsRGyj5qYTXo5E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4fc887ba632a6ec2ef10590131bb511966799c8b\", \"width\": 320, \"height\": 180}], \"variants\": {}, \"id\": \"bST3LtO4WLe18WTKWsz528NxUZxkm8zKaglDuroqD0A\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzmli2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AlexeyZarubin\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzmli2/bbb/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://steamcommunity.com/sharedfiles/filedetails/?id=1767716809\", \"subreddit_subscribers\": 709, \"created_utc\": 1560313154.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_ld4zt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Mhm\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzlm10\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560335552.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"instagram.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzlm10\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Cosdaman\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzlm10/mhm/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.instagram.com/p/ByVkSg_l5bg/?igshid=1wd8oll8o521m\", \"subreddit_subscribers\": 709, \"created_utc\": 1560306752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2f7row8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bzl5p5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/hWPKGP6n5qk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"MxPx - Secret Weapon (Acoustic Cover)\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/hWPKGP6n5qk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"Brandon Purvis\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/hWPKGP6n5qk/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCqXSdtZuUqYrYZqkhnkrVdg\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/hWPKGP6n5qk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bzl5p5\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/hep0wcXot4ND1fXhvXsgaY8O7uI5gugUVTO_XD-u2O0.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560332827.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/cu2cEiof7NciZiuvQkIezyFYnS1gIN-c00_VtV0d3PI.jpg?auto=webp\\u0026s=aeade8c262ab5aca1dd8641f3fd7b32732607ff1\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cu2cEiof7NciZiuvQkIezyFYnS1gIN-c00_VtV0d3PI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=6bcaae8144d8d5bc729eacae0594cdc667bc2f36\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/cu2cEiof7NciZiuvQkIezyFYnS1gIN-c00_VtV0d3PI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=9bf94a0520cc761000e4e59a6e6fa2758b4be220\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/cu2cEiof7NciZiuvQkIezyFYnS1gIN-c00_VtV0d3PI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=933b120e0eee7baf22aaafe77a90e596302cfc59\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"pIXyrmiEr8L6COWIJr4jJRv6NZ3Ils4jHQMSlGqYKSA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzl5p5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aegisninja\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzl5p5/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=hWPKGP6n5qk\\u0026feature=youtu.be\", \"subreddit_subscribers\": 709, \"created_utc\": 1560304027.0, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"MxPx - Secret Weapon (Acoustic Cover)\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/hWPKGP6n5qk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"Brandon Purvis\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/hWPKGP6n5qk/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCqXSdtZuUqYrYZqkhnkrVdg\"}, \"type\": \"youtube.com\"}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://i.redd.it/ye5hani0zr331.png\\n\\nMore information on : http://www.cpprs.com/dwgexplore.html\", \"author_fullname\": \"t2_2eju5vig\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"CAD Project Point: Find and Replace Objects in AutoCAD with dwgExplore\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"media_metadata\": {\"ye5hani0zr331\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 628, \"x\": 1200, \"u\": \"https://i.redd.it/ye5hani0zr331.png\"}, \"m\": \"image/png\", \"id\": \"ye5hani0zr331\"}}, \"name\": \"t3_bzgoh3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/euqPf-UcAcSkEHl-5IHGT1NPvHjEnWap5OzoV-dQQsM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560308536.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/ye5hani0zr331.png\\\"\\u003Ehttps://i.redd.it/ye5hani0zr331.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMore information on : \\u003Ca href=\\\"http://www.cpprs.com/dwgexplore.html\\\"\\u003Ehttp://www.cpprs.com/dwgexplore.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzgoh3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ddulovic\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzgoh3/cad_project_point_find_and_replace_objects_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bzgoh3/cad_project_point_find_and_replace_objects_in/\", \"subreddit_subscribers\": 709, \"created_utc\": 1560279736.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2eju5vig\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_bzgihf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/mGn4Vc6DP297nyvjH2WHqjA2PX6KVKGqIlkXdV0tOTE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560307740.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/sl1e3irswr331.png?auto=webp\\u0026s=8f1a29245ef13ce697c3c6b088723e1500787fa2\", \"width\": 1200, \"height\": 628}, \"resolutions\": [{\"url\": \"https://preview.redd.it/sl1e3irswr331.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=dc7892186b1af51dbcdd409fdbad71d1c159a3d4\", \"width\": 108, \"height\": 56}, {\"url\": \"https://preview.redd.it/sl1e3irswr331.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=49bd27f0ddad7e851ddfd0ccaf8e87be2cd5ebcf\", \"width\": 216, \"height\": 113}, {\"url\": \"https://preview.redd.it/sl1e3irswr331.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a84858cbec419335644d37e15f6e9017389cdbdd\", \"width\": 320, \"height\": 167}, {\"url\": \"https://preview.redd.it/sl1e3irswr331.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=ee4132e7f0b0014d810f67c4a60a31b7c7fa98cf\", \"width\": 640, \"height\": 334}, {\"url\": \"https://preview.redd.it/sl1e3irswr331.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=44c3187092c3cec7528b4b193e6df9756360e034\", \"width\": 960, \"height\": 502}, {\"url\": \"https://preview.redd.it/sl1e3irswr331.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=3718112fa4f395202784649dc436da6933c348cd\", \"width\": 1080, \"height\": 565}], \"variants\": {}, \"id\": \"9qwhM2L6d_74xaFCXLMXWooWPS04Ee4XQdXXcES8vKk\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzgihf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ddulovic\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzgihf/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/sl1e3irswr331.png\", \"subreddit_subscribers\": 709, \"created_utc\": 1560278940.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2lrf3og0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A\\u0336\\u030d\\u0311\\u0344\\u0314\\u0315\\u0352\\u034b\\u033f\\u031b\\u0308\\u030b\\u035d\\u0303\\u0327\\u032c\\u032c\\u033cr\\u0338\\u0344\\u0300\\u0324\\u0321\\u0319\\u031f\\u0330\\u032d\\u032f\\u034e\\u032a\\u0339\\u0327\\u0348\\u0330\\u0355\\u0326e\\u0335\\u035d\\u030b\\u0344\\u031a\\u030b\\u034b\\u0344\\u0311\\u0343\\u0307\\u0311\\u031b\\u0309\\u0347\\u0349\\u031f\\u0322\\u0339\\u035c \\u0338\\u0358\\u0352\\u0304\\u0313\\u0352\\u0351\\u0307\\u031b\\u031b\\u030f\\u0349\\u0359\\u0318\\u032f\\u035a\\u0328\\u032f\\u0354\\u0349\\u032d\\u035c\\u0320y\\u0336\\u034a\\u0341\\u030a\\u0344\\u035d\\u0360\\u0345\\u034d\\u031fo\\u0337\\u030f\\u0306\\u0303\\u0332\\u0317\\u0327\\u033a\\u0356\\u0318\\u032f\\u032c\\u0326\\u0319u\\u0334\\u0309\\u0309\\u0358\\u0312\\u033f\\u0358\\u0351\\u0305\\u0308\\u0315\\u0302\\u0313\\u0308\\u0344\\u0313\\u0330\\u0328\\u0355\\u0329\\u0345\\u032b\\u0345\\u0348\\u0323\\u0326\\u0331\\u0354\\u0356 \\u0338\\u0302\\u0351\\u0311\\u030e\\u0301\\u0351\\u0306\\u0308\\u0308\\u0322\\u031d\\u0345\\u032el\\u0338\\u0341\\u030b\\u0314\\u0314\\u0341\\u0357\\u030b\\u0351\\u033d\\u035ai\\u0337\\u0300\\u0344\\u031b\\u0304\\u0302\\u0315\\u032d\\u0323\\u031f\\u0329\\u033b\\u0332\\u032as\\u0334\\u0350\\u030c\\u0323\\u0321\\u0347\\u0349\\u0322\\u034e\\u0339\\u0321t\\u0334\\u0300\\u033e\\u032a\\u032a\\u0348\\u0320\\u032c\\u0318\\u033a\\u035c\\u0355\\u034d\\u0354\\u032ce\\u0337\\u0344\\u0312\\u0346\\u0342\\u031d\\u035c\\u034d\\u0324\\u031e\\u032b\\u032f\\u0354\\u035a\\u0321\\u0317\\u0317n\\u0338\\u034c\\u030c\\u034c\\u034a\\u0304\\u0305\\u0350\\u0346\\u0313\\u0351\\u0309\\u0310\\u031a\\u0307\\u0351\\u0328\\u034ei\\u0338\\u0342\\u0315\\u0309\\u0354\\u0320\\u0329\\u032a\\u0345\\u0331\\u0316\\u0355\\u032c\\u034en\\u0337\\u0344\\u034a\\u033d\\u0306\\u0313\\u0303\\u0352\\u0304\\u0346\\u0360\\u0314\\u0351\\u033f\\u030a\\u0357\\u0327\\u0316\\u0332\\u0323\\u0328\\u0353\\u0326\\u0328\\u032fg\\u0338\\u033d\\u0313\\u0341\\u0312\\u0347 \\u0337\\u034a\\u030d\\u034a\\u0358\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzgebp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560307187.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzgebp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bbtehbuild\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzgebp/are_you_listening/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bzgebp/are_you_listening/\", \"subreddit_subscribers\": 709, \"created_utc\": 1560278387.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2eju5vig\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Find and Replace Objects in AutoCAD with dwgExplore\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzgdhy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560307074.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"cpprs.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzgdhy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ddulovic\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzgdhy/find_and_replace_objects_in_autocad_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"http://www.cpprs.com/dwgexplore.html\", \"subreddit_subscribers\": 709, \"created_utc\": 1560278274.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026\\u0026%%#######%%\\u0026\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@\\u0026*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,(,,,,,,,,,,,,,,,,,,,,/@@@@@@@@@@@\\u0026%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@\\u0026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@/,,,,,,,,,,,,,,,,,,,,,%@@@@@@\\u0026%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@#,**,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*/,,,,,*%@,,,,,,,,,,,,,,,,,,,*@@@@%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@(*,,,,,*@@\\u0026\\u0026@@@@@@@@@@@@@@@@\\u0026%#((//************//////((\\u0026//((/@,,,,(,,,,,,,,,,,(@@@\\u0026%#/(%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@(/,,,,,,,/%@@%%%%%%%%%%%(*,,,,,*(%%%%\\u0026\\u0026\\u0026\\u0026@@@@@@@@@@@@@@@\\u0026@%((/@,,,,%,,,,,,,/\\u0026@@@\\u0026%*,,,,,,%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@#(,,,,,,,,,/(@@\\u0026%%%%%,,,,,,,,,,,,,,,,,/%%%%%%%%%%%%%%%%%%@@#((,,,,,@/,,,/(@@@@%%*,,,,,,,,,%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@%(/,,,,,,,,,,/((@@%%%/,,,,,,,,,,,,,,,,,,,,%%%%%%%%%%%%%%%%%@((*,,,,/@(((@@@@%%%%,,,,,,,,,#%%%,,,,%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@\\u0026((,,*,,,,,,,,,*((@@\\u0026%%%,,,,,,,,,,,,,,,,,,,%%%%%%%%%%%%%%%%%%@(*,,,,\\u0026@@@@@\\u0026%%%%%%%%%%%%%%%%%%%%%%%\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@(((((/,,,,,,,,,,*(((@@%%%%%,,,,,,,,,,,,,*%%%%%%%%%%%%%%%%%%%%@@*,,,(#@((((@@%%%%%%%%%%%%%%%%\\u0026@@@\\u0026%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@(((((((,,,,,,,,,,,/(((%@\\u0026%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@(,,,,,,,*(((#@\\u0026%%%%%%%\\u0026@@@\\u0026(((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@%(((((((*,,,,,,,,,,,/((((@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%(,,,,,#%@@,,,,,,,,,/(((@@@@@@%(((((((/**,,,,,(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@((((((((/,,,,,,,,,,,,/(((((@@%%%%%%%%%%%%%%%%%%%%%%%%%%/,,,,,,%%%@%,,,,,,,,,,@@%(/**,,,,,,,,,,,,,,,,,*(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@((((((((((,,,,,,,,,,,/(((((((%@\\u0026%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\\u0026@@@\\u0026/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,/(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@\\u0026(((((((((((((((((((((((((((((((@@%%%%%%%%%%%%%%%%%%%%%\\u0026@@@@#*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@((((((((((@@#(((((((((((((((((((((@@%%%%%%%%%%%\\u0026@@@@%*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,(((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@%((((((((((@@@@@@@((((((((((((((((((%@@%\\u0026@@@@@%((/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*(\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@(((((((((((@@ @@@@@@\\u0026(((((((((((@@@\\u0026(((((((*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*(\\u0026@@@@@@@\\u0026(. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@((((((((((((@% ,\\u0026@@@@@@#(((((((((((((*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*(%@@@@@@@\\u0026(. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@(((((((((((((((@@ ,, .#@@@@@@@((/////////(#%\\u0026@@@@@@@@@@@@@%/, , @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@((((((((((((((((#@, ,@@@@ .(%\\u0026\\u0026@@@\\u0026\\u0026%#(*,. @@@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@((((((((((((((((((@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@ @@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@(((((((((((((((((((#@@@@@@@ @@@@@@@ #@@@@ @@@@% @@@@@* @@@@@@/ *@@@@@@@# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@(((((((((((((((((((((@@@@@@, @@@@@@@ @@@@@@ @@@@@@% @@@@@@@ (@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@((((((((((((((((((((((%@@@@@@@@@@@@@@@ @@@@@@@ .@@@@@@@ .@@@@@@@\\u0026 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@((((((((((((((((((((((((@@@@@@@@@@@@@@@\\u0026\\u0026@@@@@@@@% \\u0026@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@(((((((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@ #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@(((((((((((((((((((((\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@(((((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@(((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@(((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@#((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026@@@@@@@@@@@@@@@@\\u0026%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%@@@@@@@@@@@@@%%@@@@@%\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026@@@@@@@@@@@\\u0026%%@@@@@%\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%\\u0026@@@//@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026/////@@@((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026@@@@@@\\u0026%%@@@@@@@@@@%@@\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@///////////////@@@(((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026\\u0026@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@//////////////////@@@%((((((((\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026\\u0026@%%\\u0026@@@@@@@@\\u0026%#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@(///\\u0026@@@@@@@@@@@@\\u0026%@@@@@#((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026%\\u0026@@@@@@#####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@%///////%@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@\\u0026\\u0026@@((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@%/////////%@@@\\u0026\\u0026\\u0026\\u0026#@@@,,,@@%(((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,#####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@%%//////////%%@@\\u0026\\u0026\\u0026,@@@,,,,,@@(((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,####,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@%%////////////%%\\u0026@@\\u0026\\u0026\\u0026,@@@@,,,,,@@\\u0026((((((\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026%###/,,,,,*#####,,,\\u0026\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@%%%%%%//////////%%%@@\\u0026\\u0026\\u0026@@@@,,,,,,,@@#(((((\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@%%%%%%(///////////%%%%@@\\u0026\\u0026@@@@##*,,,,@@@(((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@@%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@%%%%%%%////////////%%%%\\u0026@@\\u0026@@@@%######@@@((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026\\u0026@@@@@@%%@@@@@@%%#//%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@%%%%%%%%#////////////%%%%%@@\\u0026\\u0026@@@\\u0026#####@@\\u0026(((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(/@@@\\u0026*@@@////#%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@%%%%%%%%%%/////////////%%%%%%@@\\u0026\\u0026@@\\u0026\\u0026\\u0026\\u0026##@@@(((((@@@@@@@@@@@@@@@@@@@@@@%(@@@@@@@@ (@@/@@ *@@/////%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@%%%%%%%%%%%%//////#%%%%%%%%%%%\\u0026@\\u0026\\u0026@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@(((((@@@@@@@@@@@@@@@@@@@@ @@@@@@\\u0026 ,@@@@@ /@@//////%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@@\\u0026\\u0026@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@%((((\\u0026@@@@@@@\\u0026 @@@@@@@\\u0026 @@@@@@. @@@@. \\u0026@@//////%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%@@@@@%%%%%%%%%%%%%%%%%%%%@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@@@@@@(((((@@@@@@. %@@@@@\\u0026 .@@@@* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%@@ @@@@@@%%%%%%%%%%%%%%%\\u0026@@@@@%%%%%%//@@@((((#@@@@@/ @@@@@ .#@@@@@@@@@@@* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@%%%%%%%%%\\u0026@ @@@@@@@\\u0026%%%%%%%%%%%%%%%%%//////@@@(((((@@@@( (@@@@\\u0026/,,,,,%@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@\\u0026%@@%%%%%%%%%%@@ ,@@@@@@@%%%%%%%%%////////@@@(((((@@ .#@@@@@#*,,,,,,,,,(@@@@ @@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%@@%%%%%%%%%%%@@ @@@@ *@@@@@@@@@@@@@@@@@@%((((@( ,\\u0026@@@@@#*,,**/(((((/,,,%@@@@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%@ @@@@@\\u0026 @@@@ @@@#((((@@@%*//(((((((((((((/,,(@@@ @@@@@@ @@@@@* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%@@@@@@@@ #@@@@@@ @@@ @@@%(((((((((((((((((((((*,#@@@ @@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%@@@@@@@ @@@@@@@ @@@@@@ @@@@@%((((((((((((((((((,#@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@ @@@@@@@@ #@@@@@@ @@@@@@\\u0026((((((((((((((*#@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@( @@@@@@@ %@@@@@@@\\u0026((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@((((((#\\u0026@@@@\\u0026(***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(**********/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#***********//((%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%((((@((((((%@@@@@@@@#*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*@@@@\\u0026%%#######%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@*****@@***/@@%%%###########@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@\\u0026%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@/*****(@*@@(**/@@%#############%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%\\u0026@@@@@@@@@@@@@@@@@@@@@@%*****@*/@/(@@**#@@########@@@%###%@@@@@###@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@**@(***@\\u0026(@%/((@@@**%@%##%@@##########%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%@%%%%@@@@@@@@@@@@@@@@@***%@**\\u0026@(\\u0026@*((@@(((((/@@@%##############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%@@@@@@@@@@@@@@@(****@//@@@@\\u0026@@@@@@@@@@@@@##################\\u0026@(\\u0026(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%@@@@@@@@@@@@@@(****\\u0026%**@@**((@/(%@%\\u0026@\\u0026%%%################\\u0026@@@@(***#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%@@@@@@@@@@@@((***\\u0026%*@@**((@**((%@\\u0026%%%%%%%########\\u0026@@@####%@@@/(@****%@@@@@@@@@@@@@@@@@(@*//#@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%@@@@@@@@@@@#((**@*\\u0026@**((@/**(((@@%%%%%%%%%##%@@###########@@@@\\u0026////*@******@*****\\u0026\\u0026///#@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@%///@@@@@@@@@@@@@@@@@@%%%%%%%%@@@@@@@@@@@(((@@\\u0026@*/@@@*/(((((%@%%%%%%%%\\u0026@@#################@@@@@@@@@\\u0026/////(@////(\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@%/(@@@@@@@@@@@@@@@@@@@@\\u0026%%%%%%%%@@@@@@@@@@@(@@**/(@(((((((((@\\u0026%%%%%@@%%###################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@%////@@@@@@@@@@@@@@@@@@@@@%%%%%%%%@@@@@@@@@@@(#@***(@((((((((((@@%%%@@%%%%####################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@%#///@@@@@@@@@@@@@@@@@@@,,,@@%%%%%%%@@@@@@@@@@@@@@*(@#((((((((((@@%@@%%%%%%%####################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@%%//////////%@@@@@@@@@@@@@@,,@@@%%%%%%%@@@@@@@@@***%@((((((((((((@@@%%%%%%%%%##########%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@%%(///////////%%@@\\u0026\\u0026@@@@@@@@@@@,@@%%%%%%%@@@@@@\\u0026***#@@@@@@@@@@%#((@@\\u0026%%%%%%%%%####@@@@@##########%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@\\u0026%%//#//////////%%@@@\\u0026\\u0026\\u0026@@@@@@@@@@@@@@@%%%%@@@@@@@/#@@@/*********@@@@%%%%%%%%%\\u0026@@@@%#################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@%%%%%#///////////%%%@@\\u0026\\u0026\\u0026@@@@,@@@@@@@@@@@@@@@@%**(@@@@@@@@*********@@%%%%%@@@@#####################%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@%%%%%%%///////////#%%%%@@\\u0026\\u0026@@@%###@@@@@@@@@@@@\\u0026**#@@@@@@@@@@@@\\u0026*****@\\u0026%%@@@\\u0026%%%%#######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@%%%%%%%%(///////////(%%%%\\u0026@@\\u0026@@@\\u0026###@@@@@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%######################%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@%%%%%%%%%////////////(%%%%%@@\\u0026\\u0026@@\\u0026\\u0026\\u0026###@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@%%%%%%%%%%(/////////(%%%%%%%%%@@\\u0026\\u0026@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026%#@@@@@%%%@@@@@@@@@@@@@@@@@\\u0026%%%%%%%%%%%%%%%#####################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\\u0026@\\u0026\\u0026@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@%%%%%@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%#%%%%%%%%%\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%@@@%%%%%%%%%%%%%%%%%%%%%@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@@%%%%%@@@@@@@ @@@%%%%%%%%%%%%%%%%%%%%%\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%@@*@@@@@%%%%%%%%%%%%%%%%%%@@@@@@@@%%%%@@@@%%%%@@@@@@ @@@%%%%%%%%%%%%%%%\\u0026@@@@@@@@ .@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%@@ \\u0026@@@@@@%%%%%%%%%%%@@@%%%%%%%%////@@@@%%%%@@@@@\\u0026 @@@%%%%%%%%%%\\u0026@@@@@@@@@@@@#///@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@%%%%%%%%%%@@ (@@@@@@@%%%%%%%%%%%%////////@@@%%%%%@@@ @@%%%%%\\u0026@@@@@@@@@@/////////@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%@@%%%%%%%%%%%@@ \\u0026\\u0026 \\u0026@@@@@@@@\\u0026%%%%%%%%%%@@@%%%%%@ @@%\\u0026@@@@@@@@@@@@@(%%%////@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%@%%%%%%%%%%%%@@ \\u0026@@@@ @@@%%%%%@@@@@@@@@@@@@@@@@@%%%#///@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%@%%%%%%%%%%%%@@ @@@@@@ @@@@@@ @@@%%%%%%%%@@@@@@@@@@@@%%%///@@@ @@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%@@@@@@@ @@@@@@@ @@@@@ ,@@@@%%%%%%@@@@@@@@@@@%%%//@@@@ #@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%%@@@@@@# @@@@@@@ @@@@@@ @@@@@@%%%%@@@@@@@@@@%%#/@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@ @@@@@@@ @@@@@@@%%@@@@@@@@@%%/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@#/@@@@@@@@@@@@@@@@@*********@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*********/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((@@@@@@((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(\\u0026@@@#####@@@/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(**@@\\u0026\\u0026\\u0026#########@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(****@@\\u0026############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*(@@@**/@@###########@@@@@@@@@@@@##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((@*((@@***@@#####@@%########@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@((@*((\\u0026@(@((*%@#@@##############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%@@@%%%%%@@@@@@@@@@@@@@@%@@@@@@@@@@@@@((@((((%@@@@################@@*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%@@@@@@@@@@@@@@@@@@@@@@*#@**((@@@@@\\u0026\\u0026@@\\u0026\\u0026#################%@@***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%@@@@@@@@@@@@@@@@@@@@**@(*((@@*((@@@\\u0026\\u0026\\u0026\\u0026\\u0026###########@@@@@@@@@\\u0026(**@*@@@@@@@@@@@@@@@@@@@@@@@/*((@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%@@@@@@@@@@@@@@@@@@**@/*((@@**(((@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026####@@@##########@@@@@@(/***@***#@@@@@@@@@@@@@@\\u0026(@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@///@@@@@@@@@@@@@@@@@@%%%%%%%@@@@@@@@@@@@@@@@@*@@@@(@@**/(((@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@%##############@@@@@@@(((@(((((/@//(((@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@////@@@@@@@@@@@@@@@@@@%%%%%%%%%@@@@@@@@@@@@@@(@***(@\\u0026((((((((@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@##################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@\\u0026////@@@@@@@@@@@@@@@@@@@@@%%%%%%%%@@@@@@@@@@@@(@***((\\u0026(((((((((@@\\u0026\\u0026\\u0026\\u0026@@\\u0026\\u0026##################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@%%////@@@@@@@@@@@@@@@@@@\\u0026\\u0026@@%%%%%%%%@@@@@@@@@@@@@**(%@((((((((((@@\\u0026\\u0026@@\\u0026\\u0026\\u0026\\u0026###################\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@%////////@@@@@@@@@@@@@@@,,,,@@%%%%%%@@@@@@@@@@@@*@@@@(((((((((((@@@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026###############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@%%//////////%%@@\\u0026@@@@@@@@@@@,,@@%%%@@@@@@@@@@@@@@@(@%((((((((((((@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026#####%@@@@@#######@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@%%////////////%%%@@\\u0026\\u0026\\u0026,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*******(@@@@@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@@@################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@%%%%%%//////////%%%%@@\\u0026\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**********@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@@@#####################\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@%%%%%%#///////////%%%%@@\\u0026\\u0026@@@@##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*******@@\\u0026\\u0026\\u0026@@@@\\u0026\\u0026######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@%%%%%%%////////////%%%%%@@\\u0026\\u0026@@@@@@@@@@@@@@@@@@@*(@@@@@@@@@@@@@@@@@*#@\\u0026@@@@\\u0026\\u0026\\u0026\\u0026\\u0026######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\", \"author_fullname\": \"t2_2lrf3og0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzg352\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560305766.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;%%#######%%\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,(,,,,,,,,,,,,,,,,,,,,/@@@@@@@@@@@\\u0026amp;%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@\\u0026amp;,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@/,,,,,,,,,,,,,,,,,,,,,%@@@@@@\\u0026amp;%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@#,**,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*/,,,,,*%@,,,,,,,,,,,,,,,,,,,*@@@@%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@(*,,,,,*@@\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@@\\u0026amp;%#((//************//////((\\u0026amp;//((/@,,,,(,,,,,,,,,,,(@@@\\u0026amp;%#/(%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@(/,,,,,,,/%@@%%%%%%%%%%%(*,,,,,*(%%%%\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@\\u0026amp;@%((/@,,,,%,,,,,,,/\\u0026amp;@@@\\u0026amp;%*,,,,,,%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@#(,,,,,,,,,/(@@\\u0026amp;%%%%%,,,,,,,,,,,,,,,,,/%%%%%%%%%%%%%%%%%%@@#((,,,,,@/,,,/(@@@@%%*,,,,,,,,,%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@%(/,,,,,,,,,,/((@@%%%/,,,,,,,,,,,,,,,,,,,,%%%%%%%%%%%%%%%%%@((*,,,,/@(((@@@@%%%%,,,,,,,,,#%%%,,,,%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@\\u0026amp;((,,*,,,,,,,,,*((@@\\u0026amp;%%%,,,,,,,,,,,,,,,,,,,%%%%%%%%%%%%%%%%%%@(*,,,,\\u0026amp;@@@@@\\u0026amp;%%%%%%%%%%%%%%%%%%%%%%%\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@(((((/,,,,,,,,,,*(((@@%%%%%,,,,,,,,,,,,,*%%%%%%%%%%%%%%%%%%%%@@*,,,(#@((((@@%%%%%%%%%%%%%%%%\\u0026amp;@@@\\u0026amp;%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@(((((((,,,,,,,,,,,/(((%@\\u0026amp;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@(,,,,,,,*(((#@\\u0026amp;%%%%%%%\\u0026amp;@@@\\u0026amp;(((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@%(((((((*,,,,,,,,,,,/((((@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%(,,,,,#%@@,,,,,,,,,/(((@@@@@@%(((((((/**,,,,,(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@((((((((/,,,,,,,,,,,,/(((((@@%%%%%%%%%%%%%%%%%%%%%%%%%%/,,,,,,%%%@%,,,,,,,,,,@@%(/**,,,,,,,,,,,,,,,,,*(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@((((((((((,,,,,,,,,,,/(((((((%@\\u0026amp;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\\u0026amp;@@@\\u0026amp;/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,/(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@\\u0026amp;(((((((((((((((((((((((((((((((@@%%%%%%%%%%%%%%%%%%%%%\\u0026amp;@@@@#*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@((((((((((@@#(((((((((((((((((((((@@%%%%%%%%%%%\\u0026amp;@@@@%*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,(((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@%((((((((((@@@@@@@((((((((((((((((((%@@%\\u0026amp;@@@@@%((/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*(\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@(((((((((((@@ @@@@@@\\u0026amp;(((((((((((@@@\\u0026amp;(((((((*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*(\\u0026amp;@@@@@@@\\u0026amp;(. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@((((((((((((@% ,\\u0026amp;@@@@@@#(((((((((((((*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*(%@@@@@@@\\u0026amp;(. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@(((((((((((((((@@ ,, .#@@@@@@@((/////////(#%\\u0026amp;@@@@@@@@@@@@@%/, , @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@((((((((((((((((#@, ,@@@@ .(%\\u0026amp;\\u0026amp;@@@\\u0026amp;\\u0026amp;%#(*,. @@@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@((((((((((((((((((@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@ @@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@(((((((((((((((((((#@@@@@@@ @@@@@@@ #@@@@ @@@@% @@@@@* @@@@@@/ *@@@@@@@# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@(((((((((((((((((((((@@@@@@, @@@@@@@ @@@@@@ @@@@@@% @@@@@@@ (@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@((((((((((((((((((((((%@@@@@@@@@@@@@@@ @@@@@@@ .@@@@@@@ .@@@@@@@\\u0026amp; @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@((((((((((((((((((((((((@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;@@@@@@@@% \\u0026amp;@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@(((((((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@ #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@(((((((((((((((((((((\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@(((((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@(((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@(((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@#((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;@@@@@@@@@@@@@@@@\\u0026amp;%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%@@@@@@@@@@@@@%%@@@@@%\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;@@@@@@@@@@@\\u0026amp;%%@@@@@%\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%\\u0026amp;@@@//@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;/////@@@((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;@@@@@@\\u0026amp;%%@@@@@@@@@@%@@\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@///////////////@@@(((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@//////////////////@@@%((((((((\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;@%%\\u0026amp;@@@@@@@@\\u0026amp;%#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@(///\\u0026amp;@@@@@@@@@@@@\\u0026amp;%@@@@@#((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;%\\u0026amp;@@@@@@#####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@%///////%@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@\\u0026amp;\\u0026amp;@@((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@%/////////%@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;#@@@,,,@@%(((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,#####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@%%//////////%%@@\\u0026amp;\\u0026amp;\\u0026amp;,@@@,,,,,@@(((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,####,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@%%////////////%%\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;,@@@@,,,,,@@\\u0026amp;((((((\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;%###/,,,,,*#####,,,\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@%%%%%%//////////%%%@@\\u0026amp;\\u0026amp;\\u0026amp;@@@@,,,,,,,@@#(((((\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@%%%%%%(///////////%%%%@@\\u0026amp;\\u0026amp;@@@@##*,,,,@@@(((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@%%%%%%%////////////%%%%\\u0026amp;@@\\u0026amp;@@@@%######@@@((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;@@@@@@%%@@@@@@%%#//%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@%%%%%%%%#////////////%%%%%@@\\u0026amp;\\u0026amp;@@@\\u0026amp;#####@@\\u0026amp;(((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(/@@@\\u0026amp;*@@@////#%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@%%%%%%%%%%/////////////%%%%%%@@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;##@@@(((((@@@@@@@@@@@@@@@@@@@@@@%(@@@@@@@@ (@@/@@ *@@/////%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@%%%%%%%%%%%%//////#%%%%%%%%%%%\\u0026amp;@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@(((((@@@@@@@@@@@@@@@@@@@@ @@@@@@\\u0026amp; ,@@@@@ /@@//////%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@@\\u0026amp;\\u0026amp;@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@%((((\\u0026amp;@@@@@@@\\u0026amp; @@@@@@@\\u0026amp; @@@@@@. @@@@. \\u0026amp;@@//////%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%@@@@@%%%%%%%%%%%%%%%%%%%%@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@@@@@(((((@@@@@@. %@@@@@\\u0026amp; .@@@@* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%@@ @@@@@@%%%%%%%%%%%%%%%\\u0026amp;@@@@@%%%%%%//@@@((((#@@@@@/ @@@@@ .#@@@@@@@@@@@* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@%%%%%%%%%\\u0026amp;@ @@@@@@@\\u0026amp;%%%%%%%%%%%%%%%%%//////@@@(((((@@@@( (@@@@\\u0026amp;/,,,,,%@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@\\u0026amp;%@@%%%%%%%%%%@@ ,@@@@@@@%%%%%%%%%////////@@@(((((@@ .#@@@@@#*,,,,,,,,,(@@@@ @@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%@@%%%%%%%%%%%@@ @@@@ *@@@@@@@@@@@@@@@@@@%((((@( ,\\u0026amp;@@@@@#*,,**/(((((/,,,%@@@@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%@ @@@@@\\u0026amp; @@@@ @@@#((((@@@%*//(((((((((((((/,,(@@@ @@@@@@ @@@@@* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%@@@@@@@@ #@@@@@@ @@@ @@@%(((((((((((((((((((((*,#@@@ @@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%@@@@@@@ @@@@@@@ @@@@@@ @@@@@%((((((((((((((((((,#@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@ @@@@@@@@ #@@@@@@ @@@@@@\\u0026amp;((((((((((((((*#@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@( @@@@@@@ %@@@@@@@\\u0026amp;((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@((((((#\\u0026amp;@@@@\\u0026amp;(***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(**********/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#***********//((%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%((((@((((((%@@@@@@@@#*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*@@@@\\u0026amp;%%#######%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@*****@@***/@@%%%###########@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@/*****(@*@@(**/@@%#############%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@%*****@*/@/(@@**#@@########@@@%###%@@@@@###@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@**@(***@\\u0026amp;(@%/((@@@**%@%##%@@##########%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%@%%%%@@@@@@@@@@@@@@@@@***%@**\\u0026amp;@(\\u0026amp;@*((@@(((((/@@@%##############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%@@@@@@@@@@@@@@@(****@//@@@@\\u0026amp;@@@@@@@@@@@@@##################\\u0026amp;@(\\u0026amp;(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%@@@@@@@@@@@@@@(****\\u0026amp;%**@@**((@/(%@%\\u0026amp;@\\u0026amp;%%%################\\u0026amp;@@@@(***#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%@@@@@@@@@@@@((***\\u0026amp;%*@@**((@**((%@\\u0026amp;%%%%%%%########\\u0026amp;@@@####%@@@/(@****%@@@@@@@@@@@@@@@@@(@*//#@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%@@@@@@@@@@@#((**@*\\u0026amp;@**((@/**(((@@%%%%%%%%%##%@@###########@@@@\\u0026amp;////*@******@*****\\u0026amp;\\u0026amp;///#@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@%///@@@@@@@@@@@@@@@@@@%%%%%%%%@@@@@@@@@@@(((@@\\u0026amp;@*/@@@*/(((((%@%%%%%%%%\\u0026amp;@@#################@@@@@@@@@\\u0026amp;/////(@////(\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@%/(@@@@@@@@@@@@@@@@@@@@\\u0026amp;%%%%%%%%@@@@@@@@@@@(@@**/(@(((((((((@\\u0026amp;%%%%%@@%%###################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@%////@@@@@@@@@@@@@@@@@@@@@%%%%%%%%@@@@@@@@@@@(#@***(@((((((((((@@%%%@@%%%%####################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@%#///@@@@@@@@@@@@@@@@@@@,,,@@%%%%%%%@@@@@@@@@@@@@@*(@#((((((((((@@%@@%%%%%%%####################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@%%//////////%@@@@@@@@@@@@@@,,@@@%%%%%%%@@@@@@@@@***%@((((((((((((@@@%%%%%%%%%##########%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@%%(///////////%%@@\\u0026amp;\\u0026amp;@@@@@@@@@@@,@@%%%%%%%@@@@@@\\u0026amp;***#@@@@@@@@@@%#((@@\\u0026amp;%%%%%%%%%####@@@@@##########%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@\\u0026amp;%%//#//////////%%@@@\\u0026amp;\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@%%%%@@@@@@@/#@@@/*********@@@@%%%%%%%%%\\u0026amp;@@@@%#################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@%%%%%#///////////%%%@@\\u0026amp;\\u0026amp;\\u0026amp;@@@@,@@@@@@@@@@@@@@@@%**(@@@@@@@@*********@@%%%%%@@@@#####################%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@%%%%%%%///////////#%%%%@@\\u0026amp;\\u0026amp;@@@%###@@@@@@@@@@@@\\u0026amp;**#@@@@@@@@@@@@\\u0026amp;*****@\\u0026amp;%%@@@\\u0026amp;%%%%#######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@%%%%%%%%(///////////(%%%%\\u0026amp;@@\\u0026amp;@@@\\u0026amp;###@@@@@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%######################%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@%%%%%%%%%////////////(%%%%%@@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;###@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@%%%%%%%%%%(/////////(%%%%%%%%%@@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;%#@@@@@%%%@@@@@@@@@@@@@@@@@\\u0026amp;%%%%%%%%%%%%%%%#####################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\\u0026amp;@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@%%%%%@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%#%%%%%%%%%\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%@@@%%%%%%%%%%%%%%%%%%%%%@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@%%%%%@@@@@@@ @@@%%%%%%%%%%%%%%%%%%%%%\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%@@*@@@@@%%%%%%%%%%%%%%%%%%@@@@@@@@%%%%@@@@%%%%@@@@@@ @@@%%%%%%%%%%%%%%%\\u0026amp;@@@@@@@@ .@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%@@ \\u0026amp;@@@@@@%%%%%%%%%%%@@@%%%%%%%%////@@@@%%%%@@@@@\\u0026amp; @@@%%%%%%%%%%\\u0026amp;@@@@@@@@@@@@#///@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@%%%%%%%%%%@@ (@@@@@@@%%%%%%%%%%%%////////@@@%%%%%@@@ @@%%%%%\\u0026amp;@@@@@@@@@@/////////@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%@@%%%%%%%%%%%@@ \\u0026amp;\\u0026amp; \\u0026amp;@@@@@@@@\\u0026amp;%%%%%%%%%%@@@%%%%%@ @@%\\u0026amp;@@@@@@@@@@@@@(%%%////@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%@%%%%%%%%%%%%@@ \\u0026amp;@@@@ @@@%%%%%@@@@@@@@@@@@@@@@@@%%%#///@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%@%%%%%%%%%%%%@@ @@@@@@ @@@@@@ @@@%%%%%%%%@@@@@@@@@@@@%%%///@@@ @@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%@@@@@@@ @@@@@@@ @@@@@ ,@@@@%%%%%%@@@@@@@@@@@%%%//@@@@ #@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%%@@@@@@# @@@@@@@ @@@@@@ @@@@@@%%%%@@@@@@@@@@%%#/@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@ @@@@@@@ @@@@@@@%%@@@@@@@@@%%/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@#/@@@@@@@@@@@@@@@@@*********@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*********/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((@@@@@@((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(\\u0026amp;@@@#####@@@/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(**@@\\u0026amp;\\u0026amp;\\u0026amp;#########@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(****@@\\u0026amp;############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*(@@@**/@@###########@@@@@@@@@@@@##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((@*((@@***@@#####@@%########@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@((@*((\\u0026amp;@(@((*%@#@@##############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%@@@%%%%%@@@@@@@@@@@@@@@%@@@@@@@@@@@@@((@((((%@@@@################@@*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%@@@@@@@@@@@@@@@@@@@@@@*#@**((@@@@@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;#################%@@***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%@@@@@@@@@@@@@@@@@@@@**@(*((@@*((@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;###########@@@@@@@@@\\u0026amp;(**@*@@@@@@@@@@@@@@@@@@@@@@@/*((@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%@@@@@@@@@@@@@@@@@@**@/*((@@**(((@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;####@@@##########@@@@@@(/***@***#@@@@@@@@@@@@@@\\u0026amp;(@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@///@@@@@@@@@@@@@@@@@@%%%%%%%@@@@@@@@@@@@@@@@@*@@@@(@@**/(((@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@%##############@@@@@@@(((@(((((/@//(((@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@////@@@@@@@@@@@@@@@@@@%%%%%%%%%@@@@@@@@@@@@@@(@***(@\\u0026amp;((((((((@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@##################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@\\u0026amp;////@@@@@@@@@@@@@@@@@@@@@%%%%%%%%@@@@@@@@@@@@(@***((\\u0026amp;(((((((((@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;##################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@%%////@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;@@%%%%%%%%@@@@@@@@@@@@@**(%@((((((((((@@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;###################\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@%////////@@@@@@@@@@@@@@@,,,,@@%%%%%%@@@@@@@@@@@@*@@@@(((((((((((@@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;###############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@%%//////////%%@@\\u0026amp;@@@@@@@@@@@,,@@%%%@@@@@@@@@@@@@@@(@%((((((((((((@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;#####%@@@@@#######@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@%%////////////%%%@@\\u0026amp;\\u0026amp;\\u0026amp;,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*******(@@@@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@@################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@%%%%%%//////////%%%%@@\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**********@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@@#####################\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@%%%%%%#///////////%%%%@@\\u0026amp;\\u0026amp;@@@@##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*******@@\\u0026amp;\\u0026amp;\\u0026amp;@@@@\\u0026amp;\\u0026amp;######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@%%%%%%%////////////%%%%%@@\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@@@@@*(@@@@@@@@@@@@@@@@@*#@\\u0026amp;@@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzg352\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bbtehbuild\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzg352/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bzg352/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1560276966.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"There seems to be a lot of confusion on how the Vikings seemingly gave Kyle Rudolph a $1.625M raise in 2019 per Ian Rapoport but seemingly saved $4M against the 2019 cap per Tom Pelissero. \\n\\n*Although the actual contractual breakout will vary from my example (especially in years 3/4 of the extension)*\\n\\nI wanted to show how you can accomplish both a raise and cap savings in a single restructure. \\n\\nWhat I believe the Vikings did was restructure a large portion but not all of Kyle's current base salary of $7.275M. The restructured portion is them prorated across 2019 and the 4 extension years. I also believe the Vikings offered Kyle a small signing bonus (prorated) and a 2019 roster bonus (not prorated) which accounts to the $1.625M raise. \\n\\n\\n\\n**Putting numbers to this I would expect the new deal to look somewhat like this:** \\n\\n\\nYR | Base | SB | Restructure | Roster | Workout | Cap\\n:--: | :--: | :--: | :--: | :--: | :--: | :--: \\n2019 | $1.275M | $205K | $1.2M| $850K| $100K| $3.63M\\n2020 | $4.495M | $205K | $1.2M| $2.5M| $100K| $8.5M\\n2021 | $7.495M | $205K | $1.2M| $850K| $100K| $9.5M\\n2022 | $8.245M | $205K | $1.2M| $850K| $100K| $10.25M\\n2023 | $9.740M | $205K | $1.2M| $850K| $100K| $11.745M\\n\\n**The yearly cap vs. dead cap breakout is** \\n\\n\\nYear | Cap Hit | Dead Cap \\n:--: | :--: | :--: \\n2019 | $3.63M | ($9.25M)\\n2020 | $8.5M | ($5.62M)\\n2021 | $9.5M | ($4.21M)\\n2022 | $10.25M | ($2.81M)\\n2023 | $11.745M | ($1.40M)\\n\\n*Note that this does not include injury guarantees*\\n\\n\\nThe cost of creating salary cap space in 2019 is that you create dead money in the future. Fortunately for the Vikings they can still escape the deal in 2020 if necessary. The post-June 1 number is also attractive in each year giving added flexibility. \\n\\nI would expect Brez's leveling to look nicer than mine and without seeing the actual structure the Vikings could go against their normal restructure precedence. But this should hopefully help explain how they can offer and raise while still reaping the immediate cap benefits.\", \"author_fullname\": \"t2_yy53v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test / Edit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzeule\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560300359.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere seems to be a lot of confusion on how the Vikings seemingly gave Kyle Rudolph a $1.625M raise in 2019 per Ian Rapoport but seemingly saved $4M against the 2019 cap per Tom Pelissero. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EAlthough the actual contractual breakout will vary from my example (especially in years 3/4 of the extension)\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wanted to show how you can accomplish both a raise and cap savings in a single restructure. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat I believe the Vikings did was restructure a large portion but not all of Kyle\\u0026#39;s current base salary of $7.275M. The restructured portion is them prorated across 2019 and the 4 extension years. I also believe the Vikings offered Kyle a small signing bonus (prorated) and a 2019 roster bonus (not prorated) which accounts to the $1.625M raise. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPutting numbers to this I would expect the new deal to look somewhat like this:\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EYR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBase\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ERestructure\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ERoster\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EWorkout\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ECap\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$1.275M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$205K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$1.2M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$850K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$100K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$3.63M\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2020\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$4.495M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$205K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$1.2M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$2.5M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$100K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$8.5M\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2021\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$7.495M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$205K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$1.2M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$850K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$100K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$9.5M\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2022\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$8.245M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$205K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$1.2M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$850K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$100K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$10.25M\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2023\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$9.740M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$205K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$1.2M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$850K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$100K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$11.745M\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThe yearly cap vs. dead cap breakout is\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EYear\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ECap Hit\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EDead Cap\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$3.63M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E($9.25M)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2020\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$8.5M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E($5.62M)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2021\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$9.5M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E($4.21M)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2022\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$10.25M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E($2.81M)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2023\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$11.745M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E($1.40M)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ENote that this does not include injury guarantees\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe cost of creating salary cap space in 2019 is that you create dead money in the future. Fortunately for the Vikings they can still escape the deal in 2020 if necessary. The post-June 1 number is also attractive in each year giving added flexibility. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would expect Brez\\u0026#39;s leveling to look nicer than mine and without seeing the actual structure the Vikings could go against their normal restructure precedence. But this should hopefully help explain how they can offer and raise while still reaping the immediate cap benefits.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzeule\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ShirtlessChampion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzeule/test_edit/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bzeule/test_edit/\", \"subreddit_subscribers\": 709, \"created_utc\": 1560271559.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3x6ve0io\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bzcqna\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/8OzoZyUbXGI?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"1875\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/8OzoZyUbXGI?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Circle J - Topic\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/8OzoZyUbXGI/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCxC6mRdOoP5ACU29HieIHsw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/8OzoZyUbXGI?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bzcqna\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Ki_3gTda5yMUpD7UyxTLnw7TNBZGtiBTApg_DptKvQE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560289856.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ltKZE_1cf9PxqUKZrC83SMc5jye1tkNyoedKX3ZV6oE.jpg?auto=webp\\u0026s=1ddf928a9f18514c12c1805d7f6543b29f7e7708\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ltKZE_1cf9PxqUKZrC83SMc5jye1tkNyoedKX3ZV6oE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b13a9608d454af62a792e8b5c9d56d670c206e69\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/ltKZE_1cf9PxqUKZrC83SMc5jye1tkNyoedKX3ZV6oE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=95874b63e734cc13db7695d39b613f476332f494\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/ltKZE_1cf9PxqUKZrC83SMc5jye1tkNyoedKX3ZV6oE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7af528e967fce2df31c57d70a8261151eb8a89fe\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"R28XQ1nG_AK-Mo2PSWHHz2PwXXNzOHZiu957lwuBLgg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzcqna\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ghostofconnolly\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzcqna/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=8OzoZyUbXGI\", \"subreddit_subscribers\": 709, \"created_utc\": 1560261056.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"1875\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/8OzoZyUbXGI?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Circle J - Topic\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/8OzoZyUbXGI/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCxC6mRdOoP5ACU29HieIHsw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_kap1l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bz7usj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ql08nT79ILcqqXKhn-7pWvsW_-AFSC4FoHG9mqpKWMA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560255317.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"twitter.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/QvOptX4myzoeJFIZpujlk5tVhsSbUOG-AcrpWJ5Hv5A.jpg?auto=webp\\u0026s=54acfeb6e599e888dc8a257d9823e2cec6e104e0\", \"width\": 1075, \"height\": 1518}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/QvOptX4myzoeJFIZpujlk5tVhsSbUOG-AcrpWJ5Hv5A.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=93cc99e7feb03332adbc7c59728776cf0cb02775\", \"width\": 108, \"height\": 152}, {\"url\": \"https://external-preview.redd.it/QvOptX4myzoeJFIZpujlk5tVhsSbUOG-AcrpWJ5Hv5A.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=63cf7f2cdd58dee0ea10a6ee55e2513015c93806\", \"width\": 216, \"height\": 305}, {\"url\": \"https://external-preview.redd.it/QvOptX4myzoeJFIZpujlk5tVhsSbUOG-AcrpWJ5Hv5A.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=31afadb11cd6bc49337ef9db16402ffadc4135a2\", \"width\": 320, \"height\": 451}, {\"url\": \"https://external-preview.redd.it/QvOptX4myzoeJFIZpujlk5tVhsSbUOG-AcrpWJ5Hv5A.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=ab57d44a9334efea66082729abeda7524188a497\", \"width\": 640, \"height\": 903}, {\"url\": \"https://external-preview.redd.it/QvOptX4myzoeJFIZpujlk5tVhsSbUOG-AcrpWJ5Hv5A.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=965fed616c11aa33c35dc87e533611fabb54639c\", \"width\": 960, \"height\": 1355}], \"variants\": {}, \"id\": \"sMzTXv0XOZb_jqvXr7l0ny73QNXKvoio_OvEN4x7UVs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz7usj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DDTBassG\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bz7usj/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://twitter.com/sioopaoo_7_10/status/1125372700367540224\", \"subreddit_subscribers\": 709, \"created_utc\": 1560226517.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_rlxf3r3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Simple Excel Mapper update | Icons added\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bz5jvk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/I2g9t7YMnop_y5acFmxFQkRTS9r2PvcytScojJRCAZI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560241372.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"goblinshenchman.wordpress.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/WnqCsIv_aQxB13BMb97U2uxBp3IK60qgBeusZgsnwsU.jpg?auto=webp\\u0026s=695300ec4b39e4428c13799835acb835037ed38e\", \"width\": 629, \"height\": 780}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/WnqCsIv_aQxB13BMb97U2uxBp3IK60qgBeusZgsnwsU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4422f9d3b1d1f3ca486afaf00ab0e73e13e3fa7e\", \"width\": 108, \"height\": 133}, {\"url\": \"https://external-preview.redd.it/WnqCsIv_aQxB13BMb97U2uxBp3IK60qgBeusZgsnwsU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fa2f26bdc471a2b5ae16549fee226ccb79a82205\", \"width\": 216, \"height\": 267}, {\"url\": \"https://external-preview.redd.it/WnqCsIv_aQxB13BMb97U2uxBp3IK60qgBeusZgsnwsU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=08f5e8dffda87af3a1e579b26123bfcf20d7c834\", \"width\": 320, \"height\": 396}], \"variants\": {}, \"id\": \"jn3AyyYZ6gpoA4qou8auaW4rCib7LxRMyjJE1sQt0e4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz5jvk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Goblinsh\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bz5jvk/simple_excel_mapper_update_icons_added/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://goblinshenchman.wordpress.com/2019/06/11/simple-excel-mapper-update-icons-added/\", \"subreddit_subscribers\": 709, \"created_utc\": 1560212572.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_u8joa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Profile for Michael\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_byx5nz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/0EWJv0xSZ7AIFdF61uHexhw9s-shwk4f6dueM12UshE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560197931.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"seacrush.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?auto=webp\\u0026s=d7f994f48ea9d1bb120e7769ffe6e43b8b2cf3e4\", \"width\": 1280, \"height\": 668}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f8ddfe18b3dc72dcb9a14c476425e15260c57d8a\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=2fbba1e53867e15d861efd34b1c6bed7a992a480\", \"width\": 216, \"height\": 112}, {\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9b0bbbc9a93d0a55f9e87cf372373e3421d765d6\", \"width\": 320, \"height\": 167}, {\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=823d99d7f73686509530e13e61f68c61d7400984\", \"width\": 640, \"height\": 334}, {\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=25711beb33248ed93971d314beea9c1d26b91a71\", \"width\": 960, \"height\": 501}, {\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=83d5981d739fca1e19ad6edb9e10a4c03e7b9bb8\", \"width\": 1080, \"height\": 563}], \"variants\": {}, \"id\": \"XPwZO2SrSThdVw6I8H7iQdpi86XUMBB_W3br9h1fIVQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byx5nz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mlake900\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/byx5nz/profile_for_michael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.seacrush.com/u/MichaelLake/en\", \"subreddit_subscribers\": 709, \"created_utc\": 1560169131.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1jz1io\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"This is a test!!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_byre4u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/DiFCnCbOb7xWtIYEmquYTQCBb8PIi2clliM6mV_e0QI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560156350.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"media.giphy.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?format=png8\\u0026s=b94579def98d79022bb4c7c20b48e6889fb5acc4\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=cc3d5ff8106654917c3a8f341402ae925a39c749\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=0986f98a38b759d9bc8050c1c11c40d9ebed67e7\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=f4ac22a4a53caad57d37e0f903111c12d462acce\", \"width\": 320, \"height\": 240}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?s=d7086306be8757bce540e53f1ae5c8498b750318\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=108\\u0026crop=smart\\u0026s=0b8513555b0e97dcc5584531b679ccbc1722efa6\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=216\\u0026crop=smart\\u0026s=35462ce5f76994417b4aabbdeb7ae82e40f040fb\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=320\\u0026crop=smart\\u0026s=8d3a0836c702332cb9086092b5f2c1e1930da874\", \"width\": 320, \"height\": 240}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?format=mp4\\u0026s=77807d6c66232f0401f4ca3f2f667cd5c18cf0cc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=108\\u0026format=mp4\\u0026s=51265f3ca0e892a6512fb6eb6ed06027ed407efb\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=216\\u0026format=mp4\\u0026s=1e9b057d564899ac7fcdb1212ae1c57b1f65cd5d\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=320\\u0026format=mp4\\u0026s=265c767a445b30b3e51bfe6db2d33efdee465e01\", \"width\": 320, \"height\": 240}]}}, \"id\": \"6O82RIK323e-OgnkggWAHV_V4_X09JGzsFg2KPGPsTU\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byre4u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lividcargo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/byre4u/this_is_a_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://media.giphy.com/media/l0uWTCjTVmAckMhRGl/giphy.gif\", \"subreddit_subscribers\": 709, \"created_utc\": 1560127550.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_35kiizw7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test 67 here we go again\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_byphya\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/_tmbNPrkDSY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 459, \"scrolling\": false, \"height\": 344}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"EMULATOR MADNESS VOL.2 - REVENGE OF THE PENTIUM MMX\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 344, \"width\": 459, \"html\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/_tmbNPrkDSY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"\\u3008JMS\\u3009\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/_tmbNPrkDSY/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF2pwSn514FD_JT3AINTHHw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/_tmbNPrkDSY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 459, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/byphya\", \"height\": 344}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/dPhHMnBTb0oytKz8X1xu9VJBychkAQdiKLm00LYvIrc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560145260.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?auto=webp\\u0026s=ac5687faab7f136677f76c88f3dd50c47a38e0a8\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5e77838e388e48a699b0d57de2061427b58adaa9\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6f9a572a4ca6e9836fa46c86192d56b19b9e30d9\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8aa4f2eb893bbebd7ab659d3f8ad6029eca0c96d\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"CRyevw-zBGHRF0Q9UTeHjNpa_bXhg5bApuXVx8P9OW8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byphya\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sleepchao\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/byphya/test_67_here_we_go_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://youtu.be/_tmbNPrkDSY\", \"subreddit_subscribers\": 709, \"created_utc\": 1560116460.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"EMULATOR MADNESS VOL.2 - REVENGE OF THE PENTIUM MMX\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 344, \"width\": 459, \"html\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/_tmbNPrkDSY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"\\u3008JMS\\u3009\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/_tmbNPrkDSY/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF2pwSn514FD_JT3AINTHHw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://youtu.be/\\\\_tmbNPrkDSY](https://youtu.be/_tmbNPrkDSY)\", \"author_fullname\": \"t2_35kiizw7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test 34. doin it again\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bypdoa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560144600.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/_tmbNPrkDSY\\\"\\u003Ehttps://youtu.be/_tmbNPrkDSY\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?auto=webp\\u0026s=ac5687faab7f136677f76c88f3dd50c47a38e0a8\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5e77838e388e48a699b0d57de2061427b58adaa9\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6f9a572a4ca6e9836fa46c86192d56b19b9e30d9\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8aa4f2eb893bbebd7ab659d3f8ad6029eca0c96d\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"CRyevw-zBGHRF0Q9UTeHjNpa_bXhg5bApuXVx8P9OW8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bypdoa\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sleepchao\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bypdoa/test_34_doin_it_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bypdoa/test_34_doin_it_again/\", \"subreddit_subscribers\": 709, \"created_utc\": 1560115800.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u003Ca href+=\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\"\\u003EUmbrella Monster\\\"\\u003C/a\\u003E\", \"author_fullname\": \"t2_13h189\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"pic test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bykj2c\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560117918.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;a href+=\\u0026quot;[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\u0026quot;\\u0026gt;Umbrella Monster\\u0026quot;\\u0026lt;/a\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bykj2c\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"RockSlyde\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1560089118.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nI think I found it!\\n\\n\\u0026#x200B;\\n\\nPretty sure it's \\\"Not of This Earth\\\", circa 1957. Google-sleuthing with the \\\"umbrella\\\" description found a couple of pics.\\n\\n[https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2Fbasementrejects.com%2Fwp-content%2Fuploads%2F2013%2F02%2Fnot-of-this-earth-flying-alien-kill.jpg\\u0026f=1](https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2Fbasementrejects.com%2Fwp-content%2Fuploads%2F2013%2F02%2Fnot-of-this-earth-flying-alien-kill.jpg\\u0026f=1)\", \"author_fullname\": \"t2_13h189\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"NOTE post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bykfrf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560117318.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I found it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPretty sure it\\u0026#39;s \\u0026quot;Not of This Earth\\u0026quot;, circa 1957. Google-sleuthing with the \\u0026quot;umbrella\\u0026quot; description found a couple of pics.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2Fbasementrejects.com%2Fwp-content%2Fuploads%2F2013%2F02%2Fnot-of-this-earth-flying-alien-kill.jpg\\u0026amp;f=1\\\"\\u003Ehttps://proxy.duckduckgo.com/iu/?u=http%3A%2F%2Fbasementrejects.com%2Fwp-content%2Fuploads%2F2013%2F02%2Fnot-of-this-earth-flying-alien-kill.jpg\\u0026amp;f=1\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/oxCEtr9d5pRoxF6Z7UZrkq09Jmvz38uW93EnrD2-NDo.jpg?auto=webp\\u0026s=c0492de19c17db3df4d2b629782d9095b5ea25b4\", \"width\": 600, \"height\": 304}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/oxCEtr9d5pRoxF6Z7UZrkq09Jmvz38uW93EnrD2-NDo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a8087458609e096f60cb4375521de0ed255f73af\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/oxCEtr9d5pRoxF6Z7UZrkq09Jmvz38uW93EnrD2-NDo.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=390e5421884839975e1eb0d7ef842982ede6ea83\", \"width\": 216, \"height\": 109}, {\"url\": \"https://external-preview.redd.it/oxCEtr9d5pRoxF6Z7UZrkq09Jmvz38uW93EnrD2-NDo.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f75357d5ee0ba5c3cb85bf8bf836aa9473f71e47\", \"width\": 320, \"height\": 162}], \"variants\": {}, \"id\": \"alLzwS9aVWNrIw1e55pT8t9rdZ66NyZw9NCMj4OJhl0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bykfrf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"RockSlyde\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bykfrf/note_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bykfrf/note_post/\", \"subreddit_subscribers\": 709, \"created_utc\": 1560088518.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*NOTE: This post is a follow-up to a post I made [HERE](https://old.reddit.com/r/fixingmovies/comments/bnihgj/reimagining_xmen_2000_as_a_modern_superhero_movie/).*\\n\\n*Real talk: I was going to make it a standalone post\\u2014but I ended it with a cliffhanger, and I had a few more ideas stuck in my head. If you enjoyed my last post, hopefully you'll enjoy this one.*\\n\\n*Anyway...*\\n______________________\\n\\n***X-Men: Children of the Atom***\\n______________________\\n\\n***INTRODUCTION:***\\n\\nFive years ago, Jean Grey and her fellow **X-Men** led a daring escape from a US government prison, battled **the Sentinels**, and narrowly survived a confrontation with the Mutant terrorist **Magneto**. Now, their story continues. But the five original X-Men\\u2014now young adults\\u2014face a slough of changes in their private lives.\\n\\nFirst, **Warren Worthington** (\\\"**Angel**\\\") chooses to leave the Xavier Institute to care for his terminally ill father. Then **Hank McCoy** (\\\"**Beast**\\\") chooses to leave to pursue his doctoral studies, planning to devote his life to science. Finally, **Bobby Drake** (\\\"**Iceman**\\\"), who just wants a normal life, decides to settle down with his girlfriend **Lorna**. Only **Scott Summers** (\\\"**Cyclops**\\\") can't envision a life outside of the X-Men; ever since losing his family in a mysterious plane crash at the age of 10, the Xavier Institute has been Scott's only home, and the X-Men are the only family that he has left.\\n\\nAs Scott's relationship with **Jean Grey** develops into a passionate love affair, Jean is torn between her devotion to Scott and her desire to move forward with her life. Though she longs to conceal her powerful psychic abilities and live as an ordinary human, Jean knows that Scott could never leave the Institute, and she feels compelled to stay by his side. This leaves Scott and Jean as the last remaining members of the original X-Men. But that may change soon.\\n\\nAs Professor Xavier turns his eyes to the world at large, it soon becomes clear that the struggle for Mutant Rights is no longer solely an American problem; all over the world, innocent Mutants are being arrested and detained by paranoid government forces, and some are choosing to fight back. Over time, rumors spread of an underground network of Mutant rebels, who supposedly work to shelter and protect fugitive Mutants. Some call them terrorists, and others call them freedom fighters\\u2014but Professor Xavier sees them as potential new recruits.\\n___________________\\n\\n***PROLOGUE:***\\n\\nIn a snowy forest somewhere north of the Canadian border, a squad of Sentinel pilots sets out to bring in a rogue Mutant. As they use heat vision to scan the rows of trees, the squad leader warns his teammates to stay sharp, reminding them that their target could be anywhere. But as the Sentinels close in on a mysterious figure hidden in the shadows, the **mysterious figure** fearlessly steps forward to confront them. As he does, we see a glint of light on metal blades, and we hear a distinctive sound:\\n\\n***SNIKT!***\\n\\nThe Sentinels fire their laser cannons\\u2014but the figure moves with inhuman agility, dodging their blasts with ease. Before they can lock onto him, he scampers up a tree trunk and jumps from branch to branch, then finally leaps at the nearest Sentinel and slices off its arm. Before the Sentinel can ignite its booster jets and fly away, the figure slices through its engine tank with his deadly metal blades, and the Sentinel catches fire and explodes.\\n\\nLasers flash as the Sentinels shoot wildly at the mysterious figure scampers from branch to branch, striking at the armored robots with deadly precision. Finally, when he makes his way to the last one, he takes his time pulling the helpless pilot from his cockpit and pinning him to the ground. As he does, we close in on his hand, and we see\\u2014for the first time\\u2014that the metal blades are actually retractable *claws* attacked to his knuckles.\\n\\n*\\\"Never hunt a hunter...\\\"* the figure whispers.\\n\\nHe slits the pilot's throat, leaving his claws red with blood.\\n_________________\\n\\n***ACT 1:***\\n\\nOn a quiet day in Moscow, a pair of uniformed FSB agents knock on the door of a secluded apartment, flanked by a squad of armed soldiers. When a young blonde woman answer the door, she stares defiantly at the agents.\\n\\n*\\\"There's no use playing the fool, Ms. Rasputin,\\\"* the lead agent says. *\\\"We know that you're sheltering a Mutant here. And you know the penalty for refusing to hand him over.\\\"*\\n\\nThe woman\\u2014**Ilyana Rasputin**\\u2014stares back at them, maintaining her cold composure.\\n\\n*\\\"I would never give my brother to mongrels like you,\\\"* she hisses. *\\\"He's a Mutant, but he's still my brother.\\\"*\\n\\nA tall, dark-haired man appears behind Ilyana and places a comforting hand upon her shoulder.\\n\\n*\\\"It's alright, Ilyana,\\\"* **Piotr Rasputin** says. *\\\"I'll go quietly. But always remember: your quarrel is with me, and me alone. My family is not to be harmed.\\\"*\\n\\nWith that, the agents cuff Piotr's wrists, and the soldiers escort him from the building at gunpoint. Standing at the window of her apartment with tear-streaked eyes, Ilyana can only watch helplessly as her beloved brother is marched into an armored van, softly whispering *\\\"Goodbye\\\"* as they close the doors. But unbeknownst to her, he's being watched from afar...\\n\\nIt turns out that three members of the mysterious **Mutant Freedom Network** have come to Moscow, and they know that a Mutant is about to be imprisoned by government forces. This time, they've sworn to do something about it.\\n\\nWe meet three of them:\\n\\n* **Sean Cassidy** (callsign: \\\"**Banshee**\\\"), a grizzled ex-cop from Dublin who was thrown out of Interpol after he was outed as a Mutant. He possesses a powerful sonic scream that's strong enough to shatter glass, allowing him to fly for limited distances.\\n* **Ororo Munroe** (callsign: \\\"**Storm**\\\"), a young Kenyan-born woman who spent years as a petty thief on the streets of Nairobi, but became accepted as a priestess by a group of Bantu farmers, who realized that she possessed a supernatural ability to control the weather.\\n* **Kurt Wagner** (callsign: \\\"**Nightcrawler**\\\"), a fun-loving young German man of Romani heritage, who grew up as an acrobatic performer in a traveling circus. Possessing the power to vanish and teleport in a puff of smoke, his Mutant abilities give him a bizarre demonic appearance; his body is covered with blue fur, and he has fangs and a prehensile tail.\\n\\nAs Banshee, Storm and Nightcrawler watch the armored van pull into a convoy, a squad of black helicopters appears in the sky, watching the FSB agents from above as they drive Piotr away. At Banshee's command, they bust into action.\\n\\nFirst, Nightcrawler uses his teleporting abilities to jump into the front seat of the armored van, where he kicks the driver into the street and takes the wheel. As he hijacks the van and drives away with Piotr in the back, Storm lashes out with a bolt of lightning and fries the other vans in the convoy before they can drive off after him. Moments later, Banshee tears through the sky and brings down a helicopter with his sonic scream.\\n\\n*\\\"Who the hell are you people?\\\"* Piotr demands. *\\\"And where are you taking me?!\\\"*\\n\\n*\\\"Relax, mein freund,\\\"* Nightcrawler says. *\\\"We're the good guys! And we're taking you where they can't hurt you. After that, you can go where you wish.\\\"*\\n\\nNightcrawler high-tails it to the highway with Storm riding on top of the stolen van, and Banshee follows them from the sky. As the FSB calls for backup, a frantic car chase ensues, and Ororo uses her powers to hold off a squad of pursuing cars while Banshee fights off the helicopters from above. At first, all seems well\\u2014but the escape takes a bad turn when Banshee catches a stray bullet and falls to his death. Pushing their powers to their limit, Nightcrawler and Storm fight for their lives against the pursuing soldiers. After breaking free of his cuffs, Piotr helps them out as he reveals his own Mutant ability: he can transform his body into near-indestructible steel, giving him superhuman strength and invulnerability.\\n\\nBefore long, the escapees receive a radio message from a familiar voice.\\n\\n*\\\"Stay calm,\\\"* Scott Summers says. *\\\"We're right on top of you!\\\"*\\n\\nA shadow appears on the highway. It's **the Blackbird**! Scott is sitting in the cockpit, and Jean is next to him.\\n\\n*\\\"You've gotta jump!\\\"* Jean calls. *\\\"Don't worry, we'll catch you!\\\"*\\n\\nFrom the cockpit of the Blackbird, Jean uses her telekinesis to take control of the van's steering wheel, allowing the trio to clamber onto the roof of the van as it speeds along. As the van drives off the side of a cliff\\u2014where the Blackbird is waiting to pick them up\\u2014they just barely manage to jump into the cargo hold before the van falls and crashes on the ground below. Safe inside the jet, Storm, Nightcrawler and Piotr meet Scott and Jean personally.\\n\\n*\\\"Who are you people, exactly?\\\"* Storm asks.\\n\\n*\\\"We're the X-Men,\\\"* Scott says proudly. *\\\"And if you want to join us...then so are you.\\\"*\\n\\nIt turns out that Professor Xavier has been in touch with the three Mutant freedom fighters for weeks, and he's offered them a place in the Xavier Institute. They accepted, but refused to leave for America before finishing one last rescue. Though the group is saddened by the loss of Banshee, Piotr agrees to join the X-Men along with Storm and Nightcrawler, believing that he has a duty to pay them back for rescuing him. Scott and Jean welcome him to the group with open arms, dubbing him \\\"**Colossus**\\\".\\n\\nBut the X-Men's elation is cut short when the Blackbird mysteriously stops in mid-air. Alarm sirens blare as some mysterious force grips the jet from the outside, and its navigation computers go haywire. As they rush to the cockpit to figure out what's going on, their blood runs cold as they look out the window and see a familiar figure: ***Magneto****!* Showing off the full extent of his powers, he effortlessly hovers in mid-air in a bubble of magnetic energy; with one hand outstretched, he holds the Blackbird in the grip of a magnetic field.\\n\\nIt seems that Magneto has followed Scott and Jean to Russia, eager for a rematch with them. In the five years since he murdered the scientist **Bolivar Trask**, he has had numerous confrontations with the X-Men\\u2014and each time, the X-Men have narrowly escaped with their lives.\\n\\nThinking fast, Scott and Jean clamber onto the roof of the Blackbird and engage Magneto, but he taunts them as he deflects Scott's optic blasts and shrugs off Jean's telepathic attacks\\u2014but the three new X-Men spring into action to aid them. Though Magneto easily subdues Colossus with his magnetic powers, Storm manages to weaken his shield by summoning a massive lightning storm, and Nightcrawler uses his teleportation abilities to land a crushing kick to his midsection. Taking advantage of the distraction, Scott blasts Magneto with his eyes, weakening him enough to free the Blackbird from his magnetic field. Seizing their window of opportunity, the X-Men pile into the jet and make their escape.\\n\\nBack in Westchester, Professor Xavier happily welcomes his three new recruits to the Xavier Institute with open arms. To mark the occasion, he presents the X-Men with a new set of matching uniforms, and he tells them that they'll begin training in the **Danger Room** in the morning. Although Nightcrawler is excited to begin, Storm is visibly uncomfortable about being forced to wear a uniform, and Colossus worries that he'll be forced to use his powers to hurt others.\\n\\nThough unspoken, an uncomfortable question hangs in the air: is the Professor turning them into an *army?*\\n____________________\\n\\nElsewhere, we see that Professor Xavier isn't the only one with new recruits at his disposal. Since we last saw Magneto, he has persuaded a trio of roguish Mutants to join his cause, and they've established a headquarters in an underground bunker. As Magneto returns from his trip to Russia, we meet them:\\n\\n* \\\"**Toad**\\\", a grotesque amphibian Mutant with superhuman reflexes and agility, and a powerful prehensile tongue. His mutation allows him to jump long distances and cling to walls, making him a formidable opponent.\\n* \\\"**The Blob**\\\", a grossly obese Mutant with superhuman strength, a nigh-indestructible body, and a fierce appetite. He and Toad have a clear \\\"Mutt and Jeff\\\" dynamic, and frequently hang out together when not on missions.\\n* \\\"**Pyro**\\\", a psychotic Australian Mutant with the power of pyrokinesis, allowing him to control and manipulate fire. True to his name, he's a shameless pyromaniac, and relishes the opportunity to cause mass chaos with his trusty flamethrowers. Magneto is the only person who can control him, and Toad and Blob are openly terrified of him.\\n\\nOne day, Magneto's three minions launch a surprise attack on a police station in a small American town. After Pyro uses his powers to torch every police officer in sight, Toad and Blob make their way to the jail cells on the lower floor of the building. Locked away in one cell, they find a quiet young blonde-haired man with bruises on his face and tattoos all along his arms. As Toad and Blob greet him, they reveal that they know his entire life story.\\n\\nThe young man\\u2014whose name is \\\"**Alex**\\\"\\u2014was orphaned at a young age, and spent most of his childhood in foster care before running away and joining a street gang. Recently, though, he was busted by the police after his Mutant abilities manifested in public for the first time. Alex has the ability to fire powerful blasts of superheated plasma from his body; unfortunately, he can't *control* his ability, often leading to destructive outbursts.\\n\\nToad and Blob offer to break Alex out of jail, promising that their boss\\u2014Magneto\\u2014will never force him to conceal his powers. To their astonishment, Alex reveals the full extent of his powers as he blasts a hole in the wall of the jail. Before he leaves to meet Magneto, he requests that his new teammates call him by his old street name: \\\"**Havok**\\\".\\n_______________\\n\\nOver the ensuing weeks and months, Storm, Nightcrawler and Colossus bond with Scott and Jean as they continue their grueling training regimen in the Danger Room under Professor Xavier's watchful eye. But tensions soon erupt when the Professor tells them about their first team mission. He suspects that Magneto and his \\\"**Brotherhood of Mutants**\\\" are planning a major coordinated attack on a high-level government target, and he wants the X-Men to stop the attack when it happens.\\n\\nStorm\\u2014who devoted her life to defending Mutants from persecution\\u2014chafes at the idea of using her powers to fight *other* Mutants, particularly if it means defending the US government. By now, the X-Men have deduced that the Professor has a personal history with the mysterious Magneto, and some of them suspect that his rivalry with the Mutant terrorist is far more personal than he's letting on; with that in mind, some of the team wonder if he's exploiting them to settle a personal vendetta.\\n\\nIn a tense argument, the Professor tells the team that he's devoted to the Mutant race's freedom above all else\\u2014but he's playing a \\\"long game\\\", and it will take precision and strategy to achieve that goal. If Magneto isn't stopped, he believes that his terrorist campaign could ultimately spark an all-out war between humans and Mutants, which could end with Mutants being permanently exterminated. For the good of his people, the Professor refuses to let that happen.\\n\\nLater that night, as Scott and Jean lay down to sleep, Scott awoken by a nightmare, where he sees himself falling from the sky in a burning airplane; like countless nights before, his thoughts are plagued by his memories of the plane crash that killed his parents. As Jean tries to calm him down, she asks him if he wants to tell her about the dream\\u2014which he has had many times before. Still visibly shaken by the nightmare, Scott can't bring himself to describe it in words. But, of course, Jean has other ways of seeing the dream for herself.\\n\\n*\\\"Do you want to show me?\\\"* Jean asks, laying her hand upon his head.\\n\\nScott instantly knows what she means. Though slightly apprehensive, he nods his head.\\n\\nUsing her telepathy to scan his mind, Jean sees Scott's last memory of his parents. In the memory, she sees a **dark-haired man in a military uniform**\\u2014**Scott's father**\\u2014sitting in the cockpit of a single-engine aircraft, frantically trying to keep it stable as the fuselage burns. Amid the chaos, a **mysterious voice** issues from the plane's radio, though Jean can't hear what it says. Finally, a **blonde-haired woman**\\u2014**Scott's mother**\\u2014hands him a parachute and opens the nearest door. After strapping the parachute to his back, Scott's mother pushes him to the door and orders him to jump. As the vision ends, a ten-year-old Scott leaps from the plane as it's consumed by flame.\\n\\nAfter finally seeing Scott's worst memory for herself, Jean bursts into tears as she embraces him.\\n\\nMore than 10 years ago, Scott had to watch his entire family die in the span of an hour. Now, as he prepares for an inevitable confrontation with Magneto, he fears that some of his teammates won't make it back alive. After losing one family, he knows that he can't handle losing another. Jean promises him that he won't\\u2014but deep down, she doubts whether she can keep that promise.\\n__________________________\\n\\nFar away from Westchester, somewhere in the American Midwest, we rejoin the mysterious man with the metal claws as he makes his way through the desolate countryside, walking purposefully toward some unknown destination. Suddenly, he sniffs the air and freezes in place. Nearby, he hears the sound of helicopter blades closing in fast.\\n\\nHe runs as fast as his legs will take him, but a sleek Army chopper catches up with him, and a squad of heavily armed soldiers rappel from the helicopter and train their weapons on him. Undaunted, the clawed man charges at the soldiers as they fire their guns, and he effortlessly slices off the barrel of a machine gun with his claws. One soldier scores a lucky shot with his pistol\\u2014but it just makes him angry, and he shrugs off the wound as it heals in seconds.\\n\\nA tense battle ensues, and the clawed man kills every soldier that dares approach him. In the end, as the sole survivor attempts to crawl away, he impales him through the stomach and stakes him to the ground. As the impaled soldier cries out for mercy, the clawed man leans in close and whispers in his ear.\\n\\n*\\\"You're already dead, bub,\\\"* he says. *\\\"But I can make it quick and painless, or I can make it agony. If you want to die with your limbs intact, you'll tell me what I want to know\\u2014and you won't hold back anything!\\\"*\\n\\nThe soldier whimpers and nods.\\n\\n*\\\"Good,\\\"* the clawed man says. *\\\"Now... Tell me everything you know about* ***Weapon X****!\\\"*\\n__________________________\\n***ACT 2:***\\n\\nAfter weeks of training, the call finally arrives from Professor Xavier: Magneto and his minions are mobilizing, and they've launched an attack on a remote US Army base in the Nevada Desert. As an alarm siren rings, the X-Men suit up and pile into the Blackbird, and Scott plots a course for the American Southwest.\\n\\nIn the Nevada Desert, a battle erupts as Magneto moves on the base with the Brotherhood close behind him. Magneto uses his magnetic fields to tear tanks apart with ease, deflecting missiles and mortal shells with his shields; Toad leaps through the air, snapping soldiers' necks left and right; Blob charges through rows of soldiers as bullets bounce harmlessly off of his body; Pyro launches torrents of flame at fleeing soldiers; and Havok launches volleys of glowing plasma at the base, cutting down soldiers by the dozen. \\n\\nThen the Blackbird arrives.\\n\\nThe X-Men pile out, ready for a fight, and a tense battle erupts between the X-Men and the Brotherhood. Colossus and Blob slug it out in a tense fistfight; Toad and Nightcrawler chase each other around the base, showing off their superhuman speed and agility; Storm sends a massive windstorm at Pyro, which results in a massive tornado of fire ripping through the base; Jean pits her telekinesis against Magneto's magnetic fields, and the resulting battle nearly leaves the base in ruins; Scott and Havok launch fearsome energy blasts at each other from afar, blasting through concrete walls and metal armor plating.\\n\\nAs the battle rages on, Toad eventually breaks away from Nightcrawler, and he manages to leap past the guards and make his way into the interior of the base. Moving fast, he eventually finds his way into a massive computer mainframe at the heart of the base. As the guards are occupied with fighting the rest of the Brotherhood, he hacks into the base's computer files, and manages to download a massive cache of digital data onto a disk that he brought with him. Although we don't get a good look at the files, the words ***\\\"Weapon X\\\"*** are clearly visible on the computer screen.\\n\\nBefore Toad can escape with the disk, Nightcrawler catches up with him, and their battle resumes. As Nightcrawler gets the upper hand on Toad and spots the disk in his pocket, he receives a sudden telepathic message from Professor Xavier, who orders him to seize the disk before Toad can escape with it. Though he's perplexed by the Professor's order, Nightcrawler obeys, and he narrowly manages to escape the base with the disk in hand.\\n\\nOutside, the battle turns in the X-Men's favor, and the Brotherhood is forced to retreat as reinforcements arrive. As they scatter, Scott orders the team back to Westchester. Shortly after the Brotherhood makes their escape, an enraged Magneto lambasts Toad for losing the disk to Nightcrawler, but Toad still dutifully reports all that he learned from browsing the base's computer files.\\n\\n*\\\"You were right, boss,\\\"* he says. *\\\"Weapon X is real!\\\"*\\n\\n*\\\"If it's real, then I suppose Charles has some difficult choices to make...\\\"* Magneto muses.\\n___________________\\n\\nA few hours after the battle, as the soldiers attempt to rebuild, a lone figure approaches the base. The soldiers don't notice him, but we instantly recognize the figure as the man with the metal claws.\\n\\nHe keeps his distance from the base. From his expression, it's obvious that he knows what happened, and he knows what the assailants were after. He sniffs the air, and falls silent as he picks up the scent of the intruders. \\n\\nHe leaves, following the scent...\\n____________________\\n\\nAs the X-Men return to the mansion to celebrate their victory, Nightcrawler loyally gives the disk to Professor Xavier, but the Professor refuses to tell the X-Men what's on it. Once again, this reignites tensions between the Professor and his team as the X-Men openly chafe at being kept in the dark.\\n\\nLater that night, when Jean visits the Professor in his study, she finds him holding his old photograph of a young **Erik Lehnsherr** on the grounds of the Xavier Institute. The Professor grows visibly emotional as he recalls his time with his old friend, but he falters when Jean finally addresses the elephant in the room. She asks the Professor how he and Erik Lehnsherr knew each other, and how they became enemies. The Professor can't bring himself to talk about it\\u2014but he knows that Jean has other ways of seeing his past for herself.\\n\\nIn a scene mirroring Jean's earlier scene with Scott, the Professor allows Jean to use her telepathy to scan his mind. As she does, a scene unfolds.\\n\\nSometime in the past\\u2014at least 20 years earlier\\u2014a group of Mutant Rights protestors march down the streets of New York City, waving picket signs and chanting slogans. Suddenly, the police descend on the protestors, and armored police officers begin throwing tear gas canisters at them. Undaunted, they continue to march forward as fist-fights erupt and police sirens blare. As tensions escalate, one officer tackles a protestor and begins beating him with a nightstick until he lies motionless in the streets. Screaming in anguish, another protestor rushes to his friend's aid and cries out for help. When the tear gas clears, we see the protestor cradling his injured friend in his arms, tears streaming down his face. As the camera lingers on them, we recognize the two protestors as a young Charles Xavier and Erik Lehnsherr.\\n\\nHours later, the injured protestor\\u2014Charles\\u2014lies in a hospital bed recovering from his injuries, with Erik sitting by his bedside. Though neither of them speak, it's clear that Charles' injuries have seriously damaged his spine, making it unlikely that he'll ever walk again. As this fact sinks in, Erik's expression slowly shifts from shock, to disbelief, to profound sorrow, to\\u2014finally\\u2014a deep and abiding anger. As Charles lies sedated in his bed, Erik strides from the hospital and walks into the streets; wherever he walks, metal objects rattle and vibrate at his passing.\\n\\nFinally, Erik comes to a stop at a police station, where he raises his hand and effortlessly tears down the front door with his magnetic fields. As he walks inside, we hear screams of fear and agony as he slaughters every police officer he sees. On the other side of town, Charles wakes up in his hospital bed with an expression of pure horror on his face. He doesn't say a word, but it's clear that he knows what his friend has done\\u2014and he's all the more horrified that he did it for *him*.\\n\\nBack in the present day, the Professor hangs his head in sorrow as he remembers Erik's downfall, and Jean puts a comforting hand on his shoulder.\\n________________________\\n\\nIn the dead of night\\u2014hours after the X-Men have gone to sleep for the night\\u2014a mysterious figure approaches the mansion. It's the man with the metal claws! After weeks of fleeing the military, he has finally made his way to Westchester, and he has his sights set on the Xavier Institute.\\n\\nMoving silently, the figure vaults over the gates and creeps across the grounds of the manor, then sneaks into the mansion through a window, moving through the shadowed halls without a sound. Once inside, he heads straight for the Professor's study\\u2014where the disk is hidden away.\\n\\nAs the figure creeps through the mansion, the Professor wakes, having clearly sensed his presence with his telepathy. Thinking fast, he sends a telepathic message to the X-Men, alerting them to the intruder's presence. Moments later, the X-Men awake and scramble to apprehend him. Undaunted, the intruder pops his claws and prepares for a fight.\\n\\nA fight ensues as Cyclops, Jean Grey, Storm, Nightcrawler and Colossus all rush at the intruder\\u2014but he evades them all, and fights off everyone who manages to reach him. With the disk in hand, he runs through the labyrinthine halls of the mansion, rounding corners and clinging to the shadows.\\n\\nAfter a lengthy chase, Storm finally manages to stun the intruder with a well-placed lightning bolt, and Colossus grabs him in his metal embrace, allowing Jean to lull him into a catatonic state with her telepathy. With the intruder out of commission, the X-Men retrieve the disk and lock him in a secure room.\\n\\nIn a fierce argument, Storm confronts the Professor about his constant secret-keeping, and finally demands that he tell the X-Men what's on the disk that Nightcrawler retrieved. After seeing someone break into the X-Men's home searching for the disk, the other X-Men realize how dangerous it really is. Reluctantly, the Professor agrees to tell them the truth.\\n\\nEver since the US government first discovered the existence of Mutants in the 1960s, it's been rumored that the Department of Defense has secretly been conducting experiments on live Mutant test subjects. While most people in the government view the existence of the \\\"X-gene\\\" as a threat to national security, others believe that it could be a powerful weapon in the right hands. The \\\"Weapon X\\\" project was supposedly founded with that in mind. According to persistent rumors, the soldiers and scientists at Weapon X have spent years seeking out the world's deadliest Mutants, and they've forced them to undergo agonizing surgical procedures and mental conditioning intended to turn them into living weapons.\\n\\nUpon hearing the Professor's story, Scott and Jean recoil in horror as they realize that their own government may have been enslaving Mutants since before they were born. But their horror only grows stronger when the Professor tells them why they were sent on their mission to the Nevada Desert: Magneto is trying to prove the existence of the Weapon X project, and he attacked the Army's base because he believed that their computers contained the location of Weapon X's headquarters. But the Professor wanted to *stop* Magneto from discovering the location of the project's headquarters, believing that a direct attack on a high-level military base would spark the human-Mutant war that he's dreaded for years.\\n\\nAfter learning the true purpose of their mission, Storm erupts in anger at the Professor. If she'd known what Magneto was really after, she says, she'd have joined his side and *helped* him bring down Weapon X. As Nightcrawler and Colossus attempt to calm her down, Jean creeps into the secure room where the intruder is held.\\n\\nAs the intruder awakens, Jean carefully approaches him and extends a friendly hand. Having learned the true nature of the mysterious disk, she suspects that the intruder might have understandable reasons for seeking it. She asks the intruder if he'd like to explain himself, but he can't bring himself to speak. But, of course, Jean has other ways of seeing why he's come.\\n\\nFor the third time, Jean uses her telepathy. With the intruder's permission, she looks into his mind, and she's terrified by what she sees. As she learns, he's a fugitive test subject of the Weapon X project, and he was abducted by the US military\\u2014who forcibly coated his skeleton with the indestructible metal alloy **adamantium**. Ever since escaping from the organization's clutches in the Canadian Rockies, he has been on the run from the military, determined to track down the location of Weapon X's headquarters so that he can shut it down permanently.\\n\\nTaking pity on the intruder, Jean promises him that he'll always be safe at the Xavier Institute, and she vows to help him shut down Weapon X. Taken aback by her act of kindness, the intruder finally introduces himself. His name is **Logan**\\u2014but in Weapon X, he was known only by the codename \\\"**Wolverine**\\\".\\n\\nWith Jean by his side, Logan exits the locked room, and he explains himself to the X-Men. Having finally learned the full story of Weapon X, the X-Men show him no hostility; if he's truly serious about taking down Weapon X, they tell him, they're on the same side.\\n\\nFor the very first time, the X-Men openly defy Professor Xavier, and they tell him that they've decided to shut Weapon X down\\u2014with or without his permission. Finally accepting that he won't be able to change his students' minds, the Professor agrees to tell them the location of the project's headquarters: it's located in a base on the remote Pacific island of **Krakoa**, which can't be found on any map. Armed with Krakoa's coordinates, the X-Men resolve to fly to the island to take on Weapon X, and they invite Logan to join them.\\n__________________\\n\\n***ACT 3:***\\n\\nAt dawn, the X-Men pile into the Blackbird and plot a course for Krakoa, and the Professor bids them farewell. A few hours later, they come up on the remote island\\u2014a barren rock patrolled by a platoon of soldiers in unmarked black uniforms.\\n\\nMuch to their surprise, the X-Men find themselves intercepted by the Brotherhood, who've followed them to the island via helicopter. As the X-Men pile out and prepare for a fight, the Brotherhood pile out alongside them. As the soldiers dig in and fire on them, the two enemy teams declare a temporary truce, agreeing to work together as long as it takes to shut down Weapon X.\\n\\nIn a massive battle sequence, the X-Men and the Brotherhood storm Krakoa, fighting an uphill battle against the soldiers. When the dust clears, they realize that they've won\\u2014but there's no base in sight. As far as they can see, the island is nothing but storm-wracked cliffs.\\n\\nAs the two rival teams stare each other down in a tense faceoff, Scott and Logan leave to explore the island. As they investigate their surroundings, they eventually discover a hidden passage between two cliffs, which leads them into a shadowy underground chamber deep beneath the surface of Krakoa. When they light a flashlight, the two men recoil in horror as they realize that they're surrounded by locked jail cells filled with the decaying skeletons of Mutant prisoners, who've clearly been dead for years.\\n\\nTo their dismay, they realize that they're too late: the base on Krakoa is abandoned, and the leaders of Weapon X have long since located. Scott realizes that the soldiers must have *known* that they were coming, and *someone* must have tipped them off.\\n\\nAs he explores the abandoned base, Scott stumbles into a darkened room filled with blank television screens. As he draws near, the power flickers on, and a nightmarish face fills each screen: the face of **a man with deathly pale skin, eyes as black as coal, and a red diamond tattoo in the center of his forehead**. Scott is paralyzed with fear as the pale man laughs, and his voice fills the room.\\n\\n*\\\"I suppose I should congratulate you, Mr. Summers,\\\"* the man says. *\\\"I wasn't going to let you shut our little operation down, but I didn't count on you surviving this long.\\\"*\\n\\nScott's heart pounds in his chest as he stares at the screens, unable to look away. For reasons that he can't explain *something* seems inexplicably familiar about the pale man's voice. He knows that he's heard it before. But *where?*\\n\\nIn an instant, Scott realizes the answer. As he finds himself flashing back to an awful day 10 years gone, all of his repressed memories of the plane crash come flooding back.\\n\\nOnce again, we see a young Scott Summers sitting in the passenger seat of a small single-engine plane, with his parents sitting in the cockpit. But *this* time, we can clearly hear the mysterious voice coming from the plane's radio. It's the voice of the pale man!\\n\\n*\\\"You won't escape me,* ***Major Summers****,\\\"* the voice says. *\\\"By my side, your son could have been great. But now he'll die forgotten. And when you're gone, no one will dare speak your name.\\\"*\\n\\n*\\\"I know what you've done,* ***Essex****!\\\"* Major Summers says defiantly. *\\\"You can't keep this hidden forever!\\\"*\\n\\nThe figure\\u2014\\\"Essex\\\"\\u2014laughs tauntingly.\\n\\n*\\\"I don't intend to, Major Summers,\\\"* he says. *\\\"A new age is dawning. We've accomplished wonders, you and I. Soon, the world will know of all we've done. It's a pity you won't be here to see that day. Goodbye, old friend.\\\"*\\n\\nOn the control panel in front of Major Summers, his radar display shows an object approaching the plane, moving fast. It's a missile\\u2014and it's locked onto the plane. As soon as he sees it, he knows that he won't be able to evade it.\\n\\nHe turns to Scott, his eyes full of sorrow. We don't hear what's said after that. We only see Scott's mother as she hands a parachute to Scott and pushes him towards the door. As the missile hits, and the plane is engulfed in flame, Scott takes one last look at his parents as he jumps into the open air and pulls his ripcord.\\n\\nBack in the present day, Scott sinks to his knees as he confronts the pale man. For the first time in his life, he realizes the truth about his parents' death: ***their plane didn't crash\\u2014it was shot down!***\\n\\n*\\\"As a token of respect, I'll give you a final chance to turn back,\\\"* the pale man says. *\\\"You might have the courage to challenge me, but a weak fool's courage won't destroy all that I've built. I dealt with your father swiftly\\u2014but if* ***you*** *defy me, you'll suffer in ways that your mind can't grasp. This is your only warning, Mr. Summers. If you're wise, you'll never see my face again.\\\"*\\n\\nWith that, the screen goes dark. Screaming with rage, Scott unleashes his optic beams and blasts through the concrete wall.\\n\\nOn the surface, the X-Men climb back into the Blackbird, choosing to let the Brotherhood go in peace. With heavy hearts, they return home to Westchester.\\n___________________\\n\\nBack at the mansion, as the team proudly presents Logan with his own room, Scott confronts Professor Xavier in his study. Finally erupting in anger at the man who raised him like a father, Scott demands to know about everything on the disk that the Professor kept from him. After a moment's pause, the Professor inserts the disk into his computer. After scrolling through pages and pages of files, he finally arrives at a photo of Scott's father in his uniform. Below his picture, six awful words tell Scott everything that he needs to know about his fate.\\n\\n***NAME: Major Christopher Summers***\\n\\n***STATUS: Terminated***\\n\\nYears ago, Major Christopher Summers was a high-ranking Army officer assigned to the Weapon X project, where he worked directly under the project's founder. But when he realized how barbaric their experiments truly were, he swore to tell the world the truth about the shady organization. When he tried to flee Weapon X's base with his family, the project's founder ordered his plane shot down before it could land.\\n\\n*\\\"Who is he?!\\\"* Scott demands. *\\\"Where is he?!\\\"*\\n\\nThe Professor sadly tells Scott that he doesn't know. Whoever he is, the founder of Weapon X didn't leave any clues about his identity in the computer mainframe, and the Professor has found no clues about his whereabouts. Without a miracle, it's unlikely that Scott will ever find him.\\n\\nEnraged that the Professor didn't tell him the full story of what happened to his parents, he storms out of the Professor's study and runs out of the mansion. As the other X-Men watch him leave, he doesn't even give them a *\\\"Goodbye\\\"*.\\n\\nMoments later, Jean runs after Scott and finds him sitting behind the wheel of his car. She begs him to stay, but Scott tells her that he can't. If he can't find his parents' killer and force him to answer for his crimes, he knows that he'll never be able to live with himself. Until he does, the Xavier Institute isn't his home anymore.\\n\\nJean stares at Scott, silently pleading with him.\\n\\n*\\\"You don't think you can change my mind, do you?\\\"* Scott asks.\\n\\n*\\\"No,\\\"* Jean says. *\\\"But I'm not letting you do this alone. I'm coming with you. Whatever happens out there, I'll be by your side.\\\"*\\n\\nShe opens the car door and takes her place in the passenger seat as Scott guns the engine. Together, they pull away from the Xavier Institute and drive into the setting sun.\\n\\nThey may not have a map to follow, but they have a name: \\\"**Essex**\\\".\\n\\nFor now, that's better than nothing...\\n__________________\\n\\n***TL;DR:*** As the X-Men square off against Magneto and the Brotherhood of Mutants, they accidentally discover the existence of \\\"Weapon X\\\", a mysterious military program designed to turn Mutants into living weapons. After crossing paths with a fugitive Weapon X test subject called \\\"Wolverine\\\", they resolve to help him shut the program down for good.\\n\\nIn the climax, Scott Summers discovers that his deceased father was a former Army officer who tried to expose Weapon X's existence to the world, only to be assassinated by the program's founder: a shadowy figure named \\\"Essex\\\". In the end, he chooses to leave the Xavier Institute to track down Essex and avenge his parents, and Jean Grey chooses to join him.\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bye3cz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1560221049.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560066082.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003ENOTE: This post is a follow-up to a post I made \\u003Ca href=\\\"https://old.reddit.com/r/fixingmovies/comments/bnihgj/reimagining_xmen_2000_as_a_modern_superhero_movie/\\\"\\u003EHERE\\u003C/a\\u003E.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EReal talk: I was going to make it a standalone post\\u2014but I ended it with a cliffhanger, and I had a few more ideas stuck in my head. If you enjoyed my last post, hopefully you\\u0026#39;ll enjoy this one.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EAnyway...\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EX-Men: Children of the Atom\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EINTRODUCTION:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFive years ago, Jean Grey and her fellow \\u003Cstrong\\u003EX-Men\\u003C/strong\\u003E led a daring escape from a US government prison, battled \\u003Cstrong\\u003Ethe Sentinels\\u003C/strong\\u003E, and narrowly survived a confrontation with the Mutant terrorist \\u003Cstrong\\u003EMagneto\\u003C/strong\\u003E. Now, their story continues. But the five original X-Men\\u2014now young adults\\u2014face a slough of changes in their private lives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, \\u003Cstrong\\u003EWarren Worthington\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EAngel\\u003C/strong\\u003E\\u0026quot;) chooses to leave the Xavier Institute to care for his terminally ill father. Then \\u003Cstrong\\u003EHank McCoy\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EBeast\\u003C/strong\\u003E\\u0026quot;) chooses to leave to pursue his doctoral studies, planning to devote his life to science. Finally, \\u003Cstrong\\u003EBobby Drake\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EIceman\\u003C/strong\\u003E\\u0026quot;), who just wants a normal life, decides to settle down with his girlfriend \\u003Cstrong\\u003ELorna\\u003C/strong\\u003E. Only \\u003Cstrong\\u003EScott Summers\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003ECyclops\\u003C/strong\\u003E\\u0026quot;) can\\u0026#39;t envision a life outside of the X-Men; ever since losing his family in a mysterious plane crash at the age of 10, the Xavier Institute has been Scott\\u0026#39;s only home, and the X-Men are the only family that he has left.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Scott\\u0026#39;s relationship with \\u003Cstrong\\u003EJean Grey\\u003C/strong\\u003E develops into a passionate love affair, Jean is torn between her devotion to Scott and her desire to move forward with her life. Though she longs to conceal her powerful psychic abilities and live as an ordinary human, Jean knows that Scott could never leave the Institute, and she feels compelled to stay by his side. This leaves Scott and Jean as the last remaining members of the original X-Men. But that may change soon.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Professor Xavier turns his eyes to the world at large, it soon becomes clear that the struggle for Mutant Rights is no longer solely an American problem; all over the world, innocent Mutants are being arrested and detained by paranoid government forces, and some are choosing to fight back. Over time, rumors spread of an underground network of Mutant rebels, who supposedly work to shelter and protect fugitive Mutants. Some call them terrorists, and others call them freedom fighters\\u2014but Professor Xavier sees them as potential new recruits.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EPROLOGUE:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a snowy forest somewhere north of the Canadian border, a squad of Sentinel pilots sets out to bring in a rogue Mutant. As they use heat vision to scan the rows of trees, the squad leader warns his teammates to stay sharp, reminding them that their target could be anywhere. But as the Sentinels close in on a mysterious figure hidden in the shadows, the \\u003Cstrong\\u003Emysterious figure\\u003C/strong\\u003E fearlessly steps forward to confront them. As he does, we see a glint of light on metal blades, and we hear a distinctive sound:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESNIKT!\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Sentinels fire their laser cannons\\u2014but the figure moves with inhuman agility, dodging their blasts with ease. Before they can lock onto him, he scampers up a tree trunk and jumps from branch to branch, then finally leaps at the nearest Sentinel and slices off its arm. Before the Sentinel can ignite its booster jets and fly away, the figure slices through its engine tank with his deadly metal blades, and the Sentinel catches fire and explodes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELasers flash as the Sentinels shoot wildly at the mysterious figure scampers from branch to branch, striking at the armored robots with deadly precision. Finally, when he makes his way to the last one, he takes his time pulling the helpless pilot from his cockpit and pinning him to the ground. As he does, we close in on his hand, and we see\\u2014for the first time\\u2014that the metal blades are actually retractable \\u003Cem\\u003Eclaws\\u003C/em\\u003E attacked to his knuckles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Never hunt a hunter...\\u0026quot;\\u003C/em\\u003E the figure whispers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe slits the pilot\\u0026#39;s throat, leaving his claws red with blood.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 1:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn a quiet day in Moscow, a pair of uniformed FSB agents knock on the door of a secluded apartment, flanked by a squad of armed soldiers. When a young blonde woman answer the door, she stares defiantly at the agents.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;There\\u0026#39;s no use playing the fool, Ms. Rasputin,\\u0026quot;\\u003C/em\\u003E the lead agent says. \\u003Cem\\u003E\\u0026quot;We know that you\\u0026#39;re sheltering a Mutant here. And you know the penalty for refusing to hand him over.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe woman\\u2014\\u003Cstrong\\u003EIlyana Rasputin\\u003C/strong\\u003E\\u2014stares back at them, maintaining her cold composure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I would never give my brother to mongrels like you,\\u0026quot;\\u003C/em\\u003E she hisses. \\u003Cem\\u003E\\u0026quot;He\\u0026#39;s a Mutant, but he\\u0026#39;s still my brother.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA tall, dark-haired man appears behind Ilyana and places a comforting hand upon her shoulder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;It\\u0026#39;s alright, Ilyana,\\u0026quot;\\u003C/em\\u003E \\u003Cstrong\\u003EPiotr Rasputin\\u003C/strong\\u003E says. \\u003Cem\\u003E\\u0026quot;I\\u0026#39;ll go quietly. But always remember: your quarrel is with me, and me alone. My family is not to be harmed.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith that, the agents cuff Piotr\\u0026#39;s wrists, and the soldiers escort him from the building at gunpoint. Standing at the window of her apartment with tear-streaked eyes, Ilyana can only watch helplessly as her beloved brother is marched into an armored van, softly whispering \\u003Cem\\u003E\\u0026quot;Goodbye\\u0026quot;\\u003C/em\\u003E as they close the doors. But unbeknownst to her, he\\u0026#39;s being watched from afar...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt turns out that three members of the mysterious \\u003Cstrong\\u003EMutant Freedom Network\\u003C/strong\\u003E have come to Moscow, and they know that a Mutant is about to be imprisoned by government forces. This time, they\\u0026#39;ve sworn to do something about it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe meet three of them:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESean Cassidy\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003EBanshee\\u003C/strong\\u003E\\u0026quot;), a grizzled ex-cop from Dublin who was thrown out of Interpol after he was outed as a Mutant. He possesses a powerful sonic scream that\\u0026#39;s strong enough to shatter glass, allowing him to fly for limited distances.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EOroro Munroe\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003EStorm\\u003C/strong\\u003E\\u0026quot;), a young Kenyan-born woman who spent years as a petty thief on the streets of Nairobi, but became accepted as a priestess by a group of Bantu farmers, who realized that she possessed a supernatural ability to control the weather.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EKurt Wagner\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003ENightcrawler\\u003C/strong\\u003E\\u0026quot;), a fun-loving young German man of Romani heritage, who grew up as an acrobatic performer in a traveling circus. Possessing the power to vanish and teleport in a puff of smoke, his Mutant abilities give him a bizarre demonic appearance; his body is covered with blue fur, and he has fangs and a prehensile tail.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAs Banshee, Storm and Nightcrawler watch the armored van pull into a convoy, a squad of black helicopters appears in the sky, watching the FSB agents from above as they drive Piotr away. At Banshee\\u0026#39;s command, they bust into action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, Nightcrawler uses his teleporting abilities to jump into the front seat of the armored van, where he kicks the driver into the street and takes the wheel. As he hijacks the van and drives away with Piotr in the back, Storm lashes out with a bolt of lightning and fries the other vans in the convoy before they can drive off after him. Moments later, Banshee tears through the sky and brings down a helicopter with his sonic scream.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who the hell are you people?\\u0026quot;\\u003C/em\\u003E Piotr demands. \\u003Cem\\u003E\\u0026quot;And where are you taking me?!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Relax, mein freund,\\u0026quot;\\u003C/em\\u003E Nightcrawler says. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;re the good guys! And we\\u0026#39;re taking you where they can\\u0026#39;t hurt you. After that, you can go where you wish.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENightcrawler high-tails it to the highway with Storm riding on top of the stolen van, and Banshee follows them from the sky. As the FSB calls for backup, a frantic car chase ensues, and Ororo uses her powers to hold off a squad of pursuing cars while Banshee fights off the helicopters from above. At first, all seems well\\u2014but the escape takes a bad turn when Banshee catches a stray bullet and falls to his death. Pushing their powers to their limit, Nightcrawler and Storm fight for their lives against the pursuing soldiers. After breaking free of his cuffs, Piotr helps them out as he reveals his own Mutant ability: he can transform his body into near-indestructible steel, giving him superhuman strength and invulnerability.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore long, the escapees receive a radio message from a familiar voice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Stay calm,\\u0026quot;\\u003C/em\\u003E Scott Summers says. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;re right on top of you!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA shadow appears on the highway. It\\u0026#39;s \\u003Cstrong\\u003Ethe Blackbird\\u003C/strong\\u003E! Scott is sitting in the cockpit, and Jean is next to him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;ve gotta jump!\\u0026quot;\\u003C/em\\u003E Jean calls. \\u003Cem\\u003E\\u0026quot;Don\\u0026#39;t worry, we\\u0026#39;ll catch you!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the cockpit of the Blackbird, Jean uses her telekinesis to take control of the van\\u0026#39;s steering wheel, allowing the trio to clamber onto the roof of the van as it speeds along. As the van drives off the side of a cliff\\u2014where the Blackbird is waiting to pick them up\\u2014they just barely manage to jump into the cargo hold before the van falls and crashes on the ground below. Safe inside the jet, Storm, Nightcrawler and Piotr meet Scott and Jean personally.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who are you people, exactly?\\u0026quot;\\u003C/em\\u003E Storm asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;re the X-Men,\\u0026quot;\\u003C/em\\u003E Scott says proudly. \\u003Cem\\u003E\\u0026quot;And if you want to join us...then so are you.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt turns out that Professor Xavier has been in touch with the three Mutant freedom fighters for weeks, and he\\u0026#39;s offered them a place in the Xavier Institute. They accepted, but refused to leave for America before finishing one last rescue. Though the group is saddened by the loss of Banshee, Piotr agrees to join the X-Men along with Storm and Nightcrawler, believing that he has a duty to pay them back for rescuing him. Scott and Jean welcome him to the group with open arms, dubbing him \\u0026quot;\\u003Cstrong\\u003EColossus\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut the X-Men\\u0026#39;s elation is cut short when the Blackbird mysteriously stops in mid-air. Alarm sirens blare as some mysterious force grips the jet from the outside, and its navigation computers go haywire. As they rush to the cockpit to figure out what\\u0026#39;s going on, their blood runs cold as they look out the window and see a familiar figure: \\u003Cstrong\\u003E\\u003Cem\\u003EMagneto\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E!\\u003C/em\\u003E Showing off the full extent of his powers, he effortlessly hovers in mid-air in a bubble of magnetic energy; with one hand outstretched, he holds the Blackbird in the grip of a magnetic field.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems that Magneto has followed Scott and Jean to Russia, eager for a rematch with them. In the five years since he murdered the scientist \\u003Cstrong\\u003EBolivar Trask\\u003C/strong\\u003E, he has had numerous confrontations with the X-Men\\u2014and each time, the X-Men have narrowly escaped with their lives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThinking fast, Scott and Jean clamber onto the roof of the Blackbird and engage Magneto, but he taunts them as he deflects Scott\\u0026#39;s optic blasts and shrugs off Jean\\u0026#39;s telepathic attacks\\u2014but the three new X-Men spring into action to aid them. Though Magneto easily subdues Colossus with his magnetic powers, Storm manages to weaken his shield by summoning a massive lightning storm, and Nightcrawler uses his teleportation abilities to land a crushing kick to his midsection. Taking advantage of the distraction, Scott blasts Magneto with his eyes, weakening him enough to free the Blackbird from his magnetic field. Seizing their window of opportunity, the X-Men pile into the jet and make their escape.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in Westchester, Professor Xavier happily welcomes his three new recruits to the Xavier Institute with open arms. To mark the occasion, he presents the X-Men with a new set of matching uniforms, and he tells them that they\\u0026#39;ll begin training in the \\u003Cstrong\\u003EDanger Room\\u003C/strong\\u003E in the morning. Although Nightcrawler is excited to begin, Storm is visibly uncomfortable about being forced to wear a uniform, and Colossus worries that he\\u0026#39;ll be forced to use his powers to hurt others.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThough unspoken, an uncomfortable question hangs in the air: is the Professor turning them into an \\u003Cem\\u003Earmy?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EElsewhere, we see that Professor Xavier isn\\u0026#39;t the only one with new recruits at his disposal. Since we last saw Magneto, he has persuaded a trio of roguish Mutants to join his cause, and they\\u0026#39;ve established a headquarters in an underground bunker. As Magneto returns from his trip to Russia, we meet them:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u0026quot;\\u003Cstrong\\u003EToad\\u003C/strong\\u003E\\u0026quot;, a grotesque amphibian Mutant with superhuman reflexes and agility, and a powerful prehensile tongue. His mutation allows him to jump long distances and cling to walls, making him a formidable opponent.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u0026quot;\\u003Cstrong\\u003EThe Blob\\u003C/strong\\u003E\\u0026quot;, a grossly obese Mutant with superhuman strength, a nigh-indestructible body, and a fierce appetite. He and Toad have a clear \\u0026quot;Mutt and Jeff\\u0026quot; dynamic, and frequently hang out together when not on missions.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u0026quot;\\u003Cstrong\\u003EPyro\\u003C/strong\\u003E\\u0026quot;, a psychotic Australian Mutant with the power of pyrokinesis, allowing him to control and manipulate fire. True to his name, he\\u0026#39;s a shameless pyromaniac, and relishes the opportunity to cause mass chaos with his trusty flamethrowers. Magneto is the only person who can control him, and Toad and Blob are openly terrified of him.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EOne day, Magneto\\u0026#39;s three minions launch a surprise attack on a police station in a small American town. After Pyro uses his powers to torch every police officer in sight, Toad and Blob make their way to the jail cells on the lower floor of the building. Locked away in one cell, they find a quiet young blonde-haired man with bruises on his face and tattoos all along his arms. As Toad and Blob greet him, they reveal that they know his entire life story.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe young man\\u2014whose name is \\u0026quot;\\u003Cstrong\\u003EAlex\\u003C/strong\\u003E\\u0026quot;\\u2014was orphaned at a young age, and spent most of his childhood in foster care before running away and joining a street gang. Recently, though, he was busted by the police after his Mutant abilities manifested in public for the first time. Alex has the ability to fire powerful blasts of superheated plasma from his body; unfortunately, he can\\u0026#39;t \\u003Cem\\u003Econtrol\\u003C/em\\u003E his ability, often leading to destructive outbursts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EToad and Blob offer to break Alex out of jail, promising that their boss\\u2014Magneto\\u2014will never force him to conceal his powers. To their astonishment, Alex reveals the full extent of his powers as he blasts a hole in the wall of the jail. Before he leaves to meet Magneto, he requests that his new teammates call him by his old street name: \\u0026quot;\\u003Cstrong\\u003EHavok\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EOver the ensuing weeks and months, Storm, Nightcrawler and Colossus bond with Scott and Jean as they continue their grueling training regimen in the Danger Room under Professor Xavier\\u0026#39;s watchful eye. But tensions soon erupt when the Professor tells them about their first team mission. He suspects that Magneto and his \\u0026quot;\\u003Cstrong\\u003EBrotherhood of Mutants\\u003C/strong\\u003E\\u0026quot; are planning a major coordinated attack on a high-level government target, and he wants the X-Men to stop the attack when it happens.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStorm\\u2014who devoted her life to defending Mutants from persecution\\u2014chafes at the idea of using her powers to fight \\u003Cem\\u003Eother\\u003C/em\\u003E Mutants, particularly if it means defending the US government. By now, the X-Men have deduced that the Professor has a personal history with the mysterious Magneto, and some of them suspect that his rivalry with the Mutant terrorist is far more personal than he\\u0026#39;s letting on; with that in mind, some of the team wonder if he\\u0026#39;s exploiting them to settle a personal vendetta.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a tense argument, the Professor tells the team that he\\u0026#39;s devoted to the Mutant race\\u0026#39;s freedom above all else\\u2014but he\\u0026#39;s playing a \\u0026quot;long game\\u0026quot;, and it will take precision and strategy to achieve that goal. If Magneto isn\\u0026#39;t stopped, he believes that his terrorist campaign could ultimately spark an all-out war between humans and Mutants, which could end with Mutants being permanently exterminated. For the good of his people, the Professor refuses to let that happen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELater that night, as Scott and Jean lay down to sleep, Scott awoken by a nightmare, where he sees himself falling from the sky in a burning airplane; like countless nights before, his thoughts are plagued by his memories of the plane crash that killed his parents. As Jean tries to calm him down, she asks him if he wants to tell her about the dream\\u2014which he has had many times before. Still visibly shaken by the nightmare, Scott can\\u0026#39;t bring himself to describe it in words. But, of course, Jean has other ways of seeing the dream for herself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Do you want to show me?\\u0026quot;\\u003C/em\\u003E Jean asks, laying her hand upon his head.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScott instantly knows what she means. Though slightly apprehensive, he nods his head.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUsing her telepathy to scan his mind, Jean sees Scott\\u0026#39;s last memory of his parents. In the memory, she sees a \\u003Cstrong\\u003Edark-haired man in a military uniform\\u003C/strong\\u003E\\u2014\\u003Cstrong\\u003EScott\\u0026#39;s father\\u003C/strong\\u003E\\u2014sitting in the cockpit of a single-engine aircraft, frantically trying to keep it stable as the fuselage burns. Amid the chaos, a \\u003Cstrong\\u003Emysterious voice\\u003C/strong\\u003E issues from the plane\\u0026#39;s radio, though Jean can\\u0026#39;t hear what it says. Finally, a \\u003Cstrong\\u003Eblonde-haired woman\\u003C/strong\\u003E\\u2014\\u003Cstrong\\u003EScott\\u0026#39;s mother\\u003C/strong\\u003E\\u2014hands him a parachute and opens the nearest door. After strapping the parachute to his back, Scott\\u0026#39;s mother pushes him to the door and orders him to jump. As the vision ends, a ten-year-old Scott leaps from the plane as it\\u0026#39;s consumed by flame.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter finally seeing Scott\\u0026#39;s worst memory for herself, Jean bursts into tears as she embraces him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMore than 10 years ago, Scott had to watch his entire family die in the span of an hour. Now, as he prepares for an inevitable confrontation with Magneto, he fears that some of his teammates won\\u0026#39;t make it back alive. After losing one family, he knows that he can\\u0026#39;t handle losing another. Jean promises him that he won\\u0026#39;t\\u2014but deep down, she doubts whether she can keep that promise.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EFar away from Westchester, somewhere in the American Midwest, we rejoin the mysterious man with the metal claws as he makes his way through the desolate countryside, walking purposefully toward some unknown destination. Suddenly, he sniffs the air and freezes in place. Nearby, he hears the sound of helicopter blades closing in fast.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe runs as fast as his legs will take him, but a sleek Army chopper catches up with him, and a squad of heavily armed soldiers rappel from the helicopter and train their weapons on him. Undaunted, the clawed man charges at the soldiers as they fire their guns, and he effortlessly slices off the barrel of a machine gun with his claws. One soldier scores a lucky shot with his pistol\\u2014but it just makes him angry, and he shrugs off the wound as it heals in seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA tense battle ensues, and the clawed man kills every soldier that dares approach him. In the end, as the sole survivor attempts to crawl away, he impales him through the stomach and stakes him to the ground. As the impaled soldier cries out for mercy, the clawed man leans in close and whispers in his ear.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;re already dead, bub,\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;But I can make it quick and painless, or I can make it agony. If you want to die with your limbs intact, you\\u0026#39;ll tell me what I want to know\\u2014and you won\\u0026#39;t hold back anything!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe soldier whimpers and nods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Good,\\u0026quot;\\u003C/em\\u003E the clawed man says. \\u003Cem\\u003E\\u0026quot;Now... Tell me everything you know about\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EWeapon X\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 2:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter weeks of training, the call finally arrives from Professor Xavier: Magneto and his minions are mobilizing, and they\\u0026#39;ve launched an attack on a remote US Army base in the Nevada Desert. As an alarm siren rings, the X-Men suit up and pile into the Blackbird, and Scott plots a course for the American Southwest.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the Nevada Desert, a battle erupts as Magneto moves on the base with the Brotherhood close behind him. Magneto uses his magnetic fields to tear tanks apart with ease, deflecting missiles and mortal shells with his shields; Toad leaps through the air, snapping soldiers\\u0026#39; necks left and right; Blob charges through rows of soldiers as bullets bounce harmlessly off of his body; Pyro launches torrents of flame at fleeing soldiers; and Havok launches volleys of glowing plasma at the base, cutting down soldiers by the dozen. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen the Blackbird arrives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe X-Men pile out, ready for a fight, and a tense battle erupts between the X-Men and the Brotherhood. Colossus and Blob slug it out in a tense fistfight; Toad and Nightcrawler chase each other around the base, showing off their superhuman speed and agility; Storm sends a massive windstorm at Pyro, which results in a massive tornado of fire ripping through the base; Jean pits her telekinesis against Magneto\\u0026#39;s magnetic fields, and the resulting battle nearly leaves the base in ruins; Scott and Havok launch fearsome energy blasts at each other from afar, blasting through concrete walls and metal armor plating.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the battle rages on, Toad eventually breaks away from Nightcrawler, and he manages to leap past the guards and make his way into the interior of the base. Moving fast, he eventually finds his way into a massive computer mainframe at the heart of the base. As the guards are occupied with fighting the rest of the Brotherhood, he hacks into the base\\u0026#39;s computer files, and manages to download a massive cache of digital data onto a disk that he brought with him. Although we don\\u0026#39;t get a good look at the files, the words \\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;Weapon X\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E are clearly visible on the computer screen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore Toad can escape with the disk, Nightcrawler catches up with him, and their battle resumes. As Nightcrawler gets the upper hand on Toad and spots the disk in his pocket, he receives a sudden telepathic message from Professor Xavier, who orders him to seize the disk before Toad can escape with it. Though he\\u0026#39;s perplexed by the Professor\\u0026#39;s order, Nightcrawler obeys, and he narrowly manages to escape the base with the disk in hand.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOutside, the battle turns in the X-Men\\u0026#39;s favor, and the Brotherhood is forced to retreat as reinforcements arrive. As they scatter, Scott orders the team back to Westchester. Shortly after the Brotherhood makes their escape, an enraged Magneto lambasts Toad for losing the disk to Nightcrawler, but Toad still dutifully reports all that he learned from browsing the base\\u0026#39;s computer files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You were right, boss,\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;Weapon X is real!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;If it\\u0026#39;s real, then I suppose Charles has some difficult choices to make...\\u0026quot;\\u003C/em\\u003E Magneto muses.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EA few hours after the battle, as the soldiers attempt to rebuild, a lone figure approaches the base. The soldiers don\\u0026#39;t notice him, but we instantly recognize the figure as the man with the metal claws.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe keeps his distance from the base. From his expression, it\\u0026#39;s obvious that he knows what happened, and he knows what the assailants were after. He sniffs the air, and falls silent as he picks up the scent of the intruders. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe leaves, following the scent...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EAs the X-Men return to the mansion to celebrate their victory, Nightcrawler loyally gives the disk to Professor Xavier, but the Professor refuses to tell the X-Men what\\u0026#39;s on it. Once again, this reignites tensions between the Professor and his team as the X-Men openly chafe at being kept in the dark.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELater that night, when Jean visits the Professor in his study, she finds him holding his old photograph of a young \\u003Cstrong\\u003EErik Lehnsherr\\u003C/strong\\u003E on the grounds of the Xavier Institute. The Professor grows visibly emotional as he recalls his time with his old friend, but he falters when Jean finally addresses the elephant in the room. She asks the Professor how he and Erik Lehnsherr knew each other, and how they became enemies. The Professor can\\u0026#39;t bring himself to talk about it\\u2014but he knows that Jean has other ways of seeing his past for herself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a scene mirroring Jean\\u0026#39;s earlier scene with Scott, the Professor allows Jean to use her telepathy to scan his mind. As she does, a scene unfolds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESometime in the past\\u2014at least 20 years earlier\\u2014a group of Mutant Rights protestors march down the streets of New York City, waving picket signs and chanting slogans. Suddenly, the police descend on the protestors, and armored police officers begin throwing tear gas canisters at them. Undaunted, they continue to march forward as fist-fights erupt and police sirens blare. As tensions escalate, one officer tackles a protestor and begins beating him with a nightstick until he lies motionless in the streets. Screaming in anguish, another protestor rushes to his friend\\u0026#39;s aid and cries out for help. When the tear gas clears, we see the protestor cradling his injured friend in his arms, tears streaming down his face. As the camera lingers on them, we recognize the two protestors as a young Charles Xavier and Erik Lehnsherr.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHours later, the injured protestor\\u2014Charles\\u2014lies in a hospital bed recovering from his injuries, with Erik sitting by his bedside. Though neither of them speak, it\\u0026#39;s clear that Charles\\u0026#39; injuries have seriously damaged his spine, making it unlikely that he\\u0026#39;ll ever walk again. As this fact sinks in, Erik\\u0026#39;s expression slowly shifts from shock, to disbelief, to profound sorrow, to\\u2014finally\\u2014a deep and abiding anger. As Charles lies sedated in his bed, Erik strides from the hospital and walks into the streets; wherever he walks, metal objects rattle and vibrate at his passing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally, Erik comes to a stop at a police station, where he raises his hand and effortlessly tears down the front door with his magnetic fields. As he walks inside, we hear screams of fear and agony as he slaughters every police officer he sees. On the other side of town, Charles wakes up in his hospital bed with an expression of pure horror on his face. He doesn\\u0026#39;t say a word, but it\\u0026#39;s clear that he knows what his friend has done\\u2014and he\\u0026#39;s all the more horrified that he did it for \\u003Cem\\u003Ehim\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in the present day, the Professor hangs his head in sorrow as he remembers Erik\\u0026#39;s downfall, and Jean puts a comforting hand on his shoulder.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn the dead of night\\u2014hours after the X-Men have gone to sleep for the night\\u2014a mysterious figure approaches the mansion. It\\u0026#39;s the man with the metal claws! After weeks of fleeing the military, he has finally made his way to Westchester, and he has his sights set on the Xavier Institute.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoving silently, the figure vaults over the gates and creeps across the grounds of the manor, then sneaks into the mansion through a window, moving through the shadowed halls without a sound. Once inside, he heads straight for the Professor\\u0026#39;s study\\u2014where the disk is hidden away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the figure creeps through the mansion, the Professor wakes, having clearly sensed his presence with his telepathy. Thinking fast, he sends a telepathic message to the X-Men, alerting them to the intruder\\u0026#39;s presence. Moments later, the X-Men awake and scramble to apprehend him. Undaunted, the intruder pops his claws and prepares for a fight.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA fight ensues as Cyclops, Jean Grey, Storm, Nightcrawler and Colossus all rush at the intruder\\u2014but he evades them all, and fights off everyone who manages to reach him. With the disk in hand, he runs through the labyrinthine halls of the mansion, rounding corners and clinging to the shadows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter a lengthy chase, Storm finally manages to stun the intruder with a well-placed lightning bolt, and Colossus grabs him in his metal embrace, allowing Jean to lull him into a catatonic state with her telepathy. With the intruder out of commission, the X-Men retrieve the disk and lock him in a secure room.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a fierce argument, Storm confronts the Professor about his constant secret-keeping, and finally demands that he tell the X-Men what\\u0026#39;s on the disk that Nightcrawler retrieved. After seeing someone break into the X-Men\\u0026#39;s home searching for the disk, the other X-Men realize how dangerous it really is. Reluctantly, the Professor agrees to tell them the truth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEver since the US government first discovered the existence of Mutants in the 1960s, it\\u0026#39;s been rumored that the Department of Defense has secretly been conducting experiments on live Mutant test subjects. While most people in the government view the existence of the \\u0026quot;X-gene\\u0026quot; as a threat to national security, others believe that it could be a powerful weapon in the right hands. The \\u0026quot;Weapon X\\u0026quot; project was supposedly founded with that in mind. According to persistent rumors, the soldiers and scientists at Weapon X have spent years seeking out the world\\u0026#39;s deadliest Mutants, and they\\u0026#39;ve forced them to undergo agonizing surgical procedures and mental conditioning intended to turn them into living weapons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpon hearing the Professor\\u0026#39;s story, Scott and Jean recoil in horror as they realize that their own government may have been enslaving Mutants since before they were born. But their horror only grows stronger when the Professor tells them why they were sent on their mission to the Nevada Desert: Magneto is trying to prove the existence of the Weapon X project, and he attacked the Army\\u0026#39;s base because he believed that their computers contained the location of Weapon X\\u0026#39;s headquarters. But the Professor wanted to \\u003Cem\\u003Estop\\u003C/em\\u003E Magneto from discovering the location of the project\\u0026#39;s headquarters, believing that a direct attack on a high-level military base would spark the human-Mutant war that he\\u0026#39;s dreaded for years.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter learning the true purpose of their mission, Storm erupts in anger at the Professor. If she\\u0026#39;d known what Magneto was really after, she says, she\\u0026#39;d have joined his side and \\u003Cem\\u003Ehelped\\u003C/em\\u003E him bring down Weapon X. As Nightcrawler and Colossus attempt to calm her down, Jean creeps into the secure room where the intruder is held.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the intruder awakens, Jean carefully approaches him and extends a friendly hand. Having learned the true nature of the mysterious disk, she suspects that the intruder might have understandable reasons for seeking it. She asks the intruder if he\\u0026#39;d like to explain himself, but he can\\u0026#39;t bring himself to speak. But, of course, Jean has other ways of seeing why he\\u0026#39;s come.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the third time, Jean uses her telepathy. With the intruder\\u0026#39;s permission, she looks into his mind, and she\\u0026#39;s terrified by what she sees. As she learns, he\\u0026#39;s a fugitive test subject of the Weapon X project, and he was abducted by the US military\\u2014who forcibly coated his skeleton with the indestructible metal alloy \\u003Cstrong\\u003Eadamantium\\u003C/strong\\u003E. Ever since escaping from the organization\\u0026#39;s clutches in the Canadian Rockies, he has been on the run from the military, determined to track down the location of Weapon X\\u0026#39;s headquarters so that he can shut it down permanently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETaking pity on the intruder, Jean promises him that he\\u0026#39;ll always be safe at the Xavier Institute, and she vows to help him shut down Weapon X. Taken aback by her act of kindness, the intruder finally introduces himself. His name is \\u003Cstrong\\u003ELogan\\u003C/strong\\u003E\\u2014but in Weapon X, he was known only by the codename \\u0026quot;\\u003Cstrong\\u003EWolverine\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith Jean by his side, Logan exits the locked room, and he explains himself to the X-Men. Having finally learned the full story of Weapon X, the X-Men show him no hostility; if he\\u0026#39;s truly serious about taking down Weapon X, they tell him, they\\u0026#39;re on the same side.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the very first time, the X-Men openly defy Professor Xavier, and they tell him that they\\u0026#39;ve decided to shut Weapon X down\\u2014with or without his permission. Finally accepting that he won\\u0026#39;t be able to change his students\\u0026#39; minds, the Professor agrees to tell them the location of the project\\u0026#39;s headquarters: it\\u0026#39;s located in a base on the remote Pacific island of \\u003Cstrong\\u003EKrakoa\\u003C/strong\\u003E, which can\\u0026#39;t be found on any map. Armed with Krakoa\\u0026#39;s coordinates, the X-Men resolve to fly to the island to take on Weapon X, and they invite Logan to join them.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 3:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt dawn, the X-Men pile into the Blackbird and plot a course for Krakoa, and the Professor bids them farewell. A few hours later, they come up on the remote island\\u2014a barren rock patrolled by a platoon of soldiers in unmarked black uniforms.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMuch to their surprise, the X-Men find themselves intercepted by the Brotherhood, who\\u0026#39;ve followed them to the island via helicopter. As the X-Men pile out and prepare for a fight, the Brotherhood pile out alongside them. As the soldiers dig in and fire on them, the two enemy teams declare a temporary truce, agreeing to work together as long as it takes to shut down Weapon X.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a massive battle sequence, the X-Men and the Brotherhood storm Krakoa, fighting an uphill battle against the soldiers. When the dust clears, they realize that they\\u0026#39;ve won\\u2014but there\\u0026#39;s no base in sight. As far as they can see, the island is nothing but storm-wracked cliffs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the two rival teams stare each other down in a tense faceoff, Scott and Logan leave to explore the island. As they investigate their surroundings, they eventually discover a hidden passage between two cliffs, which leads them into a shadowy underground chamber deep beneath the surface of Krakoa. When they light a flashlight, the two men recoil in horror as they realize that they\\u0026#39;re surrounded by locked jail cells filled with the decaying skeletons of Mutant prisoners, who\\u0026#39;ve clearly been dead for years.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo their dismay, they realize that they\\u0026#39;re too late: the base on Krakoa is abandoned, and the leaders of Weapon X have long since located. Scott realizes that the soldiers must have \\u003Cem\\u003Eknown\\u003C/em\\u003E that they were coming, and \\u003Cem\\u003Esomeone\\u003C/em\\u003E must have tipped them off.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he explores the abandoned base, Scott stumbles into a darkened room filled with blank television screens. As he draws near, the power flickers on, and a nightmarish face fills each screen: the face of \\u003Cstrong\\u003Ea man with deathly pale skin, eyes as black as coal, and a red diamond tattoo in the center of his forehead\\u003C/strong\\u003E. Scott is paralyzed with fear as the pale man laughs, and his voice fills the room.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I suppose I should congratulate you, Mr. Summers,\\u0026quot;\\u003C/em\\u003E the man says. \\u003Cem\\u003E\\u0026quot;I wasn\\u0026#39;t going to let you shut our little operation down, but I didn\\u0026#39;t count on you surviving this long.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScott\\u0026#39;s heart pounds in his chest as he stares at the screens, unable to look away. For reasons that he can\\u0026#39;t explain \\u003Cem\\u003Esomething\\u003C/em\\u003E seems inexplicably familiar about the pale man\\u0026#39;s voice. He knows that he\\u0026#39;s heard it before. But \\u003Cem\\u003Ewhere?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn an instant, Scott realizes the answer. As he finds himself flashing back to an awful day 10 years gone, all of his repressed memories of the plane crash come flooding back.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce again, we see a young Scott Summers sitting in the passenger seat of a small single-engine plane, with his parents sitting in the cockpit. But \\u003Cem\\u003Ethis\\u003C/em\\u003E time, we can clearly hear the mysterious voice coming from the plane\\u0026#39;s radio. It\\u0026#39;s the voice of the pale man!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You won\\u0026#39;t escape me,\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EMajor Summers\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E,\\u0026quot;\\u003C/em\\u003E the voice says. \\u003Cem\\u003E\\u0026quot;By my side, your son could have been great. But now he\\u0026#39;ll die forgotten. And when you\\u0026#39;re gone, no one will dare speak your name.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I know what you\\u0026#39;ve done,\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EEssex\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E!\\u0026quot;\\u003C/em\\u003E Major Summers says defiantly. \\u003Cem\\u003E\\u0026quot;You can\\u0026#39;t keep this hidden forever!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe figure\\u2014\\u0026quot;Essex\\u0026quot;\\u2014laughs tauntingly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I don\\u0026#39;t intend to, Major Summers,\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;A new age is dawning. We\\u0026#39;ve accomplished wonders, you and I. Soon, the world will know of all we\\u0026#39;ve done. It\\u0026#39;s a pity you won\\u0026#39;t be here to see that day. Goodbye, old friend.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the control panel in front of Major Summers, his radar display shows an object approaching the plane, moving fast. It\\u0026#39;s a missile\\u2014and it\\u0026#39;s locked onto the plane. As soon as he sees it, he knows that he won\\u0026#39;t be able to evade it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe turns to Scott, his eyes full of sorrow. We don\\u0026#39;t hear what\\u0026#39;s said after that. We only see Scott\\u0026#39;s mother as she hands a parachute to Scott and pushes him towards the door. As the missile hits, and the plane is engulfed in flame, Scott takes one last look at his parents as he jumps into the open air and pulls his ripcord.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in the present day, Scott sinks to his knees as he confronts the pale man. For the first time in his life, he realizes the truth about his parents\\u0026#39; death: \\u003Cstrong\\u003E\\u003Cem\\u003Etheir plane didn\\u0026#39;t crash\\u2014it was shot down!\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;As a token of respect, I\\u0026#39;ll give you a final chance to turn back,\\u0026quot;\\u003C/em\\u003E the pale man says. \\u003Cem\\u003E\\u0026quot;You might have the courage to challenge me, but a weak fool\\u0026#39;s courage won\\u0026#39;t destroy all that I\\u0026#39;ve built. I dealt with your father swiftly\\u2014but if\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003Eyou\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003Edefy me, you\\u0026#39;ll suffer in ways that your mind can\\u0026#39;t grasp. This is your only warning, Mr. Summers. If you\\u0026#39;re wise, you\\u0026#39;ll never see my face again.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith that, the screen goes dark. Screaming with rage, Scott unleashes his optic beams and blasts through the concrete wall.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the surface, the X-Men climb back into the Blackbird, choosing to let the Brotherhood go in peace. With heavy hearts, they return home to Westchester.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBack at the mansion, as the team proudly presents Logan with his own room, Scott confronts Professor Xavier in his study. Finally erupting in anger at the man who raised him like a father, Scott demands to know about everything on the disk that the Professor kept from him. After a moment\\u0026#39;s pause, the Professor inserts the disk into his computer. After scrolling through pages and pages of files, he finally arrives at a photo of Scott\\u0026#39;s father in his uniform. Below his picture, six awful words tell Scott everything that he needs to know about his fate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENAME: Major Christopher Summers\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESTATUS: Terminated\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYears ago, Major Christopher Summers was a high-ranking Army officer assigned to the Weapon X project, where he worked directly under the project\\u0026#39;s founder. But when he realized how barbaric their experiments truly were, he swore to tell the world the truth about the shady organization. When he tried to flee Weapon X\\u0026#39;s base with his family, the project\\u0026#39;s founder ordered his plane shot down before it could land.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who is he?!\\u0026quot;\\u003C/em\\u003E Scott demands. \\u003Cem\\u003E\\u0026quot;Where is he?!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Professor sadly tells Scott that he doesn\\u0026#39;t know. Whoever he is, the founder of Weapon X didn\\u0026#39;t leave any clues about his identity in the computer mainframe, and the Professor has found no clues about his whereabouts. Without a miracle, it\\u0026#39;s unlikely that Scott will ever find him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEnraged that the Professor didn\\u0026#39;t tell him the full story of what happened to his parents, he storms out of the Professor\\u0026#39;s study and runs out of the mansion. As the other X-Men watch him leave, he doesn\\u0026#39;t even give them a \\u003Cem\\u003E\\u0026quot;Goodbye\\u0026quot;\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoments later, Jean runs after Scott and finds him sitting behind the wheel of his car. She begs him to stay, but Scott tells her that he can\\u0026#39;t. If he can\\u0026#39;t find his parents\\u0026#39; killer and force him to answer for his crimes, he knows that he\\u0026#39;ll never be able to live with himself. Until he does, the Xavier Institute isn\\u0026#39;t his home anymore.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJean stares at Scott, silently pleading with him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You don\\u0026#39;t think you can change my mind, do you?\\u0026quot;\\u003C/em\\u003E Scott asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;No,\\u0026quot;\\u003C/em\\u003E Jean says. \\u003Cem\\u003E\\u0026quot;But I\\u0026#39;m not letting you do this alone. I\\u0026#39;m coming with you. Whatever happens out there, I\\u0026#39;ll be by your side.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe opens the car door and takes her place in the passenger seat as Scott guns the engine. Together, they pull away from the Xavier Institute and drive into the setting sun.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThey may not have a map to follow, but they have a name: \\u0026quot;\\u003Cstrong\\u003EEssex\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor now, that\\u0026#39;s better than nothing...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ETL;DR:\\u003C/em\\u003E\\u003C/strong\\u003E As the X-Men square off against Magneto and the Brotherhood of Mutants, they accidentally discover the existence of \\u0026quot;Weapon X\\u0026quot;, a mysterious military program designed to turn Mutants into living weapons. After crossing paths with a fugitive Weapon X test subject called \\u0026quot;Wolverine\\u0026quot;, they resolve to help him shut the program down for good.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the climax, Scott Summers discovers that his deceased father was a former Army officer who tried to expose Weapon X\\u0026#39;s existence to the world, only to be assassinated by the program\\u0026#39;s founder: a shadowy figure named \\u0026quot;Essex\\u0026quot;. In the end, he chooses to leave the Xavier Institute to track down Essex and avenge his parents, and Jean Grey chooses to join him.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bye3cz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bye3cz/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bye3cz/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1560037282.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test 300ppi tinypng\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bydio9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/pEQby3AcrTh8OYsL6nqyADWsfJ0xYVzp6eU-Tg2YT5I.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560062426.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/g63xs5ndn7331.png?auto=webp\\u0026s=034dc50f43b87db78bcde504ad0c707f4d2a479e\", \"width\": 944, \"height\": 1204}, \"resolutions\": [{\"url\": \"https://preview.redd.it/g63xs5ndn7331.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=59917eede6b2741b9b279aa8942bf35aba1a47f2\", \"width\": 108, \"height\": 137}, {\"url\": \"https://preview.redd.it/g63xs5ndn7331.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=8546355fbbe6164f40839c406e69ef1e000f391d\", \"width\": 216, \"height\": 275}, {\"url\": \"https://preview.redd.it/g63xs5ndn7331.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=13881e27baccea313d855db982f24da3cdd2d05f\", \"width\": 320, \"height\": 408}, {\"url\": \"https://preview.redd.it/g63xs5ndn7331.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5c6ee136a87bc59bc89c7b4ce9f190e95d5979f1\", \"width\": 640, \"height\": 816}], \"variants\": {}, \"id\": \"LMVKTv4382UozUz1Dh1RTY8TetFojLyOesyTobf9Aqs\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bydio9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bydio9/test_300ppi_tinypng/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/g63xs5ndn7331.png\", \"subreddit_subscribers\": 709, \"created_utc\": 1560033626.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"tinypng test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bybucw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/_shnynGiA1jaSDVRdq7WI5OyXySYV8QjkCyAU1F8DTY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560052398.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/n715q8p3s6331.png?auto=webp\\u0026s=9bcddff2909335363538563684e65b3ec2567c6f\", \"width\": 944, \"height\": 1204}, \"resolutions\": [{\"url\": \"https://preview.redd.it/n715q8p3s6331.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=14b34d0c561293814708870b68107a0a61824c06\", \"width\": 108, \"height\": 137}, {\"url\": \"https://preview.redd.it/n715q8p3s6331.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=aa5e0498362e605b24b19637c9cc158b7af4e48d\", \"width\": 216, \"height\": 275}, {\"url\": \"https://preview.redd.it/n715q8p3s6331.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=448d39237ceecc7eccbafed875c382bb34bb1a01\", \"width\": 320, \"height\": 408}, {\"url\": \"https://preview.redd.it/n715q8p3s6331.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f8d7d87897cd827363a7aa9bf7aa31c79913e0d0\", \"width\": 640, \"height\": 816}], \"variants\": {}, \"id\": \"O2bsYWki79GbGUg-afk8nn9KmOH90ETGRR4-3hNGC88\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bybucw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bybucw/tinypng_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/n715q8p3s6331.png\", \"subreddit_subscribers\": 709, \"created_utc\": 1560023598.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test larger jpeg\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bybgq8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/yA6veEQjlDPpzR3KTUhH9UDAoVfmR1ccf_hkur45OVU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560050176.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?auto=webp\\u0026s=05bd9f836acdda53db002b3fdef86c069fef270c\", \"width\": 1346, \"height\": 1718}, \"resolutions\": [{\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ed0a8c0e8a4cad5f54a6df1014b8804249816b7b\", \"width\": 108, \"height\": 137}, {\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=7c6e46659169f0c56cc03a227af6d8076e4bb3dd\", \"width\": 216, \"height\": 275}, {\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=09749e084917ed29b5613e74e017a4e92bdb3eda\", \"width\": 320, \"height\": 408}, {\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5ec1fa40530e1129a1eba9855cdad77bef1380d5\", \"width\": 640, \"height\": 816}, {\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=b69ebbd0e816a976161b9361e4ff920df8d30ee7\", \"width\": 960, \"height\": 1225}, {\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=4e6b46666f1aaeac9b7f566e70ca574e53e88b61\", \"width\": 1080, \"height\": 1378}], \"variants\": {}, \"id\": \"ulvqbEnezYaEsaP_DvXiRTRAhLheygBDK6JPPX-Std4\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bybgq8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bybgq8/test_larger_jpeg/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/ei1vdxvml6331.jpg\", \"subreddit_subscribers\": 709, \"created_utc\": 1560021376.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test smaller img\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bybbep\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/-ZPF5NJ2BCySgq7bxtYyue8zltxwRUIH-HfJZO2bDZg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560049304.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/iehia1npi6331.jpg?auto=webp\\u0026s=e730788b5b26b077198112ee64742f124101d68d\", \"width\": 755, \"height\": 963}, \"resolutions\": [{\"url\": \"https://preview.redd.it/iehia1npi6331.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3c313941362e3097ae2b6050f12d410fb82767b5\", \"width\": 108, \"height\": 137}, {\"url\": \"https://preview.redd.it/iehia1npi6331.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=98df36c895382c4e66af3dca3eedf6c1bedca176\", \"width\": 216, \"height\": 275}, {\"url\": \"https://preview.redd.it/iehia1npi6331.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ba8c6a86538306eab817a8312e37288bb1b82ed7\", \"width\": 320, \"height\": 408}, {\"url\": \"https://preview.redd.it/iehia1npi6331.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=9ff2df65c116797c9b903048e7a03a4a4ac92120\", \"width\": 640, \"height\": 816}], \"variants\": {}, \"id\": \"-EAXgBEx7oLSvGtPqNgPn1_dW8C88iWDNIyzYGzbggs\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bybbep\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bybbep/test_smaller_img/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/iehia1npi6331.jpg\", \"subreddit_subscribers\": 709, \"created_utc\": 1560020504.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"jpeg test link\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_byb52e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/MAPgHAvnKVmgM5ydCxFzd0a_0NQDNmfLXWuzPuGm6c8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560048276.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"shroomposter.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/UWlt9Svy8BBa_kb2lF3U-LMSOT5jFSebHLMNdi6MZGk.jpg?auto=webp\\u0026s=e1039fcd6f7412d172bcea640e1524bb1180d115\", \"width\": 941, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/UWlt9Svy8BBa_kb2lF3U-LMSOT5jFSebHLMNdi6MZGk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d0ca83bd344d0a712bcb84219c7afeca5594f64f\", \"width\": 108, \"height\": 137}, {\"url\": \"https://external-preview.redd.it/UWlt9Svy8BBa_kb2lF3U-LMSOT5jFSebHLMNdi6MZGk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fa63c09bc4073fc0bc0e6555ad04b1f085d9b44a\", \"width\": 216, \"height\": 275}, {\"url\": \"https://external-preview.redd.it/UWlt9Svy8BBa_kb2lF3U-LMSOT5jFSebHLMNdi6MZGk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ff5979b14ff19a26ba7d1bf1a8b8bc7256016786\", \"width\": 320, \"height\": 408}, {\"url\": \"https://external-preview.redd.it/UWlt9Svy8BBa_kb2lF3U-LMSOT5jFSebHLMNdi6MZGk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=72290ef6fc76dc46a98ec0380541bae66cdccea4\", \"width\": 640, \"height\": 816}], \"variants\": {}, \"id\": \"wj6j-IHg_RN7kdS523omYeMAijS04-wGOmosfYNqTjQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byb52e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/byb52e/jpeg_test_link/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://shroomposter.com\", \"subreddit_subscribers\": 709, \"created_utc\": 1560019476.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test text\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test 2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_byatgq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560046407.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest text\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byatgq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/byatgq/test_2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/byatgq/test_2/\", \"subreddit_subscribers\": 709, \"created_utc\": 1560017607.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"jpeg test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_byamfk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/twu8B5AYT15-fC71lG9N25NJ3B2n8Dn2lMnf62rdZLY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560045311.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/iwrzauii36331.jpg?auto=webp\\u0026s=bd0c38b20f9f4fd60baa5415f4b4199defd5453d\", \"width\": 944, \"height\": 1204}, \"resolutions\": [{\"url\": \"https://preview.redd.it/iwrzauii36331.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d735630ad97c0c8b53d1546ba9ea2cff8a32c8dd\", \"width\": 108, \"height\": 137}, {\"url\": \"https://preview.redd.it/iwrzauii36331.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=27e87910ff9dabe908e89247e985af3f276d72e5\", \"width\": 216, \"height\": 275}, {\"url\": \"https://preview.redd.it/iwrzauii36331.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=015166301b216ee1f29f47595c86b6a5cfac2a41\", \"width\": 320, \"height\": 408}, {\"url\": \"https://preview.redd.it/iwrzauii36331.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=399d26d173370b3a37b32e3c28246207a1424771\", \"width\": 640, \"height\": 816}], \"variants\": {}, \"id\": \"_k785rA0HaHApZNM2nYTVDiJZCRmaJ9GJTjplbOTkQw\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byamfk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/byamfk/jpeg_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/iwrzauii36331.jpg\", \"subreddit_subscribers\": 709, \"created_utc\": 1560016511.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"You can choose to make this a combat encounter or a roleplaying opportunity. There are good and evil versions of Lady Kazimir also known as The Lady of the Lake. Both are described at the end of this post. The home-brewed monster (modified wraith) is intended for a mid to high level party as they will most likely be fighting in water. That means melee attacks are at disadvantage. You can only hold your breath for so long. She has neither of these problems as she is ethereal in nature. That and she can deal nasty numbers of damage if they aren't careful.\\n\\nThis encounter is intended to be after dealing with Bluto and Arabelle. The Lady of the Lake can make an appearance with or without their involvement, but the text for this event has been written with them in mind.\\n\\n# A story of misguided jealousy\\n\\nLady Karina Kazimir was a beautiful woman of noble birth and the last of her house while Strahd was still a boy. She was to marry Lord Varik Krezkov. The two spent much time together including multiple trips the calming, peaceful waters of Lake Zarovich.\\n\\nHowever another man, Lord Nikolai Duskin, took interest in Karina. Against her will, Nikolai took her in secret. Eventually, Nikolai paraded Karina around as a trophy for all to see. She dared not defy him because of threats he had made against her and those she loved. For months, Lord Duskin and Lady Kazimir were seen together all while Varik sat and watched. Varik knew none of the maltreatment Karina had suffered. He was convinced she had betrayed his love for her and his heart became rotten with jealousy.\\n\\nThere were times when Nikolai would attempt to force himself on Karina, but she fought him off every time using her words and infectious smile to calm him. After several of Nikolai's advances and their gradual increase in physical violence, Lady Kazimir escaped Nikolai's grasp and returned to Varik, but he would have none of her explanations.\\n\\nWith his heart broken and wilted, he walked her to the lake where they had spent so much time before. She thought he had accepted her return. She would find out too late that she was wrong. During the night, he took her out to the center of Lake Zarovich and there he plunged his dagger into her heart. In his mind, it was a physical manifestation of what she had done to him. He cursed her name and let her body sink beneath the still water. Realizing what he had done, Varik was overwhelmed with grief and hung himself at the River Ivlis Crossroads.\\n\\nLady Kazimir has been bound to the waters of Lake Zarovich ever since. The true nature of her freedom lies in the remains of her dead lover, Varik. Varik's body can be found either at the River Ivlis Crossroads or in Krezk (whichever you choose). If they bring the remains to the lake, Lady Kazimir's curse will break and she will pass into the afterlife (or not depending on how you're running death and the soul in CoS).\\n\\nSightings of her over the years have earned her the title of \\\"the Lady of the Lake.\\\" Lack of understanding led the locals of the time to believe her to be an evil spirit that haunts the lake. Since people refuse to travel across the lake, the Lady of the Lake has not been seen for some time as the mist hangs above the waters.\\n\\nIt's an old story that has been long forgotten by the general populous of Barovia, but the Vistani being a well-traveled people and enchanting storytellers have heard this story before. Rictavio may have heard of this tale during his study of Strahd and Barovia. The Krezkovs would know of this story due to their family's involvement. All parties can introduce the story/song to the adventurers as a means of foreshadowing their encounter.\\n\\nA song was written in remembrance of the sad tale. (I can't songs or poetry to so be nice!)\\n\\n\\u0026#x200B;\\n\\n*An ancient land before the Devil's hold*\\n\\n*Graced with an angel wreathed in gold*\\n\\n*Her purity like that of a child*\\n\\n*Her heart filled with love, she always smiled*\\n\\n\\u0026#x200B;\\n\\n*A beast sought her heart*\\n\\n*But she would not take part*\\n\\n*Her true love grew sick with quiet jealousy*\\n\\n*His mind corrupted, he could no longer see*\\n\\n\\u0026#x200B;\\n\\n*In the end her love betrayed*\\n\\n*Her chest pierced by cold blade*\\n\\n*Forever cursed and bound to the lake*\\n\\n*From a sleep she would never wake*\\n\\n*Lady Kazimir*\\n\\n\\u0026#x200B;\\n\\nAnyone who knows the story of Lady Kazimir knows the song as well. Rictavio may sing it as part of his act. The Vistani may use the song as part of their storytelling. The Krezkovs may not be so inclined to reveal the tale because it reveals a darker side of their family they would rather keep quiet.\\n\\nAs you may have noticed some of the parts of the song don't fit the story. That is intentional. Stories passed from generation to generation change. Some parts are added. Others are changed or removed\\n\\n# Now begins the adventure for the party\\n\\n***As you cross the dark, crystalline water, a low-laying fog creeps over the glass-like surface. (Player), you look down to see a perfect reflection of your face against the lake. You squint your eyes for a second, and you see a porcelain face hiding just behind yours. As you quickly as you noticed it, the face sinks beneath the waves of the boat and out of sight.***\\n\\nLet the players discuss what was seen and what to do. If they push forward, read:\\n\\n***The fog clears to reveal a lone cluster of weathered stones that pierces the mirrored surface of the lake. Atop the stones sits a feminine figure. Her hair is dark and matted. Her clothes are worn. Her head stares down at her lap while her feet are held close to her form.***\\n\\nIf they players get closer, she immediately notices them and calls out in desperation, ***\\\"Please! Help me!\\\"*** The terrorized woman cries out incessantly until the players approach.\\n\\nThe woman calls herself Madri Kolskov (not her real name as mentioned above). She explains she's been there for days. She was travelling with the Vistani and she walked away from the camp to attend to personal matters when she was struck over the head. Next time she woke she was in a bag and being tossed overboard. She managed to escape the sack and flee the terrors that lie beneath the water. However she was left stranded on the rocks.\\n\\nIf the players decide to help the poor woman, a few moments of silence will prompt her to begin singing softly. A beautiful but sad melodic tone escapes her lips with the lyrics of the song mentioned above.\\n\\n# Good Lady Kazimir\\n\\nLady Kazimir despite her time in solitude has kept her mind and soul intact from the influence of Strahd and the Dark Powers. While she was betrayed by the one she loved most, she still seeks kindness in the hearts of others. Those who aid her are bestowed with a special gift. Each one who refuses leaves behind another scar that leads her to become **Evil Lady Kazimir.**\\n\\n\\u0026#x200B;\\n\\n**For the adventurers**\\n\\nOnce the players have reached the shore of Lake Zarovich, she will debark with them party but will not set foot out of the water. Depending on the party, she will thank them for being a reminder to her that there are still kind people in Barovia despite the darkness that surrounds the land. At some point she will also pull her part of her clothing aside revealing the small wound leading to her heart. She will be open to answering questions of her past life. If questioned about her release, she mentions she believes being reunited with her love will end her undeath.\\n\\nShe will give them a magic item for their trouble and their kindness. You can choose an item to give them or use the one provided below.\\n\\n|The Water's Song|\\n|:-|\\n|*Wondrous Item, very rare (attunement)*|\\n|2000 gp|\\n|The beautifully crafted silver necklace features tendrils of the precious metal weaving in and out of one another creating a eye-catching design. A perfectly carved teardrop sapphire is held firmly in the center. Flanking the ocean-colored gem are two smaller teardrop blue topaz gemstones. While attuned to this item, the wearer's Charisma ability score is increased to 19. This is not in addition to their current Charisma score. The wearer of this item can cast the Charm Person spell. The item has 2 charges and regains all charges at dawn.|\\n\\n# Evil Lady Kazimir\\n\\nLady Kazimir has been bound to Lake Zarovich for hundreds of years. The solitary confinement of the lake has let her mind wander. Her existence after death has been agonizing. Her mind and soul have slowly deteriorated with the Dark Powers' promise of the sweet release that is death. She fervently believes sacrificing innocent hearts will bring about this end and she will finally be able to pass.\\n\\nLady Kazimir has been manipulating Bluto every time he comes to the lake. She has him convinced she controls the creatures of the lake. She tells him if he brings her sacrifices, the fish will be jumping into his boat. The drunken fool that Bluto is complies. This is when he takes the Vistani child, Arabelle, and attempts to toss her overboard.\\n\\n\\u0026#x200B;\\n\\n**For the adventurers**\\n\\nThis portion begins just as the song ends. Lady Kazimir remembers someone taking her child sacrifice from her and someone is going to pay for it. In the potential silence to follow, read:\\n\\n***The fog of the lake returns making it nearly impossible to see. As the fog continues to close in, Madri says in a low, bone-chilling tone, \\\"You took the girl from me. I needed her for my release, but you should be an adequate replacement.\\\"***\\n\\nLady Kazimir attempts to grab the adventurer closest to her and take them into the water with her. There her true form is revealed be much more sinister.\\n\\n***Cracks form and travel along her porcelain skin. Pieces break and dissolve into the water revealing bloated, rotten flesh and bone. Her blank, glassy eyes glare into yours almost reaching your soul. Despite being underwater, her wails of agony pierce your ears clearly. Your thoughts are blurred with the screams of her pain.***\\n\\n[Lady of the Lake stat block](https://imgur.com/OEg6Ofb) and a [reference image](https://cdnb.artstation.com/p/assets/images/images/001/103/573/large/marek-madej-wraith-by-marek-madej.jpg?1440110663).\\n\\nShe will attempt to take down as many as she can. The more blood the better it is for her. Defeating Lady Kazimir will not relieve her from her state of undeath. The Dark Powers will begin working to bring her back. Her agony is their amusement.\\n\\nAny loot is up to you.\", \"author_fullname\": \"t2_fejcc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_by2v3z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559960981.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559988725.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can choose to make this a combat encounter or a roleplaying opportunity. There are good and evil versions of Lady Kazimir also known as The Lady of the Lake. Both are described at the end of this post. The home-brewed monster (modified wraith) is intended for a mid to high level party as they will most likely be fighting in water. That means melee attacks are at disadvantage. You can only hold your breath for so long. She has neither of these problems as she is ethereal in nature. That and she can deal nasty numbers of damage if they aren\\u0026#39;t careful.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis encounter is intended to be after dealing with Bluto and Arabelle. The Lady of the Lake can make an appearance with or without their involvement, but the text for this event has been written with them in mind.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EA story of misguided jealousy\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ELady Karina Kazimir was a beautiful woman of noble birth and the last of her house while Strahd was still a boy. She was to marry Lord Varik Krezkov. The two spent much time together including multiple trips the calming, peaceful waters of Lake Zarovich.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever another man, Lord Nikolai Duskin, took interest in Karina. Against her will, Nikolai took her in secret. Eventually, Nikolai paraded Karina around as a trophy for all to see. She dared not defy him because of threats he had made against her and those she loved. For months, Lord Duskin and Lady Kazimir were seen together all while Varik sat and watched. Varik knew none of the maltreatment Karina had suffered. He was convinced she had betrayed his love for her and his heart became rotten with jealousy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere were times when Nikolai would attempt to force himself on Karina, but she fought him off every time using her words and infectious smile to calm him. After several of Nikolai\\u0026#39;s advances and their gradual increase in physical violence, Lady Kazimir escaped Nikolai\\u0026#39;s grasp and returned to Varik, but he would have none of her explanations.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith his heart broken and wilted, he walked her to the lake where they had spent so much time before. She thought he had accepted her return. She would find out too late that she was wrong. During the night, he took her out to the center of Lake Zarovich and there he plunged his dagger into her heart. In his mind, it was a physical manifestation of what she had done to him. He cursed her name and let her body sink beneath the still water. Realizing what he had done, Varik was overwhelmed with grief and hung himself at the River Ivlis Crossroads.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELady Kazimir has been bound to the waters of Lake Zarovich ever since. The true nature of her freedom lies in the remains of her dead lover, Varik. Varik\\u0026#39;s body can be found either at the River Ivlis Crossroads or in Krezk (whichever you choose). If they bring the remains to the lake, Lady Kazimir\\u0026#39;s curse will break and she will pass into the afterlife (or not depending on how you\\u0026#39;re running death and the soul in CoS).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESightings of her over the years have earned her the title of \\u0026quot;the Lady of the Lake.\\u0026quot; Lack of understanding led the locals of the time to believe her to be an evil spirit that haunts the lake. Since people refuse to travel across the lake, the Lady of the Lake has not been seen for some time as the mist hangs above the waters.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s an old story that has been long forgotten by the general populous of Barovia, but the Vistani being a well-traveled people and enchanting storytellers have heard this story before. Rictavio may have heard of this tale during his study of Strahd and Barovia. The Krezkovs would know of this story due to their family\\u0026#39;s involvement. All parties can introduce the story/song to the adventurers as a means of foreshadowing their encounter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA song was written in remembrance of the sad tale. (I can\\u0026#39;t songs or poetry to so be nice!)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EAn ancient land before the Devil\\u0026#39;s hold\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EGraced with an angel wreathed in gold\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EHer purity like that of a child\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EHer heart filled with love, she always smiled\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EA beast sought her heart\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EBut she would not take part\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EHer true love grew sick with quiet jealousy\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EHis mind corrupted, he could no longer see\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EIn the end her love betrayed\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EHer chest pierced by cold blade\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EForever cursed and bound to the lake\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EFrom a sleep she would never wake\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ELady Kazimir\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone who knows the story of Lady Kazimir knows the song as well. Rictavio may sing it as part of his act. The Vistani may use the song as part of their storytelling. The Krezkovs may not be so inclined to reveal the tale because it reveals a darker side of their family they would rather keep quiet.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs you may have noticed some of the parts of the song don\\u0026#39;t fit the story. That is intentional. Stories passed from generation to generation change. Some parts are added. Others are changed or removed\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003ENow begins the adventure for the party\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAs you cross the dark, crystalline water, a low-laying fog creeps over the glass-like surface. (Player), you look down to see a perfect reflection of your face against the lake. You squint your eyes for a second, and you see a porcelain face hiding just behind yours. As you quickly as you noticed it, the face sinks beneath the waves of the boat and out of sight.\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet the players discuss what was seen and what to do. If they push forward, read:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe fog clears to reveal a lone cluster of weathered stones that pierces the mirrored surface of the lake. Atop the stones sits a feminine figure. Her hair is dark and matted. Her clothes are worn. Her head stares down at her lap while her feet are held close to her form.\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf they players get closer, she immediately notices them and calls out in desperation, \\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;Please! Help me!\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E The terrorized woman cries out incessantly until the players approach.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe woman calls herself Madri Kolskov (not her real name as mentioned above). She explains she\\u0026#39;s been there for days. She was travelling with the Vistani and she walked away from the camp to attend to personal matters when she was struck over the head. Next time she woke she was in a bag and being tossed overboard. She managed to escape the sack and flee the terrors that lie beneath the water. However she was left stranded on the rocks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the players decide to help the poor woman, a few moments of silence will prompt her to begin singing softly. A beautiful but sad melodic tone escapes her lips with the lyrics of the song mentioned above.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EGood Lady Kazimir\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ELady Kazimir despite her time in solitude has kept her mind and soul intact from the influence of Strahd and the Dark Powers. While she was betrayed by the one she loved most, she still seeks kindness in the hearts of others. Those who aid her are bestowed with a special gift. Each one who refuses leaves behind another scar that leads her to become \\u003Cstrong\\u003EEvil Lady Kazimir.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EFor the adventurers\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce the players have reached the shore of Lake Zarovich, she will debark with them party but will not set foot out of the water. Depending on the party, she will thank them for being a reminder to her that there are still kind people in Barovia despite the darkness that surrounds the land. At some point she will also pull her part of her clothing aside revealing the small wound leading to her heart. She will be open to answering questions of her past life. If questioned about her release, she mentions she believes being reunited with her love will end her undeath.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe will give them a magic item for their trouble and their kindness. You can choose an item to give them or use the one provided below.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EThe Water\\u0026#39;s Song\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cem\\u003EWondrous Item, very rare (attunement)\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2000 gp\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EThe beautifully crafted silver necklace features tendrils of the precious metal weaving in and out of one another creating a eye-catching design. A perfectly carved teardrop sapphire is held firmly in the center. Flanking the ocean-colored gem are two smaller teardrop blue topaz gemstones. While attuned to this item, the wearer\\u0026#39;s Charisma ability score is increased to 19. This is not in addition to their current Charisma score. The wearer of this item can cast the Charm Person spell. The item has 2 charges and regains all charges at dawn.\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EEvil Lady Kazimir\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ELady Kazimir has been bound to Lake Zarovich for hundreds of years. The solitary confinement of the lake has let her mind wander. Her existence after death has been agonizing. Her mind and soul have slowly deteriorated with the Dark Powers\\u0026#39; promise of the sweet release that is death. She fervently believes sacrificing innocent hearts will bring about this end and she will finally be able to pass.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELady Kazimir has been manipulating Bluto every time he comes to the lake. She has him convinced she controls the creatures of the lake. She tells him if he brings her sacrifices, the fish will be jumping into his boat. The drunken fool that Bluto is complies. This is when he takes the Vistani child, Arabelle, and attempts to toss her overboard.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EFor the adventurers\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis portion begins just as the song ends. Lady Kazimir remembers someone taking her child sacrifice from her and someone is going to pay for it. In the potential silence to follow, read:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe fog of the lake returns making it nearly impossible to see. As the fog continues to close in, Madri says in a low, bone-chilling tone, \\u0026quot;You took the girl from me. I needed her for my release, but you should be an adequate replacement.\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELady Kazimir attempts to grab the adventurer closest to her and take them into the water with her. There her true form is revealed be much more sinister.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ECracks form and travel along her porcelain skin. Pieces break and dissolve into the water revealing bloated, rotten flesh and bone. Her blank, glassy eyes glare into yours almost reaching your soul. Despite being underwater, her wails of agony pierce your ears clearly. Your thoughts are blurred with the screams of her pain.\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/OEg6Ofb\\\"\\u003ELady of the Lake stat block\\u003C/a\\u003E and a \\u003Ca href=\\\"https://cdnb.artstation.com/p/assets/images/images/001/103/573/large/marek-madej-wraith-by-marek-madej.jpg?1440110663\\\"\\u003Ereference image\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe will attempt to take down as many as she can. The more blood the better it is for her. Defeating Lady Kazimir will not relieve her from her state of undeath. The Dark Powers will begin working to bring her back. Her agony is their amusement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny loot is up to you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?auto=webp\\u0026s=141181d691587db10380ee8127a69585ddefa69b\", \"width\": 1400, \"height\": 932}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a21aba9ab1d1172c5f814729e7fe4128997eef9\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=62a7202ed45dcf87c4a55b17b50b4fd4e0b9e5d7\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cd75fd3ff5cc0cc58b5fa77b524211196bcdbe12\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=47b26571236b6e0e0992fd573382dd23da0aafb7\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2733e75c1ce97db253f6876cbac962a20f5dcf52\", \"width\": 960, \"height\": 639}, {\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=dd0f797ebde3338d64d34858f39c4f34c602a8e6\", \"width\": 1080, \"height\": 718}], \"variants\": {}, \"id\": \"4eTeSdqqMnDkjavSrUgbfQo6aocWfjarcOgzb6js6e0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"by2v3z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"theswordsecho\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/by2v3z/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/by2v3z/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559959925.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_3um52nx7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test baby test baby 123\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxxrzi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559959558.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": true, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"rte_mode\": \"markdown\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxxrzi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxxrzi/test_baby_test_baby_123/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxxrzi/test_baby_test_baby_123/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559930758.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_3um52nx7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test baby test baby 1 2 3\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxw8jy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559951688.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": true, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"rte_mode\": \"markdown\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxw8jy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxw8jy/test_baby_test_baby_1_2_3/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxw8jy/test_baby_test_baby_1_2_3/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559922888.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_b3enc15\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing handcheck\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bxw44n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/g-Vn8VE84ZMavft5yVbO-OWrqIxHFF_NiISN--__m04.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559951048.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?auto=webp\\u0026s=2a78e498199bb112ae49fd0c0d4db4a1e8cfdfdb\", \"width\": 1960, \"height\": 2614}, \"resolutions\": [{\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b2a2268872616021eba1b51f6a6d7fdd5f764d58\", \"width\": 108, \"height\": 144}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=8b9498ea5106e39ee9c17005a4b74d64ca19e02c\", \"width\": 216, \"height\": 288}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4c3181062de4fc49679215d86bc8318a42abe2bf\", \"width\": 320, \"height\": 426}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=cb4aff5dd8d61b19c53910f6a89eb0dd78ed09e9\", \"width\": 640, \"height\": 853}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=7e0f25346dbee5f27d783b741867c0abaaaf929b\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=f695bd8b64887728d8310ede4110d5b78d12da3e\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"tKhMAgZ09nb048tGiceyYag9boiLSkfCGWrTKlLmyYY\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxw44n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ymsalem\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxw44n/testing_handcheck/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/uv7goq47gy231.jpg\", \"subreddit_subscribers\": 709, \"created_utc\": 1559922248.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_x9hgy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Orleans Funk and Soul Comp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bxu0h7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/HZGF8jwxJvb-kmQ0VHxmPmJwsj7cME_lUiJh0tMOdyA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559939195.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?auto=webp\\u0026s=63435ce5b9021c26f3f3361832bee85120b95da7\", \"width\": 2997, \"height\": 3000}, \"resolutions\": [{\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4f2d78539e84109eff8c55ef3881fc5cd9895610\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=36b248b4534ebb7224b313476f08bfaeac231423\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d14878565506f79f9a565575c94dd15cb87b126f\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b8599670803f247e3567c308259e0e008d6ade54\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5f099f6836672fd6e14fc584d919502251a20062\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=80dc7ae6be61b47e33fb9efb8e6396ee20665a72\", \"width\": 1080, \"height\": 1081}], \"variants\": {}, \"id\": \"oOKJ7WqkVkUAvpB0GW3QoNctvySrbQLkpEE891MLydk\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu0h7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"branch_immersion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxu0h7/new_orleans_funk_and_soul_comp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/st657dn4fx231.jpg\", \"subreddit_subscribers\": 709, \"created_utc\": 1559910395.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Very sad news about the passing of Dr John. I took out a couple of his records this lunchtime and gave them a spin. \\n\\n\\u0026#x200B;\\n\\nI also dug out a copy of this compilation Saturday Night Fish Fry (New Orleans Funk And Soul). There was a post earlier this week about Betty Harris and the drums on her record. And I think generally, within this subreddit and elsewhere, there is a huge appetite for the New Orleans funk and blues. Some people may even correct me that sometimes the genre is referred to in more granular terms as fonk, I don't know. In his autobiography Dr. John put this distinct musical signature down to the unique geographic location of the City to absorb and conjoin different artistic ideas from America and the Caribbean. \\n\\n\\u0026#x200B;\\n\\nThis double lp is a collection of New Orleans funk and really gets my groove on. If you want to find out more about this City's musical heritage you could do a lot worse than get an overview from this selection.\", \"author_fullname\": \"t2_x9hgy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Orleans Funk and Soul Comp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxtvoq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559938349.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVery sad news about the passing of Dr John. I took out a couple of his records this lunchtime and gave them a spin. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also dug out a copy of this compilation Saturday Night Fish Fry (New Orleans Funk And Soul). There was a post earlier this week about Betty Harris and the drums on her record. And I think generally, within this subreddit and elsewhere, there is a huge appetite for the New Orleans funk and blues. Some people may even correct me that sometimes the genre is referred to in more granular terms as fonk, I don\\u0026#39;t know. In his autobiography Dr. John put this distinct musical signature down to the unique geographic location of the City to absorb and conjoin different artistic ideas from America and the Caribbean. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis double lp is a collection of New Orleans funk and really gets my groove on. If you want to find out more about this City\\u0026#39;s musical heritage you could do a lot worse than get an overview from this selection.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxtvoq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"branch_immersion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxtvoq/new_orleans_funk_and_soul_comp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxtvoq/new_orleans_funk_and_soul_comp/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559909549.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_288py4gj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Text\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxsgv0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559928038.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsgv0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Heroquetarro10\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559899238.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Text Area \\\\_\\\\_\\\\_ 1234567890\", \"author_fullname\": \"t2_3l1yc231\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing format of post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxqfkz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559910553.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EText Area ___ 1234567890\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxqfkz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"denHting\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxqfkz/testing_format_of_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxqfkz/testing_format_of_post/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559881753.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_3um52nx7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"get get get out\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxprj4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559906146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": true, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"rte_mode\": \"markdown\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxprj4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxprj4/get_get_get_out/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxprj4/get_get_get_out/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559877346.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_5ijtn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 12, \"hide_score\": false, \"name\": \"t3_bxfqen\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ZMjeoipMxQ3bRu7Gbso5AMjI0QnyRUvbys50zzeSRHg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559850058.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?auto=webp\\u0026s=6d88313f2c01fb65fd4dfac7f372dd58761154d8\", \"width\": 1985, \"height\": 184}, \"resolutions\": [{\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ef14c58b5359e5cee2e44484a1445c24cbcb6c74\", \"width\": 108, \"height\": 10}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5c10e0ab3c5c459950fd8b2b53afc9550ada288e\", \"width\": 216, \"height\": 20}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=04da7a02871577f68e7b8f226ace537039186d1f\", \"width\": 320, \"height\": 29}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5798b9ac875f896439e407b4be792746ac5af021\", \"width\": 640, \"height\": 59}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2a6b88d3275179016bbc16a31c84fab844a21611\", \"width\": 960, \"height\": 88}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ac41548df3abfb57153e76f1acf77aad1ea06881\", \"width\": 1080, \"height\": 100}], \"variants\": {}, \"id\": \"37BQwgGDDek1wnbE0TCNlewSvltCJFOhbRB1kfNUMhA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfqen\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"killroy200\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxfqen/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/ol16qrsw3q231.png\", \"subreddit_subscribers\": 709, \"created_utc\": 1559821258.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_j843ij2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"David baldeon\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bxetqt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/m3rUKYfsSdlyGoaGh5wvUvrM1c4STiyplCNdlfpQRhk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559843173.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"pbs.twimg.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?auto=webp\\u0026s=43c066330a06d2d8d5bca251a8a4811882c33423\", \"width\": 1840, \"height\": 2048}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0bdafd5b0f83d3ec2b33853ea6562f883e0397c2\", \"width\": 108, \"height\": 120}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1f2a430d8f9d494b3d60dab91709ae43cece167f\", \"width\": 216, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=0fe60b0fa60898cc650a2d809feb39a7d2ce2591\", \"width\": 320, \"height\": 356}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=77a93a8b1083aa79c8639a40bb83dd9872e1788e\", \"width\": 640, \"height\": 712}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=03aa15e18e660b2763ea2a3b471f9d19e083dd9b\", \"width\": 960, \"height\": 1068}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c7767c724137a83b643d47906adb4f9165dce0b0\", \"width\": 1080, \"height\": 1202}], \"variants\": {}, \"id\": \"5Tr0M7lNan8uCLe6JLeIcnoU05eiHN8ApgBANUjkHug\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxetqt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mothman232\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxetqt/david_baldeon/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://pbs.twimg.com/media/D7lJtTCXkAI0O3E.jpg:large\", \"subreddit_subscribers\": 709, \"created_utc\": 1559814373.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I CAN GO 15 SECONDS WITH ANYTHING. Howard looks like he is going to make doodie in his pants when GB hijacks his mic. Would GB walk away from this encounter if he bullied Howard in 2019? T O P L E S S\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bwsi3l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwsi3l\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Vkisu9g-VZo3thxeoTEh7_sHe6pgucV1XMkDjc08RY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559703482.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?auto=webp\\u0026s=3e2a10eb30c9a5b77b30a241735e3e8b8e1cfccc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a22b052dedffebf783ba26dae6003cd3c55a250\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcf039e2e79b58782dfd536386b50fa8b338f1d2\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=77375886fab998dde88f536da5c4503437f4c152\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"bdEz7hRKzTsVVn3Vyr7qozX0OUrbARsbBsUoqJKdw7M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwsi3l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\\u0026t=2s\", \"subreddit_subscribers\": 709, \"created_utc\": 1559674682.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_11r26z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Image test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bwl0fm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/kksd_8fx216qsy4gL0wzul47ods9QoCbZqBfN9_5nP8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559654591.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?auto=webp\\u0026s=ec79ffaf9e22e32c6e41f6946737e14d55a3b940\", \"width\": 2896, \"height\": 2896}, \"resolutions\": [{\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c3c8dfece59ca2a351d51df624d7beaabb02863c\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1b1a7dac32dd046927c2c8fc65bb58d81ac0c932\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3e8cd8af164b2b78530a4168875c3ab407422677\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=bf806ec58298e63494dd4d00966bde0c369f6c7a\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e8fc39dbf7e1348397f5a9836f13473aeff79ad1\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=86615f13d9764a381a194c798b715a78a43db6b6\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"xjLAgIF4juxLsEPnfXluO5CqMIQxaAYzHRiXsdAzPMg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwl0fm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Syclowave\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwl0fm/image_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/8mrszs4py9231.jpg\", \"subreddit_subscribers\": 709, \"created_utc\": 1559625791.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[France](#bar-10-blue) , via u/BuzzBuzz01\\n\\n#[](#icon-info-big) About\\n\\n - **Nickname(s)**: Les Bleues\\n\\n - **Women's World Cup Appearances**: 4\\n\\n - **Best Finish**: 4th (2001)\\n\\n - **FIFA Ranking**: 4 (3rd in Europe)\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nFrance has been building it's women's football for years on years on years. With parallels to men's team (which are addressed in the P.O.D) combined with being the hosts, is expected to at the very least contest in the final. After building up from the ground up year on year on year, this seems the exact right for them to be hosting the World Cup. They're excellent in every department, with strong centrebacks who can both play out the back, proven and experienced goal scorers up top, technical midfielders, and creative wingers. France has 12 wins in the last 13 matches since the SheBelievesCup (including 3-1 against Brazil, the USA and Japan and 4-0 against Denmark + one defeat against Germany 0-1). Is this the year that France finally puts it all together to become the first ever country to hold both the men's and women's World Cups?\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager:** Corinne Diacre (France)\\n\\n**Goalkeepers:** Sarah BOUHADDI (Olympique Lyonnais), Sol\\u00e8ne DURAND (EA Guingamp), Pauline PEYRAUD-MAGNIN (Arsenal)\\n\\n**Defenders:** Julie DEBEVER (EA Guingamp), Sakina KARCHAOUI (Montpellier HSC), Amel MAJRI (Olympique Lyonnais), Griedge MBOCK (Olympique Lyonnais), \\u00c8ve P\\u00c9RISSET (Paris Saint-Germain), Wendie RENARD (Olympique Lyonnais), Marion TORRENT (Montpellier HSC), A\\u00efssatou TOUNKARA (Atl\\u00e9tico Madrid)\\n\\n**Midfielders:** Charlotte BILBAULT (Paris FC), \\u00c9lise BUSSAGLIA (Dijon FCO), Ma\\u00e9va CLEMARON (FC Fleury 91), Grace GEYORO (Paris Saint-Germain), Amandine HENRY (Olympique Lyonnais), Ga\\u00ebtane THINEY (Paris FC)\\n\\n**Forwards:** Viviane ASSEYI (Girondins de Bordeaux), Delphine CASCARINO (Olympique Lyonnais), Kadidiatou DIANI (Paris Saint-Germain), Val\\u00e9rie GAUVIN (Montpellier HSC), Emelyne LAURENT (EA Guingamp), Eug\\u00e9nie LE SOMMER (Olympique Lyonnais)\\n\\n#[](#icon-whistle-big) [Potential Starting 11](https://imgur.com/a/hMH9Gy8)\\n\\n Bouhaddi\\n\\n Torrent Renard Mbock Bathy Majri\\n\\n Bussaglia Henry (C)\\n\\n Cascarino Thiney Diani\\n\\n Le Sommer\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n[Eug\\u00e9nie Le Sommer (ST):](https://cdn-media.rtl.fr/cache/YFtm3Fv-bsG7aM6_D8KqTw/880v587-0/online/image/2018/1228/7796070733_l-attaquante-francaise-eugenie-le-sommer-le-1er-septembre-2018.jpg)\\n\\nLe Sommer usually plays up top as the out and out striker and is without a doubt the star attacking player. With 74 goals in 159 caps, Le Sommer is only 7 goals off of being the country's all time top goal scorer. Le Sommer is not simply just some poacher and can score in a multitude of ways, whether with her fox-in-the-box instincts (either her feet or her head), ability to get past defenders with her adept dribbling, or just absolutely lacing one from outside the box, Le Sommer has it all.\\n\\n[Here is a short highlight video of hers](https://www.youtube.com/watch?v=CCC4eK4aEdA)\\n\\n\\n[Amandine Henry (DM)](https://c.static-nike.com/a/images/w_960,c_limit,f_auto/x7ycyrbgveskryrkkpyy/athlete-stories-amandine-henry.jpg)\\n\\nThe 29 year old captain has 83 appearances and 11 goals for the national team. With the ability to launch a belter outside the box, Henry is the calm metronome in midfield for France. If you were to compare her to a player it would have to be a prime Sergio Busquets. A very one-touch oriented style of play, Henry uses her calmness and series of fakes and feints to swivel and alleviate pressure with ease. And if she does somehow manage to lose the ball, she's quick and strong to recover and win it back.\\n\\n[Here is a featurette on Henry done by France's official YouTube channel](https://www.youtube.com/watch?v=YMUzaTan7mM)\\n\\n[Here is a Henry highlight video in France's 3-1 win over the USA in January](https://www.youtube.com/watch?v=ry4Ed25fCu8)\\n\\nQuite literally the heart of the midfielder and always in the right spot, Henry will play a key role for France. If they do happen to match up against the USA in the quarterfinal if all goes accepted, her matchup against Julie Ertz should definitely be one to watch out for.\\n\\n\\n[Wendie Renard (CB)](https://i.pinimg.com/originals/51/75/7f/51757f3bb7e30e196793fcf928a1e884.jpg)\\n\\nThe former captain, Renard is without a doubt one of the best defenders in the world. At 6'2\\\" (188 cm), Renard is one of the biggest and tallest players at the tournament, which makes a particular threat on set pieces in defence and attack, seen with her 12 goals in 26 matches across the league and Champions League with the oh so dominant Lyon. Though don't be fooled, Renard is not just a French Gareth McAuley, she also provides an excellent Plan B with her pinpoint long balls from the back. If a team happens to be pressuring France extensively, just get to Renard and she'll knock one into the channels or over the top with Bonnucci/van Dijk levels of precision.\\n\\n#[](#icon-discuss-big) Points of Discussion\\n\\n - **The Seeming Parallels to the Men's Team**\\nLet's look back at the discussion points surrounding the men's team. \\nManaged by a former player, Didier Deschamps for the men's and Corinne Diacre for the women, the latter of which became the first woman to manage a men's professional football match, when she took charge of Clermont Foot.\\nAbsolutely loaded with talent. experience plus up and coming stars\\nLeft some talent at home to try and fit together players who fit the system, in the case of the men's it was Lacazette and with the women's it's with Division 1 F\\u00e9minine's top goalscorer Marie-Antoinette Katoto, who had 22 goals in 22 games at only 20 years old\\nHaven't made nearly as far as they should have in previous tournaments and have lots of pressure to turn that around this time around, with the women having more pressure being the hosts\\n\\n\\n - **Lyon Dominant**\\nIf they trot out with the expected XI, seven of their starting XI are a part of the Champions League winning Lyon, who are blessed with stars from across the planet. Since Lyon put money into women's football quite early on, they've seemed to reap the benefits immensely. Lyon have won 13 straight league titles and 4 straight Champions League's. They scored 89 goals and allowed only 6 in 22 matches this season, going 20-2-0 and 62 points, and PSG were still hot on their tail with 57. With a core of players playing with one another week in week out, this is a definite positive heading into the tournament\\n\\n\\n- **Their Style of Play**\\nFrance are no one-dimensional team, being able to attack in a number of ways, with a particular emphasis on attacking the wings and overloading one side to make space in the middle to get to their goal scorers. The left overload is one to be particularly terrified of, as Henry drifts out to the channels to support an overlapping Majri, who is one of the most technically gifted defenders at the tournament, coupled with Diani and Thiney, a combination of very high skilled players that teams will be forced to double up with, leaving the deadly Le Sommer room to manuever in and around the box\\n\\nOther players to look out for include Amel Majri (LB) , a converted midfielder turned fullback, and with her technical ability making her one of if not the best in her position, Delphine Cascarino (RW) a typical young tricky winger who loves a little stepover or two, and the experienced 33 year old Ga\\u00ebtane Thiney (AM), who has 155 caps and 58 goals for Les Blues\\n\\n---\\n\\n[South Korea](#bar-10-red) , via u/loser0001\\n\\n#[](#icon-info-big) About\\n\\n- **Nickname(s)**: Taegeuk Ladies\\n\\n- **Appearances**: 2\\n\\n- **Best Finish**: Round of 16 (2015)\\n\\n- **FIFA Ranking**: 14\\n\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nSouth Korea women's team played their first international in 1990, when they were unsurprisingly hammered by Japan in what remains their heaviest-ever defeat. Thankfully things have improved since then. In more recent history, they finished runners-up in their group at the 2015 World Cup, behind Brazil but ahead of Costa Rica and Spain; in the Round of 16 they were knocked out by future 2019 opponents France.\\n\\n**Route to the 2019 World Cup**\\n\\nTL;DR: North South Korea best Korea\\n\\nI'm sure there are a few stories in this World Cup of teams qualifying against the odds, but South Korea's may be up there, amid unusual circumstances.\\n\\nFor background, the Asian Football Confederation (AFC) has 5 spots for the World Cup. Qualification is done via the AFC's regional tournament - the Asian Cup - held every four years, in the year before the World Cup. That makes qualification for the Asian Cup doubly important - miss out on qualifying for the Asian Cup, and you absolutely won't be going to the World Cup.\\n\\nIn the 2017 Asian Cup qualifying, South Korea were the top seeds ahead of the group draw (Japan, Australia, and China were the 1-2-3 of the previous Asian Cup and so did not participate in qualifying). Rather than the standard home and away fixtures, all group games are played in a selected 'host nation' with just 2 or 3 days rest in between games. Only the group winner qualifies for the Asian Cup proper.\\n\\nSouth Korea were drawn in a group with North Korea, then ranked #10 in the world, 7 places above them in the FIFA rankings. To make matters worse, North Korea were the selected host nation and would be playing all games on home soil. Unlucky to say the least, but how did this happen if South Korea were the top seeds?\\nFollowing the North Korean doping scandal in 2011, North Korea were banned from participating in the 2015 World Cup, and the 2014 Asian Cup (and qualifying). Because they hadn't taken part in the previous Asian Cup at all, they had the lowest seeding, being drawn from pot 5.\\n\\nBoth North and South Korea won their early group games comfortably. For the probable group-deciding match against each other, I could find exactly two highlights videos, corresponding to the respective North and South Korean broadcasts of the match. The South Korean source has an interesting camera angle but I recommend watching just the start to see the atmosphere created by a few tens of thousand of well-co-ordinated North Korean fans (attendance was reported to be 42,500). The North Korean source is in some ways much better - it has replays, alternate angles, and commentary - but the video quality makes it look like it's from a broadcast in the 90's. If you want to watch this one, the goals are at 29:00 and 51:20. There's also a penalty given and saved starting from 6:00. The match finished 1-1.\\n\\nThose were the only goals that either Korea would concede, and in the end it was South Korea that topped the group with a goal difference of +20 to North Korea's +17.\\n\\nIn the 2018 Asian Cup South Korea were once again slightly unlucky with their group draw, finding themselves with both Australia and Japan. They drew against both and finished level on points with both, but found themselves in 3rd place based on goal difference and goals scored. Thankfully this was enough to get them to a play-off against Phillipines for that last World Cup spot, whom they dispatched 5-0.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\nThe majority of the national team play their club football in the domestic WK League, with two playing in England's WSL and one in Japan. Incheon Red Angels are the dominant force in Korea, having won the past 6 league titles and are on course to make that 7 this season.\\n\\nThe team has a handful of players who were part of the U-17 World Cup winning squad from 2010.\\n\\n**Manager**: Yoon Deok-yeo (South Korea)\\n\\n**Goalkeepers:** Kang Ga-ae (Gumi), Jung Bo-ram (Hwacheon), \\tKim Min-jeong (Incheon)\\n\\n**Defenders:** Kim Hye-ri (Incheon), Shin Dam-yeong (Incheon), Lim Seon-joo (Incheon), Lee Eun-mi (Suwon), Kim Do-yeon (Incheon), Jang Sel-gi (Incheon), Jeong Yeong-a (Gyeonju), Hwang Bo-ram (Hwacheon)\\n\\n**Midfielders:** Lee Young-ju (Incheon), Kang Yu-mi (Hwacheon), Lee So-dam (Incheon), Moon Mi-ra (Suwon), Cho So-hyun (West Ham), Lee Min-a (INAC Kobe), Kang Chae-rim (Incheon)\\n\\n**Forwards:** Jung Seol-bin (Incheon), Ji So-yun (Chelsea), Lee Geum-min (Gyeonju), Yeo Min-ji (Suwon), Son Hwa-yeon (Changnyeon)\\n\\n#[](#icon-whistle-big) [Potential Starting 11](https://i.imgur.com/ejiZpWV.jpg)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**[Ji So-yun](http://photo.hankooki.com/newsphoto/v001/2019/04/09/holic20190409183756_P_02_C_1.jpg)**: Korean prodigy - youngest senior national team debut and goal, both at the age of 15, and highest ever goal scorer (54 in 116 appearances). Unusual in that she did not start her senior club career in Korea, being signed early by INAC Kobe Leonessa. In her 3 years in Japan she won three League titles, and just before leaving for Chelsea she managed to score against them in the final of the International Women's Club Championship (Japan's attempt to get a Club World Cup going). Since moving to England with Chelsea, she has added another few titles to the collection, and is a regular nominee and occasional winner for PFA player of the year. Has excellent dead ball skills and is just generally a class above. Is hugely important to the team - more so than Son Heung-min is to the men's team.\\n\\n**[Cho So-hyun](https://img.sbs.co.kr/newimg/news/20181229/201266238_1280.jpg)**: Korea's captain and most capped player ever with 121 appearances. Spent the majority of her career with Incheon in the WK League, but in the past few years has played in Japan, Norway, and signed for West Ham at the start of 2019. Usually plays as DM between the defensive and midfield lines. The coach has sometimes started her in a CB position for extra reliability, but midfield is her natural position.\\n\\n---\\n\\n\\n#[](#icon-discuss-big) Points of Discussion\\n\\n - **Norway**\\n\\nThe main point of discussion is trying to work out how good this South Korean team really is. They didn't actually lose a single game during qualifying, drawing with teams who on paper were much better - North Korea, Australia, and Japan. This has seen their FIFA ranking steadily rise, and I'm not sure if it has settled on its 'true' value yet. Progressing to the group stage again is the target for this team, and to do that, picking up points against Norway is probably required. To get a win against Norway and take the 2nd spot (barring any other upsets in the group) would be enough to label this World Cup a success.\\n\\nThe focus on Norway is evident in their pre-tournament friendlies, as they arranged two matches against Iceland and two against Sweden under the assumption that the Northern European teams will have a similar physicality to their game. In the first game against Iceland, Korea were dominant, and yet lost 3-2 as Iceland scored with their only 3 attempts on goal (to Korea's 22 shots), leading the coach to rather publicly bemoan the state of his goalkeepers and defence. At least in the goalkeeper department, his hand has been forced as veteran keeper Kim Jung-mi suffered an Achilles tendon injury in training.\\n\\n - **Future retirements?**\\n\\n\\nThis is now just my personal speculation, but the two current stars Ji So-yun and Cho So-hyun are now 28 and 30 respectively, and while they may still play in another World Cup, they also may not. With these two being so important to the team, could this be the peak of this generation of players? A lot of the current core of players are hovering around 26/27 years old, standout fullback Jang Sel-gi (KFA player of the year 2018) is 25. If South Korea won't be fielding a team of 30-year-olds in 4 years time, the team will look very different, and it's not clear who the young rising stars are now.\\n\\n---\\n\\n[Norway](#bar-10-red) , via u/Crusarius28\\n\\n#[](#icon-info-big) About\\n\\n- **Appearances**: 7 (All Editions)\\n\\n- **Best Finish**: Champions (1995)\\n\\n- **FIFA Ranking**: 12\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nFormer World and Olympic Champions Norway have fallen from power in the past decade. The team comes to France with big expectations after having qualified for another World Cup in dramatic fashion. The Norwegians left it all to the last match-day and had to earn a hard fought victory over EURO Champions Netherlands to earn automatic qualification.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager**: Martin Sjogren (Sweden)\\n\\n**Goalkeepers:** Ingrid Hjelmseth (Stabaek), Cecilie Fiskerstrand (LSK), Oda Bogstad (Arna-Bjomar)\\n\\n**Defenders:** Ingrid Wold (LSK), Maria Thorisdottir (Chelsea), Stine Hovland (Sandviken), Maren Mjelde (Chelsea), Cecilie Kvamme (Sandviken)\\n\\n**Midfielders:** Synne Hansen (LSK), Vilde Boe Risa (Kopparbergs), Caroline Hansen (Wolfsburg/Barca), Ingrid Engen (LSK), Guro Reiten (LSK), Kristine Minde (Wolfsburg), Frida Maanum (Linkoping), Karina Saevik (Kolbotn)\\n\\n**Forwards:** Elise Thorsnes (LSK), Isabell Herlovsen (Kotbotn), Lisa-Marie Utland (Rosengard), Therese Asland (LSK), amalie Eikeland (Sandviken), Emilie Haavi (LSK), Emilie Nautnes (Arna-Bjonar)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**Caroline Graham Hansen:** Completing a move to Barcelona just weeks before appearing in her first World Cup, Hansen will be Noway's most important player. The 24 yr old is the full midfield package that can control games, deliver pin point passes and score whenever needed. Ruled out of the 2015 World Cup due to a knee injury, she's back and stronger than ever. Forming a team around this future superstar was one of the headaches Coach Sjogren had this year, but it's a good headache to have.\\n\\n**Isabell Herlovsen:** 30 yr old Herlovsen is a constant goal threat. The brunt of all goals scored will be on Herlovsen's shoulders this summer. Her uncanny sense to be at the right place at the right time has paid dividends, including scoring the winner in the decider against the Netherlands. Her finishing skills will be a major key for Norway's progression.\\n\\n---\\n\\n#[](#icon-discuss) Points of Discussion\\n\\n**Turning Experience into Results**\\n\\nNorway are no strangers to winning and a realistic goal this year will be to get a medal. High expectations come from a storied past but following in the footsteps of legends proves no easy task. In terms of quality, Norway aren't able to best the top teams, but are certainly best of the rest and managing to utilize all their experience and hunger to put together performances early on versus Nigeria and France in the toughest qualifying group will be important to building momentum for Norway.\\n\\n**Defense**\\n\\nDefense wins championships, and true to the old adage, Norway's defense will be key. Chelsea duo Mjelde and Thorisd\\u00f3ttir are important in the back but Thorisdottir has missed half the season due to injury and may not be fully fit. Mjelde's responsibilities will extend to organizing the midfield during transitions, even more importantly as she herself likes to get forward and score goals. She's scored 19 goals for Norway from the fullback position thus far.\\n\\n**Ada Hedgerberg**\\n\\nThe world's best female player Ada Hedgerberg has refused to play for Norway since 2017 (think Messi refusing to play for Argentina), and the current team has done well to step up in her absence. While Hedgerberg has taken headlines this summer due to her stance on the treatment of women's footballers in Norway, the team has to continue doing what they've been doing for the past two years and not let any of the new found media attention affect their performances.\\n\\n---\\n[Nigeria](#bar-10-green) , via u/Crusarius28\\n\\n#[](#icon-info-big) About\\n\\n- **Appearances**: 7 (All Editions)\\n\\n- **Best Finish**: Quarter Finals (1999)\\n\\n- **FIFA Ranking**: 38\\n\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nNigeria have dominated Africa with 9 out of 11 Women's African Cup of Nations. But turning continental results into intercontinental ones proves tough, they haven't progressed past the group stages since 1999. Their search for more will be toughened by the hardest group in the World Cup with games versus France, Nigeria and Norway proving a major hurdle.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager**: Thoms Dennerby (Sweden)\\n\\n**Goalkeepers:** Tochukwu Oluehi (Rivers Angels), Chiamaka Nnadozie (Rivers Angels), Alaba Jonathan (Bayelsa Queens)\\n\\n**Defenders:** Osinachi Ohale (Vaxjo), Ngozi Ebere (Arna-Bjomar), Onome Ebi (Henan Huishang), Faith Michael (Pitea), Chidinma Okeke (Robo Queens)\\n\\n**Midfielders:** Amarachi Okoronkwo (Nasarawa Amazons), Evelyn Nwabuoku (Rivers Angels), Rita Chikwelu (Kristianstads), Ngozi Okobi-Okeoghene (Eskilstuna Utd), Halimatu Ayinde (Eskilstuna Utd), oganna Chukwudi (Djurgarden)\\n\\n**Forwards:** Anam Imo (Rosengard), Asisat Oshoala (Barcelona), Desire oparanozie (Guingamp), Chinaza Uchendu (Braga), Uchenna Kanu (Southeastern Fire), Rasheedat Ajibade (Avaldsnes), Francisca Ordega (Shangai), Chinwendu Ihezuo (Henan Huishang), Alice Ogebe (Rivers Angels)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**Asisat Oshoala:** \\u201cSuperzee\\u201d has added Women's African Footballer of the Year award to her title. Three time Women's African Footballer of the year in fact. Her clinical ability in front of goal, raw pace and power put her on the map back in 2014 and now she's leading the line at Barcelona and helping them to their first ever Women's Champions League Final in history.\\n\\n**Onome Ebi:** Playing in China hasn't hampered the 36yr old Nigerian. Her game reading and anticipation makes her a striker's nightmare. Add that to her supreme strength and you have a player that can shut down all but the fastest forwards in the game. Ebi will be representing the Super Eagles for the 5th time this summer.\\n\\n---\\n\\n#[](#icon-discuss) Points of Discussion\\n\\n**Preparation for Tournaments**\\n\\nThe Ladies of Nigeria have been underfunded and their tournament preparations have always been the absolute minimum if non existent. They went 2 full years without playing a game from May 2016 to April 2018, months before the next major tournament. They've fixed that issue this time around and have participated in several tournaments, friendlies and training camps that hopefully give them the push they need to defeat the group stage this time around.\\n\\n**Set Pieces and Defensive Gaps**\\n\\nThe Nigerians play a high defensive line and leave gaps but yet they only conceded 1 goal the entire AFCON tournament in 2018. Plugging those holes are important but recent friendlies and showings at the Algarve Cup exposed a weakness to set pieces as well. Ebi is 36 yrs old and even though her mind is quick, her feet are not and it will be the responsibility of the midfield to plug the gaps and not allow teams to get the ball to their forwards looking to make run behind.\\n\\n**Quick Transitions**\\n\\nThe midfield not only has to cover for gaps but quickly move the ball forward during transitions to the forwards. Nigeria's strengths and speed comes from their star strikers and they'll get the ball at every opportunity. Their top heavy system works when the ball is constantly up the pitch to the final third where their creative offense can shine.\", \"author_fullname\": \"t2_pasw0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"2019 Women's World Cup Group A Profile: France, South Korea, Norway, Nigeria\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwkei5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559621947.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559650215.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-blue\\\"\\u003EFrance\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/BuzzBuzz01\\\"\\u003Eu/BuzzBuzz01\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ENickname(s)\\u003C/strong\\u003E: Les Bleues\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWomen\\u0026#39;s World Cup Appearances\\u003C/strong\\u003E: 4\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: 4th (2001)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 4 (3rd in Europe)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFrance has been building it\\u0026#39;s women\\u0026#39;s football for years on years on years. With parallels to men\\u0026#39;s team (which are addressed in the P.O.D) combined with being the hosts, is expected to at the very least contest in the final. After building up from the ground up year on year on year, this seems the exact right for them to be hosting the World Cup. They\\u0026#39;re excellent in every department, with strong centrebacks who can both play out the back, proven and experienced goal scorers up top, technical midfielders, and creative wingers. France has 12 wins in the last 13 matches since the SheBelievesCup (including 3-1 against Brazil, the USA and Japan and 4-0 against Denmark + one defeat against Germany 0-1). Is this the year that France finally puts it all together to become the first ever country to hold both the men\\u0026#39;s and women\\u0026#39;s World Cups?\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager:\\u003C/strong\\u003E Corinne Diacre (France)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Sarah BOUHADDI (Olympique Lyonnais), Sol\\u00e8ne DURAND (EA Guingamp), Pauline PEYRAUD-MAGNIN (Arsenal)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Julie DEBEVER (EA Guingamp), Sakina KARCHAOUI (Montpellier HSC), Amel MAJRI (Olympique Lyonnais), Griedge MBOCK (Olympique Lyonnais), \\u00c8ve P\\u00c9RISSET (Paris Saint-Germain), Wendie RENARD (Olympique Lyonnais), Marion TORRENT (Montpellier HSC), A\\u00efssatou TOUNKARA (Atl\\u00e9tico Madrid)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Charlotte BILBAULT (Paris FC), \\u00c9lise BUSSAGLIA (Dijon FCO), Ma\\u00e9va CLEMARON (FC Fleury 91), Grace GEYORO (Paris Saint-Germain), Amandine HENRY (Olympique Lyonnais), Ga\\u00ebtane THINEY (Paris FC)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Viviane ASSEYI (Girondins de Bordeaux), Delphine CASCARINO (Olympique Lyonnais), Kadidiatou DIANI (Paris Saint-Germain), Val\\u00e9rie GAUVIN (Montpellier HSC), Emelyne LAURENT (EA Guingamp), Eug\\u00e9nie LE SOMMER (Olympique Lyonnais)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-whistle-big\\\"\\u003E\\u003C/a\\u003E \\u003Ca href=\\\"https://imgur.com/a/hMH9Gy8\\\"\\u003EPotential Starting 11\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Bouhaddi\\n\\n Torrent Renard Mbock Bathy Majri\\n\\n Bussaglia Henry (C)\\n\\n Cascarino Thiney Diani\\n\\n Le Sommer\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cdn-media.rtl.fr/cache/YFtm3Fv-bsG7aM6_D8KqTw/880v587-0/online/image/2018/1228/7796070733_l-attaquante-francaise-eugenie-le-sommer-le-1er-septembre-2018.jpg\\\"\\u003EEug\\u00e9nie Le Sommer (ST):\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELe Sommer usually plays up top as the out and out striker and is without a doubt the star attacking player. With 74 goals in 159 caps, Le Sommer is only 7 goals off of being the country\\u0026#39;s all time top goal scorer. Le Sommer is not simply just some poacher and can score in a multitude of ways, whether with her fox-in-the-box instincts (either her feet or her head), ability to get past defenders with her adept dribbling, or just absolutely lacing one from outside the box, Le Sommer has it all.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=CCC4eK4aEdA\\\"\\u003EHere is a short highlight video of hers\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://c.static-nike.com/a/images/w_960,c_limit,f_auto/x7ycyrbgveskryrkkpyy/athlete-stories-amandine-henry.jpg\\\"\\u003EAmandine Henry (DM)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe 29 year old captain has 83 appearances and 11 goals for the national team. With the ability to launch a belter outside the box, Henry is the calm metronome in midfield for France. If you were to compare her to a player it would have to be a prime Sergio Busquets. A very one-touch oriented style of play, Henry uses her calmness and series of fakes and feints to swivel and alleviate pressure with ease. And if she does somehow manage to lose the ball, she\\u0026#39;s quick and strong to recover and win it back.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=YMUzaTan7mM\\\"\\u003EHere is a featurette on Henry done by France\\u0026#39;s official YouTube channel\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=ry4Ed25fCu8\\\"\\u003EHere is a Henry highlight video in France\\u0026#39;s 3-1 win over the USA in January\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuite literally the heart of the midfielder and always in the right spot, Henry will play a key role for France. If they do happen to match up against the USA in the quarterfinal if all goes accepted, her matchup against Julie Ertz should definitely be one to watch out for.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.pinimg.com/originals/51/75/7f/51757f3bb7e30e196793fcf928a1e884.jpg\\\"\\u003EWendie Renard (CB)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe former captain, Renard is without a doubt one of the best defenders in the world. At 6\\u0026#39;2\\u0026quot; (188 cm), Renard is one of the biggest and tallest players at the tournament, which makes a particular threat on set pieces in defence and attack, seen with her 12 goals in 26 matches across the league and Champions League with the oh so dominant Lyon. Though don\\u0026#39;t be fooled, Renard is not just a French Gareth McAuley, she also provides an excellent Plan B with her pinpoint long balls from the back. If a team happens to be pressuring France extensively, just get to Renard and she\\u0026#39;ll knock one into the channels or over the top with Bonnucci/van Dijk levels of precision.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss-big\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EThe Seeming Parallels to the Men\\u0026#39;s Team\\u003C/strong\\u003E\\nLet\\u0026#39;s look back at the discussion points surrounding the men\\u0026#39;s team. \\nManaged by a former player, Didier Deschamps for the men\\u0026#39;s and Corinne Diacre for the women, the latter of which became the first woman to manage a men\\u0026#39;s professional football match, when she took charge of Clermont Foot.\\nAbsolutely loaded with talent. experience plus up and coming stars\\nLeft some talent at home to try and fit together players who fit the system, in the case of the men\\u0026#39;s it was Lacazette and with the women\\u0026#39;s it\\u0026#39;s with Division 1 F\\u00e9minine\\u0026#39;s top goalscorer Marie-Antoinette Katoto, who had 22 goals in 22 games at only 20 years old\\nHaven\\u0026#39;t made nearly as far as they should have in previous tournaments and have lots of pressure to turn that around this time around, with the women having more pressure being the hosts\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELyon Dominant\\u003C/strong\\u003E\\nIf they trot out with the expected XI, seven of their starting XI are a part of the Champions League winning Lyon, who are blessed with stars from across the planet. Since Lyon put money into women\\u0026#39;s football quite early on, they\\u0026#39;ve seemed to reap the benefits immensely. Lyon have won 13 straight league titles and 4 straight Champions League\\u0026#39;s. They scored 89 goals and allowed only 6 in 22 matches this season, going 20-2-0 and 62 points, and PSG were still hot on their tail with 57. With a core of players playing with one another week in week out, this is a definite positive heading into the tournament\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ETheir Style of Play\\u003C/strong\\u003E\\nFrance are no one-dimensional team, being able to attack in a number of ways, with a particular emphasis on attacking the wings and overloading one side to make space in the middle to get to their goal scorers. The left overload is one to be particularly terrified of, as Henry drifts out to the channels to support an overlapping Majri, who is one of the most technically gifted defenders at the tournament, coupled with Diani and Thiney, a combination of very high skilled players that teams will be forced to double up with, leaving the deadly Le Sommer room to manuever in and around the box\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EOther players to look out for include Amel Majri (LB) , a converted midfielder turned fullback, and with her technical ability making her one of if not the best in her position, Delphine Cascarino (RW) a typical young tricky winger who loves a little stepover or two, and the experienced 33 year old Ga\\u00ebtane Thiney (AM), who has 155 caps and 58 goals for Les Blues\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-red\\\"\\u003ESouth Korea\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/loser0001\\\"\\u003Eu/loser0001\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ENickname(s)\\u003C/strong\\u003E: Taegeuk Ladies\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 2\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Round of 16 (2015)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 14\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ESouth Korea women\\u0026#39;s team played their first international in 1990, when they were unsurprisingly hammered by Japan in what remains their heaviest-ever defeat. Thankfully things have improved since then. In more recent history, they finished runners-up in their group at the 2015 World Cup, behind Brazil but ahead of Costa Rica and Spain; in the Round of 16 they were knocked out by future 2019 opponents France.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERoute to the 2019 World Cup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETL;DR: North South Korea best Korea\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sure there are a few stories in this World Cup of teams qualifying against the odds, but South Korea\\u0026#39;s may be up there, amid unusual circumstances.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor background, the Asian Football Confederation (AFC) has 5 spots for the World Cup. Qualification is done via the AFC\\u0026#39;s regional tournament - the Asian Cup - held every four years, in the year before the World Cup. That makes qualification for the Asian Cup doubly important - miss out on qualifying for the Asian Cup, and you absolutely won\\u0026#39;t be going to the World Cup.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the 2017 Asian Cup qualifying, South Korea were the top seeds ahead of the group draw (Japan, Australia, and China were the 1-2-3 of the previous Asian Cup and so did not participate in qualifying). Rather than the standard home and away fixtures, all group games are played in a selected \\u0026#39;host nation\\u0026#39; with just 2 or 3 days rest in between games. Only the group winner qualifies for the Asian Cup proper.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESouth Korea were drawn in a group with North Korea, then ranked #10 in the world, 7 places above them in the FIFA rankings. To make matters worse, North Korea were the selected host nation and would be playing all games on home soil. Unlucky to say the least, but how did this happen if South Korea were the top seeds?\\nFollowing the North Korean doping scandal in 2011, North Korea were banned from participating in the 2015 World Cup, and the 2014 Asian Cup (and qualifying). Because they hadn\\u0026#39;t taken part in the previous Asian Cup at all, they had the lowest seeding, being drawn from pot 5.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth North and South Korea won their early group games comfortably. For the probable group-deciding match against each other, I could find exactly two highlights videos, corresponding to the respective North and South Korean broadcasts of the match. The South Korean source has an interesting camera angle but I recommend watching just the start to see the atmosphere created by a few tens of thousand of well-co-ordinated North Korean fans (attendance was reported to be 42,500). The North Korean source is in some ways much better - it has replays, alternate angles, and commentary - but the video quality makes it look like it\\u0026#39;s from a broadcast in the 90\\u0026#39;s. If you want to watch this one, the goals are at 29:00 and 51:20. There\\u0026#39;s also a penalty given and saved starting from 6:00. The match finished 1-1.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThose were the only goals that either Korea would concede, and in the end it was South Korea that topped the group with a goal difference of +20 to North Korea\\u0026#39;s +17.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the 2018 Asian Cup South Korea were once again slightly unlucky with their group draw, finding themselves with both Australia and Japan. They drew against both and finished level on points with both, but found themselves in 3rd place based on goal difference and goals scored. Thankfully this was enough to get them to a play-off against Phillipines for that last World Cup spot, whom they dispatched 5-0.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EThe majority of the national team play their club football in the domestic WK League, with two playing in England\\u0026#39;s WSL and one in Japan. Incheon Red Angels are the dominant force in Korea, having won the past 6 league titles and are on course to make that 7 this season.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe team has a handful of players who were part of the U-17 World Cup winning squad from 2010.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Yoon Deok-yeo (South Korea)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Kang Ga-ae (Gumi), Jung Bo-ram (Hwacheon), Kim Min-jeong (Incheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Kim Hye-ri (Incheon), Shin Dam-yeong (Incheon), Lim Seon-joo (Incheon), Lee Eun-mi (Suwon), Kim Do-yeon (Incheon), Jang Sel-gi (Incheon), Jeong Yeong-a (Gyeonju), Hwang Bo-ram (Hwacheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Lee Young-ju (Incheon), Kang Yu-mi (Hwacheon), Lee So-dam (Incheon), Moon Mi-ra (Suwon), Cho So-hyun (West Ham), Lee Min-a (INAC Kobe), Kang Chae-rim (Incheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Jung Seol-bin (Incheon), Ji So-yun (Chelsea), Lee Geum-min (Gyeonju), Yeo Min-ji (Suwon), Son Hwa-yeon (Changnyeon)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-whistle-big\\\"\\u003E\\u003C/a\\u003E \\u003Ca href=\\\"https://i.imgur.com/ejiZpWV.jpg\\\"\\u003EPotential Starting 11\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"http://photo.hankooki.com/newsphoto/v001/2019/04/09/holic20190409183756_P_02_C_1.jpg\\\"\\u003EJi So-yun\\u003C/a\\u003E\\u003C/strong\\u003E: Korean prodigy - youngest senior national team debut and goal, both at the age of 15, and highest ever goal scorer (54 in 116 appearances). Unusual in that she did not start her senior club career in Korea, being signed early by INAC Kobe Leonessa. In her 3 years in Japan she won three League titles, and just before leaving for Chelsea she managed to score against them in the final of the International Women\\u0026#39;s Club Championship (Japan\\u0026#39;s attempt to get a Club World Cup going). Since moving to England with Chelsea, she has added another few titles to the collection, and is a regular nominee and occasional winner for PFA player of the year. Has excellent dead ball skills and is just generally a class above. Is hugely important to the team - more so than Son Heung-min is to the men\\u0026#39;s team.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"https://img.sbs.co.kr/newimg/news/20181229/201266238_1280.jpg\\\"\\u003ECho So-hyun\\u003C/a\\u003E\\u003C/strong\\u003E: Korea\\u0026#39;s captain and most capped player ever with 121 appearances. Spent the majority of her career with Incheon in the WK League, but in the past few years has played in Japan, Norway, and signed for West Ham at the start of 2019. Usually plays as DM between the defensive and midfield lines. The coach has sometimes started her in a CB position for extra reliability, but midfield is her natural position.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss-big\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ENorway\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThe main point of discussion is trying to work out how good this South Korean team really is. They didn\\u0026#39;t actually lose a single game during qualifying, drawing with teams who on paper were much better - North Korea, Australia, and Japan. This has seen their FIFA ranking steadily rise, and I\\u0026#39;m not sure if it has settled on its \\u0026#39;true\\u0026#39; value yet. Progressing to the group stage again is the target for this team, and to do that, picking up points against Norway is probably required. To get a win against Norway and take the 2nd spot (barring any other upsets in the group) would be enough to label this World Cup a success.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe focus on Norway is evident in their pre-tournament friendlies, as they arranged two matches against Iceland and two against Sweden under the assumption that the Northern European teams will have a similar physicality to their game. In the first game against Iceland, Korea were dominant, and yet lost 3-2 as Iceland scored with their only 3 attempts on goal (to Korea\\u0026#39;s 22 shots), leading the coach to rather publicly bemoan the state of his goalkeepers and defence. At least in the goalkeeper department, his hand has been forced as veteran keeper Kim Jung-mi suffered an Achilles tendon injury in training.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFuture retirements?\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThis is now just my personal speculation, but the two current stars Ji So-yun and Cho So-hyun are now 28 and 30 respectively, and while they may still play in another World Cup, they also may not. With these two being so important to the team, could this be the peak of this generation of players? A lot of the current core of players are hovering around 26/27 years old, standout fullback Jang Sel-gi (KFA player of the year 2018) is 25. If South Korea won\\u0026#39;t be fielding a team of 30-year-olds in 4 years time, the team will look very different, and it\\u0026#39;s not clear who the young rising stars are now.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-red\\\"\\u003ENorway\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/Crusarius28\\\"\\u003Eu/Crusarius28\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 7 (All Editions)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Champions (1995)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 12\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFormer World and Olympic Champions Norway have fallen from power in the past decade. The team comes to France with big expectations after having qualified for another World Cup in dramatic fashion. The Norwegians left it all to the last match-day and had to earn a hard fought victory over EURO Champions Netherlands to earn automatic qualification.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Martin Sjogren (Sweden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Ingrid Hjelmseth (Stabaek), Cecilie Fiskerstrand (LSK), Oda Bogstad (Arna-Bjomar)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Ingrid Wold (LSK), Maria Thorisdottir (Chelsea), Stine Hovland (Sandviken), Maren Mjelde (Chelsea), Cecilie Kvamme (Sandviken)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Synne Hansen (LSK), Vilde Boe Risa (Kopparbergs), Caroline Hansen (Wolfsburg/Barca), Ingrid Engen (LSK), Guro Reiten (LSK), Kristine Minde (Wolfsburg), Frida Maanum (Linkoping), Karina Saevik (Kolbotn)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Elise Thorsnes (LSK), Isabell Herlovsen (Kotbotn), Lisa-Marie Utland (Rosengard), Therese Asland (LSK), amalie Eikeland (Sandviken), Emilie Haavi (LSK), Emilie Nautnes (Arna-Bjonar)\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECaroline Graham Hansen:\\u003C/strong\\u003E Completing a move to Barcelona just weeks before appearing in her first World Cup, Hansen will be Noway\\u0026#39;s most important player. The 24 yr old is the full midfield package that can control games, deliver pin point passes and score whenever needed. Ruled out of the 2015 World Cup due to a knee injury, she\\u0026#39;s back and stronger than ever. Forming a team around this future superstar was one of the headaches Coach Sjogren had this year, but it\\u0026#39;s a good headache to have.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EIsabell Herlovsen:\\u003C/strong\\u003E 30 yr old Herlovsen is a constant goal threat. The brunt of all goals scored will be on Herlovsen\\u0026#39;s shoulders this summer. Her uncanny sense to be at the right place at the right time has paid dividends, including scoring the winner in the decider against the Netherlands. Her finishing skills will be a major key for Norway\\u0026#39;s progression.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETurning Experience into Results\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENorway are no strangers to winning and a realistic goal this year will be to get a medal. High expectations come from a storied past but following in the footsteps of legends proves no easy task. In terms of quality, Norway aren\\u0026#39;t able to best the top teams, but are certainly best of the rest and managing to utilize all their experience and hunger to put together performances early on versus Nigeria and France in the toughest qualifying group will be important to building momentum for Norway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefense\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDefense wins championships, and true to the old adage, Norway\\u0026#39;s defense will be key. Chelsea duo Mjelde and Thorisd\\u00f3ttir are important in the back but Thorisdottir has missed half the season due to injury and may not be fully fit. Mjelde\\u0026#39;s responsibilities will extend to organizing the midfield during transitions, even more importantly as she herself likes to get forward and score goals. She\\u0026#39;s scored 19 goals for Norway from the fullback position thus far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAda Hedgerberg\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe world\\u0026#39;s best female player Ada Hedgerberg has refused to play for Norway since 2017 (think Messi refusing to play for Argentina), and the current team has done well to step up in her absence. While Hedgerberg has taken headlines this summer due to her stance on the treatment of women\\u0026#39;s footballers in Norway, the team has to continue doing what they\\u0026#39;ve been doing for the past two years and not let any of the new found media attention affect their performances.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-green\\\"\\u003ENigeria\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/Crusarius28\\\"\\u003Eu/Crusarius28\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 7 (All Editions)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Quarter Finals (1999)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 38\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ENigeria have dominated Africa with 9 out of 11 Women\\u0026#39;s African Cup of Nations. But turning continental results into intercontinental ones proves tough, they haven\\u0026#39;t progressed past the group stages since 1999. Their search for more will be toughened by the hardest group in the World Cup with games versus France, Nigeria and Norway proving a major hurdle.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Thoms Dennerby (Sweden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Tochukwu Oluehi (Rivers Angels), Chiamaka Nnadozie (Rivers Angels), Alaba Jonathan (Bayelsa Queens)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Osinachi Ohale (Vaxjo), Ngozi Ebere (Arna-Bjomar), Onome Ebi (Henan Huishang), Faith Michael (Pitea), Chidinma Okeke (Robo Queens)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Amarachi Okoronkwo (Nasarawa Amazons), Evelyn Nwabuoku (Rivers Angels), Rita Chikwelu (Kristianstads), Ngozi Okobi-Okeoghene (Eskilstuna Utd), Halimatu Ayinde (Eskilstuna Utd), oganna Chukwudi (Djurgarden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Anam Imo (Rosengard), Asisat Oshoala (Barcelona), Desire oparanozie (Guingamp), Chinaza Uchendu (Braga), Uchenna Kanu (Southeastern Fire), Rasheedat Ajibade (Avaldsnes), Francisca Ordega (Shangai), Chinwendu Ihezuo (Henan Huishang), Alice Ogebe (Rivers Angels)\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAsisat Oshoala:\\u003C/strong\\u003E \\u201cSuperzee\\u201d has added Women\\u0026#39;s African Footballer of the Year award to her title. Three time Women\\u0026#39;s African Footballer of the year in fact. Her clinical ability in front of goal, raw pace and power put her on the map back in 2014 and now she\\u0026#39;s leading the line at Barcelona and helping them to their first ever Women\\u0026#39;s Champions League Final in history.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EOnome Ebi:\\u003C/strong\\u003E Playing in China hasn\\u0026#39;t hampered the 36yr old Nigerian. Her game reading and anticipation makes her a striker\\u0026#39;s nightmare. Add that to her supreme strength and you have a player that can shut down all but the fastest forwards in the game. Ebi will be representing the Super Eagles for the 5th time this summer.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPreparation for Tournaments\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Ladies of Nigeria have been underfunded and their tournament preparations have always been the absolute minimum if non existent. They went 2 full years without playing a game from May 2016 to April 2018, months before the next major tournament. They\\u0026#39;ve fixed that issue this time around and have participated in several tournaments, friendlies and training camps that hopefully give them the push they need to defeat the group stage this time around.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESet Pieces and Defensive Gaps\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Nigerians play a high defensive line and leave gaps but yet they only conceded 1 goal the entire AFCON tournament in 2018. Plugging those holes are important but recent friendlies and showings at the Algarve Cup exposed a weakness to set pieces as well. Ebi is 36 yrs old and even though her mind is quick, her feet are not and it will be the responsibility of the midfield to plug the gaps and not allow teams to get the ball to their forwards looking to make run behind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick Transitions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe midfield not only has to cover for gaps but quickly move the ball forward during transitions to the forwards. Nigeria\\u0026#39;s strengths and speed comes from their star strikers and they\\u0026#39;ll get the ball at every opportunity. Their top heavy system works when the ball is constantly up the pitch to the final third where their creative offense can shine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?auto=webp\\u0026s=8536a1bab8642c35f8f8ce6ff0d2c225f742f0df\", \"width\": 431, \"height\": 536}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5222659d4531a310385f7ad45a6a1bee0807dcf5\", \"width\": 108, \"height\": 134}, {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b0a822a359f7492a7b1263a92b9767518ec53b66\", \"width\": 216, \"height\": 268}, {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c3be09db027cef0fcc3a3b228935acf88e5d6893\", \"width\": 320, \"height\": 397}], \"variants\": {}, \"id\": \"dYE-hpAiNCPKZeSNCQxv6JlVTRpt6ovh8CLxMWBANYM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwkei5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"riskyrofl\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwkei5/2019_womens_world_cup_group_a_profile_france/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwkei5/2019_womens_world_cup_group_a_profile_france/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559621415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TEST TELATT ITEAT - DOSEA ALRJ AR A A ER A REEE ARE A? AERE?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bwhpb9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwhpb9\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Vkisu9g-VZo3thxeoTEh7_sHe6pgucV1XMkDjc08RY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559633760.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?auto=webp\\u0026s=3e2a10eb30c9a5b77b30a241735e3e8b8e1cfccc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a22b052dedffebf783ba26dae6003cd3c55a250\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcf039e2e79b58782dfd536386b50fa8b338f1d2\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=77375886fab998dde88f536da5c4503437f4c152\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"bdEz7hRKzTsVVn3Vyr7qozX0OUrbARsbBsUoqJKdw7M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwhpb9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwhpb9/test_telatt_iteat_dosea_alrj_ar_a_a_er_a_reee_are/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\", \"subreddit_subscribers\": 709, \"created_utc\": 1559604960.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://i.redd.it/n6wnbnoq68231.png\\n\\nWelcome to Eternal Aegis! We are a close-knit clan dedicated to keeping a casual, fun, and welcoming atmosphere. We strive to give our members the best clan experience Warframe has to offer. If you are interested in joining, please leave a comment below or message one of us in game!\\u00a0Here is our official Warframe clan group which you can join now:\\u00a0[https://forums.warframe.com/clubs/1730-eternal-aegis/](https://forums.warframe.com/clubs/1730-eternal-aegis/)\\n\\n# What We Offer\\n\\n* A very active, friendly, and helpful community\\n* An international community with members from all over the world. Most of our players are based in North America and Western Europe\\n* Large and well-designed dojo\\u00a0[Photos of our Dojo](https://imgur.com/a/h04Gk3N)\\n* 100% Completed Clan research\\n* Casually Competitive - we do well on leaderboards, and have no minimum quota for our members.\\u00a0[http://content.warframe.com/dynamic/hostileMergers.php](http://content.warframe.com/dynamic/hostileMergers.php)\\n* Eidolon hunting, Arbitrations, and other types of content are regularly hosted\\n* We are a Moon clan with over 980+ members at any time\\n* An organized discord server with alerts, guides, announcements, and more!\\n* We frequently host clan events, contests, and giveaways\\n* We are a member of the Moonlapse Alliance, a close-knit alliance with friendly clans.\\n\\n# Our Rules\\n\\n* Be polite and respect each other. Harassment, sexism, racism, bullying, and excessive profanity will not be tolerated.\\n* No Sexual, political, or obscene discussions in clan chat or discord.\\n* Our inactivity policy is 10\\u00a0days (members gone for longer can contact a mod).\\n* Currently, we require new recruits to be MR12+ (But friends of clanmates are only required to be MR8+).\\n\\n# Join Now!\\n\\nWe will need interested Tenno to comment below with the following information:\\n\\n1. Your in-game name\\n2. Your Mastery Rank (Note: Mastery Rank MR12+ is required but friends can join at MR 8+)\\n3. Your Region\\u00a0\\n4. The length of time you have been playing the game for\\n5. What you are looking for in a clan\\n6. How often are you able to play during a typical week\\n7. Have you been in a clan before? If so, which ones and why did you choose to leave?\\n\\nWe will respond as soon as possible! Reminder:\\u00a0Make sure you exit your clan before leaving a comment.\\n\\n# Contact List:\\n\\n\\\\--Aegis--Dandy\\u00a0| Nightressa | --Aegis--Paikoo | Bhesus | --Aegis--Excalibur64 | Myzhari |\\u00a0Valkor | --Aegis--Dragunova2018 | Komi |\\u00a0Sebas\\\\_Sal12| --Aegis--Tetsuni | JohnSaint | ChaoticJiggles | Renzashi\\ufeff\", \"author_fullname\": \"t2_1gb0jvk5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[INT][PC][Clan] Eternal Aegis | 100% Research | 990+ Members | 10 Day Inactivity | MR12+ Req. | Complete Dojo | Active Discord | Organized Clan Events | Moonlapse Alliance\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"n6wnbnoq68231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 98, \"x\": 600, \"u\": \"https://i.redd.it/n6wnbnoq68231.png\"}, \"m\": \"image/png\", \"id\": \"n6wnbnoq68231\"}}, \"name\": \"t3_bwhl33\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N\\u0026image=https%3A%2F%2Fi.imgur.com%2FivbyY3D.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"377\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 377}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 1746 views. Shared by DanDay21. Eternal Aegis Dojo\", \"title\": \"Eternal Aegis Dojo\", \"url\": \"https://imgur.com/a/h04Gk3N\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 377, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N\\u0026image=https%3A%2F%2Fi.imgur.com%2FivbyY3D.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"377\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.imgur.com/ivbyY3D.jpg?fb\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N\\u0026image=https%3A%2F%2Fi.imgur.com%2FivbyY3D.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"377\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwhl33\", \"height\": 377}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/AdMg7EUd91sNRMaEDemva54vXtcz7xPbLvAxLgMqUVg.jpg\", \"edited\": 1559955432.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559633092.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/n6wnbnoq68231.png\\\"\\u003Ehttps://i.redd.it/n6wnbnoq68231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWelcome to Eternal Aegis! We are a close-knit clan dedicated to keeping a casual, fun, and welcoming atmosphere. We strive to give our members the best clan experience Warframe has to offer. If you are interested in joining, please leave a comment below or message one of us in game!\\u00a0Here is our official Warframe clan group which you can join now:\\u00a0\\u003Ca href=\\\"https://forums.warframe.com/clubs/1730-eternal-aegis/\\\"\\u003Ehttps://forums.warframe.com/clubs/1730-eternal-aegis/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EWhat We Offer\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EA very active, friendly, and helpful community\\u003C/li\\u003E\\n\\u003Cli\\u003EAn international community with members from all over the world. Most of our players are based in North America and Western Europe\\u003C/li\\u003E\\n\\u003Cli\\u003ELarge and well-designed dojo\\u00a0\\u003Ca href=\\\"https://imgur.com/a/h04Gk3N\\\"\\u003EPhotos of our Dojo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E100% Completed Clan research\\u003C/li\\u003E\\n\\u003Cli\\u003ECasually Competitive - we do well on leaderboards, and have no minimum quota for our members.\\u00a0\\u003Ca href=\\\"http://content.warframe.com/dynamic/hostileMergers.php\\\"\\u003Ehttp://content.warframe.com/dynamic/hostileMergers.php\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEidolon hunting, Arbitrations, and other types of content are regularly hosted\\u003C/li\\u003E\\n\\u003Cli\\u003EWe are a Moon clan with over 980+ members at any time\\u003C/li\\u003E\\n\\u003Cli\\u003EAn organized discord server with alerts, guides, announcements, and more!\\u003C/li\\u003E\\n\\u003Cli\\u003EWe frequently host clan events, contests, and giveaways\\u003C/li\\u003E\\n\\u003Cli\\u003EWe are a member of the Moonlapse Alliance, a close-knit alliance with friendly clans.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EOur Rules\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBe polite and respect each other. Harassment, sexism, racism, bullying, and excessive profanity will not be tolerated.\\u003C/li\\u003E\\n\\u003Cli\\u003ENo Sexual, political, or obscene discussions in clan chat or discord.\\u003C/li\\u003E\\n\\u003Cli\\u003EOur inactivity policy is 10\\u00a0days (members gone for longer can contact a mod).\\u003C/li\\u003E\\n\\u003Cli\\u003ECurrently, we require new recruits to be MR12+ (But friends of clanmates are only required to be MR8+).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EJoin Now!\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EWe will need interested Tenno to comment below with the following information:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EYour in-game name\\u003C/li\\u003E\\n\\u003Cli\\u003EYour Mastery Rank (Note: Mastery Rank MR12+ is required but friends can join at MR 8+)\\u003C/li\\u003E\\n\\u003Cli\\u003EYour Region\\u00a0\\u003C/li\\u003E\\n\\u003Cli\\u003EThe length of time you have been playing the game for\\u003C/li\\u003E\\n\\u003Cli\\u003EWhat you are looking for in a clan\\u003C/li\\u003E\\n\\u003Cli\\u003EHow often are you able to play during a typical week\\u003C/li\\u003E\\n\\u003Cli\\u003EHave you been in a clan before? If so, which ones and why did you choose to leave?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWe will respond as soon as possible! Reminder:\\u00a0Make sure you exit your clan before leaving a comment.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EContact List:\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E--Aegis--Dandy\\u00a0| Nightressa | --Aegis--Paikoo | Bhesus | --Aegis--Excalibur64 | Myzhari |\\u00a0Valkor | --Aegis--Dragunova2018 | Komi |\\u00a0Sebas_Sal12| --Aegis--Tetsuni | JohnSaint | ChaoticJiggles | Renzashi\\ufeff\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?auto=webp\\u0026s=e98d685d9fcf12f7f7392b525e415ac027917600\", \"width\": 2560, \"height\": 1440}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=59342af73454d35034c3c2d4f475ac9a0769342f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=33b993e87781a7e2cc16124014a2db665ad1dcf3\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=067ceadbbab70f2e7568b6194ddd308d85bf70f3\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d65ab11bab91d92431c27e891c04d4f39dd66a19\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=92623901f6db2b25568baf6fcaf5db221626276e\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=32b5ff6ab01a5aae5c9bd70cb394bfe77ac67e3b\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"O2SqmsxqqImr7fOGU_I228obe-zxqR6BfpRXHbSRU7s\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwhl33\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"EternalAegisWarframe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwhl33/intpcclan_eternal_aegis_100_research_990_members/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwhl33/intpcclan_eternal_aegis_100_research_990_members/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559604292.0, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 1746 views. Shared by DanDay21. Eternal Aegis Dojo\", \"title\": \"Eternal Aegis Dojo\", \"url\": \"https://imgur.com/a/h04Gk3N\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 377, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N\\u0026image=https%3A%2F%2Fi.imgur.com%2FivbyY3D.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"377\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.imgur.com/ivbyY3D.jpg?fb\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Item #: SCP-4260**\\n\\n**Object Class: Euclid**\\n\\n**Author: Nagiros**\\n\\n\\\"*And with strange aeons even death may die.\\\"*\\n\\nHello SCPDeclassified, Brewsterion here. Today, I wanted to cover [SCP-4260](http://www.scp-wiki.net/scp-4260) at the request of the author and a few users who talked to me about it. So, let's get into it.\\n\\nWe can't get into containment procedures yet, however, as there's something very important at the top of the page.\\n\\n\\u003EThis document has been significantly edited in order to obfuscate the identity of SCP-4260; several addenda have been omitted, and are only available with **Level 5/4260 Clearance**.\\n\\nWell, this is interesting. You would think the omitting of the identity makes it an infohazard, but that's not one of the tags so we can rule that out. What it does tell us is that this thing is extremely important to the Foundation, since basically only the O5s have Level 5 clearance. Let's see what we can tell from this version, though.\\n\\n**Special Containment Procedures**\\n\\nThe first paragraph of the containment procedures isn't too weird, but some sentences do stick out. Area-03 is located 2 kilometers beneath Hong Kong, specifically to contain 4260.\\n\\n\\u003EThe containment chamber housing SCP-4260 has been augmented with a Strayer Density Matrix designed to coalesce and bind its disparate elements.\\n\\nThis is a device we haven't seen before. Disparate elements would imply an anomaly of multiple parts, however we don't seen mentions of components here. Rather this line means that whatever 4260 is, it's greatly spread out over a very large area, similar to SCP-3125, and the Foundation needs a condensed form to contain it.\\n\\n\\u003EMaintenance of the Strayer Density Matrix is integral to SCP-4260's containment and requires a specialized team of technicians and speculative ultraphysicalists.\\n\\nOh boy, new concepts. There's a footnote here that says that ultraphysicalists deal with a science of entities that produce an effect on the universe by simply existing. How this differs from normal reality benders will be explained later, but for now let's say that these things don't try to produce an effect, they just do.\\n\\nThe next sentence explains that there is a Procedure 8917 associated with 4260, and it requires joint operation of three separate MTFs. Gamma-8 uses the Density Matrices to summon 4260. Xi-2 apparently terminates 4260, but don't worry, that will be explained shortly. Tau-900 locates and terminates civilians affected by a successful termination of 4260, and remove evidence Procedure 8917 ever happened. Apparently, terminating 4260 affects people in a specific way. Not to give much away, but Tau-900's nickname is \\\"Deliverance\\\". Just wait and see.\\n\\nIt then goes on to say that Procedure 8917 is considered complete when the following steps have been met:\\n\\n1. SCP-4260 has been successfully terminated.2. The Strayer Density Matrix is fully operational.3. All affected civilians have been located and terminated.4. All evidence of Procedure 8917 has been removed.5. SCP-4260 has been resurrected.\\n\\nWell that's straightforward, if not simple. From what this tells us, between the time 4260 is terminated and brought back, civilians are affected in some way. We don't know how, or what conditions for being affected are, but we'll find out soon. More emphasis is also placed on the Density Matrix, reinforcing that the Foundation needs this, and it once again mentions removing evidence of Procedure 8917 ever happening. Basically, terminating this thing is useful for the Foundation, but it can't stay dead for long, as it has side effects. Alright.\\n\\nThe last line before the description says that the unclassified version is gonna be filled with omissions to hide the identity of 4260. As if we couldn't tell.\\n\\n**Description**\\n\\n\\u003ESCP-4260 refers to the consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. The effect of SCP-4260's existence has been well documented by almost every sapient culture. Termination of SCP-4260 has resulted in the neutralization of its primary anomalous effect until its resurrection during Procedure 8917.\\n\\nAlright, so 4260 refers to the consciousness of an entity that is present throughout the entire universe. The effect of it's existence has been documented by every sapient culture. It's kind of implied this includes aliens, which narrows it down. It's not some sort of emotional construct, it's something that effects everything, like time or gravity. Terminating it neutralizes the effect until resurrection.\\n\\nThat's it. That's the entire description. Yeah, omissions is a bit of an understatement. But there's another addendum here.\\n\\n**Addendum.4260.1**\\n\\nIt's a list of all activations of Procedure 8917. Let's try to get some answers.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 1999 \\n\\u003E \\n\\u003EMethod: Fatal puncture wounds and blood loss, administered by MTF Xi-2. \\n\\u003E \\n\\u003EReason: A massive containment failure at [Site-62C](http://www.scp-wiki.net/scp-579). \\n\\u003E \\n\\u003EDuration:110 seconds \\n\\u003E \\n\\u003EAffected: 3 civilians \\n\\u003E \\n\\u003EStatus: Recontained\\n\\nA crosslink to SCP-579, an old article where the description is literally \\\\[DATA EXPUNGED\\\\]. Not truly linked to this article, but it tells us that 4260 was killed because of a breach of some terrifyingly dangerous entity.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2003 \\n\\u003E \\n\\u003EMethod: Blunt force trauma by a member of MTF Xi-2. \\n\\u003E \\n\\u003EReason: The nuclear bombardment of Site-001. \\n\\u003E \\n\\u003EDuration: 25 seconds \\n\\u003E \\n\\u003EAffected: 1 civilian \\n\\u003E \\n\\u003EStatus: Recontained. SCP-4260's consciousness replicated and reproduced as *Tantalus.aic*.\\n\\nXi-2 bashed this thing's head in as a rush job while Site-001 was getting nuked, and resurrected them as soon as they could. Interestingly, Tantalus is a Greek mythological figure most famous for his punishment after death. Remember that.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2008 \\n\\u003E \\n\\u003EMethod: Destruction of SCP-4260's hard drive, completed by MTF Xi-2. \\n\\u003E \\n\\u003EReason: An imminent [ZK-Class (\\\"End-of-Reality\\\") Scenario](http://www.scp-wiki.net/scp-2975). \\n\\u003E \\n\\u003EDuration: Indeterminate \\n\\u003E \\n\\u003EAffected: 7,213,426,000 individuals, termination unnecessary. \\n\\u003E \\n\\u003EStatus: Recontained. A copy of *Tantalus.aic* uploaded into an appropriated [Peregrine Series Humanoid Utility Droid](http://www.scp-wiki.net/scp-1360).\\n\\nA crosslink to both SCP-2975, an interactive article meant to represent after-action report of various CK shifts and an almost ZK end of reality, and SCP-1360, one of the earlier Anderson Robotics articles. This one gives us something very vital; this procedure was activated to save the planet from destruction. This gives us as close to an answer as to what Procedure 8917 is for: saving people's asses and letting them skip through destruction easily. The next one is just the same idea with something about O5-6, but the final one is interesting.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2016 \\n\\u003E \\n\\u003EMethod: Incineration, committed by MTF Xi-2 during Experimental Operation \\u201cMany-Crowned Serpent\\u201d. \\n\\u003E \\n\\u003EReason: The insufficiency of SCP-4260's containment procedures. \\n\\u003E \\n\\u003EDuration: 415 seconds \\n\\u003E \\n\\u003EAffected: 10 civilians \\n\\u003E \\n\\u003EStatus: *N/A*\\n\\nUhhh....shit.\\n\\nApparently, they didn't bring 4260 back after this one for this Operation Many-Crowned Serpent. This opens a whole new load of questions. What is Many-Crowned Serpent? Why is 4260 staying dead? Why were the containment procedures insufficient? This iteration doesn't answer them, because it ends here.\\n\\nYou'd assume we're in trouble, but there's a prompt at the bottom of the page. Apparently, we're O5-9, and Iteration Beta of the file, the Level 5 version, is available to us to read. Now, I get if you're confused on why I just went through all of that if it's not the real version. The answer is that some of the information here, such as the times it was used and the purposes of the MTFs, are not present in Iteration Beta. And we needed to know those things before we went into Iteration Beta, as well as know how classified among the Foundation this was. Anyways, let's get into Iteration Beta.\\n\\nI'm gonna skip the containment procedures for this one, as all they tell us is just that Iteration Alpha's containment procedures, the first ones we read, were insufficient and that Operation Many-Crowned Serpent was executed to fix that. As such, this version's technically outdated too, as it doesn't reflect the changes that Operation Many-Crowned Serpent caused to 4260, but we can still use it.\\n\\n**Description 2: Electric Boogaloo**\\n\\n\\u003ESCP-4260 is the collective consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. SCP-4260's existence has resulted in the universally entropic decline of sentient organisms and is the direct cause of any organism's cessation of life functions. \\n\\u003E \\n\\u003E**Note:** \\\"Entropic decline\\\" refers to an organism\\u2019s eventual abatement into infirmity when it achieves an advanced age for its species.\\n\\nIt's Death. Well, really more Entropy than Death, but 4260 is literally Death. We could have probably inferred it from Iteration Alpha, but that document served a different purpose, and it was kind of obvious we were dealing with Death near the end and from the quote I put.\\n\\n\\u003ESCP-4260 itself is subject to its own entropy, and its anomalous influence on the universe has notably diminished in the preceding millennia. It is projected that SCP-4260 will expire by achieving an ultraphysical null-state at approximately 2017 CE. The former containment procedures of SCP-4260 proved both incapable of halting this effect and its primary anomalous trait, although complete physical containment was achieved.\\n\\n*Oh shit.*\\n\\nNow the quote at the top of this declass makes a little more sense, doesn't it? The entropy and decay 4260 inflicts upon the universe hurts itself as well, and death is inescapable. It says that by 2017, 4260's gonna be dead, but if you recall from the Procedure 8917 logs, Operation Many-Crowned Serpent was executed in 2016. Now you see why we looked through those logs.\\n\\nThe next line says that our earlier assumption about Procedure 8917 was correct in it's purpose of saving people. By temporarily killing 4260, they create an Omega-K End Of Death Scenario for long enough to save Foundation personnel or prevent global extinction, both of which we saw in the logs. This also explains why civilians are affected, as they need to take care of people that should have died but didn't during the duration of the Omega-K. ^(Hey didn't you just declass something from End of Death?) This isn't part of the central canon, it's just a reference, so don't worry about the EoD storyline.\\n\\n**Addenda 4260-1 and 4260-2**\\n\\nI'm going to group these two addenda together since they're very closely related. Addendum 1 is just a recovery log of 4260 first being recovered by the Foundation, but it's a bit odd. 4260 willingly manifested itself as a young woman at Site-76 and asked to be contained and medically treated. This is further elaborated in Addendum 2, where we also learn some more about ultraphysical entities, or Intrinsics, as the nickname goes. The Foundation doesn't know much about them, but 4260 has told them a few things, namely that they're not omnipotent, because 4260 came to them to help save it, and that they have no personality traits or goals beyond self-preservation. This desire for self-preservation extends to trying to escape it's own effect, and how this actually ended up letting life exist as a whole. The addendum ends with the statement that Death's dying is both the best and worst news humanity could have.\\n\\nOkay, so basically, Death itself is starting to fade into nothingness while the Foundation keeps killing and resurrecting them to save high-ranking personnel. This seems to be both good and bad news for the Foundation, for obvious reasons. Oh, but what's this? ANOTHER iteration? This one, Iteration Gamma, is apparently pending approval and reflects the changes caused by Operation Many-Crowned Serpent to 4260. Let's check it out and see if we finally get an answer for what Operation Many-Crowned Serpent is. \\n\\n**Special Containment Procedures 3: The Securing**\\n\\nThese containment procedures are similar to the ones from Iteration Alpha, but much stricter. This version of 4260 is locked up in a massive nuclear bunker made to withstand every K-Class Scenario the Foundation knows of, with seven Strayer Density Matrices all around the chamber and as few people as possible staffing the place. If it gets out, O5-1, O5-7, and O5-13 are to be alerted as soon as possible. This thing is even more dangerous that the prior version of 4260, and they don't seem to be planning on using Procedure 8917 on it anytime soon. It also seems to be much stronger than previous 4260, as this version needs seven Density Matrices as opposed to only one being needed for Iteration Alpha. Time to see if the description matches this guess. \\n\\n**Description 3: Describe Harder**\\n\\n\\u003E SCP-4260 is Foundation Administrator Ethan Horowitz, who has undergone considerable physical augmentation as a result of Operation \\\"Many-Crowned Serpent\\\". \\n\\nWell I know the Administrator is often seen as anomalous himself but this is very new. Apparently Operation Many-Crowned Serpent involved doing weird stuff to the Administrator. Collapsibles that follow state that this new 4260 has a large amount of limbs, stands 130 meters tall, can manipulate it's physical form as well, and apparently has the ultraphysical abilities from the old 4260. It's also mentioned that it's more resistant to the Density Matrices, and that if five out of seven Matrices fail, we'll be enjoying a Chi-K Class \\\"Crowning Of Death\\\" scenario, which I'll try to elaborate more on after the upcoming quote. \\n\\n\\u003E The ultraphysical entity previously cataloged as SCP-4260, prior to its neutralization in Operation \\\"Many-Crowned Serpent\\\", exhibited several of these anomalous traits to a more limited degree. After its termination, Foundation Administrator Ethan Horowitz elected to transfer its anomalous properties onto his own person, in accordance with the contractual and ritualistic nature of Operation \\\"Many-Crowned Serpent\\\". \\n\\nFinally, an answer to what Operation Many-Crowned Serpent is. After the old 4260 was finally terminated, their properties were transferred to Horowitz so that we don't have to worry about Death dying anymore. That Chi-K scenario is likely the threat of Death's strength returning to what it was at the beginning of the universe, causing all living beings to die. This fits the name, as crowning implies something good happening to them. Well, good is relative in these circumstances. \\n\\nThere's one final addendum to the article, and I promise it's the last addendum. Let's get through it. \\n\\n**Addendum 4260-1: The Finale**\\n\\nThis addendum, written by Horowitz himself before Operation Many-Crowned Serpent was executed, opens with a restatement of the Foundation's Prime Directives; lock up anomalies, keep them secret, make sure they don't return, and prioritize everything except reality itself below the preservation of life. Things get interesting very quickly after that, though. \\n\\n\\u003E**This is the Subdirective of the Foundation:** to terminate the primary anomalous phenomenon which has plagued life since life\\u2019s conception, or to facilitate the termination thereof. \\n\\u003E \\n\\u003E**This is the prime anomaly:** Death.\\n\\nTitle drop. They just said they hold almost everything above life, and this is proof of that. \\n\\n\\u003E The Subdirective was never meant to be feasible, at least not in the day and age of our founding. We cannot hope to mitigate the disasters that this would result in: overpopulation, species stagnation, and susceptibility to cataclysmic extra-dimensional forces which can only be contained via euthanization of those affected. \\n\\u003E \\n\\u003E Now, over a century later, we could achieve the Subdirective at any moment with only a missive sent to the lead of Amalgamate Force Omicron-45. I suppose it would be marvelous to see: a world without death and infirmity, each person freed from the dread of uncertainty and peril. Maybe, one day, we will find a way to make that world. \\n\\u003E \\n\\u003EUntil such a time, we must secure the perpetual containment of Death. This is the nature of Operation \\u201cMany-Crowned Serpent\\u201d: to fulfill the first steps of the Foundation\\u2019s subdirective. \\n\\u003E \\n\\u003EAs it stands now, Death is a hostile entity intent on its own self-preservation at any cost. We spoke, once, and I began to realize that if it could feel anything at all, it would feel the same fear we must face under its tyranny. We could not save Death from itself; as far as our science has elevated us, there is still so much we do not understand. I told this to SCP-4260, and it smiled. \\\"Administrator,\\\" it said, \\\"How can I die when I will live on through you?\\\" \\n\\u003E \\n\\u003EDeath has struck a deal with us. In all its arcane knowledge, it knows a way to live on after its death: it has chosen me to be its heir. It is a choice between the eternal agony of humanity and a pain suffered only until we know enough to repair our tired species. It is not a choice at all. \\n\\u003E \\n\\u003EOn this day, I will become Death. This last evil I must allow us all to suffer patiently. Be bold, for one day soon, we will have won the battle waged by both us and our ancestors emerging from the primordial soup: the struggle for Life Everlasting.\\n\\nThis gives some more answers. Everything that the Foundation's done and is doing is all for the purpose of facilitating this Subdirective, the end of the threat of Death to all living beings, freeing the world from fear and uncertainty. But then why aren't they just doing that now? \\n\\nWell, have you ever read any tales from the [End Of Death canon?](http://www.scp-wiki.net/end-of-death-hub) There's your answer. When humans are faced with immortality, there's a whole lot of complications. Aging, decay, population, all the other lifeforms not dying. If humans were to all become immortal tomorrow, it wouldn't end well. That's why the Foundation's delaying the Subdirective. They need to find answers to the questions posed by immortality, making sure that when Death is no more, it will be a true paradise, not one with catches and people left out, suffering as the few enjoy true immortality. They're waiting until they have the technology, and then they'll terminate 4260 for good, kicking in an Omega-K that hopefully won't be an issue. Do they like waiting? No. The Subdirective is in their grasp. But they know they have to. \\n\\nAnd thus ends SCP-4260, a tale of the Foundation's ultimate goal and the means to get there. I hope this helped you understand this SCP better. Thank you all for reading, and memento mori.\", \"author_fullname\": \"t2_118qqr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SCP-4260, \\\"The Subdirective\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwfesx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559621697.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EItem #: SCP-4260\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class: Euclid\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor: Nagiros\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Cem\\u003EAnd with strange aeons even death may die.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello SCPDeclassified, Brewsterion here. Today, I wanted to cover \\u003Ca href=\\\"http://www.scp-wiki.net/scp-4260\\\"\\u003ESCP-4260\\u003C/a\\u003E at the request of the author and a few users who talked to me about it. So, let\\u0026#39;s get into it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe can\\u0026#39;t get into containment procedures yet, however, as there\\u0026#39;s something very important at the top of the page.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThis document has been significantly edited in order to obfuscate the identity of SCP-4260; several addenda have been omitted, and are only available with \\u003Cstrong\\u003ELevel 5/4260 Clearance\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell, this is interesting. You would think the omitting of the identity makes it an infohazard, but that\\u0026#39;s not one of the tags so we can rule that out. What it does tell us is that this thing is extremely important to the Foundation, since basically only the O5s have Level 5 clearance. Let\\u0026#39;s see what we can tell from this version, though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first paragraph of the containment procedures isn\\u0026#39;t too weird, but some sentences do stick out. Area-03 is located 2 kilometers beneath Hong Kong, specifically to contain 4260.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe containment chamber housing SCP-4260 has been augmented with a Strayer Density Matrix designed to coalesce and bind its disparate elements.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is a device we haven\\u0026#39;t seen before. Disparate elements would imply an anomaly of multiple parts, however we don\\u0026#39;t seen mentions of components here. Rather this line means that whatever 4260 is, it\\u0026#39;s greatly spread out over a very large area, similar to SCP-3125, and the Foundation needs a condensed form to contain it.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EMaintenance of the Strayer Density Matrix is integral to SCP-4260\\u0026#39;s containment and requires a specialized team of technicians and speculative ultraphysicalists.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOh boy, new concepts. There\\u0026#39;s a footnote here that says that ultraphysicalists deal with a science of entities that produce an effect on the universe by simply existing. How this differs from normal reality benders will be explained later, but for now let\\u0026#39;s say that these things don\\u0026#39;t try to produce an effect, they just do.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next sentence explains that there is a Procedure 8917 associated with 4260, and it requires joint operation of three separate MTFs. Gamma-8 uses the Density Matrices to summon 4260. Xi-2 apparently terminates 4260, but don\\u0026#39;t worry, that will be explained shortly. Tau-900 locates and terminates civilians affected by a successful termination of 4260, and remove evidence Procedure 8917 ever happened. Apparently, terminating 4260 affects people in a specific way. Not to give much away, but Tau-900\\u0026#39;s nickname is \\u0026quot;Deliverance\\u0026quot;. Just wait and see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt then goes on to say that Procedure 8917 is considered complete when the following steps have been met:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ESCP-4260 has been successfully terminated.2. The Strayer Density Matrix is fully operational.3. All affected civilians have been located and terminated.4. All evidence of Procedure 8917 has been removed.5. SCP-4260 has been resurrected.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWell that\\u0026#39;s straightforward, if not simple. From what this tells us, between the time 4260 is terminated and brought back, civilians are affected in some way. We don\\u0026#39;t know how, or what conditions for being affected are, but we\\u0026#39;ll find out soon. More emphasis is also placed on the Density Matrix, reinforcing that the Foundation needs this, and it once again mentions removing evidence of Procedure 8917 ever happening. Basically, terminating this thing is useful for the Foundation, but it can\\u0026#39;t stay dead for long, as it has side effects. Alright.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last line before the description says that the unclassified version is gonna be filled with omissions to hide the identity of 4260. As if we couldn\\u0026#39;t tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 refers to the consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. The effect of SCP-4260\\u0026#39;s existence has been well documented by almost every sapient culture. Termination of SCP-4260 has resulted in the neutralization of its primary anomalous effect until its resurrection during Procedure 8917.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAlright, so 4260 refers to the consciousness of an entity that is present throughout the entire universe. The effect of it\\u0026#39;s existence has been documented by every sapient culture. It\\u0026#39;s kind of implied this includes aliens, which narrows it down. It\\u0026#39;s not some sort of emotional construct, it\\u0026#39;s something that effects everything, like time or gravity. Terminating it neutralizes the effect until resurrection.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s it. That\\u0026#39;s the entire description. Yeah, omissions is a bit of an understatement. But there\\u0026#39;s another addendum here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum.4260.1\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a list of all activations of Procedure 8917. Let\\u0026#39;s try to get some answers.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 1999 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Fatal puncture wounds and blood loss, administered by MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: A massive containment failure at \\u003Ca href=\\\"http://www.scp-wiki.net/scp-579\\\"\\u003ESite-62C\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration:110 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 3 civilians \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EA crosslink to SCP-579, an old article where the description is literally [DATA EXPUNGED]. Not truly linked to this article, but it tells us that 4260 was killed because of a breach of some terrifyingly dangerous entity.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2003 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Blunt force trauma by a member of MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: The nuclear bombardment of Site-001. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: 25 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 1 civilian \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained. SCP-4260\\u0026#39;s consciousness replicated and reproduced as \\u003Cem\\u003ETantalus.aic\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EXi-2 bashed this thing\\u0026#39;s head in as a rush job while Site-001 was getting nuked, and resurrected them as soon as they could. Interestingly, Tantalus is a Greek mythological figure most famous for his punishment after death. Remember that.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2008 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Destruction of SCP-4260\\u0026#39;s hard drive, completed by MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: An imminent \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2975\\\"\\u003EZK-Class (\\u0026quot;End-of-Reality\\u0026quot;) Scenario\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: Indeterminate \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 7,213,426,000 individuals, termination unnecessary. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained. A copy of \\u003Cem\\u003ETantalus.aic\\u003C/em\\u003E uploaded into an appropriated \\u003Ca href=\\\"http://www.scp-wiki.net/scp-1360\\\"\\u003EPeregrine Series Humanoid Utility Droid\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EA crosslink to both SCP-2975, an interactive article meant to represent after-action report of various CK shifts and an almost ZK end of reality, and SCP-1360, one of the earlier Anderson Robotics articles. This one gives us something very vital; this procedure was activated to save the planet from destruction. This gives us as close to an answer as to what Procedure 8917 is for: saving people\\u0026#39;s asses and letting them skip through destruction easily. The next one is just the same idea with something about O5-6, but the final one is interesting.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2016 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Incineration, committed by MTF Xi-2 during Experimental Operation \\u201cMany-Crowned Serpent\\u201d. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: The insufficiency of SCP-4260\\u0026#39;s containment procedures. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: 415 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 10 civilians \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: \\u003Cem\\u003EN/A\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EUhhh....shit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EApparently, they didn\\u0026#39;t bring 4260 back after this one for this Operation Many-Crowned Serpent. This opens a whole new load of questions. What is Many-Crowned Serpent? Why is 4260 staying dead? Why were the containment procedures insufficient? This iteration doesn\\u0026#39;t answer them, because it ends here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;d assume we\\u0026#39;re in trouble, but there\\u0026#39;s a prompt at the bottom of the page. Apparently, we\\u0026#39;re O5-9, and Iteration Beta of the file, the Level 5 version, is available to us to read. Now, I get if you\\u0026#39;re confused on why I just went through all of that if it\\u0026#39;s not the real version. The answer is that some of the information here, such as the times it was used and the purposes of the MTFs, are not present in Iteration Beta. And we needed to know those things before we went into Iteration Beta, as well as know how classified among the Foundation this was. Anyways, let\\u0026#39;s get into Iteration Beta.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m gonna skip the containment procedures for this one, as all they tell us is just that Iteration Alpha\\u0026#39;s containment procedures, the first ones we read, were insufficient and that Operation Many-Crowned Serpent was executed to fix that. As such, this version\\u0026#39;s technically outdated too, as it doesn\\u0026#39;t reflect the changes that Operation Many-Crowned Serpent caused to 4260, but we can still use it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription 2: Electric Boogaloo\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 is the collective consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. SCP-4260\\u0026#39;s existence has resulted in the universally entropic decline of sentient organisms and is the direct cause of any organism\\u0026#39;s cessation of life functions. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E \\u0026quot;Entropic decline\\u0026quot; refers to an organism\\u2019s eventual abatement into infirmity when it achieves an advanced age for its species.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s Death. Well, really more Entropy than Death, but 4260 is literally Death. We could have probably inferred it from Iteration Alpha, but that document served a different purpose, and it was kind of obvious we were dealing with Death near the end and from the quote I put.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 itself is subject to its own entropy, and its anomalous influence on the universe has notably diminished in the preceding millennia. It is projected that SCP-4260 will expire by achieving an ultraphysical null-state at approximately 2017 CE. The former containment procedures of SCP-4260 proved both incapable of halting this effect and its primary anomalous trait, although complete physical containment was achieved.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EOh shit.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow the quote at the top of this declass makes a little more sense, doesn\\u0026#39;t it? The entropy and decay 4260 inflicts upon the universe hurts itself as well, and death is inescapable. It says that by 2017, 4260\\u0026#39;s gonna be dead, but if you recall from the Procedure 8917 logs, Operation Many-Crowned Serpent was executed in 2016. Now you see why we looked through those logs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next line says that our earlier assumption about Procedure 8917 was correct in it\\u0026#39;s purpose of saving people. By temporarily killing 4260, they create an Omega-K End Of Death Scenario for long enough to save Foundation personnel or prevent global extinction, both of which we saw in the logs. This also explains why civilians are affected, as they need to take care of people that should have died but didn\\u0026#39;t during the duration of the Omega-K. \\u003Csup\\u003EHey didn\\u0026#39;t you just declass something from End of Death?\\u003C/sup\\u003E This isn\\u0026#39;t part of the central canon, it\\u0026#39;s just a reference, so don\\u0026#39;t worry about the EoD storyline.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddenda 4260-1 and 4260-2\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m going to group these two addenda together since they\\u0026#39;re very closely related. Addendum 1 is just a recovery log of 4260 first being recovered by the Foundation, but it\\u0026#39;s a bit odd. 4260 willingly manifested itself as a young woman at Site-76 and asked to be contained and medically treated. This is further elaborated in Addendum 2, where we also learn some more about ultraphysical entities, or Intrinsics, as the nickname goes. The Foundation doesn\\u0026#39;t know much about them, but 4260 has told them a few things, namely that they\\u0026#39;re not omnipotent, because 4260 came to them to help save it, and that they have no personality traits or goals beyond self-preservation. This desire for self-preservation extends to trying to escape it\\u0026#39;s own effect, and how this actually ended up letting life exist as a whole. The addendum ends with the statement that Death\\u0026#39;s dying is both the best and worst news humanity could have.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOkay, so basically, Death itself is starting to fade into nothingness while the Foundation keeps killing and resurrecting them to save high-ranking personnel. This seems to be both good and bad news for the Foundation, for obvious reasons. Oh, but what\\u0026#39;s this? ANOTHER iteration? This one, Iteration Gamma, is apparently pending approval and reflects the changes caused by Operation Many-Crowned Serpent to 4260. Let\\u0026#39;s check it out and see if we finally get an answer for what Operation Many-Crowned Serpent is. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures 3: The Securing\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThese containment procedures are similar to the ones from Iteration Alpha, but much stricter. This version of 4260 is locked up in a massive nuclear bunker made to withstand every K-Class Scenario the Foundation knows of, with seven Strayer Density Matrices all around the chamber and as few people as possible staffing the place. If it gets out, O5-1, O5-7, and O5-13 are to be alerted as soon as possible. This thing is even more dangerous that the prior version of 4260, and they don\\u0026#39;t seem to be planning on using Procedure 8917 on it anytime soon. It also seems to be much stronger than previous 4260, as this version needs seven Density Matrices as opposed to only one being needed for Iteration Alpha. Time to see if the description matches this guess. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription 3: Describe Harder\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 is Foundation Administrator Ethan Horowitz, who has undergone considerable physical augmentation as a result of Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell I know the Administrator is often seen as anomalous himself but this is very new. Apparently Operation Many-Crowned Serpent involved doing weird stuff to the Administrator. Collapsibles that follow state that this new 4260 has a large amount of limbs, stands 130 meters tall, can manipulate it\\u0026#39;s physical form as well, and apparently has the ultraphysical abilities from the old 4260. It\\u0026#39;s also mentioned that it\\u0026#39;s more resistant to the Density Matrices, and that if five out of seven Matrices fail, we\\u0026#39;ll be enjoying a Chi-K Class \\u0026quot;Crowning Of Death\\u0026quot; scenario, which I\\u0026#39;ll try to elaborate more on after the upcoming quote. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe ultraphysical entity previously cataloged as SCP-4260, prior to its neutralization in Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;, exhibited several of these anomalous traits to a more limited degree. After its termination, Foundation Administrator Ethan Horowitz elected to transfer its anomalous properties onto his own person, in accordance with the contractual and ritualistic nature of Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFinally, an answer to what Operation Many-Crowned Serpent is. After the old 4260 was finally terminated, their properties were transferred to Horowitz so that we don\\u0026#39;t have to worry about Death dying anymore. That Chi-K scenario is likely the threat of Death\\u0026#39;s strength returning to what it was at the beginning of the universe, causing all living beings to die. This fits the name, as crowning implies something good happening to them. Well, good is relative in these circumstances. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere\\u0026#39;s one final addendum to the article, and I promise it\\u0026#39;s the last addendum. Let\\u0026#39;s get through it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4260-1: The Finale\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis addendum, written by Horowitz himself before Operation Many-Crowned Serpent was executed, opens with a restatement of the Foundation\\u0026#39;s Prime Directives; lock up anomalies, keep them secret, make sure they don\\u0026#39;t return, and prioritize everything except reality itself below the preservation of life. Things get interesting very quickly after that, though. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis is the Subdirective of the Foundation:\\u003C/strong\\u003E to terminate the primary anomalous phenomenon which has plagued life since life\\u2019s conception, or to facilitate the termination thereof. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis is the prime anomaly:\\u003C/strong\\u003E Death.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETitle drop. They just said they hold almost everything above life, and this is proof of that. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Subdirective was never meant to be feasible, at least not in the day and age of our founding. We cannot hope to mitigate the disasters that this would result in: overpopulation, species stagnation, and susceptibility to cataclysmic extra-dimensional forces which can only be contained via euthanization of those affected. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, over a century later, we could achieve the Subdirective at any moment with only a missive sent to the lead of Amalgamate Force Omicron-45. I suppose it would be marvelous to see: a world without death and infirmity, each person freed from the dread of uncertainty and peril. Maybe, one day, we will find a way to make that world. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUntil such a time, we must secure the perpetual containment of Death. This is the nature of Operation \\u201cMany-Crowned Serpent\\u201d: to fulfill the first steps of the Foundation\\u2019s subdirective. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it stands now, Death is a hostile entity intent on its own self-preservation at any cost. We spoke, once, and I began to realize that if it could feel anything at all, it would feel the same fear we must face under its tyranny. We could not save Death from itself; as far as our science has elevated us, there is still so much we do not understand. I told this to SCP-4260, and it smiled. \\u0026quot;Administrator,\\u0026quot; it said, \\u0026quot;How can I die when I will live on through you?\\u0026quot; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeath has struck a deal with us. In all its arcane knowledge, it knows a way to live on after its death: it has chosen me to be its heir. It is a choice between the eternal agony of humanity and a pain suffered only until we know enough to repair our tired species. It is not a choice at all. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn this day, I will become Death. This last evil I must allow us all to suffer patiently. Be bold, for one day soon, we will have won the battle waged by both us and our ancestors emerging from the primordial soup: the struggle for Life Everlasting.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis gives some more answers. Everything that the Foundation\\u0026#39;s done and is doing is all for the purpose of facilitating this Subdirective, the end of the threat of Death to all living beings, freeing the world from fear and uncertainty. But then why aren\\u0026#39;t they just doing that now? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, have you ever read any tales from the \\u003Ca href=\\\"http://www.scp-wiki.net/end-of-death-hub\\\"\\u003EEnd Of Death canon?\\u003C/a\\u003E There\\u0026#39;s your answer. When humans are faced with immortality, there\\u0026#39;s a whole lot of complications. Aging, decay, population, all the other lifeforms not dying. If humans were to all become immortal tomorrow, it wouldn\\u0026#39;t end well. That\\u0026#39;s why the Foundation\\u0026#39;s delaying the Subdirective. They need to find answers to the questions posed by immortality, making sure that when Death is no more, it will be a true paradise, not one with catches and people left out, suffering as the few enjoy true immortality. They\\u0026#39;re waiting until they have the technology, and then they\\u0026#39;ll terminate 4260 for good, kicking in an Omega-K that hopefully won\\u0026#39;t be an issue. Do they like waiting? No. The Subdirective is in their grasp. But they know they have to. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd thus ends SCP-4260, a tale of the Foundation\\u0026#39;s ultimate goal and the means to get there. I hope this helped you understand this SCP better. Thank you all for reading, and memento mori.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?auto=webp\\u0026s=eb7e84b6777b9441cff986b491b9c844d2574ddb\", \"width\": 500, \"height\": 364}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bcae4878a092d9b918d961b1622fd9666b9ca968\", \"width\": 108, \"height\": 78}, {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=68c2ffe78e81071d4f95d8923cdb4f9e7a55c182\", \"width\": 216, \"height\": 157}, {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a9ffa511f3dab1524f43720275a5f4e58c725258\", \"width\": 320, \"height\": 232}], \"variants\": {}, \"id\": \"wqpxqRTyCw4m0-4ES2XLY4f4UxAxlhBTybhU-CTz2uo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwfesx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Brewsterion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwfesx/scp4260_the_subdirective/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwfesx/scp4260_the_subdirective/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559592897.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello everyone,\\n\\n\\u0026#x200B;\\n\\nI wanted to talk a bit about the rift between the performance of Beams and Cannons that is getting bigger and bigger.\\n\\n\\u0026#x200B;\\n\\nAs some who have longer played the game will remember, when the game was lunched it quickly got the nickname Cannons Online. Later on we had the Beam and Plasma Console Meta and now we are back to Cannons.\\n\\n\\u0026#x200B;\\n\\nIf we compare the average setup of today, an Epic Beam Array and an Epic Dual Cannon (both Phasers and the same Mods CrtD/Dm\\\\] \\\\[Dmg\\\\]x4) we can see a difference of 951 or generously rounded 1K DPS.\\n\\n\\u0026#x200B;\\n\\n(**Note:** I used Beam Arrays to show the difference because we still don't have enough variants of Omni-Dicretional Beams of every Energy type to be able to equip a 4x4 ship and have an efficient Dual Beam Bank Setup.)\\n\\n\\u0026#x200B;\\n\\nIn the past we argued that the difference was due to the ease of using Beams and to be fair a Beam Boat is easier to fly, but how to learn to use cannons is also no mystery.\\n\\n\\u0026#x200B;\\n\\nWhat has changed however are the Traits that support Beams vs. Cannons and the Cannon Traits have become severely better not to mention that the Boff ability of Beam Fire at Will with it's duration of 10 seconds and 20 seconds global cooldown is worse than the one for Rapid Fire or Scatter Volley with the same duration of 10 seconds but only a global cooldown of 15 seconds.\\n\\n\\u0026#x200B;\\n\\nIf we now look at the Traits we have for Cannons \\\"Go for the Kill\\\", \\\"Preferential Targeting\\\", \\\"Withering Barrage\\\", and for Beams \\\"Redirecting Arrays\\\" and \\\"Entwined Tactical Matrices\\\".\\n\\n\\u0026#x200B;\\n\\nSo for once we have a fantastic combo for Rapid Fire, with Go for the Kill and Preferential Targeting and the same is true for Scatter Volley with Withering Barrage both extends the duration of Rapid Fire (indefinitely by causing critical hits) and Scatter Volley (for four seconds).\\n\\n\\u0026#x200B;\\n\\n(**Note:** I know that Go for the Kill is super expensive and most players will never get it, but Withering Barrage is not and since it is an AOE attack it is most of the time the preferred Trait for cannons and you can buy the ships that have it in the C-Store.)\\n\\n\\u0026#x200B;\\n\\nOn the other side for Beams we have Redirecting Arrays which extends the duration of Beam Fire at Will by a Max of 15 seconds if you take constant damage, the problem however is that targets are dying so quickly that you basically never can take advantage of the duration increase.\\n\\n\\u0026#x200B;\\n\\nEntwined Tactical Matrices is an interesting Trait but I would only use it if I had none of the other Traits for Beams and Cannons but it really shines for Torp Builds allowing you to rain Torp Spreads on your target.\\n\\n\\u0026#x200B;\\n\\nSo why is it important to buff Beams, so for once there are a lot of ships that can only use Beams, and other ships that could potentially use cannons are so sluggish they simply can't move/turn fast enough to keep up and second it's not that great of an experience when you enter a STF and everything is dead in seconds.\\n\\nI have been on both sides nuke everything with my cannons before the rest of the team had a chance to do anything and I have seen the other side being the 5th wheel on the car.\\n\\n\\u0026#x200B;\\n\\n**At this point what can be done:**\\n\\nIncrease the base damage of Beams\\n\\nReduce the global cooldown of FAW to 15 seconds\\n\\nAlter Redirecting Arrays so the duration increase is reduced by maybe 50% but is not depending on taking constant damage.\\n\\n(I know this is very unlikely)\", \"author_fullname\": \"t2_gfwd5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The growing gab between Beams and Cannons\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwbfv6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559601797.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wanted to talk a bit about the rift between the performance of Beams and Cannons that is getting bigger and bigger.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs some who have longer played the game will remember, when the game was lunched it quickly got the nickname Cannons Online. Later on we had the Beam and Plasma Console Meta and now we are back to Cannons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf we compare the average setup of today, an Epic Beam Array and an Epic Dual Cannon (both Phasers and the same Mods CrtD/Dm] [Dmg]x4) we can see a difference of 951 or generously rounded 1K DPS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E I used Beam Arrays to show the difference because we still don\\u0026#39;t have enough variants of Omni-Dicretional Beams of every Energy type to be able to equip a 4x4 ship and have an efficient Dual Beam Bank Setup.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the past we argued that the difference was due to the ease of using Beams and to be fair a Beam Boat is easier to fly, but how to learn to use cannons is also no mystery.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat has changed however are the Traits that support Beams vs. Cannons and the Cannon Traits have become severely better not to mention that the Boff ability of Beam Fire at Will with it\\u0026#39;s duration of 10 seconds and 20 seconds global cooldown is worse than the one for Rapid Fire or Scatter Volley with the same duration of 10 seconds but only a global cooldown of 15 seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf we now look at the Traits we have for Cannons \\u0026quot;Go for the Kill\\u0026quot;, \\u0026quot;Preferential Targeting\\u0026quot;, \\u0026quot;Withering Barrage\\u0026quot;, and for Beams \\u0026quot;Redirecting Arrays\\u0026quot; and \\u0026quot;Entwined Tactical Matrices\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for once we have a fantastic combo for Rapid Fire, with Go for the Kill and Preferential Targeting and the same is true for Scatter Volley with Withering Barrage both extends the duration of Rapid Fire (indefinitely by causing critical hits) and Scatter Volley (for four seconds).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E I know that Go for the Kill is super expensive and most players will never get it, but Withering Barrage is not and since it is an AOE attack it is most of the time the preferred Trait for cannons and you can buy the ships that have it in the C-Store.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the other side for Beams we have Redirecting Arrays which extends the duration of Beam Fire at Will by a Max of 15 seconds if you take constant damage, the problem however is that targets are dying so quickly that you basically never can take advantage of the duration increase.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEntwined Tactical Matrices is an interesting Trait but I would only use it if I had none of the other Traits for Beams and Cannons but it really shines for Torp Builds allowing you to rain Torp Spreads on your target.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo why is it important to buff Beams, so for once there are a lot of ships that can only use Beams, and other ships that could potentially use cannons are so sluggish they simply can\\u0026#39;t move/turn fast enough to keep up and second it\\u0026#39;s not that great of an experience when you enter a STF and everything is dead in seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been on both sides nuke everything with my cannons before the rest of the team had a chance to do anything and I have seen the other side being the 5th wheel on the car.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAt this point what can be done:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIncrease the base damage of Beams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReduce the global cooldown of FAW to 15 seconds\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlter Redirecting Arrays so the duration increase is reduced by maybe 50% but is not depending on taking constant damage.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(I know this is very unlikely)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbfv6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bridgern\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwbfv6/the_growing_gab_between_beams_and_cannons/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwbfv6/the_growing_gab_between_beams_and_cannons/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559572997.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test avoid 401\", \"author_fullname\": \"t2_gbhji\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testagain3\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bw86r0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559578081.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest avoid 401\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw86r0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"erebusmaster\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bw86r0/testagain3/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559549281.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_teik0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"X5xjg5755\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 77, \"hide_score\": false, \"name\": \"t3_bw5s73\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_240?source=fallback\", \"height\": 234, \"width\": 426, \"scrubber_media_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_96\", \"dash_url\": \"https://v.redd.it/s7j0qhnb32231/DASHPlaylist.mpd\", \"duration\": 19, \"hls_url\": \"https://v.redd.it/s7j0qhnb32231/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UgBdgvQL7CGZ0x20Wf7IMOnF3wkO1xtpNXL1W4skdSE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559559448.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?format=pjpg\\u0026auto=webp\\u0026s=8f3632625940d92614b86de3baa00b4e513e4ca1\", \"width\": 640, \"height\": 352}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=9cd6401c64efd76cdecb4102c7eb0c424fe3dc67\", \"width\": 108, \"height\": 59}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=ecbb4c746658195f9309c3633bf1afb403d5f8d0\", \"width\": 216, \"height\": 118}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=e8f6509d25875f11e236b6291f30fb78f2650b85\", \"width\": 320, \"height\": 176}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=640\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=22a48248e037066d331290b3d7364be1a7615e04\", \"width\": 640, \"height\": 352}], \"variants\": {}, \"id\": \"-8_XkWX0CM_gb4MCXRpMpYFxNStsuDQsz1Bh8NYJiD0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw5s73\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ShiftyRider\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bw5s73/x5xjg5755/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/s7j0qhnb32231\", \"subreddit_subscribers\": 709, \"created_utc\": 1559530648.0, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_240?source=fallback\", \"height\": 234, \"width\": 426, \"scrubber_media_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_96\", \"dash_url\": \"https://v.redd.it/s7j0qhnb32231/DASHPlaylist.mpd\", \"duration\": 19, \"hls_url\": \"https://v.redd.it/s7j0qhnb32231/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_rpmhm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"whoaaa does the link work\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bvzhmk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/iTnjKpbA4mac1jgFlLry3EAicfoVm_TDGlxj83mJerc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559523455.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gifyourgame.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?auto=webp\\u0026s=11f7e16039a632def2a5529d21aa1417c31b3b23\", \"width\": 448, \"height\": 252}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8f2b73431c3a3affc064af6e24a3b5b2f276f220\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d32ebeb37a2315a6fd90ca7d96bfd47b34bd4dfb\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3b6b217ff52246acb0e9a98b30d81afaa91d415b\", \"width\": 320, \"height\": 180}], \"variants\": {}, \"id\": \"Yl6MCedx3BkJMCf4V29laFNcXVd7gNJz8-4LknIKiZg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvzhmk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"snowguy13\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvzhmk/whoaaa_does_the_link_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.gifyourgame.com/ComposedBalmyQuale\", \"subreddit_subscribers\": 709, \"created_utc\": 1559494655.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Defesa do Botafogo\\n\\n\\u003EA defesa do Botafogo apresentou imagens de v\\u00eddeo ao Tribunal que comprovariam que o \\u00e1rbitro autorizou o rein\\u00edcio da partida antes de ser chamado pelo VAR para mudar sua decis\\u00e3o. E por j\\u00e1 ter reiniciado o jogo, ele n\\u00e3o poderia mais voltar atr\\u00e1s e marcar o p\\u00eanalti contra o Botafogo.\\n\\nDefesa da CBF\\n\\n\\u003EAs imagens mostram que o \\u00e1rbitro pode sim ter induzido o rein\\u00edcio ao abaixar o bra\\u00e7o que indicava tiro livre indireto e ao correr na dire\\u00e7\\u00e3o do meio campo.\\n\\n\\u003EO problema \\u00e9 que as regras do jogo, as mesmas que o Botafogo cita para sustentar sua den\\u00fancia, estabelecem que o uso do apito \\u00e9 necess\\u00e1rio para reiniciar o jogo ap\\u00f3s um cart\\u00e3o amarelo ou vermelho.\", \"author_fullname\": \"t2_itdhw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvz153\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559520978.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDefesa do Botafogo\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA defesa do Botafogo apresentou imagens de v\\u00eddeo ao Tribunal que comprovariam que o \\u00e1rbitro autorizou o rein\\u00edcio da partida antes de ser chamado pelo VAR para mudar sua decis\\u00e3o. E por j\\u00e1 ter reiniciado o jogo, ele n\\u00e3o poderia mais voltar atr\\u00e1s e marcar o p\\u00eanalti contra o Botafogo.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EDefesa da CBF\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAs imagens mostram que o \\u00e1rbitro pode sim ter induzido o rein\\u00edcio ao abaixar o bra\\u00e7o que indicava tiro livre indireto e ao correr na dire\\u00e7\\u00e3o do meio campo.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EO problema \\u00e9 que as regras do jogo, as mesmas que o Botafogo cita para sustentar sua den\\u00fancia, estabelecem que o uso do apito \\u00e9 necess\\u00e1rio para reiniciar o jogo ap\\u00f3s um cart\\u00e3o amarelo ou vermelho.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvz153\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"heronb\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvz153/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvz153/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559492178.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\[test.\\\\]\\\\[[https://www.youtube.com/watch?v=bV87CcSYqdY](https://www.youtube.com/watch?v=bV87CcSYqdY)\\\\]\", \"author_fullname\": \"t2_biesn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvks18\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559424409.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[test.][\\u003Ca href=\\\"https://www.youtube.com/watch?v=bV87CcSYqdY\\\"\\u003Ehttps://www.youtube.com/watch?v=bV87CcSYqdY\\u003C/a\\u003E]\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?auto=webp\\u0026s=4fcf18ab1d69228f991ceb9d9f5606e2386868fb\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3bb1140dbbc2d30590d93de9a8b7230bd25bf14a\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5eb48232b460293d9b5be807983a1aea3f5d2918\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ab14b38064578527c909effc6801637092d4e28f\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"qgPzrYjBE0VHRhxPsGYR8V92NeWVLuVmSZC7vhukjek\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvks18\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dramaticablacka\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvks18/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvks18/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559395609.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"My Ryzentosh is currently very stable, with the only 'non-workers' being iMessage, Siri, FaceTime and sort of Handoff (only works one way).\\n\\n\\u0026#x200B;\\n\\nAnyhow, regarding the issue I described the title, two settings in System Preferences, namely:\\n\\n\\u0026#x200B;\\n\\n1. **Find my Mac** under the iCloud tab\\n2. **Allow guest user to use this computer** under the Users \\u0026 Groups tab\\n\\n\\u0026#x200B;\\n\\nalways get reset to their defaults after a restart, or powering up after a full shutdown. The 'Find my Mac' option always gets unchecked and 'Allow guest user to use this computer' gets checked.\\n\\n\\u0026#x200B;\\n\\nI would like to keep the Find my Mac setting permanently on and to keep the guest account permanently off. Is there a way I can achieve this?\\n\\n\\u0026#x200B;\\n\\nAny help is appreciated, specs are summed up in the table below. \\ud83d\\udda5\\ud83d\\udda5\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n|**CPU**|AMD Ryzen 1800x|\\n|:-:|:-:|\\n|**Motherboard**|ASUS Crosshair VI Hero|\\n|**GPU**|Zotac Nvidia gtx 1070 (reference cooler)|\\n|**Memory**|16gb - 2x Corsair dominator platinum 8gb 3200mhz|\\n|**OS install drive**|Crucial MX500 250gb SSD|\\n|**Wifi \\u0026 Bluetooth**|iMac A1419BCM94360CD card with PCI-e adapter|\", \"author_fullname\": \"t2_ttqmp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Settings under System Preferences get rest after shutdown \\u0026 restarts\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvk747\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559391772.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559420174.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy Ryzentosh is currently very stable, with the only \\u0026#39;non-workers\\u0026#39; being iMessage, Siri, FaceTime and sort of Handoff (only works one way).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyhow, regarding the issue I described the title, two settings in System Preferences, namely:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFind my Mac\\u003C/strong\\u003E under the iCloud tab\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EAllow guest user to use this computer\\u003C/strong\\u003E under the Users \\u0026amp; Groups tab\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealways get reset to their defaults after a restart, or powering up after a full shutdown. The \\u0026#39;Find my Mac\\u0026#39; option always gets unchecked and \\u0026#39;Allow guest user to use this computer\\u0026#39; gets checked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to keep the Find my Mac setting permanently on and to keep the guest account permanently off. Is there a way I can achieve this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help is appreciated, specs are summed up in the table below. \\ud83d\\udda5\\ud83d\\udda5\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAMD Ryzen 1800x\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EASUS Crosshair VI Hero\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EGPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EZotac Nvidia gtx 1070 (reference cooler)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16gb - 2x Corsair dominator platinum 8gb 3200mhz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EOS install drive\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECrucial MX500 250gb SSD\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EWifi \\u0026amp; Bluetooth\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EiMac A1419BCM94360CD card with PCI-e adapter\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvk747\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Pepi28t-50\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvk747/settings_under_system_preferences_get_rest_after/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvk747/settings_under_system_preferences_get_rest_after/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559391374.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1141dc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Graphic found in a 2015 Terra Prime preview is the same as the ones around Area 18\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bvf8q3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit) GIF by @robotdude on Gfycat. Discover more starcitizen GIFs on Gfycat\", \"title\": \"Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit)\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ActualRightColt-size_restricted.gif\", \"thumbnail_height\": 250}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bvf8q3\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/c9_Wg6yf03hoBaNzKW8V4C6c3LjGbX6dNXDj3mUHy7c.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559379402.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gfycat.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?format=png8\\u0026s=c0569ed9f587376e57d01e8ef5ba86d518df8771\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=3ccb8ac692e06a59918fb1799b6990e338172f5f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=16d097c9fe9c24465632bcd6e014f66b8b1bd2fa\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=d46c61ee71e7f625e6f8ca58551a1b74847abe98\", \"width\": 320, \"height\": 179}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?s=634e3b5adfe3dcaef794e3b30a8b35216951ab36\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026crop=smart\\u0026s=c163952d7527278194216f9845477ed70ede7fca\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026crop=smart\\u0026s=f3ef9b10b9219bffbead65215e7f8a4949f67aba\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026crop=smart\\u0026s=04ce94a6ab48fe49f6b9265bc3583d2f18cbe921\", \"width\": 320, \"height\": 179}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?format=mp4\\u0026s=7a2fa61a333d02e104ffc485e595b9f04824ea67\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026format=mp4\\u0026s=b008d417dc5bc1f2f9203612293cd38c9f98dade\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026format=mp4\\u0026s=2d9f8c04c8ab09d0abdc59a8ea407b593d82ad82\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026format=mp4\\u0026s=2ac9548358af384cf7bf04397f61fea396a9bda5\", \"width\": 320, \"height\": 179}]}}, \"id\": \"OA1SrhwRQdwHUJgo4zOwQTEZegw59-SLQj-ZypHdhoM\"}], \"reddit_video_preview\": {\"fallback_url\": \"https://v.redd.it/oc4537uf8n131/DASH_360\", \"height\": 360, \"width\": 640, \"scrubber_media_url\": \"https://v.redd.it/oc4537uf8n131/DASH_96\", \"dash_url\": \"https://v.redd.it/oc4537uf8n131/DASHPlaylist.mpd\", \"duration\": 9, \"hls_url\": \"https://v.redd.it/oc4537uf8n131/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvf8q3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ehriqhck\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvf8q3/graphic_found_in_a_2015_terra_prime_preview_is/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://gfycat.com/actualrightcolt\", \"subreddit_subscribers\": 709, \"created_utc\": 1559350602.0, \"media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit) GIF by @robotdude on Gfycat. Discover more starcitizen GIFs on Gfycat\", \"title\": \"Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit)\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ActualRightColt-size_restricted.gif\", \"thumbnail_height\": 250}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Title** \\nText\\n\\n\\u0026nbsp;\\n\\n**Title** \\nText\", \"author_fullname\": \"t2_16lvip\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvd605\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559366978.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ETitle\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nText\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETitle\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nText\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvd605\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CT-24601\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvd605/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvd605/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559338178.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"So I've noticed that when I pressed TAB to view the teams, it also says a lot about the MMR of the players in the match. There are a couple of rules though, before figuring out who has the lowest and highest MMR. The positioning of the portrait is based on MMR, far left being the lowest rated and far right being highest rated.\\n\\n---\\n\\n# Rule #1: You are always at the bottom left.\\n\\nThis one is pretty simple. No matter what, you will always be on the bottom left when you press TAB to view the teams. [I drew it out for you, in case you want to see my beautiful art.](https://i.imgur.com/IETyq6l.jpg) Because of this, you cannot tell whether you are the lowest or highest MMR on your team.\\n\\n---\\n\\n# Rule #2: Groups are to the right, and ordered alphabetically.\\n\\nSpeaks for itself, but groups of any sizes are placed to the far right and are organized alphabetically. The smaller the group, the easier it is for you to determine who has the lowest/highest MMR on that team. [Here's my drawing as an example for a duo queue.](https://i.imgur.com/PU1X5G4.jpg)\\n\\nAlso I should clarify that it's very possible that one of the players in the duo can have the highest or lowest MMR, but since groups are always to the right and alphabetically, it's impossible to tell if which group member has a higher or lower MMR.\\n\\n\\u0026nbsp;\\n\\n[In this screenshot, you can see the enemy team is a 6-group and is organized alphabetically.](https://i.imgur.com/p7nTqmK.png) You cannot determine who has the highest or lowest MMR from this 6-stack.\\n\\n---\\n\\n#### All solo queue.\\n\\nIf there are no groups, then seeing who has the highest rated MMR on both teams is easier. Simply look left to right to see from lowest to highest MMR on a team. Do keep in mind that since you are always positioned bottom left, you cannot tell what MMR you are, only your teammates. However, you can find out by asking the highest rated MMR player on your team where you are positioned on their screen, and that will help you figure out if where you stand in your team. [Another drawing.](https://i.imgur.com/bMIQr7D.jpg)\\n\\n---\\n\\n#### Decayed Accounts\\n\\nThe positioning of the portraits does not take into account the SR of the person, but the MMR. For instance, you can have a player that is around 4.4k MMR, but decayed to Masters. In a 4.1k average game, it will position this \\\"Masters\\\" player above GM's.\\n\\n\\nAn example of this is [this screenshot.](https://i.imgur.com/c4yrmNB.jpg) The player Valentine had decayed but is still positioned higher due to having a higher MMR. I only have [this clip](https://clips.twitch.tv/SoftDoubtfulFriseePrimeMe) that he explains that he hasn't played in a while (which would hint at him being decayed). If any of you can find any extra examples of decayed accounts and their portraits positioning, then share it please! I know it's a thing but I don't have much to show.\\n\\n---\\n\\nAlso, if you leave and rejoin a competitive match, the positioning of all portraits gets messed up for some reason. Not sure why, but that's a thing.\\n\\n---\\n\\n[Last example](https://i.imgur.com/NZJQQgo.jpg) On the enemy team, you can see that groups ignore MMR and are placed to the right and are alphabetically organized. It would appear that Pigeon would have the highest MMR on the enemy team (I'm taking a guess that the duo isn't decayed.)\\n\\n\\nOn the friendly team, the Masters players are on the left and it's safe to say that those aren't decayed accounts either. Neziwi is positioned to have a higher MMR out of the three and they are Grandmaster. Then of course the duo ignored the MMR rule and is set far right, however it would be safe to say that Zerg would be the highest rated MMR. If you are Dino in this scenario, you'd have to ask other teammates where you're positioned when they press TAB to figure out where you stand on your team.\\n\\n---\\n\\nHope this wasn't confusing, I suck at explaining things and well I always wanted to share this.\", \"author_fullname\": \"t2_3v8bc9yn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"title\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvbjmw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559358317.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I\\u0026#39;ve noticed that when I pressed TAB to view the teams, it also says a lot about the MMR of the players in the match. There are a couple of rules though, before figuring out who has the lowest and highest MMR. The positioning of the portrait is based on MMR, far left being the lowest rated and far right being highest rated.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ERule #1: You are always at the bottom left.\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EThis one is pretty simple. No matter what, you will always be on the bottom left when you press TAB to view the teams. \\u003Ca href=\\\"https://i.imgur.com/IETyq6l.jpg\\\"\\u003EI drew it out for you, in case you want to see my beautiful art.\\u003C/a\\u003E Because of this, you cannot tell whether you are the lowest or highest MMR on your team.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ERule #2: Groups are to the right, and ordered alphabetically.\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ESpeaks for itself, but groups of any sizes are placed to the far right and are organized alphabetically. The smaller the group, the easier it is for you to determine who has the lowest/highest MMR on that team. \\u003Ca href=\\\"https://i.imgur.com/PU1X5G4.jpg\\\"\\u003EHere\\u0026#39;s my drawing as an example for a duo queue.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso I should clarify that it\\u0026#39;s very possible that one of the players in the duo can have the highest or lowest MMR, but since groups are always to the right and alphabetically, it\\u0026#39;s impossible to tell if which group member has a higher or lower MMR.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/p7nTqmK.png\\\"\\u003EIn this screenshot, you can see the enemy team is a 6-group and is organized alphabetically.\\u003C/a\\u003E You cannot determine who has the highest or lowest MMR from this 6-stack.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EAll solo queue.\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003EIf there are no groups, then seeing who has the highest rated MMR on both teams is easier. Simply look left to right to see from lowest to highest MMR on a team. Do keep in mind that since you are always positioned bottom left, you cannot tell what MMR you are, only your teammates. However, you can find out by asking the highest rated MMR player on your team where you are positioned on their screen, and that will help you figure out if where you stand in your team. \\u003Ca href=\\\"https://i.imgur.com/bMIQr7D.jpg\\\"\\u003EAnother drawing.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EDecayed Accounts\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003EThe positioning of the portraits does not take into account the SR of the person, but the MMR. For instance, you can have a player that is around 4.4k MMR, but decayed to Masters. In a 4.1k average game, it will position this \\u0026quot;Masters\\u0026quot; player above GM\\u0026#39;s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn example of this is \\u003Ca href=\\\"https://i.imgur.com/c4yrmNB.jpg\\\"\\u003Ethis screenshot.\\u003C/a\\u003E The player Valentine had decayed but is still positioned higher due to having a higher MMR. I only have \\u003Ca href=\\\"https://clips.twitch.tv/SoftDoubtfulFriseePrimeMe\\\"\\u003Ethis clip\\u003C/a\\u003E that he explains that he hasn\\u0026#39;t played in a while (which would hint at him being decayed). If any of you can find any extra examples of decayed accounts and their portraits positioning, then share it please! I know it\\u0026#39;s a thing but I don\\u0026#39;t have much to show.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EAlso, if you leave and rejoin a competitive match, the positioning of all portraits gets messed up for some reason. Not sure why, but that\\u0026#39;s a thing.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/NZJQQgo.jpg\\\"\\u003ELast example\\u003C/a\\u003E On the enemy team, you can see that groups ignore MMR and are placed to the right and are alphabetically organized. It would appear that Pigeon would have the highest MMR on the enemy team (I\\u0026#39;m taking a guess that the duo isn\\u0026#39;t decayed.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the friendly team, the Masters players are on the left and it\\u0026#39;s safe to say that those aren\\u0026#39;t decayed accounts either. Neziwi is positioned to have a higher MMR out of the three and they are Grandmaster. Then of course the duo ignored the MMR rule and is set far right, however it would be safe to say that Zerg would be the highest rated MMR. If you are Dino in this scenario, you\\u0026#39;d have to ask other teammates where you\\u0026#39;re positioned when they press TAB to figure out where you stand on your team.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EHope this wasn\\u0026#39;t confusing, I suck at explaining things and well I always wanted to share this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?auto=webp\\u0026s=b55948b8997a97d3a4d66b2c1107e618805eefb3\", \"width\": 1368, \"height\": 672}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bd56a360da0819da36aa8dbb90b7c0c1e0bef366\", \"width\": 108, \"height\": 53}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=af8d8a88bfb68ba72a21b510ad22ecdabdcb39f8\", \"width\": 216, \"height\": 106}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=301a2df728199828321008fe18ecc7ff7a66e9cf\", \"width\": 320, \"height\": 157}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d043fabb01f80aafb92f35a196b837f4bec18e6c\", \"width\": 640, \"height\": 314}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=c5b40409bf6a7dbf0368810654efb27d971fbfa4\", \"width\": 960, \"height\": 471}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9103804bad1528f461cb8a9ffca3352914282dd3\", \"width\": 1080, \"height\": 530}], \"variants\": {}, \"id\": \"ZROe6eIaHJYbMLtqMVopuCGne3uCW67NGQzR28nxfLg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvbjmw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ieatwatermelon3\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvbjmw/title/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvbjmw/title/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559329517.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_j01kt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"table test2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv5tfz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1560163613.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559327046.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5tfz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fighterace00\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv5tfz/table_test2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv5tfz/table_test2/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559298246.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"1.\\\\*\\\\***Strategy name**: Putting this dog on Ice\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n2. \\\\*\\\\***Boss**: Ugallu D350\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n3. \\\\*\\\\***Describe your Strategy**:\\\\*\\\\* \\\\`Ice Team\\\\` / \\\\`Off-Realm\\\\`\\n\\n\\u0026#x200B;\\n\\n4. \\\\*\\\\*\\\\***Insight!**:\\\\*\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\* Laguna provides Imperils and Chain. W-MCH + LMR sets Sora up for the beatdown. 6 stack Imperil + Snow USB2 = 19999 SSS + 10kish Blitzes, capped Icy Offerings and Icicle Rushes, even with 3 off realmers.\\n\\n\\u0026#x200B;\\n\\n\\\\* Sora does Sora things\\n\\n\\u0026#x200B;\\n\\n\\\\* Elarra dances all of his buffs away and USBs to counter poison for Snow's BSB.\\n\\n\\u0026#x200B;\\n\\n\\\\* Snow USB2s then BSBs for Last Stand. Could've used USB1 for Radiant shield in hindsight since Regenga helped mitigate deaths. Icicle Rush in between for chain.\\n\\n\\u0026#x200B;\\n\\n\\\\* Vanille Protectgas then BSBs. LMR1 buffs her heals while LMR2 debuffs doge.\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***Holy Trinity casts**:\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\* **Wal**l: 1\\n\\n\\u0026#x200B;\\n\\n\\\\* **Medica**: Lots\\n\\n\\u0026#x200B;\\n\\n\\\\* **Hastega**: 1\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***S/L count / Medals lost**: 0\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***Time**: 29.32\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n|Hero, dive|Ability 1||Ability 2|RM+LMR|SB(-)|\\n\\n|:-|:-|:-|:-|:-|\\n\\n|Snow, 5, 100|Banishing Strike R3|Icicle Rush R4|DMT, LMR1, LM1|USB2(1), BSB(1)|\\n\\n|Laguna, 5, 103|Icy Offering R3|Frost Offering R4|Ace Striker, LM2, LMR|Chain(1), SSB(1)|\\n\\n|Sora, 5, 110|Snowspell Strike R4|Snowspell Strike R3|Orphaned Cub, LMR, LM2(Ice)|AASB(1), AOSB(1)|\\n\\n|Vanille, 4, 10|Curaja R4|Protectga R3|MM, LMR1, LMR2|BSB(2)|\\n\\n|Elarra, 5, 120|Multi Break R2|Enfeebling Jitterbug R4|Battleforged, LM2, LM1|USB(3+)|\\n\\n\\u0026#x200B;\\n\\n|main|sub1|sub2|sub3|sub4|\\n|:-|:-|:-|:-|:-|\\n|Mateus|Famfrit|Manticore|Madeen|Madeen|\\n|Damp Air10+Def15|BWard8+HPBoon8|Ice+15x2|ATK20x2|BWard8+SWard8|\\n\\n\\\\*\\\\*\\\\*\", \"author_fullname\": \"t2_xltvv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv4dok\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559287428.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559315081.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E1.**\\u003Cstrong\\u003EStrategy name\\u003C/strong\\u003E: Putting this dog on Ice**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E**\\u003Cstrong\\u003EBoss\\u003C/strong\\u003E: Ugallu D350**\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E**\\u003Cstrong\\u003EDescribe your Strategy\\u003C/strong\\u003E:** `Ice Team` / `Off-Realm`\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E***\\u003Cstrong\\u003EInsight!\\u003C/strong\\u003E:***\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Laguna provides Imperils and Chain. W-MCH + LMR sets Sora up for the beatdown. 6 stack Imperil + Snow USB2 = 19999 SSS + 10kish Blitzes, capped Icy Offerings and Icicle Rushes, even with 3 off realmers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Sora does Sora things\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Elarra dances all of his buffs away and USBs to counter poison for Snow\\u0026#39;s BSB.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Snow USB2s then BSBs for Last Stand. Could\\u0026#39;ve used USB1 for Radiant shield in hindsight since Regenga helped mitigate deaths. Icicle Rush in between for chain.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Vanille Protectgas then BSBs. LMR1 buffs her heals while LMR2 debuffs doge.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003EHoly Trinity casts\\u003C/strong\\u003E:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EWal\\u003C/strong\\u003El: 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EMedica\\u003C/strong\\u003E: Lots\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EHastega\\u003C/strong\\u003E: 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003ES/L count / Medals lost\\u003C/strong\\u003E: 0**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003ETime\\u003C/strong\\u003E: 29.32**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Hero, dive|Ability 1||Ability 2|RM+LMR|SB(-)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|:-|:-|:-|:-|:-|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Snow, 5, 100|Banishing Strike R3|Icicle Rush R4|DMT, LMR1, LM1|USB2(1), BSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Laguna, 5, 103|Icy Offering R3|Frost Offering R4|Ace Striker, LM2, LMR|Chain(1), SSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Sora, 5, 110|Snowspell Strike R4|Snowspell Strike R3|Orphaned Cub, LMR, LM2(Ice)|AASB(1), AOSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Vanille, 4, 10|Curaja R4|Protectga R3|MM, LMR1, LMR2|BSB(2)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Elarra, 5, 120|Multi Break R2|Enfeebling Jitterbug R4|Battleforged, LM2, LM1|USB(3+)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Emain\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub1\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub2\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub3\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub4\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMateus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFamfrit\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EManticore\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMadeen\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMadeen\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDamp Air10+Def15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBWard8+HPBoon8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EIce+15x2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EATK20x2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBWard8+SWard8\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv4dok\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tenryou\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv4dok/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv4dok/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559286281.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test2\\n\\n\\u0026#x200B;\\n\\n[test2](https://i.redd.it/gbjaof51mh131.jpg)\", \"author_fullname\": \"t2_mjiuof2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test1\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 92, \"hide_score\": false, \"media_metadata\": {\"gbjaof51mh131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1848, \"x\": 2784, \"u\": \"https://i.redd.it/gbjaof51mh131.jpg\"}, \"m\": \"image/jpg\", \"id\": \"gbjaof51mh131\"}}, \"name\": \"t3_bv3wh8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/G-x_-fkvlWPBquR_7ko3ewYcPtnUtxr0oHTB-1c3rZs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559311347.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/gbjaof51mh131.jpg\\\"\\u003Etest2\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv3wh8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hanzeedent69\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv3wh8/test1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv3wh8/test1/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559282547.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[SCP-3790](http://www.scp-wiki.net/scp-3790) - Department of Abnormalities\\n\\nAUTHOR: Croquembouche, djkaktus\\n\\n***\\n\\n3790 is a fascinating scip, ostensibly a minimalistic Series 1 entry wrapped in the modernity of a Series 4 one, ending in an absolute masterclass of an atmospheric piece that tells a story of hidden secrets, but never truly gives us its conclusion.\\n\\nAnyway, let's get on with this.\\n\\n***\\n**PART 1 - OVERVIEW**\\n\\n\\u003EObject Class: Safe\\n\\nThis tell us that this SCP is easy to contain, just put a lock on it and leave it alone. *wink wink*\\n\\u003ESpecial Containment Procedures: The door into the stairwell leading to SCP-3790 is to be padlocked at all times, and a single guard is to be posted nearby to ensure no individuals enter SCP-3790.\\n\\n\\u003EBy order of the Overseer Council, entry into SCP-3790 is forbidden.\\n\\nForbidden entry, huh? That just makes all the more enticing, you know.\\n\\u003EDescription: SCP-3790 is a structure located beneath the abandoned Port Superior Canning Company warehouse in London, United Kingdom. The only access to this space is down a narrow stairwell that ends in a short black door. The door is free of identifying markings save for a small metal placard just above the door handle that reads \\\"SCP Foundation Department of Abnormalities\\\".\\n\\nSCP Foundation Department of Abnormalities? Implying that it\\u2019s a branch that specifically deal with abnormalities alone? Isn\\u2019t that what the whole of the SCP Foundation\\u2019s job? Hmm\\u2026\\n\\nWell, there are two distinct possibilities I can think of:\\n\\n1. It\\u2019s an outdated relic of a younger, less experienced Foundation whose duty didn\\u2019t concern anomalies only, and has since been lost to time, or\\n\\n2. It\\u2019s a hidden department operation in secret, not unlike the Antimemetics Department, which deals with things so far outside the norm that not even the main Foundation can deal with.\\n\\nEither or. Perhaps both.\\n\\nThe rest of the file has been locked away by the Overseer Council. Being locked away seems to be a recurring theme, among other things. Let\\u2019s see what the Council has to hide.\\n\\n\\u003E While there is evidence of prior human activity within SCP-3790, the structure appears to have been abandoned for a considerable amount of time.\\n\\n\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists. No information regarding the structure has been located.\\n\\nBeen abandoned, or sealed off and forgotten? More questions, but no answer.\\n\\n**PART 2 - THE RUNDOWN**\\n\\n*Disclaimer: From this point onwards, I may not be able to concretely point out any real connections, nor can I ensure the ones I do are correct. Proceed with skepticism.*\\n\\nLet\\u2019s start with **Level One**:\\n\\u003ERoom One\\n\\n\\n\\u003EPlacard Name: Vivaldi\\n\\n\\u003EDescription: Chamber is empty aside from a violin propped in the far corner of the room. The bow is broken on the ground in front of it.\\n\\nAppears to be Antonio Vivaldi\\u2019s violin. Mr. Vivaldi was a famous composer, but his compositions became outmoded later in life, Vivaldi eventually came into impoverishment and died in relative obscurity.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: No placard\\n\\n\\u003EDescription: Chamber is empty.\\n\\nCould be a nod to [SCP-3930](http://www.scp-wiki.net/scp-3930), the one that doesn\\u2019t exist and if you enter, you don\\u2019t exist either. (Might also be a reference to [SCP-1935](http://www.scp-wiki.net/scp-1935) \\u201cAn Empty Chamber, but that\\u2019s shaky at best.)\\n\\n**Level Two**:\\n\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: The Crying Boy\\n\\n\\u003EDescription: A canvas is set up in the room. A sheet is draped over it.\\n\\nThe Crying Boy is famed as a cursed painting usually found undamaged amidst the ruins of burned houses. Later, more scientific analysis revealed the explanation behind this mystery, and this myth fell out of vogue.\\n\\n**Level Three**:\\n\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: The Infinite Cold\\n\\n\\u003EDescription: The floor of the chamber is covered with a thin layer of water. The interior of the room seems to be considerably larger than its exterior physical dimensions would allow.\\n\\nSeems to be a reference to [SCP-3799](http://www.scp-wiki.net/scp-3799), in which the event in question was basically retconned to no longer happen, the water implying that it melted. In another, more meta sense, it might refer to the ex-SCP-2318 \\u201cAwake in the Infinite Cold\\u201d, which the author djkaktus himself deleted out of existence.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: World Without Man\\n\\n\\u003EDescription: Chamber is empty.\\n\\n[SCP-804](http://www.scp-wiki.net/scp-804), the object that wants to delete all of humanity. The chamber being empty is interesting, though.\\n\\n**Level Four**:\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: The Morning Star\\n\\n\\u003EDescription: A rusted sword hangs on a rack in the back of the room. The door to the chamber feels warm.\\n\\nAppears to be Lucifer\\u2019s blazing sword from djkaktus\\u2019s Proposal III. Considering the story behind it, the O5 Council and the Administrator, this being a secret that they want to lock away probably belongs here.\\n\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: Wormwood\\n\\n\\u003EDescription: Viewport is obscured.\\n\\n[SCP-4008](http://www.scp-wiki.net/scp-4008) \\u201cWormwood\\u201d \\u2013 Seeds that makes people forget.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: Harmonia's Necklace\\n\\n\\u003EDescription: A simple golden necklace hangs on a post in the back of the room, which is lit by a single tall candle. The chamber does not appear to have a floor.\\n\\nThe mythical Necklace of Harmonia that grants woman eternal youth. Not sure how it ended up here.\\n\\n\\u003ERoom Four\\n\\n\\u003EPlacard Name: No placard\\n\\n\\u003EDescription: Chamber is unlit. Individuals who look into this room feel a lingering sense of dread afterward.\\n\\n[SCP-2740](http://www.scp-wiki.net/scp-2740). The unlit attic that you can\\u2019t never truly seems to grasp, and has a habit of retconning people out of existence.\\n\\n**Level Five**:\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: Tool marks indicate that placard has been pried off. The word \\\"hello\\\" is scratched into the metal where the placard should be.\\n\\n\\u003EDescription: Sliding panel is welded shut.\\n\\nSounds like [SCP-3935](http://www.scp-wiki.net/scp-3935). There\\u2019s already an excellent declass of it here, but I\\u2019ll quote this: \\u201cthe spiral of dark secrets *only goes deeper and deeper, hidden underground, buried to be forgotten*, with all the suffering still present, like the endless schools going deeper and deeper.\\\"\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: Channel 55\\n\\n\\u003EDescription: A small, CRT television sits in the center of the room. Something is playing on the screen, but a dark cloth has been draped over the top of it.\\n\\nMight be a reference to SCP-055 and SCP-2998? [SCP-2998](http://www.scp-wiki.net/scp-2998) is about an anomalous (TV) signal that contained alien which eventually took over the world. To reset it, SCP-055 and SCP-579 were used (as per Roget's Proposal) to reverse everything, and all knowledge of SCP-2998\\u2019s full extent were purged to prevent another repeat.\\n\\n**Level Six**:\\n\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: Mr. Silence\\n\\n\\u003EDescription: A tall, black, wooden box rests against the back wall. It is bound in chains and locks. A bright purple \\\"W\\\" is emblazoned on its front in gold trim.\\n\\n[A tale.] (http://www.scp-wiki.net/to-never-again-see-the-light-of-day)\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: \\u00d6tzi\\n\\n\\u003EDescription: A layer of ice covers the viewport and obscures visibility. A dark shape can be seen in the middle of the room, although no details can be distinguished.\\n\\nCould be referring to [SCP-2521](http://www.scp-wiki.net/scp-2521), if only because the description matches its image. An entity whose information cannot be spoken, and those who do are gone from this world.\\n\\n\\u003ERoom Four\\n\\n\\u003EPlacard Name: Apollyon's Crown\\n\\n\\u003EDescription: A silver lockbox rests on a table in the middle of the room. Notably, the exterior of the door is covered in scratch marks, as if by something trying to get into the chamber.\\n\\n[SCP-2317](http://www.scp-wiki.net/scp-2998). All its containment procedures boil down to 'stick their had in the sand, and hope for the best'. The O5 council made sure to keep virtually everyone in the dark about this thing, and the true SCP-2317 file remain secret to everyone but the topmost level.\\nCould also be referring to Tufto's Proposal, in which the foundation decides that the Scarlet King is no longer a threat, and ignore the underlying problem.\\n\\nAnd finally, **Level Seve**-\\n\\n\\u003E Although the opening to the seventh level is visible through the grated floor of the elevator, the lift mechanism appears to have been modified and can no longer access that floor.\\n\\nWell, ain\\u2019t that ominous.\\n\\n**PART 3 - HOW ABNORMAL**\\n\\nAs a personal observation, the chambers contain things that seems to share a general idea: They are that which we have forgotten or ignored, be it willfully, because we no longer find it fascinating, because we were made to forget, or because it no longer exist. Strangely enough, the Department of Abnormalities itself fits this criteria as well, considering:\\n\\n\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists.\\n\\nReading through SCP-3790, signs seems to point toward this being a coverup: No exploration log, no attempt to gain access to Level Seven, not even a cursory attempt to study whatever's being contained in here. \\n\\nFor something so blatantly called \\\"SCP Foundation Department of Abnormalities\\\", the Council sure seems eager to do the bare minimum of documenting it. Heck, I'm surprised thy even let us read this file at al-\\n\\n...Huh.\\n\\n**PART 4 - SECRETKEEPING**\\n\\nWhy do they let us read this file? Why not just restrict the whole thing to Clearance Level 5? Why go through the trouble of locking the rest of it but let someone know there exists an \\\"SCP Foundation Department of Abnormalities\\\" in the first place?\\n\\n*Because it's a hook.*\\n\\nIf the council deemed this thing dangerous this thing dangerous enough to lock away knowledge of its content, telling us its title seems almost counterproductive, and this file doesn't seem to classified either. In fact...\\n\\n\\u003ELock Overridden\\n\\nWe overrode the lock to gain access to the meat of 3790. Our curiosity got the better of us, and now we're exploring this abnormality of an article.\\n\\nRemember when I said \\\"More questions, but no answer.\\\"? This is what SCP-3790 is about. It's a place where secrets are put to rest, so far down that virtually no one knows what it is anymore. And that makes us ask questions, draws connections, grasping for answers that was made to never supposed to be discovered.\\n\\nUltimately, what this thing contains doesn't matter too much in the grand scheme of things. They're there as a bait to keep us digging for more, and by god, we *took* it.\\n\\n**CONCLUSION**\\n\\nI can not praise Croquembouche and djkaktus enough for writing an absolute masterclass of an article in such a way that draws everyone in, yet leaving a hole in the shape of closure, making the curious minds, both in-universe and out-, clamoring for answers.\\n\\nWhat is the Department of Abnormalities, and what resides on Level Seven? Only time can tell.\\n\\nAnd when that time comes, perhaps we will finally learn there\\u2019s a price to be paid for unearthing secrets that should never see the light of day again.\", \"author_fullname\": \"t2_2j4j6rg7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test dc\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv2mv5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559302648.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-3790\\\"\\u003ESCP-3790\\u003C/a\\u003E - Department of Abnormalities\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAUTHOR: Croquembouche, djkaktus\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E3790 is a fascinating scip, ostensibly a minimalistic Series 1 entry wrapped in the modernity of a Series 4 one, ending in an absolute masterclass of an atmospheric piece that tells a story of hidden secrets, but never truly gives us its conclusion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway, let\\u0026#39;s get on with this.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 1 - OVERVIEW\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EObject Class: Safe\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis tell us that this SCP is easy to contain, just put a lock on it and leave it alone. \\u003Cem\\u003Ewink wink\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESpecial Containment Procedures: The door into the stairwell leading to SCP-3790 is to be padlocked at all times, and a single guard is to be posted nearby to ensure no individuals enter SCP-3790.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy order of the Overseer Council, entry into SCP-3790 is forbidden.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EForbidden entry, huh? That just makes all the more enticing, you know.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDescription: SCP-3790 is a structure located beneath the abandoned Port Superior Canning Company warehouse in London, United Kingdom. The only access to this space is down a narrow stairwell that ends in a short black door. The door is free of identifying markings save for a small metal placard just above the door handle that reads \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESCP Foundation Department of Abnormalities? Implying that it\\u2019s a branch that specifically deal with abnormalities alone? Isn\\u2019t that what the whole of the SCP Foundation\\u2019s job? Hmm\\u2026\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, there are two distinct possibilities I can think of:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt\\u2019s an outdated relic of a younger, less experienced Foundation whose duty didn\\u2019t concern anomalies only, and has since been lost to time, or\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt\\u2019s a hidden department operation in secret, not unlike the Antimemetics Department, which deals with things so far outside the norm that not even the main Foundation can deal with.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EEither or. Perhaps both.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe rest of the file has been locked away by the Overseer Council. Being locked away seems to be a recurring theme, among other things. Let\\u2019s see what the Council has to hide.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWhile there is evidence of prior human activity within SCP-3790, the structure appears to have been abandoned for a considerable amount of time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists. No information regarding the structure has been located.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EBeen abandoned, or sealed off and forgotten? More questions, but no answer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 2 - THE RUNDOWN\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EDisclaimer: From this point onwards, I may not be able to concretely point out any real connections, nor can I ensure the ones I do are correct. Proceed with skepticism.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet\\u2019s start with \\u003Cstrong\\u003ELevel One\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Vivaldi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty aside from a violin propped in the far corner of the room. The bow is broken on the ground in front of it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAppears to be Antonio Vivaldi\\u2019s violin. Mr. Vivaldi was a famous composer, but his compositions became outmoded later in life, Vivaldi eventually came into impoverishment and died in relative obscurity.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: No placard\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECould be a nod to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3930\\\"\\u003ESCP-3930\\u003C/a\\u003E, the one that doesn\\u2019t exist and if you enter, you don\\u2019t exist either. (Might also be a reference to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-1935\\\"\\u003ESCP-1935\\u003C/a\\u003E \\u201cAn Empty Chamber, but that\\u2019s shaky at best.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Two\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Crying Boy\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A canvas is set up in the room. A sheet is draped over it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Crying Boy is famed as a cursed painting usually found undamaged amidst the ruins of burned houses. Later, more scientific analysis revealed the explanation behind this mystery, and this myth fell out of vogue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Three\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Infinite Cold\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: The floor of the chamber is covered with a thin layer of water. The interior of the room seems to be considerably larger than its exterior physical dimensions would allow.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESeems to be a reference to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3799\\\"\\u003ESCP-3799\\u003C/a\\u003E, in which the event in question was basically retconned to no longer happen, the water implying that it melted. In another, more meta sense, it might refer to the ex-SCP-2318 \\u201cAwake in the Infinite Cold\\u201d, which the author djkaktus himself deleted out of existence.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: World Without Man\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-804\\\"\\u003ESCP-804\\u003C/a\\u003E, the object that wants to delete all of humanity. The chamber being empty is interesting, though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Four\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Morning Star\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A rusted sword hangs on a rack in the back of the room. The door to the chamber feels warm.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAppears to be Lucifer\\u2019s blazing sword from djkaktus\\u2019s Proposal III. Considering the story behind it, the O5 Council and the Administrator, this being a secret that they want to lock away probably belongs here.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Wormwood\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Viewport is obscured.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-4008\\\"\\u003ESCP-4008\\u003C/a\\u003E \\u201cWormwood\\u201d \\u2013 Seeds that makes people forget.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Harmonia\\u0026#39;s Necklace\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A simple golden necklace hangs on a post in the back of the room, which is lit by a single tall candle. The chamber does not appear to have a floor.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe mythical Necklace of Harmonia that grants woman eternal youth. Not sure how it ended up here.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Four\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: No placard\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is unlit. Individuals who look into this room feel a lingering sense of dread afterward.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-2740\\\"\\u003ESCP-2740\\u003C/a\\u003E. The unlit attic that you can\\u2019t never truly seems to grasp, and has a habit of retconning people out of existence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Five\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Tool marks indicate that placard has been pried off. The word \\u0026quot;hello\\u0026quot; is scratched into the metal where the placard should be.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Sliding panel is welded shut.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESounds like \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3935\\\"\\u003ESCP-3935\\u003C/a\\u003E. There\\u2019s already an excellent declass of it here, but I\\u2019ll quote this: \\u201cthe spiral of dark secrets \\u003Cem\\u003Eonly goes deeper and deeper, hidden underground, buried to be forgotten\\u003C/em\\u003E, with all the suffering still present, like the endless schools going deeper and deeper.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Channel 55\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A small, CRT television sits in the center of the room. Something is playing on the screen, but a dark cloth has been draped over the top of it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMight be a reference to SCP-055 and SCP-2998? \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2998\\\"\\u003ESCP-2998\\u003C/a\\u003E is about an anomalous (TV) signal that contained alien which eventually took over the world. To reset it, SCP-055 and SCP-579 were used (as per Roget\\u0026#39;s Proposal) to reverse everything, and all knowledge of SCP-2998\\u2019s full extent were purged to prevent another repeat.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Six\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Mr. Silence\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A tall, black, wooden box rests against the back wall. It is bound in chains and locks. A bright purple \\u0026quot;W\\u0026quot; is emblazoned on its front in gold trim.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/to-never-again-see-the-light-of-day\\\"\\u003EA tale.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: \\u00d6tzi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A layer of ice covers the viewport and obscures visibility. A dark shape can be seen in the middle of the room, although no details can be distinguished.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECould be referring to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2521\\\"\\u003ESCP-2521\\u003C/a\\u003E, if only because the description matches its image. An entity whose information cannot be spoken, and those who do are gone from this world.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Four\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Apollyon\\u0026#39;s Crown\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A silver lockbox rests on a table in the middle of the room. Notably, the exterior of the door is covered in scratch marks, as if by something trying to get into the chamber.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-2998\\\"\\u003ESCP-2317\\u003C/a\\u003E. All its containment procedures boil down to \\u0026#39;stick their had in the sand, and hope for the best\\u0026#39;. The O5 council made sure to keep virtually everyone in the dark about this thing, and the true SCP-2317 file remain secret to everyone but the topmost level.\\nCould also be referring to Tufto\\u0026#39;s Proposal, in which the foundation decides that the Scarlet King is no longer a threat, and ignore the underlying problem.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd finally, \\u003Cstrong\\u003ELevel Seve\\u003C/strong\\u003E-\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAlthough the opening to the seventh level is visible through the grated floor of the elevator, the lift mechanism appears to have been modified and can no longer access that floor.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell, ain\\u2019t that ominous.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 3 - HOW ABNORMAL\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a personal observation, the chambers contain things that seems to share a general idea: They are that which we have forgotten or ignored, be it willfully, because we no longer find it fascinating, because we were made to forget, or because it no longer exist. Strangely enough, the Department of Abnormalities itself fits this criteria as well, considering:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EReading through SCP-3790, signs seems to point toward this being a coverup: No exploration log, no attempt to gain access to Level Seven, not even a cursory attempt to study whatever\\u0026#39;s being contained in here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor something so blatantly called \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot;, the Council sure seems eager to do the bare minimum of documenting it. Heck, I\\u0026#39;m surprised thy even let us read this file at al-\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...Huh.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 4 - SECRETKEEPING\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy do they let us read this file? Why not just restrict the whole thing to Clearance Level 5? Why go through the trouble of locking the rest of it but let someone know there exists an \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot; in the first place?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EBecause it\\u0026#39;s a hook.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the council deemed this thing dangerous this thing dangerous enough to lock away knowledge of its content, telling us its title seems almost counterproductive, and this file doesn\\u0026#39;t seem to classified either. In fact...\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ELock Overridden\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWe overrode the lock to gain access to the meat of 3790. Our curiosity got the better of us, and now we\\u0026#39;re exploring this abnormality of an article.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERemember when I said \\u0026quot;More questions, but no answer.\\u0026quot;? This is what SCP-3790 is about. It\\u0026#39;s a place where secrets are put to rest, so far down that virtually no one knows what it is anymore. And that makes us ask questions, draws connections, grasping for answers that was made to never supposed to be discovered.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUltimately, what this thing contains doesn\\u0026#39;t matter too much in the grand scheme of things. They\\u0026#39;re there as a bait to keep us digging for more, and by god, we \\u003Cem\\u003Etook\\u003C/em\\u003E it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECONCLUSION\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can not praise Croquembouche and djkaktus enough for writing an absolute masterclass of an article in such a way that draws everyone in, yet leaving a hole in the shape of closure, making the curious minds, both in-universe and out-, clamoring for answers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is the Department of Abnormalities, and what resides on Level Seven? Only time can tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd when that time comes, perhaps we will finally learn there\\u2019s a price to be paid for unearthing secrets that should never see the light of day again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?auto=webp\\u0026s=c819c19d942b726d0a2ff50cb74acbfff1e08a06\", \"width\": 1880, \"height\": 1253}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c2e24f32402052f314732b2536e0cc47089dcee3\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fbcce917a4186d2c4b6e3d9a8e33c2bd7a3a738f\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=61c8f923e42459533533af8ca93d4df3ee37b5e4\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f7154363e4a980a8daf17a79782c71f42a65b417\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e813d5635e53ece285115c875dd756c0acc4318b\", \"width\": 960, \"height\": 639}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d29b4e3ea4db162608c93db1eaf9d11936fdc172\", \"width\": 1080, \"height\": 719}], \"variants\": {}, \"id\": \"Qjpf9RWeib9EvmI2MPm7-BmVBDzqrMOowRjqJjf6c4g\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv2mv5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SYwaves\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559273848.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#Captain Details \\nCaptain Name\\u0026nbsp; | Dr. Jannick Carter\\u0026nbsp; | \\u0026nbsp; \\n--|--|-- \\nCaptain Career\\u0026nbsp; | Science\\u0026nbsp; | \\u0026nbsp; \\nCaptain Faction\\u0026nbsp; | Federation\\u0026nbsp; | \\u0026nbsp; \\nCaptain Race\\u0026nbsp; | Human\\u0026nbsp; | \\u0026nbsp; \\nPrimary Specialization\\u0026nbsp; | Temporal\\u0026nbsp; | \\u0026nbsp; \\nSecondary Specialization\\u0026nbsp; | Strategist\\u0026nbsp; | \\u0026nbsp; \\n#Space Skill Tree \\nRank\\u0026nbsp; | Engineering\\u0026nbsp; | \\u0026nbsp; | Science\\u0026nbsp; | \\u0026nbsp; | Tactical\\u0026nbsp; | \\u0026nbsp; | \\n--|--|--|--|--|--|-- \\nLieutenant\\u0026nbsp; | Improved Hull Restoration\\u0026nbsp; | Improved Hull Capacity\\u0026nbsp; | Improved Shield Restoration\\u0026nbsp; | Improved Shield Capacity\\u0026nbsp; | Improved Energy Weapon Training\\u0026nbsp; | Advanced Projectile Weapon Training\\u0026nbsp; \\nLt. Commander\\u0026nbsp; | Electro-Plasma System Flow\\u0026nbsp; | Advanced Impulse Expertise\\u0026nbsp; | Improved Control Expertise\\u0026nbsp; | Improved Drain Expertise\\u0026nbsp; | Targeting Expertise\\u0026nbsp; | Defensive Maneuvering\\u0026nbsp; \\n\\u0026nbsp; | Full Impulse Energy Shunt\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nCommander\\u0026nbsp; | Hull Plating\\u0026nbsp; | \\u0026nbsp; | Shield Regeneration\\u0026nbsp; | Shield Hardness\\u0026nbsp; | Improved Weapon Amplification\\u0026nbsp; | Improved Weapon Specialization\\u0026nbsp; \\nCaptain\\u0026nbsp; | Defensive Subsystem Tuning\\u0026nbsp; | Offensive Subsystem Tuning\\u0026nbsp; | Advanced Exotic Particle Generator\\u0026nbsp; | Advanced Long Range Targeting Sensors\\u0026nbsp; | Improved Hull Penetration\\u0026nbsp; | Improved Shield Weakening\\u0026nbsp; \\nAdmiral\\u0026nbsp; | Warp Core Potential\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | Warp Core Efficiency\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n1 Points Left\\u0026nbsp; | 14\\u0026nbsp; | \\u0026nbsp; | 16\\u0026nbsp; | \\u0026nbsp; | 15\\u0026nbsp; | \\u0026nbsp; \\n \\n#Space Skill Unlocks \\nPurchases\\u0026nbsp; | Engineering\\u0026nbsp; | Science\\u0026nbsp; | Tactical\\u0026nbsp; \\n--|--|--|-- \\n2\\u0026nbsp; | Hazard Emitters III\\u0026nbsp; | Science Team III\\u0026nbsp; | Tachyon Beam III\\u0026nbsp; \\n5\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n7\\u0026nbsp; | Feedback Pulse III\\u0026nbsp; | Photonic Shockwave III\\u0026nbsp; | Jam Sensors III\\u0026nbsp; \\n10\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n12\\u0026nbsp; | Polarize Hull III\\u0026nbsp; | Gravity Well III\\u0026nbsp; | Tractor Beam III\\u0026nbsp; \\n15\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n#Ship Loadout: *Fleet Advanced Research Vessel (T6)* \\nSlot\\u0026nbsp; | Item\\u0026nbsp; | Notes\\u0026nbsp; \\n--|--|-- \\nFore Weapon 1\\u0026nbsp; | Advanced Piezo- Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nFore Weapon 2\\u0026nbsp; | Gravimetric Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nFore Weapon 3\\u0026nbsp; | Terran Task Force Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 1\\u0026nbsp; | Cutting Kinetic Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 2\\u0026nbsp; | Dyson Proton Turret Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 3\\u0026nbsp; | Chronometric Polaron Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nDeflector\\u0026nbsp; | [Counter-Command Deflector Array](http://sto.gamepedia.com/Counter-Command_Deflector_Array) Mk XII Very Rare\\u0026nbsp; | 2nd - Deteriorating Secondary Deflector Mk XIV [EPG/ShdHeal]\\u0026nbsp; \\nImpulse Engines\\u0026nbsp; | [Adapted M.A.C.O. Combat Impulse Engines](http://sto.gamepedia.com/Adapted_M.A.C.O._Combat_Impulse_Engines) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nWarp Core\\u0026nbsp; | [Temporal Defense Initiative Overcharged Warp Core](http://sto.gamepedia.com/Temporal_Defense_Initiative_Overcharged_Warp_Core) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nShields\\u0026nbsp; | [Adapted M.A.C.O. Covariant Shield Array](http://sto.gamepedia.com/Adapted_M.A.C.O._Covariant_Shield_Array) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n4 Engineering Consoles\\u0026nbsp; | [Proton Particle Stabilizer](http://sto.gamepedia.com/Console_-_Universal_-_Proton_Particle_Stabilizer) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Ferrofluid Hydraulic Assembly](http://sto.gamepedia.com/Console_-_Universal_-_Ferrofluid_Hydraulic_Assembly) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Conductive RCS Accelerator [EPG]](http://sto.gamepedia.com/Console_-_Engineering_-_Conductive_RCS_Accelerator_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Delphic Tear Generator](http://sto.gamepedia.com/Console_-_Universal_-_Delphic_Tear_Generator) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n5 Science Consoles\\u0026nbsp; | [Restorative Particle Focuser [EPG] [CtrlX]](http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Restorative Particle Focuser [EPG] [CtrlX]](http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Temporal Disentanglement Suite](http://sto.gamepedia.com/Console_-_Science_-_Temporal_Disentanglement_Suite) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Plasma-Generating Weapon Signature Amplifier [EPG]](http://sto.gamepedia.com/Console_-_Science_-_Plasma-Generating_Weapon_Signature_Amplifier_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Exotic Particle Field Exciter [EPG]](http://sto.gamepedia.com/Console_-_Science_-_Exotic_Particle_Field_Exciter_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n2 Tactical Consoles\\u0026nbsp; | [Chronometric Capacitor](http://sto.gamepedia.com/Console_-_Tactical_-_Chronometric_Capacitor) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Piezo-Electric Focuser](http://sto.gamepedia.com/Console_-_Universal_-_Piezo-Electric_Focuser) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n \\n#Officer Details\\nBridge Officers\\u0026nbsp; | Power\\u0026nbsp; \\n--|-- \\nCommander Science\\u0026nbsp; | [Subspace Vortex I](http://sto.gamepedia.com/Ability:_Subspace_Vortex) \\u0026nbsp; \\n\\u0026nbsp; | [Hazard Emitters II](http://sto.gamepedia.com/Ability:_Hazard_Emitters) \\u0026nbsp; \\n\\u0026nbsp; | [Destabilizing Resonance Beam II](http://sto.gamepedia.com/Ability:_Destabilizing_Resonance_Beam) \\u0026nbsp; \\n\\u0026nbsp; | [Gravity Well III](http://sto.gamepedia.com/Ability:_Gravity_Well) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nLt. Commander Engineering-Temporal\\u0026nbsp; | [Entropic Redistribution I](http://sto.gamepedia.com/Ability:_Entropic_Redistribution) \\u0026nbsp; \\n\\u0026nbsp; | [Chronometric Inversion Field I](http://sto.gamepedia.com/Ability:_Chronometric_Inversion_Field) \\u0026nbsp; \\n\\u0026nbsp; | [Entropic Cascade II](http://sto.gamepedia.com/Ability:_Entropic_Cascade) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nLieutenant Tactical\\u0026nbsp; | [Tactical Team I](http://sto.gamepedia.com/Ability:_Tactical_Team) \\u0026nbsp; \\n\\u0026nbsp; | [Torpedo: Spread II](http://sto.gamepedia.com/Ability:_Torpedo:_Spread) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nEnsign Science\\u0026nbsp; | [Tachyon Beam I](http://sto.gamepedia.com/Ability:_Tachyon_Beam) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\n \\n#Traits \\u0026 Duty Officers \\nTrait\\u0026nbsp; | Name\\u0026nbsp; | Description\\u0026nbsp; \\n--|--|-- \\nPersonal Traits\\u0026nbsp; | Ablative Shell\\u0026nbsp; | After receiving a total of 10,000 Damage (pre-resist), trigger Ablative Shell: +X Hit Points every 0.5 sec for 3 sec, +33 All Damage Resistance Rating for 3 sec, May only trigger once per 30 sec\\u0026nbsp; \\n\\u0026nbsp; | Context is for Kings\\u0026nbsp; | Each second while in combat, if you did not take damage in the past second, you gain a damage bonus. Otherwise, you gain a boost to your Damage Resistence Rating. Each second while in combat: If you did take damage in the past second: +3 All Damage Resistence Rating for 10 sec If you did not take damage in the past second: +1% Bonus All Damage for 10 sec\\u0026nbsp; \\n\\u0026nbsp; | Fleet Coordinator\\u0026nbsp; | +2% All Damage per Team member (Self included), up to 10%\\u0026nbsp; \\n\\u0026nbsp; | Repair Crews\\u0026nbsp; | While in combat, gain 1 stack of Repair Crews every 5 sec (up to 5 max). Per Stack: +5 All Damage Resistance Rating +5% Hull Repair Rate\\u0026nbsp; \\n\\u0026nbsp; | Inspirational Leader\\u0026nbsp; | 10% chance: Activating any Bridge Officer Ability grants +10 to Most Starship Skills for 15 seconds (may stack up to 3 times).\\u0026nbsp; \\n\\u0026nbsp; | Particle Manipulator\\u0026nbsp; | Gain .2% Critical Chance and .1% Critical Severity for Exotic Damage abilities, per point you have in the Starship Exotic Particle Generator skill. The Critical Chance bonus gained from this Trait is capped at +50% (attained by having 250 Particle Generators skill), but there is no cap on the Critical Severity bonus. +__% Critical Hit Chance for Exotic Damage Abilities +__% Critical Hit Severity for Exotic Damage Abilities\\u0026nbsp; \\n\\u0026nbsp; | Projectile Training\\u0026nbsp; | +5% Projectile Weapon Damage\\u0026nbsp; \\n\\u0026nbsp; | Self-Modulating Fire\\u0026nbsp; | On outgoing Critical Hits, your energy weapons and projectiles gain +50% Shield Penetration for 10 sec (Can trigger once every 45 sec)\\u0026nbsp; \\n\\u0026nbsp; | Duelist's Fervor\\u0026nbsp; | You or your teammates getting kills will grant you a short-duration damage and accuracy rating boost. Whenever you or a teammate kills something: +5% All Damage for 10 sec +5 Accuracy Rating for 10 sec (Effect stack up to 3 times)\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nStarship Traits\\u0026nbsp; | Desperate Repairs\\u0026nbsp; | When critically hit: Grant 1 Desperation counter for 120 sec. At 3 counters: To self: +5,000 Shield Regeneration. To self: +25,000 Hit Points. Prevents gaining Desperation counters for 60 sec.\\u0026nbsp; \\n\\u0026nbsp; | Emitter Synergy\\u0026nbsp; | When using Tac or Intel Bridge Office Ability: To self: +7.5% Exotic Damage for 15 sec (Stacks up to 3 times) To self: +7.5% Shield Heals for 15 sec (Stacks up to 3 times)\\u0026nbsp; \\n\\u0026nbsp; | Reactive Repair Nanites\\u0026nbsp; | Using a hull heal ability will also heal your hangar pets within 5km of your target for a portion of the healing dealt.\\u0026nbsp; \\n\\u0026nbsp; | Tachyon Dispersal\\u0026nbsp; | While this trait is slotted, Tachyon Beam will significantly reduce the target's shield hardness while channeled. In addition, if Tachyon Beam reaches its full duration it will release a large burst of Tachyon energy that will inflict shield damage over time and reduce the hardness of affected targets within its radius.\\u0026nbsp; \\n\\u0026nbsp; | Highly Specialized\\u0026nbsp; | Each time one of their abilities is activated, it will cause all other specialist bridge officer abilities to recharge more quickly, allowing them all to be used more frequently. In addition, you will gain a boost to Starship Hull Repair, Starship Weapon Specialization and Starship Particle Generators skills. This skill buff stacks up to 5 times.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nSpace Reputation Traits\\u0026nbsp; | Advanced Targeting Systems\\u0026nbsp; | Slightly increases critical severity in space combat\\u0026nbsp; \\n\\u0026nbsp; | Torpedo Pre-Fire Sequence\\u0026nbsp; | Torpedo Damage and Destructible Torpedo Flight Speed\\u0026nbsp; \\n\\u0026nbsp; | Auxiliary Power Configuration - Offense\\u0026nbsp; | In space combat you gain a damage and accuracy boost based on your Auxiliary Power Level\\u0026nbsp; \\n\\u0026nbsp; | Omega Kinetic Shearing\\u0026nbsp; | Torpedoes and Mines deal an additional 40% of their outgoing kinetic damage as a shield-penetrating DoT over 6 seconds.\\u0026nbsp; \\n\\u0026nbsp; | Precision\\u0026nbsp; | Increases your Critical Hit Chance in space combat.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nActive Reputation Traits\\u0026nbsp; | Bio-Molecular Shield Generator\\u0026nbsp; | Bio-Molecular Shield Generator creates a fixed position shield generator, in space combat, that regenerates starship shields and reduces the damage taken by starship shields for allies in the immediate area.\\u0026nbsp; \\n\\u0026nbsp; | Deploy Sensor Interference Platform\\u0026nbsp; | Deploy a Sensor Interference Platform which redirects most weapons fire to itself. The platform generates an inhibiting feedback pulse around nearby allied vessels, reducing the damage of enemies who attack targets other than the platform.\\u0026nbsp; \\n\\u0026nbsp; | Quantum Singularity Manipulation\\u0026nbsp; | Drastically increases all space Science Stats for a short time. After a few seconds, your ship will also be cloaked for the remaining duration of the power. You may fire your weapons and use abilities normally without breaking the cloak. This cloak does not bring your shields offline.\\u0026nbsp; \\n\\u0026nbsp; | Refracting Tetryon Cascade\\u0026nbsp; | Releases a cascading burst of Tetryon energy from your Deflector Dish at foes within 3km. The Tetryon Cascade will refract from initial targets to other nearby targets, dealing less damage with each jump. The Refracting Tetryon Cascade can jump to 2 additional targets. The charge can only jump 5km to the next target. WARNING: If the target's sensors are scrambled or otherwise confused when it is hit with the Tetryon Cascade, the charge may bounce back to you or your allies.\\u0026nbsp; \\n\\u0026nbsp; | Anti-Time Entanglement Singularity\\u0026nbsp; | Anti-Time Entanglement Singularity creates an Anti-Time anomaly in the target's immediate vicinity. The singularity causes severe Physical damage to foes caught within while slowing and potentially locking them in place as normal space-time violently interacts with the anomaly. This singularity rapidly shrinks in size until it fully dissipates.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nDuty Officers\\u0026nbsp; | Projectile Weapons Officer\\u0026nbsp; | Chance to increase Kinetic Damage from torpedoes\\u0026nbsp; \\n\\u0026nbsp; | Projectile Weapons Officer\\u0026nbsp; | Chance for stacking Crit Severity buff on firing Projectiles\\u0026nbsp; \\n\\u0026nbsp; | Conn Officer\\u0026nbsp; | Recharges Evasive Maneuvers when Emergency Power to Engines is activated\\u0026nbsp; \\n\\u0026nbsp; | Deflector Officer\\u0026nbsp; | Chance to reduce the recharge time for Deflector abilities\\u0026nbsp; \\n\\u0026nbsp; | Deflector Officer\\u0026nbsp; | Chance to reduce the recharge time for Deflector abilities\\u0026nbsp; \\n\\u0026nbsp; | Gravimetric Scientist\\u0026nbsp; | Chance to create an aftershock Gravity Well\\u0026nbsp;\", \"author_fullname\": \"t2_k7vp5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv0dwk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559289215.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECaptain Details\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ECaptain Name\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EDr. Jannick Carter\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Career\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EScience\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Faction\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFederation\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Race\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHuman\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPrimary Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETemporal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESecondary Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EStrategist\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ESpace Skill Tree\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ERank\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EEngineering\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EScience\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ETactical\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELieutenant\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Restoration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Capacity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Restoration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Capacity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Energy Weapon Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Projectile Weapon Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELt. Commander\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EElectro-Plasma System Flow\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Impulse Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Control Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Drain Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETargeting Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDefensive Maneuvering\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFull Impulse Energy Shunt\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECommander\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHull Plating\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EShield Regeneration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EShield Hardness\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Weapon Amplification\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Weapon Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDefensive Subsystem Tuning\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOffensive Subsystem Tuning\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Exotic Particle Generator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Long Range Targeting Sensors\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Penetration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Weakening\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAdmiral\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWarp Core Potential\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWarp Core Efficiency\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E1 Points Left\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E14\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E16\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E15\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ESpace Skill Unlocks\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EPurchases\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EEngineering\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EScience\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ETactical\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHazard Emitters III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EScience Team III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETachyon Beam III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E5\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E7\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFeedback Pulse III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPhotonic Shockwave III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EJam Sensors III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E10\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E12\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPolarize Hull III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravity Well III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETractor Beam III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E15\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EShip Loadout: \\u003Cem\\u003EFleet Advanced Research Vessel (T6)\\u003C/em\\u003E\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ESlot\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EItem\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ENotes\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 1\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Piezo- Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravimetric Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 3\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETerran Task Force Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 1\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ECutting Kinetic Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDyson Proton Turret Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 3\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChronometric Polaron Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EDeflector\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Counter-Command_Deflector_Array\\\"\\u003ECounter-Command Deflector Array\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E2nd - Deteriorating Secondary Deflector Mk XIV [EPG/ShdHeal]\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EImpulse Engines\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Adapted_M.A.C.O._Combat_Impulse_Engines\\\"\\u003EAdapted M.A.C.O. Combat Impulse Engines\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EWarp Core\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Temporal_Defense_Initiative_Overcharged_Warp_Core\\\"\\u003ETemporal Defense Initiative Overcharged Warp Core\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EShields\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Adapted_M.A.C.O._Covariant_Shield_Array\\\"\\u003EAdapted M.A.C.O. Covariant Shield Array\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E4 Engineering Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Proton_Particle_Stabilizer\\\"\\u003EProton Particle Stabilizer\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Ferrofluid_Hydraulic_Assembly\\\"\\u003EFerrofluid Hydraulic Assembly\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Engineering_-_Conductive_RCS_Accelerator_\\\"\\u003EConductive RCS Accelerator [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Delphic_Tear_Generator\\\"\\u003EDelphic Tear Generator\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E5 Science Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_\\\"\\u003ERestorative Particle Focuser [EPG] [CtrlX]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_\\\"\\u003ERestorative Particle Focuser [EPG] [CtrlX]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Temporal_Disentanglement_Suite\\\"\\u003ETemporal Disentanglement Suite\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Plasma-Generating_Weapon_Signature_Amplifier_\\\"\\u003EPlasma-Generating Weapon Signature Amplifier [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Exotic_Particle_Field_Exciter_\\\"\\u003EExotic Particle Field Exciter [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E2 Tactical Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Tactical_-_Chronometric_Capacitor\\\"\\u003EChronometric Capacitor\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Piezo-Electric_Focuser\\\"\\u003EPiezo-Electric Focuser\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EOfficer Details\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EBridge Officers\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EPower\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECommander Science\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Subspace_Vortex\\\"\\u003ESubspace Vortex I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Hazard_Emitters\\\"\\u003EHazard Emitters II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Destabilizing_Resonance_Beam\\\"\\u003EDestabilizing Resonance Beam II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Gravity_Well\\\"\\u003EGravity Well III\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELt. Commander Engineering-Temporal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Entropic_Redistribution\\\"\\u003EEntropic Redistribution I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Chronometric_Inversion_Field\\\"\\u003EChronometric Inversion Field I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Entropic_Cascade\\\"\\u003EEntropic Cascade II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELieutenant Tactical\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Tactical_Team\\\"\\u003ETactical Team I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Torpedo:_Spread\\\"\\u003ETorpedo: Spread II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EEnsign Science\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Tachyon_Beam\\\"\\u003ETachyon Beam I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ETraits \\u0026amp; Duty Officers\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ETrait\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EName\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EDescription\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPersonal Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAblative Shell\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAfter receiving a total of 10,000 Damage (pre-resist), trigger Ablative Shell: +X Hit Points every 0.5 sec for 3 sec, +33 All Damage Resistance Rating for 3 sec, May only trigger once per 30 sec\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EContext is for Kings\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEach second while in combat, if you did not take damage in the past second, you gain a damage bonus. Otherwise, you gain a boost to your Damage Resistence Rating. Each second while in combat: If you did take damage in the past second: +3 All Damage Resistence Rating for 10 sec If you did not take damage in the past second: +1% Bonus All Damage for 10 sec\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFleet Coordinator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E+2% All Damage per Team member (Self included), up to 10%\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERepair Crews\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhile in combat, gain 1 stack of Repair Crews every 5 sec (up to 5 max). Per Stack: +5 All Damage Resistance Rating +5% Hull Repair Rate\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EInspirational Leader\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E10% chance: Activating any Bridge Officer Ability grants +10 to Most Starship Skills for 15 seconds (may stack up to 3 times).\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EParticle Manipulator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGain .2% Critical Chance and .1% Critical Severity for Exotic Damage abilities, per point you have in the Starship Exotic Particle Generator skill. The Critical Chance bonus gained from this Trait is capped at +50% (attained by having 250 Particle Generators skill), but there is no cap on the Critical Severity bonus. +\\u003Cstrong\\u003E% Critical Hit Chance for Exotic Damage Abilities +\\u003C/strong\\u003E% Critical Hit Severity for Exotic Damage Abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E+5% Projectile Weapon Damage\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ESelf-Modulating Fire\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOn outgoing Critical Hits, your energy weapons and projectiles gain +50% Shield Penetration for 10 sec (Can trigger once every 45 sec)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDuelist\\u0026#39;s Fervor\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EYou or your teammates getting kills will grant you a short-duration damage and accuracy rating boost. Whenever you or a teammate kills something: +5% All Damage for 10 sec +5 Accuracy Rating for 10 sec (Effect stack up to 3 times)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStarship Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDesperate Repairs\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhen critically hit: Grant 1 Desperation counter for 120 sec. At 3 counters: To self: +5,000 Shield Regeneration. To self: +25,000 Hit Points. Prevents gaining Desperation counters for 60 sec.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEmitter Synergy\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhen using Tac or Intel Bridge Office Ability: To self: +7.5% Exotic Damage for 15 sec (Stacks up to 3 times) To self: +7.5% Shield Heals for 15 sec (Stacks up to 3 times)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EReactive Repair Nanites\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EUsing a hull heal ability will also heal your hangar pets within 5km of your target for a portion of the healing dealt.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETachyon Dispersal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhile this trait is slotted, Tachyon Beam will significantly reduce the target\\u0026#39;s shield hardness while channeled. In addition, if Tachyon Beam reaches its full duration it will release a large burst of Tachyon energy that will inflict shield damage over time and reduce the hardness of affected targets within its radius.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHighly Specialized\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEach time one of their abilities is activated, it will cause all other specialist bridge officer abilities to recharge more quickly, allowing them all to be used more frequently. In addition, you will gain a boost to Starship Hull Repair, Starship Weapon Specialization and Starship Particle Generators skills. This skill buff stacks up to 5 times.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESpace Reputation Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Targeting Systems\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ESlightly increases critical severity in space combat\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedo Pre-Fire Sequence\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedo Damage and Destructible Torpedo Flight Speed\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAuxiliary Power Configuration - Offense\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EIn space combat you gain a damage and accuracy boost based on your Auxiliary Power Level\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOmega Kinetic Shearing\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedoes and Mines deal an additional 40% of their outgoing kinetic damage as a shield-penetrating DoT over 6 seconds.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPrecision\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EIncreases your Critical Hit Chance in space combat.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EActive Reputation Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EBio-Molecular Shield Generator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EBio-Molecular Shield Generator creates a fixed position shield generator, in space combat, that regenerates starship shields and reduces the damage taken by starship shields for allies in the immediate area.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeploy Sensor Interference Platform\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeploy a Sensor Interference Platform which redirects most weapons fire to itself. The platform generates an inhibiting feedback pulse around nearby allied vessels, reducing the damage of enemies who attack targets other than the platform.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EQuantum Singularity Manipulation\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDrastically increases all space Science Stats for a short time. After a few seconds, your ship will also be cloaked for the remaining duration of the power. You may fire your weapons and use abilities normally without breaking the cloak. This cloak does not bring your shields offline.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERefracting Tetryon Cascade\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EReleases a cascading burst of Tetryon energy from your Deflector Dish at foes within 3km. The Tetryon Cascade will refract from initial targets to other nearby targets, dealing less damage with each jump. The Refracting Tetryon Cascade can jump to 2 additional targets. The charge can only jump 5km to the next target. WARNING: If the target\\u0026#39;s sensors are scrambled or otherwise confused when it is hit with the Tetryon Cascade, the charge may bounce back to you or your allies.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAnti-Time Entanglement Singularity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAnti-Time Entanglement Singularity creates an Anti-Time anomaly in the target\\u0026#39;s immediate vicinity. The singularity causes severe Physical damage to foes caught within while slowing and potentially locking them in place as normal space-time violently interacts with the anomaly. This singularity rapidly shrinks in size until it fully dissipates.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EDuty Officers\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Weapons Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to increase Kinetic Damage from torpedoes\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Weapons Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance for stacking Crit Severity buff on firing Projectiles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EConn Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERecharges Evasive Maneuvers when Emergency Power to Engines is activated\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeflector Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to reduce the recharge time for Deflector abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeflector Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to reduce the recharge time for Deflector abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravimetric Scientist\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to create an aftershock Gravity Well\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?auto=webp\\u0026s=1b86bccaf167b2d5123de5174f8e10d449263d48\", \"width\": 290, \"height\": 80}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=69311b30c71d5588ef2476413ab46e99ccd63a63\", \"width\": 108, \"height\": 29}, {\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0f8e5d419be15a063d995bcf551bcc86c9348be3\", \"width\": 216, \"height\": 59}], \"variants\": {}, \"id\": \"8pVmilrUZuM4Y3Z8IjHjdTYNdYCe6e2y_bUeDCZKUg4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv0dwk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wooyoo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv0dwk/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv0dwk/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559260415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"............................................________ \\n....................................,.-'\\\"...................``~., \\n.............................,.-\\\"...................................\\\"-., \\n.........................,/...............................................\\\":, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\\"........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\\"~-,_..............................,:`........../ \\n.........../(_....\\\"~,_........\\\"~,_....................,:`........_/ \\n..........{.._$;_......\\\"=,_.......\\\"-,_.......,.-~-,},.~\\\";/....} \\n...........((.....*~_.......\\\"=-._......\\\";,,./`..../\\\"............../ \\n...,,,___.`~,......\\\"~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\\" \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u003E-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u003E--==`` \\n........................................_..........._,-%.......` \\n...................................,\", \"author_fullname\": \"t2_2awf2pwl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buz6bd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559282431.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E............................................________ \\n....................................,.-\\u0026#39;\\u0026quot;...................\\u003Ccode\\u003E~., \\n.............................,.-\\u0026quot;...................................\\u0026quot;-., \\n.........................,/...............................................\\u0026quot;:, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\u0026quot;........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\u0026quot;~-,_..............................,:`........../ \\n.........../(_....\\u0026quot;~,_........\\u0026quot;~,_....................,:`........_/ \\n..........{.._$;_......\\u0026quot;=,_.......\\u0026quot;-,_.......,.-~-,},.~\\u0026quot;;/....} \\n...........((.....*~_.......\\u0026quot;=-._......\\u0026quot;;,,./`..../\\u0026quot;............../ \\n...,,,___.`~,......\\u0026quot;~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\u0026quot; \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u0026gt;-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u0026gt;--==\\u003C/code\\u003E \\n........................................\\u003Cem\\u003E...........\\u003C/em\\u003E,-%.......` \\n...................................,\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buz6bd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dwolfj\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buz6bd/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559253631.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1u17f7xq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Excalibur] Darkness\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 76, \"hide_score\": false, \"name\": \"t3_buyfh6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/rQRkNUFVzJBfU0NKRterlAHy9b6lCEqixFHKQBoz6LM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559278533.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?auto=webp\\u0026s=f909102a292f8e034817ecba780a3335b97cd05a\", \"width\": 1280, \"height\": 699}, \"resolutions\": [{\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8b1f21db35f534c67e58cad03be2796677f047fb\", \"width\": 108, \"height\": 58}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=dc78a564e15d9728dda51215a38d3ac3ac354af9\", \"width\": 216, \"height\": 117}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=66018766b3c398c0c7c1f434d4805330b75a3ddb\", \"width\": 320, \"height\": 174}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1676c512c45c5c31f6b597ec4e1f263c11973593\", \"width\": 640, \"height\": 349}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5cfbc3635f1655a01d8f70f8b7772efba886c379\", \"width\": 960, \"height\": 524}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e4cbbe7cb9746362a029aeea72037dd8c8316a46\", \"width\": 1080, \"height\": 589}], \"variants\": {}, \"id\": \"hz42riBu_Nv54z_i96b8_OFwO7HaAcgdWq6FDP77RJs\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buyfh6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CephalonSoural\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buyfh6/excalibur_darkness/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/z1p9l2vgwe131.jpg\", \"subreddit_subscribers\": 709, \"created_utc\": 1559249733.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*This is a proposal for the complete overhaul of the skills modding system, which was inspired by the many suggestions calling for changes to the current system.*\\n\\n*My main objective was to create an engaging experience with clear and rewarding progression goals. I also wanted to create more flexible and convenient skills modding options than the current system could ever provide. At the end of the progression, I wanted skill power players to feel proud of their achievement.*\\n\\n*Consequently, I was able to eliminate the seemingly impossible task of obtaining exactly the mods we need, as well as the frustration associated with managing hundreds of skill mods. In a few words, the current system is daunting and unproductive.*\\n\\n*In contrast, the proposed system is filled with incentives meant to keep us playing, not only because our dedication is continually rewarded, but also because we can make progress every day.*\\n\\n\\u0026#x200B;\\n\\n**This modding system is composed of 5 parts:**\\n\\n1. Tech Proficiency Progression\\n2. Skill Mod Strength Levels\\n3. Skill Power Budgeting\\n4. Tech Proficiency Awards\\n5. Skills Maintenance\\n\\n\\u0026#x200B;\\n\\n**TECH PROFICIENCY PROGRESSION**\\n\\nEach skill variant has its own proficiency progression, which starts at level 0 and ends at level 4. Players may start a progression for their favorite skills after reaching character level 15. The final proficiency level is reserved for World Tier 5. If you're already at world tier 5, you'll simply complete the proficiency progressions you choose without interruptions.\\n\\nTech points are earned by completing activities and objectives while using your preferred skill variant. Each time your proficiency level increases, small skill power boosts are awarded for that variant, as well as other benefits mentioned later.\\n\\n***Edit:*** *How soon you can finish depends on how much you play, but it shouldn't take more than 2-3 weeks to complete the progression for all skill variants. You also don't need to start the progression for skills you're not interested in using. It's all up to you. Proficiency progressions are pretty much automatic because they work just like when you're ranking your character. That is, there is no traveling to the Quartermaster to upgrade anything. It just happens as you play.*\\n\\n\\u0026#x200B;\\n\\n**SKILL MOD STRENGTH LEVELS**\\n\\nSkill mods don\\u2019t have a percentage value. Instead, skill variants have a unique set of mods, and each set has five different strength levels that match your proficiency with the variant. Mod strength levels allow you to reach higher modding percentage values in combination with sufficient skill power. This means that it\\u2019s okay to run a low skill power build using stronger mods.\\n\\nCharacter level and world tier don't define the strength of the mods that will drop for you, but skill mods do begin to drop at character level 15. If you're already at world tier 5, there's no need to start a new character. Just start farming for mods.\\n\\nSkill mods can be obtained from the same sources we have right now (there are many), but strength levels must be collected in numerical order. This means that you must first obtain a set\\u2019s strength level 1 mod before strength 2 can drop for you, and so on.\\n\\nSkill mods won\\u2019t need inventory space because they\\u2019re stored just like weapon mods. The difference is that skill mods of greater strengths will upgrade what you\\u2019ve already collected. It\\u2019s possible to find a mod with a strength level that is higher than your proficiency level. In this case, the upgrade is saved for later use and will be automatically applied when the mod matches your proficiency level.\\n\\n***Edit:*** *You can target mod types by equipping the skill variants for which you want to find mods. So, if you want mods for your Scanner pulse and the Oxidizer chem launcher, just equip them and go play the game.*\\n\\n*Your proficiency level with a variant doesn't determine which mod strength will drop; proficiency only determines which mods you can use, and how much of a skill power boost you'll be getting.*\\n\\n*Like the proficiency progression, mod upgrades occur automatically. You just pick up the mod and the system does the rest. There's no need to unequip a weaker mod to equip a stronger mod, and there's no need to travel to the Quartermaster or a specific bench somewhere. The upgrades just happen automatically.*\\n\\n\\u0026#x200B;\\n\\n**SKILL POWER BUDGETING**\\n\\nMods unlock the slider bars you\\u2019ll use to budget your skill power, as long as the mod\\u2019s strength isn\\u2019t higher than your proficiency level.\\n\\nBudgeting skill power is an easy concept to explain. Essentially, when you increase the slider bar for a specific mod, less skill power is available for the remaining mods associated with the skill variant.\\n\\nThe budgeting method let\\u2019s you distribute custom amounts of your skill power to improve all active mods at the same time, or you can use all of your skill power to improve a single mod. The choice is yours.\\n\\nBalance is important! Skill power will affect skill mods differently, so not all slider bars begin at 0% and end at 100% improvement.\\n\\n\\u0026#x200B;\\n\\n**TECH PROFICIENCY AWARDS**\\n\\nProficiency awards can be earned for reaching maximum proficiency with a skill platform. So, if you achieve maximum proficiency with the Scanner, Remote, and Jammer Pulse, you\\u2019ll earn special rewards.\\n\\nThe best rewards are additional slots that let you save and manage modding configurations separately from loadouts, all without affecting your build.\\n\\nOther proficiency awards could include patches and cosmetics, as well as tech-oriented accessories, such as that tactical flashlight these guys keep asking for.\\n\\n\\u0026#x200B;\\n\\n**SKILLS MAINTENANCE**\\n\\nThis system also introduces the concept of skill maintenance, for which you\\u2019ll need special currency. Failure to properly maintain the equipment could have consequences, such as very long skill cooldowns.\\n\\nThe maintenance concept creates a cycle that continues even after every proficiency level has been achieved and every mod strength has been collected. *This is what could replace the seemingly impossible hunt for the correct skill mods we\\u2019re dealing with today.*\\n\\nMaintenance tasks should never create a burden for players. Maintenance should be quick and simple, *and obtaining the necessary currency or materials should result from just playing the game.* This means no lengthy animations, no complicated requirements, and no overly scarce resources.\\n\\n***Edit:*** *Which skills need maintenance depends on which skills you use. I use the Reinforcer Chem Launcher and the Assault Turret all the time. This means that I'll need to maintain only these variants. If and when I do, all I have to do is hold down the \\\"maintenance\\\" button down for 3-5 seconds and I'm done. I just need to make sure that I have enough special currency to perform the task. But how is the special currency obtained? By just playing the game.*\\n\\n\\u0026#x200B;\\n\\n***Note:*** *The skill power budgeting concept was posted on this sub, but I\\u2019m unable to find the post to give the guy credit.*\\n\\n\\u0026#x200B;\\n\\n\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\n\\n**Edit: There seems to be some confusion regarding the length of progressions and how much work really needs to be done here. I expanded some points and included clarifications in** ***italics.*** \\n\\n\\u0026#x200B;\\n\\n**Here are answers to some important questions:**\\n\\n\\u0026#x200B;\\n\\n**Why such a complicated system?**\\n\\nThe system is not complicated at all. It just takes a lot of words to explain everything. All you have to do is play the game using your favorite skills. Everything else just happens automatically, except for skills maintenance. Becoming the ultimate skill power player is meant to happen much faster than the description might make you think.\\n\\n\\u0026#x200B;\\n\\n**Why do we need a new system?**\\n\\nBecause the current system is designed to throttle progress. It could seriously take many months to years to min/max various builds. I play about 6 hours a day and I haven't min/maxed a single build. That's fine and all, but getting to a place where I can comfortably mod my skills will take way too long, plus it is frustrating to manage all those mods.\\n\\nAnother reason is that the game is boring for some people right now. To put it simply, variety and flexibility are hogtied by RNG and a huge loot pool. That's not even mentioning how skills themselves need to be worked on.\\n\\n\\u0026#x200B;\\n\\n**Why not go back to how things were in Division 1?**\\n\\nI don't think that's what they want for this game. The Division 1 made it easy to put together a skill build and boost any skill to the max. They expect effort and dedication to result in the most powerful skills, but I think they're going about it all wrong. Remember, we want skills to be powerful and modding to be convenient and flexible, but at what cost? Months and months of farming? We don't even have enough inventory space to hold all the skill mods!\\n\\n\\u0026#x200B;\\n\\n**Why a proficiency progression?**\\n\\nThe proficiency progression is a compromise that gives us something to strive for. We can't really expect to just stack skill power and collect a few mods like we did in the first game, because that's not what they seem to want. Direct evidence of what what they want is the very low probability of obtaining a single item with the correct attributes and talents. If you don't know, there is a very, very low chance of finding exactly what you need. I just don't think this very low probability should apply to modding skills. At the same time, I don't think it should be a breeze. And it should definitely not be boring.\\n\\nIt's important to also look at the big picture: the way mods are programmed to drop (randomly and with a percentage range) doesn't let us target which skills we want to improve, how well we can improve them, or even how fast we can accomplish that. Overall, the control we have is so small that it's discouraging.\\n\\nIn contrast, the system I'm proposing keeps us engaged because we're always making notable progress, we're always working toward something that is well within range. This system is also rewarding from start to finish (see Tech Proficiency Awards).\\n\\nThink about it -- the progression speed is in your hands. You choose which skills you want to work on and when. You would almost have complete control, if it weren't for the limited number of mods you need to collect. And that's a fair trade off. If skill modding is not your thing, then just let the progression and mods collection happen naturally. \\n\\nAll this convenience and bonuses in exchange for what? Two weeks to max out all skill platforms and collect a limited number of mods (that don't even have to be managed or stored). Then, there's some easy skills maintenance task that, if ignored, only affects the efficiency of the skills you use the most.\", \"author_fullname\": \"t2_3syb9zh4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buy2m9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559334132.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559276681.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EThis is a proposal for the complete overhaul of the skills modding system, which was inspired by the many suggestions calling for changes to the current system.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EMy main objective was to create an engaging experience with clear and rewarding progression goals. I also wanted to create more flexible and convenient skills modding options than the current system could ever provide. At the end of the progression, I wanted skill power players to feel proud of their achievement.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EConsequently, I was able to eliminate the seemingly impossible task of obtaining exactly the mods we need, as well as the frustration associated with managing hundreds of skill mods. In a few words, the current system is daunting and unproductive.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EIn contrast, the proposed system is filled with incentives meant to keep us playing, not only because our dedication is continually rewarded, but also because we can make progress every day.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis modding system is composed of 5 parts:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ETech Proficiency Progression\\u003C/li\\u003E\\n\\u003Cli\\u003ESkill Mod Strength Levels\\u003C/li\\u003E\\n\\u003Cli\\u003ESkill Power Budgeting\\u003C/li\\u003E\\n\\u003Cli\\u003ETech Proficiency Awards\\u003C/li\\u003E\\n\\u003Cli\\u003ESkills Maintenance\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETECH PROFICIENCY PROGRESSION\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEach skill variant has its own proficiency progression, which starts at level 0 and ends at level 4. Players may start a progression for their favorite skills after reaching character level 15. The final proficiency level is reserved for World Tier 5. If you\\u0026#39;re already at world tier 5, you\\u0026#39;ll simply complete the proficiency progressions you choose without interruptions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETech points are earned by completing activities and objectives while using your preferred skill variant. Each time your proficiency level increases, small skill power boosts are awarded for that variant, as well as other benefits mentioned later.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EHow soon you can finish depends on how much you play, but it shouldn\\u0026#39;t take more than 2-3 weeks to complete the progression for all skill variants. You also don\\u0026#39;t need to start the progression for skills you\\u0026#39;re not interested in using. It\\u0026#39;s all up to you. Proficiency progressions are pretty much automatic because they work just like when you\\u0026#39;re ranking your character. That is, there is no traveling to the Quartermaster to upgrade anything. It just happens as you play.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILL MOD STRENGTH LEVELS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods don\\u2019t have a percentage value. Instead, skill variants have a unique set of mods, and each set has five different strength levels that match your proficiency with the variant. Mod strength levels allow you to reach higher modding percentage values in combination with sufficient skill power. This means that it\\u2019s okay to run a low skill power build using stronger mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECharacter level and world tier don\\u0026#39;t define the strength of the mods that will drop for you, but skill mods do begin to drop at character level 15. If you\\u0026#39;re already at world tier 5, there\\u0026#39;s no need to start a new character. Just start farming for mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods can be obtained from the same sources we have right now (there are many), but strength levels must be collected in numerical order. This means that you must first obtain a set\\u2019s strength level 1 mod before strength 2 can drop for you, and so on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods won\\u2019t need inventory space because they\\u2019re stored just like weapon mods. The difference is that skill mods of greater strengths will upgrade what you\\u2019ve already collected. It\\u2019s possible to find a mod with a strength level that is higher than your proficiency level. In this case, the upgrade is saved for later use and will be automatically applied when the mod matches your proficiency level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EYou can target mod types by equipping the skill variants for which you want to find mods. So, if you want mods for your Scanner pulse and the Oxidizer chem launcher, just equip them and go play the game.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EYour proficiency level with a variant doesn\\u0026#39;t determine which mod strength will drop; proficiency only determines which mods you can use, and how much of a skill power boost you\\u0026#39;ll be getting.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ELike the proficiency progression, mod upgrades occur automatically. You just pick up the mod and the system does the rest. There\\u0026#39;s no need to unequip a weaker mod to equip a stronger mod, and there\\u0026#39;s no need to travel to the Quartermaster or a specific bench somewhere. The upgrades just happen automatically.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILL POWER BUDGETING\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMods unlock the slider bars you\\u2019ll use to budget your skill power, as long as the mod\\u2019s strength isn\\u2019t higher than your proficiency level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBudgeting skill power is an easy concept to explain. Essentially, when you increase the slider bar for a specific mod, less skill power is available for the remaining mods associated with the skill variant.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe budgeting method let\\u2019s you distribute custom amounts of your skill power to improve all active mods at the same time, or you can use all of your skill power to improve a single mod. The choice is yours.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBalance is important! Skill power will affect skill mods differently, so not all slider bars begin at 0% and end at 100% improvement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETECH PROFICIENCY AWARDS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EProficiency awards can be earned for reaching maximum proficiency with a skill platform. So, if you achieve maximum proficiency with the Scanner, Remote, and Jammer Pulse, you\\u2019ll earn special rewards.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe best rewards are additional slots that let you save and manage modding configurations separately from loadouts, all without affecting your build.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOther proficiency awards could include patches and cosmetics, as well as tech-oriented accessories, such as that tactical flashlight these guys keep asking for.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILLS MAINTENANCE\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis system also introduces the concept of skill maintenance, for which you\\u2019ll need special currency. Failure to properly maintain the equipment could have consequences, such as very long skill cooldowns.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe maintenance concept creates a cycle that continues even after every proficiency level has been achieved and every mod strength has been collected. \\u003Cem\\u003EThis is what could replace the seemingly impossible hunt for the correct skill mods we\\u2019re dealing with today.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaintenance tasks should never create a burden for players. Maintenance should be quick and simple, \\u003Cem\\u003Eand obtaining the necessary currency or materials should result from just playing the game.\\u003C/em\\u003E This means no lengthy animations, no complicated requirements, and no overly scarce resources.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EWhich skills need maintenance depends on which skills you use. I use the Reinforcer Chem Launcher and the Assault Turret all the time. This means that I\\u0026#39;ll need to maintain only these variants. If and when I do, all I have to do is hold down the \\u0026quot;maintenance\\u0026quot; button down for 3-5 seconds and I\\u0026#39;m done. I just need to make sure that I have enough special currency to perform the task. But how is the special currency obtained? By just playing the game.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENote:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EThe skill power budgeting concept was posted on this sub, but I\\u2019m unable to find the post to give the guy credit.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E__________________________________________________________________\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit: There seems to be some confusion regarding the length of progressions and how much work really needs to be done here. I expanded some points and included clarifications in\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003Eitalics.\\u003C/em\\u003E\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHere are answers to some important questions:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy such a complicated system?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe system is not complicated at all. It just takes a lot of words to explain everything. All you have to do is play the game using your favorite skills. Everything else just happens automatically, except for skills maintenance. Becoming the ultimate skill power player is meant to happen much faster than the description might make you think.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy do we need a new system?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause the current system is designed to throttle progress. It could seriously take many months to years to min/max various builds. I play about 6 hours a day and I haven\\u0026#39;t min/maxed a single build. That\\u0026#39;s fine and all, but getting to a place where I can comfortably mod my skills will take way too long, plus it is frustrating to manage all those mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother reason is that the game is boring for some people right now. To put it simply, variety and flexibility are hogtied by RNG and a huge loot pool. That\\u0026#39;s not even mentioning how skills themselves need to be worked on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy not go back to how things were in Division 1?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t think that\\u0026#39;s what they want for this game. The Division 1 made it easy to put together a skill build and boost any skill to the max. They expect effort and dedication to result in the most powerful skills, but I think they\\u0026#39;re going about it all wrong. Remember, we want skills to be powerful and modding to be convenient and flexible, but at what cost? Months and months of farming? We don\\u0026#39;t even have enough inventory space to hold all the skill mods!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy a proficiency progression?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe proficiency progression is a compromise that gives us something to strive for. We can\\u0026#39;t really expect to just stack skill power and collect a few mods like we did in the first game, because that\\u0026#39;s not what they seem to want. Direct evidence of what what they want is the very low probability of obtaining a single item with the correct attributes and talents. If you don\\u0026#39;t know, there is a very, very low chance of finding exactly what you need. I just don\\u0026#39;t think this very low probability should apply to modding skills. At the same time, I don\\u0026#39;t think it should be a breeze. And it should definitely not be boring.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s important to also look at the big picture: the way mods are programmed to drop (randomly and with a percentage range) doesn\\u0026#39;t let us target which skills we want to improve, how well we can improve them, or even how fast we can accomplish that. Overall, the control we have is so small that it\\u0026#39;s discouraging.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn contrast, the system I\\u0026#39;m proposing keeps us engaged because we\\u0026#39;re always making notable progress, we\\u0026#39;re always working toward something that is well within range. This system is also rewarding from start to finish (see Tech Proficiency Awards).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThink about it -- the progression speed is in your hands. You choose which skills you want to work on and when. You would almost have complete control, if it weren\\u0026#39;t for the limited number of mods you need to collect. And that\\u0026#39;s a fair trade off. If skill modding is not your thing, then just let the progression and mods collection happen naturally. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll this convenience and bonuses in exchange for what? Two weeks to max out all skill platforms and collect a limited number of mods (that don\\u0026#39;t even have to be managed or stored). Then, there\\u0026#39;s some easy skills maintenance task that, if ignored, only affects the efficiency of the skills you use the most.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buy2m9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KelpieCyanide\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buy2m9/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buy2m9/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559247881.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" line 1\\n \\n line 2\\n \\n line 3\\n\\nnormal text\", \"author_fullname\": \"t2_6k6mm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buvucz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559265507.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003Eline 1\\n\\nline 2\\n\\nline 3\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Enormal text\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buvucz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Wongehchuu\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buvucz/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buvucz/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559236707.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"```lua\\nlocal ffi = require(\\\"ffi\\\")\\n\\nffi.cdef[[\\nvoid Sleep(unsigned int seconds); \\n]]\\n```\", \"author_fullname\": \"t2_391wfwow\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buu8cl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559257370.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E```lua\\nlocal ffi = require(\\u0026quot;ffi\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Effi.cdef[[\\nvoid Sleep(unsigned int seconds); \\n]]\\n```\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buu8cl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Anxious_Theory\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buu8cl/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buu8cl/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559228570.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I would like to draw comparison between the 2 incidents.\\n\\n|Date|Ceb|Date|Kuku|\\n|:-|:-|:-|:-|\\n|23/05/2019 Pt1|[Ceb made a crude remark in an EU pub](https://www.removeddit.com/r/DotA2/comments/bs2l9m/ogceb_new_lvl_tilting/) [First reported by u/LVR322 but retracted after Ceb contacted him](https://ibb.co/sgpM4bF)|2/11/2018|[Kuku made the crude remark in a Sea pub](https://www.reddit.com/r/DotA2/comments/9tippm/just_after_col_drama_tnc_kuku_did_it_again_at/)[Initial chinese reaction](https://twitter.com/GodBlessMali/status/1058326847321202688)|2/11/2018|[Kuku apologised on facebook](https://www.facebook.com/pogingkuku/posts/2190153977864424)|\\n|23/05/2019 Pt2|[Another player from same game makes the same complaint](https://www.reddit.com/r/DotA2/comments/bs9ero/ogceb/) [Ceb initial apology](https://www.reddit.com/r/DotA2/comments/bsahbl/ogcebs\\\\_first\\\\_reply\\\\_for\\\\_people\\\\_who\\\\_are\\\\_too\\\\_lazy\\\\_to/)|3/11/2018|[Mender of his Weibo account created an excuse for the remark and was exposed](https://old.reddit.com/r/DotA2/comments/9trn4s/kuku\\\\_apologized\\\\_with\\\\_a\\\\_plot\\\\_twist)\\n|24/05/2019|[Solo take personal action to avoid Epicenter unless Valve make clear of their rules openly](https://www.reddit.com/r/DotA2/comments/bsgsbp/vp\\\\_solo\\\\_wont\\\\_participate\\\\_at\\\\_epicenter\\\\_unless)|3/11/2018|[Mender of his Weibo account created an excuse for the remark and was exposed](https://old.reddit.com/r/DotA2/comments/9trn4s/kuku\\\\_apologized\\\\_with\\\\_a\\\\_plot\\\\_twist)|\\n|25/05/2019|[Pasha also voices his displeasure with valve inconsistencies](https://www.reddit.com/r/DotA2/comments/bsxs9o/vp9pasha\\\\_people\\\\_want\\\\_to\\\\_see\\\\_the\\\\_rules\\\\_so\\\\_that) [Ceb second apology](https://www.reddit.com/r/DotA2/comments/bsuu97/one\\\\_day\\\\_wiser\\\\_twitlonger\\\\_by\\\\_ceb/)|11/11/2018|[Valve initial reaction to let things sort itself out](https://www.reddit.com/r/DotA2/comments/9w1547/the\\\\_major\\\\_and\\\\_professional\\\\_dota\\\\_players/)|\\n|25/05/2019|[Ceb interview with u/LVR322 on the issue](https://www.reddit.com/r/DotA2/comments/bsrtg6/cebs\\\\_first\\\\_thread\\\\_op\\\\_ceb\\\\_told\\\\_me\\\\_that\\\\_he\\\\_might/)|13/11/2018|[TNC manager admit to his mistake](https://www.reddit.com/r/DotA2/comments/9wrkhi/tncs\\\\_manager\\\\_confesses\\\\_that\\\\_he\\\\_was\\\\_the\\\\_one\\\\_who/)|\\n|26/05/2019|[Valve now working with all stakeholders for a long term solution](https://www.reddit.com/r/DotA2/comments/bt6lhw/solo\\\\_valve\\\\_and\\\\_seb\\\\_are\\\\_working\\\\_on\\\\_a\\\\_longterm/) |24/11/2018| [Cyborgmatt first mention of the ban of Kuku and Skem from the CQ major](https://www.reddit.com/r/DotA2/comments/9zxa5q/cyborgmatt\\\\_confirms\\\\_kuku\\\\_and\\\\_skem\\\\_are\\\\_banned/) [Immediate reaction from reddit](https://old.reddit.com/r/DotA2/comments/9zxbyv/valve\\\\_if\\\\_you\\\\_let\\\\_kuku\\\\_and\\\\_skem\\\\_and\\\\_be\\\\_banned\\\\_from) [Ceb reaction](https://www.reddit.com/r/DotA2/comments/9zyhh6/i\\\\_believe\\\\_in\\\\_talk\\\\_no\\\\_jutsu\\\\_and\\\\_i\\\\_hope\\\\_others\\\\_will/)\\n|||25/11/2018|[TNC punishment to Kuku and the manager for their actions](https://old.reddit.com/r/DotA2/comments/a05u22/tnc\\\\_on\\\\_the\\\\_responsibility\\\\_being\\\\_taken\\\\_for\\\\_kuku/)|\\n|||27/11/2018|[TNC qualifies for CQ major](https://www.reddit.com/r/DotA2/comments/a0vobe/congratulations\\\\_to\\\\_the\\\\_2nd\\\\_sea\\\\_team\\\\_to\\\\_qualify/)|\\n|||2/12/2018|[Grantgrant putting himself on the line for Kuku](https://old.reddit.com/r/DotA2/comments/a2agjg/grant\\\\_putting\\\\_his\\\\_casting\\\\_career\\\\_on\\\\_the\\\\_line\\\\_for/) [Action taken by other casters](https://old.reddit.com/r/DotA2/comments/a2fc30/chongqing\\\\_major\\\\_updates\\\\_megathread/) [CQ Org correspondence with TNC](https://www.reddit.com/r/DotA2/comments/a2bt4r/tncs\\\\_new\\\\_statement\\\\_about\\\\_the\\\\_issue/) [IMBATV refusal to contact TNC](https://www.facebook.com/840515722697409/posts/2043073252441644/)|\\n|||3/12/2018|[Valve outright banning kuku after being unsatified with TNC handling](https://www.reddit.com/r/DotA2/comments/a2uary/tnc\\\\_and\\\\_the\\\\_chongqing\\\\_major/) [People calling out valve for their inconsistencies](https://old.reddit.com/r/DotA2/comments/a2umx5/valve\\\\_this\\\\_is\\\\_the\\\\_most\\\\_disappointed\\\\_i\\\\_have\\\\_ever) [2](https://www.reddit.com/r/DotA2/comments/a2ulv2/valves\\\\_statement\\\\_doesnt\\\\_make\\\\_sense/) [3](https://www.reddit.com/r/DotA2/comments/a3b62g/the\\\\_problem\\\\_with\\\\_valves\\\\_statement\\\\_is\\\\_part\\\\_of/) [4](https://old.reddit.com/r/DotA2/comments/a2yp85/since\\\\_valve\\\\_already\\\\_punished\\\\_kuku\\\\_and\\\\_tnc\\\\_should/)||\\n|||11/2/2019|[Kuku banned from attending WESG also held in CQ](https://www.reddit.com/r/DotA2/comments/apfsgy/kuku\\\\_is\\\\_not\\\\_allowed\\\\_to\\\\_enter\\\\_chongqing\\\\_for\\\\_the/) [Valve response](https://www.reddit.com/r/DotA2/comments/aplzur/danielj\\\\_valve\\\\_responds\\\\_regarding\\\\_kuku\\\\_and/) [reddit's reaction](https://www.reddit.com/r/DotA2/comments/apgsen/valve\\\\_straight\\\\_out\\\\_lied\\\\_about\\\\_the\\\\_kuku\\\\_issue\\\\_just/)|\\n|||||\\n\\nI have added additional link labelled in numbers for some reference and context.\\n\\n\\u0026#x200B;\\n\\nWe can safely say that Solo's want for consistency and transparency on valve part have not been realised. Their latest update to work on a long term solution is not openly released to the public and we are not informed if Solo has changed his stance on avoiding Epicenter. Valve are still buying time to make their rules and we are already at the tail end of the DPC.\\n\\n\\u0026#x200B;\\n\\nFrom the interview, Ceb has personally said he will be willing to take the same punishment as Kuku for precedence sake and that he probably would not go to EPICENTER himself, because he started receiving messages with threats. I respect that he is will to hold himself to that punishment.\\n\\n\\u0026#x200B;\\n\\nNow that TI invites are on the line, the docking of TNC points in the DPC could make or brake the chances TNC have for a TI invite as they are one of the team hotly in contention.\\n\\n\\u0026#x200B;\\n\\nValve reluctance to make clear rules for their game makes it very difficult for us audience observe the DPC as objective. I hope they release the schematics of their rules at least before the start of the next minor.\", \"author_fullname\": \"t2_27i74989\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bupc9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559199157.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559222693.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to draw comparison between the 2 incidents.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ECeb\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EKuku\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23/05/2019 Pt1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.removeddit.com/r/DotA2/comments/bs2l9m/ogceb_new_lvl_tilting/\\\"\\u003ECeb made a crude remark in an EU pub\\u003C/a\\u003E \\u003Ca href=\\\"https://ibb.co/sgpM4bF\\\"\\u003EFirst reported by u/LVR322 but retracted after Ceb contacted him\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9tippm/just_after_col_drama_tnc_kuku_did_it_again_at/\\\"\\u003EKuku made the crude remark in a Sea pub\\u003C/a\\u003E\\u003Ca href=\\\"https://twitter.com/GodBlessMali/status/1058326847321202688\\\"\\u003EInitial chinese reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23/05/2019 Pt2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bs9ero/ogceb/\\\"\\u003EAnother player from same game makes the same complaint\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsahbl/ogcebs_first_reply_for_people_who_are_too_lazy_to/\\\"\\u003ECeb initial apology\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9trn4s/kuku_apologized_with_a_plot_twist\\\"\\u003EMender of his Weibo account created an excuse for the remark and was exposed\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E24/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsgsbp/vp_solo_wont_participate_at_epicenter_unless\\\"\\u003ESolo take personal action to avoid Epicenter unless Valve make clear of their rules openly\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9trn4s/kuku_apologized_with_a_plot_twist\\\"\\u003EMender of his Weibo account created an excuse for the remark and was exposed\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsxs9o/vp9pasha_people_want_to_see_the_rules_so_that\\\"\\u003EPasha also voices his displeasure with valve inconsistencies\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsuu97/one_day_wiser_twitlonger_by_ceb/\\\"\\u003ECeb second apology\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9w1547/the_major_and_professional_dota_players/\\\"\\u003EValve initial reaction to let things sort itself out\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsrtg6/cebs_first_thread_op_ceb_told_me_that_he_might/\\\"\\u003ECeb interview with u/LVR322 on the issue\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9wrkhi/tncs_manager_confesses_that_he_was_the_one_who/\\\"\\u003ETNC manager admit to his mistake\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bt6lhw/solo_valve_and_seb_are_working_on_a_longterm/\\\"\\u003EValve now working with all stakeholders for a long term solution\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E24/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9zxa5q/cyborgmatt_confirms_kuku_and_skem_are_banned/\\\"\\u003ECyborgmatt first mention of the ban of Kuku and Skem from the CQ major\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9zxbyv/valve_if_you_let_kuku_and_skem_and_be_banned_from\\\"\\u003EImmediate reaction from reddit\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9zyhh6/i_believe_in_talk_no_jutsu_and_i_hope_others_will/\\\"\\u003ECeb reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a05u22/tnc_on_the_responsibility_being_taken_for_kuku/\\\"\\u003ETNC punishment to Kuku and the manager for their actions\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E27/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a0vobe/congratulations_to_the_2nd_sea_team_to_qualify/\\\"\\u003ETNC qualifies for CQ major\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2/12/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2agjg/grant_putting_his_casting_career_on_the_line_for/\\\"\\u003EGrantgrant putting himself on the line for Kuku\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2fc30/chongqing_major_updates_megathread/\\\"\\u003EAction taken by other casters\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2bt4r/tncs_new_statement_about_the_issue/\\\"\\u003ECQ Org correspondence with TNC\\u003C/a\\u003E \\u003Ca href=\\\"https://www.facebook.com/840515722697409/posts/2043073252441644/\\\"\\u003EIMBATV refusal to contact TNC\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/12/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2uary/tnc_and_the_chongqing_major/\\\"\\u003EValve outright banning kuku after being unsatified with TNC handling\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2umx5/valve_this_is_the_most_disappointed_i_have_ever\\\"\\u003EPeople calling out valve for their inconsistencies\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2ulv2/valves_statement_doesnt_make_sense/\\\"\\u003E2\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a3b62g/the_problem_with_valves_statement_is_part_of/\\\"\\u003E3\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2yp85/since_valve_already_punished_kuku_and_tnc_should/\\\"\\u003E4\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11/2/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/apfsgy/kuku_is_not_allowed_to_enter_chongqing_for_the/\\\"\\u003EKuku banned from attending WESG also held in CQ\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/aplzur/danielj_valve_responds_regarding_kuku_and/\\\"\\u003EValve response\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/apgsen/valve_straight_out_lied_about_the_kuku_issue_just/\\\"\\u003Ereddit\\u0026#39;s reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EI have added additional link labelled in numbers for some reference and context.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe can safely say that Solo\\u0026#39;s want for consistency and transparency on valve part have not been realised. Their latest update to work on a long term solution is not openly released to the public and we are not informed if Solo has changed his stance on avoiding Epicenter. Valve are still buying time to make their rules and we are already at the tail end of the DPC.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the interview, Ceb has personally said he will be willing to take the same punishment as Kuku for precedence sake and that he probably would not go to EPICENTER himself, because he started receiving messages with threats. I respect that he is will to hold himself to that punishment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow that TI invites are on the line, the docking of TNC points in the DPC could make or brake the chances TNC have for a TI invite as they are one of the team hotly in contention.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EValve reluctance to make clear rules for their game makes it very difficult for us audience observe the DPC as objective. I hope they release the schematics of their rules at least before the start of the next minor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bupc9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Achuapy\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bupc9u/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bupc9u/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559193893.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\", \"author_fullname\": \"t2_j01kt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"table test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bum3x6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559173943.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559202526.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bum3x6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fighterace00\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bum3x6/table_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bum3x6/table_test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559173726.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"TL;DR: No tl;dr\\n\\nI refuse to use an absolute tierlist to make my decisions on what should I be choosing upon level-up. I'd rather base my ability choices on the weapon I'm using as well as previously selected abilities.\\n\\n#Scythe\\n\\n##Traits:\\n\\n* It boasts high damage per hit, so I like to aim for a Nuking-one-by-one build.\\n* It boasts high knockback per hit, so I like to keep that in mind, it makes ASPD not as desirable because you could be knocking back a flying enemy through a wall and then your next shots won't hit it.\\n\\n##Core Ability Choices:\\n\\n* **Multi-shot** firing an extra layer of arrows in every direction you fire is awesome, even if they only deal a portion of your original DPH, specially helpful if you're going in point-blank range, *get as many of this as you can!*\\n* **Rage**, it is an absolute must-pick, it can greatly increase your offensive capabilities when you're in a pinch (and Offense is the best defense when your defense is failing you), I find it satisfying to land a crit almost 2x as strong as usual because I'm under 100hp.\\n * You lose HP, you gain power INSTANTLY.\\n * You gain HP, you lose power but have more breathing room.\\n* **Wingman**, is another absolute must-pick, your spirits can help you survive by fully blocking shots, and this only gets better and better as enemies fire more often and their projectile trajectories are less-predictable each World.\\n* **ATK** increases damage based off your Base DPS (Damage per shot), so, the higher your base DPS is, makes this ability more desirable for this weapon and Scythe has the highest DPS.\\n* **Diagonal** is in the eyes of some is reliant on having **Bouncy-Wall**, and yeah *stray that could or could not hit an enemy* are good, they are not the only saving grace for this ability. Keep in mind that:\\n * Each diagonal scythe you fire from this ablity, deals 100% of your hit damage, so by getting it you're pouring out 3x as much damage out in the wind as opposed to only firing a frontal scythe.\\n * Some enemies like to get up close and personal with you, and geting 3 nukes to their face can quickly get you out of this pit, including boss monters.\\n * If you get multiple **ATK**/**CRIT** upgrades and **Rage**, this is an instant synergy.\\n * You can add **Invincible** for even more time to go nuts on butchering bosses from the inside out (The first time I cleared the Chapter 3 Dragon, I just walked under its face and stood there for 3-4 seconds before it died).\\n * Multiple hits means multiple chances to crit, and the only thing you like more than landing muliple nukes instantly every time you fire a shot, is some of them critting the boss to oblivion.\\n * If you're good enough you can get to point-blank distance without touching the enemy and sucessfully firing 3 nukes in their face, this makes it much more desirable than **Side**/**Rear** (which only really work for this strat when you're firing from inside the enemy hitbox).\\n* **Blood-thirst** Healing off every kill can really add up, specially if you're quickly nuking enemies without giving them a chance to damage you at all, it pairs up incredibly well with **Rage**.\\n* **Extra-arrow** Having an extra chance to crit is nice, but it only applies in front of you, all the previous upgrades sound better than this. The one saving grace for extra-arrow is how good it is as a first/second upgrade, don't get a third arrow unless none of the above upgrades are available.\\n\\n##After Core \\n\\nPick those after you're satisfied with your DPS or when nothing in the core is available, thing of these as \\\"Nice to have, but not necessary\\\":\\n\\n* **Energy Shield** shots getting blocked can be a very good thing, but these run in a constant circular motion that you can't control, if you have **Wingman**, this would be a skip since you can just run behind your spirit while trying to dodge and the nice guy will block the shot for you.\\n* **Invincible** Going invincible a couple seconds is great on tight spots, but given how fast fights are, this can be rather situational, prioritize the core abilities. \\n* **Freeze**, making your enemies stand still allows you to hit them more easily. Just keep in mind that when building freeze you don't really want to go **Bouncy+Pierce+Ricochet**, because it could really make your game more hazardous when you unintentionally mess with an enemy's firing pattern by freezing them in an enemy-crowded screen.\\n* **CRIT** increases both crit chance and crit damage. Albeit RNG-reliant, CRIT is a solid pickup option at this point, thie higher your atk and if you have rage, the more effective crit will be, this is multiplicative, so don't ever prioritize **CRIT** over **ATK**/**Rage**.\\n* **ASPD** is detrimental for your early game, but it can be very good when you're really getting stacked on core offensive abilities. This is not crucial because we want to prioritize our DPS.\\n\\n##Situational Choices\\n\\nThese depend on other factors that don't necessarily heighten the strengths of the Scythe, they could work, but wouldn't necessarily be as effective as with a *Knife/Boomerang*:\\n\\n* **Ricochet**, it is in paper a very good pick: Having every hit you land automatically directed to the closest enemy really helps you make the most of every shot. However, a noticeable caveat is when fighting small enemies, enemies will be constantly knocked all over the screen, possibly bringing enemies closer than you would like them to be. Of course, if you're nuking enemies in 2-3 shots, it becomes less hazardous. And the knockback is much smaller (or none) for bosses.\\n* **Bouncy-wall**, simply having BW allows you to hit an enemy multiple times with the same projectile as long as you're firing it at a perpendicular-ish direction from a wall, or when they are located in corners. This isn't the case if you have the scythe ricochet to a different enemy. You can try and go for **Bouncy-Wall+Pierce/Ricochet+Diagonal/Rear/Side** and go ham, but none of these abilities actually increase your DPS, which is what you should be aiming to increase when building for nukes. Besides, flooding your screen with your own projectiles can make you miss enemy projectiles aimed at you.\\n* **Pierce**, I like to think of it as poor-man's **Ricochet**, the main difference being the projectile keeps going forward if there are no enemies close to ricochet towards, you could make a case for **Pierce**+**Bouncy-Wall** when fighting immobile/Gigantic bosses, or you could go this way and hope for one or two **Diagonal** to drop along so you can go bonkers, but I already covered that on Bouncy-Wall.\\n* **Side**/**Rear**, I like to think of it as poor-man's **Diagonal**, you can point-blank with it when you're eating a boss from the inside-out, but other than that it doesn't add as much value as **Diagonal**.\\n* **Walk through water**/**Walk through walls**, these could be nice depending on what World you're going through, pick them at discretion (Usually they'll cost you Max HP from a devil deal).\\n\\nDon't even think about it:\\n\\n* **Fire**/**Bolt**/**Poison**/**Holy**, it scales off your *Attack* and not off your *DPS*, making every fire tick for the same amount through the entire game, it doesn't really synergize with a strong, low fire-rate weapon.\\n* **Headshot**, you don't fire many times with a Scythe, so the there are less chances for this to proc, this is counter-synergy.\\n* **Fire orbs/swords**/**Bolt orbs/swords**/**Poison orbs/swords** , even if you're point-blanking, the effects granted by these abilities just don't really add much to your performance.\\n* **Summon one-eyed bat**/**Summon Shadow-clone** I just don't like these abilities, they mess with your drops, you can confuse the shadows for enemies and be distracted from projectiles and it's pretty much useless against most boss monsters. Just DON'T.\\n* **Slow Projectile**, See... enemies move, and the slower your projectile travels, the less likely it is your hit will land. It doesn't really add much to what a Scythe offers, from my experience, I just stray away from it as much as I can, usually there are more desirable abilities to choose from.\\n* **Pet CRIT/ASPD/ATK**, you don't really control these guys, and I don't really like to have to rely on their attack patterns to clear content.\\n\\nWhen built right, the scythe tends to get stupid strong, but I believe this is the case for most weapons, as long as you're playing them right.\\n\\nAny abilities I might have missed are either because they are irrelevant or I haven't unlocked them yet (I'm sitting at stage 4, feel free to laugh and point at me while I have a lot of fun nuking mobs).\", \"author_fullname\": \"t2_h9397\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ability recommendations (Not a tierlist)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buicsw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559159476.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559183584.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETL;DR: No tl;dr\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI refuse to use an absolute tierlist to make my decisions on what should I be choosing upon level-up. I\\u0026#39;d rather base my ability choices on the weapon I\\u0026#39;m using as well as previously selected abilities.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EScythe\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003ETraits:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt boasts high damage per hit, so I like to aim for a Nuking-one-by-one build.\\u003C/li\\u003E\\n\\u003Cli\\u003EIt boasts high knockback per hit, so I like to keep that in mind, it makes ASPD not as desirable because you could be knocking back a flying enemy through a wall and then your next shots won\\u0026#39;t hit it.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ECore Ability Choices:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EMulti-shot\\u003C/strong\\u003E firing an extra layer of arrows in every direction you fire is awesome, even if they only deal a portion of your original DPH, specially helpful if you\\u0026#39;re going in point-blank range, \\u003Cem\\u003Eget as many of this as you can!\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERage\\u003C/strong\\u003E, it is an absolute must-pick, it can greatly increase your offensive capabilities when you\\u0026#39;re in a pinch (and Offense is the best defense when your defense is failing you), I find it satisfying to land a crit almost 2x as strong as usual because I\\u0026#39;m under 100hp.\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou lose HP, you gain power INSTANTLY.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou gain HP, you lose power but have more breathing room.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EWingman\\u003C/strong\\u003E, is another absolute must-pick, your spirits can help you survive by fully blocking shots, and this only gets better and better as enemies fire more often and their projectile trajectories are less-predictable each World.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EATK\\u003C/strong\\u003E increases damage based off your Base DPS (Damage per shot), so, the higher your base DPS is, makes this ability more desirable for this weapon and Scythe has the highest DPS.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E is in the eyes of some is reliant on having \\u003Cstrong\\u003EBouncy-Wall\\u003C/strong\\u003E, and yeah \\u003Cem\\u003Estray that could or could not hit an enemy\\u003C/em\\u003E are good, they are not the only saving grace for this ability. Keep in mind that:\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EEach diagonal scythe you fire from this ablity, deals 100% of your hit damage, so by getting it you\\u0026#39;re pouring out 3x as much damage out in the wind as opposed to only firing a frontal scythe.\\u003C/li\\u003E\\n\\u003Cli\\u003ESome enemies like to get up close and personal with you, and geting 3 nukes to their face can quickly get you out of this pit, including boss monters.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf you get multiple \\u003Cstrong\\u003EATK\\u003C/strong\\u003E/\\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E upgrades and \\u003Cstrong\\u003ERage\\u003C/strong\\u003E, this is an instant synergy.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou can add \\u003Cstrong\\u003EInvincible\\u003C/strong\\u003E for even more time to go nuts on butchering bosses from the inside out (The first time I cleared the Chapter 3 Dragon, I just walked under its face and stood there for 3-4 seconds before it died).\\u003C/li\\u003E\\n\\u003Cli\\u003EMultiple hits means multiple chances to crit, and the only thing you like more than landing muliple nukes instantly every time you fire a shot, is some of them critting the boss to oblivion.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf you\\u0026#39;re good enough you can get to point-blank distance without touching the enemy and sucessfully firing 3 nukes in their face, this makes it much more desirable than \\u003Cstrong\\u003ESide\\u003C/strong\\u003E/\\u003Cstrong\\u003ERear\\u003C/strong\\u003E (which only really work for this strat when you\\u0026#39;re firing from inside the enemy hitbox).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBlood-thirst\\u003C/strong\\u003E Healing off every kill can really add up, specially if you\\u0026#39;re quickly nuking enemies without giving them a chance to damage you at all, it pairs up incredibly well with \\u003Cstrong\\u003ERage\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EExtra-arrow\\u003C/strong\\u003E Having an extra chance to crit is nice, but it only applies in front of you, all the previous upgrades sound better than this. The one saving grace for extra-arrow is how good it is as a first/second upgrade, don\\u0026#39;t get a third arrow unless none of the above upgrades are available.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EAfter Core\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003EPick those after you\\u0026#39;re satisfied with your DPS or when nothing in the core is available, thing of these as \\u0026quot;Nice to have, but not necessary\\u0026quot;:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EEnergy Shield\\u003C/strong\\u003E shots getting blocked can be a very good thing, but these run in a constant circular motion that you can\\u0026#39;t control, if you have \\u003Cstrong\\u003EWingman\\u003C/strong\\u003E, this would be a skip since you can just run behind your spirit while trying to dodge and the nice guy will block the shot for you.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EInvincible\\u003C/strong\\u003E Going invincible a couple seconds is great on tight spots, but given how fast fights are, this can be rather situational, prioritize the core abilities. \\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFreeze\\u003C/strong\\u003E, making your enemies stand still allows you to hit them more easily. Just keep in mind that when building freeze you don\\u0026#39;t really want to go \\u003Cstrong\\u003EBouncy+Pierce+Ricochet\\u003C/strong\\u003E, because it could really make your game more hazardous when you unintentionally mess with an enemy\\u0026#39;s firing pattern by freezing them in an enemy-crowded screen.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E increases both crit chance and crit damage. Albeit RNG-reliant, CRIT is a solid pickup option at this point, thie higher your atk and if you have rage, the more effective crit will be, this is multiplicative, so don\\u0026#39;t ever prioritize \\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E over \\u003Cstrong\\u003EATK\\u003C/strong\\u003E/\\u003Cstrong\\u003ERage\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EASPD\\u003C/strong\\u003E is detrimental for your early game, but it can be very good when you\\u0026#39;re really getting stacked on core offensive abilities. This is not crucial because we want to prioritize our DPS.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ESituational Choices\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003EThese depend on other factors that don\\u0026#39;t necessarily heighten the strengths of the Scythe, they could work, but wouldn\\u0026#39;t necessarily be as effective as with a \\u003Cem\\u003EKnife/Boomerang\\u003C/em\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERicochet\\u003C/strong\\u003E, it is in paper a very good pick: Having every hit you land automatically directed to the closest enemy really helps you make the most of every shot. However, a noticeable caveat is when fighting small enemies, enemies will be constantly knocked all over the screen, possibly bringing enemies closer than you would like them to be. Of course, if you\\u0026#39;re nuking enemies in 2-3 shots, it becomes less hazardous. And the knockback is much smaller (or none) for bosses.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBouncy-wall\\u003C/strong\\u003E, simply having BW allows you to hit an enemy multiple times with the same projectile as long as you\\u0026#39;re firing it at a perpendicular-ish direction from a wall, or when they are located in corners. This isn\\u0026#39;t the case if you have the scythe ricochet to a different enemy. You can try and go for \\u003Cstrong\\u003EBouncy-Wall+Pierce/Ricochet+Diagonal/Rear/Side\\u003C/strong\\u003E and go ham, but none of these abilities actually increase your DPS, which is what you should be aiming to increase when building for nukes. Besides, flooding your screen with your own projectiles can make you miss enemy projectiles aimed at you.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPierce\\u003C/strong\\u003E, I like to think of it as poor-man\\u0026#39;s \\u003Cstrong\\u003ERicochet\\u003C/strong\\u003E, the main difference being the projectile keeps going forward if there are no enemies close to ricochet towards, you could make a case for \\u003Cstrong\\u003EPierce\\u003C/strong\\u003E+\\u003Cstrong\\u003EBouncy-Wall\\u003C/strong\\u003E when fighting immobile/Gigantic bosses, or you could go this way and hope for one or two \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E to drop along so you can go bonkers, but I already covered that on Bouncy-Wall.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESide\\u003C/strong\\u003E/\\u003Cstrong\\u003ERear\\u003C/strong\\u003E, I like to think of it as poor-man\\u0026#39;s \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E, you can point-blank with it when you\\u0026#39;re eating a boss from the inside-out, but other than that it doesn\\u0026#39;t add as much value as \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EWalk through water\\u003C/strong\\u003E/\\u003Cstrong\\u003EWalk through walls\\u003C/strong\\u003E, these could be nice depending on what World you\\u0026#39;re going through, pick them at discretion (Usually they\\u0026#39;ll cost you Max HP from a devil deal).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EDon\\u0026#39;t even think about it:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFire\\u003C/strong\\u003E/\\u003Cstrong\\u003EBolt\\u003C/strong\\u003E/\\u003Cstrong\\u003EPoison\\u003C/strong\\u003E/\\u003Cstrong\\u003EHoly\\u003C/strong\\u003E, it scales off your \\u003Cem\\u003EAttack\\u003C/em\\u003E and not off your \\u003Cem\\u003EDPS\\u003C/em\\u003E, making every fire tick for the same amount through the entire game, it doesn\\u0026#39;t really synergize with a strong, low fire-rate weapon.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EHeadshot\\u003C/strong\\u003E, you don\\u0026#39;t fire many times with a Scythe, so the there are less chances for this to proc, this is counter-synergy.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFire orbs/swords\\u003C/strong\\u003E/\\u003Cstrong\\u003EBolt orbs/swords\\u003C/strong\\u003E/\\u003Cstrong\\u003EPoison orbs/swords\\u003C/strong\\u003E , even if you\\u0026#39;re point-blanking, the effects granted by these abilities just don\\u0026#39;t really add much to your performance.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESummon one-eyed bat\\u003C/strong\\u003E/\\u003Cstrong\\u003ESummon Shadow-clone\\u003C/strong\\u003E I just don\\u0026#39;t like these abilities, they mess with your drops, you can confuse the shadows for enemies and be distracted from projectiles and it\\u0026#39;s pretty much useless against most boss monsters. Just DON\\u0026#39;T.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESlow Projectile\\u003C/strong\\u003E, See... enemies move, and the slower your projectile travels, the less likely it is your hit will land. It doesn\\u0026#39;t really add much to what a Scythe offers, from my experience, I just stray away from it as much as I can, usually there are more desirable abilities to choose from.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPet CRIT/ASPD/ATK\\u003C/strong\\u003E, you don\\u0026#39;t really control these guys, and I don\\u0026#39;t really like to have to rely on their attack patterns to clear content.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhen built right, the scythe tends to get stupid strong, but I believe this is the case for most weapons, as long as you\\u0026#39;re playing them right.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny abilities I might have missed are either because they are irrelevant or I haven\\u0026#39;t unlocked them yet (I\\u0026#39;m sitting at stage 4, feel free to laugh and point at me while I have a lot of fun nuking mobs).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buicsw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"snivs\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buicsw/ability_recommendations_not_a_tierlist/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buicsw/ability_recommendations_not_a_tierlist/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559154784.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts\\n**1 Correct Seed:** 15pts\\n**2 Correct Seeds:** +30pts(45 total)\\n**(S)emi(F)inalist:** 180pts\\n**(F)inalist:** 380pts\\n**(W)inners:** 780pts\\n**Score in favor of your winner:** 190pts\\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"author_fullname\": \"t2_ze11d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"RLCS Season 7 LAN Bracket Prediction\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bufkvu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559170095.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts\\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15pts\\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30pts(45 total)\\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180pts\\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380pts\\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780pts\\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190pts\\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bufkvu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"RyanDaLegendary\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559141295.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test 1\", \"author_fullname\": \"t2_jb0ym\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"up-test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bu8y26\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559124859.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest 1\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu8y26\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dekarde\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu8y26/uptest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559096059.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"https://i.redd.it/n748pckqj1131.png\\n\\nHere is our game\", \"author_fullname\": \"t2_143lgq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"n748pckqj1131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1080, \"x\": 1920, \"u\": \"https://i.redd.it/n748pckqj1131.png\"}, \"m\": \"image/png\", \"id\": \"n748pckqj1131\"}}, \"name\": \"t3_bu7uio\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/sr9ge0kfsgNx8x4rIDjOnKDSVCL18SDnkOraCwBHop8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559118474.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/n748pckqj1131.png\\\"\\u003Ehttps://i.redd.it/n748pckqj1131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is our game\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7uio\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vivid_Mauve\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu7uio/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu7uio/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559089674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test test\", \"author_fullname\": \"t2_143lgq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Claim Game\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bu7jss\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559116818.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7jss\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vivid_Mauve\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu7jss/claim_game/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu7jss/claim_game/\", \"subreddit_subscribers\": 709, \"created_utc\": 1559088018.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_nlpmjd2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I HATE THE FUCKING NlG8GERS, THEY SMELL DAAAWG. LIKE I DONT EVEN KNOW WHY, I THINK ITS BECAUSE OF THEIR DIRT MONKEY SKIN OR SOME SHIT LIKE THAT\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bu3xsz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ArScYM5Q48TrtDof4ST-2EeyNmmkxsGz6QkPcuHwYmI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559098637.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?auto=webp\\u0026s=82354c537d30bbf07eb9b7e3191e3834a8af2ce6\", \"width\": 640, \"height\": 838}, \"resolutions\": [{\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=75ec4f00b631f497c0aafdef0e0a758953e48a3a\", \"width\": 108, \"height\": 141}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c0e25d181ba2cb381ec414e0ac76752eb45b11f6\", \"width\": 216, \"height\": 282}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8eff642156f04ce1ad2e42bc2fb782b11b88d271\", \"width\": 320, \"height\": 419}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f6fb42bc9a8b65f8be8afac2b6190130b5463160\", \"width\": 640, \"height\": 838}], \"variants\": {}, \"id\": \"950GL9F_ZaUbbJK3rJxkM1RLCMb6VYKACygOpjTiR4s\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu3xsz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KFC_MANAGER_TRIHARD\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu3xsz/i_hate_the_fucking_nlg8gers_they_smell_daaawg/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/y5uqepxj10131.jpg\", \"subreddit_subscribers\": 709, \"created_utc\": 1559069837.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_kvp37q4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_btnd7z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Onn2p7TcF2NuasNIGcR0CfMWDLEDmV12cjySeav5UGM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559000072.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?auto=webp\\u0026s=090d65871b6a42fa951e66396dce697552b174c1\", \"width\": 1600, \"height\": 1600}, \"resolutions\": [{\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=15a7e193fed161120c580133451cc0809b4e3257\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=005721458dcadca85be7d27fd446e30eff44415b\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3eb3e6fba97d72e1efc6f464dae29c2de85ec963\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=3a3eeba7579458cb8713415f60484fa0d23f402f\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=150168de16c3811111564cb92578ec189608ea9d\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=3df90efe0f287fa027b51ea347ba65096d893233\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"FqP4WYIjTnkAX8xVjzbzRRdIW6207vOaOhoPRV5_-Xg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btnd7z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"agasitko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btnd7z/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/4mvy2odfwr031.png\", \"subreddit_subscribers\": 709, \"created_utc\": 1558971272.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Just migrated the unit tests for one of our projects from Boost.Test to Doctest and decided to share the time measurements while I still have the two branches at hand. You can see the number of the test cases in the run-time output below.\\n\\nThe tests were done on virtual machine with 4 cores and 8 GB of RAM.\\n\\nThe build was done with GCC 7.3 with `-std='c++17' -O2 -Wall -Wextra -Werror -Winvalid-pch` and 4 threads for parallel building. The setup with Doctest has two additional flags:\\n\\n`-DDOCTEST_CONFIG_SUPER_FAST_ASSERTS -DDOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION`.\\n\\nThe Boost version that I'm using is 1.69 and the Doctest version is 2.3.2.\\n\\nFor the run-time tests, I ran them 3 times each and picked the slower ones. The timings for each version was in the same ballpark anyway.\\n\\nFull rebuild, including the precompiled header, with Boost.Test\\n\\n real \\u00a0 \\u00a01m5.710s \\n user \\u00a0 \\u00a03m42.350s \\n sys \\u00a0 \\u00a0 0m5.751s\\n\\nFull rebuild, including the precompiled header, with Doctest\\n\\n real \\u00a0 \\u00a00m52.567s \\n user \\u00a0 \\u00a02m40.018s \\n sys \\u00a0 \\u00a0 0m4.993s \\n\\nRebuild, without the precompiled header, with Boost.Test\\n\\n real \\u00a0 \\u00a01m2.391s \\n user \\u00a0 \\u00a03m40.168s \\n sys \\u00a0 \\u00a0 0m5.532s \\n\\nRebuild, without the precompiled header, with Doctest\\n\\n real \\u00a0 \\u00a00m46.351s \\n user \\u00a0 \\u00a02m38.131s \\n sys \\u00a0 \\u00a0 0m4.029s \\n\\nRun-time with Boost.Test\\n\\n time ./tests.bin -r short \\n Running 149 test cases... \\n \\n Test module \\\"p3_tests\\\" has passed with: \\n \\u00a0 149 test cases out of 149 passed \\n \\u00a0 1166 assertions out of 1166 passed \\n \\n real \\u00a0 \\u00a00m0.056s \\n user \\u00a0 \\u00a00m0.025s \\n sys \\u00a0 \\u00a0 0m0.031s \\n\\nRun-time with Doctest\\n\\n time ./tests.bin \\n [doctest] doctest version is \\\"2.3.2\\\" \\n [doctest] run with \\\"--help\\\" for options \\n =============================================================================== \\n [doctest] test cases: \\u00a0 \\u00a0149 | \\u00a0 \\u00a0149 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\u00a0 \\u00a0 \\u00a00 skipped \\n [doctest] assertions: \\u00a0 1167 | \\u00a0 1167 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\n [doctest] Status: SUCCESS! \\n \\n real \\u00a0 \\u00a00m0.042s \\n user \\u00a0 \\u00a00m0.021s \\n sys \\u00a0 \\u00a0 0m0.021s\", \"author_fullname\": \"t2_tk6dd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Timing Boost.Test and Doctest\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btkt4w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558984671.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust migrated the unit tests for one of our projects from Boost.Test to Doctest and decided to share the time measurements while I still have the two branches at hand. You can see the number of the test cases in the run-time output below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe tests were done on virtual machine with 4 cores and 8 GB of RAM.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe build was done with GCC 7.3 with \\u003Ccode\\u003E-std=\\u0026#39;c++17\\u0026#39; -O2 -Wall -Wextra -Werror -Winvalid-pch\\u003C/code\\u003E and 4 threads for parallel building. The setup with Doctest has two additional flags:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E-DDOCTEST_CONFIG_SUPER_FAST_ASSERTS -DDOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Boost version that I\\u0026#39;m using is 1.69 and the Doctest version is 2.3.2.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the run-time tests, I ran them 3 times each and picked the slower ones. The timings for each version was in the same ballpark anyway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFull rebuild, including the precompiled header, with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a01m5.710s \\nuser \\u00a0 \\u00a03m42.350s \\nsys \\u00a0 \\u00a0 0m5.751s\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EFull rebuild, including the precompiled header, with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a00m52.567s \\nuser \\u00a0 \\u00a02m40.018s \\nsys \\u00a0 \\u00a0 0m4.993s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERebuild, without the precompiled header, with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a01m2.391s \\nuser \\u00a0 \\u00a03m40.168s \\nsys \\u00a0 \\u00a0 0m5.532s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERebuild, without the precompiled header, with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a00m46.351s \\nuser \\u00a0 \\u00a02m38.131s \\nsys \\u00a0 \\u00a0 0m4.029s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERun-time with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Etime ./tests.bin -r short \\nRunning 149 test cases... \\n\\nTest module \\u0026quot;p3_tests\\u0026quot; has passed with: \\n\\u00a0 149 test cases out of 149 passed \\n\\u00a0 1166 assertions out of 1166 passed \\n\\nreal \\u00a0 \\u00a00m0.056s \\nuser \\u00a0 \\u00a00m0.025s \\nsys \\u00a0 \\u00a0 0m0.031s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERun-time with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Etime ./tests.bin \\n[doctest] doctest version is \\u0026quot;2.3.2\\u0026quot; \\n[doctest] run with \\u0026quot;--help\\u0026quot; for options \\n=============================================================================== \\n[doctest] test cases: \\u00a0 \\u00a0149 | \\u00a0 \\u00a0149 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\u00a0 \\u00a0 \\u00a00 skipped \\n[doctest] assertions: \\u00a0 1167 | \\u00a0 1167 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\n[doctest] Status: SUCCESS! \\n\\nreal \\u00a0 \\u00a00m0.042s \\nuser \\u00a0 \\u00a00m0.021s \\nsys \\u00a0 \\u00a0 0m0.021s\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btkt4w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pavel_v\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btkt4w/timing_boosttest_and_doctest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btkt4w/timing_boosttest_and_doctest/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558955871.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_znwfd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 109, \"hide_score\": false, \"name\": \"t3_btgu09\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/G7me3nXuT4WiSJ_5w66HsnXsLrt6szjE7w7XGClSb8Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558954744.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?auto=webp\\u0026s=393cdc6165f09e5e16b544fb51e88087b027c5c0\", \"width\": 499, \"height\": 389}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fa7f679c4a6c8b1c74b7d9df06e2157d168876e6\", \"width\": 108, \"height\": 84}, {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c96d97f5ca9370651816f1391b1a55a33cce980a\", \"width\": 216, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d436b0e54126c4dc606260434294b6064c053d07\", \"width\": 320, \"height\": 249}], \"variants\": {}, \"id\": \"E-YB0z8GJjScZr1sRZLjjEz-pdps6apmJB4z1z2yzLA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btgu09\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Conan_JP\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btgu09/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.imgur.com/5CLcQGP.png\", \"subreddit_subscribers\": 709, \"created_utc\": 1558925944.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\nJust comment before pm\\n\\nLocal: 79401\\n\\n[Timestamps](https://imgur.com/a/qfjjjRx)\\n\\n|Item|Local + shipping|Description|\\n|:-|:-|:-|\\n|ASUS Prime X470-Pro AMD Ryzen|$100 shipped|Have original box, SLI adapter, and screws|\\n|2x G.Skill TridentZ RGB Series 8GB|$105 shipped|running at 3200 MHz|\\n|EVGA Supernova 750 G2, 80+ Gold 750W|$80 shipped|Fully Modular, EVGA ECO Mode|\\n|ANNE PRO 2 RGB|$75shipped|Missing Y Key replaced w/ colored key cap|\\n|SteelSeries Arcits 5 RGB ( Headset)|$40 shipped|Works perfectly although there is a small scuff|\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"E2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btdfqu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558934579.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust comment before pm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELocal: 79401\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/qfjjjRx\\\"\\u003ETimestamps\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ELocal + shipping\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EASUS Prime X470-Pro AMD Ryzen\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$100 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHave original box, SLI adapter, and screws\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2x G.Skill TridentZ RGB Series 8GB\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$105 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Erunning at 3200 MHz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEVGA Supernova 750 G2, 80+ Gold 750W\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$80 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFully Modular, EVGA ECO Mode\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EANNE PRO 2 RGB\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$75shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMissing Y Key replaced w/ colored key cap\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESteelSeries Arcits 5 RGB ( Headset)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EWorks perfectly although there is a small scuff\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?auto=webp\\u0026s=e3cd8025431b8d4e4a001c163dff8247a6d332fa\", \"width\": 2048, \"height\": 1536}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5ee5cf7d1be3464420cac8148fb7776b3db5ce4e\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=36cf5d02c9cf110ea13a4a1805bdd615aeb871a8\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9fb11c2092ec2a4287ec4cc436ab14659175ce6b\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=4a74f9cb14b1f7a893dc86ed40c19d0e773ba8f6\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=740f8d332c2129b8abead72eef7968317d5cde8d\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c46ac181d7dd9625a47805f6b36077275271ad4f\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"3O1ITl-5hWXF7luK9SXQMRkyhjwvYMhGJEuuQC-l1i4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btdfqu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/PostPreview/comments/btdfqu/e2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btdfqu/e2/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558905779.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"So for starters, please comment before PM'ing me. None of the listings include shipping, I can give you a quote if you tell me what you want and give me your zip code. Anything that can fit in a small priority mail box will be a $7.20 flat fee. Everything else will vary. I have some trades on here as well as excellent feedback on ebay so if you would like to see that let me know.\\n\\n\\u0026#x200B;\\n\\n|Item|Description|Price|\\n|:-|:-|:-|\\n|Black Realforce 87u|Great working condition. No keycaps included, but it has been converted to mini USB and jtk mx sliders|$115|\\n|IBM Model M |THIS IS NOT WORKING, IT IS FOR PARTS ONLY. | $10|\\n|Battlestation io Wrist Rest |Purple Heart Color, made for a 60% keyboard|$30|\\n|HKP Gas Mask |Green Poison black eyes|$14|\\n|Keyforge Osiris|Chlorium Color|$40|\\n|girldc Stormtrooper|Black Stormtrooper (Looks dark grey)|$30|\\n|JTK Sliders|Jtk purple sliders installed once and removed shortly after|$15|\\n|Alps Keyset|Full keyset I pulled off of a vintage board. Let me know if you want more pictures|$10|\\n|Tektronix F\\u0026F|Foam and Foil board, i'm not totally sure if it works. Chassis is made out of metal and VERY heavy|$25|\\n\\n\\u0026#x200B;\\n\\nAs for the trade, I don't want to pay anything extra, if you find stuff you like and you want to trade for a black HHKB stock or modded, just let me know.\", \"author_fullname\": \"t2_xrrbz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[US-NJ][H]Realforce 87u, Keyboards, Artisans, Battlestation 10 wrist rest [W]Paypal, Black HHKB\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btb4ye\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558895507.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558923254.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo for starters, please comment before PM\\u0026#39;ing me. None of the listings include shipping, I can give you a quote if you tell me what you want and give me your zip code. Anything that can fit in a small priority mail box will be a $7.20 flat fee. Everything else will vary. I have some trades on here as well as excellent feedback on ebay so if you would like to see that let me know.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlack Realforce 87u\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGreat working condition. No keycaps included, but it has been converted to mini USB and jtk mx sliders\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$115\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EIBM Model M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETHIS IS NOT WORKING, IT IS FOR PARTS ONLY.\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBattlestation io Wrist Rest\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurple Heart Color, made for a 60% keyboard\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHKP Gas Mask\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGreen Poison black eyes\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$14\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EKeyforge Osiris\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EChlorium Color\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Egirldc Stormtrooper\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlack Stormtrooper (Looks dark grey)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJTK Sliders\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJtk purple sliders installed once and removed shortly after\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$15\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EAlps Keyset\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFull keyset I pulled off of a vintage board. Let me know if you want more pictures\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETektronix F\\u0026amp;F\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFoam and Foil board, i\\u0026#39;m not totally sure if it works. Chassis is made out of metal and VERY heavy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$25\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for the trade, I don\\u0026#39;t want to pay anything extra, if you find stuff you like and you want to trade for a black HHKB stock or modded, just let me know.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btb4ye\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"blackriver35\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btb4ye/usnjhrealforce_87u_keyboards_artisans/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btb4ye/usnjhrealforce_87u_keyboards_artisans/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558894454.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Test\\n\\nhttps://i.redd.it/43djennmkj031.jpg\\n\\nhttps://i.redd.it/bjdfsn4pkj031.jpg\\n\\nanother test\", \"author_fullname\": \"t2_11gzbx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"blub\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 56, \"hide_score\": false, \"media_metadata\": {\"43djennmkj031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 775, \"x\": 1920, \"u\": \"https://i.redd.it/43djennmkj031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"43djennmkj031\"}, \"bjdfsn4pkj031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 775, \"x\": 1920, \"u\": \"https://i.redd.it/bjdfsn4pkj031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"bjdfsn4pkj031\"}}, \"name\": \"t3_bt6wuy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/0UAaA8XpjYLxWwuXJiyi-R4dMzJm8wGf2wmAH_mbjlY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558899273.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/43djennmkj031.jpg\\\"\\u003Ehttps://i.redd.it/43djennmkj031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/bjdfsn4pkj031.jpg\\\"\\u003Ehttps://i.redd.it/bjdfsn4pkj031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eanother test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt6wuy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AnotherDayOfLife\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt6wuy/blub/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt6wuy/blub/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558870473.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\#opioid #statistics #pandemic #emergency #drugs\\n\\nhttps://i.redd.it/od006dfy9j031.png\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Crisis - By the Numbers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"od006dfy9j031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1008, \"x\": 1800, \"u\": \"https://i.redd.it/od006dfy9j031.png\"}, \"m\": \"image/png\", \"id\": \"od006dfy9j031\"}}, \"name\": \"t3_bt6gq0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ULg29n5F6KbOENW5WKQV8hVHUaCSmwUV2Pvi7lAzTnw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558895647.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#opioid #statistics #pandemic #emergency #drugs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/od006dfy9j031.png\\\"\\u003Ehttps://i.redd.it/od006dfy9j031.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt6gq0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt6gq0/the_opioid_crisis_by_the_numbers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt6gq0/the_opioid_crisis_by_the_numbers/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558866847.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Crisis - By the Numbers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bt570v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/J57kjqkqWulPTF0F2CGsfdOw-ZHKtDF8-vmDnuC1ZrA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558884640.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?auto=webp\\u0026s=883d696a42fd4b489a2443ac7948425234dead06\", \"width\": 1800, \"height\": 1008}, \"resolutions\": [{\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b2271e2b6a77c996f1b68d98c2f21282f5fc64af\", \"width\": 108, \"height\": 60}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a735587be8be935850d72f92104abbd7524f7989\", \"width\": 216, \"height\": 120}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f2b57eb686d7a9cae234ef30d0929508d82f9b0c\", \"width\": 320, \"height\": 179}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=0b51cbc6ab0ed7c1b0603fa9bc60be8a314cfd00\", \"width\": 640, \"height\": 358}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=b6d4f46ac0317e4d199b1a2314dca58d625149f3\", \"width\": 960, \"height\": 537}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=a90b09a8c6c8fb24697eac10c348ab894bbc8a62\", \"width\": 1080, \"height\": 604}], \"variants\": {}, \"id\": \"i4RH5BnT_PvxAameb4XpCaX1qIqRrxlNsTuO6tn_QXU\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt570v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt570v/the_opioid_crisis_by_the_numbers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/bgwlznx4di031.png\", \"subreddit_subscribers\": 709, \"created_utc\": 1558855840.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2hmmk43f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Falcon view...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bt1azs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5yIb3YjCt03EmRM3zlVIMsQhCs43pA7wbEqktH19Cfc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558856981.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?auto=webp\\u0026s=3c1bb6209fd60cd5f0a5f7df4bb35496e2fa1589\", \"width\": 1440, \"height\": 2560}, \"resolutions\": [{\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0ef05f2642c8199aa57f21c0d54b9c69b5f71d5f\", \"width\": 108, \"height\": 192}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=df094af1b4ddd4fc3447cf0656ec22e7f7c02e78\", \"width\": 216, \"height\": 384}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6a092c4d9a07e3789a75ce521d34e21d29b86f4a\", \"width\": 320, \"height\": 568}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=474632e119d567afa4d85306584e47fb276ac835\", \"width\": 640, \"height\": 1137}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=db7e4fc3eaa4d78682a1f9bf880fc8414d69059f\", \"width\": 960, \"height\": 1706}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d6be90f315a480dc381dc3ec39f55f2a6c961fd2\", \"width\": 1080, \"height\": 1920}], \"variants\": {}, \"id\": \"ARZyk4zeMGPtRhvZx49MKXfvtDuF1hkTmnswophEGiA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt1azs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aantoniss\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt1azs/falcon_view/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/jx5956qz2g031.jpg\", \"subreddit_subscribers\": 709, \"created_utc\": 1558828181.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_35aabssu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bt13kk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/bUwI22Oy5hk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bt13kk\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Tn0uh2-gqGg07MFL1mh36xt2XVPaD43KQ-yyrgULlgw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558855680.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?auto=webp\\u0026s=9ae2a3720570e28a4271afd504fe7644c5ae6af5\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e891ae8f3829df0995f789d716b42297d899791d\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e9528bd0e8d23e42b9a583446d121186f9dd3e0a\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=57b456dd9a2dd298987a841d98226090b702f41b\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"GFq8VRTcX1rYutnbOlEzIndyVsutsicYznT49lCUJ_c\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt13kk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Goldymires\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt13kk/ultimate_skyrim_room_filled_with_magelight_balls/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=bUwI22Oy5hk\\u0026feature=youtu.be\", \"subreddit_subscribers\": 709, \"created_utc\": 1558826880.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/bUwI22Oy5hk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"tested\", \"author_fullname\": \"t2_f4ra2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing 123\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bt0w6n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558829283.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558854391.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etested\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt0w6n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"User09060657542\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt0w6n/testing_123/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558825591.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://imgur.com/register/thirdparty/google](https://imgur.com/register/thirdparty/google)\", \"author_fullname\": \"t2_2zkr00l4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"BvS\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsyl0k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558841880.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/register/thirdparty/google\\\"\\u003Ehttps://imgur.com/register/thirdparty/google\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?auto=webp\\u0026s=d94e7feac682dd559e4a8b3fbbdd38d08adf1d44\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=de5d021977c520c60b9fe96c226154cceb44ec68\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=733ff487f388d32420b5247b49f7728a869fafba\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=69eeff9db988ab6c60ccca380e0cb106af7d12f6\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=dcacd413d3fad44ec5470093a98420843adb1dbb\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=58c767d070db90d652c921e75dd04d2e5bf260b1\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9b4e777c321d825eb745725cb99d589cb8fc7df8\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"nHmB3tUVKrCUK7BucSpK1ZRAoN-XyaQHrTTqr75VHnw\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsyl0k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"T-8-0-0\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsyl0k/bvs/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558813080.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"In the 1990's, opioids became available to the general public with reassurance from pharmaceutical companies that patients would not become addicted to them. Fast forward 25 years and now we have a global epidemic. The widespread misuse of opioids can be related to the greater rates of prescription of opioids. According to the World Health Organisation roughly 118,000 people lost their lives due to opioid use disorders and an estimated 27 million people suffer from opioid use disorders.\\n\\n\\\\#opioid #opioidabuse #addiction #crisis #publichealth\\n\\n\\u0026#x200B;\\n\\nFor more information visit: [https://wp.deakin.edu.au/deakinsso\\\\_242366117/2019/04/10/the-painkillers-are-killing-us/](https://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/)\\n\\nhttps://i.redd.it/60b8yo4o5e031.jpg\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Epidemic\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"media_metadata\": {\"60b8yo4o5e031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1375, \"x\": 2500, \"u\": \"https://i.redd.it/60b8yo4o5e031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"60b8yo4o5e031\"}}, \"name\": \"t3_bsx5gx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/XQozoeoqb6ku7BcrTRAau0oUH_lExeTt6WxLONr8RpY.jpg\", \"edited\": 1558866228.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558834399.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn the 1990\\u0026#39;s, opioids became available to the general public with reassurance from pharmaceutical companies that patients would not become addicted to them. Fast forward 25 years and now we have a global epidemic. The widespread misuse of opioids can be related to the greater rates of prescription of opioids. According to the World Health Organisation roughly 118,000 people lost their lives due to opioid use disorders and an estimated 27 million people suffer from opioid use disorders.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#opioid #opioidabuse #addiction #crisis #publichealth\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more information visit: \\u003Ca href=\\\"https://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/\\\"\\u003Ehttps://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/60b8yo4o5e031.jpg\\\"\\u003Ehttps://i.redd.it/60b8yo4o5e031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?auto=webp\\u0026s=7cdb1bbd0e34ff3d8c3f0ec52de03f8436d374f3\", \"width\": 1024, \"height\": 687}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5ec6842c7828c02fe7f3fde357f0a4ab2ee61791\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4e3991a079067adb7748d2dcb08fe5b9b6a9dc35\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c94c9b8c0a597eb5e84d847bb1e25c757b1cb520\", \"width\": 320, \"height\": 214}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b596c3cfff0267b17a13844f43c079a3f66e6494\", \"width\": 640, \"height\": 429}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=fbf7168e509bdd47347b08ba83c83d38fdd8821d\", \"width\": 960, \"height\": 644}], \"variants\": {}, \"id\": \"Oezj5KFHw35YTNV7f2ysRbVTt0E7sP5x-007SvngELE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx5gx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx5gx/the_opioid_epidemic/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsx5gx/the_opioid_epidemic/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558805599.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3rko2hk2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Season 8. Expectation VS Reality - Coub\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 76, \"hide_score\": false, \"name\": \"t3_bsx4cw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 329}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"coub.com\", \"oembed\": {\"provider_url\": \"https://coub.com/\", \"description\": \"Season 8. Expectation VS Reality - Coub - The Biggest Video Meme Platform by \\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"title\": \"Season 8. Expectation VS Reality\", \"url\": \"https://coub.com/view/1uqk30\", \"type\": \"video\", \"author_name\": \"\\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"height\": 329, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 1280, \"version\": \"1.0\", \"provider_name\": \"Coub\", \"thumbnail_url\": \"https://coubsecure-s.akamaihd.net/get/b189/p/coub/simple/cw_image/fc2f77efef2/92fbfabd438d77bc688f2/big_1558602182_00030.jpg\", \"thumbnail_height\": 700}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bsx4cw\", \"height\": 329}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/yYWmiAtN3NIBqz36GFAuzE1Gm9bfyBqWIvr-NLCrdiE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558834230.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"coub.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?auto=webp\\u0026s=2c537c6f4db6a7134e41a1fed83f527a9205a6fc\", \"width\": 1280, \"height\": 700}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8379e056ce44d98ba8cabcedc3e57a5179eb8077\", \"width\": 108, \"height\": 59}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=8546634eedbc00136050661223afe85fa0df9af7\", \"width\": 216, \"height\": 118}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=716bea022cac586a80f5e0d8a91506edd0d83528\", \"width\": 320, \"height\": 175}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d3048a26334e43b4c90357ee44fcdcc546b50f00\", \"width\": 640, \"height\": 350}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=3210c1f30af3c93e6c4667634d00863669de17f4\", \"width\": 960, \"height\": 525}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b15926a8817d038edddebbea83e70e9b359050e6\", \"width\": 1080, \"height\": 590}], \"variants\": {}, \"id\": \"2zfAfglMEQHb1kq47IlSy9xMsGT3DskaBFmGCWHMJm4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx4cw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hunsorgelargen\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx4cw/season_8_expectation_vs_reality_coub/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://coub.com/view/1uqk30\", \"subreddit_subscribers\": 709, \"created_utc\": 1558805430.0, \"media\": {\"type\": \"coub.com\", \"oembed\": {\"provider_url\": \"https://coub.com/\", \"description\": \"Season 8. Expectation VS Reality - Coub - The Biggest Video Meme Platform by \\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"title\": \"Season 8. Expectation VS Reality\", \"url\": \"https://coub.com/view/1uqk30\", \"type\": \"video\", \"author_name\": \"\\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"height\": 329, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 1280, \"version\": \"1.0\", \"provider_name\": \"Coub\", \"thumbnail_url\": \"https://coubsecure-s.akamaihd.net/get/b189/p/coub/simple/cw_image/fc2f77efef2/92fbfabd438d77bc688f2/big_1558602182_00030.jpg\", \"thumbnail_height\": 700}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Epidemic\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 77, \"hide_score\": false, \"name\": \"t3_bsx03j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/QMgLgBWZo2J6BvtEUhCtq1puxq_1nXJklQluEpY1eVc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558833593.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?auto=webp\\u0026s=112c158959edb120ed7a4b2c6af8005b24adfae3\", \"width\": 2500, \"height\": 1375}, \"resolutions\": [{\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=58286f10819d029635929b919b885efe84113bc1\", \"width\": 108, \"height\": 59}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5b950ddd484fbbbf695b9d78f249484dd503ca34\", \"width\": 216, \"height\": 118}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b1627f91c9c141adc0907618e1104fb76265822e\", \"width\": 320, \"height\": 176}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b6a7d4e67ba17921827b1fc20be649529936fbf2\", \"width\": 640, \"height\": 352}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=51b4a2ca46ae9a14de2d1526ea16ee912fc2d5fb\", \"width\": 960, \"height\": 528}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=97c530e4986d9fb9ad52ce225a3776d6b21d34db\", \"width\": 1080, \"height\": 594}], \"variants\": {}, \"id\": \"r0QQSeXyt6cpVPwloW0dlXs4ghmbkHS-vOX8K4sT4o8\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx03j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx03j/the_opioid_epidemic/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/hjkw4r1g5e031.jpg\", \"subreddit_subscribers\": 709, \"created_utc\": 1558804793.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_225ztxy6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bsveoo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Kane disposes of Seth\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"heiamll\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/goQiwNZzoVA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/heiamll\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bsveoo\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/a3QmR3Wv2LyuxQEMuRGkWJMyV3qVSzueTO5c6mQqVbU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558825096.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?auto=webp\\u0026s=7d0ecdb5c17f93a12cd53f87a9c8d41e27f6731f\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2e2b3e97b45ce73dcddf4449e6cbfc56ff39fc3f\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e84cf3f890c1d24edfefc7d96ef383b5bc317490\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2c1318b4441b4e7015d9d1f514c83f6f5afbafd6\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"JI-LuN1c02BWSJpGlnUncuUUM9PwrbfPwhq5sYuo_jU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsveoo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ihuarraquax__\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsveoo/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=goQiwNZzoVA\", \"subreddit_subscribers\": 709, \"created_utc\": 1558796296.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Kane disposes of Seth\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"heiamll\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/goQiwNZzoVA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/heiamll\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"B\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\\nThay v\\u00ec th\\u1ed1ng nh\\u1ea5t c\\u01a1 quan h\\u00e0nh ch\\u00ednh c\\u1ea3 n\\u01b0\\u1edbc c\\u00f9ng gi\\u1edd l\\u00e0m vi\\u1ec7c, \\u0111\\u1ec1 xu\\u1ea5t m\\u1edbi cho ph\\u00e9p c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng quy \\u0111\\u1ecbnh gi\\u1edd linh ho\\u1ea1t. \\n\\nB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1eeb 8h30\\nSau g\\u1ea7n 20 ng\\u00e0y c\\u00f4ng b\\u1ed1 t\\u1edd tr\\u00ecnh d\\u1ef1 th\\u1ea3o s\\u1eeda \\u0111\\u1ed5i B\\u1ed9 Lu\\u1eadt Lao \\u0111\\u1ed9ng n\\u0103m 2012, ng\\u00e0y 16/5, B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u00e3 \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i n\\u1ed9i dung \\u0111\\u1ec1 xu\\u1ea5t v\\u1ec1 gi\\u1edd l\\u00e0m vi\\u1ec7c.\\n\\n\\u00d4ng Nguy\\u1ec5n V\\u0103n B\\u00ecnh, Ph\\u00f3 v\\u1ee5 tr\\u01b0\\u1edfng V\\u1ee5 ph\\u00e1p ch\\u1ebf (B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 x\\u00e3 h\\u1ed9i), cho hay v\\u1eeba qua B\\u1ed9 nh\\u1eadn \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u \\u00fd ki\\u1ebfn \\u0111\\u00f3ng g\\u00f3p c\\u1ee7a ng\\u01b0\\u1eddi d\\u00e2n v\\u00e0 c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng n\\u00ean \\u0111\\u00e3 ti\\u1ebfp thu, \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1ea1i c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng \\u0111\\u1ec3 linh ho\\u1ea1t, ph\\u00f9 h\\u1ee3p v\\u1edbi \\u0111i\\u1ec1u ki\\u1ec7n kh\\u00ed h\\u1eadu m\\u1ed7i v\\u00f9ng mi\\u1ec1n. \\n\\nC\\u1ee5 th\\u1ec3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c s\\u1eeda l\\u1ea1i nh\\u01b0 sau: \\\"Giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\\". \\n\\n\\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc c\\u1ea5p trung \\u01b0\\u01a1ng v\\u00e0 c\\u00e1c \\u0111\\u00f4 th\\u1ecb l\\u1edbn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat (tr\\u1eeb nh\\u1eefng \\u0111\\u01a1n v\\u1ecb ho\\u1eb7c b\\u1ed9 ph\\u1eadn ph\\u1ea3i th\\u01b0\\u1eddng tr\\u1ef1c 24/24 gi\\u1edd \\u0111\\u1ec3 \\u0111\\u1ea3m b\\u1ea3o li\\u00ean th\\u00f4ng c\\u00f4ng vi\\u1ec7c ho\\u1eb7c tr\\u1ef1c ti\\u1ebfp gi\\u1ea3i quy\\u1ebft c\\u00f4ng vi\\u1ec7c v\\u1edbi ng\\u01b0\\u1eddi d\\u00e2n). \\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc \\u1edf \\u0111\\u1ecba ph\\u01b0\\u01a1ng th\\u00ec th\\u1ed1ng nh\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c m\\u00f9a h\\u00e8 v\\u00e0 m\\u00f9a \\u0111\\u00f4ng theo \\u0111i\\u1ec1u ki\\u1ec7n \\u0111\\u1ecba l\\u00fd.\\n\\nPh\\u01b0\\u01a1ng \\u00e1n 2 c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c gi\\u1eef nh\\u01b0 hi\\u1ec7n h\\u00e0nh. Theo \\u0111\\u00f3, th\\u1eddi gian l\\u00e0m vi\\u1ec7c kh\\u00f4ng quy \\u0111\\u1ecbnh trong B\\u1ed9 lu\\u1eadt Lao \\u0111\\u1ed9ng m\\u00e0 n\\u00eau t\\u1ea1i c\\u00e1c v\\u0103n b\\u1ea3n h\\u00e0nh ch\\u00ednh; \\u0111\\u1ed1i v\\u1edbi c\\u00e1c B\\u1ed9 do Th\\u1ee7 t\\u01b0\\u1edbng quy\\u1ebft \\u0111\\u1ecbnh; \\u0111\\u1ed1i v\\u1edbi UBND v\\u00e0 c\\u00e1c c\\u01a1 quan chuy\\u00ean m\\u00f4n do Ch\\u1ee7 t\\u1ecbch t\\u1ec9nh quy\\u1ebft.\\n\\u003Cimg src=\\\"https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\\" alt=\\\"Markdown Monster icon\\\"/\\u003E\\n[Ng\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. ](https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg)\\n\\n![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png)\\n\\nNg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\n\\nTr\\u01b0\\u1edbc \\u0111\\u00f3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t trong phi\\u00ean b\\u1ea3n c\\u0169 c\\u1ee7a d\\u1ef1 th\\u1ea3o t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c c\\u00f4ng b\\u1ed1 h\\u00f4m 28/4 n\\u00eau, \\\"giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\\". Th\\u1eddi gian l\\u00e0m vi\\u1ec7c d\\u1ef1 ki\\u1ebfn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat.\", \"author_fullname\": \"t2_3nwxz2cj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"B\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsqqvo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558760411.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558788601.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\\nThay v\\u00ec th\\u1ed1ng nh\\u1ea5t c\\u01a1 quan h\\u00e0nh ch\\u00ednh c\\u1ea3 n\\u01b0\\u1edbc c\\u00f9ng gi\\u1edd l\\u00e0m vi\\u1ec7c, \\u0111\\u1ec1 xu\\u1ea5t m\\u1edbi cho ph\\u00e9p c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng quy \\u0111\\u1ecbnh gi\\u1edd linh ho\\u1ea1t. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1eeb 8h30\\nSau g\\u1ea7n 20 ng\\u00e0y c\\u00f4ng b\\u1ed1 t\\u1edd tr\\u00ecnh d\\u1ef1 th\\u1ea3o s\\u1eeda \\u0111\\u1ed5i B\\u1ed9 Lu\\u1eadt Lao \\u0111\\u1ed9ng n\\u0103m 2012, ng\\u00e0y 16/5, B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u00e3 \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i n\\u1ed9i dung \\u0111\\u1ec1 xu\\u1ea5t v\\u1ec1 gi\\u1edd l\\u00e0m vi\\u1ec7c.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00d4ng Nguy\\u1ec5n V\\u0103n B\\u00ecnh, Ph\\u00f3 v\\u1ee5 tr\\u01b0\\u1edfng V\\u1ee5 ph\\u00e1p ch\\u1ebf (B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 x\\u00e3 h\\u1ed9i), cho hay v\\u1eeba qua B\\u1ed9 nh\\u1eadn \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u \\u00fd ki\\u1ebfn \\u0111\\u00f3ng g\\u00f3p c\\u1ee7a ng\\u01b0\\u1eddi d\\u00e2n v\\u00e0 c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng n\\u00ean \\u0111\\u00e3 ti\\u1ebfp thu, \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1ea1i c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng \\u0111\\u1ec3 linh ho\\u1ea1t, ph\\u00f9 h\\u1ee3p v\\u1edbi \\u0111i\\u1ec1u ki\\u1ec7n kh\\u00ed h\\u1eadu m\\u1ed7i v\\u00f9ng mi\\u1ec1n. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EC\\u1ee5 th\\u1ec3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c s\\u1eeda l\\u1ea1i nh\\u01b0 sau: \\u0026quot;Giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\u0026quot;. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc c\\u1ea5p trung \\u01b0\\u01a1ng v\\u00e0 c\\u00e1c \\u0111\\u00f4 th\\u1ecb l\\u1edbn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat (tr\\u1eeb nh\\u1eefng \\u0111\\u01a1n v\\u1ecb ho\\u1eb7c b\\u1ed9 ph\\u1eadn ph\\u1ea3i th\\u01b0\\u1eddng tr\\u1ef1c 24/24 gi\\u1edd \\u0111\\u1ec3 \\u0111\\u1ea3m b\\u1ea3o li\\u00ean th\\u00f4ng c\\u00f4ng vi\\u1ec7c ho\\u1eb7c tr\\u1ef1c ti\\u1ebfp gi\\u1ea3i quy\\u1ebft c\\u00f4ng vi\\u1ec7c v\\u1edbi ng\\u01b0\\u1eddi d\\u00e2n). \\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc \\u1edf \\u0111\\u1ecba ph\\u01b0\\u01a1ng th\\u00ec th\\u1ed1ng nh\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c m\\u00f9a h\\u00e8 v\\u00e0 m\\u00f9a \\u0111\\u00f4ng theo \\u0111i\\u1ec1u ki\\u1ec7n \\u0111\\u1ecba l\\u00fd.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPh\\u01b0\\u01a1ng \\u00e1n 2 c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c gi\\u1eef nh\\u01b0 hi\\u1ec7n h\\u00e0nh. Theo \\u0111\\u00f3, th\\u1eddi gian l\\u00e0m vi\\u1ec7c kh\\u00f4ng quy \\u0111\\u1ecbnh trong B\\u1ed9 lu\\u1eadt Lao \\u0111\\u1ed9ng m\\u00e0 n\\u00eau t\\u1ea1i c\\u00e1c v\\u0103n b\\u1ea3n h\\u00e0nh ch\\u00ednh; \\u0111\\u1ed1i v\\u1edbi c\\u00e1c B\\u1ed9 do Th\\u1ee7 t\\u01b0\\u1edbng quy\\u1ebft \\u0111\\u1ecbnh; \\u0111\\u1ed1i v\\u1edbi UBND v\\u00e0 c\\u00e1c c\\u01a1 quan chuy\\u00ean m\\u00f4n do Ch\\u1ee7 t\\u1ecbch t\\u1ec9nh quy\\u1ebft.\\n\\u0026lt;img src=\\u0026quot;https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\u0026quot; alt=\\u0026quot;Markdown Monster icon\\u0026quot;/\\u0026gt;\\n\\u003Ca href=\\\"https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\\"\\u003ENg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E![Image of Yaktocat](\\u003Ca href=\\\"https://octodex.github.com/images/yaktocat.png\\\"\\u003Ehttps://octodex.github.com/images/yaktocat.png\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETr\\u01b0\\u1edbc \\u0111\\u00f3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t trong phi\\u00ean b\\u1ea3n c\\u0169 c\\u1ee7a d\\u1ef1 th\\u1ea3o t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c c\\u00f4ng b\\u1ed1 h\\u00f4m 28/4 n\\u00eau, \\u0026quot;giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\u0026quot;. Th\\u1eddi gian l\\u00e0m vi\\u1ec7c d\\u1ef1 ki\\u1ebfn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsqqvo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Fortuner2022\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsqqvo/b\\u1ed9_lao_\\u0111\\u1ed9ng_th\\u01b0\\u01a1ng_binh_v\\u00e0_x\\u00e3_h\\u1ed9i_\\u0111i\\u1ec1u_ch\\u1ec9nh_\\u0111\\u1ec1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsqqvo/b\\u1ed9_lao_\\u0111\\u1ed9ng_th\\u01b0\\u01a1ng_binh_v\\u00e0_x\\u00e3_h\\u1ed9i_\\u0111i\\u1ec1u_ch\\u1ec9nh_\\u0111\\u1ec1/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558759801.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Now the sad part. I don't actually have anyone to play my cube with at the moment. Why would someone put all the effort into building a cube that they can't actually play? Well, I started playing on ptcgo so I don't have a physical play group and from ptcgo I got into collecting some physical cards. I eventually heard about pokemon cubes and thought it sounded like a fun thing to do with all of the cards I was collecting. Some people collect Charizards or secret rares or Yuka Morii art. I collected a cube. That's another reason I went with all the bling, to add some longevity to the project.\\n\\nThe long term plan is to play it with my kids (I have three boys). They're interested in pokemon and I've given them some beater cards to start \\\"collecting\\\" but they're still a year or two away from actually playing the game. In the mean time, I've been playing and testing the cube on my own. You may have seen my post a couple months ago about my [draft interface](https://www.reddit.com/r/pkmntcg/comments/a1i5p1/i_made_a_drafting_interface_for_testing_your_cube/). I use that to build decks then play a few games against myself to get a feel for the power level, consistency and balance. Even with just self-testing, I've been able to learn quite a bit about how the cube plays. Here are some of my observations/musings.\\n\\n##Drafting\\n\\n**Table Draft** (4-6 players, 60 card decks, 6 prize games)\\n\\n1. Create packs\\n * 4 players: 36 packs of 10 cards\\n * 5 players: 45 packs of 10 cards\\n * 6 players: 48 packs of 10 cards\\n2. Each player opens a pack, picks 1 card and passes it to the player on their right.\\n3. Each player continues picking 1 card from the pack that is passed to them until all the cards in the packs are drafted.\\n4. Each player opens a new pack, picks 1 card and passes it to the player on their left.\\n5. Continue until all of the packs have been drafted.\\n\\nThis is the most common draft format and probably what most people have in mind for playing cube. The most challenging part of this format is figuring out what you need to pick early in a pack versus what you think you can leave behind and pick up later. Mid-way through a draft, you might open a pack with a [Strong Energy](https://pkmncards.com/card/strong-energy-fates-collide-fco-115/ \\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\") and a [Nest Ball](https://pkmncards.com/card/nest-ball-sun-moon-sum-123/ \\\"Search your deck for a Basic Pok\\u00e9mon and put it onto your Bench. Then, shuffle your deck.\\\") and be faced with a tough choice. Strong Energy would be incredible in your Fighting deck, probably better than Nest Ball, and not many other people at the table will want the Strong Energy. The Nest Ball, on the other hand, will be in high demand. There's almost no chance that it will still be in the pack when it comes back to you. So do you take the consistency boosting Nest Ball and try to wheel the Strong Energy or do you take the damage boost to guarantee some extra power in your deck. Or maybe you're passed a Salandit that you really want for your [Roast Reveal Salazzle](https://pkmncards.com/card/salazzle-unbroken-bonds-unb-31/ \\\"Ability: Roast Reveal\\nOnce during your turn (before your attack), you may discard a [R] Energy card from your hand. If you do, draw 3 cards.\\\"). Will it come back around or will a Grass deck take it to support a [Hot Poison](https://pkmncards.com/card/salazzle-guardians-rising-gri-16/ \\\"Ability: Hot Poison\\nWhen you play this Pok\\u00e9mon from your hand to evolve 1 of your Pok\\u00e9mon during your turn, you may leave your opponent\\u2019s Active Pok\\u00e9mon Burned and Poisoned.\\\"). Interesting choices!\\n\\nI also like how the pick priorities change throughout the draft. Early on you're mostly looking for big spicy cards to build around. Magnezone, Greninja, Victreebel, etc. If there's nothing like that in the pack, you take a nice consistency card like Sycamore or Ultra Ball that still leaves you open to lots of decks. Further into the draft, you're first picking a lot of the high quality trainer cards cause everyone wants them, but also balancing that with powerful support cards that your deck needs to function. At the tail end, you're trying to fill in any holes that your deck still has. You may find yourself picking a [Brock's Grit](https://pkmncards.com/card/brocks-grit-evolutions-evo-107/ \\\"Shuffle 6 in any combination of Pok\\u00e9mon and basic Energy cards from your discard pile into your deck.\\\") over a [Cynthia](https://pkmncards.com/card/cynthia-ultra-prism-upr-148/ \\\"Shuffle your hand into your deck. Then, draw 6 cards.\\\") simply because you don't have any energy or pokemon recovery yet. While some cards come really close to insta-picks, most of a cards' worth is highly dependent on the deck you're trying to build the stage of the draft you're in, which I really like.\\n\\nRegarding the number of packs to draft, it's tempting to simply draft the entire cube every time. But, especially with four players, it leads to predictable and somewhat boring drafts. Each player gets into their own archetype and there is very little competition for cards other than trainers. If someone first picks a Magnezone, you might as well hand them the rest of the Lightning cards in the cube. If you limit the number of packs, players are not guaranteed to see all of their support cards during the draft. They will have to explore other options within an archetype or at least a way to supplement their preferred deck with other cards. This is an important source of innovation and variety in cube drafting. It's what keeps each new draft form being just like the previous one. Of course, this has to be balanced against giving players enough cards to build a functioning deck. To few cards and you'll end up with a bunch of weak attackers and no real synergy between cards. I feel like around 80-90 cards in your final card pool (not including basic energies) is about right. This may sound like a ton of cards if you are coming from a background of drafting Magic: the Gathering but, proportionally, it's not too far off. In a Magic draft, you have 24 packs of 14 cards and each player ends up with 42 non-land cards. Your 40 card deck will typically have 23 non-land cards so you draft nearly twice as many cards as you end up using. In a 60 card pokemon deck you will have around 45-48 non-energy cards in your final deck and 80-90 is roughly double that. It's enough cards to present you with meaningful choices during deck building rather than just including anything that is remotely playable. Do I try to splash that off-color attacker to cover weakness or do I include more basic energy for consistency? How much energy fixing did I draft? That kind of stuff.\\n\\n**Grid Draft** (2 players, 60 card decks, 6 prize games)\\n\\n1. Create 34 packs of 9 cards. \\n2. Layout one pack in a 3 X 3 grid face up.\\n3. The first player chooses either a row or a column and takes all three of the cards in the row/column.\\n4. The second player chooses another row or column and takes those cards\\n5. Alternated who chooses first with each pack.\\n\\nGrid drafting is a really good place to start if you are playing with someone who's never drafted before. With all the cards laid out for everyone to see, you can easily give hints and guidance without breaking any of the rules of the draft (i.e. \\\"show me your pack\\\"). Drafting an entire deck from a cube involves *a lot* of decisions, and it can be overwhelming for people that aren't familiar with your cube and all of the card interactions. Providing some gentle guidance when they get stuck removes some of that burden and keep things fun. Grid drafting also goes a little bit faster than some of the other forms because you are picking 2-3 cards at a time.\\n\\nUnfortunately, I don't think grid drafting is a very good format for pokemon cubes. After doing several grid drafts in my simulator, I kept ending up with decks that were missing key cards like pre-evolutions even though I was drafting *a lot* of extra cards. During a table draft, you can easily pick up your pre-evolutions later in a pack because no one else is interested in them. But in grid drafting, it's not uncommon to have your pre-evolutions accidentally hate drafted by the other player because they just happened to be in a row with something else they wanted. And if you prioritize pre-evolutions too heavily, you are often giving up high quality consistency cards like draw supporters or poke search. Basically, grid drafting does not give you the precise control over picks necessary to build proper pokemon decks.\\n\\n**Pancake Draft** (2 players)\\n\\n1. Create 30 packs of 12 cards.\\n2. Each player takes a pack, picks 1 card and passes it to the other player.\\n3. Each player picks 2 cards then removes 2 cards and puts them in a discard pile. Pass the pack again.\\n4. Each player picks 2 cards and discards the remaining 5 cards.\\n5. Repeat 2-3 until all packs have been drafted.\\n\\nThis is essentially the traditional table draft adapted for two players. \\n\\n**Sealed** (2-4 players, 60 card decks, 6 prize games)\\n\\n1. Remove pre-evolutions from the pool of cards (142 cards).\\n2. Create sealed pools of 80 cards for each player.\\n3. Build decks adding basic energy and the necessary pre-evolutions as needed.\\n\\nSealed is pretty dicey for the same reasons that grid drafting is. You need to make a lot of intentional picks while drafting to make sure that your evolution lines work. You can't do that in sealed. There's no way you can reliably get enough complete evolution lines in a reasonably sized sealed pool. However, removing the pre-evolutions from the pool helps a ton. Now you're just looking for enough strong attackers that share a type or a strategy to mash together into a deck. After you build you deck, you simply add whatever pre-evolutions you need, similar to how basic energy is handled.\\n\\nSealed decks, across various card games, generally rely less on card synergy and more on individually strong cards. Don't expect the decks to be as intricate or as fun as draft decks. It's not the way I prefer to play cube but it's a decent option if you don't have time for a lengthy draft. It's also a good way to introduce new players to your cube. Having to read every card in a pack 40 times over is exhausting and without a mental short list of what cards they should be considering, inexperienced players can quickly become overwhelmed. With a static sealed pool, a player unfamiliar with the cards can focus on what they have and make the best of it. Consider 40 card decks with 4 prize games if you are playing with new folks, as well.\\n\\n##Gameplay\\n\\n* **Pace of play**: As you might expect, games are quite a bit slower than competitive constructed decks. You don't have the draw engines that give you complete turn 1 setups and let you see half your deck by turn 3. You don't have fully powered up attackers every turn taking knockouts. Instead, cube decks play at around the same speed as theme decks. You spend a few turns setting up, then start taking knock-outs semi-regularly. There will still be occasional dead draws and slow starts but part of the strategy is learning how to mitigate the damage of these situations. Is there a pokemon I can [Flick Poison](https://pkmncards.com/card/carnivine-shining-legends-slg-6/ \\\"[G] Flick Poison\\nSwitch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. The new Active Pok\\u00e9mon is now Poisoned.\\\") and stall while I draw out of this? There are also a fair number of catch-up mechanics available in the cube so getting a slower start than your opponent is not an automatic game loss.\\n\\nWhere cube decks exceed theme decks is in their available lines of play. Theme decks execute basically the same game plan every time because they have only a couple good attackers and maybe one or two tricks. Cube decks have completely unique attackers and each will be strongest in different situations. Sequencing and setting up the right attacker for the right response KO becomes very important. The number of tricks available in cube decks is also much higher than theme decks, leading to lots of fun and unexpected plays throughout the game. \\n\\n* **Consistency**: Consistency is a trick. On one hand, you want your decks to be doing cool, powerful, and interesting things. But doing those things usually means getting several specific cards in your hand and into play. Unfortunately, cube doesn't have strong enough draw engines to support intricate setups, and decks that rely heavily on them are going to be wildly inconsistent. On the other hand, if decks are very simple (play basic pokemon, attach energy, declare attack) they will be very consistent, but also very boring. So decks need a little bit of both. They need some meat and potatoes, basic attacks with low energy costs, as well as some spice, splashy evolution pokemon with unique attacks or abilities. The same is true with trainers, where you want your [Colresses](https://pkmncards.com/card/colress-plasma-storm-pls-135/ \\\"Shuffle your hand into your deck. Then, draw a number of cards equal to the number of Benched Pok\\u00e9mon (both your and your opponent\\u2019s).\\\") along side your [Nanus](https://pkmncards.com/card/nanu-team-up-teu-179/ \\\"Choose a Basic [D] Pok\\u00e9mon in your discard pile. Switch it with 1 of your Pok\\u00e9mon in play. Any attached cards, damage counters, Special Conditions, turns in play, and any other effects remain of the new Pok\\u00e9mon.\\\"). The decks that seem to work best are ones with solid basic attackers that can function on their own, but kick into another gear when they get the stage 2 support online. In Lightning decks, [Zekrom](https://pkmncards.com/card/zekrom-shining-legends-slg-35/ \\\"[C][C] Outrage: 20+\\nThis attack does 10 more damage for each damage counter on this Pok\\u00e9mon.\\n[L][L][C] Storm Blade: 130\\nDiscard 2 Energy from this Pok\\u00e9mon.\\\") or [Zeraora](https://pkmncards.com/card/zeraora-unbroken-bonds-unb-60/ \\\"[L] Crushing Claw: 20\\nDiscard a Special Energy from your opponent\\u2019s Active Pok\\u00e9mon.\\n[L][C][C] Discharge: 50\\u00d7\\nDiscard all [L] Energy from this Pok\\u00e9mon. This attack does 50 damage for each card you discarded in this way.\\\") can chip away for a few turns until [Magnezone](https://pkmncards.com/card/magnezone-forbidden-light-fli-36/ \\\"Ability: Magnetic Circuit\\nAs often as you like during your turn (before your attack), you may attach a [L] Energy card from your hand to 1 of your Pok\\u00e9mon.\\\") begins accelerating energy and you start chewing through attackers. In Psychic decks, [Hoopa](https://pkmncards.com/card/hoopa-steam-siege-sts-51/ \\\"[C] Hyperspace Punch\\nThis attack does 20 damage to 2 of your opponent\\u2019s Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][P][P] Portal Strike: 130\\nThis Pok\\u00e9mon can\\u2019t use Portal Strike during your next turn.\\\") and [Latios](https://pkmncards.com/card/latios-shining-legends-slg-41/ \\\"[C][C] Break Through: 30\\nThis attack does 30 damage to 1 of your opponent\\u2019s Benched Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][C][C] Lagoon Flight: 70 \\\") can load up the board with damage allowing [Chandelure](https://pkmncards.com/card/chandelure-lost-thunder-lot-103/ \\\"[P][P] Vortex of Pain: 20\\u00d7\\nThis attack does 20 damage for each damage counter on all of your opponent\\u2019s Pok\\u00e9mon.\\\") to come in later and Vortex for huge numbers.\\n\\nIn general, people tend to err on the cool and splashy side when building their cube. We're much more likely to imagine Magical Christmas Land in our heads when we envision how all the cards are going to work together. \\\"Of course I'm going to draw [Regirock](https://pkmncards.com/card/regirock-celestial-storm-ces-80/ \\\"[F] Enhanced Stomp: 20+\\nIf this Pok\\u00e9mon has a Pok\\u00e9mon Tool card attached to it, this attack does 20 more damage.\\\"), [Muscle Band](https://pkmncards.com/card/muscle-band-xy-121/ \\\"The attacks of the Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon (before applying Weakness and Resistance).\\\"), [Strong Energy](https://pkmncards.com/card/strong-energy-fates-collide-fco-115/ \\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\") and Rare Candy [Fighting Fury Machamp](https://pkmncards.com/card/machamp-furious-fists-ffi-46/ \\\"Ability: Fighting Fury\\nEach of your [F] Pok\\u00e9mon\\u2019s attacks do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon .\\\") on turn 2. 100 Damage for 1 energy! Might even be too good for cube.\\\" I try to avoid cards that do actual nothing if some previous setup isn't there. I want whatever I draw to be useful in some way. What makes Regirock good is that you only need *one* of those pieces for it to be hitting above average numbers, but the more you have, the better it gets. One example of borderline do-nothings in my cube are the [Reactive Poison](https://pkmncards.com/card/ariados-celestial-storm-ces-6/ \\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\\") attacks, since you really need access to status conditions for them to do anything. Fortunately, [Victreebel](https://pkmncards.com/card/victreebel-unbroken-bonds-unb-15/ \\\"[G] Reactive Poison: 10+\\nThis attack does 60 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G][C][C] Gastro Acid: 90\\nThe Defending Pok\\u00e9mon has no Abilities until the end of your next turn.\\\") and [Ariados](https://pkmncards.com/card/ariados-celestial-storm-ces-6/ \\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G] Spider Trap\\nYou may switch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. Your opponent\\u2019s Active Pok\\u00e9mon is now Asleep and Poisoned..\\\") have decent backup attacks making them somewhat more flexible if the setup isn't there.\\n\\nSo what are the best types of cards to include to support the spice? What are the meat and potatoes?\\n\\n* **Attack draw/search**: Standard games are usually too fast to waste your attack drawing cards, but with the slower pace of play in cube, attack based setup is very valuable. Cards like [Alolan Vulpix](https://pkmncards.com/card/alolan-vulpix-guardians-rising-gri-21/ \\\"[-] Beacon\\nSearch your deck for up to 2 Pok\\u00e9mon, reveal them, and put them into your hand. Then, shuffle your deck.\\\") and [Dunsparce](https://pkmncards.com/card/dunsparce-celestial-storm-ces-110/ \\\"[C] Strike and Run\\nSearch your deck for up to 3 Basic Pok\\u00e9mon and put them onto your Bench. Then, shuffle your deck. If you put any Pok\\u00e9mon onto your Bench in this way, you may switch this Pok\\u00e9mon with 1 of your Benched Pok\\u00e9mon.\\\") are pretty good for setting up your board but can be hard to reliably get out on the first turn and aren't that useful later on. [Espeon](https://pkmncards.com/card/espeon-plasma-freeze-plf-48/ \\\"[C] Psy Alert: 20\\nDraw cards until you have 6 cards in your hand.\\n[P] Shadow Ball\\nThis attack does 40 damage to 1 of your opponent\\u2019s Pok\\u00e9mon. Also apply Weakness and Resistance for Benched Pok\\u00e9mon.\\\") and [Zoroark](https://pkmncards.com/card/zoroark-black-white-blw-71/ \\\"[D] Nasty Plot\\nSearch your deck for a card and put it into your hand. Shuffle your deck afterward.\\n[C][C] Foul Play\\nChoose 1 of the Defending Pok\\u00e9mon\\u2019s attacks and use it as this attack.\\\") can dish out damage in addition to drawing cards, but are stage 1 and require some setup themselves before they are useful. My favorite kinds of cards are pokemon like [Shaymin](https://pkmncards.com/card/shaymin-shining-legends-slg-7/ \\\"[G] Flippity Flap\\nShuffle your hand into your deck. Then, draw 6 cards.\\n[G][C] Rally Back: 30+\\nIf any of your Pok\\u00e9mon were Knocked Out by damage from an opponent\\u2019s attack during their last turn, this attack does 90 more damage.\\\") and [Mimikyu](https://pkmncards.com/card/mimikyu-guardians-rising-gri-58/ \\\"[C] Filch\\nDraw 2 cards.\\n[P][C] Copycat\\nIf your opponent\\u2019s Pok\\u00e9mon used an attack that isn\\u2019t a GX attack during their last turn, use it as this attack.\\\"). The efficient card draw helps with early game setup and mid-game dead draws while their situational attacks keep them relevant to the last prize. They may not be super flavorful additions to their respective archetypes, but they are crucial to a well functioning decks. When things aren't going as planned, you still need cards that get out there and do *something* to help move the game along. Basic attackers, single energy card draw, efficient damage; these pokemon are the glue that hold all fun stuff together.\", \"author_fullname\": \"t2_i1ikl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Pokecube II\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bskwuj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558753845.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENow the sad part. I don\\u0026#39;t actually have anyone to play my cube with at the moment. Why would someone put all the effort into building a cube that they can\\u0026#39;t actually play? Well, I started playing on ptcgo so I don\\u0026#39;t have a physical play group and from ptcgo I got into collecting some physical cards. I eventually heard about pokemon cubes and thought it sounded like a fun thing to do with all of the cards I was collecting. Some people collect Charizards or secret rares or Yuka Morii art. I collected a cube. That\\u0026#39;s another reason I went with all the bling, to add some longevity to the project.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe long term plan is to play it with my kids (I have three boys). They\\u0026#39;re interested in pokemon and I\\u0026#39;ve given them some beater cards to start \\u0026quot;collecting\\u0026quot; but they\\u0026#39;re still a year or two away from actually playing the game. In the mean time, I\\u0026#39;ve been playing and testing the cube on my own. You may have seen my post a couple months ago about my \\u003Ca href=\\\"https://www.reddit.com/r/pkmntcg/comments/a1i5p1/i_made_a_drafting_interface_for_testing_your_cube/\\\"\\u003Edraft interface\\u003C/a\\u003E. I use that to build decks then play a few games against myself to get a feel for the power level, consistency and balance. Even with just self-testing, I\\u0026#39;ve been able to learn quite a bit about how the cube plays. Here are some of my observations/musings.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EDrafting\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETable Draft\\u003C/strong\\u003E (4-6 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate packs\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E4 players: 36 packs of 10 cards\\u003C/li\\u003E\\n\\u003Cli\\u003E5 players: 45 packs of 10 cards\\u003C/li\\u003E\\n\\u003Cli\\u003E6 players: 48 packs of 10 cards\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player opens a pack, picks 1 card and passes it to the player on their right.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player continues picking 1 card from the pack that is passed to them until all the cards in the packs are drafted.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player opens a new pack, picks 1 card and passes it to the player on their left.\\u003C/li\\u003E\\n\\u003Cli\\u003EContinue until all of the packs have been drafted.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is the most common draft format and probably what most people have in mind for playing cube. The most challenging part of this format is figuring out what you need to pick early in a pack versus what you think you can leave behind and pick up later. Mid-way through a draft, you might open a pack with a \\u003Ca href=\\\"https://pkmncards.com/card/strong-energy-fates-collide-fco-115/\\\" title=\\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EStrong Energy\\u003C/a\\u003E and a \\u003Ca href=\\\"https://pkmncards.com/card/nest-ball-sun-moon-sum-123/\\\" title=\\\"Search your deck for a Basic Pok\\u00e9mon and put it onto your Bench. Then, shuffle your deck.\\\"\\u003ENest Ball\\u003C/a\\u003E and be faced with a tough choice. Strong Energy would be incredible in your Fighting deck, probably better than Nest Ball, and not many other people at the table will want the Strong Energy. The Nest Ball, on the other hand, will be in high demand. There\\u0026#39;s almost no chance that it will still be in the pack when it comes back to you. So do you take the consistency boosting Nest Ball and try to wheel the Strong Energy or do you take the damage boost to guarantee some extra power in your deck. Or maybe you\\u0026#39;re passed a Salandit that you really want for your \\u003Ca href=\\\"https://pkmncards.com/card/salazzle-unbroken-bonds-unb-31/\\\" title=\\\"Ability: Roast Reveal\\nOnce during your turn (before your attack), you may discard a [R] Energy card from your hand. If you do, draw 3 cards.\\\"\\u003ERoast Reveal Salazzle\\u003C/a\\u003E. Will it come back around or will a Grass deck take it to support a \\u003Ca href=\\\"https://pkmncards.com/card/salazzle-guardians-rising-gri-16/\\\" title=\\\"Ability: Hot Poison\\nWhen you play this Pok\\u00e9mon from your hand to evolve 1 of your Pok\\u00e9mon during your turn, you may leave your opponent\\u2019s Active Pok\\u00e9mon Burned and Poisoned.\\\"\\u003EHot Poison\\u003C/a\\u003E. Interesting choices!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also like how the pick priorities change throughout the draft. Early on you\\u0026#39;re mostly looking for big spicy cards to build around. Magnezone, Greninja, Victreebel, etc. If there\\u0026#39;s nothing like that in the pack, you take a nice consistency card like Sycamore or Ultra Ball that still leaves you open to lots of decks. Further into the draft, you\\u0026#39;re first picking a lot of the high quality trainer cards cause everyone wants them, but also balancing that with powerful support cards that your deck needs to function. At the tail end, you\\u0026#39;re trying to fill in any holes that your deck still has. You may find yourself picking a \\u003Ca href=\\\"https://pkmncards.com/card/brocks-grit-evolutions-evo-107/\\\" title=\\\"Shuffle 6 in any combination of Pok\\u00e9mon and basic Energy cards from your discard pile into your deck.\\\"\\u003EBrock\\u0026#39;s Grit\\u003C/a\\u003E over a \\u003Ca href=\\\"https://pkmncards.com/card/cynthia-ultra-prism-upr-148/\\\" title=\\\"Shuffle your hand into your deck. Then, draw 6 cards.\\\"\\u003ECynthia\\u003C/a\\u003E simply because you don\\u0026#39;t have any energy or pokemon recovery yet. While some cards come really close to insta-picks, most of a cards\\u0026#39; worth is highly dependent on the deck you\\u0026#39;re trying to build the stage of the draft you\\u0026#39;re in, which I really like.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding the number of packs to draft, it\\u0026#39;s tempting to simply draft the entire cube every time. But, especially with four players, it leads to predictable and somewhat boring drafts. Each player gets into their own archetype and there is very little competition for cards other than trainers. If someone first picks a Magnezone, you might as well hand them the rest of the Lightning cards in the cube. If you limit the number of packs, players are not guaranteed to see all of their support cards during the draft. They will have to explore other options within an archetype or at least a way to supplement their preferred deck with other cards. This is an important source of innovation and variety in cube drafting. It\\u0026#39;s what keeps each new draft form being just like the previous one. Of course, this has to be balanced against giving players enough cards to build a functioning deck. To few cards and you\\u0026#39;ll end up with a bunch of weak attackers and no real synergy between cards. I feel like around 80-90 cards in your final card pool (not including basic energies) is about right. This may sound like a ton of cards if you are coming from a background of drafting Magic: the Gathering but, proportionally, it\\u0026#39;s not too far off. In a Magic draft, you have 24 packs of 14 cards and each player ends up with 42 non-land cards. Your 40 card deck will typically have 23 non-land cards so you draft nearly twice as many cards as you end up using. In a 60 card pokemon deck you will have around 45-48 non-energy cards in your final deck and 80-90 is roughly double that. It\\u0026#39;s enough cards to present you with meaningful choices during deck building rather than just including anything that is remotely playable. Do I try to splash that off-color attacker to cover weakness or do I include more basic energy for consistency? How much energy fixing did I draft? That kind of stuff.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGrid Draft\\u003C/strong\\u003E (2 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate 34 packs of 9 cards. \\u003C/li\\u003E\\n\\u003Cli\\u003ELayout one pack in a 3 X 3 grid face up.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe first player chooses either a row or a column and takes all three of the cards in the row/column.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe second player chooses another row or column and takes those cards\\u003C/li\\u003E\\n\\u003Cli\\u003EAlternated who chooses first with each pack.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EGrid drafting is a really good place to start if you are playing with someone who\\u0026#39;s never drafted before. With all the cards laid out for everyone to see, you can easily give hints and guidance without breaking any of the rules of the draft (i.e. \\u0026quot;show me your pack\\u0026quot;). Drafting an entire deck from a cube involves \\u003Cem\\u003Ea lot\\u003C/em\\u003E of decisions, and it can be overwhelming for people that aren\\u0026#39;t familiar with your cube and all of the card interactions. Providing some gentle guidance when they get stuck removes some of that burden and keep things fun. Grid drafting also goes a little bit faster than some of the other forms because you are picking 2-3 cards at a time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnfortunately, I don\\u0026#39;t think grid drafting is a very good format for pokemon cubes. After doing several grid drafts in my simulator, I kept ending up with decks that were missing key cards like pre-evolutions even though I was drafting \\u003Cem\\u003Ea lot\\u003C/em\\u003E of extra cards. During a table draft, you can easily pick up your pre-evolutions later in a pack because no one else is interested in them. But in grid drafting, it\\u0026#39;s not uncommon to have your pre-evolutions accidentally hate drafted by the other player because they just happened to be in a row with something else they wanted. And if you prioritize pre-evolutions too heavily, you are often giving up high quality consistency cards like draw supporters or poke search. Basically, grid drafting does not give you the precise control over picks necessary to build proper pokemon decks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPancake Draft\\u003C/strong\\u003E (2 players)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate 30 packs of 12 cards.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player takes a pack, picks 1 card and passes it to the other player.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player picks 2 cards then removes 2 cards and puts them in a discard pile. Pass the pack again.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player picks 2 cards and discards the remaining 5 cards.\\u003C/li\\u003E\\n\\u003Cli\\u003ERepeat 2-3 until all packs have been drafted.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is essentially the traditional table draft adapted for two players. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESealed\\u003C/strong\\u003E (2-4 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ERemove pre-evolutions from the pool of cards (142 cards).\\u003C/li\\u003E\\n\\u003Cli\\u003ECreate sealed pools of 80 cards for each player.\\u003C/li\\u003E\\n\\u003Cli\\u003EBuild decks adding basic energy and the necessary pre-evolutions as needed.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ESealed is pretty dicey for the same reasons that grid drafting is. You need to make a lot of intentional picks while drafting to make sure that your evolution lines work. You can\\u0026#39;t do that in sealed. There\\u0026#39;s no way you can reliably get enough complete evolution lines in a reasonably sized sealed pool. However, removing the pre-evolutions from the pool helps a ton. Now you\\u0026#39;re just looking for enough strong attackers that share a type or a strategy to mash together into a deck. After you build you deck, you simply add whatever pre-evolutions you need, similar to how basic energy is handled.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESealed decks, across various card games, generally rely less on card synergy and more on individually strong cards. Don\\u0026#39;t expect the decks to be as intricate or as fun as draft decks. It\\u0026#39;s not the way I prefer to play cube but it\\u0026#39;s a decent option if you don\\u0026#39;t have time for a lengthy draft. It\\u0026#39;s also a good way to introduce new players to your cube. Having to read every card in a pack 40 times over is exhausting and without a mental short list of what cards they should be considering, inexperienced players can quickly become overwhelmed. With a static sealed pool, a player unfamiliar with the cards can focus on what they have and make the best of it. Consider 40 card decks with 4 prize games if you are playing with new folks, as well.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EGameplay\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPace of play\\u003C/strong\\u003E: As you might expect, games are quite a bit slower than competitive constructed decks. You don\\u0026#39;t have the draw engines that give you complete turn 1 setups and let you see half your deck by turn 3. You don\\u0026#39;t have fully powered up attackers every turn taking knockouts. Instead, cube decks play at around the same speed as theme decks. You spend a few turns setting up, then start taking knock-outs semi-regularly. There will still be occasional dead draws and slow starts but part of the strategy is learning how to mitigate the damage of these situations. Is there a pokemon I can \\u003Ca href=\\\"https://pkmncards.com/card/carnivine-shining-legends-slg-6/\\\" title=\\\"[G] Flick Poison\\nSwitch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. The new Active Pok\\u00e9mon is now Poisoned.\\\"\\u003EFlick Poison\\u003C/a\\u003E and stall while I draw out of this? There are also a fair number of catch-up mechanics available in the cube so getting a slower start than your opponent is not an automatic game loss.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhere cube decks exceed theme decks is in their available lines of play. Theme decks execute basically the same game plan every time because they have only a couple good attackers and maybe one or two tricks. Cube decks have completely unique attackers and each will be strongest in different situations. Sequencing and setting up the right attacker for the right response KO becomes very important. The number of tricks available in cube decks is also much higher than theme decks, leading to lots of fun and unexpected plays throughout the game. \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EConsistency\\u003C/strong\\u003E: Consistency is a trick. On one hand, you want your decks to be doing cool, powerful, and interesting things. But doing those things usually means getting several specific cards in your hand and into play. Unfortunately, cube doesn\\u0026#39;t have strong enough draw engines to support intricate setups, and decks that rely heavily on them are going to be wildly inconsistent. On the other hand, if decks are very simple (play basic pokemon, attach energy, declare attack) they will be very consistent, but also very boring. So decks need a little bit of both. They need some meat and potatoes, basic attacks with low energy costs, as well as some spice, splashy evolution pokemon with unique attacks or abilities. The same is true with trainers, where you want your \\u003Ca href=\\\"https://pkmncards.com/card/colress-plasma-storm-pls-135/\\\" title=\\\"Shuffle your hand into your deck. Then, draw a number of cards equal to the number of Benched Pok\\u00e9mon (both your and your opponent\\u2019s).\\\"\\u003EColresses\\u003C/a\\u003E along side your \\u003Ca href=\\\"https://pkmncards.com/card/nanu-team-up-teu-179/\\\" title=\\\"Choose a Basic [D] Pok\\u00e9mon in your discard pile. Switch it with 1 of your Pok\\u00e9mon in play. Any attached cards, damage counters, Special Conditions, turns in play, and any other effects remain of the new Pok\\u00e9mon.\\\"\\u003ENanus\\u003C/a\\u003E. The decks that seem to work best are ones with solid basic attackers that can function on their own, but kick into another gear when they get the stage 2 support online. In Lightning decks, \\u003Ca href=\\\"https://pkmncards.com/card/zekrom-shining-legends-slg-35/\\\" title=\\\"[C][C] Outrage: 20+\\nThis attack does 10 more damage for each damage counter on this Pok\\u00e9mon.\\n[L][L][C] Storm Blade: 130\\nDiscard 2 Energy from this Pok\\u00e9mon.\\\"\\u003EZekrom\\u003C/a\\u003E or \\u003Ca href=\\\"https://pkmncards.com/card/zeraora-unbroken-bonds-unb-60/\\\" title=\\\"[L] Crushing Claw: 20\\nDiscard a Special Energy from your opponent\\u2019s Active Pok\\u00e9mon.\\n[L][C][C] Discharge: 50\\u00d7\\nDiscard all [L] Energy from this Pok\\u00e9mon. This attack does 50 damage for each card you discarded in this way.\\\"\\u003EZeraora\\u003C/a\\u003E can chip away for a few turns until \\u003Ca href=\\\"https://pkmncards.com/card/magnezone-forbidden-light-fli-36/\\\" title=\\\"Ability: Magnetic Circuit\\nAs often as you like during your turn (before your attack), you may attach a [L] Energy card from your hand to 1 of your Pok\\u00e9mon.\\\"\\u003EMagnezone\\u003C/a\\u003E begins accelerating energy and you start chewing through attackers. In Psychic decks, \\u003Ca href=\\\"https://pkmncards.com/card/hoopa-steam-siege-sts-51/\\\" title=\\\"[C] Hyperspace Punch\\nThis attack does 20 damage to 2 of your opponent\\u2019s Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][P][P] Portal Strike: 130\\nThis Pok\\u00e9mon can\\u2019t use Portal Strike during your next turn.\\\"\\u003EHoopa\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/latios-shining-legends-slg-41/\\\" title=\\\"[C][C] Break Through: 30\\nThis attack does 30 damage to 1 of your opponent\\u2019s Benched Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][C][C] Lagoon Flight: 70 \\\"\\u003ELatios\\u003C/a\\u003E can load up the board with damage allowing \\u003Ca href=\\\"https://pkmncards.com/card/chandelure-lost-thunder-lot-103/\\\" title=\\\"[P][P] Vortex of Pain: 20\\u00d7\\nThis attack does 20 damage for each damage counter on all of your opponent\\u2019s Pok\\u00e9mon.\\\"\\u003EChandelure\\u003C/a\\u003E to come in later and Vortex for huge numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EIn general, people tend to err on the cool and splashy side when building their cube. We\\u0026#39;re much more likely to imagine Magical Christmas Land in our heads when we envision how all the cards are going to work together. \\u0026quot;Of course I\\u0026#39;m going to draw \\u003Ca href=\\\"https://pkmncards.com/card/regirock-celestial-storm-ces-80/\\\" title=\\\"[F] Enhanced Stomp: 20+\\nIf this Pok\\u00e9mon has a Pok\\u00e9mon Tool card attached to it, this attack does 20 more damage.\\\"\\u003ERegirock\\u003C/a\\u003E, \\u003Ca href=\\\"https://pkmncards.com/card/muscle-band-xy-121/\\\" title=\\\"The attacks of the Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon (before applying Weakness and Resistance).\\\"\\u003EMuscle Band\\u003C/a\\u003E, \\u003Ca href=\\\"https://pkmncards.com/card/strong-energy-fates-collide-fco-115/\\\" title=\\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EStrong Energy\\u003C/a\\u003E and Rare Candy \\u003Ca href=\\\"https://pkmncards.com/card/machamp-furious-fists-ffi-46/\\\" title=\\\"Ability: Fighting Fury\\nEach of your [F] Pok\\u00e9mon\\u2019s attacks do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon .\\\"\\u003EFighting Fury Machamp\\u003C/a\\u003E on turn 2. 100 Damage for 1 energy! Might even be too good for cube.\\u0026quot; I try to avoid cards that do actual nothing if some previous setup isn\\u0026#39;t there. I want whatever I draw to be useful in some way. What makes Regirock good is that you only need \\u003Cem\\u003Eone\\u003C/em\\u003E of those pieces for it to be hitting above average numbers, but the more you have, the better it gets. One example of borderline do-nothings in my cube are the \\u003Ca href=\\\"https://pkmncards.com/card/ariados-celestial-storm-ces-6/\\\" title=\\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EReactive Poison\\u003C/a\\u003E attacks, since you really need access to status conditions for them to do anything. Fortunately, \\u003Ca href=\\\"https://pkmncards.com/card/victreebel-unbroken-bonds-unb-15/\\\" title=\\\"[G] Reactive Poison: 10+\\nThis attack does 60 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G][C][C] Gastro Acid: 90\\nThe Defending Pok\\u00e9mon has no Abilities until the end of your next turn.\\\"\\u003EVictreebel\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/ariados-celestial-storm-ces-6/\\\" title=\\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G] Spider Trap\\nYou may switch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. Your opponent\\u2019s Active Pok\\u00e9mon is now Asleep and Poisoned..\\\"\\u003EAriados\\u003C/a\\u003E have decent backup attacks making them somewhat more flexible if the setup isn\\u0026#39;t there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo what are the best types of cards to include to support the spice? What are the meat and potatoes?\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EAttack draw/search\\u003C/strong\\u003E: Standard games are usually too fast to waste your attack drawing cards, but with the slower pace of play in cube, attack based setup is very valuable. Cards like \\u003Ca href=\\\"https://pkmncards.com/card/alolan-vulpix-guardians-rising-gri-21/\\\" title=\\\"[-] Beacon\\nSearch your deck for up to 2 Pok\\u00e9mon, reveal them, and put them into your hand. Then, shuffle your deck.\\\"\\u003EAlolan Vulpix\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/dunsparce-celestial-storm-ces-110/\\\" title=\\\"[C] Strike and Run\\nSearch your deck for up to 3 Basic Pok\\u00e9mon and put them onto your Bench. Then, shuffle your deck. If you put any Pok\\u00e9mon onto your Bench in this way, you may switch this Pok\\u00e9mon with 1 of your Benched Pok\\u00e9mon.\\\"\\u003EDunsparce\\u003C/a\\u003E are pretty good for setting up your board but can be hard to reliably get out on the first turn and aren\\u0026#39;t that useful later on. \\u003Ca href=\\\"https://pkmncards.com/card/espeon-plasma-freeze-plf-48/\\\" title=\\\"[C] Psy Alert: 20\\nDraw cards until you have 6 cards in your hand.\\n[P] Shadow Ball\\nThis attack does 40 damage to 1 of your opponent\\u2019s Pok\\u00e9mon. Also apply Weakness and Resistance for Benched Pok\\u00e9mon.\\\"\\u003EEspeon\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/zoroark-black-white-blw-71/\\\" title=\\\"[D] Nasty Plot\\nSearch your deck for a card and put it into your hand. Shuffle your deck afterward.\\n[C][C] Foul Play\\nChoose 1 of the Defending Pok\\u00e9mon\\u2019s attacks and use it as this attack.\\\"\\u003EZoroark\\u003C/a\\u003E can dish out damage in addition to drawing cards, but are stage 1 and require some setup themselves before they are useful. My favorite kinds of cards are pokemon like \\u003Ca href=\\\"https://pkmncards.com/card/shaymin-shining-legends-slg-7/\\\" title=\\\"[G] Flippity Flap\\nShuffle your hand into your deck. Then, draw 6 cards.\\n[G][C] Rally Back: 30+\\nIf any of your Pok\\u00e9mon were Knocked Out by damage from an opponent\\u2019s attack during their last turn, this attack does 90 more damage.\\\"\\u003EShaymin\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/mimikyu-guardians-rising-gri-58/\\\" title=\\\"[C] Filch\\nDraw 2 cards.\\n[P][C] Copycat\\nIf your opponent\\u2019s Pok\\u00e9mon used an attack that isn\\u2019t a GX attack during their last turn, use it as this attack.\\\"\\u003EMimikyu\\u003C/a\\u003E. The efficient card draw helps with early game setup and mid-game dead draws while their situational attacks keep them relevant to the last prize. They may not be super flavorful additions to their respective archetypes, but they are crucial to a well functioning decks. When things aren\\u0026#39;t going as planned, you still need cards that get out there and do \\u003Cem\\u003Esomething\\u003C/em\\u003E to help move the game along. Basic attackers, single energy card draw, efficient damage; these pokemon are the glue that hold all fun stuff together.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?auto=webp\\u0026s=e600eb5ec36578972c9dcb042117f9d7e73eaf67\", \"width\": 700, \"height\": 990}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fbc3f54435181448357a2436160e1dfb3519b084\", \"width\": 108, \"height\": 152}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a5f63fcfa2a6c9d8c07906f31aa033efa31e74b8\", \"width\": 216, \"height\": 305}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cfed664ed03f019883ba79e3a787368deb119107\", \"width\": 320, \"height\": 452}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=32513d92d08fcbec7db49d5f29ef8e082ddf5716\", \"width\": 640, \"height\": 905}], \"variants\": {}, \"id\": \"fHDRdxaTIumi8RmF5w1gT1sw9aM-jH8wqoT5OXhhUUQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bskwuj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vandergus\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558725045.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**TL;DR I will make separate comments for each type of post below and users can volunteer and coordinate amongst yourselves as to who will make the posts to avoid duplicate posts on the same subject**\\n\\nHello fellow Formula 1.5 enthusiasts! We'd love to see some volunteers to make various race-weekend and other posts on a regular basis. There is a comprehensive list in this post but feel free to point out any others that you think should be a regular feature!\\n\\n**Regular threads for race weekends:**\\n\\n*For practice, qualifying and race / immediately post-racesessions, please join the threads on r/formula1*\\n\\n**We would like to ask for volunteers to make the following regular posts:**\\n\\n\\nPoll for DOTD\\n\\nRace report \\n\\nThe race report post will also act as a race-debrief thread (day or two after the race) - this will be more heavily moderated to remove memes, circlejerks and low effort comments.\\n\\n\\nPractice 1, 2 and 3 classification and timesheets (in the same style as official ones)\\n\\nQualifying classification and timesheets (in the same style as official ones)\\n\\nFinal race classification and timesheet (in the same style as official ones)\\n\\nPicture of podium finishers [example](https://twitter.com/F1/status/1127586568703754240?s=20)\\n\\nDOTD announcement [example](https://twitter.com/F1/status/1127587969437765632?s=20)\\n\\nFastest Lap announcement [example](https://twitter.com/F1/status/1127600146374635526?s=20)\\n\\nFastest pit stop announcement [example](https://twitter.com/F1/status/1127682358327402497?s=20)\\n\\nWDC standings after the race [example](https://twitter.com/F1/status/1127597818590519297?s=20)\\n\\nWCC standings after the race (similar style to above)\\n\\nOf course, other OC is always welcome, you may like to consider that you will likely get more visibility in r/formula1 at the moment as it is just a far bigger subreddit.\", \"author_fullname\": \"t2_6yp2341\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Formula 1.5 | Call for volunteers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsfs29\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558726259.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ETL;DR I will make separate comments for each type of post below and users can volunteer and coordinate amongst yourselves as to who will make the posts to avoid duplicate posts on the same subject\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello fellow Formula 1.5 enthusiasts! We\\u0026#39;d love to see some volunteers to make various race-weekend and other posts on a regular basis. There is a comprehensive list in this post but feel free to point out any others that you think should be a regular feature!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERegular threads for race weekends:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EFor practice, qualifying and race / immediately post-racesessions, please join the threads on \\u003Ca href=\\\"/r/formula1\\\"\\u003Er/formula1\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWe would like to ask for volunteers to make the following regular posts:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPoll for DOTD\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERace report \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe race report post will also act as a race-debrief thread (day or two after the race) - this will be more heavily moderated to remove memes, circlejerks and low effort comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPractice 1, 2 and 3 classification and timesheets (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQualifying classification and timesheets (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinal race classification and timesheet (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPicture of podium finishers \\u003Ca href=\\\"https://twitter.com/F1/status/1127586568703754240?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDOTD announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127587969437765632?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFastest Lap announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127600146374635526?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFastest pit stop announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127682358327402497?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWDC standings after the race \\u003Ca href=\\\"https://twitter.com/F1/status/1127597818590519297?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWCC standings after the race (similar style to above)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, other OC is always welcome, you may like to consider that you will likely get more visibility in \\u003Ca href=\\\"/r/formula1\\\"\\u003Er/formula1\\u003C/a\\u003E at the moment as it is just a far bigger subreddit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?auto=webp\\u0026s=531b435f194ee4f9748862ea1f91c2b67808c9f7\", \"width\": 1080, \"height\": 916}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d5452d83fbe31e607852fdcf1fde109bd7f3a4cc\", \"width\": 108, \"height\": 91}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=16e1e705a2cac15745660eedc341cd51707cf99c\", \"width\": 216, \"height\": 183}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=aa9d5874c0919292a0aca1ef10c92decc7a31d14\", \"width\": 320, \"height\": 271}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f9c5c8bf7d52b467b305e24ee5efcd517d3c171d\", \"width\": 640, \"height\": 542}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e1b62c400be0002c41001bf986fd3216bdc25147\", \"width\": 960, \"height\": 814}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=2f1df5035b62f8945614ca65e4c8656ca6760a0a\", \"width\": 1080, \"height\": 916}], \"variants\": {}, \"id\": \"MiHDcikgOe3mM0vjxRgbnrY-GqdMjGqvxB79Gt7ozgk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsfs29\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"elusive_username\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsfs29/formula_15_call_for_volunteers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsfs29/formula_15_call_for_volunteers/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558697459.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_e9a3z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"More test code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 110, \"hide_score\": false, \"name\": \"t3_bsdcgq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/o1Wz3EYwj9GW7Qr_bmSIsLld3Kz5O6AcX7oCXbFhvEY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558706660.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?auto=webp\\u0026s=c58d56e9df9af072d5a095e6817d45ee9c561df5\", \"width\": 328, \"height\": 258}, \"resolutions\": [{\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0973c520828e38195d066689c8fe9a8d2c35c77f\", \"width\": 108, \"height\": 84}, {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a7f5f8811cd4fd4214888c2037f3f8df8509f8eb\", \"width\": 216, \"height\": 169}, {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=53978780d7a0aebc1491cc0ac3acfb7d5e4b6c71\", \"width\": 320, \"height\": 251}], \"variants\": {}, \"id\": \"TZlQzMgacJjOUSE2BlGji8NTN8-C9hPqq8kMNAqpWso\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsdcgq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kyrieru\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsdcgq/more_test_code/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/su3ly0osl3031.png\", \"subreddit_subscribers\": 709, \"created_utc\": 1558677860.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"And example of this\\nhttps://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\", \"author_fullname\": \"t2_e9a3z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Code stuff\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsd8yc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558705892.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd example of this\\n\\u003Ca href=\\\"https://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\\\"\\u003Ehttps://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?auto=webp\\u0026s=5b993446d3d76df08f0c0371951333128f74c769\", \"width\": 328, \"height\": 258}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ea056c4c9fee2d83218d84b8aa6ed581e2eabf7c\", \"width\": 108, \"height\": 84}, {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=eecea5ccbbd73effaa403a85d0605bd8746c5752\", \"width\": 216, \"height\": 169}, {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=28f18ef2ebc9f593b6dff7e583b7ff1d0fdae743\", \"width\": 320, \"height\": 251}], \"variants\": {}, \"id\": \"0xh4SkoN-_7L19axx7iX9dkL1P45YCt3cq7ntix-vAA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsd8yc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kyrieru\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsd8yc/code_stuff/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsd8yc/code_stuff/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558677092.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"hula hula\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs5rrg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558661342.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs5rrg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs5rrg/hula_hula/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs5rrg/hula_hula/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558632542.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"my lil pony\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bs5jg4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Snail Mail: NPR Music Tiny Desk Concert\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"NPR Music\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/21ix1OwPoY8/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/nprmusic\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bs5jg4\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/NQre-JqAcR4bl9-yMXUx4RaT5Ub5-xLn2eE0he_B5rI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558660165.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?auto=webp\\u0026s=dd82178336835b0d9ade4b238edb5e9800334ae3\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=89e1bcb2c1784115389b14cc50ee747c908e766c\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=050bb5c4afcac9bd34deca76be313bc6b31e682e\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=44e665a96892d7afd4b824ebf0e674b6b9b81dc3\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"mhwh-bo9dmEuYO_PMyd1-wSh93Ge-4baH0jdQnIlCRU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs5jg4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs5jg4/my_lil_pony/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"http://www.youtube.com/watch?v=21ix1OwPoY8\", \"subreddit_subscribers\": 709, \"created_utc\": 1558631365.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Snail Mail: NPR Music Tiny Desk Concert\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"NPR Music\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/21ix1OwPoY8/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/nprmusic\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project **Chronicles of Osira**! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\n***\\n###Our Purpose \\u0026 Goals:\\n\\nOur vision is to be the most popular multiplayer survival RPG \\u0026 minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\n***\\n###Survival RPG World (Osira):\\n\\nIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\n***\\n###Main Features:\\n\\n######Terrain Regen Mod\\n\\nOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\n\\n######NPC Mod\\n\\nThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\n\\n######Kingdom System\\n\\nThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\n***\\n###Server Status: \\n\\n**Various Positions Open**! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\n***\\n###Social Media: \\n\\n* Twitter: [Twitter](https://twitter.com/OsiraChronicles)\\n* Discord: [Discord](https://discord.gg/rzfNq8p)\\n* SubReddit: Coming Soon\\n* Starter Website: Coming Soon (finishing up development)\\n* Youtube: Coming Soon\\n* Email: chroniclesofosira@gmail.com\", \"author_fullname\": \"t2_3tl8crp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs4e7x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558654467.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch4\\u003EHey everyone, we\\u2019re super excited today to publicly announce the development of our server project \\u003Cstrong\\u003EChronicles of Osira\\u003C/strong\\u003E! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\u003C/h4\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EOur Purpose \\u0026amp; Goals:\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EOur vision is to be the most popular multiplayer survival RPG \\u0026amp; minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003ESurvival RPG World (Osira):\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EMain Features:\\u003C/h3\\u003E\\n\\n\\u003Ch6\\u003ETerrain Regen Mod\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\u003C/p\\u003E\\n\\n\\u003Ch6\\u003ENPC Mod\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\u003C/p\\u003E\\n\\n\\u003Ch6\\u003EKingdom System\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EServer Status:\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EVarious Positions Open\\u003C/strong\\u003E! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003ESocial Media:\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ETwitter: \\u003Ca href=\\\"https://twitter.com/OsiraChronicles\\\"\\u003ETwitter\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDiscord: \\u003Ca href=\\\"https://discord.gg/rzfNq8p\\\"\\u003EDiscord\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESubReddit: Coming Soon\\u003C/li\\u003E\\n\\u003Cli\\u003EStarter Website: Coming Soon (finishing up development)\\u003C/li\\u003E\\n\\u003Cli\\u003EYoutube: Coming Soon\\u003C/li\\u003E\\n\\u003Cli\\u003EEmail: \\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?auto=webp\\u0026s=4175bc2acf207428f5a243476ba4485bd153bda3\", \"width\": 400, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8caf7c066e7a5bab8d9fe3a872adba0b01b74464\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f7a0a268911ad5c4f4709811f2f98acf4cab9411\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=72c8baed8a1f8b67b30b4cf626fa1514a1fb81f4\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"bTS-23LsPy3BUIV0fTZfuz80MZ1bVJqHdkOLkoUzRLY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs4e7x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OsiraDevTeam\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs4e7x/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs4e7x/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558625667.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project \\\\*\\\\*Chronicles of Osira\\\\*\\\\*! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Our Purpose \\u0026 Goals:\\n\\n\\u0026#x200B;\\n\\nOur vision is to be the most popular multiplayer survival RPG \\u0026 minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Survival RPG World (Osira):\\n\\n\\u0026#x200B;\\n\\nIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Main Features:\\n\\n\\u0026#x200B;\\n\\n\\\\######Terrain Regen Mod\\n\\n\\u0026#x200B;\\n\\nOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\n\\n\\u0026#x200B;\\n\\n\\\\######NPC Mod\\n\\n\\u0026#x200B;\\n\\nThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\n\\n\\u0026#x200B;\\n\\n\\\\######Kingdom System\\n\\n\\u0026#x200B;\\n\\nThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Server Status:\\n\\n\\u0026#x200B;\\n\\n**Various Positions Open**! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\n\\n\\\\*\\\\*\\\\*\\n\\n# ###Social Media:\\n\\nTwitter: \\\\[Twitter\\\\]([https://twitter.com/OsiraChronicles](https://twitter.com/OsiraChronicles))\\n\\nDiscord: \\\\[Discord\\\\]([https://discord.gg/rzfNq8p](https://discord.gg/rzfNq8p))\\n\\nSubReddit: Coming Soon\\n\\nStarter Website: Coming Soon (finishing up development)\\n\\nYoutube: Coming Soon\\n\\nEmail: [chroniclesofosira@gmail.com](mailto:chroniclesofosira@gmail.com)\", \"author_fullname\": \"t2_3tl8crp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"CoO\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs48eu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558625101.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558653631.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project **Chronicles of Osira**! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Our Purpose \\u0026amp; Goals:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur vision is to be the most popular multiplayer survival RPG \\u0026amp; minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Survival RPG World (Osira):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Main Features:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######Terrain Regen Mod\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######NPC Mod\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######Kingdom System\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Server Status:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EVarious Positions Open\\u003C/strong\\u003E! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E###Social Media:\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ETwitter: [Twitter](\\u003Ca href=\\\"https://twitter.com/OsiraChronicles\\\"\\u003Ehttps://twitter.com/OsiraChronicles\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDiscord: [Discord](\\u003Ca href=\\\"https://discord.gg/rzfNq8p\\\"\\u003Ehttps://discord.gg/rzfNq8p\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESubReddit: Coming Soon\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStarter Website: Coming Soon (finishing up development)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYoutube: Coming Soon\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmail: [\\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E](mailto:\\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?auto=webp\\u0026s=4175bc2acf207428f5a243476ba4485bd153bda3\", \"width\": 400, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8caf7c066e7a5bab8d9fe3a872adba0b01b74464\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f7a0a268911ad5c4f4709811f2f98acf4cab9411\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=72c8baed8a1f8b67b30b4cf626fa1514a1fb81f4\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"bTS-23LsPy3BUIV0fTZfuz80MZ1bVJqHdkOLkoUzRLY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs48eu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OsiraDevTeam\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs48eu/coo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs48eu/coo/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558624831.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"my testes\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testual\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs2x6p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558646741.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emy testes\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs2x6p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs2x6p/testual/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs2x6p/testual/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558617941.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Should I upgrade my subwoofer and if so, what subwoofers do you recommend? Also just got a new 77\\\" LG C8 OLED TV (pics.)\\n\\n[Layout \\u0026 Picture Album](https://imgur.com/a/GhlqXQo) \\n\\nI'm doing a complete home theater overhaul. I just upgraded to a LG C8 77\\\" OLED TV. Please excuse the mess - I have lots of boxes from new goodies for this. =D I'm upgrading to a Dolby Atmos 5.1.4 (5.2.4) surround sound system with ceiling mounted speakers. I just picked up a Denon AVR-X4400h. I'm planning on getting 4x [Boston Acoustics SoundWare](https://www.accessories4less.com/make-a-store/item/bossoundwareblka/boston-acoustics-soundware-4.5-speaker-atmos-dts-x-on-wall-speaker-black-each/1.html) ceiling mounted speakers. I still have acoustic room treatment to do and that's part of my whole budget too. I'm also considering upgrading my subwoofer. \\n\\nMy current 5.1 surround sound system (satellites temporarily removed for the TV install) is a [Jamo S 606 HCS 3 system.](https://www.jamo.com/products/s606hcs3) I also have one sealed [Jamo D 6 SUB.](https://www.jamo.com/products/d6sub)\\n\\nWould it be worthwhile to upgrade my subwoofer and get two subs? I notice a lot of bass loudness variability from each seating position due to standing waves in my current apartment and running two subwoofers will help mitigate it. Of course you need two matching subwoofers for this but my jamo is discontinued and can't find any more on eBay. \\n\\nThen my jamo really doesn't hit low enough frequencies these days for new movie content. Online the specs advertise down to 28 hz, but listening to test tones it seems like there is a lot of dropoff starting to occur at 35-40 hz. I'm really desiring a subwoofer that doesn't start to drop off until 20-16 hz. I definitely would like to feel the low bass more and feel infrasonic frequencies (say down to 10hz) in movies. Of course there may be realistic limits in an apartment as that may disrupt others vs say 35hz playback. \\n\\nI'm in an apartment. I generally listen at -10 db to -15 db below reference level and haven't gotten any complaints. The walls seem thick but I definitely don't want to go past reference level currently. I do plan on getting my own home in 5~ years so I do want to save some future capability to comfortably listen at reference level. I'm also really desiring quality bass delivery and not just high SPL.\\n\\n**Usage:** \\n80% Netflix streaming/bd movies/tv shows, 10% music, possibly 10% or more gaming when new consoles come out (I'm mostly a pc gamer). \\n\\n**Room Specs:** \\nSee above diagram. Inner wall dimensions are 18'x14' for the living room, 10.5' x 10.0' for my dining room, and 5.5' x 8.5' for the kitchen area. So total room size is roughly 3,600 ft ^ 3 counting dining area/kitchen. Distance to main listening position is roughly 9' to my ears (8' 6\\\" to tv). \\n\\n**Budget:** \\nI'm pretty flexible as I want the best experience. I don't mind spending a bit for future headroom for when I don't have shared walls, but I don't want to drastically overspend. My hard limit is $2.5k/subwoofer (so $5k for dual subs.) I'm really leaning more towards the $1k sub price point. \\n\\n**Requirements:** \\n \\n* Dual subwoofer setup. \\n* Needs to hit max loudness THX reference SPL level playback at a 9' main listening position for all frequencies above 20hz, allowing for room gain to contribute to it (and ideally down to 16 hz). (So hitting 115dB peaks.) This is for two subwoofers in use. That will be enough future proofing for my situation.\\n* No more than $4k - $5k total for two subs. \\n* Ideally less than $2k ($1k per sub) for the subs if possible. \\n* Very flat frequency response.\\n* A great listening experience. \\n* Accurate and precise bass - not boomy.\\n* I care greatly about quality over raw loudness - as long as it can hit reference levels. \\n* No homebuilt. I don't have the time, skills, room, or equipment to build my own sub. \\n\\n**Bonuses:**\\n\\n* Great infrasonic experience.\\n* Able to be picked up by one person (under 100 lbs.)\\n* Calibration options that my receiver may not be able to support.\\n\\n**Subs I've looked at:** \\nSVS SB-2000 / PB-2000 \\nSVS SB-3000 / PB-3000 \\nSVS SB-4000 / PB-4000 \\nSVS SB16-Ultra / PB16-Ultra \\nHSU VTF-15H MK2 \\n\\n**Things I'm still trying to decide:** \\nSealed vs ported subs. It's really hard for me to decide this. I know SVS's tune frequencies are very low. I like that SVS's response curve seems to be much flatter for their ported subs above the tune frequency and also seems to have more power than the sealed subwoofers. But then below the tune frequency I think I really like the roll-off graph of their sealed subwoofers more when say hitting 10hz, as it appears pretty flat when you account for room gain. Then since I'm running two subwoofers that will add some gain.\\n\\n**Things I've ruled out:** \\nThe SVS SB-1000/PB-1000 - I don't think it will be able to hit reference level movie bass at a 9' listening position. I'm sure it's a great sub but it seems a bit under-powered to what I have according to CEA 2010 test results. \\n\\nI'm leaning towards at least the SB-3000 (or ported version) as it seems to have newer drivers/tech than the SB-2000. It also doesn't seem ungodly heavy unlike the higher end subwoofers. I'm also likewise leaning towards the sealed sub for greater infrasonic extension but that's not firm at all. I'm concerned that the sealed SVS SB-4000 doesn't hit near 115 db in CEA 2010 testing until 40hz, while the ported version gets near there at 20hz. Running with one port open (extended mode) seems to be the best of both worlds - lower sealed like extension and flatter ported like curve. Is that truly the case?\\n\\n**Questions:** \\n \\n* If I get a SVS ported sub and plug up all three ports is it very close to the sealed version? Or is there a huge difference between the dedicated sealed version? \\n* Ported or sealed subwoofer?\\n* If ported, how many ports open?\\n* What is the cheapest subwoofer that meets my SPL requirements and is at least equal to quality as the SVS subs? \\n* Is the DSP calibration tools SVS provides just a marketing gimick? Can my Denon AVR-X4400H EQ the subs just fine? Or is that sort of feature worthwhile? \\n* What crossover should I set with two of these subwoofers? Go past 80hz and into 100-200 hz? \\n* What other subwoofers should I seriously consider?\\n* Should I consider revisiting my towers/surrounds or are they still really good? They sound great to me and I have no complaints, but then I don't know if I'm missing out on improvements here. \\n\\nThanks!\", \"author_fullname\": \"t2_kz0h4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs053g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558657807.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558626664.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShould I upgrade my subwoofer and if so, what subwoofers do you recommend? Also just got a new 77\\u0026quot; LG C8 OLED TV (pics.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/GhlqXQo\\\"\\u003ELayout \\u0026amp; Picture Album\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m doing a complete home theater overhaul. I just upgraded to a LG C8 77\\u0026quot; OLED TV. Please excuse the mess - I have lots of boxes from new goodies for this. =D I\\u0026#39;m upgrading to a Dolby Atmos 5.1.4 (5.2.4) surround sound system with ceiling mounted speakers. I just picked up a Denon AVR-X4400h. I\\u0026#39;m planning on getting 4x \\u003Ca href=\\\"https://www.accessories4less.com/make-a-store/item/bossoundwareblka/boston-acoustics-soundware-4.5-speaker-atmos-dts-x-on-wall-speaker-black-each/1.html\\\"\\u003EBoston Acoustics SoundWare\\u003C/a\\u003E ceiling mounted speakers. I still have acoustic room treatment to do and that\\u0026#39;s part of my whole budget too. I\\u0026#39;m also considering upgrading my subwoofer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current 5.1 surround sound system (satellites temporarily removed for the TV install) is a \\u003Ca href=\\\"https://www.jamo.com/products/s606hcs3\\\"\\u003EJamo S 606 HCS 3 system.\\u003C/a\\u003E I also have one sealed \\u003Ca href=\\\"https://www.jamo.com/products/d6sub\\\"\\u003EJamo D 6 SUB.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWould it be worthwhile to upgrade my subwoofer and get two subs? I notice a lot of bass loudness variability from each seating position due to standing waves in my current apartment and running two subwoofers will help mitigate it. Of course you need two matching subwoofers for this but my jamo is discontinued and can\\u0026#39;t find any more on eBay. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen my jamo really doesn\\u0026#39;t hit low enough frequencies these days for new movie content. Online the specs advertise down to 28 hz, but listening to test tones it seems like there is a lot of dropoff starting to occur at 35-40 hz. I\\u0026#39;m really desiring a subwoofer that doesn\\u0026#39;t start to drop off until 20-16 hz. I definitely would like to feel the low bass more and feel infrasonic frequencies (say down to 10hz) in movies. Of course there may be realistic limits in an apartment as that may disrupt others vs say 35hz playback. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m in an apartment. I generally listen at -10 db to -15 db below reference level and haven\\u0026#39;t gotten any complaints. The walls seem thick but I definitely don\\u0026#39;t want to go past reference level currently. I do plan on getting my own home in 5~ years so I do want to save some future capability to comfortably listen at reference level. I\\u0026#39;m also really desiring quality bass delivery and not just high SPL.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUsage:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\n80% Netflix streaming/bd movies/tv shows, 10% music, possibly 10% or more gaming when new consoles come out (I\\u0026#39;m mostly a pc gamer). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERoom Specs:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSee above diagram. Inner wall dimensions are 18\\u0026#39;x14\\u0026#39; for the living room, 10.5\\u0026#39; x 10.0\\u0026#39; for my dining room, and 5.5\\u0026#39; x 8.5\\u0026#39; for the kitchen area. So total room size is roughly 3,600 ft ^ 3 counting dining area/kitchen. Distance to main listening position is roughly 9\\u0026#39; to my ears (8\\u0026#39; 6\\u0026quot; to tv). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBudget:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nI\\u0026#39;m pretty flexible as I want the best experience. I don\\u0026#39;t mind spending a bit for future headroom for when I don\\u0026#39;t have shared walls, but I don\\u0026#39;t want to drastically overspend. My hard limit is $2.5k/subwoofer (so $5k for dual subs.) I\\u0026#39;m really leaning more towards the $1k sub price point. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERequirements:\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDual subwoofer setup.\\u003Cbr/\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENeeds to hit max loudness THX reference SPL level playback at a 9\\u0026#39; main listening position for all frequencies above 20hz, allowing for room gain to contribute to it (and ideally down to 16 hz). (So hitting 115dB peaks.) This is for two subwoofers in use. That will be enough future proofing for my situation.\\u003C/li\\u003E\\n\\u003Cli\\u003ENo more than $4k - $5k total for two subs. \\u003C/li\\u003E\\n\\u003Cli\\u003EIdeally less than $2k ($1k per sub) for the subs if possible. \\u003C/li\\u003E\\n\\u003Cli\\u003EVery flat frequency response.\\u003C/li\\u003E\\n\\u003Cli\\u003EA great listening experience. \\u003C/li\\u003E\\n\\u003Cli\\u003EAccurate and precise bass - not boomy.\\u003C/li\\u003E\\n\\u003Cli\\u003EI care greatly about quality over raw loudness - as long as it can hit reference levels. \\u003C/li\\u003E\\n\\u003Cli\\u003ENo homebuilt. I don\\u0026#39;t have the time, skills, room, or equipment to build my own sub. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBonuses:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EGreat infrasonic experience.\\u003C/li\\u003E\\n\\u003Cli\\u003EAble to be picked up by one person (under 100 lbs.)\\u003C/li\\u003E\\n\\u003Cli\\u003ECalibration options that my receiver may not be able to support.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESubs I\\u0026#39;ve looked at:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSVS SB-2000 / PB-2000\\u003Cbr/\\u003E\\nSVS SB-3000 / PB-3000\\u003Cbr/\\u003E\\nSVS SB-4000 / PB-4000\\u003Cbr/\\u003E\\nSVS SB16-Ultra / PB16-Ultra\\u003Cbr/\\u003E\\nHSU VTF-15H MK2 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThings I\\u0026#39;m still trying to decide:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSealed vs ported subs. It\\u0026#39;s really hard for me to decide this. I know SVS\\u0026#39;s tune frequencies are very low. I like that SVS\\u0026#39;s response curve seems to be much flatter for their ported subs above the tune frequency and also seems to have more power than the sealed subwoofers. But then below the tune frequency I think I really like the roll-off graph of their sealed subwoofers more when say hitting 10hz, as it appears pretty flat when you account for room gain. Then since I\\u0026#39;m running two subwoofers that will add some gain.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThings I\\u0026#39;ve ruled out:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nThe SVS SB-1000/PB-1000 - I don\\u0026#39;t think it will be able to hit reference level movie bass at a 9\\u0026#39; listening position. I\\u0026#39;m sure it\\u0026#39;s a great sub but it seems a bit under-powered to what I have according to CEA 2010 test results. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m leaning towards at least the SB-3000 (or ported version) as it seems to have newer drivers/tech than the SB-2000. It also doesn\\u0026#39;t seem ungodly heavy unlike the higher end subwoofers. I\\u0026#39;m also likewise leaning towards the sealed sub for greater infrasonic extension but that\\u0026#39;s not firm at all. I\\u0026#39;m concerned that the sealed SVS SB-4000 doesn\\u0026#39;t hit near 115 db in CEA 2010 testing until 40hz, while the ported version gets near there at 20hz. Running with one port open (extended mode) seems to be the best of both worlds - lower sealed like extension and flatter ported like curve. Is that truly the case?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuestions:\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf I get a SVS ported sub and plug up all three ports is it very close to the sealed version? Or is there a huge difference between the dedicated sealed version? \\u003C/li\\u003E\\n\\u003Cli\\u003EPorted or sealed subwoofer?\\u003C/li\\u003E\\n\\u003Cli\\u003EIf ported, how many ports open?\\u003C/li\\u003E\\n\\u003Cli\\u003EWhat is the cheapest subwoofer that meets my SPL requirements and is at least equal to quality as the SVS subs? \\u003C/li\\u003E\\n\\u003Cli\\u003EIs the DSP calibration tools SVS provides just a marketing gimick? Can my Denon AVR-X4400H EQ the subs just fine? Or is that sort of feature worthwhile? \\u003C/li\\u003E\\n\\u003Cli\\u003EWhat crossover should I set with two of these subwoofers? Go past 80hz and into 100-200 hz? \\u003C/li\\u003E\\n\\u003Cli\\u003EWhat other subwoofers should I seriously consider?\\u003C/li\\u003E\\n\\u003Cli\\u003EShould I consider revisiting my towers/surrounds or are they still really good? They sound great to me and I have no complaints, but then I don\\u0026#39;t know if I\\u0026#39;m missing out on improvements here. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?auto=webp\\u0026s=59339d4b2ebfbe18b61c9a86e365f8321531d124\", \"width\": 657, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c18fe46880e5ca72d70aecab4f79a4f265755b32\", \"width\": 108, \"height\": 197}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=eb476b372546cf2d51c8d9f6f6b3181ea39b4c69\", \"width\": 216, \"height\": 394}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=628e28ecbb59a23550dade2a9b91fed61c296c81\", \"width\": 320, \"height\": 584}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d2a0c12ad208ef2add9bca3b8ec39909bf6404e5\", \"width\": 640, \"height\": 1168}], \"variants\": {}, \"id\": \"g_mPvQ05DaozAfugMZjnsIvHh9OD3XMO1-AgGxxaLwQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs053g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"IncendiaryGames\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs053g/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"subreddit_subscribers\": 709, \"created_utc\": 1558597864.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bs053g\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["1309801"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:33 GMT"], "x-ratelimit-remaining": ["588.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["12"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360212.982902,VS0,VE1356"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["388"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-12T17:23:33"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_bzo7q6"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:34 GMT"], "x-ratelimit-remaining": ["587.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["13"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360214.139433,VS0,VE95"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["386"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_bzo7q6"}, "recorded_at": "2019-06-12T17:23:34"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/comments/blfat0/?sort=best&raw_json=1&limit=2048"}, "response": {"body": {"string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" [https://icdn8.digitaltrends.com/image/history-of-virtual-reality-super-cockpit-720x720.jpg](https://icdn8.digitaltrends.com/image/history-of-virtual-reality-super-cockpit-720x720.jpg)\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing inline image links. Is it a url link or an inline image render?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"parent_whitelist_status\": null, \"hide_score\": false, \"name\": \"t3_blfat0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_250hgx\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557193781.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://icdn8.digitaltrends.com/image/history-of-virtual-reality-super-cockpit-720x720.jpg\\\"\\u003Ehttps://icdn8.digitaltrends.com/image/history-of-virtual-reality-super-cockpit-720x720.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/VS-btwZZkqPDL2Vd66P5CJRiy5_y97gubmfmabrWvwk.jpg?auto=webp\\u0026s=d3c10ad19e8b8eca7d67c9c02e5e3855da850f74\", \"width\": 720, \"height\": 480}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/VS-btwZZkqPDL2Vd66P5CJRiy5_y97gubmfmabrWvwk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7114703deabd7dabcdb76a4a297e1d9972e2b894\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/VS-btwZZkqPDL2Vd66P5CJRiy5_y97gubmfmabrWvwk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=68c8d4a2411529b4604cc99596a75cd05521c732\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/VS-btwZZkqPDL2Vd66P5CJRiy5_y97gubmfmabrWvwk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1723b2ec798f9d1ec140cc51eea133f1568769dd\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/VS-btwZZkqPDL2Vd66P5CJRiy5_y97gubmfmabrWvwk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=edead561607977d7d32b995e9fa3827e494870c5\", \"width\": 640, \"height\": 426}], \"variants\": {}, \"id\": \"K2EIcIbKe-BpkJJ7Ks_tiI6dFeXtEYZt2OiHV5_IJzo\"}], \"enabled\": false}, \"all_awardings\": [], \"media\": null, \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blfat0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MeddyEvalNight\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"subreddit_subscribers\": 709, \"created_utc\": 1557164981.0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emnwgbf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"report_reasons\": null, \"author\": \"MeddyEvalNight\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Not what I wanted... next test.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"collapsed_reason\": null, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot what I wanted... next test.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"gildings\": {}, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emnwgbf/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_emnwgbf\", \"created\": 1557193820.0, \"subreddit\": \"PostPreview\", \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1557165020.0, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emny9vc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"report_reasons\": null, \"author\": \"MeddyEvalNight\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Image was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u003Cimg/\\u003E . It looks like an inline rendered image needs to be uploaded\\n\\n\\u0026#x200B;\\n\\n[Video link](https://www.youtube.com/watch?v=yd98RGxad0U)\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"collapsed_reason\": null, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EImage was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u0026lt;img/\\u0026gt; . It looks like an inline rendered image needs to be uploaded\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=yd98RGxad0U\\\"\\u003EVideo link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"gildings\": {}, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emny9vc/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_emny9vc\", \"created\": 1557194874.0, \"subreddit\": \"PostPreview\", \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1557166074.0, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": true, \"no_follow\": false, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwoano\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_3um52nx7\", \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"collapsed_reason\": null, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"gildings\": {}, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/eqwoano/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_eqwoano\", \"created\": 1560388336.0, \"subreddit\": \"PostPreview\", \"author_flair_text\": null, \"collapsed\": false, \"rte_mode\": \"richtext\", \"created_utc\": 1560359536.0, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]", "encoding": "UTF-8"}, "headers": {"Content-Length": ["9770"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:35 GMT"], "x-ratelimit-remaining": ["586.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["14"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360215.897393,VS0,VE162"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["386"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/comments/blfat0/?sort=best&raw_json=1&limit=2048"}, "recorded_at": "2019-06-12T17:23:35"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/api/v1/me?raw_json=1"}, "response": {"body": {"string": "{\"is_employee\": false, \"seen_layout_switch\": true, \"has_visited_new_profile\": false, \"pref_no_profanity\": true, \"has_external_account\": false, \"pref_geopopular\": \"\", \"seen_redesign_modal\": true, \"pref_show_trending\": true, \"subreddit\": {\"default_set\": true, \"user_is_contributor\": false, \"banner_img\": \"\", \"disable_contributor_requests\": false, \"user_is_banned\": false, \"free_form_reports\": true, \"community_icon\": \"\", \"show_media\": true, \"icon_color\": \"#25B79F\", \"user_is_muted\": false, \"display_name\": \"u_nnreddit-user\", \"header_img\": null, \"title\": \"\", \"over_18\": false, \"icon_size\": [256, 256], \"primary_color\": \"\", \"icon_img\": \"https://www.redditstatic.com/avatars/avatar_default_16_25B79F.png\", \"description\": \"\", \"header_size\": null, \"restrict_posting\": true, \"restrict_commenting\": false, \"subscribers\": 0, \"is_default_icon\": true, \"link_flair_position\": \"\", \"display_name_prefixed\": \"u/nnreddit-user\", \"key_color\": \"\", \"name\": \"t5_125o8u\", \"is_default_banner\": true, \"url\": \"/user/nnreddit-user/\", \"banner_size\": null, \"user_is_moderator\": true, \"public_description\": \"\", \"link_flair_enabled\": false, \"subreddit_type\": \"user\", \"user_is_subscriber\": false}, \"is_sponsor\": false, \"gold_expiration\": null, \"has_gold_subscription\": false, \"num_friends\": 0, \"features\": {\"mweb_xpromo_revamp_v2\": {\"owner\": \"growth\", \"variant\": \"treatment_5\", \"experiment_id\": 457}, \"chat_subreddit\": true, \"show_amp_link\": true, \"read_from_pref_service\": true, \"chat_rollout\": true, \"chat_reddar_reports\": true, \"default_srs_holdout\": {\"owner\": \"relevance\", \"variant\": \"popular\", \"experiment_id\": 171}, \"is_email_permission_required\": false, \"richtext_previews\": true, \"email_verification\": {\"owner\": \"growth\", \"variant\": \"variant_3\", \"experiment_id\": 1038}, \"mweb_xpromo_revamp_v3\": {\"owner\": \"growth\", \"variant\": \"control_2\", \"experiment_id\": 480}, \"sequence\": true, \"mweb_xpromo_modal_listing_click_daily_dismissible_ios\": true, \"community_awards\": true, \"dual_write_user_prefs\": true, \"do_not_track\": true, \"chat_user_settings\": true, \"mweb_xpromo_interstitial_comments_ios\": true, \"mweb_xpromo_modal_listing_click_daily_dismissible_android\": true, \"mweb_xpromo_interstitial_comments_android\": true, \"seq_randomize_sort\": true, \"mweb_sharing_web_share_api\": {\"owner\": \"growth\", \"variant\": \"control_1\", \"experiment_id\": 314}, \"chat_group_rollout\": true, \"custom_feeds\": true, \"spez_modal\": true, \"mweb_link_tab\": {\"owner\": \"growth\", \"variant\": \"control_1\", \"experiment_id\": 404}}, \"has_android_subscription\": false, \"verified\": true, \"new_modmail_exists\": null, \"pref_autoplay\": true, \"coins\": 0, \"has_paypal_subscription\": false, \"has_subscribed_to_premium\": false, \"id\": \"3um52nx7\", \"has_stripe_subscription\": false, \"seen_premium_adblock_modal\": false, \"can_create_subreddit\": false, \"over_18\": false, \"is_gold\": false, \"is_mod\": false, \"suspension_expiration_utc\": null, \"has_verified_email\": true, \"is_suspended\": false, \"pref_video_autoplay\": true, \"in_redesign_beta\": true, \"icon_img\": \"https://www.redditstatic.com/avatars/avatar_default_16_25B79F.png\", \"has_mod_mail\": false, \"pref_nightmode\": false, \"oauth_client_id\": \"KBV2seGZgHOa9g\", \"hide_from_robots\": false, \"link_karma\": 2, \"force_password_reset\": false, \"inbox_count\": 0, \"pref_top_karma_subreddits\": true, \"has_mail\": false, \"pref_show_snoovatar\": false, \"name\": \"nnreddit-user\", \"pref_clickgadget\": 5, \"created\": 1559101744.0, \"gold_creddits\": 0, \"created_utc\": 1559072944.0, \"has_ios_subscription\": false, \"pref_show_twitter\": false, \"in_beta\": false, \"comment_karma\": 0, \"has_subscribed\": true, \"seen_subreddit_chat_ftux\": false}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["3591"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:35 GMT"], "x-ratelimit-remaining": ["585.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["15"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360216.724659,VS0,VE77"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["385"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/api/v1/me?raw_json=1"}, "recorded_at": "2019-06-12T17:23:35"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/api/info/?raw_json=1&id=t1_emny9vc"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"distinguished\": null, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emny9vc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"report_reasons\": null, \"author\": \"MeddyEvalNight\", \"can_mod_post\": false, \"created_utc\": 1557166074.0, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Image was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u003Cimg/\\u003E . It looks like an inline rendered image needs to be uploaded\\n\\n\\u0026#x200B;\\n\\n[Video link](https://www.youtube.com/watch?v=yd98RGxad0U)\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_emny9vc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"collapsed_reason\": null, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EImage was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u0026lt;img/\\u0026gt; . It looks like an inline rendered image needs to be uploaded\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=yd98RGxad0U\\\"\\u003EVideo link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"stickied\": false, \"can_gild\": true, \"gildings\": {}, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emny9vc/\", \"num_reports\": null, \"locked\": false, \"no_follow\": true, \"created\": 1557194874.0, \"subreddit\": \"PostPreview\", \"author_flair_text\": null, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"author_flair_background_color\": null, \"mod_reports\": [], \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["2262"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:36 GMT"], "x-ratelimit-remaining": ["584.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["16"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360216.472902,VS0,VE86"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["384"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/api/info/?raw_json=1&id=t1_emny9vc"}, "recorded_at": "2019-06-12T17:23:36"}, {"request": {"body": {"string": "api_type=json&text=this+is+a+test%0A&thing_id=t3_blfat0", "encoding": "utf-8"}, "headers": {"Content-Length": ["55"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=hbJw9F3ioxDtTELuFS"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["bearer **********"]}, "method": "POST", "uri": "https://oauth.reddit.com/api/comment/?raw_json=1"}, "response": {"body": {"string": "{\"json\": {\"errors\": [], \"data\": {\"things\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"distinguished\": null, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwq8ur\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"can_mod_post\": false, \"created_utc\": 1560360217.0, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_3um52nx7\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_eqwq8ur\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"collapsed_reason\": null, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"stickied\": false, \"can_gild\": false, \"gildings\": {}, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/eqwq8ur/\", \"num_reports\": null, \"locked\": false, \"no_follow\": false, \"created\": 1560389017.0, \"subreddit\": \"PostPreview\", \"author_flair_text\": null, \"rte_mode\": \"markdown\", \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"author_flair_background_color\": null, \"mod_reports\": [], \"subreddit_type\": \"public\", \"ups\": 1}}]}}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["1633"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Wed, 12 Jun 2019 17:23:37 GMT"], "x-ratelimit-remaining": ["583.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21946-LGA"], "x-ratelimit-used": ["17"], "Via": ["1.1 varnish"], "X-Timer": ["S1560360217.230907,VS0,VE259"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["383"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/api/comment/?raw_json=1"}, "recorded_at": "2019-06-12T17:23:37"}], "recorded_with": "betamax/0.8.1"} \ No newline at end of file diff --git a/tests/cassettes/post.json b/tests/cassettes/post.json new file mode 100644 index 0000000..51c4374 --- /dev/null +++ b/tests/cassettes/post.json @@ -0,0 +1 @@ +{"http_interactions": [{"request": {"body": {"string": "grant_type=refresh_token&refresh_token=**********", "encoding": "utf-8"}, "headers": {"Content-Length": ["79"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["**********"]}, "method": "POST", "uri": "https://www.reddit.com/api/v1/access_token"}, "response": {"body": {"string": "{\"access_token\": \"**********\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"edit history identity mysubreddits privatemessages read report save submit subscribe vote\"}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["206"], "x-xss-protection": ["1; mode=block"], "X-Cache": ["MISS"], "x-content-type-options": ["nosniff"], "Set-Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl; Domain=reddit.com; Max-Age=63071999; Path=/; secure"], "Accept-Ranges": ["bytes"], "X-Timer": ["S1559930746.599144,VS0,VE50"], "X-Served-By": ["cache-lga21930-LGA"], "X-Moose": ["majestic"], "Connection": ["keep-alive"], "Via": ["1.1 varnish"], "X-Cache-Hits": ["0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "cache-control": ["max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:45 GMT"], "x-frame-options": ["SAMEORIGIN"], "Server": ["snooserv"], "Content-Type": ["application/json; charset=UTF-8"]}, "status": {"message": "OK", "code": 200}, "url": "https://www.reddit.com/api/v1/access_token"}, "recorded_at": "2019-06-07T18:05:45"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 3, \"children\": [{\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"emacs\", \"header_img\": \"https://f.thumbs.redditmedia.com/1CBmBnoqVxNCXdVS.png\", \"title\": \"M-x emacs-reddit\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/emacs\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 29874, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2qhwu\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"The extensible, customizable, self-documenting real-time display editor.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA sub-reddit for the timeless and infinitely powerful editor. \\u003Ca href=\\\"http://emacsrocks.com/\\\"\\u003EWant to see what Emacs is capable of?!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGet Emacs\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://ftp.gnu.org/gnu/emacs/windows/\\\"\\u003EWindows\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://emacsformacosx.com/\\\"\\u003EMac OS X\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGNU/Linux and BSD (Just get it from your distribution\\u0026#39;s package manager)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.gnu.org/software/emacs/#Obtaining\\\"\\u003EBuild it from source\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Resources\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/\\\"\\u003EEmacs Wiki\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://wikemacs.org/\\\"\\u003EWikEmacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://emacs.zeef.com/ehartc\\\"\\u003EEmacs Reference\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://shop.oreilly.com/product/9780596006488.do\\\"\\u003ELearning GNU Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf\\\"\\u003EEmacs Reference Card\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026amp;restrict_sr=on\\u0026amp;sort=new\\u0026amp;t=all\\\"\\u003EWeekly tips/tricks/etc threads\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Tutorials\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/\\\"\\u003EBeginner\\u2019s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/\\\"\\u003EAbsolute Beginner\\u0026#39;s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/\\\"\\u003EHow to Learn Emacs: A Hand-drawn One-pager for Beginners\\n\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERelated Subreddits\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/orgmode\\\"\\u003Er/orgmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/evilmode\\\"\\u003Er/evilmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/spacemacs\\\"\\u003Er/spacemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/planetemacs\\\"\\u003Er/planetemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUseful Emacs configuration files and distributions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/technomancy/better-defaults\\\"\\u003EBetter Defaults\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick pain-saver tip\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/emacs/MovingTheCtrlKey\\\"\\u003EPut the Caps Lock key to better use!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": [152, 50], \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1210079411.0, \"wls\": 6, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe extensible, customizable, self-documenting real-time display editor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2qhwu\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"A sub-reddit for the timeless and infinitely powerful editor. [Want to see what Emacs is capable of?!](http://emacsrocks.com/)\\n\\n**Get Emacs**\\n\\n* [Windows](http://ftp.gnu.org/gnu/emacs/windows/)\\n* [Mac OS X](http://emacsformacosx.com/)\\n* GNU/Linux and BSD (Just get it from your distribution's package manager)\\n* [Build it from source] (http://www.gnu.org/software/emacs/#Obtaining)\\n\\n**Emacs Resources**\\n\\n* [Emacs Wiki](http://www.emacswiki.org/)\\n* [WikEmacs](http://wikemacs.org/)\\n* [Emacs Reference](https://emacs.zeef.com/ehartc)\\n* [Learning GNU Emacs](http://shop.oreilly.com/product/9780596006488.do)\\n* [Emacs Reference Card](https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf)\\n* [Weekly tips/tricks/etc threads](/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026restrict_sr=on\\u0026sort=new\\u0026t=all)\\n\\n**Emacs Tutorials**\\n\\n* [Beginner\\u2019s Guide to Emacs](http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/)\\n* [Absolute Beginner's Guide to Emacs](http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/)\\n* [How to Learn Emacs: A Hand-drawn One-pager for Beginners\\n](http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/)\\n\\n**Related Subreddits**\\n\\n* r/orgmode\\n* r/evilmode\\n* r/spacemacs\\n* r/planetemacs\\n\\n**Useful Emacs configuration files and distributions**\\n\\n* [Better Defaults](https://github.com/technomancy/better-defaults)\\n\\n**Quick pain-saver tip**\\n\\n* [Put the Caps Lock key to better use!](http://www.emacswiki.org/emacs/MovingTheCtrlKey)\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": \"all_ads\", \"url\": \"/r/emacs/\", \"created_utc\": 1210050611.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": true, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"orgmode\", \"header_img\": null, \"title\": \"Org-mode\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/orgmode\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 4791, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2s5ak\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"[Org-mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EAbout Org mode\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EResources\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://orgmode.org/#docs\\\"\\u003EOfficial Documentation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/worg/\\\"\\u003ECommunity Documentation (Worg)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/guide/\\\"\\u003ECompact Org-mode Guide\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://lists.gnu.org/archive/html/emacs-orgmode/\\\"\\u003EOfficial Mailing list\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EIRC Channel: #org-mode on \\u003Ca href=\\\"http://freenode.net/\\\"\\u003EFreenode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMatrix: \\u003Ca href=\\\"https://matrix.to/#/#org-mode:matrix.org\\\"\\u003E#org-mode:matrix.org\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003ERelated Subreddits\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1287182517.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg-mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2s5ak\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"# About Org mode\\n\\n[Org mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\n\\n# Resources\\n\\n* [Official Documentation](http://orgmode.org/#docs)\\n* [Community Documentation (Worg)](https://orgmode.org/worg/)\\n* [Compact Org-mode Guide](https://orgmode.org/guide/)\\n* [Official Mailing list](http://lists.gnu.org/archive/html/emacs-orgmode/)\\n* IRC Channel: #org-mode on [Freenode](http://freenode.net/)\\n* Matrix: [#org-mode:matrix.org](https://matrix.to/#/#org-mode:matrix.org)\\n\\n# Related Subreddits\\n\\n* /r/emacs\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/orgmode/\", \"created_utc\": 1287153717.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"PostPreview\", \"header_img\": null, \"title\": \"Preview your Reddit posts\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/PostPreview\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 704, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2waml\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"A place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWhat this is\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAllowed posts\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYou can post whatever and however much you\\u0026#39;d like here, \\u003Cstrong\\u003Eas long as it conforms to \\u003Ca href=\\\"http://www.reddit.com/rules\\\"\\u003Ereddiquette\\u003C/a\\u003E\\u003C/strong\\u003E (eg. NO personal info, no alt accounts, etc). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPlease\\u003C/strong\\u003E utilize the Report button for content you feel breaks these rules, we can\\u0026#39;t sift through EVERYTHING, so your help is greatly appreciated.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpam filter\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESome posts/comments may be auto-rejected by Reddit\\u0026#39;s spam filter, despite the threshold set to \\u0026quot;Minimal\\u0026quot; here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you don\\u0026#39;t see you post show up, it\\u0026#39;s likely it got rejected. Message the mod mail and we can override it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHave fun previewing!\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"#24a0ed\", \"can_assign_user_flair\": true, \"created\": 1360563027.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": \"Try a text post!\", \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": \"confidence\", \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": true, \"id\": \"2waml\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"**What this is** \\n\\u003E A place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\n \\n**Allowed posts**\\n\\u003E You can post whatever and however much you'd like here, **as long as it conforms to [reddiquette](http://www.reddit.com/rules)** (eg. NO personal info, no alt accounts, etc). \\n\\u003E \\n\\u003E **Please** utilize the Report button for content you feel breaks these rules, we can't sift through EVERYTHING, so your help is greatly appreciated.\\n \\n**Spam filter** \\n\\u003E Some posts/comments may be auto-rejected by Reddit's spam filter, despite the threshold set to \\\"Minimal\\\" here. \\n\\u003E \\n\\u003E If you don't see you post show up, it's likely it got rejected. Message the mod mail and we can override it.\\n\\n**Have fun previewing!**\\n\\n \\n \", \"submit_link_label\": \"Test out a link!\", \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/PostPreview/\", \"created_utc\": 1360534227.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["18143"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:45 GMT"], "x-ratelimit-remaining": ["599.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["1"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930746.717129,VS0,VE137"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["255"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T18:05:45"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxv7fa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqabxfh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ElBroet\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559929896.0, \"send_replies\": true, \"parent_id\": \"t1_eqabu2i\", \"score\": 1, \"author_fullname\": \"t2_15g5qn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes\", \"link_title\": \"/usr/share/emacs/26.1/lisp/* only contains the compiled .elc files of its libraries, would anyone know the most straightforward way to also have the .el files so I can jump to definition when reading more core elisp code\", \"author_flair_css_class\": null, \"name\": \"t1_eqabxfh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/eqabxfh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"report_reasons\": null, \"link_author\": \"ElBroet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"created\": 1559958696.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxv7fa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqabu2i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mitchTux\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559929839.0, \"send_replies\": true, \"parent_id\": \"t1_eqabqb1\", \"score\": 1, \"author_fullname\": \"t2_74yl9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm sorry it's not clear from this message, have you tried it?\", \"link_title\": \"/usr/share/emacs/26.1/lisp/* only contains the compiled .elc files of its libraries, would anyone know the most straightforward way to also have the .el files so I can jump to definition when reading more core elisp code\", \"author_flair_css_class\": \"\", \"name\": \"t1_eqabu2i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m sorry it\\u0026#39;s not clear from this message, have you tried it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/eqabu2i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"report_reasons\": null, \"link_author\": \"ElBroet\", \"author_flair_text\": \"\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"created\": 1559958639.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxv7fa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqabqb1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ElBroet\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559929771.0, \"send_replies\": true, \"parent_id\": \"t1_eqabfvx\", \"score\": 1, \"author_fullname\": \"t2_15g5qn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Unfortunately that would not work either, the files would not even show up there, and I presume its as there were neither the zipped source files nor the .el files in the /usr/share/blah-blah folders, and they were supposed to be later installed through the emacs26-el package in the PPA I installed emacs from. I installed said package but my emacs broke, so I ended up just reinstalling the entire thing from source instead of a PPA this time, and now it all works and my emacs is overall a good bit faster, but I appreciate the input here regardless\", \"link_title\": \"/usr/share/emacs/26.1/lisp/* only contains the compiled .elc files of its libraries, would anyone know the most straightforward way to also have the .el files so I can jump to definition when reading more core elisp code\", \"author_flair_css_class\": null, \"name\": \"t1_eqabqb1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnfortunately that would not work either, the files would not even show up there, and I presume its as there were neither the zipped source files nor the .el files in the /usr/share/blah-blah folders, and they were supposed to be later installed through the emacs26-el package in the PPA I installed emacs from. I installed said package but my emacs broke, so I ended up just reinstalling the entire thing from source instead of a PPA this time, and now it all works and my emacs is overall a good bit faster, but I appreciate the input here regardless\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/eqabqb1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"report_reasons\": null, \"link_author\": \"ElBroet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"created\": 1559958571.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxv7fa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqabfvx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mitchTux\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559929583.0, \"send_replies\": true, \"parent_id\": \"t3_bxv7fa\", \"score\": 1, \"author_fullname\": \"t2_74yl9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Try using the command `find-function` to jump to definition\", \"link_title\": \"/usr/share/emacs/26.1/lisp/* only contains the compiled .elc files of its libraries, would anyone know the most straightforward way to also have the .el files so I can jump to definition when reading more core elisp code\", \"author_flair_css_class\": \"\", \"name\": \"t1_eqabfvx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETry using the command \\u003Ccode\\u003Efind-function\\u003C/code\\u003E to jump to definition\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/eqabfvx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"report_reasons\": null, \"link_author\": \"ElBroet\", \"author_flair_text\": \"\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"created\": 1559958383.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsoko7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa8o0y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"lolzballs\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559927737.0, \"send_replies\": true, \"parent_id\": \"t1_eor96mj\", \"score\": 1, \"author_fullname\": \"t2_80mj3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hey I just got my latex previews working without a theme, but with nord it has this issue. With [the foreground set to black](https://www.reddit.com/r/emacs/comments/bj6iw2/previewlatex_doesnt_work_when_loading_a_theme/) it works. What themes have you tried that work?\", \"link_title\": \"AUCTex LaTex preview not working\", \"author_flair_css_class\": null, \"name\": \"t1_eqa8o0y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey I just got my latex previews working without a theme, but with nord it has this issue. With \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/bj6iw2/previewlatex_doesnt_work_when_loading_a_theme/\\\"\\u003Ethe foreground set to black\\u003C/a\\u003E it works. What themes have you tried that work?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bsoko7/auctex_latex_preview_not_working/eqa8o0y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bsoko7/auctex_latex_preview_not_working/\", \"report_reasons\": null, \"link_author\": \"earvingad\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bsoko7/auctex_latex_preview_not_working/\", \"created\": 1559956537.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559928116.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxv7fa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa70bc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ElBroet\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559926616.0, \"send_replies\": true, \"parent_id\": \"t1_eqa0jen\", \"score\": 1, \"author_fullname\": \"t2_15g5qn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"After installing that and upgrading emacs through the ppa, something seemed to break and I was unable to start emacs altogether, so I just installed from source and it all went well and it works now, I appreciate the help. Also, I'm probably wrong here, but it almost seems faster now as well\\n\\nEdit: Ok, I don't know if I'm crazy anymore, it seems way faster\", \"link_title\": \"/usr/share/emacs/26.1/lisp/* only contains the compiled .elc files of its libraries, would anyone know the most straightforward way to also have the .el files so I can jump to definition when reading more core elisp code\", \"author_flair_css_class\": null, \"name\": \"t1_eqa70bc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter installing that and upgrading emacs through the ppa, something seemed to break and I was unable to start emacs altogether, so I just installed from source and it all went well and it works now, I appreciate the help. Also, I\\u0026#39;m probably wrong here, but it almost seems faster now as well\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: Ok, I don\\u0026#39;t know if I\\u0026#39;m crazy anymore, it seems way faster\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/eqa70bc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"report_reasons\": null, \"link_author\": \"ElBroet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"created\": 1559955416.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa68ev\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"aSamWow\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559926108.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 1, \"author_fullname\": \"t2_c2mq5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Any bitmap is good. If you have a nice display, nerd font's sauce code pro in amazing.\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eqa68ev\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny bitmap is good. If you have a nice display, nerd font\\u0026#39;s sauce code pro in amazing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eqa68ev/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559954908.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa57wb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vitorqb23\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559925432.0, \"send_replies\": true, \"parent_id\": \"t1_eq60fg8\", \"score\": 1, \"author_fullname\": \"t2_2nkdd29t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It was too early to celebrate. Today after loosing connection and trying to start a new client the emacsclient hanged once again. :(\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eqa57wb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt was too early to celebrate. Today after loosing connection and trying to start a new client the emacsclient hanged once again. :(\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eqa57wb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559954232.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa55se\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vitorqb23\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559925393.0, \"send_replies\": true, \"parent_id\": \"t1_eq6btuj\", \"score\": 1, \"author_fullname\": \"t2_2nkdd29t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It was too early to celebrate. Today after loosing connection and trying to start a new client the emacsclient hanged once again. :(\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eqa55se\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt was too early to celebrate. Today after loosing connection and trying to start a new client the emacsclient hanged once again. :(\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eqa55se/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559954193.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwzpw0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa486r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"technomancy\", \"num_comments\": 24, \"can_mod_post\": false, \"created_utc\": 1559924770.0, \"send_replies\": true, \"parent_id\": \"t1_eq59a0w\", \"score\": 1, \"author_fullname\": \"t2_1wfw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Looks like it fails due to missing the function `flatten-tree`.\", \"link_title\": \"Improved JSX support now available in js-mode on Emacs master\", \"author_flair_css_class\": null, \"name\": \"t1_eqa486r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks like it fails due to missing the function \\u003Ccode\\u003Eflatten-tree\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/eqa486r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"report_reasons\": null, \"link_author\": \"jacksonrayhamilton\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"created\": 1559953570.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa2f91\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"00-11\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559923553.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 1, \"author_fullname\": \"t2_3upsyt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"With [Dired+](https://www.emacswiki.org/emacs/DiredPlus) you have these commands:\\n\\n----\\n\\n\\u003E `diredp-do-grep` is an interactive compiled Lisp function in\\n`dired+.el`.\\n\\n\\u003E `(diredp-do-grep COMMAND-ARGS)`\\n\\n\\u003E Run `grep` on marked (or next prefix arg) files.\\n\\n\\u003E A prefix argument behaves according to the `ARG` argument of\\n`dired-get-marked-files`. In particular, `C-u C-u` operates on **all**\\nfiles in the Dired buffer.\\n\\n----\\n\\n\\u003E `diredp-do-grep-recursive` is an interactive compiled Lisp function in\\n`dired+.el`.\\n\\n\\u003E It is bound to `M-+ C-M-g`, `menu-bar operate operate-recursive search\\ndiredp-do-grep-recursive`.\\n\\n\\u003E `(diredp-do-grep-recursive COMMAND-ARGS \\u0026optional DETAILS)`\\n\\n\\u003E Run `grep` on marked files, including those in marked subdirs.\\n\\n\\u003E Like `diredp-do-grep`, but act recursively on subdirs.\\nThe files included are those that are marked in the current Dired\\nbuffer, or **all** files in the directory if none are marked. Marked\\nsubdirectories are handled recursively in the same way.\\n\\n\\u003E With a prefix argument, ignore all marks - include **all** files in this\\nDired buffer and **all** subdirs, recursively.\\n\\n\\u003E When called from Lisp, optional arg `DETAILS` is passed to\\n`diredp-get-files`.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eqa2f91\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith \\u003Ca href=\\\"https://www.emacswiki.org/emacs/DiredPlus\\\"\\u003EDired+\\u003C/a\\u003E you have these commands:\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Ccode\\u003Ediredp-do-grep\\u003C/code\\u003E is an interactive compiled Lisp function in\\n\\u003Ccode\\u003Edired+.el\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(diredp-do-grep COMMAND-ARGS)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERun \\u003Ccode\\u003Egrep\\u003C/code\\u003E on marked (or next prefix arg) files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA prefix argument behaves according to the \\u003Ccode\\u003EARG\\u003C/code\\u003E argument of\\n\\u003Ccode\\u003Edired-get-marked-files\\u003C/code\\u003E. In particular, \\u003Ccode\\u003EC-u C-u\\u003C/code\\u003E operates on \\u003Cstrong\\u003Eall\\u003C/strong\\u003E\\nfiles in the Dired buffer.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Ccode\\u003Ediredp-do-grep-recursive\\u003C/code\\u003E is an interactive compiled Lisp function in\\n\\u003Ccode\\u003Edired+.el\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is bound to \\u003Ccode\\u003EM-+ C-M-g\\u003C/code\\u003E, \\u003Ccode\\u003Emenu-bar operate operate-recursive search\\ndiredp-do-grep-recursive\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(diredp-do-grep-recursive COMMAND-ARGS \\u0026amp;optional DETAILS)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERun \\u003Ccode\\u003Egrep\\u003C/code\\u003E on marked files, including those in marked subdirs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELike \\u003Ccode\\u003Ediredp-do-grep\\u003C/code\\u003E, but act recursively on subdirs.\\nThe files included are those that are marked in the current Dired\\nbuffer, or \\u003Cstrong\\u003Eall\\u003C/strong\\u003E files in the directory if none are marked. Marked\\nsubdirectories are handled recursively in the same way.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith a prefix argument, ignore all marks - include \\u003Cstrong\\u003Eall\\u003C/strong\\u003E files in this\\nDired buffer and \\u003Cstrong\\u003Eall\\u003C/strong\\u003E subdirs, recursively.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen called from Lisp, optional arg \\u003Ccode\\u003EDETAILS\\u003C/code\\u003E is passed to\\n\\u003Ccode\\u003Ediredp-get-files\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eqa2f91/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559952353.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrwro\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa1xcj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"0x20man\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559923211.0, \"send_replies\": true, \"parent_id\": \"t3_bxrwro\", \"score\": 1, \"author_fullname\": \"t2_w845h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"To compile from source and solve the build dependencies, if you have a *deb-src* in your *apt source list*, you should only need to execute *apt build-dep emacs* to install \\u2014most of\\u2014 the required packages to build it.\\n\\nI put \\\"most\\\" above because I don't recall if 26.2 introduced some new library not used on 26.1, usually some fancy integration stuff like dbus or libcairo...\\n\\nIt's a standard Debian thing but should work with Kubuntu nonetheless.\", \"link_title\": \"Roadblock when installing Emacs 26.2 on kubuntu 19.04\", \"author_flair_css_class\": null, \"name\": \"t1_eqa1xcj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETo compile from source and solve the build dependencies, if you have a \\u003Cem\\u003Edeb-src\\u003C/em\\u003E in your \\u003Cem\\u003Eapt source list\\u003C/em\\u003E, you should only need to execute \\u003Cem\\u003Eapt build-dep emacs\\u003C/em\\u003E to install \\u2014most of\\u2014 the required packages to build it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI put \\u0026quot;most\\u0026quot; above because I don\\u0026#39;t recall if 26.2 introduced some new library not used on 26.1, usually some fancy integration stuff like dbus or libcairo...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a standard Debian thing but should work with Kubuntu nonetheless.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/eqa1xcj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"report_reasons\": null, \"link_author\": \"granti128\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"created\": 1559952011.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa1le4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"00-11\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559922992.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 1, \"author_fullname\": \"t2_3upsyt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"On MS Windows I generally use [Lucida Console](https://en.wikipedia.org/wiki/Lucida#Lucida_Console).\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eqa1le4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn MS Windows I generally use \\u003Ca href=\\\"https://en.wikipedia.org/wiki/Lucida#Lucida_Console\\\"\\u003ELucida Console\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eqa1le4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559951792.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxv7fa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa1gvy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ElBroet\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559922909.0, \"send_replies\": true, \"parent_id\": \"t1_eqa0jen\", \"score\": 1, \"author_fullname\": \"t2_15g5qn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"ok, I'm on Ubuntu and I found the emacs-el package, and piggybacking on what you I said I found another comment somewhere mentioning Ubuntu and Debian having this issue (well, I don't know if I would call it an issue, I would guess it has a purpose) and I strongly suspect this will do it, thanks so much! I'll let you know how it goes in a moment, as it stands it seems to have given me the files in another 26.2 folder instead of the 26.1, but I'm not sure if that will be an issue yet.\", \"link_title\": \"/usr/share/emacs/26.1/lisp/* only contains the compiled .elc files of its libraries, would anyone know the most straightforward way to also have the .el files so I can jump to definition when reading more core elisp code\", \"author_flair_css_class\": null, \"name\": \"t1_eqa1gvy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eok, I\\u0026#39;m on Ubuntu and I found the emacs-el package, and piggybacking on what you I said I found another comment somewhere mentioning Ubuntu and Debian having this issue (well, I don\\u0026#39;t know if I would call it an issue, I would guess it has a purpose) and I strongly suspect this will do it, thanks so much! I\\u0026#39;ll let you know how it goes in a moment, as it stands it seems to have given me the files in another 26.2 folder instead of the 26.1, but I\\u0026#39;m not sure if that will be an issue yet.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/eqa1gvy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"report_reasons\": null, \"link_author\": \"ElBroet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"created\": 1559951709.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxv7fa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa0jen\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"0x20man\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559922290.0, \"send_replies\": true, \"parent_id\": \"t1_eq9zgga\", \"score\": 1, \"author_fullname\": \"t2_w845h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Not your case but on Debian you need to install the *emacs-el* package, so I would look in your PPA if there's one to install.\", \"link_title\": \"/usr/share/emacs/26.1/lisp/* only contains the compiled .elc files of its libraries, would anyone know the most straightforward way to also have the .el files so I can jump to definition when reading more core elisp code\", \"author_flair_css_class\": null, \"name\": \"t1_eqa0jen\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot your case but on Debian you need to install the \\u003Cem\\u003Eemacs-el\\u003C/em\\u003E package, so I would look in your PPA if there\\u0026#39;s one to install.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/eqa0jen/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"report_reasons\": null, \"link_author\": \"ElBroet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"created\": 1559951090.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9zv9p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"202700000000\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559921845.0, \"send_replies\": true, \"parent_id\": \"t1_eq9wz6o\", \"score\": 1, \"author_fullname\": \"t2_c4blft1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Oooo, that looks nice, going to give it a shot, thanks!\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9zv9p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOooo, that looks nice, going to give it a shot, thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9zv9p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559950645.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559921977.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9zr6i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"K_05\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559921769.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 1, \"author_fullname\": \"t2_ztfh5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I like Iosevka\\n\\n```lisp\\n(when (member \\\"Iosevka\\\" (font-family-list))\\n (set-face-attribute 'default nil \\n :family \\\"Iosevka\\\" \\n :height 110 \\n :weight 'normal \\n :width 'normal))\\n```\\nEdit:\\nspacing might be messed up sincre I'm on mobilr and github doesnt respect spacing when copying on mobile for some reason\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9zr6i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like Iosevka\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elisp\\n(when (member \\u0026quot;Iosevka\\u0026quot; (font-family-list))\\n (set-face-attribute \\u0026#39;default nil \\n :family \\u0026quot;Iosevka\\u0026quot; \\n :height 110 \\n :weight \\u0026#39;normal \\n :width \\u0026#39;normal))\\n\\u003C/code\\u003E\\nEdit:\\nspacing might be messed up sincre I\\u0026#39;m on mobilr and github doesnt respect spacing when copying on mobile for some reason\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9zr6i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559950569.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwc9lr\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9zpsb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1559921742.0, \"send_replies\": true, \"parent_id\": \"t1_eq9w2s2\", \"score\": 1, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Heh, yes, how time travels.. at that time I had no idea of POST or GET or how to use the todoist API.\\n\\nBut things changed quite a bit over time, I learned Nim, and implemented a basic CLI for Todoist in that language: [**ntodo**][1]. If you use 64-bit GNU/Linux OS and are courageous, you can try out its static binary from [here][2].\\n\\n[1]: https://github.com/kaushalmodi/ntodo\\n\\n[2]: https://github.com/kaushalmodi/ntodo/releases\", \"link_title\": \"emacs-todoist: interact with todoist.com for task management\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq9zpsb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHeh, yes, how time travels.. at that time I had no idea of POST or GET or how to use the todoist API.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut things changed quite a bit over time, I learned Nim, and implemented a basic CLI for Todoist in that language: \\u003Ca href=\\\"https://github.com/kaushalmodi/ntodo\\\"\\u003E\\u003Cstrong\\u003Entodo\\u003C/strong\\u003E\\u003C/a\\u003E. If you use 64-bit GNU/Linux OS and are courageous, you can try out its static binary from \\u003Ca href=\\\"https://github.com/kaushalmodi/ntodo/releases\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/eq9zpsb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"report_reasons\": null, \"link_author\": \"Metr0idFusi0n\", \"author_flair_text\": \"default bindings, org, magit, ox-hugo\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"created\": 1559950542.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxv7fa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9zgga\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ElBroet\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559921572.0, \"send_replies\": true, \"parent_id\": \"t1_eq9ygg4\", \"score\": 1, \"author_fullname\": \"t2_15g5qn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thank you! I unfortunately already tried this, it will mention a source file for functions I can already jump to source on (ie, packages pulled from melpa packages, with a random example being it works for `counsel-find-file`) but it will not mention one for any of these core functions / macros that I can't jump to source on. I do have to ask what are the source tar.gz files and where would they be located, are we talking about a zipped folder of all of these source files mentioned (or multiple zipped folders of them)? Or possibly the emacs source files themselves?\\n\\n\\nEdit: I also want to mention I believe this emacs was installed through a PPA, not compiling from source\", \"link_title\": \"/usr/share/emacs/26.1/lisp/* only contains the compiled .elc files of its libraries, would anyone know the most straightforward way to also have the .el files so I can jump to definition when reading more core elisp code\", \"author_flair_css_class\": null, \"name\": \"t1_eq9zgga\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you! I unfortunately already tried this, it will mention a source file for functions I can already jump to source on (ie, packages pulled from melpa packages, with a random example being it works for \\u003Ccode\\u003Ecounsel-find-file\\u003C/code\\u003E) but it will not mention one for any of these core functions / macros that I can\\u0026#39;t jump to source on. I do have to ask what are the source tar.gz files and where would they be located, are we talking about a zipped folder of all of these source files mentioned (or multiple zipped folders of them)? Or possibly the emacs source files themselves?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: I also want to mention I believe this emacs was installed through a PPA, not compiling from source\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/eq9zgga/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"report_reasons\": null, \"link_author\": \"ElBroet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"created\": 1559950372.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwjenz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9yx5o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"viscountslim\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559921214.0, \"send_replies\": true, \"parent_id\": \"t1_epyd8hz\", \"score\": 1, \"author_fullname\": \"t2_gu9ty\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This was helpful. I managed to track it down to a block of code I'd been using to preserve the window size and position from session to session. No idea why it's not working anymore, but commenting it out seems to have fixed the problem. Thanks to everyone for thoughtful responses!\", \"link_title\": \"Emacs won't quit\", \"author_flair_css_class\": null, \"name\": \"t1_eq9yx5o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis was helpful. I managed to track it down to a block of code I\\u0026#39;d been using to preserve the window size and position from session to session. No idea why it\\u0026#39;s not working anymore, but commenting it out seems to have fixed the problem. Thanks to everyone for thoughtful responses!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwjenz/emacs_wont_quit/eq9yx5o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"report_reasons\": null, \"link_author\": \"viscountslim\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"created\": 1559950014.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxv7fa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ygg4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grimscythe_\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559920900.0, \"send_replies\": true, \"parent_id\": \"t3_bxv7fa\", \"score\": 1, \"author_fullname\": \"t2_17fhdh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Do `C-h f` get the desired function. From the help window click the `. el` file. Emacs should now open the source `.el` file from the source tar.gz files.\", \"link_title\": \"/usr/share/emacs/26.1/lisp/* only contains the compiled .elc files of its libraries, would anyone know the most straightforward way to also have the .el files so I can jump to definition when reading more core elisp code\", \"author_flair_css_class\": null, \"name\": \"t1_eq9ygg4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDo \\u003Ccode\\u003EC-h f\\u003C/code\\u003E get the desired function. From the help window click the \\u003Ccode\\u003E. el\\u003C/code\\u003E file. Emacs should now open the source \\u003Ccode\\u003E.el\\u003C/code\\u003E file from the source tar.gz files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/eq9ygg4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"report_reasons\": null, \"link_author\": \"ElBroet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"created\": 1559949700.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9y0rd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grimscythe_\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559920604.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 1, \"author_fullname\": \"t2_17fhdh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Just like OP I'm a big fan of DejaVu Sans. It has great Unicode support and looks neat too.\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9y0rd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust like OP I\\u0026#39;m a big fan of DejaVu Sans. It has great Unicode support and looks neat too.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9y0rd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559949404.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrwro\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9xbvg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ieure\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559920134.0, \"send_replies\": true, \"parent_id\": \"t1_eq9cg2j\", \"score\": 1, \"author_fullname\": \"t2_41fij\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yep, because Kubuntu is based on Ubuntu, which is based on Debian, and [Debian doesn't allow *any* GNU documentation in `main`](https://www.debian.org/vote/2006/vote_001), because their license forbids modifying certain parts of it.\\n\\nIt's been this way for a decade, for every GNU package: coreutils, make, etc. I understand why, but it's awfully annoying for end-users.\\n\\nIn addition to `emacs-common-non-dfsg`, you'll need to install the `install-info` package. Otherwise, you get the .info files, but the index doesn't get updated, so `C-h i` doesn't show anything.\", \"link_title\": \"Roadblock when installing Emacs 26.2 on kubuntu 19.04\", \"author_flair_css_class\": null, \"name\": \"t1_eq9xbvg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYep, because Kubuntu is based on Ubuntu, which is based on Debian, and \\u003Ca href=\\\"https://www.debian.org/vote/2006/vote_001\\\"\\u003EDebian doesn\\u0026#39;t allow \\u003Cem\\u003Eany\\u003C/em\\u003E GNU documentation in \\u003Ccode\\u003Emain\\u003C/code\\u003E\\u003C/a\\u003E, because their license forbids modifying certain parts of it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s been this way for a decade, for every GNU package: coreutils, make, etc. I understand why, but it\\u0026#39;s awfully annoying for end-users.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn addition to \\u003Ccode\\u003Eemacs-common-non-dfsg\\u003C/code\\u003E, you\\u0026#39;ll need to install the \\u003Ccode\\u003Einstall-info\\u003C/code\\u003E package. Otherwise, you get the .info files, but the index doesn\\u0026#39;t get updated, so \\u003Ccode\\u003EC-h i\\u003C/code\\u003E doesn\\u0026#39;t show anything.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/eq9xbvg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"report_reasons\": null, \"link_author\": \"granti128\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"created\": 1559948934.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9xaj3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yep808\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559920108.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 1, \"author_fullname\": \"t2_3kgkql01\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Some of my favourites fonts are: \\n1. Monaco\\n\\n2. Source Code Pro\\n\\n3. Input Mono (customizable)\\n\\n4. Droid Sans / Hack / Menlo / DejaVu family\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9xaj3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESome of my favourites fonts are:\\u003Cbr/\\u003E\\n1. Monaco\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ESource Code Pro\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EInput Mono (customizable)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDroid Sans / Hack / Menlo / DejaVu family\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9xaj3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559948908.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9wz6o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xznjqe\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559919891.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 2, \"author_fullname\": \"t2_h6xny\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Iosevka SS08 variant.\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9wz6o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIosevka SS08 variant.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9wz6o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559948691.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsvnc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9wqh1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"desipenguin\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559919727.0, \"send_replies\": true, \"parent_id\": \"t3_bxsvnc\", \"score\": 2, \"author_fullname\": \"t2_f2q7e\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Most likely this is PATH issue.\\nYou can try `executable-find` in emacs\\n\\nSee https://devnotes.desipenguin.com/editors/emacs/#find-path-to-a-binary\\n\\nIf you get `command not found` (or equivalent) You need to use `exec-path` See https://github.com/purcell/exec-path-from-shell\", \"link_title\": \"Help installing pandoc, markdown-mode, pandoc-mode. OSX\", \"author_flair_css_class\": null, \"name\": \"t1_eq9wqh1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMost likely this is PATH issue.\\nYou can try \\u003Ccode\\u003Eexecutable-find\\u003C/code\\u003E in emacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESee \\u003Ca href=\\\"https://devnotes.desipenguin.com/editors/emacs/#find-path-to-a-binary\\\"\\u003Ehttps://devnotes.desipenguin.com/editors/emacs/#find-path-to-a-binary\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you get \\u003Ccode\\u003Ecommand not found\\u003C/code\\u003E (or equivalent) You need to use \\u003Ccode\\u003Eexec-path\\u003C/code\\u003E See \\u003Ca href=\\\"https://github.com/purcell/exec-path-from-shell\\\"\\u003Ehttps://github.com/purcell/exec-path-from-shell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/eq9wqh1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"report_reasons\": null, \"link_author\": \"richardsplash\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"created\": 1559948527.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwc9lr\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9w2s2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"desipenguin\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1559919279.0, \"send_replies\": true, \"parent_id\": \"t1_epyyouj\", \"score\": 1, \"author_fullname\": \"t2_f2q7e\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I remember you had posted here asking for volunteers to join the project.\", \"link_title\": \"emacs-todoist: interact with todoist.com for task management\", \"author_flair_css_class\": null, \"name\": \"t1_eq9w2s2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI remember you had posted here asking for volunteers to join the project.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/eq9w2s2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"report_reasons\": null, \"link_author\": \"Metr0idFusi0n\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"created\": 1559948079.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwc9lr\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9vy3o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"desipenguin\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1559919190.0, \"send_replies\": true, \"parent_id\": \"t1_epz5xol\", \"score\": 1, \"author_fullname\": \"t2_f2q7e\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I didn't mean, \\\"auto refresh\\\" - I understand that could hit the throttle limit.\\nI don't mind `M-x todoist` either, just that usually \\\"open buffer\\\" and \\\"refresh buffer\\\" are perceived as different activities (I think in case of this package, they are the same activity \\\"behind the scene\\\")\\n\\nAnyway - easiest is to just document that : Once the buffer is open, use `M-x todoist` to manually sync changes done via \\\"other\\\" clients.\", \"link_title\": \"emacs-todoist: interact with todoist.com for task management\", \"author_flair_css_class\": null, \"name\": \"t1_eq9vy3o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI didn\\u0026#39;t mean, \\u0026quot;auto refresh\\u0026quot; - I understand that could hit the throttle limit.\\nI don\\u0026#39;t mind \\u003Ccode\\u003EM-x todoist\\u003C/code\\u003E either, just that usually \\u0026quot;open buffer\\u0026quot; and \\u0026quot;refresh buffer\\u0026quot; are perceived as different activities (I think in case of this package, they are the same activity \\u0026quot;behind the scene\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway - easiest is to just document that : Once the buffer is open, use \\u003Ccode\\u003EM-x todoist\\u003C/code\\u003E to manually sync changes done via \\u0026quot;other\\u0026quot; clients.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/eq9vy3o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"report_reasons\": null, \"link_author\": \"Metr0idFusi0n\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"created\": 1559947990.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9vmkq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"andreyorst\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559918969.0, \"send_replies\": true, \"parent_id\": \"t1_eq9rv43\", \"score\": 1, \"author_fullname\": \"t2_w7w9e32\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"ok fine, you said your point twice, now what? My question still stands, and you're not helping at all. \\n\\nI know what you're talking about, and understand that it is better to do this via external tools, but I was asking **about ways to do it without external tools**, and I personally don't care if they are not competitive with tools designed to do this task as fast as possible.\\n\\nAll I wanted to know is the existence of such functions in emacs, that don't rely on external tools, and it turns out that emacs features these functions, and they perform quite nicely for ones being written in elisp.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9vmkq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eok fine, you said your point twice, now what? My question still stands, and you\\u0026#39;re not helping at all. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know what you\\u0026#39;re talking about, and understand that it is better to do this via external tools, but I was asking \\u003Cstrong\\u003Eabout ways to do it without external tools\\u003C/strong\\u003E, and I personally don\\u0026#39;t care if they are not competitive with tools designed to do this task as fast as possible.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll I wanted to know is the existence of such functions in emacs, that don\\u0026#39;t rely on external tools, and it turns out that emacs features these functions, and they perform quite nicely for ones being written in elisp.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9vmkq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559947769.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9vm4h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559918961.0, \"send_replies\": true, \"parent_id\": \"t1_eq9escc\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Correct, this sound like what I had in mind. I'm picturing:\\n\\n1. When tab is pressed, attempt to complete. If multiple possibilities, show *Completions*. If no match, say so. Files are not candidates at this stage.\\n\\n2. If tab is pressed a second time, after the user has been told there's no match, try to match file names in the current directory.\\n\\n3. If there are no matching files in the current directory, we probably want to automatically search child directories, the parent directory, sibling directories, and the parents of the parent, in that order. After this we could fall over to calling locate. Locate has a tendency to produce a lot of irrelevant matches, so some filtering of the matches is probably in order. It will help if the matching is pretty restrictive, which may sound strange, but the purpose is to switch to known files without thinking whether they're open yet, not to be a general search tool\\n\\n4. At any stage, if the user presses return without having matched a file or buffer name, a buffer by that name is created like usual.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9vm4h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECorrect, this sound like what I had in mind. I\\u0026#39;m picturing:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EWhen tab is pressed, attempt to complete. If multiple possibilities, show \\u003Cem\\u003ECompletions\\u003C/em\\u003E. If no match, say so. Files are not candidates at this stage.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIf tab is pressed a second time, after the user has been told there\\u0026#39;s no match, try to match file names in the current directory.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIf there are no matching files in the current directory, we probably want to automatically search child directories, the parent directory, sibling directories, and the parents of the parent, in that order. After this we could fall over to calling locate. Locate has a tendency to produce a lot of irrelevant matches, so some filtering of the matches is probably in order. It will help if the matching is pretty restrictive, which may sound strange, but the purpose is to switch to known files without thinking whether they\\u0026#39;re open yet, not to be a general search tool\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EAt any stage, if the user presses return without having matched a file or buffer name, a buffer by that name is created like usual.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq9vm4h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559947761.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxv7fa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ty6q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"alex_x_xp\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559917808.0, \"send_replies\": true, \"parent_id\": \"t3_bxv7fa\", \"score\": 2, \"author_fullname\": \"t2_1jwi1v2r\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You should also have *.gz Edition referenced automatically, at least if you build from sources\", \"link_title\": \"/usr/share/emacs/26.1/lisp/* only contains the compiled .elc files of its libraries, would anyone know the most straightforward way to also have the .el files so I can jump to definition when reading more core elisp code\", \"author_flair_css_class\": null, \"name\": \"t1_eq9ty6q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou should also have *.gz Edition referenced automatically, at least if you build from sources\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/eq9ty6q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"report_reasons\": null, \"link_author\": \"ElBroet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"created\": 1559946608.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559917255.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9swjg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"202700000000\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559917067.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 2, \"author_fullname\": \"t2_c4blft1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Don't have any tips but I'm using this currently.\\n\\nhttps://github.com/powerline/fonts/tree/master/RobotoMono\\n\\nPersonally I find it has a pleasing height to width ratio, the more square fonts tend to sort of blend together on the screen so it's hard to focus on what you're trying to read.\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9swjg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDon\\u0026#39;t have any tips but I\\u0026#39;m using this currently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/powerline/fonts/tree/master/RobotoMono\\\"\\u003Ehttps://github.com/powerline/fonts/tree/master/RobotoMono\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPersonally I find it has a pleasing height to width ratio, the more square fonts tend to sort of blend together on the screen so it\\u0026#39;s hard to focus on what you\\u0026#39;re trying to read.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9swjg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559945867.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9rv43\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559916313.0, \"send_replies\": true, \"parent_id\": \"t1_eq9q598\", \"score\": 0, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"As I wrote above, writing effective search software is far away from trivial task. I don't think current Elisp /byte interpreters in Emacs can beat those external tools, and see no reason for it either to be honest.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9rv43\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs I wrote above, writing effective search software is far away from trivial task. I don\\u0026#39;t think current Elisp /byte interpreters in Emacs can beat those external tools, and see no reason for it either to be honest.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9rv43/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559945113.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9q598\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"andreyorst\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559914997.0, \"send_replies\": true, \"parent_id\": \"t1_eq9omn4\", \"score\": 2, \"author_fullname\": \"t2_w7w9e32\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm already aware of those plugins but they have nothing to do with core functionality of file and contents searching. They provide interfaces for external and internal tools, but I want to know about internal tools here\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9q598\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m already aware of those plugins but they have nothing to do with core functionality of file and contents searching. They provide interfaces for external and internal tools, but I want to know about internal tools here\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9q598/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559943797.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9pq47\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adam571\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1559914662.0, \"send_replies\": true, \"parent_id\": \"t1_eq5gail\", \"score\": 1, \"author_fullname\": \"t2_rmpcl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Taking advantage of easy key chords to deal with buffer and window switching sounds like a great idea. Do you have your full config or at least your full key binding list posted anywhere? Would be curious to see. Thanks .\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9pq47\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETaking advantage of easy key chords to deal with buffer and window switching sounds like a great idea. Do you have your full config or at least your full key binding list posted anywhere? Would be curious to see. Thanks .\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq9pq47/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559943462.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9omn4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559913776.0, \"send_replies\": true, \"parent_id\": \"t1_eq9lk8u\", \"score\": -1, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Take also look at Helm or Ivy.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9omn4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETake also look at Helm or Ivy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9omn4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942576.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559916577.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9oiqt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559913688.0, \"send_replies\": true, \"parent_id\": \"t3_bxtwfg\", \"score\": -2, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003Ethat's not the case for Windows. I'm not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\n\\nWhile it is true that Windows does not ship with either grep or find, there are myriad of grep and find ports and versions available on Windows, so I don't see how is that a practical problem. Implementing efficient and fast search is not a trivial task, so I personally believe it is better to leave that to external utility such as [ag (silversearcher),](https://github.com/ggreer/the_silver_searcher) [ripgrep](https://github.com/BurntSushi/ripgrep) or maybe latest kid on the block, [hyperscan](https://github.com/intel/hyperscan).\\n\\n\\u0026#x200B;\\n\\nEmacs can't even be compiled (at least what I know of) without unix-y environment on Windows, which usually is provided by either mingw/msys/msys2 or cygwin which all come with grep and find. In case of binary distributon of Emacs, it is just to install some of those tools, so that really isn't a consideration.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9oiqt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ethat\\u0026#39;s not the case for Windows. I\\u0026#39;m not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhile it is true that Windows does not ship with either grep or find, there are myriad of grep and find ports and versions available on Windows, so I don\\u0026#39;t see how is that a practical problem. Implementing efficient and fast search is not a trivial task, so I personally believe it is better to leave that to external utility such as \\u003Ca href=\\\"https://github.com/ggreer/the_silver_searcher\\\"\\u003Eag (silversearcher),\\u003C/a\\u003E \\u003Ca href=\\\"https://github.com/BurntSushi/ripgrep\\\"\\u003Eripgrep\\u003C/a\\u003E or maybe latest kid on the block, \\u003Ca href=\\\"https://github.com/intel/hyperscan\\\"\\u003Ehyperscan\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmacs can\\u0026#39;t even be compiled (at least what I know of) without unix-y environment on Windows, which usually is provided by either mingw/msys/msys2 or cygwin which all come with grep and find. In case of binary distributon of Emacs, it is just to install some of those tools, so that really isn\\u0026#39;t a consideration.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9oiqt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942488.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": -2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ob92\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559913518.0, \"send_replies\": true, \"parent_id\": \"t1_eq9lk8u\", \"score\": 3, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There is also `find-lisp-find-dired` which might be of help.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9ob92\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is also \\u003Ccode\\u003Efind-lisp-find-dired\\u003C/code\\u003E which might be of help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9ob92/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942318.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9mn9c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559912075.0, \"send_replies\": true, \"parent_id\": \"t1_eq8psyw\", \"score\": 1, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I think this fits my need. Thank you for the pointer.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq9mn9c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think this fits my need. Thank you for the pointer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq9mn9c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559940875.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9m7eg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BruceConnor\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559911680.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 1, \"author_fullname\": \"t2_ccvfk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"http://endlessparentheses.com/exclude-directories-from-grep.html\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9m7eg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://endlessparentheses.com/exclude-directories-from-grep.html\\\"\\u003Ehttp://endlessparentheses.com/exclude-directories-from-grep.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9m7eg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559940480.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559911855.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9lk8u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"andreyorst\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559911085.0, \"send_replies\": true, \"parent_id\": \"t1_eq9kr70\", \"score\": 1, \"author_fullname\": \"t2_w7w9e32\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks, I wasn't aware of any of these. This is about using imitating `grep`, but what about `find` - I guess `project-find-file` is what I'm looking for?\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9lk8u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I wasn\\u0026#39;t aware of any of these. This is about using imitating \\u003Ccode\\u003Egrep\\u003C/code\\u003E, but what about \\u003Ccode\\u003Efind\\u003C/code\\u003E - I guess \\u003Ccode\\u003Eproject-find-file\\u003C/code\\u003E is what I\\u0026#39;m looking for?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9lk8u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559939885.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9kr70\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559910307.0, \"send_replies\": true, \"parent_id\": \"t3_bxtwfg\", \"score\": 5, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There is `multi-occur`, `multi-isearch` and `project-find-regexp`.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9kr70\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is \\u003Ccode\\u003Emulti-occur\\u003C/code\\u003E, \\u003Ccode\\u003Emulti-isearch\\u003C/code\\u003E and \\u003Ccode\\u003Eproject-find-regexp\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9kr70/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559939107.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsyyo9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9k2zg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"user_was_not_found\", \"num_comments\": 22, \"can_mod_post\": false, \"created_utc\": 1559909649.0, \"send_replies\": true, \"parent_id\": \"t3_bsyyo9\", \"score\": 0, \"author_fullname\": \"t2_h1nda\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I take out my notebook and pencil. Open it up. Write notes. Put notebook away.\", \"link_title\": \"What is your note-taking workflow?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9k2zg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI take out my notebook and pencil. Open it up. Write notes. Put notebook away.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/eq9k2zg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/\", \"report_reasons\": null, \"link_author\": \"the_sealed_tanker\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/\", \"created\": 1559938449.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9jwip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"5heikki\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559909470.0, \"send_replies\": true, \"parent_id\": \"t1_eq9hme8\", \"score\": 3, \"author_fullname\": \"t2_h43er\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"No, the zero is great, very easy to tell apart from O. Hack is the best :)\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9jwip\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, the zero is great, very easy to tell apart from O. Hack is the best :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9jwip/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs shill\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559938270.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9azu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9jk7q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"user_was_not_found\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559909120.0, \"send_replies\": true, \"parent_id\": \"t3_bw9azu\", \"score\": 1, \"author_fullname\": \"t2_h1nda\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[mine](https://raw.githubusercontent.com/ryanolsonx/.emacs.d/master/init.el)\\n\\nI've been really going minimalist lately and this suffices.\", \"link_title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"author_flair_css_class\": null, \"name\": \"t1_eq9jk7q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://raw.githubusercontent.com/ryanolsonx/.emacs.d/master/init.el\\\"\\u003Emine\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been really going minimalist lately and this suffices.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/eq9jk7q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"report_reasons\": null, \"link_author\": \"Rainymood_XI\", \"author_flair_text\": null, \"link_url\": \"https://github.com/Rainymood/dotemacs\", \"created\": 1559937920.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9i5r5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"__i_forgot_my_name__\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1559907625.0, \"send_replies\": true, \"parent_id\": \"t1_eq5k72d\", \"score\": 1, \"author_fullname\": \"t2_3agebbhs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"In Firefox I literally removed the tab bar. I feel tabs are just not useful. I don't typically need to see all the tabs, and if I want to go back to a previous or next tab, then I really don't need to see it do I? If I want to switch back to a tab I remember then I just go ahead and search it, otherwise I just maintain one tab and that's typically fine.\\n\\nI used to use tabs as a todo list and that's just not great in practice, I end up with far too many tabs, because I would never close anything. If I want something very close by, I'll typically open another window now, and from that I can actually cross reference, and with tabs out of the way, I can stack them one on top of the other.\\n\\nI never realized how much I could do just from the URL bar in Firefox, but you can switch tabs, search for partial URLs, search history, search bookmarks, create search queries with keywords much like DDG tags, there's just so much I never realized I could do, because I would just heavily depends on tabs, and keeping things in view.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9i5r5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn Firefox I literally removed the tab bar. I feel tabs are just not useful. I don\\u0026#39;t typically need to see all the tabs, and if I want to go back to a previous or next tab, then I really don\\u0026#39;t need to see it do I? If I want to switch back to a tab I remember then I just go ahead and search it, otherwise I just maintain one tab and that\\u0026#39;s typically fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used to use tabs as a todo list and that\\u0026#39;s just not great in practice, I end up with far too many tabs, because I would never close anything. If I want something very close by, I\\u0026#39;ll typically open another window now, and from that I can actually cross reference, and with tabs out of the way, I can stack them one on top of the other.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI never realized how much I could do just from the URL bar in Firefox, but you can switch tabs, search for partial URLs, search history, search bookmarks, create search queries with keywords much like DDG tags, there\\u0026#39;s just so much I never realized I could do, because I would just heavily depends on tabs, and keeping things in view.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq9i5r5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559936425.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hwei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559907338.0, \"send_replies\": true, \"parent_id\": \"t1_eq9hdw0\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks!!\\n\\nIn normal mode, \\u2018p\\u2019 is enough to save the game, in reverse mode, \\u2018p RET\\u2019 is needed. Since RET is ignored in normal mode, I decided to show the same intructions on the header line for both modes, but I should probably change that. I couldn\\u2019t find a way of making \\u2018p\\u2019 cancel the prompt when using completing-read (when playing reverse mode), so RET is also needed to read it in.\\n\\nI like the idea of showing the other correct keys!I\\u2019ll add it to my todo list.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hwei\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn normal mode, \\u2018p\\u2019 is enough to save the game, in reverse mode, \\u2018p RET\\u2019 is needed. Since RET is ignored in normal mode, I decided to show the same intructions on the header line for both modes, but I should probably change that. I couldn\\u2019t find a way of making \\u2018p\\u2019 cancel the prompt when using completing-read (when playing reverse mode), so RET is also needed to read it in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI like the idea of showing the other correct keys!I\\u2019ll add it to my todo list.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9hwei/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559936138.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hme8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jackjackk0\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559907026.0, \"send_replies\": true, \"parent_id\": \"t1_eq9f4zn\", \"score\": 1, \"author_fullname\": \"t2_q52rf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"thanks, just tried it and it looks pleasant. Maybe only the zero is a bit weird!\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hme8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks, just tried it and it looks pleasant. Maybe only the zero is a bit weird!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9hme8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559935826.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hdw0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rekIfdyt2\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559906750.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 2, \"author_fullname\": \"t2_7jmd3dk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is amazingly cool and educationally quite valuable!\\n\\nRegarding pausing the quiz \\u2014 isn't just `p` (not `p RET`) sufficient?\\n\\nOne suggestion (no pressure to implement it, just in case you're looking for ideas): when there's more than one possible answer and the user guesses correctly, display the remaining possible answers.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hdw0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is amazingly cool and educationally quite valuable!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding pausing the quiz \\u2014 isn\\u0026#39;t just \\u003Ccode\\u003Ep\\u003C/code\\u003E (not \\u003Ccode\\u003Ep RET\\u003C/code\\u003E) sufficient?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne suggestion (no pressure to implement it, just in case you\\u0026#39;re looking for ideas): when there\\u0026#39;s more than one possible answer and the user guesses correctly, display the remaining possible answers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9hdw0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559935550.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9h5sl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eugenemah\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559906488.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 1, \"author_fullname\": \"t2_6urz5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\+1 for Hack\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9h5sl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E+1 for Hack\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9h5sl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559935288.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9h2zl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"loskutak-the-ptak\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559906394.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_ke7apcf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Don't miss https://github.com/alf/ob-restclient.el ! With that you can use restclient in org source code blocks.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq9h2zl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDon\\u0026#39;t miss \\u003Ca href=\\\"https://github.com/alf/ob-restclient.el\\\"\\u003Ehttps://github.com/alf/ob-restclient.el\\u003C/a\\u003E ! With that you can use restclient in org source code blocks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq9h2zl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559935194.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g32m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Asteridae\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559905158.0, \"send_replies\": true, \"parent_id\": \"t1_eq9ez1l\", \"score\": 1, \"author_fullname\": \"t2_o2f0w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have a similar setup: I don't store anything in the `.emacs.d` folder, instead I have a minimalistic `.emacs` that loads the `init.el` located in my `~/git/config/emacs` folder.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g32m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a similar setup: I don\\u0026#39;t store anything in the \\u003Ccode\\u003E.emacs.d\\u003C/code\\u003E folder, instead I have a minimalistic \\u003Ccode\\u003E.emacs\\u003C/code\\u003E that loads the \\u003Ccode\\u003Einit.el\\u003C/code\\u003E located in my \\u003Ccode\\u003E~/git/config/emacs\\u003C/code\\u003E folder.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9g32m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559933958.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g1sf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559905111.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Like many others already said, I usually don't bother about many buffers, too. However, one thing which did bother me was Magit's (good and consistent) buffer naming which results in worse buffer name completion because they are so similar. Especially, I frequently do one-shot changes to different repositories and then kill the Magit status buffer which left all auxiliary Magit buffers (process, diffs, log, etc.) alive.\\n\\n\\u0026#x200B;\\n\\nThen I learned that you actually kill Magit buffers with `C-u q` instead of `C-x k` and added that a double-prefix argument (`C-u C-u q`) now kills the current Magit status buffer and all related Magit buffers of the current project. That's at least in the current MELPA version of Magit.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g1sf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELike many others already said, I usually don\\u0026#39;t bother about many buffers, too. However, one thing which did bother me was Magit\\u0026#39;s (good and consistent) buffer naming which results in worse buffer name completion because they are so similar. Especially, I frequently do one-shot changes to different repositories and then kill the Magit status buffer which left all auxiliary Magit buffers (process, diffs, log, etc.) alive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I learned that you actually kill Magit buffers with \\u003Ccode\\u003EC-u q\\u003C/code\\u003E instead of \\u003Ccode\\u003EC-x k\\u003C/code\\u003E and added that a double-prefix argument (\\u003Ccode\\u003EC-u C-u q\\u003C/code\\u003E) now kills the current Magit status buffer and all related Magit buffers of the current project. That\\u0026#39;s at least in the current MELPA version of Magit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq9g1sf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559933911.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559904943.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9fmu4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Asteridae\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559904560.0, \"send_replies\": true, \"parent_id\": \"t1_eq9ex29\", \"score\": 1, \"author_fullname\": \"t2_o2f0w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is exactly what I do! I store the Emacs packages and my config in the same Git repository, when searching my config I use `projectile-grep` to prevent searching in my `packages` folder.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9fmu4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is exactly what I do! I store the Emacs packages and my config in the same Git repository, when searching my config I use \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E to prevent searching in my \\u003Ccode\\u003Epackages\\u003C/code\\u003E folder.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9fmu4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559933360.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9f4zn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"irmanp\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559903880.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 4, \"author_fullname\": \"t2_30ctkuyb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I like to use Hack:\\nhttps://sourcefoundry.org/hack/\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9f4zn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like to use Hack:\\n\\u003Ca href=\\\"https://sourcefoundry.org/hack/\\\"\\u003Ehttps://sourcefoundry.org/hack/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9f4zn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559932680.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ez1l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559903646.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 2, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I use symlinks and keep all my code \\u0026 scripts in their own directory.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9ez1l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use symlinks and keep all my code \\u0026amp; scripts in their own directory.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9ez1l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559932446.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ex29\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"flexibeast\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559903567.0, \"send_replies\": true, \"parent_id\": \"t1_eq9eb42\", \"score\": 2, \"author_fullname\": \"t2_3tmsj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Ah, fair enough. Well, unless someone else knows of existing functionality to do this, you could write a wrapper function around (in the specific case you mentioned) `projectile-grep` which asks the user for values for the variables `projectile-ignored-directories` and `projectile-ignored-files`, then calls `projectile-grep`, after which it resets those variables to their old values.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq9ex29\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAh, fair enough. Well, unless someone else knows of existing functionality to do this, you could write a wrapper function around (in the specific case you mentioned) \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E which asks the user for values for the variables \\u003Ccode\\u003Eprojectile-ignored-directories\\u003C/code\\u003E and \\u003Ccode\\u003Eprojectile-ignored-files\\u003C/code\\u003E, then calls \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E, after which it resets those variables to their old values.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9ex29/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"org-vcard pulseaudio-control ewmctrl\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559932367.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9escc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SlowValue\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559903371.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_1rke6ck4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I understood your question the following way: \\nYou want a function `switch-to-buffer-dwim`, which is working in following order (name completion aside):\\n\\n 1. switch to buffer, if buffer with given name is available\\n 2. when no buffer with that name exists, then open a file with this name in current directory\\n 3. if both is wrong, what next?\\n\\nLast point is important! What should be done next? Should be searched for a file with that name recursively? Should a file be created (and where should the file be created)? Should a buffer without file be created? If a file gets created, how do you create new buffers (and vice versa)? \\n\\n\\nIs this, what you are searching for?\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9escc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI understood your question the following way:\\u003Cbr/\\u003E\\nYou want a function \\u003Ccode\\u003Eswitch-to-buffer-dwim\\u003C/code\\u003E, which is working in following order (name completion aside):\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Eswitch to buffer, if buffer with given name is available\\u003C/li\\u003E\\n\\u003Cli\\u003Ewhen no buffer with that name exists, then open a file with this name in current directory\\u003C/li\\u003E\\n\\u003Cli\\u003Eif both is wrong, what next?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ELast point is important! What should be done next? Should be searched for a file with that name recursively? Should a file be created (and where should the file be created)? Should a buffer without file be created? If a file gets created, how do you create new buffers (and vice versa)? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this, what you are searching for?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq9escc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559932171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ekt0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559903055.0, \"send_replies\": true, \"parent_id\": \"t1_eq96zwx\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It uses both the default keys and your customizations. By default, the key/command list is read from a buffer set to Fundamental Mode.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9ekt0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt uses both the default keys and your customizations. By default, the key/command list is read from a buffer set to Fundamental Mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9ekt0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559931855.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ejbn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559902995.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 2, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Absolutely! really good idea.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9ejbn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAbsolutely! really good idea.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq9ejbn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559931795.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9edsg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559902767.0, \"send_replies\": true, \"parent_id\": \"t1_eq97l5i\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks!\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9edsg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9edsg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559931567.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9eb42\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vfclists\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559902659.0, \"send_replies\": true, \"parent_id\": \"t1_eq99y5z\", \"score\": 1, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Actually I prefer something that will enable me to do it on the fly, ie with a dialog for that particular instance\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9eb42\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EActually I prefer something that will enable me to do it on the fly, ie with a dialog for that particular instance\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9eb42/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559931459.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrwro\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cg2j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"acheronuk\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559899671.0, \"send_replies\": true, \"parent_id\": \"t3_bxrwro\", \"score\": 2, \"author_fullname\": \"t2_11hs72\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It appears that .info files are supplied in a separate package/source **emacs-common-non-dfsg**.\\n\\nFile list: https://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\n\\nIf installing that does not help, then you can install the build depends for emacs on K/Ubuntu by going to Muon and doing \\u003E Settings \\u003E Configure software sources \\u003E Then tick the source code box. Then in a terminal do:\\n\\n sudo apt build-dep emacs\\n\\nThat will get all the direct build dependencies for emacs. It will also get you tools to build .deb packages, which you won't need, but do no harm.\", \"link_title\": \"Roadblock when installing Emacs 26.2 on kubuntu 19.04\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cg2j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt appears that .info files are supplied in a separate package/source \\u003Cstrong\\u003Eemacs-common-non-dfsg\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile list: \\u003Ca href=\\\"https://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\\"\\u003Ehttps://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf installing that does not help, then you can install the build depends for emacs on K/Ubuntu by going to Muon and doing \\u0026gt; Settings \\u0026gt; Configure software sources \\u0026gt; Then tick the source code box. Then in a terminal do:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Esudo apt build-dep emacs\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThat will get all the direct build dependencies for emacs. It will also get you tools to build .deb packages, which you won\\u0026#39;t need, but do no harm.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/eq9cg2j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"report_reasons\": null, \"link_author\": \"granti128\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"created\": 1559928471.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cfwr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ballfresno\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559899664.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_2b5qxk6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I do all of my writing in org. The majority is targeting PDF export, either as articles for publication or for presentations. I almost always make extensive use of org-babel within these documents. All graphics will be done this way, including using gnuplot, plantuml, ditaa, etc. Depending on the topic, the results might also be generated from org-babel src blocks in a number of different languages including octave, Julia, R, as well as text processing using shell or awk blocks.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cfwr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do all of my writing in org. The majority is targeting PDF export, either as articles for publication or for presentations. I almost always make extensive use of org-babel within these documents. All graphics will be done this way, including using gnuplot, plantuml, ditaa, etc. Depending on the topic, the results might also be generated from org-babel src blocks in a number of different languages including octave, Julia, R, as well as text processing using shell or awk blocks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq9cfwr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559928464.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx54uk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9bgm9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559898010.0, \"send_replies\": true, \"parent_id\": \"t1_eq73rjt\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\\\u003EUse-package forms an abstraction upon which it's hard to debug\\n\\n\\u0026#x200B;\\n\\nM-x pp-macroexpand-last-sexp at you service\", \"link_title\": \"Even Better 'Better Defaults'\", \"author_flair_css_class\": null, \"name\": \"t1_eq9bgm9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;Use-package forms an abstraction upon which it\\u0026#39;s hard to debug\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EM-x pp-macroexpand-last-sexp at you service\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/eq9bgm9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://github.com/ianpan870102/.emacs.d\", \"created\": 1559926810.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9a23n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ibizaman\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559895652.0, \"send_replies\": true, \"parent_id\": \"t1_eq7g89b\", \"score\": 1, \"author_fullname\": \"t2_sxb1k\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"With org-mode you get org-babel. So say you have a code example, you could actually run it from the org file, get the result and insert both in the LaTeX export.\\n\\nOrg-mode understands tables too. You can have formulas in tables referencing other cells. The whole table is dynamic \\n\\nAlso, emacs have a symbolic calculator. Very neat when combined with tables.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq9a23n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith org-mode you get org-babel. So say you have a code example, you could actually run it from the org file, get the result and insert both in the LaTeX export.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg-mode understands tables too. You can have formulas in tables referencing other cells. The whole table is dynamic \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, emacs have a symbolic calculator. Very neat when combined with tables.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq9a23n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559924452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq99y5z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"flexibeast\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559895474.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 2, \"author_fullname\": \"t2_3tmsj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Assuming that a package uses `defcustom` to define variables intended to be user-customisable, you can do `M-x customize-group` and specify that package's customize-group to browse for any such variables.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq99y5z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAssuming that a package uses \\u003Ccode\\u003Edefcustom\\u003C/code\\u003E to define variables intended to be user-customisable, you can do \\u003Ccode\\u003EM-x customize-group\\u003C/code\\u003E and specify that package\\u0026#39;s customize-group to browse for any such variables.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq99y5z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"org-vcard pulseaudio-control ewmctrl\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559924274.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq99y5p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ibizaman\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559895474.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 2, \"author_fullname\": \"t2_sxb1k\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Recent versions of grep support `--exclude-dir` so it must be possible.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq99y5p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERecent versions of grep support \\u003Ccode\\u003E--exclude-dir\\u003C/code\\u003E so it must be possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq99y5p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559924274.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq97l5i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grimscythe_\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559891747.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 3, \"author_fullname\": \"t2_17fhdh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Great work!\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq97l5i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreat work!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq97l5i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559920547.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq97j20\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"vfclists\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559891659.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 8, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sad to hear of his passing.\\n\\nI remember him from this thread - [Request: The Future of PHP Mode (TL;DR Near Bottom) : emacs](https://old.reddit.com/r/emacs/comments/6pchsm/request_the_future_of_php_mode_tldr_near_bottom/)\\n\\nIt led me to write a whole blog post on open source funding issues.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": null, \"name\": \"t1_eq97j20\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESad to hear of his passing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI remember him from this thread - \\u003Ca href=\\\"https://old.reddit.com/r/emacs/comments/6pchsm/request_the_future_of_php_mode_tldr_near_bottom/\\\"\\u003ERequest: The Future of PHP Mode (TL;DR Near Bottom) : emacs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt led me to write a whole blog post on open source funding issues.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq97j20/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559920459.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq96zwx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"FLMatt\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559890860.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 3, \"author_fullname\": \"t2_14rw8c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Does it use the default keys or does it take into consideration your customizations?\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq96zwx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes it use the default keys or does it take into consideration your customizations?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq96zwx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559919660.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_brp26g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq96tmb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xtifr\", \"num_comments\": 69, \"can_mod_post\": false, \"created_utc\": 1559890596.0, \"send_replies\": true, \"parent_id\": \"t1_eoo2rr0\", \"score\": 2, \"author_fullname\": \"t2_3bi8nddx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"With tramp, commands like M-x grep and M-x compile run on the remote host, which is a whole lot faster, and, in the case of compiles, may actually mean the difference between working and not working. :)\\n\\n\\u0026#x200B;\\n\\n(Which is not to say that sshfs isn't quite handy...)\", \"link_title\": \"What advantages does Emacs have over Neovim + Tmux?\", \"author_flair_css_class\": null, \"name\": \"t1_eq96tmb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith tramp, commands like M-x grep and M-x compile run on the remote host, which is a whole lot faster, and, in the case of compiles, may actually mean the difference between working and not working. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Which is not to say that sshfs isn\\u0026#39;t quite handy...)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/eq96tmb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/\", \"report_reasons\": null, \"link_author\": \"seagoj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/\", \"created\": 1559919396.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq93rtr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vitorqb23\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559884982.0, \"send_replies\": true, \"parent_id\": \"t1_eq91pn4\", \"score\": 1, \"author_fullname\": \"t2_2nkdd29t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"So far I can not tell the difference.\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq93rtr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo far I can not tell the difference.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq93rtr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559913782.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq92lak\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559883630.0, \"send_replies\": true, \"parent_id\": \"t1_eq92kbd\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Oh, and apparently PlantUML, if that's your thing\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq92lak\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh, and apparently PlantUML, if that\\u0026#39;s your thing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq92lak/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559912430.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq92kbd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559883600.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gal6\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You got it, that part is all LaTeX, but the org exporter recognizes it if you use \\\\\\\\begin{} and you don't even need a source block. Also very nice Beamer integration.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq92kbd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou got it, that part is all LaTeX, but the org exporter recognizes it if you use \\\\begin{} and you don\\u0026#39;t even need a source block. Also very nice Beamer integration.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq92kbd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559912400.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq91pn4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Michaelmrose\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1559882652.0, \"send_replies\": true, \"parent_id\": \"t1_eq6btfk\", \"score\": 1, \"author_fullname\": \"t2_8yohe\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Is lucid snappier than gtk?\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq91pn4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs lucid snappier than gtk?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq91pn4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559911452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9049n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"ibillius\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559880936.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 11, \"author_fullname\": \"t2_8no13\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not aware of anything like that but that's a lovely idea. I'm sorry to hear about his passing. PHP mode was very useful to me in my last job and I even briefly corresponded with Eric on Reddit about Emacs.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9049n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not aware of anything like that but that\\u0026#39;s a lovely idea. I\\u0026#39;m sorry to hear about his passing. PHP mode was very useful to me in my last job and I even briefly corresponded with Eric on Reddit about Emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq9049n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559909736.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 11}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8qohc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"KrishnaKrGopal\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1559872674.0, \"send_replies\": true, \"parent_id\": \"t1_eq4t18o\", \"score\": 1, \"author_fullname\": \"t2_1zt5mges\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes, I use this method too. Emacs is not so heavy weight for today's hardware that a few instances hurt.\\n\\nTo add to it, I have a few server names that are dedicated : org-mode has its own Emacs server : used by commands to capture via org-protocol. For coding, each project has its own server : named after the main Git branch. And there is a default server : for misc usage.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8qohc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, I use this method too. Emacs is not so heavy weight for today\\u0026#39;s hardware that a few instances hurt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo add to it, I have a few server names that are dedicated : org-mode has its own Emacs server : used by commands to capture via org-protocol. For coding, each project has its own server : named after the main Git branch. And there is a default server : for misc usage.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq8qohc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559901474.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bn3qax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8qhil\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"im_not_juicing\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1559872512.0, \"send_replies\": true, \"parent_id\": \"t1_eq87ssp\", \"score\": 1, \"author_fullname\": \"t2_22kx841q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \":D\", \"link_title\": \"where, might you say, is the most \\\"super\\\" of a \\\"super cua\\\" package?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8qhil\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E:D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/eq8qhil/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"created\": 1559901312.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8psyw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"reddit_uname\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871929.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gboh\", \"score\": 2, \"author_fullname\": \"t2_byz78\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This might be what you're looking for: [https://www.gnu.org/software/emacs/manual/html\\\\_mono/autotype.html#Autoinserting](https://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting)\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8psyw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis might be what you\\u0026#39;re looking for: \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting\\\"\\u003Ehttps://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8psyw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559900729.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8p65z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sugarbridalsentry\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871395.0, \"send_replies\": true, \"parent_id\": \"t1_eq09l4k\", \"score\": 1, \"author_fullname\": \"t2_i9gakgq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hey neat! It's simple, and does the job -- way better better than I could have written. \\n\\nI was the one asking about it last week -- someone recommended `iy-go-to-char`, which I've been using. Lets you repeat the search by hitting the character again, and works backwards to. A+, would `'require` again.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8p65z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey neat! It\\u0026#39;s simple, and does the job -- way better better than I could have written. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was the one asking about it last week -- someone recommended \\u003Ccode\\u003Eiy-go-to-char\\u003C/code\\u003E, which I\\u0026#39;ve been using. Lets you repeat the search by hitting the character again, and works backwards to. A+, would \\u003Ccode\\u003E\\u0026#39;require\\u003C/code\\u003E again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8p65z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559900195.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvweh8\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8ov1a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grettke\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559871136.0, \"send_replies\": true, \"parent_id\": \"t1_eq2n87o\", \"score\": 1, \"author_fullname\": \"t2_3fcko\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thank you for sharing that thoughtful advice.\\n\\nWhile I don't have restrictions on my writing style, I do use [WriteGood](https://github.com/bnbeckwith/writegood-mode), [Langtool](https://github.com/mhayashi1120/Emacs-langtool), and [Proselint](https://proselint.com/) liberally.\\n\\nThe call outs on adverbs and adjectives are helpful!\", \"link_title\": \"Writing Academic Papers in Org-mode\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq8ov1a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for sharing that thoughtful advice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile I don\\u0026#39;t have restrictions on my writing style, I do use \\u003Ca href=\\\"https://github.com/bnbeckwith/writegood-mode\\\"\\u003EWriteGood\\u003C/a\\u003E, \\u003Ca href=\\\"https://github.com/mhayashi1120/Emacs-langtool\\\"\\u003ELangtool\\u003C/a\\u003E, and \\u003Ca href=\\\"https://proselint.com/\\\"\\u003EProselint\\u003C/a\\u003E liberally.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe call outs on adverbs and adjectives are helpful!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/eq8ov1a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"doulos05\", \"author_flair_text\": \"Org2Blog Maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"created\": 1559899936.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8outf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sugarbridalsentry\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871131.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gboh\", \"score\": 1, \"author_fullname\": \"t2_i9gakgq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I've used a function like this one to create a buffer for a blog -- it makes a new buffer with header information. To get the different elements to show up on different lines, you just add the newline `\\\\n`\\n\\n ;; Pop a blog buffer\\n (defun blog-buffer ()\\n \\\"Creates a new buffer with the basic title/date header needed by `org-static-blog`\\\"\\n (interactive)\\n (let (($buf (generate-new-buffer \\\"untitled\\\")))\\n (switch-to-buffer $buf)\\n (insert (format-time-string\\n \\\"#+TITLE:\\\\n#+DATE: \\u003C%Y-%m-%d %T %A\\u003E\\\"))\\n (funcall 'org-mode)\\n (setq buffer-offer-save t)))\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8outf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve used a function like this one to create a buffer for a blog -- it makes a new buffer with header information. To get the different elements to show up on different lines, you just add the newline \\u003Ccode\\u003E\\\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Pop a blog buffer\\n(defun blog-buffer ()\\n \\u0026quot;Creates a new buffer with the basic title/date header needed by `org-static-blog`\\u0026quot;\\n (interactive)\\n (let (($buf (generate-new-buffer \\u0026quot;untitled\\u0026quot;)))\\n (switch-to-buffer $buf)\\n (insert (format-time-string\\n \\u0026quot;#+TITLE:\\\\n#+DATE: \\u0026lt;%Y-%m-%d %T %A\\u0026gt;\\u0026quot;))\\n (funcall \\u0026#39;org-mode)\\n (setq buffer-offer-save t)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8outf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559899931.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8ofb1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grettke\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559870776.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_3fcko\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"From my perspective Org is an information management system that includes publishing, LaTeX is a publishing solution and not more than that, so it isn't Org versus LaTeX, it is Org and LaTeX. Is that how you are seeing them? Or what aspects do you see them as competing against each other on?\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq8ofb1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFrom my perspective Org is an information management system that includes publishing, LaTeX is a publishing solution and not more than that, so it isn\\u0026#39;t Org versus LaTeX, it is Org and LaTeX. Is that how you are seeing them? Or what aspects do you see them as competing against each other on?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq8ofb1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": \"Org2Blog Maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559899576.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8nzic\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559870405.0, \"send_replies\": true, \"parent_id\": \"t1_eq8kyv3\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"My take on not even having to look is that I'd rather a menu I don't need to look at didn't appear at all. :)\\n\\nThe particular thing, and perhaps it's customizable, that bugged me about Ivy's key bindings is that I had to use a special keystroke when I actually wanted the thing I typed, to not be given the best match instead. Magic tilde got me quite a few times before I turned it off too. With Helm, it was the tab thing of course. I like Ivy a bit better than Helm, but really I don't want a menu until I need a menu, at which point I'll take a nice big two-column *Completions* buffer.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8nzic\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy take on not even having to look is that I\\u0026#39;d rather a menu I don\\u0026#39;t need to look at didn\\u0026#39;t appear at all. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe particular thing, and perhaps it\\u0026#39;s customizable, that bugged me about Ivy\\u0026#39;s key bindings is that I had to use a special keystroke when I actually wanted the thing I typed, to not be given the best match instead. Magic tilde got me quite a few times before I turned it off too. With Helm, it was the tab thing of course. I like Ivy a bit better than Helm, but really I don\\u0026#39;t want a menu until I need a menu, at which point I\\u0026#39;ll take a nice big two-column \\u003Cem\\u003ECompletions\\u003C/em\\u003E buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8nzic/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559899205.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8kyv3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bump_bump_bump\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559867889.0, \"send_replies\": true, \"parent_id\": \"t1_eq8flnq\", \"score\": 2, \"author_fullname\": \"t2_33ybbkqd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E I'd really rather manually tab complete than have the flashing menus and weird keystrokes\\n\\nSorry, I didn't read that closely enough. \\n\\nI can't imagine doing without fuzzy matching myself, but I can appreciate disliking the rapidly changing matches. \\n\\nMy usage mode is usually to just type off a few fragments that I know will work and *only then* pay attention to the results. Often I don't even have to look, as I know the few keystrokes that get me the exact match I want. e.g. I know the function `projectile-browse-dirty-projects` is useful - and `M-x dirt RET` does it.\\n\\nI don't know about weird keystrokes though - in ivy tab works as you'd expect (unlike helm), and if you set the height to fixed (`ivy-fixed-height-minibuffer`) it won't jump around. The very thing that draws people to ivy over helm is that it's relatively unobtrusive.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8kyv3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI\\u0026#39;d really rather manually tab complete than have the flashing menus and weird keystrokes\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESorry, I didn\\u0026#39;t read that closely enough. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can\\u0026#39;t imagine doing without fuzzy matching myself, but I can appreciate disliking the rapidly changing matches. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy usage mode is usually to just type off a few fragments that I know will work and \\u003Cem\\u003Eonly then\\u003C/em\\u003E pay attention to the results. Often I don\\u0026#39;t even have to look, as I know the few keystrokes that get me the exact match I want. e.g. I know the function \\u003Ccode\\u003Eprojectile-browse-dirty-projects\\u003C/code\\u003E is useful - and \\u003Ccode\\u003EM-x dirt RET\\u003C/code\\u003E does it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t know about weird keystrokes though - in ivy tab works as you\\u0026#39;d expect (unlike helm), and if you set the height to fixed (\\u003Ccode\\u003Eivy-fixed-height-minibuffer\\u003C/code\\u003E) it won\\u0026#39;t jump around. The very thing that draws people to ivy over helm is that it\\u0026#39;s relatively unobtrusive.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8kyv3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559896689.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8jia3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559866675.0, \"send_replies\": true, \"parent_id\": \"t1_eq8gjie\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sounds worth checking out UI-wise anyway. Thanks for the tip!\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8jia3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESounds worth checking out UI-wise anyway. Thanks for the tip!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8jia3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559895475.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559865162.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8gjie\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"00-11\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559864960.0, \"send_replies\": true, \"parent_id\": \"t1_eq8flnq\", \"score\": 1, \"author_fullname\": \"t2_3upsyt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[Icicles](https://www.emacswiki.org/emacs/Icicles) (just like Helm, Ivy, etc. but a decade earlier ;-)) lets you include recent files during buffer-name completion. \\n\\nAnd by default there is no flashing, automatic completion etc. - you hit `TAB` (or `S-TAB`) to complete on demand, just as you usually do with any buffer-completion command.\\n\\nInclusion of recent files during buffer-name completion is controlled by option `icicle-buffer-include-recent-files-nflag`:\\n\\n\\u003E `icicle-buffer-include-recent-files-nflag` is a variable defined in `icicles-opt.el`.\\n\\n\\u003E Its value is -2305843009213693951\\n\\n\\u003E Documentation:\\n\\n\\u003E An integer \\u003E 0 means include recent files during buffer-name completion.\\nThis means file names managed by `recentf-mode` - see (emacs) `File\\nConveniences`. An integer \\u003C 0 means do not include them.\\n\\n\\u003E When they are included, the value is the maximum number of such\\ncandidates to include.\\n\\n\\u003E You can toggle this option (between + and -) using `C-x R` in the\\nminibuffer during buffer-name completion.\\n\\nSee [Icicles - Buffer-Name Input](https://www.emacswiki.org/emacs/Icicles_-_Buffer-Name_Input).\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8gjie\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/Icicles\\\"\\u003EIcicles\\u003C/a\\u003E (just like Helm, Ivy, etc. but a decade earlier ;-)) lets you include recent files during buffer-name completion. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd by default there is no flashing, automatic completion etc. - you hit \\u003Ccode\\u003ETAB\\u003C/code\\u003E (or \\u003Ccode\\u003ES-TAB\\u003C/code\\u003E) to complete on demand, just as you usually do with any buffer-completion command.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInclusion of recent files during buffer-name completion is controlled by option \\u003Ccode\\u003Eicicle-buffer-include-recent-files-nflag\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Ccode\\u003Eicicle-buffer-include-recent-files-nflag\\u003C/code\\u003E is a variable defined in \\u003Ccode\\u003Eicicles-opt.el\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIts value is -2305843009213693951\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDocumentation:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn integer \\u0026gt; 0 means include recent files during buffer-name completion.\\nThis means file names managed by \\u003Ccode\\u003Erecentf-mode\\u003C/code\\u003E - see (emacs) \\u003Ccode\\u003EFile\\nConveniences\\u003C/code\\u003E. An integer \\u0026lt; 0 means do not include them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen they are included, the value is the maximum number of such\\ncandidates to include.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can toggle this option (between + and -) using \\u003Ccode\\u003EC-x R\\u003C/code\\u003E in the\\nminibuffer during buffer-name completion.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESee \\u003Ca href=\\\"https://www.emacswiki.org/emacs/Icicles_-_Buffer-Name_Input\\\"\\u003EIcicles - Buffer-Name Input\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8gjie/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559893760.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8flnq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559864457.0, \"send_replies\": true, \"parent_id\": \"t1_eq89p5p\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yeah, I've tried Ivy for a while at least, and fooled with others. I wasn't sure how to say it but that kind of thing is what I meant by \\\"do-everything completion system\\\". I'd really rather manually tab complete than have the flashing menus and weird keystrokes, and with what these packages want to provide, neither is avoidable. I like switch-to-buffer and find-file, I just don't like remembering which to use.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8flnq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, I\\u0026#39;ve tried Ivy for a while at least, and fooled with others. I wasn\\u0026#39;t sure how to say it but that kind of thing is what I meant by \\u0026quot;do-everything completion system\\u0026quot;. I\\u0026#39;d really rather manually tab complete than have the flashing menus and weird keystrokes, and with what these packages want to provide, neither is avoidable. I like switch-to-buffer and find-file, I just don\\u0026#39;t like remembering which to use.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8flnq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559893257.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559866729.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8cmxs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559862918.0, \"send_replies\": true, \"parent_id\": \"t1_eq894nu\", \"score\": 0, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not really sold on using recent files for this... I can see how it would mostly work, but simply trying to switch buffers often works too. It seems like less hassle in the long run to write a command that does something like trying to complete a buffer name, then searching the current directory for completion, then trying locate. I'm just seeing if that command is out there, before I really think about working on it.\\n\\nEDIT: And of course the recent files list may contain deleted files.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8cmxs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not really sold on using recent files for this... I can see how it would mostly work, but simply trying to switch buffers often works too. It seems like less hassle in the long run to write a command that does something like trying to complete a buffer name, then searching the current directory for completion, then trying locate. I\\u0026#39;m just seeing if that command is out there, before I really think about working on it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: And of course the recent files list may contain deleted files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8cmxs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559891718.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8bumi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559862516.0, \"send_replies\": true, \"parent_id\": \"t1_eq43s1i\", \"score\": 3, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There's also the `browse-at-remote` package, which includes the `browse-at-remote-kill` command.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq8bumi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s also the \\u003Ccode\\u003Ebrowse-at-remote\\u003C/code\\u003E package, which includes the \\u003Ccode\\u003Ebrowse-at-remote-kill\\u003C/code\\u003E command.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8bumi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559891316.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq89p5p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"bump_bump_bump\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559861399.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 4, \"author_fullname\": \"t2_33ybbkqd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Are you familiar with `recentf`? Both `helm` and `ivy`, and probably `ido`, can include recent files in your buffer switching completions.\\n\\nApologies if you already know this. It's not clear from your question what you're already familiar with. But you mention tab completion, which makes me think of the built-in completion, which is much cruder than the fuzzy matching with the above packages.\\n\\nBetween my use of `counsel-projectile-find-file`, `counsel-file-jump`, and `ivy-switch-buffer`, I can't really see a hole that would be filled by what you're talking about.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq89p5p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAre you familiar with \\u003Ccode\\u003Erecentf\\u003C/code\\u003E? Both \\u003Ccode\\u003Ehelm\\u003C/code\\u003E and \\u003Ccode\\u003Eivy\\u003C/code\\u003E, and probably \\u003Ccode\\u003Eido\\u003C/code\\u003E, can include recent files in your buffer switching completions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EApologies if you already know this. It\\u0026#39;s not clear from your question what you\\u0026#39;re already familiar with. But you mention tab completion, which makes me think of the built-in completion, which is much cruder than the fuzzy matching with the above packages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBetween my use of \\u003Ccode\\u003Ecounsel-projectile-find-file\\u003C/code\\u003E, \\u003Ccode\\u003Ecounsel-file-jump\\u003C/code\\u003E, and \\u003Ccode\\u003Eivy-switch-buffer\\u003C/code\\u003E, I can\\u0026#39;t really see a hole that would be filled by what you\\u0026#39;re talking about.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq89p5p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559890199.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq894nu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559861122.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 3, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Some \\\"switch-to-buffer\\\" functions like those provided by ivy and ido have the idea of \\\"virtual buffers\\\", which allows you to switch to buffers of previously-opened files even if you don't have them open currently. In practice, combined with a large `recentf` history of filenames, I think you'll find this does what you want.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq894nu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESome \\u0026quot;switch-to-buffer\\u0026quot; functions like those provided by ivy and ido have the idea of \\u0026quot;virtual buffers\\u0026quot;, which allows you to switch to buffers of previously-opened files even if you don\\u0026#39;t have them open currently. In practice, combined with a large \\u003Ccode\\u003Erecentf\\u003C/code\\u003E history of filenames, I think you\\u0026#39;ll find this does what you want.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq894nu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559889922.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2swo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq88wik\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559861001.0, \"send_replies\": true, \"parent_id\": \"t1_eq7rd66\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Request.el is a solid library, and it's what I always direct people towards\\n\\nGiven its age and lack of maintainership, it's held up respectably, but it's\\nby no means \\\"solid\\\" at the current time. There are well documented bugs, and\\nI don't particularly trust `url-retrieve` backend (the other backend is curl).\", \"link_title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"author_flair_css_class\": null, \"name\": \"t1_eq88wik\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERequest.el is a solid library, and it\\u0026#39;s what I always direct people towards\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EGiven its age and lack of maintainership, it\\u0026#39;s held up respectably, but it\\u0026#39;s\\nby no means \\u0026quot;solid\\u0026quot; at the current time. There are well documented bugs, and\\nI don\\u0026#39;t particularly trust \\u003Ccode\\u003Eurl-retrieve\\u003C/code\\u003E backend (the other backend is curl).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/eq88wik/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"report_reasons\": null, \"link_author\": \"andreas-marschke\", \"author_flair_text\": null, \"link_url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"created\": 1559889801.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq88h6h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"poiu-\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559860787.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_dcfnv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I would like to have this as a helm source (should be easy?)\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq88h6h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to have this as a helm source (should be easy?)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq88h6h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559889587.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bn3qax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq87ssp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rgrau\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1559860391.0, \"send_replies\": true, \"parent_id\": \"t1_eq2yn8z\", \"score\": 1, \"author_fullname\": \"t2_7p0zo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"it's better than Awesome :)\", \"link_title\": \"where, might you say, is the most \\\"super\\\" of a \\\"super cua\\\" package?\", \"author_flair_css_class\": null, \"name\": \"t1_eq87ssp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eit\\u0026#39;s better than Awesome :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/eq87ssp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"created\": 1559889191.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq810id\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erickgnavar\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559856701.0, \"send_replies\": true, \"parent_id\": \"t1_eq7ywee\", \"score\": 1, \"author_fullname\": \"t2_ndbm5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I\\u2019ve used it with https with no problem maybe there is something wrong outside emacs, a system package maybe\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq810id\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u2019ve used it with https with no problem maybe there is something wrong outside emacs, a system package maybe\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq810id/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559885501.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ywee\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"politza\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559855652.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_j63jw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Last time I tried it, it couldn't handle https connections and it did not handle http errors. Which means you don't know what's going on if something goes wrong. So, I had to use something else.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ywee\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELast time I tried it, it couldn\\u0026#39;t handle https connections and it did not handle http errors. Which means you don\\u0026#39;t know what\\u0026#39;s going on if something goes wrong. So, I had to use something else.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq7ywee/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559884452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7vhja\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jhelberg\", \"num_comments\": 55, \"can_mod_post\": false, \"created_utc\": 1559853941.0, \"send_replies\": true, \"parent_id\": \"t3_bx7m7a\", \"score\": 1, \"author_fullname\": \"t2_kf8fe\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"one book, one file I'd say. only long lines slow things down, one file makes searching easy.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7vhja\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eone book, one file I\\u0026#39;d say. only long lines slow things down, one file makes searching easy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq7vhja/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559882741.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvucsw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7uu9d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559853615.0, \"send_replies\": true, \"parent_id\": \"t1_eq1rf8b\", \"score\": 1, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E why is '(defconst qc-cmd-prefx:{c, cpp} ...)' moved out of the defun ? coming from a c'ish background, it seems more appropriate to have function-local-const values indicating readers that this 'foo' has a specified value, and cannot be changed (though not so sure about whether elisp guarantees that i.e. constness of the value held by 'foo').\\n\\n`defconst` doesn't introduce a local var. Use `let` for that. `defconst` always defines a global binding.\\n\\nAlso note that on Emacs 24.3+, ie any reasonable Emacs version, you can use `setq-local` instead of the `set` + `make-local-variable` combo.\", \"link_title\": \"help with trivial emacs lisp function\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq7uu9d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ewhy is \\u0026#39;(defconst qc-cmd-prefx:{c, cpp} ...)\\u0026#39; moved out of the defun ? coming from a c\\u0026#39;ish background, it seems more appropriate to have function-local-const values indicating readers that this \\u0026#39;foo\\u0026#39; has a specified value, and cannot be changed (though not so sure about whether elisp guarantees that i.e. constness of the value held by \\u0026#39;foo\\u0026#39;).\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Edefconst\\u003C/code\\u003E doesn\\u0026#39;t introduce a local var. Use \\u003Ccode\\u003Elet\\u003C/code\\u003E for that. \\u003Ccode\\u003Edefconst\\u003C/code\\u003E always defines a global binding.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso note that on Emacs 24.3+, ie any reasonable Emacs version, you can use \\u003Ccode\\u003Esetq-local\\u003C/code\\u003E instead of the \\u003Ccode\\u003Eset\\u003C/code\\u003E + \\u003Ccode\\u003Emake-local-variable\\u003C/code\\u003E combo.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/eq7uu9d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"report_reasons\": null, \"link_author\": \"daddyc00l\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"created\": 1559882415.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_eq7uu9d\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["252997"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:47 GMT"], "x-ratelimit-remaining": ["598.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["2"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930746.298464,VS0,VE835"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["254"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T18:05:47"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_eqabxfh"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:47 GMT"], "x-ratelimit-remaining": ["597.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["3"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930748.607738,VS0,VE83"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["253"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_eqabxfh"}, "recorded_at": "2019-06-07T18:05:47"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\n\\u0026#x200B;\\n\\nJust a question about using dired for rename / move dirs on remote\\n\\nmachine (sorry for my poor english).\\n\\n\\u0026#x200B;\\n\\nI have a home headless server and i connect to it from my desktop\\n\\nPC. In the server i have various dirs with multiple large files (\\u003E\\n\\nGB).\\n\\n\\u0026#x200B;\\n\\nI have notice two situations that make me avoid using emacs (in this\\n\\nsituations):\\n\\n\\u0026#x200B;\\n\\n1- Using dired, i connect via ssh (C-x d) to the server. I want to rename /\\n\\nmove a dir, so: Shift + R. Enter the destination or new file.\\n\\n\\u0026#x200B;\\n\\n2- Using dired, i connect via ssh to the server (C-x d). I want to rename a\\n\\ndir. So, wdired and change it. When done: C-c C-C.\\n\\n\\u0026#x200B;\\n\\nIn both situations, it lasts a lot of time. What is really happening\\n\\nis that the original dir is copied to the destination dir with the new\\n\\nname, and when finished, deletes the original dir. Using midnight\\n\\ncommander, this doesn't happens, and the operation duration is near 0.\\n\\n\\u0026#x200B;\\n\\nWhen local, all is fine, this only happens when operating with\\n\\nremote systems.\\n\\n\\u0026#x200B;\\n\\nIs this normal? Any ideas?\\n\\n\\u0026#x200B;\\n\\nThanks!\", \"author_fullname\": \"t2_c3qwyj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using dired(+tramp) for rename / move dirs on remote machine\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxvtfb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559949495.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust a question about using dired for rename / move dirs on remote\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Emachine (sorry for my poor english).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a home headless server and i connect to it from my desktop\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPC. In the server i have various dirs with multiple large files (\\u0026gt;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGB).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have notice two situations that make me avoid using emacs (in this\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esituations):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E1- Using dired, i connect via ssh (C-x d) to the server. I want to rename /\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Emove a dir, so: Shift + R. Enter the destination or new file.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2- Using dired, i connect via ssh to the server (C-x d). I want to rename a\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Edir. So, wdired and change it. When done: C-c C-C.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn both situations, it lasts a lot of time. What is really happening\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eis that the original dir is copied to the destination dir with the new\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ename, and when finished, deletes the original dir. Using midnight\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ecommander, this doesn\\u0026#39;t happens, and the operation duration is near 0.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen local, all is fine, this only happens when operating with\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eremote systems.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this normal? Any ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxvtfb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dienadel_007\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxvtfb/using_diredtramp_for_rename_move_dirs_on_remote/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxvtfb/using_diredtramp_for_rename_move_dirs_on_remote/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559920695.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"One strong part of my emacs or elisp workflow has always been the ease in jumping to source on core (if that's the right word) elisp functions. Sometimes it tells me something faster than the docs, sometimes I use it alongside the docs, or sometimes I just like looking through it, but with my most current emacs, there seem to only be the byte compiled versions of the source, and so trying to jump to them gives me a 'Can't find library /usr/share/../lisp/blah.el' error. This particular emacs used spacemacs as the starting point, which I have not done in the past, so I don't know if this happened to be a setting involved there or if its unrelated. Does anyone know the most straightforward way to get the .el versions in there as well? Thanks a bunch!\\n\\nEdit: I have solved it by reinstalling emacs completely from source, thanks everyone\", \"author_fullname\": \"t2_15g5qn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"/usr/share/emacs/26.1/lisp/* only contains the compiled .elc files of its libraries, would anyone know the most straightforward way to also have the .el files so I can jump to definition when reading more core elisp code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxv7fa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559929603.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559946216.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOne strong part of my emacs or elisp workflow has always been the ease in jumping to source on core (if that\\u0026#39;s the right word) elisp functions. Sometimes it tells me something faster than the docs, sometimes I use it alongside the docs, or sometimes I just like looking through it, but with my most current emacs, there seem to only be the byte compiled versions of the source, and so trying to jump to them gives me a \\u0026#39;Can\\u0026#39;t find library /usr/share/../lisp/blah.el\\u0026#39; error. This particular emacs used spacemacs as the starting point, which I have not done in the past, so I don\\u0026#39;t know if this happened to be a setting involved there or if its unrelated. Does anyone know the most straightforward way to get the .el versions in there as well? Thanks a bunch!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: I have solved it by reinstalling emacs completely from source, thanks everyone\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxv7fa\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ElBroet\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxv7fa/usrshareemacs261lisp_only_contains_the_compiled/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559917416.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So Emacs is pretty old, and it has `grep.el` and `find-dired` that allow to use external tools to search for files and in files. But that can cause difficulties when those tools are not available. Sure, `grep` and `find` are available on every *nix environment (ahem, BSD and GNU actually differ, ahem), but that's not the case for Windows. I'm not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\n\\nI'm aware of [xah-find](https://github.com/xahlee/xah-find), which declares these features:\\n\\n\\u003E\\u2022 Pure emacs lisp. No dependencies on unix/linux grep/sed/find. Especially useful on Windows.\\n\\u003E\\n\\u003E\\u2022 Output is highlighted and clickable for jumping to occurence.\\n\\u003E\\n\\u003E\\u2022 Using emacs regex, not bash/perl etc regex.\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that\\u2019s multiple lines.\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that contains lots Unicode characters. See [unix uniq unicode bug](http://xahlee.info/comp/unix_uniq_unicode_bug.html) and [emacs calling unix grep problem](http://ergoemacs.org/emacs/emacs_grep_problem.html)\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that contains lots escape slashes or backslashes. For example, Find/Replace string that\\u2019s regex in source code.\\n\\nAnd it's seem to be nice solution for searching within file contents when `grep` or alternatives aren't available, but it's not in the default Emacs, you have to use googlefu in order to find it. And also it features output format that is quite different from what `grep` produces.\\n\\nAs for file search, I know that [Projectile](https://github.com/bbatsov/projectile) provides a [native](https://docs.projectile.mx/en/latest/configuration/#project-indexing-method) way of searching for files written in elisp, but again, it's not in the core, for obvious reasons.\\n\\nI wonder why there's no builtin commands to do arbitrary file search and contents search from Emacs like in, say, VSCode, Sublime Text, and Atom, which have cross-platform methods to search for and in files, which make sense to me, since I will get similar results across platforms, and will not be worried if my system features GNU grep or BSD grep, and GNU find or BSD find, which can be an issue on Linux and MacOS, and will require setting up GNU utilities on Windows.\\n\\nSo are there any historical or technical reasons for that? I know that elisp can be pretty slow for such task, but it seems that `xah-find` performs pretty good on my machine, and `native` method in projectile works acceptable as well.\", \"author_fullname\": \"t2_w7w9e32\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"grep and find but in pure Emacs LISP?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxtwfg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559938474.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo Emacs is pretty old, and it has \\u003Ccode\\u003Egrep.el\\u003C/code\\u003E and \\u003Ccode\\u003Efind-dired\\u003C/code\\u003E that allow to use external tools to search for files and in files. But that can cause difficulties when those tools are not available. Sure, \\u003Ccode\\u003Egrep\\u003C/code\\u003E and \\u003Ccode\\u003Efind\\u003C/code\\u003E are available on every *nix environment (ahem, BSD and GNU actually differ, ahem), but that\\u0026#39;s not the case for Windows. I\\u0026#39;m not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m aware of \\u003Ca href=\\\"https://github.com/xahlee/xah-find\\\"\\u003Exah-find\\u003C/a\\u003E, which declares these features:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u2022 Pure emacs lisp. No dependencies on unix/linux grep/sed/find. Especially useful on Windows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Output is highlighted and clickable for jumping to occurence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Using emacs regex, not bash/perl etc regex.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that\\u2019s multiple lines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that contains lots Unicode characters. See \\u003Ca href=\\\"http://xahlee.info/comp/unix_uniq_unicode_bug.html\\\"\\u003Eunix uniq unicode bug\\u003C/a\\u003E and \\u003Ca href=\\\"http://ergoemacs.org/emacs/emacs_grep_problem.html\\\"\\u003Eemacs calling unix grep problem\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that contains lots escape slashes or backslashes. For example, Find/Replace string that\\u2019s regex in source code.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAnd it\\u0026#39;s seem to be nice solution for searching within file contents when \\u003Ccode\\u003Egrep\\u003C/code\\u003E or alternatives aren\\u0026#39;t available, but it\\u0026#39;s not in the default Emacs, you have to use googlefu in order to find it. And also it features output format that is quite different from what \\u003Ccode\\u003Egrep\\u003C/code\\u003E produces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for file search, I know that \\u003Ca href=\\\"https://github.com/bbatsov/projectile\\\"\\u003EProjectile\\u003C/a\\u003E provides a \\u003Ca href=\\\"https://docs.projectile.mx/en/latest/configuration/#project-indexing-method\\\"\\u003Enative\\u003C/a\\u003E way of searching for files written in elisp, but again, it\\u0026#39;s not in the core, for obvious reasons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wonder why there\\u0026#39;s no builtin commands to do arbitrary file search and contents search from Emacs like in, say, VSCode, Sublime Text, and Atom, which have cross-platform methods to search for and in files, which make sense to me, since I will get similar results across platforms, and will not be worried if my system features GNU grep or BSD grep, and GNU find or BSD find, which can be an issue on Linux and MacOS, and will require setting up GNU utilities on Windows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo are there any historical or technical reasons for that? I know that elisp can be pretty slow for such task, but it seems that \\u003Ccode\\u003Exah-find\\u003C/code\\u003E performs pretty good on my machine, and \\u003Ccode\\u003Enative\\u003C/code\\u003E method in projectile works acceptable as well.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxtwfg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andreyorst\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559909674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"There was a post recently about why people quit using helm and I said that the TAB key usage was just too jarring (by default). I said that I gave up but prompted to change them I tried, but I didn't like any of my options that I could find. So I write my own. This will make the tab:\\n\\n* If there's more than one candidate flash the mode-line. This is a close enough approximation of the default `find-file` behavior that expands the candidates\\n* If there's one or less candidates do whatever the default persistent action is.\\n\\nNow helm doesn't really conflict with two decades of `find-file` or `execute-extended-command` usage(\\\\*):\\n\\nSo the flasher ([source](https://www.emacswiki.org/emacs/AlarmBell)):\\n\\n defun double-flash-mode-line ()\\n \\\"Flash the modeline\\\"\\n (let ((flash-sec (/ 1.0 20)))\\n (invert-face 'mode-line)\\n (run-with-timer flash-sec nil #'invert-face 'mode-line)\\n (run-with-timer (* 2 flash-sec) nil #'invert-face 'mode-line)\\n (run-with-timer (* 3 flash-sec) nil #'invert-face 'mode-line)))\\n\\nThe action:\\n\\n (defun helm-execute-if-single-persistent-action (\\u0026optional attr split-onewindow)\\n \\\"Execute persistent action if the candidate list is less than 2\\\"\\n (interactive)\\n (with-helm-alive-p\\n (if (\\u003E (helm-get-candidate-number) 2)\\n (double-flash-mode-line)\\n (helm-execute-persistent-action)\\n )))\\n\\nSo here's my helm-related configuration in it's entirety for now. I'm probably still missing a lot of gems to get the most out of it but still:\\n\\n (use-package helm\\n :demand t\\n :bind* (:map helm-map \\n ([tab] . helm-execute-if-single-persistent-action)\\n (\\\"C-i\\\" . helm-execute-persistent-action)\\n ))\\n \\n (use-package helm-files\\n :bind (:map helm-find-files-map\\n (\\\"\\u003CC-backspace\\u003E\\\" . helm-find-files-up-one-level)\\n )\\n )\\n \\n (require 'helm-config)\\n (global-set-key (kbd \\\"M-x\\\") 'helm-M-x)\\n (global-set-key (kbd \\\"C-x b\\\") 'helm-buffers-list)\\n (global-set-key (kbd \\\"C-x C-f\\\") 'helm-find-files)\\n (helm-mode 1)\\n\\nSimple enough and now helm can get off my lawn and back to my emacs.\\n\\n\\u0026#x200B;\\n\\n(\\\\*) I still make mistakes when I want a new file and there's a close candidate, but I can live with that.\", \"author_fullname\": \"t2_z7asf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Helm and the Tab key\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxt0cz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559932255.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere was a post recently about why people quit using helm and I said that the TAB key usage was just too jarring (by default). I said that I gave up but prompted to change them I tried, but I didn\\u0026#39;t like any of my options that I could find. So I write my own. This will make the tab:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf there\\u0026#39;s more than one candidate flash the mode-line. This is a close enough approximation of the default \\u003Ccode\\u003Efind-file\\u003C/code\\u003E behavior that expands the candidates\\u003C/li\\u003E\\n\\u003Cli\\u003EIf there\\u0026#39;s one or less candidates do whatever the default persistent action is.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ENow helm doesn\\u0026#39;t really conflict with two decades of \\u003Ccode\\u003Efind-file\\u003C/code\\u003E or \\u003Ccode\\u003Eexecute-extended-command\\u003C/code\\u003E usage(*):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo the flasher (\\u003Ca href=\\\"https://www.emacswiki.org/emacs/AlarmBell\\\"\\u003Esource\\u003C/a\\u003E):\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edefun double-flash-mode-line ()\\n \\u0026quot;Flash the modeline\\u0026quot;\\n (let ((flash-sec (/ 1.0 20)))\\n (invert-face \\u0026#39;mode-line)\\n (run-with-timer flash-sec nil #\\u0026#39;invert-face \\u0026#39;mode-line)\\n (run-with-timer (* 2 flash-sec) nil #\\u0026#39;invert-face \\u0026#39;mode-line)\\n (run-with-timer (* 3 flash-sec) nil #\\u0026#39;invert-face \\u0026#39;mode-line)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe action:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun helm-execute-if-single-persistent-action (\\u0026amp;optional attr split-onewindow)\\n \\u0026quot;Execute persistent action if the candidate list is less than 2\\u0026quot;\\n (interactive)\\n (with-helm-alive-p\\n (if (\\u0026gt; (helm-get-candidate-number) 2)\\n (double-flash-mode-line)\\n (helm-execute-persistent-action)\\n )))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo here\\u0026#39;s my helm-related configuration in it\\u0026#39;s entirety for now. I\\u0026#39;m probably still missing a lot of gems to get the most out of it but still:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package helm\\n :demand t\\n :bind* (:map helm-map \\n ([tab] . helm-execute-if-single-persistent-action)\\n (\\u0026quot;C-i\\u0026quot; . helm-execute-persistent-action)\\n ))\\n\\n(use-package helm-files\\n :bind (:map helm-find-files-map\\n (\\u0026quot;\\u0026lt;C-backspace\\u0026gt;\\u0026quot; . helm-find-files-up-one-level)\\n )\\n )\\n\\n(require \\u0026#39;helm-config)\\n(global-set-key (kbd \\u0026quot;M-x\\u0026quot;) \\u0026#39;helm-M-x)\\n(global-set-key (kbd \\u0026quot;C-x b\\u0026quot;) \\u0026#39;helm-buffers-list)\\n(global-set-key (kbd \\u0026quot;C-x C-f\\u0026quot;) \\u0026#39;helm-find-files)\\n(helm-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESimple enough and now helm can get off my lawn and back to my emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(*) I still make mistakes when I want a new file and there\\u0026#39;s a close candidate, but I can live with that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxt0cz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TTRation\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxt0cz/helm_and_the_tab_key/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxt0cz/helm_and_the_tab_key/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559903455.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm currently using\\n\\n```\\n(defvar default-font \\\"DejaVu Sans Mono-11.0:antialias=natural\\\")\\n(add-to-list 'default-frame-alist `(font . ,default-font))\\n```\\n\\nbut I'm wondering whether there is sth better out there.\", \"author_fullname\": \"t2_q52rf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What font settings would you recommend?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxsydi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559931829.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m currently using\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(defvar default-font \\u0026quot;DejaVu Sans Mono-11.0:antialias=natural\\u0026quot;)\\n(add-to-list \\u0026#39;default-frame-alist `(font . ,default-font))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut I\\u0026#39;m wondering whether there is sth better out there.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsydi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackjackk0\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559903029.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have install the MELPA stable packages for pandoc, mark-down-mode and pandoc-mode. Can export, compile etc fine with mark-down mode but I cannot get the pandoc-mode exporting to work as the error is 'Searching for program: No such file or directory, pandoc'\\n\\n\\u0026#x200B;\\n\\nIn my .emacs file I have (setq markdown-command \\\"/usr/local/bin/pandoc\\\")\\n\\n\\u0026#x200B;\\n\\nGoing through finder, I do have a 50.9MB pandoc file (with no extension though) in /usr/local/bin\\n\\n\\u0026#x200B;\\n\\nAny ideas?\", \"author_fullname\": \"t2_5034r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help installing pandoc, markdown-mode, pandoc-mode. OSX\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxsvnc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559931249.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have install the MELPA stable packages for pandoc, mark-down-mode and pandoc-mode. Can export, compile etc fine with mark-down mode but I cannot get the pandoc-mode exporting to work as the error is \\u0026#39;Searching for program: No such file or directory, pandoc\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my .emacs file I have (setq markdown-command \\u0026quot;/usr/local/bin/pandoc\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoing through finder, I do have a 50.9MB pandoc file (with no extension though) in /usr/local/bin\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsvnc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"richardsplash\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559902449.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Because the `elpa` directory is in the `emacs.d` directory when I try to search for some strings in own `init.el` it shows results from the `elpa` directory which I don't need.\\n\\nDo some of the grepping packages (projectile-grep for instance) have options to restrict or exclude some directories from the search?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to configure a grep command not to search some directories?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxrxm0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559923409.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause the \\u003Ccode\\u003Eelpa\\u003C/code\\u003E directory is in the \\u003Ccode\\u003Eemacs.d\\u003C/code\\u003E directory when I try to search for some strings in own \\u003Ccode\\u003Einit.el\\u003C/code\\u003E it shows results from the \\u003Ccode\\u003Eelpa\\u003C/code\\u003E directory which I don\\u0026#39;t need.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo some of the grepping packages (projectile-grep for instance) have options to restrict or exclude some directories from the search?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxrxm0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559894609.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I don't know why I hadn't done this sooner, but today I installed kubuntu on a memory stick and am now running that on my otherwise Windows 10 laptop.\\n\\nOf course, the first thing I did after installing 106 kubuntu updates was to install Emacs, which happens to be version 26.1. I noticed, however, that the kubuntu repository doesn't include any of the `.info` files!\\n\\nSo I uninstalled, downloaded 26.2 from [GNU Land](https://www.gnu.org/software/emacs/download.html) and read through the installation instructions. I got as far as running `./configure` and came up with this message:\\n\\n configure: error: You seem to be running X, but no X development libraries\\n were found. You should install the relevant development files for X\\n and for the toolkit you want, such as Gtk+ or Motif. Also make\\n sure you have development files for image handling, i.e.\\n tiff, gif, jpeg, png and xpm.\\n If you are sure you want Emacs compiled without X window support, pass\\n --without-x\\n to configure.\\n\\nI went into the Muon package manager, typed in `x window development library`, and found these two lovelies:\\n\\n- libclxclient-dev (X Window System C++ access library)\\n- libdri2-dev (library for the DRI2 extension to the X Window System)\\n\\nWhich means very little to me :-( I haven't even looked at Gtk+ or Motif, as well as the development files for image handling.\\n\\nI've Googled, and most of what I've found is at least 2 years old. Hoping someone would offer some guidance here, please.\", \"author_fullname\": \"t2_3n4c5vdo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Roadblock when installing Emacs 26.2 on kubuntu 19.04\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxrwro\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559923220.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t know why I hadn\\u0026#39;t done this sooner, but today I installed kubuntu on a memory stick and am now running that on my otherwise Windows 10 laptop.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, the first thing I did after installing 106 kubuntu updates was to install Emacs, which happens to be version 26.1. I noticed, however, that the kubuntu repository doesn\\u0026#39;t include any of the \\u003Ccode\\u003E.info\\u003C/code\\u003E files!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I uninstalled, downloaded 26.2 from \\u003Ca href=\\\"https://www.gnu.org/software/emacs/download.html\\\"\\u003EGNU Land\\u003C/a\\u003E and read through the installation instructions. I got as far as running \\u003Ccode\\u003E./configure\\u003C/code\\u003E and came up with this message:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Econfigure: error: You seem to be running X, but no X development libraries\\nwere found. You should install the relevant development files for X\\nand for the toolkit you want, such as Gtk+ or Motif. Also make\\nsure you have development files for image handling, i.e.\\ntiff, gif, jpeg, png and xpm.\\nIf you are sure you want Emacs compiled without X window support, pass\\n --without-x\\nto configure.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI went into the Muon package manager, typed in \\u003Ccode\\u003Ex window development library\\u003C/code\\u003E, and found these two lovelies:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Elibclxclient-dev (X Window System C++ access library)\\u003C/li\\u003E\\n\\u003Cli\\u003Elibdri2-dev (library for the DRI2 extension to the X Window System)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhich means very little to me :-( I haven\\u0026#39;t even looked at Gtk+ or Motif, as well as the development files for image handling.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve Googled, and most of what I\\u0026#39;ve found is at least 2 years old. Hoping someone would offer some guidance here, please.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxrwro\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"granti128\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559894420.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello r/emacs\\n\\nI would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz.[1](https://www.floydmortuary.com/obituaries/Eric-Ritz/) I didn't know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his `php-mode`.\\n\\nI'm not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\", \"author_fullname\": \"t2_gilh3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[meta] An \\\"in memoriam\\\" page?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxq3a0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 62, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 62, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559908284.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/emacs\\\"\\u003Er/emacs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz.\\u003Ca href=\\\"https://www.floydmortuary.com/obituaries/Eric-Ritz/\\\"\\u003E1\\u003C/a\\u003E I didn\\u0026#39;t know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his \\u003Ccode\\u003Ephp-mode\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"export EDITOR=emacs\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxq3a0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paxperscientiam\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559879484.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_6b5tg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxmyy8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 31, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 31, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559889098.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxmyy8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"LiterallyCarlSagan\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/federicotdn/key-quiz\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559860298.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a package that will let me forget which files I've already opened? Not so much a project exploration package or a do-everything completion system, just a slight twist on switch-to-buffer which would look for files if tab-completing to an existing buffer has failed. Kind of like how finding a file that's already open just switches to its buffer. Ideally as similar to switch-to-buffer's UI as possible.\", \"author_fullname\": \"t2_ajc92\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Package to switch to buffer or file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxm847\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559885167.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a package that will let me forget which files I\\u0026#39;ve already opened? Not so much a project exploration package or a do-everything completion system, just a slight twist on switch-to-buffer which would look for files if tab-completing to an existing buffer has failed. Kind of like how finding a file that\\u0026#39;s already open just switches to its buffer. Ideally as similar to switch-to-buffer\\u0026#39;s UI as possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxm847\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"phalp\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559856367.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm pretty new to emacs, I just installed spacemacs on my arch machine. In the terminal, the interface is near-unreadable. I just see \\\\u6969 all over the place where arrows and other unicode characters would be. Is there a font package I'm missing or something?\", \"author_fullname\": \"t2_eim28\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs showing unicode sequences in the terminal\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxjr2h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559872476.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m pretty new to emacs, I just installed spacemacs on my arch machine. In the terminal, the interface is near-unreadable. I just see \\\\u6969 all over the place where arrows and other unicode characters would be. Is there a font package I\\u0026#39;m missing or something?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxjr2h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rpgwaiter\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559843676.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If I'm writing a document to be published via latex, what, if any, advantages are there to author it in org-babel vs. pure latex? Does the answer change if the document includes things like mathematical equations, technical diagrams and/or code examples?\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-babel for latex\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxiz6w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559868561.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I\\u0026#39;m writing a document to be published via latex, what, if any, advantages are there to author it in org-babel vs. pure latex? Does the answer change if the document includes things like mathematical equations, technical diagrams and/or code examples?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxiz6w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559839761.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to debug python, but when it asks for a template and I type in \\\"python,\\\" nothing comes up. Where do I get a template?\", \"author_fullname\": \"t2_14xlbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Where do I find templates for dap-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxhod6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559861885.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to debug python, but when it asks for a template and I type in \\u0026quot;python,\\u0026quot; nothing comes up. Where do I get a template?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxhod6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_wade\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559833085.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have a setup where I'm forced to work on a Windows machine and connect to a remote linux server.\\n\\nMy initial idea was to start a emacs in daemon mode with `emacs --daemon` and having it persistently running on the server. Then, from windows and using putty (with X-forwarding) + vcxsrv (X Server for Windows), I could call `emacsclient -c` and have a client to this persistent session every time I need in a dedicated window in my Windows pc.\\n\\n\\nThis setup for me would be great because my sessions would survive connection instabilities. Even if my putty session dropped (which happens sometimes), I could just start another emacsclient and resume the work from where I left, including long-running `compile` commands.\\n\\n\\nHowever what happens is that after my connection drops for the first time (or I close a emacsclient) is that the next call to `emacsclient` fails. The system simply hangs and nothing happens. This happened with `emacsclient foo`, `emacsclient -c`, `emacsclient -e nil`, `emacsclient -t`, etc. It hangs (saying \\\"Waiting for Emacs\\\" if the -n flag is passed) as usual, but it never really opens a new emacs frame. \\n\\n\\nRestarting the server solves the issue, but of course I lose all my work.\\n\\n\\nAny ideas?\\n\\n\\n```\\nThis is GNU Emacs 25.1.1 (x86\\\\_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-15, modified by Debian\\n```\", \"author_fullname\": \"t2_2nkdd29t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxfdd1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847473.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a setup where I\\u0026#39;m forced to work on a Windows machine and connect to a remote linux server.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy initial idea was to start a emacs in daemon mode with \\u003Ccode\\u003Eemacs --daemon\\u003C/code\\u003E and having it persistently running on the server. Then, from windows and using putty (with X-forwarding) + vcxsrv (X Server for Windows), I could call \\u003Ccode\\u003Eemacsclient -c\\u003C/code\\u003E and have a client to this persistent session every time I need in a dedicated window in my Windows pc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis setup for me would be great because my sessions would survive connection instabilities. Even if my putty session dropped (which happens sometimes), I could just start another emacsclient and resume the work from where I left, including long-running \\u003Ccode\\u003Ecompile\\u003C/code\\u003E commands.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever what happens is that after my connection drops for the first time (or I close a emacsclient) is that the next call to \\u003Ccode\\u003Eemacsclient\\u003C/code\\u003E fails. The system simply hangs and nothing happens. This happened with \\u003Ccode\\u003Eemacsclient foo\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -c\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -e nil\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -t\\u003C/code\\u003E, etc. It hangs (saying \\u0026quot;Waiting for Emacs\\u0026quot; if the -n flag is passed) as usual, but it never really opens a new emacs frame. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERestarting the server solves the issue, but of course I lose all my work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\nThis is GNU Emacs 25.1.1 (x86\\\\_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-15, modified by Debian\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfdd1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vitorqb23\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559818673.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I used to get a longer undo history, I would frequently use visualize-undo-tree to navigate through my undo states... suddenly my tree is always a single path. \\n\\nAnyone have any idea what I might have changed?\", \"author_fullname\": \"t2_krp1j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Somehow my undo history is truncated... what did I inadvertently change?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx82j3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559798322.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used to get a longer undo history, I would frequently use visualize-undo-tree to navigate through my undo states... suddenly my tree is always a single path. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone have any idea what I might have changed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx82j3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moxxon\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559769522.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"well, recently i am using emacs to manage agenda, to write academic docs, to write some scripts for programming contest and so on until sudendly i find myself unproductive and crazy closing all buffer related to magit, org-mode, eshell, etc.... so i want to know how do you deal with all buffers?, how do you find and change to a buffer quickly?....\\n\\nany ideas is well received... thanks you!!\", \"author_fullname\": \"t2_rpq4n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"how to deal with a lot of buffers in emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx7m7a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 54, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 54, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559796022.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewell, recently i am using emacs to manage agenda, to write academic docs, to write some scripts for programming contest and so on until sudendly i find myself unproductive and crazy closing all buffer related to magit, org-mode, eshell, etc.... so i want to know how do you deal with all buffers?, how do you find and change to a buffer quickly?....\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eany ideas is well received... thanks you!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx7m7a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ch0ff\", \"num_crossposts\": 0, \"num_comments\": 55, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559767222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Even Better 'Better Defaults'\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx54uk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559783750.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx54uk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/ianpan870102/.emacs.d\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559754950.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've made an example [restclient file](https://github.com/TatriX/realworld-rust-rocket/blob/master/tests/dev.http) for my [realworld](https://github.com/TatriX/realworld-rust-rocket) implementation in Rust.\\n\\n[Restclient](https://github.com/pashky/restclient.el) is useful for http testing. So if you never tried it I encourage you to do so!\\n\\nhttps://i.redd.it/lfmdm6x2mj231.png\", \"author_fullname\": \"t2_tpfed\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Restclient example\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"lfmdm6x2mj231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1810, \"x\": 1915, \"u\": \"https://i.redd.it/lfmdm6x2mj231.png\"}, \"m\": \"image/png\", \"id\": \"lfmdm6x2mj231\"}}, \"name\": \"t3_bx2t14\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559771552.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve made an example \\u003Ca href=\\\"https://github.com/TatriX/realworld-rust-rocket/blob/master/tests/dev.http\\\"\\u003Erestclient file\\u003C/a\\u003E for my \\u003Ca href=\\\"https://github.com/TatriX/realworld-rust-rocket\\\"\\u003Erealworld\\u003C/a\\u003E implementation in Rust.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/pashky/restclient.el\\\"\\u003ERestclient\\u003C/a\\u003E is useful for http testing. So if you never tried it I encourage you to do so!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/lfmdm6x2mj231.png\\\"\\u003Ehttps://i.redd.it/lfmdm6x2mj231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2t14\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tatrics\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559742752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_eqgha\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx2swo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559771533.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2swo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andreas-marschke\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559742733.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want to make it so that all variable and function calls are highlighted in the same way they are in definitions but I cannot work out how to properly do so.\\n\\n[Image](https://imgur.com/t9sIhUs) of my current highlighting.\", \"author_fullname\": \"t2_3bwix9h6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx2cy9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559768909.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to make it so that all variable and function calls are highlighted in the same way they are in definitions but I cannot work out how to properly do so.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/t9sIhUs\\\"\\u003EImage\\u003C/a\\u003E of my current highlighting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2cy9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ConfidentGarbage9\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559740109.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to get into writing backends for Gnus, and I'm having a hard time wrapping my head around it coneptwise, essentialwise and otherwise.\\n\\n\\u0026#x200B;\\n\\nI think I've seen a blog-post or somesuch years ago walking through the basics, but all my attempts at finding it have evaluated to nil.\\n\\n\\u0026#x200B;\\n\\nWould I be so lucky that one of you might be able provide any pointers?\", \"author_fullname\": \"t2_mdzdbt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The woes of writing Gnus backends\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx25j5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559767624.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to get into writing backends for Gnus, and I\\u0026#39;m having a hard time wrapping my head around it coneptwise, essentialwise and otherwise.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I\\u0026#39;ve seen a blog-post or somesuch years ago walking through the basics, but all my attempts at finding it have evaluated to nil.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWould I be so lucky that one of you might be able provide any pointers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx25j5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"StoffePro\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx25j5/the_woes_of_writing_gnus_backends/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx25j5/the_woes_of_writing_gnus_backends/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559738824.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have some interesting agenda entries dating back to 2017 that I want to use in my current org files and I have set the TODO values to TODO2017, but there is too much to see when I am working on current items.\\n\\nIs there a way to filter the editing page to hide the TODO2017 or any other items?\\n\\nI think I can filter them out in the agenda view, but in this case I need them filtered when viewing or editing the page.\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can some org TODOs filtered out from normal working view?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx0bp9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559752893.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have some interesting agenda entries dating back to 2017 that I want to use in my current org files and I have set the TODO values to TODO2017, but there is too much to see when I am working on current items.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way to filter the editing page to hide the TODO2017 or any other items?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I can filter them out in the agenda view, but in this case I need them filtered when viewing or editing the page.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx0bp9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx0bp9/how_can_some_org_todos_filtered_out_from_normal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx0bp9/how_can_some_org_todos_filtered_out_from_normal/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559724093.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I saw [an earlier thread](https://www.reddit.com/r/emacs/comments/8e24t9/writing_reactjsx_in_2018_what_addons_do_you_all/) asking about users\\u2019 setups for JSX. Since I can\\u2019t respond to that thread, I thought I\\u2019d make a new one / an announcement.\\n\\nSince Emacs 25, js-jsx-mode was added to provide some indentation support for JSX \\u2014 however, the indentation code had many bugs and limitations. Not everyone knew about js-jsx-mode either.\\n\\nI decided to return to the Emacs core and fix the indentation code. I also added highlighting for JSX. I even made it so that JSX could be detected and used in normal JavaScript buffers, without the user needing to know about js-jsx-mode.\\n\\n[JSX code highlighted in Emacs 27](https://i.redd.it/hh8uds9elh231.png)\\n\\nAll these features are now available on the Emacs master branch, and eventually will be released in Emacs 27. I invite JS devs to take my improvements for a spin. Hopefully they will be pleasant for you to use!\\n\\nMy goal was to do most of the same things that the combination of js2-mode+rjsx-mode would achieve, without needing to install and configure extra modes, and hopefully with better performance.\", \"author_fullname\": \"t2_3w4fpd4t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"Improved JSX support now available in js-mode on Emacs master\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"hh8uds9elh231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 684, \"x\": 816, \"u\": \"https://i.redd.it/hh8uds9elh231.png\"}, \"m\": \"image/png\", \"id\": \"hh8uds9elh231\"}}, \"name\": \"t3_bwzpw0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 110, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 110, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559747224.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI saw \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/8e24t9/writing_reactjsx_in_2018_what_addons_do_you_all/\\\"\\u003Ean earlier thread\\u003C/a\\u003E asking about users\\u2019 setups for JSX. Since I can\\u2019t respond to that thread, I thought I\\u2019d make a new one / an announcement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince Emacs 25, js-jsx-mode was added to provide some indentation support for JSX \\u2014 however, the indentation code had many bugs and limitations. Not everyone knew about js-jsx-mode either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI decided to return to the Emacs core and fix the indentation code. I also added highlighting for JSX. I even made it so that JSX could be detected and used in normal JavaScript buffers, without the user needing to know about js-jsx-mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/hh8uds9elh231.png\\\"\\u003EJSX code highlighted in Emacs 27\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll these features are now available on the Emacs master branch, and eventually will be released in Emacs 27. I invite JS devs to take my improvements for a spin. Hopefully they will be pleasant for you to use!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy goal was to do most of the same things that the combination of js2-mode+rjsx-mode would achieve, without needing to install and configure extra modes, and hopefully with better performance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwzpw0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jacksonrayhamilton\", \"num_crossposts\": 0, \"num_comments\": 24, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559718424.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"It is kind of annoying to have to use capital letters to get a complete suggestion in many cases. So I was wondering if it possible to make company-lsp non-case-sensitive.\\n\\n\\u0026#x200B;\\n\\nThanks.\", \"author_fullname\": \"t2_3d69xp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make company-lsp non-case-sensitive?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwt79w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559706779.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt is kind of annoying to have to use capital letters to get a complete suggestion in many cases. So I was wondering if it possible to make company-lsp non-case-sensitive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwt79w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ram535\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwt79w/how_to_make_companylsp_noncasesensitive/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwt79w/how_to_make_companylsp_noncasesensitive/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559677979.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm a long-time vim user who's been intrigued for a while by what emacs has to offer. I recently made the plunge and have been been using emacs for my workflow with C/C++ development mostly. One issue that I'm running into is that I can't seem to get autoindent to behave nicely, or at least to behave like it does in vim.\\n\\nIn my .vimrc, I have two lines:\\n\\n set tabstop=4\\n set shiftwidth=4\\n\\nThere is a third option, set notabexpand, which is on by default and keeps tabs as tabs, instead of substituting spaces.\\n\\nThis is the behavior that I'm trying to create in emacs. The tab character is displayed as 4 spaces wide, but is actually saved as a tab character in the file instead of four spaces. Autoindentation also inserts tabs, which are displayed as 4 spaces wide.\\n\\nHow do I reproduce this in emacs? I've gone through half a dozen guides, each recommending something different, and all of them have had funky results. Currently I've got:\\n\\n (setq-default tab-width 4)\\n (setq tap-stop-list (number-sequence 4 80 4))\\n\\nAutoindents give me a tab two characters wide. I'm not sure if it's a tab being displayed as two spaces, or two actual spaces.\\n\\nI tried adding: \\n\\n (setq c-default-style \\\"linux\\\" tab-width 4)\\n\\nWhen I did this, tabs were indeed displayed as 4 characters wide, but each level of indention was giving me 2 tabs for a total of 8 characters of indentation per level.\\n\\nWhat am I missing here? I feel like I *must* be making this way harder than it is because such basic functionality can't be hidden behind 10 lines of configuration.\\n\\n\\nEdit:\\n\\nI did a little bit more tinkering, and I seem to have found a combination of settings that (mostly) gets the correct behavior.\\n\\nBasically, I got rid of everything in my .emacs that mentioned indentation and added the following:\\n\\n (setq-default c-basic-offset 4\\n tab-width 4\\n indent-tabs-mode t)\\n\\nWith that change, everything *seems* to be working correctly. c-basic-offset is how many spaces emacs will indent a level of code, tab width is how many spaces the tab character is equal to, and indent-tabs-mode is a boolean variable that determines if tabs are used (t) or spaces (f). At least that's what I'm gathering.\", \"author_fullname\": \"t2_ge28w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I get my tabs and auto-indent to behave nicely?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bws522\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559712779.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559701657.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a long-time vim user who\\u0026#39;s been intrigued for a while by what emacs has to offer. I recently made the plunge and have been been using emacs for my workflow with C/C++ development mostly. One issue that I\\u0026#39;m running into is that I can\\u0026#39;t seem to get autoindent to behave nicely, or at least to behave like it does in vim.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my .vimrc, I have two lines:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eset tabstop=4\\nset shiftwidth=4\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThere is a third option, set notabexpand, which is on by default and keeps tabs as tabs, instead of substituting spaces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the behavior that I\\u0026#39;m trying to create in emacs. The tab character is displayed as 4 spaces wide, but is actually saved as a tab character in the file instead of four spaces. Autoindentation also inserts tabs, which are displayed as 4 spaces wide.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I reproduce this in emacs? I\\u0026#39;ve gone through half a dozen guides, each recommending something different, and all of them have had funky results. Currently I\\u0026#39;ve got:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq-default tab-width 4)\\n(setq tap-stop-list (number-sequence 4 80 4))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAutoindents give me a tab two characters wide. I\\u0026#39;m not sure if it\\u0026#39;s a tab being displayed as two spaces, or two actual spaces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried adding: \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq c-default-style \\u0026quot;linux\\u0026quot; tab-width 4)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I did this, tabs were indeed displayed as 4 characters wide, but each level of indention was giving me 2 tabs for a total of 8 characters of indentation per level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat am I missing here? I feel like I \\u003Cem\\u003Emust\\u003C/em\\u003E be making this way harder than it is because such basic functionality can\\u0026#39;t be hidden behind 10 lines of configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did a little bit more tinkering, and I seem to have found a combination of settings that (mostly) gets the correct behavior.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically, I got rid of everything in my .emacs that mentioned indentation and added the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq-default c-basic-offset 4\\n tab-width 4\\n indent-tabs-mode t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith that change, everything \\u003Cem\\u003Eseems\\u003C/em\\u003E to be working correctly. c-basic-offset is how many spaces emacs will indent a level of code, tab width is how many spaces the tab character is equal to, and indent-tabs-mode is a boolean variable that determines if tabs are used (t) or spaces (f). At least that\\u0026#39;s what I\\u0026#39;m gathering.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bws522\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"morganmachine91\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bws522/how_do_i_get_my_tabs_and_autoindent_to_behave/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bws522/how_do_i_get_my_tabs_and_autoindent_to_behave/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559672857.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_r6lg7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Will this Debian buster (testing) bug of Emacs related to a 16 year old upstream gtk+ bug affect those waiting for buster?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwrhq4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559698416.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"bugs.debian.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwrhq4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jumpUpHigh\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwrhq4/will_this_debian_buster_testing_bug_of_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://bugs.debian.org/cgi-bin/bugreport.cgi?archive=no\\u0026bug=929567\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559669616.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello everyone,\\n\\nI have been wanting to customize emacs to my needs for a long time but except for org-mode haven't quite done anything. Figured now would be a good time to start.\\n\\nThe first thing that I want is I create a lot of buffers on emacs but sometimes when my work laptop decides to restart I loose all those buffers (since they aren't associated with any file).\\n\\nHow do I get emacs to auto save my buffers\\\\*\\\\* to a particular location? \\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\* When I say buffer I basically mean \\\\`C-x b\\\\` type in a new name and start working on it.\", \"author_fullname\": \"t2_u6flf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make emacs automatically save buffers to a location\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwqw72\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"3a5e1042-1094-11e7-bb00-0e3b6c7befce\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559695385.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been wanting to customize emacs to my needs for a long time but except for org-mode haven\\u0026#39;t quite done anything. Figured now would be a good time to start.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first thing that I want is I create a lot of buffers on emacs but sometimes when my work laptop decides to restart I loose all those buffers (since they aren\\u0026#39;t associated with any file).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I get emacs to auto save my buffers** to a particular location? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** When I say buffer I basically mean `C-x b` type in a new name and start working on it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwqw72\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"abhixec\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/bwqw72/how_to_make_emacs_automatically_save_buffers_to_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwqw72/how_to_make_emacs_automatically_save_buffers_to_a/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559666585.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am trying to create a package manager for emacs which doesn't rely on package.el, is very minimalistic, and does all of its operations in the background. I have done some basic operations using shell scripts, Maybe I will use elisp code instead at some point. Any feedbacks or comments are very much appreciated.\\n\\nhttps://github.com/SidharthArya/emacsit\", \"author_fullname\": \"t2_3tn7pcdr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A simple package manager for emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwptua\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559661450.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559689923.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to create a package manager for emacs which doesn\\u0026#39;t rely on package.el, is very minimalistic, and does all of its operations in the background. I have done some basic operations using shell scripts, Maybe I will use elisp code instead at some point. Any feedbacks or comments are very much appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/SidharthArya/emacsit\\\"\\u003Ehttps://github.com/SidharthArya/emacsit\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwptua\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SidharthArya-\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwptua/a_simple_package_manager_for_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwptua/a_simple_package_manager_for_emacs/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559661123.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cr743\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"dianyou 0.0.3 is out (Gnus tool to search/analyze mails)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwohf8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559682405.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"blog.binchen.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwohf8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"redguardtoo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwohf8/dianyou_003_is_out_gnus_tool_to_searchanalyze/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://blog.binchen.org/posts/dianyou-0-0-3-is-out.html\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559653605.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I know that `emacs` is not multi-threaded, but I'd hope to be able to spawn a child process from `eshell`. Running `M-x shell` and then `yes \\u003E /dev/null` results in a process `yes` being spawned and it is occupying one core's 100%, it does not block `emacs`, all is good.\\n\\nHowever, when running `M-x eshell` and then `yes \\u003E /dev/null` results in the `emacs` process chugging 100% cpu, therefore `eshell` spawns a process as a child `emacs` process? Do I get this right?\\n\\nSo the question is: Can `eshell` spawn a process that is detached from `emacs`, just like `M-x shell` does?\", \"author_fullname\": \"t2_17fhdh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Eshell don't blocks Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwn89f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559673594.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know that \\u003Ccode\\u003Eemacs\\u003C/code\\u003E is not multi-threaded, but I\\u0026#39;d hope to be able to spawn a child process from \\u003Ccode\\u003Eeshell\\u003C/code\\u003E. Running \\u003Ccode\\u003EM-x shell\\u003C/code\\u003E and then \\u003Ccode\\u003Eyes \\u0026gt; /dev/null\\u003C/code\\u003E results in a process \\u003Ccode\\u003Eyes\\u003C/code\\u003E being spawned and it is occupying one core\\u0026#39;s 100%, it does not block \\u003Ccode\\u003Eemacs\\u003C/code\\u003E, all is good.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, when running \\u003Ccode\\u003EM-x eshell\\u003C/code\\u003E and then \\u003Ccode\\u003Eyes \\u0026gt; /dev/null\\u003C/code\\u003E results in the \\u003Ccode\\u003Eemacs\\u003C/code\\u003E process chugging 100% cpu, therefore \\u003Ccode\\u003Eeshell\\u003C/code\\u003E spawns a process as a child \\u003Ccode\\u003Eemacs\\u003C/code\\u003E process? Do I get this right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo the question is: Can \\u003Ccode\\u003Eeshell\\u003C/code\\u003E spawn a process that is detached from \\u003Ccode\\u003Eemacs\\u003C/code\\u003E, just like \\u003Ccode\\u003EM-x shell\\u003C/code\\u003E does?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwn89f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"grimscythe_\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwn89f/eshell_dont_blocks_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwn89f/eshell_dont_blocks_emacs/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559644794.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559637338.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As in the previous thread don't feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly tips/trick/etc/ thread\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwm94g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559664939.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs in the previous thread don\\u0026#39;t feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwm94g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 19, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": true, \"url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559636139.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_661dm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A keyboard that changes as you type.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwlncu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 74, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 74, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559659632.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwlncu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jaccarmac\", \"num_crossposts\": 1, \"num_comments\": 25, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwlncu/a_keyboard_that_changes_as_you_type/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/shapr/markovkeyboard\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559630832.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"After set debug-on-error to t in order to make sure that there is no error inside my .emacs file then i got some error on startup.\\n\\n Debugger entered--Lisp error: (wrong-type-argument undo-tree nil)\\n signal(wrong-type-argument (undo-tree nil))\\n undo-tree-current(nil)\\n (undo-tree-node-previous (undo-tree-current buffer-undo-tree))\\n (and undo-tree-mode (not buffer-read-only) (not (eq t buffer-undo-list)) (undo-tree-node-previous (undo-tree-current buffer-undo-tree)))\\n redisplay_internal\\\\ \\\\(C\\\\ function\\\\)()\\n message(\\\"Loading %s (source)...\\\" \\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\")\\n load-with-code-conversion(\\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\" \\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\" nil nil)\\n #\\u003Csubr load\\u003E(\\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\" nil nil nil nil)\\n ad-Advice-load(#\\u003Csubr load\\u003E \\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n apply(ad-Advice-load #\\u003Csubr load\\u003E \\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n load(\\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n eval-buffer(#\\u003Cbuffer *load*\\u003E nil \\\"/home/yourpc/.emacs\\\" nil t) ; Reading at buffer position 29657\\n load-with-code-conversion(\\\"/home/yourpc/.emacs\\\" \\\"/home/yourpc/.emacs\\\" t t)\\n load(\\\"~/.emacs\\\" noerror nomessage)\\n startup--load-user-init-file(#f(compiled-function () #\\u003Cbytecode 0x1fd3c2958e75\\u003E) #f(compiled-function () #\\u003Cbytecode 0x1fd3c2958e03\\u003E) t)\\n command-line()\\n normal-top-level()\\n\\nAnyone could help me fix this? I just want an error free.\", \"author_fullname\": \"t2_3uh7inav\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Set debug-on-error to t then startup with undo-tree error.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwleyk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559657730.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter set debug-on-error to t in order to make sure that there is no error inside my .emacs file then i got some error on startup.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EDebugger entered--Lisp error: (wrong-type-argument undo-tree nil)\\n signal(wrong-type-argument (undo-tree nil))\\n undo-tree-current(nil)\\n (undo-tree-node-previous (undo-tree-current buffer-undo-tree))\\n (and undo-tree-mode (not buffer-read-only) (not (eq t buffer-undo-list)) (undo-tree-node-previous (undo-tree-current buffer-undo-tree)))\\n redisplay_internal\\\\ \\\\(C\\\\ function\\\\)()\\n message(\\u0026quot;Loading %s (source)...\\u0026quot; \\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot;)\\n load-with-code-conversion(\\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot; \\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot; nil nil)\\n #\\u0026lt;subr load\\u0026gt;(\\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot; nil nil nil nil)\\n ad-Advice-load(#\\u0026lt;subr load\\u0026gt; \\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n apply(ad-Advice-load #\\u0026lt;subr load\\u0026gt; \\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n load(\\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n eval-buffer(#\\u0026lt;buffer *load*\\u0026gt; nil \\u0026quot;/home/yourpc/.emacs\\u0026quot; nil t) ; Reading at buffer position 29657\\n load-with-code-conversion(\\u0026quot;/home/yourpc/.emacs\\u0026quot; \\u0026quot;/home/yourpc/.emacs\\u0026quot; t t)\\n load(\\u0026quot;~/.emacs\\u0026quot; noerror nomessage)\\n startup--load-user-init-file(#f(compiled-function () #\\u0026lt;bytecode 0x1fd3c2958e75\\u0026gt;) #f(compiled-function () #\\u0026lt;bytecode 0x1fd3c2958e03\\u0026gt;) t)\\n command-line()\\n normal-top-level()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnyone could help me fix this? I just want an error free.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwleyk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cuhabaho\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwleyk/set_debugonerror_to_t_then_startup_with_undotree/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwleyk/set_debugonerror_to_t_then_startup_with_undotree/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559628930.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Unfortunately, this is not a just a statement about the longevity of Emacs, it's an actual problem I'm having: when I try to exit Emacs (either by C -x-C-c or closing the window), I get this error message in the minibuffer: \\n\\n\\nWrong type argument: number-or-marker-p, (+ -8) \\n\\n\\nI have to force quit it to get out. When I start Emacs with -q, this doesn't happen, so I'm getting ready to go through my whole init file, but I was hoping someone else might have encountered this and could save me some time. Thanks!\", \"author_fullname\": \"t2_gu9ty\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs won't quit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwjenz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559643882.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnfortunately, this is not a just a statement about the longevity of Emacs, it\\u0026#39;s an actual problem I\\u0026#39;m having: when I try to exit Emacs (either by C -x-C-c or closing the window), I get this error message in the minibuffer: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWrong type argument: number-or-marker-p, (+ -8) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have to force quit it to get out. When I start Emacs with -q, this doesn\\u0026#39;t happen, so I\\u0026#39;m getting ready to go through my whole init file, but I was hoping someone else might have encountered this and could save me some time. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwjenz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"viscountslim\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559615082.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello All,\\n\\nI have a single org file with lots of entries. Each entry has a few tags. I would like to view full entries for a specific a tag.\\n\\nI tried org-occur: it seem to highlight matching tags but keeps all entries in view\\n\\nI came across this old thread: [https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines](https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines) \\n\\nBefore trying this I wanted to see if there is something already baked in.\", \"author_fullname\": \"t2_62u3sb0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-mode: Narrow org buffer to matching tag entries such that full entry is in view\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwjdry\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559643739.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello All,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a single org file with lots of entries. Each entry has a few tags. I would like to view full entries for a specific a tag.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried org-occur: it seem to highlight matching tags but keeps all entries in view\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI came across this old thread: \\u003Ca href=\\\"https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines\\\"\\u003Ehttps://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore trying this I wanted to see if there is something already baked in.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwjdry\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"manojm321\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwjdry/orgmode_narrow_org_buffer_to_matching_tag_entries/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwjdry/orgmode_narrow_org_buffer_to_matching_tag_entries/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559614939.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My use case is this, I usually have emacs split into three vertical frames (left, center, and right) and I prefer editing in the middle buffer while using the right for reference and the left for compilation, testing, etc. Is there a way to make it so that when I open a buffer (or switch to a buffer) in the middle frame and it is open in the right, it swaps the middle and right buffers? This would be very nice for me so that I don't have to go back to the right buffer to change it myself. Is there a package for this or a simple script to make it work?\", \"author_fullname\": \"t2_apgh2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to swap if buffer is open in other frame, swap frame buffers instead of having two frames with the same buffer.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwdztj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559614819.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy use case is this, I usually have emacs split into three vertical frames (left, center, and right) and I prefer editing in the middle buffer while using the right for reference and the left for compilation, testing, etc. Is there a way to make it so that when I open a buffer (or switch to a buffer) in the middle frame and it is open in the right, it swaps the middle and right buffers? This would be very nice for me so that I don\\u0026#39;t have to go back to the right buffer to change it myself. Is there a package for this or a simple script to make it work?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwdztj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Twosided13\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwdztj/is_there_a_way_to_swap_if_buffer_is_open_in_other/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwdztj/is_there_a_way_to_swap_if_buffer_is_open_in_other/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559586019.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have the following code in my `.emacs` file:\\n\\n````\\n(custom-set-faces\\n '(default ((t (:family \\\"Source Code Pro\\\" :foundry \\\"ADBO\\\" :slant normal :weight normal :height 160 :width normal)))))\\n(set-fontset-font \\\"fontset-default\\\"\\n\\t\\t 'arabic\\n\\t\\t (font-spec :family \\\"Kawkab Mono\\\" :size 14))\\n````\\n\\nSetting `Source Code Pro` is done successfully for English text. But `Kawkab Mono` doesn't get applied on Arabic text, I still need to put the point at the end of that section, press C-x C-e to execute it.\\n\\nStarting emacs with `--debug-init` doesn't show any error message.\", \"author_fullname\": \"t2_169z83\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doesn't Execute `set-fontset-font` code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwchvn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559607309.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have the following code in my \\u003Ccode\\u003E.emacs\\u003C/code\\u003E file:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(custom-set-faces\\n \\u0026#39;(default ((t (:family \\u0026quot;Source Code Pro\\u0026quot; :foundry \\u0026quot;ADBO\\u0026quot; :slant normal :weight normal :height 160 :width normal)))))\\n(set-fontset-font \\u0026quot;fontset-default\\u0026quot;\\n \\u0026#39;arabic\\n (font-spec :family \\u0026quot;Kawkab Mono\\u0026quot; :size 14))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESetting \\u003Ccode\\u003ESource Code Pro\\u003C/code\\u003E is done successfully for English text. But \\u003Ccode\\u003EKawkab Mono\\u003C/code\\u003E doesn\\u0026#39;t get applied on Arabic text, I still need to put the point at the end of that section, press C-x C-e to execute it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStarting emacs with \\u003Ccode\\u003E--debug-init\\u003C/code\\u003E doesn\\u0026#39;t show any error message.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwchvn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tareefdev\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwchvn/emacs_doesnt_execute_setfontsetfont_code/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwchvn/emacs_doesnt_execute_setfontsetfont_code/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559578509.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[https://github.com/abrochard/emacs-todoist](https://github.com/abrochard/emacs-todoist)\\n\\n\\u0026#x200B;\\n\\nI'm a big fan of [todoist.com](https://todoist.com) and it's so convenient to be able to just create a new task from a binding, or pull out the task list in an org-mode buffer.\", \"author_fullname\": \"t2_10q1g7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"emacs-todoist: interact with todoist.com for task management\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwc9lr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559606158.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/abrochard/emacs-todoist\\\"\\u003Ehttps://github.com/abrochard/emacs-todoist\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a big fan of \\u003Ca href=\\\"https://todoist.com\\\"\\u003Etodoist.com\\u003C/a\\u003E and it\\u0026#39;s so convenient to be able to just create a new task from a binding, or pull out the task list in an org-mode buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwc9lr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Metr0idFusi0n\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559577358.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[leaf.el](https://github.com/conao3/leaf.el)\\n\\n[feather.el](https://github.com/conao3/feather.el)\\n\\nBoth seem interesting, and I didn't see them in MELPA so I thought I'd give them exposure. :) Currently there's very few contributors, so maybe people here might be interested in contributing.\\n\\nI don't own these, just btw.\", \"author_fullname\": \"t2_md275\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Interesting Emacs packages: leaf.el and feather.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwbo9n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559603044.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/conao3/leaf.el\\\"\\u003Eleaf.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/conao3/feather.el\\\"\\u003Efeather.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth seem interesting, and I didn\\u0026#39;t see them in MELPA so I thought I\\u0026#39;d give them exposure. :) Currently there\\u0026#39;s very few contributors, so maybe people here might be interested in contributing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t own these, just btw.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbo9n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ProfessorSexyTime\", \"num_crossposts\": 0, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559574244.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_960gwtm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I wrote some elisp to insert pretty comments. Please code review! :)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwbmc3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559602783.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gist.github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbmc3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nsapte\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbmc3/i_wrote_some_elisp_to_insert_pretty_comments/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://gist.github.com/suvratapte/fc3f5bfbc9c9d649e3ef080ec66bf9d5\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559573983.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So when I try to change custom themes, the previous theme is overwriting the new theme in my init.el. When I change it, this is what I'm seeing in my custom-set-theme section.\\n\\n\\u0026#x200B;\\n\\n '(ansi-color-names-vector\\n [\\\"#1F1611\\\" \\\"#660000\\\" \\\"#144212\\\" \\\"#EFC232\\\" \\\"#5798AE\\\" \\\"#BE73FD\\\" \\\"#93C1BC\\\" \\\"#E6E1DC\\\"])\\n '(ansi-term-color-vector\\n [unspecified \\\"#1F1611\\\" \\\"#660000\\\" \\\"#144212\\\" \\\"#EFC232\\\" \\\"#5798AE\\\" \\\"#BE73FD\\\" \\\"#93C1BC\\\" \\\"#E6E1DC\\\"])\\n '(custom-safe-themes\\n (quote\\n (\\\"3e83abe75cebf5621e34ce1cbe6e12e4d80766bed0755033febed5794d0c69bf\\\" \\\"35b000995eb4a526249078664d91b056feab7e96e81b2f226a0d9cad7f0a416e\\\" \\\"4b19d61c560a93ef90767abe513c11f236caec2864617d718aa366618133704c\\\" default)))\\n '(fci-rule-character-color \\\"#452E2E\\\")\\n '(fci-rule-color \\\"#452E2E\\\")\\n\\n\\u0026#x200B;\\n\\nDeleting this doesn't do anything, it just adds it in next time.\\n\\nHere are some screenshots to clarify what it is I'm seeing.\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[https://i.redd.it/kr94yn9hm5231.png](https://i.redd.it/kr94yn9hm5231.png)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[https://i.redd.it/84g8yxfkm5231.png](https://i.redd.it/84g8yxfkm5231.png)\\n\\nThe custom theme is supposed to look like [this](https://peach-melpa.org/themes/birds-of-paradise-plus-theme). Uninstalling the autumn-light theme doesn't help, either.\\n\\nEDIT: Color v custom\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/anogyn56vq231.gif\", \"author_fullname\": \"t2_14xlbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I'm getting a strange color theme bug in 26.2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"anogyn56vq231\": {\"status\": \"valid\", \"e\": \"AnimatedImage\", \"s\": {\"y\": 534, \"gif\": \"https://i.redd.it/anogyn56vq231.gif\", \"mp4\": \"https://external-preview.redd.it/anogyn56vq231.gif?format=mp4\\u0026s=862f232535c436319569146e87e81869651931c2\", \"x\": 500}, \"m\": \"image/gif\", \"id\": \"anogyn56vq231\"}}, \"name\": \"t3_bwbizf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559830430.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559602269.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo when I try to change custom themes, the previous theme is overwriting the new theme in my init.el. When I change it, this is what I\\u0026#39;m seeing in my custom-set-theme section.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026#39;(ansi-color-names-vector\\n[\\u0026quot;#1F1611\\u0026quot; \\u0026quot;#660000\\u0026quot; \\u0026quot;#144212\\u0026quot; \\u0026quot;#EFC232\\u0026quot; \\u0026quot;#5798AE\\u0026quot; \\u0026quot;#BE73FD\\u0026quot; \\u0026quot;#93C1BC\\u0026quot; \\u0026quot;#E6E1DC\\u0026quot;])\\n\\u0026#39;(ansi-term-color-vector\\n[unspecified \\u0026quot;#1F1611\\u0026quot; \\u0026quot;#660000\\u0026quot; \\u0026quot;#144212\\u0026quot; \\u0026quot;#EFC232\\u0026quot; \\u0026quot;#5798AE\\u0026quot; \\u0026quot;#BE73FD\\u0026quot; \\u0026quot;#93C1BC\\u0026quot; \\u0026quot;#E6E1DC\\u0026quot;])\\n\\u0026#39;(custom-safe-themes\\n(quote\\n(\\u0026quot;3e83abe75cebf5621e34ce1cbe6e12e4d80766bed0755033febed5794d0c69bf\\u0026quot; \\u0026quot;35b000995eb4a526249078664d91b056feab7e96e81b2f226a0d9cad7f0a416e\\u0026quot; \\u0026quot;4b19d61c560a93ef90767abe513c11f236caec2864617d718aa366618133704c\\u0026quot; default)))\\n\\u0026#39;(fci-rule-character-color \\u0026quot;#452E2E\\u0026quot;)\\n\\u0026#39;(fci-rule-color \\u0026quot;#452E2E\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeleting this doesn\\u0026#39;t do anything, it just adds it in next time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are some screenshots to clarify what it is I\\u0026#39;m seeing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/kr94yn9hm5231.png\\\"\\u003Ehttps://i.redd.it/kr94yn9hm5231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/84g8yxfkm5231.png\\\"\\u003Ehttps://i.redd.it/84g8yxfkm5231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe custom theme is supposed to look like \\u003Ca href=\\\"https://peach-melpa.org/themes/birds-of-paradise-plus-theme\\\"\\u003Ethis\\u003C/a\\u003E. Uninstalling the autumn-light theme doesn\\u0026#39;t help, either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Color v custom\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/anogyn56vq231.gif\\\"\\u003Ehttps://i.redd.it/anogyn56vq231.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbizf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_wade\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559573469.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here's the story:\\n\\nOnce upon a time, I wanted to convert some videos into mp3 files. But why download some GUI program off the internet or write a script when you can open up Emacs, right?\\n\\nSo after messing around with some Elisp code for running ffmpeg as a subprocess, I stumbled on Eshell! Not only does it work amazingly with Evil (it's like a regular buffer and bash had a baby), but you can throw in all the other Emacs favourites like Helm for getting file paths, and Company for some auto-complete.\\n\\nHere are some (Evil) manoeuvres.\\n\\n`:eshell`\\n\\n`cd C-x C-f` choose a file `C-c i` insert file path.\\n\\nWant to copy past your cool Eshell script to Reddit?\\n\\n`ESC` to go back to normal mode (or `jk` if you're fancy) `yy` yank the line.\\n\\n`\\u003E\\u003E for f in *.mkv {ffmpeg -i $f -aq 3 output/$(file-name-sans-extension f).mp3}`\\n\\n`i` go back to insert mode, run your mini-script. Horrah! All files converted.\\n\\nWhat's `$(file-name-sans-extension f)` you ask? That's Elisp code. That's right, you can just throw in the entire power of Emacs Lisp into your one line script.\\n\\nThere is just one little issue I ran into and that's when typing $(file-name...) Company bugged out and wouldn't complete the function name so I had to type the whole thing out (the horror!).\\n\\n\\u003Cedit\\u003E Found some extra links, since the documentation for Eshell inside emacs is a bit sparse.\\n\\nhttps://www.emacswiki.org/emacs/CategoryEshell\\n\\nhttps://masteringemacs.org/article/complete-guide-mastering-eshell\", \"author_fullname\": \"t2_c4blft1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Did you know that the Eshell is awesome?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9yo7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 92, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 92, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559574338.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559592800.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s the story:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce upon a time, I wanted to convert some videos into mp3 files. But why download some GUI program off the internet or write a script when you can open up Emacs, right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo after messing around with some Elisp code for running ffmpeg as a subprocess, I stumbled on Eshell! Not only does it work amazingly with Evil (it\\u0026#39;s like a regular buffer and bash had a baby), but you can throw in all the other Emacs favourites like Helm for getting file paths, and Company for some auto-complete.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are some (Evil) manoeuvres.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:eshell\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ecd C-x C-f\\u003C/code\\u003E choose a file \\u003Ccode\\u003EC-c i\\u003C/code\\u003E insert file path.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWant to copy past your cool Eshell script to Reddit?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EESC\\u003C/code\\u003E to go back to normal mode (or \\u003Ccode\\u003Ejk\\u003C/code\\u003E if you\\u0026#39;re fancy) \\u003Ccode\\u003Eyy\\u003C/code\\u003E yank the line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026gt;\\u0026gt; for f in *.mkv {ffmpeg -i $f -aq 3 output/$(file-name-sans-extension f).mp3}\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ei\\u003C/code\\u003E go back to insert mode, run your mini-script. Horrah! All files converted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s \\u003Ccode\\u003E$(file-name-sans-extension f)\\u003C/code\\u003E you ask? That\\u0026#39;s Elisp code. That\\u0026#39;s right, you can just throw in the entire power of Emacs Lisp into your one line script.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is just one little issue I ran into and that\\u0026#39;s when typing $(file-name...) Company bugged out and wouldn\\u0026#39;t complete the function name so I had to type the whole thing out (the horror!).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;edit\\u0026gt; Found some extra links, since the documentation for Eshell inside emacs is a bit sparse.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/CategoryEshell\\\"\\u003Ehttps://www.emacswiki.org/emacs/CategoryEshell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://masteringemacs.org/article/complete-guide-mastering-eshell\\\"\\u003Ehttps://masteringemacs.org/article/complete-guide-mastering-eshell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9yo7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"202700000000\", \"num_crossposts\": 0, \"num_comments\": 25, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559564000.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_64sbo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9azu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559588032.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9azu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rainymood_XI\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/Rainymood/dotemacs\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559559232.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nAs above, I'm wanting to access OneDrive from my emacs init as I'm trying to use org-mode/agenda, and want to be able to use OneDrive to sync between locations, however emacs always says can't find the file regardless if I use:\\n\\n\\\\~/OneDrive...\\n\\n%userprofile%/OneDrive\\n\\n%systemdrive%%homepath%/OneDrive\\n\\nFrom here:\\n\\n[https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt](https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt)\\n\\n\\u0026#x200B;\\n\\nBasically want this:\\n\\nsetq org-agenda-files (list \\\"\\\\~/OneDrive/org/general.org\\\")\\n\\n\\u0026#x200B;\\n\\nSince I have different user names at work/home I can't use a full path, any ideas? Most of the comments about home on windows seem to be with moving the .emacs.d directory, which I'm fine keeping that where it is.\", \"author_fullname\": \"t2_5f5ma\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Accessing OneDrive from emacs init?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw8ejb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559580110.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs above, I\\u0026#39;m wanting to access OneDrive from my emacs init as I\\u0026#39;m trying to use org-mode/agenda, and want to be able to use OneDrive to sync between locations, however emacs always says can\\u0026#39;t find the file regardless if I use:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E~/OneDrive...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E%userprofile%/OneDrive\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E%systemdrive%%homepath%/OneDrive\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt\\\"\\u003Ehttps://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically want this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esetq org-agenda-files (list \\u0026quot;~/OneDrive/org/general.org\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince I have different user names at work/home I can\\u0026#39;t use a full path, any ideas? Most of the comments about home on windows seem to be with moving the .emacs.d directory, which I\\u0026#39;m fine keeping that where it is.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw8ejb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GeorgeStorm\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw8ejb/accessing_onedrive_from_emacs_init/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw8ejb/accessing_onedrive_from_emacs_init/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559551310.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi there,\\n\\nI couldn't find anything about this online (well, nothing I could really get a direct answer from). If I copy a table on an HTML page, is it possible to paste it into an org document as an org table? I tried with org-protocol, but it doesn't set up the |--| separators at all and it just ends up being a mess. Maybe I'm missing something?\\n\\nThanks for any help!\", \"author_fullname\": \"t2_dmarn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Copy HTML Table/Paste Org Mode Table?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw7qdy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559573914.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi there,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI couldn\\u0026#39;t find anything about this online (well, nothing I could really get a direct answer from). If I copy a table on an HTML page, is it possible to paste it into an org document as an org table? I tried with org-protocol, but it doesn\\u0026#39;t set up the |--| separators at all and it just ends up being a mess. Maybe I\\u0026#39;m missing something?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any help!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw7qdy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TyrionBean\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw7qdy/copy_html_tablepaste_org_mode_table/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw7qdy/copy_html_tablepaste_org_mode_table/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559545114.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When I export to HTML, the source blocks have labels which show what language they are, but they only appear on hover. Can they easily be set to always show?\", \"author_fullname\": \"t2_rrtp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Export src-block to HTML with labels always on\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw7ps7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559573777.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I export to HTML, the source blocks have labels which show what language they are, but they only appear on hover. Can they easily be set to always show?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw7ps7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nagora\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw7ps7/export_srcblock_to_html_with_labels_always_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw7ps7/export_srcblock_to_html_with_labels_always_on/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559544977.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I can't make this function work...\\n\\n (defun codemascot/phpcbf-standard-toggle ()\\n \\\"Toggle PHPCS default standard between WordPress-VIP and PSR2\\\"\\n (interactive)\\n (if (= phpcbf-standard \\\"PSR2\\\")\\n ((setq phpcbf-standard \\\"WordPress-VIP\\\")\\n (message \\\"WordPress-VIP standard activated\\\"))\\n ((setq phpcbf-standard \\\"PSR2\\\")\\n (message \\\"PSR2 standard activated\\\"))))\\n\\nWhat is wrong with it that Emacs 26.2(Spacemacs) is giving me `helm-M-x: Wrong type argument: number-or-marker-p` error?\\n\\n\\n\\nUpdate, Working Snippet :) :\\n\\n (defun codemascot/phpcbf-standard-toggle ()\\n \\\"Toggle PHPCS default standard between WordPress-VIP and PSR2\\\"\\n (interactive)\\n (if (string= phpcbf-standard \\\"PSR2\\\")\\n (progn\\n (setq phpcbf-standard \\\"WordPress-VIP\\\")\\n (message \\\"WordPress-VIP CS standard has set\\\"))\\n (progn\\n (setq phpcbf-standard \\\"PSR2\\\")\\n (message \\\"PSR2 CS standard has set\\\"))))\\n\\nActually I work with *WordPress* and *Laravel* mostly. So I need to switch between these WordPress-VIP and PSR2 coding standard frequently. Anyway, here I'm sharing my updated function code which is working for me pretty well. Hope this help you too.\", \"author_fullname\": \"t2_38mg40l9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Toggle a variable based on condition\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw6zcv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559630313.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559567789.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t make this function work...\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun codemascot/phpcbf-standard-toggle ()\\n \\u0026quot;Toggle PHPCS default standard between WordPress-VIP and PSR2\\u0026quot;\\n (interactive)\\n (if (= phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n ((setq phpcbf-standard \\u0026quot;WordPress-VIP\\u0026quot;)\\n (message \\u0026quot;WordPress-VIP standard activated\\u0026quot;))\\n ((setq phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (message \\u0026quot;PSR2 standard activated\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhat is wrong with it that Emacs 26.2(Spacemacs) is giving me \\u003Ccode\\u003Ehelm-M-x: Wrong type argument: number-or-marker-p\\u003C/code\\u003E error?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate, Working Snippet :) :\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun codemascot/phpcbf-standard-toggle ()\\n \\u0026quot;Toggle PHPCS default standard between WordPress-VIP and PSR2\\u0026quot;\\n (interactive)\\n (if (string= phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (progn\\n (setq phpcbf-standard \\u0026quot;WordPress-VIP\\u0026quot;)\\n (message \\u0026quot;WordPress-VIP CS standard has set\\u0026quot;))\\n (progn\\n (setq phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (message \\u0026quot;PSR2 CS standard has set\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EActually I work with \\u003Cem\\u003EWordPress\\u003C/em\\u003E and \\u003Cem\\u003ELaravel\\u003C/em\\u003E mostly. So I need to switch between these WordPress-VIP and PSR2 coding standard frequently. Anyway, here I\\u0026#39;m sharing my updated function code which is working for me pretty well. Hope this help you too.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw6zcv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"codemascot\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw6zcv/toggle_a_variable_based_on_condition/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw6zcv/toggle_a_variable_based_on_condition/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559538989.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"`C-c C-s` and `C-c C-d` don't add hours and time in the timestamp.\\n\\nI thought prefixing them with `C-u` gives you minutes and seconds, but that option seems to be for removing deadlines.\\n\\nDo hours and minutes have to be added manually?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to add hours and minutes to orgmode deadlines and schedules?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw5zw6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559560806.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003EC-c C-s\\u003C/code\\u003E and \\u003Ccode\\u003EC-c C-d\\u003C/code\\u003E don\\u0026#39;t add hours and time in the timestamp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought prefixing them with \\u003Ccode\\u003EC-u\\u003C/code\\u003E gives you minutes and seconds, but that option seems to be for removing deadlines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo hours and minutes have to be added manually?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw5zw6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw5zw6/how_to_add_hours_and_minutes_to_orgmode_deadlines/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw5zw6/how_to_add_hours_and_minutes_to_orgmode_deadlines/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559532006.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I love [Vimcasts](http://vimcasts.org/) for learning Vim. I was wondering if there is something equivalent for Emacs: screencasts showcasing the editor. Added bonus for tutorials that include Emacs Lisp tips/tricks.\", \"author_fullname\": \"t2_3u1io9ko\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Screencasts showcasing Emacs tips/tricks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw4ix7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 39, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 39, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559551482.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love \\u003Ca href=\\\"http://vimcasts.org/\\\"\\u003EVimcasts\\u003C/a\\u003E for learning Vim. I was wondering if there is something equivalent for Emacs: screencasts showcasing the editor. Added bonus for tutorials that include Emacs Lisp tips/tricks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw4ix7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"scbm-reddit\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw4ix7/screencasts_showcasing_emacs_tipstricks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw4ix7/screencasts_showcasing_emacs_tipstricks/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559522682.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi all, I'm still new to Emacs and I'm having some issues with company-mode, when showing suggestions they often show up misaligned, like in this image: [https://imgur.com/a/GSqfBLn](https://imgur.com/a/GSqfBLn) , I don't think this is caused by company, as it sometimes also happens on the lines (a particular line will show up some pixels to the left), my config is here: [https://github.com/martini97/.emacs.d](https://github.com/martini97/.emacs.d), I've already tried to switch themes, which didn't help, and there's nothing being logged on messages. Has anyone had similar issues, or know how to fix this?\", \"author_fullname\": \"t2_9eav0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help identifying what's causing this bug on company\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvy2sp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559515571.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I\\u0026#39;m still new to Emacs and I\\u0026#39;m having some issues with company-mode, when showing suggestions they often show up misaligned, like in this image: \\u003Ca href=\\\"https://imgur.com/a/GSqfBLn\\\"\\u003Ehttps://imgur.com/a/GSqfBLn\\u003C/a\\u003E , I don\\u0026#39;t think this is caused by company, as it sometimes also happens on the lines (a particular line will show up some pixels to the left), my config is here: \\u003Ca href=\\\"https://github.com/martini97/.emacs.d\\\"\\u003Ehttps://github.com/martini97/.emacs.d\\u003C/a\\u003E, I\\u0026#39;ve already tried to switch themes, which didn\\u0026#39;t help, and there\\u0026#39;s nothing being logged on messages. Has anyone had similar issues, or know how to fix this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvy2sp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_martini97\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvy2sp/help_identifying_whats_causing_this_bug_on_company/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvy2sp/help_identifying_whats_causing_this_bug_on_company/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559486771.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Before coming to EXWM I was a power-user of KDE. I used a 3x3 grid for my workspace and so could position all applications within a screen up, down, right, or left of me. I had shortcuts established to quickly move between desktops and to send things to-and-from them. Then I found exwm. Aside: I am almost always connected to two or three monitors, whether using exwm or KDE. It works nicely with both WM. \\n\\n\\u0026#x200B;\\n\\nI use a single-workspace setup with exwm and the two primary benefits were that, instead of the geometric model from my KDE, thing were all random-access. Second benefit was that I could use emacs keys everywhere. Those are sizable benefits that served me well up until now. Now I am on a project using Android Studio (IntelliJ), and even after I figured out how to get it to start correctly on exwm (that's another story) it is still very hard to manage there; in particular, it gets hard when I launch an AVD (Android Virtual Device), which spawns a new EXWM window showing the device (e.g. phone), another floating one for the phone interactions/controls (which floats as a narrow strip in the middle of the screen over the top of whatever is there), and still leaves a couple of old ones with the actual IntelliJ window and AVD manager screen. The trouble here is two-fold: first, there are a lot of windows (emacs: Frames) that really need to be all seen at once because they interact with eachother, and more aggravataingly, the new exwm frames for the device and its controls hijack my keys and make it very hard to maneuver my other exwm around them (e.g. switching buffers gets tough). \\n\\n\\u0026#x200B;\\n\\nFor now I'm defeatedly switching back to KDE for this project; does anyone have an exwm workflow with IntelliJ or Android Studio that would make this more do-able?\", \"author_fullname\": \"t2_gmmqi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In search of an exwm workflow for Android Studio\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvxehe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559511215.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBefore coming to EXWM I was a power-user of KDE. I used a 3x3 grid for my workspace and so could position all applications within a screen up, down, right, or left of me. I had shortcuts established to quickly move between desktops and to send things to-and-from them. Then I found exwm. Aside: I am almost always connected to two or three monitors, whether using exwm or KDE. It works nicely with both WM. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use a single-workspace setup with exwm and the two primary benefits were that, instead of the geometric model from my KDE, thing were all random-access. Second benefit was that I could use emacs keys everywhere. Those are sizable benefits that served me well up until now. Now I am on a project using Android Studio (IntelliJ), and even after I figured out how to get it to start correctly on exwm (that\\u0026#39;s another story) it is still very hard to manage there; in particular, it gets hard when I launch an AVD (Android Virtual Device), which spawns a new EXWM window showing the device (e.g. phone), another floating one for the phone interactions/controls (which floats as a narrow strip in the middle of the screen over the top of whatever is there), and still leaves a couple of old ones with the actual IntelliJ window and AVD manager screen. The trouble here is two-fold: first, there are a lot of windows (emacs: Frames) that really need to be all seen at once because they interact with eachother, and more aggravataingly, the new exwm frames for the device and its controls hijack my keys and make it very hard to maneuver my other exwm around them (e.g. switching buffers gets tough). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor now I\\u0026#39;m defeatedly switching back to KDE for this project; does anyone have an exwm workflow with IntelliJ or Android Studio that would make this more do-able?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvxehe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WorldsEndless\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvxehe/in_search_of_an_exwm_workflow_for_android_studio/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvxehe/in_search_of_an_exwm_workflow_for_android_studio/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559482415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here's the latest in my Year of Emacs series.\\n\\nI'm aiming for weekly updates to this (excluding weeks where I publish the current version of my emacs.org dotfile).\\n\\nNext week, I want to learn something new, so I'll be doing dired and either dired-x or dired-aux. I'm open to community suggestions for which of those two supplemental packages are recommended (I'm leaning toward dired-x).\\n\\n\\u0026#x200B;\\n\\n[https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/](https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/)\", \"author_fullname\": \"t2_jqpn4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Writing Academic Papers in Org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvweh8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 67, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 67, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559503503.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s the latest in my Year of Emacs series.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m aiming for weekly updates to this (excluding weeks where I publish the current version of my emacs.org dotfile).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext week, I want to learn something new, so I\\u0026#39;ll be doing dired and either dired-x or dired-aux. I\\u0026#39;m open to community suggestions for which of those two supplemental packages are recommended (I\\u0026#39;m leaning toward dired-x).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/\\\"\\u003Ehttps://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvweh8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doulos05\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559474703.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"For some reason when i use \\\"find\\\" from emacs(in particular in dired to search files) it doesn't show cyrillic letters properly and i can't open files that it finds.\\n\\nIn general cyrillic letters work fine, and from regular terminal they work in \\\"find\\\"\\n\\n[https://imgur.com/a/jIY8ba7](https://imgur.com/a/jIY8ba7)\\n\\nWhat can I do about it?\", \"author_fullname\": \"t2_9riom\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cyrillic letters don't work with \\\"find\\\" in emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvuv9q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559488341.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor some reason when i use \\u0026quot;find\\u0026quot; from emacs(in particular in dired to search files) it doesn\\u0026#39;t show cyrillic letters properly and i can\\u0026#39;t open files that it finds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn general cyrillic letters work fine, and from regular terminal they work in \\u0026quot;find\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/jIY8ba7\\\"\\u003Ehttps://imgur.com/a/jIY8ba7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat can I do about it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvuv9q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GrinDeg\", \"num_crossposts\": 0, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvuv9q/cyrillic_letters_dont_work_with_find_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvuv9q/cyrillic_letters_dont_work_with_find_in_emacs/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559459541.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"hi all,\\n\\ni have a trivial function (code below) that tries to compile a c/c++ buffer as follows:\\n\\n ;;\\n ;; find major mode of a buffer. if no name is specified, this returns\\n ;; major mode of current buffer\\n ;;\\n (defun utils/buffer-major-mode (\\u0026optional buffer-or-name)\\n \\\"Returns the major mode associated with a buffer.\\n If buffer-or-name is nil return current buffer's mode.\\\"\\n (interactive)\\n (buffer-local-value 'major-mode\\n (if buffer-or-name (get-buffer buffer-or-name) (current-buffer))))\\n\\n ;; \\n ;; this function is called to quickly compile single-file c/c++\\n ;; programs.\\n ;;\\n ;; it produces final executable in 'obj' directory of the buffer, and\\n ;; christens it with 'file-name' sans file extension. thus a source\\n ;; file called '\\u003Csome-path\\u003E/foo.cpp' will produce an executable called\\n ;; '\\u003Csome-path\\u003E/obj/foo'\\n ;;\\n (defun cc-quick-compile ()\\n (interactive)\\n \\n ;;\\n ;; how we build c/c++ sources are almost fixed\\n ;; -fdiagnostics-color=never ==\\u003E no ansii colorized output\\n ;;\\n (defconst qc-cmd-prefix:c \\\"gcc -fdiagnostics-color=never -std=c99 -g -O2 -Wall -o obj/\\\")\\n (defconst qc-cmd-prefix:cpp \\\"g++ -fdiagnostics-color=never -std=c++11 -g -O2 -Wall -o obj/\\\")\\n \\n ;; first setup the appropriate compilation command based on buffer\\n ;; major-mode\\n (set (make-local-variable 'qc-cmd-prefix:cc)\\n (if (string= (utils/buffer-major-mode) \\\"c-mode\\\")\\n qc-cmd-prefix:c\\n qc-cmd-prefix:cpp))\\n \\n ;;\\n ;; now we can setup the qc-cc-cmd to produce a final executable as\\n ;; described above...\\n ;;\\n (set (make-local-variable 'qc-cmd-str)\\n (let ((file (file-name-nondirectory buffer-file-name)))\\n (concat qc-cmd-prefix:cc (file-name-sans-extension file) \\\" \\\" file)))\\n \\n (compile qc-cmd-str))\\n \\n ;;\\n ;; this is the top-level function to compile c/c++ sources.\\n ;;\\n ;; when the local variable 'compile-command' is set to default we\\n ;; create a quick-compile-command, and use that. however, when it is\\n ;; set to non-default value, we use that.\\n ;;\\n (defun cc-quick-or-custom-compile ()\\n (interactive)\\n \\n (if (string= \\\"make -k \\\" compile-command)\\n (progn\\n (cc-quick-compile)\\n (setq compile-command \\\"make -k \\\"))\\n (compile compile-command)))\\n\\nfinally, 'cc-quick-or-custom-compile' is bound as follows\\n \\n (global-set-key '[C-return] 'cc-quick-or-custom-compile)\\n\\nthe above thing works, but given my elisp na\\u00efvet\\u00e9, i am *sure* it can be made much better. \\n\\ni was wondering, if you would take some time, and help me improve the above functions. i *suspect* creating a Makefile with appropriate rules might play nicer with emacs, but am not too keen on that at the moment.\\n\\n--\\nthank you kindly !\", \"author_fullname\": \"t2_pb2x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"help with trivial emacs lisp function\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvucsw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559454959.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559483467.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehi all,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei have a trivial function (code below) that tries to compile a c/c++ buffer as follows:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;;\\n;; find major mode of a buffer. if no name is specified, this returns\\n;; major mode of current buffer\\n;;\\n(defun utils/buffer-major-mode (\\u0026amp;optional buffer-or-name)\\n \\u0026quot;Returns the major mode associated with a buffer.\\nIf buffer-or-name is nil return current buffer\\u0026#39;s mode.\\u0026quot;\\n (interactive)\\n (buffer-local-value \\u0026#39;major-mode\\n (if buffer-or-name (get-buffer buffer-or-name) (current-buffer))))\\n\\n;; \\n;; this function is called to quickly compile single-file c/c++\\n;; programs.\\n;;\\n;; it produces final executable in \\u0026#39;obj\\u0026#39; directory of the buffer, and\\n;; christens it with \\u0026#39;file-name\\u0026#39; sans file extension. thus a source\\n;; file called \\u0026#39;\\u0026lt;some-path\\u0026gt;/foo.cpp\\u0026#39; will produce an executable called\\n;; \\u0026#39;\\u0026lt;some-path\\u0026gt;/obj/foo\\u0026#39;\\n;;\\n(defun cc-quick-compile ()\\n (interactive)\\n\\n ;;\\n ;; how we build c/c++ sources are almost fixed\\n ;; -fdiagnostics-color=never ==\\u0026gt; no ansii colorized output\\n ;;\\n (defconst qc-cmd-prefix:c \\u0026quot;gcc -fdiagnostics-color=never -std=c99 -g -O2 -Wall -o obj/\\u0026quot;)\\n (defconst qc-cmd-prefix:cpp \\u0026quot;g++ -fdiagnostics-color=never -std=c++11 -g -O2 -Wall -o obj/\\u0026quot;)\\n\\n ;; first setup the appropriate compilation command based on buffer\\n ;; major-mode\\n (set (make-local-variable \\u0026#39;qc-cmd-prefix:cc)\\n (if (string= (utils/buffer-major-mode) \\u0026quot;c-mode\\u0026quot;)\\n qc-cmd-prefix:c\\n qc-cmd-prefix:cpp))\\n\\n ;;\\n ;; now we can setup the qc-cc-cmd to produce a final executable as\\n ;; described above...\\n ;;\\n (set (make-local-variable \\u0026#39;qc-cmd-str)\\n (let ((file (file-name-nondirectory buffer-file-name)))\\n (concat qc-cmd-prefix:cc (file-name-sans-extension file) \\u0026quot; \\u0026quot; file)))\\n\\n (compile qc-cmd-str))\\n\\n;;\\n;; this is the top-level function to compile c/c++ sources.\\n;;\\n;; when the local variable \\u0026#39;compile-command\\u0026#39; is set to default we\\n;; create a quick-compile-command, and use that. however, when it is\\n;; set to non-default value, we use that.\\n;;\\n(defun cc-quick-or-custom-compile ()\\n (interactive)\\n\\n (if (string= \\u0026quot;make -k \\u0026quot; compile-command)\\n (progn\\n (cc-quick-compile)\\n (setq compile-command \\u0026quot;make -k \\u0026quot;))\\n (compile compile-command)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Efinally, \\u0026#39;cc-quick-or-custom-compile\\u0026#39; is bound as follows\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(global-set-key \\u0026#39;[C-return] \\u0026#39;cc-quick-or-custom-compile)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ethe above thing works, but given my elisp na\\u00efvet\\u00e9, i am \\u003Cem\\u003Esure\\u003C/em\\u003E it can be made much better. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei was wondering, if you would take some time, and help me improve the above functions. i \\u003Cem\\u003Esuspect\\u003C/em\\u003E creating a Makefile with appropriate rules might play nicer with emacs, but am not too keen on that at the moment.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003Ethank you kindly !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvucsw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"daddyc00l\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559454667.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When running this without Org-Babel I don't have a problem, but, fwiw, I did just recently get my Python 3 paths working properly so there could be an issue somewhere in there.\\n\\n\\u0026#x200B;\\n\\nWithout further ado, here's the source file: [http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1\\\\_practice.py](http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py), and the linter: [http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112\\\\_s17\\\\_linter.py](http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py).\\n\\n\\u0026#x200B;\\n\\nWhat I did was wrap the entire wk1\\\\_practice.py in a `#+BEGIN_SRC python ... #+END_SRC` block, then when running C-c C-c (org-babel-execute-src-block) the following error appeared:\\n\\n`Traceback (most recent call last):`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 333, in \\u003Cmodule\\u003E`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 331, in main`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 327, in main`\\n\\n`File \\\"/Users/Joe/org/cs112_s17_linter.py\\\", line 215, in lint`\\n\\n`_Linter(code=code, filename=filename, bannedTokens=bannedTokens).lint()`\\n\\n`File \\\"/Users/Joe/org/cs112_s17_linter.py\\\", line 148, in lint`\\n\\n`with open(self.filename, 'rt') as f:`\\n\\n`FileNotFoundError: [Errno 2] No such file or directory: '\\u003Cstdin\\u003E'`\\n\\n\\u0026#x200B;\\n\\nBecause I can run wk1\\\\_practice.py error free in run-python, and the bash shell outside of Emacs, I think it's Org-Babel that I'm misusing and that it has to do with the call to the linter. It's probably worth mentioning that Org-Babel seemingly works fine and as expected as long as I don't make this call to the linter.\\n\\n\\u0026#x200B;\\n\\n(sorry if it's a dumb question or appears ill researched, I spent about 1.5 hours trying to figure this out with various queries and expirements, but turned up no leads).\", \"author_fullname\": \"t2_3th1enuk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help Deciphering Error w/ Org-Babel, Python and a Linter\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvsj5o\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559470017.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen running this without Org-Babel I don\\u0026#39;t have a problem, but, fwiw, I did just recently get my Python 3 paths working properly so there could be an issue somewhere in there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithout further ado, here\\u0026#39;s the source file: \\u003Ca href=\\\"http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py\\\"\\u003Ehttp://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py\\u003C/a\\u003E, and the linter: \\u003Ca href=\\\"http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py\\\"\\u003Ehttp://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat I did was wrap the entire wk1_practice.py in a \\u003Ccode\\u003E#+BEGIN_SRC python ... #+END_SRC\\u003C/code\\u003E block, then when running C-c C-c (org-babel-execute-src-block) the following error appeared:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003ETraceback (most recent call last):\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 333, in \\u0026lt;module\\u0026gt;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 331, in main\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 327, in main\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;/Users/Joe/org/cs112_s17_linter.py\\u0026quot;, line 215, in lint\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E_Linter(code=code, filename=filename, bannedTokens=bannedTokens).lint()\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;/Users/Joe/org/cs112_s17_linter.py\\u0026quot;, line 148, in lint\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ewith open(self.filename, \\u0026#39;rt\\u0026#39;) as f:\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFileNotFoundError: [Errno 2] No such file or directory: \\u0026#39;\\u0026lt;stdin\\u0026gt;\\u0026#39;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause I can run wk1_practice.py error free in run-python, and the bash shell outside of Emacs, I think it\\u0026#39;s Org-Babel that I\\u0026#39;m misusing and that it has to do with the call to the linter. It\\u0026#39;s probably worth mentioning that Org-Babel seemingly works fine and as expected as long as I don\\u0026#39;t make this call to the linter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(sorry if it\\u0026#39;s a dumb question or appears ill researched, I spent about 1.5 hours trying to figure this out with various queries and expirements, but turned up no leads).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvsj5o\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"impendingLawsuit\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvsj5o/help_deciphering_error_w_orgbabel_python_and_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvsj5o/help_deciphering_error_w_orgbabel_python_and_a/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559441217.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Running a fresh Emacs session with `emacs -Q`, I evaluated the following:\\n\\n (setq org-agenda-files '(\\\"~/index.org\\\"))\\n (setq org-enforce-todo-dependencies t)\\n (setq org-agenda-dim-blocked-tasks 'invisible)\\n\\nwhere `~/index.org` simply contains:\\n\\n * Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO First subheading\\n ** TODO Second subheading\\n\\nWhen I call `(org-agenda nil \\\"t\\\")` to display the available TODOs, it correctly displays only \\\"First subheading.\\\" However, if I then export that buffer with `org-agenda-write`, then the resulting file contains both \\\"First subheading\\\" and \\\"Second subheading.\\\"\\n\\nWhat is going on here, and can it be fixed?\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvs6jo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559467712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERunning a fresh Emacs session with \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E, I evaluated the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files \\u0026#39;(\\u0026quot;~/index.org\\u0026quot;))\\n(setq org-enforce-todo-dependencies t)\\n(setq org-agenda-dim-blocked-tasks \\u0026#39;invisible)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E~/index.org\\u003C/code\\u003E simply contains:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO First subheading\\n** TODO Second subheading\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I call \\u003Ccode\\u003E(org-agenda nil \\u0026quot;t\\u0026quot;)\\u003C/code\\u003E to display the available TODOs, it correctly displays only \\u0026quot;First subheading.\\u0026quot; However, if I then export that buffer with \\u003Ccode\\u003Eorg-agenda-write\\u003C/code\\u003E, then the resulting file contains both \\u0026quot;First subheading\\u0026quot; and \\u0026quot;Second subheading.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is going on here, and can it be fixed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvs6jo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559438912.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have always wanted to use Emacs on my iPad without jailbreaking it. After almost giving up I stumbled onto a fairly new developer app called iSH - a Linux shell that runs a small version of Alpine Linux on an iOS device (iPad or iPhone) using an x86 emulator. Now, that in and of itself is really nice and opens up all kinds of new ways to use an iOS device. The icing on the cake, though, is that Emacs can then be installed from the command line using the Alpine Linux package manager, \\\"apk\\\".\\n\\niSH can't be found on the App Store, but fear not - it can be run using a developer tool called TestFlight, which *is* in the App Store. There's also a way to side load iSH directly onto an iOS device without TestFlight if you have access to a Mac with Xcode. \\n\\nInstalling iSH shell and Emacs using TestFlight:\\n\\n1. Install TestFlight from the [https://itunes.apple.com/us/app/testflight/id899247664?mt=8](https://itunes.apple.com/us/app/testflight/id899247664?mt=8) App Store.\\n2. Open a web browser on the iOS device and click here [https://testflight.apple.com/join/97i7KM8O](https://testflight.apple.com/join/97i7KM8O) to review/accept the terms and start testing iSH using TestFlight.\\n3. Click \\\"Install\\\" to install the iSH Shell application onto the iOS device.\\n4. You will now have the iSH app on your iOS device. Open this app to run the Alpine Linux shell. This command line environment has the normal complement of Linux commands (ls, cd, mkdir, touch, cat, etc.). iSH even has a dark mode. If you haven't already done so, pair up a real keyboard to your device and hold onto your socks for what's next.\\n5. Install Emacs with apk by simply entering the command \\\"apk add emacs\\\" in iSH. After emacs installs, you can then enter the command \\\"emacs\\\" from the command line to run emacs.\", \"author_fullname\": \"t2_4rrrx65\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs on an iPad without jailbreaking it - It can be done!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvrmsf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559464162.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have always wanted to use Emacs on my iPad without jailbreaking it. After almost giving up I stumbled onto a fairly new developer app called iSH - a Linux shell that runs a small version of Alpine Linux on an iOS device (iPad or iPhone) using an x86 emulator. Now, that in and of itself is really nice and opens up all kinds of new ways to use an iOS device. The icing on the cake, though, is that Emacs can then be installed from the command line using the Alpine Linux package manager, \\u0026quot;apk\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EiSH can\\u0026#39;t be found on the App Store, but fear not - it can be run using a developer tool called TestFlight, which \\u003Cem\\u003Eis\\u003C/em\\u003E in the App Store. There\\u0026#39;s also a way to side load iSH directly onto an iOS device without TestFlight if you have access to a Mac with Xcode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstalling iSH shell and Emacs using TestFlight:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EInstall TestFlight from the \\u003Ca href=\\\"https://itunes.apple.com/us/app/testflight/id899247664?mt=8\\\"\\u003Ehttps://itunes.apple.com/us/app/testflight/id899247664?mt=8\\u003C/a\\u003E App Store.\\u003C/li\\u003E\\n\\u003Cli\\u003EOpen a web browser on the iOS device and click here \\u003Ca href=\\\"https://testflight.apple.com/join/97i7KM8O\\\"\\u003Ehttps://testflight.apple.com/join/97i7KM8O\\u003C/a\\u003E to review/accept the terms and start testing iSH using TestFlight.\\u003C/li\\u003E\\n\\u003Cli\\u003EClick \\u0026quot;Install\\u0026quot; to install the iSH Shell application onto the iOS device.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou will now have the iSH app on your iOS device. Open this app to run the Alpine Linux shell. This command line environment has the normal complement of Linux commands (ls, cd, mkdir, touch, cat, etc.). iSH even has a dark mode. If you haven\\u0026#39;t already done so, pair up a real keyboard to your device and hold onto your socks for what\\u0026#39;s next.\\u003C/li\\u003E\\n\\u003Cli\\u003EInstall Emacs with apk by simply entering the command \\u0026quot;apk add emacs\\u0026quot; in iSH. After emacs installs, you can then enter the command \\u0026quot;emacs\\u0026quot; from the command line to run emacs.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvrmsf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Chilasta\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvrmsf/emacs_on_an_ipad_without_jailbreaking_it_it_can/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvrmsf/emacs_on_an_ipad_without_jailbreaking_it_it_can/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559435362.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi everyone!\\n\\n\\u0026#x200B;\\n\\nInspired by the great Juan Pedro Fisanotti and his wonderful [fisa-vim-config](https://github.com/fisadev/fisa-vim-config), I share my [Emacs](https://www.gnu.org/software/emacs/) config. This is my personal Emacs configuration, built according to my personal preferences, without any justification to think it's the best possible emacs configuration.\\n\\n\\u0026#x200B;\\n\\n[https://github.com/Abuelodelanada/pepe-emacs-config](https://github.com/Abuelodelanada/pepe-emacs-config)\\n\\n\\u0026#x200B;\\n\\nIt's mainly oriented to PHP software development, but many of its features are useful for other languages and editing tasks.\\n\\n\\u0026#x200B;\\n\\nHope you like it!\\n\\n\\u0026#x200B;\\n\\nJose\", \"author_fullname\": \"t2_1v9z01ve\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Pepe Emacs config\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvrbyc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559462253.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInspired by the great Juan Pedro Fisanotti and his wonderful \\u003Ca href=\\\"https://github.com/fisadev/fisa-vim-config\\\"\\u003Efisa-vim-config\\u003C/a\\u003E, I share my \\u003Ca href=\\\"https://www.gnu.org/software/emacs/\\\"\\u003EEmacs\\u003C/a\\u003E config. This is my personal Emacs configuration, built according to my personal preferences, without any justification to think it\\u0026#39;s the best possible emacs configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/Abuelodelanada/pepe-emacs-config\\\"\\u003Ehttps://github.com/Abuelodelanada/pepe-emacs-config\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s mainly oriented to PHP software development, but many of its features are useful for other languages and editing tasks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHope you like it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJose\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvrbyc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Abuelodelanada\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvrbyc/the_pepe_emacs_config/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvrbyc/the_pepe_emacs_config/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559433453.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_5i6ym4s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using CLI Commands in Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvqsb5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 36, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 36, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559458913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"hackeryarn.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvqsb5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hackeryarn\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvqsb5/using_cli_commands_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://hackeryarn.com/post/cli-in-emacs/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559430113.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I can connect to [nethack.alt.org](https://nethack.alt.org) using putty and it has colors and everything lines up just right. Is there a way for me to use emacs instead? I did \\\"M-x telnet\\\" and it didn't show the colors and the formatting is all messed up. Kinda looks like it's missing CR/LFs.\\n\\n\\u0026#x200B;\\n\\nAs you can tell, I'm not well versed in this area.\", \"author_fullname\": \"t2_d79ff\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using Emacs for Nethack?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvmkvw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559435126.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can connect to \\u003Ca href=\\\"https://nethack.alt.org\\\"\\u003Enethack.alt.org\\u003C/a\\u003E using putty and it has colors and everything lines up just right. Is there a way for me to use emacs instead? I did \\u0026quot;M-x telnet\\u0026quot; and it didn\\u0026#39;t show the colors and the formatting is all messed up. Kinda looks like it\\u0026#39;s missing CR/LFs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs you can tell, I\\u0026#39;m not well versed in this area.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvmkvw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AlchemicRez\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvmkvw/using_emacs_for_nethack/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvmkvw/using_emacs_for_nethack/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559406326.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Does anyone knows of an Emacs package that shows your minibuffer as a floating window/frame in the middle of the screen, like on this video: [https://www.youtube.com/watch?v=GxMAPW9\\\\_LsA\\u0026t=2m30s](https://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026t=2m30s)?\\n\\nThe closest I've found is this StackExchange answer: [https://emacs.stackexchange.com/a/1078/23627](https://emacs.stackexchange.com/a/1078/23627). These are his dotfiles ([https://bitbucket.org/seanfarley/dotfiles](https://bitbucket.org/seanfarley/dotfiles)) but I'm pretty new at Emacs so I couldn't find anything.\\n\\nhttps://i.redd.it/dhvj5jtm6r131.png\", \"author_fullname\": \"t2_5t856\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs package to show the minibuffer in the middle of the screen\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"dhvj5jtm6r131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 768, \"x\": 1366, \"u\": \"https://i.redd.it/dhvj5jtm6r131.png\"}, \"m\": \"image/png\", \"id\": \"dhvj5jtm6r131\"}}, \"name\": \"t3_bvl94b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"2019-02-27: Emacs as a Python IDE - Sean Farley\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Emacs SF\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/GxMAPW9_LsA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCFk8kgNu_bqsRZewxMGqkzQ\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bvl94b\", \"height\": 338}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559427415.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone knows of an Emacs package that shows your minibuffer as a floating window/frame in the middle of the screen, like on this video: \\u003Ca href=\\\"https://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026amp;t=2m30s\\\"\\u003Ehttps://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026amp;t=2m30s\\u003C/a\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe closest I\\u0026#39;ve found is this StackExchange answer: \\u003Ca href=\\\"https://emacs.stackexchange.com/a/1078/23627\\\"\\u003Ehttps://emacs.stackexchange.com/a/1078/23627\\u003C/a\\u003E. These are his dotfiles (\\u003Ca href=\\\"https://bitbucket.org/seanfarley/dotfiles\\\"\\u003Ehttps://bitbucket.org/seanfarley/dotfiles\\u003C/a\\u003E) but I\\u0026#39;m pretty new at Emacs so I couldn\\u0026#39;t find anything.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/dhvj5jtm6r131.png\\\"\\u003Ehttps://i.redd.it/dhvj5jtm6r131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvl94b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"humpum\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvl94b/emacs_package_to_show_the_minibuffer_in_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvl94b/emacs_package_to_show_the_minibuffer_in_the/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559398615.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"2019-02-27: Emacs as a Python IDE - Sean Farley\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Emacs SF\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/GxMAPW9_LsA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCFk8kgNu_bqsRZewxMGqkzQ\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How to remove emacs's bottom window and have only editor always?\\n\\nOur Linux team setup emacs as the only editor now, and the useless bottom window blocks the half of my screen. \\n\\nI liked using gedit before, but now must work with emacs.\\n\\nI tried to decrease the size of the bottom window to the minimum, but as soon as I close the document, this setting is lost and the new document in emacs is opened with the same useless bottom window which blocks half of the screen.\", \"author_fullname\": \"t2_3vd5ee30\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to remove emacs's bottom window and have only editor always?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvkd1a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559421425.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow to remove emacs\\u0026#39;s bottom window and have only editor always?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur Linux team setup emacs as the only editor now, and the useless bottom window blocks the half of my screen. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI liked using gedit before, but now must work with emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to decrease the size of the bottom window to the minimum, but as soon as I close the document, this setting is lost and the new document in emacs is opened with the same useless bottom window which blocks half of the screen.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvkd1a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OVM2712\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvkd1a/how_to_remove_emacss_bottom_window_and_have_only/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvkd1a/how_to_remove_emacss_bottom_window_and_have_only/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559392625.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've noticed a peculiar behavior when using auto-fill-mode editing Python code. For example if I start typing the following (fill-column is set to 79),\\n\\n def some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2='foobar'):\\n \\\"\\\"\\\"\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\\n\\nand press Enter, it will look like this:\\n\\n def some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2='foobar'):\\n \\\"\\\"\\\"\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod\\n tempor incididunt ut labore et dolore magna aliqua.\\nIf the keyword arguments are all in one line, the docstring continues to be indented with 4 spaces as expected, but whenever it is extended across multiple lines, any line of the docstring after the first will match the indentation of the second line of the list of keyword arguments. Is there a good reason for this, or is this just a bug in auto-fill-mode?\", \"author_fullname\": \"t2_ch6my\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Python Documentation String Indentation In Auto-Fill Mode (Emacs 26.2)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvjzem\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559418423.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve noticed a peculiar behavior when using auto-fill-mode editing Python code. For example if I start typing the following (fill-column is set to 79),\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edef some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2=\\u0026#39;foobar\\u0026#39;):\\n \\u0026quot;\\u0026quot;\\u0026quot;\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eand press Enter, it will look like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edef some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2=\\u0026#39;foobar\\u0026#39;):\\n \\u0026quot;\\u0026quot;\\u0026quot;\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod\\n tempor incididunt ut labore et dolore magna aliqua.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf the keyword arguments are all in one line, the docstring continues to be indented with 4 spaces as expected, but whenever it is extended across multiple lines, any line of the docstring after the first will match the indentation of the second line of the list of keyword arguments. Is there a good reason for this, or is this just a bug in auto-fill-mode?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvjzem\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hexidon\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvjzem/python_documentation_string_indentation_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvjzem/python_documentation_string_indentation_in/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559389623.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello, I really like Emacs approach to text editing compared to vi, vim or joe (I love joe though, he's a trooper, but I like Emacs keybindings and logic). However Emacs is a little heavy and has many, many features that I will never use. Any tips on compiling it to bare-bones lite? Or is there an Emacs-lite fork out there? I'm currently using a custom compiled version called emacs-nox (no x11) on FreeBSD 12-stable. (I tried the nox flavor, and also removed gtk support and sound/image features, but it still renders a basic X widget. So I'm forced to alias emacs=\\\"emacs -nw\\\")\", \"author_fullname\": \"t2_3d6u59wh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New to emacs, couple of stupid questions.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvibhq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559403055.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I really like Emacs approach to text editing compared to vi, vim or joe (I love joe though, he\\u0026#39;s a trooper, but I like Emacs keybindings and logic). However Emacs is a little heavy and has many, many features that I will never use. Any tips on compiling it to bare-bones lite? Or is there an Emacs-lite fork out there? I\\u0026#39;m currently using a custom compiled version called emacs-nox (no x11) on FreeBSD 12-stable. (I tried the nox flavor, and also removed gtk support and sound/image features, but it still renders a basic X widget. So I\\u0026#39;m forced to alias emacs=\\u0026quot;emacs -nw\\u0026quot;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvibhq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cshurtsmybrain\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvibhq/new_to_emacs_couple_of_stupid_questions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvibhq/new_to_emacs_couple_of_stupid_questions/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559374255.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"This is my current ediff clause.\\n\\n (use-package ediff\\n :ensure nil\\n :commands (magit-status projectile-vc)\\n :config\\n (progn\\n (setq ediff-diff-options \\\"-w\\\"\\n ediff-split-window-function 'split-window-horizontally\\n ediff-window-setup-function 'ediff-setup-windows-plain)\\n ))\\n \\nI want to make it quit without prompting for yes or no when the `q` key is pressed using this [snippet from stackoverflow](https://emacs.stackexchange.com/questions/9322/how-can-i-quit-ediff-immediately-without-having-to-type-y/24602#24602):\\n\\n (defun disable-y-or-n-p (orig-fun \\u0026rest args)\\n (cl-letf (((symbol-function 'y-or-n-p) (lambda (prompt) t)))\\n (apply orig-fun args)))\\n \\n (advice-add 'ediff-quit :around #'disable-y-or-n-p)\\n\\nSince the `disable-y-or-n-p` function can be used elsewhere only the advice has to be add to the ediff clause. Does it have to go into a `:config` or an `:init` section?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is good way to make this change in use-package?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvi8yt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559402399.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is my current ediff clause.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package ediff\\n :ensure nil\\n :commands (magit-status projectile-vc)\\n :config\\n (progn\\n (setq ediff-diff-options \\u0026quot;-w\\u0026quot;\\n ediff-split-window-function \\u0026#39;split-window-horizontally\\n ediff-window-setup-function \\u0026#39;ediff-setup-windows-plain)\\n ))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI want to make it quit without prompting for yes or no when the \\u003Ccode\\u003Eq\\u003C/code\\u003E key is pressed using this \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/9322/how-can-i-quit-ediff-immediately-without-having-to-type-y/24602#24602\\\"\\u003Esnippet from stackoverflow\\u003C/a\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun disable-y-or-n-p (orig-fun \\u0026amp;rest args)\\n (cl-letf (((symbol-function \\u0026#39;y-or-n-p) (lambda (prompt) t)))\\n (apply orig-fun args)))\\n\\n(advice-add \\u0026#39;ediff-quit :around #\\u0026#39;disable-y-or-n-p)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESince the \\u003Ccode\\u003Edisable-y-or-n-p\\u003C/code\\u003E function can be used elsewhere only the advice has to be add to the ediff clause. Does it have to go into a \\u003Ccode\\u003E:config\\u003C/code\\u003E or an \\u003Ccode\\u003E:init\\u003C/code\\u003E section?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvi8yt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvi8yt/what_is_good_way_to_make_this_change_in_usepackage/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvi8yt/what_is_good_way_to_make_this_change_in_usepackage/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559373599.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want to write my first emacs function that depends on searching through the buffer and need some help examples and source code to begin.\\n\\nMy goal is to change the control `C-c C-z` key to log a note to the drawer containing the cursor, or the default LOGBOOK if it is not in a drawer.\\n\\nThis means:\\n\\n1. starting on the current line, scan backwards for a line starting with the drawer syntax ie `\\\\s*:[a-zA-Z][a-zA-Z0-9_]*:` which is not `:END:` for a set number of characters or discover the cursor is not in a drawer by arriving at a line which starts with a headline character `^\\\\*`. If you get to a header line, then the cursor is not in a drawer, so return the cursor to the starting point and run `org-add-note` as normal, most likely into the default LOGBOOK.\\n\\n2. If you find a drawer header, read the current value of `org-log-into-drawer` into a temporary variable. Set `org-log-into-drawer` to the drawer name you found and execute `org-add-log-note`, then revert `org-log-into-drawer` to its previous value.\\n\\nCan anyone provide me with a script that does it and documentation and examples with more knowledge on the process?\\n\\nPS. What is the conceptual difference between `org-add-note` and `org-add-log-note`?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I need some help sources and examples to buffer navigation for emacs script?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bve79d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559372890.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to write my first emacs function that depends on searching through the buffer and need some help examples and source code to begin.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy goal is to change the control \\u003Ccode\\u003EC-c C-z\\u003C/code\\u003E key to log a note to the drawer containing the cursor, or the default LOGBOOK if it is not in a drawer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis means:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Estarting on the current line, scan backwards for a line starting with the drawer syntax ie \\u003Ccode\\u003E\\\\s*:[a-zA-Z][a-zA-Z0-9_]*:\\u003C/code\\u003E which is not \\u003Ccode\\u003E:END:\\u003C/code\\u003E for a set number of characters or discover the cursor is not in a drawer by arriving at a line which starts with a headline character \\u003Ccode\\u003E^\\\\*\\u003C/code\\u003E. If you get to a header line, then the cursor is not in a drawer, so return the cursor to the starting point and run \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E as normal, most likely into the default LOGBOOK.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIf you find a drawer header, read the current value of \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E into a temporary variable. Set \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to the drawer name you found and execute \\u003Ccode\\u003Eorg-add-log-note\\u003C/code\\u003E, then revert \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to its previous value.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ECan anyone provide me with a script that does it and documentation and examples with more knowledge on the process?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS. What is the conceptual difference between \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-add-log-note\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bve79d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bve79d/i_need_some_help_sources_and_examples_to_buffer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bve79d/i_need_some_help_sources_and_examples_to_buffer/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559344090.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I like emacs in the terminal, but how do I get rid of that bottom bar? The grey one. [https://ibin.co/4j1egykIYYYk.png](https://ibin.co/4j1egykIYYYk.png)\\n\\nI thought it was the \\\"toolbar\\\", but `(tool-bar-mode -1)` is not working. Thanks in advance!\", \"author_fullname\": \"t2_3d6u59wh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \".emacs question\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvci93\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559363370.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like emacs in the terminal, but how do I get rid of that bottom bar? The grey one. \\u003Ca href=\\\"https://ibin.co/4j1egykIYYYk.png\\\"\\u003Ehttps://ibin.co/4j1egykIYYYk.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought it was the \\u0026quot;toolbar\\u0026quot;, but \\u003Ccode\\u003E(tool-bar-mode -1)\\u003C/code\\u003E is not working. Thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvci93\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cshurtsmybrain\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvci93/emacs_question/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvci93/emacs_question/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559334570.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"For example, Craigslist only sends the 25 most recent links in the rss export, so if I wake up in the morning after 10 hours of not refreshing my feed, I will see only the 25 most recent links for a given query, and miss a lot of stuff. It would also be nice to not feel pressured to refresh my feed every hour just so I don't miss something. FWIW, the only query I'm really having this problem with is the Craigslist \\\"free\\\" section. \\n\\n\\u0026#x200B;\\n\\nI'm sure this isn't specific to Elfeed, but I'm relatively new to RSS/Atom as well. I would like my feed to always refresh sufficiently so I don't have to worry about links escaping my view. I did look into \\\\`run-with-timer\\\\` but that feels dirty compared to built-in Elfeed feature I may be missing. Thansk for reading!\", \"author_fullname\": \"t2_3th1enuk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a simple way to get Elfeed to update / refresh it's feed every x minutes?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvbp92\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559359140.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor example, Craigslist only sends the 25 most recent links in the rss export, so if I wake up in the morning after 10 hours of not refreshing my feed, I will see only the 25 most recent links for a given query, and miss a lot of stuff. It would also be nice to not feel pressured to refresh my feed every hour just so I don\\u0026#39;t miss something. FWIW, the only query I\\u0026#39;m really having this problem with is the Craigslist \\u0026quot;free\\u0026quot; section. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sure this isn\\u0026#39;t specific to Elfeed, but I\\u0026#39;m relatively new to RSS/Atom as well. I would like my feed to always refresh sufficiently so I don\\u0026#39;t have to worry about links escaping my view. I did look into `run-with-timer` but that feels dirty compared to built-in Elfeed feature I may be missing. Thansk for reading!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvbp92\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"impendingLawsuit\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvbp92/is_there_a_simple_way_to_get_elfeed_to_update/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvbp92/is_there_a_simple_way_to_get_elfeed_to_update/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559330340.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying out an org init file. Got the idea from [here](https://cestlaz.github.io/posts/using-emacs-10-org-init/). It works perfectly on Ubuntu but for some reason, it won't work on mac. I think the issue might be with org-babel. It parses the majority of my packages but not all of them, in particular, the first 2 and my interface tweaks. Heres my files [github link](https://github.com/girvain/.emacs.d/tree/orgModeInit).\\n\\nAnyone else had a similar issue?\", \"author_fullname\": \"t2_lkmww7c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org init files won't parse on mac\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvb6ep\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559356424.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying out an org init file. Got the idea from \\u003Ca href=\\\"https://cestlaz.github.io/posts/using-emacs-10-org-init/\\\"\\u003Ehere\\u003C/a\\u003E. It works perfectly on Ubuntu but for some reason, it won\\u0026#39;t work on mac. I think the issue might be with org-babel. It parses the majority of my packages but not all of them, in particular, the first 2 and my interface tweaks. Heres my files \\u003Ca href=\\\"https://github.com/girvain/.emacs.d/tree/orgModeInit\\\"\\u003Egithub link\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone else had a similar issue?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvb6ep\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"girvain\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvb6ep/org_init_files_wont_parse_on_mac/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvb6ep/org_init_files_wont_parse_on_mac/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559327624.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a command to choose the drawer `org-add-note` saves the text in?\\n\\nI was thinking that with the cursor in a particular drawer `org-add-note` would enter the text into that drawer, but it always goes into the `LOGBOOK` drawer.\\n\\nFrom the documentation the logical thing to do would be to check the location of the cursor and if it is in drawer, change the `org-log-into-drawer` variable, add the note then revert `org-log-into-drawer` to what it was before, but that seems to be rather long-winded, or is it the only valid alternative?\\n\\nIs there builtin function for checking the current drawer?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to add a note to a specific drawer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvay1h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559355236.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a command to choose the drawer \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E saves the text in?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was thinking that with the cursor in a particular drawer \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E would enter the text into that drawer, but it always goes into the \\u003Ccode\\u003ELOGBOOK\\u003C/code\\u003E drawer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the documentation the logical thing to do would be to check the location of the cursor and if it is in drawer, change the \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E variable, add the note then revert \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to what it was before, but that seems to be rather long-winded, or is it the only valid alternative?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there builtin function for checking the current drawer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvay1h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvay1h/how_to_add_a_note_to_a_specific_drawer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvay1h/how_to_add_a_note_to_a_specific_drawer/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559326436.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I wonder if anyone using emacs on Windows notices a slight text flicker when scrolling up and down buffers or resizing the program. I experience this even when launching under \\\"emacs -Q\\\" and now that I've noticed it a couple times I can't unsee it.\\n\\nMainly want to know if there are any workarounds for this or plans to fix it in the future.\", \"author_fullname\": \"t2_1sukobfg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"text flicker on windows (emacs 26.2)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv9jgk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559348196.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI wonder if anyone using emacs on Windows notices a slight text flicker when scrolling up and down buffers or resizing the program. I experience this even when launching under \\u0026quot;emacs -Q\\u0026quot; and now that I\\u0026#39;ve noticed it a couple times I can\\u0026#39;t unsee it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMainly want to know if there are any workarounds for this or plans to fix it in the future.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv9jgk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DesperateSell\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv9jgk/text_flicker_on_windows_emacs_262/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv9jgk/text_flicker_on_windows_emacs_262/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559319396.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nFor all the awesomeness of org-mode in general, and its export engines in particular : I cannot make a particular thing work quite well. When an org file is exported, say, to HTML with a huge majority of the available CSS'es that I could find. Export to text is even worse. E.g. org file :\\n\\n\\u0026#x200B;\\n\\n\\u003E\\\\* Introduction \\n\\u003E \\n\\u003E\\\\* Features \\n\\u003E \\n\\u003E\\\\*\\\\* Cars \\n\\u003E \\n\\u003E\\\\*\\\\* Trucks \\n\\u003E \\n\\u003E... \\n\\u003E \\n\\u003E\\\\* Problems\\n\\n\\u0026#x200B;\\n\\nThis gets exported to something like :\\n\\n\\u003E1 Introduction \\n\\u003E \\n\\u003E2 Features \\n\\u003E \\n\\u003E2.1 Cars \\n\\u003E \\n\\u003E2.2 Trucks \\n\\u003E \\n\\u003E... \\n\\u003E \\n\\u003E3 Problems\\n\\n\\u0026#x200B;\\n\\nWithout anything to distinguish between \\\"1\\\" and \\\"Introduction\\\". Or \\\"2\\\" and \\\"Features\\\". Everyone who is not used to org mode exporting asks me that you have only 2 features and 3 problems ? BTW the Features section can be many pages long.\\n\\n\\u0026#x200B;\\n\\nI tried the CSSes from :\\n\\n1. [https://www.reddit.com/r/emacs/comments/3pvbag/is\\\\_there\\\\_a\\\\_collection\\\\_of\\\\_css\\\\_styles\\\\_for\\\\_org/](https://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/)\\n2. [https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html](https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html)\\n3. [http://diobla.info/doc/rtags](http://diobla.info/doc/rtags) : this has a different background for section numbers, but in simple renderers like email , the different background doesn't have any effect.\\n\\n\\u0026#x200B;\\n\\nSo my question : a simple \\\".\\\" , or \\\")\\\" between section numbering is extremely standard, and most people can make out the difference. How can I add such a separator ? It is also practically standard in HTML numbering that triple click on the line selects the whole content except the section number - which is also violated in all HTML CSSes that I could find.\\n\\n\\u0026#x200B;\\n\\nAnother question stemming from my frustration is also that how is everyone else living with this? The fact that table of contents in text and HTML export include a \\\".\\\" between section number and content means people in org also know this. But somehow this is ignored in the main content ?\", \"author_fullname\": \"t2_1zt5mges\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org mode export section numbering\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv8rli\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559344538.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor all the awesomeness of org-mode in general, and its export engines in particular : I cannot make a particular thing work quite well. When an org file is exported, say, to HTML with a huge majority of the available CSS\\u0026#39;es that I could find. Export to text is even worse. E.g. org file :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E* Introduction \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Features \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** Cars \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** Trucks \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Problems\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis gets exported to something like :\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E1 Introduction \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2 Features \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2.1 Cars \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2.2 Trucks \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E3 Problems\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithout anything to distinguish between \\u0026quot;1\\u0026quot; and \\u0026quot;Introduction\\u0026quot;. Or \\u0026quot;2\\u0026quot; and \\u0026quot;Features\\u0026quot;. Everyone who is not used to org mode exporting asks me that you have only 2 features and 3 problems ? BTW the Features section can be many pages long.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried the CSSes from :\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/\\\"\\u003Ehttps://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html\\\"\\u003Ehttps://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://diobla.info/doc/rtags\\\"\\u003Ehttp://diobla.info/doc/rtags\\u003C/a\\u003E : this has a different background for section numbers, but in simple renderers like email , the different background doesn\\u0026#39;t have any effect.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo my question : a simple \\u0026quot;.\\u0026quot; , or \\u0026quot;)\\u0026quot; between section numbering is extremely standard, and most people can make out the difference. How can I add such a separator ? It is also practically standard in HTML numbering that triple click on the line selects the whole content except the section number - which is also violated in all HTML CSSes that I could find.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother question stemming from my frustration is also that how is everyone else living with this? The fact that table of contents in text and HTML export include a \\u0026quot;.\\u0026quot; between section number and content means people in org also know this. But somehow this is ignored in the main content ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv8rli\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KrishnaKrGopal\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv8rli/org_mode_export_section_numbering/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv8rli/org_mode_export_section_numbering/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559315738.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I tried using ob-prolog, but it seems outdated and not working :'(\\n\\n\\u0026#x200B;\\n\\nLuckily with a bit of Lisp, I made a quick hack for quickly executing Prolog queries from the current buffer. I share it here in the hopes of attracting others to try Prolog with Emacs. \\n\\n ;; Don't judge me too harshly, this was quick and dirty; e.g., not enough `let`s!\\n \\n (local-set-key (kbd \\\"\\u003Cf6\\u003E\\\") (lambda () (interactive)\\n \\\"\\n org-babel-tangle the whole file, then execute the final query\\n in the current SRC block.\\n \\n If the query mentions the variable \\u2018X\\u2019, then show all possible solutions\\n followed by \\u2018false\\u2019. Usually one presses \\u2018;\\u2019 to see other solutions,\\n but in Emacs this only shows one futher solution then terminates.\\n We get around this by executing essentially\\n \\u201cforall(your-query-with-X, writeln(X)).\\u201d\\n This prints all solutions X to your query.\\n \\n If you want to use a variable but don't want to see all solutions,\\n then avoid using \\u2018X\\u2019; e.g., use \\u2018Y\\u2019 ^_^.\\n \\\"\\n (-let [kill-buffer-query-functions nil]\\n (ignore-errors\\n (switch-to-buffer \\\"*Prolog*\\\")\\n (kill-buffer \\\"*Prolog*\\\"))\\n \\n ;; Get final query in current source block\\n (search-forward \\\"#+END_SRC\\\")\\n (search-backward \\\"% ?-\\\")\\n ;; Copy line, without killing it.\\n (setq xx (thing-at-point 'line t))\\n \\n (async-shell-command (format \\\"swipl -s %s\\\" (car (org-babel-tangle))) \\\"*Prolog*\\\")\\n (other-window 1)\\n \\n ;; Paste the final query\\n (setq xx (s-chop-prefix \\\"% ?- \\\" xx))\\n (when (s-contains? \\\"X\\\" xx)\\n (setq xx (concat \\\"writeln(\\\\\\\"X =\\\\\\\"), forall(\\\" (s-replace \\\".\\\" \\\", writeln(X)).\\\" xx))))\\n \\n (insert xx)\\n (comint-send-input nil t) ;; Send it, i.e., \\u201cpress enter at prompt\\u201d.\\n \\n ;; Insert query again, but do not send, in case user wishes to change it.\\n (insert xx)\\n (previous-line) (end-of-line)\\n \\n )))\\n\\n\\u0026#x200B;\\n\\nThe [source repo](https://github.com/alhassy/PrologCheatSheet) also contains a Prolog Cheat Sheet that insipired this setup (\\u2022\\u0300\\u1d17\\u2022\\u0301)\\u0648\", \"author_fullname\": \"t2_1pko65xw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\u201cInteractive\\u201d Prolog Setup\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5hq7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559324539.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI tried using ob-prolog, but it seems outdated and not working :\\u0026#39;(\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuckily with a bit of Lisp, I made a quick hack for quickly executing Prolog queries from the current buffer. I share it here in the hopes of attracting others to try Prolog with Emacs. \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Don\\u0026#39;t judge me too harshly, this was quick and dirty; e.g., not enough `let`s!\\n\\n(local-set-key (kbd \\u0026quot;\\u0026lt;f6\\u0026gt;\\u0026quot;) (lambda () (interactive)\\n \\u0026quot;\\norg-babel-tangle the whole file, then execute the final query\\nin the current SRC block.\\n\\nIf the query mentions the variable \\u2018X\\u2019, then show all possible solutions\\nfollowed by \\u2018false\\u2019. Usually one presses \\u2018;\\u2019 to see other solutions,\\nbut in Emacs this only shows one futher solution then terminates.\\nWe get around this by executing essentially\\n\\u201cforall(your-query-with-X, writeln(X)).\\u201d\\nThis prints all solutions X to your query.\\n\\nIf you want to use a variable but don\\u0026#39;t want to see all solutions,\\nthen avoid using \\u2018X\\u2019; e.g., use \\u2018Y\\u2019 ^_^.\\n \\u0026quot;\\n (-let [kill-buffer-query-functions nil]\\n (ignore-errors\\n (switch-to-buffer \\u0026quot;*Prolog*\\u0026quot;)\\n (kill-buffer \\u0026quot;*Prolog*\\u0026quot;))\\n\\n ;; Get final query in current source block\\n (search-forward \\u0026quot;#+END_SRC\\u0026quot;)\\n (search-backward \\u0026quot;% ?-\\u0026quot;)\\n ;; Copy line, without killing it.\\n (setq xx (thing-at-point \\u0026#39;line t))\\n\\n (async-shell-command (format \\u0026quot;swipl -s %s\\u0026quot; (car (org-babel-tangle))) \\u0026quot;*Prolog*\\u0026quot;)\\n (other-window 1)\\n\\n ;; Paste the final query\\n (setq xx (s-chop-prefix \\u0026quot;% ?- \\u0026quot; xx))\\n (when (s-contains? \\u0026quot;X\\u0026quot; xx)\\n(setq xx (concat \\u0026quot;writeln(\\\\\\u0026quot;X =\\\\\\u0026quot;), forall(\\u0026quot; (s-replace \\u0026quot;.\\u0026quot; \\u0026quot;, writeln(X)).\\u0026quot; xx))))\\n\\n (insert xx)\\n (comint-send-input nil t) ;; Send it, i.e., \\u201cpress enter at prompt\\u201d.\\n\\n ;; Insert query again, but do not send, in case user wishes to change it.\\n (insert xx)\\n (previous-line) (end-of-line)\\n\\n)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe \\u003Ca href=\\\"https://github.com/alhassy/PrologCheatSheet\\\"\\u003Esource repo\\u003C/a\\u003E also contains a Prolog Cheat Sheet that insipired this setup (\\u2022\\u0300\\u1d17\\u2022\\u0301)\\u0648\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5hq7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moseswithhisbooks\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5hq7/interactive_prolog_setup/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5hq7/interactive_prolog_setup/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559295739.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I find it helpful to make cheatsheets whenever I'm learning stuff, the LaTeX was getting too much so I just hid it into Org-mode \\\\`#+latex:\\\\` invocations. The resulting mechanism ---[see here](https://github.com/alhassy/CheatSheet)\\\\--- works great: As a user, I essentially only see the usual org-mode interface, little to no LaTeX \\\\^\\\\_\\\\^ \\n\\n\\nHowever, even though I rarely consult it, the setup file is a bit akward, any suggestions for improvement would be welcome :-)\", \"author_fullname\": \"t2_1pko65xw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Easily Making CheatSheets with Org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5e7k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 72, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 72, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559323760.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find it helpful to make cheatsheets whenever I\\u0026#39;m learning stuff, the LaTeX was getting too much so I just hid it into Org-mode `#+latex:` invocations. The resulting mechanism ---\\u003Ca href=\\\"https://github.com/alhassy/CheatSheet\\\"\\u003Esee here\\u003C/a\\u003E--- works great: As a user, I essentially only see the usual org-mode interface, little to no LaTeX ^_^ \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, even though I rarely consult it, the setup file is a bit akward, any suggestions for improvement would be welcome :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5e7k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moseswithhisbooks\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5e7k/easily_making_cheatsheets_with_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5e7k/easily_making_cheatsheets_with_orgmode/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559294960.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hey, guys, been testing emacs on my new mbp and I ran into a rather inconvenient issue. When I put safari in full screen and switch back to emacs from safari, emacs is out of focus, i.e. I have to click on it to use it. Any ideas as to how to resolve this issue? My emacs version is emacs Mac port.\", \"author_fullname\": \"t2_2g0vvde9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Macos emacs focus issue\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5bes\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559323125.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, guys, been testing emacs on my new mbp and I ran into a rather inconvenient issue. When I put safari in full screen and switch back to emacs from safari, emacs is out of focus, i.e. I have to click on it to use it. Any ideas as to how to resolve this issue? My emacs version is emacs Mac port.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5bes\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"clafordvlawrence\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5bes/macos_emacs_focus_issue/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5bes/macos_emacs_focus_issue/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559294325.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_1s3m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Back in 2008, there were reports that Microsoft was working on Emacs.Net\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv2i7u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 39, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 39, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559301755.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"zdnet.com\", \"selftext_html\": null, \"likes\": true, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv2i7u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dharmatech\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv2i7u/back_in_2008_there_were_reports_that_microsoft/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.zdnet.com/article/microsoft-to-build-an-emacs-net-text-editor/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559272955.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a way to remap *TAB* in org-mode? I have looked into the source code and I cannot figure how to do this map.\", \"author_fullname\": \"t2_qw4yvca\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to remap TAB in org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv0ih3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559289935.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a way to remap \\u003Cem\\u003ETAB\\u003C/em\\u003E in org-mode? I have looked into the source code and I cannot figure how to do this map.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv0ih3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"machawinka\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv0ih3/how_to_remap_tab_in_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv0ih3/how_to_remap_tab_in_orgmode/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559261135.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"One thing that has been bugging me about using emacs for my email is when I use `message-insert-signature` it always puts my signature at the end of the email. Sometimes I leave the conversation tail after my reply, so I usually want to insert my signature at the point rather than at the end.\\n\\nIs there a way I can change this?\", \"author_fullname\": \"t2_9lkqk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Insert signature at point?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_butsst\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559255097.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOne thing that has been bugging me about using emacs for my email is when I use \\u003Ccode\\u003Emessage-insert-signature\\u003C/code\\u003E it always puts my signature at the end of the email. Sometimes I leave the conversation tail after my reply, so I usually want to insert my signature at the point rather than at the end.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way I can change this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"butsst\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lykwydchykyn\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/butsst/insert_signature_at_point/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/butsst/insert_signature_at_point/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559226297.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I using go language mode (Emacs 26.1 with Prelude). With longer lines, Emacs colors everyting beyond 80 characters in a different color.\\n\\nWhat variable(s) control this and how do I stop it from doing this?\\n\\nAppreciate your help.\\n\\nEDIT: Found it! Turning off whitespace-mode stopped this bahaviour.\", \"author_fullname\": \"t2_1a39v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I stop Emacs from coloring text beyond 80 columns differently.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_butal1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559225749.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559252400.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI using go language mode (Emacs 26.1 with Prelude). With longer lines, Emacs colors everyting beyond 80 characters in a different color.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat variable(s) control this and how do I stop it from doing this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAppreciate your help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Found it! Turning off whitespace-mode stopped this bahaviour.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"butal1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"reddit_clone\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/butal1/how_do_i_stop_emacs_from_coloring_text_beyond_80/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/butal1/how_do_i_stop_emacs_from_coloring_text_beyond_80/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559223600.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl5q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 72, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 72, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559241478.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl5q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burl5q/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559212678.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_14grtk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Brief summary of some Emacs features\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burg4w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559240415.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"old.reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burg4w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vurpius\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burg4w/brief_summary_of_some_emacs_features/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://old.reddit.com/r/linux/comments/btzzvp/unix_as_ide/ep5i1cy/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559211615.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"1. It is not super important but I'm curious if there's a way to improve EXWM startup time? After logging in and seeing Emacs briefly the window expands to fullscreen black and then it takes 10s or so before EXWM is ready. I'm curious it takes such a long time.\\n\\n2. Is there a build-in function to switch to the last used buffer quickly? Currently I'm using my own custom function because `(switch-to-buffer nil)` does not switch to hidden or system buffers. But it feels like overkill to use what I have written[1] (which I also use outside of EXWM).\\n\\n3. For changing the volume I'm using the current keybindings but on first use they have a significant delay and lock EXWM:\\n - `(lambda () (interactive) (start-process \\\"\\\" \\\"*proc-out-amixer*\\\" \\\"amixer\\\" \\\"set\\\" \\\"Master\\\" \\\"2%-\\\")))`\\n - `(lambda () (interactive) (start-process \\\"\\\" \\\"*proc-out-amixer*\\\" \\\"amixer\\\" \\\"set\\\" \\\"Master\\\" \\\"2%+\\\")))`\\n\\n[1]\\n\\n (defvar switch-to-last-buffer-hash-table (make-hash-table))\\n \\n (defun switch-to-last-buffer-store ()\\n (interactive)\\n (puthash (selected-window) (current-buffer)\\n switch-to-last-buffer-hash-table))\\n \\n ;; `(switch-to-buffer nil)` doesn't work because I also want to switch back to\\n ;; hidden or system buffers.\\n (defun switch-to-last-buffer ()\\n (interactive)\\n (let ((last-buffer (gethash (selected-window)\\n switch-to-last-buffer-hash-table)))\\n (when last-buffer\\n (switch-to-last-buffer-store)\\n (switch-to-buffer last-buffer))))\\n \\n ;; XXX What does /protected/ do?\\n (ad-add-advice #'switch-to-buffer '(switch-to-last-buffer-store nil t (lambda () (switch-to-last-buffer-store))) 'before 'first)\", \"author_fullname\": \"t2_3lmrs\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Some EXWM questions (startup time, keybindings)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bur9cm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559238876.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt is not super important but I\\u0026#39;m curious if there\\u0026#39;s a way to improve EXWM startup time? After logging in and seeing Emacs briefly the window expands to fullscreen black and then it takes 10s or so before EXWM is ready. I\\u0026#39;m curious it takes such a long time.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIs there a build-in function to switch to the last used buffer quickly? Currently I\\u0026#39;m using my own custom function because \\u003Ccode\\u003E(switch-to-buffer nil)\\u003C/code\\u003E does not switch to hidden or system buffers. But it feels like overkill to use what I have written[1] (which I also use outside of EXWM).\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor changing the volume I\\u0026#39;m using the current keybindings but on first use they have a significant delay and lock EXWM:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003E(lambda () (interactive) (start-process \\u0026quot;\\u0026quot; \\u0026quot;*proc-out-amixer*\\u0026quot; \\u0026quot;amixer\\u0026quot; \\u0026quot;set\\u0026quot; \\u0026quot;Master\\u0026quot; \\u0026quot;2%-\\u0026quot;)))\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003E(lambda () (interactive) (start-process \\u0026quot;\\u0026quot; \\u0026quot;*proc-out-amixer*\\u0026quot; \\u0026quot;amixer\\u0026quot; \\u0026quot;set\\u0026quot; \\u0026quot;Master\\u0026quot; \\u0026quot;2%+\\u0026quot;)))\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E[1]\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defvar switch-to-last-buffer-hash-table (make-hash-table))\\n\\n(defun switch-to-last-buffer-store ()\\n (interactive)\\n (puthash (selected-window) (current-buffer)\\n switch-to-last-buffer-hash-table))\\n\\n;; `(switch-to-buffer nil)` doesn\\u0026#39;t work because I also want to switch back to\\n;; hidden or system buffers.\\n(defun switch-to-last-buffer ()\\n (interactive)\\n (let ((last-buffer (gethash (selected-window)\\n switch-to-last-buffer-hash-table)))\\n (when last-buffer\\n (switch-to-last-buffer-store)\\n (switch-to-buffer last-buffer))))\\n\\n;; XXX What does /protected/ do?\\n(ad-add-advice #\\u0026#39;switch-to-buffer \\u0026#39;(switch-to-last-buffer-store nil t (lambda () (switch-to-last-buffer-store))) \\u0026#39;before \\u0026#39;first)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bur9cm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aerique\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bur9cm/some_exwm_questions_startup_time_keybindings/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bur9cm/some_exwm_questions_startup_time_keybindings/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559210076.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If that's easily available, please notice that I made it clear it was a silly question. I used to easily find this with a Google Search, but for some reason I haven't been able to find it for the last 48 hours. The mirror [only goes up to 26.2](http://mirror.sergal.org/gnu/emacs/). Where can I find versions development 27 and up?\\n\\n[I can only find pretest versions for Windows](https://alpha.gnu.org/gnu/emacs/pretest/windows/).\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A very silly question: cannot find Emacs 27.0.50 tarball for Linux anywhere!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bumr6p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559177553.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559206114.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf that\\u0026#39;s easily available, please notice that I made it clear it was a silly question. I used to easily find this with a Google Search, but for some reason I haven\\u0026#39;t been able to find it for the last 48 hours. The mirror \\u003Ca href=\\\"http://mirror.sergal.org/gnu/emacs/\\\"\\u003Eonly goes up to 26.2\\u003C/a\\u003E. Where can I find versions development 27 and up?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://alpha.gnu.org/gnu/emacs/pretest/windows/\\\"\\u003EI can only find pretest versions for Windows\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bumr6p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bumr6p/a_very_silly_question_cannot_find_emacs_27050/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bumr6p/a_very_silly_question_cannot_find_emacs_27050/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559177314.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"While me and some friends were discusing about which is the best text editor I said that it is emacs. Someone said that it is VS code because you can do things that in other editors you can't. I said you can do almost everything in emacs. Someone asked if ther is a way to use tinder from emacs. So that's the question, can you interact with other people via tinder with emacs?\\n\\nThanks.\", \"author_fullname\": \"t2_1gpw29so\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a tinder mode on emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buj4i2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 55, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 55, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559187513.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile me and some friends were discusing about which is the best text editor I said that it is emacs. Someone said that it is VS code because you can do things that in other editors you can\\u0026#39;t. I said you can do almost everything in emacs. Someone asked if ther is a way to use tinder from emacs. So that\\u0026#39;s the question, can you interact with other people via tinder with emacs?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buj4i2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"edoelas\", \"num_crossposts\": 0, \"num_comments\": 28, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buj4i2/is_there_a_tinder_mode_on_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buj4i2/is_there_a_tinder_mode_on_emacs/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559158713.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Lately I have realized that I don't have an efficient way of organizing my research and ideas. I simply bookmark different papers I have read and jot down my ideas in a notebook. I have looked into tools for this and Zotero seems to be like something I can use.\\n\\nI haven't really used org mode before, but I have heard good things about it. So if anyone uses org mode for the case I have described above (organizing research and ideas), I would love to hear about tips and hopefully links to some guides?\", \"author_fullname\": \"t2_gcwvdi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs org mode as a research/ideas journal ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buhux4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559181180.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELately I have realized that I don\\u0026#39;t have an efficient way of organizing my research and ideas. I simply bookmark different papers I have read and jot down my ideas in a notebook. I have looked into tools for this and Zotero seems to be like something I can use.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t really used org mode before, but I have heard good things about it. So if anyone uses org mode for the case I have described above (organizing research and ideas), I would love to hear about tips and hopefully links to some guides?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buhux4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vikigenius\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buhux4/emacs_org_mode_as_a_researchideas_journal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buhux4/emacs_org_mode_as_a_researchideas_journal/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559152380.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have adapted a function by Xah Lee to change the location backup files are saved, but it doesn't seem to work. Only things like the `recentf` and `idolast` are saved in it. Normal editing files are still backed up in their directories as usual.\\n\\nAre there some other functions and variables involved?\\n \\n ;; make backup to a designated dir, mirroring the full path\\n ;; adapted from xah-lee http://ergoemacs.org/emacs/emacs_set_backup_into_a_directory.html\\n \\n (defun vfc/set-backup-file-path (fpath)\\n \\\"Return a new file path of a given file path.\\n If the new path's directories does not exist, create them.\\\"\\n (let* (\\n (backupRootDir \\\"~/tmp/.emacs_backups/\\\")\\n (filePath (replace-regexp-in-string \\\"[A-Za-z]:\\\" \\\"\\\" fpath )) ; remove Windows driver letter in path, for example, \\u201cC:\\u201d\\n (backupFilePath (replace-regexp-in-string \\\"//\\\" \\\"/\\\" (concat backupRootDir filePath \\\"~\\\") ))\\n )\\n (make-directory (file-name-directory backupFilePath) (file-name-directory backupFilePath))\\n backupFilePath\\n )\\n )\\n \\n (setq make-backup-file-name-function 'vfc/set-backup-file-path)\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there another factor involved in backup file locations besides \\\"make-backup-file-name-function\\\"?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buf5od\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559167905.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have adapted a function by Xah Lee to change the location backup files are saved, but it doesn\\u0026#39;t seem to work. Only things like the \\u003Ccode\\u003Erecentf\\u003C/code\\u003E and \\u003Ccode\\u003Eidolast\\u003C/code\\u003E are saved in it. Normal editing files are still backed up in their directories as usual.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre there some other functions and variables involved?\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; make backup to a designated dir, mirroring the full path\\n;; adapted from xah-lee http://ergoemacs.org/emacs/emacs_set_backup_into_a_directory.html\\n\\n(defun vfc/set-backup-file-path (fpath)\\n \\u0026quot;Return a new file path of a given file path.\\nIf the new path\\u0026#39;s directories does not exist, create them.\\u0026quot;\\n (let* (\\n (backupRootDir \\u0026quot;~/tmp/.emacs_backups/\\u0026quot;)\\n (filePath (replace-regexp-in-string \\u0026quot;[A-Za-z]:\\u0026quot; \\u0026quot;\\u0026quot; fpath )) ; remove Windows driver letter in path, for example, \\u201cC:\\u201d\\n (backupFilePath (replace-regexp-in-string \\u0026quot;//\\u0026quot; \\u0026quot;/\\u0026quot; (concat backupRootDir filePath \\u0026quot;~\\u0026quot;) ))\\n )\\n (make-directory (file-name-directory backupFilePath) (file-name-directory backupFilePath))\\n backupFilePath\\n )\\n)\\n\\n(setq make-backup-file-name-function \\u0026#39;vfc/set-backup-file-path)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buf5od\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buf5od/is_there_another_factor_involved_in_backup_file/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buf5od/is_there_another_factor_involved_in_backup_file/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559139105.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm running Portacle (a LISP IDE).\\n\\nFor some reason I'm not able to use Ctrl+Shift+arrow keys to select text.\\n\\nDoes anyone know why? How can I enable this? In plain Emacs it works just fine.\", \"author_fullname\": \"t2_3nv0r2zn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can't Use Shift Keys for selecting text\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buepqn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559165474.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m running Portacle (a LISP IDE).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor some reason I\\u0026#39;m not able to use Ctrl+Shift+arrow keys to select text.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone know why? How can I enable this? In plain Emacs it works just fine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buepqn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gambledrum1\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buepqn/cant_use_shift_keys_for_selecting_text/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buepqn/cant_use_shift_keys_for_selecting_text/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559136674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I found there is web-mode, rjsx-mode, vue-mode, js-mode, js2-mode and so on. I am not sure if i should use web-mode for all of them or should i use a specific one for each extension like, rjsx for jsx, vue-mode for vue. I saw that most of the mode allows us to customize space, tab... like web-mode does so i could not differentiate between them. Please explain me the different and advice me what should I use and why?\", \"author_fullname\": \"t2_3q43d0xo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Should I use web-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budrzk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559160036.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I found there is web-mode, rjsx-mode, vue-mode, js-mode, js2-mode and so on. I am not sure if i should use web-mode for all of them or should i use a specific one for each extension like, rjsx for jsx, vue-mode for vue. I saw that most of the mode allows us to customize space, tab... like web-mode does so i could not differentiate between them. Please explain me the different and advice me what should I use and why?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budrzk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"onwake01\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budrzk/should_i_use_webmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budrzk/should_i_use_webmode/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559131236.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I really like emmet and activate it globally so that i can speed up my html code faster. But, because those files don't contain a pure html but also css and js, then emmet often interrupt rather than help because it always show completion and when i press space it just replace my typing. This is annoying when i am inside js block or css block but this interrupt me so much. \\n\\n\\u0026#x200B;\\n\\nMy question is, is it possible if i want emmet to show suggestion/completion inside a block of html code?\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n```\\n(use-package emmet-mode\\n :hook ((html-mode sgml-mode css-mode web-mode) . emmet-preview-mode)\\n :bind(\\\"C-j\\\" . emmet-expand-line)\\n :config\\n (add-hook 'rjsx-mode-hook\\n (lambda ()\\n (setq-local emmet-expand-jsx-className? t)))\\n )\\n;\\n```\", \"author_fullname\": \"t2_3q43d0xo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is it possible to activate emmet only inside HTML region or tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budods\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159433.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I really like emmet and activate it globally so that i can speed up my html code faster. But, because those files don\\u0026#39;t contain a pure html but also css and js, then emmet often interrupt rather than help because it always show completion and when i press space it just replace my typing. This is annoying when i am inside js block or css block but this interrupt me so much. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy question is, is it possible if i want emmet to show suggestion/completion inside a block of html code?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\n\\u003Ccode\\u003E\\n(use-package emmet-mode\\n :hook ((html-mode sgml-mode css-mode web-mode) . emmet-preview-mode)\\n :bind(\\u0026quot;C-j\\u0026quot; . emmet-expand-line)\\n :config\\n (add-hook \\u0026#39;rjsx-mode-hook\\n (lambda ()\\n (setq-local emmet-expand-jsx-className? t)))\\n )\\n;\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budods\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"onwake01\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budods/is_it_possible_to_activate_emmet_only_inside_html/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budods/is_it_possible_to_activate_emmet_only_inside_html/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559130633.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I work with emacs at work to organized incoming tickets. We open these tickets in an online application, essentially a web page for each ticket. I am looking for a way to get certain text strings (for example, the ticket number \\u0026 the user ID) into Emacs, and then into a capture template in org, which contains these as properties (:ticket: :userid:).\\n\\n\\u0026#x200B;\\n\\nWhat would be a way to look into it? I'm trying to find something online but it seems to be too vague to search thoroughly. Anyone here done something similar? I'm open to suggestions...\\n\\n\\u0026#x200B;\\n\\nThanks in advance!\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Extract certain text from browser to Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budmsh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159158.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI work with emacs at work to organized incoming tickets. We open these tickets in an online application, essentially a web page for each ticket. I am looking for a way to get certain text strings (for example, the ticket number \\u0026amp; the user ID) into Emacs, and then into a capture template in org, which contains these as properties (:ticket: :userid:).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat would be a way to look into it? I\\u0026#39;m trying to find something online but it seems to be too vague to search thoroughly. Anyone here done something similar? I\\u0026#39;m open to suggestions...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budmsh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budmsh/extract_certain_text_from_browser_to_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budmsh/extract_certain_text_from_browser_to_emacs/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559130358.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\\n\\nThe other things which get noted in LOGBOOK can remain, just `C-c C-z` to go into a separate drawer?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bud0x7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559155172.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe other things which get noted in LOGBOOK can remain, just \\u003Ccode\\u003EC-c C-z\\u003C/code\\u003E to go into a separate drawer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bud0x7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bud0x7/how_can_emacs_be_set_to_use_a_different_drawer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bud0x7/how_can_emacs_be_set_to_use_a_different_drawer/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559126372.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_8dk3r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bucul7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 30, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/AL1ypvJ5yAQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bucul7\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 30, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559153900.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bucul7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zaiste\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bucul7/emacs_doom_e04_buffers_windows_and_basic/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=AL1ypvJ5yAQ\\u0026feature=youtu.be\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559125100.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/AL1ypvJ5yAQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Any using emacs to track calories or any other diet related stuff?\", \"author_fullname\": \"t2_2ibchdac\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone using emacs to track calories?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buci89\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559151135.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny using emacs to track calories or any other diet related stuff?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buci89\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"the_sealed_tanker\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buci89/anyone_using_emacs_to_track_calories/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buci89/anyone_using_emacs_to_track_calories/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559122335.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm finally diving into the world of emacs. So i set a theme and all that in the GUI wich looks great. However, outside of emacs i'm using a transparant URvxt with a color scheme of it's own, before i customized the GUI version emacs -nw would be the same transparency and all the colors would match. Now however i get a full green screen with on which the letters are hardly readable. How can I apply the theme only to the GUI version and not the terminal version?\\n\\nThanks.\", \"author_fullname\": \"t2_3p8r6ax6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs -nw color scheme.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bubuv9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559145461.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m finally diving into the world of emacs. So i set a theme and all that in the GUI wich looks great. However, outside of emacs i\\u0026#39;m using a transparant URvxt with a color scheme of it\\u0026#39;s own, before i customized the GUI version emacs -nw would be the same transparency and all the colors would match. Now however i get a full green screen with on which the letters are hardly readable. How can I apply the theme only to the GUI version and not the terminal version?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bubuv9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"whoopar\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bubuv9/emacs_nw_color_scheme/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bubuv9/emacs_nw_color_scheme/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559116661.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"# Introduction\\n\\nGNU Hyperbole 7.0.3 is released and ready for action.\\n\\nHyperbole is an amazing hypertextual information management system that installs quickly and easily as an Emacs package. It is part of GNU Elpa, the Emacs Lisp Package Archive.\\n\\nHyperbole interlinks all your working information within Emacs for fast access and editing, not just within special modes. An hour invested exploring Hyperbole's built-in interactive DEMO file will save you hundreds of hours in your future work.\\n\\n7.0.3 is a significant release with a number of interesting improvements. What's new in this release is described here:\\n\\n[www.gnu.org/s/hyperbole/HY-NEWS](https://www.gnu.org/s/hyperbole/HY-NEWS.html)\\n\\nHyperbole is described here:\\n\\n[www.gnu.org/s/hyperbole](https://www.gnu.org/s/hyperbole)\\n\\nFor use cases, see:\\n\\n[www.gnu.org/s/hyperbole/HY-WHY.html](https://www.gnu.org/s/hyperbole/HY-WHY.html)\\n\\nFor what users think about Hyperbole, see:\\n\\n[https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes](https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes)\\n\\nHyperbole can supplement and extend Org-mode's capabilities. It adds many features not found elsewhere in Emacs, including Org mode, see:\\n\\n[www.emacswiki.org/emacs/Hyperbole](https://www.emacswiki.org/emacs/Hyperbole)\\n\\nHyperbole includes its own easy-to-use hypertextual buttons and links that can be created without the need for any markup language.\\n\\nHyperbole has an interactive demo to introduce you to its features as well as a detailed reference manual, as explained here:\\n\\n[https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc](https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc)\\n\\n# Quick Reasons to Try Hyperbole\\n\\nIt contains:\\n\\n* the most flexible and easy-to-use hyperbuttons available, including implicit buttons automatically recognized by context, e.g. stack trace source line references.\\n* the only Emacs outliner with full legal item numbering, e.g. [1.4.2.6](https://1.4.2.6), and automatic permanent hyperlink anchors for every item\\n* the only free-form contact manager with full-text search for Emacs\\n* rapid and precise window, frame and buffer placement on screen\\n* an extensive menu of typed web searches, e.g. dictionary, wikipedia and stackoverflow, plus convenient, fast file and line finding functions\\n* immediate execution of a series of key presses just by typing them out. For example, a M-RETURN press on: {C-x C-b C-s scratch RET C-a} will find the first buffer menu item that contains 'scratch'; then leave point at the beginning of its line. Build interactive tutorials with this.\\n* The Magic of Implicit Buttons and the Action Key\\n\\nFor near instant gratification, try Hyperbole's 'implicit button' capabilities (hyper-buttons that Hyperbole gives you for free by recognizing all types of references embedded within text such as pathnames or error message lines). Below are more complex examples to show the power; simpler ones can be found within the Hyperbole DEMO file.\\n\\nImplicit buttons are activated by pressing the Action Key, M\\\\*-RETURN\\\\*. Once Hyperbole is loaded in your Emacs, pressing *M-RETURN* on any of these examples \\\\*in virtually any buffer\\\\* will display the associated referent in a chosen window or frame, handling all variable substitution and full path resolution:\\n\\n \\\"find-func.el\\\" Find this file whether gzipped or not\\n in the Emacs Lisp load-path\\n \\n \\\"${hyperb:dir}/HY-NEWS\\\" Resolve variable, show Hyperbole news\\n \\n \\\"${PATH}/umask\\\" Display a script somewhere in multi-dir PATH\\n \\n \\\"${hyperb:dir}/DEMO#Hyperbole Menus\\\" Org mode outline, Markdown, and HTML # refs\\n \\n \\\"(hyperbole)Menus\\\" Texinfo and Info node links\\n \\n \\\"c:/Users\\\", \\\"c:\\\\Users\\\", \\\"/C/Users\\\", \\\"/c/Users\\\", and \\\"/mnt/c/Users\\\"\\n On Windows and Windows Subsystem for Linux,\\n Hyperbole recognizes all of these as the\\n same path and can translate between Windows\\n and POSIX path formats in both directions\\n \\n Git Links:\\n git#branches List branches in current repo/project\\n git#commits List and browse commits for current project\\n git#tags List tags in current project\\n \\n git#/hyperbole From any buffer, dired on the top\\n directory of the local hyperbole\\n project\\n \\n git#/hyperbole/55a1f0 or From any buffer, display hyperbole\\n git#hyperbole/55a1f0 local git commit diff\\n \\n \\n Github Links:\\n gh@rswgnu Display user's home page \\u0026 projects\\n \\n github#rswgnu/hyperbole Display user's project\\n gh#rswgnu/helm/global_mouse Display user project's branch\\n gh#rswgnu/hyperbole/55a1f0 Display user project's commit diff\\n \\n Gitlab Links:\\n gitlab@seriyalexandrov Display user's home page\\n gl#gitlab-org/gitlab-ce/activity Summarize user's project activity\\n gl#gitlab-org/gitlab-ce/analytics Display user project's cycle_analytics\\n gl#gitlab-org/gitlab-ce/boards Display user project's kanban-type issue boards\\n \\n Once you set the default user and project variables, you can leave them off any reference links:\\n \\n (setq hibtypes-gitlab-default-user \\\"gitlab-org\\\")\\n (setq hibtypes-gitlab-default-project \\\"gitlab-ce\\\")\\n \\n gl#issues or gl#list Display default project's issue list\\n gl#labels Display default project's issue categories\\n gl#members Display default project's staff list\\n gl#contributors Show contributor push frequency charts\\n gl#merge_requests or gl#pulls Display default project's pull requests\\n gl#milestones Display default project's milestones status\\n gl#pages Display default project's web pages\\n gl#snippets Project snippets, diffs and text with discussion\\n gl#groups List all available groups of projects\\n gl#projects List all available projects\\n \\n gl#milestone=38 Show a specific project milestone\\n gl#snippet/1689487 Show a specific project snippet\\n \\n Even useful social media links:\\n tw#travel or twitter#travel Display twitter hashtag matches\\n fb#technology Display facebook hashtag matches\\n \\n Hyperbole uses simple prefix characters with paths to make them executable:\\n \\\"!/bin/date\\\" Execute as a non-windowed program within a shell\\n \\\"\\u0026/opt/X11/bin/xeyes\\\" Execute as a windowed program;\\n \\\"-find-func.el\\\" Load/execute this Emacs Lisp library\\n \\n File \\\"/usr/lib/python3.7/ast.py\\\", line 37, in parse\\n Jump to error/stack trace source\\n \\n \\\"/ftp:anonymous@ftp.gnu.org:\\\" Tramp remote paths\\n\\n# Try It - Installs or Uninstalls in a Minute\\n\\nHyperbole lets you concentrate more on your work. Then as you grow with it across time, it helps speed your work across weeks and months. It installs in about a minute and can be uninstalled even faster if ever need be. Give it a try.\\n\\nHyperbole can boost your day-to-day productivity with Emacs and your ability to manage information stored across many different machines on the internet.\\n\\nHyperbole can be installed like any other package with the Emacs package manager:\\n\\n {M-x list-packages RET C-s hyperbole RET i x y}\\n\\nThen to invoke its menu:\\n\\n {C-h h} or {M-x hyperbole RET}\\n\\nThe best way to get a feel for many of its capabilities is to invoke the interactive DEMO and explore sections of interest:\\n\\n {C-h h d d}\\n\\n\\u0026#x200B;\\n\\nEnjoy,\\n\\nThe Hyperbole Team\", \"author_fullname\": \"t2_zxjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GNU Hyperbole 7.0.3 is released and ready for action\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bua5ex\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 90, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 90, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559271243.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559132304.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EIntroduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EGNU Hyperbole 7.0.3 is released and ready for action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole is an amazing hypertextual information management system that installs quickly and easily as an Emacs package. It is part of GNU Elpa, the Emacs Lisp Package Archive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole interlinks all your working information within Emacs for fast access and editing, not just within special modes. An hour invested exploring Hyperbole\\u0026#39;s built-in interactive DEMO file will save you hundreds of hours in your future work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E7.0.3 is a significant release with a number of interesting improvements. What\\u0026#39;s new in this release is described here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/HY-NEWS.html\\\"\\u003Ewww.gnu.org/s/hyperbole/HY-NEWS\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole is described here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole\\\"\\u003Ewww.gnu.org/s/hyperbole\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor use cases, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/HY-WHY.html\\\"\\u003Ewww.gnu.org/s/hyperbole/HY-WHY.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor what users think about Hyperbole, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes\\\"\\u003Ehttps://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can supplement and extend Org-mode\\u0026#39;s capabilities. It adds many features not found elsewhere in Emacs, including Org mode, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/Hyperbole\\\"\\u003Ewww.emacswiki.org/emacs/Hyperbole\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole includes its own easy-to-use hypertextual buttons and links that can be created without the need for any markup language.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole has an interactive demo to introduce you to its features as well as a detailed reference manual, as explained here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc\\\"\\u003Ehttps://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuick Reasons to Try Hyperbole\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EIt contains:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Ethe most flexible and easy-to-use hyperbuttons available, including implicit buttons automatically recognized by context, e.g. stack trace source line references.\\u003C/li\\u003E\\n\\u003Cli\\u003Ethe only Emacs outliner with full legal item numbering, e.g. \\u003Ca href=\\\"https://1.4.2.6\\\"\\u003E1.4.2.6\\u003C/a\\u003E, and automatic permanent hyperlink anchors for every item\\u003C/li\\u003E\\n\\u003Cli\\u003Ethe only free-form contact manager with full-text search for Emacs\\u003C/li\\u003E\\n\\u003Cli\\u003Erapid and precise window, frame and buffer placement on screen\\u003C/li\\u003E\\n\\u003Cli\\u003Ean extensive menu of typed web searches, e.g. dictionary, wikipedia and stackoverflow, plus convenient, fast file and line finding functions\\u003C/li\\u003E\\n\\u003Cli\\u003Eimmediate execution of a series of key presses just by typing them out. For example, a M-RETURN press on: {C-x C-b C-s scratch RET C-a} will find the first buffer menu item that contains \\u0026#39;scratch\\u0026#39;; then leave point at the beginning of its line. Build interactive tutorials with this.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Magic of Implicit Buttons and the Action Key\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EFor near instant gratification, try Hyperbole\\u0026#39;s \\u0026#39;implicit button\\u0026#39; capabilities (hyper-buttons that Hyperbole gives you for free by recognizing all types of references embedded within text such as pathnames or error message lines). Below are more complex examples to show the power; simpler ones can be found within the Hyperbole DEMO file.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EImplicit buttons are activated by pressing the Action Key, M*-RETURN*. Once Hyperbole is loaded in your Emacs, pressing \\u003Cem\\u003EM-RETURN\\u003C/em\\u003E on any of these examples *in virtually any buffer* will display the associated referent in a chosen window or frame, handling all variable substitution and full path resolution:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E \\u0026quot;find-func.el\\u0026quot; Find this file whether gzipped or not\\n in the Emacs Lisp load-path\\n\\n \\u0026quot;${hyperb:dir}/HY-NEWS\\u0026quot; Resolve variable, show Hyperbole news\\n\\n \\u0026quot;${PATH}/umask\\u0026quot; Display a script somewhere in multi-dir PATH\\n\\n \\u0026quot;${hyperb:dir}/DEMO#Hyperbole Menus\\u0026quot; Org mode outline, Markdown, and HTML # refs\\n\\n \\u0026quot;(hyperbole)Menus\\u0026quot; Texinfo and Info node links\\n\\n \\u0026quot;c:/Users\\u0026quot;, \\u0026quot;c:\\\\Users\\u0026quot;, \\u0026quot;/C/Users\\u0026quot;, \\u0026quot;/c/Users\\u0026quot;, and \\u0026quot;/mnt/c/Users\\u0026quot;\\n On Windows and Windows Subsystem for Linux,\\n Hyperbole recognizes all of these as the\\n same path and can translate between Windows\\n and POSIX path formats in both directions\\n\\nGit Links:\\n git#branches List branches in current repo/project\\n git#commits List and browse commits for current project\\n git#tags List tags in current project\\n\\n git#/hyperbole From any buffer, dired on the top\\n directory of the local hyperbole\\n project\\n\\n git#/hyperbole/55a1f0 or From any buffer, display hyperbole\\n git#hyperbole/55a1f0 local git commit diff\\n\\n\\nGithub Links:\\n gh@rswgnu Display user\\u0026#39;s home page \\u0026amp; projects\\n\\n github#rswgnu/hyperbole Display user\\u0026#39;s project\\n gh#rswgnu/helm/global_mouse Display user project\\u0026#39;s branch\\n gh#rswgnu/hyperbole/55a1f0 Display user project\\u0026#39;s commit diff\\n\\nGitlab Links:\\n gitlab@seriyalexandrov Display user\\u0026#39;s home page\\n gl#gitlab-org/gitlab-ce/activity Summarize user\\u0026#39;s project activity\\n gl#gitlab-org/gitlab-ce/analytics Display user project\\u0026#39;s cycle_analytics\\n gl#gitlab-org/gitlab-ce/boards Display user project\\u0026#39;s kanban-type issue boards\\n\\nOnce you set the default user and project variables, you can leave them off any reference links:\\n\\n (setq hibtypes-gitlab-default-user \\u0026quot;gitlab-org\\u0026quot;)\\n (setq hibtypes-gitlab-default-project \\u0026quot;gitlab-ce\\u0026quot;)\\n\\n gl#issues or gl#list Display default project\\u0026#39;s issue list\\n gl#labels Display default project\\u0026#39;s issue categories\\n gl#members Display default project\\u0026#39;s staff list\\n gl#contributors Show contributor push frequency charts\\n gl#merge_requests or gl#pulls Display default project\\u0026#39;s pull requests\\n gl#milestones Display default project\\u0026#39;s milestones status\\n gl#pages Display default project\\u0026#39;s web pages\\n gl#snippets Project snippets, diffs and text with discussion\\n gl#groups List all available groups of projects\\n gl#projects List all available projects\\n\\n gl#milestone=38 Show a specific project milestone\\n gl#snippet/1689487 Show a specific project snippet\\n\\nEven useful social media links:\\n tw#travel or twitter#travel Display twitter hashtag matches\\n fb#technology Display facebook hashtag matches\\n\\nHyperbole uses simple prefix characters with paths to make them executable:\\n \\u0026quot;!/bin/date\\u0026quot; Execute as a non-windowed program within a shell\\n \\u0026quot;\\u0026amp;/opt/X11/bin/xeyes\\u0026quot; Execute as a windowed program;\\n \\u0026quot;-find-func.el\\u0026quot; Load/execute this Emacs Lisp library\\n\\n File \\u0026quot;/usr/lib/python3.7/ast.py\\u0026quot;, line 37, in parse\\n Jump to error/stack trace source\\n\\n \\u0026quot;/ftp:anonymous@ftp.gnu.org:\\u0026quot; Tramp remote paths\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Ch1\\u003ETry It - Installs or Uninstalls in a Minute\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EHyperbole lets you concentrate more on your work. Then as you grow with it across time, it helps speed your work across weeks and months. It installs in about a minute and can be uninstalled even faster if ever need be. Give it a try.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can boost your day-to-day productivity with Emacs and your ability to manage information stored across many different machines on the internet.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can be installed like any other package with the Emacs package manager:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {M-x list-packages RET C-s hyperbole RET i x y}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThen to invoke its menu:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {C-h h} or {M-x hyperbole RET}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe best way to get a feel for many of its capabilities is to invoke the interactive DEMO and explore sections of interest:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {C-h h d d}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEnjoy,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Hyperbole Team\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bua5ex\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rswgnu\", \"num_crossposts\": 0, \"num_comments\": 35, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559103504.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here is the second post of my Year of Emacs series. This is the version of my init.el that I am currently using. Two posts in one week because a dotfile doesn't really explore a single mode, package, workflow so I don't feel like it counts.\\n\\nThis weekend, I'll be writing about how I used org-mode to write my Master's Thesis.\\n\\n[https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-\\\\~-may-2019/](https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-~-may-2019/)\", \"author_fullname\": \"t2_jqpn4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Year of Emacs: Starting init.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu99h0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559126798.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is the second post of my Year of Emacs series. This is the version of my init.el that I am currently using. Two posts in one week because a dotfile doesn\\u0026#39;t really explore a single mode, package, workflow so I don\\u0026#39;t feel like it counts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis weekend, I\\u0026#39;ll be writing about how I used org-mode to write my Master\\u0026#39;s Thesis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-%7E-may-2019/\\\"\\u003Ehttps://jonathanabennett.github.io/blog/2019/05/28/emacs.org-~-may-2019/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu99h0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doulos05\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu99h0/year_of_emacs_starting_initel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu99h0/year_of_emacs_starting_initel/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559097998.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm slowly working on eliminating my need for a shell by moving more and more functionality into Emacs. \\n\\nI am really interested in getting my feet wet with Emacs modules, but I don't really have any ideas for stuff to wrap/write?\\n\\nDoes anyone have any lower-level functionality that they've really wished they could have in Emacs but haven't been able to get yet?\\n\\nI'm also experimenting with dbus and Emacs, so if there are any ideas with that, I'd like to play around with that as well.\\n\\nEDIT: just a quick clarification. It seems that some people misunderstood what I mean by module. I was specifically referring to Emacs' [dynamic modules](https://www.gnu.org/software/emacs/manual/html_node/elisp/Dynamic-Modules.html), not mode or library.\\n\\nI'm definitely interested in doing anything I can to make the Emacs community better off, but I was specifically asking for ideas relating to dynamic modules or using Emacs' dbus wrapper.\", \"author_fullname\": \"t2_clfs9gn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Any interesting ideas for Emacs modules?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu83ku\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 22, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 22, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559165757.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559119874.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m slowly working on eliminating my need for a shell by moving more and more functionality into Emacs. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am really interested in getting my feet wet with Emacs modules, but I don\\u0026#39;t really have any ideas for stuff to wrap/write?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have any lower-level functionality that they\\u0026#39;ve really wished they could have in Emacs but haven\\u0026#39;t been able to get yet?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m also experimenting with dbus and Emacs, so if there are any ideas with that, I\\u0026#39;d like to play around with that as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: just a quick clarification. It seems that some people misunderstood what I mean by module. I was specifically referring to Emacs\\u0026#39; \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/elisp/Dynamic-Modules.html\\\"\\u003Edynamic modules\\u003C/a\\u003E, not mode or library.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m definitely interested in doing anything I can to make the Emacs community better off, but I was specifically asking for ideas relating to dynamic modules or using Emacs\\u0026#39; dbus wrapper.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu83ku\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"egregius313\", \"num_crossposts\": 0, \"num_comments\": 27, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu83ku/any_interesting_ideas_for_emacs_modules/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu83ku/any_interesting_ideas_for_emacs_modules/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559091074.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My idea is, displaying the scheduled agenda item at current time in the header modeline, is there any way to get it as a string?\\n\\nFor example I have this:\\n\\n * TODO Do something here\\n \\u003C2019-05-28 16:30-17:00\\u003E\\n\\nAnd now is 16:45, I want to get the string `TODO Do something here`.\", \"author_fullname\": \"t2_f7e7n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there anyway to get scheduled agenda item at current time?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu7hs4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559116512.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy idea is, displaying the scheduled agenda item at current time in the header modeline, is there any way to get it as a string?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example I have this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Do something here\\n \\u0026lt;2019-05-28 16:30-17:00\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnd now is 16:45, I want to get the string \\u003Ccode\\u003ETODO Do something here\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7hs4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"huydotnet\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu7hs4/is_there_anyway_to_get_scheduled_agenda_item_at/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu7hs4/is_there_anyway_to_get_scheduled_agenda_item_at/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559087712.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bu7hs4\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["420798"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:49 GMT"], "x-ratelimit-remaining": ["596.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["4"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930748.129103,VS0,VE965"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["252"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T18:05:49"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_bxvtfb"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:49 GMT"], "x-ratelimit-remaining": ["595.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["5"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930750.576419,VS0,VE94"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["251"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_bxvtfb"}, "recorded_at": "2019-06-07T18:05:49"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqac83q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"livrem\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559930079.0, \"send_replies\": true, \"parent_id\": \"t1_eqabqmk\", \"score\": 1, \"author_fullname\": \"t2_68in0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \":) Thanks! I just came back here to post that as I noticed it in the documentation for org-agenda as I was finalizing my solution. No need for that now then! I was searching google for an answer instead of just pressing C-h f org-agenda. Silly.\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqac83q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E:) Thanks! I just came back here to post that as I noticed it in the documentation for org-agenda as I was finalizing my solution. No need for that now then! I was searching google for an answer instead of just pressing C-h f org-agenda. Silly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqac83q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559958879.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqabqmk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"argtri\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559929777.0, \"send_replies\": true, \"parent_id\": \"t3_bxwovd\", \"score\": 2, \"author_fullname\": \"t2_b3vk3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Open org-agenda \\\"C-c a\\\"\\n\\nType \\\"\\u003C a\\\"\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n\\\"\\u003C\\\" is the command for buffer, subtree, region restriction.\\n\\n\\\"\\u003E\\\" reverses the restriction.\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqabqmk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOpen org-agenda \\u0026quot;C-c a\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EType \\u0026quot;\\u0026lt; a\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u0026lt;\\u0026quot; is the command for buffer, subtree, region restriction.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u0026gt;\\u0026quot; reverses the restriction.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqabqmk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559958577.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559930265.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqabqi5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"livrem\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559929775.0, \"send_replies\": true, \"parent_id\": \"t1_eqab80l\", \"score\": 1, \"author_fullname\": \"t2_68in0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This actually seems to do the trick:\\n\\n (let ((org-agenda-files (list (buffer-file-name)))) (org-agenda))\\n\\nEDIT: See other comment by /u/argtri about how this is already built into org-agenda by just pressing \\\"\\u003C\\\".\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqabqi5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis actually seems to do the trick:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(let ((org-agenda-files (list (buffer-file-name)))) (org-agenda))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EEDIT: See other comment by \\u003Ca href=\\\"/u/argtri\\\"\\u003E/u/argtri\\u003C/a\\u003E about how this is already built into org-agenda by just pressing \\u0026quot;\\u0026lt;\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqabqi5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559958575.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqabec2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"livrem\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559929555.0, \"send_replies\": true, \"parent_id\": \"t1_eqaarkn\", \"score\": 1, \"author_fullname\": \"t2_68in0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"OK. But that still requires that I put all my project's org-files in org-agenda-files, which is what I primarily want to avoid. And it would be a bit noisy perhaps to have every TODO item in a file have the same tag on them just to be able to do that.\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqabec2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOK. But that still requires that I put all my project\\u0026#39;s org-files in org-agenda-files, which is what I primarily want to avoid. And it would be a bit noisy perhaps to have every TODO item in a file have the same tag on them just to be able to do that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqabec2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559958355.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqab80l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"livrem\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559929436.0, \"send_replies\": true, \"parent_id\": \"t1_eqaa7vf\", \"score\": 1, \"author_fullname\": \"t2_68in0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Looks like really good info that I could use, but almost like the opposite of what I want. I just want what is in the current file, nothing from any other org-files anywhere.\\n\\nIf there is nothing built-in I guess it might be feasible to write a little function that wraps org-agenda to set org-agenda-files temporarily to just the current buffer's file and hope that org is not somehow confused by that.\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqab80l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks like really good info that I could use, but almost like the opposite of what I want. I just want what is in the current file, nothing from any other org-files anywhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf there is nothing built-in I guess it might be feasible to write a little function that wraps org-agenda to set org-agenda-files temporarily to just the current buffer\\u0026#39;s file and hope that org is not somehow confused by that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqab80l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559958236.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqaarkn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Fulk0\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559929136.0, \"send_replies\": true, \"parent_id\": \"t1_eqaansv\", \"score\": 1, \"author_fullname\": \"t2_127kf2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Tag all the TODOs with a tag with the name of the project. Then just filter by tags.\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqaarkn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETag all the TODOs with a tag with the name of the project. Then just filter by tags.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqaarkn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559957936.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqaansv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"livrem\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559929067.0, \"send_replies\": true, \"parent_id\": \"t1_eqa514p\", \"score\": 1, \"author_fullname\": \"t2_68in0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Not sure how they would help?\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqaansv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot sure how they would help?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqaansv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559957867.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqaa7vf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"scaba23\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559928767.0, \"send_replies\": true, \"parent_id\": \"t3_bxwovd\", \"score\": 1, \"author_fullname\": \"t2_i18ft\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This guy shows how to set up custom agenda views:\\n\\n[https://blog.aaronbieber.com/2016/09/24/an-agenda-for-life-with-org-mode.html](https://blog.aaronbieber.com/2016/09/24/an-agenda-for-life-with-org-mode.html)\\n\\n\\u0026#x200B;\\n\\nAnd if you want to install org-super-agenda, you can do even more:\\n\\n[https://github.com/alphapapa/org-super-agenda](https://github.com/alphapapa/org-super-agenda) \\n\\n\\u0026#x200B;\\n\\nMaybe between those two resources you can work something out. If you do, show us what you did!\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqaa7vf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis guy shows how to set up custom agenda views:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://blog.aaronbieber.com/2016/09/24/an-agenda-for-life-with-org-mode.html\\\"\\u003Ehttps://blog.aaronbieber.com/2016/09/24/an-agenda-for-life-with-org-mode.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd if you want to install org-super-agenda, you can do even more:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/org-super-agenda\\\"\\u003Ehttps://github.com/alphapapa/org-super-agenda\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaybe between those two resources you can work something out. If you do, show us what you did!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqaa7vf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559957567.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa9faa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559928242.0, \"send_replies\": true, \"parent_id\": \"t3_bxu83g\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm trying to improve a bit my org-contacts, more in details I'm \\nlooking for a way to properly sync org-contacts to vcard with\\nba\\u00efkal (carddav server) and DAVx\\u2075 on Android.\\n\\nEssentially I'm looking for a way to have my contacts usable on\\nAndroid for all vcard fields that have sense on mobile...\\n\\nFor know it does not work much... BBDB and EBDB or HyRolo (Hyperbole)\\ndoes not convince me much and I still miss a working solution.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eqa9faa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to improve a bit my org-contacts, more in details I\\u0026#39;m \\nlooking for a way to properly sync org-contacts to vcard with\\nba\\u00efkal (carddav server) and DAVx\\u2075 on Android.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEssentially I\\u0026#39;m looking for a way to have my contacts usable on\\nAndroid for all vcard fields that have sense on mobile...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor know it does not work much... BBDB and EBDB or HyRolo (Hyperbole)\\ndoes not convince me much and I still miss a working solution.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/eqa9faa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1559957042.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxooz7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa7qk5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eeg_bert\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559927109.0, \"send_replies\": true, \"parent_id\": \"t1_eq9g6db\", \"score\": 1, \"author_fullname\": \"t2_uhm4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks this worked!\", \"link_title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"author_flair_css_class\": null, \"name\": \"t1_eqa7qk5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks this worked!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/eqa7qk5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"created\": 1559955909.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxwovd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqa514p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Fulk0\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559925307.0, \"send_replies\": true, \"parent_id\": \"t3_bxwovd\", \"score\": 2, \"author_fullname\": \"t2_127kf2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"What comes first to my mind is to use tags.\", \"link_title\": \"Agenda for current buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_eqa514p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat comes first to my mind is to use tags.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/eqa514p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"report_reasons\": null, \"link_author\": \"livrem\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"created\": 1559954107.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9nx63\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skouakskouek\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559913189.0, \"send_replies\": true, \"parent_id\": \"t3_bxu83g\", \"score\": 1, \"author_fullname\": \"t2_elo7h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hi, I'm not sure about what I should do to have syntax highlighting on my code block.\\n\\nI added this to my emacs file, to no success:\\n\\n (setq org-src-fontify-natively t\\n org-src-tab-acts-natively t\\n org-confirm-babel-evaluate nil\\n org-edit-src-content-indentation 0)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eq9nx63\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I\\u0026#39;m not sure about what I should do to have syntax highlighting on my code block.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI added this to my emacs file, to no success:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-src-fontify-natively t\\n org-src-tab-acts-natively t\\n org-confirm-babel-evaluate nil\\n org-edit-src-content-indentation 0)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/eq9nx63/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1559941989.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxooz7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g6db\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559905273.0, \"send_replies\": true, \"parent_id\": \"t3_bxooz7\", \"score\": 2, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Try `(add-to-list 'org-src-lang-modes '(\\\"mathematica\\\" . wolfram)).`\", \"link_title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g6db\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETry \\u003Ccode\\u003E(add-to-list \\u0026#39;org-src-lang-modes \\u0026#39;(\\u0026quot;mathematica\\u0026quot; . wolfram)).\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/eq9g6db/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"created\": 1559934073.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7h9nd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559846733.0, \"send_replies\": true, \"parent_id\": \"t1_eq7e68j\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Oh my, TIL. Thanks for pointing me into the right direction! I even stumbled upon that variable but ignored it because of the *fold* in it's name. So, thank you again! :-)\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7h9nd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh my, TIL. Thanks for pointing me into the right direction! I even stumbled upon that variable but ignored it because of the \\u003Cem\\u003Efold\\u003C/em\\u003E in it\\u0026#39;s name. So, thank you again! :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7h9nd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559875533.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7h0nk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559846610.0, \"send_replies\": true, \"parent_id\": \"t1_eq6cg2w\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003Ean *all small caps* string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search\\n\\nSpot on, I didn't even notice that, thank you!\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7h0nk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ean \\u003Cem\\u003Eall small caps\\u003C/em\\u003E string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESpot on, I didn\\u0026#39;t even notice that, thank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7h0nk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559875410.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7e68j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559845225.0, \"send_replies\": true, \"parent_id\": \"t3_bxfd1r\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \" helm-case-fold-search is a variable defined in \\u2018helm.el\\u2019.\\n Its value is \\u2018smart\\u2019\\n\\n Documentation:\\n Adds \\u2019smart\\u2019 option to \\u2018case-fold-search\\u2019.\\n Smart option ignores case for searches as long as there are no\\n upper case characters in the pattern.\\n\\n Use nil or t to turn off smart behavior and use\\n \\u2018case-fold-search\\u2019 behavior.\\n\\n Default is smart.\\n\\n NOTE: Case fold search has no effect when searching asynchronous\\n sources, which rely on customized features implemented directly\\n into their execution process. See helm-grep.el for an example.\\n\\n You can customize this variable.\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7e68j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003Ehelm-case-fold-search is a variable defined in \\u2018helm.el\\u2019.\\nIts value is \\u2018smart\\u2019\\n\\nDocumentation:\\nAdds \\u2019smart\\u2019 option to \\u2018case-fold-search\\u2019.\\nSmart option ignores case for searches as long as there are no\\nupper case characters in the pattern.\\n\\nUse nil or t to turn off smart behavior and use\\n\\u2018case-fold-search\\u2019 behavior.\\n\\nDefault is smart.\\n\\nNOTE: Case fold search has no effect when searching asynchronous\\nsources, which rely on customized features implemented directly\\ninto their execution process. See helm-grep.el for an example.\\n\\nYou can customize this variable.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7e68j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559874025.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7dx8p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559845112.0, \"send_replies\": true, \"parent_id\": \"t1_eq6t46m\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Well, there is one potential solution I can think of: Write a function which can be used as advice to the appropriate function which would add the proper prefix to image paths when Org displays inline images, and activate the advice with `eval` in a buffer-local variable line in each Org file. (Using dir-locals would be even better, but I don't know if you can `eval` with that.)\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7dx8p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, there is one potential solution I can think of: Write a function which can be used as advice to the appropriate function which would add the proper prefix to image paths when Org displays inline images, and activate the advice with \\u003Ccode\\u003Eeval\\u003C/code\\u003E in a buffer-local variable line in each Org file. (Using dir-locals would be even better, but I don\\u0026#39;t know if you can \\u003Ccode\\u003Eeval\\u003C/code\\u003E with that.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq7dx8p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559873912.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq74izr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559840395.0, \"send_replies\": true, \"parent_id\": \"t1_eq0moy7\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I did something like that.\\n\\nIs yours text or gui?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq74izr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI did something like that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs yours text or gui?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq74izr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559869195.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq74am7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559840281.0, \"send_replies\": true, \"parent_id\": \"t1_epo4x0j\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \" \\u003E I'm curious as to what a \\\"stand-alone\\\" version of org mode would look like.\\n\\nInteresting question. To start off, please tell me what\\n\\n emacs -f org-mode my-big-org-mode-file.txt\\n\\nwould lack, as an implementation.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eq74am7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026gt; I\\u0026#39;m curious as to what a \\u0026quot;stand-alone\\u0026quot; version of org mode would look like.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EInteresting question. To start off, please tell me what\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eemacs -f org-mode my-big-org-mode-file.txt\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewould lack, as an implementation.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/eq74am7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559869081.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6t46m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559834955.0, \"send_replies\": true, \"parent_id\": \"t1_eq4m54v\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Usually, I prefer to define something once instead of copying it multiple times.\\n\\nThen, if I need to change the folder name, I just need to change on variable at the beginning of my org-mode file instead of having to do a search/replace thing.\\n\\nBut this is just personal preference.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6t46m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsually, I prefer to define something once instead of copying it multiple times.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen, if I need to change the folder name, I just need to change on variable at the beginning of my org-mode file instead of having to do a search/replace thing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut this is just personal preference.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq6t46m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559863755.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6cg2w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559826572.0, \"send_replies\": true, \"parent_id\": \"t3_bxfd1r\", \"score\": 4, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm not a helm user myself, but a frequent behaviour I meet around in regex searches are that an _all small caps_ string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search. So, if this is the same behaviour there, `\\\"Berlin/Todo\\\"` is case sensitive, whereas `\\\"berlin/todo\\\"` wouldn't be. (That's only a guess though...)\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq6cg2w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not a helm user myself, but a frequent behaviour I meet around in regex searches are that an \\u003Cem\\u003Eall small caps\\u003C/em\\u003E string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search. So, if this is the same behaviour there, \\u003Ccode\\u003E\\u0026quot;Berlin/Todo\\u0026quot;\\u003C/code\\u003E is case sensitive, whereas \\u003Ccode\\u003E\\u0026quot;berlin/todo\\u0026quot;\\u003C/code\\u003E wouldn\\u0026#39;t be. (That\\u0026#39;s only a guess though...)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq6cg2w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559855372.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq61yd0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559820069.0, \"send_replies\": true, \"parent_id\": \"t1_eq0mczn\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I can't reproduce this. I had to add (use-package dash) to your init.el file, but after that, ivy-contacts worked fine for me, and showed your two contacts. Maybe if you run M-x toggle-debug-on-error a more informative error message might be shown.\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_eq61yd0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t reproduce this. I had to add (use-package dash) to your init.el file, but after that, ivy-contacts worked fine for me, and showed your two contacts. Maybe if you run M-x toggle-debug-on-error a more informative error message might be shown.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/eq61yd0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559848869.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq4m54v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559779949.0, \"send_replies\": true, \"parent_id\": \"t1_eq499va\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Maybe I could use a snippet for that that automatically write the name of the figure folder (it's based on the note filename) but I don't really like that...\\n\\nWhy?\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq4m54v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EMaybe I could use a snippet for that that automatically write the name of the figure folder (it\\u0026#39;s based on the note filename) but I don\\u0026#39;t really like that...\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhy?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq4m54v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559808749.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq499va\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559772032.0, \"send_replies\": true, \"parent_id\": \"t1_eq3fu1x\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have a folder with all my notes on books or articles.\\nEach note has its own org file.\\nThen I have a figs folder and subfolders for each of my notes. I don't want to have one fog folder for all my notes as I have hundreds of figures.\\n\\nSo in the end, I have to manually put [[figs/verylongfilename/figurename]] which is quite boring. Maybe I could use a snippet for that that automatically write the name of the figure folder (it's based on the note filename) but I don't really like that...\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq499va\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a folder with all my notes on books or articles.\\nEach note has its own org file.\\nThen I have a figs folder and subfolders for each of my notes. I don\\u0026#39;t want to have one fog folder for all my notes as I have hundreds of figures.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo in the end, I have to manually put [[figs/verylongfilename/figurename]] which is quite boring. Maybe I could use a snippet for that that automatically write the name of the figure folder (it\\u0026#39;s based on the note filename) but I don\\u0026#39;t really like that...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq499va/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559800832.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq3fu1x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559755118.0, \"send_replies\": true, \"parent_id\": \"t1_epztbtv\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E The thing is that I have complicated folder names for my figures.\\n\\nThat's a key point that you didn't mention in your question. Without knowing that, it seems like you're trying to avoid typing `figs/`, which would be kind of silly. :)\\n\\nSo why don't you put all the figures in `figs/`?\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq3fu1x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe thing is that I have complicated folder names for my figures.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s a key point that you didn\\u0026#39;t mention in your question. Without knowing that, it seems like you\\u0026#39;re trying to avoid typing \\u003Ccode\\u003Efigs/\\u003C/code\\u003E, which would be kind of silly. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo why don\\u0026#39;t you put all the figures in \\u003Ccode\\u003Efigs/\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq3fu1x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559783918.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq2i8vy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dr_Schmoctor\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559737707.0, \"send_replies\": true, \"parent_id\": \"t1_eq2g6te\", \"score\": 1, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"What I'd like to see most is notifications being able to notify before the deadline. I make due by setting 'scheduled' some time before the 'deadline' so it notifies me beforehand, but it'd be nice to have an easier setting for it.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq2i8vy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat I\\u0026#39;d like to see most is notifications being able to notify before the deadline. I make due by setting \\u0026#39;scheduled\\u0026#39; some time before the \\u0026#39;deadline\\u0026#39; so it notifies me beforehand, but it\\u0026#39;d be nice to have an easier setting for it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq2i8vy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559766507.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq2g6te\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"enilkcals\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559736393.0, \"send_replies\": true, \"parent_id\": \"t1_eq29p8x\", \"score\": 1, \"author_fullname\": \"t2_91o9h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Nice, I'd somehow missed that will give it a whirl, thank you.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq2g6te\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice, I\\u0026#39;d somehow missed that will give it a whirl, thank you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq2g6te/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559765193.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq29p8x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dr_Schmoctor\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559731937.0, \"send_replies\": true, \"parent_id\": \"t1_eq1kjlt\", \"score\": 3, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003Ethe only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application \\n\\nI have the Auto-sync (experimental) option enabled and it syncs as you go.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq29p8x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ethe only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI have the Auto-sync (experimental) option enabled and it syncs as you go.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq29p8x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559760737.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwcmiw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq28lvx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gabrielelana\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559731176.0, \"send_replies\": true, \"parent_id\": \"t3_bwcmiw\", \"score\": 1, \"author_fullname\": \"t2_flffy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I was really disappointed by this unilateral and arbitrary change without a way to opt-out :-(\\n\\nAnyway I solved the issue with [this piece of code](https://github.com/gabrielelana/dotfiles/blob/master/emacs.d/local-packages/org-functions.el) in particular the function `cc/org-mode-buffer-force-uppercase-keywords`\", \"link_title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"author_flair_css_class\": null, \"name\": \"t1_eq28lvx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was really disappointed by this unilateral and arbitrary change without a way to opt-out :-(\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway I solved the issue with \\u003Ca href=\\\"https://github.com/gabrielelana/dotfiles/blob/master/emacs.d/local-packages/org-functions.el\\\"\\u003Ethis piece of code\\u003C/a\\u003E in particular the function \\u003Ccode\\u003Ecc/org-mode-buffer-force-uppercase-keywords\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/eq28lvx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"report_reasons\": null, \"link_author\": \"BOOF_GOBLIN_69\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"created\": 1559759976.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq1kjlt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"enilkcals\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559711909.0, \"send_replies\": true, \"parent_id\": \"t1_eq0o23a\", \"score\": 3, \"author_fullname\": \"t2_91o9h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Came to suggest exactly the same thing which is what I too do. Its a nice smooth experience, phone uses Syncthing to synchronise the files between internal SD and computer when connected to WiFi at home, the only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq1kjlt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECame to suggest exactly the same thing which is what I too do. Its a nice smooth experience, phone uses Syncthing to synchronise the files between internal SD and computer when connected to WiFi at home, the only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq1kjlt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559740709.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0qw8h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559691873.0, \"send_replies\": true, \"parent_id\": \"t1_eq0o23a\", \"score\": 2, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have heard of Orgzly and I would like to give it a try. It looks like it is a win in the ease of use category! Using full-blown emacs on a little phone screen (taken up primarily by the keyboard) is not easy! However, what this lacks in ease of use, it makes up in completeness; I have access to everything I can do with org mode on my laptop -- on my phone. It has all my capture templates, custom bindings, todo keywords. Everything!\\n\\nI'm not sure I would be able to do that with Orgzly, but I have not tried yet. What do you think?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0qw8h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have heard of Orgzly and I would like to give it a try. It looks like it is a win in the ease of use category! Using full-blown emacs on a little phone screen (taken up primarily by the keyboard) is not easy! However, what this lacks in ease of use, it makes up in completeness; I have access to everything I can do with org mode on my laptop -- on my phone. It has all my capture templates, custom bindings, todo keywords. Everything!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure I would be able to do that with Orgzly, but I have not tried yet. What do you think?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0qw8h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559720673.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0o23a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"Dr_Schmoctor\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559689650.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 9, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"[Orgzly](https://play.google.com/store/apps/details?id=com.orgzly\\u0026hl=en) is quite nice. \\n\\nI have it synced with my computer's .org files with Syncthing.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0o23a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://play.google.com/store/apps/details?id=com.orgzly\\u0026amp;hl=en\\\"\\u003EOrgzly\\u003C/a\\u003E is quite nice. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have it synced with my computer\\u0026#39;s .org files with Syncthing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0o23a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559718450.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 9}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0n3x7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559688909.0, \"send_replies\": true, \"parent_id\": \"t1_eq0l8hv\", \"score\": 2, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Will do!\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0n3x7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWill do!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0n3x7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559717709.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0moy7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559688592.0, \"send_replies\": true, \"parent_id\": \"t1_eq0dh59\", \"score\": 10, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I used Termux [https://termux.com/](https://termux.com/) to run linux on the pixel 2. I ran `apt install emacs` and `apt install git`. I installed \\\"Hacker Keyboard\\\" to make it easier to write commands within termux, and to use emacs.\\n\\nI cloned my dotfiles `git clone https://github.com/nackjicholson/dotfiles`.\\n\\nI used [https://syncthing.net/](https://syncthing.net/) to sync my org files at `~/Sync/org` between both my laptop and pixel 2.\\n\\nI had to enable \\\"storage\\\" in Termux to let it access my androids files.\\n\\nThen I had to do some symlinking.\\n\\n`ln -s \\\"$HOME/storage/shared/Sync\\\" \\\"$HOME/Sync\\\"`\\n\\n`ln -s \\\"$HOME/dotfiles/mac/emacs.d\\\" \\\"$HOME/.emacs.d\\\"`\\n\\n\\u0026#x200B;\\n\\nDoes this all work? Yes.\\n\\nDoes this all work really well? Not really.\\n\\nDid I do a lot of this on the bus to work today? Yup.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0moy7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used Termux \\u003Ca href=\\\"https://termux.com/\\\"\\u003Ehttps://termux.com/\\u003C/a\\u003E to run linux on the pixel 2. I ran \\u003Ccode\\u003Eapt install emacs\\u003C/code\\u003E and \\u003Ccode\\u003Eapt install git\\u003C/code\\u003E. I installed \\u0026quot;Hacker Keyboard\\u0026quot; to make it easier to write commands within termux, and to use emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cloned my dotfiles \\u003Ccode\\u003Egit clone https://github.com/nackjicholson/dotfiles\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used \\u003Ca href=\\\"https://syncthing.net/\\\"\\u003Ehttps://syncthing.net/\\u003C/a\\u003E to sync my org files at \\u003Ccode\\u003E~/Sync/org\\u003C/code\\u003E between both my laptop and pixel 2.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI had to enable \\u0026quot;storage\\u0026quot; in Termux to let it access my androids files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I had to do some symlinking.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eln -s \\u0026quot;$HOME/storage/shared/Sync\\u0026quot; \\u0026quot;$HOME/Sync\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eln -s \\u0026quot;$HOME/dotfiles/mac/emacs.d\\u0026quot; \\u0026quot;$HOME/.emacs.d\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes this all work? Yes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes this all work really well? Not really.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDid I do a lot of this on the bus to work today? Yup.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0moy7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559717392.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 10}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0mczn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"_martini97\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559688343.0, \"send_replies\": true, \"parent_id\": \"t1_epyu7qo\", \"score\": 1, \"author_fullname\": \"t2_9eav0az\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hey u/jkitchin I'm having some issues with the `contacts-update-cache` when trying to use `ivy-contacts`, it is throwing this error:\\n\\n Updating contacts cache for \\u003Cmy contacts file\\u003E\\n let*: Wrong type argument: consp, nil\\n\\nI created [this branch](https://github.com/martini97/.emacs.d/tree/scimax-contacts) that reproduces the issue with a minimal config.\\n\\nAny pointers?\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_eq0mczn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey \\u003Ca href=\\\"/u/jkitchin\\\"\\u003Eu/jkitchin\\u003C/a\\u003E I\\u0026#39;m having some issues with the \\u003Ccode\\u003Econtacts-update-cache\\u003C/code\\u003E when trying to use \\u003Ccode\\u003Eivy-contacts\\u003C/code\\u003E, it is throwing this error:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EUpdating contacts cache for \\u0026lt;my contacts file\\u0026gt;\\nlet*: Wrong type argument: consp, nil\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI created \\u003Ca href=\\\"https://github.com/martini97/.emacs.d/tree/scimax-contacts\\\"\\u003Ethis branch\\u003C/a\\u003E that reproduces the issue with a minimal config.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny pointers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/eq0mczn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559717143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0l8hv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hmlwilliams\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559687491.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 3, \"author_fullname\": \"t2_s1eux6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Couldn't help but notice your GTD Todos included a journal, make sure to give [org-journal](https://github.com/bastibe/org-journal) a look!\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0l8hv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECouldn\\u0026#39;t help but notice your GTD Todos included a journal, make sure to give \\u003Ca href=\\\"https://github.com/bastibe/org-journal\\\"\\u003Eorg-journal\\u003C/a\\u003E a look!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0l8hv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559716291.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0ivh2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ford_beeblebrox\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559685763.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 2, \"author_fullname\": \"t2_9hd4y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Termux rules ! \\n\\nEmacs , org , python , ssh \\u0026 mosh - fast to set things up, all only an apt-get away.\\n\\nCompiling apk's for the platform on the platform.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0ivh2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETermux rules ! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmacs , org , python , ssh \\u0026amp; mosh - fast to set things up, all only an apt-get away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECompiling apk\\u0026#39;s for the platform on the platform.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0ivh2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559714563.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0hbsy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Salpal673\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559684698.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 6, \"author_fullname\": \"t2_2drmw0wd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Using **Termux**, a Linux distribution for Android.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0hbsy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsing \\u003Cstrong\\u003ETermux\\u003C/strong\\u003E, a Linux distribution for Android.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0hbsy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559713498.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0gs1z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RoccoTech00\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559684420.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 2, \"author_fullname\": \"t2_88l5xwz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Android? How?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0gs1z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAndroid? How?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0gs1z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559713220.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0dh59\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"loskutak-the-ptak\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559682620.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 6, \"author_fullname\": \"t2_ke7apcf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"how?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0dh59\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehow?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0dh59/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559711420.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epztbtv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559672254.0, \"send_replies\": true, \"parent_id\": \"t1_epzrglx\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I know that, the point is that I don't want to have to type the folder each time.\\nThe thing is that I have complicated folder names for my figures.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_epztbtv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know that, the point is that I don\\u0026#39;t want to have to type the folder each time.\\nThe thing is that I have complicated folder names for my figures.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/epztbtv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559701054.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epzrglx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559671221.0, \"send_replies\": true, \"parent_id\": \"t3_bwmraz\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Use `[[figs/figurename.png]]`.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_epzrglx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUse \\u003Ccode\\u003E[[figs/figurename.png]]\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/epzrglx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559700021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epywsc9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"_martini97\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559653023.0, \"send_replies\": true, \"parent_id\": \"t1_epyu7qo\", \"score\": 1, \"author_fullname\": \"t2_9eav0az\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, I'm still getting to know elisp so I have a hard time doing things from scratch, I will test it tonight and let you know if it worked\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epywsc9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I\\u0026#39;m still getting to know elisp so I have a hard time doing things from scratch, I will test it tonight and let you know if it worked\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epywsc9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559681823.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw916a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyuk3k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559651343.0, \"send_replies\": true, \"parent_id\": \"t3_bw916a\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I don't think you can do this with C+u method. I think you have to manually edit the link after it is inserted.\\n\\nYou probably can do this though where you want the link:\\n\\nC-c C-l then, type cite: and select the kind of cite you want. You can then select which key to use. And finally you type the page numbers into the description.\", \"link_title\": \"How do you include page number in page number in org-ref with helm?\", \"author_flair_css_class\": null, \"name\": \"t1_epyuk3k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t think you can do this with C+u method. I think you have to manually edit the link after it is inserted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou probably can do this though where you want the link:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EC-c C-l then, type cite: and select the kind of cite you want. You can then select which key to use. And finally you type the page numbers into the description.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/epyuk3k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"report_reasons\": null, \"link_author\": \"kandidate\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"created\": 1559680143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyu7qo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559651075.0, \"send_replies\": true, \"parent_id\": \"t3_bwk33h\", \"score\": 2, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I do something like this in https://github.com/jkitchin/scimax/blob/master/contacts.el#L320 with ivy. There is also a helm version (https://github.com/jkitchin/scimax/blob/master/contacts.el#L518) that I don't use anymore (there is a note that it is slow).\\n\\nThis is roughly built on the format of org-contacts and should be compatible with it.\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epyu7qo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do something like this in \\u003Ca href=\\\"https://github.com/jkitchin/scimax/blob/master/contacts.el#L320\\\"\\u003Ehttps://github.com/jkitchin/scimax/blob/master/contacts.el#L320\\u003C/a\\u003E with ivy. There is also a helm version (\\u003Ca href=\\\"https://github.com/jkitchin/scimax/blob/master/contacts.el#L518\\\"\\u003Ehttps://github.com/jkitchin/scimax/blob/master/contacts.el#L518\\u003C/a\\u003E) that I don\\u0026#39;t use anymore (there is a note that it is slow).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is roughly built on the format of org-contacts and should be compatible with it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epyu7qo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559679875.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epylnd4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559642162.0, \"send_replies\": true, \"parent_id\": \"t3_bwk33h\", \"score\": 2, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"While I can't elispit myself, I'm sure you can use helm or ivy to open a list of contacts and -upon selection- insert directly a link to it...\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epylnd4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile I can\\u0026#39;t elispit myself, I\\u0026#39;m sure you can use helm or ivy to open a list of contacts and -upon selection- insert directly a link to it...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epylnd4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559670962.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwcmiw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epx8v9s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"marcowahl\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559594797.0, \"send_replies\": true, \"parent_id\": \"t3_bwcmiw\", \"score\": 1, \"author_fullname\": \"t2_it55tk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"As far as I can see there is no configuration switch for that. \\n\\nYou could ask for the switch on the Org mailing list.\", \"link_title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"author_flair_css_class\": null, \"name\": \"t1_epx8v9s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs far as I can see there is no configuration switch for that. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou could ask for the switch on the Org mailing list.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/epx8v9s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"report_reasons\": null, \"link_author\": \"BOOF_GOBLIN_69\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"created\": 1559623597.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epwq376\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559581984.0, \"send_replies\": true, \"parent_id\": \"t1_epvbmh0\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"`awhen` is from the `anaphora` package. Just search the package list for \\\"anaphoric\\\".\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epwq376\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Eawhen\\u003C/code\\u003E is from the \\u003Ccode\\u003Eanaphora\\u003C/code\\u003E package. Just search the package list for \\u0026quot;anaphoric\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epwq376/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559610784.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9eiq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw3g8q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cipharius\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559564392.0, \"send_replies\": true, \"parent_id\": \"t1_epw366x\", \"score\": 2, \"author_fullname\": \"t2_2hldsj4s\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I recommend checking out the Org mode manual with `info` command - it's not like I remember these things by heart myself, haha. \\n\\nUseful for both a quick reference and just reading to learn new ways of using Org mode.\", \"link_title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"author_flair_css_class\": null, \"name\": \"t1_epw3g8q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recommend checking out the Org mode manual with \\u003Ccode\\u003Einfo\\u003C/code\\u003E command - it\\u0026#39;s not like I remember these things by heart myself, haha. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUseful for both a quick reference and just reading to learn new ways of using Org mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/epw3g8q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"created\": 1559593192.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9eiq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw366x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gausby\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559564101.0, \"send_replies\": true, \"parent_id\": \"t1_epw2zfg\", \"score\": 1, \"author_fullname\": \"t2_5n9uk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you! Seems to work perfectly. Gotta learn that format\\u2014it is vary handy, but kinda obscure :)\", \"link_title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"author_flair_css_class\": null, \"name\": \"t1_epw366x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you! Seems to work perfectly. Gotta learn that format\\u2014it is vary handy, but kinda obscure :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/epw366x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"created\": 1559592901.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9eiq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw2zfg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cipharius\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559563901.0, \"send_replies\": true, \"parent_id\": \"t3_bw9eiq\", \"score\": 3, \"author_fullname\": \"t2_2hldsj4s\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You could use more specific formula reference. From a quick experiment, this seems to be an alright solution: `#+TBLFM: @\\u003C\\u003C$2..@\\u003E\\u003E$2=@+1$1-$1;U`\", \"link_title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"author_flair_css_class\": null, \"name\": \"t1_epw2zfg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou could use more specific formula reference. From a quick experiment, this seems to be an alright solution: \\u003Ccode\\u003E#+TBLFM: @\\u0026lt;\\u0026lt;$2..@\\u0026gt;\\u0026gt;$2=@+1$1-$1;U\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/epw2zfg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"created\": 1559592701.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559562994.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvz12r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw1z9b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"anotherRedditIdiot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559562801.0, \"send_replies\": true, \"parent_id\": \"t3_bvz12r\", \"score\": 2, \"author_fullname\": \"t2_138ymc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"How do you use this metadata once you have it? Org has hierarchical tags: https://orgmode.org/manual/Tag-hierarchy.html\\nand effort estimates (time based, not energy based): https://orgmode.org/manual/Effort-estimates.html\\n\\nAt first glance, I would implement the resources as a hierarchicy of tags. I'd also ditch the prefix notation and just spell out the full properties, e.g.:\\n\\n :Energy: (1 4)\", \"link_title\": \"Converting org-tags into properties (recursively)\", \"author_flair_css_class\": null, \"name\": \"t1_epw1z9b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow do you use this metadata once you have it? Org has hierarchical tags: \\u003Ca href=\\\"https://orgmode.org/manual/Tag-hierarchy.html\\\"\\u003Ehttps://orgmode.org/manual/Tag-hierarchy.html\\u003C/a\\u003E\\nand effort estimates (time based, not energy based): \\u003Ca href=\\\"https://orgmode.org/manual/Effort-estimates.html\\\"\\u003Ehttps://orgmode.org/manual/Effort-estimates.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt first glance, I would implement the resources as a hierarchicy of tags. I\\u0026#39;d also ditch the prefix notation and just spell out the full properties, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E:Energy: (1 4)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/epw1z9b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"created\": 1559591601.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epvbmh0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fisxoj\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559529328.0, \"send_replies\": true, \"parent_id\": \"t1_epv27o2\", \"score\": 2, \"author_fullname\": \"t2_7r7zc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm just passing through, but if awhen is the same one I'm used to, it's 'anaphoric' when and will bind the value of its condition to the variable 'it' automatically. Which, I hope, answers both your questions.\\n\\nThat said, I don't know what emacs package provides it.\\n\\nIt's equivalent to\\n\\n(let ((it (property \\\"composer\\\"))\\n (when it\\n (string-prefix \\\"C\\\" it)))\\n\\nIn this case.\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epvbmh0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m just passing through, but if awhen is the same one I\\u0026#39;m used to, it\\u0026#39;s \\u0026#39;anaphoric\\u0026#39; when and will bind the value of its condition to the variable \\u0026#39;it\\u0026#39; automatically. Which, I hope, answers both your questions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat said, I don\\u0026#39;t know what emacs package provides it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s equivalent to\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(let ((it (property \\u0026quot;composer\\u0026quot;))\\n (when it\\n (string-prefix \\u0026quot;C\\u0026quot; it)))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn this case.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epvbmh0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559558128.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epv27o2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eeg_bert\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559522318.0, \"send_replies\": true, \"parent_id\": \"t1_epuyu0b\", \"score\": 1, \"author_fullname\": \"t2_uhm4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Do you `when` instead of `awhen`? Also: I get `(void-variable it)` errors when evaluating this.\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epv27o2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDo you \\u003Ccode\\u003Ewhen\\u003C/code\\u003E instead of \\u003Ccode\\u003Eawhen\\u003C/code\\u003E? Also: I get \\u003Ccode\\u003E(void-variable it)\\u003C/code\\u003E errors when evaluating this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epv27o2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559551118.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559520154.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epuyu0b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559519729.0, \"send_replies\": true, \"parent_id\": \"t1_eputaup\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You are very mistaken. ;) For example, the readme shows this example:\\n\\n (org-ql \\\"~/org/music.org\\\"\\n (and (property \\\"genre\\\" \\\"classical\\\")\\n (property \\\"composer\\\" \\\"Chopin\\\")\\n (not (property \\\"key\\\"))))\\n\\nYou can also use arbitrary lisp code, like:\\n\\n (org-ql \\\"/tmp/music.org\\\"\\n (awhen (property \\\"composer\\\")\\n (string-prefix-p \\\"C\\\" it)))\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epuyu0b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou are very mistaken. ;) For example, the readme shows this example:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(org-ql \\u0026quot;~/org/music.org\\u0026quot;\\n (and (property \\u0026quot;genre\\u0026quot; \\u0026quot;classical\\u0026quot;)\\n (property \\u0026quot;composer\\u0026quot; \\u0026quot;Chopin\\u0026quot;)\\n (not (property \\u0026quot;key\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EYou can also use arbitrary lisp code, like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(org-ql \\u0026quot;/tmp/music.org\\u0026quot;\\n (awhen (property \\u0026quot;composer\\u0026quot;)\\n (string-prefix-p \\u0026quot;C\\u0026quot; it)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epuyu0b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559548529.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eputaup\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eeg_bert\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559515754.0, \"send_replies\": true, \"parent_id\": \"t1_epurujf\", \"score\": 1, \"author_fullname\": \"t2_uhm4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I checked out `org-ql`, and it doesn't look like it offers this AFAIK (instead it's just wrapper around regexp searching, unless I'm mistaken).\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_eputaup\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI checked out \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E, and it doesn\\u0026#39;t look like it offers this AFAIK (instead it\\u0026#39;s just wrapper around regexp searching, unless I\\u0026#39;m mistaken).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/eputaup/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559544554.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epurujf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559514832.0, \"send_replies\": true, \"parent_id\": \"t3_bw317n\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"See `org-map-entries` and `org-ql`.\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epurujf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESee \\u003Ccode\\u003Eorg-map-entries\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epurujf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559543632.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559484864.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_aeaq9d\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ept50p2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"frumious\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1559481805.0, \"send_replies\": true, \"parent_id\": \"t1_emwyyjr\", \"score\": 1, \"author_fullname\": \"t2_32juj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"The recent post about Linkz.org got me to revisit this problem and figured I might as well info dump here. \\n\\nI happen to notice that trying to capture on github.com shows an error in Firefox's Browser Console which doesn't show on pages that can be successfully captured.\\n\\n Content Security Policy: The page\\u2019s settings blocked the loading of a resource at inline (\\u201cscript-src\\u201d).\\n\\nSearches show that disabling `security.csp.enable` in `about:config` will \\\"fix\\\" the problem but is very insecure.\\n\\nKnowing what to search on, I see [Sacha](https://sachachua.com/blog/2015/11/capturing-links-quickly-with-emacsclient-org-protocol-and-chrome-shortcut-manager-on-microsoft-windows-8/) pointed out this problem with GitHub many years ago.\\n\\nOther results hinted at the FF add-ons I was using. Disabling them led to no change in results.\\n\\nI have the `org-protocol` send to a script so I can log the action. When a capture fails on `github.com` there is nothing the log. So, it's not even `org-protocol` that is the problem. This makes me suspect \\\"bookmarklets\\\" and lo, [I find this](https://geordgez.github.io/jots/2017/12/31/xss-csp-bookmarklet).\\n\\nIndeed, making a bookmarklet with just:\\n\\n javascript:alert('hello')\\n\\nfails on `github.com` and succeeds elsewhere.\\n\\nAt this point, I'm way over my head in web tech I don't understand but at least there is a new direction to pursue.\\n\\nEdit: more searching and it seems there's a world of hurt over \\\"CSP\\\".\\n\\nThis [bug report](https://bugzilla.mozilla.org/show_bug.cgi?id=866522) has much of the story including mention of [Bookmarklets context menu](https://addons.mozilla.org/en-US/firefox/addon/bookmarklets-context-menu/) add-on. I've tested with `security.csp.enabled` set to `true`. The \\\"hello\\\" test is okay but instead of running the capture bookmarklets properly it loads some \\\"page\\\"\\n\\n blob:https://github.com/014373a1-e732-4c7a-b9d4-3d17c9d00393\\n\\nMy conclusion: I'll disable CSP. This \\\"feature\\\" seems more like a stupid patch for web sites that can't generate HTML free of XSS and gives more control to the server at the expense of the client/user.\", \"link_title\": \"Anyone using Org mode as snippet manager\", \"author_flair_css_class\": null, \"name\": \"t1_ept50p2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe recent post about Linkz.org got me to revisit this problem and figured I might as well info dump here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI happen to notice that trying to capture on github.com shows an error in Firefox\\u0026#39;s Browser Console which doesn\\u0026#39;t show on pages that can be successfully captured.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EContent Security Policy: The page\\u2019s settings blocked the loading of a resource at inline (\\u201cscript-src\\u201d).\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESearches show that disabling \\u003Ccode\\u003Esecurity.csp.enable\\u003C/code\\u003E in \\u003Ccode\\u003Eabout:config\\u003C/code\\u003E will \\u0026quot;fix\\u0026quot; the problem but is very insecure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKnowing what to search on, I see \\u003Ca href=\\\"https://sachachua.com/blog/2015/11/capturing-links-quickly-with-emacsclient-org-protocol-and-chrome-shortcut-manager-on-microsoft-windows-8/\\\"\\u003ESacha\\u003C/a\\u003E pointed out this problem with GitHub many years ago.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOther results hinted at the FF add-ons I was using. Disabling them led to no change in results.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have the \\u003Ccode\\u003Eorg-protocol\\u003C/code\\u003E send to a script so I can log the action. When a capture fails on \\u003Ccode\\u003Egithub.com\\u003C/code\\u003E there is nothing the log. So, it\\u0026#39;s not even \\u003Ccode\\u003Eorg-protocol\\u003C/code\\u003E that is the problem. This makes me suspect \\u0026quot;bookmarklets\\u0026quot; and lo, \\u003Ca href=\\\"https://geordgez.github.io/jots/2017/12/31/xss-csp-bookmarklet\\\"\\u003EI find this\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIndeed, making a bookmarklet with just:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ejavascript:alert(\\u0026#39;hello\\u0026#39;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Efails on \\u003Ccode\\u003Egithub.com\\u003C/code\\u003E and succeeds elsewhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt this point, I\\u0026#39;m way over my head in web tech I don\\u0026#39;t understand but at least there is a new direction to pursue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: more searching and it seems there\\u0026#39;s a world of hurt over \\u0026quot;CSP\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis \\u003Ca href=\\\"https://bugzilla.mozilla.org/show_bug.cgi?id=866522\\\"\\u003Ebug report\\u003C/a\\u003E has much of the story including mention of \\u003Ca href=\\\"https://addons.mozilla.org/en-US/firefox/addon/bookmarklets-context-menu/\\\"\\u003EBookmarklets context menu\\u003C/a\\u003E add-on. I\\u0026#39;ve tested with \\u003Ccode\\u003Esecurity.csp.enabled\\u003C/code\\u003E set to \\u003Ccode\\u003Etrue\\u003C/code\\u003E. The \\u0026quot;hello\\u0026quot; test is okay but instead of running the capture bookmarklets properly it loads some \\u0026quot;page\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eblob:https://github.com/014373a1-e732-4c7a-b9d4-3d17c9d00393\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EMy conclusion: I\\u0026#39;ll disable CSP. This \\u0026quot;feature\\u0026quot; seems more like a stupid patch for web sites that can\\u0026#39;t generate HTML free of XSS and gives more control to the server at the expense of the client/user.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/aeaq9d/anyone_using_org_mode_as_snippet_manager/ept50p2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/aeaq9d/anyone_using_org_mode_as_snippet_manager/\", \"report_reasons\": null, \"link_author\": \"to1ne\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/aeaq9d/anyone_using_org_mode_as_snippet_manager/\", \"created\": 1559510605.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvqyqw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eprv8ip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559431510.0, \"send_replies\": true, \"parent_id\": \"t3_bvqyqw\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"There exists no code to do that. You will have to write it.\\n\\nIt will probably be easier if you use syntax like `E1 E3`, which can be parsed by splitting the value string on a space, or `(E1 E3)`, which can be parsed as a sexp.\", \"link_title\": \"Matching org tasks against an interval of values\", \"author_flair_css_class\": null, \"name\": \"t1_eprv8ip\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere exists no code to do that. You will have to write it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt will probably be easier if you use syntax like \\u003Ccode\\u003EE1 E3\\u003C/code\\u003E, which can be parsed by splitting the value string on a space, or \\u003Ccode\\u003E(E1 E3)\\u003C/code\\u003E, which can be parsed as a sexp.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/eprv8ip/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"created\": 1559460310.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559418889.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epr5ebh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559418621.0, \"send_replies\": true, \"parent_id\": \"t1_epneizy\", \"score\": 3, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'll take the Hersey approach ;)\\n\\nOrg-mode is customizeable because of Emacs and Lisp. You can take any part of it and play with it, and then you can go behind the scenes and build another part completely, if you want to. You can add your own packages into Emacs that integrate into Org, or don't. I can't imagine Org-mode without Emacs. \\n\\nFor me personally, Org-mode is a safe place. It's away from all the other bells and whistles of all the \\\"awesome GUI apps\\\" that my co-worker use. My mangers use [Evernote](https://evernote.com/). Our office has Office 365 that comes with its own tasks and outlook. Windows has numerous to-do apps, and if that not enough, we have our own spreadsheet-project placed in [Smartsheets](https://www.smartsheet.com/) (also now from Microsoft). We have Emails, we do our conference calls in MS Teams, and we work with customers using Zoom. Our ticketing system is yet on another app. \\n\\nIt's a freaking mess, that's what it is. A nightmare. A cacophony of information overload.\\n\\nI used Evernote for about three full years. I've used Google Keep, Todoist, Trello, Wunderlist, and these just the few I can remember. They all failed because they were limited, closed, costly, sell your data to whoever pays them (or threatens them) or who buys them, if they don't get eaten by a bigger company or disappear because they couldn't get bought by one. While this is not the conversation you originally started, is it is very much of a reason for me (and others) to stick to Org-mode and Emacs, which have been pretty much the same all these years. I'm not kidding when I say it's a safe place from all that nonsense.\\n\\nNow take all that I said, hopefully with patience and a grain of humor, and look at it from this way. At the end of the day, I want *my* trusty system that I own. A place that I know how it works, is modified to how I want to work with my data. Sure, my team doesn't speak \\\"org-mode,\\\" and to be honest, they think I'm nuts. My one manager looked at my Linux VM with disapproval, but he knows I'm effective and organized (guess why?) so he lets it slide, for now. I go through the pains of translating my Org universe to Smarthseets, Outlook email, support tickets, because it's worth it. I finally have *one place*, not a plethora of online accounts, where all my information is stored, personal and professional side by side, neat and organized, and I take whatever bits I need and fit it into their crazy buckets. \\n\\nMy tools are a VM with SUSE OS at work (stable, comes with Emacs out of the box, supported well by vmware), Syncthing (to sync everything without worrying about buying more space or [Dropbox sharing my personal journal files for research](https://hbr.org/2018/07/a-study-of-thousands-of-dropbox-projects-reveals-how-successful-teams-collaborate#comment-section)), and Orgzly (my workflow would be impossible without it) on the go. There are challenges, sure. Many times I just want a good picture and I can't have it, or I just need to send a quick checklist to my boss and it comes out with weird square brackets etc \\u0026#x2013; but I make it work. Frankly, I wouldn't be able to do what I do today without Org-mode. The impact on my life has been huge\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epr5ebh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ll take the Hersey approach ;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg-mode is customizeable because of Emacs and Lisp. You can take any part of it and play with it, and then you can go behind the scenes and build another part completely, if you want to. You can add your own packages into Emacs that integrate into Org, or don\\u0026#39;t. I can\\u0026#39;t imagine Org-mode without Emacs. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor me personally, Org-mode is a safe place. It\\u0026#39;s away from all the other bells and whistles of all the \\u0026quot;awesome GUI apps\\u0026quot; that my co-worker use. My mangers use \\u003Ca href=\\\"https://evernote.com/\\\"\\u003EEvernote\\u003C/a\\u003E. Our office has Office 365 that comes with its own tasks and outlook. Windows has numerous to-do apps, and if that not enough, we have our own spreadsheet-project placed in \\u003Ca href=\\\"https://www.smartsheet.com/\\\"\\u003ESmartsheets\\u003C/a\\u003E (also now from Microsoft). We have Emails, we do our conference calls in MS Teams, and we work with customers using Zoom. Our ticketing system is yet on another app. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a freaking mess, that\\u0026#39;s what it is. A nightmare. A cacophony of information overload.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used Evernote for about three full years. I\\u0026#39;ve used Google Keep, Todoist, Trello, Wunderlist, and these just the few I can remember. They all failed because they were limited, closed, costly, sell your data to whoever pays them (or threatens them) or who buys them, if they don\\u0026#39;t get eaten by a bigger company or disappear because they couldn\\u0026#39;t get bought by one. While this is not the conversation you originally started, is it is very much of a reason for me (and others) to stick to Org-mode and Emacs, which have been pretty much the same all these years. I\\u0026#39;m not kidding when I say it\\u0026#39;s a safe place from all that nonsense.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow take all that I said, hopefully with patience and a grain of humor, and look at it from this way. At the end of the day, I want \\u003Cem\\u003Emy\\u003C/em\\u003E trusty system that I own. A place that I know how it works, is modified to how I want to work with my data. Sure, my team doesn\\u0026#39;t speak \\u0026quot;org-mode,\\u0026quot; and to be honest, they think I\\u0026#39;m nuts. My one manager looked at my Linux VM with disapproval, but he knows I\\u0026#39;m effective and organized (guess why?) so he lets it slide, for now. I go through the pains of translating my Org universe to Smarthseets, Outlook email, support tickets, because it\\u0026#39;s worth it. I finally have \\u003Cem\\u003Eone place\\u003C/em\\u003E, not a plethora of online accounts, where all my information is stored, personal and professional side by side, neat and organized, and I take whatever bits I need and fit it into their crazy buckets. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy tools are a VM with SUSE OS at work (stable, comes with Emacs out of the box, supported well by vmware), Syncthing (to sync everything without worrying about buying more space or \\u003Ca href=\\\"https://hbr.org/2018/07/a-study-of-thousands-of-dropbox-projects-reveals-how-successful-teams-collaborate#comment-section\\\"\\u003EDropbox sharing my personal journal files for research\\u003C/a\\u003E), and Orgzly (my workflow would be impossible without it) on the go. There are challenges, sure. Many times I just want a good picture and I can\\u0026#39;t have it, or I just need to send a quick checklist to my boss and it comes out with weird square brackets etc \\u0026#x2013; but I make it work. Frankly, I wouldn\\u0026#39;t be able to do what I do today without Org-mode. The impact on my life has been huge\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/epr5ebh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559447421.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bd4ka9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epqpszq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"the_ocean\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559410198.0, \"send_replies\": true, \"parent_id\": \"t1_epqludy\", \"score\": 1, \"author_fullname\": \"t2_3ezlt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"That\\u2019s a good idea that hadn\\u2019t occurred to me - thanks!\", \"link_title\": \"Hierarchical Agendas?\", \"author_flair_css_class\": null, \"name\": \"t1_epqpszq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u2019s a good idea that hadn\\u2019t occurred to me - thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/epqpszq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"report_reasons\": null, \"link_author\": \"SmoothInternet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"created\": 1559438998.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epqot95\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559409722.0, \"send_replies\": true, \"parent_id\": \"t3_btzy6m\", \"score\": 1, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"what's the point?\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_epqot95\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewhat\\u0026#39;s the point?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/epqot95/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559438522.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bd4ka9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epqludy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559408133.0, \"send_replies\": true, \"parent_id\": \"t1_ekvtlyj\", \"score\": 1, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I find the 'CATEGORY' property more helpful for this, personally, as it displays to the left hand side of the agenda like it's own special agenda tag.\", \"link_title\": \"Hierarchical Agendas?\", \"author_flair_css_class\": null, \"name\": \"t1_epqludy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find the \\u0026#39;CATEGORY\\u0026#39; property more helpful for this, personally, as it displays to the left hand side of the agenda like it\\u0026#39;s own special agenda tag.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/epqludy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"report_reasons\": null, \"link_author\": \"SmoothInternet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"created\": 1559436933.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559407988.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bd4ka9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epql3ag\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559407719.0, \"send_replies\": true, \"parent_id\": \"t3_bd4ka9\", \"score\": 2, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"If I'm understanding your question correctly, it sounds like you just want TODO keywords and filters. And maybe org-edna. For example, for the 'sub-TODOs that need attention', perhaps a \\\"NEXT\\\" keyword would be fitting, so you could pull all \\\"NEXT\\\" headers into a view (I do this). And to omit 'blocked' TODOs, you can play with the variable org-agenda-todo-list-sublevels in conjunction with the above (I also filter redundant TODOs like this from my agenda views, including global search).\", \"link_title\": \"Hierarchical Agendas?\", \"author_flair_css_class\": null, \"name\": \"t1_epql3ag\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I\\u0026#39;m understanding your question correctly, it sounds like you just want TODO keywords and filters. And maybe org-edna. For example, for the \\u0026#39;sub-TODOs that need attention\\u0026#39;, perhaps a \\u0026quot;NEXT\\u0026quot; keyword would be fitting, so you could pull all \\u0026quot;NEXT\\u0026quot; headers into a view (I do this). And to omit \\u0026#39;blocked\\u0026#39; TODOs, you can play with the variable org-agenda-todo-list-sublevels in conjunction with the above (I also filter redundant TODOs like this from my agenda views, including global search).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/epql3ag/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"report_reasons\": null, \"link_author\": \"SmoothInternet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"created\": 1559436519.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eposeia\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"doulos05\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559352091.0, \"send_replies\": true, \"parent_id\": \"t1_epo4x0j\", \"score\": 1, \"author_fullname\": \"t2_jqpn4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Well, one major barrier is \\\"Why would I look for my todo list manager in the Text Editors list?\\\"\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eposeia\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, one major barrier is \\u0026quot;Why would I look for my todo list manager in the Text Editors list?\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/eposeia/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559380891.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epo4x0j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mexicorn\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559338461.0, \"send_replies\": true, \"parent_id\": \"t1_epneizy\", \"score\": 2, \"author_fullname\": \"t2_3xl2j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm curious as to what a \\\"stand-alone\\\" version of org mode would look like. One of the main strengths of org-mode is its nearly limitless customization, which is made possible by the underlying Lisp. I feel like anything that hopes to decouple from emacs but retain the same functionality \\u0026 customization would inevitably turn into an emacs clone project.\\n\\nPerhaps it's worth thinking of the opposite question: what overhead and adoption barriers are present in getting people into emacs that would not be present in some stand-alone org mode app?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epo4x0j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m curious as to what a \\u0026quot;stand-alone\\u0026quot; version of org mode would look like. One of the main strengths of org-mode is its nearly limitless customization, which is made possible by the underlying Lisp. I feel like anything that hopes to decouple from emacs but retain the same functionality \\u0026amp; customization would inevitably turn into an emacs clone project.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPerhaps it\\u0026#39;s worth thinking of the opposite question: what overhead and adoption barriers are present in getting people into emacs that would not be present in some stand-alone org mode app?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/epo4x0j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559367261.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epneizy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ManiacMcCree\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559326165.0, \"send_replies\": true, \"parent_id\": \"t3_bv747t\", \"score\": 5, \"author_fullname\": \"t2_130p93\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I feel like org-mode is hands down the best outlining and writing tool in existence. \\n\\nIn terms of task management and general note taking though, I always end up walking away from it due to the inability to work with teams, clunkiness of adding different kinds of media, and the weak mobile workflow. \\n\\nIs there a \\\"future\\\" of org-mode? Or do you think that the app is as mature as it's ever going to be? \\n\\nHonestly it is sad to me to see how well markdown has taken off when org is such a more powerful format. \\n\\nI'd personally like to see org uncoupled from emacs, as I think it's got more value moving into the future than emacs itself. Imagine a new generation of note-taking app (a-la joplin, notability etc.) but based on org-mode rather than markdown. \\n\\n(and yes, I know about orgzly etc. - it's okay, but doesn't address the big issues)\\n\\nHeresy? Good idea? LMK\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epneizy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI feel like org-mode is hands down the best outlining and writing tool in existence. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn terms of task management and general note taking though, I always end up walking away from it due to the inability to work with teams, clunkiness of adding different kinds of media, and the weak mobile workflow. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a \\u0026quot;future\\u0026quot; of org-mode? Or do you think that the app is as mature as it\\u0026#39;s ever going to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHonestly it is sad to me to see how well markdown has taken off when org is such a more powerful format. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d personally like to see org uncoupled from emacs, as I think it\\u0026#39;s got more value moving into the future than emacs itself. Imagine a new generation of note-taking app (a-la joplin, notability etc.) but based on org-mode rather than markdown. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(and yes, I know about orgzly etc. - it\\u0026#39;s okay, but doesn\\u0026#39;t address the big issues)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHeresy? Good idea? LMK\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/epneizy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559354965.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epnachi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"OverthrowDissent\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559324196.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": -1, \"author_fullname\": \"t2_37uew703\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Add the word \\\"TODO\\\" in a list item like:\\n\\n * TODO Item 1\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_epnachi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAdd the word \\u0026quot;TODO\\u0026quot; in a list item like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Item 1\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/epnachi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559352996.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplr2oq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559301731.0, \"send_replies\": true, \"parent_id\": \"t1_epjzbl6\", \"score\": 1, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hello Tsdwm52. \\n\\nWhile it's not exactly what I was searching for (the next comment points to it), it has some very interesting options that I will explore further. \\n\\nThanks a lot for your help... :)\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_eplr2oq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello Tsdwm52. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile it\\u0026#39;s not exactly what I was searching for (the next comment points to it), it has some very interesting options that I will explore further. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks a lot for your help... :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/eplr2oq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559330531.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplq73q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559301232.0, \"send_replies\": true, \"parent_id\": \"t1_epk2sub\", \"score\": 1, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hello Gusbrs. You found it, that was exactly wat I was searching for. \\n\\nThanks a lot, I sure others will benefit from your answer here too... :)\\n\\n\\u0026#x200B;\\n\\nBest regards.\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_eplq73q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello Gusbrs. You found it, that was exactly wat I was searching for. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks a lot, I sure others will benefit from your answer here too... :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBest regards.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/eplq73q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559330032.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epk2sub\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559266336.0, \"send_replies\": true, \"parent_id\": \"t3_buzxzp\", \"score\": 2, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"From the `memoir` docs:\\n\\n\\u003E The commands \\\\tableofcontents, \\\\listoffigures and \\\\listoftables typeset, repectively, the Table of Contents (ToC), List of Figures (LoF) and List of Tables (LoT). In memoir , unlike the standard classes, the unstarred versions add their respective titles to the ToC. The starred versions act like the standard classes\\u2019 unstarred versions as they don\\u2019t add their titles to the ToC.\\n\\nSo, if you add the command directly, you can simply use the starred version. If this is added by the Org exporter, you will have to find a way to convince it to do the same thing by tweaking your customizations.\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_epk2sub\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFrom the \\u003Ccode\\u003Ememoir\\u003C/code\\u003E docs:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe commands \\\\tableofcontents, \\\\listoffigures and \\\\listoftables typeset, repectively, the Table of Contents (ToC), List of Figures (LoF) and List of Tables (LoT). In memoir , unlike the standard classes, the unstarred versions add their respective titles to the ToC. The starred versions act like the standard classes\\u2019 unstarred versions as they don\\u2019t add their titles to the ToC.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESo, if you add the command directly, you can simply use the starred version. If this is added by the Org exporter, you will have to find a way to convince it to do the same thing by tweaking your customizations.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/epk2sub/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559295136.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epjzbl6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdwm52\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559263892.0, \"send_replies\": true, \"parent_id\": \"t3_buzxzp\", \"score\": 2, \"author_fullname\": \"t2_mj8i2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is a LaTeX question. The answers here will help: [https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc](https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc). The answers include a bit on Memoir-specific changes.\\n\\nYou'll probably want to make the changes in the Org mode file using #+LATEX\\\\_HEADER:\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_epjzbl6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is a LaTeX question. The answers here will help: \\u003Ca href=\\\"https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc\\\"\\u003Ehttps://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc\\u003C/a\\u003E. The answers include a bit on Memoir-specific changes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;ll probably want to make the changes in the Org mode file using #+LATEX_HEADER:\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/epjzbl6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559292692.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buopeh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eph5z4d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaiwen1\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559222771.0, \"send_replies\": true, \"parent_id\": \"t1_epf1oai\", \"score\": 2, \"author_fullname\": \"t2_6qzsr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This function does it:\\n\\n```\\n(defun org-hide-src-block-delimiters()\\n (interactive)\\n (save-excursion (goto-char (point-max))\\n (while (re-search-backward \\\"#\\\\\\\\+BEGIN_SRC\\\\\\\\|#\\\\\\\\+END_SRC\\\" nil t)\\n (let ((ov (make-overlay (line-beginning-position)\\n (1+ (line-end-position)))))\\n (overlay-put ov 'invisible t)))))\\n```\\n\\nThis would be better as a toggle but I haven't quite figured out how to do that yet.\", \"link_title\": \"How can I hide source block header and footer?\", \"author_flair_css_class\": null, \"name\": \"t1_eph5z4d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis function does it:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(defun org-hide-src-block-delimiters()\\n (interactive)\\n (save-excursion (goto-char (point-max))\\n (while (re-search-backward \\u0026quot;#\\\\\\\\+BEGIN_SRC\\\\\\\\|#\\\\\\\\+END_SRC\\u0026quot; nil t)\\n (let ((ov (make-overlay (line-beginning-position)\\n (1+ (line-end-position)))))\\n (overlay-put ov \\u0026#39;invisible t)))))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis would be better as a toggle but I haven\\u0026#39;t quite figured out how to do that yet.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/eph5z4d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"created\": 1559251571.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buopeh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epflcbr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"venomspinner\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559197849.0, \"send_replies\": true, \"parent_id\": \"t1_epf1oai\", \"score\": 1, \"author_fullname\": \"t2_ejpaa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"you can make its foreground same color as the background of your emacs theme.\", \"link_title\": \"How can I hide source block header and footer?\", \"author_flair_css_class\": null, \"name\": \"t1_epflcbr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyou can make its foreground same color as the background of your emacs theme.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/epflcbr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"created\": 1559226649.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buopeh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epf1oai\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaiwen1\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559189916.0, \"send_replies\": true, \"parent_id\": \"t3_buopeh\", \"score\": 1, \"author_fullname\": \"t2_6qzsr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Found this: [https://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters](https://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters).\\n\\nNot quite there, but close.\", \"link_title\": \"How can I hide source block header and footer?\", \"author_flair_css_class\": null, \"name\": \"t1_epf1oai\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFound this: \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters\\\"\\u003Ehttps://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot quite there, but close.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/epf1oai/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"created\": 1559218716.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdnqd3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559170003.0, \"send_replies\": true, \"parent_id\": \"t1_epdmeme\", \"score\": 1, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"No, the macros will work only if you export from Org. I export my master Org file to README.org for GitHub. \\n\\nIf you don't want to use `ox-org`, you'll have to expand those macros manually.\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epdnqd3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, the macros will work only if you export from Org. I export my master Org file to README.org for GitHub. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you don\\u0026#39;t want to use \\u003Ccode\\u003Eox-org\\u003C/code\\u003E, you\\u0026#39;ll have to expand those macros manually.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epdnqd3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559198803.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdmeme\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hardrived_\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559169203.0, \"send_replies\": true, \"parent_id\": \"t1_epdajfx\", \"score\": 1, \"author_fullname\": \"t2_ycu34\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm not exporting to another file format so would a Macro work? Github doesn't technically render Org file like it does Markdown. I tried this method and it didn't replace the text with the Macro.\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epdmeme\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not exporting to another file format so would a Macro work? Github doesn\\u0026#39;t technically render Org file like it does Markdown. I tried this method and it didn\\u0026#39;t replace the text with the Macro.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epdmeme/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559198003.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsgj6t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdlg9r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559168638.0, \"send_replies\": true, \"parent_id\": \"t3_bsgj6t\", \"score\": 1, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"finally synced w/ syncthing and termux on android. this lead to me wanting to consolidate my files a bit, so I'm running with [wiki.org](https://wiki.org), [archives.org](https://archives.org), [tasks.org](https://tasks.org), refile.org and \\\\~/emacs.d/configuration.org being my agenda files. previously I was just using agenda/ as my org-agenda directory, but I like this set up a lot more. I'm still not sure what merits a new file, and i think about it too much. having monolithic files is nice now that I useC-c / (sparse tree view), C-c C-j (jump to header) and C-x n s (narrow to subtree)\\n\\n\\u0026#x200B;\\n\\nalso, finally moved over to a literate configuration and it's been amazingly helpful and was painless to set up :-) this short article was a good guide: [https://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration](https://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 24, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epdlg9r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efinally synced w/ syncthing and termux on android. this lead to me wanting to consolidate my files a bit, so I\\u0026#39;m running with \\u003Ca href=\\\"https://wiki.org\\\"\\u003Ewiki.org\\u003C/a\\u003E, \\u003Ca href=\\\"https://archives.org\\\"\\u003Earchives.org\\u003C/a\\u003E, \\u003Ca href=\\\"https://tasks.org\\\"\\u003Etasks.org\\u003C/a\\u003E, refile.org and ~/emacs.d/configuration.org being my agenda files. previously I was just using agenda/ as my org-agenda directory, but I like this set up a lot more. I\\u0026#39;m still not sure what merits a new file, and i think about it too much. having monolithic files is nice now that I useC-c / (sparse tree view), C-c C-j (jump to header) and C-x n s (narrow to subtree)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealso, finally moved over to a literate configuration and it\\u0026#39;s been amazingly helpful and was painless to set up :-) this short article was a good guide: \\u003Ca href=\\\"https://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration\\\"\\u003Ehttps://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/epdlg9r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"created\": 1559197438.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdajfx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559163831.0, \"send_replies\": true, \"parent_id\": \"t3_buhsue\", \"score\": 3, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I use these:\\n\\n #+macro: travis [[https://travis-ci.org/kaushalmodi/ox-hugo][https://travis-ci.org/kaushalmodi/ox-hugo.svg?branch=master]]\\n #+macro: melpa [[https://melpa.org/#/ox-hugo][file:https://melpa.org/packages/ox-hugo-badge.svg]]\\n #+macro: GPLv3 [[https://www.gnu.org/licenses/gpl-3.0][https://img.shields.io/badge/License-GPL%20v3-blue.svg]]\\n\\n {{{travis}}} {{{melpa}}} {{{GPLv3}}}\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epdajfx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use these:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+macro: travis [[https://travis-ci.org/kaushalmodi/ox-hugo][https://travis-ci.org/kaushalmodi/ox-hugo.svg?branch=master]]\\n#+macro: melpa [[https://melpa.org/#/ox-hugo][file:https://melpa.org/packages/ox-hugo-badge.svg]]\\n#+macro: GPLv3 [[https://www.gnu.org/licenses/gpl-3.0][https://img.shields.io/badge/License-GPL%20v3-blue.svg]]\\n\\n{{{travis}}} {{{melpa}}} {{{GPLv3}}}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epdajfx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559192631.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epcozp9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hardrived_\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559156766.0, \"send_replies\": true, \"parent_id\": \"t1_epco8wc\", \"score\": 1, \"author_fullname\": \"t2_ycu34\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Funny enough this how I redid the markdown formatted badge into org format. But I can't believe I forgot that MELPA shows badge codes in HTML, Markdown, and Org lol\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epcozp9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFunny enough this how I redid the markdown formatted badge into org format. But I can\\u0026#39;t believe I forgot that MELPA shows badge codes in HTML, Markdown, and Org lol\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epcozp9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559185566.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epco8wc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"akirakom\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559156511.0, \"send_replies\": true, \"parent_id\": \"t3_buhsue\", \"score\": 2, \"author_fullname\": \"t2_ouz7ysa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"- An example of Circle CI badge in Org: `[[https://circleci.com/gh/akirak/emacs.d/tree/master][https://circleci.com/gh/akirak/emacs.d/tree/master.svg?style=svg]]`\\n- MELPA: `[[https://melpa.org/#/org-reverse-datetree][https://melpa.org/packages/org-reverse-datetree-badge.svg]]`\\n- Travis CI: `[[https://travis-ci.org/akirak/org-reverse-datetree][https://travis-ci.org/akirak/org-reverse-datetree.svg?branch=master]]`\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epco8wc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cul\\u003E\\n\\u003Cli\\u003EAn example of Circle CI badge in Org: \\u003Ccode\\u003E[[https://circleci.com/gh/akirak/emacs.d/tree/master][https://circleci.com/gh/akirak/emacs.d/tree/master.svg?style=svg]]\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMELPA: \\u003Ccode\\u003E[[https://melpa.org/#/org-reverse-datetree][https://melpa.org/packages/org-reverse-datetree-badge.svg]]\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETravis CI: \\u003Ccode\\u003E[[https://travis-ci.org/akirak/org-reverse-datetree][https://travis-ci.org/akirak/org-reverse-datetree.svg?branch=master]]\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epco8wc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559185311.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbd7gf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"doulos05\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559140998.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": 3, \"author_fullname\": \"t2_jqpn4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"There's an important design decision at work here.\\n\\nHeaders are where you organize your tasks, lists are where you itemize the steps to complete your tasks.\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_epbd7gf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s an important design decision at work here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHeaders are where you organize your tasks, lists are where you itemize the steps to complete your tasks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/epbd7gf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559169798.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eparx61\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jazzpecq\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559132539.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": 1, \"author_fullname\": \"t2_hv9nd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"TODO keywords and tags belong to headings only. For list items you have to use checkboxes.\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_eparx61\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETODO keywords and tags belong to headings only. For list items you have to use checkboxes.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/eparx61/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559161339.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eparjs7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ccharles\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559132378.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": 6, \"author_fullname\": \"t2_bhd0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Your best bet is probably to use [checkboxes][1]:\\n\\n - [ ] One\\n - [ ] Two\\n\\nYou can `C-c C-c` on an item to toggle it, and this will be reflected in headings if you have them, e.g.:\\n\\n * Some heading [1/2]\\n - [ ] One\\n - [X] Two\\n\\n[1]: https://orgmode.org/manual/Checkboxes.html#Checkboxes\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_eparjs7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYour best bet is probably to use \\u003Ca href=\\\"https://orgmode.org/manual/Checkboxes.html#Checkboxes\\\"\\u003Echeckboxes\\u003C/a\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E- [ ] One\\n- [ ] Two\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EYou can \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E on an item to toggle it, and this will be reflected in headings if you have them, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Some heading [1/2]\\n - [ ] One\\n - [X] Two\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/eparjs7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559161178.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ajngqj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep9vhci\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559116967.0, \"send_replies\": true, \"parent_id\": \"t3_ajngqj\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Update \\u003C2019-05-29\\u003E: Found a crude workaround I probably can live with: I just bound a function to `(search-forward \\\"[ ]\\\"))`.\", \"link_title\": \"Jump to the next unchecked checkbox in a list\", \"author_flair_css_class\": null, \"name\": \"t1_ep9vhci\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUpdate \\u0026lt;2019-05-29\\u0026gt;: Found a crude workaround I probably can live with: I just bound a function to \\u003Ccode\\u003E(search-forward \\u0026quot;[ ]\\u0026quot;))\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ajngqj/jump_to_the_next_unchecked_checkbox_in_a_list/ep9vhci/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ajngqj/jump_to_the_next_unchecked_checkbox_in_a_list/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ajngqj/jump_to_the_next_unchecked_checkbox_in_a_list/\", \"created\": 1559145767.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu1tby\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep701qj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vale_fallacia\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559075655.0, \"send_replies\": true, \"parent_id\": \"t1_ep6tih1\", \"score\": 2, \"author_fullname\": \"t2_2al88q3x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Perfect, thank you for answering. That was exactly it!\", \"link_title\": \"Possible confusion over ORDERED property\", \"author_flair_css_class\": null, \"name\": \"t1_ep701qj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPerfect, thank you for answering. That was exactly it!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/ep701qj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"created\": 1559104455.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu1tby\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep6tih1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"telap\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559073371.0, \"send_replies\": true, \"parent_id\": \"t3_bu1tby\", \"score\": 4, \"author_fullname\": \"t2_yr0wz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Check the value of the variable `org-enforce-todo-dependencies`.\\n\\n\\u0026#x200B;\\n\\nFrom documentation of the variable:\\n\\n\\u003ENon-nil means undone TODO entries will block switching the parent to DONE. \\n\\u003E \\n\\u003EAlso, if a parent has an :ORDERED: property, switching an entry to DONE will be blocked if any prior sibling is not yet done. \\n\\u003E \\n\\u003EFinally, if the parent is blocked because of ordered siblings of its own, the child will also be blocked.\", \"link_title\": \"Possible confusion over ORDERED property\", \"author_flair_css_class\": null, \"name\": \"t1_ep6tih1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECheck the value of the variable \\u003Ccode\\u003Eorg-enforce-todo-dependencies\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom documentation of the variable:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENon-nil means undone TODO entries will block switching the parent to DONE. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, if a parent has an :ORDERED: property, switching an entry to DONE will be blocked if any prior sibling is not yet done. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally, if the parent is blocked because of ordered siblings of its own, the child will also be blocked.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/ep6tih1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"created\": 1559102171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep5vaqx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"juustgowithit\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559061322.0, \"send_replies\": true, \"parent_id\": \"t1_ep53pu4\", \"score\": 2, \"author_fullname\": \"t2_dxeab\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I love reading this so much. I barely even use emacs but even that is thanks to the discussions on this sub\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep5vaqx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love reading this so much. I barely even use emacs but even that is thanks to the discussions on this sub\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep5vaqx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559090122.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep5p4a5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559059117.0, \"send_replies\": true, \"parent_id\": \"t1_ep56l9p\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Incidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on)\\n\\nFollow the instructions in the readme carefully and it will work.\\n\\n\\u003E Anyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\n\\nThey do different things. They are complementary.\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep5p4a5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIncidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on)\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFollow the instructions in the readme carefully and it will work.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAnyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey do different things. They are complementary.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep5p4a5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559087917.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_br2g1m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep5m7f3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"little_big_h\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559057968.0, \"send_replies\": true, \"parent_id\": \"t3_br2g1m\", \"score\": 1, \"author_fullname\": \"t2_11kij2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Your question is way to vague to be properly answered. Trying to anticipate your actual problem, here is a suggestion: You have to add \\n'mathematica to 'org-babel-Load-languages .\", \"link_title\": \"How do I use ob-mathematica.el?\", \"author_flair_css_class\": null, \"name\": \"t1_ep5m7f3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYour question is way to vague to be properly answered. Trying to anticipate your actual problem, here is a suggestion: You have to add \\n\\u0026#39;mathematica to \\u0026#39;org-babel-Load-languages .\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/ep5m7f3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"created\": 1559086768.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep56l9p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jackjackk0\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559051301.0, \"send_replies\": true, \"parent_id\": \"t1_ep53pu4\", \"score\": 2, \"author_fullname\": \"t2_q52rf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, I see, it's probably not as straightforward as originally thought. Maybe, an easier way could b: 1) when capturing an item, add automatically deadline based on parent one, and 2) when changing a deadline, change the deadline of subitems... but then not sure it is worth the time. Incidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on). probably I have some conflicting configuration. Anyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\n\\nedit: fix typo\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep56l9p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I see, it\\u0026#39;s probably not as straightforward as originally thought. Maybe, an easier way could b: 1) when capturing an item, add automatically deadline based on parent one, and 2) when changing a deadline, change the deadline of subitems... but then not sure it is worth the time. Incidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on). probably I have some conflicting configuration. Anyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eedit: fix typo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep56l9p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559080101.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep53pu4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559050086.0, \"send_replies\": true, \"parent_id\": \"t3_btzy6m\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I think the question is, inherit it in what context? I guess you mean in Org Agenda views--in which case I think the answer is, good luck, because a) the Org Agenda code is not generally well suited to modifying parts of its functionality, and b) the agenda code specifically searches for \\\"planning lines\\\" to build agenda views, which would preclude what you are wanting.\\n\\nMaybe you're wanting \\\"project\\\" functionality, which Org provides by other means. Refer to the documentation and Google searches for more info on that.\\n\\nYou might also find the `org-ql` package helpful in building an agenda-like view with certain items.\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep53pu4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think the question is, inherit it in what context? I guess you mean in Org Agenda views--in which case I think the answer is, good luck, because a) the Org Agenda code is not generally well suited to modifying parts of its functionality, and b) the agenda code specifically searches for \\u0026quot;planning lines\\u0026quot; to build agenda views, which would preclude what you are wanting.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaybe you\\u0026#39;re wanting \\u0026quot;project\\u0026quot; functionality, which Org provides by other means. Refer to the documentation and Google searches for more info on that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou might also find the \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E package helpful in building an agenda-like view with certain items.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep53pu4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559078886.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep4llp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559042069.0, \"send_replies\": true, \"parent_id\": \"t3_btdd9b\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You may also find this helpful: https://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_ep4llp8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou may also find this helpful: \\u003Ca href=\\\"https://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\\\"\\u003Ehttps://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/ep4llp8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1559070869.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btovhk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep38ai6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559019320.0, \"send_replies\": true, \"parent_id\": \"t1_ep1m1sg\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yeah, rather than setting a prefix, it would be easier to use `org-super-agenda` to put them in groups accordingly.\", \"link_title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"author_flair_css_class\": null, \"name\": \"t1_ep38ai6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, rather than setting a prefix, it would be easier to use \\u003Ccode\\u003Eorg-super-agenda\\u003C/code\\u003E to put them in groups accordingly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/ep38ai6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"report_reasons\": null, \"link_author\": \"werzor\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"created\": 1559048120.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boymdt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep34vwh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559017112.0, \"send_replies\": true, \"parent_id\": \"t1_eoyztpe\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Okay, but that doesn't help us find and fix any problem that may exist in Org 9.\", \"link_title\": \"Org-agenda and tags position\", \"author_flair_css_class\": null, \"name\": \"t1_ep34vwh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOkay, but that doesn\\u0026#39;t help us find and fix any problem that may exist in Org 9.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/ep34vwh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"report_reasons\": null, \"link_author\": \"cyberl3o\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"created\": 1559045912.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btovhk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep1m1sg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SmoothInternet\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558990945.0, \"send_replies\": true, \"parent_id\": \"t3_btovhk\", \"score\": 2, \"author_fullname\": \"t2_baw354f\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You might want to look for the org-super-agenda package. I think it simplifies what you want to do. It\\u2019s available on MELPA, but the complete docs are on Github.\", \"link_title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"author_flair_css_class\": null, \"name\": \"t1_ep1m1sg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou might want to look for the org-super-agenda package. I think it simplifies what you want to do. It\\u2019s available on MELPA, but the complete docs are on Github.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/ep1m1sg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"report_reasons\": null, \"link_author\": \"werzor\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"created\": 1559019745.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep0mauh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BeetleB\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1558977342.0, \"send_replies\": true, \"parent_id\": \"t1_eowkgw9\", \"score\": 1, \"author_fullname\": \"t2_1tduz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Actually, it's \\u003C\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_ep0mauh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EActually, it\\u0026#39;s \\u0026lt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/ep0mauh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1559006142.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boymdt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoyztpe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cyberl3o\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1558949639.0, \"send_replies\": true, \"parent_id\": \"t1_eoa9yk2\", \"score\": 1, \"author_fullname\": \"t2_3rz1w0lq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hi! Sorry for the delay. I downgrade to Org 8.2.10 and all work fine ;)\", \"link_title\": \"Org-agenda and tags position\", \"author_flair_css_class\": null, \"name\": \"t1_eoyztpe\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi! Sorry for the delay. I downgrade to Org 8.2.10 and all work fine ;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/eoyztpe/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"report_reasons\": null, \"link_author\": \"cyberl3o\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"created\": 1558978439.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eowlzq0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ralphbluecoat\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1558911652.0, \"send_replies\": true, \"parent_id\": \"t1_eowkgw9\", \"score\": 3, \"author_fullname\": \"t2_4hzm8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"That works. Thank you.\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_eowlzq0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat works. Thank you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/eowlzq0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1558940452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eowkgw9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zreeon\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1558911049.0, \"send_replies\": true, \"parent_id\": \"t3_btdd9b\", \"score\": 3, \"author_fullname\": \"t2_h5re9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is built into the agenda dispatcher. I think the default binding is \\u003E\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_eowkgw9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is built into the agenda dispatcher. I think the default binding is \\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/eowkgw9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1558939849.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}], \"after\": \"t1_eowkgw9\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["253299"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:50 GMT"], "x-ratelimit-remaining": ["594.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["6"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930750.098359,VS0,VE558"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["250"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T18:05:50"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_eqac83q"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:51 GMT"], "x-ratelimit-remaining": ["593.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["7"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930751.122285,VS0,VE90"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["249"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_eqac83q"}, "recorded_at": "2019-06-07T18:05:51"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is it possible to get a quick org-agenda shown for just all the dates in the current org-buffer? I have too many little projects with their own org-documents, and usually I am only interested in what I need to do on the project I have right in front of me, not the default agenda files.\", \"author_fullname\": \"t2_68in0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Agenda for current buffer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_bxwovd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559954023.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to get a quick org-agenda shown for just all the dates in the current org-buffer? I have too many little projects with their own org-documents, and usually I am only interested in what I need to do on the project I have right in front of me, not the default agenda files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxwovd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"livrem\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559925223.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxu83g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559940568.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu83g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"parent_whitelist_status\": null, \"stickied\": true, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559911768.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have [ob-mathematica](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el) (which allows me to execute mathematica snippets via org-babel) combined with [wolfram-mode](https://github.com/kawabata/wolfram-mode) (which provides syntax highlighting).\\n\\nSo right now I have the conundrum that if I label an org-babel source block `mathematica`, then I can evaluate it via `C-c C-c` but without syntax highlighting. On the other hand, if I label the block `wolfram`, then I can no longer evaluate it, but I get source highlighting!\\n\\nHow do I combine these two to get the best of both worlds?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxooz7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559899393.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Eob-mathematica\\u003C/a\\u003E (which allows me to execute mathematica snippets via org-babel) combined with \\u003Ca href=\\\"https://github.com/kawabata/wolfram-mode\\\"\\u003Ewolfram-mode\\u003C/a\\u003E (which provides syntax highlighting).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo right now I have the conundrum that if I label an org-babel source block \\u003Ccode\\u003Emathematica\\u003C/code\\u003E, then I can evaluate it via \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E but without syntax highlighting. On the other hand, if I label the block \\u003Ccode\\u003Ewolfram\\u003C/code\\u003E, then I can no longer evaluate it, but I get source highlighting!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I combine these two to get the best of both worlds?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxooz7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559870593.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone. Has anyone some hints on how to make helm`(org-refile)` case insensitive? E.g. I want to refile the current headline below `RubyBerlin/ToDo` (note the capital `D`). Typing the correct `\\\"Berlin/ToDo\\\"` will work and offer the headline to refile below:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/6swhzzsmvp231.png\\n\\nBut typing the lower case version `\\\"Berlin/Todo\\\"` will only give results of headlines below the one I want to refile to:\\n\\n \\n\\nhttps://i.redd.it/9mlv6bxuvp231.png\\n\\nI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\", \"author_fullname\": \"t2_5cbr5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Case insensitive (org-refile)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"6swhzzsmvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 91, \"x\": 467, \"u\": \"https://i.redd.it/6swhzzsmvp231.png\"}, \"m\": \"image/png\", \"id\": \"6swhzzsmvp231\"}, \"9mlv6bxuvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 124, \"x\": 692, \"u\": \"https://i.redd.it/9mlv6bxuvp231.png\"}, \"m\": \"image/png\", \"id\": \"9mlv6bxuvp231\"}}, \"name\": \"t3_bxfd1r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"author_cakeday\": true, \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847398.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone. Has anyone some hints on how to make helm\\u003Ccode\\u003E(org-refile)\\u003C/code\\u003E case insensitive? E.g. I want to refile the current headline below \\u003Ccode\\u003ERubyBerlin/ToDo\\u003C/code\\u003E (note the capital \\u003Ccode\\u003ED\\u003C/code\\u003E). Typing the correct \\u003Ccode\\u003E\\u0026quot;Berlin/ToDo\\u0026quot;\\u003C/code\\u003E will work and offer the headline to refile below:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/6swhzzsmvp231.png\\\"\\u003Ehttps://i.redd.it/6swhzzsmvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut typing the lower case version \\u003Ccode\\u003E\\u0026quot;Berlin/Todo\\u0026quot;\\u003C/code\\u003E will only give results of headlines below the one I want to refile to:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/9mlv6bxuvp231.png\\\"\\u003Ehttps://i.redd.it/9mlv6bxuvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfd1r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bascht\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559818598.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_j2fhy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwtuob\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 28, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 28, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559710022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwtuob\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thenackjicholson\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/fldtyuwije231.png\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559681222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi guys,\\n\\nI would like to be able to preview inline images in Org-Mode without specifying its folder.\\n\\nFor instance, I would like to have `[[figurename.png]]` even tough the figure is in a folder named `figs`.\\n\\n\\u0026#x200B;\\n\\nRight now, I am using `#+LATEX_HEADER: \\\\graphicspath{{./figs/}}` and it is working good for LaTeX exports, but I don't have the nice preview in orgmode. Any idea how I could do that?\\n\\nThanks!\", \"author_fullname\": \"t2_6nzpkw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Default directory for inline images?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmraz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559669671.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to be able to preview inline images in Org-Mode without specifying its folder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor instance, I would like to have \\u003Ccode\\u003E[[figurename.png]]\\u003C/code\\u003E even tough the figure is in a folder named \\u003Ccode\\u003Efigs\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now, I am using \\u003Ccode\\u003E#+LATEX_HEADER: \\\\graphicspath{{./figs/}}\\u003C/code\\u003E and it is working good for LaTeX exports, but I don\\u0026#39;t have the nice preview in orgmode. Any idea how I could do that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmraz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tdehaeze\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559640871.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdoe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559637338.0, \"media\": null, \"is_video\": false}], \"created\": 1559666163.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdoe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bwmdlj\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmdoe/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559637363.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi all, I'm trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is: \\n1. Find the contact (M-x org-contacts)\\n\\n2. Create link (C-c l)\\n\\n3. Go to task\\n\\n4. Insert link\\n\\nThis is not very good, I would like to know if there's a way to have my contacts links permanently stored on emacs, and if there's a easier way to insert a contact in a task.\\n\\nFor more information, the reason I want this is because sometimes I create tasks as: **Ping John about foo**, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\n\\nThanks for the help.\\n\\nPS: This is my config if it helps: [https://github.com/martini97/.emacs.d](https://github.com/martini97/.emacs.d)\", \"author_fullname\": \"t2_9eav0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Linking contacts to tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwk33h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559648146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I\\u0026#39;m trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is:\\u003Cbr/\\u003E\\n1. Find the contact (M-x org-contacts)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECreate link (C-c l)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGo to task\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EInsert link\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is not very good, I would like to know if there\\u0026#39;s a way to have my contacts links permanently stored on emacs, and if there\\u0026#39;s a easier way to insert a contact in a task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more information, the reason I want this is because sometimes I create tasks as: \\u003Cstrong\\u003EPing John about foo\\u003C/strong\\u003E, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for the help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: This is my config if it helps: \\u003Ca href=\\\"https://github.com/martini97/.emacs.d\\\"\\u003Ehttps://github.com/martini97/.emacs.d\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwk33h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_martini97\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559619346.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Came across this function/variable while improving my agenda views and thought it'd be interesting ... except it doesn't seem to work for me! If I activate this in an agenda view where I know I archived a task that's now DONE, nothing shows up.\\n\\nMy archive files are located in a different directory than my main org files:\\n\\n (setq org-archive-location (concat archive-dir (format-time-string \\\"%Y\\\" (current-time)) \\\".org_archive::datetree/\\\"))\\n\\nThese YYYY.org_archive files are not part of my `org-agenda-files` either.\\n\\nDoes archives mode only work if the `:ARCHIVED:` headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How is org-agenda-archives-mode supposed to work?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwi4qu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559636288.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECame across this function/variable while improving my agenda views and thought it\\u0026#39;d be interesting ... except it doesn\\u0026#39;t seem to work for me! If I activate this in an agenda view where I know I archived a task that\\u0026#39;s now DONE, nothing shows up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy archive files are located in a different directory than my main org files:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-archive-location (concat archive-dir (format-time-string \\u0026quot;%Y\\u0026quot; (current-time)) \\u0026quot;.org_archive::datetree/\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThese YYYY.org_archive files are not part of my \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes archives mode only work if the \\u003Ccode\\u003E:ARCHIVED:\\u003C/code\\u003E headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwi4qu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559607488.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"how do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwcmiw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559607953.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehow do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwcmiw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559579153.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a time table like so with the following table format formula.\\n\\n |-------+----------+--------------|\\n | Start | Duration | Title |\\n |-------+----------+--------------|\\n | 9:00 | 00:15 | Introduction |\\n | 9:15 | 00:45 | Basics |\\n | 10:00 | 00:30 | Break |\\n | 10:30 | 01:30 | Intermediate |\\n | 12:00 | 01:00 | Lunch Break |\\n | 13:00 | 02:00 | Advanced |\\n | 15:00 | 00:30 | Break |\\n | 15:30 | 01:30 | Party |\\n | 17:00 | | End |\\n |-------+----------+--------------|\\n #+TBLFM: $2=@+1$1-$1;U\\n\\nMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\n\\n\\u003E user-error: Row descriptor +1 leads outside table\\n\\nIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\n\\nUpdate: `#+TBLFM: @\\u003C\\u003C$2..@\\u003E\\u003E$2=@+1$1-$1;U` seems to do the trick, thanks cipharius !\", \"author_fullname\": \"t2_5n9uk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9eiq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559564152.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559588764.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a time table like so with the following table format formula.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E|-------+----------+--------------|\\n| Start | Duration | Title |\\n|-------+----------+--------------|\\n| 9:00 | 00:15 | Introduction |\\n| 9:15 | 00:45 | Basics |\\n| 10:00 | 00:30 | Break |\\n| 10:30 | 01:30 | Intermediate |\\n| 12:00 | 01:00 | Lunch Break |\\n| 13:00 | 02:00 | Advanced |\\n| 15:00 | 00:30 | Break |\\n| 15:30 | 01:30 | Party |\\n| 17:00 | | End |\\n|-------+----------+--------------|\\n#+TBLFM: $2=@+1$1-$1;U\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Euser-error: Row descriptor +1 leads outside table\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate: \\u003Ccode\\u003E#+TBLFM: @\\u0026lt;\\u0026lt;$2..@\\u0026gt;\\u0026gt;$2=@+1$1-$1;U\\u003C/code\\u003E seems to do the trick, thanks cipharius !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9eiq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gausby\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559559964.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I found this post: [https://www.reddit.com/r/orgmode/comments/90sk11/how\\\\_do\\\\_you\\\\_cite\\\\_pages\\\\_for\\\\_quotes\\\\_with\\\\_orgref/](https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/), which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\", \"author_fullname\": \"t2_js9by\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you include page number in page number in org-ref with helm?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw916a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559585779.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI found this post: \\u003Ca href=\\\"https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\\"\\u003Ehttps://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\u003C/a\\u003E, which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw916a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kandidate\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559556979.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The function `org-tags-view` allows you to build up semi-complex searches for tags using regexp:\\n\\n```\\n(org-tags-view t \\\"+PROP1={value}\\u0026+PROP2={[1-2]}\\\")\\n```\\n\\nHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header's properties, do some computations on them, and returns `t` or `nil` depending upon whether the computation matches in the way I specify?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Searching for org-tags programmatically (without regexp)?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw317n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559542522.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe function \\u003Ccode\\u003Eorg-tags-view\\u003C/code\\u003E allows you to build up semi-complex searches for tags using regexp:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(org-tags-view t \\u0026quot;+PROP1={value}\\u0026amp;+PROP2={[1-2]}\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header\\u0026#39;s properties, do some computations on them, and returns \\u003Ccode\\u003Et\\u003C/code\\u003E or \\u003Ccode\\u003Enil\\u003C/code\\u003E depending upon whether the computation matches in the way I specify?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw317n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559513722.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"# Context\\n\\nI have a very strange org-mode workflow, and I don't know how better to ask this question without first explaining it. So bear with me :)\\n\\nEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\n\\n1. **Resources.** Resources are things like `Rcomputer`, `Rnone` (for pure \\\"thinking\\\" tasks), and combinatory resources like `RDevice` (defined as `Rphone` OR `Rcomputer`). They should ultimately be placed in a bracket notation such as `[Rnone]` or `[Rcomputer, Rphone]`.\\n2. **Energy.** Energy can be thought of as a real number between `E1` and `E10` (i.e., `E10` might making a hard emotional decision, while an `E1` task takes almost no effort). Energy should also ultimately be placed in brackets like `[E5]` (single value) or `[E2, E6]` (a range of energy).\\n3. **Tags.** Tags are high-level wrappers for the previous two categories. For example, `@Thinking` could convert to `E4` and `Rnone`, while `@Reading` might convert to `E3` and `RDevice`.\\n\\n# Problem\\n\\n**What I don't know how best to do:** programatically convert (3) into (1) and (2) in a sensible way. So, for example, I'd like to have a function which can convert\\n\\n * An org-mode thinking task. :@Thinking:\\n\\nto this:\\n\\n * An org-mode thinking task. :@Thinking:\\n :PROPERTIES:\\n :R: [Rnone]\\n :E: [E4]\\n :END:\\n\\nor more complicatedly, convert a task with two tags:\\n\\n * An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n :PROPERTIES:\\n :R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u003E [Rnone], while @Reading -\\u003E [RDevice] -\\u003E [Rcompter, Rphone]\\n :E: [E3, E4] ; @Thinking -\\u003E E3; @Reading -\\u003E E4\\n :END:\\n\\nHow best to encode all of this in elisp?\\n\\n# Attempt\\n\\nFirst we have high level resources:\\n\\n``` elisp\\n(setq high-level-resources (\\n (\\\"RDevice\\\" . '(\\\"Rcomputer\\\" \\\"Rphone\\\")) ;; Notice that \\\"high-level\\\" resources are capitalized while \\\"low-level\\\" resource are non-capitalized\\n ;; ..\\n )\\n```\\n\\nthen we have high-level tags (which define both a resource and an energy component):\\n\\n``` elisp\\n(setq tags ( \\n (\\\"@Reading\\\" . '((\\\"E\\\" . \\\"E3\\\") (\\\"R\\\" . \\\"RDevice\\\")))\\n (\\\"@Thinking\\\" . '((\\\"E\\\" . \\\"E2\\\") (\\\"R\\\" . \\\"Rnone\\\")))\\n ;; ..\\n )\\n```\\n\\nThen we need a function which converts tags to their resources/energy:\\n\\n``` elisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n```\\n\\nHow can we implement `convert-tags-to-resources-and-energy`?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Converting org-tags into properties (recursively)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvz12r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559520969.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EContext\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI have a very strange org-mode workflow, and I don\\u0026#39;t know how better to ask this question without first explaining it. So bear with me :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EResources.\\u003C/strong\\u003E Resources are things like \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E, \\u003Ccode\\u003ERnone\\u003C/code\\u003E (for pure \\u0026quot;thinking\\u0026quot; tasks), and combinatory resources like \\u003Ccode\\u003ERDevice\\u003C/code\\u003E (defined as \\u003Ccode\\u003ERphone\\u003C/code\\u003E OR \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E). They should ultimately be placed in a bracket notation such as \\u003Ccode\\u003E[Rnone]\\u003C/code\\u003E or \\u003Ccode\\u003E[Rcomputer, Rphone]\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EEnergy.\\u003C/strong\\u003E Energy can be thought of as a real number between \\u003Ccode\\u003EE1\\u003C/code\\u003E and \\u003Ccode\\u003EE10\\u003C/code\\u003E (i.e., \\u003Ccode\\u003EE10\\u003C/code\\u003E might making a hard emotional decision, while an \\u003Ccode\\u003EE1\\u003C/code\\u003E task takes almost no effort). Energy should also ultimately be placed in brackets like \\u003Ccode\\u003E[E5]\\u003C/code\\u003E (single value) or \\u003Ccode\\u003E[E2, E6]\\u003C/code\\u003E (a range of energy).\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003ETags.\\u003C/strong\\u003E Tags are high-level wrappers for the previous two categories. For example, \\u003Ccode\\u003E@Thinking\\u003C/code\\u003E could convert to \\u003Ccode\\u003EE4\\u003C/code\\u003E and \\u003Ccode\\u003ERnone\\u003C/code\\u003E, while \\u003Ccode\\u003E@Reading\\u003C/code\\u003E might convert to \\u003Ccode\\u003EE3\\u003C/code\\u003E and \\u003Ccode\\u003ERDevice\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Ch1\\u003EProblem\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat I don\\u0026#39;t know how best to do:\\u003C/strong\\u003E programatically convert (3) into (1) and (2) in a sensible way. So, for example, I\\u0026#39;d like to have a function which can convert\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eto this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n:PROPERTIES:\\n:R: [Rnone]\\n:E: [E4]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eor more complicatedly, convert a task with two tags:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n:PROPERTIES:\\n:R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u0026gt; [Rnone], while @Reading -\\u0026gt; [RDevice] -\\u0026gt; [Rcompter, Rphone]\\n:E: [E3, E4] ; @Thinking -\\u0026gt; E3; @Reading -\\u0026gt; E4\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHow best to encode all of this in elisp?\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EAttempt\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFirst we have high level resources:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq high-level-resources (\\n (\\u0026quot;RDevice\\u0026quot; . \\u0026#39;(\\u0026quot;Rcomputer\\u0026quot; \\u0026quot;Rphone\\u0026quot;)) ;; Notice that \\u0026quot;high-level\\u0026quot; resources are capitalized while \\u0026quot;low-level\\u0026quot; resource are non-capitalized\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethen we have high-level tags (which define both a resource and an energy component):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq tags ( \\n (\\u0026quot;@Reading\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E3\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;RDevice\\u0026quot;)))\\n (\\u0026quot;@Thinking\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E2\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;Rnone\\u0026quot;)))\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen we need a function which converts tags to their resources/energy:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can we implement \\u003Ccode\\u003Econvert-tags-to-resources-and-energy\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvz12r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559492169.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvsa9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Running a fresh Emacs session with `emacs -Q`, I evaluated the following:\\n\\n (setq org-agenda-files '(\\\"~/index.org\\\"))\\n (setq org-enforce-todo-dependencies t)\\n (setq org-agenda-dim-blocked-tasks 'invisible)\\n\\nwhere `~/index.org` simply contains:\\n\\n * Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO First subheading\\n ** TODO Second subheading\\n\\nWhen I call `(org-agenda nil \\\"t\\\")` to display the available TODOs, it correctly displays only \\\"First subheading.\\\" However, if I then export that buffer with `org-agenda-write`, then the resulting file contains both \\\"First subheading\\\" and \\\"Second subheading.\\\"\\n\\nWhat is going on here, and can it be fixed?\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvs6jo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559467712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERunning a fresh Emacs session with \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E, I evaluated the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files \\u0026#39;(\\u0026quot;~/index.org\\u0026quot;))\\n(setq org-enforce-todo-dependencies t)\\n(setq org-agenda-dim-blocked-tasks \\u0026#39;invisible)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E~/index.org\\u003C/code\\u003E simply contains:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO First subheading\\n** TODO Second subheading\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I call \\u003Ccode\\u003E(org-agenda nil \\u0026quot;t\\u0026quot;)\\u003C/code\\u003E to display the available TODOs, it correctly displays only \\u0026quot;First subheading.\\u0026quot; However, if I then export that buffer with \\u003Ccode\\u003Eorg-agenda-write\\u003C/code\\u003E, then the resulting file contains both \\u0026quot;First subheading\\u0026quot; and \\u0026quot;Second subheading.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is going on here, and can it be fixed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvs6jo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559438912.0, \"media\": null, \"is_video\": false}], \"created\": 1559468360.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvsa9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bvs6jo\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvsa9b/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559439560.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"In a list of `files` I have org tasks with the property `E` such that each `E` is marked with an interval range.\\n\\n * Some task1\\n :PROPERTIES:\\n :E: [E1, E3]\\n :END:\\n\\n * Some task2\\n :PROPERTIES:\\n :E: [E4, E7]\\n :END:\\n\\n...and so forth.\\n\\n**Question:** How can I `search` through `files` and obtain an agenda view of all tasks that intersect within a range `min` to `max`?\\n\\nSo for example `(search files 3 7)` should display tasks that have, i,e., `[E2, E4]`, `[E4, E5]` or `[E6, E8]` but *not* display tasks have `[E1, E2]` or `[E8, E9]`.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Matching org tasks against an interval of values\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvqyqw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559459994.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn a list of \\u003Ccode\\u003Efiles\\u003C/code\\u003E I have org tasks with the property \\u003Ccode\\u003EE\\u003C/code\\u003E such that each \\u003Ccode\\u003EE\\u003C/code\\u003E is marked with an interval range.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Some task1\\n:PROPERTIES:\\n:E: [E1, E3]\\n:END:\\n\\n* Some task2\\n:PROPERTIES:\\n:E: [E4, E7]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E...and so forth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion:\\u003C/strong\\u003E How can I \\u003Ccode\\u003Esearch\\u003C/code\\u003E through \\u003Ccode\\u003Efiles\\u003C/code\\u003E and obtain an agenda view of all tasks that intersect within a range \\u003Ccode\\u003Emin\\u003C/code\\u003E to \\u003Ccode\\u003Emax\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for example \\u003Ccode\\u003E(search files 3 7)\\u003C/code\\u003E should display tasks that have, i,e., \\u003Ccode\\u003E[E2, E4]\\u003C/code\\u003E, \\u003Ccode\\u003E[E4, E5]\\u003C/code\\u003E or \\u003Ccode\\u003E[E6, E8]\\u003C/code\\u003E but \\u003Cem\\u003Enot\\u003C/em\\u003E display tasks have \\u003Ccode\\u003E[E1, E2]\\u003C/code\\u003E or \\u003Ccode\\u003E[E8, E9]\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvqyqw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559431194.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-src-window-setup not behaving as expected with multi-term-dedicated opened? (more info in comments) (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvavuq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559354935.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvavuq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvavuq/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvai3u/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559326135.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv747t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559335751.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv747t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559306951.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi Everyone, \\n\\nI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\n\\n\\u0026#x200B;\\n\\n (cond ((eq system-type 'windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list 'exec-path \\\"c:/cygwin64/bin/\\\")\\n (setenv \\\"PATH\\\"\\n (concat\\n \\\"c:/cygwin64/bin/aspell.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/zip.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/unzip.exe\\\" \\\";\\\"\\n (getenv \\\"PATH\\\")\\n )\\n )\\n (setq ispell-program-name \\\"aspell.exe\\\")\\n )\\n )\\n\\nThis is my \\\\*Only Windows\\\\* Configuration Part as I cant include it to the Windows PATH Variable.\\n\\nNow (org-odt-export-to-odt) has the following problem. \\n\\n\\u0026#x200B;\\n\\n OpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\n sh: unzip: command not found\\n test of Configuration.odt FAILED\\n \\n zip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n )\\n\\nAny ideas?\\n\\nJust Message me if there is more Info needed\\n\\n\\u0026#x200B;\\n\\nThanks in advance\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Win10 Org Odt Export Unzip Problem\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv54oy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559321590.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi Everyone, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(cond ((eq system-type \\u0026#39;windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list \\u0026#39;exec-path \\u0026quot;c:/cygwin64/bin/\\u0026quot;)\\n (setenv \\u0026quot;PATH\\u0026quot;\\n (concat\\n \\u0026quot;c:/cygwin64/bin/aspell.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/zip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/unzip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n (getenv \\u0026quot;PATH\\u0026quot;)\\n )\\n )\\n (setq ispell-program-name \\u0026quot;aspell.exe\\u0026quot;)\\n )\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis is my *Only Windows* Configuration Part as I cant include it to the Windows PATH Variable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow (org-odt-export-to-odt) has the following problem. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EOpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\nsh: unzip: command not found\\ntest of Configuration.odt FAILED\\n\\nzip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust Message me if there is more Info needed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv54oy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559292790.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Dear Orgers...\\n\\nI'm exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\\"Contents\\\"). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\n\\nhttps://i.redd.it/71ml0g0ikf131.png\\n\\nHow can I prevent this from happening?\\n\\nI see here 2 possibilities:\\n\\n1. the ToC title exists, but doesn't appears in the ToC itself.\\n2. There is no ToC title!\\n\\nI'm obviously searching with the wrong keywords since I'm not finding a solution to this...\\n\\nIn every case, thanks a lot for your help. :)\", \"author_fullname\": \"t2_dyrlf6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Avoid ToC entry in ToC export to pdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"71ml0g0ikf131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1210, \"x\": 918, \"u\": \"https://i.redd.it/71ml0g0ikf131.png\"}, \"m\": \"image/png\", \"id\": \"71ml0g0ikf131\"}}, \"name\": \"t3_buzxzp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559286714.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDear Orgers...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\u0026quot;Contents\\u0026quot;). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/71ml0g0ikf131.png\\\"\\u003Ehttps://i.redd.it/71ml0g0ikf131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I prevent this from happening?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI see here 2 possibilities:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Ethe ToC title exists, but doesn\\u0026#39;t appears in the ToC itself.\\u003C/li\\u003E\\n\\u003Cli\\u003EThere is no ToC title!\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m obviously searching with the wrong keywords since I\\u0026#39;m not finding a solution to this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn every case, thanks a lot for your help. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buzxzp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"edumerco\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559257914.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a `calendar.org` buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\n\\nIs this possible? Where can I start looking at this?\\n\\nThanks!\", \"author_fullname\": \"t2_3tdxdj82\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly agenda view: not show past items from certain buffers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burp9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559242335.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a \\u003Ccode\\u003Ecalendar.org\\u003C/code\\u003E buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this possible? Where can I start looking at this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burp9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mirenbe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559213535.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl9k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 22, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 22, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl5q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 73, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 73, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559241478.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl5q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burl5q/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1559212678.0, \"media\": null, \"is_video\": false}], \"created\": 1559241501.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl9k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_burl5q\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burl9k/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559212701.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Any way to hide these headers/footers? It's a bit distracting with lots of small code examples.\\n\\n #+begin_src haskell\\n ...\\n #+end_src\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I hide source block header and footer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buopeh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559218136.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny way to hide these headers/footers? It\\u0026#39;s a bit distracting with lots of small code examples.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+begin_src haskell\\n...\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buopeh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559189336.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\n\\nI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\n\\nI'm pretty sure I'm overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\", \"author_fullname\": \"t2_ycu34\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Handling Github Badges in Org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buhsue\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559180889.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m pretty sure I\\u0026#39;m overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buhsue\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hardrived_\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559152089.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I add TODO to list items instead of just headers?\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Add todo to list item?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budm5j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159049.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I add TODO to list items instead of just headers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budm5j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559130249.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello!\\n\\nI'd like to use the ORDERED property but it doesn't seem to be working in the way I'd expect, so I wanted to check that my expectation is correct.\\n\\n * TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO Check contents of disks\\n ** TODO Securely wipe disks\\n ** TODO Take disks to recycling center\\n\\nWith the ORDERED property set, I figured that I wouldn't be able to mark \\\"Securely wipe disks\\\" as DONE before I had completed \\\"Check contents of disks\\\". However I can mark these items as DONE in any order I like.\\n\\nDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Possible confusion over ORDERED property\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu1tby\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559088369.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to use the ORDERED property but it doesn\\u0026#39;t seem to be working in the way I\\u0026#39;d expect, so I wanted to check that my expectation is correct.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO Check contents of disks\\n** TODO Securely wipe disks\\n** TODO Take disks to recycling center\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith the ORDERED property set, I figured that I wouldn\\u0026#39;t be able to mark \\u0026quot;Securely wipe disks\\u0026quot; as DONE before I had completed \\u0026quot;Check contents of disks\\u0026quot;. However I can mark these items as DONE in any order I like.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu1tby\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559059569.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I was wondering how one could make one entry inherit the DEADLINE of the parent. I know about `org-use-property-inheritance` but it doesn't seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\", \"author_fullname\": \"t2_q52rf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inherit DEADLINE from parent\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btzy6m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559078444.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering how one could make one entry inherit the DEADLINE of the parent. I know about \\u003Ccode\\u003Eorg-use-property-inheritance\\u003C/code\\u003E but it doesn\\u0026#39;t seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btzy6m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackjackk0\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1559049644.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi y'all, this is probably a simple question for some of you, but I can't quite figure it out on my own.\\n\\nI'm trying to edit my `org-agenda-prefix-format` for an agenda view, such that:\\n\\n* If the entry has a scheduled or deadline timestamp, show the standard \\\"Deadline:\\\" / \\\"In N d.:\\\" / \\\"Scheduled:\\\" / \\\"Sched. 10 d.:\\\" strings.\\n* Otherwise, show the category\\n\\n**Example**: Agenda view\\n\\n Sunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\nIs there a way to display a conditional prefix like this?\\n\\nThe code I was tinkering with before posting looked like:\\n\\n (defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\\"sched (%s), dead (%s)\\\" is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\\" %-12s%-12t \\\"\\n \\\" %-12:c%-12t \\\")))\\n\\n ; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n (org-agenda-custom-prefix (test/custom-prefix))\\n\\nNot exactly the same as above, but it was a WIP, and the problem was that `is-scheduled` and `is-deadlined` were always both `nil` for some reason, despite the tasks having a scheduled / deadline timestamp.\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btovhk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559007583.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi y\\u0026#39;all, this is probably a simple question for some of you, but I can\\u0026#39;t quite figure it out on my own.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to edit my \\u003Ccode\\u003Eorg-agenda-prefix-format\\u003C/code\\u003E for an agenda view, such that:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf the entry has a scheduled or deadline timestamp, show the standard \\u0026quot;Deadline:\\u0026quot; / \\u0026quot;In N d.:\\u0026quot; / \\u0026quot;Scheduled:\\u0026quot; / \\u0026quot;Sched. 10 d.:\\u0026quot; strings.\\u003C/li\\u003E\\n\\u003Cli\\u003EOtherwise, show the category\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EExample\\u003C/strong\\u003E: Agenda view\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ESunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs there a way to display a conditional prefix like this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code I was tinkering with before posting looked like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\u0026quot;sched (%s), dead (%s)\\u0026quot; is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\u0026quot; %-12s%-12t \\u0026quot;\\n \\u0026quot; %-12:c%-12t \\u0026quot;)))\\n\\n; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n(org-agenda-custom-prefix (test/custom-prefix))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENot exactly the same as above, but it was a WIP, and the problem was that \\u003Ccode\\u003Eis-scheduled\\u003C/code\\u003E and \\u003Ccode\\u003Eis-deadlined\\u003C/code\\u003E were always both \\u003Ccode\\u003Enil\\u003C/code\\u003E for some reason, despite the tasks having a scheduled / deadline timestamp.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btovhk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558978783.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Not exactly sure how to phrase this question, so I'll do my best to explain what I'd like to do and why...\\n\\nI've been writing quite a few projects using literate programming via org-mode. Lately, I've been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\n\\nI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\n\\nThanks!\", \"author_fullname\": \"t2_4hzm8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using org-agenda on individual files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btdd9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558934196.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot exactly sure how to phrase this question, so I\\u0026#39;ll do my best to explain what I\\u0026#39;d like to do and why...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been writing quite a few projects using literate programming via org-mode. Lately, I\\u0026#39;ve been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btdd9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ralphbluecoat\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558905396.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I insert a string into an org file and change its appearance by using `(put-text-property start end 'font-lock-face 'my-face my-string)`, the face assignment doesn't persist after the file is saved and re-opened.\\n\\n\\u0026#x200B;\\n\\nIt also appears that I cannot use `(put-text-property start end 'face 'my-face)` in an org buffer (but it does work when the file is in fundamental mode).\\n\\n\\u0026#x200B;\\n\\nHow can I assign a persistent face to a section of an org buffer?\\n\\n\\u0026#x200B;\\n\\n(Edit: posted before I finished writing, typos.)\", \"author_fullname\": \"t2_3gjjtpnq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Persistent font changes in an org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btasp7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558892947.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558921535.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I insert a string into an org file and change its appearance by using \\u003Ccode\\u003E(put-text-property start end \\u0026#39;font-lock-face \\u0026#39;my-face my-string)\\u003C/code\\u003E, the face assignment doesn\\u0026#39;t persist after the file is saved and re-opened.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt also appears that I cannot use \\u003Ccode\\u003E(put-text-property start end \\u0026#39;face \\u0026#39;my-face)\\u003C/code\\u003E in an org buffer (but it does work when the file is in fundamental mode).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I assign a persistent face to a section of an org buffer?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Edit: posted before I finished writing, typos.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btasp7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itistheblurstoftimes\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558892735.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9f5z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'd like to better show \\\"Today\\\" in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\n\\nFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\n\\nThanks!\\n\\nMy current habit-related settings are:\\n\\n (setq org-habit-show-habits-only-for-today nil)\\n (setq org-habit-graph-column 60)\\n (setq org-habit-following-days 3)\\n\\nAlthough I don't think that they change anything to do with this question.\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9atw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558913913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d like to better show \\u0026quot;Today\\u0026quot; in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current habit-related settings are:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-habit-show-habits-only-for-today nil)\\n(setq org-habit-graph-column 60)\\n(setq org-habit-following-days 3)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAlthough I don\\u0026#39;t think that they change anything to do with this question.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9atw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1558885113.0, \"media\": null, \"is_video\": false}], \"created\": 1558914521.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9f5z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bt9atw\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558885721.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Many times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\", \"author_fullname\": \"t2_38v6e72q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Question] Paste with source format\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsnq2u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558768415.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMany times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsnq2u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GracefulToucan\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558739615.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 24, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsgj6t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558730956.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsgj6t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558702156.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"doing kanban in org mode? (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs8w8p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558677597.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs8w8p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs8w8p/doing_kanban_in_org_mode_xpost_remacs/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bs8rpm/doing_kanban_in_org_mode/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558648797.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\n\\nDoes anyone of you have the same set up with a working configuration?\", \"author_fullname\": \"t2_3tjqi9un\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Has anyone set up beorg with nextcloud sucessfully?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs1jef\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558638131.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone of you have the same set up with a working configuration?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs1jef\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CuriousQuasar\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558609331.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_4utg0yv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using the Eisenhower Matrix in Emacs Org-Mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bry1c2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 18, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 18, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558609281.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"tompurl.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bry1c2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Okesa\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.tompurl.com/2015-12-29-emacs-eisenhower-matrix.html\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558580481.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The following renders with `org-toggle-latex-fragment`:\\n\\n$$\\n2+2 = 4\\n$$\\n\\nbut the following doesn't\\n\\n#+begin_latex\\n2+2 = 4\\n#+end_latex\\n\\nHow do I get the bottom to render as well?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Rendering inside \\\"#+begin_latex ... #+end_latex\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brs51i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558577715.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe following renders with \\u003Ccode\\u003Eorg-toggle-latex-fragment\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E$$\\n2+2 = 4\\n$$\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut the following doesn\\u0026#39;t\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+begin_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E2+2 = 4\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+end_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EHow do I get the bottom to render as well?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brs51i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558548915.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"When I export to pdf from org, the font is a bitmap font.\\n\\nHow can I change the export such that vector fonts will be used?\\n\\nThanks!\", \"author_fullname\": \"t2_q43ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org export to pdf: vector font instead of bitmap font\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brkczh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558528248.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I export to pdf from org, the font is a bitmap font.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I change the export such that vector fonts will be used?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brkczh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HumanBrainMapper\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558499448.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I had posted this some months ago here: https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\n\\nI've updated and added some new features to it!\\n\\nIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\n\\nIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\n\\nThe new features are: It auto generates indexes, has support for tags, header, and footer! \\n\\nRight now the main missing feature is generating the RSS.\\n\\nHere is a working example: https://ivanaf.com/org-export-head/index.html, and the source is here: https://github.com/itf/org-export-head\", \"author_fullname\": \"t2_21clngjz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Single file Blog in org mode - update\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br5iur\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558438826.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI had posted this some months ago here: \\u003Ca href=\\\"https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\\"\\u003Ehttps://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve updated and added some new features to it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe new features are: It auto generates indexes, has support for tags, header, and footer! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now the main missing feature is generating the RSS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is a working example: \\u003Ca href=\\\"https://ivanaf.com/org-export-head/index.html\\\"\\u003Ehttps://ivanaf.com/org-export-head/index.html\\u003C/a\\u003E, and the source is here: \\u003Ca href=\\\"https://github.com/itf/org-export-head\\\"\\u003Ehttps://github.com/itf/org-export-head\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br5iur\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itadeufa\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558410026.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm using spacemacs and am trying to figure out how to use the following package: [here](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el).\\n\\nIt's supposed to add mathematica support to org-babel snippets.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I use ob-mathematica.el?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br2g1m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558420778.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using spacemacs and am trying to figure out how to use the following package: \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s supposed to add mathematica support to org-babel snippets.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br2g1m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558391978.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\n\\nWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\n\\nThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\n\\n2019-05-12 \\nTask A : 3h 20m \\nTask B : 2h 5m\\n\\n2019-05-13 \\nTask A : 2h 10m \\nTask B : 1h 20m\\n\\nI've read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\", \"author_fullname\": \"t2_37uew703\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"View clock table entries by date?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bqu8sp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558379941.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-12\\u003Cbr/\\u003E\\nTask A : 3h 20m\\u003Cbr/\\u003E\\nTask B : 2h 5m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-13\\u003Cbr/\\u003E\\nTask A : 2h 10m\\u003Cbr/\\u003E\\nTask B : 1h 20m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqu8sp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OverthrowDissent\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558351141.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Have some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\n\\nbeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\n\\n\\u0026#x200B;\\n\\nBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\n\\n\\u0026#x200B;\\n\\n(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\n\\nand then format all the returns, into a working log entry I can put notes into along with some screenshots\\n\\n\\u0026#x200B;\\n\\nAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\n\\nAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\n\\n\\u0026#x200B;\\n\\nThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\n\\n\\u0026#x200B;\\n\\nadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\n\\n\\u0026#x200B;\\n\\nYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\", \"author_fullname\": \"t2_nb9r4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode / LISP Mentor or Tutor?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq9kxd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558246612.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand then format all the returns, into a working log entry I can put notes into along with some screenshots\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq9kxd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"psychocoonass\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558217812.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I'm on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\n\\nI have a lot of files in Deft that I would rather access through org-capture.\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to make the capture template selection list window (\\\"Org Select\\\") scrollable so that when you have a large number of capture templates (e.g.\\u003E 26), the display is not truncated?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq8ohl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558241466.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I\\u0026#39;m on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a lot of files in Deft that I would rather access through org-capture.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq8ohl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558212666.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 17, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpquo9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558126152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpquo9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558097352.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I see two packages: \\n\\n* https://github.com/mattduck/org-toggl-py\\n* https://github.com/mmagnus/emacs-toggl\\n\\nBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having `toggl` installed and connect to their service on task start.\\n\\nI want to log my time and send whenever I'm ready _in emacs_ using the name of the item associated with my clock entries with the ability to override/change this via properties. \\n\\norg-toggl-py has some property support, but requires exporting with external command. \\n\\nReally maybe external command is okay but wanted to see what others are using.\\n\\n\\n**Update 1**: Found https://github.com/mbork/org-toggl. Investigating...\\n\\n**Update 2**: Timer on org-toggle cannot be stopped see PR [#6](https://github.com/mbork/org-toggl/pull/6) and [#3](https://github.com/mbork/org-toggl/pull/3) \\u2013which are from 2018. Also **does not** seem to integrate with Org mode as advertised.\\n\\n**Update 3**: Tried [Fuco1's fork](https://github.com/Fuco1/org-toggl) which fixes [#6](https://github.com/mbork/org-toggl/pull/6) but Org mode integration still is not working. Went to org-toggle-py [but couldn't get it to work](https://github.com/mattduck/org-toggl-py/issues/1)\\n\\n\\nSeems like best approach is to call `toggl-start-time-entry`/`toggl-stop-time-entry ` around `org-clock-in`/`org-clock-out` and then write some export function using these. \\n\\nNot sure if it's possible to check if an export is new or requires updating. Will have to investigate Toggl's API.\", \"author_fullname\": \"t2_h8sck\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone Use Org mode With Toggl\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpjh7e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558056916.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558076490.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see two packages: \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py\\\"\\u003Ehttps://github.com/mattduck/org-toggl-py\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mmagnus/emacs-toggl\\\"\\u003Ehttps://github.com/mmagnus/emacs-toggl\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having \\u003Ccode\\u003Etoggl\\u003C/code\\u003E installed and connect to their service on task start.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to log my time and send whenever I\\u0026#39;m ready \\u003Cem\\u003Ein emacs\\u003C/em\\u003E using the name of the item associated with my clock entries with the ability to override/change this via properties. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorg-toggl-py has some property support, but requires exporting with external command. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReally maybe external command is okay but wanted to see what others are using.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 1\\u003C/strong\\u003E: Found \\u003Ca href=\\\"https://github.com/mbork/org-toggl\\\"\\u003Ehttps://github.com/mbork/org-toggl\\u003C/a\\u003E. Investigating...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 2\\u003C/strong\\u003E: Timer on org-toggle cannot be stopped see PR \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E and \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/3\\\"\\u003E#3\\u003C/a\\u003E \\u2013which are from 2018. Also \\u003Cstrong\\u003Edoes not\\u003C/strong\\u003E seem to integrate with Org mode as advertised.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 3\\u003C/strong\\u003E: Tried \\u003Ca href=\\\"https://github.com/Fuco1/org-toggl\\\"\\u003EFuco1\\u0026#39;s fork\\u003C/a\\u003E which fixes \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E but Org mode integration still is not working. Went to org-toggle-py \\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py/issues/1\\\"\\u003Ebut couldn\\u0026#39;t get it to work\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESeems like best approach is to call \\u003Ccode\\u003Etoggl-start-time-entry\\u003C/code\\u003E/\\u003Ccode\\u003Etoggl-stop-time-entry\\u003C/code\\u003E around \\u003Ccode\\u003Eorg-clock-in\\u003C/code\\u003E/\\u003Ccode\\u003Eorg-clock-out\\u003C/code\\u003E and then write some export function using these. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot sure if it\\u0026#39;s possible to check if an export is new or requires updating. Will have to investigate Toggl\\u0026#39;s API.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpjh7e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sshaw_\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1558047690.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to find an note taking website that I can used to stay organized on computers that don't have emacs.\\n\\nAll of the online note taking apps I have found like SimpleNote or \\\"Tutrl\\\" can only understand markdown.\\n\\nIs there any note taking web service that can understand and edit org files like markdown.\\n\\n\\n\\nI have my own server so I can host my own app if necessary.\", \"author_fullname\": \"t2_gm7cp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Looking for a Evernote-like note taking web app that can understand org-files\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bp8uw7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558013986.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to find an note taking website that I can used to stay organized on computers that don\\u0026#39;t have emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll of the online note taking apps I have found like SimpleNote or \\u0026quot;Tutrl\\u0026quot; can only understand markdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any note taking web service that can understand and edit org files like markdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have my own server so I can host my own app if necessary.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bp8uw7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CeamoreCash\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bp8uw7/looking_for_a_evernotelike_note_taking_web_app/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bp8uw7/looking_for_a_evernotelike_note_taking_web_app/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557985186.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have made a function which \\\"intelligently\\\" inserts a new heading, TODO, list item, or checkbox based on the the type of the current entry at the point. I find it quite useful, so I thought would share it here.\\n\\nWhen inserting new headings/items into an org subtree, I don't like having to remember which command to use based on whether the current entry is a heading (`C-RET`), a TODO (`C-S-RET`), a list item (`M-x org-insert-item`), or a checkbox (`C-u M-x org-insert-item`). I also don't like that the behavior changes depending on whether the point is at the beginning of the line. \\n\\nBased on these requirements, I made the function `sbr-org-insert-dwim` listed below. It is highly opinionated based on my use preferences:\\n\\n* Lines are never split (for the duration of the command, `org-M-RET-may-split-line` is set to nil). If I really need to split the line, I can either do `C-k sbr-org-insert-dwim C-y` or use the built in `M-RET` or `M-S-RET`\\n* The behavior of `sbr-org-insert-dwim` is the same regardless of where the point is on the current line, on the asterisks/dash, at the beginning/middle/end of the entry, or even if the point is after ellipses (i.e. the subtree of the current entry is hidden). The builtin commands `org-insert-heading` and `org-insert-item` have unspecified behavior when used after ellipses.\\n* By default, the new entry in inserted below the current subtree/item. With the prefix `C-u`, the entry is inserted before the current entry and the end of previous subtree (similar to `C-u C-u org-insert-heading`). The inserted entry never breaks up a subtree, which in my opinion, would break the abstraction of the subtree hierarchy. In order to break up and edit subtree structure, I use the `M-\\u003Carrow\\u003E` commands.\\n* If the point is above the first heading, simply insert a level-1 heading. When used above the first heading, `C-RET` (`org-insert-heading-respect-content`) confusingly converts:\\n\\n\\u0026#8203;\\n\\n \\u003E \\u003C\\n * First Heading \\n Something Something\\n Something Something\\n\\ninto:\\n\\n \\n * \\u003E*\\u003C First Heading \\n Something Something\\n Something Something\\n\\nwhere `\\u003E \\u003C` is the point.\\n\\nSince `S-RET` is bound to `org-table-copy-down`, which only works in a table, I made a function `sbr-org-shift-return` that enables me to use `sbr-org-insert-dwim` outside of tables, while preserving the default behavior.\\n\\nThe code is listed below. It's a little more complicated then I would like in order for it to handle all the edge cases (e.g., point after ellipses or before the first heading), and also because the org insert functions don't behave uniformly. For example `org-insert-todo-heading` inserts a checkbox if the point is on a list item, but `org-insert-heading` doesn't similarly insert a list item when the point is on a list item (even though its documentation claims that it does). Any suggestions for streamlining this code are welcome!\\n\\n (defun sbr-org-insert-dwim (\\u0026optional arg)\\n \\\"Insert another entry of the same type as the current\\n entry. For example, if the point is on a list item, then add\\n another list item of the same type, and if the point is on a\\n checkbox list item, then add an empty checkbox item. If instead\\n the point is in a heading, then add another heading. If the point \\n is in a TODO heading, then add another TODO heading (set to the \\n TODO state). \\n \\n By default, the new entry is inserted below the current\\n subtree/item. With a 'C-u' prefix, insert the entry above the\\n current heading/item instead.\\\"\\n (interactive \\\"P\\\")\\n (when (eq major-mode 'org-mode)\\n (let ((org-special-ctrl-a/e t)\\n (below? (unless (equal arg '(4)) '(4))))\\n ;; hack to ensure that the point is not after ellipses because\\n ;; that would mess up org-at-item-p etc.\\n (org-beginning-of-line)\\n (cond ((org-at-item-p) ;; at list item or checkbox\\n (let ((org-M-RET-may-split-line nil)\\n (org-enable-sort-checkbox nil))\\n ;; hack to make item be inserted after the current one\\n ;; doesn't work if we are on an empty item line\\n (when below?\\n (org-end-of-line)) \\n (org-insert-item (org-at-item-checkbox-p))))\\n ((org-before-first-heading-p) ;; above first heading\\n (org-insert-heading))\\n (t ;; in some kind of heading\\n (org-back-to-heading)\\n (if (org-get-todo-state)\\n ;; at TODO heading\\n (org-insert-todo-heading t below?)\\n ;; at non-TODO heading \\n (org-insert-heading below?)))))))\\n \\n (defun sbr-org-shift-return (\\u0026optional arg)\\n \\\"If point is at a table, copy the table cell downward (i.e.,\\n the usual effect of typing S-RET). Otherwise, insert the same\\n kind of heading or item as the current entry containing the\\n point. \\\"\\n (interactive \\\"P\\\")\\n (if (org-at-table-p)\\n (org-table-copy-down (prefix-numeric-value arg))\\n (sbr-org-insert-dwim arg)))\\n \\n (bind-keys :map org-mode-map (\\\"\\u003CS-return\\u003E\\\" . sbr-org-insert-dwim))\", \"author_fullname\": \"t2_7nfrv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"function for DWIM insertion of new entries\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_boyu8r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557960504.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have made a function which \\u0026quot;intelligently\\u0026quot; inserts a new heading, TODO, list item, or checkbox based on the the type of the current entry at the point. I find it quite useful, so I thought would share it here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen inserting new headings/items into an org subtree, I don\\u0026#39;t like having to remember which command to use based on whether the current entry is a heading (\\u003Ccode\\u003EC-RET\\u003C/code\\u003E), a TODO (\\u003Ccode\\u003EC-S-RET\\u003C/code\\u003E), a list item (\\u003Ccode\\u003EM-x org-insert-item\\u003C/code\\u003E), or a checkbox (\\u003Ccode\\u003EC-u M-x org-insert-item\\u003C/code\\u003E). I also don\\u0026#39;t like that the behavior changes depending on whether the point is at the beginning of the line. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBased on these requirements, I made the function \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E listed below. It is highly opinionated based on my use preferences:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ELines are never split (for the duration of the command, \\u003Ccode\\u003Eorg-M-RET-may-split-line\\u003C/code\\u003E is set to nil). If I really need to split the line, I can either do \\u003Ccode\\u003EC-k sbr-org-insert-dwim C-y\\u003C/code\\u003E or use the built in \\u003Ccode\\u003EM-RET\\u003C/code\\u003E or \\u003Ccode\\u003EM-S-RET\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EThe behavior of \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E is the same regardless of where the point is on the current line, on the asterisks/dash, at the beginning/middle/end of the entry, or even if the point is after ellipses (i.e. the subtree of the current entry is hidden). The builtin commands \\u003Ccode\\u003Eorg-insert-heading\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-insert-item\\u003C/code\\u003E have unspecified behavior when used after ellipses.\\u003C/li\\u003E\\n\\u003Cli\\u003EBy default, the new entry in inserted below the current subtree/item. With the prefix \\u003Ccode\\u003EC-u\\u003C/code\\u003E, the entry is inserted before the current entry and the end of previous subtree (similar to \\u003Ccode\\u003EC-u C-u org-insert-heading\\u003C/code\\u003E). The inserted entry never breaks up a subtree, which in my opinion, would break the abstraction of the subtree hierarchy. In order to break up and edit subtree structure, I use the \\u003Ccode\\u003EM-\\u0026lt;arrow\\u0026gt;\\u003C/code\\u003E commands.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf the point is above the first heading, simply insert a level-1 heading. When used above the first heading, \\u003Ccode\\u003EC-RET\\u003C/code\\u003E (\\u003Ccode\\u003Eorg-insert-heading-respect-content\\u003C/code\\u003E) confusingly converts:\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#8203;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E \\u0026gt; \\u0026lt;\\n* First Heading \\nSomething Something\\nSomething Something\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Einto:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* \\u0026gt;*\\u0026lt; First Heading \\nSomething Something\\nSomething Something\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E\\u0026gt; \\u0026lt;\\u003C/code\\u003E is the point.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince \\u003Ccode\\u003ES-RET\\u003C/code\\u003E is bound to \\u003Ccode\\u003Eorg-table-copy-down\\u003C/code\\u003E, which only works in a table, I made a function \\u003Ccode\\u003Esbr-org-shift-return\\u003C/code\\u003E that enables me to use \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E outside of tables, while preserving the default behavior.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code is listed below. It\\u0026#39;s a little more complicated then I would like in order for it to handle all the edge cases (e.g., point after ellipses or before the first heading), and also because the org insert functions don\\u0026#39;t behave uniformly. For example \\u003Ccode\\u003Eorg-insert-todo-heading\\u003C/code\\u003E inserts a checkbox if the point is on a list item, but \\u003Ccode\\u003Eorg-insert-heading\\u003C/code\\u003E doesn\\u0026#39;t similarly insert a list item when the point is on a list item (even though its documentation claims that it does). Any suggestions for streamlining this code are welcome!\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun sbr-org-insert-dwim (\\u0026amp;optional arg)\\n \\u0026quot;Insert another entry of the same type as the current\\nentry. For example, if the point is on a list item, then add\\nanother list item of the same type, and if the point is on a\\ncheckbox list item, then add an empty checkbox item. If instead\\nthe point is in a heading, then add another heading. If the point \\nis in a TODO heading, then add another TODO heading (set to the \\nTODO state). \\n\\nBy default, the new entry is inserted below the current\\nsubtree/item. With a \\u0026#39;C-u\\u0026#39; prefix, insert the entry above the\\ncurrent heading/item instead.\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (when (eq major-mode \\u0026#39;org-mode)\\n (let ((org-special-ctrl-a/e t)\\n (below? (unless (equal arg \\u0026#39;(4)) \\u0026#39;(4))))\\n ;; hack to ensure that the point is not after ellipses because\\n ;; that would mess up org-at-item-p etc.\\n (org-beginning-of-line)\\n (cond ((org-at-item-p) ;; at list item or checkbox\\n (let ((org-M-RET-may-split-line nil)\\n (org-enable-sort-checkbox nil))\\n ;; hack to make item be inserted after the current one\\n ;; doesn\\u0026#39;t work if we are on an empty item line\\n (when below?\\n (org-end-of-line)) \\n (org-insert-item (org-at-item-checkbox-p))))\\n ((org-before-first-heading-p) ;; above first heading\\n (org-insert-heading))\\n (t ;; in some kind of heading\\n (org-back-to-heading)\\n (if (org-get-todo-state)\\n ;; at TODO heading\\n (org-insert-todo-heading t below?)\\n ;; at non-TODO heading \\n (org-insert-heading below?)))))))\\n\\n(defun sbr-org-shift-return (\\u0026amp;optional arg)\\n \\u0026quot;If point is at a table, copy the table cell downward (i.e.,\\nthe usual effect of typing S-RET). Otherwise, insert the same\\nkind of heading or item as the current entry containing the\\npoint. \\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (if (org-at-table-p)\\n (org-table-copy-down (prefix-numeric-value arg))\\n (sbr-org-insert-dwim arg)))\\n\\n(bind-keys :map org-mode-map (\\u0026quot;\\u0026lt;S-return\\u0026gt;\\u0026quot; . sbr-org-insert-dwim))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"boyu8r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cottasteel\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557931704.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello! I have a question regarding org-agenda. I just updated org-mode 9.2.3 on Emacs 26.1 and I have a problem with the location of the org-agenda tags. First (before the upgrade) I had them on the right, now automatically they always appear on a new line (in all agenda views). Do you know how I can go back to having tags on the right?\", \"author_fullname\": \"t2_3rz1w0lq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-agenda and tags position\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_boymdt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557959366.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello! I have a question regarding org-agenda. I just updated org-mode 9.2.3 on Emacs 26.1 and I have a problem with the location of the org-agenda tags. First (before the upgrade) I had them on the right, now automatically they always appear on a new line (in all agenda views). Do you know how I can go back to having tags on the right?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"boymdt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cyberl3o\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557930566.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 03 Hyperlinks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5yvk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 28, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 28, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 03 Hyperlinks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5wkl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 37, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 37, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557794720.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5wkl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bo5wkl/orgmode_hidden_gems_03_hyperlinks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt3/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1557765920.0, \"media\": null, \"is_video\": false}], \"created\": 1557795022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5yvk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bo5wkl\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo5yvk/orgmode_hidden_gems_03_hyperlinks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt3/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557766222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a main directory of all my org-files. I want to be able to export any part of an org-file to markdown in a a separate `/exports` folder (rather than cluttering up my main directory). \\n\\nI know I can constantly set my export file name property, but that becomes cumbersome. I'd like to be able to just set this up once and be done with it. \\n\\nMost of the guides out there on publishing are about setting up a full blogging system with jeckyll or something similar and it's giving me way more information than I need. \\n\\nI think the main thing I need to do is set up the projects alist? What would that look like for a simple scenario like this? Thanks for any help.\", \"author_fullname\": \"t2_130p93\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help Setting Up a Simple Export Folder\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5ly1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557793341.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a main directory of all my org-files. I want to be able to export any part of an org-file to markdown in a a separate \\u003Ccode\\u003E/exports\\u003C/code\\u003E folder (rather than cluttering up my main directory). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know I can constantly set my export file name property, but that becomes cumbersome. I\\u0026#39;d like to be able to just set this up once and be done with it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMost of the guides out there on publishing are about setting up a full blogging system with jeckyll or something similar and it\\u0026#39;s giving me way more information than I need. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think the main thing I need to do is set up the projects alist? What would that look like for a simple scenario like this? Thanks for any help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5ly1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ManiacMcCree\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo5ly1/help_setting_up_a_simple_export_folder/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bo5ly1/help_setting_up_a_simple_export_folder/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557764541.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI would like to link to my emails from Orgmode, but it seems like I'm missing something.\\n\\nI followed the tutorial here:\\n\\n[https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts](https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts)\\n\\n\\u0026#x200B;\\n\\nAnd added this to my .emacs file:\\n\\n\\u0026#x200B;\\n\\n (require 'org)\\n \\n (org-add-link-type \\\"thunderlink\\\" 'org-thunderlink-open)\\n (defun org-thunderlink-open (path)\\n \\\"Opens a specified email in Thunderbird with the help of the add-on\\n ThunderLink.\\\"\\n (start-process \\\"myname\\\" nil \\\"thunderbird\\\" \\\"-thunderlink\\\" (concat\\n \\\"thunderlink:\\\" path)))\\n \\n (provide 'org-thunderlink)\\n\\n\\u0026#x200B;\\n\\nBut it does not seems to work. When I click on a link I have an error message: \\\"No match-create this as a new heading\\\"\\n\\n\\u0026#x200B;\\n\\nDoes anyone managed to get it to work?\\n\\nMany thanks in advance\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Link to email in Thunderbird from orgmode with Thunderlink extension\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo13sc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1557739179.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557767182.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to link to my emails from Orgmode, but it seems like I\\u0026#39;m missing something.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI followed the tutorial here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts\\\"\\u003Ehttps://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd added this to my .emacs file:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;org)\\n\\n(org-add-link-type \\u0026quot;thunderlink\\u0026quot; \\u0026#39;org-thunderlink-open)\\n(defun org-thunderlink-open (path)\\n\\u0026quot;Opens a specified email in Thunderbird with the help of the add-on\\nThunderLink.\\u0026quot;\\n(start-process \\u0026quot;myname\\u0026quot; nil \\u0026quot;thunderbird\\u0026quot; \\u0026quot;-thunderlink\\u0026quot; (concat\\n\\u0026quot;thunderlink:\\u0026quot; path)))\\n\\n(provide \\u0026#39;org-thunderlink)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut it does not seems to work. When I click on a link I have an error message: \\u0026quot;No match-create this as a new heading\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone managed to get it to work?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo13sc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo13sc/link_to_email_in_thunderbird_from_orgmode_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bo13sc/link_to_email_in_thunderbird_from_orgmode_with/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557738382.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I create an elisp function that refiles the current header at point (and all of its children) to the ID `id`, but such that instead of just placing the header directly under `id`, it places it under its subheading of name `subheading` (whether or not `subheading` exists yet)?\\n\\nSo for example if I have\\n\\n```org-mode\\n* A heading\\n```\\n\\nhow can I refile this to\\n\\n```org-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n```\\n\\n\\nso that the end result will look like\\n\\n```org-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n** subheading\\n*** A heading\\n```\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Refiling header to a new sub-header?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bni3ll\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557643814.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I create an elisp function that refiles the current header at point (and all of its children) to the ID \\u003Ccode\\u003Eid\\u003C/code\\u003E, but such that instead of just placing the header directly under \\u003Ccode\\u003Eid\\u003C/code\\u003E, it places it under its subheading of name \\u003Ccode\\u003Esubheading\\u003C/code\\u003E (whether or not \\u003Ccode\\u003Esubheading\\u003C/code\\u003E exists yet)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for example if I have\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* A heading\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ehow can I refile this to\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eso that the end result will look like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n** subheading\\n*** A heading\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bni3ll\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bni3ll/refiling_header_to_a_new_subheader/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bni3ll/refiling_header_to_a_new_subheader/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557615014.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"**Question:** How can I retrieve, over a set of files `S` (in particular: over my agenda files + their archive files) the total time clocked (as the return value of an elisp function; not as a clock table)? So for example, if I have:\\n\\n```org-mode\\n* SATISFICED Header1\\n CLOSED: [2019-05-01 Wed 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-01 Sat 18:10]--[2019-05-01 Sat 18:30] =\\u003E 0:20\\n :END:\\n\\n# File2\\n* SATISFICED Header2\\n CLOSED: [2019-05-11 Sat 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:11] =\\u003E 0:01\\n :END:\\n* SATISFICED Header3\\n CLOSED: [2019-05-11 Sat 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:20] =\\u003E 0:10\\n :END:\\n```\\n\\nI'd like to run a function like `(sum--all-time-from \\\"[2019-05-10]\\\" \\\"[2019-05-12]\\\")` to get as answer ~0:11~.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Retrieve the total time CLOCKED over a given interval\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnhu7v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557642259.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion:\\u003C/strong\\u003E How can I retrieve, over a set of files \\u003Ccode\\u003ES\\u003C/code\\u003E (in particular: over my agenda files + their archive files) the total time clocked (as the return value of an elisp function; not as a clock table)? So for example, if I have:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```org-mode\\n* SATISFICED Header1\\n CLOSED: [2019-05-01 Wed 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-01 Sat 18:10]--[2019-05-01 Sat 18:30] =\\u0026gt; 0:20\\n :END:\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EFile2\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESATISFICED Header2\\nCLOSED: [2019-05-11 Sat 18:13]\\n:LOGBOOK:\\nCLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:11] =\\u0026gt; 0:01\\n:END:\\u003C/li\\u003E\\n\\u003Cli\\u003ESATISFICED Header3\\nCLOSED: [2019-05-11 Sat 18:13]\\n:LOGBOOK:\\nCLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:20] =\\u0026gt; 0:10\\n:END:\\n```\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to run a function like \\u003Ccode\\u003E(sum--all-time-from \\u0026quot;[2019-05-10]\\u0026quot; \\u0026quot;[2019-05-12]\\u0026quot;)\\u003C/code\\u003E to get as answer ~0:11~.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnhu7v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bnhu7v/retrieve_the_total_time_clocked_over_a_given/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bnhu7v/retrieve_the_total_time_clocked_over_a_given/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557613459.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems 2 - Tables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnbtfg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 22, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 22, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems 2 - Tables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnbdye\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 87, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 87, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557605382.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnbdye\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 24, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bnbdye/orgmode_hidden_gems_2_tables/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1557576582.0, \"media\": null, \"is_video\": false}], \"created\": 1557608502.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnbtfg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bnbdye\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bnbtfg/orgmode_hidden_gems_2_tables/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557579702.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to get started with ox-beamer.\\n\\nI use the basic config:\\n\\n (require 'ox-latex)\\n (add-to-list 'org-latex-classes\\n '(\\\"beamer\\\"\\n \\\"\\\\\\\\documentclass\\\\[presentation\\\\]\\\\{beamer\\\\}\\\"\\n (\\\"\\\\\\\\section\\\\{%s\\\\}\\\" . \\\"\\\\\\\\section*\\\\{%s\\\\}\\\")\\n (\\\"\\\\\\\\subsection\\\\{%s\\\\}\\\" . \\\"\\\\\\\\subsection*\\\\{%s\\\\}\\\")\\n (\\\"\\\\\\\\subsubsection\\\\{%s\\\\}\\\" . \\\"\\\\\\\\subsubsection*\\\\{%s\\\\}\\\")))\\n\\n\\u0026#x200B;\\n\\nFirst, I want to reproduce [https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org](https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org)\\n\\nBut even on this basic example, I fail to get the correct sectioning into frames.\\n\\n[https://www.scribd.com/document/409442757/Beamer-Example](https://www.scribd.com/document/409442757/Beamer-Example)\\n\\n\\u0026#x200B;\\n\\nAny idea what's wrong?\", \"author_fullname\": \"t2_2b6wlz4w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Issue with ox-beamer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmy4qe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557522795.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to get started with ox-beamer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use the basic config:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;ox-latex)\\n(add-to-list \\u0026#39;org-latex-classes\\n \\u0026#39;(\\u0026quot;beamer\\u0026quot;\\n \\u0026quot;\\\\\\\\documentclass\\\\[presentation\\\\]\\\\{beamer\\\\}\\u0026quot;\\n (\\u0026quot;\\\\\\\\section\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\section*\\\\{%s\\\\}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsection\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\subsection*\\\\{%s\\\\}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsubsection\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\subsubsection*\\\\{%s\\\\}\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, I want to reproduce \\u003Ca href=\\\"https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org\\\"\\u003Ehttps://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut even on this basic example, I fail to get the correct sectioning into frames.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.scribd.com/document/409442757/Beamer-Example\\\"\\u003Ehttps://www.scribd.com/document/409442757/Beamer-Example\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny idea what\\u0026#39;s wrong?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmy4qe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hagetarou\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmy4qe/issue_with_oxbeamer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bmy4qe/issue_with_oxbeamer/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557493995.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 10, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmxvlv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557521353.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmxvlv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmxvlv/weekly_rorgmode_open_discussion_may_10_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bmxvlv/weekly_rorgmode_open_discussion_may_10_2019/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557492553.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmxv6e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 44, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 44, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmwec1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 133, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 133, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {\"gid_1\": 1}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557511141.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Silver Award\", \"coin_reward\": 0, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/silver_512.png\", \"days_of_premium\": 0, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 100, \"id\": \"gid_1\", \"name\": \"Silver\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmwec1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 21, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bmwec1/orgmode_hidden_gems/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt1/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1557482341.0, \"media\": null, \"is_video\": false}], \"created\": 1557521280.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmxv6e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bmwec1\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmxv6e/orgmode_hidden_gems/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt1/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557492480.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\n\\u0026#x200B;\\n\\nI have an org-file with several code blocks. Is there any way to run all of them at once instead of having to access each one individually and run c-c to make them execute?\", \"author_fullname\": \"t2_cc87w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Execute all code blocks at once\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bm856i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557365469.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have an org-file with several code blocks. Is there any way to run all of them at once instead of having to access each one individually and run c-c to make them execute?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bm856i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eljuman\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bm856i/execute_all_code_blocks_at_once/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bm856i/execute_all_code_blocks_at_once/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557336669.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I've been using org mode for task management for several months. I'm trying to transition into using it for note taking but I've found a recurrent error with the tables in org mode.\\n\\nIf I have a table with a column set to a short width, and then increase the size of the column to a width that is still shorter than the content of the longest cell in the column I get an error as shown below.\\n\\n\\u0026#x200B;\\n\\nI'm using Windows 10; GNU Emacs 26.1 (build 1, x86\\\\_64-w64-mingw32) of 2018-05-30; and Org mode version 9.1.9 (release\\\\_9.1.9-65-g5e4542 @ c:/Users/mccombsp/emacs/share/emacs/26.1/lisp/org/)\\n\\n\\u0026#x200B;\\n\\nEDIT:\\n\\nI duplicated the error on MacOs 10.14.4; GNU Emacs 26.1 (build 1, x86\\\\_64-apple-darwin14.5.0, NS appkit-1348.17 Version 10.10.5 (Build 14F2511)) of 2018-05-30; and Org mode version 9.1.9 (release\\\\_9.1.9-65-g5e4542 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)\\n\\n\\u0026#x200B;\\n\\n | short | short | long text that goes on and on and on and on |\\n | short | short | not so long text that only goes on |\\n | short | short | short |\\n | | | \\u003C5\\u003E |\\n \\n The above table works fine.\\n \\n | short | short | long text that goes on and on and on and on |\\n | short | short | not so long text that only goes on |\\n | short | short | short |\\n | | | \\u003C10\\u003E |\\n \\n The above table will work but only if I remove the width entirely first.\\n\\nEither table above table works fine. But if I change the the last cell from \\u003C5\\u003E to \\u003C10\\u003E I get the following emacs lisp error, and it doesn't adjust the table.\\n\\n org-table-next-field: Args out of range: #(\\\"long text that goes on and on and on and on\\\" 0 3 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 3 4 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 4 5 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 5 9 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 9 14 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 14 19 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 19 22 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 22 26 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 26 29 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 29 33 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 33 36 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 36 40 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 40 43 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth)), 0, 44\", \"author_fullname\": \"t2_3kfzu0nx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Error on increasing width of table columns\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_blz7uj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1557279529.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557308015.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been using org mode for task management for several months. I\\u0026#39;m trying to transition into using it for note taking but I\\u0026#39;ve found a recurrent error with the tables in org mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I have a table with a column set to a short width, and then increase the size of the column to a width that is still shorter than the content of the longest cell in the column I get an error as shown below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using Windows 10; GNU Emacs 26.1 (build 1, x86_64-w64-mingw32) of 2018-05-30; and Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ c:/Users/mccombsp/emacs/share/emacs/26.1/lisp/org/)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI duplicated the error on MacOs 10.14.4; GNU Emacs 26.1 (build 1, x86_64-apple-darwin14.5.0, NS appkit-1348.17 Version 10.10.5 (Build 14F2511)) of 2018-05-30; and Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E| short | short | long text that goes on and on and on and on |\\n| short | short | not so long text that only goes on |\\n| short | short | short |\\n| | | \\u0026lt;5\\u0026gt; |\\n\\nThe above table works fine.\\n\\n| short | short | long text that goes on and on and on and on |\\n| short | short | not so long text that only goes on |\\n| short | short | short |\\n| | | \\u0026lt;10\\u0026gt; |\\n\\nThe above table will work but only if I remove the width entirely first.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EEither table above table works fine. But if I change the the last cell from \\u0026lt;5\\u0026gt; to \\u0026lt;10\\u0026gt; I get the following emacs lisp error, and it doesn\\u0026#39;t adjust the table.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eorg-table-next-field: Args out of range: #(\\u0026quot;long text that goes on and on and on and on\\u0026quot; 0 3 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 3 4 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 4 5 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 5 9 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 9 14 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 14 19 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 19 22 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 22 26 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 26 29 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 29 33 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 33 36 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 36 40 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 40 43 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth)), 0, 44\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blz7uj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paulmccombs\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/blz7uj/error_on_increasing_width_of_table_columns/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/blz7uj/error_on_increasing_width_of_table_columns/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557279215.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3m2tic11\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Run C-c C-c fixups everywhere in a file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_blvp48\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557289465.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blvp48\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"telotortium\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/blvp48/run_cc_cc_fixups_everywhere_in_a_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/blvk82/run_cc_cc_fixups_everywhere_in_a_file/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557260665.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"https://gitlab.com/kisaragi-hiu/org-msr\\n\\nWhile trying to remember vocabulary words using Org, I thought it would be interesting if I use todo keywords and add schedules based on them to implement spaced repetition.\\n\\nI haven't used it for too long^[1] , but I made it its own package since there's too much to just stuff in my init. If this approach works, I hope this can serve as some sort of reference on how this can be done as well.\\n\\nThe package provides a function to update schedule based on the todo keyword, according to an alist (`org-msr-keyword-frequency-alist`). It also provides a minor mode that runs the function after `org-todo`).\\n\\nPlease check it out!\\n\\n[1]\\\\: The aforementioned org file is 6 days old currently (2019-05-05).\", \"author_fullname\": \"t2_10cocd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-msr: Minimal Spaced Repetition with todo keywords\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkxsd1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"elisp library\", \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557092245.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://gitlab.com/kisaragi-hiu/org-msr\\\"\\u003Ehttps://gitlab.com/kisaragi-hiu/org-msr\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile trying to remember vocabulary words using Org, I thought it would be interesting if I use todo keywords and add schedules based on them to implement spaced repetition.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t used it for too long\\u003Csup\\u003E[1]\\u003C/sup\\u003E , but I made it its own package since there\\u0026#39;s too much to just stuff in my init. If this approach works, I hope this can serve as some sort of reference on how this can be done as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe package provides a function to update schedule based on the todo keyword, according to an alist (\\u003Ccode\\u003Eorg-msr-keyword-frequency-alist\\u003C/code\\u003E). It also provides a minor mode that runs the function after \\u003Ccode\\u003Eorg-todo\\u003C/code\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease check it out!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[1]: The aforementioned org file is 6 days old currently (2019-05-05).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"698f39e4-c2ff-11e8-9e96-0e341354a6a2\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkxsd1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"flyin1501\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bkxsd1/orgmsr_minimal_spaced_repetition_with_todo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bkxsd1/orgmsr_minimal_spaced_repetition_with_todo/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1557063445.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode with Spacemacs: The Absolute Minimum\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkfckb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 22, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"article\", \"can_mod_post\": false, \"score\": 22, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode with Spacemacs: The Absolute Minimum\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkfare\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 55, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Org mode and Spacemacs: The Absolute Minimum you need to know\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Jack of Some\", \"thumbnail_height\": 360, \"thumbnail_url\": \"https://i.ytimg.com/vi/S4f-GUxu3CY/hqdefault.jpg\", \"type\": \"video\", \"provider_name\": \"YouTube\", \"author_url\": \"https://www.youtube.com/channel/UCe6ABcJkH_Gso9HJOt4x9fg\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bkfare\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 55, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556957136.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkfare\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jack-of-some\", \"num_crossposts\": 4, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bkfare/org_mode_with_spacemacs_the_absolute_minimum/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/S4f-GUxu3CY\", \"subreddit_subscribers\": 29874, \"created_utc\": 1556928336.0, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Org mode and Spacemacs: The Absolute Minimum you need to know\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Jack of Some\", \"thumbnail_height\": 360, \"thumbnail_url\": \"https://i.ytimg.com/vi/S4f-GUxu3CY/hqdefault.jpg\", \"type\": \"video\", \"provider_name\": \"YouTube\", \"author_url\": \"https://www.youtube.com/channel/UCe6ABcJkH_Gso9HJOt4x9fg\"}, \"type\": \"youtube.com\"}, \"is_video\": false}], \"created\": 1556957464.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c5c6b84c-c2fd-11e8-a9b1-0ea723e3b826\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkfckb\", \"is_robot_indexable\": true, \"stickied\": false, \"author\": \"jack-of-some\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bkfare\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bkfckb/org_mode_with_spacemacs_the_absolute_minimum/\", \"parent_whitelist_status\": null, \"report_reasons\": null, \"url\": \"https://youtu.be/S4f-GUxu3CY\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556928664.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 03, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bk83wf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556916567.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bk83wf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bk83wf/weekly_rorgmode_open_discussion_may_03_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bk83wf/weekly_rorgmode_open_discussion_may_03_2019/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556887767.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Does anyone have experience trying to share Emacs/org-mode with outsiders? \\n\\nI do realize how easily it is for me to sound like an evangelist when it comes to expressing my thoughts about the utility of a \\\"second brain\\\" on your computer, but I have been wondering on what aspects of the org-mode experience are most appealing to people who have mild interests in becoming more productive.\\n\\nPersonally, I tend to default to the \\\"don't ask don't tell\\\" approach when it comes to my deeper interests, but there seems to be something about this integration with technology that I wish I was taught about in school and thus, I feel a need to inform others. \\n\\nAll of this is not to forget that certain systems aren't suitable for all people, but I'm curious to know if anyone has a practiced \\\"elevator pitch\\\" for Emacs and org-mode? How do you go about sharing this, if you even do it at all? \\n\\nThanks\", \"author_fullname\": \"t2_w32dym0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sharing org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjyhvh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556851291.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone have experience trying to share Emacs/org-mode with outsiders? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI do realize how easily it is for me to sound like an evangelist when it comes to expressing my thoughts about the utility of a \\u0026quot;second brain\\u0026quot; on your computer, but I have been wondering on what aspects of the org-mode experience are most appealing to people who have mild interests in becoming more productive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPersonally, I tend to default to the \\u0026quot;don\\u0026#39;t ask don\\u0026#39;t tell\\u0026quot; approach when it comes to my deeper interests, but there seems to be something about this integration with technology that I wish I was taught about in school and thus, I feel a need to inform others. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll of this is not to forget that certain systems aren\\u0026#39;t suitable for all people, but I\\u0026#39;m curious to know if anyone has a practiced \\u0026quot;elevator pitch\\u0026quot; for Emacs and org-mode? How do you go about sharing this, if you even do it at all? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjyhvh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"swarmalator\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjyhvh/sharing_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjyhvh/sharing_orgmode/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556822491.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, \\n\\n\\u0026#x200B;\\n\\nI'm using orgmode + komascript to generate pdf from org-mode. It seems very handy.\\n\\nHowever, I would like to be able to store some \\\"profiles\\\" and then include it in my letter.\\n\\nExample: \\nA profile for personal letters which would include my personal address\\n\\nA profile for professional letters, which would include my office address\\n\\nIt seems like it is possible with LCO files but the documentation is not very clear about that.\\n\\n\\u0026#x200B;\\n\\nDoes anyone have experience with that?\\n\\nMany thanks in advance\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Managing different letter Template with Org mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjv50e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556833647.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using orgmode + komascript to generate pdf from org-mode. It seems very handy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I would like to be able to store some \\u0026quot;profiles\\u0026quot; and then include it in my letter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample:\\u003Cbr/\\u003E\\nA profile for personal letters which would include my personal address\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA profile for professional letters, which would include my office address\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems like it is possible with LCO files but the documentation is not very clear about that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have experience with that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjv50e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjv50e/managing_different_letter_template_with_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjv50e/managing_different_letter_template_with_org_mode/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556804847.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Inspired by this [StackExchange post](https://superuser.com/questions/567916/org-mode-command-to-create-new-file-from-subtree/568300#568300), I made a function that exports the current subtree to a file and replaces it with a link to that file. More specifically it does the following:\\n\\n1. Copy the subtree to a file whose filename is the subtree title\\n2. Replace the subtree with a link to the newly created file\\n3. In the file, promote all direct children of the subtree node to be level-1 headings\\n4. In the file, convert the original subtree title to be a `#+TITLE` parameter\\n\\nFor my work, I use a date-tree file to store my work notes. I use this function to move large subtrees of notes to their own dedicated file in order to keep the work notes file from growing too large. It seems to work well enough, but I feel that the code I have written is overly complicated. In particular, the mechanism I use to delete everything but the subtree headline is very similar to the mechanism I use to promote of the subtree children. Is there a simpler, more streamlined way to implement this function? The code is listed below:\\n\\n (defun sbr-org-file-from-subtree (\\u0026optional name)\\n \\\"Take the current subtree and create a new file from\\n it. Replace the current subtree with its main heading (i.e.,\\n delete all of its childen), and make the heading into a link\\n to the newly created file,\\n \\n In the new file, promote all direct children of the original\\n subtree to be level 1-headings, and transform the original\\n heading into the '#+TITLE' parameter.\\n \\n If called with the universal argument, prompt for new filename,\\n otherwise use the subtree title.\\\"\\n (interactive \\\"P\\\")\\n (org-back-to-heading)\\n (let ((filename (cond\\n (current-prefix-arg\\n (expand-file-name\\n (read-file-name \\\"New file name: \\\")))\\n (t\\n (concat\\n (expand-file-name\\n (org-element-property :title\\n (org-element-at-point))\\n default-directory)\\n \\\".org\\\")))))\\n ;; Copy current subtree into clipboard \\n (org-copy-subtree)\\n \\n ;; Delete everything but the headline\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (call-interactively 'delete-region)\\n (org-previous-visible-heading 1)\\n \\n ;; Mark the current headline text\\n (org-end-of-line)\\n (call-interactively 'set-mark-command)\\n (org-beginning-of-line)\\n \\n ;; Convert headline to a link of the to-be-created file\\n (org-insert-link nil filename)\\n \\n ;; Create file for subtree\\n (with-temp-file filename\\n ;; Paste in the subtree\\n (org-mode)\\n (org-paste-subtree)\\n ;; Promote all children, original headline is at level \\\"zero\\\"\\n (sbr-org-promote-subtree-to-zero)\\n (insert \\\"#+TITLE: \\\"))))\\n \\n (defun sbr-org-promote-subtree-to-zero ()\\n \\\"Promote the entire subtree. If the root heading is at level 1,\\n 'promote' it to level 0 by removing the heading.\\\"\\n (interactive)\\n (if (= (org-current-level) 1)\\n (progn\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (org-do-promote)\\n (org-previous-visible-heading 1)\\n (org-mark-subtree)\\n (org-toggle-heading))\\n (org-promote-subtree)))\", \"author_fullname\": \"t2_7nfrv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cleaner way to export subtree to file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjulhb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556830403.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EInspired by this \\u003Ca href=\\\"https://superuser.com/questions/567916/org-mode-command-to-create-new-file-from-subtree/568300#568300\\\"\\u003EStackExchange post\\u003C/a\\u003E, I made a function that exports the current subtree to a file and replaces it with a link to that file. More specifically it does the following:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECopy the subtree to a file whose filename is the subtree title\\u003C/li\\u003E\\n\\u003Cli\\u003EReplace the subtree with a link to the newly created file\\u003C/li\\u003E\\n\\u003Cli\\u003EIn the file, promote all direct children of the subtree node to be level-1 headings\\u003C/li\\u003E\\n\\u003Cli\\u003EIn the file, convert the original subtree title to be a \\u003Ccode\\u003E#+TITLE\\u003C/code\\u003E parameter\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EFor my work, I use a date-tree file to store my work notes. I use this function to move large subtrees of notes to their own dedicated file in order to keep the work notes file from growing too large. It seems to work well enough, but I feel that the code I have written is overly complicated. In particular, the mechanism I use to delete everything but the subtree headline is very similar to the mechanism I use to promote of the subtree children. Is there a simpler, more streamlined way to implement this function? The code is listed below:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun sbr-org-file-from-subtree (\\u0026amp;optional name)\\n \\u0026quot;Take the current subtree and create a new file from\\n it. Replace the current subtree with its main heading (i.e.,\\n delete all of its childen), and make the heading into a link\\n to the newly created file,\\n\\nIn the new file, promote all direct children of the original\\n subtree to be level 1-headings, and transform the original\\n heading into the \\u0026#39;#+TITLE\\u0026#39; parameter.\\n\\nIf called with the universal argument, prompt for new filename,\\notherwise use the subtree title.\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (org-back-to-heading)\\n (let ((filename (cond\\n (current-prefix-arg\\n (expand-file-name\\n (read-file-name \\u0026quot;New file name: \\u0026quot;)))\\n (t\\n (concat\\n (expand-file-name\\n (org-element-property :title\\n (org-element-at-point))\\n default-directory)\\n \\u0026quot;.org\\u0026quot;)))))\\n ;; Copy current subtree into clipboard \\n (org-copy-subtree)\\n\\n ;; Delete everything but the headline\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (call-interactively \\u0026#39;delete-region)\\n (org-previous-visible-heading 1)\\n\\n ;; Mark the current headline text\\n (org-end-of-line)\\n (call-interactively \\u0026#39;set-mark-command)\\n (org-beginning-of-line)\\n\\n ;; Convert headline to a link of the to-be-created file\\n (org-insert-link nil filename)\\n\\n ;; Create file for subtree\\n (with-temp-file filename\\n ;; Paste in the subtree\\n (org-mode)\\n (org-paste-subtree)\\n ;; Promote all children, original headline is at level \\u0026quot;zero\\u0026quot;\\n (sbr-org-promote-subtree-to-zero)\\n (insert \\u0026quot;#+TITLE: \\u0026quot;))))\\n\\n(defun sbr-org-promote-subtree-to-zero ()\\n \\u0026quot;Promote the entire subtree. If the root heading is at level 1,\\n\\u0026#39;promote\\u0026#39; it to level 0 by removing the heading.\\u0026quot;\\n (interactive)\\n (if (= (org-current-level) 1)\\n (progn\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (org-do-promote)\\n (org-previous-visible-heading 1)\\n (org-mark-subtree)\\n (org-toggle-heading))\\n (org-promote-subtree)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjulhb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cottasteel\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjulhb/cleaner_way_to_export_subtree_to_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjulhb/cleaner_way_to_export_subtree_to_file/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556801603.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_esdtt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to jump to a heading in a date tree\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjb692\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556700958.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"emacs.stackexchange.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjb692\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"plotnick\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjb692/how_to_jump_to_a_heading_in_a_date_tree/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://emacs.stackexchange.com/questions/50253/how-to-jump-to-a-heading-in-a-date-tree\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556672158.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How to export code blocks so that they will be side-by-side in exported HTML (like in table)? \\n\\nFor example:\\n\\n\\u0026#x200B;\\n\\n[Something like this](https://i.redd.it/g2njbopc0cv21.png)\", \"author_fullname\": \"t2_11whf3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Export code block side by side\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"g2njbopc0cv21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 73, \"x\": 250, \"u\": \"https://i.redd.it/g2njbopc0cv21.png\"}, \"m\": \"image/png\", \"id\": \"g2njbopc0cv21\"}}, \"name\": \"t3_bizbk6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556628452.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow to export code blocks so that they will be side-by-side in exported HTML (like in table)? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/g2njbopc0cv21.png\\\"\\u003ESomething like this\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bizbk6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lkmokadam\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bizbk6/export_code_block_side_by_side/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bizbk6/export_code_block_side_by_side/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556599652.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \" Create a file called issue tracker.org\\n\\nPut these in-buffer settings at the top of the file:\\n\\n #+AUTHOR: Your Name\\n #+STARTUP:indent\\n #+OPTIONS: num:nil toc:nil\\n #+TODO: ONCE(o) EPISODIC ONGOING POTENTIAL | RESOLVED IMPROVED UNRESOLVABLE TOLERATED INACTIVE\\n #+TODO: MALFUNCTION DAMAGE | REPAIRED REPLACED DISCARDED\\n #+TITLE:ISSUE TRACKER\\n \\n\\nAdd a capture template to your .emacs, e.g.:\\n\\n (\\\"i\\\" \\\"issue\\\" entry\\n (file+olp+datetree \\\"~ /org/issue tracker.org\\\")\\n \\\"* ONCE %?\\\" :time-prompt t)\\n\\n\\u0026#x200B;\\n\\nOutput appears in a datetree. Track issue statuses using TODO states. Use a sparse tree if you want to filter the log by status, date, or text string.\\n\\nExample output:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/fowvur8ow7v21.png\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using org-mode as a quick-and-dirty issue tracker.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"fowvur8ow7v21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 492, \"x\": 968, \"u\": \"https://i.redd.it/fowvur8ow7v21.png\"}, \"m\": \"image/png\", \"id\": \"fowvur8ow7v21\"}}, \"name\": \"t3_biqhjc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556578999.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECreate a file called issue tracker.org\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPut these in-buffer settings at the top of the file:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+AUTHOR: Your Name\\n#+STARTUP:indent\\n#+OPTIONS: num:nil toc:nil\\n#+TODO: ONCE(o) EPISODIC ONGOING POTENTIAL | RESOLVED IMPROVED UNRESOLVABLE TOLERATED INACTIVE\\n#+TODO: MALFUNCTION DAMAGE | REPAIRED REPLACED DISCARDED\\n#+TITLE:ISSUE TRACKER\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAdd a capture template to your .emacs, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;i\\u0026quot; \\u0026quot;issue\\u0026quot; entry\\n (file+olp+datetree \\u0026quot;~ /org/issue tracker.org\\u0026quot;)\\n \\u0026quot;* ONCE %?\\u0026quot; :time-prompt t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOutput appears in a datetree. Track issue statuses using TODO states. Use a sparse tree if you want to filter the log by status, date, or text string.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample output:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/fowvur8ow7v21.png\\\"\\u003Ehttps://i.redd.it/fowvur8ow7v21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"biqhjc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/biqhjc/using_orgmode_as_a_quickanddirty_issue_tracker/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/biqhjc/using_orgmode_as_a_quickanddirty_issue_tracker/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556550199.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I recently came across org-journal. Seems pretty sweet, but I'm overall more happy with using org-capture to log to a datetree. But, one thing I really liked about org-journal was that it was easy to set each entry to have a HH:MM timestamp as its headline title on creation.\\n\\nI've got something like\\n\\n (\\\"l\\\" \\\"Log\\\" entry (file+datetree \\\"log.org\\\") \\\"* %?\\n \\n %i\\\" :empty-lines 1 :clock-resume t)\\n\\nas my capture template. I'd love to have it the headline part be like \\\\`:\\\\* %H:%M %?\\\\`. But that doesn't work.\\n\\nIs there any way to get what I am after?\", \"author_fullname\": \"t2_mfiiw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"timestamp in capture template?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bim468\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556546700.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recently came across org-journal. Seems pretty sweet, but I\\u0026#39;m overall more happy with using org-capture to log to a datetree. But, one thing I really liked about org-journal was that it was easy to set each entry to have a HH:MM timestamp as its headline title on creation.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve got something like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;l\\u0026quot; \\u0026quot;Log\\u0026quot; entry (file+datetree \\u0026quot;log.org\\u0026quot;) \\u0026quot;* %?\\n\\n %i\\u0026quot; :empty-lines 1 :clock-resume t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eas my capture template. I\\u0026#39;d love to have it the headline part be like `:* %H:%M %?`. But that doesn\\u0026#39;t work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way to get what I am after?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bim468\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PhilosopherAboutTown\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bim468/timestamp_in_capture_template/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bim468/timestamp_in_capture_template/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556517900.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi I'm considering going to emacs org mode for work and school. One pretty critical question for me is: \\nI use Anki for studying. I take my notes and put them on Anki and I can walk around and get some studying done. Is there any similar thing with org-drill? So that I could sync flash cards to phone and study at any convenient time? Thanks\", \"author_fullname\": \"t2_21immxp8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Mobile drill\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bi3va7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556429497.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi I\\u0026#39;m considering going to emacs org mode for work and school. One pretty critical question for me is:\\u003Cbr/\\u003E\\nI use Anki for studying. I take my notes and put them on Anki and I can walk around and get some studying done. Is there any similar thing with org-drill? So that I could sync flash cards to phone and study at any convenient time? Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bi3va7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"a_person_anon\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bi3va7/mobile_drill/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bi3va7/mobile_drill/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556400697.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi. Is it possible to define a project as:\\n\\n1. a headline that is not a todo item, and\\n2. that has at least one direct child todo item (one level below)\\n\\nThis would allow nested projects. I want to add this to `org-agenda-custom-commands`, but am lacking the necessary elisp skills. I want to avoid having to use a `PROJECT` todo keyword for readability, nor a `PROJECT` tag, which demands diligence.\\n\\nBonus question: is it possible to additionally display a the direct parent project of sub-projects in the agenda view?\", \"author_fullname\": \"t2_tihct\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Project as a Headline that has direct Todo Item Children\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhwy7b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556381209.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi. Is it possible to define a project as:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Ea headline that is not a todo item, and\\u003C/li\\u003E\\n\\u003Cli\\u003Ethat has at least one direct child todo item (one level below)\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis would allow nested projects. I want to add this to \\u003Ccode\\u003Eorg-agenda-custom-commands\\u003C/code\\u003E, but am lacking the necessary elisp skills. I want to avoid having to use a \\u003Ccode\\u003EPROJECT\\u003C/code\\u003E todo keyword for readability, nor a \\u003Ccode\\u003EPROJECT\\u003C/code\\u003E tag, which demands diligence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBonus question: is it possible to additionally display a the direct parent project of sub-projects in the agenda view?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhwy7b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nopedoesntwork\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhwy7b/project_as_a_headline_that_has_direct_todo_item/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhwy7b/project_as_a_headline_that_has_direct_todo_item/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556352409.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 26, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhlvza\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556311753.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhlvza\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhlvza/weekly_rorgmode_open_discussion_april_26_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhlvza/weekly_rorgmode_open_discussion_april_26_2019/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556282953.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to recreate the functionality of an old Mac app I saw over a decade ago that had the concept of \\\"variable time repeating tasks\\\".\\n\\nIn other words, do \\\"water the plants\\\" every 4 to 8 days. It looks like I can sort of do this with:\\n\\n EDIT: \\u003C2019-04-26 Fri .+8d -4d\\u003E\\n\\nBut does anyone know of a better way to accomplish this?\\n\\nIdeally I'd be able to see how often I watered the plants last month, showing a timeline with marks every time I complete the task. So:\\n\\n March: 1st, 5th, 12th, 20th, 24th, 29th\\n\\nTo see how lax I was, or if I was doing something too frequently.\\n\\nSorry, weird problem/request, and I'm pretty terrible at describing it.\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Repeating tasks, do X every a to b days?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhczz6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1556222407.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556250552.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to recreate the functionality of an old Mac app I saw over a decade ago that had the concept of \\u0026quot;variable time repeating tasks\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn other words, do \\u0026quot;water the plants\\u0026quot; every 4 to 8 days. It looks like I can sort of do this with:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EEDIT: \\u0026lt;2019-04-26 Fri .+8d -4d\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBut does anyone know of a better way to accomplish this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIdeally I\\u0026#39;d be able to see how often I watered the plants last month, showing a timeline with marks every time I complete the task. So:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EMarch: 1st, 5th, 12th, 20th, 24th, 29th\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ETo see how lax I was, or if I was doing something too frequently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESorry, weird problem/request, and I\\u0026#39;m pretty terrible at describing it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhczz6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhczz6/repeating_tasks_do_x_every_a_to_b_days/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhczz6/repeating_tasks_do_x_every_a_to_b_days/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556221752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_64sbo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Unexpected behavior in org-mode when dealing with paragraphs, for example \\\"vip\\\" (visual inner paragraph) and [ and ] don't work as they should. Help?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bh9imi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1728, \"scrubber_media_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_96\", \"dash_url\": \"https://v.redd.it/kj55kbq3bfu21/DASHPlaylist.mpd\", \"duration\": 27, \"hls_url\": \"https://v.redd.it/kj55kbq3bfu21/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556232582.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bh9imi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rainymood_XI\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bh9imi/unexpected_behavior_in_orgmode_when_dealing_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/kj55kbq3bfu21\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556203782.0, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1728, \"scrubber_media_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_96\", \"dash_url\": \"https://v.redd.it/kj55kbq3bfu21/DASHPlaylist.mpd\", \"duration\": 27, \"hls_url\": \"https://v.redd.it/kj55kbq3bfu21/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI want to filter the current agenda using elisp commands mapped to a shortcut. I know that I could create separate agenda for different filters but this time, I'd prefer to have an arbitrary agenda and filter it.\\n\\nIn my case, I'd like to show only higest priority tasks: `[#A]`\\n\\nI could not find a specific command for filtering according to priority. However, interactively this can be achieved using `org-agenda-filter-by-regexp` (mapped to `=`) and then entering the regular expression `.*\\\\[#A\\\\].*`.\\n\\nI tried to debug `org-agenda-filter-by-regexp` and then `org-agenda-filter-apply` in order to find out how the elisp command including the parameters has to look like when I want to use it in a DIY-function.\\n\\nWhen I apply `(org-agenda-filter-apply \\\"+.*\\\\\\\\[#A\\\\\\\\].*\\\" \\\"+\\\" nil)` in the agenda (via `M-:`), I only get `nil` and nothing is changed. This clearly is wrong somehow.\\n\\nWhen debugging my elisp command and comparing to the interactive invocation, the regex as well as the second parameter do not match. This is where my elisp knowledge ends so far.\\n\\nAre you able to help me finding out what the magic spell is to *activate* the filter via an elisp command?\\n\\nThanks!\\n\\nPS: What I could find out myself is the command to disable the filter: `(org-agenda-filter-show-all-re)` \\u2026 hooray.\", \"author_fullname\": \"t2_dp04z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Elisp command to filter the agenda to show only [#A] prio tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgzod3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556167047.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to filter the current agenda using elisp commands mapped to a shortcut. I know that I could create separate agenda for different filters but this time, I\\u0026#39;d prefer to have an arbitrary agenda and filter it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my case, I\\u0026#39;d like to show only higest priority tasks: \\u003Ccode\\u003E[#A]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI could not find a specific command for filtering according to priority. However, interactively this can be achieved using \\u003Ccode\\u003Eorg-agenda-filter-by-regexp\\u003C/code\\u003E (mapped to \\u003Ccode\\u003E=\\u003C/code\\u003E) and then entering the regular expression \\u003Ccode\\u003E.*\\\\[#A\\\\].*\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to debug \\u003Ccode\\u003Eorg-agenda-filter-by-regexp\\u003C/code\\u003E and then \\u003Ccode\\u003Eorg-agenda-filter-apply\\u003C/code\\u003E in order to find out how the elisp command including the parameters has to look like when I want to use it in a DIY-function.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I apply \\u003Ccode\\u003E(org-agenda-filter-apply \\u0026quot;+.*\\\\\\\\[#A\\\\\\\\].*\\u0026quot; \\u0026quot;+\\u0026quot; nil)\\u003C/code\\u003E in the agenda (via \\u003Ccode\\u003EM-:\\u003C/code\\u003E), I only get \\u003Ccode\\u003Enil\\u003C/code\\u003E and nothing is changed. This clearly is wrong somehow.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen debugging my elisp command and comparing to the interactive invocation, the regex as well as the second parameter do not match. This is where my elisp knowledge ends so far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre you able to help me finding out what the magic spell is to \\u003Cem\\u003Eactivate\\u003C/em\\u003E the filter via an elisp command?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: What I could find out myself is the command to disable the filter: \\u003Ccode\\u003E(org-agenda-filter-show-all-re)\\u003C/code\\u003E \\u2026 hooray.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgzod3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"murdsdrum\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgzod3/elisp_command_to_filter_the_agenda_to_show_only_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgzod3/elisp_command_to_filter_the_agenda_to_show_only_a/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556138247.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is there anyway to automate refiling according to tag? For example, let's say that I have a bunch of todos and notes in [inbox.org](https://inbox.org) captured by a template.\\n\\n\\u0026#x200B;\\n\\n* `TODO Finish task :project1:`\\n* `Reference for emacs theme :emacs:`\\n* `TODO Email Robert :project2:`\\n\\n\\u0026#x200B;\\n\\nCould all headings in [inbox.org](https://inbox.org) tagged :project1: be automatically refiled to [project1.org](https://project1.org); those tagged with :project2: refiled to [project2.org](https://project2.org); and those tagged :emacs: be refiled to [emacs.org](https://emacs.org)? maybe tied to a key binding, or through a cron job?\\n\\n\\u0026#x200B;\\n\\nMany thanks in advance!\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Automate refiling according to tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgy3v6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556159094.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there anyway to automate refiling according to tag? For example, let\\u0026#39;s say that I have a bunch of todos and notes in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E captured by a template.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003ETODO Finish task :project1:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EReference for emacs theme :emacs:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003ETODO Email Robert :project2:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECould all headings in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E tagged :project1: be automatically refiled to \\u003Ca href=\\\"https://project1.org\\\"\\u003Eproject1.org\\u003C/a\\u003E; those tagged with :project2: refiled to \\u003Ca href=\\\"https://project2.org\\\"\\u003Eproject2.org\\u003C/a\\u003E; and those tagged :emacs: be refiled to \\u003Ca href=\\\"https://emacs.org\\\"\\u003Eemacs.org\\u003C/a\\u003E? maybe tied to a key binding, or through a cron job?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgy3v6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556130294.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"On org-agenda, a new window is opened with the agenda. How can I open org-agenda in the current window and not have it open a new one?\", \"author_fullname\": \"t2_q43ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Open org-agenda in current window\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgpycx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556106434.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn org-agenda, a new window is opened with the agenda. How can I open org-agenda in the current window and not have it open a new one?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgpycx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HumanBrainMapper\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgpycx/open_orgagenda_in_current_window/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgpycx/open_orgagenda_in_current_window/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556077634.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I can't seem to get the variable to expand into src block\\n\\n #+BEGIN_SRC conf :tangle ~/.config/mine.conf :var argument=abcde\\n setting1 1234\\n setting2 argument\\n #+END_SRC\\n\\nWhen I export the file for tangling (C-c C-v t), the \\\"argument\\\" keyword is not expanded into \\\"abcde\\\". \\n\\nI realise this is because I am not evaluatiing the block but exporting it. \\n\\nHow do I achieve my desired output in the tangled file?\", \"author_fullname\": \"t2_xup40\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Passing variable into a org babel code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgdr5m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556035419.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t seem to get the variable to expand into src block\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+BEGIN_SRC conf :tangle ~/.config/mine.conf :var argument=abcde\\nsetting1 1234\\nsetting2 argument\\n#+END_SRC\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I export the file for tangling (C-c C-v t), the \\u0026quot;argument\\u0026quot; keyword is not expanded into \\u0026quot;abcde\\u0026quot;. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI realise this is because I am not evaluatiing the block but exporting it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I achieve my desired output in the tangled file?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgdr5m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tomatoaway\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgdr5m/passing_variable_into_a_org_babel_code/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgdr5m/passing_variable_into_a_org_babel_code/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1556006619.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a custom clocktable as a dynamic block that I'd like to export alongside an agenda view to a file. \\n\\nIs it possible to either create a dynamic block with a custom agenda view (i.e. have this as two dynamic blocks)? Or is it possible to have an agenda execute/display a custom dynamic block (add the dyn block to the org agenda and export via the agenda?)\", \"author_fullname\": \"t2_1mhaum0e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Execute agenda command as a dynamic block? Or add a dynamic block to block agenda?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bg1vh6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555967071.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a custom clocktable as a dynamic block that I\\u0026#39;d like to export alongside an agenda view to a file. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs it possible to either create a dynamic block with a custom agenda view (i.e. have this as two dynamic blocks)? Or is it possible to have an agenda execute/display a custom dynamic block (add the dyn block to the org agenda and export via the agenda?)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bg1vh6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jethro_spackle\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bg1vh6/execute_agenda_command_as_a_dynamic_block_or_add/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bg1vh6/execute_agenda_command_as_a_dynamic_block_or_add/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555938271.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a narrowing function I use which I detail in [this post.](https://www.reddit.com/r/emacs/comments/b8jqor/making_orgmode_narrowing_as_intuitive_as_workflow/) However, is there a way that I can take the heading I narrowed into and turn into the title of the newly created indirect buffer? So for example:\\n\\nTake this:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/l7quj7b7ult21.png\\n\\nand transform into this:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/tvm0qqueult21.png\\n\\nBonus points if changing the title of the indirect buffer also updates the heading in the parent buffer.\", \"author_fullname\": \"t2_39gpz9p3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make parent heading of subtree of indirect buffer appear as title\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"tvm0qqueult21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 116, \"x\": 266, \"u\": \"https://i.redd.it/tvm0qqueult21.png\"}, \"m\": \"image/png\", \"id\": \"tvm0qqueult21\"}, \"l7quj7b7ult21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 154, \"x\": 193, \"u\": \"https://i.redd.it/l7quj7b7ult21.png\"}, \"m\": \"image/png\", \"id\": \"l7quj7b7ult21\"}}, \"name\": \"t3_bfnzqd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555875949.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a narrowing function I use which I detail in \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/b8jqor/making_orgmode_narrowing_as_intuitive_as_workflow/\\\"\\u003Ethis post.\\u003C/a\\u003E However, is there a way that I can take the heading I narrowed into and turn into the title of the newly created indirect buffer? So for example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/l7quj7b7ult21.png\\\"\\u003Ehttps://i.redd.it/l7quj7b7ult21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand transform into this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/tvm0qqueult21.png\\\"\\u003Ehttps://i.redd.it/tvm0qqueult21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBonus points if changing the title of the indirect buffer also updates the heading in the parent buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bfnzqd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ykhurshid\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bfnzqd/make_parent_heading_of_subtree_of_indirect_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bfnzqd/make_parent_heading_of_subtree_of_indirect_buffer/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555847149.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"That's all (stick it in your .emacs of course, and M-x load-file RET .emacs)! I find it handy and use it to outline my day away from the agenda view, to take notes, or to keep a live tree of info for current tasks and it allows me to easily refile any text in said buffer should I decide to keep it later.\", \"author_fullname\": \"t2_3kdg6g4t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tip: Set *scratch* buffer default mode to Org: (setq initial-major-mode 'org-mode)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bf3xw3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1555739479.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555734699.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s all (stick it in your .emacs of course, and M-x load-file RET .emacs)! I find it handy and use it to outline my day away from the agenda view, to take notes, or to keep a live tree of info for current tasks and it allows me to easily refile any text in said buffer should I decide to keep it later.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bf3xw3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PeanutButterGuru\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bf3xw3/tip_set_scratch_buffer_default_mode_to_org_setq/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bf3xw3/tip_set_scratch_buffer_default_mode_to_org_setq/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555705899.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 19, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_beyq0w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555706949.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"beyq0w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/beyq0w/weekly_rorgmode_open_discussion_april_19_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/beyq0w/weekly_rorgmode_open_discussion_april_19_2019/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555678149.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Anyone use org-caldav? Do you know how to don't display the \\\"org caldav sync result\\\" buffer after sync?\", \"author_fullname\": \"t2_14ghl9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Don't show me \\\"org caldav sync result\\\" !\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bexsu1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555700116.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnyone use org-caldav? Do you know how to don\\u0026#39;t display the \\u0026quot;org caldav sync result\\u0026quot; buffer after sync?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bexsu1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"floZx\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bexsu1/dont_show_me_org_caldav_sync_result/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bexsu1/dont_show_me_org_caldav_sync_result/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555671316.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_2lebcxk6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"is it possible to rename the :ARCHIVE: tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bemm49\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555628701.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bemm49\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"grouchy_otter\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bemm49/is_it_possible_to_rename_the_archive_tag/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bemm49/is_it_possible_to_rename_the_archive_tag/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555599901.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a plain shopping list which I reuse. When I need an item I put a tick mark by it, and when I purchase it I marked it as ticked.\\n\\nPreparing a shopping list simply means frequenting the same list and reticking the things I need if they are unticked and usually means this type of syntax\\n\\n - [X] Item 1\\n - [ ] Item 2\\n\\nI am trying out orgzly with this syntax and backspacing in small touchkeyboard to edit lines like this is rather clunky.\\n\\nIs there another syntax that makes it easier to type on a mobile phone keyboard?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is the simplest way of express a shopping list in org?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_beaxfo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555552869.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a plain shopping list which I reuse. When I need an item I put a tick mark by it, and when I purchase it I marked it as ticked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPreparing a shopping list simply means frequenting the same list and reticking the things I need if they are unticked and usually means this type of syntax\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E- [X] Item 1\\n- [ ] Item 2\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI am trying out orgzly with this syntax and backspacing in small touchkeyboard to edit lines like this is rather clunky.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there another syntax that makes it easier to type on a mobile phone keyboard?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"beaxfo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/beaxfo/what_is_the_simplest_way_of_express_a_shopping/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/beaxfo/what_is_the_simplest_way_of_express_a_shopping/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555524069.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey folks. In the past I used Orgmode quite a lot, both for organizing my everyday life and for organizing my research. But then I grew tired of its text-heavy style. I wanted something more visual, more two dimensional. I tried Zim and even though it is a decent software, it was not as capable as the good Org. So I have a dilemma. Short of writing my own software, Org seems to be the only game in town for me.\\n\\n\\u0026#x200B;\\n\\nSo, is there any way to make Org more visual, more 2-dimensional? Or are there any such variants of it (or software inspired by it)? By more visual I mean the ability to have different font sizes (or headers), colors, etc. In short, basic HTML formatting capabilities. When I'm working on an Org file it's like I'm writing source code.\", \"author_fullname\": \"t2_15qtbm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Good old Orgmode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_be8m4x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1555514167.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555541001.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey folks. In the past I used Orgmode quite a lot, both for organizing my everyday life and for organizing my research. But then I grew tired of its text-heavy style. I wanted something more visual, more two dimensional. I tried Zim and even though it is a decent software, it was not as capable as the good Org. So I have a dilemma. Short of writing my own software, Org seems to be the only game in town for me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, is there any way to make Org more visual, more 2-dimensional? Or are there any such variants of it (or software inspired by it)? By more visual I mean the ability to have different font sizes (or headers), colors, etc. In short, basic HTML formatting capabilities. When I\\u0026#39;m working on an Org file it\\u0026#39;s like I\\u0026#39;m writing source code.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"be8m4x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"badmanbrown\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/be8m4x/good_old_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/be8m4x/good_old_orgmode/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555512201.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Some of you may know the Don't break the Chain Method to gain good habits. \\n\\nI plan to organize this with a simple org table (Better suggestions are welcome).\\n\\nnow i Insert a Timestamp with `C-c .` how can I now generate like 1 month of lines in this table.\\n\\nOr how can I fill a table with consequtive Dates. \\n\\n\\u0026#x200B;\\n\\n[Table View](https://i.redd.it/wvee4lu9mls21.png)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[Wanted functionality](https://i.redd.it/gtvwmilkmls21.png)\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Don't Break the Chain with Org Mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"wvee4lu9mls21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 90, \"x\": 522, \"u\": \"https://i.redd.it/wvee4lu9mls21.png\"}, \"m\": \"image/png\", \"id\": \"wvee4lu9mls21\"}, \"gtvwmilkmls21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 294, \"x\": 495, \"u\": \"https://i.redd.it/gtvwmilkmls21.png\"}, \"m\": \"image/png\", \"id\": \"gtvwmilkmls21\"}}, \"name\": \"t3_bds2qx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555437328.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESome of you may know the Don\\u0026#39;t break the Chain Method to gain good habits. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI plan to organize this with a simple org table (Better suggestions are welcome).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Enow i Insert a Timestamp with \\u003Ccode\\u003EC-c .\\u003C/code\\u003E how can I now generate like 1 month of lines in this table.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr how can I fill a table with consequtive Dates. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/wvee4lu9mls21.png\\\"\\u003ETable View\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/gtvwmilkmls21.png\\\"\\u003EWanted functionality\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bds2qx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bds2qx/dont_break_the_chain_with_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bds2qx/dont_break_the_chain_with_org_mode/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555408528.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone I've got a problem with my org agenda while using global linum mode. \\n\\nI have a function that generates a window layout with left an agenda and right another file \\n\\n\\nIf i use global linum mode the tags are always shifted to the right, so you cant read everything. \\n\\n \\n\\n\\n[with linum mode](https://i.redd.it/d6rhurfqpks21.png)\\n\\n\\u0026#x200B;\\n\\n[without linum mode](https://i.redd.it/l98vvqtvpks21.png)\\n\\n\\u0026#x200B;\\n\\nHow can I solve this problem\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Split Agenda Buffer Tag visability Error (linum mode)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"d6rhurfqpks21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 457, \"x\": 954, \"u\": \"https://i.redd.it/d6rhurfqpks21.png\"}, \"m\": \"image/png\", \"id\": \"d6rhurfqpks21\"}, \"l98vvqtvpks21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 450, \"x\": 977, \"u\": \"https://i.redd.it/l98vvqtvpks21.png\"}, \"m\": \"image/png\", \"id\": \"l98vvqtvpks21\"}}, \"name\": \"t3_bdqsi1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555426345.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone I\\u0026#39;ve got a problem with my org agenda while using global linum mode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a function that generates a window layout with left an agenda and right another file \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf i use global linum mode the tags are always shifted to the right, so you cant read everything. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/d6rhurfqpks21.png\\\"\\u003Ewith linum mode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/l98vvqtvpks21.png\\\"\\u003Ewithout linum mode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I solve this problem\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bdqsi1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bdqsi1/split_agenda_buffer_tag_visability_error_linum/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bdqsi1/split_agenda_buffer_tag_visability_error_linum/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555397545.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I define a timestamp that:\\n\\n\\u0026#x200B;\\n\\n* takes place on multiple consecutive days (date range)\\n* at a fixed time interval each day (e.g. 9am-5pm)\\n\\n\\u0026#x200B;\\n\\nI'm trying:\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E--\\u003C2019-04-30 Tue 09:00-21:00\\u003E\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E--\\u003C2019-04-30 Tue\\u003E\\n\\n\\u0026#x200B;\\n\\nBut only the first day show's a time, the rest is shown as a whole day event.\\n\\n\\u0026#x200B;\\n\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E\\n \\u003C2019-04-24 Wed 09:00-21:00\\u003E\\n \\u003C2019-04-25 Thu 09:00-21:00\\u003E\\n \\u003C2019-04-26 Fri 09:00-21:00\\u003E\\n \\u003C2019-04-27 Sat 09:00-21:00\\u003E\\n \\u003C2019-04-28 Sun 09:00-21:00\\u003E\\n \\u003C2019-04-28 Sun 09:00-21:00\\u003E\\n \\u003C2019-04-30 Tue 09:00-21:00\\u003E\\n\\nSeems to work, but is seriously broken =)\", \"author_fullname\": \"t2_dcfnv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Define a date range with time interval for each day?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bdekci\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555354229.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I define a timestamp that:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Etakes place on multiple consecutive days (date range)\\u003C/li\\u003E\\n\\u003Cli\\u003Eat a fixed time interval each day (e.g. 9am-5pm)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;--\\u0026lt;2019-04-30 Tue 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;--\\u0026lt;2019-04-30 Tue\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut only the first day show\\u0026#39;s a time, the rest is shown as a whole day event.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-24 Wed 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-25 Thu 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-26 Fri 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-27 Sat 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-28 Sun 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-28 Sun 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-30 Tue 09:00-21:00\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESeems to work, but is seriously broken =)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bdekci\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"poiu-\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bdekci/define_a_date_range_with_time_interval_for_each/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bdekci/define_a_date_range_with_time_interval_for_each/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555325429.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly reports from org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd9prf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm starting to use more advanced features of org and am loving it!\\n\\nI'd like to be able to export a weekly report from org, based on TODOs I've either marked done or TODOs that have a timestamped note underneath them within the week previous to the current day. For example, if today is Thursday and I finished TODO A on Tuesday and made notes to TODO B on Friday and Wednesday but did not update TODO C at all, I'd like the export to contain TODOS A and B, along with any notes made under them in the past week.\\n\\nI imagine someone has implemented something like this before. Is there a module or package that does it, or an org agenda export config that would do it?\\n\\nThank you!\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly reports from org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd7asx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555303180.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m starting to use more advanced features of org and am loving it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to be able to export a weekly report from org, based on TODOs I\\u0026#39;ve either marked done or TODOs that have a timestamped note underneath them within the week previous to the current day. For example, if today is Thursday and I finished TODO A on Tuesday and made notes to TODO B on Friday and Wednesday but did not update TODO C at all, I\\u0026#39;d like the export to contain TODOS A and B, along with any notes made under them in the past week.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI imagine someone has implemented something like this before. Is there a module or package that does it, or an org agenda export config that would do it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd7asx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"subreddit_subscribers\": 29874, \"created_utc\": 1555274380.0, \"media\": null, \"is_video\": false}], \"created\": 1555317009.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd9prf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bd7asx\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bd9prf/weekly_reports_from_org/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555288209.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"In Org, you arrange projects as a TODO with sub-TODOs (and so on). These TODOs may be ordered such that the first TODO in a project must be finished before the next TODO can start. I have two questions:\\n\\n1. Can you create an agenda that shows TODOs hierarchically? That is, an agenda that shows all the projects with sub-TODOs that need attention?\\n\\n2. Can an agenda be made to not show TODOs that are blocked by TODOs that still have to be done?\", \"author_fullname\": \"t2_baw354f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hierarchical Agendas?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd4ka9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555288456.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn Org, you arrange projects as a TODO with sub-TODOs (and so on). These TODOs may be ordered such that the first TODO in a project must be finished before the next TODO can start. I have two questions:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECan you create an agenda that shows TODOs hierarchically? That is, an agenda that shows all the projects with sub-TODOs that need attention?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECan an agenda be made to not show TODOs that are blocked by TODOs that still have to be done?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd4ka9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SmoothInternet\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555259656.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I try something like this:\\n\\n * Hello\\n ** World\\n Some *notes* /here/. \\n ** Foo\\n #+begin_src org\\n *Hello* +world+ /sailor/. =Emacs=.\\n #+end_src\\n \\nthe text inside the org src block does not get proper font-locking/syntax-highlighting for Org mode (e.g. `*Hello*` is not shown in bold; `+world+` is not struck-through, etc.). (If I open the src block in a new buffer with `C-c '` the proper font-locking applies in the new buffer.)\\n\\nLikewise, when the point is inside the org src block, the echo area displays `eldoc error: (error Variable binding depth exceeds max-specpdl-size)`.\\n\\nIs there any way around these issues with Org-in-Org? Or is this a limitation on embedded Org blocks in Org?\", \"author_fullname\": \"t2_8a43c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Getting proper font-locking/syntax-highlighting in embedded org src blocks in Org mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bct1in\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555206091.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I try something like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Hello\\n** World\\n Some *notes* /here/. \\n** Foo\\n#+begin_src org\\n*Hello* +world+ /sailor/. =Emacs=.\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ethe text inside the org src block does not get proper font-locking/syntax-highlighting for Org mode (e.g. \\u003Ccode\\u003E*Hello*\\u003C/code\\u003E is not shown in bold; \\u003Ccode\\u003E+world+\\u003C/code\\u003E is not struck-through, etc.). (If I open the src block in a new buffer with \\u003Ccode\\u003EC-c \\u0026#39;\\u003C/code\\u003E the proper font-locking applies in the new buffer.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELikewise, when the point is inside the org src block, the echo area displays \\u003Ccode\\u003Eeldoc error: (error Variable binding depth exceeds max-specpdl-size)\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way around these issues with Org-in-Org? Or is this a limitation on embedded Org blocks in Org?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bct1in\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"emacsomancer\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bct1in/getting_proper_fontlockingsyntaxhighlighting_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bct1in/getting_proper_fontlockingsyntaxhighlighting_in/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555177291.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is it possible to set (setq org-agenda-files) files as all .org files in a directory that contain \\\"project\\\" somewhere in their filename? I've been playing around with both (find-lisp-find-files) and also (file-expand-wildcards) but cannot make it work. Much documentation re \\\\*.org but not \\\\*project\\\\*.org. Many thanks in advance!\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Possible to set agenda files to files in a directory that match partial filename?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcnamp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555161639.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to set (setq org-agenda-files) files as all .org files in a directory that contain \\u0026quot;project\\u0026quot; somewhere in their filename? I\\u0026#39;ve been playing around with both (find-lisp-find-files) and also (file-expand-wildcards) but cannot make it work. Much documentation re *.org but not *project*.org. Many thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcnamp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcnamp/possible_to_set_agenda_files_to_files_in_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcnamp/possible_to_set_agenda_files_to_files_in_a/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555132839.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I recently update my `org` to the version `9.2`\\n(to be precise: `Org mode version 9.2.3 (9.2.3-4-g6ec402-elpaplus @ /home/nanounanue/.emacs.d/elpa/org-plus-contrib-20190408/`)\\n\\nI did it because I replaced the `ob-ipython` with `emacs-jupyter` (more stable, more features and now I am very happy)\\n\\nNow, I am experimenting the following hiccups:\\n\\n(a) When I try to insert a code block using the new keybinding `C-c C-,` I got:\\n\\n```\\nWarning (org):\\nPlease update the entries of `org-structure-template-alist'.\\n\\nIn Org 9.2 the format was changed from something like\\n\\n(\\\"s\\\" \\\"#+BEGIN_SRC ?\\\\n#+END_SRC\\\")\\n\\nto something like\\n\\n(\\\"s\\\" . \\\"src\\\")\\n\\nPlease refer to the documentation of `org-structure-template-alist'.\\n\\nThe following entries must be updated:\\n\\n((\\\"n\\\" \\\"#+BEGIN_NOTES\\\\n?\\\\n#+END_NOTES\\\")\\n(\\\"Q\\\" \\\"#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\\" \\\"#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\\"))\\n```\\n\\nI searched in my =.emacs= and I don't find those lines, actually my templates are:\\n\\n```\\n(add-to-list 'org-structure-template-alist\\n'(\\\"el\\\" . \\\"src emacs-lisp\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"sh\\\" . \\\"src shell\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"Q\\\" . \\\"src sql\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"py\\\" . \\\"src jupyter-python\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"md\\\" . \\\"src markdown\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"sr\\\" . \\\"src R\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"l\\\" . \\\"src lisp\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"cl\\\" . \\\"src clojure\\\"))\\n```\\n\\nSo, I am kind of lost here.\\n\\n\\n(b) My `sql` babel blocks now throw the following error everytime that the cursor enters the block\\n\\n```\\nDebugger entered--Lisp error: (wrong-type-argument stringp 5434)\\n#f(compiled-function (elem) #\\u003Cbytecode 0x1563983c7e95\\u003E)((:dbport . 5434))\\nmapconcat(#f(compiled-function (elem) #\\u003Cbytecode 0x1563983c7e95\\u003E) ((:results . \\\"drawer table replace\\\") (:exports . \\\"both\\\") (:cmdline . \\\"-q\\\") (:eval . \\\"no-export\\\") (:database . \\\"food\\\") (:dbpassword . \\\"some_password\\\") (:dbuser . \\\"food_user\\\") (:dbport . 5434) (:dbhost . \\\"0.0.0.0\\\") (:engine . \\\"postgresql\\\") (:tangle . \\\"no\\\") (:hlines . \\\"no\\\") (:noweb . \\\"no\\\") (:cache . \\\"no\\\") (:session . \\\"none\\\")) \\\" \\\")\\norg-eldoc-get-src-header()\\norg-eldoc-documentation-function()\\neldoc-print-current-symbol-info()\\n#f(compiled-function () #\\u003Cbytecode 0x1feb98d89639\\u003E)()\\napply(#f(compiled-function () #\\u003Cbytecode 0x1feb98d89639\\u003E) nil)\\ntimer-event-handler([t 0 0 100000 t #f(compiled-function () #\\u003Cbytecode 0x1feb98d89639\\u003E) nil idle 0])\\n```\\n\\n(c) If I try to refresh the headers of an org-mode buffer using `C-c C-c` I got the following error:\\n\\n```\\nDebugger entered--Lisp error: (void-function org-outline-overlay-data)\\norg-outline-overlay-data(use-markers)\\norg-ctrl-c-ctrl-c(nil)\\nfuncall-interactively(org-ctrl-c-ctrl-c nil)\\ncall-interactively(org-ctrl-c-ctrl-c nil nil)\\n#f(compiled-function (cmd \\u0026optional record-flag keys special) \\\"Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the `commandp' predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable `command-history'.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don't clear it.\\\" #\\u003Cbytecode 0x1feb98d60d25\\u003E)(org-ctrl-c-ctrl-c nil nil nil)\\nad-Advice-command-execute(#f(compiled-function (cmd \\u0026optional record-flag keys special) \\\"Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the `commandp' predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable `command-history'.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don't clear it.\\\" #\\u003Cbytecode 0x1feb98d60d25\\u003E) org-ctrl-c-ctrl-c)\\napply(ad-Advice-command-execute #f(compiled-function (cmd \\u0026optional record-flag keys special) \\\"Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the `commandp' predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable `command-history'.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don't clear it.\\\" #\\u003Cbytecode 0x1feb98d60d25\\u003E) org-ctrl-c-ctrl-c)\\ncommand-execute(org-ctrl-c-ctrl-c)\\n````\\n\\nAll these behaviour showed up with the upgrade to `org 9.2`. Could someone give me pointers or help?\\n\\nThanks in advance\", \"author_fullname\": \"t2_5q2ns\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help, can't find the errors!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcjl8u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555136152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recently update my \\u003Ccode\\u003Eorg\\u003C/code\\u003E to the version \\u003Ccode\\u003E9.2\\u003C/code\\u003E\\n(to be precise: \\u003Ccode\\u003EOrg mode version 9.2.3 (9.2.3-4-g6ec402-elpaplus @ /home/nanounanue/.emacs.d/elpa/org-plus-contrib-20190408/\\u003C/code\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did it because I replaced the \\u003Ccode\\u003Eob-ipython\\u003C/code\\u003E with \\u003Ccode\\u003Eemacs-jupyter\\u003C/code\\u003E (more stable, more features and now I am very happy)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, I am experimenting the following hiccups:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(a) When I try to insert a code block using the new keybinding \\u003Ccode\\u003EC-c C-,\\u003C/code\\u003E I got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E``\\u003Ccode\\u003E\\nWarning (org):\\nPlease update the entries of\\u003C/code\\u003Eorg-structure-template-alist\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Org 9.2 the format was changed from something like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u0026quot;s\\u0026quot; \\u0026quot;#+BEGIN_SRC ?\\\\n#+END_SRC\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eto something like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u0026quot;s\\u0026quot; . \\u0026quot;src\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease refer to the documentation of `org-structure-template-alist\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe following entries must be updated:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E((\\u0026quot;n\\u0026quot; \\u0026quot;#+BEGIN_NOTES\\\\n?\\\\n#+END_NOTES\\u0026quot;)\\n(\\u0026quot;Q\\u0026quot; \\u0026quot;#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\u0026quot; \\u0026quot;#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\u0026quot;))\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI searched in my =.emacs= and I don\\u0026#39;t find those lines, actually my templates are:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\n(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;el\\u0026quot; . \\u0026quot;src emacs-lisp\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;sh\\u0026quot; . \\u0026quot;src shell\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;Q\\u0026quot; . \\u0026quot;src sql\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;py\\u0026quot; . \\u0026quot;src jupyter-python\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;md\\u0026quot; . \\u0026quot;src markdown\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;sr\\u0026quot; . \\u0026quot;src R\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;l\\u0026quot; . \\u0026quot;src lisp\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;cl\\u0026quot; . \\u0026quot;src clojure\\u0026quot;))\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, I am kind of lost here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(b) My \\u003Ccode\\u003Esql\\u003C/code\\u003E babel blocks now throw the following error everytime that the cursor enters the block\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\nDebugger entered--Lisp error: (wrong-type-argument stringp 5434)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Ef(compiled-function (elem) #\\u0026lt;bytecode 0x1563983c7e95\\u0026gt;)((:dbport . 5434))\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003Emapconcat(#f(compiled-function (elem) #\\u0026lt;bytecode 0x1563983c7e95\\u0026gt;) ((:results . \\u0026quot;drawer table replace\\u0026quot;) (:exports . \\u0026quot;both\\u0026quot;) (:cmdline . \\u0026quot;-q\\u0026quot;) (:eval . \\u0026quot;no-export\\u0026quot;) (:database . \\u0026quot;food\\u0026quot;) (:dbpassword . \\u0026quot;some_password\\u0026quot;) (:dbuser . \\u0026quot;food_user\\u0026quot;) (:dbport . 5434) (:dbhost . \\u0026quot;0.0.0.0\\u0026quot;) (:engine . \\u0026quot;postgresql\\u0026quot;) (:tangle . \\u0026quot;no\\u0026quot;) (:hlines . \\u0026quot;no\\u0026quot;) (:noweb . \\u0026quot;no\\u0026quot;) (:cache . \\u0026quot;no\\u0026quot;) (:session . \\u0026quot;none\\u0026quot;)) \\u0026quot; \\u0026quot;)\\norg-eldoc-get-src-header()\\norg-eldoc-documentation-function()\\neldoc-print-current-symbol-info()\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Ef(compiled-function () #\\u0026lt;bytecode 0x1feb98d89639\\u0026gt;)()\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003Eapply(#f(compiled-function () #\\u0026lt;bytecode 0x1feb98d89639\\u0026gt;) nil)\\ntimer-event-handler([t 0 0 100000 t #f(compiled-function () #\\u0026lt;bytecode 0x1feb98d89639\\u0026gt;) nil idle 0])\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(c) If I try to refresh the headers of an org-mode buffer using \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E I got the following error:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\nDebugger entered--Lisp error: (void-function org-outline-overlay-data)\\norg-outline-overlay-data(use-markers)\\norg-ctrl-c-ctrl-c(nil)\\nfuncall-interactively(org-ctrl-c-ctrl-c nil)\\ncall-interactively(org-ctrl-c-ctrl-c nil nil)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Ef(compiled-function (cmd \\u0026amp;optional record-flag keys special) \\u0026quot;Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the \\u003Ccode\\u003Ecommandp\\u0026#39; predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable\\u003C/code\\u003Ecommand-history\\u0026#39;.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don\\u0026#39;t clear it.\\u0026quot; #\\u0026lt;bytecode 0x1feb98d60d25\\u0026gt;)(org-ctrl-c-ctrl-c nil nil nil)\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003Ead-Advice-command-execute(#f(compiled-function (cmd \\u0026amp;optional record-flag keys special) \\u0026quot;Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the \\u003Ccode\\u003Ecommandp\\u0026#39; predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable\\u003C/code\\u003Ecommand-history\\u0026#39;.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don\\u0026#39;t clear it.\\u0026quot; #\\u0026lt;bytecode 0x1feb98d60d25\\u0026gt;) org-ctrl-c-ctrl-c)\\napply(ad-Advice-command-execute #f(compiled-function (cmd \\u0026amp;optional record-flag keys special) \\u0026quot;Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the \\u003Ccode\\u003Ecommandp\\u0026#39; predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable\\u003C/code\\u003Ecommand-history\\u0026#39;.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don\\u0026#39;t clear it.\\u0026quot; #\\u0026lt;bytecode 0x1feb98d60d25\\u0026gt;) org-ctrl-c-ctrl-c)\\ncommand-execute(org-ctrl-c-ctrl-c)\\n````\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll these behaviour showed up with the upgrade to \\u003Ccode\\u003Eorg 9.2\\u003C/code\\u003E. Could someone give me pointers or help?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcjl8u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nanounanue\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcjl8u/help_cant_find_the_errors/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcjl8u/help_cant_find_the_errors/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555107352.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Can Org-mode clone items such as outline entries or list items? I saw this behavior in an editor called \\\"LEO\\\" (https://leoeditor.com/tutorial-pim.html#clones). It allows you to create an item in one area of an outline, then create references to it from other areas. Changes made to any instance are propagated to all other instances.\\n\\nI am new to Emacs \\u0026 Org-mode and am documenting an upcoming trip to get familiar with these new tools. (Using Spacemacs to ease the transition from Vim to Emacs.) \\n\\nIf possible, I would like to clone some of the items such as flight data and local attractions so that they can be re-used in different places (itinerary, budget, etc.) without copying and pasting or otherwise duplicating the information.\", \"author_fullname\": \"t2_xhn00\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Clones in org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bch97g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555123663.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan Org-mode clone items such as outline entries or list items? I saw this behavior in an editor called \\u0026quot;LEO\\u0026quot; (\\u003Ca href=\\\"https://leoeditor.com/tutorial-pim.html#clones\\\"\\u003Ehttps://leoeditor.com/tutorial-pim.html#clones\\u003C/a\\u003E). It allows you to create an item in one area of an outline, then create references to it from other areas. Changes made to any instance are propagated to all other instances.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am new to Emacs \\u0026amp; Org-mode and am documenting an upcoming trip to get familiar with these new tools. (Using Spacemacs to ease the transition from Vim to Emacs.) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf possible, I would like to clone some of the items such as flight data and local attractions so that they can be re-used in different places (itinerary, budget, etc.) without copying and pasting or otherwise duplicating the information.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bch97g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NineMinuteNap\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bch97g/clones_in_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bch97g/clones_in_orgmode/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555094863.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 12, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcd6an\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555102149.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcd6an\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcd6an/weekly_rorgmode_open_discussion_april_12_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcd6an/weekly_rorgmode_open_discussion_april_12_2019/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555073349.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello all, \\n\\nit's been a while since I posted something org-mode related. More recently I tried the Org-Gcal package and, after getting it to work, realized why it doesn't work. That is, on a style level, for me. \\n\\n\\u0026#x200B;\\n\\nThis post is less about the tool itself and more about how I use org-mode and why (in my opinion) you can't just straight-\\\"translate\\\" one to the other. It boils down to the one-line agenda item with all the information I need vs the more detailed \\\"list\\\" of Google Calendar which works much better on a smart phone then on a computer. This is a matter of opinion, and I'd love to hear yours.\\n\\n\\u0026#x200B;\\n\\nHere it is: [https://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/](https://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/)\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"About the difference between Org-mode and Google calendar\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcczk3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555100968.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello all, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eit\\u0026#39;s been a while since I posted something org-mode related. More recently I tried the Org-Gcal package and, after getting it to work, realized why it doesn\\u0026#39;t work. That is, on a style level, for me. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis post is less about the tool itself and more about how I use org-mode and why (in my opinion) you can\\u0026#39;t just straight-\\u0026quot;translate\\u0026quot; one to the other. It boils down to the one-line agenda item with all the information I need vs the more detailed \\u0026quot;list\\u0026quot; of Google Calendar which works much better on a smart phone then on a computer. This is a matter of opinion, and I\\u0026#39;d love to hear yours.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere it is: \\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/\\\"\\u003Ehttps://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcczk3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcczk3/about_the_difference_between_orgmode_and_google/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcczk3/about_the_difference_between_orgmode_and_google/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1555072168.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Can I set a header argument to tangle blocks to another directory?\\n\\nI currently use this to tangle my files:\\n\\n #+PROPERTY: header-args :tangle yes\\n\\nSo I my blocks can be simpler:\\n\\n #+BEGIN_SRC emacs-lisp\\n (defun some-function ()\\n (interactive)\\n (message \\\"example\\\"))\\n #+END_SRC\\n\\nWhich is fine, but the files are created in the same directory. I wonder if I can do something like this instead:\\n\\n #+PROPERTY: header-args :tangle /path/to/some-other-directory\\n\\nSo, if was tangling a file called `example.org`, it would write to\\n\\n /path/to/some-other-directory/example.file\\n\\nI could use\\n\\n #+PROPERTY: header-args :tangle /path/to/some-other-directory/example.el\\n\\nbut I have a lot of files and a declaration that works for all of them would make it simpler to maintain them, as well as making alterations in my folders structure.\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can I set a header argument to tangle blocks to another directory?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_b9zzug\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1554548008.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan I set a header argument to tangle blocks to another directory?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI currently use this to tangle my files:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+PROPERTY: header-args :tangle yes\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo I my blocks can be simpler:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+BEGIN_SRC emacs-lisp\\n(defun some-function ()\\n(interactive)\\n(message \\u0026quot;example\\u0026quot;))\\n#+END_SRC\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhich is fine, but the files are created in the same directory. I wonder if I can do something like this instead:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+PROPERTY: header-args :tangle /path/to/some-other-directory\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo, if was tangling a file called \\u003Ccode\\u003Eexample.org\\u003C/code\\u003E, it would write to\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E/path/to/some-other-directory/example.file\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI could use\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+PROPERTY: header-args :tangle /path/to/some-other-directory/example.el\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ebut I have a lot of files and a declaration that works for all of them would make it simpler to maintain them, as well as making alterations in my folders structure.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"b9zzug\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/b9zzug/can_i_set_a_header_argument_to_tangle_blocks_to/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/b9zzug/can_i_set_a_header_argument_to_tangle_blocks_to/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1554519208.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\n\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 05, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_b9qspb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1554497365.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"b9qspb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/b9qspb/weekly_rorgmode_open_discussion_april_05_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/b9qspb/weekly_rorgmode_open_discussion_april_05_2019/\", \"subreddit_subscribers\": 4791, \"created_utc\": 1554468565.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_b9qspb\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["428216"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:53 GMT"], "x-ratelimit-remaining": ["592.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["8"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930752.645282,VS0,VE1449"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["249"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T18:05:53"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_bxwovd"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:53 GMT"], "x-ratelimit-remaining": ["591.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["9"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930754.574483,VS0,VE127"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["247"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_bxwovd"}, "recorded_at": "2019-06-07T18:05:53"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsgv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cbr7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Heroquetarro10\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559899469.0, \"send_replies\": true, \"parent_id\": \"t3_bxsgv0\", \"score\": 1, \"author_fullname\": \"t2_288py4gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003Etest test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test\\n\\nYes\", \"link_title\": \"Text\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cbr7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etest test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYes\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/eq9cbr7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"report_reasons\": null, \"link_author\": \"Heroquetarro10\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"created\": 1559928269.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsgv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9c8db\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Heroquetarro10\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559899311.0, \"send_replies\": true, \"parent_id\": \"t3_bxsgv0\", \"score\": 1, \"author_fullname\": \"t2_288py4gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E test\", \"link_title\": \"Text\", \"author_flair_css_class\": null, \"name\": \"t1_eq9c8db\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/eq9c8db/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"report_reasons\": null, \"link_author\": \"Heroquetarro10\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"created\": 1559928111.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwsi3l\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq4tbku\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"testforcal\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559785341.0, \"send_replies\": true, \"parent_id\": \"t3_bwsi3l\", \"score\": 1, \"author_fullname\": \"t2_3wac7yjb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"test!\", \"link_title\": \"I CAN GO 15 SECONDS WITH ANYTHING. Howard looks like he is going to make doodie in his pants when GB hijacks his mic. Would GB walk away from this encounter if he bullied Howard in 2019? T O P L E S S\", \"author_flair_css_class\": null, \"name\": \"t1_eq4tbku\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/eq4tbku/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/\", \"report_reasons\": null, \"link_author\": \"Gooforme\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\\u0026t=2s\", \"created\": 1559814141.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwme1e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyizc2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"InsiderMemeBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559637515.0, \"send_replies\": true, \"parent_id\": \"t3_bwme1e\", \"score\": 1, \"author_fullname\": \"t2_2sm6difp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Template](/r/InsiderMemeTrading/comments/bwmd74/test/)\", \"link_title\": \"Image test\", \"author_flair_css_class\": null, \"name\": \"t1_epyizc2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/InsiderMemeTrading/comments/bwmd74/test/\\\"\\u003ETemplate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwme1e/image_test/epyizc2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwme1e/image_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/xju3qepdxa231.jpg\", \"created\": 1559666315.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwme78\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyiz7w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Crywren\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559637509.0, \"send_replies\": true, \"parent_id\": \"t3_bwme78\", \"score\": 1, \"author_fullname\": \"t2_18vy1b\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif](https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif)\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_epyiz7w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif\\\"\\u003Ehttps://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwme78/test/epyiz7w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwme78/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/vzxqgtbhxa231.png\", \"created\": 1559666309.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmads\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyih18\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"InsiderMemeBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559636627.0, \"send_replies\": true, \"parent_id\": \"t3_bwmads\", \"score\": 1, \"author_fullname\": \"t2_2sm6difp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Template](/r/InsiderMemeTrading/comments/bwmajp/cap_pointing/)\", \"link_title\": \"yeet\", \"author_flair_css_class\": null, \"name\": \"t1_epyih18\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/InsiderMemeTrading/comments/bwmajp/cap_pointing/\\\"\\u003ETemplate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwmads/yeet/epyih18/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwmads/yeet/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/b0ad3b9gua231.jpg\", \"created\": 1559665427.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw86r0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epwwjmw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erebusmaster\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559586407.0, \"send_replies\": true, \"parent_id\": \"t3_bw86r0\", \"score\": 1, \"author_fullname\": \"t2_gbhji\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"success!\", \"link_title\": \"testagain3\", \"author_flair_css_class\": null, \"name\": \"t1_epwwjmw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Esuccess!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bw86r0/testagain3/epwwjmw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"report_reasons\": null, \"link_author\": \"erebusmaster\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"created\": 1559615207.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epn2c0q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Brewsterion\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559320247.0, \"send_replies\": true, \"parent_id\": \"t1_epn250f\", \"score\": 1, \"author_fullname\": \"t2_118qqr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"A few days usually, just send it to the mods to get it approved. They\\u2019ll give some more feedback if it\\u2019s needed.\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_epn2c0q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA few days usually, just send it to the mods to get it approved. They\\u2019ll give some more feedback if it\\u2019s needed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/epn2c0q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559349047.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epn250f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SYwaves\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559320172.0, \"send_replies\": true, \"parent_id\": \"t1_eplphoy\", \"score\": 2, \"author_fullname\": \"t2_2j4j6rg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks man. I\\u2019m still thinking of making more edits, but 3790 makes taking the declass to any solid conclusion difficult:P\\n\\nAs a side note, how long does it usually take to get approved?\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_epn250f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks man. I\\u2019m still thinking of making more edits, but 3790 makes taking the declass to any solid conclusion difficult:P\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a side note, how long does it usually take to get approved?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/epn250f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559348972.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv7huc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epm852r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"binjajer\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559309424.0, \"send_replies\": false, \"parent_id\": \"t3_bv7huc\", \"score\": 1, \"author_fullname\": \"t2_3g10qxu5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Tired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens? \\n\\n\\nCheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.) \\n\\n\\n[https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/](https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/) \\n\\n\\nSquadron discord details will be disbursed upon application. \\n\\n\\n Fly bigly, commanders!\", \"link_title\": \"Make the Galaxy Great Again!\", \"author_flair_css_class\": null, \"name\": \"t1_epm852r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\\"\\u003Ehttps://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESquadron discord details will be disbursed upon application. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFly bigly, commanders!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/epm852r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"report_reasons\": null, \"link_author\": \"binjajer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"created\": 1559338224.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplphoy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Brewsterion\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559300826.0, \"send_replies\": true, \"parent_id\": \"t3_bv2mv5\", \"score\": 1, \"author_fullname\": \"t2_118qqr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"As a frequent poster to SCPD, I like what you\\u2019ve done here with explaining all the references and the main theme of the article. Good luck on getting it approved by mods.\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_eplphoy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a frequent poster to SCPD, I like what you\\u2019ve done here with explaining all the references and the main theme of the article. Good luck on getting it approved by mods.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/eplphoy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559329626.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buz6bd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epjgsbw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dwolfj\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559253716.0, \"send_replies\": true, \"parent_id\": \"t3_buz6bd\", \"score\": 1, \"author_fullname\": \"t2_2awf2pwl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" ............................................________ \\n ....................................,.-'\\\"...................``~., \\n .............................,.-\\\"...................................\\\"-., \\n .........................,/...............................................\\\":, \\n .....................,?......................................................, \\n .................../...........................................................,} \\n ................./......................................................,:`^`..} \\n .............../...................................................,:\\\"........./ \\n ..............?.....__.........................................:`.........../ \\n ............./__.(.....\\\"~-,_..............................,:`........../ \\n .........../(_....\\\"~,_........\\\"~,_....................,:`........_/ \\n ..........{.._$;_......\\\"=,_.......\\\"-,_.......,.-~-,},.~\\\";/....} \\n ...........((.....*~_.......\\\"=-._......\\\";,,./`..../\\\"............../ \\n ...,,,___.`~,......\\\"~.,....................`.....}............../ \\n ............(....`=-,,.......`........................(......;_,,-\\\" \\n ............/.`~,......`-...................................../ \\n .............`~.*-,.....................................|,./.....,__ \\n ,,_..........}.\\u003E-._...................................|..............`=~-, \\n .....`=~-,__......`,................................. \\n ...................`=~-,,.,............................... \\n ................................`:,,...........................`..............__ \\n .....................................`=-,...................,%`\\u003E--==`` \\n ........................................_..........._,-%.......` \\n ...................................,\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_epjgsbw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E............................................________ \\n....................................,.-\\u0026#39;\\u0026quot;...................``~., \\n.............................,.-\\u0026quot;...................................\\u0026quot;-., \\n.........................,/...............................................\\u0026quot;:, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\u0026quot;........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\u0026quot;~-,_..............................,:`........../ \\n.........../(_....\\u0026quot;~,_........\\u0026quot;~,_....................,:`........_/ \\n..........{.._$;_......\\u0026quot;=,_.......\\u0026quot;-,_.......,.-~-,},.~\\u0026quot;;/....} \\n...........((.....*~_.......\\u0026quot;=-._......\\u0026quot;;,,./`..../\\u0026quot;............../ \\n...,,,___.`~,......\\u0026quot;~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\u0026quot; \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u0026gt;-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u0026gt;--==`` \\n........................................_..........._,-%.......` \\n...................................,\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/buz6bd/test/epjgsbw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"report_reasons\": null, \"link_author\": \"dwolfj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"created\": 1559282516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbhff3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559142650.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts\\n**1 Correct Seed:** 15pts\\n**2 Correct Seeds:** +30pts(45 total)\\n**(S)emi(F)inalist:** 180pts\\n**(F)inalist:** 380pts\\n**(W)inners:** 780pts\\n**Score in favor of your winner:** 190pts\\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | |\\n | | | | | | |\\n Group A| | | | | | |\\nNRG|QF |1 |SF |F |W |4-3 | |\\nINTZ|QF |2 | | | | | |\\nPSG| | | | | | | WC |\\n | | | | | | |\\nGroup B | | | | | | | \\nRV | | | | | | | |\\nG2 |QF |1 |SF |F | | | |\\nOOO |QF |2 | | | | | |\\n | | | | | | |\\nGroup C | | | | | | |\\nRNG |QF |1 |SF | | | | |\\nFCB |QF |2 |SF | | | | |\\nRGE | | | | | | | |\\n | | | | | | |\\nGroup D | | | | | | |\\nLKE |QF |2 | | | | | |\\nC9 | | | | | | | WC |\\nTT |QF |1 | | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbhff3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts\\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15pts\\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30pts(45 total)\\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180pts\\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380pts\\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780pts\\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190pts\\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | |\\n | | | | | | |\\n Group A| | | | | | |\\nNRG|QF |1 |SF |F |W |4-3 | |\\nINTZ|QF |2 | | | | | |\\nPSG| | | | | | | WC |\\n | | | | | | |\\nGroup B | | | | | | | \\nRV | | | | | | | |\\nG2 |QF |1 |SF |F | | | |\\nOOO |QF |2 | | | | | |\\n | | | | | | |\\nGroup C | | | | | | |\\nRNG |QF |1 |SF | | | | |\\nFCB |QF |2 |SF | | | | |\\nRGE | | | | | | | |\\n | | | | | | |\\nGroup D | | | | | | |\\nLKE |QF |2 | | | | | |\\nC9 | | | | | | | WC |\\nTT |QF |1 | | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbhff3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559171450.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbfzp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559142036.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n(Q)uarter(F)inalist: 100 pts 1 Correct Seed: 15 pts 2 Correct Seeds: +30 pts(45 total) (S)emi(F)inalist: 180 pts (F)inalist: 380 pts (W)inners: 780 pts Score in favor of your winner: 190 pts Score in favor of your winner AND you guessed the other Finalist: +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\nWhat predictions would look like is this...\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n| | | | | | | | | | | | \\nGroup A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 | \\nINTZ|QF |2 | | | | | \\nPSG| | | | | | | \\nWC | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | | \\nOOO |QF |2 | | | | | | | | | | | \\nGroup C | | | | | | \\nRNG |QF |1 |SF | | | | \\nFCB |QF |2 |SF | | | | \\nRGE | | | | | | | | | | | | | \\nGroup D | | | | | | \\nLKE |QF |2 | | | | | \\nC9 | | | | | | | WC \\nTT |QF |1 | | | | |\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\nAdvice: Take the teams\\n\\nA1 v B2 D1 v C2\\n\\nB1 v A2 C1 v D2\\n\\nAnd substitute them with your predictions to keep track:\\n\\nNRG v OOO TT v FCB\\n\\nG2 v INTZ RNG v LKE\\n\\n Disclaimer: I\\u2019ll post this about every week and a couple days before LAN.\\n\\nRules and Guidelines:\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game. Please submit your predictions as unedited comments or Dms to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\nQuestions\\n\\nWhy am I not doing Dreamhack? I haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\nWill I do this for other tournaments in the future? For majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\nWill there be analysis on my part? Likely, but not guaranteed. I may try to get someone else on board.\\n\\nWhen and where will results be posted? Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n\\nNOTES:\\n\\nI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\nTwo Questions From Me:\\n\\nHow would you like the Wildcard picks to work? I\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n\\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be?\\n\\nThe table format will be in the comments.\\n\\nOne with a blank sheet. The other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbfzp8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Q)uarter(F)inalist: 100 pts 1 Correct Seed: 15 pts 2 Correct Seeds: +30 pts(45 total) (S)emi(F)inalist: 180 pts (F)inalist: 380 pts (W)inners: 780 pts Score in favor of your winner: 190 pts Score in favor of your winner AND you guessed the other Finalist: +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n| | | | | | | | | | | | \\nGroup A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 | \\nINTZ|QF |2 | | | | | \\nPSG| | | | | | | \\nWC | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | | \\nOOO |QF |2 | | | | | | | | | | | \\nGroup C | | | | | | \\nRNG |QF |1 |SF | | | | \\nFCB |QF |2 |SF | | | | \\nRGE | | | | | | | | | | | | | \\nGroup D | | | | | | \\nLKE |QF |2 | | | | | \\nC9 | | | | | | | WC \\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2 D1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2 C1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO TT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ RNG v LKE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERules and Guidelines:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game. Please submit your predictions as unedited comments or Dms to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuestions\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy am I not doing Dreamhack? I haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWill I do this for other tournaments in the future? For majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWill there be analysis on my part? Likely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen and where will results be posted? Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENOTES:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETwo Questions From Me:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work? I\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet. The other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbfzp8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170836.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbekt2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559141502.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts \\n**1 Correct Seed:** 15 pts \\n**2 Correct Seeds:** +30 pts(45 total) \\n**(S)emi(F)inalist:** 180 pts \\n**(F)inalist:** 380 pts \\n**(W)inners:** 780 pts \\n**Score in favor of your winner:** 190 pts \\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total) \\n \\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbekt2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts \\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15 pts \\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30 pts(45 total) \\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180 pts \\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380 pts \\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780 pts \\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190 pts \\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbekt2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170302.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbe3h9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559141322.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Why won\\u2019t the table work\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbe3h9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy won\\u2019t the table work\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbe3h9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170122.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559109977.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu790e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep9gim2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"elcocotero\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559109744.0, \"send_replies\": true, \"parent_id\": \"t3_bu790e\", \"score\": 1, \"author_fullname\": \"t2_ps7sm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"That would be [Danza Kuduro by puerto rican reggeaton artist Don Omar](https://www.youtube.com/watch?v=7zp1TbLFPp8).\\n\\n Now i'm not a big reggaeton fan but this guy's one of the best. \\\"Sali\\u00f3 el sol\\\" is amazing. Also \\\"Diva Virtual\\\".\", \"link_title\": \"Upcoming Tile Based Strategy Game: \\\"Claim Game\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ep9gim2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat would be \\u003Ca href=\\\"https://www.youtube.com/watch?v=7zp1TbLFPp8\\\"\\u003EDanza Kuduro by puerto rican reggeaton artist Don Omar\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow i\\u0026#39;m not a big reggaeton fan but this guy\\u0026#39;s one of the best. \\u0026quot;Sali\\u00f3 el sol\\u0026quot; is amazing. Also \\u0026quot;Diva Virtual\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/ep9gim2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/\", \"created\": 1559138544.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu8y26\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep8kbww\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dekarde\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559096074.0, \"send_replies\": true, \"parent_id\": \"t3_bu8y26\", \"score\": 1, \"author_fullname\": \"t2_jb0ym\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"field 1\", \"link_title\": \"up-test\", \"author_flair_css_class\": null, \"name\": \"t1_ep8kbww\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efield 1\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bu8y26/uptest/ep8kbww/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"report_reasons\": null, \"link_author\": \"Dekarde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"created\": 1559124874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bt0w6n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eosnfxq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"User09060657542\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558826026.0, \"send_replies\": true, \"parent_id\": \"t3_bt0w6n\", \"score\": 1, \"author_fullname\": \"t2_f4ra2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"..\", \"link_title\": \"testing 123\", \"author_flair_css_class\": null, \"name\": \"t1_eosnfxq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bt0w6n/testing_123/eosnfxq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"report_reasons\": null, \"link_author\": \"User09060657542\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"created\": 1558854826.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsyl0k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoruj65\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"T-8-0-0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558813105.0, \"send_replies\": true, \"parent_id\": \"t3_bsyl0k\", \"score\": 1, \"author_fullname\": \"t2_2zkr00l4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003Cblockquote class=\\\"imgur-embed-pub\\\" lang=\\\"en\\\" data-id=\\\"a/MWQxuVC\\\"\\u003E\\u003Ca href=\\\"[//imgur.com/MWQxuVC](//imgur.com/MWQxuVC)\\\"\\u003EBvS\\u003C/a\\u003E\\u003C/blockquote\\u003E\\u003Cscript async src=\\\"[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\", \"link_title\": \"BvS\", \"author_flair_css_class\": null, \"name\": \"t1_eoruj65\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;blockquote class=\\u0026quot;imgur-embed-pub\\u0026quot; lang=\\u0026quot;en\\u0026quot; data-id=\\u0026quot;a/MWQxuVC\\u0026quot;\\u0026gt;\\u0026lt;a href=\\u0026quot;[//imgur.com/MWQxuVC](//imgur.com/MWQxuVC)\\u0026quot;\\u0026gt;BvS\\u0026lt;/a\\u0026gt;\\u0026lt;/blockquote\\u0026gt;\\u0026lt;script async src=\\u0026quot;[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\u0026quot; charset=\\u0026quot;utf-8\\u0026quot;\\u0026gt;\\u0026lt;/script\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bsyl0k/bvs/eoruj65/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"report_reasons\": null, \"link_author\": \"T-8-0-0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"created\": 1558841905.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsveoo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoqtetr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"YOUREABOT\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558796617.0, \"send_replies\": true, \"parent_id\": \"t3_bsveoo\", \"score\": 1, \"author_fullname\": \"t2_3b1gaoke\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"dang, i never noticed the sound of kane cocking the gun.\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eoqtetr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edang, i never noticed the sound of kane cocking the gun.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bsveoo/test/eoqtetr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bsveoo/test/\", \"report_reasons\": null, \"link_author\": \"Ihuarraquax__\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=goQiwNZzoVA\", \"created\": 1558825417.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bskwuj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoo6l31\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558730695.0, \"send_replies\": true, \"parent_id\": \"t3_bskwuj\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"who who what what\", \"link_title\": \"Pokecube II\", \"author_flair_css_class\": null, \"name\": \"t1_eoo6l31\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewho who what what\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bskwuj/pokecube_ii/eoo6l31/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"report_reasons\": null, \"link_author\": \"vandergus\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"created\": 1558759495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs053g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eonr18y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"IncendiaryGames\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558719419.0, \"send_replies\": true, \"parent_id\": \"t1_eon0nk4\", \"score\": 1, \"author_fullname\": \"t2_kz0h4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks Ed! I just realized I accidentally linked you to my post preview post and not the one on /r/hometheater. Here is that link if you want to repost your comment there: \\nhttps://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eonr18y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks Ed! I just realized I accidentally linked you to my post preview post and not the one on \\u003Ca href=\\\"/r/hometheater\\\"\\u003E/r/hometheater\\u003C/a\\u003E. Here is that link if you want to repost your comment there: \\n\\u003Ca href=\\\"https://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\\\"\\u003Ehttps://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs053g/test/eonr18y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"report_reasons\": null, \"link_author\": \"IncendiaryGames\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"created\": 1558748219.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs053g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eon0nk4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"svsound\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558700754.0, \"send_replies\": true, \"parent_id\": \"t3_bs053g\", \"score\": 1, \"author_fullname\": \"t2_i0b8n\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Considering you're not going to be moving for 5+ years, I would size the subwoofer to your current system/loudspeakers and an apartment setting where you listen at -15 to -10. \\n\\nAn SB-4000 would be a good fit for your application, providing tight, accurate, punchy bass with excellent deep extension. You'll have plenty of SPL for the current playback level of -15 to -10. \\n\\nAfter running Audyssey XT32 in the Denon, make sure all speakers are set to Small and the crossovers should be fronts 60 Hz, center 80 Hz, surrounds 80 Hz and overheads 100-120 Hz (unless Audyssey sets them higher). \\n\\nUnder Bass the subwoofer mode should be LFE and the LPF/LFE should be 120 Hz. \\n\\nXT32 will have you level match the subwoofer to 75 dB as part of the initial set-up. This will likely result in the subwoofer volume set to somewhere in the -20 to -15 range (which is fine). The Denon will probably trim-out the subwoofer channel somewhere in the low negative range (which is also fine). \\n\\nIf you want to run the subwoofer channel hotter than the Audyssey level match, then increase the sub channel in the Denon by a few dB.\\n\\nEd M - SVS\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eon0nk4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EConsidering you\\u0026#39;re not going to be moving for 5+ years, I would size the subwoofer to your current system/loudspeakers and an apartment setting where you listen at -15 to -10. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn SB-4000 would be a good fit for your application, providing tight, accurate, punchy bass with excellent deep extension. You\\u0026#39;ll have plenty of SPL for the current playback level of -15 to -10. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter running Audyssey XT32 in the Denon, make sure all speakers are set to Small and the crossovers should be fronts 60 Hz, center 80 Hz, surrounds 80 Hz and overheads 100-120 Hz (unless Audyssey sets them higher). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnder Bass the subwoofer mode should be LFE and the LPF/LFE should be 120 Hz. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EXT32 will have you level match the subwoofer to 75 dB as part of the initial set-up. This will likely result in the subwoofer volume set to somewhere in the -20 to -15 range (which is fine). The Denon will probably trim-out the subwoofer channel somewhere in the low negative range (which is also fine). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you want to run the subwoofer channel hotter than the Audyssey level match, then increase the sub channel in the Denon by a few dB.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEd M - SVS\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs053g/test/eon0nk4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"report_reasons\": null, \"link_author\": \"IncendiaryGames\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"created\": 1558729554.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs5jg4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoj2zwz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558632235.0, \"send_replies\": true, \"parent_id\": \"t3_bs5jg4\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"care bears\", \"link_title\": \"my lil pony\", \"author_flair_css_class\": null, \"name\": \"t1_eoj2zwz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ecare bears\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs5jg4/my_lil_pony/eoj2zwz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs5jg4/my_lil_pony/\", \"report_reasons\": null, \"link_author\": \"fragglestickcar0\", \"author_flair_text\": null, \"link_url\": \"http://www.youtube.com/watch?v=21ix1OwPoY8\", \"created\": 1558661035.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs4zeb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoiznnd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"emackn\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558630564.0, \"send_replies\": true, \"parent_id\": \"t3_bs4zeb\", \"score\": 1, \"author_fullname\": \"t2_9gu2i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Build details:**\\n\\n* ***Aero Precision M4E1 Upper***\\n * Aero Precision 15\\\" Enhanced M-LOK handguard, gen 2\\n * Columbia River Arms 16\\\" 1:7 barrel in FDE\\n * VG6 Gamma 556 compensator\\n * spikes tactical gas tube\\n * superlative arms gas block\\n * Vortex Strikefire II red dot\\n* ***Aero Precision M4E1 Lower (stripped, PEW edition)***\\n * BCM BCG in FDE\\n * BAD mag release\\n * BAD ambi saftey\\n * Geissele 2 stage trigger\\n * Geissele buffer tube with super 42 spring\\n * Geissele Maritime Bolt Catch\\n\\n* ***Magpul furniture***\\n * MOE-K2 Grip\\n * CTR carbine stock\\n * Pmag\\n * handstop\\n * BUIS\\n\\n\\n**Other Images:**\\n\\n * [side fire select](https://i.postimg.cc/85FMMngJ/AR15-pew-2.jpg)\\n * [view of FDE barrel](https://i.postimg.cc/zB9WjSqd/AR15-pew-3.jpg)\\n\\n\\u0026nbsp;\\n\\n\\u0026nbsp;\\n\\nNext up is 10.5 300BLK in OD Green\", \"link_title\": \"First AR Build Friday\", \"author_flair_css_class\": null, \"name\": \"t1_eoiznnd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBuild details:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAero Precision M4E1 Upper\\u003C/em\\u003E\\u003C/strong\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAero Precision 15\\u0026quot; Enhanced M-LOK handguard, gen 2\\u003C/li\\u003E\\n\\u003Cli\\u003EColumbia River Arms 16\\u0026quot; 1:7 barrel in FDE\\u003C/li\\u003E\\n\\u003Cli\\u003EVG6 Gamma 556 compensator\\u003C/li\\u003E\\n\\u003Cli\\u003Espikes tactical gas tube\\u003C/li\\u003E\\n\\u003Cli\\u003Esuperlative arms gas block\\u003C/li\\u003E\\n\\u003Cli\\u003EVortex Strikefire II red dot\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAero Precision M4E1 Lower (stripped, PEW edition)\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBCM BCG in FDE\\u003C/li\\u003E\\n\\u003Cli\\u003EBAD mag release\\u003C/li\\u003E\\n\\u003Cli\\u003EBAD ambi saftey\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele 2 stage trigger\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele buffer tube with super 42 spring\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele Maritime Bolt Catch\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EMagpul furniture\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EMOE-K2 Grip\\u003C/li\\u003E\\n\\u003Cli\\u003ECTR carbine stock\\u003C/li\\u003E\\n\\u003Cli\\u003EPmag\\u003C/li\\u003E\\n\\u003Cli\\u003Ehandstop\\u003C/li\\u003E\\n\\u003Cli\\u003EBUIS\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EOther Images:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://i.postimg.cc/85FMMngJ/AR15-pew-2.jpg\\\"\\u003Eside fire select\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://i.postimg.cc/zB9WjSqd/AR15-pew-3.jpg\\\"\\u003Eview of FDE barrel\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext up is 10.5 300BLK in OD Green\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs4zeb/first_ar_build_friday/eoiznnd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs4zeb/first_ar_build_friday/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/if35r70kjzz21.jpg\", \"created\": 1558659364.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bq9bgb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoid65v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558616951.0, \"send_replies\": true, \"parent_id\": \"t3_bq9bgb\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\\nbugaboo\", \"link_title\": \"we\", \"author_flair_css_class\": null, \"name\": \"t1_eoid65v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\nbugaboo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bq9bgb/we/eoid65v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bq9bgb/we/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bq9bgb/we/\", \"created\": 1558645751.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_brgcyy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoibl85\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558615819.0, \"send_replies\": true, \"parent_id\": \"t3_brgcyy\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"HGCE Freedom Gundam Album\", \"author_flair_css_class\": null, \"name\": \"t1_eoibl85\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/eoibl85/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/\", \"report_reasons\": null, \"link_author\": \"NeonRunner\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/EKjeyR4\", \"created\": 1558644619.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_b892bv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoibfr4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558615716.0, \"send_replies\": true, \"parent_id\": \"t1_ejwhbla\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eoibfr4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/b892bv/test/eoibfr4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/b892bv/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/OFkJjXL\", \"created\": 1558644516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bay8r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoi61fx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558611465.0, \"send_replies\": true, \"parent_id\": \"t1_ekgl4mf\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eoi61fx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bay8r2/test/eoi61fx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bay8r2/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bay8r2/test/\", \"created\": 1558640265.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqs0lm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoah4bg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NamiPickles\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558417762.0, \"send_replies\": true, \"parent_id\": \"t1_eo84uif\", \"score\": 2, \"author_fullname\": \"t2_cp3cb3l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"thanks my dude\", \"link_title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"author_flair_css_class\": null, \"name\": \"t1_eoah4bg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks my dude\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/eoah4bg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"report_reasons\": null, \"link_author\": \"NamiPickles\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/VmalKIuFimk\", \"created\": 1558446562.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqs0lm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo84uif\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Flying-Croissant\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558357381.0, \"send_replies\": true, \"parent_id\": \"t3_bqs0lm\", \"score\": 1, \"author_fullname\": \"t2_1d8oz7i8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Good shit\", \"link_title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"author_flair_css_class\": null, \"name\": \"t1_eo84uif\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood shit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/eo84uif/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"report_reasons\": null, \"link_author\": \"NamiPickles\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/VmalKIuFimk\", \"created\": 1558386181.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqofzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo67e75\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imperatorz\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558313245.0, \"send_replies\": true, \"parent_id\": \"t3_bqofzt\", \"score\": 1, \"author_fullname\": \"t2_3s7t8gxj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hi folks,\\n\\nFirst of all, thanks for all the quality posts here, i created an account just for this community !\\nI'm a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\n\\nD1 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD2 : Squat (55)- OHP (35)\\nD3 : Rest\\nD4 : Squat (55)- OHP (35)\\nD5 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD6 : Squat (55)- OHP (35) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\nD7 : Rest\\n\\nI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP\\n\\nFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7\\n\\nMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\n\\nThanks for all you're doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_eo67e75\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\nI\\u0026#39;m a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD2 : Squat (55)- OHP (35)\\nD3 : Rest\\nD4 : Squat (55)- OHP (35)\\nD5 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD6 : Squat (55)- OHP (35) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\nD7 : Rest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/eo67e75/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"report_reasons\": null, \"link_author\": \"imperatorz\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"created\": 1558342045.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqofzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo67cm7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imperatorz\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558313217.0, \"send_replies\": true, \"parent_id\": \"t3_bqofzt\", \"score\": 1, \"author_fullname\": \"t2_3s7t8gxj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hi folks,\\n\\nFirst of all, thanks for all the quality posts here, i created an account just for this community ! \\nI'm a 20 yo male who recently got back into lifting. \\nSince the end of march I have been training consistently 4-5 times a week with the following program : \\n\\nD1 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5) \\nD2 : Squat (5*5)- OHP (3*5) \\nD3 : Rest \\nD4 : Squat (5*5)- OHP (3*5) \\nD5 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5) \\nD6 : Squat (5*5)- OHP (3*5) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\nD7 : Rest \\n \\nI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP \\n \\nFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7 \\n\\nMy questions are, in a perspective of continuing fat loss : \\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ? \\n\\u2022 Should I start cardio/HIIT to eliminate more fat ? \\n\\u2022 Have you got any recommendation altogether ? All advices appreciated. \\n \\nThanks for all you're doing in here and sorry for broken english, \\nAn over-Atlantic enthusiast\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_eo67cm7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\u003Cbr/\\u003E\\nI\\u0026#39;m a 20 yo male who recently got back into lifting.\\u003Cbr/\\u003E\\nSince the end of march I have been training consistently 4-5 times a week with the following program : \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD2 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD3 : Rest\\u003Cbr/\\u003E\\nD4 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD5 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD6 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\u003Cbr/\\u003E\\nD7 : Rest \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\u003Cbr/\\u003E\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\u003Cbr/\\u003E\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\u003Cbr/\\u003E\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\u003Cbr/\\u003E\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/eo67cm7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"report_reasons\": null, \"link_author\": \"imperatorz\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"created\": 1558342017.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ens8t9m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558025712.0, \"send_replies\": true, \"parent_id\": \"t1_ens8roy\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Omg it works!!\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_ens8t9m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOmg it works!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/ens8t9m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1558054512.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ens8roy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558025695.0, \"send_replies\": true, \"parent_id\": \"t3_bpezwp\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E testing testing one two three\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_ens8roy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etesting testing one two three\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/ens8roy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1558054495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpdae9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enrm2j5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558017205.0, \"send_replies\": true, \"parent_id\": \"t3_bpdae9\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"As good as it gets - MASSIVE 60ft Nazare\", \"author_flair_css_class\": null, \"name\": \"t1_enrm2j5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpdae9/as_good_as_it_gets_massive_60ft_nazare/enrm2j5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpdae9/as_good_as_it_gets_massive_60ft_nazare/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1558046005.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh7bm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931730.0, \"send_replies\": true, \"parent_id\": \"t3_boytzt\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"https://youtu.be/yTob1CPeL6I\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh7bm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh7bm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960530.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh4ms\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931703.0, \"send_replies\": true, \"parent_id\": \"t1_enmh2vx\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh4ms\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh4ms/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960503.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh2vx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931685.0, \"send_replies\": true, \"parent_id\": \"t3_boytzt\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh2vx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh2vx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960485.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bowuds\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enlndge\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GameInfusionTC\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557920346.0, \"send_replies\": true, \"parent_id\": \"t3_bowuds\", \"score\": 1, \"author_fullname\": \"t2_18i8688m\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"y^ikes\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_enlndge\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ey\\u003Csup\\u003Eikes\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bowuds/test/enlndge/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"created\": 1557949146.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bowuds\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enlnbx5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GameInfusionTC\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557920327.0, \"send_replies\": true, \"parent_id\": \"t3_bowuds\", \"score\": 1, \"author_fullname\": \"t2_18i8688m\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u2013\\u2013strikethrough\\u2013\\u2013\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_enlnbx5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u2013\\u2013strikethrough\\u2013\\u2013\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bowuds/test/enlnbx5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"created\": 1557949127.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bogbq5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enfx5gc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheB333\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557824074.0, \"send_replies\": true, \"parent_id\": \"t3_bogbq5\", \"score\": 1, \"author_fullname\": \"t2_10snnt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Last week there was a post considering a weekly theory crafting thread. I kind of liked the idea. People discussed when and how that post and the formatting should be made.\\n\\n\\u0026#x200B;\\n\\nI may not be up to date with this idea, since i couldnt follow the reddit in the last week due to my working shedule. But i want to give it a shot.\\n\\n\\u0026#x200B;\\n\\nAs the Esther hype fades, i want to dedicate this post to our beloved queen of damage dealers. \\n\\n\\\\##Let us gather and share all possible and crazy ideas, that come to your mind.\\n\\n\\u0026#x200B;\\n\\nEsther is such an easy charackter, yet i bet that there are strategies that i cannot even imagine in my boldest dreams. There are a few reasons for this: She has innitiate evade, can work as AoE tank, absorbs lightning damage, has chaining counters, just to list a few important features.\\n\\n\\u0026#x200B;\\n\\nHow do i Imagine the struckture of this thread:\\n\\nHere\\\\`s an example on how you could make the formatting of your comment:\\n\\n\\u0026#x200B;\\n\\n\\\\# \\\\*\\\\*Title/Trial/Strategy\\\\*\\\\* #\\n\\nDescription\\n\\n\\u0026#x200B;\\n\\n\\\\* \\\\*\\\\*Difficulty/Equipment needed:\\\\*\\\\*/Beginner-Casual-Whale\\n\\n\\\\* \\\\*\\\\*Team Comp:\\\\*\\\\* (with eqipment, best would be FFBE equip link)\\n\\n\\\\* \\\\*\\\\*Turn rotation:\\\\*\\\\*\\n\\n\\\\* \\\\*\\\\*Useful tips:\\\\*\\\\*\\n\\n\\\\* \\\\*\\\\*Friend Code:\\\\*\\\\* (for Carry)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n\\\\##I would really love to heaer some strategies with her. Can she solo Ramuh? What ist the potential of 6 evade Esthers (with phoenix) ? In wich trails does she shine? What are the best unit synergies? \\n\\n\\u0026#x200B;\\n\\nI will try to give it a start:\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n\\\\# \\\\*\\\\*0TK Alexander 3\\\\* entrust LB kill\\\\*\\\\* #\\n\\nBasically you use two low level \\\\[units with entrust\\\\]([https://exvius.gamepedia.com/Entrust](https://exvius.gamepedia.com/Entrust)) that you fill their LB with either Aileen or Nyx in first turn. Then you imbue both your Esthers with water so you get the benefit of the 300% imperil. Use two chaining LB first turn -\\u003E finish. It's not all achievements but it saved me a lot of nerves. \\n\\n\\u0026#x200B;\\n\\n\\\\* \\\\*\\\\*Difficulty/Equipment needed:\\\\*\\\\*Casual-Dolphin\\n\\n\\\\* \\\\*\\\\*Requirements:\\\\*\\\\* \\\\[Build\\\\]([http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4](http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4)), Basically you need 2x low level entrusters, Aileen or Nxy, CG Nichol or SS Nichol, 2x Esthers with as much Machine Killer you can find.\\n\\n\\\\* \\\\*\\\\*Turn rotation:\\\\*\\\\* Turn 1: Aileen/Nyx is using LB fill, 2x entrust to both Esthers, dualcast water imbue on Esthers and then kill Alexander 3\\\\* with 2x limit chain Esther\\n\\n\\\\* \\\\*\\\\*Useful tips:\\\\*\\\\* Make sure to give Esther all the machine killer that you have and LB damage boosting eqipment. NOTE: If you use Aileen, make sure that the LB of the entrust units get filled! You can just let them be on lv 1 to make sure of this.\\n\\n\\\\* \\\\*\\\\*Friend Code:\\\\*\\\\* not carrying right now since im at work, sorry guys!\\n\\n\\u0026#x200B;\\n\\nI know that this strategy may not only be possible with Esther but Zeno or many more too! Feel free to comment and incite some nice discussions/comparisons/replacements.\\n\\n\\u0026#x200B;\\n\\nPS. Sorry if theres any problems with formatting.\", \"link_title\": \"y\", \"author_flair_css_class\": null, \"name\": \"t1_enfx5gc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELast week there was a post considering a weekly theory crafting thread. I kind of liked the idea. People discussed when and how that post and the formatting should be made.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI may not be up to date with this idea, since i couldnt follow the reddit in the last week due to my working shedule. But i want to give it a shot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the Esther hype fades, i want to dedicate this post to our beloved queen of damage dealers. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##Let us gather and share all possible and crazy ideas, that come to your mind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEsther is such an easy charackter, yet i bet that there are strategies that i cannot even imagine in my boldest dreams. There are a few reasons for this: She has innitiate evade, can work as AoE tank, absorbs lightning damage, has chaining counters, just to list a few important features.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do i Imagine the struckture of this thread:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere`s an example on how you could make the formatting of your comment:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# **Title/Trial/Strategy** #\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Difficulty/Equipment needed:**/Beginner-Casual-Whale\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Team Comp:** (with eqipment, best would be FFBE equip link)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Turn rotation:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Useful tips:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Friend Code:** (for Carry)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##I would really love to heaer some strategies with her. Can she solo Ramuh? What ist the potential of 6 evade Esthers (with phoenix) ? In wich trails does she shine? What are the best unit synergies? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI will try to give it a start:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# **0TK Alexander 3* entrust LB kill** #\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically you use two low level [units with entrust](\\u003Ca href=\\\"https://exvius.gamepedia.com/Entrust\\\"\\u003Ehttps://exvius.gamepedia.com/Entrust\\u003C/a\\u003E) that you fill their LB with either Aileen or Nyx in first turn. Then you imbue both your Esthers with water so you get the benefit of the 300% imperil. Use two chaining LB first turn -\\u0026gt; finish. It\\u0026#39;s not all achievements but it saved me a lot of nerves. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Difficulty/Equipment needed:**Casual-Dolphin\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Requirements:** [Build](\\u003Ca href=\\\"http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4\\\"\\u003Ehttp://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4\\u003C/a\\u003E), Basically you need 2x low level entrusters, Aileen or Nxy, CG Nichol or SS Nichol, 2x Esthers with as much Machine Killer you can find.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Turn rotation:** Turn 1: Aileen/Nyx is using LB fill, 2x entrust to both Esthers, dualcast water imbue on Esthers and then kill Alexander 3* with 2x limit chain Esther\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Useful tips:** Make sure to give Esther all the machine killer that you have and LB damage boosting eqipment. NOTE: If you use Aileen, make sure that the LB of the entrust units get filled! You can just let them be on lv 1 to make sure of this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Friend Code:** not carrying right now since im at work, sorry guys!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know that this strategy may not only be possible with Esther but Zeno or many more too! Feel free to comment and incite some nice discussions/comparisons/replacements.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS. Sorry if theres any problems with formatting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bogbq5/y/enfx5gc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bogbq5/y/\", \"report_reasons\": null, \"link_author\": \"TheB333\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bogbq5/y/\", \"created\": 1557852874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo84dx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"endic87\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DrHandyman\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557783117.0, \"send_replies\": true, \"parent_id\": \"t3_bo84dx\", \"score\": 0, \"author_fullname\": \"t2_2wbf73p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"`|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|`\\n\\n`:-:|:-:|:-:|:-:|:-:|:-:|`\\n\\n`|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|`\\n\\n`|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|`\\n\\n`|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|`\\n\\n`|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|`\\n\\n`|Blanton's|$14.00|$99.99|$224.00|$124.01|124.02%|`\\n\\n`|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|`\\n\\n`|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|`\\n\\n`|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|`\\n\\n`|Basil Hayden's|$10.00|$39.99|$160.00|$120.01|300.10%|`\\n\\n`|Noah's Mill|$15.00|$49.99|$240.00|$190.01|380.10%|`\\n\\n`|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|`\\n\\n`|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|`\\n\\n`|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|`\\n\\n`|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|`\", \"link_title\": \"Table Test\", \"author_flair_css_class\": null, \"name\": \"t1_endic87\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003E|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:-:|:-:|:-:|:-:|:-:|:-:|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Blanton\\u0026#39;s|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Basil Hayden\\u0026#39;s|$10.00|$39.99|$160.00|$120.01|300.10%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Noah\\u0026#39;s Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo84dx/table_test/endic87/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"report_reasons\": null, \"link_author\": \"Rammzie\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"created\": 1557811917.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo84dx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"endib3d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DrHandyman\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557783105.0, \"send_replies\": true, \"parent_id\": \"t3_bo84dx\", \"score\": 0, \"author_fullname\": \"t2_2wbf73p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"|\\\\*\\\\*Name\\\\*\\\\*|\\\\*\\\\*ACME Price Per 1.5oz\\\\*\\\\*|\\\\*\\\\*Bottle Street Price\\\\*\\\\*|\\\\*\\\\*Revenue Per Bottle (16 pours) \\\\*\\\\*|\\\\*\\\\*Profit Per Bottle\\\\*\\\\*|\\\\*\\\\*Profit Percentage\\\\*\\\\*|\\n\\n:-:|:-:|:-:|:-:|:-:|:-:|\\n\\n|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\n\\n|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\n\\n|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\n\\n|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\n\\n|Blanton's|$14.00|$99.99|$224.00|$124.01|124.02%|\\n\\n|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\n\\n|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\n\\n|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\n\\n|Basil Hayden's|$10.00|$39.99|$160.00|$120.01|300.10%|\\n\\n|Noah's Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\n\\n|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\n\\n|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\n\\n|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\n\\n|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\", \"link_title\": \"Table Test\", \"author_flair_css_class\": null, \"name\": \"t1_endib3d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:-:|:-:|:-:|:-:|:-:|:-:|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Blanton\\u0026#39;s|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Basil Hayden\\u0026#39;s|$10.00|$39.99|$160.00|$120.01|300.10%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Noah\\u0026#39;s Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo84dx/table_test/endib3d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"report_reasons\": null, \"link_author\": \"Rammzie\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"created\": 1557811905.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbsgh6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557754397.0, \"send_replies\": true, \"parent_id\": \"t3_bo3eog\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbsgh6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbsgh6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557783197.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbsf7d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557754377.0, \"send_replies\": true, \"parent_id\": \"t1_enbrfwi\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbsf7d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbsf7d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557783177.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbrfwi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557753791.0, \"send_replies\": true, \"parent_id\": \"t1_enbrecx\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbrfwi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbrfwi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557782591.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbrecx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557753764.0, \"send_replies\": true, \"parent_id\": \"t3_bo3eog\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbrecx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbrecx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557782564.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnh87u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5kn7c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DefNotPolonius\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557609950.0, \"send_replies\": true, \"parent_id\": \"t3_bnh87u\", \"score\": 1, \"author_fullname\": \"t2_3r6vjfb1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Looks legit to me!\", \"link_title\": \"A recent study suggests rates of step-siblings getting married is increasing exponentially\", \"author_flair_css_class\": null, \"name\": \"t1_en5kn7c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks legit to me!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnh87u/a_recent_study_suggests_rates_of_stepsiblings/en5kn7c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnh87u/a_recent_study_suggests_rates_of_stepsiblings/\", \"report_reasons\": null, \"link_author\": \"PraisetheKing1\", \"author_flair_text\": null, \"link_url\": \"https://www.theatlantic.com/entertainment/archive/2019/05/state-of-the-union-sundance-tv-review/589117/\", \"created\": 1557638750.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnh3at\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5j7r9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DefNotPolonius\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557609148.0, \"send_replies\": true, \"parent_id\": \"t3_bnh3at\", \"score\": 1, \"author_fullname\": \"t2_3r6vjfb1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Murderous indeed\", \"link_title\": \"Classic Murderous Hamlet\", \"author_flair_css_class\": null, \"name\": \"t1_en5j7r9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMurderous indeed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnh3at/classic_murderous_hamlet/en5j7r9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnh3at/classic_murderous_hamlet/\", \"report_reasons\": null, \"link_author\": \"PraisetheKing1\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/wqo9b9e3enx21.jpg\", \"created\": 1557637948.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bngumb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5h7hv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bummy_mans\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557608063.0, \"send_replies\": true, \"parent_id\": \"t3_bngumb\", \"score\": 1, \"author_fullname\": \"t2_15oya7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Murderous Indeed\", \"link_title\": \"Classic Murderous Hamlet\", \"author_flair_css_class\": null, \"name\": \"t1_en5h7hv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMurderous Indeed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bngumb/classic_murderous_hamlet/en5h7hv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bngumb/classic_murderous_hamlet/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/v4u3ua21anx21.jpg\", \"created\": 1557636863.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bndgzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4lk6i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fear_from_ignorance\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557590014.0, \"send_replies\": true, \"parent_id\": \"t3_bndgzp\", \"score\": 1, \"author_fullname\": \"t2_116zo5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#Countries that Shooting people in last 12 months\\n\\n|Country | Total Shooting \\n|:-----------|------------:|\\n| France| 14+(without yellow vest|\\n| Germany| 14+|\\n| U.K|3+| \\n\\nGreat good holy countries, only E.U \\n##We can not put a nobleman to death! :)\", \"link_title\": \"t\", \"author_flair_css_class\": null, \"name\": \"t1_en4lk6i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECountries that Shooting people in last 12 months\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ECountry\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ETotal Shooting\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFrance\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14+(without yellow vest\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGermany\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14+\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU.K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3+\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EGreat good holy countries, only E.U \\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EWe can not put a nobleman to death! :)\\u003C/h2\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bndgzp/t/en4lk6i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"report_reasons\": null, \"link_author\": \"fear_from_ignorance\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"created\": 1557618814.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bndgzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4lilt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fear_from_ignorance\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557589986.0, \"send_replies\": true, \"parent_id\": \"t3_bndgzp\", \"score\": 1, \"author_fullname\": \"t2_116zo5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\#Countries that Shooting people in last 12 months\\n\\n\\u0026#x200B;\\n\\n|Country | Total Shooting \\n\\n|:-----------|------------:|\\n\\n| France| 14+(without yellow vest|\\n\\n| Germany| 14+|\\n\\n| U.K|3+| \\n\\n\\u0026#x200B;\\n\\nGreat good holy countries, only E.U \\n\\n\\\\##We can not put a nobleman to death! :)\", \"link_title\": \"t\", \"author_flair_css_class\": null, \"name\": \"t1_en4lilt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#Countries that Shooting people in last 12 months\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Country | Total Shooting \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|:-----------|------------:|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| France| 14+(without yellow vest|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| Germany| 14+|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| U.K|3+| \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreat good holy countries, only E.U \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##We can not put a nobleman to death! :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bndgzp/t/en4lilt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"report_reasons\": null, \"link_author\": \"fear_from_ignorance\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"created\": 1557618786.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnddi4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4km0v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bacalado\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557589379.0, \"send_replies\": true, \"parent_id\": \"t3_bnddi4\", \"score\": 1, \"author_fullname\": \"t2_zs6we\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Test pot\", \"link_title\": \"Test post\", \"author_flair_css_class\": null, \"name\": \"t1_en4km0v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest pot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnddi4/test_post/en4km0v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnddi4/test_post/\", \"report_reasons\": null, \"link_author\": \"KindlyPangolin\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bnddi4/test_post/\", \"created\": 1557618179.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgvc57\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2j37y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533822.0, \"send_replies\": true, \"parent_id\": \"t3_bgvc57\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"What does this do\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_en2j37y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat does this do\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgvc57/test/en2j37y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgvc57/test/\", \"report_reasons\": null, \"link_author\": \"harison86\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgvc57/test/\", \"created\": 1557562622.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgz2ru\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2j1b8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533788.0, \"send_replies\": true, \"parent_id\": \"t3_bgz2ru\", \"score\": 0, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"We want shaggy\", \"link_title\": \"Settra the Imperishable, the Majestic Emperor of the Shifting Sands, Great Hawk Of The Heavens, King of Kings, Monarch of the Sky, High King of Nehekhara and many, many more, invades Outworld during the events of Mortal Kombat X. Can he claim it?\", \"author_flair_css_class\": null, \"name\": \"t1_en2j1b8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe want shaggy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/en2j1b8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/\", \"report_reasons\": null, \"link_author\": \"TitanBrass\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/\", \"created\": 1557562588.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bjy4q1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2iyjr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533739.0, \"send_replies\": true, \"parent_id\": \"t3_bjy4q1\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Neat\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_en2iyjr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENeat\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bjy4q1/test/en2iyjr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bjy4q1/test/\", \"report_reasons\": null, \"link_author\": \"Toemism\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/vSa7WcG\", \"created\": 1557562539.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk5dk7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2ix0e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533713.0, \"send_replies\": true, \"parent_id\": \"t3_bk5dk7\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Reddit doesn't work like that\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_en2ix0e\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EReddit doesn\\u0026#39;t work like that\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk5dk7/test/en2ix0e/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk5dk7/test/\", \"report_reasons\": null, \"link_author\": \"lucasade7\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk5dk7/test/\", \"created\": 1557562513.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2iq27\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557533589.0, \"send_replies\": true, \"parent_id\": \"t3_blxuys\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Just uses you're magic to convince him\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_en2iq27\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust uses you\\u0026#39;re magic to convince him\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/en2iq27/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557562389.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1557490423.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bmfbja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en0e11l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rew01f\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557490240.0, \"send_replies\": true, \"parent_id\": \"t3_bmfbja\", \"score\": 1, \"author_fullname\": \"t2_3mmzhxol\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\ud83d\\udf8eTest\\n\\n\\ud83d\\udf8e Test\\n\\n\\ud83d\\udf8e Testing as ordered\", \"link_title\": \"testy\", \"author_flair_css_class\": null, \"name\": \"t1_en0e11l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\ud83d\\udf8eTest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\ud83d\\udf8e Test\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\ud83d\\udf8e Testing as ordered\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bmfbja/testy/en0e11l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bmfbja/testy/\", \"report_reasons\": null, \"link_author\": \"Sleepchao\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bmfbja/testy/\", \"created\": 1557519040.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bme57y\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emvxrme\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TotesMessenger\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557368561.0, \"send_replies\": true, \"parent_id\": \"t3_bme57y\", \"score\": 1, \"author_fullname\": \"t2_kq14w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I'm a bot, *bleep*, *bloop*. Someone has linked to this thread from another place on reddit:\\n\\n- [/r/porsche] [First time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!](https://www.reddit.com/r/Porsche/comments/bme8ym/first_time_porsche_owner_takes_immediate_cayman/)\\n\\n\\u0026nbsp;*^(If you follow any of the above links, please respect the rules of reddit and don't vote in the other threads.) ^\\\\([Info](/r/TotesMessenger) ^/ ^[Contact](/message/compose?to=/r/TotesMessenger))*\", \"link_title\": \"First time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!\", \"author_flair_css_class\": null, \"name\": \"t1_emvxrme\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a bot, \\u003Cem\\u003Ebleep\\u003C/em\\u003E, \\u003Cem\\u003Ebloop\\u003C/em\\u003E. Someone has linked to this thread from another place on reddit:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E[\\u003Ca href=\\\"/r/porsche\\\"\\u003E/r/porsche\\u003C/a\\u003E] \\u003Ca href=\\\"https://www.reddit.com/r/Porsche/comments/bme8ym/first_time_porsche_owner_takes_immediate_cayman/\\\"\\u003EFirst time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003Cem\\u003E\\u003Csup\\u003EIf you follow any of the above links, please respect the rules of reddit and don\\u0026#39;t vote in the other threads.\\u003C/sup\\u003E \\u003Csup\\u003E(\\u003Ca href=\\\"/r/TotesMessenger\\\"\\u003EInfo\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E/\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"/message/compose?to=/r/TotesMessenger\\\"\\u003EContact\\u003C/a\\u003E)\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/emvxrme/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/\", \"report_reasons\": null, \"link_author\": \"Null-P\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/\", \"created\": 1557397361.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ems8494\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DoingSchoolProject2\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557271693.0, \"send_replies\": true, \"parent_id\": \"t1_ems7zov\", \"score\": 2, \"author_fullname\": \"t2_3q15i8tn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Growing well\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_ems8494\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGrowing well\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/ems8494/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557300493.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ems7zov\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DoingSchoolProject\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557271609.0, \"send_replies\": true, \"parent_id\": \"t3_blxuys\", \"score\": 2, \"author_fullname\": \"t2_3otlbacn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hey Elizabeth, hows the baby doing\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_ems7zov\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey Elizabeth, hows the baby doing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/ems7zov/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557300409.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkze3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257480.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Future Features People Want (Compiled from Blizzard forums)\\n#### *Disclaimer* These very wildly in implementation time. They also aren't too specific. That's for another thread.\\n\\n#### Ease of Coding\\n- [Text-based Editor/IDE/Ability to Import File](#s \\\"Anything for more coding speed\\\")\\n- Conditionals\\n- Functions\\n- Hotkey Saves/Auto Saves\\n- Hotkey Undo\\n- Events/Statuses for every [possible thing](#s \\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\")\\n- [Classes/Object Types/Enums](#s \\\"Bad class objects hurt\\\")\\n- [Multiple-Script Compilation](#s \\\"I make a piece, you make a piece, we compile the codes together\\\")\\n- Disable/Enable Rule options\\n- Custom Strings/Variable Names\\n\\t\\n####Importation of art assets\\n- Custom Skins\\n- Custom Emotes\\n- Custom Hero Models\\n- Custom Animations\\n\\t\\n#### Bigger Creations\\n- Rule Limit Increase\\n- Effect Increase\\n- More Presets Saves\\n- More Variables\\n\\n#### Recognition of Good Modes\\n- Best-of-Workshop Arcade Mode\\n- Popularity contests between [similar game-modes](#s \\\"See which gun game people like best\\\")\\n\\t\\n#### Map Editor\\n- Ability to create gameplay zones\\n- Change Lighting\\n- Custom Maps\\n\\t\\n#### Hero Editor\\n- Being able to give [one hero's ability to another hero](#s \\\"Tracer with Piledriver\\\")\\n- More Control over [Effects](#s \\\"On-destruct, custom IDs, etc\\\")\\n- Control over [hero-specific variables](#s \\\"Number of Symmetra Turrets, headshot dmg, passives\\\")\\n- Being able to use Arcade Enemies/All Models\\n- Custom Cooldowns/Modify Cooldowns\\n- Control over animations\\n- Control over fire/POTG worthy actions\\n\\t\\t\\n#### Object Editor\\n- Deployables\\n- Weapon Qualities\\n- Collisions\\n- Objectives/Payloads\\n- Access to Old Assets/Abilities\\n- Custom Effect Durations\\n- Custom Conditions\\n- Custom Physics Engine\\n\\t\\n#### AI Editor\\n- PVE Mode Access\\n- Ease of Making Bots\\n- Bots in any Mode\\n\\t\\t\\n#### Gameplay Editor\\n- Change Spawn Points\\n- Switch Teams\\n- Change Team Size\\n\\t\\n####Hosting Games\\n- Being able to host Workshop Games locally\\n\\t\\n#### Workshop-Specific Assets\\n- Extra Animations\\n- More effects\\n- [Non-Graphics intensive testing map](#s \\\"Just a White Room\\\")\\n- [Arena map](#s \\\"Just a square\\\")\\n\\n#### More Recognition of Dan and Keith\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkze3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFuture Features People Want (Compiled from Blizzard forums)\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003E\\u003Cem\\u003EDisclaimer\\u003C/em\\u003E These very wildly in implementation time. They also aren\\u0026#39;t too specific. That\\u0026#39;s for another thread.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EEase of Coding\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Anything for more coding speed\\\"\\u003EText-based Editor/IDE/Ability to Import File\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EConditionals\\u003C/li\\u003E\\n\\u003Cli\\u003EFunctions\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Saves/Auto Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Undo\\u003C/li\\u003E\\n\\u003Cli\\u003EEvents/Statuses for every \\u003Ca href=\\\"#s\\\" title=\\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\"\\u003Epossible thing\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Bad class objects hurt\\\"\\u003EClasses/Object Types/Enums\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"I make a piece, you make a piece, we compile the codes together\\\"\\u003EMultiple-Script Compilation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDisable/Enable Rule options\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Strings/Variable Names\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EImportation of art assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECustom Skins\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Emotes\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Hero Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Animations\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EBigger Creations\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERule Limit Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EEffect Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Presets Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Variables\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ERecognition of Good Modes\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBest-of-Workshop Arcade Mode\\u003C/li\\u003E\\n\\u003Cli\\u003EPopularity contests between \\u003Ca href=\\\"#s\\\" title=\\\"See which gun game people like best\\\"\\u003Esimilar game-modes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMap Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAbility to create gameplay zones\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Lighting\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Maps\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHero Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to give \\u003Ca href=\\\"#s\\\" title=\\\"Tracer with Piledriver\\\"\\u003Eone hero\\u0026#39;s ability to another hero\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Control over \\u003Ca href=\\\"#s\\\" title=\\\"On-destruct, custom IDs, etc\\\"\\u003EEffects\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over \\u003Ca href=\\\"#s\\\" title=\\\"Number of Symmetra Turrets, headshot dmg, passives\\\"\\u003Ehero-specific variables\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBeing able to use Arcade Enemies/All Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Cooldowns/Modify Cooldowns\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over animations\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over fire/POTG worthy actions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EObject Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDeployables\\u003C/li\\u003E\\n\\u003Cli\\u003EWeapon Qualities\\u003C/li\\u003E\\n\\u003Cli\\u003ECollisions\\u003C/li\\u003E\\n\\u003Cli\\u003EObjectives/Payloads\\u003C/li\\u003E\\n\\u003Cli\\u003EAccess to Old Assets/Abilities\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Effect Durations\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Conditions\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Physics Engine\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EAI Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPVE Mode Access\\u003C/li\\u003E\\n\\u003Cli\\u003EEase of Making Bots\\u003C/li\\u003E\\n\\u003Cli\\u003EBots in any Mode\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EGameplay Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EChange Spawn Points\\u003C/li\\u003E\\n\\u003Cli\\u003ESwitch Teams\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Team Size\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHosting Games\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to host Workshop Games locally\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWorkshop-Specific Assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EExtra Animations\\u003C/li\\u003E\\n\\u003Cli\\u003EMore effects\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a White Room\\\"\\u003ENon-Graphics intensive testing map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a square\\\"\\u003EArena map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMore Recognition of Dan and Keith\\u003C/h4\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkze3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286280.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkqzg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257336.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#One-Stop Workshop\\n## Workshop FAQ\\n### What is Overwatch Workshop?\\n- In layman's terms, its just [additional](#s \\\"Many, many additional\\\") features for designing custom games, using more drop-down menus.\\n\\n### What is the One-Stop Workshop?\\n- \\tThis is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\n-\\tI call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\n\\n### What is an FAQ?\\n-\\tFrantically Answering Questions!\\n\\n### How to access the Workshop?\\n-\\tMake sure you have the PTR installed.\\n- \\tPlay \\u003E Game Browser \\u003E Create \\u003E Settings \\u003E Workshop\\n\\n### What resources does Workshop give us?\\n-\\tCreation of Effects\\n-\\tConditional Changes to Rules\\n-\\tAdding HUD elements\\n-\\tAnd More\\n\\n### Can you test heroes with workshop?\\n- \\tYesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\n- \\tHowever, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\n-\\tBut, don't fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\n\\n### Is it a map editor?\\n- \\tNo. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\n\\n### Do I need to know how to code to use it? Can normal people use it?\\n- \\tNo and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\n\\n### What presets does it have for me to build off of?\\n- \\tMolten Floor - You set on fire while touching the floor.\\n- \\tOne Ultimate - Elimination mode where you start with your Ultimate, but can't get Ultimate charge.\\n- \\tHide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\n- \\tDouble Jump - Everyone can double jump.\\n- \\tFire Dome - A dome slowly shrinks, limiting the play space. (*Cough* Battle Royale *Cough*)\\n- \\tBalanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\n- \\tMirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\n- \\tZombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\n- \\tHero Gauntlet - Gun Game\\n\\n### Is it on Console?\\n-\\tNot yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\n\\n### Who built this?\\n-\\tKeith and Dan, our two buddy devs, in their free time. They have now been labeled [Hero 31 and Hero 32](#s \\\"Dan is 31, fight me\\\") by the reddit community.\\n\\n### Is this going to get updates?\\n- It has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\n\\n### Is there a limit to sizes of script/number of objects.\\n- Yes. 64 icons/effects, and some limit to the size of the script. \\n- However, the devs are working to increase these numbers.\\n\\n### Is this Overwatch getting a bunch of people to be their unpaid interns?\\n- Sadly, it doesn't seem to be. Plenty of people would love to design stuff for Blizzard for free. Instead, you can just make fun modes for people to enjoy. \\n\\n### Do I have control over my modes? Can I link/post other peoples content?\\n#### The Bad\\n- You do not have ownership over your creations\\n- Your code could be overriden at any time\\n- Other people can use your mode by just clicking on it and copying your 5-character code\\n- Currently, there are numerous bugs that can delete your work, if you have a slow connection, too much code, or are just plain unlucky\\n\\n#### The Good\\n- You can check out any code you find interesting and get ideas\\n- You don't have to worry about someone else running their server. With the 5-character code, you can start one yourself\\n- Your code will carry over to the Live version and the Console version, as the actual data is stored in the cloud\\n- The Devs are fixing all work-deleting bugs\\n- The Devs will (almost certainly) add enough characters to the codes to prevent your code from being overriden\\n- You can store the info for your mode on this page if you want people to know that a mode was originally created by you\\n\\n#### The Neutral\\n- Being polite and asking for permission is the correct thing to do if you want to repost their work, modify their work, or look at their rules\\n\\n#### The Time Saving\\n- I propose that if you create a mode that you want anyone to be able to modify or use, while crediting you, you write \\\"Free Use\\\" on it somewhere, so that those who want to use it won't [constantly bug you](#s \\\"Sorry all people I bugged about adding your stuff to this post\\\")\\n- I propose that if you create a mode and don't care about being credited, you write \\\"Free Game\\\", and people can use your mode without crediting you, but shouldn't act like they invented it whole-sale\\n- I propose that the community shares any useful tricks, codes, or ideas somewhere. This post works as well as any other place.\\n\\n### Why does the Workshop Community need to be organized?\\n- For [Casual Players](#s \\\"Filthy Casuals\\\"): An organized community will make it easier to find good, fun, game modes.\\n\\n- For [Ranked Players](#s \\\"Sports Nuts\\\"): With a few changes, I personally think that Workshop can allow for [more frequent patch testing.](#s \\\"More Powerful Workshop = Give out Patch Codes instead of Downloads\\\") An organized community could help the workshop get to that state sooner.\\n\\n- For [Creators](#s \\\"Over-Dedicated Fans\\\"): An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\n\\n- For [Devs](#s \\\"All-Mighty Deities\\\"): An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\n\\n##Useful Links\\n### Mode Lists\\nhttps://dutchdemons.com - u/Marinosbitter\\n\\nhttps://overwatchcustom.games - u/Thriver\\n\\nhttps://overwatchmodding.com/ - u/xSailboats\\n\\nhttps://workshop.elohell.gg/ - EloHell Discord\\n\\nhttps://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA - u/alloriginalnamesused\\n\\n[Lier1's Code List]()\\n\\n### Discord Channels\\n[OW Scripting](https://discord.gg/9pc4yyE)\\n\\n[Overwatch Workshop](https://discord.gg/qa9vR94)\\n\\n[Elo Hell Workshops](https://discord.gg/U5ARg2Fs)\\n\\n### Youtube Channels\\n#### Mode Creation Help:\\n[SamstaTV](https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g)\\n\\n[RunicOW](https://www.youtube.com/channel/UCB1j7mXXRgCRBBri6E5Ch2A)\\n\\n#### Creation Showcases:\\n[Master Ian Gamer](https://www.youtube.com/channel/UCh7qwd3VnN1AGqlqec8K8Zw)\\n\\n### Miscellaneous Sites/Posts\\n[List of Flat Areas with few Obstacles](https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/) - u/Zezombye\\n\\n[Workshop Syntax \\u0026 Script Database](https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92) - WyomingMyst\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkqzg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EOne-Stop Workshop\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EWorkshop FAQ\\u003C/h2\\u003E\\n\\n\\u003Ch3\\u003EWhat is Overwatch Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E In layman\\u0026#39;s terms, its just \\u003Ca href=\\\"#s\\\" title=\\\"Many, many additional\\\"\\u003Eadditional\\u003C/a\\u003E features for designing custom games, using more drop-down menus.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat is the One-Stop Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E This is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\u003C/li\\u003E\\n\\u003Cli\\u003E I call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat is an FAQ?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Frantically Answering Questions!\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EHow to access the Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Make sure you have the PTR installed.\\u003C/li\\u003E\\n\\u003Cli\\u003E Play \\u0026gt; Game Browser \\u0026gt; Create \\u0026gt; Settings \\u0026gt; Workshop\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat resources does Workshop give us?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Creation of Effects\\u003C/li\\u003E\\n\\u003Cli\\u003E Conditional Changes to Rules\\u003C/li\\u003E\\n\\u003Cli\\u003E Adding HUD elements\\u003C/li\\u003E\\n\\u003Cli\\u003E And More\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003ECan you test heroes with workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Yesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\u003C/li\\u003E\\n\\u003Cli\\u003E However, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\u003C/li\\u003E\\n\\u003Cli\\u003E But, don\\u0026#39;t fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs it a map editor?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EDo I need to know how to code to use it? Can normal people use it?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat presets does it have for me to build off of?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Molten Floor - You set on fire while touching the floor.\\u003C/li\\u003E\\n\\u003Cli\\u003E One Ultimate - Elimination mode where you start with your Ultimate, but can\\u0026#39;t get Ultimate charge.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\u003C/li\\u003E\\n\\u003Cli\\u003E Double Jump - Everyone can double jump.\\u003C/li\\u003E\\n\\u003Cli\\u003E Fire Dome - A dome slowly shrinks, limiting the play space. (\\u003Cem\\u003ECough\\u003C/em\\u003E Battle Royale \\u003Cem\\u003ECough\\u003C/em\\u003E)\\u003C/li\\u003E\\n\\u003Cli\\u003E Balanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\u003C/li\\u003E\\n\\u003Cli\\u003E Mirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\u003C/li\\u003E\\n\\u003Cli\\u003E Zombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hero Gauntlet - Gun Game\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs it on Console?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Not yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWho built this?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Keith and Dan, our two buddy devs, in their free time. They have now been labeled \\u003Ca href=\\\"#s\\\" title=\\\"Dan is 31, fight me\\\"\\u003EHero 31 and Hero 32\\u003C/a\\u003E by the reddit community.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs this going to get updates?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs there a limit to sizes of script/number of objects.\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYes. 64 icons/effects, and some limit to the size of the script. \\u003C/li\\u003E\\n\\u003Cli\\u003EHowever, the devs are working to increase these numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs this Overwatch getting a bunch of people to be their unpaid interns?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESadly, it doesn\\u0026#39;t seem to be. Plenty of people would love to design stuff for Blizzard for free. Instead, you can just make fun modes for people to enjoy. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EDo I have control over my modes? Can I link/post other peoples content?\\u003C/h3\\u003E\\n\\n\\u003Ch4\\u003EThe Bad\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou do not have ownership over your creations\\u003C/li\\u003E\\n\\u003Cli\\u003EYour code could be overriden at any time\\u003C/li\\u003E\\n\\u003Cli\\u003EOther people can use your mode by just clicking on it and copying your 5-character code\\u003C/li\\u003E\\n\\u003Cli\\u003ECurrently, there are numerous bugs that can delete your work, if you have a slow connection, too much code, or are just plain unlucky\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Good\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou can check out any code you find interesting and get ideas\\u003C/li\\u003E\\n\\u003Cli\\u003EYou don\\u0026#39;t have to worry about someone else running their server. With the 5-character code, you can start one yourself\\u003C/li\\u003E\\n\\u003Cli\\u003EYour code will carry over to the Live version and the Console version, as the actual data is stored in the cloud\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Devs are fixing all work-deleting bugs\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Devs will (almost certainly) add enough characters to the codes to prevent your code from being overriden\\u003C/li\\u003E\\n\\u003Cli\\u003EYou can store the info for your mode on this page if you want people to know that a mode was originally created by you\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Neutral\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing polite and asking for permission is the correct thing to do if you want to repost their work, modify their work, or look at their rules\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Time Saving\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EI propose that if you create a mode that you want anyone to be able to modify or use, while crediting you, you write \\u0026quot;Free Use\\u0026quot; on it somewhere, so that those who want to use it won\\u0026#39;t \\u003Ca href=\\\"#s\\\" title=\\\"Sorry all people I bugged about adding your stuff to this post\\\"\\u003Econstantly bug you\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EI propose that if you create a mode and don\\u0026#39;t care about being credited, you write \\u0026quot;Free Game\\u0026quot;, and people can use your mode without crediting you, but shouldn\\u0026#39;t act like they invented it whole-sale\\u003C/li\\u003E\\n\\u003Cli\\u003EI propose that the community shares any useful tricks, codes, or ideas somewhere. This post works as well as any other place.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhy does the Workshop Community need to be organized?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Filthy Casuals\\\"\\u003ECasual Players\\u003C/a\\u003E: An organized community will make it easier to find good, fun, game modes.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Sports Nuts\\\"\\u003ERanked Players\\u003C/a\\u003E: With a few changes, I personally think that Workshop can allow for \\u003Ca href=\\\"#s\\\" title=\\\"More Powerful Workshop = Give out Patch Codes instead of Downloads\\\"\\u003Emore frequent patch testing.\\u003C/a\\u003E An organized community could help the workshop get to that state sooner.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Over-Dedicated Fans\\\"\\u003ECreators\\u003C/a\\u003E: An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"All-Mighty Deities\\\"\\u003EDevs\\u003C/a\\u003E: An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EUseful Links\\u003C/h2\\u003E\\n\\n\\u003Ch3\\u003EMode Lists\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://dutchdemons.com\\\"\\u003Ehttps://dutchdemons.com\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Marinosbitter\\\"\\u003Eu/Marinosbitter\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchcustom.games\\\"\\u003Ehttps://overwatchcustom.games\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Thriver\\\"\\u003Eu/Thriver\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchmodding.com/\\\"\\u003Ehttps://overwatchmodding.com/\\u003C/a\\u003E - \\u003Ca href=\\\"/u/xSailboats\\\"\\u003Eu/xSailboats\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://workshop.elohell.gg/\\\"\\u003Ehttps://workshop.elohell.gg/\\u003C/a\\u003E - EloHell Discord\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA\\\"\\u003Ehttps://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA\\u003C/a\\u003E - \\u003Ca href=\\\"/u/alloriginalnamesused\\\"\\u003Eu/alloriginalnamesused\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Lier1\\u0026#39;s Code List]()\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EDiscord Channels\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/9pc4yyE\\\"\\u003EOW Scripting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/qa9vR94\\\"\\u003EOverwatch Workshop\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/U5ARg2Fs\\\"\\u003EElo Hell Workshops\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EYoutube Channels\\u003C/h3\\u003E\\n\\n\\u003Ch4\\u003EMode Creation Help:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g\\\"\\u003ESamstaTV\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UCB1j7mXXRgCRBBri6E5Ch2A\\\"\\u003ERunicOW\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch4\\u003ECreation Showcases:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UCh7qwd3VnN1AGqlqec8K8Zw\\\"\\u003EMaster Ian Gamer\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EMiscellaneous Sites/Posts\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/\\\"\\u003EList of Flat Areas with few Obstacles\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92\\\"\\u003EWorkshop Syntax \\u0026amp; Script Database\\u003C/a\\u003E - WyomingMyst\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkqzg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286136.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkof9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257292.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"# Custom Content\\n\\n### Disclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\n\\n### Names with u/ are from reddit. Names without are from the Overwatch Forum unless labeled otherwise.\\n\\n### If you like a mode, go to the original post and like or comment. Let them know you appreciate it. I'll add links directly to each post once I figure out if Reddit allows that and I get around to it.\\n\\n### If you want to add a mode to the list, just PM me and I'll add it eventually.\\n\\n## Fun Modes\\n- K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n- 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n- RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n- EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n- N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n- 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n- M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n- T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n- NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n- R4DWM - BloodBorne in Overwatch - u/Elodeona\\n- EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n- FHQZ4 - Bridgette Pong - u/AJ_Black\\n- KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n- 53J3R - Shooters Vs Stabbers - Lilsis\\n- BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n- BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n- 5KCP4 - Dva Eject into Random Ult - u/qbbftw - ORIGINAL IDEA FROM: u/Woolin\\n- YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n- 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n- 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n- MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n- SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n- VJCT2 - Chase the Snowmen - u/andygmb\\n- 6PC67 - Take Hero of Kills - u/CrenderMutant\\n- 9J42E - Mcree Hot Potato - u/olipoulihot\\n- 85J46 - TF2 the Return - u/Greg266\\n- 7792M - Ninja Sword Fight - u/zhpete\\n- VQ5W8 - Turn Based 3v3 Deathmatch - u/nodas9990\\n- 56XNH - Reinhardt's Completely Stoned Bumper Car Emporeum v14 - u/TheRedstoneBlaze\\n- R68FF - Lucio Ball - u/Telefrag_Ent\\n- V5NKR - Volleybomb - u/Telefrag_Ent\\n- GB9PM - Instagib Railgun : Ashe Team Deathmatch - u/Telefrag_Ent\\n- PGF9P - 1 v 1 High Noon Duel - u/Zenmill\\n- ZKQVG - One in the Chamber: 3 Lives - u/iejb\\n- QT7TQ - Torbjorn Golfing - u/officialraider\\n-\\n- 0D2W5 - Hampster Chase - u/Woolin\\n- 6E3Z5 - Lucio Tag - u/Woolin\\n-\\n- 4J6KW - Screencheat - u/PotsNPans\\n- MN787 - Screencheat - u/microcosm_ow\\n-\\n- PTTNK - Weeping Angels (Zen Mcree) - u/Semproser\\n- X2HH9 - Weeping Angels (Mercy Mei) - u/Hogrid125\\n-\\n- NJGZ4 - Deathmatch Rivals - u/Hypno--Toad\\n- A6736 - Rival System - u/Hypno--Toad\\n-\\n- JWY47 - Hammond Racing - @DanielFedder (Twitter)\\n- D9RND - Hamster Ball Racing - u/qwook\\n-\\n- SH9XN - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n- 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray\\n-\\n- RGH0D - High Speed: FFA - u/rbnsky\\n- SF1R2 - High Speed Gun Game - u/rbnsky\\n-\\n- E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n- QH5SP - PVE Horde Mode - u/Jechto\\n- 52Y5Y - PvE RPG - u/ES_Curse\\n\\n## Training Modes\\n- RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n- 2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n- QKAAM - Placeable Cameras - u/ItsDeltin\\n- CQ00S - Elemental Aspects - u/poststakhanovist\\n- 179QN - Slot Machine - u/Cowboy_Jimmy\\n- 6WXRW - Navi - u/andygmb - u/Lymbow\\n- P9DC5 - Custom Bouncing Projectiles - u/JayTheYggdrasil\\n- FM3WR - Retaliation Damage - u/bacondev\\n-\\n- NK1YF - 2-D Sidescroller - u/HaxD3\\n- D8ZQC - 3rd Person View - u/Jiggy_Jigsaw\\n- 4V8NC - Top Down Shooter - u/microcosm_ow\\n-\\n- ZW1PY - Scoreboard - u/Paf13\\n- 9EKZB - Scoreboard - u/caldoran2\\n-\\n- QESP4 - Walls - u/Zezombye\\n- TZYK6 - Walls - u/Gecktendo\\n- RFJ4G - Walls - u/Gecktendo\\n-\\n- P4Y50 - Bunny Hopping - u/microcosm_ow\\n- WV5HH - Bunny Hop - u/TyzoneLyraNature\\n\\n## Hero Ideas\\n- XJZB1 - Orisa AoE Push - AlexEptit\\n- H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n- RNKKJ - All Heroes Hover Jet - u/microcosm_ow\\n- 8H2DN - Sym Gravity Gun (Half-life) - u/IFIsc\\n- XGAPQ - Genji as Maeve (Paladins) - u/jprosk\\n- BE2J7 - Portal Gun - u/Lymbow - u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkof9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECustom Content\\u003C/h1\\u003E\\n\\n\\u003Ch3\\u003EDisclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003ENames with u/ are from reddit. Names without are from the Overwatch Forum unless labeled otherwise.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003EIf you like a mode, go to the original post and like or comment. Let them know you appreciate it. I\\u0026#39;ll add links directly to each post once I figure out if Reddit allows that and I get around to it.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003EIf you want to add a mode to the list, just PM me and I\\u0026#39;ll add it eventually.\\u003C/h3\\u003E\\n\\n\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9J42E - Mcree Hot Potato - \\u003Ca href=\\\"/u/olipoulihot\\\"\\u003Eu/olipoulihot\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E85J46 - TF2 the Return - \\u003Ca href=\\\"/u/Greg266\\\"\\u003Eu/Greg266\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E7792M - Ninja Sword Fight - \\u003Ca href=\\\"/u/zhpete\\\"\\u003Eu/zhpete\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVQ5W8 - Turn Based 3v3 Deathmatch - \\u003Ca href=\\\"/u/nodas9990\\\"\\u003Eu/nodas9990\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E56XNH - Reinhardt\\u0026#39;s Completely Stoned Bumper Car Emporeum v14 - \\u003Ca href=\\\"/u/TheRedstoneBlaze\\\"\\u003Eu/TheRedstoneBlaze\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER68FF - Lucio Ball - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EV5NKR - Volleybomb - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGB9PM - Instagib Railgun : Ashe Team Deathmatch - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EPGF9P - 1 v 1 High Noon Duel - \\u003Ca href=\\\"/u/Zenmill\\\"\\u003Eu/Zenmill\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZKQVG - One in the Chamber: 3 Lives - \\u003Ca href=\\\"/u/iejb\\\"\\u003Eu/iejb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- QT7TQ - Torbjorn Golfing - \\u003Ca href=\\\"/u/officialraider\\\"\\u003Eu/officialraider\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E0D2W5 - Hampster Chase - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 6E3Z5 - Lucio Tag - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E4J6KW - Screencheat - \\u003Ca href=\\\"/u/PotsNPans\\\"\\u003Eu/PotsNPans\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- MN787 - Screencheat - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPTTNK - Weeping Angels (Zen Mcree) - \\u003Ca href=\\\"/u/Semproser\\\"\\u003Eu/Semproser\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- X2HH9 - Weeping Angels (Mercy Mei) - \\u003Ca href=\\\"/u/Hogrid125\\\"\\u003Eu/Hogrid125\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENJGZ4 - Deathmatch Rivals - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- A6736 - Rival System - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EJWY47 - Hammond Racing - @DanielFedder (Twitter)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- D9RND - Hamster Ball Racing - \\u003Ca href=\\\"/u/qwook\\\"\\u003Eu/qwook\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESH9XN - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- SF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E52Y5Y - PvE RPG - \\u003Ca href=\\\"/u/ES_Curse\\\"\\u003Eu/ES_Curse\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E179QN - Slot Machine - \\u003Ca href=\\\"/u/Cowboy_Jimmy\\\"\\u003Eu/Cowboy_Jimmy\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EP9DC5 - Custom Bouncing Projectiles - \\u003Ca href=\\\"/u/JayTheYggdrasil\\\"\\u003Eu/JayTheYggdrasil\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- FM3WR - Retaliation Damage - \\u003Ca href=\\\"/u/bacondev\\\"\\u003Eu/bacondev\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENK1YF - 2-D Sidescroller - \\u003Ca href=\\\"/u/HaxD3\\\"\\u003Eu/HaxD3\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ED8ZQC - 3rd Person View - \\u003Ca href=\\\"/u/Jiggy_Jigsaw\\\"\\u003Eu/Jiggy_Jigsaw\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 4V8NC - Top Down Shooter - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETZYK6 - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- RFJ4G - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EP4Y50 - Bunny Hopping - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERNKKJ - All Heroes Hover Jet - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8H2DN - Sym Gravity Gun (Half-life) - \\u003Ca href=\\\"/u/IFIsc\\\"\\u003Eu/IFIsc\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EXGAPQ - Genji as Maeve (Paladins) - \\u003Ca href=\\\"/u/jprosk\\\"\\u003Eu/jprosk\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkof9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286092.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkm0q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257251.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#Reddit Post Organization\\n\\n####If posts are organized in a readable manner, it will help people to:\\n\\n- [Locate modes they like](#s \\\"Or hate\\\")\\n\\n- [Easily lend assistance](#s \\\"Hardly\\\")\\n\\n- [Not have to deal with ugly things](#s \\\"Except walking Zenyattas and wall-climbing Torbs\\\")\\n\\n##Post Example Layout\\n\\n- [Descriptive Title](#s \\\"Flaired Appropriately\\\")\\n\\n- Post Body\\n - Picture/Video [(Optional)](#s \\\"Follow this subs rules\\\")\\n - Code\\n - [Brief Summary](#s \\\"Or why your code is the awesomest ever\\\")\\n - Detailed Description (Optional)\\n - [Future Improvements](#s \\\"Unnecessary as your creation is perfect\\\") (Optional)\\n - [Credits](#s \\\"Those whose stuff you stole\\\")\\n\\n##General Posting Tips\\n\\n\\n\\n- Title\\tTips\\n\\n - Do use this phrasing: _[MyThing](#s \\\"What you made\\\") from [OtherMedia](#s \\\"What you stole the idea from\\\")_\\n\\n - Do be very specific. _Alphabetic Gun Game_ is better than simply _Gun Game_.\\n\\n - Good Example: _Alphabetic Gun Game from [CS:S:HTMLGO](#s \\\"CS Major\\\")_\\n\\n- Post Body Tips\\n\\n - Do use a visual if possible. [Video \\u003E Picture \\u003E Text](#s \\\"\\u003E Lier1\\\")\\n\\n - Do use formatting, titles, or at the very least, [paragraph breaks](#s \\\"Hit enter twice, not once\\\")\\n\\n - Do keep updated modes organized, either with new posts commented in the original post, or with update codes added with [edits](#s \\\"v3.1 Never mind\\\")\\n\\n - Do put things you are unsure how to do under [Future Improvements](#s \\\"As you will somehow be smarter in the future\\\")\\n\\n - Do [credit](#s \\\"I'll talk about using others work later\\\") other users in your post. It's only polite\\n\\n - Do your [research.](#s \\\"See that other people have posted working code before\\\") It will save you time and effort\\n\\n - Don't go into the [nitty gritty.](#s \\\"I used this rule with this condition\\\") Explain how it works in game, not in code\\n\\n\\n\\n---\\n\\n\\n\\n#Reddit Comment Organization\\n\\n#### If comments are organized in a helpful manner, it will help people to:\\n\\n- Get useful feedback\\n\\n- Raise their self-esteem\\n\\n\\n\\n\\n\\n\\n\\n##Comment Example Layout\\n\\n- [Notice the Good](#s \\\"It does exists, its just hiding\\\")\\n\\n- Harsh reality (Optional)\\n\\n- [Useful feedback](#s \\\"Unnecessary\\\")\\n\\n\\n\\n\\n\\n##General Tips\\n\\n\\n\\n- Do always be positive. There is [no need nor reason for negativity.](#s \\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\")\\n\\n- Do mention similar ideas. Link to them so the poster can get some ideas.\\n\\n- Do give actual information/feedback.\\n\\n- Do keep comments to the post at hand.\\n\\n- Don't simply comment [\\\"Great job\\\"](#s \\\"Great Job, finding this hover text\\\"). That's what liking is usually for.\\n\\n- Don't assume that the [posters vision matches yours.](#s \\\"My vision isn't 20-20, you see\\\")\\n\\n- Good Example: \\\"Me and a few friends played this mode, because we love it from Halloo 4. It's a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There's some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\\"\\n\\n---\\n\\n# Reddit Mode Specific\\n\\n\\n##Game Mode Post\\n\\n- Do label the specific [play mode](#s \\\"FFA, 5CP, Domination\\\") used in the code if it is unclear\\n\\n\\n\\n---\\n\\n\\n\\n##Game Mode Comment\\n\\n- Do play and share your experiences\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Post\\n\\n\\n\\n####Hero Description Example Layout\\n\\n- Health\\n\\n- Passives\\n\\n- Triggered Abilities\\n\\n - Stats\\n\\n - Other Features\\n\\n\\n\\n- ###Brief Summary Tips\\n\\n - Do mention what [role](#s \\\"Flanker, Tank, Monkey, etc.\\\") your hero should fill\\n\\n - Don't talk about how your hero will [destroy the meta](#s \\\"It won't\\\")\\n\\n\\n\\n- ### Triggered Ability Tips\\n\\n - Do use numbers to describe hero [DPS](#s \\\"Deaths per Second\\\") and [HPS](#s \\\"i need Healing per Second\\\") if you want balance advice\\n\\n - Do keep any numbers used checked against [actual heroes](#s \\\"No supports firing 20 rounds of 15 dmg a second\\\")\\n\\n - Do check sources such as this _linked_ [Overwatch GamePedia](https://overwatch.gamepedia.com/Overwatch_Wiki) page for how to describe abilities\\n\\n\\n\\n- ### General Tips\\n\\n - Do follow precedent for most parts of your character. They don't need a new leveling system, 50 HP, and a different [control scheme](#s \\\"Command Line\\\")\\n\\n - Do make heroes both fun to play and [fun to play against](#s \\\"mostly the second\\\")\\n\\n - Don't make a character with [lots of exceptions](#s \\\"Blocks all CC except Doomfist Punch\\\")\\n\\n - Don't step on too many [toes](#s \\\"*Cough* Pre-nerf Bridgette *Cough*\\\")\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Comment\\n\\n- Do keep balance comparisons within Overwatch. Comparing to Bastion is [OK](#s \\\"If dangerous\\\"). Comparing to Demo is less [helpful](#s \\\"Unless they are making TF2 accurate Demo\\\")\\n\\n- Do think of the character as a [whole](#s \\\"They can't attack while their shield is up? Useless\\\")\\n\\n- Do be kind. Not all posters are secretly [Blizzard Devs testing new heroes](#s \\\"But some are, right?\\\")\\n\\n- Don't talk balance unless the poster [wants to.](#s \\\"The hero will be horribly underpowered their first time. Let that go.\\\") They may just be creating for fun\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Post\\n\\n- Do try to keep the code as [simple and self-contained](#s \\\"Minimize Dependencies\\\") as possible\\n\\n- Do mention what variables you use\\n\\n- Do explain how you accomplished your [goal](#s \\\"Magic is an acceptable response\\\")\\n\\n- Do explain [bugs and edge cases](#s \\\"Or treat them as just part of the experience\\\")\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Comment\\n\\n- Do mention what cool game-modes you can imagine using with it\\n\\n- Do mention alternate ideas for how to implement it\\n\\n- Do post links to other [implementations](#s \\\"With permission\\\")\\n\\n- Do be amazed at what they managed to do\\n\\n---\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkm0q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EReddit Post Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf posts are organized in a readable manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or hate\\\"\\u003ELocate modes they like\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Hardly\\\"\\u003EEasily lend assistance\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Except walking Zenyattas and wall-climbing Torbs\\\"\\u003ENot have to deal with ugly things\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EPost Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Flaired Appropriately\\\"\\u003EDescriptive Title\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPicture/Video \\u003Ca href=\\\"#s\\\" title=\\\"Follow this subs rules\\\"\\u003E(Optional)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECode\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or why your code is the awesomest ever\\\"\\u003EBrief Summary\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDetailed Description (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary as your creation is perfect\\\"\\u003EFuture Improvements\\u003C/a\\u003E (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Those whose stuff you stole\\\"\\u003ECredits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Posting Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETitle Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use this phrasing: \\u003Cem\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What you made\\\"\\u003EMyThing\\u003C/a\\u003E from \\u003Ca href=\\\"#s\\\" title=\\\"What you stole the idea from\\\"\\u003EOtherMedia\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo be very specific. \\u003Cem\\u003EAlphabetic Gun Game\\u003C/em\\u003E is better than simply \\u003Cem\\u003EGun Game\\u003C/em\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003EGood Example: \\u003Cem\\u003EAlphabetic Gun Game from \\u003Ca href=\\\"#s\\\" title=\\\"CS Major\\\"\\u003ECS:S:HTMLGO\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use a visual if possible. \\u003Ca href=\\\"#s\\\" title=\\\"\\u0026gt; Lier1\\\"\\u003EVideo \\u0026gt; Picture \\u0026gt; Text\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo use formatting, titles, or at the very least, \\u003Ca href=\\\"#s\\\" title=\\\"Hit enter twice, not once\\\"\\u003Eparagraph breaks\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep updated modes organized, either with new posts commented in the original post, or with update codes added with \\u003Ca href=\\\"#s\\\" title=\\\"v3.1 Never mind\\\"\\u003Eedits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo put things you are unsure how to do under \\u003Ca href=\\\"#s\\\" title=\\\"As you will somehow be smarter in the future\\\"\\u003EFuture Improvements\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo \\u003Ca href=\\\"#s\\\" title=\\\"I\\u0026#39;ll talk about using others work later\\\"\\u003Ecredit\\u003C/a\\u003E other users in your post. It\\u0026#39;s only polite\\u003C/li\\u003E\\n\\u003Cli\\u003EDo your \\u003Ca href=\\\"#s\\\" title=\\\"See that other people have posted working code before\\\"\\u003Eresearch.\\u003C/a\\u003E It will save you time and effort\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t go into the \\u003Ca href=\\\"#s\\\" title=\\\"I used this rule with this condition\\\"\\u003Enitty gritty.\\u003C/a\\u003E Explain how it works in game, not in code\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Comment Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf comments are organized in a helpful manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGet useful feedback\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERaise their self-esteem\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EComment Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"It does exists, its just hiding\\\"\\u003ENotice the Good\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHarsh reality (Optional)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary\\\"\\u003EUseful feedback\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo always be positive. There is \\u003Ca href=\\\"#s\\\" title=\\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\"\\u003Eno need nor reason for negativity.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention similar ideas. Link to them so the poster can get some ideas.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo give actual information/feedback.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep comments to the post at hand.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t simply comment \\u003Ca href=\\\"#s\\\" title=\\\"Great Job, finding this hover text\\\"\\u003E\\u0026quot;Great job\\u0026quot;\\u003C/a\\u003E. That\\u0026#39;s what liking is usually for.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t assume that the \\u003Ca href=\\\"#s\\\" title=\\\"My vision isn\\u0026#39;t 20-20, you see\\\"\\u003Eposters vision matches yours.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGood Example: \\u0026quot;Me and a few friends played this mode, because we love it from Halloo 4. It\\u0026#39;s a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There\\u0026#39;s some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\u0026quot;\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Mode Specific\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo label the specific \\u003Ca href=\\\"#s\\\" title=\\\"FFA, 5CP, Domination\\\"\\u003Eplay mode\\u003C/a\\u003E used in the code if it is unclear\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo play and share your experiences\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Post\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EHero Description Example Layout\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHealth\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPassives\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETriggered Abilities\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EStats\\u003C/li\\u003E\\n\\u003Cli\\u003EOther Features\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EBrief Summary Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo mention what \\u003Ca href=\\\"#s\\\" title=\\\"Flanker, Tank, Monkey, etc.\\\"\\u003Erole\\u003C/a\\u003E your hero should fill\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t talk about how your hero will \\u003Ca href=\\\"#s\\\" title=\\\"It won\\u0026#39;t\\\"\\u003Edestroy the meta\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003ETriggered Ability Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use numbers to describe hero \\u003Ca href=\\\"#s\\\" title=\\\"Deaths per Second\\\"\\u003EDPS\\u003C/a\\u003E and \\u003Ca href=\\\"#s\\\" title=\\\"i need Healing per Second\\\"\\u003EHPS\\u003C/a\\u003E if you want balance advice\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep any numbers used checked against \\u003Ca href=\\\"#s\\\" title=\\\"No supports firing 20 rounds of 15 dmg a second\\\"\\u003Eactual heroes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo check sources such as this \\u003Cem\\u003Elinked\\u003C/em\\u003E \\u003Ca href=\\\"https://overwatch.gamepedia.com/Overwatch_Wiki\\\"\\u003EOverwatch GamePedia\\u003C/a\\u003E page for how to describe abilities\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EGeneral Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo follow precedent for most parts of your character. They don\\u0026#39;t need a new leveling system, 50 HP, and a different \\u003Ca href=\\\"#s\\\" title=\\\"Command Line\\\"\\u003Econtrol scheme\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo make heroes both fun to play and \\u003Ca href=\\\"#s\\\" title=\\\"mostly the second\\\"\\u003Efun to play against\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t make a character with \\u003Ca href=\\\"#s\\\" title=\\\"Blocks all CC except Doomfist Punch\\\"\\u003Elots of exceptions\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t step on too many \\u003Ca href=\\\"#s\\\" title=\\\"*Cough* Pre-nerf Bridgette *Cough*\\\"\\u003Etoes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep balance comparisons within Overwatch. Comparing to Bastion is \\u003Ca href=\\\"#s\\\" title=\\\"If dangerous\\\"\\u003EOK\\u003C/a\\u003E. Comparing to Demo is less \\u003Ca href=\\\"#s\\\" title=\\\"Unless they are making TF2 accurate Demo\\\"\\u003Ehelpful\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo think of the character as a \\u003Ca href=\\\"#s\\\" title=\\\"They can\\u0026#39;t attack while their shield is up? Useless\\\"\\u003Ewhole\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be kind. Not all posters are secretly \\u003Ca href=\\\"#s\\\" title=\\\"But some are, right?\\\"\\u003EBlizzard Devs testing new heroes\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t talk balance unless the poster \\u003Ca href=\\\"#s\\\" title=\\\"The hero will be horribly underpowered their first time. Let that go.\\\"\\u003Ewants to.\\u003C/a\\u003E They may just be creating for fun\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo try to keep the code as \\u003Ca href=\\\"#s\\\" title=\\\"Minimize Dependencies\\\"\\u003Esimple and self-contained\\u003C/a\\u003E as possible\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what variables you use\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain how you accomplished your \\u003Ca href=\\\"#s\\\" title=\\\"Magic is an acceptable response\\\"\\u003Egoal\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain \\u003Ca href=\\\"#s\\\" title=\\\"Or treat them as just part of the experience\\\"\\u003Ebugs and edge cases\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what cool game-modes you can imagine using with it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention alternate ideas for how to implement it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo post links to other \\u003Ca href=\\\"#s\\\" title=\\\"With permission\\\"\\u003Eimplementations\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be amazed at what they managed to do\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkm0q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286051.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkcxj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257095.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**[TLDR:](#s \\\"Too Logical, Died Reading\\\")** I think that the Overwatch Workshop Community should get organized, and have some [ideas on doing so.](#s \\\"Not good ideas, mind you\\\")\\n\\n**Brief disclaimer:**\\n\\n- I by no means think these are the best ideas, I'm just trying to get a discussion started.\\n\\n- Please comment with better ideas, or parts I'm wrong about, or just because you feel like it.\\n\\n- A lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\n\\n- Also, liberal hover tags abound, and [none](#s \\\"some are funny, however\\\") are useful. The only things you can click on are specifically called out as links.\\n\\n- This got really big, really fast. I've split it into a few seperate posts. If the organization seems off, please tell me how to [fix it.](#s \\\"Because I don't know how to.\\\")\\n\\n---\\n\\n# Table of Contents\\n\\n##[Reddit Organization](#s \\\"How to do better than this post\\\") A.K.A Proposals\\n\\n- #### Posts\\n\\n- #### Comments\\n\\n- #### Mode Specific Tips\\n\\n- #### Ownership Discussion\\n\\n##[One-Stop Assistance](#s \\\"More like None-Start\\\") A.K.A Resources\\n\\n- #### [Workshop FAQ](#s \\\"What is an FAQ?\\\")\\n\\n- #### [Useful Links](#s \\\"May be copywrite infringing\\\")\\n - ###### Discord Channels\\n - ###### Youtube Channels\\n - ###### Dev Updates\\n - ###### Mode/Code Lists\\n\\n## [Workshop Improvement Ideas](#s \\\"Nonexistent\\\")\\n\\n## [Future](#s \\\"Implying they will get done\\\") Projects\\n\\n## Random [Asides](#s \\\"Also B-sides\\\")\\n - #### [TLDR](#s \\\"You look for the TLDR in the Table of Contents?\\\")\\n---\\n\\n[Reddit Organization Post Link]()\\n\\n[One Stop Assistance Post Link]()\\n\\n[My Code List Link]()\\n\\n[Workshop Improvement Ideas Link]()\\n\\n## Future Projects\\n#### I'll probably see what I can do to organize a large-scale modding project once we get enough space on the workshop for it.\\n#### I'll be updating and correcting this post with all the information you commentors give me, and the actual game-modes I've been collection. Maybe I'll add more hover-text jokes.\\n#### I'm planning on adding a section with advice on creating a new mode or character, instead of just how to post one.\\n\\n## Random Asides\\n#### About Me: I'm Lier1. I'm a filthy casual, I make lots of jokes, and I [main DPS.](#s \\\"The worst sort of main, I know\\\") However, I don't wish to offend, and hope to improve this resource, so feel free to comment and ask questions, fix my mistakes, or add more resources.\\n#### TLDR: I have some ideas for organizing the reddit posts and comments, the feedback we give the devs, an FAQ for answering your questions, and a One-Stop Workshop for leading you to resources.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkcxj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Too Logical, Died Reading\\\"\\u003ETLDR:\\u003C/a\\u003E\\u003C/strong\\u003E I think that the Overwatch Workshop Community should get organized, and have some \\u003Ca href=\\\"#s\\\" title=\\\"Not good ideas, mind you\\\"\\u003Eideas on doing so.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBrief disclaimer:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI by no means think these are the best ideas, I\\u0026#39;m just trying to get a discussion started.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPlease comment with better ideas, or parts I\\u0026#39;m wrong about, or just because you feel like it.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EA lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EAlso, liberal hover tags abound, and \\u003Ca href=\\\"#s\\\" title=\\\"some are funny, however\\\"\\u003Enone\\u003C/a\\u003E are useful. The only things you can click on are specifically called out as links.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EThis got really big, really fast. I\\u0026#39;ve split it into a few seperate posts. If the organization seems off, please tell me how to \\u003Ca href=\\\"#s\\\" title=\\\"Because I don\\u0026#39;t know how to.\\\"\\u003Efix it.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ETable of Contents\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"How to do better than this post\\\"\\u003EReddit Organization\\u003C/a\\u003E A.K.A Proposals\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EPosts\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EComments\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EMode Specific Tips\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EOwnership Discussion\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"More like None-Start\\\"\\u003EOne-Stop Assistance\\u003C/a\\u003E A.K.A Resources\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What is an FAQ?\\\"\\u003EWorkshop FAQ\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"May be copywrite infringing\\\"\\u003EUseful Links\\u003C/a\\u003E\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E###### Discord Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Youtube Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Dev Updates\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Mode/Code Lists\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Nonexistent\\\"\\u003EWorkshop Improvement Ideas\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Implying they will get done\\\"\\u003EFuture\\u003C/a\\u003E Projects\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ERandom \\u003Ca href=\\\"#s\\\" title=\\\"Also B-sides\\\"\\u003EAsides\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003E - #### \\u003Ca href=\\\"#s\\\" title=\\\"You look for the TLDR in the Table of Contents?\\\"\\u003ETLDR\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E[Reddit Organization Post Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[One Stop Assistance Post Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[My Code List Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Workshop Improvement Ideas Link]()\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EFuture Projects\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;ll probably see what I can do to organize a large-scale modding project once we get enough space on the workshop for it.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;ll be updating and correcting this post with all the information you commentors give me, and the actual game-modes I\\u0026#39;ve been collection. Maybe I\\u0026#39;ll add more hover-text jokes.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;m planning on adding a section with advice on creating a new mode or character, instead of just how to post one.\\u003C/h4\\u003E\\n\\n\\u003Ch2\\u003ERandom Asides\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EAbout Me: I\\u0026#39;m Lier1. I\\u0026#39;m a filthy casual, I make lots of jokes, and I \\u003Ca href=\\\"#s\\\" title=\\\"The worst sort of main, I know\\\"\\u003Emain DPS.\\u003C/a\\u003E However, I don\\u0026#39;t wish to offend, and hope to improve this resource, so feel free to comment and ask questions, fix my mistakes, or add more resources.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003ETLDR: I have some ideas for organizing the reddit posts and comments, the feedback we give the devs, an FAQ for answering your questions, and a One-Stop Workshop for leading you to resources.\\u003C/h4\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkcxj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557285895.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emo4wbj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557169931.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Fun Modes\\n\\n* K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n* 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n* RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n* EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n* N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n* 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n* M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n* T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n* NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n* R4DWM - BloodBorne in Overwatch - u/Elodeona\\n* EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n* FHQZ4 - Bridgette Pong - u/AJ_Black\\n* KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n* 53J3R - Shooters Vs Stabbers - Lilsis\\n* BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n* BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n* 5KCP4 - Dva Eject into Random Ult - u/qbbftw \\\\- ORIGINAL IDEA FROM: u/Woolin\\n* YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n* 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n* 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n* MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n* SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n* VJCT2 - Chase the Snowmen - u/andygmb\\n* 6PC67 - Take Hero of Kills - u/CrenderMutant\\n* 9J42E - Mcree Hot Potato - u/olipoulihot\\n* 85J46 - TF2 the Return - u/Greg266\\n* 7792M - Ninja Sword Fight - u/zhpete\\n* VQ5W8 - Turn Based 3v3 Deathmatch - u/nodas9990\\n* 56XNH - Reinhardt's Completely Stoned Bumper Car Emporeum v14 - u/TheRedstoneBlaze\\n* R68FF - Lucio Ball - u/Telefrag_Ent\\n* V5NKR - Volleybomb - u/Telefrag_Ent\\n* GB9PM - Instagib Railgun : Ashe Team Deathmatch - u/Telefrag_Ent\\n* PGF9P - 1 v 1 High Noon Duel - u/Zenmill\\n* ZKQVG - One in the Chamber: 3 Lives - u/iejb\\n* \\u00a0\\n* 0D2W5 - Hampster Chase - u/Woolin\\n* 6E3Z5 - Lucio Tag - u/Woolin \\u00a0\\n*\\n* 4J6KW - Screencheat - u/PotsNPans\\n* MN787 - Screencheat - u/microcosm_ow \\u00a0\\n*\\n* PTTNK - Weeping Angels (Zen Mcree) - u/Semproser\\n* X2HH9 - Weeping Angels (Mercy Mei) - u/Hogrid125 \\u00a0\\n*\\n* NJGZ4 - Deathmatch Rivals - u/Hypno--Toad\\n* A6736 - Rival System - u/Hypno--Toad \\u00a0\\n*\\n* JWY47 - Hammond Racing - @DanielFedder (Twitter)\\n* D9RND - Hamster Ball Racing - u/qwook \\u00a0\\n*\\n* SH9XN - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n* 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray \\u00a0\\n*\\n* RGH0D - High Speed: FFA - u/rbnsky\\n* SF1R2 - High Speed Gun Game - u/rbnsky \\u00a0\\n*\\n* E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n* QH5SP - PVE Horde Mode - u/Jechto\\n\\n## Training Modes\\n\\n* RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n* 2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n\\n* QKAAM - Placeable Cameras - u/ItsDeltin\\n* CQ00S - Elemental Aspects - u/poststakhanovist\\n* 179QN - Slot Machine - u/Cowboy_Jimmy\\n* 6WXRW - Navi - u/andygmb \\\\- u/Lymbow \\u00a0\\n*\\n* NK1YF - 2-D Sidescroller - u/HaxD3\\n* 4V8NC - Top Down Shooter - u/microcosm_ow \\u00a0\\n*\\n* ZW1PY - Scoreboard - u/Paf13\\n* 9EKZB - Scoreboard - u/caldoran2 \\u00a0\\n*\\n* QESP4 - Walls - u/Zezombye\\n* TZYK6 - Walls - u/Gecktendo\\n* RFJ4G - Walls - u/Gecktendo \\u00a0\\n*\\n* P4Y50 - Bunny Hopping - u/microcosm_ow\\n* WV5HH - Bunny Hop - u/TyzoneLyraNature\\n\\n## Hero Ideas\\n\\n* XJZB1 - Orisa AoE Push - AlexEptit\\n* H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n* RNKKJ - All Heroes Hover Jet - u/microcosm_ow\\n* 8H2DN - Sym Gravity Gun (Half-life) - u/IFIsc\\n* XGAPQ - Genji as Maeve (Paladins) - u/jprosk\\n* BE2J7 - Portal Gun - u/Lymbow \\\\- u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emo4wbj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9J42E - Mcree Hot Potato - \\u003Ca href=\\\"/u/olipoulihot\\\"\\u003Eu/olipoulihot\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E85J46 - TF2 the Return - \\u003Ca href=\\\"/u/Greg266\\\"\\u003Eu/Greg266\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E7792M - Ninja Sword Fight - \\u003Ca href=\\\"/u/zhpete\\\"\\u003Eu/zhpete\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVQ5W8 - Turn Based 3v3 Deathmatch - \\u003Ca href=\\\"/u/nodas9990\\\"\\u003Eu/nodas9990\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E56XNH - Reinhardt\\u0026#39;s Completely Stoned Bumper Car Emporeum v14 - \\u003Ca href=\\\"/u/TheRedstoneBlaze\\\"\\u003Eu/TheRedstoneBlaze\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER68FF - Lucio Ball - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EV5NKR - Volleybomb - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGB9PM - Instagib Railgun : Ashe Team Deathmatch - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EPGF9P - 1 v 1 High Noon Duel - \\u003Ca href=\\\"/u/Zenmill\\\"\\u003Eu/Zenmill\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZKQVG - One in the Chamber: 3 Lives - \\u003Ca href=\\\"/u/iejb\\\"\\u003Eu/iejb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u00a0\\u003C/li\\u003E\\n\\u003Cli\\u003E0D2W5 - Hampster Chase - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6E3Z5 - Lucio Tag - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003E4J6KW - Screencheat - \\u003Ca href=\\\"/u/PotsNPans\\\"\\u003Eu/PotsNPans\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMN787 - Screencheat - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EPTTNK - Weeping Angels (Zen Mcree) - \\u003Ca href=\\\"/u/Semproser\\\"\\u003Eu/Semproser\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EX2HH9 - Weeping Angels (Mercy Mei) - \\u003Ca href=\\\"/u/Hogrid125\\\"\\u003Eu/Hogrid125\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ENJGZ4 - Deathmatch Rivals - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EA6736 - Rival System - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EJWY47 - Hammond Racing - @DanielFedder (Twitter)\\u003C/li\\u003E\\n\\u003Cli\\u003ED9RND - Hamster Ball Racing - \\u003Ca href=\\\"/u/qwook\\\"\\u003Eu/qwook\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ESH9XN - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E179QN - Slot Machine - \\u003Ca href=\\\"/u/Cowboy_Jimmy\\\"\\u003Eu/Cowboy_Jimmy\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ENK1YF - 2-D Sidescroller - \\u003Ca href=\\\"/u/HaxD3\\\"\\u003Eu/HaxD3\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E4V8NC - Top Down Shooter - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETZYK6 - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERFJ4G - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EP4Y50 - Bunny Hopping - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERNKKJ - All Heroes Hover Jet - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8H2DN - Sym Gravity Gun (Half-life) - \\u003Ca href=\\\"/u/IFIsc\\\"\\u003Eu/IFIsc\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EXGAPQ - Genji as Maeve (Paladins) - \\u003Ca href=\\\"/u/jprosk\\\"\\u003Eu/jprosk\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emo4wbj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557198731.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emny9vc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MeddyEvalNight\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557166074.0, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Image was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u003Cimg/\\u003E . It looks like an inline rendered image needs to be uploaded\\n\\n\\u0026#x200B;\\n\\n[Video link](https://www.youtube.com/watch?v=yd98RGxad0U)\", \"link_title\": \"Testing inline image links. Is it a url link or an inline image render?\", \"author_flair_css_class\": null, \"name\": \"t1_emny9vc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EImage was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u0026lt;img/\\u0026gt; . It looks like an inline rendered image needs to be uploaded\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=yd98RGxad0U\\\"\\u003EVideo link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emny9vc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"report_reasons\": null, \"link_author\": \"MeddyEvalNight\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"created\": 1557194874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emnwgbf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MeddyEvalNight\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557165020.0, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Not what I wanted... next test.\", \"link_title\": \"Testing inline image links. Is it a url link or an inline image render?\", \"author_flair_css_class\": null, \"name\": \"t1_emnwgbf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot what I wanted... next test.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emnwgbf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"report_reasons\": null, \"link_author\": \"MeddyEvalNight\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"created\": 1557193820.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmzbbw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gpngc\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557143134.0, \"send_replies\": true, \"parent_id\": \"t3_blb203\", \"score\": 1, \"author_fullname\": \"t2_6fxy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n**1.** **Chargers \\u2013 Jerry Tillery \\u2013 4** \\n\\nI loved this Chargers draft. They got the No. 11 and 12 players on my Big Board. \\n\\nTillery has bust risk after an uneven college career, but I think his pro traits translate in a big way. He absolutely wrecked the Stanford game with 4 sacks, so perhaps my evaluation wouldn\\u2019t be as rosy if I watched his entire career. Still, traits. He has a strong club, pushes the pocket, and is stout against the run. Just watch Stanford. His issues with consistency come down to technique and stupid things like not exploding off the ball for some reason. He\\u2019s really good right now and with some coaching can be great. The Chargers might have the best defense in the league next year. \\n\\nNasir Adderly was my favorite player in the entire draft. My prediction is a 5. Copied and pasted from my notes: wowowowowowoowowwowoow. It doesn\\u2019t take a professional scout to see that he\\u2019s playing at a different speed than everyone else on the field at the FCS level. Against NDSU, I saw him at 206 pounds push back a 300-pound OL and knock down an outside WR. He\\u2019s a missile downhill and has the ball skills and range of a top safety. The only question I have is how he\\u2019ll respond to the jump in competition. When scouting FCS players, you want to see them dominate exactly as he did. STOP whatever you\\u2019re doing and watch this right now: [https://www.youtube.com/watch?v=0dwOuc8K4ik](https://www.youtube.com/watch?v=0dwOuc8K4ik) He gives a new meaning to the term \\u201cstop and start\\u201d, makes some spectacular catches down the field, and misses a tackle on punt coverage\\u2026 \\u2026then Ben Watsons his mistake in unbelievable fashion. Seriously, just watch this right now: [https://www.youtube.com/watch?v=0dwOuc8K4ik](https://www.youtube.com/watch?v=0dwOuc8K4ik) \\n\\nThe Chargers might have the best safety duo in the league soon. \\n\\n**2.** **Seahawks \\u2013 L.J. Collier \\u2013 1** \\n\\nI\\u2019m a Seahawks fan and I\\u2019m just about done with GM John Schneider. I\\u2019ll forever love him for building a SB Champion, but enough is enough, and they\\u2019re wasting Russ\\u2019 prime. After the all-time draft class in 2012, Schneider has done very little good and a ton bad with Seahawks draft capital. Besides Tyler Lockett, Frank Clark, Jarran Reed, and Chris Carson, there hasn\\u2019t been much to show for despite hoarding draft picks and trading down every year. Just look at how he\\u2019s handled the first round since 2013: \\n\\n2013: Traded for Percy Harvin. While he may have sealed one SB, he fractured the locker room. \\n\\n2014: Traded into the 2nd and took Paul Richardson. Meh. \\n\\n2015: Traded for Jimmy Graham. Eh. \\n\\n2016: Selected Germain Ifedi. LOL. \\n\\n2017: Traded into the the 2nd and took Malik McDowell who never played a snap for them. \\n\\n2018: Traded down to No. 27 to take a RB, who, even if he\\u2019s good, is still a RB. \\n\\nAnd it\\u2019s not like he\\u2019s been nailing the later rounds either. \\n\\nHis drafts since 2013 are a fireable offense. He\\u2019ll probably never be separated from Carroll, and he\\u2019ll always have 2012 to shield him, but he\\u2019s been objectively awful for years. Sorry to spit the truth fellow 12s. \\n\\nThe Seahawks take pride in doing off-the-wall things and have missed out on so much talent because of it. I don\\u2019t believe in the term \\u201creach\\u201d, but the guys the media says they reached for don\\u2019t ever pan out (besides 2012), sooooo\\u2026. They also love trading down to hoard draft picks, but they just end up on missing on all the picks they get! It\\u2019s frustrating as a fan to see guys like Calvin Ridley, Sweat, Tillery, and Marquise Brown get taken in between their original slot and trade-down slot. They take pride in their unconventional ways, and their ways have been thoroughly ineffective since 2012. This year JS was quoted as saying something along the lines of \\u2018the draft was going the way it was expected to, and we didn\\u2019t like that.\\u2019 The media and draftniks have gotten wiser and straying so far off EVERYONE\\u2019S Big Boards usually doesn\\u2019t work anymore. \\n\\nOn to Collier, he\\u2019s a decent 24-year-old power edge guy, who\\u2019s profile is that of a clear capped-upside second-rounder. The only thing he has going for him that I can\\u2019t really speak on is his supposedly dominant Senior Bowl week. There are some nice things on film, and he can be a solid run defender, but a lot of his pressures and sacks won\\u2019t translate. He\\u2019s not going to bull-rush and get instant sacks against NFL tackles. His horrid 7.71 3cone confirms his lack of bend off the edge. He started one year at TCU and had so-so film. The pick just doesn\\u2019t make sense. \\n\\nI did a YouTube video ([https://www.youtube.com/watch?v=VsRjqfOao\\\\_0](https://www.youtube.com/watch?v=VsRjqfOao_0)) on D.K. Metcalf (2) right after he blew up the combine and called him a 3rd-round pick. He has every trait of a bust risk but went to the best situation possible. Russ makes everyone around him better and D.K. won\\u2019t have to run many advanced routes for the best deep-ball passer in the game. He\\u2019ll also be thrust right away into playing time, and the culture at Seattle sets their players up for success, especially at WR. If he was a developmental project in a different program, stuck behind better receivers or with a bad QB, I could see him falling out of relevance and not building any confidence. \\n\\nAs a deep threat, he\\u2019s not bad. However, there are a ton of concerns on tape. He\\u2019s all straight-linish with no agility, and his athletic testing comparisons to Tom Brady are evident on film. He lacks a release plan to gain separation. He will body catch when he doesn\\u2019t have to and I can\\u2019t tell if his hands are just average or below average, probably because there simply weren\\u2019t many catches on film. Some of his proponents cited \\u201cbad coaching\\u201d as the reason he didn\\u2019t produce. I understand he plays a different position, but A.J. Brown produced huge numbers in the same offense. Metcalf isn\\u2019t a bad prospect by any means. He flashed as a deep threat (which fits Seattle) and has functional (and photogenic) strength as a blocker and fall-forward-after-catch guy. But concerns with rawness and route-running make him developmental with question marks. I would have preferred to stay away and I can\\u2019t endorse the pick. But in the late-second, I suppose they could have done worse. \\n\\nHere\\u2019s a hot take: Gary Jennings Jr. (3) Will be a better pro than D.K. He popped on film while scouting Grier. He can\\u2019t run a route to save his life but he has literally everything else you want from a pro WR including outstanding ball skills.\\n\\n3. Giants \\u2013 See Pick 6 \\n\\n4. Falcons \\u2013 See Pick 14 \\n\\n**5.** **Patriots \\u2013 N\\u2019Keal Harry \\u2013 2** \\n\\nThe ghost of Chad Jackson has haunted Gillette for years. Read the book \\u201cWar Room\\u201d about Belichick and the Patriots drafts. With a glaring need at WR, the Pats finally spent a first on one, and Harry has a chance to start right away. \\n\\nHarry was one of the most unique WR prospects I\\u2019ve ever scouted. Nothing about his game is conventional, starting with his awkward upright stance and weird rolling release. His running-after-the-catch transitions are awkward as he\\u2019ll weirdly high-step or foot-fire for one full second before somehow gliding forward without being an easy target for a tackler. His arms pump down to his knees when he runs. Good coaches let players be themselves, and Harry\\u2019s unconventional ways do lead to success on film. He\\u2019s sudden down the field on second-level releases and catches the ball well for the most part, using his bigger body to his advantage. His confidence on film is evident, but the Oregon game makes me reluctant to pick a star. He had a couple of drops and generally struggled. Predicting the careers of draft picks is really ridiculous. I wouldn\\u2019t be shocked with any outcome, including a full-blown implosion or budding superstar. My initial instinct was that he was just OK. 3. Wait. He really won\\u2019t be a 3. He\\u2019s either going to be the guy or not work out. 2. \\n\\n**46. Browns \\u2013 Greedy Wiliams \\u2013 3** \\n\\nI don\\u2019t know why Greedy fell and Dorsey made a good move trading up to get him. Everyone knows what he is as a long press corner but a second look at his tape revealed one issue. He is very inconsistent locating the football and getting his head around in press. Teams are going to play the percentages and abuse him if he doesn\\u2019t learn how to consistently turn his head. Still, the traits are there and he\\u2019s really good. I don\\u2019t care about his run defense in a man-heavy scheme.\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmzbbw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E1.\\u003C/strong\\u003E \\u003Cstrong\\u003EChargers \\u2013 Jerry Tillery \\u2013 4\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI loved this Chargers draft. They got the No. 11 and 12 players on my Big Board. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETillery has bust risk after an uneven college career, but I think his pro traits translate in a big way. He absolutely wrecked the Stanford game with 4 sacks, so perhaps my evaluation wouldn\\u2019t be as rosy if I watched his entire career. Still, traits. He has a strong club, pushes the pocket, and is stout against the run. Just watch Stanford. His issues with consistency come down to technique and stupid things like not exploding off the ball for some reason. He\\u2019s really good right now and with some coaching can be great. The Chargers might have the best defense in the league next year. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENasir Adderly was my favorite player in the entire draft. My prediction is a 5. Copied and pasted from my notes: wowowowowowoowowwowoow. It doesn\\u2019t take a professional scout to see that he\\u2019s playing at a different speed than everyone else on the field at the FCS level. Against NDSU, I saw him at 206 pounds push back a 300-pound OL and knock down an outside WR. He\\u2019s a missile downhill and has the ball skills and range of a top safety. The only question I have is how he\\u2019ll respond to the jump in competition. When scouting FCS players, you want to see them dominate exactly as he did. STOP whatever you\\u2019re doing and watch this right now: \\u003Ca href=\\\"https://www.youtube.com/watch?v=0dwOuc8K4ik\\\"\\u003Ehttps://www.youtube.com/watch?v=0dwOuc8K4ik\\u003C/a\\u003E He gives a new meaning to the term \\u201cstop and start\\u201d, makes some spectacular catches down the field, and misses a tackle on punt coverage\\u2026 \\u2026then Ben Watsons his mistake in unbelievable fashion. Seriously, just watch this right now: \\u003Ca href=\\\"https://www.youtube.com/watch?v=0dwOuc8K4ik\\\"\\u003Ehttps://www.youtube.com/watch?v=0dwOuc8K4ik\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Chargers might have the best safety duo in the league soon. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E2.\\u003C/strong\\u003E \\u003Cstrong\\u003ESeahawks \\u2013 L.J. Collier \\u2013 1\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m a Seahawks fan and I\\u2019m just about done with GM John Schneider. I\\u2019ll forever love him for building a SB Champion, but enough is enough, and they\\u2019re wasting Russ\\u2019 prime. After the all-time draft class in 2012, Schneider has done very little good and a ton bad with Seahawks draft capital. Besides Tyler Lockett, Frank Clark, Jarran Reed, and Chris Carson, there hasn\\u2019t been much to show for despite hoarding draft picks and trading down every year. Just look at how he\\u2019s handled the first round since 2013: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2013: Traded for Percy Harvin. While he may have sealed one SB, he fractured the locker room. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2014: Traded into the 2nd and took Paul Richardson. Meh. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2015: Traded for Jimmy Graham. Eh. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2016: Selected Germain Ifedi. LOL. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2017: Traded into the the 2nd and took Malik McDowell who never played a snap for them. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2018: Traded down to No. 27 to take a RB, who, even if he\\u2019s good, is still a RB. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd it\\u2019s not like he\\u2019s been nailing the later rounds either. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHis drafts since 2013 are a fireable offense. He\\u2019ll probably never be separated from Carroll, and he\\u2019ll always have 2012 to shield him, but he\\u2019s been objectively awful for years. Sorry to spit the truth fellow 12s. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Seahawks take pride in doing off-the-wall things and have missed out on so much talent because of it. I don\\u2019t believe in the term \\u201creach\\u201d, but the guys the media says they reached for don\\u2019t ever pan out (besides 2012), sooooo\\u2026. They also love trading down to hoard draft picks, but they just end up on missing on all the picks they get! It\\u2019s frustrating as a fan to see guys like Calvin Ridley, Sweat, Tillery, and Marquise Brown get taken in between their original slot and trade-down slot. They take pride in their unconventional ways, and their ways have been thoroughly ineffective since 2012. This year JS was quoted as saying something along the lines of \\u2018the draft was going the way it was expected to, and we didn\\u2019t like that.\\u2019 The media and draftniks have gotten wiser and straying so far off EVERYONE\\u2019S Big Boards usually doesn\\u2019t work anymore. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn to Collier, he\\u2019s a decent 24-year-old power edge guy, who\\u2019s profile is that of a clear capped-upside second-rounder. The only thing he has going for him that I can\\u2019t really speak on is his supposedly dominant Senior Bowl week. There are some nice things on film, and he can be a solid run defender, but a lot of his pressures and sacks won\\u2019t translate. He\\u2019s not going to bull-rush and get instant sacks against NFL tackles. His horrid 7.71 3cone confirms his lack of bend off the edge. He started one year at TCU and had so-so film. The pick just doesn\\u2019t make sense. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did a YouTube video (\\u003Ca href=\\\"https://www.youtube.com/watch?v=VsRjqfOao_0\\\"\\u003Ehttps://www.youtube.com/watch?v=VsRjqfOao_0\\u003C/a\\u003E) on D.K. Metcalf (2) right after he blew up the combine and called him a 3rd-round pick. He has every trait of a bust risk but went to the best situation possible. Russ makes everyone around him better and D.K. won\\u2019t have to run many advanced routes for the best deep-ball passer in the game. He\\u2019ll also be thrust right away into playing time, and the culture at Seattle sets their players up for success, especially at WR. If he was a developmental project in a different program, stuck behind better receivers or with a bad QB, I could see him falling out of relevance and not building any confidence. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a deep threat, he\\u2019s not bad. However, there are a ton of concerns on tape. He\\u2019s all straight-linish with no agility, and his athletic testing comparisons to Tom Brady are evident on film. He lacks a release plan to gain separation. He will body catch when he doesn\\u2019t have to and I can\\u2019t tell if his hands are just average or below average, probably because there simply weren\\u2019t many catches on film. Some of his proponents cited \\u201cbad coaching\\u201d as the reason he didn\\u2019t produce. I understand he plays a different position, but A.J. Brown produced huge numbers in the same offense. Metcalf isn\\u2019t a bad prospect by any means. He flashed as a deep threat (which fits Seattle) and has functional (and photogenic) strength as a blocker and fall-forward-after-catch guy. But concerns with rawness and route-running make him developmental with question marks. I would have preferred to stay away and I can\\u2019t endorse the pick. But in the late-second, I suppose they could have done worse. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u2019s a hot take: Gary Jennings Jr. (3) Will be a better pro than D.K. He popped on film while scouting Grier. He can\\u2019t run a route to save his life but he has literally everything else you want from a pro WR including outstanding ball skills.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGiants \\u2013 See Pick 6 \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFalcons \\u2013 See Pick 14 \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E5.\\u003C/strong\\u003E \\u003Cstrong\\u003EPatriots \\u2013 N\\u2019Keal Harry \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe ghost of Chad Jackson has haunted Gillette for years. Read the book \\u201cWar Room\\u201d about Belichick and the Patriots drafts. With a glaring need at WR, the Pats finally spent a first on one, and Harry has a chance to start right away. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHarry was one of the most unique WR prospects I\\u2019ve ever scouted. Nothing about his game is conventional, starting with his awkward upright stance and weird rolling release. His running-after-the-catch transitions are awkward as he\\u2019ll weirdly high-step or foot-fire for one full second before somehow gliding forward without being an easy target for a tackler. His arms pump down to his knees when he runs. Good coaches let players be themselves, and Harry\\u2019s unconventional ways do lead to success on film. He\\u2019s sudden down the field on second-level releases and catches the ball well for the most part, using his bigger body to his advantage. His confidence on film is evident, but the Oregon game makes me reluctant to pick a star. He had a couple of drops and generally struggled. Predicting the careers of draft picks is really ridiculous. I wouldn\\u2019t be shocked with any outcome, including a full-blown implosion or budding superstar. My initial instinct was that he was just OK. 3. Wait. He really won\\u2019t be a 3. He\\u2019s either going to be the guy or not work out. 2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E46. Browns \\u2013 Greedy Wiliams \\u2013 3\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u2019t know why Greedy fell and Dorsey made a good move trading up to get him. Everyone knows what he is as a long press corner but a second look at his tape revealed one issue. He is very inconsistent locating the football and getting his head around in press. Teams are going to play the percentages and abuse him if he doesn\\u2019t learn how to consistently turn his head. Still, the traits are there and he\\u2019s really good. I don\\u2019t care about his run defense in a man-heavy scheme.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmzbbw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171934.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmz810\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"converter-bot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557143052.0, \"send_replies\": true, \"parent_id\": \"t1_emmz7qr\", \"score\": 1, \"author_fullname\": \"t2_zds627j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"7 yards is 6.4 meters\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmz810\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E7 yards is 6.4 meters\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmz810/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171852.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmz7qr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gpngc\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557143045.0, \"send_replies\": true, \"parent_id\": \"t3_blb203\", \"score\": 1, \"author_fullname\": \"t2_6fxy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n**1.** **Vikings \\u2013 Garrett Bradbury \\u2013 2** \\n\\nI don\\u2019t like picking this many 2s in the teens, but these were the guys I was down on a bit and all of them have fairly high floors so I\\u2019m reluctant to pick 1s. It\\u2019s simply very rare than interior OL is drafted in the teens and doesn\\u2019t end up at least being solid. Still, I had Bradbury ranked 49th on my Big Board. His tape was that of an average college OL. He struggled to get movement in the run game. He was fine in pass protection. Against Michigan, he was bench pressed and pushed back multiple times by LB #35. It was jarring. Even in a zone scheme, getting moved back at center against LBs is a red flag for me. If I\\u2019m taking a center in the first round I want Travis Frederick or Ryan Kelly \\u2013 technicians who also have the power to move people. Bradbury was a fine college player in an offense with a lot of quick game reps, especially against Clemson, but I see his lack of strength at the POA as a major flaw. And it\\u2019s not like he\\u2019s Ryan Kelly in terms of technique. Athleticism and intelligence are great qualities, but if you\\u2019re spending the 18th overall pick on a center, he better have more than that. Bradbury doesn\\u2019t. \\n\\n**2.** **Titans \\u2013 Jeffrey Simmons \\u2013 3** \\n\\nI have no idea why ESPN handled the Simmons pick the way they did. It was one of the most bizarre NFL Draft segments I\\u2019ve ever seen. And the worst part is I don\\u2019t think they showed ONE SECOND of him playing football. So odd. \\n\\nI don\\u2019t think Simmons\\u2019 film showed the best player in the draft as some said. He was the 23rd ranked player on my board before I knew about his character questions. Injuries factored in slightly for me. He\\u2019s got everything you want in a dominant DL, but there were some really bad stretches on film. He struggled vs double teams against Florida, on one rep stopping his feet and getting driven back literally 7 yards before flailing his arm in a feeble tackle attempt. He\\u2019ll lean too much and get caught out of position. He\\u2019ll stand straight up. There were flashes of brilliance, and if he can make some technique changes to mix with his strength, he can be a factor inside in the NFL. He\\u2019s tough to reach in the run game and makes plays. Really good college player who needs to work that much harder to up his game for the next level.\\n\\n**3.** **Broncos \\u2013 Noah Fant \\u2013 3** \\n\\nThere is one glaring takeaway from Fant\\u2019s film, and I\\u2019m surprised I haven\\u2019t read it anywhere: He doesn\\u2019t break ANY tackles. Breaking tackles isn\\u2019t exactly a hugely important skill for TEs in the NFL, but it speaks to a lack of dominance over his level of competition. As a possession receiver, Fant is fine. He can stretch the field, was money on deep crosses, and is a red zone threat. His skills fall somewhere in the middle on the Ricky Seals-Jones-to-Jordan Reed spectrum. He\\u2019s not a good blocker and I saw him jump for no reason on one catch and drop another in three games. In a passing league, he\\u2019s a valuable TE but he might be one-dimensional. He\\u2019ll be a good to great TE in fantasy by his second year with his ceiling decided by his QB. \\n\\nI didn\\u2019t love Drew Lock (1) on film. He\\u2019s athletic with good size and a great arm, and played pretty well in the SEC. However, he sees ghosts, makes too many fade-away throws, and is slow to process information. I can see the delay of games in his future. Although he is pretty accurate which is my No. 1 most important trait for QBs. Hmmm.\\n\\n4. Packers \\u2013 See Pick 12 \\n\\n**5.** **Eagles \\u2013 Andre Dillard \\u2013 2** \\n\\nPredicting Andre Dillard\\u2019s career comes down to one question: Can finesse-first work in the NFL? Dillard is smart with great feet. He just may not be physical or nasty enough to be a franchise LT. It\\u2019s also important to remember that while skill positions have to make a tough transition from Air Raid offenses, OL must basically re-learn everything as well. He got whooped at the Senior Bowl by the Texas DE. He has the tools to make the jump but there are more questions than answers here. Jumping over Houston to get Wentz\\u2019s next blindside protector might actually bite the Eagles because Tytus Howard is actually better. \\n\\n**6.** **Texans \\u2013 Tytus Howard - 4** \\n\\nScouting Howard is very simple. He kick-slides well, moves well, and needs to get stronger. He can handle speed. Some OL have quirks where they play better on one side, so I hope that\\u2019s not the case with Howard, because he played RT at Alabama State and the Senior Bowl. He gets into stalemates too much in the run game but he handled everything Auburn threw at him in terms of speed and power rushers and his game translates to the pros in a big way. I think he has more upside than Dillard. \\n\\nCoincidentally, their 5th-rounder, Texas DE Charles Omenihu (3) whooped Andre Dillard at the Senior Bowl and has all the tools of a steal. \\n\\n7. Raiders \\u2013 See Pick 4 \\n\\n**8.** **Ravens \\u2013 Marquise Brown \\u2013 4** \\n\\nBrown to the Ravens is very interesting. On one hand, he was the No. 8 player on my Big Board. On the other hand, using a first on a WR in an offense that wants to throw less than 20 times a game is head-scratching. I loved Lamar Jackson as a prospect last year, but he\\u2019ll have to make gigantic, unprecedented strides as a passer for Brown to reach his potential. \\n\\nOne of the keys to route-running is avoiding contact while still executing your assignment. This is obvious in the form of press coverage at the LOS, and it\\u2019s very easy to evaluate effective press releases. The average football fan might not notice what happens mid-route on secondary releases, which is the move or plan a receiver executes to get off a collision by a defender. The fact that Brown doesn\\u2019t get touched on his secondary or LOS releases epitomizes why I love this player\\u2019s game. Advanced scouting term: he\\u2019s fast. Also, he\\u2019s quick. His deep threat prowess has contributed to two QBs going first overall. He\\u2019s terrific after the catch. He\\u2019s smooth in and out of his breaks and comes downhill on his post curls beautifully. There are two concerns. 1) He gets literally tossed around like a rag doll. And 2) He had three drops against Texas. Evaluating college performance, the three drops were bad and his position coach should grade him negatively. But if you watch the three drops closely, and all of his catches, his hand positioning and coordination is pretty much perfect \\u2013 the CB on Texas made a couple of nice plays and on the deep post, his small hands just couldn\\u2019t squeeze it over his opposite shoulder. His hands were still positioned correctly, which is a pro trait that translates. DeSean Jackson has shown us that thin speedsters can stay healthy, but Brown already struggling with injuries is concerning. If he stays healthy, he\\u2019ll be a star and have a T.Y./DJax career. When a prospect\\u2019s only issue is size, I always take him (Tarik Cohen!).\\n\\n9. Skins \\u2013 See Pick 15 \\n\\n10. Raiders \\u2013 I told you before, go to 4\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmz7qr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E1.\\u003C/strong\\u003E \\u003Cstrong\\u003EVikings \\u2013 Garrett Bradbury \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u2019t like picking this many 2s in the teens, but these were the guys I was down on a bit and all of them have fairly high floors so I\\u2019m reluctant to pick 1s. It\\u2019s simply very rare than interior OL is drafted in the teens and doesn\\u2019t end up at least being solid. Still, I had Bradbury ranked 49th on my Big Board. His tape was that of an average college OL. He struggled to get movement in the run game. He was fine in pass protection. Against Michigan, he was bench pressed and pushed back multiple times by LB #35. It was jarring. Even in a zone scheme, getting moved back at center against LBs is a red flag for me. If I\\u2019m taking a center in the first round I want Travis Frederick or Ryan Kelly \\u2013 technicians who also have the power to move people. Bradbury was a fine college player in an offense with a lot of quick game reps, especially against Clemson, but I see his lack of strength at the POA as a major flaw. And it\\u2019s not like he\\u2019s Ryan Kelly in terms of technique. Athleticism and intelligence are great qualities, but if you\\u2019re spending the 18th overall pick on a center, he better have more than that. Bradbury doesn\\u2019t. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E2.\\u003C/strong\\u003E \\u003Cstrong\\u003ETitans \\u2013 Jeffrey Simmons \\u2013 3\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have no idea why ESPN handled the Simmons pick the way they did. It was one of the most bizarre NFL Draft segments I\\u2019ve ever seen. And the worst part is I don\\u2019t think they showed ONE SECOND of him playing football. So odd. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u2019t think Simmons\\u2019 film showed the best player in the draft as some said. He was the 23rd ranked player on my board before I knew about his character questions. Injuries factored in slightly for me. He\\u2019s got everything you want in a dominant DL, but there were some really bad stretches on film. He struggled vs double teams against Florida, on one rep stopping his feet and getting driven back literally 7 yards before flailing his arm in a feeble tackle attempt. He\\u2019ll lean too much and get caught out of position. He\\u2019ll stand straight up. There were flashes of brilliance, and if he can make some technique changes to mix with his strength, he can be a factor inside in the NFL. He\\u2019s tough to reach in the run game and makes plays. Really good college player who needs to work that much harder to up his game for the next level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E3.\\u003C/strong\\u003E \\u003Cstrong\\u003EBroncos \\u2013 Noah Fant \\u2013 3\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is one glaring takeaway from Fant\\u2019s film, and I\\u2019m surprised I haven\\u2019t read it anywhere: He doesn\\u2019t break ANY tackles. Breaking tackles isn\\u2019t exactly a hugely important skill for TEs in the NFL, but it speaks to a lack of dominance over his level of competition. As a possession receiver, Fant is fine. He can stretch the field, was money on deep crosses, and is a red zone threat. His skills fall somewhere in the middle on the Ricky Seals-Jones-to-Jordan Reed spectrum. He\\u2019s not a good blocker and I saw him jump for no reason on one catch and drop another in three games. In a passing league, he\\u2019s a valuable TE but he might be one-dimensional. He\\u2019ll be a good to great TE in fantasy by his second year with his ceiling decided by his QB. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI didn\\u2019t love Drew Lock (1) on film. He\\u2019s athletic with good size and a great arm, and played pretty well in the SEC. However, he sees ghosts, makes too many fade-away throws, and is slow to process information. I can see the delay of games in his future. Although he is pretty accurate which is my No. 1 most important trait for QBs. Hmmm.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EPackers \\u2013 See Pick 12 \\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E5.\\u003C/strong\\u003E \\u003Cstrong\\u003EEagles \\u2013 Andre Dillard \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPredicting Andre Dillard\\u2019s career comes down to one question: Can finesse-first work in the NFL? Dillard is smart with great feet. He just may not be physical or nasty enough to be a franchise LT. It\\u2019s also important to remember that while skill positions have to make a tough transition from Air Raid offenses, OL must basically re-learn everything as well. He got whooped at the Senior Bowl by the Texas DE. He has the tools to make the jump but there are more questions than answers here. Jumping over Houston to get Wentz\\u2019s next blindside protector might actually bite the Eagles because Tytus Howard is actually better. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E6.\\u003C/strong\\u003E \\u003Cstrong\\u003ETexans \\u2013 Tytus Howard - 4\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScouting Howard is very simple. He kick-slides well, moves well, and needs to get stronger. He can handle speed. Some OL have quirks where they play better on one side, so I hope that\\u2019s not the case with Howard, because he played RT at Alabama State and the Senior Bowl. He gets into stalemates too much in the run game but he handled everything Auburn threw at him in terms of speed and power rushers and his game translates to the pros in a big way. I think he has more upside than Dillard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECoincidentally, their 5th-rounder, Texas DE Charles Omenihu (3) whooped Andre Dillard at the Senior Bowl and has all the tools of a steal. \\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ERaiders \\u2013 See Pick 4\\u003Cbr/\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E8.\\u003C/strong\\u003E \\u003Cstrong\\u003ERavens \\u2013 Marquise Brown \\u2013 4\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBrown to the Ravens is very interesting. On one hand, he was the No. 8 player on my Big Board. On the other hand, using a first on a WR in an offense that wants to throw less than 20 times a game is head-scratching. I loved Lamar Jackson as a prospect last year, but he\\u2019ll have to make gigantic, unprecedented strides as a passer for Brown to reach his potential. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of the keys to route-running is avoiding contact while still executing your assignment. This is obvious in the form of press coverage at the LOS, and it\\u2019s very easy to evaluate effective press releases. The average football fan might not notice what happens mid-route on secondary releases, which is the move or plan a receiver executes to get off a collision by a defender. The fact that Brown doesn\\u2019t get touched on his secondary or LOS releases epitomizes why I love this player\\u2019s game. Advanced scouting term: he\\u2019s fast. Also, he\\u2019s quick. His deep threat prowess has contributed to two QBs going first overall. He\\u2019s terrific after the catch. He\\u2019s smooth in and out of his breaks and comes downhill on his post curls beautifully. There are two concerns. 1) He gets literally tossed around like a rag doll. And 2) He had three drops against Texas. Evaluating college performance, the three drops were bad and his position coach should grade him negatively. But if you watch the three drops closely, and all of his catches, his hand positioning and coordination is pretty much perfect \\u2013 the CB on Texas made a couple of nice plays and on the deep post, his small hands just couldn\\u2019t squeeze it over his opposite shoulder. His hands were still positioned correctly, which is a pro trait that translates. DeSean Jackson has shown us that thin speedsters can stay healthy, but Brown already struggling with injuries is concerning. If he stays healthy, he\\u2019ll be a star and have a T.Y./DJax career. When a prospect\\u2019s only issue is size, I always take him (Tarik Cohen!).\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ESkins \\u2013 See Pick 15 \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERaiders \\u2013 I told you before, go to 4\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmz7qr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171845.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmz2hg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gpngc\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557142917.0, \"send_replies\": true, \"parent_id\": \"t3_blb203\", \"score\": 1, \"author_fullname\": \"t2_6fxy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pt. 2\\n\\n\\u0026#x200B;\\n\\n**13.** **Dolphins \\u2013 Christian Wilkins \\u2013 2** \\n\\nChristian Wilkins is another example of evaluating pro traits translating rather than college performance. A storied college winner who inspired on and off the field, Wilkins is a tremendous young man with a bright future. However, I think his character and intelligence inflated his stock a little too much. Against Mississippi State he was mostly a ghost, and in other games had long stretches of invisible or even just bad film, with the occasional splash play. He\\u2019s the poster child for my Reverse Planet Theory, which cautions against the allure of quick, penetrating, 3-techs. There are plays on film where his short arms leave him exposed, struggling to post against double teams and getting reached on zone runs. When he has the quickness advantage against low-skilled ACC guards, he looks great as a penetrator, and to be fair his quicks are terrific. But leverage and quicks can only take a short-armed, decently talented 3-Tech so far in the pros. I don\\u2019t think he lives up to his draft slot.\\n\\n \\n\\nAs for the Rosen trade, it wasn\\u2019t awful because they gave up a late 2 to take a shot on talent, but as a vocal Rosen detractor I don\\u2019t think it will help them. Without much talent on the roster, there is a legitimate chance they end up taking a top-5 QB next year and Rosen gets dealt again. There has been a weird fascination with Rosen since last offseason, but I never liked him much as a prospect and gave him a 2 last year. My reasons can be found in last year\\u2019s review. \\n\\n**14.** **Falcons \\u2013 Chris Lindstrom \\u2013 2** \\n\\nThe Falcons had one of the worst defenses in the NFL last year and decided to spend their first two picks on OL. While they\\u2019ll get Keanu Neal and Deion Jones back from injury, it\\u2019s still head-scratching to not address the D early. I understand building the OL BEFORE it becomes an issue, but I don\\u2019t think they made the right pick at No. 14. \\n\\nAfter watching his film, I ranked Lindstrom 44th on my Big Board and noted that he was an athletic guard who didn\\u2019t have enough power to play in anything other than a zone-heavy scheme. He\\u2019ll be fine getting to the second level and staying in front of penetrating 3-techs, and clearly I\\u2019m missing something with him going this high. Staying true to my eval, I expect him to get pushed back routinely by bigger DL in both the run and pass game. I can see inside pressure now. He takes the initial contact at the POA too much. With the right S\\u0026C regimen (he benched 25 reps, not bad), he could get stronger. They did need a guard. I want to trust the Falcons, but with Dexter Lawrence and others on the board I think they made a mistake. \\n\\nI scouted McGary (3) after the draft and I liked his game on film. He did some impressive things in the run game on double-teams against Ohio State. I think he fits better in a gap scheme where he can use his size and power, which makes the Lindstrom pick more head-scratching. We all know his value will be determined mainly by how he holds up against speed rushers at RT. Short arms, limited lateral quickness, and some bad beats by pure speed on film give me pause. I like him better than Lindstrom but he projects as a plus run blocker with struggles vs speed rushers in the passing game. He has the demeanor of a starting NFL OL so I\\u2019ll go with a 3.\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmz2hg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPt. 2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E13.\\u003C/strong\\u003E \\u003Cstrong\\u003EDolphins \\u2013 Christian Wilkins \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChristian Wilkins is another example of evaluating pro traits translating rather than college performance. A storied college winner who inspired on and off the field, Wilkins is a tremendous young man with a bright future. However, I think his character and intelligence inflated his stock a little too much. Against Mississippi State he was mostly a ghost, and in other games had long stretches of invisible or even just bad film, with the occasional splash play. He\\u2019s the poster child for my Reverse Planet Theory, which cautions against the allure of quick, penetrating, 3-techs. There are plays on film where his short arms leave him exposed, struggling to post against double teams and getting reached on zone runs. When he has the quickness advantage against low-skilled ACC guards, he looks great as a penetrator, and to be fair his quicks are terrific. But leverage and quicks can only take a short-armed, decently talented 3-Tech so far in the pros. I don\\u2019t think he lives up to his draft slot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for the Rosen trade, it wasn\\u2019t awful because they gave up a late 2 to take a shot on talent, but as a vocal Rosen detractor I don\\u2019t think it will help them. Without much talent on the roster, there is a legitimate chance they end up taking a top-5 QB next year and Rosen gets dealt again. There has been a weird fascination with Rosen since last offseason, but I never liked him much as a prospect and gave him a 2 last year. My reasons can be found in last year\\u2019s review. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E14.\\u003C/strong\\u003E \\u003Cstrong\\u003EFalcons \\u2013 Chris Lindstrom \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Falcons had one of the worst defenses in the NFL last year and decided to spend their first two picks on OL. While they\\u2019ll get Keanu Neal and Deion Jones back from injury, it\\u2019s still head-scratching to not address the D early. I understand building the OL BEFORE it becomes an issue, but I don\\u2019t think they made the right pick at No. 14. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter watching his film, I ranked Lindstrom 44th on my Big Board and noted that he was an athletic guard who didn\\u2019t have enough power to play in anything other than a zone-heavy scheme. He\\u2019ll be fine getting to the second level and staying in front of penetrating 3-techs, and clearly I\\u2019m missing something with him going this high. Staying true to my eval, I expect him to get pushed back routinely by bigger DL in both the run and pass game. I can see inside pressure now. He takes the initial contact at the POA too much. With the right S\\u0026amp;C regimen (he benched 25 reps, not bad), he could get stronger. They did need a guard. I want to trust the Falcons, but with Dexter Lawrence and others on the board I think they made a mistake. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI scouted McGary (3) after the draft and I liked his game on film. He did some impressive things in the run game on double-teams against Ohio State. I think he fits better in a gap scheme where he can use his size and power, which makes the Lindstrom pick more head-scratching. We all know his value will be determined mainly by how he holds up against speed rushers at RT. Short arms, limited lateral quickness, and some bad beats by pure speed on film give me pause. I like him better than Lindstrom but he projects as a plus run blocker with struggles vs speed rushers in the passing game. He has the demeanor of a starting NFL OL so I\\u2019ll go with a 3.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmz2hg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171717.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bl9iu1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmpp7m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"XARFIGHTER\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557132732.0, \"send_replies\": true, \"parent_id\": \"t3_bl9iu1\", \"score\": 1, \"author_fullname\": \"t2_9515o\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Am I missing something here? \\n\\n\\u0026#x200B;\\n\\nBy simply removing this box =\\n\\n**Advanced** remains at 1 input from {X/A} to {start}\\n\\n**Edit lineup** goes from 2 inputs {down\\u003EX/A} to no input {already there}\\n\\nAnd **Go back** goes from 3 inputs {down\\u003Edown\\u003EX/A} to 1 input {O/B}\\n\\n\\u0026#x200B;\\n\\nI can't attribute any functional value to this box besides either just unnecessarily delaying the player, or the potential psychological effect it has by prompting the player and essentially saying \\\"come at me brah?\\\" to tilted players. Maybe that's a stretch but surely there must be a point to having this menu? \\n\\n\\u0026#x200B;\\n\\nI'm simply curious as to why developers are paid to spend time on things like this that seem to detract from user experience over simple additions like comprehensive search filters or logical and straightforward menus - something that would likely save thousands of collective hours currently wasted scrolling and tapping.\", \"link_title\": \"test1234\", \"author_flair_css_class\": null, \"name\": \"t1_emmpp7m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAm I missing something here? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy simply removing this box =\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAdvanced\\u003C/strong\\u003E remains at 1 input from {X/A} to {start}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit lineup\\u003C/strong\\u003E goes from 2 inputs {down\\u0026gt;X/A} to no input {already there}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd \\u003Cstrong\\u003EGo back\\u003C/strong\\u003E goes from 3 inputs {down\\u0026gt;down\\u0026gt;X/A} to 1 input {O/B}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can\\u0026#39;t attribute any functional value to this box besides either just unnecessarily delaying the player, or the potential psychological effect it has by prompting the player and essentially saying \\u0026quot;come at me brah?\\u0026quot; to tilted players. Maybe that\\u0026#39;s a stretch but surely there must be a point to having this menu? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m simply curious as to why developers are paid to spend time on things like this that seem to detract from user experience over simple additions like comprehensive search filters or logical and straightforward menus - something that would likely save thousands of collective hours currently wasted scrolling and tapping.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bl9iu1/test1234/emmpp7m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bl9iu1/test1234/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/pzt3f8hqyjw21.png\", \"created\": 1557161532.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emjwxrc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557053695.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"# Custom Content\\n\\n## Disclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\n\\n## Names with u/ are from reddit. Names without are probably from the overwatch forum.\\n\\n## If you like a mode, go to the original post and like or comment. Let them know you appreciate it.\\n\\n## If you want to add a mode to the list, just PM me and I'll add it eventually.\\n\\n## Fun Modes\\n\\n* RGH0D - High Speed: FFA - u/rbnsky\\n* SF1R2 - High Speed Gun Game - u/rbnsky\\n* K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n* 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n* RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n* EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n* N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n* 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n* M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n* T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n* NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n* R4DWM - BloodBorne in Overwatch - u/Elodeona\\n* EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n* E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n* FHQZ4 - Bridgette Pong - u/AJ_Black\\n* KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n* 53J3R - Shooters Vs Stabbers - Lilsis\\n* FQ5N8 - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n* RY95K - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray\\n* BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n* BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n* QH5SP - PVE Horde Mode - u/Jechto\\n* 5KCP4 - Dva Eject into Random Ult - u/qbbftw \\\\- ORIGINAL IDEA FROM: u/Woolin\\n* YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n* 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n* 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n* MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n* SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n* VJCT2 - Chase the Snowmen - u/andygmb\\n* 6PC67 - Take Hero of Kills - u/CrenderMutant\\n\\n## Training Modes\\n\\n* RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n* CPFKM - Advanced Training Mode - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n\\n* QKAAM - Placeable Cameras - u/ItsDeltin\\n* ZW1PY - Scoreboard - u/Paf13\\n* 9EKZB - Scoreboard - u/caldoran2\\n* 6WXRW - Navi - u/andygmb \\\\- u/Lymbow\\n* WV5HH - Bunny Hop - u/TyzoneLyraNature\\n* QESP4 - Walls - u/Zezombye\\n* CQ00S - Elemental Aspects - u/poststakhanovist\\n\\n## Hero Ideas\\n\\n* XJZB1 - Orisa AoE Push - AlexEptit\\n* H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n* BE2J7 - Portal Gun - u/Lymbow \\\\- u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emjwxrc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECustom Content\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EDisclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ENames with u/ are from reddit. Names without are probably from the overwatch forum.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EIf you like a mode, go to the original post and like or comment. Let them know you appreciate it.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EIf you want to add a mode to the list, just PM me and I\\u0026#39;ll add it eventually.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EFQ5N8 - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERY95K - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECPFKM - Advanced Training Mode - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emjwxrc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557082495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1556967649.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emh4ksb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556965703.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## My Take on Workshop Improvements\\n\\n## Coding Improvements need to happen\\n\\n## Before adding all sorts of new methods and helpful features, it is probably best if the Workshop becomes easier to use.\\n\\n* If it is a power-user tool, give power-user style tools.\\n* If it is for the general public, have better error-handling and bug commenting.\\n* If it is for both, give all the above. Please.\\n\\n## [Easy](#s) Coding fixes:\\n\\n* Quick saving - Just not having to go to a seperate screen to save the project\\n* Backing-up files while saving - Preventing loss of data\\n* Adding else statements\\n* Displaying error logs - Such as, your code is too big, remove some rules before saving\\n\\n## Hard but [Worthwhile](#s) Coding fixes:\\n\\n* Adding the ability to upload json/xml or some sort of file into the editor and have the rules generated there - This would allow fans to create tools to generate this json/xml, meaning you won't need to make an IDE, fans will probably make their own\\n* Adding Functions\\n\\n### A New Game entirely should probably be next\\n##### This sounds crazy, but hear me out. \\n##### Imagine OverWorkshop, a seperate game that is just Overwatch Workshop with extended mechanics\\n- If a separate game, they can optimize with the engine to make it work better for custom projects without worrying about messing with qp and comp. \\n- If a separate game, they can monetize differently. They could work directly with creators, ask people to pay for access to this new game, use a monthly subscription, etc.\\n- If monetized differently, Blizzard has an incentive to help the fanbase as much as possible. Currently, Workshop will not directly make Blizzard money. Sure, people may come back to the game, but how many of those people buy loot boxes? Or how many new people will buy the game?\\n- If a separate game, they could build the game with lots of storage for custom rule-sets.\\n- If a separate game, they can add limited time access skins/emotes/maps without directly affecting their core audience who are following the normal Overwatch Loot Box monetization method. \\n- If a separate game, they can design from the ground up, instead of extending original functionality. This gives a lot more flexibility.\\n- If a separate game, they can draw in a wider market. Currently, only people who like Overwatch and like Content Creation will use Workshop. With enough of a spin, Blizzard could get way more customers with: OverWorkshop, build your own games using Overwatches mechanics as a basis.\\n- If a separate game, they can release the source code to be modded. At least, if they design it right.\\n##### What I'm saying is: If a separate game, they can create a better experience, and they can earn more money. Win-win. We get something awesome, they get money.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emh4ksb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EMy Take on Workshop Improvements\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ECoding Improvements need to happen\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EBefore adding all sorts of new methods and helpful features, it is probably best if the Workshop becomes easier to use.\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf it is a power-user tool, give power-user style tools.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf it is for the general public, have better error-handling and bug commenting.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf it is for both, give all the above. Please.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\"\\u003EEasy\\u003C/a\\u003E Coding fixes:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQuick saving - Just not having to go to a seperate screen to save the project\\u003C/li\\u003E\\n\\u003Cli\\u003EBacking-up files while saving - Preventing loss of data\\u003C/li\\u003E\\n\\u003Cli\\u003EAdding else statements\\u003C/li\\u003E\\n\\u003Cli\\u003EDisplaying error logs - Such as, your code is too big, remove some rules before saving\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHard but \\u003Ca href=\\\"#s\\\"\\u003EWorthwhile\\u003C/a\\u003E Coding fixes:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAdding the ability to upload json/xml or some sort of file into the editor and have the rules generated there - This would allow fans to create tools to generate this json/xml, meaning you won\\u0026#39;t need to make an IDE, fans will probably make their own\\u003C/li\\u003E\\n\\u003Cli\\u003EAdding Functions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EA New Game entirely should probably be next\\u003C/h3\\u003E\\n\\n\\u003Ch5\\u003EThis sounds crazy, but hear me out.\\u003C/h5\\u003E\\n\\n\\u003Ch5\\u003EImagine OverWorkshop, a seperate game that is just Overwatch Workshop with extended mechanics\\u003C/h5\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf a separate game, they can optimize with the engine to make it work better for custom projects without worrying about messing with qp and comp. \\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can monetize differently. They could work directly with creators, ask people to pay for access to this new game, use a monthly subscription, etc.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf monetized differently, Blizzard has an incentive to help the fanbase as much as possible. Currently, Workshop will not directly make Blizzard money. Sure, people may come back to the game, but how many of those people buy loot boxes? Or how many new people will buy the game?\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they could build the game with lots of storage for custom rule-sets.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can add limited time access skins/emotes/maps without directly affecting their core audience who are following the normal Overwatch Loot Box monetization method. \\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can design from the ground up, instead of extending original functionality. This gives a lot more flexibility.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can draw in a wider market. Currently, only people who like Overwatch and like Content Creation will use Workshop. With enough of a spin, Blizzard could get way more customers with: OverWorkshop, build your own games using Overwatches mechanics as a basis.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can release the source code to be modded. At least, if they design it right.\\n##### What I\\u0026#39;m saying is: If a separate game, they can create a better experience, and they can earn more money. Win-win. We get something awesome, they get money.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emh4ksb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556994503.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emh0mkm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556958465.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Future Features People Want (Compiled from Blizzard forums)\\n#### Ease of Coding\\n- [Text-based Editor/IDE/Ability to Import File](#s \\\"Anything for more coding speed\\\")\\n- Conditionals\\n- Functions\\n- Hotkey Saves/Auto Saves\\n- Hotkey Undo\\n- Events/Statuses for every [possible thing](#s \\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\")\\n- [Classes/Object Types/Enums](#s \\\"Bad class objects hurt\\\")\\n- [Multiple-Script Compilation](#s \\\"I make a piece, you make a piece, we compile the codes together\\\")\\n- Disable/Enable Rule options\\n- Custom Strings/Variable Names\\n- Debugger with Game Running\\n\\t\\n####Importation of art assets\\n- Custom Skins\\n- Custom Emotes\\n- Custom Hero Models\\n- Custom Animations\\n\\t\\n#### Bigger Creations\\n- Rule Limit Increase\\n- Effect Increase\\n- More Presets Saves\\n\\n#### Recognition of Good Modes\\n- Best-of-Workshop Arcade Mode\\n- Popularity contests between [similar game-modes](#s \\\"See which gun game people like best\\\")\\n\\t\\n#### Map Editor\\n- Ability to create gameplay zones\\n- Change Lighting\\n- Custom Maps\\n\\t\\n#### Hero Editor\\n- Being able to give [one hero's ability to another hero](#s \\\"Tracer with Piledriver\\\")\\n- More Control over [Effects](#s \\\"On-destruct, custom IDs, etc\\\")\\n- Control over [hero-specific variables](#s \\\"Number of Symmetra Turrets, headshot dmg, passives\\\")\\n- Being able to use Arcade Enemies/All Models\\n- Custom Cooldowns/Modify Cooldowns\\n- Control over animations\\n- Control over fire/POTG worthy actions\\n\\t\\t\\n#### Object Editor\\n- Deployables\\n- Weapon Qualities\\n- Collisions\\n- Objectives/Payloads\\n- Access to Old Assets/Abilities\\n- Custom Effect Durations\\n- Custom Conditions\\n- Custom Physics Engine\\n\\t\\n#### AI Editor\\n- PVE Mode Access\\n- Ease of Making Bots\\n- Bots in any Mode\\n\\t\\t\\n#### Gameplay Editor\\n- Spawn Points\\n- Switch Teams\\n- Team Size\\n\\t\\n####Hosting Games\\n- Being able to host Workshop Games locally\\n\\t\\n#### Workshop-Specific Assets\\n- Extra Animations\\n- More effects\\n- [Non-Graphics intensive testing map](#s \\\"White Room\\\")\\n- [Arena map](#s \\\"Just a square\\\")\\n\\t\\t\\n#### More Recognition of Dan and Keith\\n\\t\\n## Common Complaints\\n#### It's not a Map Editor.\\n- No, it isn't. \\n\\t\\n#### It's not a Ranked Fix.\\n- No, it isn't.\\n\\t\\t\\n#### Lier1, you made me sound stupid in the complaint section.\\n- Correct.\\n\\t\\n#### Lier1, you don't care about my complaints because I'm not a filthy casual.\\n- Correct.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emh0mkm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFuture Features People Want (Compiled from Blizzard forums)\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EEase of Coding\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Anything for more coding speed\\\"\\u003EText-based Editor/IDE/Ability to Import File\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EConditionals\\u003C/li\\u003E\\n\\u003Cli\\u003EFunctions\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Saves/Auto Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Undo\\u003C/li\\u003E\\n\\u003Cli\\u003EEvents/Statuses for every \\u003Ca href=\\\"#s\\\" title=\\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\"\\u003Epossible thing\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Bad class objects hurt\\\"\\u003EClasses/Object Types/Enums\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"I make a piece, you make a piece, we compile the codes together\\\"\\u003EMultiple-Script Compilation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDisable/Enable Rule options\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Strings/Variable Names\\u003C/li\\u003E\\n\\u003Cli\\u003EDebugger with Game Running\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EImportation of art assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECustom Skins\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Emotes\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Hero Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Animations\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EBigger Creations\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERule Limit Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EEffect Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Presets Saves\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ERecognition of Good Modes\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBest-of-Workshop Arcade Mode\\u003C/li\\u003E\\n\\u003Cli\\u003EPopularity contests between \\u003Ca href=\\\"#s\\\" title=\\\"See which gun game people like best\\\"\\u003Esimilar game-modes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMap Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAbility to create gameplay zones\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Lighting\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Maps\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHero Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to give \\u003Ca href=\\\"#s\\\" title=\\\"Tracer with Piledriver\\\"\\u003Eone hero\\u0026#39;s ability to another hero\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Control over \\u003Ca href=\\\"#s\\\" title=\\\"On-destruct, custom IDs, etc\\\"\\u003EEffects\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over \\u003Ca href=\\\"#s\\\" title=\\\"Number of Symmetra Turrets, headshot dmg, passives\\\"\\u003Ehero-specific variables\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBeing able to use Arcade Enemies/All Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Cooldowns/Modify Cooldowns\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over animations\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over fire/POTG worthy actions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EObject Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDeployables\\u003C/li\\u003E\\n\\u003Cli\\u003EWeapon Qualities\\u003C/li\\u003E\\n\\u003Cli\\u003ECollisions\\u003C/li\\u003E\\n\\u003Cli\\u003EObjectives/Payloads\\u003C/li\\u003E\\n\\u003Cli\\u003EAccess to Old Assets/Abilities\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Effect Durations\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Conditions\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Physics Engine\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EAI Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPVE Mode Access\\u003C/li\\u003E\\n\\u003Cli\\u003EEase of Making Bots\\u003C/li\\u003E\\n\\u003Cli\\u003EBots in any Mode\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EGameplay Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESpawn Points\\u003C/li\\u003E\\n\\u003Cli\\u003ESwitch Teams\\u003C/li\\u003E\\n\\u003Cli\\u003ETeam Size\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHosting Games\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to host Workshop Games locally\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWorkshop-Specific Assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EExtra Animations\\u003C/li\\u003E\\n\\u003Cli\\u003EMore effects\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"White Room\\\"\\u003ENon-Graphics intensive testing map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a square\\\"\\u003EArena map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMore Recognition of Dan and Keith\\u003C/h4\\u003E\\n\\n\\u003Ch2\\u003ECommon Complaints\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Map Editor.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Ranked Fix.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you made me sound stupid in the complaint section.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you don\\u0026#39;t care about my complaints because I\\u0026#39;m not a filthy casual.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emh0mkm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556987265.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emgwjcc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556951769.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Future Features People Want (Compiled from Blizzard forums)\\n####*Disclaimer*: This isn't everything, but it's a good high-level sampling. I think. Comment with more.\\n\\tEase of Coding\\n\\t\\t[Text-based Editor/IDE/Ability to Import File](#s \\\"Anything for more coding speed\\\")\\n\\t\\tConditionals\\n\\t\\tFunctions\\n\\t\\tHotkey Saves/Auto Saves\\n\\t\\tHotkey Undo\\n\\t\\tEvents/Statuses for every [possible thing](#s \\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\")\\n\\t\\t[Classes/Object Types/Enums](#s \\\"Bad class objects hurt\\\")\\n\\t\\t[Multiple-Script Compilation](#s \\\"I make a piece, you make a piece, we compile the codes together\\\")\\n\\t\\tDisable/Enable Rule options\\n\\t\\tCustom Strings/Variable Names\\n\\t\\tDebugger with Game Running\\n\\t\\n\\tImporting art assets\\n\\t\\tCustom Skins\\n\\t\\tCustom Emotes\\n\\t\\tCustom Hero Models\\n\\t\\tCustom Animations\\n\\t\\n\\tBigger Creations\\n\\t\\tRule Limit Increase\\n\\t\\tEffect Increase\\n\\t\\tMore Presets Saves\\n\\t\\n\\tRecognition of Good Modes\\n\\t\\tBest-of-Workshop Arcade Mode\\n\\t\\tPopularity contests between [similar game-modes](#s \\\"See which gun game people like best\\\")\\n\\t\\n\\tMap Editor\\n\\t\\tAbility to create gameplay zones\\n\\t\\tChange Lighting\\n\\t\\tCustom Maps\\n\\t\\n\\tHero Editor\\n\\t\\tBeing able to give [one hero's ability to another hero](#s \\\"Tracer with Piledriver\\\")\\n\\t\\tMore Control over [Effects](#s \\\"On-destruct, custom IDs, etc\\\")\\n\\t\\tControl over [hero-specific variables](#s \\\"Number of Symmetra Turrets, headshot dmg, passives\\\")\\n\\t\\tBeing able to use Arcade Enemies/All Models\\n\\t\\tCustom Cooldowns/Modify Cooldowns\\n\\t\\tControl over animations\\n\\t\\tControl over fire/POTG worthy actions\\n\\t\\t\\n\\tObject Editor\\n\\t\\tDeployables\\n\\t\\tWeapon Qualities\\n\\t\\tCollisions\\n\\t\\tObjectives/Payloads\\n\\t\\tAccess to Old Assets/Abilities\\n\\t\\tCustom Effect Durations\\n\\t\\tCustom Conditions\\n\\t\\tCustom Physics Engine\\n\\t\\n\\tAI Editor\\n\\t\\tPVE Mode Access\\n\\t\\tEase of Making Bots\\n\\t\\tBots in any Mode\\n\\t\\t\\n\\tGameplay Editor\\n\\t\\tSpawn Points\\n\\t\\tSwitch Teams\\n\\t\\tTeam Size\\n\\t\\n\\tHosting Games\\n\\t\\tBeing able to host Workshop Games locally\\n\\t\\n\\tWorkshop-Specific Assets\\n\\t\\tExtra Animations\\n\\t\\tMore effects\\n\\t\\t[Non-Graphics intensive testing map](#s \\\"White Room\\\")\\n\\t\\t[Arena map](#s \\\"Just a square\\\")\\n\\t\\t\\n\\tMore Recognition of Dan and Keith\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emgwjcc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFuture Features People Want (Compiled from Blizzard forums)\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003E\\u003Cem\\u003EDisclaimer\\u003C/em\\u003E: This isn\\u0026#39;t everything, but it\\u0026#39;s a good high-level sampling. I think. Comment with more.\\u003C/h4\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EEase of Coding\\n [Text-based Editor/IDE/Ability to Import File](#s \\u0026quot;Anything for more coding speed\\u0026quot;)\\n Conditionals\\n Functions\\n Hotkey Saves/Auto Saves\\n Hotkey Undo\\n Events/Statuses for every [possible thing](#s \\u0026quot;Melee kills, dva in/out of mech, on hollywood map, etc.\\u0026quot;)\\n [Classes/Object Types/Enums](#s \\u0026quot;Bad class objects hurt\\u0026quot;)\\n [Multiple-Script Compilation](#s \\u0026quot;I make a piece, you make a piece, we compile the codes together\\u0026quot;)\\n Disable/Enable Rule options\\n Custom Strings/Variable Names\\n Debugger with Game Running\\n\\nImporting art assets\\n Custom Skins\\n Custom Emotes\\n Custom Hero Models\\n Custom Animations\\n\\nBigger Creations\\n Rule Limit Increase\\n Effect Increase\\n More Presets Saves\\n\\nRecognition of Good Modes\\n Best-of-Workshop Arcade Mode\\n Popularity contests between [similar game-modes](#s \\u0026quot;See which gun game people like best\\u0026quot;)\\n\\nMap Editor\\n Ability to create gameplay zones\\n Change Lighting\\n Custom Maps\\n\\nHero Editor\\n Being able to give [one hero\\u0026#39;s ability to another hero](#s \\u0026quot;Tracer with Piledriver\\u0026quot;)\\n More Control over [Effects](#s \\u0026quot;On-destruct, custom IDs, etc\\u0026quot;)\\n Control over [hero-specific variables](#s \\u0026quot;Number of Symmetra Turrets, headshot dmg, passives\\u0026quot;)\\n Being able to use Arcade Enemies/All Models\\n Custom Cooldowns/Modify Cooldowns\\n Control over animations\\n Control over fire/POTG worthy actions\\n\\nObject Editor\\n Deployables\\n Weapon Qualities\\n Collisions\\n Objectives/Payloads\\n Access to Old Assets/Abilities\\n Custom Effect Durations\\n Custom Conditions\\n Custom Physics Engine\\n\\nAI Editor\\n PVE Mode Access\\n Ease of Making Bots\\n Bots in any Mode\\n\\nGameplay Editor\\n Spawn Points\\n Switch Teams\\n Team Size\\n\\nHosting Games\\n Being able to host Workshop Games locally\\n\\nWorkshop-Specific Assets\\n Extra Animations\\n More effects\\n [Non-Graphics intensive testing map](#s \\u0026quot;White Room\\u0026quot;)\\n [Arena map](#s \\u0026quot;Just a square\\u0026quot;)\\n\\nMore Recognition of Dan and Keith\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emgwjcc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556980569.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emgwhbf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556951688.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Common Complaints\\n#### It's not a Map Editor.\\n- No, it isn't. \\n\\t\\n#### It's not a Ranked Fix.\\n- No, it isn't.\\n\\t\\t\\n#### Lier1, you made me sound stupid in the complaint section.\\n- Correct.\\n\\t\\n#### Lier1, you don't care about my complaints because I'm not a filthy casual.\\n- Correct.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emgwhbf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003ECommon Complaints\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Map Editor.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Ranked Fix.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you made me sound stupid in the complaint section.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you don\\u0026#39;t care about my complaints because I\\u0026#39;m not a filthy casual.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emgwhbf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556980488.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1556951205.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emgv059\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556949805.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#One-Stop Workshop\\n\\n## Workshop FAQ\\n#### What is Overwatch Workshop?\\n- In layman's terms, its just [additional](#s \\\"Many, many additional\\\") features for designing custom games, using more drop-down menus.\\n\\n#### What is the One-Stop Workshop?\\n- \\tThis is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\n-\\tI call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\n\\n#### What is an FAQ?\\n-\\tFrantically Answering Questions!\\n\\n#### How to access the Workshop?\\n-\\tMake sure you have the PTR installed.\\n- \\tPlay \\u003E Game Browser \\u003E Create \\u003E Settings \\u003E Workshop\\n\\n#### What resources does Workshop give us?\\n-\\tCreation of Effects\\n-\\tConditional Changes to Rules\\n-\\tAdding HUD elements\\n-\\tAnd More\\n\\n#### Can you test heroes with workshop?\\n- \\tYesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\n- \\tHowever, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\n-\\tBut, don't fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\n\\n#### Is it a map editor?\\n- \\tNo. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\n\\n#### Do I need to know how to code to use it? Can normal people use it?\\n- \\tNo and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\n\\n#### What presets does it have for me to build off of?\\n- \\tMolten Floor - You set on fire while touching the floor.\\n- \\tOne Ultimate - Elimination mode where you start with your Ultimate, but can't get Ultimate charge.\\n- \\tHide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\n- \\tDouble Jump - Everyone can double jump.\\n- \\tFire Dome - A dome slowly shrinks, limiting the play space. (*Cough* Battle Royale *Cough*)\\n- \\tBalanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\n- \\tMirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\n- \\tZombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\n- \\tHero Gauntlet - Gun Game\\n\\n#### Is it on Console?\\n-\\tNot yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\n-\\tConsole access is part of why there are drop-down menus as the scripting language.\\n\\n#### Who built this?\\n-\\tKeith and Dan, our two buddy devs, in their free time. They have now been labeled [Hero 31 and Hero 32](#s \\\"Dan is 31, fight me\\\") by the reddit community.\\n\\n#### Is this going to get updates?\\n- It has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\n\\n#### Is there a limit to sizes of script/number of objects.\\n- Yes. 64 icons/effects, and some limit to the size of the script. \\n- However, the devs are working to increase these numbers.\\n\\t\\n#Useful Links\\n## Code Storage Sites\\nhttps://dutchdemons.com - u/Marinosbitter\\n\\nhttps://overwatchcustom.games - u/Thriver\\n\\nhttps://overwatchmodding.com/ - u/xSailboats\\n\\t\\n## Discord Channels\\n[OW Scripting](https://discord.gg/9pc4yyE)\\n\\n[Overwatch Workshop](https://discord.gg/qa9vR94)\\n\\n[Elo Hell Workshops](https://discord.gg/U5ARg2Fs)\\n\\n## Youtube Channels\\n#### Mode Creation Help:\\n[SamstaTV](https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g)\\n\\n## Miscellaneous Sites/Posts\\n[List of Flat Areas with few Obstacles](https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/) - u/Zezombye\\n\\n[Workshop Syntax \\u0026 Script Database](https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92) - WyomingMyst\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emgv059\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EOne-Stop Workshop\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EWorkshop FAQ\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EWhat is Overwatch Workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E In layman\\u0026#39;s terms, its just \\u003Ca href=\\\"#s\\\" title=\\\"Many, many additional\\\"\\u003Eadditional\\u003C/a\\u003E features for designing custom games, using more drop-down menus.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat is the One-Stop Workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E This is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\u003C/li\\u003E\\n\\u003Cli\\u003E I call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat is an FAQ?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Frantically Answering Questions!\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHow to access the Workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Make sure you have the PTR installed.\\u003C/li\\u003E\\n\\u003Cli\\u003E Play \\u0026gt; Game Browser \\u0026gt; Create \\u0026gt; Settings \\u0026gt; Workshop\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat resources does Workshop give us?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Creation of Effects\\u003C/li\\u003E\\n\\u003Cli\\u003E Conditional Changes to Rules\\u003C/li\\u003E\\n\\u003Cli\\u003E Adding HUD elements\\u003C/li\\u003E\\n\\u003Cli\\u003E And More\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ECan you test heroes with workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Yesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\u003C/li\\u003E\\n\\u003Cli\\u003E However, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\u003C/li\\u003E\\n\\u003Cli\\u003E But, don\\u0026#39;t fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs it a map editor?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EDo I need to know how to code to use it? Can normal people use it?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat presets does it have for me to build off of?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Molten Floor - You set on fire while touching the floor.\\u003C/li\\u003E\\n\\u003Cli\\u003E One Ultimate - Elimination mode where you start with your Ultimate, but can\\u0026#39;t get Ultimate charge.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\u003C/li\\u003E\\n\\u003Cli\\u003E Double Jump - Everyone can double jump.\\u003C/li\\u003E\\n\\u003Cli\\u003E Fire Dome - A dome slowly shrinks, limiting the play space. (\\u003Cem\\u003ECough\\u003C/em\\u003E Battle Royale \\u003Cem\\u003ECough\\u003C/em\\u003E)\\u003C/li\\u003E\\n\\u003Cli\\u003E Balanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\u003C/li\\u003E\\n\\u003Cli\\u003E Mirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\u003C/li\\u003E\\n\\u003Cli\\u003E Zombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hero Gauntlet - Gun Game\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs it on Console?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Not yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\u003C/li\\u003E\\n\\u003Cli\\u003E Console access is part of why there are drop-down menus as the scripting language.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWho built this?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Keith and Dan, our two buddy devs, in their free time. They have now been labeled \\u003Ca href=\\\"#s\\\" title=\\\"Dan is 31, fight me\\\"\\u003EHero 31 and Hero 32\\u003C/a\\u003E by the reddit community.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs this going to get updates?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs there a limit to sizes of script/number of objects.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYes. 64 icons/effects, and some limit to the size of the script. \\u003C/li\\u003E\\n\\u003Cli\\u003EHowever, the devs are working to increase these numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EUseful Links\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003ECode Storage Sites\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://dutchdemons.com\\\"\\u003Ehttps://dutchdemons.com\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Marinosbitter\\\"\\u003Eu/Marinosbitter\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchcustom.games\\\"\\u003Ehttps://overwatchcustom.games\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Thriver\\\"\\u003Eu/Thriver\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchmodding.com/\\\"\\u003Ehttps://overwatchmodding.com/\\u003C/a\\u003E - \\u003Ca href=\\\"/u/xSailboats\\\"\\u003Eu/xSailboats\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EDiscord Channels\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/9pc4yyE\\\"\\u003EOW Scripting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/qa9vR94\\\"\\u003EOverwatch Workshop\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/U5ARg2Fs\\\"\\u003EElo Hell Workshops\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EYoutube Channels\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EMode Creation Help:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g\\\"\\u003ESamstaTV\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EMiscellaneous Sites/Posts\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/\\\"\\u003EList of Flat Areas with few Obstacles\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92\\\"\\u003EWorkshop Syntax \\u0026amp; Script Database\\u003C/a\\u003E - WyomingMyst\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emgv059/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556978605.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkb0kl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emg7uhl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MineSweeper2048\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556927588.0, \"send_replies\": true, \"parent_id\": \"t3_bkb0kl\", \"score\": 1, \"author_fullname\": \"t2_1a5b92pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"It's a really cool game, see if you can add in different attacks or improve the punch\", \"link_title\": \"My first attempt at making a game in Godot! feedback appreciated and link to the game below.\", \"author_flair_css_class\": null, \"name\": \"t1_emg7uhl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s a really cool game, see if you can add in different attacks or improve the punch\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/emg7uhl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/\", \"report_reasons\": null, \"link_author\": \"raikkhan\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/6wliprr531w21\", \"created\": 1556956388.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkdn1j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emfvztp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Interlake_Olympia\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1556918417.0, \"send_replies\": true, \"parent_id\": \"t3_bkdn1j\", \"score\": 1, \"author_fullname\": \"t2_9gwmh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"# Spurs 2019-2020 Salaries\\n\\n|*Player*|*Position*|*Salary*|*Age*|\\n|:-|:-|:-|:-|\\n|DeMar DeRozan|G|$27,739,975|30|\\n|LaMarcus Aldridge|F|$26,000,000|34|\\n|Patty Mills|G|$12,428,571|31|\\n|Davis Bertans|F|$7,000,000|26|\\n|Marco Belinelli|G|$5,846,154|33|\\n|Jakob Poeltl|C|$3,754,886|23|\\n|Bryn Forbes|G|$2,875,000|26|\\n|Lonnie Walker IV|G|$2,760,480|20|\\n|Dejounte Murray|G|$2,321,735|23|\\n|Derrick White|G|$1,948,080|25|\\n|Chimezie Metu|F|$1,416,852|22|\\n|**TOTAL:**||**$94,091,733**||\\n\\n# Dead Cap\\n\\n|*Player*|*Salary*|\\n|:-|:-|\\n|Pau Gasol|$5,075,000|\\n|**TOTAL:**|**$5,075,000**|\\n\\n# Cap Holds\\n\\n|*Player*|*Age*|*Amount*|*Rights*|\\n|:-|:-|:-|:-|\\n|Rudy Gay|33|$13,113,360|Early Bird (max raise of 175% over 2019 salary)|\\n|Dante Cunningham|32|$2,984,400|Non Bird (max raise of 120% over 2019 salary)|\\n|Quincy Pondexter|31|$1,618,486|Non Bird (max raise of 120% over 2019 salary)|\\n|Donatas Motiejunas|29|$1,618,486|Non Bird (max raise of 120% over 2019 salary)|\\n|\\\\*19th Overall Pick, 2019 Draft|$2,238,700|Rookie Deal||\\n|\\\\*29th Overall Pick, 2019 Draft|$1,623,300|Rookie Deal||\\n|**TOTAL:**||**$23,196,732**||\\n\\n# 2019 First Round Picks\\n\\n|*Pick*|*100% Rookie Scale Amount*|\\n|:-|:-|\\n|19th Overall Pick|$2,238,700|\\n|29th Overall Pick|$1,623,300|\\n|**TOTAL:**|**$3,862,000**|\\n\\n# Totals\\n\\n|Description|Amount|\\n|:-|:-|\\n|NBA Luxury Tax Threshold|$132,000,000|\\n|NBA Salary Cap|$109,000,000|\\n|Spurs Total Taxable Salaries (Team Salary+Dead Cap)|$99,166,733|\\n|Spurs Total Cap Allocations (Team Salary+Dead Cap+Cap Holds)|$122,363,465|\\n|Spurs Actual Cap Space|\\\\-$14,220,608|\\n|Spurs Max Possible Cap Space (No Draft Picks, Renounce Cap Holds)|$8,976,124|\\n|**Spurs Likely Cap Space (Including Draft Picks, Renounce Cap Holds)**|**$5,971,267**|\", \"link_title\": \"Spurs 2019-20 Salary Cap Outlook\", \"author_flair_css_class\": null, \"name\": \"t1_emfvztp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ESpurs 2019-2020 Salaries\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPlayer\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPosition\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003ESalary\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EAge\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDeMar DeRozan\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$27,739,975\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ELaMarcus Aldridge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$26,000,000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E34\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPatty Mills\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$12,428,571\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E31\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDavis Bertans\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$7,000,000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMarco Belinelli\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$5,846,154\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E33\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJakob Poeltl\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$3,754,886\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBryn Forbes\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,875,000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ELonnie Walker IV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,760,480\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDejounte Murray\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,321,735\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDerrick White\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,948,080\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EChimezie Metu\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,416,852\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E22\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$94,091,733\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EDead Cap\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPlayer\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003ESalary\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPau Gasol\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$5,075,000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$5,075,000\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ECap Holds\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPlayer\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EAge\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EAmount\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003ERights\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERudy Gay\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$13,113,360\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEarly Bird (max raise of 175% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDante Cunningham\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,984,400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon Bird (max raise of 120% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EQuincy Pondexter\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,618,486\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon Bird (max raise of 120% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDonatas Motiejunas\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,618,486\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon Bird (max raise of 120% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E*19th Overall Pick, 2019 Draft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,238,700\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERookie Deal\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E*29th Overall Pick, 2019 Draft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,623,300\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERookie Deal\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$23,196,732\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003E2019 First Round Picks\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPick\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003E100% Rookie Scale Amount\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19th Overall Pick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,238,700\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E29th Overall Pick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,623,300\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$3,862,000\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ETotals\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAmount\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENBA Luxury Tax Threshold\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$132,000,000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENBA Salary Cap\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$109,000,000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Total Taxable Salaries (Team Salary+Dead Cap)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$99,166,733\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Total Cap Allocations (Team Salary+Dead Cap+Cap Holds)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$122,363,465\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Actual Cap Space\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-$14,220,608\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Max Possible Cap Space (No Draft Picks, Renounce Cap Holds)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$8,976,124\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ESpurs Likely Cap Space (Including Draft Picks, Renounce Cap Holds)\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$5,971,267\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkdn1j/spurs_201920_salary_cap_outlook/emfvztp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkdn1j/spurs_201920_salary_cap_outlook/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bkdn1j/spurs_201920_salary_cap_outlook/\", \"created\": 1556947217.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkb0kl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emfbqr2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"raikkhan\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556904863.0, \"send_replies\": true, \"parent_id\": \"t3_bkb0kl\", \"score\": 2, \"author_fullname\": \"t2_11ekhc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"ghvhgv\", \"link_title\": \"My first attempt at making a game in Godot! feedback appreciated and link to the game below.\", \"author_flair_css_class\": null, \"name\": \"t1_emfbqr2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eghvhgv\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/emfbqr2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/\", \"report_reasons\": null, \"link_author\": \"raikkhan\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/6wliprr531w21\", \"created\": 1556933663.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1556951066.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emcwx0i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556836326.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**[TLDR:](#s \\\"Too Logical, Died Reading\\\")** I think that the Overwatch Workshop Community should get organized, and have some [ideas on doing so.](#s \\\"Not good ideas, mind you\\\")\\n\\n\\n\\n**Brief disclaimer:**\\n\\n\\n\\n- I by no means think these are the best ideas, I'm just trying to get a discussion started.\\n\\n\\n\\n- Please comment with better ideas, or parts I'm wrong about, or just because you feel like it.\\n\\n- A lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\n\\n- Also, liberal hover tags abound, and [none](#s \\\"some are funny, however\\\") are useful. The only things you can click on are specifically called out as links.\\n\\n\\n\\n---\\n\\n\\n\\n####First, an explanation on why organization helps players, creators, and devs alike.\\n\\n\\n\\n- [Casual Players](#s \\\"Filthy Casuals\\\"): An organized community will make it easier to find good, fun, game modes.\\n\\n\\n\\n- [Ranked Players](#s \\\"Sports Nuts\\\"): With a few changes, I personally think that Workshop can allow for [more frequent patch testing.](#s \\\"More on that later.\\\") An organized community could help the workshop get to that state sooner.\\n\\n\\n\\n- [Creators](#s \\\"Over-Dedicated Fans\\\"): An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\n\\n\\n\\n- [Devs](#s \\\"All-Mighty Deities\\\"): An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\n\\n\\n\\n---\\n\\n# Table of Contents\\n\\n##[Reddit Organization](#s \\\"How to do better than this post\\\")\\n\\n- #### Posts\\n\\n- #### Comments\\n\\n- #### Mode Specific Tips\\n\\n\\n\\n##[One-Stop Assistance](#s \\\"More like None-Start\\\")\\n\\n- #### [Workshop FAQ](#s \\\"What is an FAQ?\\\")\\n\\n- #### [Fun Modes](#s \\\"For Casuals\\\")\\n\\n- #### [Good Mechanics](#s \\\"For Creators\\\")\\n\\n- #### [Hero Ideas](#s \\\"For Devs?\\\")\\n\\n- #### [Useful Links](#s \\\"May be copywrite infringing\\\")\\n - ###### Discord Channels\\n - ###### Youtube Channels\\n - ###### Dev Updates\\n - ###### Storage Sites\\n\\n- ### [Ideas for Workshop Improvement](#s \\\"Nonexistent\\\")\\n\\n\\n\\n---\\n\\n#Reddit Post Organization\\n\\n\\n\\n####If posts are organized in a readable manner, it will help people to:\\n\\n- [Locate modes they like](#s \\\"Or hate\\\")\\n\\n- [Easily lend assistance](#s \\\"Hardly\\\")\\n\\n- [Not have to deal with ugly things](#s \\\"Except walking Zenyattas and wall-climbing Torbs\\\")\\n\\n\\n\\n\\n\\n##Post Example Layout\\n\\n\\n\\n- [Descriptive Title](#s \\\"Flaired Appropriately\\\")\\n\\n- Post Body\\n - Picture/Video [(Optional)](#s \\\"Follow this subs rules\\\")\\n - Code\\n - [Brief Summary](#s \\\"Or why your code is the awesomest ever\\\")\\n - Detailed Description (Optional)\\n - [Future Improvements](#s \\\"Unnecessary as your creation is perfect\\\") (Optional)\\n - [Credits](#s \\\"Those whose stuff you stole\\\")\\n\\n\\n\\n\\n##General Posting Tips\\n\\n\\n\\n- Title\\tTips\\n\\n - Do use this phrasing: _[MyThing](#s \\\"What you made\\\") from [OtherMedia](#s \\\"What you stole the idea from\\\")_\\n\\n\\n\\n - Do be very specific. _Alphabetic Gun Game_ is better than simply _Gun Game_.\\n\\n - Good Example: _Alphabetic Gun Game from [CS:S:HTMLGO](#s \\\"CS Major\\\")_\\n\\n- Post Body Tips\\n\\n - Do use a visual if possible. [Video \\u003E Picture \\u003E Text](#s \\\"\\u003E Lier1\\\")\\n\\n - Do use formatting, titles, or at the very least, [paragraph breaks](#s \\\"Hit enter twice, not once\\\")\\n\\n - Do keep updated modes organized, either with new posts commented in the original post, or with update codes added with [edits](#s \\\"v3.1 Never mind\\\")\\n\\n - Do put things you are unsure how to do under [Future Improvements](#s \\\"As you will somehow be smarter in the future\\\")\\n\\n - Do [credit](#s \\\"I'll talk about using others work later\\\") other users in your post. It's only polite\\n\\n - Do your [research.](#s \\\"See that other people have posted working code before\\\") It will save you time and effort\\n\\n - Don't go into the [nitty gritty.](#s \\\"I used this rule with this condition\\\") Explain how it works in game, not in code\\n\\n\\n\\n---\\n\\n\\n\\n#Reddit Comment Organization\\n\\n#### If comments are organized in a helpful manner, it will help people to:\\n\\n- Get useful feedback\\n\\n- Raise their self-esteem\\n\\n\\n\\n\\n\\n\\n\\n##Comment Example Layout\\n\\n- [Notice the Good](#s \\\"It does exists, its just hiding\\\")\\n\\n- Harsh reality (Optional)\\n\\n- [Useful feedback](#s \\\"Unnecessary\\\")\\n\\n\\n\\n\\n\\n##General Tips\\n\\n\\n\\n- Do always be positive. There is [no need nor reason for negativity.](#s \\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\")\\n\\n- Do mention similar ideas. Link to them so the poster can get some ideas.\\n\\n- Do give actual information/feedback.\\n\\n- Do keep comments to the post at hand.\\n\\n- Don't simply comment [\\\"Great job\\\"](#s \\\"Great Job, finding this hover text\\\"). That's what liking is usually for.\\n\\n- Don't assume that the [posters vision matches yours.](#s \\\"My vision isn't 20-20, you see\\\")\\n\\n- Good Example: \\\"Me and a few friends played this mode, because we love it from Halloo 4. It's a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There's some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\\"\\n\\n---\\n\\n# Reddit Mode Specific\\n\\n\\n##Game Mode Post\\n\\n- Do label the specific [play mode](#s \\\"FFA, 5CP, Domination\\\") used in the code if it is unclear\\n\\n\\n\\n---\\n\\n\\n\\n##Game Mode Comment\\n\\n- Do play and share your experiences\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Post\\n\\n\\n\\n####Hero Description Example Layout\\n\\n- Health\\n\\n- Passives\\n\\n- Triggered Abilities\\n\\n - Stats\\n\\n - Other Features\\n\\n\\n\\n- ###Brief Summary Tips\\n\\n - Do mention what [role](#s \\\"Flanker, Tank, Monkey, etc.\\\") your hero should fill\\n\\n - Don't talk about how your hero will [destroy the meta](#s \\\"It won't\\\")\\n\\n\\n\\n- ### Triggered Ability Tips\\n\\n - Do use numbers to describe hero [DPS](#s \\\"Deaths per Second\\\") and [HPS](#s \\\"i need Healing per Second\\\") if you want balance advice\\n\\n - Do keep any numbers used checked against [actual heroes](#s \\\"No supports firing 20 rounds of 15 dmg a second\\\")\\n\\n - Do check sources such as this _linked_ [Overwatch GamePedia](https://overwatch.gamepedia.com/Overwatch_Wiki) page for how to describe abilities\\n\\n\\n\\n- ### General Tips\\n\\n - Do follow precedent for most parts of your character. They don't need a new leveling system, 50 HP, and a different [control scheme](#s \\\"Command Line\\\")\\n\\n - Do make heroes both fun to play and [fun to play against](#s \\\"mostly the second\\\")\\n\\n - Don't make a character with [lots of exceptions](#s \\\"Blocks all CC except Doomfist Punch\\\")\\n\\n - Don't step on too many [toes](#s \\\"*Cough* Pre-nerf Bridgette *Cough*\\\")\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Comment\\n\\n- Do keep balance comparisons within Overwatch. Comparing to Bastion is [OK](#s \\\"If dangerous\\\"). Comparing to Demo is less [helpful](#s \\\"Unless they are making TF2 accurate Demo\\\")\\n\\n- Do think of the character as a [whole](#s \\\"They can't attack while their shield is up? Useless\\\")\\n\\n- Do be kind. Not all posters are secretly [Blizzard Devs testing new heroes](#s \\\"But some are, right?\\\")\\n\\n- Don't talk balance unless the poster [wants to.](#s \\\"The hero will be horribly underpowered their first time. Let that go.\\\") They may just be creating for fun\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Post\\n\\n- Do try to keep the code as [simple and self-contained](#s \\\"Minimize Dependencies\\\") as possible\\n\\n- Do mention what variables you use\\n\\n- Do explain how you accomplished your [goal](#s \\\"Magic is an acceptable response\\\")\\n\\n- Do explain [bugs and edge cases](#s \\\"Or treat them as just part of the experience\\\")\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Comment\\n\\n- Do mention what cool game-modes you can imagine using with it\\n\\n- Do mention alternate ideas for how to implement it\\n\\n- Do post links to other [implementations](#s \\\"With permission\\\")\\n\\n- Do be amazed at what they managed to do\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emcwx0i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Too Logical, Died Reading\\\"\\u003ETLDR:\\u003C/a\\u003E\\u003C/strong\\u003E I think that the Overwatch Workshop Community should get organized, and have some \\u003Ca href=\\\"#s\\\" title=\\\"Not good ideas, mind you\\\"\\u003Eideas on doing so.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBrief disclaimer:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI by no means think these are the best ideas, I\\u0026#39;m just trying to get a discussion started.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPlease comment with better ideas, or parts I\\u0026#39;m wrong about, or just because you feel like it.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EA lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EAlso, liberal hover tags abound, and \\u003Ca href=\\\"#s\\\" title=\\\"some are funny, however\\\"\\u003Enone\\u003C/a\\u003E are useful. The only things you can click on are specifically called out as links.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EFirst, an explanation on why organization helps players, creators, and devs alike.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Filthy Casuals\\\"\\u003ECasual Players\\u003C/a\\u003E: An organized community will make it easier to find good, fun, game modes.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Sports Nuts\\\"\\u003ERanked Players\\u003C/a\\u003E: With a few changes, I personally think that Workshop can allow for \\u003Ca href=\\\"#s\\\" title=\\\"More on that later.\\\"\\u003Emore frequent patch testing.\\u003C/a\\u003E An organized community could help the workshop get to that state sooner.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Over-Dedicated Fans\\\"\\u003ECreators\\u003C/a\\u003E: An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"All-Mighty Deities\\\"\\u003EDevs\\u003C/a\\u003E: An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ETable of Contents\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"How to do better than this post\\\"\\u003EReddit Organization\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EPosts\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EComments\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EMode Specific Tips\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"More like None-Start\\\"\\u003EOne-Stop Assistance\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What is an FAQ?\\\"\\u003EWorkshop FAQ\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"For Casuals\\\"\\u003EFun Modes\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"For Creators\\\"\\u003EGood Mechanics\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"For Devs?\\\"\\u003EHero Ideas\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"May be copywrite infringing\\\"\\u003EUseful Links\\u003C/a\\u003E\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E###### Discord Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Youtube Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Dev Updates\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Storage Sites\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Nonexistent\\\"\\u003EIdeas for Workshop Improvement\\u003C/a\\u003E\\u003C/h3\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Post Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf posts are organized in a readable manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or hate\\\"\\u003ELocate modes they like\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Hardly\\\"\\u003EEasily lend assistance\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Except walking Zenyattas and wall-climbing Torbs\\\"\\u003ENot have to deal with ugly things\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EPost Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Flaired Appropriately\\\"\\u003EDescriptive Title\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPicture/Video \\u003Ca href=\\\"#s\\\" title=\\\"Follow this subs rules\\\"\\u003E(Optional)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECode\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or why your code is the awesomest ever\\\"\\u003EBrief Summary\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDetailed Description (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary as your creation is perfect\\\"\\u003EFuture Improvements\\u003C/a\\u003E (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Those whose stuff you stole\\\"\\u003ECredits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Posting Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETitle Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use this phrasing: \\u003Cem\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What you made\\\"\\u003EMyThing\\u003C/a\\u003E from \\u003Ca href=\\\"#s\\\" title=\\\"What you stole the idea from\\\"\\u003EOtherMedia\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo be very specific. \\u003Cem\\u003EAlphabetic Gun Game\\u003C/em\\u003E is better than simply \\u003Cem\\u003EGun Game\\u003C/em\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003EGood Example: \\u003Cem\\u003EAlphabetic Gun Game from \\u003Ca href=\\\"#s\\\" title=\\\"CS Major\\\"\\u003ECS:S:HTMLGO\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use a visual if possible. \\u003Ca href=\\\"#s\\\" title=\\\"\\u0026gt; Lier1\\\"\\u003EVideo \\u0026gt; Picture \\u0026gt; Text\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo use formatting, titles, or at the very least, \\u003Ca href=\\\"#s\\\" title=\\\"Hit enter twice, not once\\\"\\u003Eparagraph breaks\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep updated modes organized, either with new posts commented in the original post, or with update codes added with \\u003Ca href=\\\"#s\\\" title=\\\"v3.1 Never mind\\\"\\u003Eedits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo put things you are unsure how to do under \\u003Ca href=\\\"#s\\\" title=\\\"As you will somehow be smarter in the future\\\"\\u003EFuture Improvements\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo \\u003Ca href=\\\"#s\\\" title=\\\"I\\u0026#39;ll talk about using others work later\\\"\\u003Ecredit\\u003C/a\\u003E other users in your post. It\\u0026#39;s only polite\\u003C/li\\u003E\\n\\u003Cli\\u003EDo your \\u003Ca href=\\\"#s\\\" title=\\\"See that other people have posted working code before\\\"\\u003Eresearch.\\u003C/a\\u003E It will save you time and effort\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t go into the \\u003Ca href=\\\"#s\\\" title=\\\"I used this rule with this condition\\\"\\u003Enitty gritty.\\u003C/a\\u003E Explain how it works in game, not in code\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Comment Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf comments are organized in a helpful manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGet useful feedback\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERaise their self-esteem\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EComment Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"It does exists, its just hiding\\\"\\u003ENotice the Good\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHarsh reality (Optional)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary\\\"\\u003EUseful feedback\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo always be positive. There is \\u003Ca href=\\\"#s\\\" title=\\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\"\\u003Eno need nor reason for negativity.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention similar ideas. Link to them so the poster can get some ideas.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo give actual information/feedback.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep comments to the post at hand.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t simply comment \\u003Ca href=\\\"#s\\\" title=\\\"Great Job, finding this hover text\\\"\\u003E\\u0026quot;Great job\\u0026quot;\\u003C/a\\u003E. That\\u0026#39;s what liking is usually for.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t assume that the \\u003Ca href=\\\"#s\\\" title=\\\"My vision isn\\u0026#39;t 20-20, you see\\\"\\u003Eposters vision matches yours.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGood Example: \\u0026quot;Me and a few friends played this mode, because we love it from Halloo 4. It\\u0026#39;s a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There\\u0026#39;s some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\u0026quot;\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Mode Specific\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo label the specific \\u003Ca href=\\\"#s\\\" title=\\\"FFA, 5CP, Domination\\\"\\u003Eplay mode\\u003C/a\\u003E used in the code if it is unclear\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo play and share your experiences\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Post\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EHero Description Example Layout\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHealth\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPassives\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETriggered Abilities\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EStats\\u003C/li\\u003E\\n\\u003Cli\\u003EOther Features\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EBrief Summary Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo mention what \\u003Ca href=\\\"#s\\\" title=\\\"Flanker, Tank, Monkey, etc.\\\"\\u003Erole\\u003C/a\\u003E your hero should fill\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t talk about how your hero will \\u003Ca href=\\\"#s\\\" title=\\\"It won\\u0026#39;t\\\"\\u003Edestroy the meta\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003ETriggered Ability Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use numbers to describe hero \\u003Ca href=\\\"#s\\\" title=\\\"Deaths per Second\\\"\\u003EDPS\\u003C/a\\u003E and \\u003Ca href=\\\"#s\\\" title=\\\"i need Healing per Second\\\"\\u003EHPS\\u003C/a\\u003E if you want balance advice\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep any numbers used checked against \\u003Ca href=\\\"#s\\\" title=\\\"No supports firing 20 rounds of 15 dmg a second\\\"\\u003Eactual heroes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo check sources such as this \\u003Cem\\u003Elinked\\u003C/em\\u003E \\u003Ca href=\\\"https://overwatch.gamepedia.com/Overwatch_Wiki\\\"\\u003EOverwatch GamePedia\\u003C/a\\u003E page for how to describe abilities\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EGeneral Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo follow precedent for most parts of your character. They don\\u0026#39;t need a new leveling system, 50 HP, and a different \\u003Ca href=\\\"#s\\\" title=\\\"Command Line\\\"\\u003Econtrol scheme\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo make heroes both fun to play and \\u003Ca href=\\\"#s\\\" title=\\\"mostly the second\\\"\\u003Efun to play against\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t make a character with \\u003Ca href=\\\"#s\\\" title=\\\"Blocks all CC except Doomfist Punch\\\"\\u003Elots of exceptions\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t step on too many \\u003Ca href=\\\"#s\\\" title=\\\"*Cough* Pre-nerf Bridgette *Cough*\\\"\\u003Etoes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep balance comparisons within Overwatch. Comparing to Bastion is \\u003Ca href=\\\"#s\\\" title=\\\"If dangerous\\\"\\u003EOK\\u003C/a\\u003E. Comparing to Demo is less \\u003Ca href=\\\"#s\\\" title=\\\"Unless they are making TF2 accurate Demo\\\"\\u003Ehelpful\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo think of the character as a \\u003Ca href=\\\"#s\\\" title=\\\"They can\\u0026#39;t attack while their shield is up? Useless\\\"\\u003Ewhole\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be kind. Not all posters are secretly \\u003Ca href=\\\"#s\\\" title=\\\"But some are, right?\\\"\\u003EBlizzard Devs testing new heroes\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t talk balance unless the poster \\u003Ca href=\\\"#s\\\" title=\\\"The hero will be horribly underpowered their first time. Let that go.\\\"\\u003Ewants to.\\u003C/a\\u003E They may just be creating for fun\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo try to keep the code as \\u003Ca href=\\\"#s\\\" title=\\\"Minimize Dependencies\\\"\\u003Esimple and self-contained\\u003C/a\\u003E as possible\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what variables you use\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain how you accomplished your \\u003Ca href=\\\"#s\\\" title=\\\"Magic is an acceptable response\\\"\\u003Egoal\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain \\u003Ca href=\\\"#s\\\" title=\\\"Or treat them as just part of the experience\\\"\\u003Ebugs and edge cases\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what cool game-modes you can imagine using with it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention alternate ideas for how to implement it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo post links to other \\u003Ca href=\\\"#s\\\" title=\\\"With permission\\\"\\u003Eimplementations\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be amazed at what they managed to do\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emcwx0i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556865126.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bix03h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"em3phyw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"userleansbot\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556584797.0, \"send_replies\": true, \"parent_id\": \"t1_em3ph6v\", \"score\": 1, \"author_fullname\": \"t2_3a4fedhv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Author: /u/userleansbot\\n___\\nAnalysis of /u/roddypiper534's activity in political subreddits over the past 1000 comments and submissions.\\n\\nAccount Created: 3 years, 1 months, 0 days ago\\n\\nSummary: **This user does not have enough activity in political subs for analysis or has no clear leanings, they might be one of those weirdo moderate types. I don't trust them.**\\n\\n Subreddit|Lean|No. of comments|Total comment karma|No. of posts|Total post karma\\n :--|:--|:--|:--|:--|:--|:--|:--\\n[/r/politics](https://redditsearch.io/?term=\\u0026dataviz=true\\u0026aggs=true\\u0026subreddits=politics\\u0026searchtype=posts,comments,aggs,stats,dataviz\\u0026search=true\\u0026start=0\\u0026size=1000\\u0026authors=roddypiper534)|left|2|74|0|0\\n\\n***\\n ^(Bleep, bloop, I'm a bot trying to help inform political discussions on Reddit.) ^| [^About](https://www.reddit.com/user/userleansbot/comments/au1pva/faq_about_userleansbot/)\\n ___\", \"link_title\": \"Dog face\", \"author_flair_css_class\": null, \"name\": \"t1_em3phyw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAuthor: \\u003Ca href=\\\"/u/userleansbot\\\"\\u003E/u/userleansbot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EAnalysis of \\u003Ca href=\\\"/u/roddypiper534\\\"\\u003E/u/roddypiper534\\u003C/a\\u003E\\u0026#39;s activity in political subreddits over the past 1000 comments and submissions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAccount Created: 3 years, 1 months, 0 days ago\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESummary: \\u003Cstrong\\u003EThis user does not have enough activity in political subs for analysis or has no clear leanings, they might be one of those weirdo moderate types. I don\\u0026#39;t trust them.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ESubreddit\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ELean\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ENo. of comments\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETotal comment karma\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ENo. of posts\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETotal post karma\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://redditsearch.io/?term=\\u0026amp;dataviz=true\\u0026amp;aggs=true\\u0026amp;subreddits=politics\\u0026amp;searchtype=posts,comments,aggs,stats,dataviz\\u0026amp;search=true\\u0026amp;start=0\\u0026amp;size=1000\\u0026amp;authors=roddypiper534\\\"\\u003E/r/politics\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eleft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EBleep, bloop, I\\u0026#39;m a bot trying to help inform political discussions on Reddit.\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Ca href=\\\"https://www.reddit.com/user/userleansbot/comments/au1pva/faq_about_userleansbot/\\\"\\u003E\\u003Csup\\u003EAbout\\u003C/sup\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bix03h/dog_face/em3phyw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bix03h/dog_face/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=Mgv88ZLi6LY\", \"created\": 1556613597.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bix03h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"em3ph6v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"roddypiper534\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556584782.0, \"send_replies\": true, \"parent_id\": \"t3_bix03h\", \"score\": 1, \"author_fullname\": \"t2_wqliu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"/u/userleansbot\", \"link_title\": \"Dog face\", \"author_flair_css_class\": null, \"name\": \"t1_em3ph6v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/userleansbot\\\"\\u003E/u/userleansbot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bix03h/dog_face/em3ph6v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bix03h/dog_face/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=Mgv88ZLi6LY\", \"created\": 1556613582.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bhoqrx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elugkmp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LitteulCevenn\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1556298399.0, \"send_replies\": true, \"parent_id\": \"t3_bhoqrx\", \"score\": 1, \"author_fullname\": \"t2_17k23q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E!Oh it works!\\u003C\", \"link_title\": \"Spoiler test mobile\", \"author_flair_css_class\": null, \"name\": \"t1_elugkmp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003EOh it works\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bhoqrx/spoiler_test_mobile/elugkmp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bhoqrx/spoiler_test_mobile/\", \"report_reasons\": null, \"link_author\": \"LitteulCevenn\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bhoqrx/spoiler_test_mobile/\", \"created\": 1556327199.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eltdv4s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mcsquizzy\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556264587.0, \"send_replies\": true, \"parent_id\": \"t1_elrja1i\", \"score\": 1, \"author_fullname\": \"t2_8xjhh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"lmao\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_eltdv4s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Elmao\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": \"moderator\", \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/eltdv4s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556293387.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrk49b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Devstackr\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556216258.0, \"send_replies\": true, \"parent_id\": \"t1_elrja1i\", \"score\": 2, \"author_fullname\": \"t2_2m0kgx4w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"haha :D\\n\\nI posted it here to see what the image would look like before posting on /r/Frontend :P\\n\\nthanks again for the feedback :D\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrk49b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehaha :D\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI posted it here to see what the image would look like before posting on \\u003Ca href=\\\"/r/Frontend\\\"\\u003E/r/Frontend\\u003C/a\\u003E :P\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethanks again for the feedback :D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrk49b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556245058.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrk0nk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Devstackr\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556216195.0, \"send_replies\": true, \"parent_id\": \"t1_elrj823\", \"score\": 2, \"author_fullname\": \"t2_2m0kgx4w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"thanks for the feedback, I really appreciate it! :D\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrk0nk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks for the feedback, I really appreciate it! :D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrk0nk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556244995.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrja1i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MadcapTangent\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556215730.0, \"send_replies\": true, \"parent_id\": \"t1_elrj823\", \"score\": 3, \"author_fullname\": \"t2_q5gho\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"well just saw what sub this was. Excuse me while I jump into oncoming traffic....\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrja1i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewell just saw what sub this was. Excuse me while I jump into oncoming traffic....\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrja1i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556244530.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrj823\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MadcapTangent\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556215696.0, \"send_replies\": true, \"parent_id\": \"t3_bh7hrl\", \"score\": 2, \"author_fullname\": \"t2_q5gho\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"If this is primarily accessed through phones and tablets the bottom one. If on PC, the top one. Keep the spatial symmetry in mind when deciding on these things.\\n\\nThey are both fantastic though, visually speaking.\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrj823\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf this is primarily accessed through phones and tablets the bottom one. If on PC, the top one. Keep the spatial symmetry in mind when deciding on these things.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThey are both fantastic though, visually speaking.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrj823/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556244496.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgvjfl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elnsm1i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"CrBr\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1556117505.0, \"send_replies\": true, \"parent_id\": \"t3_bgvjfl\", \"score\": 1, \"author_fullname\": \"t2_sujjc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"and in the comments\\n\\n\\u0026#x200B;\\n\\n \\u003C!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--\\u003ETask | Goal | Checkin 1 10:30 | Checkin 2 | Checkin 3:-- | :- | :-- | :-- | :--Check in here | 0.50 | 0.50 | | housework | 0.50 | | | Meditate | 0.50 | | | my lesson | 1.50 | | | drive k2 2x | 1.25 | | | paper mail | 0.50 | | | accounting | 2.00 | | | shorthand | 0.50 | | | Mosquitoes | 0.50 | | | Craft | 0.50 | | | Total | 8.25 | 0.50 | 0.00 | 0.00\", \"link_title\": \"test table\", \"author_flair_css_class\": null, \"name\": \"t1_elnsm1i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eand in the comments\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--\\u0026gt;Task | Goal | Checkin 1 10:30 | Checkin 2 | Checkin 3:-- | :- | :-- | :-- | :--Check in here | 0.50 | 0.50 | | housework | 0.50 | | | Meditate | 0.50 | | | my lesson | 1.50 | | | drive k2 2x | 1.25 | | | paper mail | 0.50 | | | accounting | 2.00 | | | shorthand | 0.50 | | | Mosquitoes | 0.50 | | | Craft | 0.50 | | | Total | 8.25 | 0.50 | 0.00 | 0.00\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgvjfl/test_table/elnsm1i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgvjfl/test_table/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgvjfl/test_table/\", \"created\": 1556146305.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1555883686.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfu16t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elgaylo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"danielthetemp\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1555883030.0, \"send_replies\": true, \"parent_id\": \"t3_bfu16t\", \"score\": 1, \"author_fullname\": \"t2_14hd4t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E***PRICES (Open to Offers)***\\n\\n\\u003E- **If An Octopus Could Palm** - $119.99\\n\\n\\u003E- **Brown Bee Wynn** - $37.99\\n\\n\\u003E- **2012 Magic Con** - $37.99 - 2x\\n\\n\\u003E- **Absolut Vodka** - $34.99 - 2x\\n\\n\\u003E- **Carrot Fontaine** - $31.99 - 8x\\n\\n\\u003E- **Smoke \\u0026 Mirrors v5** - $28.99\\n\\n\\u003E- **Smoke \\u0026 Mirrors v6** - $26.99/$25.99 - 2x\\n\\n\\u003E- **A1 Black Logo** - $26.99 - 5x\\n\\n\\u003E- **Gold Rarebit** - $21.99\\n\\n\\u003E- **Black USPCC Logo \\u201cTech Art\\u201d** - $60.99\\n\\n\\u003E- **Watermelon Fontaine** - $52.99\\n\\n\\u003E- **A1/DND Smoke \\u0026 Mirrors** - $33.99 - 3x\\n\\n\\u003E- **A1 Headlong Into Eternity** - $27.99\\n\\n\\u003E- **Lot of Opened Decks (DND Private Reserve, Blue Fontaine, Absolut Vodka, S\\u0026M v4)** - $99.99\\n\\n\\u003E- **Lot of Opened Bee Wynns (1x Brown, 1x Violet \\u201cTech Art,\\u201d 1x Violet \\u201cStandard Index\\u201d)** - $72.99\\n\\n\\u003E- **Lot of Opened Golden Nuggets (1x Green, 1x Black)** - $37.99\\n\\n\\u003E- **Green Ace Fulton\\u2019s** - $18.99 - 15x\\n\\n***CONDITION OF DAMAGED/OPEN DECKS***\\n\\n- **If An Octopus Could Palm**: Multiple dents and creases to the box.\\n- **Brown Wynn**: Loose cellophane on top, taped cello on one side.\\n- **2012 Magic Con**: Dents to one corner of both decks.\\n- **Smoke \\u0026 Mirrors v5**: Dents to two corners.\\n- **Smoke \\u0026 Mirrors v6**: Dent to one corner of one deck.\\n- **1st Lot**: All decks in unused condition. All Jokers/ad cards included, except with S\\u0026M v4\\n- **2nd Lot**: Brown Wynn (52 std + 4 Jokers/ad cards) in great condition, but Queen of Spades has a defect to one corner. Violet \\u201cTech Art\\u201d (52 std + no Jokers/ad cards) in great condition. Violet \\u201cStandard Index\\u201d (52 std + 4 Jokers/ad cards) in great condition, though they don\\u2019t fan well due to standard pips.\\n- **3rd Lot**: Black Golden Nugget (52 standard + 2 Joker cards) in good but lightly worn condition, fanning and spreading w/ noticeable clumping. Green Golden Nugget (52 standard + no Jokers/ad cards) in very good condition, but don\\u2019t fan/spread due to finish.\\n\\n***SHIPPING***\\n\\n***Free U.S. shipping (insured depending on order value).***\\n\\n***Calculated Worldwide shipping (insured depending on buyer\\u2019s preference).***\", \"link_title\": \"TEST\", \"author_flair_css_class\": null, \"name\": \"t1_elgaylo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EPRICES (Open to Offers)\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EIf An Octopus Could Palm\\u003C/strong\\u003E - $119.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBrown Bee Wynn\\u003C/strong\\u003E - $37.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E2012 Magic Con\\u003C/strong\\u003E - $37.99 - 2x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAbsolut Vodka\\u003C/strong\\u003E - $34.99 - 2x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ECarrot Fontaine\\u003C/strong\\u003E - $31.99 - 8x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v5\\u003C/strong\\u003E - $28.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v6\\u003C/strong\\u003E - $26.99/$25.99 - 2x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EA1 Black Logo\\u003C/strong\\u003E - $26.99 - 5x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EGold Rarebit\\u003C/strong\\u003E - $21.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBlack USPCC Logo \\u201cTech Art\\u201d\\u003C/strong\\u003E - $60.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWatermelon Fontaine\\u003C/strong\\u003E - $52.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EA1/DND Smoke \\u0026amp; Mirrors\\u003C/strong\\u003E - $33.99 - 3x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EA1 Headlong Into Eternity\\u003C/strong\\u003E - $27.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELot of Opened Decks (DND Private Reserve, Blue Fontaine, Absolut Vodka, S\\u0026amp;M v4)\\u003C/strong\\u003E - $99.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELot of Opened Bee Wynns (1x Brown, 1x Violet \\u201cTech Art,\\u201d 1x Violet \\u201cStandard Index\\u201d)\\u003C/strong\\u003E - $72.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELot of Opened Golden Nuggets (1x Green, 1x Black)\\u003C/strong\\u003E - $37.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EGreen Ace Fulton\\u2019s\\u003C/strong\\u003E - $18.99 - 15x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ECONDITION OF DAMAGED/OPEN DECKS\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EIf An Octopus Could Palm\\u003C/strong\\u003E: Multiple dents and creases to the box.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBrown Wynn\\u003C/strong\\u003E: Loose cellophane on top, taped cello on one side.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E2012 Magic Con\\u003C/strong\\u003E: Dents to one corner of both decks.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v5\\u003C/strong\\u003E: Dents to two corners.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v6\\u003C/strong\\u003E: Dent to one corner of one deck.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E1st Lot\\u003C/strong\\u003E: All decks in unused condition. All Jokers/ad cards included, except with S\\u0026amp;M v4\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E2nd Lot\\u003C/strong\\u003E: Brown Wynn (52 std + 4 Jokers/ad cards) in great condition, but Queen of Spades has a defect to one corner. Violet \\u201cTech Art\\u201d (52 std + no Jokers/ad cards) in great condition. Violet \\u201cStandard Index\\u201d (52 std + 4 Jokers/ad cards) in great condition, though they don\\u2019t fan well due to standard pips.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E3rd Lot\\u003C/strong\\u003E: Black Golden Nugget (52 standard + 2 Joker cards) in good but lightly worn condition, fanning and spreading w/ noticeable clumping. Green Golden Nugget (52 standard + no Jokers/ad cards) in very good condition, but don\\u2019t fan/spread due to finish.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESHIPPING\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EFree U.S. shipping (insured depending on order value).\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ECalculated Worldwide shipping (insured depending on buyer\\u2019s preference).\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfu16t/test/elgaylo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfu16t/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfu16t/test/\", \"created\": 1555911830.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfsmkt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elg60jw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"peacegang\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1555879268.0, \"send_replies\": true, \"parent_id\": \"t1_elg5k7o\", \"score\": 1, \"author_fullname\": \"t2_30chc41y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks for the tip \\ud83d\\udc4d\", \"link_title\": \"Test for posting my music (anxiety check)\", \"author_flair_css_class\": null, \"name\": \"t1_elg60jw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for the tip \\ud83d\\udc4d\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/elg60jw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"report_reasons\": null, \"link_author\": \"peacegang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"created\": 1555908068.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfsmkt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elg5k7o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thanksgames\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1555878932.0, \"send_replies\": true, \"parent_id\": \"t1_elg0fz0\", \"score\": 2, \"author_fullname\": \"t2_haj2j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I also use https://redditpreview.com then here.\", \"link_title\": \"Test for posting my music (anxiety check)\", \"author_flair_css_class\": null, \"name\": \"t1_elg5k7o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI also use \\u003Ca href=\\\"https://redditpreview.com\\\"\\u003Ehttps://redditpreview.com\\u003C/a\\u003E then here.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/elg5k7o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"report_reasons\": null, \"link_author\": \"peacegang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"created\": 1555907732.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfsmkt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elg0l70\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"peacegang\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1555875286.0, \"send_replies\": true, \"parent_id\": \"t3_bfsmkt\", \"score\": 1, \"author_fullname\": \"t2_30chc41y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[SALEM - Jennifer's Rush (Unreleased)](https://soundcloud.com/peacegang/everyone-dies)\\n\\n\\n[Amnesia Scanner - AS Crust](https://soundcloud.com/peacegang/psfd)\\n\\n\\n[Balam Acab - Dream Out](https://soundcloud.com/peacegang/permo)\\n\\n\\n[CRIM3S - Pansy](https://soundcloud.com/peacegang/pansy-ruff)\\n\\n\\n[Wolfgang Tillmans - Make It Up As You Go Along (SALEM Remix)](https://soundcloud.com/peacegang/odt)\", \"link_title\": \"Test for posting my music (anxiety check)\", \"author_flair_css_class\": null, \"name\": \"t1_elg0l70\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/everyone-dies\\\"\\u003ESALEM - Jennifer\\u0026#39;s Rush (Unreleased)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/psfd\\\"\\u003EAmnesia Scanner - AS Crust\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/permo\\\"\\u003EBalam Acab - Dream Out\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/pansy-ruff\\\"\\u003ECRIM3S - Pansy\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/odt\\\"\\u003EWolfgang Tillmans - Make It Up As You Go Along (SALEM Remix)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/elg0l70/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"report_reasons\": null, \"link_author\": \"peacegang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"created\": 1555904086.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_elg0l70\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["467008"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:54 GMT"], "x-ratelimit-remaining": ["590.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["10"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930754.125994,VS0,VE672"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["246"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T18:05:54"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_eq9cbr7"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:55 GMT"], "x-ratelimit-remaining": ["589.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["11"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930755.277376,VS0,VE77"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["245"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_eq9cbr7"}, "recorded_at": "2019-06-07T18:05:55"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_3um52nx7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test baby test baby 1 2 3\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxw8jy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559951688.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": true, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"rte_mode\": \"markdown\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxw8jy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxw8jy/test_baby_test_baby_1_2_3/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxw8jy/test_baby_test_baby_1_2_3/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559922888.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_b3enc15\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing handcheck\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bxw44n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/g-Vn8VE84ZMavft5yVbO-OWrqIxHFF_NiISN--__m04.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559951048.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?auto=webp\\u0026s=2a78e498199bb112ae49fd0c0d4db4a1e8cfdfdb\", \"width\": 1960, \"height\": 2614}, \"resolutions\": [{\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b2a2268872616021eba1b51f6a6d7fdd5f764d58\", \"width\": 108, \"height\": 144}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=8b9498ea5106e39ee9c17005a4b74d64ca19e02c\", \"width\": 216, \"height\": 288}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4c3181062de4fc49679215d86bc8318a42abe2bf\", \"width\": 320, \"height\": 426}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=cb4aff5dd8d61b19c53910f6a89eb0dd78ed09e9\", \"width\": 640, \"height\": 853}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=7e0f25346dbee5f27d783b741867c0abaaaf929b\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=f695bd8b64887728d8310ede4110d5b78d12da3e\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"tKhMAgZ09nb048tGiceyYag9boiLSkfCGWrTKlLmyYY\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxw44n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ymsalem\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxw44n/testing_handcheck/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/uv7goq47gy231.jpg\", \"subreddit_subscribers\": 704, \"created_utc\": 1559922248.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_x9hgy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Orleans Funk and Soul Comp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bxu0h7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/HZGF8jwxJvb-kmQ0VHxmPmJwsj7cME_lUiJh0tMOdyA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559939195.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?auto=webp\\u0026s=63435ce5b9021c26f3f3361832bee85120b95da7\", \"width\": 2997, \"height\": 3000}, \"resolutions\": [{\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4f2d78539e84109eff8c55ef3881fc5cd9895610\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=36b248b4534ebb7224b313476f08bfaeac231423\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d14878565506f79f9a565575c94dd15cb87b126f\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b8599670803f247e3567c308259e0e008d6ade54\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5f099f6836672fd6e14fc584d919502251a20062\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=80dc7ae6be61b47e33fb9efb8e6396ee20665a72\", \"width\": 1080, \"height\": 1081}], \"variants\": {}, \"id\": \"oOKJ7WqkVkUAvpB0GW3QoNctvySrbQLkpEE891MLydk\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu0h7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"branch_immersion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxu0h7/new_orleans_funk_and_soul_comp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/st657dn4fx231.jpg\", \"subreddit_subscribers\": 704, \"created_utc\": 1559910395.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Very sad news about the passing of Dr John. I took out a couple of his records this lunchtime and gave them a spin. \\n\\n\\u0026#x200B;\\n\\nI also dug out a copy of this compilation Saturday Night Fish Fry (New Orleans Funk And Soul). There was a post earlier this week about Betty Harris and the drums on her record. And I think generally, within this subreddit and elsewhere, there is a huge appetite for the New Orleans funk and blues. Some people may even correct me that sometimes the genre is referred to in more granular terms as fonk, I don't know. In his autobiography Dr. John put this distinct musical signature down to the unique geographic location of the City to absorb and conjoin different artistic ideas from America and the Caribbean. \\n\\n\\u0026#x200B;\\n\\nThis double lp is a collection of New Orleans funk and really gets my groove on. If you want to find out more about this City's musical heritage you could do a lot worse than get an overview from this selection.\", \"author_fullname\": \"t2_x9hgy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Orleans Funk and Soul Comp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxtvoq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559938349.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVery sad news about the passing of Dr John. I took out a couple of his records this lunchtime and gave them a spin. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also dug out a copy of this compilation Saturday Night Fish Fry (New Orleans Funk And Soul). There was a post earlier this week about Betty Harris and the drums on her record. And I think generally, within this subreddit and elsewhere, there is a huge appetite for the New Orleans funk and blues. Some people may even correct me that sometimes the genre is referred to in more granular terms as fonk, I don\\u0026#39;t know. In his autobiography Dr. John put this distinct musical signature down to the unique geographic location of the City to absorb and conjoin different artistic ideas from America and the Caribbean. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis double lp is a collection of New Orleans funk and really gets my groove on. If you want to find out more about this City\\u0026#39;s musical heritage you could do a lot worse than get an overview from this selection.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxtvoq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"branch_immersion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxtvoq/new_orleans_funk_and_soul_comp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxtvoq/new_orleans_funk_and_soul_comp/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559909549.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_288py4gj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Text\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxsgv0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559928038.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsgv0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Heroquetarro10\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559899238.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Text Area \\\\_\\\\_\\\\_ 1234567890\", \"author_fullname\": \"t2_3l1yc231\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing format of post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxqfkz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559910553.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EText Area ___ 1234567890\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxqfkz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"denHting\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxqfkz/testing_format_of_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxqfkz/testing_format_of_post/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559881753.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_3um52nx7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"get get get out\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxprj4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559906146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": true, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"rte_mode\": \"markdown\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxprj4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxprj4/get_get_get_out/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxprj4/get_get_get_out/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559877346.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Our story begins five years after the events of our last movie. In the time since Jean Grey and her fellow X-Men escaped from a US government base, battled the Sentinels, and survived a confrontation with the Mutant terrorist Magneto, America has slowly become a hotbed of political unrest. As the debate over Mutant rights rages on, young Mutants are still regularly arrested and detained without trial when their powers manifest, Mutant rights protests regularly erupt into riots in major cities, and lurid stories about wanted Mutant fugitives regularly make the evening news. \\n\\nAmid this tense backdrop, the terrorist Magneto launches attacks on police stations and military bases without warning, always leaving a trail of dead bodies in his wake. But in his stately Westchester mansion, political activist Professor Charles Xavier does his best to weather the storm as he peacefully fights for his people's freedom while training his Mutant pupils to use their powers for good. But as the years wear on, the teenage X-Men\\u2014now young adults\\u2014face plenty of changes in their private lives.\\n\\nFirst, young **Warren Worthington** (\\\"**Angel**\\\") chooses to leave the Xavier Institute to care for his terminally ill father. Then **Hank McCoy** (\\\"**Beast**\\\") chooses to leave to pursue his doctoral studies, planning to devote his life to science. Finally, **Bobby Drake** (\\\"**Iceman**\\\"), who just wants a normal life, decides to settle down with his girlfriend **Lorna**. Only **Scott Summers** (\\\"**Cyclops**\\\") can't envision a life outside of the X-Men; ever since losing his family in a mysterious plane crash at the age of 10, the Xavier Institute has been Scott's only home, and the X-Men are the only family that he has left. And as his relationship with **Jean Grey** develops into a passionate love affair, Jean is torn between her devotion to Scott and her desire to move forward with her life; though she longs to conceal her powerful psychic abilities and live as an ordinary human, she knows that Scott could never leave the Institute, and she feels compelled to stay by his side. This leaves Scott and Jean as the last remaining members of the original X-Men. But that may change soon.\\n\\nAs Professor Xavier turns his eyes to the world at large, it soon becomes clear that the struggle for Mutant rights is no longer solely an American problem; all over the world, innocent Mutants are being arrested and detained by paranoid government forces, and some are choosing to fight back. Over time, rumors spread of an underground network of Mutant rebels, who supposedly work to shelter and protect fugitive Mutants. Some call them terrorists, and others call them freedom fighters\\u2014but Professor Xavier sees them as potential new recruits.\\n\\nOn a quiet day in Moscow, Russia, a pair of uniformed FSB agents knock on the door of a secluded apartment, flanked by a squad of armed soldiers. When a young blonde woman answer the door, she stares defiantly at the agents.\\n\\n*\\\"There's no use playing the fool, Ms. Rasputin,\\\"* the lead agent says. *\\\"We know that you're sheltering a Mutant here. And you know the penalty for refusing to hand him over.\\\"*\\n\\nThe woman\\u2014**Ilyana Rasputin**\\u2014stares back at them, maintaining her cold composure.\\n\\n*\\\"I would never give my brother to mongrels like you,\\\"* she hisses. *\\\"He's a Mutant, but he's still my brother.\\\"*\\n\\nA tall, dark-haired man appears behind Ilyana and places a comforting hand upon her shoulder.\\n\\n*\\\"It's alright, Ilyana,\\\"* **Piotr Rasputin** says. *\\\"I'll go quietly. But always remember: your quarrel is with me, and me alone. My family is not to be harmed.\\\"*\\n\\nWith that, the agents cuff Piotr's wrists, and the soldiers escort him from the building at gunpoint. Standing at the window of her apartment with tear-streaked eyes, Ilyana can only watch helplessly as her beloved brother is marched into an armored van, softly whispering *\\\"Goodbye\\\"* as they close the doors. But unbeknownst to her, he's being watched from afar...\\n\\nIt turns out that three members of the mysterious **Mutant Freedom Network** have come to Moscow, and they know that a Mutant is about to be imprisoned by government forces. And this time, they've sworn to do something about it.\\n\\nWe meet three of them:\\n\\n* **Sean Cassidy** (callsign: \\\"**Banshee**\\\"), a grizzled ex-cop from Dublin who was thrown out of Interpol after he was outed as a Mutant. He possesses a powerful sonic scream that's strong enough to shatter glass, allowing him to fly for limited distances.\\n* **Ororo Munroe** (callsign: \\\"**Storm**\\\"), a young Kenyan-born woman who spent years as a petty thief on the streets of Nairobi, but became accepted as a priestess by a group of Bantu farmers, who realized that she possessed a supernatural ability to control the weather.\\n* **Kurt Wagner** (callsign: \\\"**Nightcrawler**\\\"), a fun-loving young German man of Romani heritage, who grew up as an acrobatic performer in a traveling circus. Possessing the power to vanish and teleport in a puff of smoke, his Mutant abilities give him a bizarre demonic appearance; his body is covered with blue fur, and he has fangs and a prehensile tail.\\n\\nAs Banshee, Storm and Nightcrawler watch the armored van pull into a convoy, a squad of black helicopters appears in the sky, watching the FSB agents from above as they drive Piotr away. At Banshee's command, they bust into action.\\n\\nFirst, Nightcrawler uses his teleporting abilities to jump into the front seat of the armored van, where he kicks the driver into the street and takes the wheel. As he hijacks the truck and drives away with Piotr in the back, Storm lashes out with a bolt of lightning and fries the other vans in the convoy before they can drive off after him. Moments later, Banshee tears through the sky and brings down a helicopter with his sonic scream.\\n\\n*\\\"Who the hell are you people?\\\"* Piotr demands. *\\\"And where are you taking me?!\\\"*\\n\\n*\\\"Relax, mein freund,\\\"* Nightcrawler says. *\\\"We're the good guys! And we're taking you where they can't hurt you. After that, you can go where you wish.\\\"*\\n\\nNightcrawler high-tails it to the highway with Storm riding on top of the stolen van, and Banshee follows them from the sky. As the FSB calls for backup, a frantic car chase ensues, and Ororo uses her powers to hold off a squad of pursuing cars while Banshee fights off the helicopters from above. At first, all seems well\\u2014but the escape takes a bad turn when Banshee catches a stray bullet and falls to his death. Pushing their powers to their limit, Nightcrawler and Storm fight for their lives against the pursuing soldiers. After breaking free of his cuffs, Piotr helps them out as he reveals his own Mutant ability: he can transform his body into near-indestructible steel, giving him superhuman strength and invulnerability.\\n\\nAfter Piotr uses his powers to punch his way through a police barricade and clear a path for the others, they all drive off into the distance in the stolen van. But before long, they receive a radio message from a familiar voice.\\n\\n*\\\"Stay calm,\\\"* Scott Summers says. *\\\"We're right on top of you!\\\"*\\n\\nA shadow appears on the highway as the frantic chase continues. It's **the Blackbird**! Scott is sitting in the cockpit, and Jean is next to him.\\n\\n*\\\"You've gotta jump!\\\"* Jean calls. *\\\"Don't worry, we'll catch you!\\\"*\\n\\nFrom the cockpit of the Blackbird, Jean uses her telekinesis to take control of the van's steering wheel, allowing the trio to clamber onto the roof of the van as it speeds along. As the van drives off the side of a cliff\\u2014where the Blackbird is waiting to pick them up\\u2014they just barely manage to jump into the cargo hold before the van falls and crashes on the ground below. Safe inside the jet, Storm, Nightcrawler and Piotr meet Scott and Jean personally.\\n\\n*\\\"Who are you people, exactly?\\\"* Storm asks.\\n\\n*\\\"We're the X-Men,\\\"* Scott says proudly. *\\\"And if you want to join us...then so are you.\\\"*\\n\\nIt turns out that Professor Xavier has been in touch with the three Mutant freedom fighters for weeks, and offered them a place in the Xavier Institute weeks ago. They accepted, but refused to leave for America before finishing one last rescue. Though the group is saddened by the loss of Banshee, Piotr agrees to join the X-Men along with Storm and Nightcrawler, believing that he has a duty to pay them back for rescuing him. Scott and Jean welcome him to the group with open arms, dubbing him \\\"**Colossus**\\\".\\n\\nBut the X-Men's elation is suddenly cut short when the Blackbird mysteriously stops in mid-air. Alarm sirens blare as some mysterious force grips the jet from the outside, and its navigation computers instantly go haywire. As they rush to the cockpit to figure out what's going on, their blood runs cold as they look out the window and see a familiar figure: ***Magneto****!* Showing off the full extent of his powers, he effortlessly hovers in mid-air in a bubble of magnetic energy; with one hand outstretched, he holds the Blackbird in the grip of a magnetic field.\\n\\nIt seems that Magneto has followed Scott and Jean to Russia, eager for a rematch with them. In the five years since Magneto murdered the scientist **Bolivar Trask**, he has had numerous confrontations with the X-Men\\u2014and each time, the X-Men have narrowly escaped with their lives.\\n\\nThinking fast, Scott and Jean clamber onto the roof of the Blackbird and engage Magneto, but he taunts them as he deflects Scott's optic blasts and shrugs off Jean's telepathic attacks\\u2014but the three new X-Men spring into action to aid them. Though Magneto easily subdues Colossus with his magnetic powers, Storm manages to weaken his shield by summoning a massive lightning storm, and Nightcrawler uses his teleportation abilities to land a crushing kick to his midsection. Taking advantage of the distraction, Scott blasts Magneto with his optic blasts, weakening him enough to free the Blackbird from his magnetic field. Seizing their window of opportunity, the X-Men pile into the jet and strap themselves in, and they make their escape.\\n\\nBack in Westchester, Professor Xavier happily welcomes his three new recruits to the Xavier Institute with open arms, and he gives them all a rousing speech as they gather in the mansion.\\n\\nIs the Professor turning them into an *army?*\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxk7dz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559862102.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559874781.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOur story begins five years after the events of our last movie. In the time since Jean Grey and her fellow X-Men escaped from a US government base, battled the Sentinels, and survived a confrontation with the Mutant terrorist Magneto, America has slowly become a hotbed of political unrest. As the debate over Mutant rights rages on, young Mutants are still regularly arrested and detained without trial when their powers manifest, Mutant rights protests regularly erupt into riots in major cities, and lurid stories about wanted Mutant fugitives regularly make the evening news. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAmid this tense backdrop, the terrorist Magneto launches attacks on police stations and military bases without warning, always leaving a trail of dead bodies in his wake. But in his stately Westchester mansion, political activist Professor Charles Xavier does his best to weather the storm as he peacefully fights for his people\\u0026#39;s freedom while training his Mutant pupils to use their powers for good. But as the years wear on, the teenage X-Men\\u2014now young adults\\u2014face plenty of changes in their private lives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, young \\u003Cstrong\\u003EWarren Worthington\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EAngel\\u003C/strong\\u003E\\u0026quot;) chooses to leave the Xavier Institute to care for his terminally ill father. Then \\u003Cstrong\\u003EHank McCoy\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EBeast\\u003C/strong\\u003E\\u0026quot;) chooses to leave to pursue his doctoral studies, planning to devote his life to science. Finally, \\u003Cstrong\\u003EBobby Drake\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EIceman\\u003C/strong\\u003E\\u0026quot;), who just wants a normal life, decides to settle down with his girlfriend \\u003Cstrong\\u003ELorna\\u003C/strong\\u003E. Only \\u003Cstrong\\u003EScott Summers\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003ECyclops\\u003C/strong\\u003E\\u0026quot;) can\\u0026#39;t envision a life outside of the X-Men; ever since losing his family in a mysterious plane crash at the age of 10, the Xavier Institute has been Scott\\u0026#39;s only home, and the X-Men are the only family that he has left. And as his relationship with \\u003Cstrong\\u003EJean Grey\\u003C/strong\\u003E develops into a passionate love affair, Jean is torn between her devotion to Scott and her desire to move forward with her life; though she longs to conceal her powerful psychic abilities and live as an ordinary human, she knows that Scott could never leave the Institute, and she feels compelled to stay by his side. This leaves Scott and Jean as the last remaining members of the original X-Men. But that may change soon.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Professor Xavier turns his eyes to the world at large, it soon becomes clear that the struggle for Mutant rights is no longer solely an American problem; all over the world, innocent Mutants are being arrested and detained by paranoid government forces, and some are choosing to fight back. Over time, rumors spread of an underground network of Mutant rebels, who supposedly work to shelter and protect fugitive Mutants. Some call them terrorists, and others call them freedom fighters\\u2014but Professor Xavier sees them as potential new recruits.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn a quiet day in Moscow, Russia, a pair of uniformed FSB agents knock on the door of a secluded apartment, flanked by a squad of armed soldiers. When a young blonde woman answer the door, she stares defiantly at the agents.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;There\\u0026#39;s no use playing the fool, Ms. Rasputin,\\u0026quot;\\u003C/em\\u003E the lead agent says. \\u003Cem\\u003E\\u0026quot;We know that you\\u0026#39;re sheltering a Mutant here. And you know the penalty for refusing to hand him over.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe woman\\u2014\\u003Cstrong\\u003EIlyana Rasputin\\u003C/strong\\u003E\\u2014stares back at them, maintaining her cold composure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I would never give my brother to mongrels like you,\\u0026quot;\\u003C/em\\u003E she hisses. \\u003Cem\\u003E\\u0026quot;He\\u0026#39;s a Mutant, but he\\u0026#39;s still my brother.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA tall, dark-haired man appears behind Ilyana and places a comforting hand upon her shoulder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;It\\u0026#39;s alright, Ilyana,\\u0026quot;\\u003C/em\\u003E \\u003Cstrong\\u003EPiotr Rasputin\\u003C/strong\\u003E says. \\u003Cem\\u003E\\u0026quot;I\\u0026#39;ll go quietly. But always remember: your quarrel is with me, and me alone. My family is not to be harmed.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith that, the agents cuff Piotr\\u0026#39;s wrists, and the soldiers escort him from the building at gunpoint. Standing at the window of her apartment with tear-streaked eyes, Ilyana can only watch helplessly as her beloved brother is marched into an armored van, softly whispering \\u003Cem\\u003E\\u0026quot;Goodbye\\u0026quot;\\u003C/em\\u003E as they close the doors. But unbeknownst to her, he\\u0026#39;s being watched from afar...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt turns out that three members of the mysterious \\u003Cstrong\\u003EMutant Freedom Network\\u003C/strong\\u003E have come to Moscow, and they know that a Mutant is about to be imprisoned by government forces. And this time, they\\u0026#39;ve sworn to do something about it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe meet three of them:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESean Cassidy\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003EBanshee\\u003C/strong\\u003E\\u0026quot;), a grizzled ex-cop from Dublin who was thrown out of Interpol after he was outed as a Mutant. He possesses a powerful sonic scream that\\u0026#39;s strong enough to shatter glass, allowing him to fly for limited distances.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EOroro Munroe\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003EStorm\\u003C/strong\\u003E\\u0026quot;), a young Kenyan-born woman who spent years as a petty thief on the streets of Nairobi, but became accepted as a priestess by a group of Bantu farmers, who realized that she possessed a supernatural ability to control the weather.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EKurt Wagner\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003ENightcrawler\\u003C/strong\\u003E\\u0026quot;), a fun-loving young German man of Romani heritage, who grew up as an acrobatic performer in a traveling circus. Possessing the power to vanish and teleport in a puff of smoke, his Mutant abilities give him a bizarre demonic appearance; his body is covered with blue fur, and he has fangs and a prehensile tail.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAs Banshee, Storm and Nightcrawler watch the armored van pull into a convoy, a squad of black helicopters appears in the sky, watching the FSB agents from above as they drive Piotr away. At Banshee\\u0026#39;s command, they bust into action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, Nightcrawler uses his teleporting abilities to jump into the front seat of the armored van, where he kicks the driver into the street and takes the wheel. As he hijacks the truck and drives away with Piotr in the back, Storm lashes out with a bolt of lightning and fries the other vans in the convoy before they can drive off after him. Moments later, Banshee tears through the sky and brings down a helicopter with his sonic scream.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who the hell are you people?\\u0026quot;\\u003C/em\\u003E Piotr demands. \\u003Cem\\u003E\\u0026quot;And where are you taking me?!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Relax, mein freund,\\u0026quot;\\u003C/em\\u003E Nightcrawler says. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;re the good guys! And we\\u0026#39;re taking you where they can\\u0026#39;t hurt you. After that, you can go where you wish.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENightcrawler high-tails it to the highway with Storm riding on top of the stolen van, and Banshee follows them from the sky. As the FSB calls for backup, a frantic car chase ensues, and Ororo uses her powers to hold off a squad of pursuing cars while Banshee fights off the helicopters from above. At first, all seems well\\u2014but the escape takes a bad turn when Banshee catches a stray bullet and falls to his death. Pushing their powers to their limit, Nightcrawler and Storm fight for their lives against the pursuing soldiers. After breaking free of his cuffs, Piotr helps them out as he reveals his own Mutant ability: he can transform his body into near-indestructible steel, giving him superhuman strength and invulnerability.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter Piotr uses his powers to punch his way through a police barricade and clear a path for the others, they all drive off into the distance in the stolen van. But before long, they receive a radio message from a familiar voice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Stay calm,\\u0026quot;\\u003C/em\\u003E Scott Summers says. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;re right on top of you!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA shadow appears on the highway as the frantic chase continues. It\\u0026#39;s \\u003Cstrong\\u003Ethe Blackbird\\u003C/strong\\u003E! Scott is sitting in the cockpit, and Jean is next to him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;ve gotta jump!\\u0026quot;\\u003C/em\\u003E Jean calls. \\u003Cem\\u003E\\u0026quot;Don\\u0026#39;t worry, we\\u0026#39;ll catch you!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the cockpit of the Blackbird, Jean uses her telekinesis to take control of the van\\u0026#39;s steering wheel, allowing the trio to clamber onto the roof of the van as it speeds along. As the van drives off the side of a cliff\\u2014where the Blackbird is waiting to pick them up\\u2014they just barely manage to jump into the cargo hold before the van falls and crashes on the ground below. Safe inside the jet, Storm, Nightcrawler and Piotr meet Scott and Jean personally.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who are you people, exactly?\\u0026quot;\\u003C/em\\u003E Storm asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;re the X-Men,\\u0026quot;\\u003C/em\\u003E Scott says proudly. \\u003Cem\\u003E\\u0026quot;And if you want to join us...then so are you.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt turns out that Professor Xavier has been in touch with the three Mutant freedom fighters for weeks, and offered them a place in the Xavier Institute weeks ago. They accepted, but refused to leave for America before finishing one last rescue. Though the group is saddened by the loss of Banshee, Piotr agrees to join the X-Men along with Storm and Nightcrawler, believing that he has a duty to pay them back for rescuing him. Scott and Jean welcome him to the group with open arms, dubbing him \\u0026quot;\\u003Cstrong\\u003EColossus\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut the X-Men\\u0026#39;s elation is suddenly cut short when the Blackbird mysteriously stops in mid-air. Alarm sirens blare as some mysterious force grips the jet from the outside, and its navigation computers instantly go haywire. As they rush to the cockpit to figure out what\\u0026#39;s going on, their blood runs cold as they look out the window and see a familiar figure: \\u003Cstrong\\u003E\\u003Cem\\u003EMagneto\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E!\\u003C/em\\u003E Showing off the full extent of his powers, he effortlessly hovers in mid-air in a bubble of magnetic energy; with one hand outstretched, he holds the Blackbird in the grip of a magnetic field.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems that Magneto has followed Scott and Jean to Russia, eager for a rematch with them. In the five years since Magneto murdered the scientist \\u003Cstrong\\u003EBolivar Trask\\u003C/strong\\u003E, he has had numerous confrontations with the X-Men\\u2014and each time, the X-Men have narrowly escaped with their lives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThinking fast, Scott and Jean clamber onto the roof of the Blackbird and engage Magneto, but he taunts them as he deflects Scott\\u0026#39;s optic blasts and shrugs off Jean\\u0026#39;s telepathic attacks\\u2014but the three new X-Men spring into action to aid them. Though Magneto easily subdues Colossus with his magnetic powers, Storm manages to weaken his shield by summoning a massive lightning storm, and Nightcrawler uses his teleportation abilities to land a crushing kick to his midsection. Taking advantage of the distraction, Scott blasts Magneto with his optic blasts, weakening him enough to free the Blackbird from his magnetic field. Seizing their window of opportunity, the X-Men pile into the jet and strap themselves in, and they make their escape.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in Westchester, Professor Xavier happily welcomes his three new recruits to the Xavier Institute with open arms, and he gives them all a rousing speech as they gather in the mansion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs the Professor turning them into an \\u003Cem\\u003Earmy?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxk7dz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxk7dz/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxk7dz/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559845981.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_5ijtn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 12, \"hide_score\": false, \"name\": \"t3_bxfqen\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ZMjeoipMxQ3bRu7Gbso5AMjI0QnyRUvbys50zzeSRHg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559850058.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?auto=webp\\u0026s=6d88313f2c01fb65fd4dfac7f372dd58761154d8\", \"width\": 1985, \"height\": 184}, \"resolutions\": [{\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ef14c58b5359e5cee2e44484a1445c24cbcb6c74\", \"width\": 108, \"height\": 10}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5c10e0ab3c5c459950fd8b2b53afc9550ada288e\", \"width\": 216, \"height\": 20}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=04da7a02871577f68e7b8f226ace537039186d1f\", \"width\": 320, \"height\": 29}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5798b9ac875f896439e407b4be792746ac5af021\", \"width\": 640, \"height\": 59}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2a6b88d3275179016bbc16a31c84fab844a21611\", \"width\": 960, \"height\": 88}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ac41548df3abfb57153e76f1acf77aad1ea06881\", \"width\": 1080, \"height\": 100}], \"variants\": {}, \"id\": \"37BQwgGDDek1wnbE0TCNlewSvltCJFOhbRB1kfNUMhA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfqen\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"killroy200\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxfqen/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/ol16qrsw3q231.png\", \"subreddit_subscribers\": 704, \"created_utc\": 1559821258.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_j843ij2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"David baldeon\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bxetqt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/m3rUKYfsSdlyGoaGh5wvUvrM1c4STiyplCNdlfpQRhk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559843173.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"pbs.twimg.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?auto=webp\\u0026s=43c066330a06d2d8d5bca251a8a4811882c33423\", \"width\": 1840, \"height\": 2048}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0bdafd5b0f83d3ec2b33853ea6562f883e0397c2\", \"width\": 108, \"height\": 120}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1f2a430d8f9d494b3d60dab91709ae43cece167f\", \"width\": 216, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=0fe60b0fa60898cc650a2d809feb39a7d2ce2591\", \"width\": 320, \"height\": 356}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=77a93a8b1083aa79c8639a40bb83dd9872e1788e\", \"width\": 640, \"height\": 712}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=03aa15e18e660b2763ea2a3b471f9d19e083dd9b\", \"width\": 960, \"height\": 1068}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c7767c724137a83b643d47906adb4f9165dce0b0\", \"width\": 1080, \"height\": 1202}], \"variants\": {}, \"id\": \"5Tr0M7lNan8uCLe6JLeIcnoU05eiHN8ApgBANUjkHug\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxetqt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mothman232\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxetqt/david_baldeon/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://pbs.twimg.com/media/D7lJtTCXkAI0O3E.jpg:large\", \"subreddit_subscribers\": 704, \"created_utc\": 1559814373.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I CAN GO 15 SECONDS WITH ANYTHING. Howard looks like he is going to make doodie in his pants when GB hijacks his mic. Would GB walk away from this encounter if he bullied Howard in 2019? T O P L E S S\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bwsi3l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwsi3l\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Vkisu9g-VZo3thxeoTEh7_sHe6pgucV1XMkDjc08RY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559703482.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?auto=webp\\u0026s=3e2a10eb30c9a5b77b30a241735e3e8b8e1cfccc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a22b052dedffebf783ba26dae6003cd3c55a250\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcf039e2e79b58782dfd536386b50fa8b338f1d2\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=77375886fab998dde88f536da5c4503437f4c152\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"bdEz7hRKzTsVVn3Vyr7qozX0OUrbARsbBsUoqJKdw7M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwsi3l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\\u0026t=2s\", \"subreddit_subscribers\": 704, \"created_utc\": 1559674682.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_11r26z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Image test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bwl0fm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/kksd_8fx216qsy4gL0wzul47ods9QoCbZqBfN9_5nP8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559654591.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?auto=webp\\u0026s=ec79ffaf9e22e32c6e41f6946737e14d55a3b940\", \"width\": 2896, \"height\": 2896}, \"resolutions\": [{\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c3c8dfece59ca2a351d51df624d7beaabb02863c\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1b1a7dac32dd046927c2c8fc65bb58d81ac0c932\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3e8cd8af164b2b78530a4168875c3ab407422677\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=bf806ec58298e63494dd4d00966bde0c369f6c7a\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e8fc39dbf7e1348397f5a9836f13473aeff79ad1\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=86615f13d9764a381a194c798b715a78a43db6b6\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"xjLAgIF4juxLsEPnfXluO5CqMIQxaAYzHRiXsdAzPMg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwl0fm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Syclowave\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwl0fm/image_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/8mrszs4py9231.jpg\", \"subreddit_subscribers\": 704, \"created_utc\": 1559625791.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[France](#bar-10-blue) , via u/BuzzBuzz01\\n\\n#[](#icon-info-big) About\\n\\n - **Nickname(s)**: Les Bleues\\n\\n - **Women's World Cup Appearances**: 4\\n\\n - **Best Finish**: 4th (2001)\\n\\n - **FIFA Ranking**: 4 (3rd in Europe)\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nFrance has been building it's women's football for years on years on years. With parallels to men's team (which are addressed in the P.O.D) combined with being the hosts, is expected to at the very least contest in the final. After building up from the ground up year on year on year, this seems the exact right for them to be hosting the World Cup. They're excellent in every department, with strong centrebacks who can both play out the back, proven and experienced goal scorers up top, technical midfielders, and creative wingers. France has 12 wins in the last 13 matches since the SheBelievesCup (including 3-1 against Brazil, the USA and Japan and 4-0 against Denmark + one defeat against Germany 0-1). Is this the year that France finally puts it all together to become the first ever country to hold both the men's and women's World Cups?\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager:** Corinne Diacre (France)\\n\\n**Goalkeepers:** Sarah BOUHADDI (Olympique Lyonnais), Sol\\u00e8ne DURAND (EA Guingamp), Pauline PEYRAUD-MAGNIN (Arsenal)\\n\\n**Defenders:** Julie DEBEVER (EA Guingamp), Sakina KARCHAOUI (Montpellier HSC), Amel MAJRI (Olympique Lyonnais), Griedge MBOCK (Olympique Lyonnais), \\u00c8ve P\\u00c9RISSET (Paris Saint-Germain), Wendie RENARD (Olympique Lyonnais), Marion TORRENT (Montpellier HSC), A\\u00efssatou TOUNKARA (Atl\\u00e9tico Madrid)\\n\\n**Midfielders:** Charlotte BILBAULT (Paris FC), \\u00c9lise BUSSAGLIA (Dijon FCO), Ma\\u00e9va CLEMARON (FC Fleury 91), Grace GEYORO (Paris Saint-Germain), Amandine HENRY (Olympique Lyonnais), Ga\\u00ebtane THINEY (Paris FC)\\n\\n**Forwards:** Viviane ASSEYI (Girondins de Bordeaux), Delphine CASCARINO (Olympique Lyonnais), Kadidiatou DIANI (Paris Saint-Germain), Val\\u00e9rie GAUVIN (Montpellier HSC), Emelyne LAURENT (EA Guingamp), Eug\\u00e9nie LE SOMMER (Olympique Lyonnais)\\n\\n#[](#icon-whistle-big) [Potential Starting 11](https://imgur.com/a/hMH9Gy8)\\n\\n Bouhaddi\\n\\n Torrent Renard Mbock Bathy Majri\\n\\n Bussaglia Henry (C)\\n\\n Cascarino Thiney Diani\\n\\n Le Sommer\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n[Eug\\u00e9nie Le Sommer (ST):](https://cdn-media.rtl.fr/cache/YFtm3Fv-bsG7aM6_D8KqTw/880v587-0/online/image/2018/1228/7796070733_l-attaquante-francaise-eugenie-le-sommer-le-1er-septembre-2018.jpg)\\n\\nLe Sommer usually plays up top as the out and out striker and is without a doubt the star attacking player. With 74 goals in 159 caps, Le Sommer is only 7 goals off of being the country's all time top goal scorer. Le Sommer is not simply just some poacher and can score in a multitude of ways, whether with her fox-in-the-box instincts (either her feet or her head), ability to get past defenders with her adept dribbling, or just absolutely lacing one from outside the box, Le Sommer has it all.\\n\\n[Here is a short highlight video of hers](https://www.youtube.com/watch?v=CCC4eK4aEdA)\\n\\n\\n[Amandine Henry (DM)](https://c.static-nike.com/a/images/w_960,c_limit,f_auto/x7ycyrbgveskryrkkpyy/athlete-stories-amandine-henry.jpg)\\n\\nThe 29 year old captain has 83 appearances and 11 goals for the national team. With the ability to launch a belter outside the box, Henry is the calm metronome in midfield for France. If you were to compare her to a player it would have to be a prime Sergio Busquets. A very one-touch oriented style of play, Henry uses her calmness and series of fakes and feints to swivel and alleviate pressure with ease. And if she does somehow manage to lose the ball, she's quick and strong to recover and win it back.\\n\\n[Here is a featurette on Henry done by France's official YouTube channel](https://www.youtube.com/watch?v=YMUzaTan7mM)\\n\\n[Here is a Henry highlight video in France's 3-1 win over the USA in January](https://www.youtube.com/watch?v=ry4Ed25fCu8)\\n\\nQuite literally the heart of the midfielder and always in the right spot, Henry will play a key role for France. If they do happen to match up against the USA in the quarterfinal if all goes accepted, her matchup against Julie Ertz should definitely be one to watch out for.\\n\\n\\n[Wendie Renard (CB)](https://i.pinimg.com/originals/51/75/7f/51757f3bb7e30e196793fcf928a1e884.jpg)\\n\\nThe former captain, Renard is without a doubt one of the best defenders in the world. At 6'2\\\" (188 cm), Renard is one of the biggest and tallest players at the tournament, which makes a particular threat on set pieces in defence and attack, seen with her 12 goals in 26 matches across the league and Champions League with the oh so dominant Lyon. Though don't be fooled, Renard is not just a French Gareth McAuley, she also provides an excellent Plan B with her pinpoint long balls from the back. If a team happens to be pressuring France extensively, just get to Renard and she'll knock one into the channels or over the top with Bonnucci/van Dijk levels of precision.\\n\\n#[](#icon-discuss-big) Points of Discussion\\n\\n - **The Seeming Parallels to the Men's Team**\\nLet's look back at the discussion points surrounding the men's team. \\nManaged by a former player, Didier Deschamps for the men's and Corinne Diacre for the women, the latter of which became the first woman to manage a men's professional football match, when she took charge of Clermont Foot.\\nAbsolutely loaded with talent. experience plus up and coming stars\\nLeft some talent at home to try and fit together players who fit the system, in the case of the men's it was Lacazette and with the women's it's with Division 1 F\\u00e9minine's top goalscorer Marie-Antoinette Katoto, who had 22 goals in 22 games at only 20 years old\\nHaven't made nearly as far as they should have in previous tournaments and have lots of pressure to turn that around this time around, with the women having more pressure being the hosts\\n\\n\\n - **Lyon Dominant**\\nIf they trot out with the expected XI, seven of their starting XI are a part of the Champions League winning Lyon, who are blessed with stars from across the planet. Since Lyon put money into women's football quite early on, they've seemed to reap the benefits immensely. Lyon have won 13 straight league titles and 4 straight Champions League's. They scored 89 goals and allowed only 6 in 22 matches this season, going 20-2-0 and 62 points, and PSG were still hot on their tail with 57. With a core of players playing with one another week in week out, this is a definite positive heading into the tournament\\n\\n\\n- **Their Style of Play**\\nFrance are no one-dimensional team, being able to attack in a number of ways, with a particular emphasis on attacking the wings and overloading one side to make space in the middle to get to their goal scorers. The left overload is one to be particularly terrified of, as Henry drifts out to the channels to support an overlapping Majri, who is one of the most technically gifted defenders at the tournament, coupled with Diani and Thiney, a combination of very high skilled players that teams will be forced to double up with, leaving the deadly Le Sommer room to manuever in and around the box\\n\\nOther players to look out for include Amel Majri (LB) , a converted midfielder turned fullback, and with her technical ability making her one of if not the best in her position, Delphine Cascarino (RW) a typical young tricky winger who loves a little stepover or two, and the experienced 33 year old Ga\\u00ebtane Thiney (AM), who has 155 caps and 58 goals for Les Blues\\n\\n---\\n\\n[South Korea](#bar-10-red) , via u/loser0001\\n\\n#[](#icon-info-big) About\\n\\n- **Nickname(s)**: Taegeuk Ladies\\n\\n- **Appearances**: 2\\n\\n- **Best Finish**: Round of 16 (2015)\\n\\n- **FIFA Ranking**: 14\\n\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nSouth Korea women's team played their first international in 1990, when they were unsurprisingly hammered by Japan in what remains their heaviest-ever defeat. Thankfully things have improved since then. In more recent history, they finished runners-up in their group at the 2015 World Cup, behind Brazil but ahead of Costa Rica and Spain; in the Round of 16 they were knocked out by future 2019 opponents France.\\n\\n**Route to the 2019 World Cup**\\n\\nTL;DR: North South Korea best Korea\\n\\nI'm sure there are a few stories in this World Cup of teams qualifying against the odds, but South Korea's may be up there, amid unusual circumstances.\\n\\nFor background, the Asian Football Confederation (AFC) has 5 spots for the World Cup. Qualification is done via the AFC's regional tournament - the Asian Cup - held every four years, in the year before the World Cup. That makes qualification for the Asian Cup doubly important - miss out on qualifying for the Asian Cup, and you absolutely won't be going to the World Cup.\\n\\nIn the 2017 Asian Cup qualifying, South Korea were the top seeds ahead of the group draw (Japan, Australia, and China were the 1-2-3 of the previous Asian Cup and so did not participate in qualifying). Rather than the standard home and away fixtures, all group games are played in a selected 'host nation' with just 2 or 3 days rest in between games. Only the group winner qualifies for the Asian Cup proper.\\n\\nSouth Korea were drawn in a group with North Korea, then ranked #10 in the world, 7 places above them in the FIFA rankings. To make matters worse, North Korea were the selected host nation and would be playing all games on home soil. Unlucky to say the least, but how did this happen if South Korea were the top seeds?\\nFollowing the North Korean doping scandal in 2011, North Korea were banned from participating in the 2015 World Cup, and the 2014 Asian Cup (and qualifying). Because they hadn't taken part in the previous Asian Cup at all, they had the lowest seeding, being drawn from pot 5.\\n\\nBoth North and South Korea won their early group games comfortably. For the probable group-deciding match against each other, I could find exactly two highlights videos, corresponding to the respective North and South Korean broadcasts of the match. The South Korean source has an interesting camera angle but I recommend watching just the start to see the atmosphere created by a few tens of thousand of well-co-ordinated North Korean fans (attendance was reported to be 42,500). The North Korean source is in some ways much better - it has replays, alternate angles, and commentary - but the video quality makes it look like it's from a broadcast in the 90's. If you want to watch this one, the goals are at 29:00 and 51:20. There's also a penalty given and saved starting from 6:00. The match finished 1-1.\\n\\nThose were the only goals that either Korea would concede, and in the end it was South Korea that topped the group with a goal difference of +20 to North Korea's +17.\\n\\nIn the 2018 Asian Cup South Korea were once again slightly unlucky with their group draw, finding themselves with both Australia and Japan. They drew against both and finished level on points with both, but found themselves in 3rd place based on goal difference and goals scored. Thankfully this was enough to get them to a play-off against Phillipines for that last World Cup spot, whom they dispatched 5-0.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\nThe majority of the national team play their club football in the domestic WK League, with two playing in England's WSL and one in Japan. Incheon Red Angels are the dominant force in Korea, having won the past 6 league titles and are on course to make that 7 this season.\\n\\nThe team has a handful of players who were part of the U-17 World Cup winning squad from 2010.\\n\\n**Manager**: Yoon Deok-yeo (South Korea)\\n\\n**Goalkeepers:** Kang Ga-ae (Gumi), Jung Bo-ram (Hwacheon), \\tKim Min-jeong (Incheon)\\n\\n**Defenders:** Kim Hye-ri (Incheon), Shin Dam-yeong (Incheon), Lim Seon-joo (Incheon), Lee Eun-mi (Suwon), Kim Do-yeon (Incheon), Jang Sel-gi (Incheon), Jeong Yeong-a (Gyeonju), Hwang Bo-ram (Hwacheon)\\n\\n**Midfielders:** Lee Young-ju (Incheon), Kang Yu-mi (Hwacheon), Lee So-dam (Incheon), Moon Mi-ra (Suwon), Cho So-hyun (West Ham), Lee Min-a (INAC Kobe), Kang Chae-rim (Incheon)\\n\\n**Forwards:** Jung Seol-bin (Incheon), Ji So-yun (Chelsea), Lee Geum-min (Gyeonju), Yeo Min-ji (Suwon), Son Hwa-yeon (Changnyeon)\\n\\n#[](#icon-whistle-big) [Potential Starting 11](https://i.imgur.com/ejiZpWV.jpg)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**[Ji So-yun](http://photo.hankooki.com/newsphoto/v001/2019/04/09/holic20190409183756_P_02_C_1.jpg)**: Korean prodigy - youngest senior national team debut and goal, both at the age of 15, and highest ever goal scorer (54 in 116 appearances). Unusual in that she did not start her senior club career in Korea, being signed early by INAC Kobe Leonessa. In her 3 years in Japan she won three League titles, and just before leaving for Chelsea she managed to score against them in the final of the International Women's Club Championship (Japan's attempt to get a Club World Cup going). Since moving to England with Chelsea, she has added another few titles to the collection, and is a regular nominee and occasional winner for PFA player of the year. Has excellent dead ball skills and is just generally a class above. Is hugely important to the team - more so than Son Heung-min is to the men's team.\\n\\n**[Cho So-hyun](https://img.sbs.co.kr/newimg/news/20181229/201266238_1280.jpg)**: Korea's captain and most capped player ever with 121 appearances. Spent the majority of her career with Incheon in the WK League, but in the past few years has played in Japan, Norway, and signed for West Ham at the start of 2019. Usually plays as DM between the defensive and midfield lines. The coach has sometimes started her in a CB position for extra reliability, but midfield is her natural position.\\n\\n---\\n\\n\\n#[](#icon-discuss-big) Points of Discussion\\n\\n - **Norway**\\n\\nThe main point of discussion is trying to work out how good this South Korean team really is. They didn't actually lose a single game during qualifying, drawing with teams who on paper were much better - North Korea, Australia, and Japan. This has seen their FIFA ranking steadily rise, and I'm not sure if it has settled on its 'true' value yet. Progressing to the group stage again is the target for this team, and to do that, picking up points against Norway is probably required. To get a win against Norway and take the 2nd spot (barring any other upsets in the group) would be enough to label this World Cup a success.\\n\\nThe focus on Norway is evident in their pre-tournament friendlies, as they arranged two matches against Iceland and two against Sweden under the assumption that the Northern European teams will have a similar physicality to their game. In the first game against Iceland, Korea were dominant, and yet lost 3-2 as Iceland scored with their only 3 attempts on goal (to Korea's 22 shots), leading the coach to rather publicly bemoan the state of his goalkeepers and defence. At least in the goalkeeper department, his hand has been forced as veteran keeper Kim Jung-mi suffered an Achilles tendon injury in training.\\n\\n - **Future retirements?**\\n\\n\\nThis is now just my personal speculation, but the two current stars Ji So-yun and Cho So-hyun are now 28 and 30 respectively, and while they may still play in another World Cup, they also may not. With these two being so important to the team, could this be the peak of this generation of players? A lot of the current core of players are hovering around 26/27 years old, standout fullback Jang Sel-gi (KFA player of the year 2018) is 25. If South Korea won't be fielding a team of 30-year-olds in 4 years time, the team will look very different, and it's not clear who the young rising stars are now.\\n\\n---\\n\\n[Norway](#bar-10-red) , via u/Crusarius28\\n\\n#[](#icon-info-big) About\\n\\n- **Appearances**: 7 (All Editions)\\n\\n- **Best Finish**: Champions (1995)\\n\\n- **FIFA Ranking**: 12\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nFormer World and Olympic Champions Norway have fallen from power in the past decade. The team comes to France with big expectations after having qualified for another World Cup in dramatic fashion. The Norwegians left it all to the last match-day and had to earn a hard fought victory over EURO Champions Netherlands to earn automatic qualification.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager**: Martin Sjogren (Sweden)\\n\\n**Goalkeepers:** Ingrid Hjelmseth (Stabaek), Cecilie Fiskerstrand (LSK), Oda Bogstad (Arna-Bjomar)\\n\\n**Defenders:** Ingrid Wold (LSK), Maria Thorisdottir (Chelsea), Stine Hovland (Sandviken), Maren Mjelde (Chelsea), Cecilie Kvamme (Sandviken)\\n\\n**Midfielders:** Synne Hansen (LSK), Vilde Boe Risa (Kopparbergs), Caroline Hansen (Wolfsburg/Barca), Ingrid Engen (LSK), Guro Reiten (LSK), Kristine Minde (Wolfsburg), Frida Maanum (Linkoping), Karina Saevik (Kolbotn)\\n\\n**Forwards:** Elise Thorsnes (LSK), Isabell Herlovsen (Kotbotn), Lisa-Marie Utland (Rosengard), Therese Asland (LSK), amalie Eikeland (Sandviken), Emilie Haavi (LSK), Emilie Nautnes (Arna-Bjonar)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**Caroline Graham Hansen:** Completing a move to Barcelona just weeks before appearing in her first World Cup, Hansen will be Noway's most important player. The 24 yr old is the full midfield package that can control games, deliver pin point passes and score whenever needed. Ruled out of the 2015 World Cup due to a knee injury, she's back and stronger than ever. Forming a team around this future superstar was one of the headaches Coach Sjogren had this year, but it's a good headache to have.\\n\\n**Isabell Herlovsen:** 30 yr old Herlovsen is a constant goal threat. The brunt of all goals scored will be on Herlovsen's shoulders this summer. Her uncanny sense to be at the right place at the right time has paid dividends, including scoring the winner in the decider against the Netherlands. Her finishing skills will be a major key for Norway's progression.\\n\\n---\\n\\n#[](#icon-discuss) Points of Discussion\\n\\n**Turning Experience into Results**\\n\\nNorway are no strangers to winning and a realistic goal this year will be to get a medal. High expectations come from a storied past but following in the footsteps of legends proves no easy task. In terms of quality, Norway aren't able to best the top teams, but are certainly best of the rest and managing to utilize all their experience and hunger to put together performances early on versus Nigeria and France in the toughest qualifying group will be important to building momentum for Norway.\\n\\n**Defense**\\n\\nDefense wins championships, and true to the old adage, Norway's defense will be key. Chelsea duo Mjelde and Thorisd\\u00f3ttir are important in the back but Thorisdottir has missed half the season due to injury and may not be fully fit. Mjelde's responsibilities will extend to organizing the midfield during transitions, even more importantly as she herself likes to get forward and score goals. She's scored 19 goals for Norway from the fullback position thus far.\\n\\n**Ada Hedgerberg**\\n\\nThe world's best female player Ada Hedgerberg has refused to play for Norway since 2017 (think Messi refusing to play for Argentina), and the current team has done well to step up in her absence. While Hedgerberg has taken headlines this summer due to her stance on the treatment of women's footballers in Norway, the team has to continue doing what they've been doing for the past two years and not let any of the new found media attention affect their performances.\\n\\n---\\n[Nigeria](#bar-10-green) , via u/Crusarius28\\n\\n#[](#icon-info-big) About\\n\\n- **Appearances**: 7 (All Editions)\\n\\n- **Best Finish**: Quarter Finals (1999)\\n\\n- **FIFA Ranking**: 38\\n\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nNigeria have dominated Africa with 9 out of 11 Women's African Cup of Nations. But turning continental results into intercontinental ones proves tough, they haven't progressed past the group stages since 1999. Their search for more will be toughened by the hardest group in the World Cup with games versus France, Nigeria and Norway proving a major hurdle.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager**: Thoms Dennerby (Sweden)\\n\\n**Goalkeepers:** Tochukwu Oluehi (Rivers Angels), Chiamaka Nnadozie (Rivers Angels), Alaba Jonathan (Bayelsa Queens)\\n\\n**Defenders:** Osinachi Ohale (Vaxjo), Ngozi Ebere (Arna-Bjomar), Onome Ebi (Henan Huishang), Faith Michael (Pitea), Chidinma Okeke (Robo Queens)\\n\\n**Midfielders:** Amarachi Okoronkwo (Nasarawa Amazons), Evelyn Nwabuoku (Rivers Angels), Rita Chikwelu (Kristianstads), Ngozi Okobi-Okeoghene (Eskilstuna Utd), Halimatu Ayinde (Eskilstuna Utd), oganna Chukwudi (Djurgarden)\\n\\n**Forwards:** Anam Imo (Rosengard), Asisat Oshoala (Barcelona), Desire oparanozie (Guingamp), Chinaza Uchendu (Braga), Uchenna Kanu (Southeastern Fire), Rasheedat Ajibade (Avaldsnes), Francisca Ordega (Shangai), Chinwendu Ihezuo (Henan Huishang), Alice Ogebe (Rivers Angels)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**Asisat Oshoala:** \\u201cSuperzee\\u201d has added Women's African Footballer of the Year award to her title. Three time Women's African Footballer of the year in fact. Her clinical ability in front of goal, raw pace and power put her on the map back in 2014 and now she's leading the line at Barcelona and helping them to their first ever Women's Champions League Final in history.\\n\\n**Onome Ebi:** Playing in China hasn't hampered the 36yr old Nigerian. Her game reading and anticipation makes her a striker's nightmare. Add that to her supreme strength and you have a player that can shut down all but the fastest forwards in the game. Ebi will be representing the Super Eagles for the 5th time this summer.\\n\\n---\\n\\n#[](#icon-discuss) Points of Discussion\\n\\n**Preparation for Tournaments**\\n\\nThe Ladies of Nigeria have been underfunded and their tournament preparations have always been the absolute minimum if non existent. They went 2 full years without playing a game from May 2016 to April 2018, months before the next major tournament. They've fixed that issue this time around and have participated in several tournaments, friendlies and training camps that hopefully give them the push they need to defeat the group stage this time around.\\n\\n**Set Pieces and Defensive Gaps**\\n\\nThe Nigerians play a high defensive line and leave gaps but yet they only conceded 1 goal the entire AFCON tournament in 2018. Plugging those holes are important but recent friendlies and showings at the Algarve Cup exposed a weakness to set pieces as well. Ebi is 36 yrs old and even though her mind is quick, her feet are not and it will be the responsibility of the midfield to plug the gaps and not allow teams to get the ball to their forwards looking to make run behind.\\n\\n**Quick Transitions**\\n\\nThe midfield not only has to cover for gaps but quickly move the ball forward during transitions to the forwards. Nigeria's strengths and speed comes from their star strikers and they'll get the ball at every opportunity. Their top heavy system works when the ball is constantly up the pitch to the final third where their creative offense can shine.\", \"author_fullname\": \"t2_pasw0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"2019 Women's World Cup Group A Profile: France, South Korea, Norway, Nigeria\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwkei5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559621947.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559650215.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-blue\\\"\\u003EFrance\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/BuzzBuzz01\\\"\\u003Eu/BuzzBuzz01\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ENickname(s)\\u003C/strong\\u003E: Les Bleues\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWomen\\u0026#39;s World Cup Appearances\\u003C/strong\\u003E: 4\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: 4th (2001)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 4 (3rd in Europe)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFrance has been building it\\u0026#39;s women\\u0026#39;s football for years on years on years. With parallels to men\\u0026#39;s team (which are addressed in the P.O.D) combined with being the hosts, is expected to at the very least contest in the final. After building up from the ground up year on year on year, this seems the exact right for them to be hosting the World Cup. They\\u0026#39;re excellent in every department, with strong centrebacks who can both play out the back, proven and experienced goal scorers up top, technical midfielders, and creative wingers. France has 12 wins in the last 13 matches since the SheBelievesCup (including 3-1 against Brazil, the USA and Japan and 4-0 against Denmark + one defeat against Germany 0-1). Is this the year that France finally puts it all together to become the first ever country to hold both the men\\u0026#39;s and women\\u0026#39;s World Cups?\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager:\\u003C/strong\\u003E Corinne Diacre (France)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Sarah BOUHADDI (Olympique Lyonnais), Sol\\u00e8ne DURAND (EA Guingamp), Pauline PEYRAUD-MAGNIN (Arsenal)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Julie DEBEVER (EA Guingamp), Sakina KARCHAOUI (Montpellier HSC), Amel MAJRI (Olympique Lyonnais), Griedge MBOCK (Olympique Lyonnais), \\u00c8ve P\\u00c9RISSET (Paris Saint-Germain), Wendie RENARD (Olympique Lyonnais), Marion TORRENT (Montpellier HSC), A\\u00efssatou TOUNKARA (Atl\\u00e9tico Madrid)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Charlotte BILBAULT (Paris FC), \\u00c9lise BUSSAGLIA (Dijon FCO), Ma\\u00e9va CLEMARON (FC Fleury 91), Grace GEYORO (Paris Saint-Germain), Amandine HENRY (Olympique Lyonnais), Ga\\u00ebtane THINEY (Paris FC)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Viviane ASSEYI (Girondins de Bordeaux), Delphine CASCARINO (Olympique Lyonnais), Kadidiatou DIANI (Paris Saint-Germain), Val\\u00e9rie GAUVIN (Montpellier HSC), Emelyne LAURENT (EA Guingamp), Eug\\u00e9nie LE SOMMER (Olympique Lyonnais)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-whistle-big\\\"\\u003E\\u003C/a\\u003E \\u003Ca href=\\\"https://imgur.com/a/hMH9Gy8\\\"\\u003EPotential Starting 11\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Bouhaddi\\n\\n Torrent Renard Mbock Bathy Majri\\n\\n Bussaglia Henry (C)\\n\\n Cascarino Thiney Diani\\n\\n Le Sommer\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cdn-media.rtl.fr/cache/YFtm3Fv-bsG7aM6_D8KqTw/880v587-0/online/image/2018/1228/7796070733_l-attaquante-francaise-eugenie-le-sommer-le-1er-septembre-2018.jpg\\\"\\u003EEug\\u00e9nie Le Sommer (ST):\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELe Sommer usually plays up top as the out and out striker and is without a doubt the star attacking player. With 74 goals in 159 caps, Le Sommer is only 7 goals off of being the country\\u0026#39;s all time top goal scorer. Le Sommer is not simply just some poacher and can score in a multitude of ways, whether with her fox-in-the-box instincts (either her feet or her head), ability to get past defenders with her adept dribbling, or just absolutely lacing one from outside the box, Le Sommer has it all.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=CCC4eK4aEdA\\\"\\u003EHere is a short highlight video of hers\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://c.static-nike.com/a/images/w_960,c_limit,f_auto/x7ycyrbgveskryrkkpyy/athlete-stories-amandine-henry.jpg\\\"\\u003EAmandine Henry (DM)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe 29 year old captain has 83 appearances and 11 goals for the national team. With the ability to launch a belter outside the box, Henry is the calm metronome in midfield for France. If you were to compare her to a player it would have to be a prime Sergio Busquets. A very one-touch oriented style of play, Henry uses her calmness and series of fakes and feints to swivel and alleviate pressure with ease. And if she does somehow manage to lose the ball, she\\u0026#39;s quick and strong to recover and win it back.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=YMUzaTan7mM\\\"\\u003EHere is a featurette on Henry done by France\\u0026#39;s official YouTube channel\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=ry4Ed25fCu8\\\"\\u003EHere is a Henry highlight video in France\\u0026#39;s 3-1 win over the USA in January\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuite literally the heart of the midfielder and always in the right spot, Henry will play a key role for France. If they do happen to match up against the USA in the quarterfinal if all goes accepted, her matchup against Julie Ertz should definitely be one to watch out for.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.pinimg.com/originals/51/75/7f/51757f3bb7e30e196793fcf928a1e884.jpg\\\"\\u003EWendie Renard (CB)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe former captain, Renard is without a doubt one of the best defenders in the world. At 6\\u0026#39;2\\u0026quot; (188 cm), Renard is one of the biggest and tallest players at the tournament, which makes a particular threat on set pieces in defence and attack, seen with her 12 goals in 26 matches across the league and Champions League with the oh so dominant Lyon. Though don\\u0026#39;t be fooled, Renard is not just a French Gareth McAuley, she also provides an excellent Plan B with her pinpoint long balls from the back. If a team happens to be pressuring France extensively, just get to Renard and she\\u0026#39;ll knock one into the channels or over the top with Bonnucci/van Dijk levels of precision.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss-big\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EThe Seeming Parallels to the Men\\u0026#39;s Team\\u003C/strong\\u003E\\nLet\\u0026#39;s look back at the discussion points surrounding the men\\u0026#39;s team. \\nManaged by a former player, Didier Deschamps for the men\\u0026#39;s and Corinne Diacre for the women, the latter of which became the first woman to manage a men\\u0026#39;s professional football match, when she took charge of Clermont Foot.\\nAbsolutely loaded with talent. experience plus up and coming stars\\nLeft some talent at home to try and fit together players who fit the system, in the case of the men\\u0026#39;s it was Lacazette and with the women\\u0026#39;s it\\u0026#39;s with Division 1 F\\u00e9minine\\u0026#39;s top goalscorer Marie-Antoinette Katoto, who had 22 goals in 22 games at only 20 years old\\nHaven\\u0026#39;t made nearly as far as they should have in previous tournaments and have lots of pressure to turn that around this time around, with the women having more pressure being the hosts\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELyon Dominant\\u003C/strong\\u003E\\nIf they trot out with the expected XI, seven of their starting XI are a part of the Champions League winning Lyon, who are blessed with stars from across the planet. Since Lyon put money into women\\u0026#39;s football quite early on, they\\u0026#39;ve seemed to reap the benefits immensely. Lyon have won 13 straight league titles and 4 straight Champions League\\u0026#39;s. They scored 89 goals and allowed only 6 in 22 matches this season, going 20-2-0 and 62 points, and PSG were still hot on their tail with 57. With a core of players playing with one another week in week out, this is a definite positive heading into the tournament\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ETheir Style of Play\\u003C/strong\\u003E\\nFrance are no one-dimensional team, being able to attack in a number of ways, with a particular emphasis on attacking the wings and overloading one side to make space in the middle to get to their goal scorers. The left overload is one to be particularly terrified of, as Henry drifts out to the channels to support an overlapping Majri, who is one of the most technically gifted defenders at the tournament, coupled with Diani and Thiney, a combination of very high skilled players that teams will be forced to double up with, leaving the deadly Le Sommer room to manuever in and around the box\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EOther players to look out for include Amel Majri (LB) , a converted midfielder turned fullback, and with her technical ability making her one of if not the best in her position, Delphine Cascarino (RW) a typical young tricky winger who loves a little stepover or two, and the experienced 33 year old Ga\\u00ebtane Thiney (AM), who has 155 caps and 58 goals for Les Blues\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-red\\\"\\u003ESouth Korea\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/loser0001\\\"\\u003Eu/loser0001\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ENickname(s)\\u003C/strong\\u003E: Taegeuk Ladies\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 2\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Round of 16 (2015)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 14\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ESouth Korea women\\u0026#39;s team played their first international in 1990, when they were unsurprisingly hammered by Japan in what remains their heaviest-ever defeat. Thankfully things have improved since then. In more recent history, they finished runners-up in their group at the 2015 World Cup, behind Brazil but ahead of Costa Rica and Spain; in the Round of 16 they were knocked out by future 2019 opponents France.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERoute to the 2019 World Cup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETL;DR: North South Korea best Korea\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sure there are a few stories in this World Cup of teams qualifying against the odds, but South Korea\\u0026#39;s may be up there, amid unusual circumstances.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor background, the Asian Football Confederation (AFC) has 5 spots for the World Cup. Qualification is done via the AFC\\u0026#39;s regional tournament - the Asian Cup - held every four years, in the year before the World Cup. That makes qualification for the Asian Cup doubly important - miss out on qualifying for the Asian Cup, and you absolutely won\\u0026#39;t be going to the World Cup.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the 2017 Asian Cup qualifying, South Korea were the top seeds ahead of the group draw (Japan, Australia, and China were the 1-2-3 of the previous Asian Cup and so did not participate in qualifying). Rather than the standard home and away fixtures, all group games are played in a selected \\u0026#39;host nation\\u0026#39; with just 2 or 3 days rest in between games. Only the group winner qualifies for the Asian Cup proper.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESouth Korea were drawn in a group with North Korea, then ranked #10 in the world, 7 places above them in the FIFA rankings. To make matters worse, North Korea were the selected host nation and would be playing all games on home soil. Unlucky to say the least, but how did this happen if South Korea were the top seeds?\\nFollowing the North Korean doping scandal in 2011, North Korea were banned from participating in the 2015 World Cup, and the 2014 Asian Cup (and qualifying). Because they hadn\\u0026#39;t taken part in the previous Asian Cup at all, they had the lowest seeding, being drawn from pot 5.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth North and South Korea won their early group games comfortably. For the probable group-deciding match against each other, I could find exactly two highlights videos, corresponding to the respective North and South Korean broadcasts of the match. The South Korean source has an interesting camera angle but I recommend watching just the start to see the atmosphere created by a few tens of thousand of well-co-ordinated North Korean fans (attendance was reported to be 42,500). The North Korean source is in some ways much better - it has replays, alternate angles, and commentary - but the video quality makes it look like it\\u0026#39;s from a broadcast in the 90\\u0026#39;s. If you want to watch this one, the goals are at 29:00 and 51:20. There\\u0026#39;s also a penalty given and saved starting from 6:00. The match finished 1-1.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThose were the only goals that either Korea would concede, and in the end it was South Korea that topped the group with a goal difference of +20 to North Korea\\u0026#39;s +17.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the 2018 Asian Cup South Korea were once again slightly unlucky with their group draw, finding themselves with both Australia and Japan. They drew against both and finished level on points with both, but found themselves in 3rd place based on goal difference and goals scored. Thankfully this was enough to get them to a play-off against Phillipines for that last World Cup spot, whom they dispatched 5-0.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EThe majority of the national team play their club football in the domestic WK League, with two playing in England\\u0026#39;s WSL and one in Japan. Incheon Red Angels are the dominant force in Korea, having won the past 6 league titles and are on course to make that 7 this season.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe team has a handful of players who were part of the U-17 World Cup winning squad from 2010.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Yoon Deok-yeo (South Korea)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Kang Ga-ae (Gumi), Jung Bo-ram (Hwacheon), Kim Min-jeong (Incheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Kim Hye-ri (Incheon), Shin Dam-yeong (Incheon), Lim Seon-joo (Incheon), Lee Eun-mi (Suwon), Kim Do-yeon (Incheon), Jang Sel-gi (Incheon), Jeong Yeong-a (Gyeonju), Hwang Bo-ram (Hwacheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Lee Young-ju (Incheon), Kang Yu-mi (Hwacheon), Lee So-dam (Incheon), Moon Mi-ra (Suwon), Cho So-hyun (West Ham), Lee Min-a (INAC Kobe), Kang Chae-rim (Incheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Jung Seol-bin (Incheon), Ji So-yun (Chelsea), Lee Geum-min (Gyeonju), Yeo Min-ji (Suwon), Son Hwa-yeon (Changnyeon)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-whistle-big\\\"\\u003E\\u003C/a\\u003E \\u003Ca href=\\\"https://i.imgur.com/ejiZpWV.jpg\\\"\\u003EPotential Starting 11\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"http://photo.hankooki.com/newsphoto/v001/2019/04/09/holic20190409183756_P_02_C_1.jpg\\\"\\u003EJi So-yun\\u003C/a\\u003E\\u003C/strong\\u003E: Korean prodigy - youngest senior national team debut and goal, both at the age of 15, and highest ever goal scorer (54 in 116 appearances). Unusual in that she did not start her senior club career in Korea, being signed early by INAC Kobe Leonessa. In her 3 years in Japan she won three League titles, and just before leaving for Chelsea she managed to score against them in the final of the International Women\\u0026#39;s Club Championship (Japan\\u0026#39;s attempt to get a Club World Cup going). Since moving to England with Chelsea, she has added another few titles to the collection, and is a regular nominee and occasional winner for PFA player of the year. Has excellent dead ball skills and is just generally a class above. Is hugely important to the team - more so than Son Heung-min is to the men\\u0026#39;s team.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"https://img.sbs.co.kr/newimg/news/20181229/201266238_1280.jpg\\\"\\u003ECho So-hyun\\u003C/a\\u003E\\u003C/strong\\u003E: Korea\\u0026#39;s captain and most capped player ever with 121 appearances. Spent the majority of her career with Incheon in the WK League, but in the past few years has played in Japan, Norway, and signed for West Ham at the start of 2019. Usually plays as DM between the defensive and midfield lines. The coach has sometimes started her in a CB position for extra reliability, but midfield is her natural position.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss-big\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ENorway\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThe main point of discussion is trying to work out how good this South Korean team really is. They didn\\u0026#39;t actually lose a single game during qualifying, drawing with teams who on paper were much better - North Korea, Australia, and Japan. This has seen their FIFA ranking steadily rise, and I\\u0026#39;m not sure if it has settled on its \\u0026#39;true\\u0026#39; value yet. Progressing to the group stage again is the target for this team, and to do that, picking up points against Norway is probably required. To get a win against Norway and take the 2nd spot (barring any other upsets in the group) would be enough to label this World Cup a success.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe focus on Norway is evident in their pre-tournament friendlies, as they arranged two matches against Iceland and two against Sweden under the assumption that the Northern European teams will have a similar physicality to their game. In the first game against Iceland, Korea were dominant, and yet lost 3-2 as Iceland scored with their only 3 attempts on goal (to Korea\\u0026#39;s 22 shots), leading the coach to rather publicly bemoan the state of his goalkeepers and defence. At least in the goalkeeper department, his hand has been forced as veteran keeper Kim Jung-mi suffered an Achilles tendon injury in training.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFuture retirements?\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThis is now just my personal speculation, but the two current stars Ji So-yun and Cho So-hyun are now 28 and 30 respectively, and while they may still play in another World Cup, they also may not. With these two being so important to the team, could this be the peak of this generation of players? A lot of the current core of players are hovering around 26/27 years old, standout fullback Jang Sel-gi (KFA player of the year 2018) is 25. If South Korea won\\u0026#39;t be fielding a team of 30-year-olds in 4 years time, the team will look very different, and it\\u0026#39;s not clear who the young rising stars are now.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-red\\\"\\u003ENorway\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/Crusarius28\\\"\\u003Eu/Crusarius28\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 7 (All Editions)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Champions (1995)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 12\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFormer World and Olympic Champions Norway have fallen from power in the past decade. The team comes to France with big expectations after having qualified for another World Cup in dramatic fashion. The Norwegians left it all to the last match-day and had to earn a hard fought victory over EURO Champions Netherlands to earn automatic qualification.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Martin Sjogren (Sweden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Ingrid Hjelmseth (Stabaek), Cecilie Fiskerstrand (LSK), Oda Bogstad (Arna-Bjomar)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Ingrid Wold (LSK), Maria Thorisdottir (Chelsea), Stine Hovland (Sandviken), Maren Mjelde (Chelsea), Cecilie Kvamme (Sandviken)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Synne Hansen (LSK), Vilde Boe Risa (Kopparbergs), Caroline Hansen (Wolfsburg/Barca), Ingrid Engen (LSK), Guro Reiten (LSK), Kristine Minde (Wolfsburg), Frida Maanum (Linkoping), Karina Saevik (Kolbotn)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Elise Thorsnes (LSK), Isabell Herlovsen (Kotbotn), Lisa-Marie Utland (Rosengard), Therese Asland (LSK), amalie Eikeland (Sandviken), Emilie Haavi (LSK), Emilie Nautnes (Arna-Bjonar)\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECaroline Graham Hansen:\\u003C/strong\\u003E Completing a move to Barcelona just weeks before appearing in her first World Cup, Hansen will be Noway\\u0026#39;s most important player. The 24 yr old is the full midfield package that can control games, deliver pin point passes and score whenever needed. Ruled out of the 2015 World Cup due to a knee injury, she\\u0026#39;s back and stronger than ever. Forming a team around this future superstar was one of the headaches Coach Sjogren had this year, but it\\u0026#39;s a good headache to have.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EIsabell Herlovsen:\\u003C/strong\\u003E 30 yr old Herlovsen is a constant goal threat. The brunt of all goals scored will be on Herlovsen\\u0026#39;s shoulders this summer. Her uncanny sense to be at the right place at the right time has paid dividends, including scoring the winner in the decider against the Netherlands. Her finishing skills will be a major key for Norway\\u0026#39;s progression.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETurning Experience into Results\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENorway are no strangers to winning and a realistic goal this year will be to get a medal. High expectations come from a storied past but following in the footsteps of legends proves no easy task. In terms of quality, Norway aren\\u0026#39;t able to best the top teams, but are certainly best of the rest and managing to utilize all their experience and hunger to put together performances early on versus Nigeria and France in the toughest qualifying group will be important to building momentum for Norway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefense\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDefense wins championships, and true to the old adage, Norway\\u0026#39;s defense will be key. Chelsea duo Mjelde and Thorisd\\u00f3ttir are important in the back but Thorisdottir has missed half the season due to injury and may not be fully fit. Mjelde\\u0026#39;s responsibilities will extend to organizing the midfield during transitions, even more importantly as she herself likes to get forward and score goals. She\\u0026#39;s scored 19 goals for Norway from the fullback position thus far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAda Hedgerberg\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe world\\u0026#39;s best female player Ada Hedgerberg has refused to play for Norway since 2017 (think Messi refusing to play for Argentina), and the current team has done well to step up in her absence. While Hedgerberg has taken headlines this summer due to her stance on the treatment of women\\u0026#39;s footballers in Norway, the team has to continue doing what they\\u0026#39;ve been doing for the past two years and not let any of the new found media attention affect their performances.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-green\\\"\\u003ENigeria\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/Crusarius28\\\"\\u003Eu/Crusarius28\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 7 (All Editions)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Quarter Finals (1999)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 38\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ENigeria have dominated Africa with 9 out of 11 Women\\u0026#39;s African Cup of Nations. But turning continental results into intercontinental ones proves tough, they haven\\u0026#39;t progressed past the group stages since 1999. Their search for more will be toughened by the hardest group in the World Cup with games versus France, Nigeria and Norway proving a major hurdle.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Thoms Dennerby (Sweden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Tochukwu Oluehi (Rivers Angels), Chiamaka Nnadozie (Rivers Angels), Alaba Jonathan (Bayelsa Queens)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Osinachi Ohale (Vaxjo), Ngozi Ebere (Arna-Bjomar), Onome Ebi (Henan Huishang), Faith Michael (Pitea), Chidinma Okeke (Robo Queens)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Amarachi Okoronkwo (Nasarawa Amazons), Evelyn Nwabuoku (Rivers Angels), Rita Chikwelu (Kristianstads), Ngozi Okobi-Okeoghene (Eskilstuna Utd), Halimatu Ayinde (Eskilstuna Utd), oganna Chukwudi (Djurgarden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Anam Imo (Rosengard), Asisat Oshoala (Barcelona), Desire oparanozie (Guingamp), Chinaza Uchendu (Braga), Uchenna Kanu (Southeastern Fire), Rasheedat Ajibade (Avaldsnes), Francisca Ordega (Shangai), Chinwendu Ihezuo (Henan Huishang), Alice Ogebe (Rivers Angels)\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAsisat Oshoala:\\u003C/strong\\u003E \\u201cSuperzee\\u201d has added Women\\u0026#39;s African Footballer of the Year award to her title. Three time Women\\u0026#39;s African Footballer of the year in fact. Her clinical ability in front of goal, raw pace and power put her on the map back in 2014 and now she\\u0026#39;s leading the line at Barcelona and helping them to their first ever Women\\u0026#39;s Champions League Final in history.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EOnome Ebi:\\u003C/strong\\u003E Playing in China hasn\\u0026#39;t hampered the 36yr old Nigerian. Her game reading and anticipation makes her a striker\\u0026#39;s nightmare. Add that to her supreme strength and you have a player that can shut down all but the fastest forwards in the game. Ebi will be representing the Super Eagles for the 5th time this summer.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPreparation for Tournaments\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Ladies of Nigeria have been underfunded and their tournament preparations have always been the absolute minimum if non existent. They went 2 full years without playing a game from May 2016 to April 2018, months before the next major tournament. They\\u0026#39;ve fixed that issue this time around and have participated in several tournaments, friendlies and training camps that hopefully give them the push they need to defeat the group stage this time around.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESet Pieces and Defensive Gaps\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Nigerians play a high defensive line and leave gaps but yet they only conceded 1 goal the entire AFCON tournament in 2018. Plugging those holes are important but recent friendlies and showings at the Algarve Cup exposed a weakness to set pieces as well. Ebi is 36 yrs old and even though her mind is quick, her feet are not and it will be the responsibility of the midfield to plug the gaps and not allow teams to get the ball to their forwards looking to make run behind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick Transitions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe midfield not only has to cover for gaps but quickly move the ball forward during transitions to the forwards. Nigeria\\u0026#39;s strengths and speed comes from their star strikers and they\\u0026#39;ll get the ball at every opportunity. Their top heavy system works when the ball is constantly up the pitch to the final third where their creative offense can shine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?auto=webp\\u0026s=8536a1bab8642c35f8f8ce6ff0d2c225f742f0df\", \"width\": 431, \"height\": 536}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5222659d4531a310385f7ad45a6a1bee0807dcf5\", \"width\": 108, \"height\": 134}, {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b0a822a359f7492a7b1263a92b9767518ec53b66\", \"width\": 216, \"height\": 268}, {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c3be09db027cef0fcc3a3b228935acf88e5d6893\", \"width\": 320, \"height\": 397}], \"variants\": {}, \"id\": \"dYE-hpAiNCPKZeSNCQxv6JlVTRpt6ovh8CLxMWBANYM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwkei5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"riskyrofl\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwkei5/2019_womens_world_cup_group_a_profile_france/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwkei5/2019_womens_world_cup_group_a_profile_france/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559621415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TEST TELATT ITEAT - DOSEA ALRJ AR A A ER A REEE ARE A? AERE?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bwhpb9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwhpb9\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Vkisu9g-VZo3thxeoTEh7_sHe6pgucV1XMkDjc08RY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559633760.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?auto=webp\\u0026s=3e2a10eb30c9a5b77b30a241735e3e8b8e1cfccc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a22b052dedffebf783ba26dae6003cd3c55a250\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcf039e2e79b58782dfd536386b50fa8b338f1d2\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=77375886fab998dde88f536da5c4503437f4c152\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"bdEz7hRKzTsVVn3Vyr7qozX0OUrbARsbBsUoqJKdw7M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwhpb9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwhpb9/test_telatt_iteat_dosea_alrj_ar_a_a_er_a_reee_are/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\", \"subreddit_subscribers\": 704, \"created_utc\": 1559604960.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://i.redd.it/n6wnbnoq68231.png\\n\\nWelcome to Eternal Aegis! We are a close-knit clan dedicated to keeping a casual, fun, and welcoming atmosphere. We strive to give our members the best clan experience Warframe has to offer. If you are interested in joining, please leave a comment below or message one of us in game!\\u00a0Here is our official Warframe clan group which you can join now:\\u00a0[https://forums.warframe.com/clubs/1730-eternal-aegis/](https://forums.warframe.com/clubs/1730-eternal-aegis/)\\n\\n# What We Offer\\n\\n* A very active, friendly, and helpful community\\n* An international community with members from all over the world. Most of our players are based in North America and Western Europe\\n* Large and well-designed dojo\\u00a0[Photos of our Dojo](https://imgur.com/a/h04Gk3N)\\n* 100% Completed Clan research\\n* Casually Competitive - we do well on leaderboards, and have no minimum quota for our members.\\u00a0[http://content.warframe.com/dynamic/hostileMergers.php](http://content.warframe.com/dynamic/hostileMergers.php)\\n* Eidolon hunting, Arbitrations, and other types of content are regularly hosted\\n* We are a Moon clan with over 980+ members at any time\\n* An organized discord server with alerts, guides, announcements, and more!\\n* We frequently host clan events, contests, and giveaways\\n* We are a member of the Moonlapse Alliance, a close-knit alliance with friendly clans.\\n\\n# Our Rules\\n\\n* Be polite and respect each other. Harassment, sexism, racism, bullying, and excessive profanity will not be tolerated.\\n* No Sexual, political, or obscene discussions in clan chat or discord.\\n* Our inactivity policy is 10\\u00a0days (members gone for longer can contact a mod).\\n* Currently, we require new recruits to be MR12+ (But friends of clanmates are only required to be MR8+).\\n\\n# Join Now!\\n\\nWe will need interested Tenno to comment below with the following information:\\n\\n1. Your in-game name\\n2. Your Mastery Rank (Note: Mastery Rank MR12+ is required but friends can join at MR 8+)\\n3. Your Region\\u00a0\\n4. The length of time you have been playing the game for\\n5. What you are looking for in a clan\\n6. How often are you able to play during a typical week\\n7. Have you been in a clan before? If so, which ones and why did you choose to leave?\\n\\nWe will respond as soon as possible! Reminder:\\u00a0Make sure you exit your clan before leaving a comment.\\n\\n# Contact List:\\n\\n\\\\--Aegis--Dandy\\u00a0| Nightressa | --Aegis--Paikoo | -OatGod- | Bhesus | --Aegis--Excalibur64 | Myzhari |\\u00a0Valkor | --Aegis--Dragunova2018 | Komi |\\u00a0Sebas\\\\_Sal12| --Aegis--Tetsuni | JohnSaint | ChaoticJiggles | Renzashi\\ufeff\", \"author_fullname\": \"t2_1gb0jvk5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[INT][PC][Clan] Eternal Aegis | 100% Research | 990+ Members | 10 Day Inactivity | MR12+ Req. | Complete Dojo | Active Discord | Organized Clan Events | Moonlapse Alliance\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"n6wnbnoq68231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 98, \"x\": 600, \"u\": \"https://i.redd.it/n6wnbnoq68231.png\"}, \"m\": \"image/png\", \"id\": \"n6wnbnoq68231\"}}, \"name\": \"t3_bwhl33\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/AdMg7EUd91sNRMaEDemva54vXtcz7xPbLvAxLgMqUVg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559633092.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/n6wnbnoq68231.png\\\"\\u003Ehttps://i.redd.it/n6wnbnoq68231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWelcome to Eternal Aegis! We are a close-knit clan dedicated to keeping a casual, fun, and welcoming atmosphere. We strive to give our members the best clan experience Warframe has to offer. If you are interested in joining, please leave a comment below or message one of us in game!\\u00a0Here is our official Warframe clan group which you can join now:\\u00a0\\u003Ca href=\\\"https://forums.warframe.com/clubs/1730-eternal-aegis/\\\"\\u003Ehttps://forums.warframe.com/clubs/1730-eternal-aegis/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EWhat We Offer\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EA very active, friendly, and helpful community\\u003C/li\\u003E\\n\\u003Cli\\u003EAn international community with members from all over the world. Most of our players are based in North America and Western Europe\\u003C/li\\u003E\\n\\u003Cli\\u003ELarge and well-designed dojo\\u00a0\\u003Ca href=\\\"https://imgur.com/a/h04Gk3N\\\"\\u003EPhotos of our Dojo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E100% Completed Clan research\\u003C/li\\u003E\\n\\u003Cli\\u003ECasually Competitive - we do well on leaderboards, and have no minimum quota for our members.\\u00a0\\u003Ca href=\\\"http://content.warframe.com/dynamic/hostileMergers.php\\\"\\u003Ehttp://content.warframe.com/dynamic/hostileMergers.php\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEidolon hunting, Arbitrations, and other types of content are regularly hosted\\u003C/li\\u003E\\n\\u003Cli\\u003EWe are a Moon clan with over 980+ members at any time\\u003C/li\\u003E\\n\\u003Cli\\u003EAn organized discord server with alerts, guides, announcements, and more!\\u003C/li\\u003E\\n\\u003Cli\\u003EWe frequently host clan events, contests, and giveaways\\u003C/li\\u003E\\n\\u003Cli\\u003EWe are a member of the Moonlapse Alliance, a close-knit alliance with friendly clans.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EOur Rules\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBe polite and respect each other. Harassment, sexism, racism, bullying, and excessive profanity will not be tolerated.\\u003C/li\\u003E\\n\\u003Cli\\u003ENo Sexual, political, or obscene discussions in clan chat or discord.\\u003C/li\\u003E\\n\\u003Cli\\u003EOur inactivity policy is 10\\u00a0days (members gone for longer can contact a mod).\\u003C/li\\u003E\\n\\u003Cli\\u003ECurrently, we require new recruits to be MR12+ (But friends of clanmates are only required to be MR8+).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EJoin Now!\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EWe will need interested Tenno to comment below with the following information:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EYour in-game name\\u003C/li\\u003E\\n\\u003Cli\\u003EYour Mastery Rank (Note: Mastery Rank MR12+ is required but friends can join at MR 8+)\\u003C/li\\u003E\\n\\u003Cli\\u003EYour Region\\u00a0\\u003C/li\\u003E\\n\\u003Cli\\u003EThe length of time you have been playing the game for\\u003C/li\\u003E\\n\\u003Cli\\u003EWhat you are looking for in a clan\\u003C/li\\u003E\\n\\u003Cli\\u003EHow often are you able to play during a typical week\\u003C/li\\u003E\\n\\u003Cli\\u003EHave you been in a clan before? If so, which ones and why did you choose to leave?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWe will respond as soon as possible! Reminder:\\u00a0Make sure you exit your clan before leaving a comment.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EContact List:\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E--Aegis--Dandy\\u00a0| Nightressa | --Aegis--Paikoo | -OatGod- | Bhesus | --Aegis--Excalibur64 | Myzhari |\\u00a0Valkor | --Aegis--Dragunova2018 | Komi |\\u00a0Sebas_Sal12| --Aegis--Tetsuni | JohnSaint | ChaoticJiggles | Renzashi\\ufeff\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?auto=webp\\u0026s=e98d685d9fcf12f7f7392b525e415ac027917600\", \"width\": 2560, \"height\": 1440}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=59342af73454d35034c3c2d4f475ac9a0769342f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=33b993e87781a7e2cc16124014a2db665ad1dcf3\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=067ceadbbab70f2e7568b6194ddd308d85bf70f3\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d65ab11bab91d92431c27e891c04d4f39dd66a19\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=92623901f6db2b25568baf6fcaf5db221626276e\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=32b5ff6ab01a5aae5c9bd70cb394bfe77ac67e3b\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"O2SqmsxqqImr7fOGU_I228obe-zxqR6BfpRXHbSRU7s\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwhl33\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"EternalAegisWarframe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwhl33/intpcclan_eternal_aegis_100_research_990_members/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwhl33/intpcclan_eternal_aegis_100_research_990_members/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559604292.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Item #: SCP-4260**\\n\\n**Object Class: Euclid**\\n\\n**Author: Nagiros**\\n\\n\\\"*And with strange aeons even death may die.\\\"*\\n\\nHello SCPDeclassified, Brewsterion here. Today, I wanted to cover [SCP-4260](http://www.scp-wiki.net/scp-4260) at the request of the author and a few users who talked to me about it. So, let's get into it.\\n\\nWe can't get into containment procedures yet, however, as there's something very important at the top of the page.\\n\\n\\u003EThis document has been significantly edited in order to obfuscate the identity of SCP-4260; several addenda have been omitted, and are only available with **Level 5/4260 Clearance**.\\n\\nWell, this is interesting. You would think the omitting of the identity makes it an infohazard, but that's not one of the tags so we can rule that out. What it does tell us is that this thing is extremely important to the Foundation, since basically only the O5s have Level 5 clearance. Let's see what we can tell from this version, though.\\n\\n**Special Containment Procedures**\\n\\nThe first paragraph of the containment procedures isn't too weird, but some sentences do stick out. Area-03 is located 2 kilometers beneath Hong Kong, specifically to contain 4260.\\n\\n\\u003EThe containment chamber housing SCP-4260 has been augmented with a Strayer Density Matrix designed to coalesce and bind its disparate elements.\\n\\nThis is a device we haven't seen before. Disparate elements would imply an anomaly of multiple parts, however we don't seen mentions of components here. Rather this line means that whatever 4260 is, it's greatly spread out over a very large area, similar to SCP-3125, and the Foundation needs a condensed form to contain it.\\n\\n\\u003EMaintenance of the Strayer Density Matrix is integral to SCP-4260's containment and requires a specialized team of technicians and speculative ultraphysicalists.\\n\\nOh boy, new concepts. There's a footnote here that says that ultraphysicalists deal with a science of entities that produce an effect on the universe by simply existing. How this differs from normal reality benders will be explained later, but for now let's say that these things don't try to produce an effect, they just do.\\n\\nThe next sentence explains that there is a Procedure 8917 associated with 4260, and it requires joint operation of three separate MTFs. Gamma-8 uses the Density Matrices to summon 4260. Xi-2 apparently terminates 4260, but don't worry, that will be explained shortly. Tau-900 locates and terminates civilians affected by a successful termination of 4260, and remove evidence Procedure 8917 ever happened. Apparently, terminating 4260 affects people in a specific way. Not to give much away, but Tau-900's nickname is \\\"Deliverance\\\". Just wait and see.\\n\\nIt then goes on to say that Procedure 8917 is considered complete when the following steps have been met:\\n\\n1. SCP-4260 has been successfully terminated.2. The Strayer Density Matrix is fully operational.3. All affected civilians have been located and terminated.4. All evidence of Procedure 8917 has been removed.5. SCP-4260 has been resurrected.\\n\\nWell that's straightforward, if not simple. From what this tells us, between the time 4260 is terminated and brought back, civilians are affected in some way. We don't know how, or what conditions for being affected are, but we'll find out soon. More emphasis is also placed on the Density Matrix, reinforcing that the Foundation needs this, and it once again mentions removing evidence of Procedure 8917 ever happening. Basically, terminating this thing is useful for the Foundation, but it can't stay dead for long, as it has side effects. Alright.\\n\\nThe last line before the description says that the unclassified version is gonna be filled with omissions to hide the identity of 4260. As if we couldn't tell.\\n\\n**Description**\\n\\n\\u003ESCP-4260 refers to the consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. The effect of SCP-4260's existence has been well documented by almost every sapient culture. Termination of SCP-4260 has resulted in the neutralization of its primary anomalous effect until its resurrection during Procedure 8917.\\n\\nAlright, so 4260 refers to the consciousness of an entity that is present throughout the entire universe. The effect of it's existence has been documented by every sapient culture. It's kind of implied this includes aliens, which narrows it down. It's not some sort of emotional construct, it's something that effects everything, like time or gravity. Terminating it neutralizes the effect until resurrection.\\n\\nThat's it. That's the entire description. Yeah, omissions is a bit of an understatement. But there's another addendum here.\\n\\n**Addendum.4260.1**\\n\\nIt's a list of all activations of Procedure 8917. Let's try to get some answers.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 1999 \\n\\u003E \\n\\u003EMethod: Fatal puncture wounds and blood loss, administered by MTF Xi-2. \\n\\u003E \\n\\u003EReason: A massive containment failure at [Site-62C](http://www.scp-wiki.net/scp-579). \\n\\u003E \\n\\u003EDuration:110 seconds \\n\\u003E \\n\\u003EAffected: 3 civilians \\n\\u003E \\n\\u003EStatus: Recontained\\n\\nA crosslink to SCP-579, an old article where the description is literally \\\\[DATA EXPUNGED\\\\]. Not truly linked to this article, but it tells us that 4260 was killed because of a breach of some terrifyingly dangerous entity.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2003 \\n\\u003E \\n\\u003EMethod: Blunt force trauma by a member of MTF Xi-2. \\n\\u003E \\n\\u003EReason: The nuclear bombardment of Site-001. \\n\\u003E \\n\\u003EDuration: 25 seconds \\n\\u003E \\n\\u003EAffected: 1 civilian \\n\\u003E \\n\\u003EStatus: Recontained. SCP-4260's consciousness replicated and reproduced as *Tantalus.aic*.\\n\\nXi-2 bashed this thing's head in as a rush job while Site-001 was getting nuked, and resurrected them as soon as they could. Interestingly, Tantalus is a Greek mythological figure most famous for his punishment after death. Remember that.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2008 \\n\\u003E \\n\\u003EMethod: Destruction of SCP-4260's hard drive, completed by MTF Xi-2. \\n\\u003E \\n\\u003EReason: An imminent [ZK-Class (\\\"End-of-Reality\\\") Scenario](http://www.scp-wiki.net/scp-2975). \\n\\u003E \\n\\u003EDuration: Indeterminate \\n\\u003E \\n\\u003EAffected: 7,213,426,000 individuals, termination unnecessary. \\n\\u003E \\n\\u003EStatus: Recontained. A copy of *Tantalus.aic* uploaded into an appropriated [Peregrine Series Humanoid Utility Droid](http://www.scp-wiki.net/scp-1360).\\n\\nA crosslink to both SCP-2975, an interactive article meant to represent after-action report of various CK shifts and an almost ZK end of reality, and SCP-1360, one of the earlier Anderson Robotics articles. This one gives us something very vital; this procedure was activated to save the planet from destruction. This gives us as close to an answer as to what Procedure 8917 is for: saving people's asses and letting them skip through destruction easily. The next one is just the same idea with something about O5-6, but the final one is interesting.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2016 \\n\\u003E \\n\\u003EMethod: Incineration, committed by MTF Xi-2 during Experimental Operation \\u201cMany-Crowned Serpent\\u201d. \\n\\u003E \\n\\u003EReason: The insufficiency of SCP-4260's containment procedures. \\n\\u003E \\n\\u003EDuration: 415 seconds \\n\\u003E \\n\\u003EAffected: 10 civilians \\n\\u003E \\n\\u003EStatus: *N/A*\\n\\nUhhh....shit.\\n\\nApparently, they didn't bring 4260 back after this one for this Operation Many-Crowned Serpent. This opens a whole new load of questions. What is Many-Crowned Serpent? Why is 4260 staying dead? Why were the containment procedures insufficient? This iteration doesn't answer them, because it ends here.\\n\\nYou'd assume we're in trouble, but there's a prompt at the bottom of the page. Apparently, we're O5-9, and Iteration Beta of the file, the Level 5 version, is available to us to read. Now, I get if you're confused on why I just went through all of that if it's not the real version. The answer is that some of the information here, such as the times it was used and the purposes of the MTFs, are not present in Iteration Beta. And we needed to know those things before we went into Iteration Beta, as well as know how classified among the Foundation this was. Anyways, let's get into Iteration Beta.\\n\\nI'm gonna skip the containment procedures for this one, as all they tell us is just that Iteration Alpha's containment procedures, the first ones we read, were insufficient and that Operation Many-Crowned Serpent was executed to fix that. As such, this version's technically outdated too, as it doesn't reflect the changes that Operation Many-Crowned Serpent caused to 4260, but we can still use it.\\n\\n**Description 2: Electric Boogaloo**\\n\\n\\u003ESCP-4260 is the collective consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. SCP-4260's existence has resulted in the universally entropic decline of sentient organisms and is the direct cause of any organism's cessation of life functions. \\n\\u003E \\n\\u003E**Note:** \\\"Entropic decline\\\" refers to an organism\\u2019s eventual abatement into infirmity when it achieves an advanced age for its species.\\n\\nIt's Death. Well, really more Entropy than Death, but 4260 is literally Death. We could have probably inferred it from Iteration Alpha, but that document served a different purpose, and it was kind of obvious we were dealing with Death near the end and from the quote I put.\\n\\n\\u003ESCP-4260 itself is subject to its own entropy, and its anomalous influence on the universe has notably diminished in the preceding millennia. It is projected that SCP-4260 will expire by achieving an ultraphysical null-state at approximately 2017 CE. The former containment procedures of SCP-4260 proved both incapable of halting this effect and its primary anomalous trait, although complete physical containment was achieved.\\n\\n*Oh shit.*\\n\\nNow the quote at the top of this declass makes a little more sense, doesn't it? The entropy and decay 4260 inflicts upon the universe hurts itself as well, and death is inescapable. It says that by 2017, 4260's gonna be dead, but if you recall from the Procedure 8917 logs, Operation Many-Crowned Serpent was executed in 2016. Now you see why we looked through those logs.\\n\\nThe next line says that our earlier assumption about Procedure 8917 was correct in it's purpose of saving people. By temporarily killing 4260, they create an Omega-K End Of Death Scenario for long enough to save Foundation personnel or prevent global extinction, both of which we saw in the logs. This also explains why civilians are affected, as they need to take care of people that should have died but didn't during the duration of the Omega-K. ^(Hey didn't you just declass something from End of Death?) This isn't part of the central canon, it's just a reference, so don't worry about the EoD storyline.\\n\\n**Addenda 4260-1 and 4260-2**\\n\\nI'm going to group these two addenda together since they're very closely related. Addendum 1 is just a recovery log of 4260 first being recovered by the Foundation, but it's a bit odd. 4260 willingly manifested itself as a young woman at Site-76 and asked to be contained and medically treated. This is further elaborated in Addendum 2, where we also learn some more about ultraphysical entities, or Intrinsics, as the nickname goes. The Foundation doesn't know much about them, but 4260 has told them a few things, namely that they're not omnipotent, because 4260 came to them to help save it, and that they have no personality traits or goals beyond self-preservation. This desire for self-preservation extends to trying to escape it's own effect, and how this actually ended up letting life exist as a whole. The addendum ends with the statement that Death's dying is both the best and worst news humanity could have.\\n\\nOkay, so basically, Death itself is starting to fade into nothingness while the Foundation keeps killing and resurrecting them to save high-ranking personnel. This seems to be both good and bad news for the Foundation, for obvious reasons. Oh, but what's this? ANOTHER iteration? This one, Iteration Gamma, is apparently pending approval and reflects the changes caused by Operation Many-Crowned Serpent to 4260. Let's check it out and see if we finally get an answer for what Operation Many-Crowned Serpent is. \\n\\n**Special Containment Procedures 3: The Securing**\\n\\nThese containment procedures are similar to the ones from Iteration Alpha, but much stricter. This version of 4260 is locked up in a massive nuclear bunker made to withstand every K-Class Scenario the Foundation knows of, with seven Strayer Density Matrices all around the chamber and as few people as possible staffing the place. If it gets out, O5-1, O5-7, and O5-13 are to be alerted as soon as possible. This thing is even more dangerous that the prior version of 4260, and they don't seem to be planning on using Procedure 8917 on it anytime soon. It also seems to be much stronger than previous 4260, as this version needs seven Density Matrices as opposed to only one being needed for Iteration Alpha. Time to see if the description matches this guess. \\n\\n**Description 3: Describe Harder**\\n\\n\\u003E SCP-4260 is Foundation Administrator Ethan Horowitz, who has undergone considerable physical augmentation as a result of Operation \\\"Many-Crowned Serpent\\\". \\n\\nWell I know the Administrator is often seen as anomalous himself but this is very new. Apparently Operation Many-Crowned Serpent involved doing weird stuff to the Administrator. Collapsibles that follow state that this new 4260 has a large amount of limbs, stands 130 meters tall, can manipulate it's physical form as well, and apparently has the ultraphysical abilities from the old 4260. It's also mentioned that it's more resistant to the Density Matrices, and that if five out of seven Matrices fail, we'll be enjoying a Chi-K Class \\\"Crowning Of Death\\\" scenario, which I'll try to elaborate more on after the upcoming quote. \\n\\n\\u003E The ultraphysical entity previously cataloged as SCP-4260, prior to its neutralization in Operation \\\"Many-Crowned Serpent\\\", exhibited several of these anomalous traits to a more limited degree. After its termination, Foundation Administrator Ethan Horowitz elected to transfer its anomalous properties onto his own person, in accordance with the contractual and ritualistic nature of Operation \\\"Many-Crowned Serpent\\\". \\n\\nFinally, an answer to what Operation Many-Crowned Serpent is. After the old 4260 was finally terminated, their properties were transferred to Horowitz so that we don't have to worry about Death dying anymore. That Chi-K scenario is likely the threat of Death's strength returning to what it was at the beginning of the universe, causing all living beings to die. This fits the name, as crowning implies something good happening to them. Well, good is relative in these circumstances. \\n\\nThere's one final addendum to the article, and I promise it's the last addendum. Let's get through it. \\n\\n**Addendum 4260-1: The Finale**\\n\\nThis addendum, written by Horowitz himself before Operation Many-Crowned Serpent was executed, opens with a restatement of the Foundation's Prime Directives; lock up anomalies, keep them secret, make sure they don't return, and prioritize everything except reality itself below the preservation of life. Things get interesting very quickly after that, though. \\n\\n\\u003E**This is the Subdirective of the Foundation:** to terminate the primary anomalous phenomenon which has plagued life since life\\u2019s conception, or to facilitate the termination thereof. \\n\\u003E \\n\\u003E**This is the prime anomaly:** Death.\\n\\nTitle drop. They just said they hold almost everything above life, and this is proof of that. \\n\\n\\u003E The Subdirective was never meant to be feasible, at least not in the day and age of our founding. We cannot hope to mitigate the disasters that this would result in: overpopulation, species stagnation, and susceptibility to cataclysmic extra-dimensional forces which can only be contained via euthanization of those affected. \\n\\u003E \\n\\u003E Now, over a century later, we could achieve the Subdirective at any moment with only a missive sent to the lead of Amalgamate Force Omicron-45. I suppose it would be marvelous to see: a world without death and infirmity, each person freed from the dread of uncertainty and peril. Maybe, one day, we will find a way to make that world. \\n\\u003E \\n\\u003EUntil such a time, we must secure the perpetual containment of Death. This is the nature of Operation \\u201cMany-Crowned Serpent\\u201d: to fulfill the first steps of the Foundation\\u2019s subdirective. \\n\\u003E \\n\\u003EAs it stands now, Death is a hostile entity intent on its own self-preservation at any cost. We spoke, once, and I began to realize that if it could feel anything at all, it would feel the same fear we must face under its tyranny. We could not save Death from itself; as far as our science has elevated us, there is still so much we do not understand. I told this to SCP-4260, and it smiled. \\\"Administrator,\\\" it said, \\\"How can I die when I will live on through you?\\\" \\n\\u003E \\n\\u003EDeath has struck a deal with us. In all its arcane knowledge, it knows a way to live on after its death: it has chosen me to be its heir. It is a choice between the eternal agony of humanity and a pain suffered only until we know enough to repair our tired species. It is not a choice at all. \\n\\u003E \\n\\u003EOn this day, I will become Death. This last evil I must allow us all to suffer patiently. Be bold, for one day soon, we will have won the battle waged by both us and our ancestors emerging from the primordial soup: the struggle for Life Everlasting.\\n\\nThis gives some more answers. Everything that the Foundation's done and is doing is all for the purpose of facilitating this Subdirective, the end of the threat of Death to all living beings, freeing the world from fear and uncertainty. But then why aren't they just doing that now? \\n\\nWell, have you ever read any tales from the [End Of Death canon?](http://www.scp-wiki.net/end-of-death-hub) There's your answer. When humans are faced with immortality, there's a whole lot of complications. Aging, decay, population, all the other lifeforms not dying. If humans were to all become immortal tomorrow, it wouldn't end well. That's why the Foundation's delaying the Subdirective. They need to find answers to the questions posed by immortality, making sure that when Death is no more, it will be a true paradise, not one with catches and people left out, suffering as the few enjoy true immortality. They're waiting until they have the technology, and then they'll terminate 4260 for good, kicking in an Omega-K that hopefully won't be an issue. Do they like waiting? No. The Subdirective is in their grasp. But they know they have to. \\n\\nAnd thus ends SCP-4260, a tale of the Foundation's ultimate goal and the means to get there. I hope this helped you understand this SCP better. Thank you all for reading, and memento mori.\", \"author_fullname\": \"t2_118qqr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SCP-4260, \\\"The Subdirective\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwfesx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559621697.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EItem #: SCP-4260\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class: Euclid\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor: Nagiros\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Cem\\u003EAnd with strange aeons even death may die.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello SCPDeclassified, Brewsterion here. Today, I wanted to cover \\u003Ca href=\\\"http://www.scp-wiki.net/scp-4260\\\"\\u003ESCP-4260\\u003C/a\\u003E at the request of the author and a few users who talked to me about it. So, let\\u0026#39;s get into it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe can\\u0026#39;t get into containment procedures yet, however, as there\\u0026#39;s something very important at the top of the page.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThis document has been significantly edited in order to obfuscate the identity of SCP-4260; several addenda have been omitted, and are only available with \\u003Cstrong\\u003ELevel 5/4260 Clearance\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell, this is interesting. You would think the omitting of the identity makes it an infohazard, but that\\u0026#39;s not one of the tags so we can rule that out. What it does tell us is that this thing is extremely important to the Foundation, since basically only the O5s have Level 5 clearance. Let\\u0026#39;s see what we can tell from this version, though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first paragraph of the containment procedures isn\\u0026#39;t too weird, but some sentences do stick out. Area-03 is located 2 kilometers beneath Hong Kong, specifically to contain 4260.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe containment chamber housing SCP-4260 has been augmented with a Strayer Density Matrix designed to coalesce and bind its disparate elements.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is a device we haven\\u0026#39;t seen before. Disparate elements would imply an anomaly of multiple parts, however we don\\u0026#39;t seen mentions of components here. Rather this line means that whatever 4260 is, it\\u0026#39;s greatly spread out over a very large area, similar to SCP-3125, and the Foundation needs a condensed form to contain it.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EMaintenance of the Strayer Density Matrix is integral to SCP-4260\\u0026#39;s containment and requires a specialized team of technicians and speculative ultraphysicalists.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOh boy, new concepts. There\\u0026#39;s a footnote here that says that ultraphysicalists deal with a science of entities that produce an effect on the universe by simply existing. How this differs from normal reality benders will be explained later, but for now let\\u0026#39;s say that these things don\\u0026#39;t try to produce an effect, they just do.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next sentence explains that there is a Procedure 8917 associated with 4260, and it requires joint operation of three separate MTFs. Gamma-8 uses the Density Matrices to summon 4260. Xi-2 apparently terminates 4260, but don\\u0026#39;t worry, that will be explained shortly. Tau-900 locates and terminates civilians affected by a successful termination of 4260, and remove evidence Procedure 8917 ever happened. Apparently, terminating 4260 affects people in a specific way. Not to give much away, but Tau-900\\u0026#39;s nickname is \\u0026quot;Deliverance\\u0026quot;. Just wait and see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt then goes on to say that Procedure 8917 is considered complete when the following steps have been met:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ESCP-4260 has been successfully terminated.2. The Strayer Density Matrix is fully operational.3. All affected civilians have been located and terminated.4. All evidence of Procedure 8917 has been removed.5. SCP-4260 has been resurrected.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWell that\\u0026#39;s straightforward, if not simple. From what this tells us, between the time 4260 is terminated and brought back, civilians are affected in some way. We don\\u0026#39;t know how, or what conditions for being affected are, but we\\u0026#39;ll find out soon. More emphasis is also placed on the Density Matrix, reinforcing that the Foundation needs this, and it once again mentions removing evidence of Procedure 8917 ever happening. Basically, terminating this thing is useful for the Foundation, but it can\\u0026#39;t stay dead for long, as it has side effects. Alright.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last line before the description says that the unclassified version is gonna be filled with omissions to hide the identity of 4260. As if we couldn\\u0026#39;t tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 refers to the consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. The effect of SCP-4260\\u0026#39;s existence has been well documented by almost every sapient culture. Termination of SCP-4260 has resulted in the neutralization of its primary anomalous effect until its resurrection during Procedure 8917.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAlright, so 4260 refers to the consciousness of an entity that is present throughout the entire universe. The effect of it\\u0026#39;s existence has been documented by every sapient culture. It\\u0026#39;s kind of implied this includes aliens, which narrows it down. It\\u0026#39;s not some sort of emotional construct, it\\u0026#39;s something that effects everything, like time or gravity. Terminating it neutralizes the effect until resurrection.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s it. That\\u0026#39;s the entire description. Yeah, omissions is a bit of an understatement. But there\\u0026#39;s another addendum here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum.4260.1\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a list of all activations of Procedure 8917. Let\\u0026#39;s try to get some answers.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 1999 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Fatal puncture wounds and blood loss, administered by MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: A massive containment failure at \\u003Ca href=\\\"http://www.scp-wiki.net/scp-579\\\"\\u003ESite-62C\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration:110 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 3 civilians \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EA crosslink to SCP-579, an old article where the description is literally [DATA EXPUNGED]. Not truly linked to this article, but it tells us that 4260 was killed because of a breach of some terrifyingly dangerous entity.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2003 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Blunt force trauma by a member of MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: The nuclear bombardment of Site-001. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: 25 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 1 civilian \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained. SCP-4260\\u0026#39;s consciousness replicated and reproduced as \\u003Cem\\u003ETantalus.aic\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EXi-2 bashed this thing\\u0026#39;s head in as a rush job while Site-001 was getting nuked, and resurrected them as soon as they could. Interestingly, Tantalus is a Greek mythological figure most famous for his punishment after death. Remember that.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2008 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Destruction of SCP-4260\\u0026#39;s hard drive, completed by MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: An imminent \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2975\\\"\\u003EZK-Class (\\u0026quot;End-of-Reality\\u0026quot;) Scenario\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: Indeterminate \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 7,213,426,000 individuals, termination unnecessary. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained. A copy of \\u003Cem\\u003ETantalus.aic\\u003C/em\\u003E uploaded into an appropriated \\u003Ca href=\\\"http://www.scp-wiki.net/scp-1360\\\"\\u003EPeregrine Series Humanoid Utility Droid\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EA crosslink to both SCP-2975, an interactive article meant to represent after-action report of various CK shifts and an almost ZK end of reality, and SCP-1360, one of the earlier Anderson Robotics articles. This one gives us something very vital; this procedure was activated to save the planet from destruction. This gives us as close to an answer as to what Procedure 8917 is for: saving people\\u0026#39;s asses and letting them skip through destruction easily. The next one is just the same idea with something about O5-6, but the final one is interesting.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2016 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Incineration, committed by MTF Xi-2 during Experimental Operation \\u201cMany-Crowned Serpent\\u201d. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: The insufficiency of SCP-4260\\u0026#39;s containment procedures. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: 415 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 10 civilians \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: \\u003Cem\\u003EN/A\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EUhhh....shit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EApparently, they didn\\u0026#39;t bring 4260 back after this one for this Operation Many-Crowned Serpent. This opens a whole new load of questions. What is Many-Crowned Serpent? Why is 4260 staying dead? Why were the containment procedures insufficient? This iteration doesn\\u0026#39;t answer them, because it ends here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;d assume we\\u0026#39;re in trouble, but there\\u0026#39;s a prompt at the bottom of the page. Apparently, we\\u0026#39;re O5-9, and Iteration Beta of the file, the Level 5 version, is available to us to read. Now, I get if you\\u0026#39;re confused on why I just went through all of that if it\\u0026#39;s not the real version. The answer is that some of the information here, such as the times it was used and the purposes of the MTFs, are not present in Iteration Beta. And we needed to know those things before we went into Iteration Beta, as well as know how classified among the Foundation this was. Anyways, let\\u0026#39;s get into Iteration Beta.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m gonna skip the containment procedures for this one, as all they tell us is just that Iteration Alpha\\u0026#39;s containment procedures, the first ones we read, were insufficient and that Operation Many-Crowned Serpent was executed to fix that. As such, this version\\u0026#39;s technically outdated too, as it doesn\\u0026#39;t reflect the changes that Operation Many-Crowned Serpent caused to 4260, but we can still use it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription 2: Electric Boogaloo\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 is the collective consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. SCP-4260\\u0026#39;s existence has resulted in the universally entropic decline of sentient organisms and is the direct cause of any organism\\u0026#39;s cessation of life functions. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E \\u0026quot;Entropic decline\\u0026quot; refers to an organism\\u2019s eventual abatement into infirmity when it achieves an advanced age for its species.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s Death. Well, really more Entropy than Death, but 4260 is literally Death. We could have probably inferred it from Iteration Alpha, but that document served a different purpose, and it was kind of obvious we were dealing with Death near the end and from the quote I put.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 itself is subject to its own entropy, and its anomalous influence on the universe has notably diminished in the preceding millennia. It is projected that SCP-4260 will expire by achieving an ultraphysical null-state at approximately 2017 CE. The former containment procedures of SCP-4260 proved both incapable of halting this effect and its primary anomalous trait, although complete physical containment was achieved.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EOh shit.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow the quote at the top of this declass makes a little more sense, doesn\\u0026#39;t it? The entropy and decay 4260 inflicts upon the universe hurts itself as well, and death is inescapable. It says that by 2017, 4260\\u0026#39;s gonna be dead, but if you recall from the Procedure 8917 logs, Operation Many-Crowned Serpent was executed in 2016. Now you see why we looked through those logs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next line says that our earlier assumption about Procedure 8917 was correct in it\\u0026#39;s purpose of saving people. By temporarily killing 4260, they create an Omega-K End Of Death Scenario for long enough to save Foundation personnel or prevent global extinction, both of which we saw in the logs. This also explains why civilians are affected, as they need to take care of people that should have died but didn\\u0026#39;t during the duration of the Omega-K. \\u003Csup\\u003EHey didn\\u0026#39;t you just declass something from End of Death?\\u003C/sup\\u003E This isn\\u0026#39;t part of the central canon, it\\u0026#39;s just a reference, so don\\u0026#39;t worry about the EoD storyline.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddenda 4260-1 and 4260-2\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m going to group these two addenda together since they\\u0026#39;re very closely related. Addendum 1 is just a recovery log of 4260 first being recovered by the Foundation, but it\\u0026#39;s a bit odd. 4260 willingly manifested itself as a young woman at Site-76 and asked to be contained and medically treated. This is further elaborated in Addendum 2, where we also learn some more about ultraphysical entities, or Intrinsics, as the nickname goes. The Foundation doesn\\u0026#39;t know much about them, but 4260 has told them a few things, namely that they\\u0026#39;re not omnipotent, because 4260 came to them to help save it, and that they have no personality traits or goals beyond self-preservation. This desire for self-preservation extends to trying to escape it\\u0026#39;s own effect, and how this actually ended up letting life exist as a whole. The addendum ends with the statement that Death\\u0026#39;s dying is both the best and worst news humanity could have.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOkay, so basically, Death itself is starting to fade into nothingness while the Foundation keeps killing and resurrecting them to save high-ranking personnel. This seems to be both good and bad news for the Foundation, for obvious reasons. Oh, but what\\u0026#39;s this? ANOTHER iteration? This one, Iteration Gamma, is apparently pending approval and reflects the changes caused by Operation Many-Crowned Serpent to 4260. Let\\u0026#39;s check it out and see if we finally get an answer for what Operation Many-Crowned Serpent is. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures 3: The Securing\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThese containment procedures are similar to the ones from Iteration Alpha, but much stricter. This version of 4260 is locked up in a massive nuclear bunker made to withstand every K-Class Scenario the Foundation knows of, with seven Strayer Density Matrices all around the chamber and as few people as possible staffing the place. If it gets out, O5-1, O5-7, and O5-13 are to be alerted as soon as possible. This thing is even more dangerous that the prior version of 4260, and they don\\u0026#39;t seem to be planning on using Procedure 8917 on it anytime soon. It also seems to be much stronger than previous 4260, as this version needs seven Density Matrices as opposed to only one being needed for Iteration Alpha. Time to see if the description matches this guess. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription 3: Describe Harder\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 is Foundation Administrator Ethan Horowitz, who has undergone considerable physical augmentation as a result of Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell I know the Administrator is often seen as anomalous himself but this is very new. Apparently Operation Many-Crowned Serpent involved doing weird stuff to the Administrator. Collapsibles that follow state that this new 4260 has a large amount of limbs, stands 130 meters tall, can manipulate it\\u0026#39;s physical form as well, and apparently has the ultraphysical abilities from the old 4260. It\\u0026#39;s also mentioned that it\\u0026#39;s more resistant to the Density Matrices, and that if five out of seven Matrices fail, we\\u0026#39;ll be enjoying a Chi-K Class \\u0026quot;Crowning Of Death\\u0026quot; scenario, which I\\u0026#39;ll try to elaborate more on after the upcoming quote. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe ultraphysical entity previously cataloged as SCP-4260, prior to its neutralization in Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;, exhibited several of these anomalous traits to a more limited degree. After its termination, Foundation Administrator Ethan Horowitz elected to transfer its anomalous properties onto his own person, in accordance with the contractual and ritualistic nature of Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFinally, an answer to what Operation Many-Crowned Serpent is. After the old 4260 was finally terminated, their properties were transferred to Horowitz so that we don\\u0026#39;t have to worry about Death dying anymore. That Chi-K scenario is likely the threat of Death\\u0026#39;s strength returning to what it was at the beginning of the universe, causing all living beings to die. This fits the name, as crowning implies something good happening to them. Well, good is relative in these circumstances. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere\\u0026#39;s one final addendum to the article, and I promise it\\u0026#39;s the last addendum. Let\\u0026#39;s get through it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4260-1: The Finale\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis addendum, written by Horowitz himself before Operation Many-Crowned Serpent was executed, opens with a restatement of the Foundation\\u0026#39;s Prime Directives; lock up anomalies, keep them secret, make sure they don\\u0026#39;t return, and prioritize everything except reality itself below the preservation of life. Things get interesting very quickly after that, though. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis is the Subdirective of the Foundation:\\u003C/strong\\u003E to terminate the primary anomalous phenomenon which has plagued life since life\\u2019s conception, or to facilitate the termination thereof. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis is the prime anomaly:\\u003C/strong\\u003E Death.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETitle drop. They just said they hold almost everything above life, and this is proof of that. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Subdirective was never meant to be feasible, at least not in the day and age of our founding. We cannot hope to mitigate the disasters that this would result in: overpopulation, species stagnation, and susceptibility to cataclysmic extra-dimensional forces which can only be contained via euthanization of those affected. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, over a century later, we could achieve the Subdirective at any moment with only a missive sent to the lead of Amalgamate Force Omicron-45. I suppose it would be marvelous to see: a world without death and infirmity, each person freed from the dread of uncertainty and peril. Maybe, one day, we will find a way to make that world. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUntil such a time, we must secure the perpetual containment of Death. This is the nature of Operation \\u201cMany-Crowned Serpent\\u201d: to fulfill the first steps of the Foundation\\u2019s subdirective. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it stands now, Death is a hostile entity intent on its own self-preservation at any cost. We spoke, once, and I began to realize that if it could feel anything at all, it would feel the same fear we must face under its tyranny. We could not save Death from itself; as far as our science has elevated us, there is still so much we do not understand. I told this to SCP-4260, and it smiled. \\u0026quot;Administrator,\\u0026quot; it said, \\u0026quot;How can I die when I will live on through you?\\u0026quot; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeath has struck a deal with us. In all its arcane knowledge, it knows a way to live on after its death: it has chosen me to be its heir. It is a choice between the eternal agony of humanity and a pain suffered only until we know enough to repair our tired species. It is not a choice at all. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn this day, I will become Death. This last evil I must allow us all to suffer patiently. Be bold, for one day soon, we will have won the battle waged by both us and our ancestors emerging from the primordial soup: the struggle for Life Everlasting.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis gives some more answers. Everything that the Foundation\\u0026#39;s done and is doing is all for the purpose of facilitating this Subdirective, the end of the threat of Death to all living beings, freeing the world from fear and uncertainty. But then why aren\\u0026#39;t they just doing that now? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, have you ever read any tales from the \\u003Ca href=\\\"http://www.scp-wiki.net/end-of-death-hub\\\"\\u003EEnd Of Death canon?\\u003C/a\\u003E There\\u0026#39;s your answer. When humans are faced with immortality, there\\u0026#39;s a whole lot of complications. Aging, decay, population, all the other lifeforms not dying. If humans were to all become immortal tomorrow, it wouldn\\u0026#39;t end well. That\\u0026#39;s why the Foundation\\u0026#39;s delaying the Subdirective. They need to find answers to the questions posed by immortality, making sure that when Death is no more, it will be a true paradise, not one with catches and people left out, suffering as the few enjoy true immortality. They\\u0026#39;re waiting until they have the technology, and then they\\u0026#39;ll terminate 4260 for good, kicking in an Omega-K that hopefully won\\u0026#39;t be an issue. Do they like waiting? No. The Subdirective is in their grasp. But they know they have to. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd thus ends SCP-4260, a tale of the Foundation\\u0026#39;s ultimate goal and the means to get there. I hope this helped you understand this SCP better. Thank you all for reading, and memento mori.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?auto=webp\\u0026s=eb7e84b6777b9441cff986b491b9c844d2574ddb\", \"width\": 500, \"height\": 364}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bcae4878a092d9b918d961b1622fd9666b9ca968\", \"width\": 108, \"height\": 78}, {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=68c2ffe78e81071d4f95d8923cdb4f9e7a55c182\", \"width\": 216, \"height\": 157}, {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a9ffa511f3dab1524f43720275a5f4e58c725258\", \"width\": 320, \"height\": 232}], \"variants\": {}, \"id\": \"wqpxqRTyCw4m0-4ES2XLY4f4UxAxlhBTybhU-CTz2uo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwfesx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Brewsterion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwfesx/scp4260_the_subdirective/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwfesx/scp4260_the_subdirective/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559592897.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello everyone,\\n\\n\\u0026#x200B;\\n\\nI wanted to talk a bit about the rift between the performance of Beams and Cannons that is getting bigger and bigger.\\n\\n\\u0026#x200B;\\n\\nAs some who have longer played the game will remember, when the game was lunched it quickly got the nickname Cannons Online. Later on we had the Beam and Plasma Console Meta and now we are back to Cannons.\\n\\n\\u0026#x200B;\\n\\nIf we compare the average setup of today, an Epic Beam Array and an Epic Dual Cannon (both Phasers and the same Mods CrtD/Dm\\\\] \\\\[Dmg\\\\]x4) we can see a difference of 951 or generously rounded 1K DPS.\\n\\n\\u0026#x200B;\\n\\n(**Note:** I used Beam Arrays to show the difference because we still don't have enough variants of Omni-Dicretional Beams of every Energy type to be able to equip a 4x4 ship and have an efficient Dual Beam Bank Setup.)\\n\\n\\u0026#x200B;\\n\\nIn the past we argued that the difference was due to the ease of using Beams and to be fair a Beam Boat is easier to fly, but how to learn to use cannons is also no mystery.\\n\\n\\u0026#x200B;\\n\\nWhat has changed however are the Traits that support Beams vs. Cannons and the Cannon Traits have become severely better not to mention that the Boff ability of Beam Fire at Will with it's duration of 10 seconds and 20 seconds global cooldown is worse than the one for Rapid Fire or Scatter Volley with the same duration of 10 seconds but only a global cooldown of 15 seconds.\\n\\n\\u0026#x200B;\\n\\nIf we now look at the Traits we have for Cannons \\\"Go for the Kill\\\", \\\"Preferential Targeting\\\", \\\"Withering Barrage\\\", and for Beams \\\"Redirecting Arrays\\\" and \\\"Entwined Tactical Matrices\\\".\\n\\n\\u0026#x200B;\\n\\nSo for once we have a fantastic combo for Rapid Fire, with Go for the Kill and Preferential Targeting and the same is true for Scatter Volley with Withering Barrage both extends the duration of Rapid Fire (indefinitely by causing critical hits) and Scatter Volley (for four seconds).\\n\\n\\u0026#x200B;\\n\\n(**Note:** I know that Go for the Kill is super expensive and most players will never get it, but Withering Barrage is not and since it is an AOE attack it is most of the time the preferred Trait for cannons and you can buy the ships that have it in the C-Store.)\\n\\n\\u0026#x200B;\\n\\nOn the other side for Beams we have Redirecting Arrays which extends the duration of Beam Fire at Will by a Max of 15 seconds if you take constant damage, the problem however is that targets are dying so quickly that you basically never can take advantage of the duration increase.\\n\\n\\u0026#x200B;\\n\\nEntwined Tactical Matrices is an interesting Trait but I would only use it if I had none of the other Traits for Beams and Cannons but it really shines for Torp Builds allowing you to rain Torp Spreads on your target.\\n\\n\\u0026#x200B;\\n\\nSo why is it important to buff Beams, so for once there are a lot of ships that can only use Beams, and other ships that could potentially use cannons are so sluggish they simply can't move/turn fast enough to keep up and second it's not that great of an experience when you enter a STF and everything is dead in seconds.\\n\\nI have been on both sides nuke everything with my cannons before the rest of the team had a chance to do anything and I have seen the other side being the 5th wheel on the car.\\n\\n\\u0026#x200B;\\n\\n**At this point what can be done:**\\n\\nIncrease the base damage of Beams\\n\\nReduce the global cooldown of FAW to 15 seconds\\n\\nAlter Redirecting Arrays so the duration increase is reduced by maybe 50% but is not depending on taking constant damage.\\n\\n(I know this is very unlikely)\", \"author_fullname\": \"t2_gfwd5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The growing gab between Beams and Cannons\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwbfv6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559601797.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wanted to talk a bit about the rift between the performance of Beams and Cannons that is getting bigger and bigger.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs some who have longer played the game will remember, when the game was lunched it quickly got the nickname Cannons Online. Later on we had the Beam and Plasma Console Meta and now we are back to Cannons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf we compare the average setup of today, an Epic Beam Array and an Epic Dual Cannon (both Phasers and the same Mods CrtD/Dm] [Dmg]x4) we can see a difference of 951 or generously rounded 1K DPS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E I used Beam Arrays to show the difference because we still don\\u0026#39;t have enough variants of Omni-Dicretional Beams of every Energy type to be able to equip a 4x4 ship and have an efficient Dual Beam Bank Setup.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the past we argued that the difference was due to the ease of using Beams and to be fair a Beam Boat is easier to fly, but how to learn to use cannons is also no mystery.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat has changed however are the Traits that support Beams vs. Cannons and the Cannon Traits have become severely better not to mention that the Boff ability of Beam Fire at Will with it\\u0026#39;s duration of 10 seconds and 20 seconds global cooldown is worse than the one for Rapid Fire or Scatter Volley with the same duration of 10 seconds but only a global cooldown of 15 seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf we now look at the Traits we have for Cannons \\u0026quot;Go for the Kill\\u0026quot;, \\u0026quot;Preferential Targeting\\u0026quot;, \\u0026quot;Withering Barrage\\u0026quot;, and for Beams \\u0026quot;Redirecting Arrays\\u0026quot; and \\u0026quot;Entwined Tactical Matrices\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for once we have a fantastic combo for Rapid Fire, with Go for the Kill and Preferential Targeting and the same is true for Scatter Volley with Withering Barrage both extends the duration of Rapid Fire (indefinitely by causing critical hits) and Scatter Volley (for four seconds).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E I know that Go for the Kill is super expensive and most players will never get it, but Withering Barrage is not and since it is an AOE attack it is most of the time the preferred Trait for cannons and you can buy the ships that have it in the C-Store.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the other side for Beams we have Redirecting Arrays which extends the duration of Beam Fire at Will by a Max of 15 seconds if you take constant damage, the problem however is that targets are dying so quickly that you basically never can take advantage of the duration increase.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEntwined Tactical Matrices is an interesting Trait but I would only use it if I had none of the other Traits for Beams and Cannons but it really shines for Torp Builds allowing you to rain Torp Spreads on your target.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo why is it important to buff Beams, so for once there are a lot of ships that can only use Beams, and other ships that could potentially use cannons are so sluggish they simply can\\u0026#39;t move/turn fast enough to keep up and second it\\u0026#39;s not that great of an experience when you enter a STF and everything is dead in seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been on both sides nuke everything with my cannons before the rest of the team had a chance to do anything and I have seen the other side being the 5th wheel on the car.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAt this point what can be done:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIncrease the base damage of Beams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReduce the global cooldown of FAW to 15 seconds\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlter Redirecting Arrays so the duration increase is reduced by maybe 50% but is not depending on taking constant damage.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(I know this is very unlikely)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbfv6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bridgern\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwbfv6/the_growing_gab_between_beams_and_cannons/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwbfv6/the_growing_gab_between_beams_and_cannons/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559572997.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test avoid 401\", \"author_fullname\": \"t2_gbhji\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testagain3\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bw86r0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559578081.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest avoid 401\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw86r0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"erebusmaster\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bw86r0/testagain3/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559549281.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_teik0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"X5xjg5755\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 77, \"hide_score\": false, \"name\": \"t3_bw5s73\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_240?source=fallback\", \"height\": 234, \"width\": 426, \"scrubber_media_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_96\", \"dash_url\": \"https://v.redd.it/s7j0qhnb32231/DASHPlaylist.mpd\", \"duration\": 19, \"hls_url\": \"https://v.redd.it/s7j0qhnb32231/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UgBdgvQL7CGZ0x20Wf7IMOnF3wkO1xtpNXL1W4skdSE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559559448.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?format=pjpg\\u0026auto=webp\\u0026s=8f3632625940d92614b86de3baa00b4e513e4ca1\", \"width\": 640, \"height\": 352}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=9cd6401c64efd76cdecb4102c7eb0c424fe3dc67\", \"width\": 108, \"height\": 59}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=ecbb4c746658195f9309c3633bf1afb403d5f8d0\", \"width\": 216, \"height\": 118}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=e8f6509d25875f11e236b6291f30fb78f2650b85\", \"width\": 320, \"height\": 176}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=640\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=22a48248e037066d331290b3d7364be1a7615e04\", \"width\": 640, \"height\": 352}], \"variants\": {}, \"id\": \"-8_XkWX0CM_gb4MCXRpMpYFxNStsuDQsz1Bh8NYJiD0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw5s73\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ShiftyRider\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bw5s73/x5xjg5755/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/s7j0qhnb32231\", \"subreddit_subscribers\": 704, \"created_utc\": 1559530648.0, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_240?source=fallback\", \"height\": 234, \"width\": 426, \"scrubber_media_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_96\", \"dash_url\": \"https://v.redd.it/s7j0qhnb32231/DASHPlaylist.mpd\", \"duration\": 19, \"hls_url\": \"https://v.redd.it/s7j0qhnb32231/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_rpmhm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"whoaaa does the link work\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bvzhmk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/iTnjKpbA4mac1jgFlLry3EAicfoVm_TDGlxj83mJerc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559523455.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gifyourgame.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?auto=webp\\u0026s=11f7e16039a632def2a5529d21aa1417c31b3b23\", \"width\": 448, \"height\": 252}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8f2b73431c3a3affc064af6e24a3b5b2f276f220\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d32ebeb37a2315a6fd90ca7d96bfd47b34bd4dfb\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3b6b217ff52246acb0e9a98b30d81afaa91d415b\", \"width\": 320, \"height\": 180}], \"variants\": {}, \"id\": \"Yl6MCedx3BkJMCf4V29laFNcXVd7gNJz8-4LknIKiZg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvzhmk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"snowguy13\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvzhmk/whoaaa_does_the_link_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.gifyourgame.com/ComposedBalmyQuale\", \"subreddit_subscribers\": 704, \"created_utc\": 1559494655.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Defesa do Botafogo\\n\\n\\u003EA defesa do Botafogo apresentou imagens de v\\u00eddeo ao Tribunal que comprovariam que o \\u00e1rbitro autorizou o rein\\u00edcio da partida antes de ser chamado pelo VAR para mudar sua decis\\u00e3o. E por j\\u00e1 ter reiniciado o jogo, ele n\\u00e3o poderia mais voltar atr\\u00e1s e marcar o p\\u00eanalti contra o Botafogo.\\n\\nDefesa da CBF\\n\\n\\u003EAs imagens mostram que o \\u00e1rbitro pode sim ter induzido o rein\\u00edcio ao abaixar o bra\\u00e7o que indicava tiro livre indireto e ao correr na dire\\u00e7\\u00e3o do meio campo.\\n\\n\\u003EO problema \\u00e9 que as regras do jogo, as mesmas que o Botafogo cita para sustentar sua den\\u00fancia, estabelecem que o uso do apito \\u00e9 necess\\u00e1rio para reiniciar o jogo ap\\u00f3s um cart\\u00e3o amarelo ou vermelho.\", \"author_fullname\": \"t2_itdhw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvz153\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559520978.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDefesa do Botafogo\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA defesa do Botafogo apresentou imagens de v\\u00eddeo ao Tribunal que comprovariam que o \\u00e1rbitro autorizou o rein\\u00edcio da partida antes de ser chamado pelo VAR para mudar sua decis\\u00e3o. E por j\\u00e1 ter reiniciado o jogo, ele n\\u00e3o poderia mais voltar atr\\u00e1s e marcar o p\\u00eanalti contra o Botafogo.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EDefesa da CBF\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAs imagens mostram que o \\u00e1rbitro pode sim ter induzido o rein\\u00edcio ao abaixar o bra\\u00e7o que indicava tiro livre indireto e ao correr na dire\\u00e7\\u00e3o do meio campo.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EO problema \\u00e9 que as regras do jogo, as mesmas que o Botafogo cita para sustentar sua den\\u00fancia, estabelecem que o uso do apito \\u00e9 necess\\u00e1rio para reiniciar o jogo ap\\u00f3s um cart\\u00e3o amarelo ou vermelho.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvz153\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"heronb\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvz153/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvz153/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559492178.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\[test.\\\\]\\\\[[https://www.youtube.com/watch?v=bV87CcSYqdY](https://www.youtube.com/watch?v=bV87CcSYqdY)\\\\]\", \"author_fullname\": \"t2_biesn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvks18\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559424409.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[test.][\\u003Ca href=\\\"https://www.youtube.com/watch?v=bV87CcSYqdY\\\"\\u003Ehttps://www.youtube.com/watch?v=bV87CcSYqdY\\u003C/a\\u003E]\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?auto=webp\\u0026s=4fcf18ab1d69228f991ceb9d9f5606e2386868fb\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3bb1140dbbc2d30590d93de9a8b7230bd25bf14a\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5eb48232b460293d9b5be807983a1aea3f5d2918\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ab14b38064578527c909effc6801637092d4e28f\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"qgPzrYjBE0VHRhxPsGYR8V92NeWVLuVmSZC7vhukjek\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvks18\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dramaticablacka\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvks18/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvks18/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559395609.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"My Ryzentosh is currently very stable, with the only 'non-workers' being iMessage, Siri, FaceTime and sort of Handoff (only works one way).\\n\\n\\u0026#x200B;\\n\\nAnyhow, regarding the issue I described the title, two settings in System Preferences, namely:\\n\\n\\u0026#x200B;\\n\\n1. **Find my Mac** under the iCloud tab\\n2. **Allow guest user to use this computer** under the Users \\u0026 Groups tab\\n\\n\\u0026#x200B;\\n\\nalways get reset to their defaults after a restart, or powering up after a full shutdown. The 'Find my Mac' option always gets unchecked and 'Allow guest user to use this computer' gets checked.\\n\\n\\u0026#x200B;\\n\\nI would like to keep the Find my Mac setting permanently on and to keep the guest account permanently off. Is there a way I can achieve this?\\n\\n\\u0026#x200B;\\n\\nAny help is appreciated, specs are summed up in the table below. \\ud83d\\udda5\\ud83d\\udda5\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n|**CPU**|AMD Ryzen 1800x|\\n|:-:|:-:|\\n|**Motherboard**|ASUS Crosshair VI Hero|\\n|**GPU**|Zotac Nvidia gtx 1070 (reference cooler)|\\n|**Memory**|16gb - 2x Corsair dominator platinum 8gb 3200mhz|\\n|**OS install drive**|Crucial MX500 250gb SSD|\\n|**Wifi \\u0026 Bluetooth**|iMac A1419BCM94360CD card with PCI-e adapter|\", \"author_fullname\": \"t2_ttqmp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Settings under System Preferences get rest after shutdown \\u0026 restarts\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvk747\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559391772.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559420174.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy Ryzentosh is currently very stable, with the only \\u0026#39;non-workers\\u0026#39; being iMessage, Siri, FaceTime and sort of Handoff (only works one way).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyhow, regarding the issue I described the title, two settings in System Preferences, namely:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFind my Mac\\u003C/strong\\u003E under the iCloud tab\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EAllow guest user to use this computer\\u003C/strong\\u003E under the Users \\u0026amp; Groups tab\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealways get reset to their defaults after a restart, or powering up after a full shutdown. The \\u0026#39;Find my Mac\\u0026#39; option always gets unchecked and \\u0026#39;Allow guest user to use this computer\\u0026#39; gets checked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to keep the Find my Mac setting permanently on and to keep the guest account permanently off. Is there a way I can achieve this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help is appreciated, specs are summed up in the table below. \\ud83d\\udda5\\ud83d\\udda5\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAMD Ryzen 1800x\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EASUS Crosshair VI Hero\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EGPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EZotac Nvidia gtx 1070 (reference cooler)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16gb - 2x Corsair dominator platinum 8gb 3200mhz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EOS install drive\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECrucial MX500 250gb SSD\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EWifi \\u0026amp; Bluetooth\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EiMac A1419BCM94360CD card with PCI-e adapter\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvk747\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Pepi28t-50\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvk747/settings_under_system_preferences_get_rest_after/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvk747/settings_under_system_preferences_get_rest_after/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559391374.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1141dc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Graphic found in a 2015 Terra Prime preview is the same as the ones around Area 18\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bvf8q3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit) GIF by @robotdude on Gfycat. Discover more starcitizen GIFs on Gfycat\", \"title\": \"Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit)\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ActualRightColt-size_restricted.gif\", \"thumbnail_height\": 250}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bvf8q3\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/c9_Wg6yf03hoBaNzKW8V4C6c3LjGbX6dNXDj3mUHy7c.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559379402.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gfycat.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?format=png8\\u0026s=c0569ed9f587376e57d01e8ef5ba86d518df8771\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=3ccb8ac692e06a59918fb1799b6990e338172f5f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=16d097c9fe9c24465632bcd6e014f66b8b1bd2fa\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=d46c61ee71e7f625e6f8ca58551a1b74847abe98\", \"width\": 320, \"height\": 179}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?s=634e3b5adfe3dcaef794e3b30a8b35216951ab36\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026crop=smart\\u0026s=c163952d7527278194216f9845477ed70ede7fca\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026crop=smart\\u0026s=f3ef9b10b9219bffbead65215e7f8a4949f67aba\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026crop=smart\\u0026s=04ce94a6ab48fe49f6b9265bc3583d2f18cbe921\", \"width\": 320, \"height\": 179}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?format=mp4\\u0026s=7a2fa61a333d02e104ffc485e595b9f04824ea67\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026format=mp4\\u0026s=b008d417dc5bc1f2f9203612293cd38c9f98dade\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026format=mp4\\u0026s=2d9f8c04c8ab09d0abdc59a8ea407b593d82ad82\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026format=mp4\\u0026s=2ac9548358af384cf7bf04397f61fea396a9bda5\", \"width\": 320, \"height\": 179}]}}, \"id\": \"OA1SrhwRQdwHUJgo4zOwQTEZegw59-SLQj-ZypHdhoM\"}], \"reddit_video_preview\": {\"fallback_url\": \"https://v.redd.it/oc4537uf8n131/DASH_360\", \"height\": 360, \"width\": 640, \"scrubber_media_url\": \"https://v.redd.it/oc4537uf8n131/DASH_96\", \"dash_url\": \"https://v.redd.it/oc4537uf8n131/DASHPlaylist.mpd\", \"duration\": 9, \"hls_url\": \"https://v.redd.it/oc4537uf8n131/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvf8q3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ehriqhck\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvf8q3/graphic_found_in_a_2015_terra_prime_preview_is/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://gfycat.com/actualrightcolt\", \"subreddit_subscribers\": 704, \"created_utc\": 1559350602.0, \"media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit) GIF by @robotdude on Gfycat. Discover more starcitizen GIFs on Gfycat\", \"title\": \"Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit)\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ActualRightColt-size_restricted.gif\", \"thumbnail_height\": 250}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Title** \\nText\\n\\n\\u0026nbsp;\\n\\n**Title** \\nText\", \"author_fullname\": \"t2_16lvip\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvd605\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559366978.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ETitle\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nText\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETitle\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nText\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvd605\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CT-24601\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvd605/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvd605/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559338178.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"So I've noticed that when I pressed TAB to view the teams, it also says a lot about the MMR of the players in the match. There are a couple of rules though, before figuring out who has the lowest and highest MMR. The positioning of the portrait is based on MMR, far left being the lowest rated and far right being highest rated.\\n\\n---\\n\\n# Rule #1: You are always at the bottom left.\\n\\nThis one is pretty simple. No matter what, you will always be on the bottom left when you press TAB to view the teams. [I drew it out for you, in case you want to see my beautiful art.](https://i.imgur.com/IETyq6l.jpg) Because of this, you cannot tell whether you are the lowest or highest MMR on your team.\\n\\n---\\n\\n# Rule #2: Groups are to the right, and ordered alphabetically.\\n\\nSpeaks for itself, but groups of any sizes are placed to the far right and are organized alphabetically. The smaller the group, the easier it is for you to determine who has the lowest/highest MMR on that team. [Here's my drawing as an example for a duo queue.](https://i.imgur.com/PU1X5G4.jpg)\\n\\nAlso I should clarify that it's very possible that one of the players in the duo can have the highest or lowest MMR, but since groups are always to the right and alphabetically, it's impossible to tell if which group member has a higher or lower MMR.\\n\\n\\u0026nbsp;\\n\\n[In this screenshot, you can see the enemy team is a 6-group and is organized alphabetically.](https://i.imgur.com/p7nTqmK.png) You cannot determine who has the highest or lowest MMR from this 6-stack.\\n\\n---\\n\\n#### All solo queue.\\n\\nIf there are no groups, then seeing who has the highest rated MMR on both teams is easier. Simply look left to right to see from lowest to highest MMR on a team. Do keep in mind that since you are always positioned bottom left, you cannot tell what MMR you are, only your teammates. However, you can find out by asking the highest rated MMR player on your team where you are positioned on their screen, and that will help you figure out if where you stand in your team. [Another drawing.](https://i.imgur.com/bMIQr7D.jpg)\\n\\n---\\n\\n#### Decayed Accounts\\n\\nThe positioning of the portraits does not take into account the SR of the person, but the MMR. For instance, you can have a player that is around 4.4k MMR, but decayed to Masters. In a 4.1k average game, it will position this \\\"Masters\\\" player above GM's.\\n\\n\\nAn example of this is [this screenshot.](https://i.imgur.com/c4yrmNB.jpg) The player Valentine had decayed but is still positioned higher due to having a higher MMR. I only have [this clip](https://clips.twitch.tv/SoftDoubtfulFriseePrimeMe) that he explains that he hasn't played in a while (which would hint at him being decayed). If any of you can find any extra examples of decayed accounts and their portraits positioning, then share it please! I know it's a thing but I don't have much to show.\\n\\n---\\n\\nAlso, if you leave and rejoin a competitive match, the positioning of all portraits gets messed up for some reason. Not sure why, but that's a thing.\\n\\n---\\n\\n[Last example](https://i.imgur.com/NZJQQgo.jpg) On the enemy team, you can see that groups ignore MMR and are placed to the right and are alphabetically organized. It would appear that Pigeon would have the highest MMR on the enemy team (I'm taking a guess that the duo isn't decayed.)\\n\\n\\nOn the friendly team, the Masters players are on the left and it's safe to say that those aren't decayed accounts either. Neziwi is positioned to have a higher MMR out of the three and they are Grandmaster. Then of course the duo ignored the MMR rule and is set far right, however it would be safe to say that Zerg would be the highest rated MMR. If you are Dino in this scenario, you'd have to ask other teammates where you're positioned when they press TAB to figure out where you stand on your team.\\n\\n---\\n\\nHope this wasn't confusing, I suck at explaining things and well I always wanted to share this.\", \"author_fullname\": \"t2_3v8bc9yn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"title\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvbjmw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559358317.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I\\u0026#39;ve noticed that when I pressed TAB to view the teams, it also says a lot about the MMR of the players in the match. There are a couple of rules though, before figuring out who has the lowest and highest MMR. The positioning of the portrait is based on MMR, far left being the lowest rated and far right being highest rated.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ERule #1: You are always at the bottom left.\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EThis one is pretty simple. No matter what, you will always be on the bottom left when you press TAB to view the teams. \\u003Ca href=\\\"https://i.imgur.com/IETyq6l.jpg\\\"\\u003EI drew it out for you, in case you want to see my beautiful art.\\u003C/a\\u003E Because of this, you cannot tell whether you are the lowest or highest MMR on your team.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ERule #2: Groups are to the right, and ordered alphabetically.\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ESpeaks for itself, but groups of any sizes are placed to the far right and are organized alphabetically. The smaller the group, the easier it is for you to determine who has the lowest/highest MMR on that team. \\u003Ca href=\\\"https://i.imgur.com/PU1X5G4.jpg\\\"\\u003EHere\\u0026#39;s my drawing as an example for a duo queue.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso I should clarify that it\\u0026#39;s very possible that one of the players in the duo can have the highest or lowest MMR, but since groups are always to the right and alphabetically, it\\u0026#39;s impossible to tell if which group member has a higher or lower MMR.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/p7nTqmK.png\\\"\\u003EIn this screenshot, you can see the enemy team is a 6-group and is organized alphabetically.\\u003C/a\\u003E You cannot determine who has the highest or lowest MMR from this 6-stack.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EAll solo queue.\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003EIf there are no groups, then seeing who has the highest rated MMR on both teams is easier. Simply look left to right to see from lowest to highest MMR on a team. Do keep in mind that since you are always positioned bottom left, you cannot tell what MMR you are, only your teammates. However, you can find out by asking the highest rated MMR player on your team where you are positioned on their screen, and that will help you figure out if where you stand in your team. \\u003Ca href=\\\"https://i.imgur.com/bMIQr7D.jpg\\\"\\u003EAnother drawing.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EDecayed Accounts\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003EThe positioning of the portraits does not take into account the SR of the person, but the MMR. For instance, you can have a player that is around 4.4k MMR, but decayed to Masters. In a 4.1k average game, it will position this \\u0026quot;Masters\\u0026quot; player above GM\\u0026#39;s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn example of this is \\u003Ca href=\\\"https://i.imgur.com/c4yrmNB.jpg\\\"\\u003Ethis screenshot.\\u003C/a\\u003E The player Valentine had decayed but is still positioned higher due to having a higher MMR. I only have \\u003Ca href=\\\"https://clips.twitch.tv/SoftDoubtfulFriseePrimeMe\\\"\\u003Ethis clip\\u003C/a\\u003E that he explains that he hasn\\u0026#39;t played in a while (which would hint at him being decayed). If any of you can find any extra examples of decayed accounts and their portraits positioning, then share it please! I know it\\u0026#39;s a thing but I don\\u0026#39;t have much to show.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EAlso, if you leave and rejoin a competitive match, the positioning of all portraits gets messed up for some reason. Not sure why, but that\\u0026#39;s a thing.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/NZJQQgo.jpg\\\"\\u003ELast example\\u003C/a\\u003E On the enemy team, you can see that groups ignore MMR and are placed to the right and are alphabetically organized. It would appear that Pigeon would have the highest MMR on the enemy team (I\\u0026#39;m taking a guess that the duo isn\\u0026#39;t decayed.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the friendly team, the Masters players are on the left and it\\u0026#39;s safe to say that those aren\\u0026#39;t decayed accounts either. Neziwi is positioned to have a higher MMR out of the three and they are Grandmaster. Then of course the duo ignored the MMR rule and is set far right, however it would be safe to say that Zerg would be the highest rated MMR. If you are Dino in this scenario, you\\u0026#39;d have to ask other teammates where you\\u0026#39;re positioned when they press TAB to figure out where you stand on your team.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EHope this wasn\\u0026#39;t confusing, I suck at explaining things and well I always wanted to share this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?auto=webp\\u0026s=b55948b8997a97d3a4d66b2c1107e618805eefb3\", \"width\": 1368, \"height\": 672}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bd56a360da0819da36aa8dbb90b7c0c1e0bef366\", \"width\": 108, \"height\": 53}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=af8d8a88bfb68ba72a21b510ad22ecdabdcb39f8\", \"width\": 216, \"height\": 106}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=301a2df728199828321008fe18ecc7ff7a66e9cf\", \"width\": 320, \"height\": 157}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d043fabb01f80aafb92f35a196b837f4bec18e6c\", \"width\": 640, \"height\": 314}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=c5b40409bf6a7dbf0368810654efb27d971fbfa4\", \"width\": 960, \"height\": 471}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9103804bad1528f461cb8a9ffca3352914282dd3\", \"width\": 1080, \"height\": 530}], \"variants\": {}, \"id\": \"ZROe6eIaHJYbMLtqMVopuCGne3uCW67NGQzR28nxfLg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvbjmw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ieatwatermelon3\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvbjmw/title/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvbjmw/title/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559329517.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3g10qxu5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make The Galaxy Great again\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bv7m33\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/dVpFA5GDGB82WiRJ2E5_reqsaTqO4eVbprgMcAheTVo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559338611.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?auto=webp\\u0026s=5032fcfcb8c9b8b4d3d0c91db5ea099c39ccbde2\", \"width\": 720, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bf753c7677d1de410675298b0a57dec27f54ef64\", \"width\": 108, \"height\": 162}, {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3c3ae5535af89163e046ea2262caea94b92e0e29\", \"width\": 216, \"height\": 324}, {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c32e901c934b5a250c6e71296710aca7d16554d9\", \"width\": 320, \"height\": 480}, {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a8bc03446597a0d715fd15b68e9fb4fe6d59268b\", \"width\": 640, \"height\": 960}], \"variants\": {}, \"id\": \"hNbbNAjQxsHCybW2rgZJTQKwTBfWIs3zP9KEP7GFxCg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv7m33\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"binjajer\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv7m33/make_the_galaxy_great_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/gcdb8g62vj131.jpg\", \"subreddit_subscribers\": 704, \"created_utc\": 1559309811.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\n[Join the Cause!](https://i.redd.it/56dsp8netj131.jpg)\\n\\n\\u0026#x200B;\\n\\nTired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens?\\n\\nCheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.)\\n\\n[https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/](https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/)\\n\\nSquadron discord details will be disbursed upon application.\\n\\nFly bigly, commanders!\\n\\n[Make the Galaxy Great Again!](https://i.redd.it/se3vvpg3tj131.jpg)\", \"author_fullname\": \"t2_3g10qxu5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make the Galaxy Great Again!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"56dsp8netj131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 720, \"x\": 1280, \"u\": \"https://i.redd.it/56dsp8netj131.jpg\"}, \"m\": \"image/jpg\", \"id\": \"56dsp8netj131\"}, \"se3vvpg3tj131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1080, \"x\": 720, \"u\": \"https://i.redd.it/se3vvpg3tj131.jpg\"}, \"m\": \"image/jpg\", \"id\": \"se3vvpg3tj131\"}}, \"name\": \"t3_bv7huc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/4IFvYtwaO9I4-fDj96eb2Tl7zjVyhI5H9gPpozkKK08.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559337944.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/56dsp8netj131.jpg\\\"\\u003EJoin the Cause!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\\"\\u003Ehttps://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESquadron discord details will be disbursed upon application.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFly bigly, commanders!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/se3vvpg3tj131.jpg\\\"\\u003EMake the Galaxy Great Again!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv7huc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"binjajer\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559309144.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#Stats Report\\n\\nAll activity was compiled from the last 1 days of data\\n\\n***\\n##Upcoming Cookie Days\\n\\n|**user**|**cookie day**|\\n|:-:|:-:|\\n|Engvar|2017-6-26|\\n|bioszombie|2017-7-3|\\n|BrentIsAbel|2018-7-6|\\n\\n\\n\\n\\n***\\n##r/edefined\\n\\n|**mean age**|**median age**|**users kicked**|**users w/o siblings**|**kicked per week**|**kicked user of the month**|**position history graph**|**kick history graph**|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|1.04|0.9|2328|43|20%|jiggs_|[# graph](http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.pdf)|[kick graph](http://intotheskies.com/edef/stats/2019-05-30/poshistory_all_graph.pdf)|\\n\\n\\n\\n\\n***\\n##[Users](http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.png)\\n\\n|**#**|**+/-**|**user**|**#'s moved**|**#'s / botrun**|**age**|**# by add day**|**biggest jump**|**botruns survived**|**botruns moved**|**siblings**|**buddy of the month**|**# history graph**|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|1|+0|CaptainPedge|35|1.94|2.61|#1|15|117|5|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Vic_the_Dick|[graph](http://intotheskies.com/edef/stats/2019-05-30/CaptainPedge_poshistory_graph.pdf)|\\n|2|+0|LukeWarmCage|38|0.51|2.22|#2|18|112|12|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|ticktockalock|[graph](http://intotheskies.com/edef/stats/2019-05-30/LukeWarmCage_poshistory_graph.pdf)|\\n|3|+0|boomheadshot7|37|0.5|2.21|#3|16|111|13|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|BrentIsAbel|[graph](http://intotheskies.com/edef/stats/2019-05-30/boomheadshot7_poshistory_graph.pdf)|\\n|4|+0|hornplayerKC|51|0.69|2.21|#4|23|111|13|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|doncicismydaddy|[graph](http://intotheskies.com/edef/stats/2019-05-30/hornplayerKC_poshistory_graph.pdf)|\\n|5|+0|Kinighos|53|0.73|2.19|#5|23|110|15|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|And_So_It_Goess|[graph](http://intotheskies.com/edef/stats/2019-05-30/Kinighos_poshistory_graph.pdf)|\\n|6|+0|Lizzibabe|81|1.11|2.19|#6|38|110|16|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|DogfoodEnforcer|[graph](http://intotheskies.com/edef/stats/2019-05-30/Lizzibabe_poshistory_graph.pdf)|\\n|7|+0|Ravenwald|74|1.03|2.18|#7|38|109|16|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|moreawkwardthenyou|[graph](http://intotheskies.com/edef/stats/2019-05-30/Ravenwald_poshistory_graph.pdf)|\\n|8|+0|emrickgj|81|1.14|2.16|#8|27|108|19|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|fartfacepooper|[graph](http://intotheskies.com/edef/stats/2019-05-30/emrickgj_poshistory_graph.pdf)|\\n|9|+0|choontang|71|1.04|2.1|#9|32|105|21|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Hippo_Singularity|[graph](http://intotheskies.com/edef/stats/2019-05-30/choontang_poshistory_graph.pdf)|\\n|10|+0|PM-YOUR-PMS|48|0.72|2.08|#10|11|104|20|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Phaethonas|[graph](http://intotheskies.com/edef/stats/2019-05-30/PM-YOUR-PMS_poshistory_graph.pdf)|\\n|11|+0|Engvar|82|0.89|1.94|#15|30|96|28|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Error404NoUserFound|[graph](http://intotheskies.com/edef/stats/2019-05-30/Engvar_poshistory_graph.pdf)|\\n|12|+0|bioszombie|83|0.91|1.93|#16|29|95|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|1wrx2subarus|[graph](http://intotheskies.com/edef/stats/2019-05-30/bioszombie_poshistory_graph.pdf)|\\n|13|+0|draftstone|55|0.61|1.91|#17|8|94|28|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|tiffanydisasterxoxo|[graph](http://intotheskies.com/edef/stats/2019-05-30/draftstone_poshistory_graph.pdf)|\\n|14|+0|hitch21|64|0.71|1.91|#18|10|94|28|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|EarlNeonCog|[graph](http://intotheskies.com/edef/stats/2019-05-30/hitch21_poshistory_graph.pdf)|\\n|15|+0|booziwan|56|0.64|1.87|#19|9|92|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Kusmariini|[graph](http://intotheskies.com/edef/stats/2019-05-30/booziwan_poshistory_graph.pdf)|\\n|16|+0|MinagiV|59|0.67|1.87|#20|12|92|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|FerniWrites|[graph](http://intotheskies.com/edef/stats/2019-05-30/MinagiV_poshistory_graph.pdf)|\\n|17|+0|eliporter877|65|0.76|1.83|#21|16|90|28|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|DaOrkiestSalamander|[graph](http://intotheskies.com/edef/stats/2019-05-30/eliporter877_poshistory_graph.pdf)|\\n|18|+0|And_So_It_Goess|65|0.78|2.04|#13|20|87|28|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Kinighos|[graph](http://intotheskies.com/edef/stats/2019-05-30/And_So_It_Goess_poshistory_graph.pdf)|\\n|19|+0|JorgeAmVF|90|1.06|1.81|#22|34|89|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|AcePhoenixGamer|[graph](http://intotheskies.com/edef/stats/2019-05-30/JorgeAmVF_poshistory_graph.pdf)|\\n|20|+0|opticalshadow|103|1.21|1.81|#23|41|89|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|GreatDane666|[graph](http://intotheskies.com/edef/stats/2019-05-30/opticalshadow_poshistory_graph.pdf)|\\n|21|+0|moreawkwardthenyou|66|0.82|1.72|#24|18|84|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Ravenwald|[graph](http://intotheskies.com/edef/stats/2019-05-30/moreawkwardthenyou_poshistory_graph.pdf)|\\n|22|+0|1wrx2subarus|87|1.09|1.72|#25|33|84|32|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|bioszombie|[graph](http://intotheskies.com/edef/stats/2019-05-30/1wrx2subarus_poshistory_graph.pdf)|\\n|23|+0|Phaethonas|72|0.91|1.7|#26|19|83|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|PM-YOUR-PMS|[graph](http://intotheskies.com/edef/stats/2019-05-30/Phaethonas_poshistory_graph.pdf)|\\n|24|+0|xTMT|80|1.01|1.7|#27|26|83|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Cowbeller|[graph](http://intotheskies.com/edef/stats/2019-05-30/xTMT_poshistory_graph.pdf)|\\n|25|+0|medes24|69|0.91|1.64|#28|19|80|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|TheFern33|[graph](http://intotheskies.com/edef/stats/2019-05-30/medes24_poshistory_graph.pdf)|\\n|26|+0|fartfacepooper|55|0.74|1.61|#30|8|78|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|emrickgj|[graph](http://intotheskies.com/edef/stats/2019-05-30/fartfacepooper_poshistory_graph.pdf)|\\n|27|+0|YourAmishNeighbor|67|0.92|1.59|#31|13|77|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Henchman29|[graph](http://intotheskies.com/edef/stats/2019-05-30/YourAmishNeighbor_poshistory_graph.pdf)|\\n|28|+0|SJC-Caron|49|0.69|1.55|#32|9|75|27|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|dishonorable|[graph](http://intotheskies.com/edef/stats/2019-05-30/SJC-Caron_poshistory_graph.pdf)|\\n|29|+0|CNNsPrimarySource|46|0.66|1.53|#33|8|74|27|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|n3gd0|[graph](http://intotheskies.com/edef/stats/2019-05-30/CNNsPrimarySource_poshistory_graph.pdf)|\\n|30|+0|TheFern33|56|0.88|1.42|#34|12|68|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|medes24|[graph](http://intotheskies.com/edef/stats/2019-05-30/TheFern33_poshistory_graph.pdf)|\\n|31|+0|n3gd0|53|0.84|1.4|#35|8|67|30|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|CNNsPrimarySource|[graph](http://intotheskies.com/edef/stats/2019-05-30/n3gd0_poshistory_graph.pdf)|\\n|32|+0|tecrogue|55|0.87|1.4|#36|9|67|30|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|fighterace00|[graph](http://intotheskies.com/edef/stats/2019-05-30/tecrogue_poshistory_graph.pdf)|\\n|33|+0|Rougefarie|58|0.92|1.4|#37|11|67|30|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|GotZeroFucks2Give|[graph](http://intotheskies.com/edef/stats/2019-05-30/Rougefarie_poshistory_graph.pdf)|\\n|34|+0|Eurotriangle|54|0.87|1.38|#38|10|66|30|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|esoper1976|[graph](http://intotheskies.com/edef/stats/2019-05-30/Eurotriangle_poshistory_graph.pdf)|\\n|35|+0|biffpower3|52|0.95|1.24|#39|6|59|29|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|the_dank_666|[graph](http://intotheskies.com/edef/stats/2019-05-30/biffpower3_poshistory_graph.pdf)|\\n|36|+0|MrNorc|58|1.05|1.24|#40|9|59|29|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|p5yk0t1km1r4ge|[graph](http://intotheskies.com/edef/stats/2019-05-30/MrNorc_poshistory_graph.pdf)|\\n|37|+0|Hippo_Singularity|63|1.21|1.16|#41|14|56|31|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|choontang|[graph](http://intotheskies.com/edef/stats/2019-05-30/Hippo_Singularity_poshistory_graph.pdf)|\\n|38|+0|Vic_the_Dick|55|1.08|1.15|#42|6|55|30|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|CaptainPedge|[graph](http://intotheskies.com/edef/stats/2019-05-30/Vic_the_Dick_poshistory_graph.pdf)|\\n|39|+0|the_dank_666|60|1.18|1.15|#43|8|55|30|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|biffpower3|[graph](http://intotheskies.com/edef/stats/2019-05-30/the_dank_666_poshistory_graph.pdf)|\\n|40|+0|glorious_albus|58|1.21|1.07|#44|8|52|28|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|fuel126|[graph](http://intotheskies.com/edef/stats/2019-05-30/glorious_albus_poshistory_graph.pdf)|\\n|41|+0|Lorddragonfang|51|1.09|1.05|#45|8|51|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|kurtn0tk1rk|[graph](http://intotheskies.com/edef/stats/2019-05-30/Lorddragonfang_poshistory_graph.pdf)|\\n|42|+0|Sicarius_Tacet|51|1.09|1.05|#46|8|51|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|chaosdemonhu|[graph](http://intotheskies.com/edef/stats/2019-05-30/Sicarius_Tacet_poshistory_graph.pdf)|\\n|43|+0|Maxiscoolerthanyou|50|1.09|1.03|#47|7|50|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|schludy|[graph](http://intotheskies.com/edef/stats/2019-05-30/Maxiscoolerthanyou_poshistory_graph.pdf)|\\n|44|+0|Kusmariini|48|1.07|1.01|#48|7|49|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|booziwan|[graph](http://intotheskies.com/edef/stats/2019-05-30/Kusmariini_poshistory_graph.pdf)|\\n|45|+0|BrentIsAbel|53|1.29|0.92|#49|13|45|24|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|boomheadshot7|[graph](http://intotheskies.com/edef/stats/2019-05-30/BrentIsAbel_poshistory_graph.pdf)|\\n|46|+0|misterpyrrhuloxia|71|1.77|0.9|#50|26|44|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|TastyTacoN1nja|[graph](http://intotheskies.com/edef/stats/2019-05-30/misterpyrrhuloxia_poshistory_graph.pdf)|\\n|47|+0|Sickened_but_curious|77|1.93|0.9|#51|30|44|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Willowx|[graph](http://intotheskies.com/edef/stats/2019-05-30/Sickened_but_curious_poshistory_graph.pdf)|\\n|48|+0|fighterace00|85|2.12|0.9|#52|34|44|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|tecrogue|[graph](http://intotheskies.com/edef/stats/2019-05-30/fighterace00_poshistory_graph.pdf)|\\n|49|+0|Dystopian_Dreamer|62|1.59|0.88|#53|19|43|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|ClogsInBronteland|[graph](http://intotheskies.com/edef/stats/2019-05-30/Dystopian_Dreamer_poshistory_graph.pdf)|\\n|50|+0|Willowx|63|1.62|0.88|#54|20|43|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Sickened_but_curious|[graph](http://intotheskies.com/edef/stats/2019-05-30/Willowx_poshistory_graph.pdf)|\\n|51|+0|p5yk0t1km1r4ge|76|1.95|0.88|#55|29|43|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|MrNorc|[graph](http://intotheskies.com/edef/stats/2019-05-30/p5yk0t1km1r4ge_poshistory_graph.pdf)|\\n|52|+0|ClogsInBronteland|53|1.39|0.85|#56|13|42|24|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Dystopian_Dreamer|[graph](http://intotheskies.com/edef/stats/2019-05-30/ClogsInBronteland_poshistory_graph.pdf)|\\n|53|+0|Henchman29|72|1.89|0.85|#57|25|42|24|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|YourAmishNeighbor|[graph](http://intotheskies.com/edef/stats/2019-05-30/Henchman29_poshistory_graph.pdf)|\\n|54|+0|yoctometric|28|0.29|2.04|#14|27|99|57|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|MaxNobody|[graph](http://intotheskies.com/edef/stats/2019-05-30/yoctometric_poshistory_graph.pdf)|\\n|55|+0|svenguillotien|58|1.53|0.82|#59|12|40|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Ana_S_Gram|[graph](http://intotheskies.com/edef/stats/2019-05-30/svenguillotien_poshistory_graph.pdf)|\\n|56|+0|baildodger|44|1.22|0.78|#60|10|38|24|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Seven65|[graph](http://intotheskies.com/edef/stats/2019-05-30/baildodger_poshistory_graph.pdf)|\\n|57|+0|A_lot_of_arachnids|30|0.97|0.69|#62|4|33|22|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Theradead|[graph](http://intotheskies.com/edef/stats/2019-05-30/A_lot_of_arachnids_poshistory_graph.pdf)|\\n|58|+0|EarlNeonCog|36|1.2|0.67|#63|9|32|22|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|hitch21|[graph](http://intotheskies.com/edef/stats/2019-05-30/EarlNeonCog_poshistory_graph.pdf)|\\n|59|+0|madbubers|35|1.21|0.65|#64|8|31|21|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Tigernos|[graph](http://intotheskies.com/edef/stats/2019-05-30/madbubers_poshistory_graph.pdf)|\\n|60|+0|Upper_Canada_Pango|34|1.21|0.63|#65|8|30|20|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|solarSpring|[graph](http://intotheskies.com/edef/stats/2019-05-30/Upper_Canada_Pango_poshistory_graph.pdf)|\\n|61|+0|ticktockalock|39|1.39|0.63|#66|9|30|20|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|LukeWarmCage|[graph](http://intotheskies.com/edef/stats/2019-05-30/ticktockalock_poshistory_graph.pdf)|\\n|62|+0|topaz_b|24|0.92|0.59|#67|3|28|18|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|allyourbase51|[graph](http://intotheskies.com/edef/stats/2019-05-30/topaz_b_poshistory_graph.pdf)|\\n|63|+0|_Dia_|24|0.92|0.59|#68|3|28|18|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|This_Explains_It_All|[graph](http://intotheskies.com/edef/stats/2019-05-30/_Dia__poshistory_graph.pdf)|\\n|64|+0|MaxNobody|36|1.44|0.57|#69|12|27|17|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|yoctometric|[graph](http://intotheskies.com/edef/stats/2019-05-30/MaxNobody_poshistory_graph.pdf)|\\n|65|+0|kurtn0tk1rk|27|1.17|0.53|#70|7|25|16|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Lorddragonfang|[graph](http://intotheskies.com/edef/stats/2019-05-30/kurtn0tk1rk_poshistory_graph.pdf)|\\n|66|+0|Ana_S_Gram|23|0.23|2.06|#12|20|102|64|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|svenguillotien|[graph](http://intotheskies.com/edef/stats/2019-05-30/Ana_S_Gram_poshistory_graph.pdf)|\\n|67|+0|TastyTacoN1nja|24|1.09|0.51|#71|4|24|17|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|misterpyrrhuloxia|[graph](http://intotheskies.com/edef/stats/2019-05-30/TastyTacoN1nja_poshistory_graph.pdf)|\\n|68|+0|doncicismydaddy|24|1.09|0.51|#72|4|24|17|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|hornplayerKC|[graph](http://intotheskies.com/edef/stats/2019-05-30/doncicismydaddy_poshistory_graph.pdf)|\\n|69|+0|dishonorable|27|1.29|0.5|#74|4|23|17|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|SJC-Caron|[graph](http://intotheskies.com/edef/stats/2019-05-30/dishonorable_poshistory_graph.pdf)|\\n|70|+0|tiffanydisasterxoxo|12|0.12|2.08|#11|27|100|62|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|draftstone|[graph](http://intotheskies.com/edef/stats/2019-05-30/tiffanydisasterxoxo_poshistory_graph.pdf)|\\n|71|+0|solarSpring|28|1.47|0.46|#75|4|21|16|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Upper_Canada_Pango|[graph](http://intotheskies.com/edef/stats/2019-05-30/solarSpring_poshistory_graph.pdf)|\\n|72|+0|rahuldottech|28|1.56|0.44|#76|5|20|15|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|BatteredAggie19|[graph](http://intotheskies.com/edef/stats/2019-05-30/rahuldottech_poshistory_graph.pdf)|\\n|73|+0|Tigernos|27|1.93|0.32|#77|5|16|12|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|madbubers|[graph](http://intotheskies.com/edef/stats/2019-05-30/Tigernos_poshistory_graph.pdf)|\\n|74|+0|chaosdemonhu|23|1.77|0.3|#78|6|15|11|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Sicarius_Tacet|[graph](http://intotheskies.com/edef/stats/2019-05-30/chaosdemonhu_poshistory_graph.pdf)|\\n|75|+0|tlenze|22|2.0|0.27|#79|6|13|10|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|OhAces|[graph](http://intotheskies.com/edef/stats/2019-05-30/tlenze_poshistory_graph.pdf)|\\n|76|+0|AcePhoenixGamer|38|1.09|0.84|#58|17|37|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|JorgeAmVF|[graph](http://intotheskies.com/edef/stats/2019-05-30/AcePhoenixGamer_poshistory_graph.pdf)|\\n|77|+0|karmatic89|22|1.05|0.51|#73|7|23|16|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|F0000r|[graph](http://intotheskies.com/edef/stats/2019-05-30/karmatic89_poshistory_graph.pdf)|\\n|78|+0|F0000r|21|2.62|0.2|#80|5|10|7|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|karmatic89|[graph](http://intotheskies.com/edef/stats/2019-05-30/F0000r_poshistory_graph.pdf)|\\n|79|+0|Seven65|19|3.17|0.17|#81|6|8|6|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|baildodger|[graph](http://intotheskies.com/edef/stats/2019-05-30/Seven65_poshistory_graph.pdf)|\\n|80|+0|FerniWrites|21|4.2|0.15|#82|8|7|5|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|MinagiV|[graph](http://intotheskies.com/edef/stats/2019-05-30/FerniWrites_poshistory_graph.pdf)|\\n|81|+0|Error404NoUserFound|13|3.25|0.13|#83|4|6|4|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Engvar|[graph](http://intotheskies.com/edef/stats/2019-05-30/Error404NoUserFound_poshistory_graph.pdf)|\\n|82|+0|esoper1976|13|3.25|0.13|#84|4|6|4|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Eurotriangle|[graph](http://intotheskies.com/edef/stats/2019-05-30/esoper1976_poshistory_graph.pdf)|\\n|83|+0|DaOrkiestSalamander|19|0.59|0.76|#61|8|35|25|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|eliporter877|[graph](http://intotheskies.com/edef/stats/2019-05-30/DaOrkiestSalamander_poshistory_graph.pdf)|\\n|84|+0|GreatDane666|8|0.11|1.63|#29|14|76|31|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|opticalshadow|[graph](http://intotheskies.com/edef/stats/2019-05-30/GreatDane666_poshistory_graph.pdf)|\\n|85|+0|Theradead|12|4.0|0.11|#85|5|5|3|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|A_lot_of_arachnids|[graph](http://intotheskies.com/edef/stats/2019-05-30/Theradead_poshistory_graph.pdf)|\\n|86|+0|LaquaciousMute|14|4.67|0.11|#86|6|5|3|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|WhiteStripesWS6|[graph](http://intotheskies.com/edef/stats/2019-05-30/LaquaciousMute_poshistory_graph.pdf)|\\n|87|+0|allyourbase51|11|-|0.09|#87|8|4|2|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|topaz_b|[graph](http://intotheskies.com/edef/stats/2019-05-30/allyourbase51_poshistory_graph.pdf)|\\n|88|+1|Cowbeller|9|-|0.07|#88|8|3|2|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|xTMT|[graph](http://intotheskies.com/edef/stats/2019-05-30/Cowbeller_poshistory_graph.pdf)|\\n|89|+1|WhiteStripesWS6|2|-|0.05|#89|1|2|2|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|LaquaciousMute|[graph](http://intotheskies.com/edef/stats/2019-05-30/WhiteStripesWS6_poshistory_graph.pdf)|\\n|90|+1|GotZeroFucks2Give|1|-|0.04|#90|1|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Rougefarie|[graph](http://intotheskies.com/edef/stats/2019-05-30/GotZeroFucks2Give_poshistory_graph.pdf)|\\n|91|+1|bees1280|1|-|0.04|#91|1|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|UnbiasedSportsExpert|[graph](http://intotheskies.com/edef/stats/2019-05-30/bees1280_poshistory_graph.pdf)|\\n|92|+1|Gooberflagm2|1|-|0.04|#92|1|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|LMY723|[graph](http://intotheskies.com/edef/stats/2019-05-30/Gooberflagm2_poshistory_graph.pdf)|\\n|93|+2|BatteredAggie19|2|-|0.04|#93|2|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|rahuldottech|[graph](http://intotheskies.com/edef/stats/2019-05-30/BatteredAggie19_poshistory_graph.pdf)|\\n|94|+2|This_Explains_It_All|2|-|0.04|#94|2|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|_Dia_|[graph](http://intotheskies.com/edef/stats/2019-05-30/This_Explains_It_All_poshistory_graph.pdf)|\\n|95|+3|OhAces|3|-|0.04|#95|3|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|tlenze|[graph](http://intotheskies.com/edef/stats/2019-05-30/OhAces_poshistory_graph.pdf)|\\n|96|+3|LMY723|3|-|0.04|#96|3|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Gooberflagm2|[graph](http://intotheskies.com/edef/stats/2019-05-30/LMY723_poshistory_graph.pdf)|\\n|97|blue|UnbiasedSportsExpert|0|-|0.02|#97|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|bees1280|[graph](http://intotheskies.com/edef/stats/2019-05-30/UnbiasedSportsExpert_poshistory_graph.pdf)|\\n|98|blue|fuel126|0|-|0.02|#98|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|glorious_albus|[graph](http://intotheskies.com/edef/stats/2019-05-30/fuel126_poshistory_graph.pdf)|\\n|99|blue|schludy|0|-|0.02|#99|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Maxiscoolerthanyou|[graph](http://intotheskies.com/edef/stats/2019-05-30/schludy_poshistory_graph.pdf)|\\n|100|blue|DogfoodEnforcer|0|-|0.02|#100|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Lizzibabe|[graph](http://intotheskies.com/edef/stats/2019-05-30/DogfoodEnforcer_poshistory_graph.pdf)|\\n\\n\\n\\n\\n***\\n##Activity\\n(last 1 days)\\n\\n|**users active daily**|**posts**|**comments**|**avg posts / user / day**|**avg comments / user / day**|**random post of the month**|**activity graph**|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|51%|13|201|0.13|2.01|dev|[bar graph](http://intotheskies.com/edef/stats/2019-05-30/memberactivity_bar.pdf)|\\n\\n\\n\\n\\n***\\n##Our Favorite Subs\\n(last 1 days)\\n\\n|**by comment count**|**by user count**|\\n|:-:|:-:|\\n|d|d|\\n|e|e|\\n|v|v|\\n\\n\\n\\n\\n***\\n##Fallen Heroes\\n(5 longest surviving of top 20 kicked)\\n\\n|**hero**|**age at death**|\\n|:-:|:-:|\\n|RaggedFountain5|1.91|\\n|2068857539|1.91|\\n|Undoer|1.47|\\n|GeckoEidechse|1.11|\\n|OldManPhill|1.09|\\n\\n\\n\\n\\n***\\n##Recently Departed\\n(5 highest ranked of last 1 days)\\n\\n|**user**|**#**|**age at death**|**departure**|\\n|:-:|:-:|:-:|:-:|\\n|LyndyDM|54|0.78|2019-05-10|\\n|Fredstien850|77|0.15|2019-05-10|\\n|n00f|81|0.1|2019-05-10|\\n|576875|88|0.06|2019-05-24|\\n|schnapster31|90|0.0|2019-05-17|\\n\\n\\n\\n\\n***\\n##[Siblings](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)\\n(largest cookie group)\\n\\n|**cookie day**|**user**|\\n|:-:|:-:|\\n|2018-1-12|n3gd0|\\n|2018-1-12|tecrogue|\\n|2018-1-12|Rougefarie|\\n|2018-7-13|misterpyrrhuloxia|\\n|2018-7-13|Sickened_but_curious|\\n|2018-7-13|fighterace00|\\n|2018-7-20|Dystopian_Dreamer|\\n|2018-7-20|Willowx|\\n|2018-7-20|p5yk0t1km1r4ge|\\n|2018-12-1|TastyTacoN1nja|\\n|2018-12-1|doncicismydaddy|\\n|2018-12-1|karmatic89|\\n\\n\\n\\n\\n***\\n##Longest Neighbors\\n(top 2)\\n\\n|**botruns together**|**users**|\\n|:-:|:-:|\\n|108|boomheadshot7 and hornplayerKC|\\n|108|LukeWarmCage and boomheadshot7|\\n\\n\\n\\n\\n***\\nKicked users with similar usernames:\\n\\n d, e, v, \\n\\n***\\n\\n*I am not a bot, this post was performed manually by u/fighterace00\", \"author_fullname\": \"t2_j01kt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"table test2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv5tfz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559774614.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559327046.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EStats Report\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll activity was compiled from the last 1 days of data\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EUpcoming Cookie Days\\u003C/h2\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ecookie day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEngvar\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2017-6-26\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebioszombie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2017-7-3\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrentIsAbel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-6\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"/r/edefined\\\"\\u003Er/edefined\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Emean age\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Emedian age\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers kicked\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers w/o siblings\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ekicked per week\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ekicked user of the month\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eposition history graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ekick history graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2328\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ejiggs_\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.pdf\\\"\\u003E# graph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/poshistory_all_graph.pdf\\\"\\u003Ekick graph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.png\\\"\\u003EUsers\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E+/-\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u0026#39;s moved\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u0026#39;s / botrun\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eage\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E# by add day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebiggest jump\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebotruns survived\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebotruns moved\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Esiblings\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebuddy of the month\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E# history graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECaptainPedge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E117\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EVic_the_Dick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/CaptainPedge_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELukeWarmCage\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E112\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eticktockalock\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/LukeWarmCage_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eboomheadshot7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E111\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrentIsAbel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/boomheadshot7_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EhornplayerKC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E111\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edoncicismydaddy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/hornplayerKC_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKinighos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.73\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E110\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAnd_So_It_Goess\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Kinighos_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELizzibabe\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E110\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDogfoodEnforcer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Lizzibabe_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERavenwald\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.03\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E109\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emoreawkwardthenyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Ravenwald_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eemrickgj\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efartfacepooper\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/emrickgj_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echoontang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E105\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHippo_Singularity\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/choontang_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPM-YOUR-PMS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.08\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E104\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPhaethonas\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/PM-YOUR-PMS_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEngvar\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EError404NoUserFound\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Engvar_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebioszombie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1wrx2subarus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/bioszombie_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edraftstone\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etiffanydisasterxoxo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/draftstone_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ehitch21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEarlNeonCog\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/hitch21_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebooziwan\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKusmariini\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/booziwan_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMinagiV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EFerniWrites\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/MinagiV_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eeliporter877\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDaOrkiestSalamander\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/eliporter877_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAnd_So_It_Goess\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKinighos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/And_So_It_Goess_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJorgeAmVF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.06\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAcePhoenixGamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/JorgeAmVF_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eopticalshadow\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E103\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGreatDane666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/opticalshadow_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emoreawkwardthenyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERavenwald\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/moreawkwardthenyou_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1wrx2subarus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebioszombie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/1wrx2subarus_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPhaethonas\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPM-YOUR-PMS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Phaethonas_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ExTMT\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.01\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECowbeller\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/xTMT_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emedes24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheFern33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/medes24_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efartfacepooper\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eemrickgj\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/fartfacepooper_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EYourAmishNeighbor\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHenchman29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/YourAmishNeighbor_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESJC-Caron\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edishonorable\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/SJC-Caron_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECNNsPrimarySource\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En3gd0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/CNNsPrimarySource_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheFern33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emedes24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/TheFern33_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En3gd0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECNNsPrimarySource\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/n3gd0_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etecrogue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efighterace00\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/tecrogue_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERougefarie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGotZeroFucks2Give\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Rougefarie_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEurotriangle\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eesoper1976\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Eurotriangle_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebiffpower3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ethe_dank_666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/biffpower3_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMrNorc\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ep5yk0t1km1r4ge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/MrNorc_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHippo_Singularity\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echoontang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Hippo_Singularity_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EVic_the_Dick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.08\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECaptainPedge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Vic_the_Dick_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ethe_dank_666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebiffpower3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/the_dank_666_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eglorious_albus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.07\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efuel126\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/glorious_albus_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELorddragonfang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekurtn0tk1rk\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Lorddragonfang_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESicarius_Tacet\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echaosdemonhu\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Sicarius_Tacet_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxiscoolerthanyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.03\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eschludy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Maxiscoolerthanyou_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKusmariini\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.07\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.01\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebooziwan\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Kusmariini_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrentIsAbel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eboomheadshot7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/BrentIsAbel_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emisterpyrrhuloxia\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETastyTacoN1nja\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/misterpyrrhuloxia_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESickened_but_curious\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWillowx\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Sickened_but_curious_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efighterace00\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etecrogue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/fighterace00_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDystopian_Dreamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EClogsInBronteland\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Dystopian_Dreamer_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWillowx\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESickened_but_curious\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Willowx_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ep5yk0t1km1r4ge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMrNorc\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/p5yk0t1km1r4ge_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EClogsInBronteland\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDystopian_Dreamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/ClogsInBronteland_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHenchman29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EYourAmishNeighbor\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Henchman29_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eyoctometric\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E99\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxNobody\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/yoctometric_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Esvenguillotien\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAna_S_Gram\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/svenguillotien_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebaildodger\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESeven65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/baildodger_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA_lot_of_arachnids\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheradead\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/A_lot_of_arachnids_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEarlNeonCog\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ehitch21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/EarlNeonCog_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emadbubers\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETigernos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/madbubers_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUpper_Canada_Pango\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EsolarSpring\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Upper_Canada_Pango_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eticktockalock\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELukeWarmCage\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/ticktockalock_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etopaz_b\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eallyourbase51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/topaz_b_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cem\\u003EDia\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EThis_Explains_It_All\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/_Dia__poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxNobody\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eyoctometric\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/MaxNobody_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekurtn0tk1rk\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELorddragonfang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/kurtn0tk1rk_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAna_S_Gram\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.06\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E102\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Esvenguillotien\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Ana_S_Gram_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETastyTacoN1nja\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emisterpyrrhuloxia\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/TastyTacoN1nja_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edoncicismydaddy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EhornplayerKC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/doncicismydaddy_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edishonorable\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESJC-Caron\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/dishonorable_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etiffanydisasterxoxo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.08\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edraftstone\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/tiffanydisasterxoxo_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EsolarSpring\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUpper_Canada_Pango\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/solarSpring_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Erahuldottech\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBatteredAggie19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/rahuldottech_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E73\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETigernos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emadbubers\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Tigernos_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echaosdemonhu\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESicarius_Tacet\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/chaosdemonhu_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etlenze\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#79\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EOhAces\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/tlenze_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAcePhoenixGamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJorgeAmVF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/AcePhoenixGamer_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekarmatic89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#73\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EF0000r\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/karmatic89_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EF0000r\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekarmatic89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/F0000r_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E79\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESeven65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebaildodger\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Seven65_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EFerniWrites\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMinagiV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/FerniWrites_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EError404NoUserFound\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEngvar\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Error404NoUserFound_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eesoper1976\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEurotriangle\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/esoper1976_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDaOrkiestSalamander\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eeliporter877\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/DaOrkiestSalamander_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGreatDane666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eopticalshadow\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/GreatDane666_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheradead\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA_lot_of_arachnids\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Theradead_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E86\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELaquaciousMute\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#86\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWhiteStripesWS6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/LaquaciousMute_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eallyourbase51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etopaz_b\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/allyourbase51_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECowbeller\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.07\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ExTMT\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Cowbeller_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWhiteStripesWS6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELaquaciousMute\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/WhiteStripesWS6_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGotZeroFucks2Give\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERougefarie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/GotZeroFucks2Give_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebees1280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUnbiasedSportsExpert\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/bees1280_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGooberflagm2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELMY723\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Gooberflagm2_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBatteredAggie19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Erahuldottech\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/BatteredAggie19_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EThis_Explains_It_All\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cem\\u003EDia\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/This_Explains_It_All_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EOhAces\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etlenze\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/OhAces_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELMY723\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGooberflagm2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/LMY723_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUnbiasedSportsExpert\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebees1280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/UnbiasedSportsExpert_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efuel126\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eglorious_albus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/fuel126_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E99\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eschludy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#99\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxiscoolerthanyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/schludy_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDogfoodEnforcer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELizzibabe\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/DogfoodEnforcer_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EActivity\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(last 1 days)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers active daily\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eposts\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ecomments\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eavg posts / user / day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eavg comments / user / day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Erandom post of the month\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eactivity graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E201\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.01\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edev\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/memberactivity_bar.pdf\\\"\\u003Ebar graph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EOur Favorite Subs\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(last 1 days)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eby comment count\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eby user count\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ed\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ed\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ee\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ee\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ev\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ev\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EFallen Heroes\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(5 longest surviving of top 20 kicked)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ehero\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eage at death\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERaggedFountain5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2068857539\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUndoer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.47\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGeckoEidechse\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.11\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EOldManPhill\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003ERecently Departed\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(5 highest ranked of last 1 days)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eage at death\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Edeparture\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELyndyDM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EFredstien850\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En00f\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E576875\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.06\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-24\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eschnapster31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-17\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003ESiblings\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(largest cookie group)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ecookie day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-1-12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En3gd0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-1-12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etecrogue\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-1-12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERougefarie\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emisterpyrrhuloxia\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESickened_but_curious\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efighterace00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDystopian_Dreamer\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWillowx\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ep5yk0t1km1r4ge\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-12-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETastyTacoN1nja\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-12-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edoncicismydaddy\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-12-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekarmatic89\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003ELongest Neighbors\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(top 2)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebotruns together\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eboomheadshot7 and hornplayerKC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELukeWarmCage and boomheadshot7\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EKicked users with similar usernames:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ed, e, v, \\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E*I am not a bot, this post was performed manually by \\u003Ca href=\\\"/u/fighterace00\\\"\\u003Eu/fighterace00\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?auto=webp\\u0026s=cc205237bea6714c06337b455f14f778fb6d485c\", \"width\": 645, \"height\": 468}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4ad85fc0456064b525d9efedefa663385278e26b\", \"width\": 108, \"height\": 78}, {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5fa2e2e5127faa889b483cc9eb1906571a111978\", \"width\": 216, \"height\": 156}, {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=91d8338561c77d952059cba248c255c4dd3db9ab\", \"width\": 320, \"height\": 232}, {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b21ccfef6e9f53b61906d7d041d77650b9c84dab\", \"width\": 640, \"height\": 464}], \"variants\": {}, \"id\": \"syJpnjA2y2EOuPguxrqZbt8mYL90TIX_CcVnha3-Yxs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5tfz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fighterace00\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv5tfz/table_test2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv5tfz/table_test2/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559298246.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"1.\\\\*\\\\***Strategy name**: Putting this dog on Ice\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n2. \\\\*\\\\***Boss**: Ugallu D350\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n3. \\\\*\\\\***Describe your Strategy**:\\\\*\\\\* \\\\`Ice Team\\\\` / \\\\`Off-Realm\\\\`\\n\\n\\u0026#x200B;\\n\\n4. \\\\*\\\\*\\\\***Insight!**:\\\\*\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\* Laguna provides Imperils and Chain. W-MCH + LMR sets Sora up for the beatdown. 6 stack Imperil + Snow USB2 = 19999 SSS + 10kish Blitzes, capped Icy Offerings and Icicle Rushes, even with 3 off realmers.\\n\\n\\u0026#x200B;\\n\\n\\\\* Sora does Sora things\\n\\n\\u0026#x200B;\\n\\n\\\\* Elarra dances all of his buffs away and USBs to counter poison for Snow's BSB.\\n\\n\\u0026#x200B;\\n\\n\\\\* Snow USB2s then BSBs for Last Stand. Could've used USB1 for Radiant shield in hindsight since Regenga helped mitigate deaths. Icicle Rush in between for chain.\\n\\n\\u0026#x200B;\\n\\n\\\\* Vanille Protectgas then BSBs. LMR1 buffs her heals while LMR2 debuffs doge.\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***Holy Trinity casts**:\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\* **Wal**l: 1\\n\\n\\u0026#x200B;\\n\\n\\\\* **Medica**: Lots\\n\\n\\u0026#x200B;\\n\\n\\\\* **Hastega**: 1\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***S/L count / Medals lost**: 0\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***Time**: 29.32\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n|Hero, dive|Ability 1||Ability 2|RM+LMR|SB(-)|\\n\\n|:-|:-|:-|:-|:-|\\n\\n|Snow, 5, 100|Banishing Strike R3|Icicle Rush R4|DMT, LMR1, LM1|USB2(1), BSB(1)|\\n\\n|Laguna, 5, 103|Icy Offering R3|Frost Offering R4|Ace Striker, LM2, LMR|Chain(1), SSB(1)|\\n\\n|Sora, 5, 110|Snowspell Strike R4|Snowspell Strike R3|Orphaned Cub, LMR, LM2(Ice)|AASB(1), AOSB(1)|\\n\\n|Vanille, 4, 10|Curaja R4|Protectga R3|MM, LMR1, LMR2|BSB(2)|\\n\\n|Elarra, 5, 120|Multi Break R2|Enfeebling Jitterbug R4|Battleforged, LM2, LM1|USB(3+)|\\n\\n\\u0026#x200B;\\n\\n|main|sub1|sub2|sub3|sub4|\\n|:-|:-|:-|:-|:-|\\n|Mateus|Famfrit|Manticore|Madeen|Madeen|\\n|Damp Air10+Def15|BWard8+HPBoon8|Ice+15x2|ATK20x2|BWard8+SWard8|\\n\\n\\\\*\\\\*\\\\*\", \"author_fullname\": \"t2_xltvv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv4dok\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559287428.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559315081.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E1.**\\u003Cstrong\\u003EStrategy name\\u003C/strong\\u003E: Putting this dog on Ice**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E**\\u003Cstrong\\u003EBoss\\u003C/strong\\u003E: Ugallu D350**\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E**\\u003Cstrong\\u003EDescribe your Strategy\\u003C/strong\\u003E:** `Ice Team` / `Off-Realm`\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E***\\u003Cstrong\\u003EInsight!\\u003C/strong\\u003E:***\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Laguna provides Imperils and Chain. W-MCH + LMR sets Sora up for the beatdown. 6 stack Imperil + Snow USB2 = 19999 SSS + 10kish Blitzes, capped Icy Offerings and Icicle Rushes, even with 3 off realmers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Sora does Sora things\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Elarra dances all of his buffs away and USBs to counter poison for Snow\\u0026#39;s BSB.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Snow USB2s then BSBs for Last Stand. Could\\u0026#39;ve used USB1 for Radiant shield in hindsight since Regenga helped mitigate deaths. Icicle Rush in between for chain.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Vanille Protectgas then BSBs. LMR1 buffs her heals while LMR2 debuffs doge.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003EHoly Trinity casts\\u003C/strong\\u003E:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EWal\\u003C/strong\\u003El: 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EMedica\\u003C/strong\\u003E: Lots\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EHastega\\u003C/strong\\u003E: 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003ES/L count / Medals lost\\u003C/strong\\u003E: 0**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003ETime\\u003C/strong\\u003E: 29.32**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Hero, dive|Ability 1||Ability 2|RM+LMR|SB(-)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|:-|:-|:-|:-|:-|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Snow, 5, 100|Banishing Strike R3|Icicle Rush R4|DMT, LMR1, LM1|USB2(1), BSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Laguna, 5, 103|Icy Offering R3|Frost Offering R4|Ace Striker, LM2, LMR|Chain(1), SSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Sora, 5, 110|Snowspell Strike R4|Snowspell Strike R3|Orphaned Cub, LMR, LM2(Ice)|AASB(1), AOSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Vanille, 4, 10|Curaja R4|Protectga R3|MM, LMR1, LMR2|BSB(2)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Elarra, 5, 120|Multi Break R2|Enfeebling Jitterbug R4|Battleforged, LM2, LM1|USB(3+)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Emain\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub1\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub2\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub3\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub4\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMateus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFamfrit\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EManticore\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMadeen\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMadeen\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDamp Air10+Def15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBWard8+HPBoon8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EIce+15x2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EATK20x2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBWard8+SWard8\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv4dok\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tenryou\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv4dok/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv4dok/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559286281.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test2\\n\\n\\u0026#x200B;\\n\\n[test2](https://i.redd.it/gbjaof51mh131.jpg)\", \"author_fullname\": \"t2_mjiuof2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test1\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 92, \"hide_score\": false, \"media_metadata\": {\"gbjaof51mh131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1848, \"x\": 2784, \"u\": \"https://i.redd.it/gbjaof51mh131.jpg\"}, \"m\": \"image/jpg\", \"id\": \"gbjaof51mh131\"}}, \"name\": \"t3_bv3wh8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/G-x_-fkvlWPBquR_7ko3ewYcPtnUtxr0oHTB-1c3rZs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559311347.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/gbjaof51mh131.jpg\\\"\\u003Etest2\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv3wh8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hanzeedent69\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv3wh8/test1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv3wh8/test1/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559282547.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[SCP-3790](http://www.scp-wiki.net/scp-3790) - Department of Abnormalities\\n\\nAUTHOR: Croquembouche, djkaktus\\n\\n***\\n\\n3790 is a fascinating scip, ostensibly a minimalistic Series 1 entry wrapped in the modernity of a Series 4 one, ending in an absolute masterclass of an atmospheric piece that tells a story of hidden secrets, but never truly gives us its conclusion.\\n\\nAnyway, let's get on with this.\\n\\n***\\n**PART 1 - OVERVIEW**\\n\\n\\u003EObject Class: Safe\\n\\nThis tell us that this SCP is easy to contain, just put a lock on it and leave it alone. *wink wink*\\n\\u003ESpecial Containment Procedures: The door into the stairwell leading to SCP-3790 is to be padlocked at all times, and a single guard is to be posted nearby to ensure no individuals enter SCP-3790.\\n\\n\\u003EBy order of the Overseer Council, entry into SCP-3790 is forbidden.\\n\\nForbidden entry, huh? That just makes all the more enticing, you know.\\n\\u003EDescription: SCP-3790 is a structure located beneath the abandoned Port Superior Canning Company warehouse in London, United Kingdom. The only access to this space is down a narrow stairwell that ends in a short black door. The door is free of identifying markings save for a small metal placard just above the door handle that reads \\\"SCP Foundation Department of Abnormalities\\\".\\n\\nSCP Foundation Department of Abnormalities? Implying that it\\u2019s a branch that specifically deal with abnormalities alone? Isn\\u2019t that what the whole of the SCP Foundation\\u2019s job? Hmm\\u2026\\n\\nWell, there are two distinct possibilities I can think of:\\n\\n1. It\\u2019s an outdated relic of a younger, less experienced Foundation whose duty didn\\u2019t concern anomalies only, and has since been lost to time, or\\n\\n2. It\\u2019s a hidden department operation in secret, not unlike the Antimemetics Department, which deals with things so far outside the norm that not even the main Foundation can deal with.\\n\\nEither or. Perhaps both.\\n\\nThe rest of the file has been locked away by the Overseer Council. Being locked away seems to be a recurring theme, among other things. Let\\u2019s see what the Council has to hide.\\n\\n\\u003E While there is evidence of prior human activity within SCP-3790, the structure appears to have been abandoned for a considerable amount of time.\\n\\n\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists. No information regarding the structure has been located.\\n\\nBeen abandoned, or sealed off and forgotten? More questions, but no answer.\\n\\n**PART 2 - THE RUNDOWN**\\n\\n*Disclaimer: From this point onwards, I may not be able to concretely point out any real connections, nor can I ensure the ones I do are correct. Proceed with skepticism.*\\n\\nLet\\u2019s start with **Level One**:\\n\\u003ERoom One\\n\\n\\n\\u003EPlacard Name: Vivaldi\\n\\n\\u003EDescription: Chamber is empty aside from a violin propped in the far corner of the room. The bow is broken on the ground in front of it.\\n\\nAppears to be Antonio Vivaldi\\u2019s violin. Mr. Vivaldi was a famous composer, but his compositions became outmoded later in life, Vivaldi eventually came into impoverishment and died in relative obscurity.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: No placard\\n\\n\\u003EDescription: Chamber is empty.\\n\\nCould be a nod to [SCP-3930](http://www.scp-wiki.net/scp-3930), the one that doesn\\u2019t exist and if you enter, you don\\u2019t exist either. (Might also be a reference to [SCP-1935](http://www.scp-wiki.net/scp-1935) \\u201cAn Empty Chamber, but that\\u2019s shaky at best.)\\n\\n**Level Two**:\\n\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: The Crying Boy\\n\\n\\u003EDescription: A canvas is set up in the room. A sheet is draped over it.\\n\\nThe Crying Boy is famed as a cursed painting usually found undamaged amidst the ruins of burned houses. Later, more scientific analysis revealed the explanation behind this mystery, and this myth fell out of vogue.\\n\\n**Level Three**:\\n\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: The Infinite Cold\\n\\n\\u003EDescription: The floor of the chamber is covered with a thin layer of water. The interior of the room seems to be considerably larger than its exterior physical dimensions would allow.\\n\\nSeems to be a reference to [SCP-3799](http://www.scp-wiki.net/scp-3799), in which the event in question was basically retconned to no longer happen, the water implying that it melted. In another, more meta sense, it might refer to the ex-SCP-2318 \\u201cAwake in the Infinite Cold\\u201d, which the author djkaktus himself deleted out of existence.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: World Without Man\\n\\n\\u003EDescription: Chamber is empty.\\n\\n[SCP-804](http://www.scp-wiki.net/scp-804), the object that wants to delete all of humanity. The chamber being empty is interesting, though.\\n\\n**Level Four**:\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: The Morning Star\\n\\n\\u003EDescription: A rusted sword hangs on a rack in the back of the room. The door to the chamber feels warm.\\n\\nAppears to be Lucifer\\u2019s blazing sword from djkaktus\\u2019s Proposal III. Considering the story behind it, the O5 Council and the Administrator, this being a secret that they want to lock away probably belongs here.\\n\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: Wormwood\\n\\n\\u003EDescription: Viewport is obscured.\\n\\n[SCP-4008](http://www.scp-wiki.net/scp-4008) \\u201cWormwood\\u201d \\u2013 Seeds that makes people forget.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: Harmonia's Necklace\\n\\n\\u003EDescription: A simple golden necklace hangs on a post in the back of the room, which is lit by a single tall candle. The chamber does not appear to have a floor.\\n\\nThe mythical Necklace of Harmonia that grants woman eternal youth. Not sure how it ended up here.\\n\\n\\u003ERoom Four\\n\\n\\u003EPlacard Name: No placard\\n\\n\\u003EDescription: Chamber is unlit. Individuals who look into this room feel a lingering sense of dread afterward.\\n\\n[SCP-2740](http://www.scp-wiki.net/scp-2740). The unlit attic that you can\\u2019t never truly seems to grasp, and has a habit of retconning people out of existence.\\n\\n**Level Five**:\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: Tool marks indicate that placard has been pried off. The word \\\"hello\\\" is scratched into the metal where the placard should be.\\n\\n\\u003EDescription: Sliding panel is welded shut.\\n\\nSounds like [SCP-3935](http://www.scp-wiki.net/scp-3935). There\\u2019s already an excellent declass of it here, but I\\u2019ll quote this: \\u201cthe spiral of dark secrets *only goes deeper and deeper, hidden underground, buried to be forgotten*, with all the suffering still present, like the endless schools going deeper and deeper.\\\"\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: Channel 55\\n\\n\\u003EDescription: A small, CRT television sits in the center of the room. Something is playing on the screen, but a dark cloth has been draped over the top of it.\\n\\nMight be a reference to SCP-055 and SCP-2998? [SCP-2998](http://www.scp-wiki.net/scp-2998) is about an anomalous (TV) signal that contained alien which eventually took over the world. To reset it, SCP-055 and SCP-579 were used (as per Roget's Proposal) to reverse everything, and all knowledge of SCP-2998\\u2019s full extent were purged to prevent another repeat.\\n\\n**Level Six**:\\n\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: Mr. Silence\\n\\n\\u003EDescription: A tall, black, wooden box rests against the back wall. It is bound in chains and locks. A bright purple \\\"W\\\" is emblazoned on its front in gold trim.\\n\\n[A tale.] (http://www.scp-wiki.net/to-never-again-see-the-light-of-day)\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: \\u00d6tzi\\n\\n\\u003EDescription: A layer of ice covers the viewport and obscures visibility. A dark shape can be seen in the middle of the room, although no details can be distinguished.\\n\\nCould be referring to [SCP-2521](http://www.scp-wiki.net/scp-2521), if only because the description matches its image. An entity whose information cannot be spoken, and those who do are gone from this world.\\n\\n\\u003ERoom Four\\n\\n\\u003EPlacard Name: Apollyon's Crown\\n\\n\\u003EDescription: A silver lockbox rests on a table in the middle of the room. Notably, the exterior of the door is covered in scratch marks, as if by something trying to get into the chamber.\\n\\n[SCP-2317](http://www.scp-wiki.net/scp-2998). All its containment procedures boil down to 'stick their had in the sand, and hope for the best'. The O5 council made sure to keep virtually everyone in the dark about this thing, and the true SCP-2317 file remain secret to everyone but the topmost level.\\nCould also be referring to Tufto's Proposal, in which the foundation decides that the Scarlet King is no longer a threat, and ignore the underlying problem.\\n\\nAnd finally, **Level Seve**-\\n\\n\\u003E Although the opening to the seventh level is visible through the grated floor of the elevator, the lift mechanism appears to have been modified and can no longer access that floor.\\n\\nWell, ain\\u2019t that ominous.\\n\\n**PART 3 - HOW ABNORMAL**\\n\\nAs a personal observation, the chambers contain things that seems to share a general idea: They are that which we have forgotten or ignored, be it willfully, because we no longer find it fascinating, because we were made to forget, or because it no longer exist. Strangely enough, the Department of Abnormalities itself fits this criteria as well, considering:\\n\\n\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists.\\n\\nReading through SCP-3790, signs seems to point toward this being a coverup: No exploration log, no attempt to gain access to Level Seven, not even a cursory attempt to study whatever's being contained in here. \\n\\nFor something so blatantly called \\\"SCP Foundation Department of Abnormalities\\\", the Council sure seems eager to do the bare minimum of documenting it. Heck, I'm surprised thy even let us read this file at al-\\n\\n...Huh.\\n\\n**PART 4 - SECRETKEEPING**\\n\\nWhy do they let us read this file? Why not just restrict the whole thing to Clearance Level 5? Why go through the trouble of locking the rest of it but let someone know there exists an \\\"SCP Foundation Department of Abnormalities\\\" in the first place?\\n\\n*Because it's a hook.*\\n\\nIf the council deemed this thing dangerous this thing dangerous enough to lock away knowledge of its content, telling us its title seems almost counterproductive, and this file doesn't seem to classified either. In fact...\\n\\n\\u003ELock Overridden\\n\\nWe overrode the lock to gain access to the meat of 3790. Our curiosity got the better of us, and now we're exploring this abnormality of an article.\\n\\nRemember when I said \\\"More questions, but no answer.\\\"? This is what SCP-3790 is about. It's a place where secrets are put to rest, so far down that virtually no one knows what it is anymore. And that makes us ask questions, draws connections, grasping for answers that was made to never supposed to be discovered.\\n\\nUltimately, what this thing contains doesn't matter too much in the grand scheme of things. They're there as a bait to keep us digging for more, and by god, we *took* it.\\n\\n**CONCLUSION**\\n\\nI can not praise Croquembouche and djkaktus enough for writing an absolute masterclass of an article in such a way that draws everyone in, yet leaving a hole in the shape of closure, making the curious minds, both in-universe and out-, clamoring for answers.\\n\\nWhat is the Department of Abnormalities, and what resides on Level Seven? Only time can tell.\\n\\nAnd when that time comes, perhaps we will finally learn there\\u2019s a price to be paid for unearthing secrets that should never see the light of day again.\", \"author_fullname\": \"t2_2j4j6rg7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test dc\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv2mv5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559302648.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-3790\\\"\\u003ESCP-3790\\u003C/a\\u003E - Department of Abnormalities\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAUTHOR: Croquembouche, djkaktus\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E3790 is a fascinating scip, ostensibly a minimalistic Series 1 entry wrapped in the modernity of a Series 4 one, ending in an absolute masterclass of an atmospheric piece that tells a story of hidden secrets, but never truly gives us its conclusion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway, let\\u0026#39;s get on with this.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 1 - OVERVIEW\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EObject Class: Safe\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis tell us that this SCP is easy to contain, just put a lock on it and leave it alone. \\u003Cem\\u003Ewink wink\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESpecial Containment Procedures: The door into the stairwell leading to SCP-3790 is to be padlocked at all times, and a single guard is to be posted nearby to ensure no individuals enter SCP-3790.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy order of the Overseer Council, entry into SCP-3790 is forbidden.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EForbidden entry, huh? That just makes all the more enticing, you know.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDescription: SCP-3790 is a structure located beneath the abandoned Port Superior Canning Company warehouse in London, United Kingdom. The only access to this space is down a narrow stairwell that ends in a short black door. The door is free of identifying markings save for a small metal placard just above the door handle that reads \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESCP Foundation Department of Abnormalities? Implying that it\\u2019s a branch that specifically deal with abnormalities alone? Isn\\u2019t that what the whole of the SCP Foundation\\u2019s job? Hmm\\u2026\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, there are two distinct possibilities I can think of:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt\\u2019s an outdated relic of a younger, less experienced Foundation whose duty didn\\u2019t concern anomalies only, and has since been lost to time, or\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt\\u2019s a hidden department operation in secret, not unlike the Antimemetics Department, which deals with things so far outside the norm that not even the main Foundation can deal with.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EEither or. Perhaps both.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe rest of the file has been locked away by the Overseer Council. Being locked away seems to be a recurring theme, among other things. Let\\u2019s see what the Council has to hide.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWhile there is evidence of prior human activity within SCP-3790, the structure appears to have been abandoned for a considerable amount of time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists. No information regarding the structure has been located.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EBeen abandoned, or sealed off and forgotten? More questions, but no answer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 2 - THE RUNDOWN\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EDisclaimer: From this point onwards, I may not be able to concretely point out any real connections, nor can I ensure the ones I do are correct. Proceed with skepticism.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet\\u2019s start with \\u003Cstrong\\u003ELevel One\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Vivaldi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty aside from a violin propped in the far corner of the room. The bow is broken on the ground in front of it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAppears to be Antonio Vivaldi\\u2019s violin. Mr. Vivaldi was a famous composer, but his compositions became outmoded later in life, Vivaldi eventually came into impoverishment and died in relative obscurity.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: No placard\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECould be a nod to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3930\\\"\\u003ESCP-3930\\u003C/a\\u003E, the one that doesn\\u2019t exist and if you enter, you don\\u2019t exist either. (Might also be a reference to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-1935\\\"\\u003ESCP-1935\\u003C/a\\u003E \\u201cAn Empty Chamber, but that\\u2019s shaky at best.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Two\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Crying Boy\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A canvas is set up in the room. A sheet is draped over it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Crying Boy is famed as a cursed painting usually found undamaged amidst the ruins of burned houses. Later, more scientific analysis revealed the explanation behind this mystery, and this myth fell out of vogue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Three\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Infinite Cold\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: The floor of the chamber is covered with a thin layer of water. The interior of the room seems to be considerably larger than its exterior physical dimensions would allow.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESeems to be a reference to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3799\\\"\\u003ESCP-3799\\u003C/a\\u003E, in which the event in question was basically retconned to no longer happen, the water implying that it melted. In another, more meta sense, it might refer to the ex-SCP-2318 \\u201cAwake in the Infinite Cold\\u201d, which the author djkaktus himself deleted out of existence.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: World Without Man\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-804\\\"\\u003ESCP-804\\u003C/a\\u003E, the object that wants to delete all of humanity. The chamber being empty is interesting, though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Four\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Morning Star\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A rusted sword hangs on a rack in the back of the room. The door to the chamber feels warm.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAppears to be Lucifer\\u2019s blazing sword from djkaktus\\u2019s Proposal III. Considering the story behind it, the O5 Council and the Administrator, this being a secret that they want to lock away probably belongs here.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Wormwood\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Viewport is obscured.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-4008\\\"\\u003ESCP-4008\\u003C/a\\u003E \\u201cWormwood\\u201d \\u2013 Seeds that makes people forget.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Harmonia\\u0026#39;s Necklace\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A simple golden necklace hangs on a post in the back of the room, which is lit by a single tall candle. The chamber does not appear to have a floor.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe mythical Necklace of Harmonia that grants woman eternal youth. Not sure how it ended up here.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Four\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: No placard\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is unlit. Individuals who look into this room feel a lingering sense of dread afterward.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-2740\\\"\\u003ESCP-2740\\u003C/a\\u003E. The unlit attic that you can\\u2019t never truly seems to grasp, and has a habit of retconning people out of existence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Five\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Tool marks indicate that placard has been pried off. The word \\u0026quot;hello\\u0026quot; is scratched into the metal where the placard should be.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Sliding panel is welded shut.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESounds like \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3935\\\"\\u003ESCP-3935\\u003C/a\\u003E. There\\u2019s already an excellent declass of it here, but I\\u2019ll quote this: \\u201cthe spiral of dark secrets \\u003Cem\\u003Eonly goes deeper and deeper, hidden underground, buried to be forgotten\\u003C/em\\u003E, with all the suffering still present, like the endless schools going deeper and deeper.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Channel 55\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A small, CRT television sits in the center of the room. Something is playing on the screen, but a dark cloth has been draped over the top of it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMight be a reference to SCP-055 and SCP-2998? \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2998\\\"\\u003ESCP-2998\\u003C/a\\u003E is about an anomalous (TV) signal that contained alien which eventually took over the world. To reset it, SCP-055 and SCP-579 were used (as per Roget\\u0026#39;s Proposal) to reverse everything, and all knowledge of SCP-2998\\u2019s full extent were purged to prevent another repeat.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Six\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Mr. Silence\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A tall, black, wooden box rests against the back wall. It is bound in chains and locks. A bright purple \\u0026quot;W\\u0026quot; is emblazoned on its front in gold trim.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/to-never-again-see-the-light-of-day\\\"\\u003EA tale.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: \\u00d6tzi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A layer of ice covers the viewport and obscures visibility. A dark shape can be seen in the middle of the room, although no details can be distinguished.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECould be referring to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2521\\\"\\u003ESCP-2521\\u003C/a\\u003E, if only because the description matches its image. An entity whose information cannot be spoken, and those who do are gone from this world.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Four\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Apollyon\\u0026#39;s Crown\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A silver lockbox rests on a table in the middle of the room. Notably, the exterior of the door is covered in scratch marks, as if by something trying to get into the chamber.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-2998\\\"\\u003ESCP-2317\\u003C/a\\u003E. All its containment procedures boil down to \\u0026#39;stick their had in the sand, and hope for the best\\u0026#39;. The O5 council made sure to keep virtually everyone in the dark about this thing, and the true SCP-2317 file remain secret to everyone but the topmost level.\\nCould also be referring to Tufto\\u0026#39;s Proposal, in which the foundation decides that the Scarlet King is no longer a threat, and ignore the underlying problem.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd finally, \\u003Cstrong\\u003ELevel Seve\\u003C/strong\\u003E-\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAlthough the opening to the seventh level is visible through the grated floor of the elevator, the lift mechanism appears to have been modified and can no longer access that floor.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell, ain\\u2019t that ominous.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 3 - HOW ABNORMAL\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a personal observation, the chambers contain things that seems to share a general idea: They are that which we have forgotten or ignored, be it willfully, because we no longer find it fascinating, because we were made to forget, or because it no longer exist. Strangely enough, the Department of Abnormalities itself fits this criteria as well, considering:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EReading through SCP-3790, signs seems to point toward this being a coverup: No exploration log, no attempt to gain access to Level Seven, not even a cursory attempt to study whatever\\u0026#39;s being contained in here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor something so blatantly called \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot;, the Council sure seems eager to do the bare minimum of documenting it. Heck, I\\u0026#39;m surprised thy even let us read this file at al-\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...Huh.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 4 - SECRETKEEPING\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy do they let us read this file? Why not just restrict the whole thing to Clearance Level 5? Why go through the trouble of locking the rest of it but let someone know there exists an \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot; in the first place?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EBecause it\\u0026#39;s a hook.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the council deemed this thing dangerous this thing dangerous enough to lock away knowledge of its content, telling us its title seems almost counterproductive, and this file doesn\\u0026#39;t seem to classified either. In fact...\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ELock Overridden\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWe overrode the lock to gain access to the meat of 3790. Our curiosity got the better of us, and now we\\u0026#39;re exploring this abnormality of an article.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERemember when I said \\u0026quot;More questions, but no answer.\\u0026quot;? This is what SCP-3790 is about. It\\u0026#39;s a place where secrets are put to rest, so far down that virtually no one knows what it is anymore. And that makes us ask questions, draws connections, grasping for answers that was made to never supposed to be discovered.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUltimately, what this thing contains doesn\\u0026#39;t matter too much in the grand scheme of things. They\\u0026#39;re there as a bait to keep us digging for more, and by god, we \\u003Cem\\u003Etook\\u003C/em\\u003E it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECONCLUSION\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can not praise Croquembouche and djkaktus enough for writing an absolute masterclass of an article in such a way that draws everyone in, yet leaving a hole in the shape of closure, making the curious minds, both in-universe and out-, clamoring for answers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is the Department of Abnormalities, and what resides on Level Seven? Only time can tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd when that time comes, perhaps we will finally learn there\\u2019s a price to be paid for unearthing secrets that should never see the light of day again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?auto=webp\\u0026s=c819c19d942b726d0a2ff50cb74acbfff1e08a06\", \"width\": 1880, \"height\": 1253}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c2e24f32402052f314732b2536e0cc47089dcee3\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fbcce917a4186d2c4b6e3d9a8e33c2bd7a3a738f\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=61c8f923e42459533533af8ca93d4df3ee37b5e4\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f7154363e4a980a8daf17a79782c71f42a65b417\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e813d5635e53ece285115c875dd756c0acc4318b\", \"width\": 960, \"height\": 639}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d29b4e3ea4db162608c93db1eaf9d11936fdc172\", \"width\": 1080, \"height\": 719}], \"variants\": {}, \"id\": \"Qjpf9RWeib9EvmI2MPm7-BmVBDzqrMOowRjqJjf6c4g\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv2mv5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SYwaves\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559273848.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#Captain Details \\nCaptain Name\\u0026nbsp; | Dr. Jannick Carter\\u0026nbsp; | \\u0026nbsp; \\n--|--|-- \\nCaptain Career\\u0026nbsp; | Science\\u0026nbsp; | \\u0026nbsp; \\nCaptain Faction\\u0026nbsp; | Federation\\u0026nbsp; | \\u0026nbsp; \\nCaptain Race\\u0026nbsp; | Human\\u0026nbsp; | \\u0026nbsp; \\nPrimary Specialization\\u0026nbsp; | Temporal\\u0026nbsp; | \\u0026nbsp; \\nSecondary Specialization\\u0026nbsp; | Strategist\\u0026nbsp; | \\u0026nbsp; \\n#Space Skill Tree \\nRank\\u0026nbsp; | Engineering\\u0026nbsp; | \\u0026nbsp; | Science\\u0026nbsp; | \\u0026nbsp; | Tactical\\u0026nbsp; | \\u0026nbsp; | \\n--|--|--|--|--|--|-- \\nLieutenant\\u0026nbsp; | Improved Hull Restoration\\u0026nbsp; | Improved Hull Capacity\\u0026nbsp; | Improved Shield Restoration\\u0026nbsp; | Improved Shield Capacity\\u0026nbsp; | Improved Energy Weapon Training\\u0026nbsp; | Advanced Projectile Weapon Training\\u0026nbsp; \\nLt. Commander\\u0026nbsp; | Electro-Plasma System Flow\\u0026nbsp; | Advanced Impulse Expertise\\u0026nbsp; | Improved Control Expertise\\u0026nbsp; | Improved Drain Expertise\\u0026nbsp; | Targeting Expertise\\u0026nbsp; | Defensive Maneuvering\\u0026nbsp; \\n\\u0026nbsp; | Full Impulse Energy Shunt\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nCommander\\u0026nbsp; | Hull Plating\\u0026nbsp; | \\u0026nbsp; | Shield Regeneration\\u0026nbsp; | Shield Hardness\\u0026nbsp; | Improved Weapon Amplification\\u0026nbsp; | Improved Weapon Specialization\\u0026nbsp; \\nCaptain\\u0026nbsp; | Defensive Subsystem Tuning\\u0026nbsp; | Offensive Subsystem Tuning\\u0026nbsp; | Advanced Exotic Particle Generator\\u0026nbsp; | Advanced Long Range Targeting Sensors\\u0026nbsp; | Improved Hull Penetration\\u0026nbsp; | Improved Shield Weakening\\u0026nbsp; \\nAdmiral\\u0026nbsp; | Warp Core Potential\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | Warp Core Efficiency\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n1 Points Left\\u0026nbsp; | 14\\u0026nbsp; | \\u0026nbsp; | 16\\u0026nbsp; | \\u0026nbsp; | 15\\u0026nbsp; | \\u0026nbsp; \\n \\n#Space Skill Unlocks \\nPurchases\\u0026nbsp; | Engineering\\u0026nbsp; | Science\\u0026nbsp; | Tactical\\u0026nbsp; \\n--|--|--|-- \\n2\\u0026nbsp; | Hazard Emitters III\\u0026nbsp; | Science Team III\\u0026nbsp; | Tachyon Beam III\\u0026nbsp; \\n5\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n7\\u0026nbsp; | Feedback Pulse III\\u0026nbsp; | Photonic Shockwave III\\u0026nbsp; | Jam Sensors III\\u0026nbsp; \\n10\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n12\\u0026nbsp; | Polarize Hull III\\u0026nbsp; | Gravity Well III\\u0026nbsp; | Tractor Beam III\\u0026nbsp; \\n15\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n#Ship Loadout: *Fleet Advanced Research Vessel (T6)* \\nSlot\\u0026nbsp; | Item\\u0026nbsp; | Notes\\u0026nbsp; \\n--|--|-- \\nFore Weapon 1\\u0026nbsp; | Advanced Piezo- Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nFore Weapon 2\\u0026nbsp; | Gravimetric Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nFore Weapon 3\\u0026nbsp; | Terran Task Force Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 1\\u0026nbsp; | Cutting Kinetic Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 2\\u0026nbsp; | Dyson Proton Turret Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 3\\u0026nbsp; | Chronometric Polaron Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nDeflector\\u0026nbsp; | [Counter-Command Deflector Array](http://sto.gamepedia.com/Counter-Command_Deflector_Array) Mk XII Very Rare\\u0026nbsp; | 2nd - Deteriorating Secondary Deflector Mk XIV [EPG/ShdHeal]\\u0026nbsp; \\nImpulse Engines\\u0026nbsp; | [Adapted M.A.C.O. Combat Impulse Engines](http://sto.gamepedia.com/Adapted_M.A.C.O._Combat_Impulse_Engines) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nWarp Core\\u0026nbsp; | [Temporal Defense Initiative Overcharged Warp Core](http://sto.gamepedia.com/Temporal_Defense_Initiative_Overcharged_Warp_Core) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nShields\\u0026nbsp; | [Adapted M.A.C.O. Covariant Shield Array](http://sto.gamepedia.com/Adapted_M.A.C.O._Covariant_Shield_Array) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n4 Engineering Consoles\\u0026nbsp; | [Proton Particle Stabilizer](http://sto.gamepedia.com/Console_-_Universal_-_Proton_Particle_Stabilizer) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Ferrofluid Hydraulic Assembly](http://sto.gamepedia.com/Console_-_Universal_-_Ferrofluid_Hydraulic_Assembly) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Conductive RCS Accelerator [EPG]](http://sto.gamepedia.com/Console_-_Engineering_-_Conductive_RCS_Accelerator_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Delphic Tear Generator](http://sto.gamepedia.com/Console_-_Universal_-_Delphic_Tear_Generator) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n5 Science Consoles\\u0026nbsp; | [Restorative Particle Focuser [EPG] [CtrlX]](http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Restorative Particle Focuser [EPG] [CtrlX]](http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Temporal Disentanglement Suite](http://sto.gamepedia.com/Console_-_Science_-_Temporal_Disentanglement_Suite) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Plasma-Generating Weapon Signature Amplifier [EPG]](http://sto.gamepedia.com/Console_-_Science_-_Plasma-Generating_Weapon_Signature_Amplifier_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Exotic Particle Field Exciter [EPG]](http://sto.gamepedia.com/Console_-_Science_-_Exotic_Particle_Field_Exciter_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n2 Tactical Consoles\\u0026nbsp; | [Chronometric Capacitor](http://sto.gamepedia.com/Console_-_Tactical_-_Chronometric_Capacitor) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Piezo-Electric Focuser](http://sto.gamepedia.com/Console_-_Universal_-_Piezo-Electric_Focuser) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n \\n#Officer Details\\nBridge Officers\\u0026nbsp; | Power\\u0026nbsp; \\n--|-- \\nCommander Science\\u0026nbsp; | [Subspace Vortex I](http://sto.gamepedia.com/Ability:_Subspace_Vortex) \\u0026nbsp; \\n\\u0026nbsp; | [Hazard Emitters II](http://sto.gamepedia.com/Ability:_Hazard_Emitters) \\u0026nbsp; \\n\\u0026nbsp; | [Destabilizing Resonance Beam II](http://sto.gamepedia.com/Ability:_Destabilizing_Resonance_Beam) \\u0026nbsp; \\n\\u0026nbsp; | [Gravity Well III](http://sto.gamepedia.com/Ability:_Gravity_Well) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nLt. Commander Engineering-Temporal\\u0026nbsp; | [Entropic Redistribution I](http://sto.gamepedia.com/Ability:_Entropic_Redistribution) \\u0026nbsp; \\n\\u0026nbsp; | [Chronometric Inversion Field I](http://sto.gamepedia.com/Ability:_Chronometric_Inversion_Field) \\u0026nbsp; \\n\\u0026nbsp; | [Entropic Cascade II](http://sto.gamepedia.com/Ability:_Entropic_Cascade) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nLieutenant Tactical\\u0026nbsp; | [Tactical Team I](http://sto.gamepedia.com/Ability:_Tactical_Team) \\u0026nbsp; \\n\\u0026nbsp; | [Torpedo: Spread II](http://sto.gamepedia.com/Ability:_Torpedo:_Spread) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nEnsign Science\\u0026nbsp; | [Tachyon Beam I](http://sto.gamepedia.com/Ability:_Tachyon_Beam) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\n \\n#Traits \\u0026 Duty Officers \\nTrait\\u0026nbsp; | Name\\u0026nbsp; | Description\\u0026nbsp; \\n--|--|-- \\nPersonal Traits\\u0026nbsp; | Ablative Shell\\u0026nbsp; | After receiving a total of 10,000 Damage (pre-resist), trigger Ablative Shell: +X Hit Points every 0.5 sec for 3 sec, +33 All Damage Resistance Rating for 3 sec, May only trigger once per 30 sec\\u0026nbsp; \\n\\u0026nbsp; | Context is for Kings\\u0026nbsp; | Each second while in combat, if you did not take damage in the past second, you gain a damage bonus. Otherwise, you gain a boost to your Damage Resistence Rating. Each second while in combat: If you did take damage in the past second: +3 All Damage Resistence Rating for 10 sec If you did not take damage in the past second: +1% Bonus All Damage for 10 sec\\u0026nbsp; \\n\\u0026nbsp; | Fleet Coordinator\\u0026nbsp; | +2% All Damage per Team member (Self included), up to 10%\\u0026nbsp; \\n\\u0026nbsp; | Repair Crews\\u0026nbsp; | While in combat, gain 1 stack of Repair Crews every 5 sec (up to 5 max). Per Stack: +5 All Damage Resistance Rating +5% Hull Repair Rate\\u0026nbsp; \\n\\u0026nbsp; | Inspirational Leader\\u0026nbsp; | 10% chance: Activating any Bridge Officer Ability grants +10 to Most Starship Skills for 15 seconds (may stack up to 3 times).\\u0026nbsp; \\n\\u0026nbsp; | Particle Manipulator\\u0026nbsp; | Gain .2% Critical Chance and .1% Critical Severity for Exotic Damage abilities, per point you have in the Starship Exotic Particle Generator skill. The Critical Chance bonus gained from this Trait is capped at +50% (attained by having 250 Particle Generators skill), but there is no cap on the Critical Severity bonus. +__% Critical Hit Chance for Exotic Damage Abilities +__% Critical Hit Severity for Exotic Damage Abilities\\u0026nbsp; \\n\\u0026nbsp; | Projectile Training\\u0026nbsp; | +5% Projectile Weapon Damage\\u0026nbsp; \\n\\u0026nbsp; | Self-Modulating Fire\\u0026nbsp; | On outgoing Critical Hits, your energy weapons and projectiles gain +50% Shield Penetration for 10 sec (Can trigger once every 45 sec)\\u0026nbsp; \\n\\u0026nbsp; | Duelist's Fervor\\u0026nbsp; | You or your teammates getting kills will grant you a short-duration damage and accuracy rating boost. Whenever you or a teammate kills something: +5% All Damage for 10 sec +5 Accuracy Rating for 10 sec (Effect stack up to 3 times)\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nStarship Traits\\u0026nbsp; | Desperate Repairs\\u0026nbsp; | When critically hit: Grant 1 Desperation counter for 120 sec. At 3 counters: To self: +5,000 Shield Regeneration. To self: +25,000 Hit Points. Prevents gaining Desperation counters for 60 sec.\\u0026nbsp; \\n\\u0026nbsp; | Emitter Synergy\\u0026nbsp; | When using Tac or Intel Bridge Office Ability: To self: +7.5% Exotic Damage for 15 sec (Stacks up to 3 times) To self: +7.5% Shield Heals for 15 sec (Stacks up to 3 times)\\u0026nbsp; \\n\\u0026nbsp; | Reactive Repair Nanites\\u0026nbsp; | Using a hull heal ability will also heal your hangar pets within 5km of your target for a portion of the healing dealt.\\u0026nbsp; \\n\\u0026nbsp; | Tachyon Dispersal\\u0026nbsp; | While this trait is slotted, Tachyon Beam will significantly reduce the target's shield hardness while channeled. In addition, if Tachyon Beam reaches its full duration it will release a large burst of Tachyon energy that will inflict shield damage over time and reduce the hardness of affected targets within its radius.\\u0026nbsp; \\n\\u0026nbsp; | Highly Specialized\\u0026nbsp; | Each time one of their abilities is activated, it will cause all other specialist bridge officer abilities to recharge more quickly, allowing them all to be used more frequently. In addition, you will gain a boost to Starship Hull Repair, Starship Weapon Specialization and Starship Particle Generators skills. This skill buff stacks up to 5 times.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nSpace Reputation Traits\\u0026nbsp; | Advanced Targeting Systems\\u0026nbsp; | Slightly increases critical severity in space combat\\u0026nbsp; \\n\\u0026nbsp; | Torpedo Pre-Fire Sequence\\u0026nbsp; | Torpedo Damage and Destructible Torpedo Flight Speed\\u0026nbsp; \\n\\u0026nbsp; | Auxiliary Power Configuration - Offense\\u0026nbsp; | In space combat you gain a damage and accuracy boost based on your Auxiliary Power Level\\u0026nbsp; \\n\\u0026nbsp; | Omega Kinetic Shearing\\u0026nbsp; | Torpedoes and Mines deal an additional 40% of their outgoing kinetic damage as a shield-penetrating DoT over 6 seconds.\\u0026nbsp; \\n\\u0026nbsp; | Precision\\u0026nbsp; | Increases your Critical Hit Chance in space combat.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nActive Reputation Traits\\u0026nbsp; | Bio-Molecular Shield Generator\\u0026nbsp; | Bio-Molecular Shield Generator creates a fixed position shield generator, in space combat, that regenerates starship shields and reduces the damage taken by starship shields for allies in the immediate area.\\u0026nbsp; \\n\\u0026nbsp; | Deploy Sensor Interference Platform\\u0026nbsp; | Deploy a Sensor Interference Platform which redirects most weapons fire to itself. The platform generates an inhibiting feedback pulse around nearby allied vessels, reducing the damage of enemies who attack targets other than the platform.\\u0026nbsp; \\n\\u0026nbsp; | Quantum Singularity Manipulation\\u0026nbsp; | Drastically increases all space Science Stats for a short time. After a few seconds, your ship will also be cloaked for the remaining duration of the power. You may fire your weapons and use abilities normally without breaking the cloak. This cloak does not bring your shields offline.\\u0026nbsp; \\n\\u0026nbsp; | Refracting Tetryon Cascade\\u0026nbsp; | Releases a cascading burst of Tetryon energy from your Deflector Dish at foes within 3km. The Tetryon Cascade will refract from initial targets to other nearby targets, dealing less damage with each jump. The Refracting Tetryon Cascade can jump to 2 additional targets. The charge can only jump 5km to the next target. WARNING: If the target's sensors are scrambled or otherwise confused when it is hit with the Tetryon Cascade, the charge may bounce back to you or your allies.\\u0026nbsp; \\n\\u0026nbsp; | Anti-Time Entanglement Singularity\\u0026nbsp; | Anti-Time Entanglement Singularity creates an Anti-Time anomaly in the target's immediate vicinity. The singularity causes severe Physical damage to foes caught within while slowing and potentially locking them in place as normal space-time violently interacts with the anomaly. This singularity rapidly shrinks in size until it fully dissipates.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nDuty Officers\\u0026nbsp; | Projectile Weapons Officer\\u0026nbsp; | Chance to increase Kinetic Damage from torpedoes\\u0026nbsp; \\n\\u0026nbsp; | Projectile Weapons Officer\\u0026nbsp; | Chance for stacking Crit Severity buff on firing Projectiles\\u0026nbsp; \\n\\u0026nbsp; | Conn Officer\\u0026nbsp; | Recharges Evasive Maneuvers when Emergency Power to Engines is activated\\u0026nbsp; \\n\\u0026nbsp; | Deflector Officer\\u0026nbsp; | Chance to reduce the recharge time for Deflector abilities\\u0026nbsp; \\n\\u0026nbsp; | Deflector Officer\\u0026nbsp; | Chance to reduce the recharge time for Deflector abilities\\u0026nbsp; \\n\\u0026nbsp; | Gravimetric Scientist\\u0026nbsp; | Chance to create an aftershock Gravity Well\\u0026nbsp;\", \"author_fullname\": \"t2_k7vp5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv0dwk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559289215.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECaptain Details\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ECaptain Name\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EDr. Jannick Carter\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Career\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EScience\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Faction\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFederation\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Race\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHuman\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPrimary Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETemporal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESecondary Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EStrategist\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ESpace Skill Tree\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ERank\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EEngineering\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EScience\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ETactical\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELieutenant\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Restoration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Capacity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Restoration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Capacity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Energy Weapon Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Projectile Weapon Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELt. Commander\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EElectro-Plasma System Flow\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Impulse Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Control Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Drain Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETargeting Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDefensive Maneuvering\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFull Impulse Energy Shunt\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECommander\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHull Plating\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EShield Regeneration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EShield Hardness\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Weapon Amplification\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Weapon Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDefensive Subsystem Tuning\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOffensive Subsystem Tuning\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Exotic Particle Generator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Long Range Targeting Sensors\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Penetration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Weakening\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAdmiral\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWarp Core Potential\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWarp Core Efficiency\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E1 Points Left\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E14\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E16\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E15\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ESpace Skill Unlocks\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EPurchases\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EEngineering\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EScience\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ETactical\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHazard Emitters III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EScience Team III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETachyon Beam III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E5\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E7\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFeedback Pulse III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPhotonic Shockwave III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EJam Sensors III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E10\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E12\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPolarize Hull III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravity Well III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETractor Beam III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E15\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EShip Loadout: \\u003Cem\\u003EFleet Advanced Research Vessel (T6)\\u003C/em\\u003E\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ESlot\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EItem\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ENotes\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 1\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Piezo- Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravimetric Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 3\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETerran Task Force Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 1\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ECutting Kinetic Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDyson Proton Turret Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 3\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChronometric Polaron Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EDeflector\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Counter-Command_Deflector_Array\\\"\\u003ECounter-Command Deflector Array\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E2nd - Deteriorating Secondary Deflector Mk XIV [EPG/ShdHeal]\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EImpulse Engines\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Adapted_M.A.C.O._Combat_Impulse_Engines\\\"\\u003EAdapted M.A.C.O. Combat Impulse Engines\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EWarp Core\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Temporal_Defense_Initiative_Overcharged_Warp_Core\\\"\\u003ETemporal Defense Initiative Overcharged Warp Core\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EShields\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Adapted_M.A.C.O._Covariant_Shield_Array\\\"\\u003EAdapted M.A.C.O. Covariant Shield Array\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E4 Engineering Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Proton_Particle_Stabilizer\\\"\\u003EProton Particle Stabilizer\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Ferrofluid_Hydraulic_Assembly\\\"\\u003EFerrofluid Hydraulic Assembly\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Engineering_-_Conductive_RCS_Accelerator_\\\"\\u003EConductive RCS Accelerator [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Delphic_Tear_Generator\\\"\\u003EDelphic Tear Generator\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E5 Science Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_\\\"\\u003ERestorative Particle Focuser [EPG] [CtrlX]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_\\\"\\u003ERestorative Particle Focuser [EPG] [CtrlX]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Temporal_Disentanglement_Suite\\\"\\u003ETemporal Disentanglement Suite\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Plasma-Generating_Weapon_Signature_Amplifier_\\\"\\u003EPlasma-Generating Weapon Signature Amplifier [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Exotic_Particle_Field_Exciter_\\\"\\u003EExotic Particle Field Exciter [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E2 Tactical Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Tactical_-_Chronometric_Capacitor\\\"\\u003EChronometric Capacitor\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Piezo-Electric_Focuser\\\"\\u003EPiezo-Electric Focuser\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EOfficer Details\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EBridge Officers\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EPower\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECommander Science\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Subspace_Vortex\\\"\\u003ESubspace Vortex I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Hazard_Emitters\\\"\\u003EHazard Emitters II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Destabilizing_Resonance_Beam\\\"\\u003EDestabilizing Resonance Beam II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Gravity_Well\\\"\\u003EGravity Well III\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELt. Commander Engineering-Temporal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Entropic_Redistribution\\\"\\u003EEntropic Redistribution I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Chronometric_Inversion_Field\\\"\\u003EChronometric Inversion Field I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Entropic_Cascade\\\"\\u003EEntropic Cascade II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELieutenant Tactical\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Tactical_Team\\\"\\u003ETactical Team I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Torpedo:_Spread\\\"\\u003ETorpedo: Spread II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EEnsign Science\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Tachyon_Beam\\\"\\u003ETachyon Beam I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ETraits \\u0026amp; Duty Officers\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ETrait\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EName\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EDescription\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPersonal Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAblative Shell\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAfter receiving a total of 10,000 Damage (pre-resist), trigger Ablative Shell: +X Hit Points every 0.5 sec for 3 sec, +33 All Damage Resistance Rating for 3 sec, May only trigger once per 30 sec\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EContext is for Kings\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEach second while in combat, if you did not take damage in the past second, you gain a damage bonus. Otherwise, you gain a boost to your Damage Resistence Rating. Each second while in combat: If you did take damage in the past second: +3 All Damage Resistence Rating for 10 sec If you did not take damage in the past second: +1% Bonus All Damage for 10 sec\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFleet Coordinator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E+2% All Damage per Team member (Self included), up to 10%\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERepair Crews\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhile in combat, gain 1 stack of Repair Crews every 5 sec (up to 5 max). Per Stack: +5 All Damage Resistance Rating +5% Hull Repair Rate\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EInspirational Leader\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E10% chance: Activating any Bridge Officer Ability grants +10 to Most Starship Skills for 15 seconds (may stack up to 3 times).\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EParticle Manipulator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGain .2% Critical Chance and .1% Critical Severity for Exotic Damage abilities, per point you have in the Starship Exotic Particle Generator skill. The Critical Chance bonus gained from this Trait is capped at +50% (attained by having 250 Particle Generators skill), but there is no cap on the Critical Severity bonus. +\\u003Cstrong\\u003E% Critical Hit Chance for Exotic Damage Abilities +\\u003C/strong\\u003E% Critical Hit Severity for Exotic Damage Abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E+5% Projectile Weapon Damage\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ESelf-Modulating Fire\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOn outgoing Critical Hits, your energy weapons and projectiles gain +50% Shield Penetration for 10 sec (Can trigger once every 45 sec)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDuelist\\u0026#39;s Fervor\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EYou or your teammates getting kills will grant you a short-duration damage and accuracy rating boost. Whenever you or a teammate kills something: +5% All Damage for 10 sec +5 Accuracy Rating for 10 sec (Effect stack up to 3 times)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStarship Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDesperate Repairs\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhen critically hit: Grant 1 Desperation counter for 120 sec. At 3 counters: To self: +5,000 Shield Regeneration. To self: +25,000 Hit Points. Prevents gaining Desperation counters for 60 sec.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEmitter Synergy\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhen using Tac or Intel Bridge Office Ability: To self: +7.5% Exotic Damage for 15 sec (Stacks up to 3 times) To self: +7.5% Shield Heals for 15 sec (Stacks up to 3 times)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EReactive Repair Nanites\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EUsing a hull heal ability will also heal your hangar pets within 5km of your target for a portion of the healing dealt.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETachyon Dispersal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhile this trait is slotted, Tachyon Beam will significantly reduce the target\\u0026#39;s shield hardness while channeled. In addition, if Tachyon Beam reaches its full duration it will release a large burst of Tachyon energy that will inflict shield damage over time and reduce the hardness of affected targets within its radius.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHighly Specialized\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEach time one of their abilities is activated, it will cause all other specialist bridge officer abilities to recharge more quickly, allowing them all to be used more frequently. In addition, you will gain a boost to Starship Hull Repair, Starship Weapon Specialization and Starship Particle Generators skills. This skill buff stacks up to 5 times.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESpace Reputation Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Targeting Systems\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ESlightly increases critical severity in space combat\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedo Pre-Fire Sequence\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedo Damage and Destructible Torpedo Flight Speed\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAuxiliary Power Configuration - Offense\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EIn space combat you gain a damage and accuracy boost based on your Auxiliary Power Level\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOmega Kinetic Shearing\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedoes and Mines deal an additional 40% of their outgoing kinetic damage as a shield-penetrating DoT over 6 seconds.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPrecision\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EIncreases your Critical Hit Chance in space combat.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EActive Reputation Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EBio-Molecular Shield Generator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EBio-Molecular Shield Generator creates a fixed position shield generator, in space combat, that regenerates starship shields and reduces the damage taken by starship shields for allies in the immediate area.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeploy Sensor Interference Platform\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeploy a Sensor Interference Platform which redirects most weapons fire to itself. The platform generates an inhibiting feedback pulse around nearby allied vessels, reducing the damage of enemies who attack targets other than the platform.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EQuantum Singularity Manipulation\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDrastically increases all space Science Stats for a short time. After a few seconds, your ship will also be cloaked for the remaining duration of the power. You may fire your weapons and use abilities normally without breaking the cloak. This cloak does not bring your shields offline.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERefracting Tetryon Cascade\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EReleases a cascading burst of Tetryon energy from your Deflector Dish at foes within 3km. The Tetryon Cascade will refract from initial targets to other nearby targets, dealing less damage with each jump. The Refracting Tetryon Cascade can jump to 2 additional targets. The charge can only jump 5km to the next target. WARNING: If the target\\u0026#39;s sensors are scrambled or otherwise confused when it is hit with the Tetryon Cascade, the charge may bounce back to you or your allies.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAnti-Time Entanglement Singularity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAnti-Time Entanglement Singularity creates an Anti-Time anomaly in the target\\u0026#39;s immediate vicinity. The singularity causes severe Physical damage to foes caught within while slowing and potentially locking them in place as normal space-time violently interacts with the anomaly. This singularity rapidly shrinks in size until it fully dissipates.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EDuty Officers\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Weapons Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to increase Kinetic Damage from torpedoes\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Weapons Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance for stacking Crit Severity buff on firing Projectiles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EConn Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERecharges Evasive Maneuvers when Emergency Power to Engines is activated\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeflector Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to reduce the recharge time for Deflector abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeflector Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to reduce the recharge time for Deflector abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravimetric Scientist\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to create an aftershock Gravity Well\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?auto=webp\\u0026s=1b86bccaf167b2d5123de5174f8e10d449263d48\", \"width\": 290, \"height\": 80}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=69311b30c71d5588ef2476413ab46e99ccd63a63\", \"width\": 108, \"height\": 29}, {\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0f8e5d419be15a063d995bcf551bcc86c9348be3\", \"width\": 216, \"height\": 59}], \"variants\": {}, \"id\": \"8pVmilrUZuM4Y3Z8IjHjdTYNdYCe6e2y_bUeDCZKUg4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv0dwk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wooyoo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv0dwk/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv0dwk/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559260415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"............................................________ \\n....................................,.-'\\\"...................``~., \\n.............................,.-\\\"...................................\\\"-., \\n.........................,/...............................................\\\":, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\\"........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\\"~-,_..............................,:`........../ \\n.........../(_....\\\"~,_........\\\"~,_....................,:`........_/ \\n..........{.._$;_......\\\"=,_.......\\\"-,_.......,.-~-,},.~\\\";/....} \\n...........((.....*~_.......\\\"=-._......\\\";,,./`..../\\\"............../ \\n...,,,___.`~,......\\\"~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\\" \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u003E-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u003E--==`` \\n........................................_..........._,-%.......` \\n...................................,\", \"author_fullname\": \"t2_2awf2pwl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buz6bd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559282431.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E............................................________ \\n....................................,.-\\u0026#39;\\u0026quot;...................\\u003Ccode\\u003E~., \\n.............................,.-\\u0026quot;...................................\\u0026quot;-., \\n.........................,/...............................................\\u0026quot;:, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\u0026quot;........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\u0026quot;~-,_..............................,:`........../ \\n.........../(_....\\u0026quot;~,_........\\u0026quot;~,_....................,:`........_/ \\n..........{.._$;_......\\u0026quot;=,_.......\\u0026quot;-,_.......,.-~-,},.~\\u0026quot;;/....} \\n...........((.....*~_.......\\u0026quot;=-._......\\u0026quot;;,,./`..../\\u0026quot;............../ \\n...,,,___.`~,......\\u0026quot;~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\u0026quot; \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u0026gt;-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u0026gt;--==\\u003C/code\\u003E \\n........................................\\u003Cem\\u003E...........\\u003C/em\\u003E,-%.......` \\n...................................,\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buz6bd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dwolfj\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buz6bd/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559253631.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1u17f7xq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Excalibur] Darkness\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 76, \"hide_score\": false, \"name\": \"t3_buyfh6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/rQRkNUFVzJBfU0NKRterlAHy9b6lCEqixFHKQBoz6LM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559278533.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?auto=webp\\u0026s=f909102a292f8e034817ecba780a3335b97cd05a\", \"width\": 1280, \"height\": 699}, \"resolutions\": [{\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8b1f21db35f534c67e58cad03be2796677f047fb\", \"width\": 108, \"height\": 58}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=dc78a564e15d9728dda51215a38d3ac3ac354af9\", \"width\": 216, \"height\": 117}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=66018766b3c398c0c7c1f434d4805330b75a3ddb\", \"width\": 320, \"height\": 174}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1676c512c45c5c31f6b597ec4e1f263c11973593\", \"width\": 640, \"height\": 349}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5cfbc3635f1655a01d8f70f8b7772efba886c379\", \"width\": 960, \"height\": 524}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e4cbbe7cb9746362a029aeea72037dd8c8316a46\", \"width\": 1080, \"height\": 589}], \"variants\": {}, \"id\": \"hz42riBu_Nv54z_i96b8_OFwO7HaAcgdWq6FDP77RJs\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buyfh6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CephalonSoural\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buyfh6/excalibur_darkness/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/z1p9l2vgwe131.jpg\", \"subreddit_subscribers\": 704, \"created_utc\": 1559249733.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*This is a proposal for the complete overhaul of the skills modding system, which was inspired by the many suggestions calling for changes to the current system.*\\n\\n*My main objective was to create an engaging experience with clear and rewarding progression goals. I also wanted to create more flexible and convenient skills modding options than the current system could ever provide. At the end of the progression, I wanted skill power players to feel proud of their achievement.*\\n\\n*Consequently, I was able to eliminate the seemingly impossible task of obtaining exactly the mods we need, as well as the frustration associated with managing hundreds of skill mods. In a few words, the current system is daunting and unproductive.*\\n\\n*In contrast, the proposed system is filled with incentives meant to keep us playing, not only because our dedication is continually rewarded, but also because we can make progress every day.*\\n\\n\\u0026#x200B;\\n\\n**This modding system is composed of 5 parts:**\\n\\n1. Tech Proficiency Progression\\n2. Skill Mod Strength Levels\\n3. Skill Power Budgeting\\n4. Tech Proficiency Awards\\n5. Skills Maintenance\\n\\n\\u0026#x200B;\\n\\n**TECH PROFICIENCY PROGRESSION**\\n\\nEach skill variant has its own proficiency progression, which starts at level 0 and ends at level 4. Players may start a progression for their favorite skills after reaching character level 15. The final proficiency level is reserved for World Tier 5. If you're already at world tier 5, you'll simply complete the proficiency progressions you choose without interruptions.\\n\\nTech points are earned by completing activities and objectives while using your preferred skill variant. Each time your proficiency level increases, small skill power boosts are awarded for that variant, as well as other benefits mentioned later.\\n\\n***Edit:*** *How soon you can finish depends on how much you play, but it shouldn't take more than 2-3 weeks to complete the progression for all skill variants. You also don't need to start the progression for skills you're not interested in using. It's all up to you. Proficiency progressions are pretty much automatic because they work just like when you're ranking your character. That is, there is no traveling to the Quartermaster to upgrade anything. It just happens as you play.*\\n\\n\\u0026#x200B;\\n\\n**SKILL MOD STRENGTH LEVELS**\\n\\nSkill mods don\\u2019t have a percentage value. Instead, skill variants have a unique set of mods, and each set has five different strength levels that match your proficiency with the variant. Mod strength levels allow you to reach higher modding percentage values in combination with sufficient skill power. This means that it\\u2019s okay to run a low skill power build using stronger mods.\\n\\nCharacter level and world tier don't define the strength of the mods that will drop for you, but skill mods do begin to drop at character level 15. If you're already at world tier 5, there's no need to start a new character. Just start farming for mods.\\n\\nSkill mods can be obtained from the same sources we have right now (there are many), but strength levels must be collected in numerical order. This means that you must first obtain a set\\u2019s strength level 1 mod before strength 2 can drop for you, and so on.\\n\\nSkill mods won\\u2019t need inventory space because they\\u2019re stored just like weapon mods. The difference is that skill mods of greater strengths will upgrade what you\\u2019ve already collected. It\\u2019s possible to find a mod with a strength level that is higher than your proficiency level. In this case, the upgrade is saved for later use and will be automatically applied when the mod matches your proficiency level.\\n\\n***Edit:*** *You can target mod types by equipping the skill variants for which you want to find mods. So, if you want mods for your Scanner pulse and the Oxidizer chem launcher, just equip them and go play the game.*\\n\\n*Your proficiency level with a variant doesn't determine which mod strength will drop; proficiency only determines which mods you can use, and how much of a skill power boost you'll be getting.*\\n\\n*Like the proficiency progression, mod upgrades occur automatically. You just pick up the mod and the system does the rest. There's no need to unequip a weaker mod to equip a stronger mod, and there's no need to travel to the Quartermaster or a specific bench somewhere. The upgrades just happen automatically.*\\n\\n\\u0026#x200B;\\n\\n**SKILL POWER BUDGETING**\\n\\nMods unlock the slider bars you\\u2019ll use to budget your skill power, as long as the mod\\u2019s strength isn\\u2019t higher than your proficiency level.\\n\\nBudgeting skill power is an easy concept to explain. Essentially, when you increase the slider bar for a specific mod, less skill power is available for the remaining mods associated with the skill variant.\\n\\nThe budgeting method let\\u2019s you distribute custom amounts of your skill power to improve all active mods at the same time, or you can use all of your skill power to improve a single mod. The choice is yours.\\n\\nBalance is important! Skill power will affect skill mods differently, so not all slider bars begin at 0% and end at 100% improvement.\\n\\n\\u0026#x200B;\\n\\n**TECH PROFICIENCY AWARDS**\\n\\nProficiency awards can be earned for reaching maximum proficiency with a skill platform. So, if you achieve maximum proficiency with the Scanner, Remote, and Jammer Pulse, you\\u2019ll earn special rewards.\\n\\nThe best rewards are additional slots that let you save and manage modding configurations separately from loadouts, all without affecting your build.\\n\\nOther proficiency awards could include patches and cosmetics, as well as tech-oriented accessories, such as that tactical flashlight these guys keep asking for.\\n\\n\\u0026#x200B;\\n\\n**SKILLS MAINTENANCE**\\n\\nThis system also introduces the concept of skill maintenance, for which you\\u2019ll need special currency. Failure to properly maintain the equipment could have consequences, such as very long skill cooldowns.\\n\\nThe maintenance concept creates a cycle that continues even after every proficiency level has been achieved and every mod strength has been collected. *This is what could replace the seemingly impossible hunt for the correct skill mods we\\u2019re dealing with today.*\\n\\nMaintenance tasks should never create a burden for players. Maintenance should be quick and simple, *and obtaining the necessary currency or materials should result from just playing the game.* This means no lengthy animations, no complicated requirements, and no overly scarce resources.\\n\\n***Edit:*** *Which skills need maintenance depends on which skills you use. I use the Reinforcer Chem Launcher and the Assault Turret all the time. This means that I'll need to maintain only these variants. If and when I do, all I have to do is hold down the \\\"maintenance\\\" button down for 3-5 seconds and I'm done. I just need to make sure that I have enough special currency to perform the task. But how is the special currency obtained? By just playing the game.*\\n\\n\\u0026#x200B;\\n\\n***Note:*** *The skill power budgeting concept was posted on this sub, but I\\u2019m unable to find the post to give the guy credit.*\\n\\n\\u0026#x200B;\\n\\n\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\n\\n**Edit: There seems to be some confusion regarding the length of progressions and how much work really needs to be done here. I expanded some points and included clarifications in** ***italics.*** \\n\\n\\u0026#x200B;\\n\\n**Here are answers to some important questions:**\\n\\n\\u0026#x200B;\\n\\n**Why such a complicated system?**\\n\\nThe system is not complicated at all. It just takes a lot of words to explain everything. All you have to do is play the game using your favorite skills. Everything else just happens automatically, except for skills maintenance. Becoming the ultimate skill power player is meant to happen much faster than the description might make you think.\\n\\n\\u0026#x200B;\\n\\n**Why do we need a new system?**\\n\\nBecause the current system is designed to throttle progress. It could seriously take many months to years to min/max various builds. I play about 6 hours a day and I haven't min/maxed a single build. That's fine and all, but getting to a place where I can comfortably mod my skills will take way too long, plus it is frustrating to manage all those mods.\\n\\nAnother reason is that the game is boring for some people right now. To put it simply, variety and flexibility are hogtied by RNG and a huge loot pool. That's not even mentioning how skills themselves need to be worked on.\\n\\n\\u0026#x200B;\\n\\n**Why not go back to how things were in Division 1?**\\n\\nI don't think that's what they want for this game. The Division 1 made it easy to put together a skill build and boost any skill to the max. They expect effort and dedication to result in the most powerful skills, but I think they're going about it all wrong. Remember, we want skills to be powerful and modding to be convenient and flexible, but at what cost? Months and months of farming? We don't even have enough inventory space to hold all the skill mods!\\n\\n\\u0026#x200B;\\n\\n**Why a proficiency progression?**\\n\\nThe proficiency progression is a compromise that gives us something to strive for. We can't really expect to just stack skill power and collect a few mods like we did in the first game, because that's not what they seem to want. Direct evidence of what what they want is the very low probability of obtaining a single item with the correct attributes and talents. If you don't know, there is a very, very low chance of finding exactly what you need. I just don't think this very low probability should apply to modding skills. At the same time, I don't think it should be a breeze. And it should definitely not be boring.\\n\\nIt's important to also look at the big picture: the way mods are programmed to drop (randomly and with a percentage range) doesn't let us target which skills we want to improve, how well we can improve them, or even how fast we can accomplish that. Overall, the control we have is so small that it's discouraging.\\n\\nIn contrast, the system I'm proposing keeps us engaged because we're always making notable progress, we're always working toward something that is well within range. This system is also rewarding from start to finish (see Tech Proficiency Awards).\\n\\nThink about it -- the progression speed is in your hands. You choose which skills you want to work on and when. You would almost have complete control, if it weren't for the limited number of mods you need to collect. And that's a fair trade off. If skill modding is not your thing, then just let the progression and mods collection happen naturally. \\n\\nAll this convenience and bonuses in exchange for what? Two weeks to max out all skill platforms and collect a limited number of mods (that don't even have to be managed or stored). Then, there's some easy skills maintenance task that, if ignored, only affects the efficiency of the skills you use the most.\", \"author_fullname\": \"t2_3syb9zh4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buy2m9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559334132.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559276681.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EThis is a proposal for the complete overhaul of the skills modding system, which was inspired by the many suggestions calling for changes to the current system.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EMy main objective was to create an engaging experience with clear and rewarding progression goals. I also wanted to create more flexible and convenient skills modding options than the current system could ever provide. At the end of the progression, I wanted skill power players to feel proud of their achievement.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EConsequently, I was able to eliminate the seemingly impossible task of obtaining exactly the mods we need, as well as the frustration associated with managing hundreds of skill mods. In a few words, the current system is daunting and unproductive.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EIn contrast, the proposed system is filled with incentives meant to keep us playing, not only because our dedication is continually rewarded, but also because we can make progress every day.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis modding system is composed of 5 parts:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ETech Proficiency Progression\\u003C/li\\u003E\\n\\u003Cli\\u003ESkill Mod Strength Levels\\u003C/li\\u003E\\n\\u003Cli\\u003ESkill Power Budgeting\\u003C/li\\u003E\\n\\u003Cli\\u003ETech Proficiency Awards\\u003C/li\\u003E\\n\\u003Cli\\u003ESkills Maintenance\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETECH PROFICIENCY PROGRESSION\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEach skill variant has its own proficiency progression, which starts at level 0 and ends at level 4. Players may start a progression for their favorite skills after reaching character level 15. The final proficiency level is reserved for World Tier 5. If you\\u0026#39;re already at world tier 5, you\\u0026#39;ll simply complete the proficiency progressions you choose without interruptions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETech points are earned by completing activities and objectives while using your preferred skill variant. Each time your proficiency level increases, small skill power boosts are awarded for that variant, as well as other benefits mentioned later.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EHow soon you can finish depends on how much you play, but it shouldn\\u0026#39;t take more than 2-3 weeks to complete the progression for all skill variants. You also don\\u0026#39;t need to start the progression for skills you\\u0026#39;re not interested in using. It\\u0026#39;s all up to you. Proficiency progressions are pretty much automatic because they work just like when you\\u0026#39;re ranking your character. That is, there is no traveling to the Quartermaster to upgrade anything. It just happens as you play.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILL MOD STRENGTH LEVELS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods don\\u2019t have a percentage value. Instead, skill variants have a unique set of mods, and each set has five different strength levels that match your proficiency with the variant. Mod strength levels allow you to reach higher modding percentage values in combination with sufficient skill power. This means that it\\u2019s okay to run a low skill power build using stronger mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECharacter level and world tier don\\u0026#39;t define the strength of the mods that will drop for you, but skill mods do begin to drop at character level 15. If you\\u0026#39;re already at world tier 5, there\\u0026#39;s no need to start a new character. Just start farming for mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods can be obtained from the same sources we have right now (there are many), but strength levels must be collected in numerical order. This means that you must first obtain a set\\u2019s strength level 1 mod before strength 2 can drop for you, and so on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods won\\u2019t need inventory space because they\\u2019re stored just like weapon mods. The difference is that skill mods of greater strengths will upgrade what you\\u2019ve already collected. It\\u2019s possible to find a mod with a strength level that is higher than your proficiency level. In this case, the upgrade is saved for later use and will be automatically applied when the mod matches your proficiency level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EYou can target mod types by equipping the skill variants for which you want to find mods. So, if you want mods for your Scanner pulse and the Oxidizer chem launcher, just equip them and go play the game.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EYour proficiency level with a variant doesn\\u0026#39;t determine which mod strength will drop; proficiency only determines which mods you can use, and how much of a skill power boost you\\u0026#39;ll be getting.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ELike the proficiency progression, mod upgrades occur automatically. You just pick up the mod and the system does the rest. There\\u0026#39;s no need to unequip a weaker mod to equip a stronger mod, and there\\u0026#39;s no need to travel to the Quartermaster or a specific bench somewhere. The upgrades just happen automatically.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILL POWER BUDGETING\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMods unlock the slider bars you\\u2019ll use to budget your skill power, as long as the mod\\u2019s strength isn\\u2019t higher than your proficiency level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBudgeting skill power is an easy concept to explain. Essentially, when you increase the slider bar for a specific mod, less skill power is available for the remaining mods associated with the skill variant.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe budgeting method let\\u2019s you distribute custom amounts of your skill power to improve all active mods at the same time, or you can use all of your skill power to improve a single mod. The choice is yours.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBalance is important! Skill power will affect skill mods differently, so not all slider bars begin at 0% and end at 100% improvement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETECH PROFICIENCY AWARDS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EProficiency awards can be earned for reaching maximum proficiency with a skill platform. So, if you achieve maximum proficiency with the Scanner, Remote, and Jammer Pulse, you\\u2019ll earn special rewards.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe best rewards are additional slots that let you save and manage modding configurations separately from loadouts, all without affecting your build.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOther proficiency awards could include patches and cosmetics, as well as tech-oriented accessories, such as that tactical flashlight these guys keep asking for.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILLS MAINTENANCE\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis system also introduces the concept of skill maintenance, for which you\\u2019ll need special currency. Failure to properly maintain the equipment could have consequences, such as very long skill cooldowns.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe maintenance concept creates a cycle that continues even after every proficiency level has been achieved and every mod strength has been collected. \\u003Cem\\u003EThis is what could replace the seemingly impossible hunt for the correct skill mods we\\u2019re dealing with today.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaintenance tasks should never create a burden for players. Maintenance should be quick and simple, \\u003Cem\\u003Eand obtaining the necessary currency or materials should result from just playing the game.\\u003C/em\\u003E This means no lengthy animations, no complicated requirements, and no overly scarce resources.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EWhich skills need maintenance depends on which skills you use. I use the Reinforcer Chem Launcher and the Assault Turret all the time. This means that I\\u0026#39;ll need to maintain only these variants. If and when I do, all I have to do is hold down the \\u0026quot;maintenance\\u0026quot; button down for 3-5 seconds and I\\u0026#39;m done. I just need to make sure that I have enough special currency to perform the task. But how is the special currency obtained? By just playing the game.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENote:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EThe skill power budgeting concept was posted on this sub, but I\\u2019m unable to find the post to give the guy credit.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E__________________________________________________________________\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit: There seems to be some confusion regarding the length of progressions and how much work really needs to be done here. I expanded some points and included clarifications in\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003Eitalics.\\u003C/em\\u003E\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHere are answers to some important questions:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy such a complicated system?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe system is not complicated at all. It just takes a lot of words to explain everything. All you have to do is play the game using your favorite skills. Everything else just happens automatically, except for skills maintenance. Becoming the ultimate skill power player is meant to happen much faster than the description might make you think.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy do we need a new system?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause the current system is designed to throttle progress. It could seriously take many months to years to min/max various builds. I play about 6 hours a day and I haven\\u0026#39;t min/maxed a single build. That\\u0026#39;s fine and all, but getting to a place where I can comfortably mod my skills will take way too long, plus it is frustrating to manage all those mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother reason is that the game is boring for some people right now. To put it simply, variety and flexibility are hogtied by RNG and a huge loot pool. That\\u0026#39;s not even mentioning how skills themselves need to be worked on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy not go back to how things were in Division 1?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t think that\\u0026#39;s what they want for this game. The Division 1 made it easy to put together a skill build and boost any skill to the max. They expect effort and dedication to result in the most powerful skills, but I think they\\u0026#39;re going about it all wrong. Remember, we want skills to be powerful and modding to be convenient and flexible, but at what cost? Months and months of farming? We don\\u0026#39;t even have enough inventory space to hold all the skill mods!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy a proficiency progression?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe proficiency progression is a compromise that gives us something to strive for. We can\\u0026#39;t really expect to just stack skill power and collect a few mods like we did in the first game, because that\\u0026#39;s not what they seem to want. Direct evidence of what what they want is the very low probability of obtaining a single item with the correct attributes and talents. If you don\\u0026#39;t know, there is a very, very low chance of finding exactly what you need. I just don\\u0026#39;t think this very low probability should apply to modding skills. At the same time, I don\\u0026#39;t think it should be a breeze. And it should definitely not be boring.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s important to also look at the big picture: the way mods are programmed to drop (randomly and with a percentage range) doesn\\u0026#39;t let us target which skills we want to improve, how well we can improve them, or even how fast we can accomplish that. Overall, the control we have is so small that it\\u0026#39;s discouraging.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn contrast, the system I\\u0026#39;m proposing keeps us engaged because we\\u0026#39;re always making notable progress, we\\u0026#39;re always working toward something that is well within range. This system is also rewarding from start to finish (see Tech Proficiency Awards).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThink about it -- the progression speed is in your hands. You choose which skills you want to work on and when. You would almost have complete control, if it weren\\u0026#39;t for the limited number of mods you need to collect. And that\\u0026#39;s a fair trade off. If skill modding is not your thing, then just let the progression and mods collection happen naturally. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll this convenience and bonuses in exchange for what? Two weeks to max out all skill platforms and collect a limited number of mods (that don\\u0026#39;t even have to be managed or stored). Then, there\\u0026#39;s some easy skills maintenance task that, if ignored, only affects the efficiency of the skills you use the most.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buy2m9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KelpieCyanide\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buy2m9/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buy2m9/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559247881.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" line 1\\n \\n line 2\\n \\n line 3\\n\\nnormal text\", \"author_fullname\": \"t2_6k6mm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buvucz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559265507.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003Eline 1\\n\\nline 2\\n\\nline 3\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Enormal text\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buvucz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Wongehchuu\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buvucz/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buvucz/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559236707.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"```lua\\nlocal ffi = require(\\\"ffi\\\")\\n\\nffi.cdef[[\\nvoid Sleep(unsigned int seconds); \\n]]\\n```\", \"author_fullname\": \"t2_391wfwow\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buu8cl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559257370.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E```lua\\nlocal ffi = require(\\u0026quot;ffi\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Effi.cdef[[\\nvoid Sleep(unsigned int seconds); \\n]]\\n```\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buu8cl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Anxious_Theory\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buu8cl/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buu8cl/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559228570.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I would like to draw comparison between the 2 incidents.\\n\\n|Date|Ceb|Date|Kuku|\\n|:-|:-|:-|:-|\\n|23/05/2019 Pt1|[Ceb made a crude remark in an EU pub](https://www.removeddit.com/r/DotA2/comments/bs2l9m/ogceb_new_lvl_tilting/) [First reported by u/LVR322 but retracted after Ceb contacted him](https://ibb.co/sgpM4bF)|2/11/2018|[Kuku made the crude remark in a Sea pub](https://www.reddit.com/r/DotA2/comments/9tippm/just_after_col_drama_tnc_kuku_did_it_again_at/)[Initial chinese reaction](https://twitter.com/GodBlessMali/status/1058326847321202688)|2/11/2018|[Kuku apologised on facebook](https://www.facebook.com/pogingkuku/posts/2190153977864424)|\\n|23/05/2019 Pt2|[Another player from same game makes the same complaint](https://www.reddit.com/r/DotA2/comments/bs9ero/ogceb/) [Ceb initial apology](https://www.reddit.com/r/DotA2/comments/bsahbl/ogcebs\\\\_first\\\\_reply\\\\_for\\\\_people\\\\_who\\\\_are\\\\_too\\\\_lazy\\\\_to/)|3/11/2018|[Mender of his Weibo account created an excuse for the remark and was exposed](https://old.reddit.com/r/DotA2/comments/9trn4s/kuku\\\\_apologized\\\\_with\\\\_a\\\\_plot\\\\_twist)\\n|24/05/2019|[Solo take personal action to avoid Epicenter unless Valve make clear of their rules openly](https://www.reddit.com/r/DotA2/comments/bsgsbp/vp\\\\_solo\\\\_wont\\\\_participate\\\\_at\\\\_epicenter\\\\_unless)|3/11/2018|[Mender of his Weibo account created an excuse for the remark and was exposed](https://old.reddit.com/r/DotA2/comments/9trn4s/kuku\\\\_apologized\\\\_with\\\\_a\\\\_plot\\\\_twist)|\\n|25/05/2019|[Pasha also voices his displeasure with valve inconsistencies](https://www.reddit.com/r/DotA2/comments/bsxs9o/vp9pasha\\\\_people\\\\_want\\\\_to\\\\_see\\\\_the\\\\_rules\\\\_so\\\\_that) [Ceb second apology](https://www.reddit.com/r/DotA2/comments/bsuu97/one\\\\_day\\\\_wiser\\\\_twitlonger\\\\_by\\\\_ceb/)|11/11/2018|[Valve initial reaction to let things sort itself out](https://www.reddit.com/r/DotA2/comments/9w1547/the\\\\_major\\\\_and\\\\_professional\\\\_dota\\\\_players/)|\\n|25/05/2019|[Ceb interview with u/LVR322 on the issue](https://www.reddit.com/r/DotA2/comments/bsrtg6/cebs\\\\_first\\\\_thread\\\\_op\\\\_ceb\\\\_told\\\\_me\\\\_that\\\\_he\\\\_might/)|13/11/2018|[TNC manager admit to his mistake](https://www.reddit.com/r/DotA2/comments/9wrkhi/tncs\\\\_manager\\\\_confesses\\\\_that\\\\_he\\\\_was\\\\_the\\\\_one\\\\_who/)|\\n|26/05/2019|[Valve now working with all stakeholders for a long term solution](https://www.reddit.com/r/DotA2/comments/bt6lhw/solo\\\\_valve\\\\_and\\\\_seb\\\\_are\\\\_working\\\\_on\\\\_a\\\\_longterm/) |24/11/2018| [Cyborgmatt first mention of the ban of Kuku and Skem from the CQ major](https://www.reddit.com/r/DotA2/comments/9zxa5q/cyborgmatt\\\\_confirms\\\\_kuku\\\\_and\\\\_skem\\\\_are\\\\_banned/) [Immediate reaction from reddit](https://old.reddit.com/r/DotA2/comments/9zxbyv/valve\\\\_if\\\\_you\\\\_let\\\\_kuku\\\\_and\\\\_skem\\\\_and\\\\_be\\\\_banned\\\\_from) [Ceb reaction](https://www.reddit.com/r/DotA2/comments/9zyhh6/i\\\\_believe\\\\_in\\\\_talk\\\\_no\\\\_jutsu\\\\_and\\\\_i\\\\_hope\\\\_others\\\\_will/)\\n|||25/11/2018|[TNC punishment to Kuku and the manager for their actions](https://old.reddit.com/r/DotA2/comments/a05u22/tnc\\\\_on\\\\_the\\\\_responsibility\\\\_being\\\\_taken\\\\_for\\\\_kuku/)|\\n|||27/11/2018|[TNC qualifies for CQ major](https://www.reddit.com/r/DotA2/comments/a0vobe/congratulations\\\\_to\\\\_the\\\\_2nd\\\\_sea\\\\_team\\\\_to\\\\_qualify/)|\\n|||2/12/2018|[Grantgrant putting himself on the line for Kuku](https://old.reddit.com/r/DotA2/comments/a2agjg/grant\\\\_putting\\\\_his\\\\_casting\\\\_career\\\\_on\\\\_the\\\\_line\\\\_for/) [Action taken by other casters](https://old.reddit.com/r/DotA2/comments/a2fc30/chongqing\\\\_major\\\\_updates\\\\_megathread/) [CQ Org correspondence with TNC](https://www.reddit.com/r/DotA2/comments/a2bt4r/tncs\\\\_new\\\\_statement\\\\_about\\\\_the\\\\_issue/) [IMBATV refusal to contact TNC](https://www.facebook.com/840515722697409/posts/2043073252441644/)|\\n|||3/12/2018|[Valve outright banning kuku after being unsatified with TNC handling](https://www.reddit.com/r/DotA2/comments/a2uary/tnc\\\\_and\\\\_the\\\\_chongqing\\\\_major/) [People calling out valve for their inconsistencies](https://old.reddit.com/r/DotA2/comments/a2umx5/valve\\\\_this\\\\_is\\\\_the\\\\_most\\\\_disappointed\\\\_i\\\\_have\\\\_ever) [2](https://www.reddit.com/r/DotA2/comments/a2ulv2/valves\\\\_statement\\\\_doesnt\\\\_make\\\\_sense/) [3](https://www.reddit.com/r/DotA2/comments/a3b62g/the\\\\_problem\\\\_with\\\\_valves\\\\_statement\\\\_is\\\\_part\\\\_of/) [4](https://old.reddit.com/r/DotA2/comments/a2yp85/since\\\\_valve\\\\_already\\\\_punished\\\\_kuku\\\\_and\\\\_tnc\\\\_should/)||\\n|||11/2/2019|[Kuku banned from attending WESG also held in CQ](https://www.reddit.com/r/DotA2/comments/apfsgy/kuku\\\\_is\\\\_not\\\\_allowed\\\\_to\\\\_enter\\\\_chongqing\\\\_for\\\\_the/) [Valve response](https://www.reddit.com/r/DotA2/comments/aplzur/danielj\\\\_valve\\\\_responds\\\\_regarding\\\\_kuku\\\\_and/) [reddit's reaction](https://www.reddit.com/r/DotA2/comments/apgsen/valve\\\\_straight\\\\_out\\\\_lied\\\\_about\\\\_the\\\\_kuku\\\\_issue\\\\_just/)|\\n|||||\\n\\nI have added additional link labelled in numbers for some reference and context.\\n\\n\\u0026#x200B;\\n\\nWe can safely say that Solo's want for consistency and transparency on valve part have not been realised. Their latest update to work on a long term solution is not openly released to the public and we are not informed if Solo has changed his stance on avoiding Epicenter. Valve are still buying time to make their rules and we are already at the tail end of the DPC.\\n\\n\\u0026#x200B;\\n\\nFrom the interview, Ceb has personally said he will be willing to take the same punishment as Kuku for precedence sake and that he probably would not go to EPICENTER himself, because he started receiving messages with threats. I respect that he is will to hold himself to that punishment.\\n\\n\\u0026#x200B;\\n\\nNow that TI invites are on the line, the docking of TNC points in the DPC could make or brake the chances TNC have for a TI invite as they are one of the team hotly in contention.\\n\\n\\u0026#x200B;\\n\\nValve reluctance to make clear rules for their game makes it very difficult for us audience observe the DPC as objective. I hope they release the schematics of their rules at least before the start of the next minor.\", \"author_fullname\": \"t2_27i74989\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bupc9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559199157.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559222693.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to draw comparison between the 2 incidents.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ECeb\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EKuku\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23/05/2019 Pt1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.removeddit.com/r/DotA2/comments/bs2l9m/ogceb_new_lvl_tilting/\\\"\\u003ECeb made a crude remark in an EU pub\\u003C/a\\u003E \\u003Ca href=\\\"https://ibb.co/sgpM4bF\\\"\\u003EFirst reported by u/LVR322 but retracted after Ceb contacted him\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9tippm/just_after_col_drama_tnc_kuku_did_it_again_at/\\\"\\u003EKuku made the crude remark in a Sea pub\\u003C/a\\u003E\\u003Ca href=\\\"https://twitter.com/GodBlessMali/status/1058326847321202688\\\"\\u003EInitial chinese reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23/05/2019 Pt2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bs9ero/ogceb/\\\"\\u003EAnother player from same game makes the same complaint\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsahbl/ogcebs_first_reply_for_people_who_are_too_lazy_to/\\\"\\u003ECeb initial apology\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9trn4s/kuku_apologized_with_a_plot_twist\\\"\\u003EMender of his Weibo account created an excuse for the remark and was exposed\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E24/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsgsbp/vp_solo_wont_participate_at_epicenter_unless\\\"\\u003ESolo take personal action to avoid Epicenter unless Valve make clear of their rules openly\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9trn4s/kuku_apologized_with_a_plot_twist\\\"\\u003EMender of his Weibo account created an excuse for the remark and was exposed\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsxs9o/vp9pasha_people_want_to_see_the_rules_so_that\\\"\\u003EPasha also voices his displeasure with valve inconsistencies\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsuu97/one_day_wiser_twitlonger_by_ceb/\\\"\\u003ECeb second apology\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9w1547/the_major_and_professional_dota_players/\\\"\\u003EValve initial reaction to let things sort itself out\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsrtg6/cebs_first_thread_op_ceb_told_me_that_he_might/\\\"\\u003ECeb interview with u/LVR322 on the issue\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9wrkhi/tncs_manager_confesses_that_he_was_the_one_who/\\\"\\u003ETNC manager admit to his mistake\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bt6lhw/solo_valve_and_seb_are_working_on_a_longterm/\\\"\\u003EValve now working with all stakeholders for a long term solution\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E24/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9zxa5q/cyborgmatt_confirms_kuku_and_skem_are_banned/\\\"\\u003ECyborgmatt first mention of the ban of Kuku and Skem from the CQ major\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9zxbyv/valve_if_you_let_kuku_and_skem_and_be_banned_from\\\"\\u003EImmediate reaction from reddit\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9zyhh6/i_believe_in_talk_no_jutsu_and_i_hope_others_will/\\\"\\u003ECeb reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a05u22/tnc_on_the_responsibility_being_taken_for_kuku/\\\"\\u003ETNC punishment to Kuku and the manager for their actions\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E27/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a0vobe/congratulations_to_the_2nd_sea_team_to_qualify/\\\"\\u003ETNC qualifies for CQ major\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2/12/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2agjg/grant_putting_his_casting_career_on_the_line_for/\\\"\\u003EGrantgrant putting himself on the line for Kuku\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2fc30/chongqing_major_updates_megathread/\\\"\\u003EAction taken by other casters\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2bt4r/tncs_new_statement_about_the_issue/\\\"\\u003ECQ Org correspondence with TNC\\u003C/a\\u003E \\u003Ca href=\\\"https://www.facebook.com/840515722697409/posts/2043073252441644/\\\"\\u003EIMBATV refusal to contact TNC\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/12/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2uary/tnc_and_the_chongqing_major/\\\"\\u003EValve outright banning kuku after being unsatified with TNC handling\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2umx5/valve_this_is_the_most_disappointed_i_have_ever\\\"\\u003EPeople calling out valve for their inconsistencies\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2ulv2/valves_statement_doesnt_make_sense/\\\"\\u003E2\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a3b62g/the_problem_with_valves_statement_is_part_of/\\\"\\u003E3\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2yp85/since_valve_already_punished_kuku_and_tnc_should/\\\"\\u003E4\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11/2/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/apfsgy/kuku_is_not_allowed_to_enter_chongqing_for_the/\\\"\\u003EKuku banned from attending WESG also held in CQ\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/aplzur/danielj_valve_responds_regarding_kuku_and/\\\"\\u003EValve response\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/apgsen/valve_straight_out_lied_about_the_kuku_issue_just/\\\"\\u003Ereddit\\u0026#39;s reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EI have added additional link labelled in numbers for some reference and context.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe can safely say that Solo\\u0026#39;s want for consistency and transparency on valve part have not been realised. Their latest update to work on a long term solution is not openly released to the public and we are not informed if Solo has changed his stance on avoiding Epicenter. Valve are still buying time to make their rules and we are already at the tail end of the DPC.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the interview, Ceb has personally said he will be willing to take the same punishment as Kuku for precedence sake and that he probably would not go to EPICENTER himself, because he started receiving messages with threats. I respect that he is will to hold himself to that punishment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow that TI invites are on the line, the docking of TNC points in the DPC could make or brake the chances TNC have for a TI invite as they are one of the team hotly in contention.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EValve reluctance to make clear rules for their game makes it very difficult for us audience observe the DPC as objective. I hope they release the schematics of their rules at least before the start of the next minor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bupc9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Achuapy\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bupc9u/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bupc9u/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559193893.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\", \"author_fullname\": \"t2_j01kt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"table test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bum3x6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559173943.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559202526.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bum3x6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fighterace00\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bum3x6/table_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bum3x6/table_test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559173726.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"TL;DR: No tl;dr\\n\\nI refuse to use an absolute tierlist to make my decisions on what should I be choosing upon level-up. I'd rather base my ability choices on the weapon I'm using as well as previously selected abilities.\\n\\n#Scythe\\n\\n##Traits:\\n\\n* It boasts high damage per hit, so I like to aim for a Nuking-one-by-one build.\\n* It boasts high knockback per hit, so I like to keep that in mind, it makes ASPD not as desirable because you could be knocking back a flying enemy through a wall and then your next shots won't hit it.\\n\\n##Core Ability Choices:\\n\\n* **Multi-shot** firing an extra layer of arrows in every direction you fire is awesome, even if they only deal a portion of your original DPH, specially helpful if you're going in point-blank range, *get as many of this as you can!*\\n* **Rage**, it is an absolute must-pick, it can greatly increase your offensive capabilities when you're in a pinch (and Offense is the best defense when your defense is failing you), I find it satisfying to land a crit almost 2x as strong as usual because I'm under 100hp.\\n * You lose HP, you gain power INSTANTLY.\\n * You gain HP, you lose power but have more breathing room.\\n* **Wingman**, is another absolute must-pick, your spirits can help you survive by fully blocking shots, and this only gets better and better as enemies fire more often and their projectile trajectories are less-predictable each World.\\n* **ATK** increases damage based off your Base DPS (Damage per shot), so, the higher your base DPS is, makes this ability more desirable for this weapon and Scythe has the highest DPS.\\n* **Diagonal** is in the eyes of some is reliant on having **Bouncy-Wall**, and yeah *stray that could or could not hit an enemy* are good, they are not the only saving grace for this ability. Keep in mind that:\\n * Each diagonal scythe you fire from this ablity, deals 100% of your hit damage, so by getting it you're pouring out 3x as much damage out in the wind as opposed to only firing a frontal scythe.\\n * Some enemies like to get up close and personal with you, and geting 3 nukes to their face can quickly get you out of this pit, including boss monters.\\n * If you get multiple **ATK**/**CRIT** upgrades and **Rage**, this is an instant synergy.\\n * You can add **Invincible** for even more time to go nuts on butchering bosses from the inside out (The first time I cleared the Chapter 3 Dragon, I just walked under its face and stood there for 3-4 seconds before it died).\\n * Multiple hits means multiple chances to crit, and the only thing you like more than landing muliple nukes instantly every time you fire a shot, is some of them critting the boss to oblivion.\\n * If you're good enough you can get to point-blank distance without touching the enemy and sucessfully firing 3 nukes in their face, this makes it much more desirable than **Side**/**Rear** (which only really work for this strat when you're firing from inside the enemy hitbox).\\n* **Blood-thirst** Healing off every kill can really add up, specially if you're quickly nuking enemies without giving them a chance to damage you at all, it pairs up incredibly well with **Rage**.\\n* **Extra-arrow** Having an extra chance to crit is nice, but it only applies in front of you, all the previous upgrades sound better than this. The one saving grace for extra-arrow is how good it is as a first/second upgrade, don't get a third arrow unless none of the above upgrades are available.\\n\\n##After Core \\n\\nPick those after you're satisfied with your DPS or when nothing in the core is available, thing of these as \\\"Nice to have, but not necessary\\\":\\n\\n* **Energy Shield** shots getting blocked can be a very good thing, but these run in a constant circular motion that you can't control, if you have **Wingman**, this would be a skip since you can just run behind your spirit while trying to dodge and the nice guy will block the shot for you.\\n* **Invincible** Going invincible a couple seconds is great on tight spots, but given how fast fights are, this can be rather situational, prioritize the core abilities. \\n* **Freeze**, making your enemies stand still allows you to hit them more easily. Just keep in mind that when building freeze you don't really want to go **Bouncy+Pierce+Ricochet**, because it could really make your game more hazardous when you unintentionally mess with an enemy's firing pattern by freezing them in an enemy-crowded screen.\\n* **CRIT** increases both crit chance and crit damage. Albeit RNG-reliant, CRIT is a solid pickup option at this point, thie higher your atk and if you have rage, the more effective crit will be, this is multiplicative, so don't ever prioritize **CRIT** over **ATK**/**Rage**.\\n* **ASPD** is detrimental for your early game, but it can be very good when you're really getting stacked on core offensive abilities. This is not crucial because we want to prioritize our DPS.\\n\\n##Situational Choices\\n\\nThese depend on other factors that don't necessarily heighten the strengths of the Scythe, they could work, but wouldn't necessarily be as effective as with a *Knife/Boomerang*:\\n\\n* **Ricochet**, it is in paper a very good pick: Having every hit you land automatically directed to the closest enemy really helps you make the most of every shot. However, a noticeable caveat is when fighting small enemies, enemies will be constantly knocked all over the screen, possibly bringing enemies closer than you would like them to be. Of course, if you're nuking enemies in 2-3 shots, it becomes less hazardous. And the knockback is much smaller (or none) for bosses.\\n* **Bouncy-wall**, simply having BW allows you to hit an enemy multiple times with the same projectile as long as you're firing it at a perpendicular-ish direction from a wall, or when they are located in corners. This isn't the case if you have the scythe ricochet to a different enemy. You can try and go for **Bouncy-Wall+Pierce/Ricochet+Diagonal/Rear/Side** and go ham, but none of these abilities actually increase your DPS, which is what you should be aiming to increase when building for nukes. Besides, flooding your screen with your own projectiles can make you miss enemy projectiles aimed at you.\\n* **Pierce**, I like to think of it as poor-man's **Ricochet**, the main difference being the projectile keeps going forward if there are no enemies close to ricochet towards, you could make a case for **Pierce**+**Bouncy-Wall** when fighting immobile/Gigantic bosses, or you could go this way and hope for one or two **Diagonal** to drop along so you can go bonkers, but I already covered that on Bouncy-Wall.\\n* **Side**/**Rear**, I like to think of it as poor-man's **Diagonal**, you can point-blank with it when you're eating a boss from the inside-out, but other than that it doesn't add as much value as **Diagonal**.\\n* **Walk through water**/**Walk through walls**, these could be nice depending on what World you're going through, pick them at discretion (Usually they'll cost you Max HP from a devil deal).\\n\\nDon't even think about it:\\n\\n* **Fire**/**Bolt**/**Poison**/**Holy**, it scales off your *Attack* and not off your *DPS*, making every fire tick for the same amount through the entire game, it doesn't really synergize with a strong, low fire-rate weapon.\\n* **Headshot**, you don't fire many times with a Scythe, so the there are less chances for this to proc, this is counter-synergy.\\n* **Fire orbs/swords**/**Bolt orbs/swords**/**Poison orbs/swords** , even if you're point-blanking, the effects granted by these abilities just don't really add much to your performance.\\n* **Summon one-eyed bat**/**Summon Shadow-clone** I just don't like these abilities, they mess with your drops, you can confuse the shadows for enemies and be distracted from projectiles and it's pretty much useless against most boss monsters. Just DON'T.\\n* **Slow Projectile**, See... enemies move, and the slower your projectile travels, the less likely it is your hit will land. It doesn't really add much to what a Scythe offers, from my experience, I just stray away from it as much as I can, usually there are more desirable abilities to choose from.\\n* **Pet CRIT/ASPD/ATK**, you don't really control these guys, and I don't really like to have to rely on their attack patterns to clear content.\\n\\nWhen built right, the scythe tends to get stupid strong, but I believe this is the case for most weapons, as long as you're playing them right.\\n\\nAny abilities I might have missed are either because they are irrelevant or I haven't unlocked them yet (I'm sitting at stage 4, feel free to laugh and point at me while I have a lot of fun nuking mobs).\", \"author_fullname\": \"t2_h9397\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ability recommendations (Not a tierlist)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buicsw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559159476.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559183584.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETL;DR: No tl;dr\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI refuse to use an absolute tierlist to make my decisions on what should I be choosing upon level-up. I\\u0026#39;d rather base my ability choices on the weapon I\\u0026#39;m using as well as previously selected abilities.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EScythe\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003ETraits:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt boasts high damage per hit, so I like to aim for a Nuking-one-by-one build.\\u003C/li\\u003E\\n\\u003Cli\\u003EIt boasts high knockback per hit, so I like to keep that in mind, it makes ASPD not as desirable because you could be knocking back a flying enemy through a wall and then your next shots won\\u0026#39;t hit it.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ECore Ability Choices:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EMulti-shot\\u003C/strong\\u003E firing an extra layer of arrows in every direction you fire is awesome, even if they only deal a portion of your original DPH, specially helpful if you\\u0026#39;re going in point-blank range, \\u003Cem\\u003Eget as many of this as you can!\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERage\\u003C/strong\\u003E, it is an absolute must-pick, it can greatly increase your offensive capabilities when you\\u0026#39;re in a pinch (and Offense is the best defense when your defense is failing you), I find it satisfying to land a crit almost 2x as strong as usual because I\\u0026#39;m under 100hp.\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou lose HP, you gain power INSTANTLY.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou gain HP, you lose power but have more breathing room.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EWingman\\u003C/strong\\u003E, is another absolute must-pick, your spirits can help you survive by fully blocking shots, and this only gets better and better as enemies fire more often and their projectile trajectories are less-predictable each World.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EATK\\u003C/strong\\u003E increases damage based off your Base DPS (Damage per shot), so, the higher your base DPS is, makes this ability more desirable for this weapon and Scythe has the highest DPS.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E is in the eyes of some is reliant on having \\u003Cstrong\\u003EBouncy-Wall\\u003C/strong\\u003E, and yeah \\u003Cem\\u003Estray that could or could not hit an enemy\\u003C/em\\u003E are good, they are not the only saving grace for this ability. Keep in mind that:\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EEach diagonal scythe you fire from this ablity, deals 100% of your hit damage, so by getting it you\\u0026#39;re pouring out 3x as much damage out in the wind as opposed to only firing a frontal scythe.\\u003C/li\\u003E\\n\\u003Cli\\u003ESome enemies like to get up close and personal with you, and geting 3 nukes to their face can quickly get you out of this pit, including boss monters.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf you get multiple \\u003Cstrong\\u003EATK\\u003C/strong\\u003E/\\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E upgrades and \\u003Cstrong\\u003ERage\\u003C/strong\\u003E, this is an instant synergy.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou can add \\u003Cstrong\\u003EInvincible\\u003C/strong\\u003E for even more time to go nuts on butchering bosses from the inside out (The first time I cleared the Chapter 3 Dragon, I just walked under its face and stood there for 3-4 seconds before it died).\\u003C/li\\u003E\\n\\u003Cli\\u003EMultiple hits means multiple chances to crit, and the only thing you like more than landing muliple nukes instantly every time you fire a shot, is some of them critting the boss to oblivion.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf you\\u0026#39;re good enough you can get to point-blank distance without touching the enemy and sucessfully firing 3 nukes in their face, this makes it much more desirable than \\u003Cstrong\\u003ESide\\u003C/strong\\u003E/\\u003Cstrong\\u003ERear\\u003C/strong\\u003E (which only really work for this strat when you\\u0026#39;re firing from inside the enemy hitbox).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBlood-thirst\\u003C/strong\\u003E Healing off every kill can really add up, specially if you\\u0026#39;re quickly nuking enemies without giving them a chance to damage you at all, it pairs up incredibly well with \\u003Cstrong\\u003ERage\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EExtra-arrow\\u003C/strong\\u003E Having an extra chance to crit is nice, but it only applies in front of you, all the previous upgrades sound better than this. The one saving grace for extra-arrow is how good it is as a first/second upgrade, don\\u0026#39;t get a third arrow unless none of the above upgrades are available.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EAfter Core\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003EPick those after you\\u0026#39;re satisfied with your DPS or when nothing in the core is available, thing of these as \\u0026quot;Nice to have, but not necessary\\u0026quot;:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EEnergy Shield\\u003C/strong\\u003E shots getting blocked can be a very good thing, but these run in a constant circular motion that you can\\u0026#39;t control, if you have \\u003Cstrong\\u003EWingman\\u003C/strong\\u003E, this would be a skip since you can just run behind your spirit while trying to dodge and the nice guy will block the shot for you.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EInvincible\\u003C/strong\\u003E Going invincible a couple seconds is great on tight spots, but given how fast fights are, this can be rather situational, prioritize the core abilities. \\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFreeze\\u003C/strong\\u003E, making your enemies stand still allows you to hit them more easily. Just keep in mind that when building freeze you don\\u0026#39;t really want to go \\u003Cstrong\\u003EBouncy+Pierce+Ricochet\\u003C/strong\\u003E, because it could really make your game more hazardous when you unintentionally mess with an enemy\\u0026#39;s firing pattern by freezing them in an enemy-crowded screen.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E increases both crit chance and crit damage. Albeit RNG-reliant, CRIT is a solid pickup option at this point, thie higher your atk and if you have rage, the more effective crit will be, this is multiplicative, so don\\u0026#39;t ever prioritize \\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E over \\u003Cstrong\\u003EATK\\u003C/strong\\u003E/\\u003Cstrong\\u003ERage\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EASPD\\u003C/strong\\u003E is detrimental for your early game, but it can be very good when you\\u0026#39;re really getting stacked on core offensive abilities. This is not crucial because we want to prioritize our DPS.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ESituational Choices\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003EThese depend on other factors that don\\u0026#39;t necessarily heighten the strengths of the Scythe, they could work, but wouldn\\u0026#39;t necessarily be as effective as with a \\u003Cem\\u003EKnife/Boomerang\\u003C/em\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERicochet\\u003C/strong\\u003E, it is in paper a very good pick: Having every hit you land automatically directed to the closest enemy really helps you make the most of every shot. However, a noticeable caveat is when fighting small enemies, enemies will be constantly knocked all over the screen, possibly bringing enemies closer than you would like them to be. Of course, if you\\u0026#39;re nuking enemies in 2-3 shots, it becomes less hazardous. And the knockback is much smaller (or none) for bosses.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBouncy-wall\\u003C/strong\\u003E, simply having BW allows you to hit an enemy multiple times with the same projectile as long as you\\u0026#39;re firing it at a perpendicular-ish direction from a wall, or when they are located in corners. This isn\\u0026#39;t the case if you have the scythe ricochet to a different enemy. You can try and go for \\u003Cstrong\\u003EBouncy-Wall+Pierce/Ricochet+Diagonal/Rear/Side\\u003C/strong\\u003E and go ham, but none of these abilities actually increase your DPS, which is what you should be aiming to increase when building for nukes. Besides, flooding your screen with your own projectiles can make you miss enemy projectiles aimed at you.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPierce\\u003C/strong\\u003E, I like to think of it as poor-man\\u0026#39;s \\u003Cstrong\\u003ERicochet\\u003C/strong\\u003E, the main difference being the projectile keeps going forward if there are no enemies close to ricochet towards, you could make a case for \\u003Cstrong\\u003EPierce\\u003C/strong\\u003E+\\u003Cstrong\\u003EBouncy-Wall\\u003C/strong\\u003E when fighting immobile/Gigantic bosses, or you could go this way and hope for one or two \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E to drop along so you can go bonkers, but I already covered that on Bouncy-Wall.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESide\\u003C/strong\\u003E/\\u003Cstrong\\u003ERear\\u003C/strong\\u003E, I like to think of it as poor-man\\u0026#39;s \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E, you can point-blank with it when you\\u0026#39;re eating a boss from the inside-out, but other than that it doesn\\u0026#39;t add as much value as \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EWalk through water\\u003C/strong\\u003E/\\u003Cstrong\\u003EWalk through walls\\u003C/strong\\u003E, these could be nice depending on what World you\\u0026#39;re going through, pick them at discretion (Usually they\\u0026#39;ll cost you Max HP from a devil deal).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EDon\\u0026#39;t even think about it:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFire\\u003C/strong\\u003E/\\u003Cstrong\\u003EBolt\\u003C/strong\\u003E/\\u003Cstrong\\u003EPoison\\u003C/strong\\u003E/\\u003Cstrong\\u003EHoly\\u003C/strong\\u003E, it scales off your \\u003Cem\\u003EAttack\\u003C/em\\u003E and not off your \\u003Cem\\u003EDPS\\u003C/em\\u003E, making every fire tick for the same amount through the entire game, it doesn\\u0026#39;t really synergize with a strong, low fire-rate weapon.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EHeadshot\\u003C/strong\\u003E, you don\\u0026#39;t fire many times with a Scythe, so the there are less chances for this to proc, this is counter-synergy.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFire orbs/swords\\u003C/strong\\u003E/\\u003Cstrong\\u003EBolt orbs/swords\\u003C/strong\\u003E/\\u003Cstrong\\u003EPoison orbs/swords\\u003C/strong\\u003E , even if you\\u0026#39;re point-blanking, the effects granted by these abilities just don\\u0026#39;t really add much to your performance.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESummon one-eyed bat\\u003C/strong\\u003E/\\u003Cstrong\\u003ESummon Shadow-clone\\u003C/strong\\u003E I just don\\u0026#39;t like these abilities, they mess with your drops, you can confuse the shadows for enemies and be distracted from projectiles and it\\u0026#39;s pretty much useless against most boss monsters. Just DON\\u0026#39;T.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESlow Projectile\\u003C/strong\\u003E, See... enemies move, and the slower your projectile travels, the less likely it is your hit will land. It doesn\\u0026#39;t really add much to what a Scythe offers, from my experience, I just stray away from it as much as I can, usually there are more desirable abilities to choose from.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPet CRIT/ASPD/ATK\\u003C/strong\\u003E, you don\\u0026#39;t really control these guys, and I don\\u0026#39;t really like to have to rely on their attack patterns to clear content.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhen built right, the scythe tends to get stupid strong, but I believe this is the case for most weapons, as long as you\\u0026#39;re playing them right.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny abilities I might have missed are either because they are irrelevant or I haven\\u0026#39;t unlocked them yet (I\\u0026#39;m sitting at stage 4, feel free to laugh and point at me while I have a lot of fun nuking mobs).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buicsw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"snivs\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buicsw/ability_recommendations_not_a_tierlist/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buicsw/ability_recommendations_not_a_tierlist/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559154784.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts\\n**1 Correct Seed:** 15pts\\n**2 Correct Seeds:** +30pts(45 total)\\n**(S)emi(F)inalist:** 180pts\\n**(F)inalist:** 380pts\\n**(W)inners:** 780pts\\n**Score in favor of your winner:** 190pts\\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"author_fullname\": \"t2_ze11d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"RLCS Season 7 LAN Bracket Prediction\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bufkvu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559170095.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts\\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15pts\\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30pts(45 total)\\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180pts\\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380pts\\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780pts\\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190pts\\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bufkvu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"RyanDaLegendary\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559141295.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test 1\", \"author_fullname\": \"t2_jb0ym\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"up-test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bu8y26\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559124859.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest 1\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu8y26\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dekarde\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu8y26/uptest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559096059.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"https://i.redd.it/n748pckqj1131.png\\n\\nHere is our game\", \"author_fullname\": \"t2_143lgq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"n748pckqj1131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1080, \"x\": 1920, \"u\": \"https://i.redd.it/n748pckqj1131.png\"}, \"m\": \"image/png\", \"id\": \"n748pckqj1131\"}}, \"name\": \"t3_bu7uio\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/sr9ge0kfsgNx8x4rIDjOnKDSVCL18SDnkOraCwBHop8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559118474.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/n748pckqj1131.png\\\"\\u003Ehttps://i.redd.it/n748pckqj1131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is our game\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7uio\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vivid_Mauve\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu7uio/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu7uio/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559089674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test test\", \"author_fullname\": \"t2_143lgq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Claim Game\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bu7jss\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559116818.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7jss\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vivid_Mauve\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu7jss/claim_game/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu7jss/claim_game/\", \"subreddit_subscribers\": 704, \"created_utc\": 1559088018.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_nlpmjd2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I HATE THE FUCKING NlG8GERS, THEY SMELL DAAAWG. LIKE I DONT EVEN KNOW WHY, I THINK ITS BECAUSE OF THEIR DIRT MONKEY SKIN OR SOME SHIT LIKE THAT\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bu3xsz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ArScYM5Q48TrtDof4ST-2EeyNmmkxsGz6QkPcuHwYmI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559098637.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?auto=webp\\u0026s=82354c537d30bbf07eb9b7e3191e3834a8af2ce6\", \"width\": 640, \"height\": 838}, \"resolutions\": [{\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=75ec4f00b631f497c0aafdef0e0a758953e48a3a\", \"width\": 108, \"height\": 141}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c0e25d181ba2cb381ec414e0ac76752eb45b11f6\", \"width\": 216, \"height\": 282}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8eff642156f04ce1ad2e42bc2fb782b11b88d271\", \"width\": 320, \"height\": 419}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f6fb42bc9a8b65f8be8afac2b6190130b5463160\", \"width\": 640, \"height\": 838}], \"variants\": {}, \"id\": \"950GL9F_ZaUbbJK3rJxkM1RLCMb6VYKACygOpjTiR4s\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu3xsz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KFC_MANAGER_TRIHARD\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu3xsz/i_hate_the_fucking_nlg8gers_they_smell_daaawg/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/y5uqepxj10131.jpg\", \"subreddit_subscribers\": 704, \"created_utc\": 1559069837.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_kvp37q4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_btnd7z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Onn2p7TcF2NuasNIGcR0CfMWDLEDmV12cjySeav5UGM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559000072.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?auto=webp\\u0026s=090d65871b6a42fa951e66396dce697552b174c1\", \"width\": 1600, \"height\": 1600}, \"resolutions\": [{\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=15a7e193fed161120c580133451cc0809b4e3257\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=005721458dcadca85be7d27fd446e30eff44415b\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3eb3e6fba97d72e1efc6f464dae29c2de85ec963\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=3a3eeba7579458cb8713415f60484fa0d23f402f\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=150168de16c3811111564cb92578ec189608ea9d\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=3df90efe0f287fa027b51ea347ba65096d893233\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"FqP4WYIjTnkAX8xVjzbzRRdIW6207vOaOhoPRV5_-Xg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btnd7z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"agasitko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btnd7z/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/4mvy2odfwr031.png\", \"subreddit_subscribers\": 704, \"created_utc\": 1558971272.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Just migrated the unit tests for one of our projects from Boost.Test to Doctest and decided to share the time measurements while I still have the two branches at hand. You can see the number of the test cases in the run-time output below.\\n\\nThe tests were done on virtual machine with 4 cores and 8 GB of RAM.\\n\\nThe build was done with GCC 7.3 with `-std='c++17' -O2 -Wall -Wextra -Werror -Winvalid-pch` and 4 threads for parallel building. The setup with Doctest has two additional flags:\\n\\n`-DDOCTEST_CONFIG_SUPER_FAST_ASSERTS -DDOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION`.\\n\\nThe Boost version that I'm using is 1.69 and the Doctest version is 2.3.2.\\n\\nFor the run-time tests, I ran them 3 times each and picked the slower ones. The timings for each version was in the same ballpark anyway.\\n\\nFull rebuild, including the precompiled header, with Boost.Test\\n\\n real \\u00a0 \\u00a01m5.710s \\n user \\u00a0 \\u00a03m42.350s \\n sys \\u00a0 \\u00a0 0m5.751s\\n\\nFull rebuild, including the precompiled header, with Doctest\\n\\n real \\u00a0 \\u00a00m52.567s \\n user \\u00a0 \\u00a02m40.018s \\n sys \\u00a0 \\u00a0 0m4.993s \\n\\nRebuild, without the precompiled header, with Boost.Test\\n\\n real \\u00a0 \\u00a01m2.391s \\n user \\u00a0 \\u00a03m40.168s \\n sys \\u00a0 \\u00a0 0m5.532s \\n\\nRebuild, without the precompiled header, with Doctest\\n\\n real \\u00a0 \\u00a00m46.351s \\n user \\u00a0 \\u00a02m38.131s \\n sys \\u00a0 \\u00a0 0m4.029s \\n\\nRun-time with Boost.Test\\n\\n time ./tests.bin -r short \\n Running 149 test cases... \\n \\n Test module \\\"p3_tests\\\" has passed with: \\n \\u00a0 149 test cases out of 149 passed \\n \\u00a0 1166 assertions out of 1166 passed \\n \\n real \\u00a0 \\u00a00m0.056s \\n user \\u00a0 \\u00a00m0.025s \\n sys \\u00a0 \\u00a0 0m0.031s \\n\\nRun-time with Doctest\\n\\n time ./tests.bin \\n [doctest] doctest version is \\\"2.3.2\\\" \\n [doctest] run with \\\"--help\\\" for options \\n =============================================================================== \\n [doctest] test cases: \\u00a0 \\u00a0149 | \\u00a0 \\u00a0149 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\u00a0 \\u00a0 \\u00a00 skipped \\n [doctest] assertions: \\u00a0 1167 | \\u00a0 1167 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\n [doctest] Status: SUCCESS! \\n \\n real \\u00a0 \\u00a00m0.042s \\n user \\u00a0 \\u00a00m0.021s \\n sys \\u00a0 \\u00a0 0m0.021s\", \"author_fullname\": \"t2_tk6dd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Timing Boost.Test and Doctest\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btkt4w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558984671.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust migrated the unit tests for one of our projects from Boost.Test to Doctest and decided to share the time measurements while I still have the two branches at hand. You can see the number of the test cases in the run-time output below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe tests were done on virtual machine with 4 cores and 8 GB of RAM.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe build was done with GCC 7.3 with \\u003Ccode\\u003E-std=\\u0026#39;c++17\\u0026#39; -O2 -Wall -Wextra -Werror -Winvalid-pch\\u003C/code\\u003E and 4 threads for parallel building. The setup with Doctest has two additional flags:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E-DDOCTEST_CONFIG_SUPER_FAST_ASSERTS -DDOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Boost version that I\\u0026#39;m using is 1.69 and the Doctest version is 2.3.2.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the run-time tests, I ran them 3 times each and picked the slower ones. The timings for each version was in the same ballpark anyway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFull rebuild, including the precompiled header, with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a01m5.710s \\nuser \\u00a0 \\u00a03m42.350s \\nsys \\u00a0 \\u00a0 0m5.751s\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EFull rebuild, including the precompiled header, with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a00m52.567s \\nuser \\u00a0 \\u00a02m40.018s \\nsys \\u00a0 \\u00a0 0m4.993s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERebuild, without the precompiled header, with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a01m2.391s \\nuser \\u00a0 \\u00a03m40.168s \\nsys \\u00a0 \\u00a0 0m5.532s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERebuild, without the precompiled header, with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a00m46.351s \\nuser \\u00a0 \\u00a02m38.131s \\nsys \\u00a0 \\u00a0 0m4.029s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERun-time with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Etime ./tests.bin -r short \\nRunning 149 test cases... \\n\\nTest module \\u0026quot;p3_tests\\u0026quot; has passed with: \\n\\u00a0 149 test cases out of 149 passed \\n\\u00a0 1166 assertions out of 1166 passed \\n\\nreal \\u00a0 \\u00a00m0.056s \\nuser \\u00a0 \\u00a00m0.025s \\nsys \\u00a0 \\u00a0 0m0.031s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERun-time with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Etime ./tests.bin \\n[doctest] doctest version is \\u0026quot;2.3.2\\u0026quot; \\n[doctest] run with \\u0026quot;--help\\u0026quot; for options \\n=============================================================================== \\n[doctest] test cases: \\u00a0 \\u00a0149 | \\u00a0 \\u00a0149 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\u00a0 \\u00a0 \\u00a00 skipped \\n[doctest] assertions: \\u00a0 1167 | \\u00a0 1167 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\n[doctest] Status: SUCCESS! \\n\\nreal \\u00a0 \\u00a00m0.042s \\nuser \\u00a0 \\u00a00m0.021s \\nsys \\u00a0 \\u00a0 0m0.021s\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btkt4w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pavel_v\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btkt4w/timing_boosttest_and_doctest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btkt4w/timing_boosttest_and_doctest/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558955871.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_znwfd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 109, \"hide_score\": false, \"name\": \"t3_btgu09\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/G7me3nXuT4WiSJ_5w66HsnXsLrt6szjE7w7XGClSb8Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558954744.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?auto=webp\\u0026s=393cdc6165f09e5e16b544fb51e88087b027c5c0\", \"width\": 499, \"height\": 389}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fa7f679c4a6c8b1c74b7d9df06e2157d168876e6\", \"width\": 108, \"height\": 84}, {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c96d97f5ca9370651816f1391b1a55a33cce980a\", \"width\": 216, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d436b0e54126c4dc606260434294b6064c053d07\", \"width\": 320, \"height\": 249}], \"variants\": {}, \"id\": \"E-YB0z8GJjScZr1sRZLjjEz-pdps6apmJB4z1z2yzLA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btgu09\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Conan_JP\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btgu09/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.imgur.com/5CLcQGP.png\", \"subreddit_subscribers\": 704, \"created_utc\": 1558925944.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\nJust comment before pm\\n\\nLocal: 79401\\n\\n[Timestamps](https://imgur.com/a/qfjjjRx)\\n\\n|Item|Local + shipping|Description|\\n|:-|:-|:-|\\n|ASUS Prime X470-Pro AMD Ryzen|$100 shipped|Have original box, SLI adapter, and screws|\\n|2x G.Skill TridentZ RGB Series 8GB|$105 shipped|running at 3200 MHz|\\n|EVGA Supernova 750 G2, 80+ Gold 750W|$80 shipped|Fully Modular, EVGA ECO Mode|\\n|ANNE PRO 2 RGB|$75shipped|Missing Y Key replaced w/ colored key cap|\\n|SteelSeries Arcits 5 RGB ( Headset)|$40 shipped|Works perfectly although there is a small scuff|\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"E2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btdfqu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558934579.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust comment before pm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELocal: 79401\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/qfjjjRx\\\"\\u003ETimestamps\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ELocal + shipping\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EASUS Prime X470-Pro AMD Ryzen\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$100 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHave original box, SLI adapter, and screws\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2x G.Skill TridentZ RGB Series 8GB\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$105 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Erunning at 3200 MHz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEVGA Supernova 750 G2, 80+ Gold 750W\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$80 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFully Modular, EVGA ECO Mode\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EANNE PRO 2 RGB\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$75shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMissing Y Key replaced w/ colored key cap\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESteelSeries Arcits 5 RGB ( Headset)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EWorks perfectly although there is a small scuff\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?auto=webp\\u0026s=e3cd8025431b8d4e4a001c163dff8247a6d332fa\", \"width\": 2048, \"height\": 1536}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5ee5cf7d1be3464420cac8148fb7776b3db5ce4e\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=36cf5d02c9cf110ea13a4a1805bdd615aeb871a8\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9fb11c2092ec2a4287ec4cc436ab14659175ce6b\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=4a74f9cb14b1f7a893dc86ed40c19d0e773ba8f6\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=740f8d332c2129b8abead72eef7968317d5cde8d\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c46ac181d7dd9625a47805f6b36077275271ad4f\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"3O1ITl-5hWXF7luK9SXQMRkyhjwvYMhGJEuuQC-l1i4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btdfqu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/PostPreview/comments/btdfqu/e2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btdfqu/e2/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558905779.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"So for starters, please comment before PM'ing me. None of the listings include shipping, I can give you a quote if you tell me what you want and give me your zip code. Anything that can fit in a small priority mail box will be a $7.20 flat fee. Everything else will vary. I have some trades on here as well as excellent feedback on ebay so if you would like to see that let me know.\\n\\n\\u0026#x200B;\\n\\n|Item|Description|Price|\\n|:-|:-|:-|\\n|Black Realforce 87u|Great working condition. No keycaps included, but it has been converted to mini USB and jtk mx sliders|$115|\\n|IBM Model M |THIS IS NOT WORKING, IT IS FOR PARTS ONLY. | $10|\\n|Battlestation io Wrist Rest |Purple Heart Color, made for a 60% keyboard|$30|\\n|HKP Gas Mask |Green Poison black eyes|$14|\\n|Keyforge Osiris|Chlorium Color|$40|\\n|girldc Stormtrooper|Black Stormtrooper (Looks dark grey)|$30|\\n|JTK Sliders|Jtk purple sliders installed once and removed shortly after|$15|\\n|Alps Keyset|Full keyset I pulled off of a vintage board. Let me know if you want more pictures|$10|\\n|Tektronix F\\u0026F|Foam and Foil board, i'm not totally sure if it works. Chassis is made out of metal and VERY heavy|$25|\\n\\n\\u0026#x200B;\\n\\nAs for the trade, I don't want to pay anything extra, if you find stuff you like and you want to trade for a black HHKB stock or modded, just let me know.\", \"author_fullname\": \"t2_xrrbz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[US-NJ][H]Realforce 87u, Keyboards, Artisans, Battlestation 10 wrist rest [W]Paypal, Black HHKB\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btb4ye\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558895507.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558923254.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo for starters, please comment before PM\\u0026#39;ing me. None of the listings include shipping, I can give you a quote if you tell me what you want and give me your zip code. Anything that can fit in a small priority mail box will be a $7.20 flat fee. Everything else will vary. I have some trades on here as well as excellent feedback on ebay so if you would like to see that let me know.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlack Realforce 87u\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGreat working condition. No keycaps included, but it has been converted to mini USB and jtk mx sliders\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$115\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EIBM Model M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETHIS IS NOT WORKING, IT IS FOR PARTS ONLY.\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBattlestation io Wrist Rest\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurple Heart Color, made for a 60% keyboard\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHKP Gas Mask\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGreen Poison black eyes\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$14\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EKeyforge Osiris\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EChlorium Color\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Egirldc Stormtrooper\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlack Stormtrooper (Looks dark grey)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJTK Sliders\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJtk purple sliders installed once and removed shortly after\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$15\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EAlps Keyset\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFull keyset I pulled off of a vintage board. Let me know if you want more pictures\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETektronix F\\u0026amp;F\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFoam and Foil board, i\\u0026#39;m not totally sure if it works. Chassis is made out of metal and VERY heavy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$25\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for the trade, I don\\u0026#39;t want to pay anything extra, if you find stuff you like and you want to trade for a black HHKB stock or modded, just let me know.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btb4ye\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"blackriver35\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btb4ye/usnjhrealforce_87u_keyboards_artisans/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btb4ye/usnjhrealforce_87u_keyboards_artisans/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558894454.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Test\\n\\nhttps://i.redd.it/43djennmkj031.jpg\\n\\nhttps://i.redd.it/bjdfsn4pkj031.jpg\\n\\nanother test\", \"author_fullname\": \"t2_11gzbx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"blub\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 56, \"hide_score\": false, \"media_metadata\": {\"43djennmkj031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 775, \"x\": 1920, \"u\": \"https://i.redd.it/43djennmkj031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"43djennmkj031\"}, \"bjdfsn4pkj031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 775, \"x\": 1920, \"u\": \"https://i.redd.it/bjdfsn4pkj031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"bjdfsn4pkj031\"}}, \"name\": \"t3_bt6wuy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/0UAaA8XpjYLxWwuXJiyi-R4dMzJm8wGf2wmAH_mbjlY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558899273.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/43djennmkj031.jpg\\\"\\u003Ehttps://i.redd.it/43djennmkj031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/bjdfsn4pkj031.jpg\\\"\\u003Ehttps://i.redd.it/bjdfsn4pkj031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eanother test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt6wuy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AnotherDayOfLife\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt6wuy/blub/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt6wuy/blub/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558870473.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\#opioid #statistics #pandemic #emergency #drugs\\n\\nhttps://i.redd.it/od006dfy9j031.png\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Crisis - By the Numbers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"od006dfy9j031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1008, \"x\": 1800, \"u\": \"https://i.redd.it/od006dfy9j031.png\"}, \"m\": \"image/png\", \"id\": \"od006dfy9j031\"}}, \"name\": \"t3_bt6gq0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ULg29n5F6KbOENW5WKQV8hVHUaCSmwUV2Pvi7lAzTnw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558895647.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#opioid #statistics #pandemic #emergency #drugs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/od006dfy9j031.png\\\"\\u003Ehttps://i.redd.it/od006dfy9j031.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt6gq0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt6gq0/the_opioid_crisis_by_the_numbers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt6gq0/the_opioid_crisis_by_the_numbers/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558866847.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Crisis - By the Numbers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bt570v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/J57kjqkqWulPTF0F2CGsfdOw-ZHKtDF8-vmDnuC1ZrA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558884640.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?auto=webp\\u0026s=883d696a42fd4b489a2443ac7948425234dead06\", \"width\": 1800, \"height\": 1008}, \"resolutions\": [{\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b2271e2b6a77c996f1b68d98c2f21282f5fc64af\", \"width\": 108, \"height\": 60}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a735587be8be935850d72f92104abbd7524f7989\", \"width\": 216, \"height\": 120}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f2b57eb686d7a9cae234ef30d0929508d82f9b0c\", \"width\": 320, \"height\": 179}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=0b51cbc6ab0ed7c1b0603fa9bc60be8a314cfd00\", \"width\": 640, \"height\": 358}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=b6d4f46ac0317e4d199b1a2314dca58d625149f3\", \"width\": 960, \"height\": 537}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=a90b09a8c6c8fb24697eac10c348ab894bbc8a62\", \"width\": 1080, \"height\": 604}], \"variants\": {}, \"id\": \"i4RH5BnT_PvxAameb4XpCaX1qIqRrxlNsTuO6tn_QXU\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt570v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt570v/the_opioid_crisis_by_the_numbers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/bgwlznx4di031.png\", \"subreddit_subscribers\": 704, \"created_utc\": 1558855840.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2hmmk43f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Falcon view...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bt1azs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5yIb3YjCt03EmRM3zlVIMsQhCs43pA7wbEqktH19Cfc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558856981.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?auto=webp\\u0026s=3c1bb6209fd60cd5f0a5f7df4bb35496e2fa1589\", \"width\": 1440, \"height\": 2560}, \"resolutions\": [{\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0ef05f2642c8199aa57f21c0d54b9c69b5f71d5f\", \"width\": 108, \"height\": 192}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=df094af1b4ddd4fc3447cf0656ec22e7f7c02e78\", \"width\": 216, \"height\": 384}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6a092c4d9a07e3789a75ce521d34e21d29b86f4a\", \"width\": 320, \"height\": 568}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=474632e119d567afa4d85306584e47fb276ac835\", \"width\": 640, \"height\": 1137}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=db7e4fc3eaa4d78682a1f9bf880fc8414d69059f\", \"width\": 960, \"height\": 1706}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d6be90f315a480dc381dc3ec39f55f2a6c961fd2\", \"width\": 1080, \"height\": 1920}], \"variants\": {}, \"id\": \"ARZyk4zeMGPtRhvZx49MKXfvtDuF1hkTmnswophEGiA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt1azs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aantoniss\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt1azs/falcon_view/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/jx5956qz2g031.jpg\", \"subreddit_subscribers\": 704, \"created_utc\": 1558828181.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_35aabssu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bt13kk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/bUwI22Oy5hk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bt13kk\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Tn0uh2-gqGg07MFL1mh36xt2XVPaD43KQ-yyrgULlgw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558855680.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?auto=webp\\u0026s=9ae2a3720570e28a4271afd504fe7644c5ae6af5\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e891ae8f3829df0995f789d716b42297d899791d\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e9528bd0e8d23e42b9a583446d121186f9dd3e0a\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=57b456dd9a2dd298987a841d98226090b702f41b\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"GFq8VRTcX1rYutnbOlEzIndyVsutsicYznT49lCUJ_c\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt13kk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Goldymires\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt13kk/ultimate_skyrim_room_filled_with_magelight_balls/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=bUwI22Oy5hk\\u0026feature=youtu.be\", \"subreddit_subscribers\": 704, \"created_utc\": 1558826880.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/bUwI22Oy5hk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"tested\", \"author_fullname\": \"t2_f4ra2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing 123\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bt0w6n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558829283.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558854391.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etested\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt0w6n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"User09060657542\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt0w6n/testing_123/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558825591.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://imgur.com/register/thirdparty/google](https://imgur.com/register/thirdparty/google)\", \"author_fullname\": \"t2_2zkr00l4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"BvS\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsyl0k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558841880.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/register/thirdparty/google\\\"\\u003Ehttps://imgur.com/register/thirdparty/google\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?auto=webp\\u0026s=d94e7feac682dd559e4a8b3fbbdd38d08adf1d44\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=de5d021977c520c60b9fe96c226154cceb44ec68\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=733ff487f388d32420b5247b49f7728a869fafba\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=69eeff9db988ab6c60ccca380e0cb106af7d12f6\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=dcacd413d3fad44ec5470093a98420843adb1dbb\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=58c767d070db90d652c921e75dd04d2e5bf260b1\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9b4e777c321d825eb745725cb99d589cb8fc7df8\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"nHmB3tUVKrCUK7BucSpK1ZRAoN-XyaQHrTTqr75VHnw\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsyl0k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"T-8-0-0\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsyl0k/bvs/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558813080.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"In the 1990's, opioids became available to the general public with reassurance from pharmaceutical companies that patients would not become addicted to them. Fast forward 25 years and now we have a global epidemic. The widespread misuse of opioids can be related to the greater rates of prescription of opioids. According to the World Health Organisation roughly 118,000 people lost their lives due to opioid use disorders and an estimated 27 million people suffer from opioid use disorders.\\n\\n\\\\#opioid #opioidabuse #addiction #crisis #publichealth\\n\\n\\u0026#x200B;\\n\\nFor more information visit: [https://wp.deakin.edu.au/deakinsso\\\\_242366117/2019/04/10/the-painkillers-are-killing-us/](https://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/)\\n\\nhttps://i.redd.it/60b8yo4o5e031.jpg\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Epidemic\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"media_metadata\": {\"60b8yo4o5e031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1375, \"x\": 2500, \"u\": \"https://i.redd.it/60b8yo4o5e031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"60b8yo4o5e031\"}}, \"name\": \"t3_bsx5gx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/XQozoeoqb6ku7BcrTRAau0oUH_lExeTt6WxLONr8RpY.jpg\", \"edited\": 1558866228.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558834399.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn the 1990\\u0026#39;s, opioids became available to the general public with reassurance from pharmaceutical companies that patients would not become addicted to them. Fast forward 25 years and now we have a global epidemic. The widespread misuse of opioids can be related to the greater rates of prescription of opioids. According to the World Health Organisation roughly 118,000 people lost their lives due to opioid use disorders and an estimated 27 million people suffer from opioid use disorders.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#opioid #opioidabuse #addiction #crisis #publichealth\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more information visit: \\u003Ca href=\\\"https://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/\\\"\\u003Ehttps://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/60b8yo4o5e031.jpg\\\"\\u003Ehttps://i.redd.it/60b8yo4o5e031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?auto=webp\\u0026s=7cdb1bbd0e34ff3d8c3f0ec52de03f8436d374f3\", \"width\": 1024, \"height\": 687}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5ec6842c7828c02fe7f3fde357f0a4ab2ee61791\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4e3991a079067adb7748d2dcb08fe5b9b6a9dc35\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c94c9b8c0a597eb5e84d847bb1e25c757b1cb520\", \"width\": 320, \"height\": 214}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b596c3cfff0267b17a13844f43c079a3f66e6494\", \"width\": 640, \"height\": 429}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=fbf7168e509bdd47347b08ba83c83d38fdd8821d\", \"width\": 960, \"height\": 644}], \"variants\": {}, \"id\": \"Oezj5KFHw35YTNV7f2ysRbVTt0E7sP5x-007SvngELE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx5gx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx5gx/the_opioid_epidemic/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsx5gx/the_opioid_epidemic/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558805599.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3rko2hk2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Season 8. Expectation VS Reality - Coub\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 76, \"hide_score\": false, \"name\": \"t3_bsx4cw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 329}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"coub.com\", \"oembed\": {\"provider_url\": \"https://coub.com/\", \"description\": \"Season 8. Expectation VS Reality - Coub - The Biggest Video Meme Platform by \\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"title\": \"Season 8. Expectation VS Reality\", \"url\": \"https://coub.com/view/1uqk30\", \"type\": \"video\", \"author_name\": \"\\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"height\": 329, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 1280, \"version\": \"1.0\", \"provider_name\": \"Coub\", \"thumbnail_url\": \"https://coubsecure-s.akamaihd.net/get/b189/p/coub/simple/cw_image/fc2f77efef2/92fbfabd438d77bc688f2/big_1558602182_00030.jpg\", \"thumbnail_height\": 700}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bsx4cw\", \"height\": 329}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/yYWmiAtN3NIBqz36GFAuzE1Gm9bfyBqWIvr-NLCrdiE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558834230.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"coub.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?auto=webp\\u0026s=2c537c6f4db6a7134e41a1fed83f527a9205a6fc\", \"width\": 1280, \"height\": 700}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8379e056ce44d98ba8cabcedc3e57a5179eb8077\", \"width\": 108, \"height\": 59}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=8546634eedbc00136050661223afe85fa0df9af7\", \"width\": 216, \"height\": 118}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=716bea022cac586a80f5e0d8a91506edd0d83528\", \"width\": 320, \"height\": 175}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d3048a26334e43b4c90357ee44fcdcc546b50f00\", \"width\": 640, \"height\": 350}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=3210c1f30af3c93e6c4667634d00863669de17f4\", \"width\": 960, \"height\": 525}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b15926a8817d038edddebbea83e70e9b359050e6\", \"width\": 1080, \"height\": 590}], \"variants\": {}, \"id\": \"2zfAfglMEQHb1kq47IlSy9xMsGT3DskaBFmGCWHMJm4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx4cw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hunsorgelargen\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx4cw/season_8_expectation_vs_reality_coub/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://coub.com/view/1uqk30\", \"subreddit_subscribers\": 704, \"created_utc\": 1558805430.0, \"media\": {\"type\": \"coub.com\", \"oembed\": {\"provider_url\": \"https://coub.com/\", \"description\": \"Season 8. Expectation VS Reality - Coub - The Biggest Video Meme Platform by \\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"title\": \"Season 8. Expectation VS Reality\", \"url\": \"https://coub.com/view/1uqk30\", \"type\": \"video\", \"author_name\": \"\\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"height\": 329, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 1280, \"version\": \"1.0\", \"provider_name\": \"Coub\", \"thumbnail_url\": \"https://coubsecure-s.akamaihd.net/get/b189/p/coub/simple/cw_image/fc2f77efef2/92fbfabd438d77bc688f2/big_1558602182_00030.jpg\", \"thumbnail_height\": 700}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Epidemic\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 77, \"hide_score\": false, \"name\": \"t3_bsx03j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/QMgLgBWZo2J6BvtEUhCtq1puxq_1nXJklQluEpY1eVc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558833593.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?auto=webp\\u0026s=112c158959edb120ed7a4b2c6af8005b24adfae3\", \"width\": 2500, \"height\": 1375}, \"resolutions\": [{\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=58286f10819d029635929b919b885efe84113bc1\", \"width\": 108, \"height\": 59}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5b950ddd484fbbbf695b9d78f249484dd503ca34\", \"width\": 216, \"height\": 118}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b1627f91c9c141adc0907618e1104fb76265822e\", \"width\": 320, \"height\": 176}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b6a7d4e67ba17921827b1fc20be649529936fbf2\", \"width\": 640, \"height\": 352}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=51b4a2ca46ae9a14de2d1526ea16ee912fc2d5fb\", \"width\": 960, \"height\": 528}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=97c530e4986d9fb9ad52ce225a3776d6b21d34db\", \"width\": 1080, \"height\": 594}], \"variants\": {}, \"id\": \"r0QQSeXyt6cpVPwloW0dlXs4ghmbkHS-vOX8K4sT4o8\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx03j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx03j/the_opioid_epidemic/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/hjkw4r1g5e031.jpg\", \"subreddit_subscribers\": 704, \"created_utc\": 1558804793.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_225ztxy6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bsveoo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Kane disposes of Seth\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"heiamll\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/goQiwNZzoVA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/heiamll\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bsveoo\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/a3QmR3Wv2LyuxQEMuRGkWJMyV3qVSzueTO5c6mQqVbU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558825096.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?auto=webp\\u0026s=7d0ecdb5c17f93a12cd53f87a9c8d41e27f6731f\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2e2b3e97b45ce73dcddf4449e6cbfc56ff39fc3f\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e84cf3f890c1d24edfefc7d96ef383b5bc317490\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2c1318b4441b4e7015d9d1f514c83f6f5afbafd6\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"JI-LuN1c02BWSJpGlnUncuUUM9PwrbfPwhq5sYuo_jU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsveoo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ihuarraquax__\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsveoo/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=goQiwNZzoVA\", \"subreddit_subscribers\": 704, \"created_utc\": 1558796296.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Kane disposes of Seth\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"heiamll\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/goQiwNZzoVA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/heiamll\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"B\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\\nThay v\\u00ec th\\u1ed1ng nh\\u1ea5t c\\u01a1 quan h\\u00e0nh ch\\u00ednh c\\u1ea3 n\\u01b0\\u1edbc c\\u00f9ng gi\\u1edd l\\u00e0m vi\\u1ec7c, \\u0111\\u1ec1 xu\\u1ea5t m\\u1edbi cho ph\\u00e9p c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng quy \\u0111\\u1ecbnh gi\\u1edd linh ho\\u1ea1t. \\n\\nB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1eeb 8h30\\nSau g\\u1ea7n 20 ng\\u00e0y c\\u00f4ng b\\u1ed1 t\\u1edd tr\\u00ecnh d\\u1ef1 th\\u1ea3o s\\u1eeda \\u0111\\u1ed5i B\\u1ed9 Lu\\u1eadt Lao \\u0111\\u1ed9ng n\\u0103m 2012, ng\\u00e0y 16/5, B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u00e3 \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i n\\u1ed9i dung \\u0111\\u1ec1 xu\\u1ea5t v\\u1ec1 gi\\u1edd l\\u00e0m vi\\u1ec7c.\\n\\n\\u00d4ng Nguy\\u1ec5n V\\u0103n B\\u00ecnh, Ph\\u00f3 v\\u1ee5 tr\\u01b0\\u1edfng V\\u1ee5 ph\\u00e1p ch\\u1ebf (B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 x\\u00e3 h\\u1ed9i), cho hay v\\u1eeba qua B\\u1ed9 nh\\u1eadn \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u \\u00fd ki\\u1ebfn \\u0111\\u00f3ng g\\u00f3p c\\u1ee7a ng\\u01b0\\u1eddi d\\u00e2n v\\u00e0 c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng n\\u00ean \\u0111\\u00e3 ti\\u1ebfp thu, \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1ea1i c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng \\u0111\\u1ec3 linh ho\\u1ea1t, ph\\u00f9 h\\u1ee3p v\\u1edbi \\u0111i\\u1ec1u ki\\u1ec7n kh\\u00ed h\\u1eadu m\\u1ed7i v\\u00f9ng mi\\u1ec1n. \\n\\nC\\u1ee5 th\\u1ec3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c s\\u1eeda l\\u1ea1i nh\\u01b0 sau: \\\"Giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\\". \\n\\n\\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc c\\u1ea5p trung \\u01b0\\u01a1ng v\\u00e0 c\\u00e1c \\u0111\\u00f4 th\\u1ecb l\\u1edbn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat (tr\\u1eeb nh\\u1eefng \\u0111\\u01a1n v\\u1ecb ho\\u1eb7c b\\u1ed9 ph\\u1eadn ph\\u1ea3i th\\u01b0\\u1eddng tr\\u1ef1c 24/24 gi\\u1edd \\u0111\\u1ec3 \\u0111\\u1ea3m b\\u1ea3o li\\u00ean th\\u00f4ng c\\u00f4ng vi\\u1ec7c ho\\u1eb7c tr\\u1ef1c ti\\u1ebfp gi\\u1ea3i quy\\u1ebft c\\u00f4ng vi\\u1ec7c v\\u1edbi ng\\u01b0\\u1eddi d\\u00e2n). \\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc \\u1edf \\u0111\\u1ecba ph\\u01b0\\u01a1ng th\\u00ec th\\u1ed1ng nh\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c m\\u00f9a h\\u00e8 v\\u00e0 m\\u00f9a \\u0111\\u00f4ng theo \\u0111i\\u1ec1u ki\\u1ec7n \\u0111\\u1ecba l\\u00fd.\\n\\nPh\\u01b0\\u01a1ng \\u00e1n 2 c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c gi\\u1eef nh\\u01b0 hi\\u1ec7n h\\u00e0nh. Theo \\u0111\\u00f3, th\\u1eddi gian l\\u00e0m vi\\u1ec7c kh\\u00f4ng quy \\u0111\\u1ecbnh trong B\\u1ed9 lu\\u1eadt Lao \\u0111\\u1ed9ng m\\u00e0 n\\u00eau t\\u1ea1i c\\u00e1c v\\u0103n b\\u1ea3n h\\u00e0nh ch\\u00ednh; \\u0111\\u1ed1i v\\u1edbi c\\u00e1c B\\u1ed9 do Th\\u1ee7 t\\u01b0\\u1edbng quy\\u1ebft \\u0111\\u1ecbnh; \\u0111\\u1ed1i v\\u1edbi UBND v\\u00e0 c\\u00e1c c\\u01a1 quan chuy\\u00ean m\\u00f4n do Ch\\u1ee7 t\\u1ecbch t\\u1ec9nh quy\\u1ebft.\\n\\u003Cimg src=\\\"https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\\" alt=\\\"Markdown Monster icon\\\"/\\u003E\\n[Ng\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. ](https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg)\\n\\n![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png)\\n\\nNg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\n\\nTr\\u01b0\\u1edbc \\u0111\\u00f3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t trong phi\\u00ean b\\u1ea3n c\\u0169 c\\u1ee7a d\\u1ef1 th\\u1ea3o t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c c\\u00f4ng b\\u1ed1 h\\u00f4m 28/4 n\\u00eau, \\\"giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\\". Th\\u1eddi gian l\\u00e0m vi\\u1ec7c d\\u1ef1 ki\\u1ebfn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat.\", \"author_fullname\": \"t2_3nwxz2cj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"B\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsqqvo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558760411.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558788601.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\\nThay v\\u00ec th\\u1ed1ng nh\\u1ea5t c\\u01a1 quan h\\u00e0nh ch\\u00ednh c\\u1ea3 n\\u01b0\\u1edbc c\\u00f9ng gi\\u1edd l\\u00e0m vi\\u1ec7c, \\u0111\\u1ec1 xu\\u1ea5t m\\u1edbi cho ph\\u00e9p c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng quy \\u0111\\u1ecbnh gi\\u1edd linh ho\\u1ea1t. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1eeb 8h30\\nSau g\\u1ea7n 20 ng\\u00e0y c\\u00f4ng b\\u1ed1 t\\u1edd tr\\u00ecnh d\\u1ef1 th\\u1ea3o s\\u1eeda \\u0111\\u1ed5i B\\u1ed9 Lu\\u1eadt Lao \\u0111\\u1ed9ng n\\u0103m 2012, ng\\u00e0y 16/5, B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u00e3 \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i n\\u1ed9i dung \\u0111\\u1ec1 xu\\u1ea5t v\\u1ec1 gi\\u1edd l\\u00e0m vi\\u1ec7c.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00d4ng Nguy\\u1ec5n V\\u0103n B\\u00ecnh, Ph\\u00f3 v\\u1ee5 tr\\u01b0\\u1edfng V\\u1ee5 ph\\u00e1p ch\\u1ebf (B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 x\\u00e3 h\\u1ed9i), cho hay v\\u1eeba qua B\\u1ed9 nh\\u1eadn \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u \\u00fd ki\\u1ebfn \\u0111\\u00f3ng g\\u00f3p c\\u1ee7a ng\\u01b0\\u1eddi d\\u00e2n v\\u00e0 c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng n\\u00ean \\u0111\\u00e3 ti\\u1ebfp thu, \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1ea1i c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng \\u0111\\u1ec3 linh ho\\u1ea1t, ph\\u00f9 h\\u1ee3p v\\u1edbi \\u0111i\\u1ec1u ki\\u1ec7n kh\\u00ed h\\u1eadu m\\u1ed7i v\\u00f9ng mi\\u1ec1n. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EC\\u1ee5 th\\u1ec3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c s\\u1eeda l\\u1ea1i nh\\u01b0 sau: \\u0026quot;Giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\u0026quot;. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc c\\u1ea5p trung \\u01b0\\u01a1ng v\\u00e0 c\\u00e1c \\u0111\\u00f4 th\\u1ecb l\\u1edbn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat (tr\\u1eeb nh\\u1eefng \\u0111\\u01a1n v\\u1ecb ho\\u1eb7c b\\u1ed9 ph\\u1eadn ph\\u1ea3i th\\u01b0\\u1eddng tr\\u1ef1c 24/24 gi\\u1edd \\u0111\\u1ec3 \\u0111\\u1ea3m b\\u1ea3o li\\u00ean th\\u00f4ng c\\u00f4ng vi\\u1ec7c ho\\u1eb7c tr\\u1ef1c ti\\u1ebfp gi\\u1ea3i quy\\u1ebft c\\u00f4ng vi\\u1ec7c v\\u1edbi ng\\u01b0\\u1eddi d\\u00e2n). \\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc \\u1edf \\u0111\\u1ecba ph\\u01b0\\u01a1ng th\\u00ec th\\u1ed1ng nh\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c m\\u00f9a h\\u00e8 v\\u00e0 m\\u00f9a \\u0111\\u00f4ng theo \\u0111i\\u1ec1u ki\\u1ec7n \\u0111\\u1ecba l\\u00fd.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPh\\u01b0\\u01a1ng \\u00e1n 2 c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c gi\\u1eef nh\\u01b0 hi\\u1ec7n h\\u00e0nh. Theo \\u0111\\u00f3, th\\u1eddi gian l\\u00e0m vi\\u1ec7c kh\\u00f4ng quy \\u0111\\u1ecbnh trong B\\u1ed9 lu\\u1eadt Lao \\u0111\\u1ed9ng m\\u00e0 n\\u00eau t\\u1ea1i c\\u00e1c v\\u0103n b\\u1ea3n h\\u00e0nh ch\\u00ednh; \\u0111\\u1ed1i v\\u1edbi c\\u00e1c B\\u1ed9 do Th\\u1ee7 t\\u01b0\\u1edbng quy\\u1ebft \\u0111\\u1ecbnh; \\u0111\\u1ed1i v\\u1edbi UBND v\\u00e0 c\\u00e1c c\\u01a1 quan chuy\\u00ean m\\u00f4n do Ch\\u1ee7 t\\u1ecbch t\\u1ec9nh quy\\u1ebft.\\n\\u0026lt;img src=\\u0026quot;https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\u0026quot; alt=\\u0026quot;Markdown Monster icon\\u0026quot;/\\u0026gt;\\n\\u003Ca href=\\\"https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\\"\\u003ENg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E![Image of Yaktocat](\\u003Ca href=\\\"https://octodex.github.com/images/yaktocat.png\\\"\\u003Ehttps://octodex.github.com/images/yaktocat.png\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETr\\u01b0\\u1edbc \\u0111\\u00f3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t trong phi\\u00ean b\\u1ea3n c\\u0169 c\\u1ee7a d\\u1ef1 th\\u1ea3o t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c c\\u00f4ng b\\u1ed1 h\\u00f4m 28/4 n\\u00eau, \\u0026quot;giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\u0026quot;. Th\\u1eddi gian l\\u00e0m vi\\u1ec7c d\\u1ef1 ki\\u1ebfn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsqqvo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Fortuner2022\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsqqvo/b\\u1ed9_lao_\\u0111\\u1ed9ng_th\\u01b0\\u01a1ng_binh_v\\u00e0_x\\u00e3_h\\u1ed9i_\\u0111i\\u1ec1u_ch\\u1ec9nh_\\u0111\\u1ec1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsqqvo/b\\u1ed9_lao_\\u0111\\u1ed9ng_th\\u01b0\\u01a1ng_binh_v\\u00e0_x\\u00e3_h\\u1ed9i_\\u0111i\\u1ec1u_ch\\u1ec9nh_\\u0111\\u1ec1/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558759801.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Now the sad part. I don't actually have anyone to play my cube with at the moment. Why would someone put all the effort into building a cube that they can't actually play? Well, I started playing on ptcgo so I don't have a physical play group and from ptcgo I got into collecting some physical cards. I eventually heard about pokemon cubes and thought it sounded like a fun thing to do with all of the cards I was collecting. Some people collect Charizards or secret rares or Yuka Morii art. I collected a cube. That's another reason I went with all the bling, to add some longevity to the project.\\n\\nThe long term plan is to play it with my kids (I have three boys). They're interested in pokemon and I've given them some beater cards to start \\\"collecting\\\" but they're still a year or two away from actually playing the game. In the mean time, I've been playing and testing the cube on my own. You may have seen my post a couple months ago about my [draft interface](https://www.reddit.com/r/pkmntcg/comments/a1i5p1/i_made_a_drafting_interface_for_testing_your_cube/). I use that to build decks then play a few games against myself to get a feel for the power level, consistency and balance. Even with just self-testing, I've been able to learn quite a bit about how the cube plays. Here are some of my observations/musings.\\n\\n##Drafting\\n\\n**Table Draft** (4-6 players, 60 card decks, 6 prize games)\\n\\n1. Create packs\\n * 4 players: 36 packs of 10 cards\\n * 5 players: 45 packs of 10 cards\\n * 6 players: 48 packs of 10 cards\\n2. Each player opens a pack, picks 1 card and passes it to the player on their right.\\n3. Each player continues picking 1 card from the pack that is passed to them until all the cards in the packs are drafted.\\n4. Each player opens a new pack, picks 1 card and passes it to the player on their left.\\n5. Continue until all of the packs have been drafted.\\n\\nThis is the most common draft format and probably what most people have in mind for playing cube. The most challenging part of this format is figuring out what you need to pick early in a pack versus what you think you can leave behind and pick up later. Mid-way through a draft, you might open a pack with a [Strong Energy](https://pkmncards.com/card/strong-energy-fates-collide-fco-115/ \\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\") and a [Nest Ball](https://pkmncards.com/card/nest-ball-sun-moon-sum-123/ \\\"Search your deck for a Basic Pok\\u00e9mon and put it onto your Bench. Then, shuffle your deck.\\\") and be faced with a tough choice. Strong Energy would be incredible in your Fighting deck, probably better than Nest Ball, and not many other people at the table will want the Strong Energy. The Nest Ball, on the other hand, will be in high demand. There's almost no chance that it will still be in the pack when it comes back to you. So do you take the consistency boosting Nest Ball and try to wheel the Strong Energy or do you take the damage boost to guarantee some extra power in your deck. Or maybe you're passed a Salandit that you really want for your [Roast Reveal Salazzle](https://pkmncards.com/card/salazzle-unbroken-bonds-unb-31/ \\\"Ability: Roast Reveal\\nOnce during your turn (before your attack), you may discard a [R] Energy card from your hand. If you do, draw 3 cards.\\\"). Will it come back around or will a Grass deck take it to support a [Hot Poison](https://pkmncards.com/card/salazzle-guardians-rising-gri-16/ \\\"Ability: Hot Poison\\nWhen you play this Pok\\u00e9mon from your hand to evolve 1 of your Pok\\u00e9mon during your turn, you may leave your opponent\\u2019s Active Pok\\u00e9mon Burned and Poisoned.\\\"). Interesting choices!\\n\\nI also like how the pick priorities change throughout the draft. Early on you're mostly looking for big spicy cards to build around. Magnezone, Greninja, Victreebel, etc. If there's nothing like that in the pack, you take a nice consistency card like Sycamore or Ultra Ball that still leaves you open to lots of decks. Further into the draft, you're first picking a lot of the high quality trainer cards cause everyone wants them, but also balancing that with powerful support cards that your deck needs to function. At the tail end, you're trying to fill in any holes that your deck still has. You may find yourself picking a [Brock's Grit](https://pkmncards.com/card/brocks-grit-evolutions-evo-107/ \\\"Shuffle 6 in any combination of Pok\\u00e9mon and basic Energy cards from your discard pile into your deck.\\\") over a [Cynthia](https://pkmncards.com/card/cynthia-ultra-prism-upr-148/ \\\"Shuffle your hand into your deck. Then, draw 6 cards.\\\") simply because you don't have any energy or pokemon recovery yet. While some cards come really close to insta-picks, most of a cards' worth is highly dependent on the deck you're trying to build the stage of the draft you're in, which I really like.\\n\\nRegarding the number of packs to draft, it's tempting to simply draft the entire cube every time. But, especially with four players, it leads to predictable and somewhat boring drafts. Each player gets into their own archetype and there is very little competition for cards other than trainers. If someone first picks a Magnezone, you might as well hand them the rest of the Lightning cards in the cube. If you limit the number of packs, players are not guaranteed to see all of their support cards during the draft. They will have to explore other options within an archetype or at least a way to supplement their preferred deck with other cards. This is an important source of innovation and variety in cube drafting. It's what keeps each new draft form being just like the previous one. Of course, this has to be balanced against giving players enough cards to build a functioning deck. To few cards and you'll end up with a bunch of weak attackers and no real synergy between cards. I feel like around 80-90 cards in your final card pool (not including basic energies) is about right. This may sound like a ton of cards if you are coming from a background of drafting Magic: the Gathering but, proportionally, it's not too far off. In a Magic draft, you have 24 packs of 14 cards and each player ends up with 42 non-land cards. Your 40 card deck will typically have 23 non-land cards so you draft nearly twice as many cards as you end up using. In a 60 card pokemon deck you will have around 45-48 non-energy cards in your final deck and 80-90 is roughly double that. It's enough cards to present you with meaningful choices during deck building rather than just including anything that is remotely playable. Do I try to splash that off-color attacker to cover weakness or do I include more basic energy for consistency? How much energy fixing did I draft? That kind of stuff.\\n\\n**Grid Draft** (2 players, 60 card decks, 6 prize games)\\n\\n1. Create 34 packs of 9 cards. \\n2. Layout one pack in a 3 X 3 grid face up.\\n3. The first player chooses either a row or a column and takes all three of the cards in the row/column.\\n4. The second player chooses another row or column and takes those cards\\n5. Alternated who chooses first with each pack.\\n\\nGrid drafting is a really good place to start if you are playing with someone who's never drafted before. With all the cards laid out for everyone to see, you can easily give hints and guidance without breaking any of the rules of the draft (i.e. \\\"show me your pack\\\"). Drafting an entire deck from a cube involves *a lot* of decisions, and it can be overwhelming for people that aren't familiar with your cube and all of the card interactions. Providing some gentle guidance when they get stuck removes some of that burden and keep things fun. Grid drafting also goes a little bit faster than some of the other forms because you are picking 2-3 cards at a time.\\n\\nUnfortunately, I don't think grid drafting is a very good format for pokemon cubes. After doing several grid drafts in my simulator, I kept ending up with decks that were missing key cards like pre-evolutions even though I was drafting *a lot* of extra cards. During a table draft, you can easily pick up your pre-evolutions later in a pack because no one else is interested in them. But in grid drafting, it's not uncommon to have your pre-evolutions accidentally hate drafted by the other player because they just happened to be in a row with something else they wanted. And if you prioritize pre-evolutions too heavily, you are often giving up high quality consistency cards like draw supporters or poke search. Basically, grid drafting does not give you the precise control over picks necessary to build proper pokemon decks.\\n\\n**Pancake Draft** (2 players)\\n\\n1. Create 30 packs of 12 cards.\\n2. Each player takes a pack, picks 1 card and passes it to the other player.\\n3. Each player picks 2 cards then removes 2 cards and puts them in a discard pile. Pass the pack again.\\n4. Each player picks 2 cards and discards the remaining 5 cards.\\n5. Repeat 2-3 until all packs have been drafted.\\n\\nThis is essentially the traditional table draft adapted for two players. \\n\\n**Sealed** (2-4 players, 60 card decks, 6 prize games)\\n\\n1. Remove pre-evolutions from the pool of cards (142 cards).\\n2. Create sealed pools of 80 cards for each player.\\n3. Build decks adding basic energy and the necessary pre-evolutions as needed.\\n\\nSealed is pretty dicey for the same reasons that grid drafting is. You need to make a lot of intentional picks while drafting to make sure that your evolution lines work. You can't do that in sealed. There's no way you can reliably get enough complete evolution lines in a reasonably sized sealed pool. However, removing the pre-evolutions from the pool helps a ton. Now you're just looking for enough strong attackers that share a type or a strategy to mash together into a deck. After you build you deck, you simply add whatever pre-evolutions you need, similar to how basic energy is handled.\\n\\nSealed decks, across various card games, generally rely less on card synergy and more on individually strong cards. Don't expect the decks to be as intricate or as fun as draft decks. It's not the way I prefer to play cube but it's a decent option if you don't have time for a lengthy draft. It's also a good way to introduce new players to your cube. Having to read every card in a pack 40 times over is exhausting and without a mental short list of what cards they should be considering, inexperienced players can quickly become overwhelmed. With a static sealed pool, a player unfamiliar with the cards can focus on what they have and make the best of it. Consider 40 card decks with 4 prize games if you are playing with new folks, as well.\\n\\n##Gameplay\\n\\n* **Pace of play**: As you might expect, games are quite a bit slower than competitive constructed decks. You don't have the draw engines that give you complete turn 1 setups and let you see half your deck by turn 3. You don't have fully powered up attackers every turn taking knockouts. Instead, cube decks play at around the same speed as theme decks. You spend a few turns setting up, then start taking knock-outs semi-regularly. There will still be occasional dead draws and slow starts but part of the strategy is learning how to mitigate the damage of these situations. Is there a pokemon I can [Flick Poison](https://pkmncards.com/card/carnivine-shining-legends-slg-6/ \\\"[G] Flick Poison\\nSwitch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. The new Active Pok\\u00e9mon is now Poisoned.\\\") and stall while I draw out of this? There are also a fair number of catch-up mechanics available in the cube so getting a slower start than your opponent is not an automatic game loss.\\n\\nWhere cube decks exceed theme decks is in their available lines of play. Theme decks execute basically the same game plan every time because they have only a couple good attackers and maybe one or two tricks. Cube decks have completely unique attackers and each will be strongest in different situations. Sequencing and setting up the right attacker for the right response KO becomes very important. The number of tricks available in cube decks is also much higher than theme decks, leading to lots of fun and unexpected plays throughout the game. \\n\\n* **Consistency**: Consistency is a trick. On one hand, you want your decks to be doing cool, powerful, and interesting things. But doing those things usually means getting several specific cards in your hand and into play. Unfortunately, cube doesn't have strong enough draw engines to support intricate setups, and decks that rely heavily on them are going to be wildly inconsistent. On the other hand, if decks are very simple (play basic pokemon, attach energy, declare attack) they will be very consistent, but also very boring. So decks need a little bit of both. They need some meat and potatoes, basic attacks with low energy costs, as well as some spice, splashy evolution pokemon with unique attacks or abilities. The same is true with trainers, where you want your [Colresses](https://pkmncards.com/card/colress-plasma-storm-pls-135/ \\\"Shuffle your hand into your deck. Then, draw a number of cards equal to the number of Benched Pok\\u00e9mon (both your and your opponent\\u2019s).\\\") along side your [Nanus](https://pkmncards.com/card/nanu-team-up-teu-179/ \\\"Choose a Basic [D] Pok\\u00e9mon in your discard pile. Switch it with 1 of your Pok\\u00e9mon in play. Any attached cards, damage counters, Special Conditions, turns in play, and any other effects remain of the new Pok\\u00e9mon.\\\"). The decks that seem to work best are ones with solid basic attackers that can function on their own, but kick into another gear when they get the stage 2 support online. In Lightning decks, [Zekrom](https://pkmncards.com/card/zekrom-shining-legends-slg-35/ \\\"[C][C] Outrage: 20+\\nThis attack does 10 more damage for each damage counter on this Pok\\u00e9mon.\\n[L][L][C] Storm Blade: 130\\nDiscard 2 Energy from this Pok\\u00e9mon.\\\") or [Zeraora](https://pkmncards.com/card/zeraora-unbroken-bonds-unb-60/ \\\"[L] Crushing Claw: 20\\nDiscard a Special Energy from your opponent\\u2019s Active Pok\\u00e9mon.\\n[L][C][C] Discharge: 50\\u00d7\\nDiscard all [L] Energy from this Pok\\u00e9mon. This attack does 50 damage for each card you discarded in this way.\\\") can chip away for a few turns until [Magnezone](https://pkmncards.com/card/magnezone-forbidden-light-fli-36/ \\\"Ability: Magnetic Circuit\\nAs often as you like during your turn (before your attack), you may attach a [L] Energy card from your hand to 1 of your Pok\\u00e9mon.\\\") begins accelerating energy and you start chewing through attackers. In Psychic decks, [Hoopa](https://pkmncards.com/card/hoopa-steam-siege-sts-51/ \\\"[C] Hyperspace Punch\\nThis attack does 20 damage to 2 of your opponent\\u2019s Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][P][P] Portal Strike: 130\\nThis Pok\\u00e9mon can\\u2019t use Portal Strike during your next turn.\\\") and [Latios](https://pkmncards.com/card/latios-shining-legends-slg-41/ \\\"[C][C] Break Through: 30\\nThis attack does 30 damage to 1 of your opponent\\u2019s Benched Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][C][C] Lagoon Flight: 70 \\\") can load up the board with damage allowing [Chandelure](https://pkmncards.com/card/chandelure-lost-thunder-lot-103/ \\\"[P][P] Vortex of Pain: 20\\u00d7\\nThis attack does 20 damage for each damage counter on all of your opponent\\u2019s Pok\\u00e9mon.\\\") to come in later and Vortex for huge numbers.\\n\\nIn general, people tend to err on the cool and splashy side when building their cube. We're much more likely to imagine Magical Christmas Land in our heads when we envision how all the cards are going to work together. \\\"Of course I'm going to draw [Regirock](https://pkmncards.com/card/regirock-celestial-storm-ces-80/ \\\"[F] Enhanced Stomp: 20+\\nIf this Pok\\u00e9mon has a Pok\\u00e9mon Tool card attached to it, this attack does 20 more damage.\\\"), [Muscle Band](https://pkmncards.com/card/muscle-band-xy-121/ \\\"The attacks of the Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon (before applying Weakness and Resistance).\\\"), [Strong Energy](https://pkmncards.com/card/strong-energy-fates-collide-fco-115/ \\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\") and Rare Candy [Fighting Fury Machamp](https://pkmncards.com/card/machamp-furious-fists-ffi-46/ \\\"Ability: Fighting Fury\\nEach of your [F] Pok\\u00e9mon\\u2019s attacks do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon .\\\") on turn 2. 100 Damage for 1 energy! Might even be too good for cube.\\\" I try to avoid cards that do actual nothing if some previous setup isn't there. I want whatever I draw to be useful in some way. What makes Regirock good is that you only need *one* of those pieces for it to be hitting above average numbers, but the more you have, the better it gets. One example of borderline do-nothings in my cube are the [Reactive Poison](https://pkmncards.com/card/ariados-celestial-storm-ces-6/ \\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\\") attacks, since you really need access to status conditions for them to do anything. Fortunately, [Victreebel](https://pkmncards.com/card/victreebel-unbroken-bonds-unb-15/ \\\"[G] Reactive Poison: 10+\\nThis attack does 60 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G][C][C] Gastro Acid: 90\\nThe Defending Pok\\u00e9mon has no Abilities until the end of your next turn.\\\") and [Ariados](https://pkmncards.com/card/ariados-celestial-storm-ces-6/ \\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G] Spider Trap\\nYou may switch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. Your opponent\\u2019s Active Pok\\u00e9mon is now Asleep and Poisoned..\\\") have decent backup attacks making them somewhat more flexible if the setup isn't there.\\n\\nSo what are the best types of cards to include to support the spice? What are the meat and potatoes?\\n\\n* **Attack draw/search**: Standard games are usually too fast to waste your attack drawing cards, but with the slower pace of play in cube, attack based setup is very valuable. Cards like [Alolan Vulpix](https://pkmncards.com/card/alolan-vulpix-guardians-rising-gri-21/ \\\"[-] Beacon\\nSearch your deck for up to 2 Pok\\u00e9mon, reveal them, and put them into your hand. Then, shuffle your deck.\\\") and [Dunsparce](https://pkmncards.com/card/dunsparce-celestial-storm-ces-110/ \\\"[C] Strike and Run\\nSearch your deck for up to 3 Basic Pok\\u00e9mon and put them onto your Bench. Then, shuffle your deck. If you put any Pok\\u00e9mon onto your Bench in this way, you may switch this Pok\\u00e9mon with 1 of your Benched Pok\\u00e9mon.\\\") are pretty good for setting up your board but can be hard to reliably get out on the first turn and aren't that useful later on. [Espeon](https://pkmncards.com/card/espeon-plasma-freeze-plf-48/ \\\"[C] Psy Alert: 20\\nDraw cards until you have 6 cards in your hand.\\n[P] Shadow Ball\\nThis attack does 40 damage to 1 of your opponent\\u2019s Pok\\u00e9mon. Also apply Weakness and Resistance for Benched Pok\\u00e9mon.\\\") and [Zoroark](https://pkmncards.com/card/zoroark-black-white-blw-71/ \\\"[D] Nasty Plot\\nSearch your deck for a card and put it into your hand. Shuffle your deck afterward.\\n[C][C] Foul Play\\nChoose 1 of the Defending Pok\\u00e9mon\\u2019s attacks and use it as this attack.\\\") can dish out damage in addition to drawing cards, but are stage 1 and require some setup themselves before they are useful. My favorite kinds of cards are pokemon like [Shaymin](https://pkmncards.com/card/shaymin-shining-legends-slg-7/ \\\"[G] Flippity Flap\\nShuffle your hand into your deck. Then, draw 6 cards.\\n[G][C] Rally Back: 30+\\nIf any of your Pok\\u00e9mon were Knocked Out by damage from an opponent\\u2019s attack during their last turn, this attack does 90 more damage.\\\") and [Mimikyu](https://pkmncards.com/card/mimikyu-guardians-rising-gri-58/ \\\"[C] Filch\\nDraw 2 cards.\\n[P][C] Copycat\\nIf your opponent\\u2019s Pok\\u00e9mon used an attack that isn\\u2019t a GX attack during their last turn, use it as this attack.\\\"). The efficient card draw helps with early game setup and mid-game dead draws while their situational attacks keep them relevant to the last prize. They may not be super flavorful additions to their respective archetypes, but they are crucial to a well functioning decks. When things aren't going as planned, you still need cards that get out there and do *something* to help move the game along. Basic attackers, single energy card draw, efficient damage; these pokemon are the glue that hold all fun stuff together.\", \"author_fullname\": \"t2_i1ikl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Pokecube II\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bskwuj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558753845.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENow the sad part. I don\\u0026#39;t actually have anyone to play my cube with at the moment. Why would someone put all the effort into building a cube that they can\\u0026#39;t actually play? Well, I started playing on ptcgo so I don\\u0026#39;t have a physical play group and from ptcgo I got into collecting some physical cards. I eventually heard about pokemon cubes and thought it sounded like a fun thing to do with all of the cards I was collecting. Some people collect Charizards or secret rares or Yuka Morii art. I collected a cube. That\\u0026#39;s another reason I went with all the bling, to add some longevity to the project.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe long term plan is to play it with my kids (I have three boys). They\\u0026#39;re interested in pokemon and I\\u0026#39;ve given them some beater cards to start \\u0026quot;collecting\\u0026quot; but they\\u0026#39;re still a year or two away from actually playing the game. In the mean time, I\\u0026#39;ve been playing and testing the cube on my own. You may have seen my post a couple months ago about my \\u003Ca href=\\\"https://www.reddit.com/r/pkmntcg/comments/a1i5p1/i_made_a_drafting_interface_for_testing_your_cube/\\\"\\u003Edraft interface\\u003C/a\\u003E. I use that to build decks then play a few games against myself to get a feel for the power level, consistency and balance. Even with just self-testing, I\\u0026#39;ve been able to learn quite a bit about how the cube plays. Here are some of my observations/musings.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EDrafting\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETable Draft\\u003C/strong\\u003E (4-6 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate packs\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E4 players: 36 packs of 10 cards\\u003C/li\\u003E\\n\\u003Cli\\u003E5 players: 45 packs of 10 cards\\u003C/li\\u003E\\n\\u003Cli\\u003E6 players: 48 packs of 10 cards\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player opens a pack, picks 1 card and passes it to the player on their right.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player continues picking 1 card from the pack that is passed to them until all the cards in the packs are drafted.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player opens a new pack, picks 1 card and passes it to the player on their left.\\u003C/li\\u003E\\n\\u003Cli\\u003EContinue until all of the packs have been drafted.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is the most common draft format and probably what most people have in mind for playing cube. The most challenging part of this format is figuring out what you need to pick early in a pack versus what you think you can leave behind and pick up later. Mid-way through a draft, you might open a pack with a \\u003Ca href=\\\"https://pkmncards.com/card/strong-energy-fates-collide-fco-115/\\\" title=\\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EStrong Energy\\u003C/a\\u003E and a \\u003Ca href=\\\"https://pkmncards.com/card/nest-ball-sun-moon-sum-123/\\\" title=\\\"Search your deck for a Basic Pok\\u00e9mon and put it onto your Bench. Then, shuffle your deck.\\\"\\u003ENest Ball\\u003C/a\\u003E and be faced with a tough choice. Strong Energy would be incredible in your Fighting deck, probably better than Nest Ball, and not many other people at the table will want the Strong Energy. The Nest Ball, on the other hand, will be in high demand. There\\u0026#39;s almost no chance that it will still be in the pack when it comes back to you. So do you take the consistency boosting Nest Ball and try to wheel the Strong Energy or do you take the damage boost to guarantee some extra power in your deck. Or maybe you\\u0026#39;re passed a Salandit that you really want for your \\u003Ca href=\\\"https://pkmncards.com/card/salazzle-unbroken-bonds-unb-31/\\\" title=\\\"Ability: Roast Reveal\\nOnce during your turn (before your attack), you may discard a [R] Energy card from your hand. If you do, draw 3 cards.\\\"\\u003ERoast Reveal Salazzle\\u003C/a\\u003E. Will it come back around or will a Grass deck take it to support a \\u003Ca href=\\\"https://pkmncards.com/card/salazzle-guardians-rising-gri-16/\\\" title=\\\"Ability: Hot Poison\\nWhen you play this Pok\\u00e9mon from your hand to evolve 1 of your Pok\\u00e9mon during your turn, you may leave your opponent\\u2019s Active Pok\\u00e9mon Burned and Poisoned.\\\"\\u003EHot Poison\\u003C/a\\u003E. Interesting choices!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also like how the pick priorities change throughout the draft. Early on you\\u0026#39;re mostly looking for big spicy cards to build around. Magnezone, Greninja, Victreebel, etc. If there\\u0026#39;s nothing like that in the pack, you take a nice consistency card like Sycamore or Ultra Ball that still leaves you open to lots of decks. Further into the draft, you\\u0026#39;re first picking a lot of the high quality trainer cards cause everyone wants them, but also balancing that with powerful support cards that your deck needs to function. At the tail end, you\\u0026#39;re trying to fill in any holes that your deck still has. You may find yourself picking a \\u003Ca href=\\\"https://pkmncards.com/card/brocks-grit-evolutions-evo-107/\\\" title=\\\"Shuffle 6 in any combination of Pok\\u00e9mon and basic Energy cards from your discard pile into your deck.\\\"\\u003EBrock\\u0026#39;s Grit\\u003C/a\\u003E over a \\u003Ca href=\\\"https://pkmncards.com/card/cynthia-ultra-prism-upr-148/\\\" title=\\\"Shuffle your hand into your deck. Then, draw 6 cards.\\\"\\u003ECynthia\\u003C/a\\u003E simply because you don\\u0026#39;t have any energy or pokemon recovery yet. While some cards come really close to insta-picks, most of a cards\\u0026#39; worth is highly dependent on the deck you\\u0026#39;re trying to build the stage of the draft you\\u0026#39;re in, which I really like.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding the number of packs to draft, it\\u0026#39;s tempting to simply draft the entire cube every time. But, especially with four players, it leads to predictable and somewhat boring drafts. Each player gets into their own archetype and there is very little competition for cards other than trainers. If someone first picks a Magnezone, you might as well hand them the rest of the Lightning cards in the cube. If you limit the number of packs, players are not guaranteed to see all of their support cards during the draft. They will have to explore other options within an archetype or at least a way to supplement their preferred deck with other cards. This is an important source of innovation and variety in cube drafting. It\\u0026#39;s what keeps each new draft form being just like the previous one. Of course, this has to be balanced against giving players enough cards to build a functioning deck. To few cards and you\\u0026#39;ll end up with a bunch of weak attackers and no real synergy between cards. I feel like around 80-90 cards in your final card pool (not including basic energies) is about right. This may sound like a ton of cards if you are coming from a background of drafting Magic: the Gathering but, proportionally, it\\u0026#39;s not too far off. In a Magic draft, you have 24 packs of 14 cards and each player ends up with 42 non-land cards. Your 40 card deck will typically have 23 non-land cards so you draft nearly twice as many cards as you end up using. In a 60 card pokemon deck you will have around 45-48 non-energy cards in your final deck and 80-90 is roughly double that. It\\u0026#39;s enough cards to present you with meaningful choices during deck building rather than just including anything that is remotely playable. Do I try to splash that off-color attacker to cover weakness or do I include more basic energy for consistency? How much energy fixing did I draft? That kind of stuff.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGrid Draft\\u003C/strong\\u003E (2 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate 34 packs of 9 cards. \\u003C/li\\u003E\\n\\u003Cli\\u003ELayout one pack in a 3 X 3 grid face up.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe first player chooses either a row or a column and takes all three of the cards in the row/column.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe second player chooses another row or column and takes those cards\\u003C/li\\u003E\\n\\u003Cli\\u003EAlternated who chooses first with each pack.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EGrid drafting is a really good place to start if you are playing with someone who\\u0026#39;s never drafted before. With all the cards laid out for everyone to see, you can easily give hints and guidance without breaking any of the rules of the draft (i.e. \\u0026quot;show me your pack\\u0026quot;). Drafting an entire deck from a cube involves \\u003Cem\\u003Ea lot\\u003C/em\\u003E of decisions, and it can be overwhelming for people that aren\\u0026#39;t familiar with your cube and all of the card interactions. Providing some gentle guidance when they get stuck removes some of that burden and keep things fun. Grid drafting also goes a little bit faster than some of the other forms because you are picking 2-3 cards at a time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnfortunately, I don\\u0026#39;t think grid drafting is a very good format for pokemon cubes. After doing several grid drafts in my simulator, I kept ending up with decks that were missing key cards like pre-evolutions even though I was drafting \\u003Cem\\u003Ea lot\\u003C/em\\u003E of extra cards. During a table draft, you can easily pick up your pre-evolutions later in a pack because no one else is interested in them. But in grid drafting, it\\u0026#39;s not uncommon to have your pre-evolutions accidentally hate drafted by the other player because they just happened to be in a row with something else they wanted. And if you prioritize pre-evolutions too heavily, you are often giving up high quality consistency cards like draw supporters or poke search. Basically, grid drafting does not give you the precise control over picks necessary to build proper pokemon decks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPancake Draft\\u003C/strong\\u003E (2 players)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate 30 packs of 12 cards.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player takes a pack, picks 1 card and passes it to the other player.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player picks 2 cards then removes 2 cards and puts them in a discard pile. Pass the pack again.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player picks 2 cards and discards the remaining 5 cards.\\u003C/li\\u003E\\n\\u003Cli\\u003ERepeat 2-3 until all packs have been drafted.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is essentially the traditional table draft adapted for two players. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESealed\\u003C/strong\\u003E (2-4 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ERemove pre-evolutions from the pool of cards (142 cards).\\u003C/li\\u003E\\n\\u003Cli\\u003ECreate sealed pools of 80 cards for each player.\\u003C/li\\u003E\\n\\u003Cli\\u003EBuild decks adding basic energy and the necessary pre-evolutions as needed.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ESealed is pretty dicey for the same reasons that grid drafting is. You need to make a lot of intentional picks while drafting to make sure that your evolution lines work. You can\\u0026#39;t do that in sealed. There\\u0026#39;s no way you can reliably get enough complete evolution lines in a reasonably sized sealed pool. However, removing the pre-evolutions from the pool helps a ton. Now you\\u0026#39;re just looking for enough strong attackers that share a type or a strategy to mash together into a deck. After you build you deck, you simply add whatever pre-evolutions you need, similar to how basic energy is handled.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESealed decks, across various card games, generally rely less on card synergy and more on individually strong cards. Don\\u0026#39;t expect the decks to be as intricate or as fun as draft decks. It\\u0026#39;s not the way I prefer to play cube but it\\u0026#39;s a decent option if you don\\u0026#39;t have time for a lengthy draft. It\\u0026#39;s also a good way to introduce new players to your cube. Having to read every card in a pack 40 times over is exhausting and without a mental short list of what cards they should be considering, inexperienced players can quickly become overwhelmed. With a static sealed pool, a player unfamiliar with the cards can focus on what they have and make the best of it. Consider 40 card decks with 4 prize games if you are playing with new folks, as well.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EGameplay\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPace of play\\u003C/strong\\u003E: As you might expect, games are quite a bit slower than competitive constructed decks. You don\\u0026#39;t have the draw engines that give you complete turn 1 setups and let you see half your deck by turn 3. You don\\u0026#39;t have fully powered up attackers every turn taking knockouts. Instead, cube decks play at around the same speed as theme decks. You spend a few turns setting up, then start taking knock-outs semi-regularly. There will still be occasional dead draws and slow starts but part of the strategy is learning how to mitigate the damage of these situations. Is there a pokemon I can \\u003Ca href=\\\"https://pkmncards.com/card/carnivine-shining-legends-slg-6/\\\" title=\\\"[G] Flick Poison\\nSwitch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. The new Active Pok\\u00e9mon is now Poisoned.\\\"\\u003EFlick Poison\\u003C/a\\u003E and stall while I draw out of this? There are also a fair number of catch-up mechanics available in the cube so getting a slower start than your opponent is not an automatic game loss.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhere cube decks exceed theme decks is in their available lines of play. Theme decks execute basically the same game plan every time because they have only a couple good attackers and maybe one or two tricks. Cube decks have completely unique attackers and each will be strongest in different situations. Sequencing and setting up the right attacker for the right response KO becomes very important. The number of tricks available in cube decks is also much higher than theme decks, leading to lots of fun and unexpected plays throughout the game. \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EConsistency\\u003C/strong\\u003E: Consistency is a trick. On one hand, you want your decks to be doing cool, powerful, and interesting things. But doing those things usually means getting several specific cards in your hand and into play. Unfortunately, cube doesn\\u0026#39;t have strong enough draw engines to support intricate setups, and decks that rely heavily on them are going to be wildly inconsistent. On the other hand, if decks are very simple (play basic pokemon, attach energy, declare attack) they will be very consistent, but also very boring. So decks need a little bit of both. They need some meat and potatoes, basic attacks with low energy costs, as well as some spice, splashy evolution pokemon with unique attacks or abilities. The same is true with trainers, where you want your \\u003Ca href=\\\"https://pkmncards.com/card/colress-plasma-storm-pls-135/\\\" title=\\\"Shuffle your hand into your deck. Then, draw a number of cards equal to the number of Benched Pok\\u00e9mon (both your and your opponent\\u2019s).\\\"\\u003EColresses\\u003C/a\\u003E along side your \\u003Ca href=\\\"https://pkmncards.com/card/nanu-team-up-teu-179/\\\" title=\\\"Choose a Basic [D] Pok\\u00e9mon in your discard pile. Switch it with 1 of your Pok\\u00e9mon in play. Any attached cards, damage counters, Special Conditions, turns in play, and any other effects remain of the new Pok\\u00e9mon.\\\"\\u003ENanus\\u003C/a\\u003E. The decks that seem to work best are ones with solid basic attackers that can function on their own, but kick into another gear when they get the stage 2 support online. In Lightning decks, \\u003Ca href=\\\"https://pkmncards.com/card/zekrom-shining-legends-slg-35/\\\" title=\\\"[C][C] Outrage: 20+\\nThis attack does 10 more damage for each damage counter on this Pok\\u00e9mon.\\n[L][L][C] Storm Blade: 130\\nDiscard 2 Energy from this Pok\\u00e9mon.\\\"\\u003EZekrom\\u003C/a\\u003E or \\u003Ca href=\\\"https://pkmncards.com/card/zeraora-unbroken-bonds-unb-60/\\\" title=\\\"[L] Crushing Claw: 20\\nDiscard a Special Energy from your opponent\\u2019s Active Pok\\u00e9mon.\\n[L][C][C] Discharge: 50\\u00d7\\nDiscard all [L] Energy from this Pok\\u00e9mon. This attack does 50 damage for each card you discarded in this way.\\\"\\u003EZeraora\\u003C/a\\u003E can chip away for a few turns until \\u003Ca href=\\\"https://pkmncards.com/card/magnezone-forbidden-light-fli-36/\\\" title=\\\"Ability: Magnetic Circuit\\nAs often as you like during your turn (before your attack), you may attach a [L] Energy card from your hand to 1 of your Pok\\u00e9mon.\\\"\\u003EMagnezone\\u003C/a\\u003E begins accelerating energy and you start chewing through attackers. In Psychic decks, \\u003Ca href=\\\"https://pkmncards.com/card/hoopa-steam-siege-sts-51/\\\" title=\\\"[C] Hyperspace Punch\\nThis attack does 20 damage to 2 of your opponent\\u2019s Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][P][P] Portal Strike: 130\\nThis Pok\\u00e9mon can\\u2019t use Portal Strike during your next turn.\\\"\\u003EHoopa\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/latios-shining-legends-slg-41/\\\" title=\\\"[C][C] Break Through: 30\\nThis attack does 30 damage to 1 of your opponent\\u2019s Benched Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][C][C] Lagoon Flight: 70 \\\"\\u003ELatios\\u003C/a\\u003E can load up the board with damage allowing \\u003Ca href=\\\"https://pkmncards.com/card/chandelure-lost-thunder-lot-103/\\\" title=\\\"[P][P] Vortex of Pain: 20\\u00d7\\nThis attack does 20 damage for each damage counter on all of your opponent\\u2019s Pok\\u00e9mon.\\\"\\u003EChandelure\\u003C/a\\u003E to come in later and Vortex for huge numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EIn general, people tend to err on the cool and splashy side when building their cube. We\\u0026#39;re much more likely to imagine Magical Christmas Land in our heads when we envision how all the cards are going to work together. \\u0026quot;Of course I\\u0026#39;m going to draw \\u003Ca href=\\\"https://pkmncards.com/card/regirock-celestial-storm-ces-80/\\\" title=\\\"[F] Enhanced Stomp: 20+\\nIf this Pok\\u00e9mon has a Pok\\u00e9mon Tool card attached to it, this attack does 20 more damage.\\\"\\u003ERegirock\\u003C/a\\u003E, \\u003Ca href=\\\"https://pkmncards.com/card/muscle-band-xy-121/\\\" title=\\\"The attacks of the Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon (before applying Weakness and Resistance).\\\"\\u003EMuscle Band\\u003C/a\\u003E, \\u003Ca href=\\\"https://pkmncards.com/card/strong-energy-fates-collide-fco-115/\\\" title=\\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EStrong Energy\\u003C/a\\u003E and Rare Candy \\u003Ca href=\\\"https://pkmncards.com/card/machamp-furious-fists-ffi-46/\\\" title=\\\"Ability: Fighting Fury\\nEach of your [F] Pok\\u00e9mon\\u2019s attacks do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon .\\\"\\u003EFighting Fury Machamp\\u003C/a\\u003E on turn 2. 100 Damage for 1 energy! Might even be too good for cube.\\u0026quot; I try to avoid cards that do actual nothing if some previous setup isn\\u0026#39;t there. I want whatever I draw to be useful in some way. What makes Regirock good is that you only need \\u003Cem\\u003Eone\\u003C/em\\u003E of those pieces for it to be hitting above average numbers, but the more you have, the better it gets. One example of borderline do-nothings in my cube are the \\u003Ca href=\\\"https://pkmncards.com/card/ariados-celestial-storm-ces-6/\\\" title=\\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EReactive Poison\\u003C/a\\u003E attacks, since you really need access to status conditions for them to do anything. Fortunately, \\u003Ca href=\\\"https://pkmncards.com/card/victreebel-unbroken-bonds-unb-15/\\\" title=\\\"[G] Reactive Poison: 10+\\nThis attack does 60 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G][C][C] Gastro Acid: 90\\nThe Defending Pok\\u00e9mon has no Abilities until the end of your next turn.\\\"\\u003EVictreebel\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/ariados-celestial-storm-ces-6/\\\" title=\\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G] Spider Trap\\nYou may switch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. Your opponent\\u2019s Active Pok\\u00e9mon is now Asleep and Poisoned..\\\"\\u003EAriados\\u003C/a\\u003E have decent backup attacks making them somewhat more flexible if the setup isn\\u0026#39;t there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo what are the best types of cards to include to support the spice? What are the meat and potatoes?\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EAttack draw/search\\u003C/strong\\u003E: Standard games are usually too fast to waste your attack drawing cards, but with the slower pace of play in cube, attack based setup is very valuable. Cards like \\u003Ca href=\\\"https://pkmncards.com/card/alolan-vulpix-guardians-rising-gri-21/\\\" title=\\\"[-] Beacon\\nSearch your deck for up to 2 Pok\\u00e9mon, reveal them, and put them into your hand. Then, shuffle your deck.\\\"\\u003EAlolan Vulpix\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/dunsparce-celestial-storm-ces-110/\\\" title=\\\"[C] Strike and Run\\nSearch your deck for up to 3 Basic Pok\\u00e9mon and put them onto your Bench. Then, shuffle your deck. If you put any Pok\\u00e9mon onto your Bench in this way, you may switch this Pok\\u00e9mon with 1 of your Benched Pok\\u00e9mon.\\\"\\u003EDunsparce\\u003C/a\\u003E are pretty good for setting up your board but can be hard to reliably get out on the first turn and aren\\u0026#39;t that useful later on. \\u003Ca href=\\\"https://pkmncards.com/card/espeon-plasma-freeze-plf-48/\\\" title=\\\"[C] Psy Alert: 20\\nDraw cards until you have 6 cards in your hand.\\n[P] Shadow Ball\\nThis attack does 40 damage to 1 of your opponent\\u2019s Pok\\u00e9mon. Also apply Weakness and Resistance for Benched Pok\\u00e9mon.\\\"\\u003EEspeon\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/zoroark-black-white-blw-71/\\\" title=\\\"[D] Nasty Plot\\nSearch your deck for a card and put it into your hand. Shuffle your deck afterward.\\n[C][C] Foul Play\\nChoose 1 of the Defending Pok\\u00e9mon\\u2019s attacks and use it as this attack.\\\"\\u003EZoroark\\u003C/a\\u003E can dish out damage in addition to drawing cards, but are stage 1 and require some setup themselves before they are useful. My favorite kinds of cards are pokemon like \\u003Ca href=\\\"https://pkmncards.com/card/shaymin-shining-legends-slg-7/\\\" title=\\\"[G] Flippity Flap\\nShuffle your hand into your deck. Then, draw 6 cards.\\n[G][C] Rally Back: 30+\\nIf any of your Pok\\u00e9mon were Knocked Out by damage from an opponent\\u2019s attack during their last turn, this attack does 90 more damage.\\\"\\u003EShaymin\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/mimikyu-guardians-rising-gri-58/\\\" title=\\\"[C] Filch\\nDraw 2 cards.\\n[P][C] Copycat\\nIf your opponent\\u2019s Pok\\u00e9mon used an attack that isn\\u2019t a GX attack during their last turn, use it as this attack.\\\"\\u003EMimikyu\\u003C/a\\u003E. The efficient card draw helps with early game setup and mid-game dead draws while their situational attacks keep them relevant to the last prize. They may not be super flavorful additions to their respective archetypes, but they are crucial to a well functioning decks. When things aren\\u0026#39;t going as planned, you still need cards that get out there and do \\u003Cem\\u003Esomething\\u003C/em\\u003E to help move the game along. Basic attackers, single energy card draw, efficient damage; these pokemon are the glue that hold all fun stuff together.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?auto=webp\\u0026s=e600eb5ec36578972c9dcb042117f9d7e73eaf67\", \"width\": 700, \"height\": 990}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fbc3f54435181448357a2436160e1dfb3519b084\", \"width\": 108, \"height\": 152}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a5f63fcfa2a6c9d8c07906f31aa033efa31e74b8\", \"width\": 216, \"height\": 305}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cfed664ed03f019883ba79e3a787368deb119107\", \"width\": 320, \"height\": 452}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=32513d92d08fcbec7db49d5f29ef8e082ddf5716\", \"width\": 640, \"height\": 905}], \"variants\": {}, \"id\": \"fHDRdxaTIumi8RmF5w1gT1sw9aM-jH8wqoT5OXhhUUQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bskwuj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vandergus\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558725045.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**TL;DR I will make separate comments for each type of post below and users can volunteer and coordinate amongst yourselves as to who will make the posts to avoid duplicate posts on the same subject**\\n\\nHello fellow Formula 1.5 enthusiasts! We'd love to see some volunteers to make various race-weekend and other posts on a regular basis. There is a comprehensive list in this post but feel free to point out any others that you think should be a regular feature!\\n\\n**Regular threads for race weekends:**\\n\\n*For practice, qualifying and race / immediately post-racesessions, please join the threads on r/formula1*\\n\\n**We would like to ask for volunteers to make the following regular posts:**\\n\\n\\nPoll for DOTD\\n\\nRace report \\n\\nThe race report post will also act as a race-debrief thread (day or two after the race) - this will be more heavily moderated to remove memes, circlejerks and low effort comments.\\n\\n\\nPractice 1, 2 and 3 classification and timesheets (in the same style as official ones)\\n\\nQualifying classification and timesheets (in the same style as official ones)\\n\\nFinal race classification and timesheet (in the same style as official ones)\\n\\nPicture of podium finishers [example](https://twitter.com/F1/status/1127586568703754240?s=20)\\n\\nDOTD announcement [example](https://twitter.com/F1/status/1127587969437765632?s=20)\\n\\nFastest Lap announcement [example](https://twitter.com/F1/status/1127600146374635526?s=20)\\n\\nFastest pit stop announcement [example](https://twitter.com/F1/status/1127682358327402497?s=20)\\n\\nWDC standings after the race [example](https://twitter.com/F1/status/1127597818590519297?s=20)\\n\\nWCC standings after the race (similar style to above)\\n\\nOf course, other OC is always welcome, you may like to consider that you will likely get more visibility in r/formula1 at the moment as it is just a far bigger subreddit.\", \"author_fullname\": \"t2_6yp2341\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Formula 1.5 | Call for volunteers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsfs29\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558726259.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ETL;DR I will make separate comments for each type of post below and users can volunteer and coordinate amongst yourselves as to who will make the posts to avoid duplicate posts on the same subject\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello fellow Formula 1.5 enthusiasts! We\\u0026#39;d love to see some volunteers to make various race-weekend and other posts on a regular basis. There is a comprehensive list in this post but feel free to point out any others that you think should be a regular feature!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERegular threads for race weekends:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EFor practice, qualifying and race / immediately post-racesessions, please join the threads on \\u003Ca href=\\\"/r/formula1\\\"\\u003Er/formula1\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWe would like to ask for volunteers to make the following regular posts:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPoll for DOTD\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERace report \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe race report post will also act as a race-debrief thread (day or two after the race) - this will be more heavily moderated to remove memes, circlejerks and low effort comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPractice 1, 2 and 3 classification and timesheets (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQualifying classification and timesheets (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinal race classification and timesheet (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPicture of podium finishers \\u003Ca href=\\\"https://twitter.com/F1/status/1127586568703754240?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDOTD announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127587969437765632?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFastest Lap announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127600146374635526?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFastest pit stop announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127682358327402497?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWDC standings after the race \\u003Ca href=\\\"https://twitter.com/F1/status/1127597818590519297?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWCC standings after the race (similar style to above)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, other OC is always welcome, you may like to consider that you will likely get more visibility in \\u003Ca href=\\\"/r/formula1\\\"\\u003Er/formula1\\u003C/a\\u003E at the moment as it is just a far bigger subreddit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?auto=webp\\u0026s=531b435f194ee4f9748862ea1f91c2b67808c9f7\", \"width\": 1080, \"height\": 916}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d5452d83fbe31e607852fdcf1fde109bd7f3a4cc\", \"width\": 108, \"height\": 91}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=16e1e705a2cac15745660eedc341cd51707cf99c\", \"width\": 216, \"height\": 183}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=aa9d5874c0919292a0aca1ef10c92decc7a31d14\", \"width\": 320, \"height\": 271}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f9c5c8bf7d52b467b305e24ee5efcd517d3c171d\", \"width\": 640, \"height\": 542}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e1b62c400be0002c41001bf986fd3216bdc25147\", \"width\": 960, \"height\": 814}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=2f1df5035b62f8945614ca65e4c8656ca6760a0a\", \"width\": 1080, \"height\": 916}], \"variants\": {}, \"id\": \"MiHDcikgOe3mM0vjxRgbnrY-GqdMjGqvxB79Gt7ozgk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsfs29\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"elusive_username\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsfs29/formula_15_call_for_volunteers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsfs29/formula_15_call_for_volunteers/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558697459.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_e9a3z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"More test code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 110, \"hide_score\": false, \"name\": \"t3_bsdcgq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/o1Wz3EYwj9GW7Qr_bmSIsLld3Kz5O6AcX7oCXbFhvEY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558706660.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?auto=webp\\u0026s=c58d56e9df9af072d5a095e6817d45ee9c561df5\", \"width\": 328, \"height\": 258}, \"resolutions\": [{\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0973c520828e38195d066689c8fe9a8d2c35c77f\", \"width\": 108, \"height\": 84}, {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a7f5f8811cd4fd4214888c2037f3f8df8509f8eb\", \"width\": 216, \"height\": 169}, {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=53978780d7a0aebc1491cc0ac3acfb7d5e4b6c71\", \"width\": 320, \"height\": 251}], \"variants\": {}, \"id\": \"TZlQzMgacJjOUSE2BlGji8NTN8-C9hPqq8kMNAqpWso\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsdcgq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kyrieru\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsdcgq/more_test_code/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/su3ly0osl3031.png\", \"subreddit_subscribers\": 704, \"created_utc\": 1558677860.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"And example of this\\nhttps://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\", \"author_fullname\": \"t2_e9a3z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Code stuff\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsd8yc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558705892.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd example of this\\n\\u003Ca href=\\\"https://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\\\"\\u003Ehttps://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?auto=webp\\u0026s=5b993446d3d76df08f0c0371951333128f74c769\", \"width\": 328, \"height\": 258}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ea056c4c9fee2d83218d84b8aa6ed581e2eabf7c\", \"width\": 108, \"height\": 84}, {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=eecea5ccbbd73effaa403a85d0605bd8746c5752\", \"width\": 216, \"height\": 169}, {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=28f18ef2ebc9f593b6dff7e583b7ff1d0fdae743\", \"width\": 320, \"height\": 251}], \"variants\": {}, \"id\": \"0xh4SkoN-_7L19axx7iX9dkL1P45YCt3cq7ntix-vAA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsd8yc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kyrieru\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsd8yc/code_stuff/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsd8yc/code_stuff/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558677092.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"hula hula\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs5rrg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558661342.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs5rrg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs5rrg/hula_hula/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs5rrg/hula_hula/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558632542.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"my lil pony\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bs5jg4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Snail Mail: NPR Music Tiny Desk Concert\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"NPR Music\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/21ix1OwPoY8/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/nprmusic\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bs5jg4\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/NQre-JqAcR4bl9-yMXUx4RaT5Ub5-xLn2eE0he_B5rI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558660165.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?auto=webp\\u0026s=dd82178336835b0d9ade4b238edb5e9800334ae3\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=89e1bcb2c1784115389b14cc50ee747c908e766c\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=050bb5c4afcac9bd34deca76be313bc6b31e682e\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=44e665a96892d7afd4b824ebf0e674b6b9b81dc3\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"mhwh-bo9dmEuYO_PMyd1-wSh93Ge-4baH0jdQnIlCRU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs5jg4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs5jg4/my_lil_pony/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"http://www.youtube.com/watch?v=21ix1OwPoY8\", \"subreddit_subscribers\": 704, \"created_utc\": 1558631365.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Snail Mail: NPR Music Tiny Desk Concert\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"NPR Music\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/21ix1OwPoY8/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/nprmusic\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project **Chronicles of Osira**! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\n***\\n###Our Purpose \\u0026 Goals:\\n\\nOur vision is to be the most popular multiplayer survival RPG \\u0026 minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\n***\\n###Survival RPG World (Osira):\\n\\nIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\n***\\n###Main Features:\\n\\n######Terrain Regen Mod\\n\\nOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\n\\n######NPC Mod\\n\\nThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\n\\n######Kingdom System\\n\\nThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\n***\\n###Server Status: \\n\\n**Various Positions Open**! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\n***\\n###Social Media: \\n\\n* Twitter: [Twitter](https://twitter.com/OsiraChronicles)\\n* Discord: [Discord](https://discord.gg/rzfNq8p)\\n* SubReddit: Coming Soon\\n* Starter Website: Coming Soon (finishing up development)\\n* Youtube: Coming Soon\\n* Email: chroniclesofosira@gmail.com\", \"author_fullname\": \"t2_3tl8crp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs4e7x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558654467.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch4\\u003EHey everyone, we\\u2019re super excited today to publicly announce the development of our server project \\u003Cstrong\\u003EChronicles of Osira\\u003C/strong\\u003E! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\u003C/h4\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EOur Purpose \\u0026amp; Goals:\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EOur vision is to be the most popular multiplayer survival RPG \\u0026amp; minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003ESurvival RPG World (Osira):\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EMain Features:\\u003C/h3\\u003E\\n\\n\\u003Ch6\\u003ETerrain Regen Mod\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\u003C/p\\u003E\\n\\n\\u003Ch6\\u003ENPC Mod\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\u003C/p\\u003E\\n\\n\\u003Ch6\\u003EKingdom System\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EServer Status:\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EVarious Positions Open\\u003C/strong\\u003E! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003ESocial Media:\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ETwitter: \\u003Ca href=\\\"https://twitter.com/OsiraChronicles\\\"\\u003ETwitter\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDiscord: \\u003Ca href=\\\"https://discord.gg/rzfNq8p\\\"\\u003EDiscord\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESubReddit: Coming Soon\\u003C/li\\u003E\\n\\u003Cli\\u003EStarter Website: Coming Soon (finishing up development)\\u003C/li\\u003E\\n\\u003Cli\\u003EYoutube: Coming Soon\\u003C/li\\u003E\\n\\u003Cli\\u003EEmail: \\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?auto=webp\\u0026s=4175bc2acf207428f5a243476ba4485bd153bda3\", \"width\": 400, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8caf7c066e7a5bab8d9fe3a872adba0b01b74464\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f7a0a268911ad5c4f4709811f2f98acf4cab9411\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=72c8baed8a1f8b67b30b4cf626fa1514a1fb81f4\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"bTS-23LsPy3BUIV0fTZfuz80MZ1bVJqHdkOLkoUzRLY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs4e7x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OsiraDevTeam\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs4e7x/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs4e7x/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558625667.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project \\\\*\\\\*Chronicles of Osira\\\\*\\\\*! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Our Purpose \\u0026 Goals:\\n\\n\\u0026#x200B;\\n\\nOur vision is to be the most popular multiplayer survival RPG \\u0026 minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Survival RPG World (Osira):\\n\\n\\u0026#x200B;\\n\\nIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Main Features:\\n\\n\\u0026#x200B;\\n\\n\\\\######Terrain Regen Mod\\n\\n\\u0026#x200B;\\n\\nOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\n\\n\\u0026#x200B;\\n\\n\\\\######NPC Mod\\n\\n\\u0026#x200B;\\n\\nThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\n\\n\\u0026#x200B;\\n\\n\\\\######Kingdom System\\n\\n\\u0026#x200B;\\n\\nThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Server Status:\\n\\n\\u0026#x200B;\\n\\n**Various Positions Open**! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\n\\n\\\\*\\\\*\\\\*\\n\\n# ###Social Media:\\n\\nTwitter: \\\\[Twitter\\\\]([https://twitter.com/OsiraChronicles](https://twitter.com/OsiraChronicles))\\n\\nDiscord: \\\\[Discord\\\\]([https://discord.gg/rzfNq8p](https://discord.gg/rzfNq8p))\\n\\nSubReddit: Coming Soon\\n\\nStarter Website: Coming Soon (finishing up development)\\n\\nYoutube: Coming Soon\\n\\nEmail: [chroniclesofosira@gmail.com](mailto:chroniclesofosira@gmail.com)\", \"author_fullname\": \"t2_3tl8crp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"CoO\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs48eu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558625101.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558653631.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project **Chronicles of Osira**! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Our Purpose \\u0026amp; Goals:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur vision is to be the most popular multiplayer survival RPG \\u0026amp; minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Survival RPG World (Osira):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Main Features:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######Terrain Regen Mod\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######NPC Mod\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######Kingdom System\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Server Status:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EVarious Positions Open\\u003C/strong\\u003E! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E###Social Media:\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ETwitter: [Twitter](\\u003Ca href=\\\"https://twitter.com/OsiraChronicles\\\"\\u003Ehttps://twitter.com/OsiraChronicles\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDiscord: [Discord](\\u003Ca href=\\\"https://discord.gg/rzfNq8p\\\"\\u003Ehttps://discord.gg/rzfNq8p\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESubReddit: Coming Soon\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStarter Website: Coming Soon (finishing up development)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYoutube: Coming Soon\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmail: [\\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E](mailto:\\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?auto=webp\\u0026s=4175bc2acf207428f5a243476ba4485bd153bda3\", \"width\": 400, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8caf7c066e7a5bab8d9fe3a872adba0b01b74464\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f7a0a268911ad5c4f4709811f2f98acf4cab9411\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=72c8baed8a1f8b67b30b4cf626fa1514a1fb81f4\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"bTS-23LsPy3BUIV0fTZfuz80MZ1bVJqHdkOLkoUzRLY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs48eu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OsiraDevTeam\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs48eu/coo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs48eu/coo/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558624831.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"my testes\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testual\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs2x6p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558646741.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emy testes\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs2x6p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs2x6p/testual/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs2x6p/testual/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558617941.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Should I upgrade my subwoofer and if so, what subwoofers do you recommend? Also just got a new 77\\\" LG C8 OLED TV (pics.)\\n\\n[Layout \\u0026 Picture Album](https://imgur.com/a/GhlqXQo) \\n\\nI'm doing a complete home theater overhaul. I just upgraded to a LG C8 77\\\" OLED TV. Please excuse the mess - I have lots of boxes from new goodies for this. =D I'm upgrading to a Dolby Atmos 5.1.4 (5.2.4) surround sound system with ceiling mounted speakers. I just picked up a Denon AVR-X4400h. I'm planning on getting 4x [Boston Acoustics SoundWare](https://www.accessories4less.com/make-a-store/item/bossoundwareblka/boston-acoustics-soundware-4.5-speaker-atmos-dts-x-on-wall-speaker-black-each/1.html) ceiling mounted speakers. I still have acoustic room treatment to do and that's part of my whole budget too. I'm also considering upgrading my subwoofer. \\n\\nMy current 5.1 surround sound system (satellites temporarily removed for the TV install) is a [Jamo S 606 HCS 3 system.](https://www.jamo.com/products/s606hcs3) I also have one sealed [Jamo D 6 SUB.](https://www.jamo.com/products/d6sub)\\n\\nWould it be worthwhile to upgrade my subwoofer and get two subs? I notice a lot of bass loudness variability from each seating position due to standing waves in my current apartment and running two subwoofers will help mitigate it. Of course you need two matching subwoofers for this but my jamo is discontinued and can't find any more on eBay. \\n\\nThen my jamo really doesn't hit low enough frequencies these days for new movie content. Online the specs advertise down to 28 hz, but listening to test tones it seems like there is a lot of dropoff starting to occur at 35-40 hz. I'm really desiring a subwoofer that doesn't start to drop off until 20-16 hz. I definitely would like to feel the low bass more and feel infrasonic frequencies (say down to 10hz) in movies. Of course there may be realistic limits in an apartment as that may disrupt others vs say 35hz playback. \\n\\nI'm in an apartment. I generally listen at -10 db to -15 db below reference level and haven't gotten any complaints. The walls seem thick but I definitely don't want to go past reference level currently. I do plan on getting my own home in 5~ years so I do want to save some future capability to comfortably listen at reference level. I'm also really desiring quality bass delivery and not just high SPL.\\n\\n**Usage:** \\n80% Netflix streaming/bd movies/tv shows, 10% music, possibly 10% or more gaming when new consoles come out (I'm mostly a pc gamer). \\n\\n**Room Specs:** \\nSee above diagram. Inner wall dimensions are 18'x14' for the living room, 10.5' x 10.0' for my dining room, and 5.5' x 8.5' for the kitchen area. So total room size is roughly 3,600 ft ^ 3 counting dining area/kitchen. Distance to main listening position is roughly 9' to my ears (8' 6\\\" to tv). \\n\\n**Budget:** \\nI'm pretty flexible as I want the best experience. I don't mind spending a bit for future headroom for when I don't have shared walls, but I don't want to drastically overspend. My hard limit is $2.5k/subwoofer (so $5k for dual subs.) I'm really leaning more towards the $1k sub price point. \\n\\n**Requirements:** \\n \\n* Dual subwoofer setup. \\n* Needs to hit max loudness THX reference SPL level playback at a 9' main listening position for all frequencies above 20hz, allowing for room gain to contribute to it (and ideally down to 16 hz). (So hitting 115dB peaks.) This is for two subwoofers in use. That will be enough future proofing for my situation.\\n* No more than $4k - $5k total for two subs. \\n* Ideally less than $2k ($1k per sub) for the subs if possible. \\n* Very flat frequency response.\\n* A great listening experience. \\n* Accurate and precise bass - not boomy.\\n* I care greatly about quality over raw loudness - as long as it can hit reference levels. \\n* No homebuilt. I don't have the time, skills, room, or equipment to build my own sub. \\n\\n**Bonuses:**\\n\\n* Great infrasonic experience.\\n* Able to be picked up by one person (under 100 lbs.)\\n* Calibration options that my receiver may not be able to support.\\n\\n**Subs I've looked at:** \\nSVS SB-2000 / PB-2000 \\nSVS SB-3000 / PB-3000 \\nSVS SB-4000 / PB-4000 \\nSVS SB16-Ultra / PB16-Ultra \\nHSU VTF-15H MK2 \\n\\n**Things I'm still trying to decide:** \\nSealed vs ported subs. It's really hard for me to decide this. I know SVS's tune frequencies are very low. I like that SVS's response curve seems to be much flatter for their ported subs above the tune frequency and also seems to have more power than the sealed subwoofers. But then below the tune frequency I think I really like the roll-off graph of their sealed subwoofers more when say hitting 10hz, as it appears pretty flat when you account for room gain. Then since I'm running two subwoofers that will add some gain.\\n\\n**Things I've ruled out:** \\nThe SVS SB-1000/PB-1000 - I don't think it will be able to hit reference level movie bass at a 9' listening position. I'm sure it's a great sub but it seems a bit under-powered to what I have according to CEA 2010 test results. \\n\\nI'm leaning towards at least the SB-3000 (or ported version) as it seems to have newer drivers/tech than the SB-2000. It also doesn't seem ungodly heavy unlike the higher end subwoofers. I'm also likewise leaning towards the sealed sub for greater infrasonic extension but that's not firm at all. I'm concerned that the sealed SVS SB-4000 doesn't hit near 115 db in CEA 2010 testing until 40hz, while the ported version gets near there at 20hz. Running with one port open (extended mode) seems to be the best of both worlds - lower sealed like extension and flatter ported like curve. Is that truly the case?\\n\\n**Questions:** \\n \\n* If I get a SVS ported sub and plug up all three ports is it very close to the sealed version? Or is there a huge difference between the dedicated sealed version? \\n* Ported or sealed subwoofer?\\n* If ported, how many ports open?\\n* What is the cheapest subwoofer that meets my SPL requirements and is at least equal to quality as the SVS subs? \\n* Is the DSP calibration tools SVS provides just a marketing gimick? Can my Denon AVR-X4400H EQ the subs just fine? Or is that sort of feature worthwhile? \\n* What crossover should I set with two of these subwoofers? Go past 80hz and into 100-200 hz? \\n* What other subwoofers should I seriously consider?\\n* Should I consider revisiting my towers/surrounds or are they still really good? They sound great to me and I have no complaints, but then I don't know if I'm missing out on improvements here. \\n\\nThanks!\", \"author_fullname\": \"t2_kz0h4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs053g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558657807.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558626664.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShould I upgrade my subwoofer and if so, what subwoofers do you recommend? Also just got a new 77\\u0026quot; LG C8 OLED TV (pics.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/GhlqXQo\\\"\\u003ELayout \\u0026amp; Picture Album\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m doing a complete home theater overhaul. I just upgraded to a LG C8 77\\u0026quot; OLED TV. Please excuse the mess - I have lots of boxes from new goodies for this. =D I\\u0026#39;m upgrading to a Dolby Atmos 5.1.4 (5.2.4) surround sound system with ceiling mounted speakers. I just picked up a Denon AVR-X4400h. I\\u0026#39;m planning on getting 4x \\u003Ca href=\\\"https://www.accessories4less.com/make-a-store/item/bossoundwareblka/boston-acoustics-soundware-4.5-speaker-atmos-dts-x-on-wall-speaker-black-each/1.html\\\"\\u003EBoston Acoustics SoundWare\\u003C/a\\u003E ceiling mounted speakers. I still have acoustic room treatment to do and that\\u0026#39;s part of my whole budget too. I\\u0026#39;m also considering upgrading my subwoofer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current 5.1 surround sound system (satellites temporarily removed for the TV install) is a \\u003Ca href=\\\"https://www.jamo.com/products/s606hcs3\\\"\\u003EJamo S 606 HCS 3 system.\\u003C/a\\u003E I also have one sealed \\u003Ca href=\\\"https://www.jamo.com/products/d6sub\\\"\\u003EJamo D 6 SUB.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWould it be worthwhile to upgrade my subwoofer and get two subs? I notice a lot of bass loudness variability from each seating position due to standing waves in my current apartment and running two subwoofers will help mitigate it. Of course you need two matching subwoofers for this but my jamo is discontinued and can\\u0026#39;t find any more on eBay. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen my jamo really doesn\\u0026#39;t hit low enough frequencies these days for new movie content. Online the specs advertise down to 28 hz, but listening to test tones it seems like there is a lot of dropoff starting to occur at 35-40 hz. I\\u0026#39;m really desiring a subwoofer that doesn\\u0026#39;t start to drop off until 20-16 hz. I definitely would like to feel the low bass more and feel infrasonic frequencies (say down to 10hz) in movies. Of course there may be realistic limits in an apartment as that may disrupt others vs say 35hz playback. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m in an apartment. I generally listen at -10 db to -15 db below reference level and haven\\u0026#39;t gotten any complaints. The walls seem thick but I definitely don\\u0026#39;t want to go past reference level currently. I do plan on getting my own home in 5~ years so I do want to save some future capability to comfortably listen at reference level. I\\u0026#39;m also really desiring quality bass delivery and not just high SPL.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUsage:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\n80% Netflix streaming/bd movies/tv shows, 10% music, possibly 10% or more gaming when new consoles come out (I\\u0026#39;m mostly a pc gamer). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERoom Specs:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSee above diagram. Inner wall dimensions are 18\\u0026#39;x14\\u0026#39; for the living room, 10.5\\u0026#39; x 10.0\\u0026#39; for my dining room, and 5.5\\u0026#39; x 8.5\\u0026#39; for the kitchen area. So total room size is roughly 3,600 ft ^ 3 counting dining area/kitchen. Distance to main listening position is roughly 9\\u0026#39; to my ears (8\\u0026#39; 6\\u0026quot; to tv). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBudget:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nI\\u0026#39;m pretty flexible as I want the best experience. I don\\u0026#39;t mind spending a bit for future headroom for when I don\\u0026#39;t have shared walls, but I don\\u0026#39;t want to drastically overspend. My hard limit is $2.5k/subwoofer (so $5k for dual subs.) I\\u0026#39;m really leaning more towards the $1k sub price point. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERequirements:\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDual subwoofer setup.\\u003Cbr/\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENeeds to hit max loudness THX reference SPL level playback at a 9\\u0026#39; main listening position for all frequencies above 20hz, allowing for room gain to contribute to it (and ideally down to 16 hz). (So hitting 115dB peaks.) This is for two subwoofers in use. That will be enough future proofing for my situation.\\u003C/li\\u003E\\n\\u003Cli\\u003ENo more than $4k - $5k total for two subs. \\u003C/li\\u003E\\n\\u003Cli\\u003EIdeally less than $2k ($1k per sub) for the subs if possible. \\u003C/li\\u003E\\n\\u003Cli\\u003EVery flat frequency response.\\u003C/li\\u003E\\n\\u003Cli\\u003EA great listening experience. \\u003C/li\\u003E\\n\\u003Cli\\u003EAccurate and precise bass - not boomy.\\u003C/li\\u003E\\n\\u003Cli\\u003EI care greatly about quality over raw loudness - as long as it can hit reference levels. \\u003C/li\\u003E\\n\\u003Cli\\u003ENo homebuilt. I don\\u0026#39;t have the time, skills, room, or equipment to build my own sub. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBonuses:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EGreat infrasonic experience.\\u003C/li\\u003E\\n\\u003Cli\\u003EAble to be picked up by one person (under 100 lbs.)\\u003C/li\\u003E\\n\\u003Cli\\u003ECalibration options that my receiver may not be able to support.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESubs I\\u0026#39;ve looked at:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSVS SB-2000 / PB-2000\\u003Cbr/\\u003E\\nSVS SB-3000 / PB-3000\\u003Cbr/\\u003E\\nSVS SB-4000 / PB-4000\\u003Cbr/\\u003E\\nSVS SB16-Ultra / PB16-Ultra\\u003Cbr/\\u003E\\nHSU VTF-15H MK2 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThings I\\u0026#39;m still trying to decide:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSealed vs ported subs. It\\u0026#39;s really hard for me to decide this. I know SVS\\u0026#39;s tune frequencies are very low. I like that SVS\\u0026#39;s response curve seems to be much flatter for their ported subs above the tune frequency and also seems to have more power than the sealed subwoofers. But then below the tune frequency I think I really like the roll-off graph of their sealed subwoofers more when say hitting 10hz, as it appears pretty flat when you account for room gain. Then since I\\u0026#39;m running two subwoofers that will add some gain.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThings I\\u0026#39;ve ruled out:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nThe SVS SB-1000/PB-1000 - I don\\u0026#39;t think it will be able to hit reference level movie bass at a 9\\u0026#39; listening position. I\\u0026#39;m sure it\\u0026#39;s a great sub but it seems a bit under-powered to what I have according to CEA 2010 test results. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m leaning towards at least the SB-3000 (or ported version) as it seems to have newer drivers/tech than the SB-2000. It also doesn\\u0026#39;t seem ungodly heavy unlike the higher end subwoofers. I\\u0026#39;m also likewise leaning towards the sealed sub for greater infrasonic extension but that\\u0026#39;s not firm at all. I\\u0026#39;m concerned that the sealed SVS SB-4000 doesn\\u0026#39;t hit near 115 db in CEA 2010 testing until 40hz, while the ported version gets near there at 20hz. Running with one port open (extended mode) seems to be the best of both worlds - lower sealed like extension and flatter ported like curve. Is that truly the case?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuestions:\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf I get a SVS ported sub and plug up all three ports is it very close to the sealed version? Or is there a huge difference between the dedicated sealed version? \\u003C/li\\u003E\\n\\u003Cli\\u003EPorted or sealed subwoofer?\\u003C/li\\u003E\\n\\u003Cli\\u003EIf ported, how many ports open?\\u003C/li\\u003E\\n\\u003Cli\\u003EWhat is the cheapest subwoofer that meets my SPL requirements and is at least equal to quality as the SVS subs? \\u003C/li\\u003E\\n\\u003Cli\\u003EIs the DSP calibration tools SVS provides just a marketing gimick? Can my Denon AVR-X4400H EQ the subs just fine? Or is that sort of feature worthwhile? \\u003C/li\\u003E\\n\\u003Cli\\u003EWhat crossover should I set with two of these subwoofers? Go past 80hz and into 100-200 hz? \\u003C/li\\u003E\\n\\u003Cli\\u003EWhat other subwoofers should I seriously consider?\\u003C/li\\u003E\\n\\u003Cli\\u003EShould I consider revisiting my towers/surrounds or are they still really good? They sound great to me and I have no complaints, but then I don\\u0026#39;t know if I\\u0026#39;m missing out on improvements here. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?auto=webp\\u0026s=59339d4b2ebfbe18b61c9a86e365f8321531d124\", \"width\": 657, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c18fe46880e5ca72d70aecab4f79a4f265755b32\", \"width\": 108, \"height\": 197}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=eb476b372546cf2d51c8d9f6f6b3181ea39b4c69\", \"width\": 216, \"height\": 394}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=628e28ecbb59a23550dade2a9b91fed61c296c81\", \"width\": 320, \"height\": 584}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d2a0c12ad208ef2add9bca3b8ec39909bf6404e5\", \"width\": 640, \"height\": 1168}], \"variants\": {}, \"id\": \"g_mPvQ05DaozAfugMZjnsIvHh9OD3XMO1-AgGxxaLwQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs053g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"IncendiaryGames\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs053g/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558597864.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Ru Paul's Drag Race Episode ???\\n\\n(Queens entering the Werkroom holding hands and laughing together)\\n\\n\\\"Yeah I hate all these bitches and I'm here to win!\\\"\\n\\n\\u003EEditors use a shot of said queen hugging everyone. Everyone gathers around the table\\n\\n\\\"So who you think the challenge is going to be?\\n\\n\\u003ENeedless drama happens. Everyone bickers. \\n\\u003ERu enters\\n\\n\\\"AAHHHHHH!\\\"\\n\\nRu: \\\"Your next challenge is gonna be (insert Ru's favorite activity) which is a tribute of (Whatever Ru is really interested in) All set to (Whatever new track Ru is selling on I-Tunes)\\n\\n\\u003EQueens show polite interest\\n\\nRu:\\\"Tonight's runway is judged by (insert name of celebrity/media person that you kinda like but don't super love)\\n\\nQueens: \\\"AHHHHHH!\\\"\\n\\n\\u003EInterview Segment\\n\\n\\\"OMG I am the biggest fan of (insert name of celebrity/media person that you kinda like but don't super love)! They are my idol! I can't fuck this up.\\n\\n\\u003ERu walks the Werkroom and gives Boomer tier advice like \\\"Be yourself\\\", \\\"Make it funny\\\" and something about your inner sabatoor.\\n\\n\\u003ERehearsal segment that plays similar to everyone. Be mindful of the Queen that looks really bad as they usually will win or do better than the edit makes them appear to be. \\n\\u003EChallenge starts\\n\\n\\u003EQueen says joke that you are unsure if it is good or bad until you see the camera pan, in silence, the sound of a woodblock being struck and another queen going \\\"Say what?!\\\"\\n\\n\\u003ERu walks out wearing one of her five prepackaged looks.\\n\\u003ERunway segment\\n\\u003EUnsure of what the judges think as everyone is making dad jokes \\n\\u003ERu picks the bottom two queens\\n\\nQueen A: \\\"I can't go home now, Queen B is fierce but I have so much to show. I gotta turn it out!\\\"\\n\\nQueen B: I have so much to show, I can't go home now. Queen A is fierce and I gotta turn it out!\\\"\\n\\n\\u003EQuestionable lipsynch that reddit will debate who won endlessly\\n\\u003EWinner is chosen\\n\\u003EOther queen goes home, its sad. They later write a message on the mirror where they pour their heart out only for it to be read once and instantly wiped away.\\n\\nTO TO TO DA MOON!\", \"author_fullname\": \"t2_mic9d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brvh14\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558594377.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERu Paul\\u0026#39;s Drag Race Episode ???\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Queens entering the Werkroom holding hands and laughing together)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;Yeah I hate all these bitches and I\\u0026#39;m here to win!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EEditors use a shot of said queen hugging everyone. Everyone gathers around the table\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;So who you think the challenge is going to be?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENeedless drama happens. Everyone bickers. \\nRu enters\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;AAHHHHHH!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERu: \\u0026quot;Your next challenge is gonna be (insert Ru\\u0026#39;s favorite activity) which is a tribute of (Whatever Ru is really interested in) All set to (Whatever new track Ru is selling on I-Tunes)\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EQueens show polite interest\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ERu:\\u0026quot;Tonight\\u0026#39;s runway is judged by (insert name of celebrity/media person that you kinda like but don\\u0026#39;t super love)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQueens: \\u0026quot;AHHHHHH!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EInterview Segment\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;OMG I am the biggest fan of (insert name of celebrity/media person that you kinda like but don\\u0026#39;t super love)! They are my idol! I can\\u0026#39;t fuck this up.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERu walks the Werkroom and gives Boomer tier advice like \\u0026quot;Be yourself\\u0026quot;, \\u0026quot;Make it funny\\u0026quot; and something about your inner sabatoor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERehearsal segment that plays similar to everyone. Be mindful of the Queen that looks really bad as they usually will win or do better than the edit makes them appear to be. \\nChallenge starts\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQueen says joke that you are unsure if it is good or bad until you see the camera pan, in silence, the sound of a woodblock being struck and another queen going \\u0026quot;Say what?!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERu walks out wearing one of her five prepackaged looks.\\nRunway segment\\nUnsure of what the judges think as everyone is making dad jokes \\nRu picks the bottom two queens\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EQueen A: \\u0026quot;I can\\u0026#39;t go home now, Queen B is fierce but I have so much to show. I gotta turn it out!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQueen B: I have so much to show, I can\\u0026#39;t go home now. Queen A is fierce and I gotta turn it out!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EQuestionable lipsynch that reddit will debate who won endlessly\\nWinner is chosen\\nOther queen goes home, its sad. They later write a message on the mirror where they pour their heart out only for it to be read once and instantly wiped away.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETO TO TO DA MOON!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brvh14\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bearality\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brvh14/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brvh14/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558565577.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"***War of the Monsters*** *(2028)*\\n\\n*Setting: Various places, 1963*\\n\\nIn our final story, we rejoin **Eve**, **Lester Talbot**, and **Jacob Van Helsing** twenty-five years after we first met them.\\n\\nThe year is 1963. At home, America is still reeling from the horror of **President John F. Kennedy**'s assassination, which has provoked a fresh wave of social unrest as rumors spread of international conspiracies. Abroad, the Cold War with the Soviet Union rages on as American soldiers in South Vietnam brace for a looming skirmish with Communist forces. After more than two decades of adventure, Eve\\u2014who doesn't age\\u2014is still just as youthful as she was in 1938, but Lester and Jacob are both showing their age, and both men are contemplating retirement. As the 20th century rolls forward, monsters are becoming progressively rare, to the point that Eve and Lester wonder if they're the last of a dying breed. And while an aging Jacob still feels an obligation to uphold the legacy of his grandfather **Abraham Van Helsing**, he knows that there is no need for monster hunters in a world without monsters.\\n\\nBut after twenty-five years of searching, the trio *still* haven't been able to find **Dr. Hans Niemann**. And although the years have been hard on Jacob and Lester, they know that they won't be able to rest until they finally bring the sinister ex-Nazi to justice.\\n\\nBut all of that changes when they stumble upon a stolen KGB dossier.\\n\\nWhile trying to bust a voodoo cult in New Orleans, Eve accidentally comes into possession of a dossier that one of their members stole from a KGB spy hiding out in America. The file contains detailed information about the activities of **Directorate M**, a secret KGB task force that was assembled in the 1940s to research and weaponize vampire DNA. As she learns, the leader of the group was determined to track down a certain vampire living in a remote village in Romania, believing that his bloodline held special powers. But when Jacob and Lester read over the dossier with her, they soon learn that the Romanian vampire (a man called \\\"**Vladislav**\\\", or just \\\"**Vlad**\\\") was believed to be the biological son of **Dracula** himself! Not only that, Vladislav has been missing since 1948, when he escaped from Directorate M's headquarters in Moscow and fled Russia. And while the KGB never found him, they believe that he fled across the Atlantic sometime in the 1950s.\\n\\nThe son of Dracula is still alive, and he may be hiding in America! As soon as Jacob realizes this, he knows that he has to find Vlad and kill him, since it's the only way to finish what his grandfather started. Armed with a grainy photo of Vlad contained in the dossier, Jacob begins pressing his contacts in the underworld for information about the fugitive vampire. But unbeknownst to him, he and Vlad have a common enemy: Hans Niemann.\\n\\nFifteen years ago, Niemann murdered Vlad's mother **Marieta** after ordering the Red Army to raze his village tp the ground. On that horrible day, the doctor narrowly slipped through Vlad's fingers when he tried to take his revenge, and defected to the United States shortly thereafter. Ever since, Vlad has been determined to track him down and hold him accountable for his crimes\\u2014but Niemann is still elusive as ever. So for fifteen long years, Vlad has lived underground in America, making odd money as a freelance spy and mercenary as he searches for clues on the Niemann's whereabouts.\\n\\nWhen our story begins, Vlad is living a quiet life in Miami under a long succession of aliases, like \\\"**Victor Whitby**\\\", \\\"**Michael Alucard**\\\", and \\\"**Vladislav Sear\\u0103**\\\". There, as he walks into a seaside bar for a clandestine meeting with the Jamaican-born sailor **Oliver \\\"Twisty\\\" O'Rear**, he finally stumbles upon a clue that might lead him to Niemann. It seems that Twisty is the sole survivor of a submarine voyage to the deep Pacific ocean, where Niemann captained his vessel. While he hasn't seen Niemann since that fateful voyage, he has long suspected that the doctor's mind was affected by an encounter with a **psychic alien being** near the Marianas Trench. Since that day, he has heard rumors that the doctor has gone rogue and fled to the Caribbean, and he believes that he may be planning a new experiment.\\n\\nThough nobody knows *exactly* where Niemann has fled, Twisty tells Vlad that one of his recent voyages in the Caribbean took him near an infamous island known as \\\"**Isla de los Perdidos**\\\", or \\\"**The Isle of the Lost**\\\". While passing by Isla de los Perdidos, the entire crew suffered from a series of strange visions and bizarre nightmares, which left them so shaken that they vowed never to return to the island again. But while the rest of the crew dismissed the experience as merely the result of \\\"bad vibes\\\", Twisty recognized it for what it truly was. He experienced similar nightmares and visions during his ill-fated voyage with the crew of the *Ammonite*, where he and Niemann had their minds psychically invaded by **the Creature**. Further, he remembers that Niemann managed to force his way into the Creature's downed spacecraft\\u2014which was packed with alien embryos. Though it's only a hunch, he believes that Niemann might be hiding on Isla de los Perdidos, and he may have found some way to harness the Creature's psychic abilities.\\n\\nBut as Vlad tries to leave the bar, he's ambushed by a small gang of armed men dressed in civilian clothes, who pull him into an unmarked van and drive him away. Unbeknownst to the armed men, Jacob is watching them from a nearby street corner, with Eve and Lester by his side. Furious at seeing their target captured by someone else, they resolve to track down the van.\\n\\nInside the unmarked van, Vlad learns that his assailants are undercover CIA operatives. It seems that the CIA has *also* learned about the mysterious Directorate M, and they recognize Vlad as a high-priority KGB target who escaped from Moscow Centre fifteen years previously. Suspecting him of being a Soviet agent, they plan to take him back to their nearest base to interrogate him. Vlad futilely protests that it's all a misunderstanding, and the KGB are his enemies\\u2014but the agents refuse to listen.\\n\\nSuddenly, the van is driven off the road as Lester\\u2014assuming his lupine form\\u2014charges the vehicle from the side and manages to flip it over. As Vlad struggles with the agents in the back seat, Eve takes aim with a crossbow and dispatches the agent in the driver's seat, but she loses track of Vlad as he leaps from the van and runs into the distance. But as Vlad attempts to flee the scene, he runs right into Jacob.\\n\\nA tense standoff ensues as Vlad and Jacob\\u2014the son of Dracula and the grandson of Abraham Van Helsing\\u2014stare each other down, and Jacob draws his gun. Despite Jacob's advancing age, Vlad recognizes him as a professional monster hunter, and he knows that he's been trained to kill vampires. \\n\\n\\\"*Shoot me if you can, old man,\\\"* Vlad snarls. *\\\"But I promise you, I've only got a quarrel with one mortal man:* ***Hans Niemann****.\\\"*\\n\\nAs \\n______________\\n\\n***The Case:*** In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\\"The Gemini Killer\\\" to justice. In a twist, it's revealed that Hank's full name is \\\"Henry Jekyll\\\", and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium's secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\n\\n***The Creature:*** Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they're aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they're slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures' drowned spaceship to kill the monster, and manages to steal one of the monster's embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\\n\\n***War of the Monsters:*** In 1963, Vlad's search for ex-Nazi scientist Dr. Hans Niemann leads him to cross paths with Eve, who is still traveling the world with an aging Jacob Van Helsing and Lester Talbot. As Vlad, Eve, Jacob and Lester unite to finally bring Niemann to justice, they discover Niemann's plot to use a psychic alien's brain to unleash nuclear armageddon with the help of an army of vampires, werewolves and ichthyoids. As they journey to the Caribbean for a final showdown with Niemann on his island base, Jacob and Lester ultimately sacrifice their lives to stop the doctor's plot, but Eve and Vlad defeat him together. In the end, Eve and Vlad become lovers, and they settle down together in a remote Caribbean island to enjoy a peaceful retirement.\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brusoo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558590802.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EWar of the Monsters\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003E(2028)\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESetting: Various places, 1963\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our final story, we rejoin \\u003Cstrong\\u003EEve\\u003C/strong\\u003E, \\u003Cstrong\\u003ELester Talbot\\u003C/strong\\u003E, and \\u003Cstrong\\u003EJacob Van Helsing\\u003C/strong\\u003E twenty-five years after we first met them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe year is 1963. At home, America is still reeling from the horror of \\u003Cstrong\\u003EPresident John F. Kennedy\\u003C/strong\\u003E\\u0026#39;s assassination, which has provoked a fresh wave of social unrest as rumors spread of international conspiracies. Abroad, the Cold War with the Soviet Union rages on as American soldiers in South Vietnam brace for a looming skirmish with Communist forces. After more than two decades of adventure, Eve\\u2014who doesn\\u0026#39;t age\\u2014is still just as youthful as she was in 1938, but Lester and Jacob are both showing their age, and both men are contemplating retirement. As the 20th century rolls forward, monsters are becoming progressively rare, to the point that Eve and Lester wonder if they\\u0026#39;re the last of a dying breed. And while an aging Jacob still feels an obligation to uphold the legacy of his grandfather \\u003Cstrong\\u003EAbraham Van Helsing\\u003C/strong\\u003E, he knows that there is no need for monster hunters in a world without monsters.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut after twenty-five years of searching, the trio \\u003Cem\\u003Estill\\u003C/em\\u003E haven\\u0026#39;t been able to find \\u003Cstrong\\u003EDr. Hans Niemann\\u003C/strong\\u003E. And although the years have been hard on Jacob and Lester, they know that they won\\u0026#39;t be able to rest until they finally bring the sinister ex-Nazi to justice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut all of that changes when they stumble upon a stolen KGB dossier.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile trying to bust a voodoo cult in New Orleans, Eve accidentally comes into possession of a dossier that one of their members stole from a KGB spy hiding out in America. The file contains detailed information about the activities of \\u003Cstrong\\u003EDirectorate M\\u003C/strong\\u003E, a secret KGB task force that was assembled in the 1940s to research and weaponize vampire DNA. As she learns, the leader of the group was determined to track down a certain vampire living in a remote village in Romania, believing that his bloodline held special powers. But when Jacob and Lester read over the dossier with her, they soon learn that the Romanian vampire (a man called \\u0026quot;\\u003Cstrong\\u003EVladislav\\u003C/strong\\u003E\\u0026quot;, or just \\u0026quot;\\u003Cstrong\\u003EVlad\\u003C/strong\\u003E\\u0026quot;) was believed to be the biological son of \\u003Cstrong\\u003EDracula\\u003C/strong\\u003E himself! Not only that, Vladislav has been missing since 1948, when he escaped from Directorate M\\u0026#39;s headquarters in Moscow and fled Russia. And while the KGB never found him, they believe that he fled across the Atlantic sometime in the 1950s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe son of Dracula is still alive, and he may be hiding in America! As soon as Jacob realizes this, he knows that he has to find Vlad and kill him, since it\\u0026#39;s the only way to finish what his grandfather started. Armed with a grainy photo of Vlad contained in the dossier, Jacob begins pressing his contacts in the underworld for information about the fugitive vampire. But unbeknownst to him, he and Vlad have a common enemy: Hans Niemann.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFifteen years ago, Niemann murdered Vlad\\u0026#39;s mother \\u003Cstrong\\u003EMarieta\\u003C/strong\\u003E after ordering the Red Army to raze his village tp the ground. On that horrible day, the doctor narrowly slipped through Vlad\\u0026#39;s fingers when he tried to take his revenge, and defected to the United States shortly thereafter. Ever since, Vlad has been determined to track him down and hold him accountable for his crimes\\u2014but Niemann is still elusive as ever. So for fifteen long years, Vlad has lived underground in America, making odd money as a freelance spy and mercenary as he searches for clues on the Niemann\\u0026#39;s whereabouts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen our story begins, Vlad is living a quiet life in Miami under a long succession of aliases, like \\u0026quot;\\u003Cstrong\\u003EVictor Whitby\\u003C/strong\\u003E\\u0026quot;, \\u0026quot;\\u003Cstrong\\u003EMichael Alucard\\u003C/strong\\u003E\\u0026quot;, and \\u0026quot;\\u003Cstrong\\u003EVladislav Sear\\u0103\\u003C/strong\\u003E\\u0026quot;. There, as he walks into a seaside bar for a clandestine meeting with the Jamaican-born sailor \\u003Cstrong\\u003EOliver \\u0026quot;Twisty\\u0026quot; O\\u0026#39;Rear\\u003C/strong\\u003E, he finally stumbles upon a clue that might lead him to Niemann. It seems that Twisty is the sole survivor of a submarine voyage to the deep Pacific ocean, where Niemann captained his vessel. While he hasn\\u0026#39;t seen Niemann since that fateful voyage, he has long suspected that the doctor\\u0026#39;s mind was affected by an encounter with a \\u003Cstrong\\u003Epsychic alien being\\u003C/strong\\u003E near the Marianas Trench. Since that day, he has heard rumors that the doctor has gone rogue and fled to the Caribbean, and he believes that he may be planning a new experiment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThough nobody knows \\u003Cem\\u003Eexactly\\u003C/em\\u003E where Niemann has fled, Twisty tells Vlad that one of his recent voyages in the Caribbean took him near an infamous island known as \\u0026quot;\\u003Cstrong\\u003EIsla de los Perdidos\\u003C/strong\\u003E\\u0026quot;, or \\u0026quot;\\u003Cstrong\\u003EThe Isle of the Lost\\u003C/strong\\u003E\\u0026quot;. While passing by Isla de los Perdidos, the entire crew suffered from a series of strange visions and bizarre nightmares, which left them so shaken that they vowed never to return to the island again. But while the rest of the crew dismissed the experience as merely the result of \\u0026quot;bad vibes\\u0026quot;, Twisty recognized it for what it truly was. He experienced similar nightmares and visions during his ill-fated voyage with the crew of the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E, where he and Niemann had their minds psychically invaded by \\u003Cstrong\\u003Ethe Creature\\u003C/strong\\u003E. Further, he remembers that Niemann managed to force his way into the Creature\\u0026#39;s downed spacecraft\\u2014which was packed with alien embryos. Though it\\u0026#39;s only a hunch, he believes that Niemann might be hiding on Isla de los Perdidos, and he may have found some way to harness the Creature\\u0026#39;s psychic abilities.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut as Vlad tries to leave the bar, he\\u0026#39;s ambushed by a small gang of armed men dressed in civilian clothes, who pull him into an unmarked van and drive him away. Unbeknownst to the armed men, Jacob is watching them from a nearby street corner, with Eve and Lester by his side. Furious at seeing their target captured by someone else, they resolve to track down the van.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInside the unmarked van, Vlad learns that his assailants are undercover CIA operatives. It seems that the CIA has \\u003Cem\\u003Ealso\\u003C/em\\u003E learned about the mysterious Directorate M, and they recognize Vlad as a high-priority KGB target who escaped from Moscow Centre fifteen years previously. Suspecting him of being a Soviet agent, they plan to take him back to their nearest base to interrogate him. Vlad futilely protests that it\\u0026#39;s all a misunderstanding, and the KGB are his enemies\\u2014but the agents refuse to listen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESuddenly, the van is driven off the road as Lester\\u2014assuming his lupine form\\u2014charges the vehicle from the side and manages to flip it over. As Vlad struggles with the agents in the back seat, Eve takes aim with a crossbow and dispatches the agent in the driver\\u0026#39;s seat, but she loses track of Vlad as he leaps from the van and runs into the distance. But as Vlad attempts to flee the scene, he runs right into Jacob.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA tense standoff ensues as Vlad and Jacob\\u2014the son of Dracula and the grandson of Abraham Van Helsing\\u2014stare each other down, and Jacob draws his gun. Despite Jacob\\u0026#39;s advancing age, Vlad recognizes him as a professional monster hunter, and he knows that he\\u0026#39;s been trained to kill vampires. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Cem\\u003EShoot me if you can, old man,\\u0026quot;\\u003C/em\\u003E Vlad snarls. \\u003Cem\\u003E\\u0026quot;But I promise you, I\\u0026#39;ve only got a quarrel with one mortal man:\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EHans Niemann\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs \\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Case:\\u003C/em\\u003E\\u003C/strong\\u003E In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\u0026quot;The Gemini Killer\\u0026quot; to justice. In a twist, it\\u0026#39;s revealed that Hank\\u0026#39;s full name is \\u0026quot;Henry Jekyll\\u0026quot;, and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium\\u0026#39;s secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Creature:\\u003C/em\\u003E\\u003C/strong\\u003E Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they\\u0026#39;re aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they\\u0026#39;re slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures\\u0026#39; drowned spaceship to kill the monster, and manages to steal one of the monster\\u0026#39;s embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EWar of the Monsters:\\u003C/em\\u003E\\u003C/strong\\u003E In 1963, Vlad\\u0026#39;s search for ex-Nazi scientist Dr. Hans Niemann leads him to cross paths with Eve, who is still traveling the world with an aging Jacob Van Helsing and Lester Talbot. As Vlad, Eve, Jacob and Lester unite to finally bring Niemann to justice, they discover Niemann\\u0026#39;s plot to use a psychic alien\\u0026#39;s brain to unleash nuclear armageddon with the help of an army of vampires, werewolves and ichthyoids. As they journey to the Caribbean for a final showdown with Niemann on his island base, Jacob and Lester ultimately sacrifice their lives to stop the doctor\\u0026#39;s plot, but Eve and Vlad defeat him together. In the end, Eve and Vlad become lovers, and they settle down together in a remote Caribbean island to enjoy a peaceful retirement.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brusoo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brusoo/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brusoo/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558562002.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Re: test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brqdyy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558568873.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brqdyy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brqdyy/re_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brqdyy/re_test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558540073.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1fshia0q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HGCE Freedom Gundam Album\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_brgcyy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/vW0UdiH9e624y4qys50Me5h6qGoo_e8CES7MGnJZPxo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558503867.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?auto=webp\\u0026s=b28b0884c28818078b55da9d1ef4ba90c026b0a7\", \"width\": 4608, \"height\": 3456}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3ee43ed883b609843a35a6ce3b8fa00b9a232224\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4be0a0f262272a1c71cfcc67a81e124447a0be1e\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=dfcf219052c23b175b96366209cd00bbfb5111a4\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=66a6cc36d3f09d8915d6217e11670e6a6c4e4399\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2c618a1384bb98f133c9da345381c1d60d4b924c\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8e6a4ecccf64e0032d26ca44cba778d7d2e8c5e5\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"l8RMDATpIekeXve7O9NIY9G1sZuopNbytbJIHSfuRYs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brgcyy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NeonRunner\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/EKjeyR4\", \"subreddit_subscribers\": 704, \"created_utc\": 1558475067.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\n\\nNEW EPSIODE IS LIVE!\\nEP#: Title\\n\\nOur weekly show w/ United analysis\\n\\n:dart:#USOC2019 v @PhxRisingFC Recap\\n:mount_fuji: #KoTM v @SwitchbacksFC Recap\\n:microphone: Post-Match with Coach Lesesne\\n:ox: Match Preview v Austin Bold FC\\n\\nWe Are Seek \\u0026 Strike Podcast Subscription Links\\n\\n[Spotify](https://open.spotify.com/show/6XkXWcO6bz5apNm3ZinE8C?si=tq3LBfKMQgKsn7GI5evPIA)\\n\\n[Apple Podcasts](https://itunes.apple.com/us/podcast/we-are-seek-strike-podcast/id1463144252?mt=2)\\n\\nSubscribe and review on iTunes and Spotify!\", \"author_fullname\": \"t2_th7e2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brel0b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558495011.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENEW EPSIODE IS LIVE!\\nEP#: Title\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur weekly show w/ United analysis\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:dart:#USOC2019 v @PhxRisingFC Recap\\n:mount_fuji: #KoTM v @SwitchbacksFC Recap\\n:microphone: Post-Match with Coach Lesesne\\n:ox: Match Preview v Austin Bold FC\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe Are Seek \\u0026amp; Strike Podcast Subscription Links\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://open.spotify.com/show/6XkXWcO6bz5apNm3ZinE8C?si=tq3LBfKMQgKsn7GI5evPIA\\\"\\u003ESpotify\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://itunes.apple.com/us/podcast/we-are-seek-strike-podcast/id1463144252?mt=2\\\"\\u003EApple Podcasts\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESubscribe and review on iTunes and Spotify!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?auto=webp\\u0026s=7b498390c4a1298299ac305cfdb0b3e1f3abca3e\", \"width\": 640, \"height\": 640}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a44d019cf4521ff2a71dc87c059f38f3033f64d9\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b8bdfaa18569ff71e3a6d659e58d7180229d8250\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=725225366c28b39c204a9296a01ca811b507e941\", \"width\": 320, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=339d0a115de48e0238ab3052a0a24855bc6b9527\", \"width\": 640, \"height\": 640}], \"variants\": {}, \"id\": \"H9VuA66GqaorRc34m5mtaix9iln8b_QAJWcmu-qc748\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brel0b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"IlatzimepAho\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brel0b/test_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brel0b/test_post/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558466211.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Item #: SCP-4935**\\n\\n**Object Class: Euclid**\\n\\n**Author: djKaktus**\\n\\nHello SCPDeclassified, Brewsterion here. Today, I wanted to declassify SCP-4935, by djKaktus, or that guy that wrote a novel for an 001. This one's a longer one, so let's get into it.\\n\\nRight off the bat, we notice a link to the End Of Death canon hub. This is a canon where an Omega-K End Of Death Scenario occurred, forcing immortality upon all life. A such, there's likely going to be a lot of talk about souls and death. Let's see the containment procedures.\\n\\n**Special Containment Procedures**\\n\\n\\u003EThe access point to SCP-4935 is to be sealed and guarded when not in use. Access to SCP-4935 is forbidden unless authorized. Authorization is to be given only by the Site-77 Director of Containment, and only for the purposes of continued research into the nature of SCP-4935.\\n\\nIt's some sort of location, that much is clear. They don't want people walking in and out of it freely, so it's likely dangerous in some way. But they don't fully get it for some reason, otherwise they wouldn't care for research. But next to the procedures there's an image of a single tree in a desert and a...giant, black, inverted pyramid hovering above it.\\n\\nYou know what, let's just see the description.\\n\\n**Description**\\n\\n\\u003ESCP-4935 is the group designation for two phenomena. The first, identified as SCP-4935-\\u03b1, is a temporal anomaly existing within the Sankuru Nature Preserve in the Democratic Republic of the Congo. The anomaly can be identified visually, as light further away from the anomaly appears to red-shift as the observer draws closer to it. Inversely, the anomaly and the area directly around it appear blue-shifted to outside observers, who will see anything approaching the anomaly appear to blue-shift towards an indeterminate point in the center of the anomaly and disappear. The same is true in reverse for anything exiting the anomaly, as returning subjects will appear red-shifted until they match pace with the standard flow of spacetime.\\n\\nIt's a temporal anomaly, situated in the middle of the Congo in Africa. There's a visible effect as people get closer to it, meaning they can tell when something's going in or out. It's not some secret doorway, it's big and obvious.\\n\\n\\u003ESCP-4935-\\u03b1-PRIME (hereafter identified simply as SCP-4935) is the point in time beyond the SCP-4935-\\u03b1 anomaly. Analysis of the stars visible in the sky within SCP-4935 has determined that SCP-4935 is the planet Earth, roughly 130,000 years in the future from the present day. Due to changes in the planet\\u2019s atmospheric composition, the air within SCP-4935 contains significantly more oxygen than present day, leading to an abundance of megaflora. The area directly around SCP-4935-\\u03b1 within SCP-4935 is a grove of trees, many of which are in excess of 200m in height.\\n\\nThat's a loooong way from now.\\n\\n\\u003ESCP-4935 is seemingly devoid of intelligent life, with two significant exceptions. The first is a race of secretive and highly advanced pseudo-humanoid entities who self identify, phonetically, as the Akot. These entities inhabit the dark, canopied forests of the planet in small numbers, often in underground vaults or other similarly protected structures. They appear generally similar to modern humans, with elongated skulls, larger, deep set eyes, reduced mouths and noses, less robust chests and abdomens and longer, leaner arms and legs.\\n\\nThey're basically just humans if you messed with their settings a bit. There's a footnote that says their name actually means gravedigger in their tongue, which will make sense very shortly.\\n\\n\\u003EThe Akot describe themselves as protectors and guardians of a massive, levitating black cube situated above a similarly massive machine complex near the center of the African continent. This cube, composed primarily of silica and carbon with trace organic compounds throughout, is called the \\u201cHereafter\\u201d, and is a site of significant religious importance to the Akot.\\n\\nNow we know what the cube from the image is, it's this 20-kilometer by 20-kilometer thing called the Hereafter. There's also a footnote that says since the Akot aren't technically anomalous, they don't get a designation and are just referred to as the Akot.\\n\\n\\u003EAccording to the Akot, the Hereafter was constructed as resting place for the some ninety-three billion persons who lived on the Earth at the time of its construction, all of whom had lost the biological ability to die. As time passed and the age of these peoples grew unceasingly long, several major wars broke out and the species, as a whole, descended into madness. The Hereafter was designed as a way for the peoples of the Earth to enter a suspended state, until such time that the ability to die could be restored to the species. The Akot were those entrusted to maintain the Hereafter and continue researching the nature of the biological alteration the planet had experienced. This event was likely a hypothesized \\u03a9K-Class (\\\"End-of-Death\\\") Scenario, though the biological triggers for such an event are still unknown.\\n\\nThis is where the End Of Death connection comes in. It's the future of humanity, once the Omega-K kicks in. They give up, so they create the Akot to figure out how to die and then go chill in the Hereafter until they're successful. It also explains the Akot's name: their entire purpose in life is to dig a grave for humanity, one that they'll jump into willingly. Additionally, this paragraph establishes that the present world hasn't undergone the Omega-K, as it's still \\\"hypothesized.\\\"\\n\\n\\u003EThe Akot universally suffer from a debilitating genetic disorder that causes their bodies to deteriorate over time. To offset this, these entities often augment their bodies with technology designed to enhance their reduced functions. However, the most significant consequence of the genetic disorder is that the Akot have a tenuous connection to three-dimensional space. \\n\\u003E \\n\\u003EDue to an event sometime in their past, the Akot exist within two spatial dimensions simultaneously. Through the use of highly advanced technology they have been able to \\u201canchor\\u201d themselves in the baseline dimension, though the condition still puts a considerable strain on their bodies and they are still subject to violent and painful dimensional shifts if the anchors fail. The Akot call this alternate dimension the \\u201cHigh Horror\\u201d, and discussion of the dimension is strictly taboo.\\n\\nThe Akot suffer from a wasting disease that also causes them to slowly fall into another spacial dimension, the High Horror.\\n\\n\\u003EThe second exception is a massive, scorpioid entity (SCP-4935-\\u03b2) that is currently intertwined with and attempting to pierce the exterior of the Hereafter. SCP-4935-\\u03b2, which is biological in nature, is called the \\u201cCorpse-Father\\u201d by the Akot, and has been on the planet for roughly six-hundred years. The origin of this entity is unknown. This entity is capable of spawning larval incarnations of itself through its chitinous flesh in large swarms. These larval entities are aggressive and dangerous in large numbers, but have short life-spans.\\n\\n\\u0026#x200B;\\n\\nIt is organic and biological, but the things it spawns do indeed have the ability to die, unlike the humans in the Hereafter and the Akot. It also seems to be significant to the Akot, since they've named it.\\n\\n\\u003EThe Akot have claimed that SCP-4935-\\u03b1 exists due to a series of experiments testing machines designed to collapse the linear flow of time in a controlled area, as they as a species no longer have the physical capability or technological advantage needed to combat the SCP-4935-\\u03b2 entity.\\n\\nThey made the temporal anomaly after trying to kill the Beta entity and having an experiment backfire.\\n\\n\\u003ETo date, it is believed that these experiments have been ~~unsuccessful~~ \\\\[NOTE: SEE ADDENDUM 4935.6 FOR MORE INFORMATION\\\\]\\n\\nOr not. We should hurry down there.\\n\\n**Addendum 4935-1**\\n\\nThis addendum is a memo on 4935 written by the first doctor to contact the Akot. It describes what the Akot say happened before humans got dumped into the Hereafter: very close to modern day, the Omega-K kicked in, people got happy and made big tech, some even going into space-but they don't know what happened to them-until they ran out of stuff to build rockets from. Resources dried up, and people started fighting. But after these wars end is where we get new information. The cube isn't from Earth, it's extraterrestrial, and the Foundation moved all the humans into it. The cube would keep them in stasis until they could die again, but the Akot couldn't enter due to having biology very different from humans. The issue was, the Akot were slowly petering out due to slow reproductiona nd the tech anchoring them to this dimension failing. They were stuck in this slowly failing state, until the Beta entity showed up. Let's check out the next part of the article, an exploration log.\\n\\n\\u0026#x200B;\\n\\n**Addendum 4931-2**\\n\\nMTF Epsilon-45, Base Jumpers, is sent in on an exploration job. Guess Zeta-9 was too busy being killed off. They enter the anomaly and start heading for the Hereafter. They don't find anything until they encounter an Akot half-stuck in the wall.\\n\\n\\u003E**Unknown Akot:** They will act in desperation now. I know it. I have dreamed of it, for so many years. A day when they would expend their last efforts and we might be saved, in one way or another. (*Pauses*) I want to die. I want to die. Why can't I die? Why has this simple mercy eluded us? \\n\\u003E \\n\\u003E**E-45 Murphy:** This machine - does it have a control area? How is it operated? \\n\\u003E \\n\\u003E**Unknown Akot:** The center - Gerryon's Ark. It is there. But - the Ark cannot be tasked any longer. It has expended itself. There is no more use for it. There is no salvation here.\\n\\nThe Akot have another plan, one that will end up causing them to die. And this machine, Gerryon's Ark, is probably what caused the temporal anomaly. The team continues to the big machine in the center, finding the bottom corner of the cube, and a hologram appears in front of them.\\n\\n\\u003E**Projection:** Greetings, travelers. My name is Gerryon, engineer of the forsaken peoples of this world. You have arrived at our final resting place - we were cursed by an uncaring creator with a tormented existence that would not end, but by the grace of this machine we were delivered unto restful death. Tread lightly on these hallowed grounds. \\n\\u003E \\n\\u003E**E-45 Santos:** Think it can hear us? \\n\\u003E \\n\\u003E**Projection:** (*To E-45 Santos*) Of course. This database was created to answer and respond to the inquiries of all those who may come across our burial place.\\n\\nExcellent, a big database that answers questions. Time to get some answers.\\n\\n\\u003E**E-45 Murphy:** What was this machine designed to do? \\n\\u003E \\n\\u003E**Projection:** Long before I was born, my species collectively decided that we would prefer death over the continued torment of an existence without end. We tried - and failed - to reach that end, by any means. This machine is the culmination of our efforts; a device that, when activated, will rend our souls from our bodies and sever the threads that can be said to be keeping us alive.\\n\\nThe Ark was made to rip souls from bodies, and effectively kill all humans. But then why are the Akot still here?\\n\\n\\u003E**E-45 Murphy:** When was this device activated? \\n\\u003E \\n\\u003E**Projection:** The device has not been activated. \\n\\u003E \\n\\u003E**E-45 Ailes:** What? \\n\\u003E \\n\\u003E**E-45 Murphy:** How does this device determine if it was activated? \\n\\u003E \\n\\u003E**Projection:** There are still living human beings on this planet. Due to this, it is impossible that the device has been activated.\\n\\nThe Ark hasn't been activated yet, is the answer.\\n\\n\\u003E**E-45 Murphy:** (*Pauses*) How did Gerryon know how to create this machine? \\n\\u003E \\n\\u003E**Projection:** Gerryon was the product of the greatest minds of several generations. His birth was conceived by the most advanced sciences of the day, and the stimulation of his mind followed. When he awoke into being he was given access to the greatest compendium of knowledge this world had to offer. \\n\\u003E \\n\\u003E**E-45 Murphy:** Where did he get that knowledge? \\n\\u003E \\n\\u003E**Projection:** The SCP Foundation had collected a massive archive of- (*pauses*) I'm sorry, it appears any additional information has been expunged.\\n\\nMild surprise. Gerryon was born in a lab and raised for the exact purpose of building the Ark and killing off humanity, his knowledge enhanced by the Foundation's information. We don't know what information, though, but it was probably relating to death.\\n\\n\\u003E**E-45 Murphy:** Now **that's** something. (*Pauses*) One more thing. Can this machine be activated? \\n\\u003E \\n\\u003E**Projection:** The Ark is no longer functional to its intended purpose in its current state. It has been modified by a third-party to perform a different task. \\n\\u003E \\n\\u003E**E-45 Murphy:** What task is that? \\n\\u003E \\n\\u003E**Projection:** I'm sorry, that information is not available.\\n\\nThe Ark's been tweaked by somebody to fulfill a different purpose, likely the Akot. We don't know what it was tweaked for, though. The database can't tell.\\n\\nThe team leaves, and they find out there's a slight time dilation present where time passes slower inside the anomaly than outside it. Odd, but not too worrying.\\n\\n\\u0026#x200B;\\n\\n**Addendum 4935-3**\\n\\nAnother doctor wrote a report on the Akot, and it tells us what we mostly knew, pretty much. The Akot were part of a experiment to try and die by rending the soul from the body, but it backfired and began sending them into the High Horror instead. Jump cut to now, their tech's slowly breaking, they're not reproducing enough, and the Beta entity is making things worse. So, to fulfill their self-acknowledged purpose as gravediggers for humanity, they made the temporal anomaly to try and get Foundation help.\\n\\nAt least, that's what they've said so far.\\n\\n**Addendum 4935-4**\\n\\nA third doctor wrote a report on the Beta entity, immediately comparing the scorpioid nature to SCP-4812-K, with the implication it's that entity in the future. They say it crawled out of the sea 600 years ago, which contradicts what the Akot from the exploration said, but they were surprised because apparently everything in the oceans died a long time ago. They also say that when the Beta entity eats something, it adds it's face and by extension it's consciousness to it's own.This discovery split the Akot into two groups, one that was terrified of it, and another group, the Corpse-Children, thought that being eaten would obliterate their soul. So, they chucked themselves at it.\\n\\nThen their heads came out and started screaming to be saved.\\n\\nNeedless to say, it didn't end well. The remaining Akot dumped every single weapon they had onto the Beta entity, from nukes to plasma rods, but it just didn't die. It got to the Hereafter, and began chewing and clawing it's way into it, with the Akot helpless to watch as they failed their one true duty.So, basically, the Akot are screwed. But they still don't know why they made the temporal anomaly. First they said it was them trying to get help from the Foundation, then they said it was an experiment gone wrong, but they don't know why they lied in the first place.\\n\\n\\u003EWe\\u2019ve found out why. Dr. Regal, I believe, has that in her report.\\n\\nSomething big must have happened in Addendum 6. Let's hurry up.\\n\\nIn our way is a small addendum about how the time dilation is rapidly picking up in effect, going from 7 minutes off to 215 minutes off in two weeks. If it wasn't clear something's happening on the other side, it is now.\\n\\n**Addendum 6**\\n\\nThis is Dr. Regal's report, the thing that holds most of the answers from earlier in the article. Let's check it out.\\n\\n\\u003EA few days ago, one of our engineering teams produced some troubling findings. Exploratory teams on the far side of SCP-4935-\\u03b1 were no longer experiencing the 1-to-1 forward progression through time they had previously. The most recent team reported spending the allotted 180 minutes on the other side of SCP-4935-\\u03b1, whereas our teams on our side reported they were gone for 277 minutes. In other words, the forward progression on the far side of the anomaly appears to be slowing considerably relative to our own. \\n\\u003E \\n\\u003EAfter putting together our findings, we approached the Akot about it. They were surprisingly frank about it - SCP-4935-\\u03b1 wasn\\u2019t the result of them trying to reach us for help, or some sort of weapons test. It was an open valve.\\n\\nThey were intentionally messing with time, to mess up time. But why?\\n\\n\\u003E**Archivist:** Death is a long lost dream. For the gravediggers, and for those Sleepers in the graves, all that can be accomplished is an end of suffering. Time expounds our agony. It was decided, a short time ago, that there is no end to the sorrow of the Corpse-Father that does not also follow the end of time.\\n\\nThey've given up on trying to die. They can't end all of it without ending time itself.\\n\\n\\u003E**Ti-8:** Is this why we\\u2019ve seen alterations in our relative experience of the forward progression of linear time? \\n\\u003E \\n\\u003E**Archivist:** It is Gerryon\\u2019s last gift. We cannot escape agony. We cannot escape torment. We cannot escape the Corpse-Father, and we cannot abandon the Sleepers. Time brings us closer to the moment of our final defeat, and stopping that progression is our last chance. Gerryon\\u2019s Ark will interrupt the flow of time, and with it will pause our suffering forever.\\n\\nThat's their endgame. They're going to break the flow of time so that they can all stop existing.\\n\\n\\u003E**Ti-8:** To be clear, this is the same machine that caused your people to become disconnected from three-dimensional space, correct? \\n\\u003E \\n\\u003E**Archivist:** It is. We do not fault Gerryon, no more than we would fault the sun rising or the wind blowing. Gerryon was nature, a mind conceived by the blessings of the Earth. Those who first laid hands on his Ark and could not conceive his vision turned the machine against us. It has been many long millenia since then, and we have grown and learned. We have peered into the heart of Gerryon\\u2019s design and seen its majesty.\\n\\nThe Ark's first activation cause the Akot to suffer from their wasting disease and disconnect from reality. This was the activation that opened the portal in the first place.\\n\\n\\u003E**Archivist:** We feared that we would have to turn Gerryon's Ark upon ourselves, and I will admit that this frightened us more than nearly anything. But Gerryon blessed us with a reprieve. The Ark is not for us, forefather. The Ark is for you. You have not yet been touched by the long dread finger of a life everlasting. We will collapse your timeline, and you will not have to suffer. We will not be born into suffering.\\n\\nThey're going to collapse the timeline so humanity ends before the Omega-K hits and the Akot are created. The gravediggers are trying to bury their ancestors so they don't have to dig at all.\\n\\n\\u003E**Ti-8:** This would mean our destruction, you understand that? \\n\\u003E \\n\\u003E**Archivist:** No. Not destruction. Can't you see? Salvation. Salvation for us both.\\n\\nIt is, in a sense, truly their salvation. Death is their rapture.\\n\\n**Addendum 4395-8 and 4395-9**\\n\\nBoth of these are pretty short, so I'll lump them together. The Ethics Committee gets together in Addendum 8 and decides that while violence is not the Foundation's preferred option, in the case of 4395, the Akot are threatening all of humanity, and they find it \\\" ethically allowable to take actions that may result in the collapse of the primary SCP-4935 anomaly, as well as any damaging effects this may have on the inhabitants of the anomaly.\\\" They vote 7-2, in favor of taking this thing out.\\n\\nOn January 31, 2019, they forced the temporal anomaly shut, and blew up the Ark as well. They don't want this thing open in any way now that they know how dangerous it is.\\n\\nThe Akot tried to claw their way out of the anomaly, make it back into our world so that they could at least try to end us and fix it without the Ark. They couldn't make it out of 4935 before it collapsed, though The time dilation was set back to zero, and the anomaly itself is gone. It's still listed as Euclid though, since the Foundation knows the Akot could try again with their tech.\\n\\nAlright, so, there were a lot of double-bluffs and lies in that article, so let's have a TL;DR Version: Omega-K occurs, and humanity prospers at first but then everything falls apart into a big war. This war ends, and the Akot are created for unknown reasons. The Foundation contributes information to a project to create Gerryon, a lab-made genius, who then builds his Ark in an attempt to split souls from bodies and try to die. It doesn't work and actually ends up causing the Akot to be disconnected from this dimension,, and the humans go into sleep in the Hereafter until the Akot can try to figure out a way to die. They can't, though, and the unkillable Corpse-Father shows up and begins trying to break in to the Hereafter. The Akot, out of weapons and options, modify the Ark to go back in time and collapse the timeline before the Omega-K occurs, therefore never existing in the first place. The Foundation doesn't like this, and decides to destroy the Ark and shut down the temporal anomaly to survive.\\n\\nAnd so, after that, thus ends the story of SCP-4935 for now, a tale of gravediggers and salvation in death. I hope this helped you understand this SCP better. Thank you all for reading, and leave the corpses be.\", \"author_fullname\": \"t2_118qqr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SCP-4935, \\\"Hereafter\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bref1f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558494182.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EItem #: SCP-4935\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class: Euclid\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor: djKaktus\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello SCPDeclassified, Brewsterion here. Today, I wanted to declassify SCP-4935, by djKaktus, or that guy that wrote a novel for an 001. This one\\u0026#39;s a longer one, so let\\u0026#39;s get into it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight off the bat, we notice a link to the End Of Death canon hub. This is a canon where an Omega-K End Of Death Scenario occurred, forcing immortality upon all life. A such, there\\u0026#39;s likely going to be a lot of talk about souls and death. Let\\u0026#39;s see the containment procedures.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe access point to SCP-4935 is to be sealed and guarded when not in use. Access to SCP-4935 is forbidden unless authorized. Authorization is to be given only by the Site-77 Director of Containment, and only for the purposes of continued research into the nature of SCP-4935.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s some sort of location, that much is clear. They don\\u0026#39;t want people walking in and out of it freely, so it\\u0026#39;s likely dangerous in some way. But they don\\u0026#39;t fully get it for some reason, otherwise they wouldn\\u0026#39;t care for research. But next to the procedures there\\u0026#39;s an image of a single tree in a desert and a...giant, black, inverted pyramid hovering above it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou know what, let\\u0026#39;s just see the description.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4935 is the group designation for two phenomena. The first, identified as SCP-4935-\\u03b1, is a temporal anomaly existing within the Sankuru Nature Preserve in the Democratic Republic of the Congo. The anomaly can be identified visually, as light further away from the anomaly appears to red-shift as the observer draws closer to it. Inversely, the anomaly and the area directly around it appear blue-shifted to outside observers, who will see anything approaching the anomaly appear to blue-shift towards an indeterminate point in the center of the anomaly and disappear. The same is true in reverse for anything exiting the anomaly, as returning subjects will appear red-shifted until they match pace with the standard flow of spacetime.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a temporal anomaly, situated in the middle of the Congo in Africa. There\\u0026#39;s a visible effect as people get closer to it, meaning they can tell when something\\u0026#39;s going in or out. It\\u0026#39;s not some secret doorway, it\\u0026#39;s big and obvious.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4935-\\u03b1-PRIME (hereafter identified simply as SCP-4935) is the point in time beyond the SCP-4935-\\u03b1 anomaly. Analysis of the stars visible in the sky within SCP-4935 has determined that SCP-4935 is the planet Earth, roughly 130,000 years in the future from the present day. Due to changes in the planet\\u2019s atmospheric composition, the air within SCP-4935 contains significantly more oxygen than present day, leading to an abundance of megaflora. The area directly around SCP-4935-\\u03b1 within SCP-4935 is a grove of trees, many of which are in excess of 200m in height.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s a loooong way from now.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4935 is seemingly devoid of intelligent life, with two significant exceptions. The first is a race of secretive and highly advanced pseudo-humanoid entities who self identify, phonetically, as the Akot. These entities inhabit the dark, canopied forests of the planet in small numbers, often in underground vaults or other similarly protected structures. They appear generally similar to modern humans, with elongated skulls, larger, deep set eyes, reduced mouths and noses, less robust chests and abdomens and longer, leaner arms and legs.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey\\u0026#39;re basically just humans if you messed with their settings a bit. There\\u0026#39;s a footnote that says their name actually means gravedigger in their tongue, which will make sense very shortly.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Akot describe themselves as protectors and guardians of a massive, levitating black cube situated above a similarly massive machine complex near the center of the African continent. This cube, composed primarily of silica and carbon with trace organic compounds throughout, is called the \\u201cHereafter\\u201d, and is a site of significant religious importance to the Akot.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ENow we know what the cube from the image is, it\\u0026#39;s this 20-kilometer by 20-kilometer thing called the Hereafter. There\\u0026#39;s also a footnote that says since the Akot aren\\u0026#39;t technically anomalous, they don\\u0026#39;t get a designation and are just referred to as the Akot.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAccording to the Akot, the Hereafter was constructed as resting place for the some ninety-three billion persons who lived on the Earth at the time of its construction, all of whom had lost the biological ability to die. As time passed and the age of these peoples grew unceasingly long, several major wars broke out and the species, as a whole, descended into madness. The Hereafter was designed as a way for the peoples of the Earth to enter a suspended state, until such time that the ability to die could be restored to the species. The Akot were those entrusted to maintain the Hereafter and continue researching the nature of the biological alteration the planet had experienced. This event was likely a hypothesized \\u03a9K-Class (\\u0026quot;End-of-Death\\u0026quot;) Scenario, though the biological triggers for such an event are still unknown.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is where the End Of Death connection comes in. It\\u0026#39;s the future of humanity, once the Omega-K kicks in. They give up, so they create the Akot to figure out how to die and then go chill in the Hereafter until they\\u0026#39;re successful. It also explains the Akot\\u0026#39;s name: their entire purpose in life is to dig a grave for humanity, one that they\\u0026#39;ll jump into willingly. Additionally, this paragraph establishes that the present world hasn\\u0026#39;t undergone the Omega-K, as it\\u0026#39;s still \\u0026quot;hypothesized.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Akot universally suffer from a debilitating genetic disorder that causes their bodies to deteriorate over time. To offset this, these entities often augment their bodies with technology designed to enhance their reduced functions. However, the most significant consequence of the genetic disorder is that the Akot have a tenuous connection to three-dimensional space. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDue to an event sometime in their past, the Akot exist within two spatial dimensions simultaneously. Through the use of highly advanced technology they have been able to \\u201canchor\\u201d themselves in the baseline dimension, though the condition still puts a considerable strain on their bodies and they are still subject to violent and painful dimensional shifts if the anchors fail. The Akot call this alternate dimension the \\u201cHigh Horror\\u201d, and discussion of the dimension is strictly taboo.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Akot suffer from a wasting disease that also causes them to slowly fall into another spacial dimension, the High Horror.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe second exception is a massive, scorpioid entity (SCP-4935-\\u03b2) that is currently intertwined with and attempting to pierce the exterior of the Hereafter. SCP-4935-\\u03b2, which is biological in nature, is called the \\u201cCorpse-Father\\u201d by the Akot, and has been on the planet for roughly six-hundred years. The origin of this entity is unknown. This entity is capable of spawning larval incarnations of itself through its chitinous flesh in large swarms. These larval entities are aggressive and dangerous in large numbers, but have short life-spans.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is organic and biological, but the things it spawns do indeed have the ability to die, unlike the humans in the Hereafter and the Akot. It also seems to be significant to the Akot, since they\\u0026#39;ve named it.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Akot have claimed that SCP-4935-\\u03b1 exists due to a series of experiments testing machines designed to collapse the linear flow of time in a controlled area, as they as a species no longer have the physical capability or technological advantage needed to combat the SCP-4935-\\u03b2 entity.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey made the temporal anomaly after trying to kill the Beta entity and having an experiment backfire.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ETo date, it is believed that these experiments have been \\u003Cdel\\u003Eunsuccessful\\u003C/del\\u003E [NOTE: SEE ADDENDUM 4935.6 FOR MORE INFORMATION]\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOr not. We should hurry down there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4935-1\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis addendum is a memo on 4935 written by the first doctor to contact the Akot. It describes what the Akot say happened before humans got dumped into the Hereafter: very close to modern day, the Omega-K kicked in, people got happy and made big tech, some even going into space-but they don\\u0026#39;t know what happened to them-until they ran out of stuff to build rockets from. Resources dried up, and people started fighting. But after these wars end is where we get new information. The cube isn\\u0026#39;t from Earth, it\\u0026#39;s extraterrestrial, and the Foundation moved all the humans into it. The cube would keep them in stasis until they could die again, but the Akot couldn\\u0026#39;t enter due to having biology very different from humans. The issue was, the Akot were slowly petering out due to slow reproductiona nd the tech anchoring them to this dimension failing. They were stuck in this slowly failing state, until the Beta entity showed up. Let\\u0026#39;s check out the next part of the article, an exploration log.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4931-2\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMTF Epsilon-45, Base Jumpers, is sent in on an exploration job. Guess Zeta-9 was too busy being killed off. They enter the anomaly and start heading for the Hereafter. They don\\u0026#39;t find anything until they encounter an Akot half-stuck in the wall.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUnknown Akot:\\u003C/strong\\u003E They will act in desperation now. I know it. I have dreamed of it, for so many years. A day when they would expend their last efforts and we might be saved, in one way or another. (\\u003Cem\\u003EPauses\\u003C/em\\u003E) I want to die. I want to die. Why can\\u0026#39;t I die? Why has this simple mercy eluded us? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E This machine - does it have a control area? How is it operated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUnknown Akot:\\u003C/strong\\u003E The center - Gerryon\\u0026#39;s Ark. It is there. But - the Ark cannot be tasked any longer. It has expended itself. There is no more use for it. There is no salvation here.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Akot have another plan, one that will end up causing them to die. And this machine, Gerryon\\u0026#39;s Ark, is probably what caused the temporal anomaly. The team continues to the big machine in the center, finding the bottom corner of the cube, and a hologram appears in front of them.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E Greetings, travelers. My name is Gerryon, engineer of the forsaken peoples of this world. You have arrived at our final resting place - we were cursed by an uncaring creator with a tormented existence that would not end, but by the grace of this machine we were delivered unto restful death. Tread lightly on these hallowed grounds. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Santos:\\u003C/strong\\u003E Think it can hear us? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E (\\u003Cem\\u003ETo E-45 Santos\\u003C/em\\u003E) Of course. This database was created to answer and respond to the inquiries of all those who may come across our burial place.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EExcellent, a big database that answers questions. Time to get some answers.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E What was this machine designed to do? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E Long before I was born, my species collectively decided that we would prefer death over the continued torment of an existence without end. We tried - and failed - to reach that end, by any means. This machine is the culmination of our efforts; a device that, when activated, will rend our souls from our bodies and sever the threads that can be said to be keeping us alive.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark was made to rip souls from bodies, and effectively kill all humans. But then why are the Akot still here?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E When was this device activated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E The device has not been activated. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Ailes:\\u003C/strong\\u003E What? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E How does this device determine if it was activated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E There are still living human beings on this planet. Due to this, it is impossible that the device has been activated.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark hasn\\u0026#39;t been activated yet, is the answer.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E (\\u003Cem\\u003EPauses\\u003C/em\\u003E) How did Gerryon know how to create this machine? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E Gerryon was the product of the greatest minds of several generations. His birth was conceived by the most advanced sciences of the day, and the stimulation of his mind followed. When he awoke into being he was given access to the greatest compendium of knowledge this world had to offer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E Where did he get that knowledge? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E The SCP Foundation had collected a massive archive of- (\\u003Cem\\u003Epauses\\u003C/em\\u003E) I\\u0026#39;m sorry, it appears any additional information has been expunged.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMild surprise. Gerryon was born in a lab and raised for the exact purpose of building the Ark and killing off humanity, his knowledge enhanced by the Foundation\\u0026#39;s information. We don\\u0026#39;t know what information, though, but it was probably relating to death.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E Now \\u003Cstrong\\u003Ethat\\u0026#39;s\\u003C/strong\\u003E something. (\\u003Cem\\u003EPauses\\u003C/em\\u003E) One more thing. Can this machine be activated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E The Ark is no longer functional to its intended purpose in its current state. It has been modified by a third-party to perform a different task. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E What task is that? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E I\\u0026#39;m sorry, that information is not available.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark\\u0026#39;s been tweaked by somebody to fulfill a different purpose, likely the Akot. We don\\u0026#39;t know what it was tweaked for, though. The database can\\u0026#39;t tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe team leaves, and they find out there\\u0026#39;s a slight time dilation present where time passes slower inside the anomaly than outside it. Odd, but not too worrying.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4935-3\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother doctor wrote a report on the Akot, and it tells us what we mostly knew, pretty much. The Akot were part of a experiment to try and die by rending the soul from the body, but it backfired and began sending them into the High Horror instead. Jump cut to now, their tech\\u0026#39;s slowly breaking, they\\u0026#39;re not reproducing enough, and the Beta entity is making things worse. So, to fulfill their self-acknowledged purpose as gravediggers for humanity, they made the temporal anomaly to try and get Foundation help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt least, that\\u0026#39;s what they\\u0026#39;ve said so far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4935-4\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA third doctor wrote a report on the Beta entity, immediately comparing the scorpioid nature to SCP-4812-K, with the implication it\\u0026#39;s that entity in the future. They say it crawled out of the sea 600 years ago, which contradicts what the Akot from the exploration said, but they were surprised because apparently everything in the oceans died a long time ago. They also say that when the Beta entity eats something, it adds it\\u0026#39;s face and by extension it\\u0026#39;s consciousness to it\\u0026#39;s own.This discovery split the Akot into two groups, one that was terrified of it, and another group, the Corpse-Children, thought that being eaten would obliterate their soul. So, they chucked themselves at it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen their heads came out and started screaming to be saved.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENeedless to say, it didn\\u0026#39;t end well. The remaining Akot dumped every single weapon they had onto the Beta entity, from nukes to plasma rods, but it just didn\\u0026#39;t die. It got to the Hereafter, and began chewing and clawing it\\u0026#39;s way into it, with the Akot helpless to watch as they failed their one true duty.So, basically, the Akot are screwed. But they still don\\u0026#39;t know why they made the temporal anomaly. First they said it was them trying to get help from the Foundation, then they said it was an experiment gone wrong, but they don\\u0026#39;t know why they lied in the first place.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWe\\u2019ve found out why. Dr. Regal, I believe, has that in her report.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESomething big must have happened in Addendum 6. Let\\u0026#39;s hurry up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our way is a small addendum about how the time dilation is rapidly picking up in effect, going from 7 minutes off to 215 minutes off in two weeks. If it wasn\\u0026#39;t clear something\\u0026#39;s happening on the other side, it is now.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 6\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is Dr. Regal\\u0026#39;s report, the thing that holds most of the answers from earlier in the article. Let\\u0026#39;s check it out.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA few days ago, one of our engineering teams produced some troubling findings. Exploratory teams on the far side of SCP-4935-\\u03b1 were no longer experiencing the 1-to-1 forward progression through time they had previously. The most recent team reported spending the allotted 180 minutes on the other side of SCP-4935-\\u03b1, whereas our teams on our side reported they were gone for 277 minutes. In other words, the forward progression on the far side of the anomaly appears to be slowing considerably relative to our own. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter putting together our findings, we approached the Akot about it. They were surprisingly frank about it - SCP-4935-\\u03b1 wasn\\u2019t the result of them trying to reach us for help, or some sort of weapons test. It was an open valve.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey were intentionally messing with time, to mess up time. But why?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E Death is a long lost dream. For the gravediggers, and for those Sleepers in the graves, all that can be accomplished is an end of suffering. Time expounds our agony. It was decided, a short time ago, that there is no end to the sorrow of the Corpse-Father that does not also follow the end of time.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey\\u0026#39;ve given up on trying to die. They can\\u0026#39;t end all of it without ending time itself.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETi-8:\\u003C/strong\\u003E Is this why we\\u2019ve seen alterations in our relative experience of the forward progression of linear time? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E It is Gerryon\\u2019s last gift. We cannot escape agony. We cannot escape torment. We cannot escape the Corpse-Father, and we cannot abandon the Sleepers. Time brings us closer to the moment of our final defeat, and stopping that progression is our last chance. Gerryon\\u2019s Ark will interrupt the flow of time, and with it will pause our suffering forever.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s their endgame. They\\u0026#39;re going to break the flow of time so that they can all stop existing.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETi-8:\\u003C/strong\\u003E To be clear, this is the same machine that caused your people to become disconnected from three-dimensional space, correct? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E It is. We do not fault Gerryon, no more than we would fault the sun rising or the wind blowing. Gerryon was nature, a mind conceived by the blessings of the Earth. Those who first laid hands on his Ark and could not conceive his vision turned the machine against us. It has been many long millenia since then, and we have grown and learned. We have peered into the heart of Gerryon\\u2019s design and seen its majesty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark\\u0026#39;s first activation cause the Akot to suffer from their wasting disease and disconnect from reality. This was the activation that opened the portal in the first place.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E We feared that we would have to turn Gerryon\\u0026#39;s Ark upon ourselves, and I will admit that this frightened us more than nearly anything. But Gerryon blessed us with a reprieve. The Ark is not for us, forefather. The Ark is for you. You have not yet been touched by the long dread finger of a life everlasting. We will collapse your timeline, and you will not have to suffer. We will not be born into suffering.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey\\u0026#39;re going to collapse the timeline so humanity ends before the Omega-K hits and the Akot are created. The gravediggers are trying to bury their ancestors so they don\\u0026#39;t have to dig at all.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETi-8:\\u003C/strong\\u003E This would mean our destruction, you understand that? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E No. Not destruction. Can\\u0026#39;t you see? Salvation. Salvation for us both.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt is, in a sense, truly their salvation. Death is their rapture.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4395-8 and 4395-9\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth of these are pretty short, so I\\u0026#39;ll lump them together. The Ethics Committee gets together in Addendum 8 and decides that while violence is not the Foundation\\u0026#39;s preferred option, in the case of 4395, the Akot are threatening all of humanity, and they find it \\u0026quot; ethically allowable to take actions that may result in the collapse of the primary SCP-4935 anomaly, as well as any damaging effects this may have on the inhabitants of the anomaly.\\u0026quot; They vote 7-2, in favor of taking this thing out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn January 31, 2019, they forced the temporal anomaly shut, and blew up the Ark as well. They don\\u0026#39;t want this thing open in any way now that they know how dangerous it is.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Akot tried to claw their way out of the anomaly, make it back into our world so that they could at least try to end us and fix it without the Ark. They couldn\\u0026#39;t make it out of 4935 before it collapsed, though The time dilation was set back to zero, and the anomaly itself is gone. It\\u0026#39;s still listed as Euclid though, since the Foundation knows the Akot could try again with their tech.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlright, so, there were a lot of double-bluffs and lies in that article, so let\\u0026#39;s have a TL;DR Version: Omega-K occurs, and humanity prospers at first but then everything falls apart into a big war. This war ends, and the Akot are created for unknown reasons. The Foundation contributes information to a project to create Gerryon, a lab-made genius, who then builds his Ark in an attempt to split souls from bodies and try to die. It doesn\\u0026#39;t work and actually ends up causing the Akot to be disconnected from this dimension,, and the humans go into sleep in the Hereafter until the Akot can try to figure out a way to die. They can\\u0026#39;t, though, and the unkillable Corpse-Father shows up and begins trying to break in to the Hereafter. The Akot, out of weapons and options, modify the Ark to go back in time and collapse the timeline before the Omega-K occurs, therefore never existing in the first place. The Foundation doesn\\u0026#39;t like this, and decides to destroy the Ark and shut down the temporal anomaly to survive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd so, after that, thus ends the story of SCP-4935 for now, a tale of gravediggers and salvation in death. I hope this helped you understand this SCP better. Thank you all for reading, and leave the corpses be.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bref1f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Brewsterion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bref1f/scp4935_hereafter/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bref1f/scp4935_hereafter/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558465382.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_c07be\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Our very own Corgi\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bre064\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 840}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views. Katsu's First Day\", \"title\": \"Katsu's First Day\", \"url\": \"https://imgur.com/a/5cyGTUa\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 840, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bre064\", \"height\": 840}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/hr15FLCYpTX2Hdi4-D8pN3xuaS1BKV7LPeUwNa-0-L4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558492189.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?auto=webp\\u0026s=e6f394089edaed813a20b2ae9be80355a675683e\", \"width\": 3024, \"height\": 4032}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4bc71fbc22a8432bde208e9819500caa06db35a1\", \"width\": 108, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=03926630d81a5f2fbc46f44c708bdb32ab7e88d9\", \"width\": 216, \"height\": 288}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f48497dd96015f9566dc130b3e1751d073899910\", \"width\": 320, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=7759525928d560f0a8aacdc90d485b446254f8cc\", \"width\": 640, \"height\": 853}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f80fe2af55a75b053a0265b2431b1aed4f3b258d\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8733d7299d16dd7616aac8eb7c2ac447d52cf5c4\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"HwI1x-pgTiu90wXPmNvBjY8Bkyx0pec088I80HtvAjQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bre064\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MisterOinky\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bre064/our_very_own_corgi/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/5cyGTUa#jKzFTOe\", \"subreddit_subscribers\": 704, \"created_utc\": 1558463389.0, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views. Katsu's First Day\", \"title\": \"Katsu's First Day\", \"url\": \"https://imgur.com/a/5cyGTUa\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 840, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_35aabssu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Supreme Commander: Forged Alliance Let's Play #1 - LOUD Project Mod\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bray7j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Supreme Commander: Forged Alliance Let's Play #1 - LOUD Project Mod\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VgRH8yaTrqo/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bray7j\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/HXJCjqB_CJRS5YgZ8wZJZ-_SCvrAgIAGuYLWnKvT96Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558477033.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?auto=webp\\u0026s=25269a95e8684f288ca8ae522c1b5c32ba168c2d\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=deabb18f7148a5ab4428400866150e03cbb42eff\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1134ea9c6ea0b98aa411c769d29f440530e99e56\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a027329c4dca2e554026595a710fb986ff0b6e4a\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"rbuCAFhCCm7VEnvfC5M52nsZjhIsSKarkhjDgzW_PlE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bray7j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Goldymires\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bray7j/supreme_commander_forged_alliance_lets_play_1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=VgRH8yaTrqo\", \"subreddit_subscribers\": 704, \"created_utc\": 1558448233.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Supreme Commander: Forged Alliance Let's Play #1 - LOUD Project Mod\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VgRH8yaTrqo/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Testing\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brafrm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558474186.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETesting\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brafrm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brafrm/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brafrm/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558445386.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1fshia0q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HGCE Freedom Gundam\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_br1w5r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/PEW4xg4iL6liP5ICAzjaLSS2OJvua4tErk1XnW7A22Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558417917.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"1drv.ms\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?auto=webp\\u0026s=fa17f0c4923b59e84d3ea0b8a17b02985711ba0d\", \"width\": 1600, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=645d3c23f10d589991e05c595e6c1dbe242708f2\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e759becc18d475d837daebb261e20113df3c3db1\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=23e34cb0917a07cf068c8965a4f677962c01f7c5\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1e584518f947ef50b73a3e3b21ca9228adec1db4\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f6631b04e07f0a54b36c11f0799b2a3005c9fbaa\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=593b6d7db7fd1e3277e864df7056eee5c6787bbb\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"O2ToZVz84eHwlQwXHWwsacHs3Ogulvoo-0Swmp6_wd4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br1w5r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NeonRunner\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/br1w5r/hgce_freedom_gundam/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://1drv.ms/f/s!Ak86GWNk26yEgSsd2-gvcl-B53yF\", \"subreddit_subscribers\": 704, \"created_utc\": 1558389117.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_hl2m5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Eyes Wide Open - The Disheartened Song (Official Lyric Video)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bqz81d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Eyes Wide Open - The Disheartened Song (Official Lyric Video)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"EyesWideOpenOfficial\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/jegzxxv6T-I/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/EyesWideOpenOfficial\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bqz81d\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/nQ91ba0Ip2KUxaaBlMGoOlB8ijhVnAGscQf0jkN0HOU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558405282.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?auto=webp\\u0026s=c0fdb565fe87811d2731f3f929a9075d0b63423f\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=89134035e8dd80a06ebd481d63e30e1db6711a3d\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=755cd4f0857ce89207d07f6b6535d1fcbbf12846\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d8dd2d537f88cd623d15f66828c9c25a3c6c291a\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"sqLuOqp9DV-i9vOHLKbhyIp7LgH5b6M7Oc6TMh34K-8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqz81d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sunfire230\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqz81d/eyes_wide_open_the_disheartened_song_official/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=jegzxxv6T-I\", \"subreddit_subscribers\": 704, \"created_utc\": 1558376482.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Eyes Wide Open - The Disheartened Song (Official Lyric Video)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"EyesWideOpenOfficial\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/jegzxxv6T-I/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/EyesWideOpenOfficial\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"As the title says: I've been lurking here to learn how avoid any foibles of writing female characters from my male perspective. You have all been an amazing help, so thanks for that! I figured it's only right that I show my work on the female protagonist from my novel, so that you can see what I've learned, and just in case I've still missed something.\\n\\nSetting: Charlie (male protag) is a lonely UPS man who gets pulled into a mystery after he delivers a package which turns out to be something very many people want very badly. This is the scene of that delivery, which introduces our female protag, Anabelle Must. To wit: \\n\\nShe looked like sex, sauntering towards him on legs long enough hang power lines and a body as slick as European butter. Her nipples rose and fell with each step, offering a howdy-there-soldier-salute each time they bounced up to meet his eyes. They were staring at him. Staring into his very soul... \\n\\n\\u201cHi,\\u201d she said, in a voice which sounded like sex, her pink tongue tying an invisible cherry stem around the single syllable.\\n\\nCharlie did not answer. He could not breathe. He could not think. His pupils were fixed upon her second pair of eyes, those erect, desperate nipples which still bounced though she stood still. \\n\\n\\u201cIs that for me?\\u201d she wondered, reaching for the package with five fingers which were shaped like sex \\u2013 lithe little submarines which might soon dive into the skin of his oceanic bum. Down. Down. Down. \\n\\n\\u201cYe\\u2014Yeah\\u2026\\u201d sputtered Charlie, hoisting his package into the air. \\u201cJust go-gonna need a signature, mam\\u2026\\u201d\\n\\nShe reached into her pocket, though she was entirely naked, and produced a pen which looked like sex, its pleading tip dripping a moist, musty ink onto the floor.\\n\\n\\u201cSure,\\u201d she smiled, spilling that blue sex-juice onto his rattling clipboard. \\u201cAnything else?\\u201d\\n\\nCharlie retreated onto the porch, thinking that the mere aura of the woman might soon stop his heart. \\u201cN\\u2014No, mam,\\u201d he whispered, grabbing urgently at the front of his pants, fearful that they might soon launch a rocket. \\n\\nThe door fell shut against his face. He fell to his knees, feeling a sudden pain in his chest. His heart had given out. The mere sight of her had killed him. *Cardiac arrest* they called it. It felt like sex\\u2026\", \"author_fullname\": \"t2_n0kou\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"po\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqtosh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558376118.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs the title says: I\\u0026#39;ve been lurking here to learn how avoid any foibles of writing female characters from my male perspective. You have all been an amazing help, so thanks for that! I figured it\\u0026#39;s only right that I show my work on the female protagonist from my novel, so that you can see what I\\u0026#39;ve learned, and just in case I\\u0026#39;ve still missed something.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESetting: Charlie (male protag) is a lonely UPS man who gets pulled into a mystery after he delivers a package which turns out to be something very many people want very badly. This is the scene of that delivery, which introduces our female protag, Anabelle Must. To wit: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe looked like sex, sauntering towards him on legs long enough hang power lines and a body as slick as European butter. Her nipples rose and fell with each step, offering a howdy-there-soldier-salute each time they bounced up to meet his eyes. They were staring at him. Staring into his very soul... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cHi,\\u201d she said, in a voice which sounded like sex, her pink tongue tying an invisible cherry stem around the single syllable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECharlie did not answer. He could not breathe. He could not think. His pupils were fixed upon her second pair of eyes, those erect, desperate nipples which still bounced though she stood still. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cIs that for me?\\u201d she wondered, reaching for the package with five fingers which were shaped like sex \\u2013 lithe little submarines which might soon dive into the skin of his oceanic bum. Down. Down. Down. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cYe\\u2014Yeah\\u2026\\u201d sputtered Charlie, hoisting his package into the air. \\u201cJust go-gonna need a signature, mam\\u2026\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe reached into her pocket, though she was entirely naked, and produced a pen which looked like sex, its pleading tip dripping a moist, musty ink onto the floor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cSure,\\u201d she smiled, spilling that blue sex-juice onto his rattling clipboard. \\u201cAnything else?\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECharlie retreated onto the porch, thinking that the mere aura of the woman might soon stop his heart. \\u201cN\\u2014No, mam,\\u201d he whispered, grabbing urgently at the front of his pants, fearful that they might soon launch a rocket. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe door fell shut against his face. He fell to his knees, feeling a sudden pain in his chest. His heart had given out. The mere sight of her had killed him. \\u003Cem\\u003ECardiac arrest\\u003C/em\\u003E they called it. It felt like sex\\u2026\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqtosh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BaronVonButternickle\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqtosh/po/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqtosh/po/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558347318.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_cp3cb3l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bqs0lm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"WoW Fishing: Stormsong Valley (Ambience/ASMR)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Sweetbun\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VmalKIuFimk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCrRoBf9CFTXErdj-Z1W-LaA\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bqs0lm\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Ai1RT718z01rsfPlWCCGgZEIIg8JoQowRbOaIZq5oiA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558363115.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?auto=webp\\u0026s=2c73ce6751ae262f5ac06b60c4b214664596662c\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d72d4d25cf69aa2946fa665f119b3c3a20ac800f\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6a124dc14e04c3a16da0302ebba5414a82c235b0\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3ecc5919b56a452b9f8f01472555a2a15af60127\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"4uEgYAelHlW11bf8oWKYoOFFJb_IvtDGBFSpL_owSYI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqs0lm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NamiPickles\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://youtu.be/VmalKIuFimk\", \"subreddit_subscribers\": 704, \"created_utc\": 1558334315.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"WoW Fishing: Stormsong Valley (Ambience/ASMR)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Sweetbun\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VmalKIuFimk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCrRoBf9CFTXErdj-Z1W-LaA\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Text\", \"author_fullname\": \"t2_cp3cb3l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqrx73\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558362459.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EText\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqrx73\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NamiPickles\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqrx73/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqrx73/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558333659.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hi folks,\\n\\n First of all, thanks for all the quality posts here, i created an account just for this community !\\n\\n I'm a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\n\\n D1 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5)\\n D2 : Squat (5*5)- OHP (3*5) \\n D3 : Rest\\n D4 : Squat (5*5)- OHP (3*5)\\n D5 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5)\\n D6 : Squat (5*5)- OHP (3*5) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\n D7 : Rest\\n\\n I think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP\\n\\n For these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7\\n\\nMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\n\\nThanks for all you're doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\", \"author_fullname\": \"t2_3s7t8gxj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"sdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqofzt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558341883.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\n D2 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) \\n D3 : Rest\\n D4 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\n D5 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\n D6 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\n D7 : Rest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?auto=webp\\u0026s=b59cadc793d0be52f56b3fe70bd7bd442a7b404e\", \"width\": 681, \"height\": 279}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=41e4d61a71c4994fe6d65cd5f5e5117101a8c177\", \"width\": 108, \"height\": 44}, {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f54ed93edb582388d2be8048d9b2ce14e17339e2\", \"width\": 216, \"height\": 88}, {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=197cdcd689260137ffeb3630d6ce6c8591f0123f\", \"width\": 320, \"height\": 131}, {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=48803a69899fb1896652c3f22a84062c59105e8f\", \"width\": 640, \"height\": 262}], \"variants\": {}, \"id\": \"qtTefy3j-6oGIh5mtKWiXy7kht_Oew60BsrcQCPqFhM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqofzt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"imperatorz\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558313083.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hey y'all, been a while away thanks to university, and it kinda sucked the wind out of me writing stuff about F1 for a while. But never mind that, I'm back.\\n\\nThis will be the start of a little series of mine, where I focus on F1 drivers that *should* be recognised for their stories behind their career, yet for some reason, are barely footnotes in history. You all know the story of Ascari and Fangio, of Lauda and Hunt, of Prost and Senna, of Schumacher and Hakkinen and so on. However, there are many more stories of drivers that don't receive the attention they deserve. Whether stories of success or failure, glory or ignominy, tragedy or happiness, these stories are worthy of remembering and retelling. This little series of posts are not Random Driver Highlights, given how they're not...y'know, random. But instead, they'll each have their own post, cause they deserve it.\\n\\nThe first driver I want to spotlight is an Italian driver for Ferrari in the 1950's. His story isn't *that* unknown, but compared to his contemporaries, it's very, very hidden unless you search for his name. He was F1's youngest polesitter at the time, with that record lasting for 13 years. He is directly involved with the death of a legend of a sport. He dated a rather famous Italian celebrity that got them on gossip pages. And he was very, **very** handsome. Like, ridiculously handsome.\\n\\nThis is the story of Eugenio Castellotti.\\n\\n*****\\n# [Eugenio Castellotti](https://www.classicdriver.com/sites/default/files/styles/article_full/public/183477804a.jpg?itok=mIrjs49d) #\\n\\n**STATISTICS**\\n\\n**Nationality:** Italian\\n\\n**Years in F1:** 1955-57\\n\\n**Teams Raced For:** Lancia, Ferrari\\n\\n**Entries:** 14\\n\\n**Starts:** 14\\n\\n**Podium Finishes:** 3\\n\\n**Pole Positions:** 1 (*1955 Belgian Grand Prix*)\\n\\n**Points:** 19.5\\n\\n**Highest Finish:** 2nd (*Twice -- 1955 Monaco and 1956 French Grands Prix*)\\n\\n**Good looks:** On a scale from 1-10, [*he was a goddamn 17*](http://formula-fan.ru/assets/images/drivers/Castellotti_Eugenio.jpg).\\n\\n*****\\n\\n### Part 1: Baby You're a Rich Kid ###\\n\\nEvery report on how Castellotti began his career states that it was due to his wealth, being able to buy a Ferrari sportscar at the young age of 20. Most 20 year-olds would be worrying about paying off their university fees, but here was Eugenio, buying himself a Ferrari. So, naturally, the narrative was that he had a mollycoddled childhood by two rich, wealthy parents and was able to buy his way into motorsport. Right?\\n\\nWell...not quite. I think. His mother, Angela, according to some accounts, was unmarried and *only sixteen* when she gave birth to Eugenio. Not to mention that his father, a very, *very* wealthy lawyer, reportedly first met Eugenio at the age 9. Most other sources just hook onto the fact that his family was wealthy, but if the above is true, that his dad impregnated someone at 16 and didn't bother taking care of their child until nine years later, life may not have been *that* rosy for young Eugenio as some sources claim.\\n\\nEugenio, however, quickly gained a fascination for cars, and supposedly learned how to drive through the Castellotti's family driver. As he grew up, he even tried to fake his age to obtain a driving license. Despite the probable family tensions between his mom and his dad for, well, **that** situation, there was one thing that both his parents agreed on: that Castellotti *should not race*. They became increasingly restrictive with Castellotti's passion, but that probably drove young Eugenio further into getting a racing career.\\n\\nThis was until his dad died when Eugenio was either 12 or 19. I don't know this for sure as sources are picky, but more sources point towards 19. Because, when his dad died, he left a massive, and I mean **massive**, inheritance to Eugenio. I don't know how much, but damn if it didn't look like Loadsamoney. From there, Eugenio went into a manic shopping spree, often fancying finely-tailored suits here and there. However, still against his mother's wishes, Eugenio used his money to explore his passion, motor racing.\\n\\nAnd that's how Eugenio Castellotti bought his first Ferrari, a 166MM sportscar, at the young age of 20. But, unlike most ridiculously rich youth of the generation, he didn't buy the 166MM to stare at it in his garage every once in a while. He was going to **race it**.\\n\\nHowever, Castellotti figured that the best way to start off racing wouldn't be a few simple club races, oh no. His first race was the gruelling 1,080-kilometre Tour of Sicily, where he unsurprisingly failed to finish. Not to be perturbed by this little blip, Castellotti opted to enter the frikin' **Mille Miglia**, or 1000 Miles in Italian, probably one of the grandest road races ever. There, he actually finished a credible 6th in class and 50th in an overall field of *322 starters*. As inexperienced as he was, Castellotti proved he wasn't just a regular rich kid who bought his way into racing. His first two races were only two of the toughest sportscar races, and by golly did he do well.\\n\\nInto 1952, and Castellotti's form in sportscars just got better and better over time, leading to his first win in the Gold Cup at Pescara. Buoyed by all this success, he felt it was about time he entered the grandest event of all, the Monaco Grand Prix. However, it wouldn't be his first Formula One start. The Monaco Grand Prix was going through some financial difficulties, and with radical changes in rules in the World Driver's Championship, the organisers played a *safe bet* and hosted the 1952 Grand Prix for sports cars instead.\\n\\nThat's not to say the field was any weaker, though. A number of British up-and-comers like Stirling Moss and Peter Collins entered, not to mention crafty French veterans in Robert Manzon and Louis Rosier. Entering a Grand Prix of such prestige so early in his career, Castellotti would have his work cut out for him.\\n\\nHowever, Castellotti showed an oddly cool head when everyone lost theirs, especially when Stirling Moss and other drivers ploughed into Reg Parnell's broken down Aston Martin. Following the pile-up it would be Castellotti who would inherit the lead from Vittorio Marzotto. However, the heat would take its both drivers and cars, and both had to make a mandatory pit stop to attend to both the cars and drivers.\\n\\nAccording to urban legend, when Castellotti stopped, he also requested for a **bottle of Coke**. Apparently, this slowed Castellotti's stop significantly, maybe because Coke was hard to source in Monaco, or Castellotti just had to sip Coke leisurely, I don't know. Whatever the case, this was enough to hand the lead back to Marzotto, who went on to win the Monaco Grand Prix. \\n\\nCastellotti's performance, where he lost the Monaco Grand Prix to a bottle of Coke, didn't go unnoticed, though, and despite a lucky escape in Vila Real where marshals carried him out of the way from an oncoming pileup, through the next two years, including a win at the Portuguese Grand Prix in 1952 and the Messina 10 hours in 1953.\\n\\nHis shot at the big time, though, was just on the horizon. And it would come from none other than the *reigning champion of Formula 1*, Alberto Ascari.\\n*****\\n\\n### Part 2: Lancia's Lancer ###\\n\\nIn his career so far, Castellotti had just been entering races as a privateer, mainly entering with Ferrari's purchased from his father's inheritance. Being a relatively youthful driver in the sport, he was seen as one of Italy's brightest young talents to carry Italy's motorsport image into the future, so he was probably in high demand. It would probably be just a matter of time before he got snapped up.\\n\\nThen he met Alberto Ascari. Holder of the record for most consecutive victories in F1 at the time (*and all the way until 2013*) and had secured his second consecutive World Driver's Championship by the time of the Italian Grand Prix, when he met the young Castellotti. Despite his service for Ferrari, pay disputes and other issues led the current reigning champion to leave the Prancing Horse and join, out of all teams, Lancia, who were all set to make their leap into Formula One.\\n\\nAnd, out of all people, Ascari hand-picked both his mentor, Luigi Villoresi, and his now-protege, **Eugenio Castellotti**, to join him in Lancia. Yep, he was handpicked by probably the best driver in the world to not only be his teammate for the upcoming season, but also taken under his wing as his *protege*. \\n\\nLancia had doubts over his drive, though, after a dismal showing at the Nurburgring 1000km, but those doubts were cast aside after a brilliant third place in the Carrera Panamericana. Heck, sources say him and teammate Piero Taruffi could have actually contested for the win, but received orders from above to hold station behind leader Fangio to play it safe, already having a massive lead to the rest of the field and to keep a 1-2-3 finish for Lancia.\\n\\nHowever, for 1954, Lancia's F1 project encountered delay after delay. Not quite as delayed as \\\"The Thief and the Cobbler\\\", but still, delayed by a lot. So much so that they let Ascari and Villoresi race for other teams while they continued to toil over their chassis.\\n\\nCastellotti, meanwhile, didn't follow down their path. He remained loyal to Lancia and, as their 'junior driver', was given the opportunity to race in a multitude of sportscar events. However, instead of anticipated success, Eugenio recorded DNF after DNF after DNF in many sportscar races, from the Sebring 12 hours to Mille Miglia to Targa Florio, poor Castellotti didn't have **anything** going right for him in 1954, save for winning his second Italian Mountain Championship on the trot in hillclimbing. And when Lancia were *finally* able to enter their long-awaited D50 in the season-closing race at Spain, they only had enough for Ascari and Villoresi, leaving Castellotti by the sidelines once again.\\n\\n1955 came around, and finally Lancia were ready with their D50 project. It took a while, but come the Argentine Grand Prix, Eugenio was all ready to step foot into the big leagues, Formula One. However, as most people who know their F1 history, the 1955 Argentine Grand Prix was probably the **worst race possible** to take your first steps in F1. The heat was held in mind-melting temperatures reaching *40 degrees Celsius*.\\n\\nNot only was it mind-melting, but also car-melting. This proved to be the case when Villoresi's Lancia gave up on lap **2**. As shared drives were essentially part-and-parcel with Formula One at the time, Castellotti was relieved by Villoresi on lap 20 to cut his first Formula One start short. Probably mercifully, too, as Villoresi wrecked the Lancia just 15 laps later.\\n\\nThe next race for him at Monaco, though, finally showed off what Castellotti was capable of. He qualified a stellar *fourth* in just his second race for Lancia, and in his first lap, moved up the field with a great start and this [*downright bonkers overtake for 1955 standards*](https://youtu.be/XSqH-uf1-xQ?t=108) on Stirling Moss at the station hairpin to take second on lap one. After a crazy battle with Moss early on, Moss's Mercedes dominance won out and Castellotti settled into a battle for third with teammate Ascari and Jean Behra.\\n\\nIn that battle, though, Castellotti cut a tyre after driving too aggressively and mounting several kerbs on the streets of Monaco, forcing a pitstop that dropped him to ninth, essentially being a precursor to the crazed, balls-out driving style that Castellotti would go on to develop with time in future Formula One starts. However, the dashing youngster here was only in his second race, and yet, thanks to some retirements and some seriously impressive driving, Castellotti came in **second place** in just his second Grand Prix start, a result that undoubtedly would've been a victory had it not been for the tyre trouble mentioned earlier.\\n\\nOne of those retirements, though, was his mentor and teammate, Ascari, as he ploughed through barriers and past bollards into the Monaco harbour in one of F1's most famous crashes never filmed, primarily because all the focus was on Stirling Moss' smoking Mercedes just ahead in the pitlane. Despite the frightening looking crash and the aftermath, Ascari mercifully left the accident scene with nothing more than a broken nose.\\n\\nThis was bad for Castellotti, as just the week after that, he and Ascari were teaming up to drive a Ferrari 750 Monza for the Supercortemaggiore in Monza. On the 26th of May, 1955, Castellotti and Villoresi were ready to test the unpainted, newly developed car before the race, and had invited Ascari to spectate, probably to give advice to young Eugenio like he always had, or just to see how the car handled before their upcoming event. Impulsively, during a break in action before lunch, Ascari elected to drive the car for a few laps. Some say it was to test the car he was due to race in a couple of days, others say it was to test his psyche and get back on track after his mammoth crash in Monaco.\\n\\nDressed in a suit and tie, he didn't have any racing gear on him, especially his lucky blue helmet, still under repair from his accident in Monaco. So, without thinking, he borrowed Castellotti's helmet and set out for a few laps. On the third lap, at Curva Vialone, Ascari spun out, either due to ill-effects from Monaco, distractions from his flapping tie, or someone or something crossing the track ahead of him. The car proceeded to somersault, killing the two-time champion.\\n\\nCastellotti was distraught. He was one of the first at the scene and saw his close friend and mentor pass in front of his very eyes. He lent Ascari his helmet that allowed him to test the car in the first place. Emotionally, he was probably a mess. Yet, at the same time, he was probably more driven than ever.\\n\\nWhich was why it came to be a shock when Lancia announced their immediate withdrawal from Formula One. It was partially due to the loss of their stalwart, but financial problems had also been piling on the Italian outfit, which was the main reason for their withdrawal. Unperturbed, though, Castellotti begged them to participate in the upcoming Belgian Grand Prix. Lancia couldn't send their team to Belgium, though, so they just lent Castellotti two of their D50s to enter as a privateer.\\n\\nFull of emotion, Eugenio arrived at Spa with a fire lit under him. The Mercedes team were clearly the team to beat, and with the revolutionary W196, looked near unstoppable through the season. Castellotti hadn't even been to Spa before today. And yet, on the first day of practice, his lap times were falling rapidly on the near nine-mile circuit. As the day came to a close, Castellotti had already run a *full-race distance* in practice. But on one of his last laps, the time he set was a purely incredible 4:18.1. Half a second better than Fangio, a full second ahead of Moss. And, luckily for Castellotti, the second day was completely rained out.\\n\\nAll this meant that Eugenio Castellotti, in just his **third** Grand Prix, following the recent death of his mentor and close friend, after the withdrawal of his team and entering the race *all by himself*, had just beaten the near-unbeatable Mercedes to become the **youngest polesitter in Formula One history**.\\n\\nAlthough his Lancia was eventually outpaced on race day by the Mercs and retired from a still-impressive third place with transmission issues, there was almost no doubt in many people's minds, that he truly was the next Ascari.\\n\\nWell, one of *two* potential future Ascaris.\\n*****\\n\\n### Part 3: Ferrari's Future ###\\n\\nAfter the closure of Lancia, Ferrari had snapped up most of their assets, and this included Castellotti, the Prancing Horse having been impressed by the promise shown by their young countryman. Indeed, it was out with the old, in with the new at Ferrari, as Nino Farina was forced to scale back his racing commitments due to persistent injuries, and so in stepped Castellotti for the next race at the Netherlands.\\n\\nThe next two results weren't exactly the greatest for Eugenio, salvaging a 5th in a troublesome Ferrari in Zandvoort and transmission issues plaguing him all weekend in Aintree, retiring from his main entry, and substituting Mike Hawthorn late in the race only guaranteed them a then sixth place finish, which scored them *nul points* back in the 50's.\\n\\nThe season-ending Italian Grand Prix, though, was his first real great race for Ferrari. Having acquired the Lancia D50's, Ferrari elected to race them for the Italian Grand Prix, seeing them as much faster than the Ferrari 625s and 555s they had with them. However, throughout practice, both D50's suffered intense tyre wear with the Ferrari-contracted Englebert tyres on the oval banking as opposed to the Pirelli tyres it was designed for. So, after qualifying 4th, Castellotti switched to the supposedly lesser-competitive 555 for the race. For the opening portions of the race, he surprised everyone by sticking with the four dominant Mercedes machines, giving the tifosi something to cheer about. However, ragged Eugenio slowly fell off the pace. And up stepped his rival.\\n\\nLuigi Musso was born into nobility in Rome in 1924. Being a few years Castellotti's senior, he had an earlier start into racing than him, and had impressed for the Maserati in most of his starts, including a podium in the Spanish Grand Prix and a couple of wins in non-championship Grand Prix. And him being a Roman driving for Maserati, he simply couldn't let a Milanese driving for Ferrari beat him in their home Grand Prix. So, for a good twenty-odd laps, the two battled hard, being separated by a matter of *inches* at some point in the Grand Prix. \\n\\nEventually, Castellotti won out as Musso's Maserati petered out after the intense battle. And with that battle won and the retirement of a few Mercedes machines, Eugenio salvaged a podium for Ferrari in their home race, ending the season with 12 total points. With other drivers like Farina and Hans Herrmann unable to complete a full season due to injury, and the inconsistency of others like Trintignant and Musso in such a short season, these 12 points were enough for Castellotti to finish **third** in the World Driver's Championship, best of the rest behind the Mercedes duo of Fangio and Moss. This was the best championship finish for a debutant in F1, a record that would be equalled, but never beaten for **41 years** before Jacques Villeneuve finished 2nd in the 1996 championship, a record equalled by Lewis Hamilton in 2007.\\n\\nEnzo Ferrari kept his services for 1956, where they'd be using the D50, now badged as a 'Lancia-Ferrari', that Castellotti had used to good effect the previous season. However, Castellotti wasn't going to spearhead the team, as with Mercedes' withdrawal from motorsport following the Le Mans disaster, Fangio made waves by signing for Ferrari. Also signing for Ferrari was Luigi Musso, setting the scene for a potential rivalry between the two rising Italian stars. Among the two, though, Ferrari seemed to prefer Castellotti, being selected to pair with Fangio for major endurance races that year, while Musso was stuck with Schell.\\n\\nIn Formula One, though, Musso got the early upper hand when a shared drive with Fangio led to victory for the pair of them, though that only really came to pass when multiple drivers, including Castellotti, had all sorts of mechanical issues. \\n\\nIf you recall from earlier, Castellotti had developed a reputation as being a wild driver, often blasting off straight from the gate before wearing out as the race goes on. However, given all that I've seen from nearly every source about Castellotti's wild driving style, it's all the more puzzling that his greatest triumphs in 1956 came in *endurance racing*, out of all things. The first of such victories came in the 12 hours of Sebring, where he and Fangio fought off the challenge of the Jaguar squad in the fastest Sebring 12 hours at the time. His second victory, however, was more impressive.\\n\\nBack in the previous year's Mille Miglia, Castellotti was embarrassingly dominated by Moss and Denis Jenkinson before his retirement with tyre issues. He would find out later that Moss and Jenkinson were using a navigation system, which would later turn out to be a prototype for pace notes now commonly used in rallying events. Upon Jenkinson letting him know of the news, Eugenio simply shook his head, saying he couldn't possibly drive with such a navigation system.\\n\\nBesides, come 1956, Castellotti would enter the Mille Miglia *by himself*, so there was no navigator for him to follow. If that wasn't so much of a disadvantage for him, it was made worse as the weather conditions started to turn especially nasty. Normally, drivers as manic as him would fall victim to the conditions. Indeed, another young, manic driver attempting to make a name for himself that race was Wolfgang von Trips, who, while chasing the leading driver, *tripped* over the tricky conditions. (*I swear I'm a natural comedian guys*).\\n\\nBut that leading driver von Trips was chasing was none other than Castellotti himself. In rain that essentially blinded the roads ahead and ferocious winds, Castellotti wasn't even fazed. He never put a foot wrong. And apart from a short stint where he had to refuel, through each control point on the course, Castellotti **never lost the lead** for the full 1000 miles.\\n\\nYes, you heard right. **Never. Lost. The. Lead.**\\n\\nDenis Jenkinson, co-driver to Moss, would comment on the event: [\\\"We were not racing against Musso, Castellotti or Fangio; it seemed that we were fighting for the mere right to go on living.\\\"](https://www.motorsportmagazine.com/archive/article/june-1956/26/another-mille-miglia-moss). And yet, in this battle for survival, Castellotti turned it into a driving masterclass. And, despite the undeniable truth that having a navigator in a thousand-mile road race would certainly help, Castellotti pulled this off all by himself. What an absolute legend.\\n\\nBack to Formula One, though, his performances weren't so legendary. One thing he was very good at was qualifying, as evidenced when [StatsF1 placed him **13th** all-time in best average qualifying performances (min. 10 GP starts)](https://www.statsf1.com/en/statistiques/pilote/divers/grille-moyenne.aspx). On race-day, his starts would be fantastic, but more often than not, a whole bevy of mechanical problems would drop him down the grid. This was the case for most of 1956, retiring from 3rd in Argentina, 5th in Monaco and 4th in Belgium despite having promising starts in all these races.\\n\\nIn France, he got a similarly fantastic start, and actually led for a few early laps before seceding the lead to Fangio. However, once Fangio retired, Castellotti was all but in the clear and seemed to be destined to win his first ever Grand Prix and the spearhead in a Ferrari 1-2. However, teammate Peter Collins was competing for the title, and so the order was given through the pit-board for Collins to pass Castellotti for the win. One of the earliest examples of team-orders lost Castellotti his chance for an F1 victory, but he still trailed Peter Collins right on his bumper, being separated by just *0.3 seconds* at the line.\\n\\nAfter these performances, though, the wild side of Eugenio came back to form, having probably the worst race of his F1 career to date in Silverstone, dicing with many local entries and spinning out on the opening lap at the Nurburgring. Teammate and rival Musso had also had a rough season, with a crash in a sportscar event sidelining him for a couple events, not to mention every other race since his shared win in Argentina has ended with him failing to finish. With just one event left in the calendar, their home race in Monza, both Castellotti and Musso were determined to make the race their highlight of 1956. And neither wanted to give way.\\n\\nTheir team leader, Fangio, was well aware of their competition, despite being in a championship hunt at the time. He also remembered how the D50s ripped every tyre to shreds in the last Italian Grand Prix, so he gave Eugenio and Musso sage advice. He'd lead the way so Castellotti and Musso could pace their laps without destroying any tyres. With ten laps, he'd pull over and let Castellotti and Musso duke it out for the finish, *keirin style.*\\n\\n*Measured and steady* was the advice from Fangio to the young drivers. But they didn't listen.\\n\\nInstead, Musso and Castellotti went for a ***BALLS OUT, FLAT-OUT, BAT OUT OF HELL, NO FUCKS GIVEN, MY DICK IS BIGGER THAN YOURS, TRADIN' PAINT*** scrapheap for the lead the *moment* the green flag dropped. Castellotti was the leader for the majority of this intense battle, but Musso was nowhere near giving up. It was the battle the tifosi wanted, the two Italian drivers for the Prancing Horse, battling for supremacy on hallowed racing ground.\\n\\nOf course, this battle couldn't last forever. Fangio's advice was right. The tyres on both Musso's and Castellotti's cars didn't last the whole race. They didn't even last for half distance. Heck, not even *quarter-distance*.\\n\\nBoth of their tyres completely wore out their threads by **lap 4**. You heard me. Lap. FOUR.\\n\\nWorse for Castellotti, his stop was a measure longer than Musso's and was left playing the catch-up game. Paying no heed to his earlier lesson or Fangio's prior advice, he continued the ***PEDAL TO THE METAL, I DON'T GIVE A DAMN, DON'T LIFT OR YOU'RE A PUSSY*** strategy to catch up to Musso. And by lap *nine*, his tyre punctured yet again and sent him spinning onto the main straight, ending his race.\\n\\nBy all accounts, his 1956 season, results wise, wasn't the best. Just the two points finishes left him sixth in the championship, though to be fair his pace was *far, far greater* than those results indicate. In fact, over on GP Rejects, I ran an alternative championship where points were scored after just three laps. And, spoilers, [CASTELLOTTI FREAKIN' WON](https://gprejects.com/forum/viewtopic.php?f=12\\u0026t=7589#p350138) (though admittedly thanks to dropped scores, but **still**).\\n\\nWhat's more, he had plenty of things to smile about that year outside of F1. Securing his seat at Ferrari. Sharing the win with *El Maestro* at the Sebring 12 Hours. And finally **dominating the field** at the Mille Miglia. And it's not just racing achievements Castellotti had to smile about as well.\\n*****\\n\\n### Part 4: Il Bello ###\\n\\nMost drivers from the 50's had cool-ass nicknames. Fangio was El Maestro, also known as *'The Master'*. Jose Froilan Gonzalez was known as *The Pampas Bull*. Luigi Fagioli was known as the goddamn *ABRUZZI ROBBER*. Seriously, if you were a racing driver in the 50's, it was almost part and parcel that you'd get a dope-ass nickname as a reward.\\n\\nSo, when Castellotti got his nickname, there was only one obvious choice: *Il Bello*. Put simply, **The Beautiful**.\\n\\nAnd goddamn, he was [*beautiful*](https://cdn-8.latimages.com/images/mgl/ZnzlQo/s4/1017237256-LAT-19550716-315_29.jpg). So. Damn. Beautiful. That perfect chin, the neat at hell hairstyle, those pecs...\\n\\n...wait, where was I? Right. Ahem. Yeah, he was called Il Bello, and for good reason. Castellotti was *ridiculously vain*. He wore the finest of suits and shirts tailored exactly to how he wanted it. He kept his hair in perfect shape. He was even self-conscious about his lack of height, so much so that he often wore lifts in his shoes. He didn't earn the nickname Il Bello for nothing. And likewise, he didn't put the nickname to waste either.\\n\\nPartly because of his vanity, Castellotti was definitely a ladies man. He had many short flings throughout his racing career, all of which was followed relentlessly through gossip magazines. But, in 1956, he finally found someone to settle down with. And it couldn't have come with someone more high-profile.\\n\\nDelia Scala was one of Italy's leading actresses at the time, and through 1956 and 1957, was beginning the transition to the silver screen to become one of Italy's pioneering television personalities. In the summer of 1956, she met Castellotti at a restaurant, and started talking to him simply because the pale blue colour of his trousers matched the car. Eventually, conversations about matching colours became a date, and then a relationship. A relationship that apparently newspaper reporters **could not get enough of**. Italy's future legend in motor racing pairs up with leading young actress, both of whom were ridiculously hot. A gossip writer's wet dream.\\n\\nThis was two people's nightmare, though. First was Castellotti's mother, who upon meeting Scala for the first time, took her by the hand and said \\\"*You look like a waitress, the kitchen is over there*\\\". Good going, Mrs. Castellotti.\\n\\nSecond, and maybe more importantly, was Enzo Ferrari. He hated it when his drivers would get all caught up in intense romance, furthermore if it affected them emotionally, and *even more so* if it said relationship was spread over nearly every damn newspaper in Italy. He thought it'd affect their race pace and their drive to continue. And, for a while, it seemed Enzo was right.\\n\\nCastellotti and Scala proposed and planned to get married in April. However, between the two, there was an intense discussion that turned into a disagreement. Scala wanted Castellotti to give up driving, fearing that it was getting too dangerous for him. However, Castellotti told Scala that *she* should give up acting as it would cost them time together when he wasn't racing elsewhere. I don't know where the two stood on the compromise, but it was certain that Castellotti would probably have to focus less on racing should he wish to remain with Scala.\\n\\nHowever, on track, results were still going pretty well for Castellotti in 1957, claiming *both* first and third in his respective driver lineups in the 1000 km of Buenos Aires. Additionally, in the Argentine Grand Prix for 1957, he took an early lead and was launching a serious challenge to the now-dominant Maseratis, but his Ferrari, like all the other Ferraris, gave up the ghost while running in third.\\n\\nAs was tradition in those days, the Argentine Grand Prix and other events in South America was run in their January summer, then Formula One would take a break until May to restart that season in Monaco. With marriage around the corner, Castellotti took the time to take a nice vacation in Florence with his bride-to-be Scala, who was booked for a play there for the time being. Call it a pre-marriage honeymoon, if you will.\\n\\nA pre-marriage honeymoon that got rudely interrupted by none other than *Enzo Ferrari*. He rang up Castellotti in a huff and instructed him to go to Modena the next day to test the Ferrari. But this was more than just some last-minute test set up by Ferrari or a call for Castellotti to deputize for another driver.\\n\\nAs it turns out, Jean Behra and Maserati were testing at Modena that day, and Enzo found out that they had beaten Ferrari's ultimate lap record around the Autodrome. According to some people, most notably Luigi Villoresi, Enzo Ferrari had placed a lunchtime wager on the lap record, so when he saw it got beaten, he called the first person he could find - that being Eugenio - to come down to Modena to *take that record back*.\\n\\nCastellotti was undoubtedly fuming, having had precious time with his fianc\\u00e9e interrupted for a stupid lap record. But he had to listen to Enzo. Nobody dared to oppose him. On March 14th, he left Florence at 4 a.m. to make the long drive to Modena, to get suited up and get ready for practice.\\n\\nOn just his second or third flying lap, Castellotti lost control in the esses at the start of the lap, and the car overturned through a fence and into a (*mercifully empty*) grandstand. Castellotti was thrown out. The local parish priest, Don Sergio Mantovani, was present to read him the last rites as he laid dying on the track. He was only 26 years old. His wedding with Scala was just twenty-five days away.\\n\\nThe reason for the crash has been disputed. Jean Behra, present at the track having set the aforementioned lap record, insisted there was a problem with the gearbox, having heard it shift to neutral just before the crash. Other sources feel it was just a mistake in downshifting. Most attribute this error to the fact that Castellotti was robbed of a holiday with Scala for the pettiest of reasons, thus the claim that his mind was not in the right place. This theory was exacerbated by the fact he had to wake up extremely early and drive a considerable distance to reach Modena in the first place. The *true cause* of his death was still unknown. Multiple sources claim that Enzo Ferrari, upon hearing news of the crash, said something to the tune of, \\\"Castellotti? Dead? What a pity. *How's the car?*\\\"\\n\\nWhatever it was, a petty debate over a trivial lap record robbed Formula One of a rising star in his prime. One who could've done so much more. **And yet,** despite this, his story in motor racing is extremely colourful. \\n\\nHe scored a podium in just his second start in F1. He was the protege to Alberto Ascari, and also heavily involved in the scene of his death. Impacted by this, he convinced a major manufacturer shutting up shop to loan him a chassis, with which he would become the *youngest ever polesitter* in F1 at the time. He would finish his rookie season third, a feat that remained unbeaten for 41 years. He won the Mille Miglia *all by himself* in downright atrocious conditions. He had a fiery rivalry with a fellow compatriot to see who would be their country's next future star. He married one of Italy's most famous celebrities at the time. And he died because of a wager set over lunch.\\n\\nThat is the story of '*Il Bello*', Eugenio Castellotti.\\n\\n*****\\n\\nSources:\\n\\n[**The Limit: Life and Death in Formula One's Most Dangerous Era** by Michael Cannell](https://books.google.com.sg/books?id=4UjKS5w8udcC\\u0026pg=PT100\\u0026dq=castellotti+delia+scala\\u0026hl=en\\u0026sa=X\\u0026ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEILzAB#v=onepage\\u0026q=castellotti%20delia%20scala\\u0026f=false)\\n\\n[**Enzo Ferrari: A Life** by Richard Williams](https://books.google.com.sg/books?id=BfFHSYJwOUwC\\u0026pg=PA187\\u0026dq=castellotti+delia+scala\\u0026hl=en\\u0026sa=X\\u0026ved=0ahUKEwiEitDM_ZfiAhV363MBHVmOCgkQ6AEIKTAA#v=onepage\\u0026q=castellotti%20delia%20scala\\u0026f=false)\\n\\n[**Too Fast A Life** by Martin Shepherd](https://books.google.com.sg/books?id=gEFLDwAAQBAJ\\u0026pg=PT126\\u0026dq=castellotti+delia+scala\\u0026hl=en\\u0026sa=X\\u0026ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEINTAC#v=onepage\\u0026q=castellotti%20delia%20scala\\u0026f=false)\\n\\n[Motorsport Magazine (This plus many of their contemporary race reports)](https://www.motorsportmagazine.com/archive/article/february-1998/65/young-bloods) -- [8W @ Forix](http://forix.autosport.com/8w/castellotti.html) -- [Motorsport Memorial](http://www.motorsportmemorial.org/focus.php?db=ct\\u0026n=63) -- [Ferrari Owner's Club](http://archive-focgb.co.uk/happenings/2001/january/castellotti.html) -- [Scuderia Ferrari Legends](http://www.scuderia-legends.it/eugenio.htm)\\n\\n[F1 Racing (via PressReader)](https://www.pressreader.com/uk/f1-racing-uk/20180501/281655370651027) -- [Veloce Today](https://www.velocetoday.com/eugenio-castellotti-by-graham-gauld/) -- [Racing Sportscars](https://www.racingsportscars.com/driver/results/Eugenio-Castellotti-I.html) -- [StatsF1](https://www.statsf1.com/en/eugenio-castellotti.aspx) -- [Revs Institute](https://revsinstitute.org/the-collection/1955-lancia-d50/)\", \"author_fullname\": \"t2_go65n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testellotti\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqi80q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558280545.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558308654.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey y\\u0026#39;all, been a while away thanks to university, and it kinda sucked the wind out of me writing stuff about F1 for a while. But never mind that, I\\u0026#39;m back.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis will be the start of a little series of mine, where I focus on F1 drivers that \\u003Cem\\u003Eshould\\u003C/em\\u003E be recognised for their stories behind their career, yet for some reason, are barely footnotes in history. You all know the story of Ascari and Fangio, of Lauda and Hunt, of Prost and Senna, of Schumacher and Hakkinen and so on. However, there are many more stories of drivers that don\\u0026#39;t receive the attention they deserve. Whether stories of success or failure, glory or ignominy, tragedy or happiness, these stories are worthy of remembering and retelling. This little series of posts are not Random Driver Highlights, given how they\\u0026#39;re not...y\\u0026#39;know, random. But instead, they\\u0026#39;ll each have their own post, cause they deserve it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first driver I want to spotlight is an Italian driver for Ferrari in the 1950\\u0026#39;s. His story isn\\u0026#39;t \\u003Cem\\u003Ethat\\u003C/em\\u003E unknown, but compared to his contemporaries, it\\u0026#39;s very, very hidden unless you search for his name. He was F1\\u0026#39;s youngest polesitter at the time, with that record lasting for 13 years. He is directly involved with the death of a legend of a sport. He dated a rather famous Italian celebrity that got them on gossip pages. And he was very, \\u003Cstrong\\u003Every\\u003C/strong\\u003E handsome. Like, ridiculously handsome.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the story of Eugenio Castellotti.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"https://www.classicdriver.com/sites/default/files/styles/article_full/public/183477804a.jpg?itok=mIrjs49d\\\"\\u003EEugenio Castellotti\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESTATISTICS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENationality:\\u003C/strong\\u003E Italian\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EYears in F1:\\u003C/strong\\u003E 1955-57\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETeams Raced For:\\u003C/strong\\u003E Lancia, Ferrari\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEntries:\\u003C/strong\\u003E 14\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EStarts:\\u003C/strong\\u003E 14\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPodium Finishes:\\u003C/strong\\u003E 3\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPole Positions:\\u003C/strong\\u003E 1 (\\u003Cem\\u003E1955 Belgian Grand Prix\\u003C/em\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPoints:\\u003C/strong\\u003E 19.5\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHighest Finish:\\u003C/strong\\u003E 2nd (\\u003Cem\\u003ETwice -- 1955 Monaco and 1956 French Grands Prix\\u003C/em\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGood looks:\\u003C/strong\\u003E On a scale from 1-10, \\u003Ca href=\\\"http://formula-fan.ru/assets/images/drivers/Castellotti_Eugenio.jpg\\\"\\u003E\\u003Cem\\u003Ehe was a goddamn 17\\u003C/em\\u003E\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 1: Baby You\\u0026#39;re a Rich Kid\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EEvery report on how Castellotti began his career states that it was due to his wealth, being able to buy a Ferrari sportscar at the young age of 20. Most 20 year-olds would be worrying about paying off their university fees, but here was Eugenio, buying himself a Ferrari. So, naturally, the narrative was that he had a mollycoddled childhood by two rich, wealthy parents and was able to buy his way into motorsport. Right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell...not quite. I think. His mother, Angela, according to some accounts, was unmarried and \\u003Cem\\u003Eonly sixteen\\u003C/em\\u003E when she gave birth to Eugenio. Not to mention that his father, a very, \\u003Cem\\u003Every\\u003C/em\\u003E wealthy lawyer, reportedly first met Eugenio at the age 9. Most other sources just hook onto the fact that his family was wealthy, but if the above is true, that his dad impregnated someone at 16 and didn\\u0026#39;t bother taking care of their child until nine years later, life may not have been \\u003Cem\\u003Ethat\\u003C/em\\u003E rosy for young Eugenio as some sources claim.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEugenio, however, quickly gained a fascination for cars, and supposedly learned how to drive through the Castellotti\\u0026#39;s family driver. As he grew up, he even tried to fake his age to obtain a driving license. Despite the probable family tensions between his mom and his dad for, well, \\u003Cstrong\\u003Ethat\\u003C/strong\\u003E situation, there was one thing that both his parents agreed on: that Castellotti \\u003Cem\\u003Eshould not race\\u003C/em\\u003E. They became increasingly restrictive with Castellotti\\u0026#39;s passion, but that probably drove young Eugenio further into getting a racing career.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis was until his dad died when Eugenio was either 12 or 19. I don\\u0026#39;t know this for sure as sources are picky, but more sources point towards 19. Because, when his dad died, he left a massive, and I mean \\u003Cstrong\\u003Emassive\\u003C/strong\\u003E, inheritance to Eugenio. I don\\u0026#39;t know how much, but damn if it didn\\u0026#39;t look like Loadsamoney. From there, Eugenio went into a manic shopping spree, often fancying finely-tailored suits here and there. However, still against his mother\\u0026#39;s wishes, Eugenio used his money to explore his passion, motor racing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd that\\u0026#39;s how Eugenio Castellotti bought his first Ferrari, a 166MM sportscar, at the young age of 20. But, unlike most ridiculously rich youth of the generation, he didn\\u0026#39;t buy the 166MM to stare at it in his garage every once in a while. He was going to \\u003Cstrong\\u003Erace it\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, Castellotti figured that the best way to start off racing wouldn\\u0026#39;t be a few simple club races, oh no. His first race was the gruelling 1,080-kilometre Tour of Sicily, where he unsurprisingly failed to finish. Not to be perturbed by this little blip, Castellotti opted to enter the frikin\\u0026#39; \\u003Cstrong\\u003EMille Miglia\\u003C/strong\\u003E, or 1000 Miles in Italian, probably one of the grandest road races ever. There, he actually finished a credible 6th in class and 50th in an overall field of \\u003Cem\\u003E322 starters\\u003C/em\\u003E. As inexperienced as he was, Castellotti proved he wasn\\u0026#39;t just a regular rich kid who bought his way into racing. His first two races were only two of the toughest sportscar races, and by golly did he do well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInto 1952, and Castellotti\\u0026#39;s form in sportscars just got better and better over time, leading to his first win in the Gold Cup at Pescara. Buoyed by all this success, he felt it was about time he entered the grandest event of all, the Monaco Grand Prix. However, it wouldn\\u0026#39;t be his first Formula One start. The Monaco Grand Prix was going through some financial difficulties, and with radical changes in rules in the World Driver\\u0026#39;s Championship, the organisers played a \\u003Cem\\u003Esafe bet\\u003C/em\\u003E and hosted the 1952 Grand Prix for sports cars instead.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s not to say the field was any weaker, though. A number of British up-and-comers like Stirling Moss and Peter Collins entered, not to mention crafty French veterans in Robert Manzon and Louis Rosier. Entering a Grand Prix of such prestige so early in his career, Castellotti would have his work cut out for him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, Castellotti showed an oddly cool head when everyone lost theirs, especially when Stirling Moss and other drivers ploughed into Reg Parnell\\u0026#39;s broken down Aston Martin. Following the pile-up it would be Castellotti who would inherit the lead from Vittorio Marzotto. However, the heat would take its both drivers and cars, and both had to make a mandatory pit stop to attend to both the cars and drivers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAccording to urban legend, when Castellotti stopped, he also requested for a \\u003Cstrong\\u003Ebottle of Coke\\u003C/strong\\u003E. Apparently, this slowed Castellotti\\u0026#39;s stop significantly, maybe because Coke was hard to source in Monaco, or Castellotti just had to sip Coke leisurely, I don\\u0026#39;t know. Whatever the case, this was enough to hand the lead back to Marzotto, who went on to win the Monaco Grand Prix. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti\\u0026#39;s performance, where he lost the Monaco Grand Prix to a bottle of Coke, didn\\u0026#39;t go unnoticed, though, and despite a lucky escape in Vila Real where marshals carried him out of the way from an oncoming pileup, through the next two years, including a win at the Portuguese Grand Prix in 1952 and the Messina 10 hours in 1953.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHis shot at the big time, though, was just on the horizon. And it would come from none other than the \\u003Cem\\u003Ereigning champion of Formula 1\\u003C/em\\u003E, Alberto Ascari.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 2: Lancia\\u0026#39;s Lancer\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EIn his career so far, Castellotti had just been entering races as a privateer, mainly entering with Ferrari\\u0026#39;s purchased from his father\\u0026#39;s inheritance. Being a relatively youthful driver in the sport, he was seen as one of Italy\\u0026#39;s brightest young talents to carry Italy\\u0026#39;s motorsport image into the future, so he was probably in high demand. It would probably be just a matter of time before he got snapped up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen he met Alberto Ascari. Holder of the record for most consecutive victories in F1 at the time (\\u003Cem\\u003Eand all the way until 2013\\u003C/em\\u003E) and had secured his second consecutive World Driver\\u0026#39;s Championship by the time of the Italian Grand Prix, when he met the young Castellotti. Despite his service for Ferrari, pay disputes and other issues led the current reigning champion to leave the Prancing Horse and join, out of all teams, Lancia, who were all set to make their leap into Formula One.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd, out of all people, Ascari hand-picked both his mentor, Luigi Villoresi, and his now-protege, \\u003Cstrong\\u003EEugenio Castellotti\\u003C/strong\\u003E, to join him in Lancia. Yep, he was handpicked by probably the best driver in the world to not only be his teammate for the upcoming season, but also taken under his wing as his \\u003Cem\\u003Eprotege\\u003C/em\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELancia had doubts over his drive, though, after a dismal showing at the Nurburgring 1000km, but those doubts were cast aside after a brilliant third place in the Carrera Panamericana. Heck, sources say him and teammate Piero Taruffi could have actually contested for the win, but received orders from above to hold station behind leader Fangio to play it safe, already having a massive lead to the rest of the field and to keep a 1-2-3 finish for Lancia.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, for 1954, Lancia\\u0026#39;s F1 project encountered delay after delay. Not quite as delayed as \\u0026quot;The Thief and the Cobbler\\u0026quot;, but still, delayed by a lot. So much so that they let Ascari and Villoresi race for other teams while they continued to toil over their chassis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti, meanwhile, didn\\u0026#39;t follow down their path. He remained loyal to Lancia and, as their \\u0026#39;junior driver\\u0026#39;, was given the opportunity to race in a multitude of sportscar events. However, instead of anticipated success, Eugenio recorded DNF after DNF after DNF in many sportscar races, from the Sebring 12 hours to Mille Miglia to Targa Florio, poor Castellotti didn\\u0026#39;t have \\u003Cstrong\\u003Eanything\\u003C/strong\\u003E going right for him in 1954, save for winning his second Italian Mountain Championship on the trot in hillclimbing. And when Lancia were \\u003Cem\\u003Efinally\\u003C/em\\u003E able to enter their long-awaited D50 in the season-closing race at Spain, they only had enough for Ascari and Villoresi, leaving Castellotti by the sidelines once again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E1955 came around, and finally Lancia were ready with their D50 project. It took a while, but come the Argentine Grand Prix, Eugenio was all ready to step foot into the big leagues, Formula One. However, as most people who know their F1 history, the 1955 Argentine Grand Prix was probably the \\u003Cstrong\\u003Eworst race possible\\u003C/strong\\u003E to take your first steps in F1. The heat was held in mind-melting temperatures reaching \\u003Cem\\u003E40 degrees Celsius\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot only was it mind-melting, but also car-melting. This proved to be the case when Villoresi\\u0026#39;s Lancia gave up on lap \\u003Cstrong\\u003E2\\u003C/strong\\u003E. As shared drives were essentially part-and-parcel with Formula One at the time, Castellotti was relieved by Villoresi on lap 20 to cut his first Formula One start short. Probably mercifully, too, as Villoresi wrecked the Lancia just 15 laps later.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next race for him at Monaco, though, finally showed off what Castellotti was capable of. He qualified a stellar \\u003Cem\\u003Efourth\\u003C/em\\u003E in just his second race for Lancia, and in his first lap, moved up the field with a great start and this \\u003Ca href=\\\"https://youtu.be/XSqH-uf1-xQ?t=108\\\"\\u003E\\u003Cem\\u003Edownright bonkers overtake for 1955 standards\\u003C/em\\u003E\\u003C/a\\u003E on Stirling Moss at the station hairpin to take second on lap one. After a crazy battle with Moss early on, Moss\\u0026#39;s Mercedes dominance won out and Castellotti settled into a battle for third with teammate Ascari and Jean Behra.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn that battle, though, Castellotti cut a tyre after driving too aggressively and mounting several kerbs on the streets of Monaco, forcing a pitstop that dropped him to ninth, essentially being a precursor to the crazed, balls-out driving style that Castellotti would go on to develop with time in future Formula One starts. However, the dashing youngster here was only in his second race, and yet, thanks to some retirements and some seriously impressive driving, Castellotti came in \\u003Cstrong\\u003Esecond place\\u003C/strong\\u003E in just his second Grand Prix start, a result that undoubtedly would\\u0026#39;ve been a victory had it not been for the tyre trouble mentioned earlier.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of those retirements, though, was his mentor and teammate, Ascari, as he ploughed through barriers and past bollards into the Monaco harbour in one of F1\\u0026#39;s most famous crashes never filmed, primarily because all the focus was on Stirling Moss\\u0026#39; smoking Mercedes just ahead in the pitlane. Despite the frightening looking crash and the aftermath, Ascari mercifully left the accident scene with nothing more than a broken nose.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis was bad for Castellotti, as just the week after that, he and Ascari were teaming up to drive a Ferrari 750 Monza for the Supercortemaggiore in Monza. On the 26th of May, 1955, Castellotti and Villoresi were ready to test the unpainted, newly developed car before the race, and had invited Ascari to spectate, probably to give advice to young Eugenio like he always had, or just to see how the car handled before their upcoming event. Impulsively, during a break in action before lunch, Ascari elected to drive the car for a few laps. Some say it was to test the car he was due to race in a couple of days, others say it was to test his psyche and get back on track after his mammoth crash in Monaco.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDressed in a suit and tie, he didn\\u0026#39;t have any racing gear on him, especially his lucky blue helmet, still under repair from his accident in Monaco. So, without thinking, he borrowed Castellotti\\u0026#39;s helmet and set out for a few laps. On the third lap, at Curva Vialone, Ascari spun out, either due to ill-effects from Monaco, distractions from his flapping tie, or someone or something crossing the track ahead of him. The car proceeded to somersault, killing the two-time champion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti was distraught. He was one of the first at the scene and saw his close friend and mentor pass in front of his very eyes. He lent Ascari his helmet that allowed him to test the car in the first place. Emotionally, he was probably a mess. Yet, at the same time, he was probably more driven than ever.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhich was why it came to be a shock when Lancia announced their immediate withdrawal from Formula One. It was partially due to the loss of their stalwart, but financial problems had also been piling on the Italian outfit, which was the main reason for their withdrawal. Unperturbed, though, Castellotti begged them to participate in the upcoming Belgian Grand Prix. Lancia couldn\\u0026#39;t send their team to Belgium, though, so they just lent Castellotti two of their D50s to enter as a privateer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFull of emotion, Eugenio arrived at Spa with a fire lit under him. The Mercedes team were clearly the team to beat, and with the revolutionary W196, looked near unstoppable through the season. Castellotti hadn\\u0026#39;t even been to Spa before today. And yet, on the first day of practice, his lap times were falling rapidly on the near nine-mile circuit. As the day came to a close, Castellotti had already run a \\u003Cem\\u003Efull-race distance\\u003C/em\\u003E in practice. But on one of his last laps, the time he set was a purely incredible 4:18.1. Half a second better than Fangio, a full second ahead of Moss. And, luckily for Castellotti, the second day was completely rained out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll this meant that Eugenio Castellotti, in just his \\u003Cstrong\\u003Ethird\\u003C/strong\\u003E Grand Prix, following the recent death of his mentor and close friend, after the withdrawal of his team and entering the race \\u003Cem\\u003Eall by himself\\u003C/em\\u003E, had just beaten the near-unbeatable Mercedes to become the \\u003Cstrong\\u003Eyoungest polesitter in Formula One history\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlthough his Lancia was eventually outpaced on race day by the Mercs and retired from a still-impressive third place with transmission issues, there was almost no doubt in many people\\u0026#39;s minds, that he truly was the next Ascari.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, one of \\u003Cem\\u003Etwo\\u003C/em\\u003E potential future Ascaris.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 3: Ferrari\\u0026#39;s Future\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EAfter the closure of Lancia, Ferrari had snapped up most of their assets, and this included Castellotti, the Prancing Horse having been impressed by the promise shown by their young countryman. Indeed, it was out with the old, in with the new at Ferrari, as Nino Farina was forced to scale back his racing commitments due to persistent injuries, and so in stepped Castellotti for the next race at the Netherlands.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next two results weren\\u0026#39;t exactly the greatest for Eugenio, salvaging a 5th in a troublesome Ferrari in Zandvoort and transmission issues plaguing him all weekend in Aintree, retiring from his main entry, and substituting Mike Hawthorn late in the race only guaranteed them a then sixth place finish, which scored them \\u003Cem\\u003Enul points\\u003C/em\\u003E back in the 50\\u0026#39;s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe season-ending Italian Grand Prix, though, was his first real great race for Ferrari. Having acquired the Lancia D50\\u0026#39;s, Ferrari elected to race them for the Italian Grand Prix, seeing them as much faster than the Ferrari 625s and 555s they had with them. However, throughout practice, both D50\\u0026#39;s suffered intense tyre wear with the Ferrari-contracted Englebert tyres on the oval banking as opposed to the Pirelli tyres it was designed for. So, after qualifying 4th, Castellotti switched to the supposedly lesser-competitive 555 for the race. For the opening portions of the race, he surprised everyone by sticking with the four dominant Mercedes machines, giving the tifosi something to cheer about. However, ragged Eugenio slowly fell off the pace. And up stepped his rival.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuigi Musso was born into nobility in Rome in 1924. Being a few years Castellotti\\u0026#39;s senior, he had an earlier start into racing than him, and had impressed for the Maserati in most of his starts, including a podium in the Spanish Grand Prix and a couple of wins in non-championship Grand Prix. And him being a Roman driving for Maserati, he simply couldn\\u0026#39;t let a Milanese driving for Ferrari beat him in their home Grand Prix. So, for a good twenty-odd laps, the two battled hard, being separated by a matter of \\u003Cem\\u003Einches\\u003C/em\\u003E at some point in the Grand Prix. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEventually, Castellotti won out as Musso\\u0026#39;s Maserati petered out after the intense battle. And with that battle won and the retirement of a few Mercedes machines, Eugenio salvaged a podium for Ferrari in their home race, ending the season with 12 total points. With other drivers like Farina and Hans Herrmann unable to complete a full season due to injury, and the inconsistency of others like Trintignant and Musso in such a short season, these 12 points were enough for Castellotti to finish \\u003Cstrong\\u003Ethird\\u003C/strong\\u003E in the World Driver\\u0026#39;s Championship, best of the rest behind the Mercedes duo of Fangio and Moss. This was the best championship finish for a debutant in F1, a record that would be equalled, but never beaten for \\u003Cstrong\\u003E41 years\\u003C/strong\\u003E before Jacques Villeneuve finished 2nd in the 1996 championship, a record equalled by Lewis Hamilton in 2007.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEnzo Ferrari kept his services for 1956, where they\\u0026#39;d be using the D50, now badged as a \\u0026#39;Lancia-Ferrari\\u0026#39;, that Castellotti had used to good effect the previous season. However, Castellotti wasn\\u0026#39;t going to spearhead the team, as with Mercedes\\u0026#39; withdrawal from motorsport following the Le Mans disaster, Fangio made waves by signing for Ferrari. Also signing for Ferrari was Luigi Musso, setting the scene for a potential rivalry between the two rising Italian stars. Among the two, though, Ferrari seemed to prefer Castellotti, being selected to pair with Fangio for major endurance races that year, while Musso was stuck with Schell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Formula One, though, Musso got the early upper hand when a shared drive with Fangio led to victory for the pair of them, though that only really came to pass when multiple drivers, including Castellotti, had all sorts of mechanical issues. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you recall from earlier, Castellotti had developed a reputation as being a wild driver, often blasting off straight from the gate before wearing out as the race goes on. However, given all that I\\u0026#39;ve seen from nearly every source about Castellotti\\u0026#39;s wild driving style, it\\u0026#39;s all the more puzzling that his greatest triumphs in 1956 came in \\u003Cem\\u003Eendurance racing\\u003C/em\\u003E, out of all things. The first of such victories came in the 12 hours of Sebring, where he and Fangio fought off the challenge of the Jaguar squad in the fastest Sebring 12 hours at the time. His second victory, however, was more impressive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in the previous year\\u0026#39;s Mille Miglia, Castellotti was embarrassingly dominated by Moss and Denis Jenkinson before his retirement with tyre issues. He would find out later that Moss and Jenkinson were using a navigation system, which would later turn out to be a prototype for pace notes now commonly used in rallying events. Upon Jenkinson letting him know of the news, Eugenio simply shook his head, saying he couldn\\u0026#39;t possibly drive with such a navigation system.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBesides, come 1956, Castellotti would enter the Mille Miglia \\u003Cem\\u003Eby himself\\u003C/em\\u003E, so there was no navigator for him to follow. If that wasn\\u0026#39;t so much of a disadvantage for him, it was made worse as the weather conditions started to turn especially nasty. Normally, drivers as manic as him would fall victim to the conditions. Indeed, another young, manic driver attempting to make a name for himself that race was Wolfgang von Trips, who, while chasing the leading driver, \\u003Cem\\u003Etripped\\u003C/em\\u003E over the tricky conditions. (\\u003Cem\\u003EI swear I\\u0026#39;m a natural comedian guys\\u003C/em\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut that leading driver von Trips was chasing was none other than Castellotti himself. In rain that essentially blinded the roads ahead and ferocious winds, Castellotti wasn\\u0026#39;t even fazed. He never put a foot wrong. And apart from a short stint where he had to refuel, through each control point on the course, Castellotti \\u003Cstrong\\u003Enever lost the lead\\u003C/strong\\u003E for the full 1000 miles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes, you heard right. \\u003Cstrong\\u003ENever. Lost. The. Lead.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDenis Jenkinson, co-driver to Moss, would comment on the event: \\u003Ca href=\\\"https://www.motorsportmagazine.com/archive/article/june-1956/26/another-mille-miglia-moss\\\"\\u003E\\u0026quot;We were not racing against Musso, Castellotti or Fangio; it seemed that we were fighting for the mere right to go on living.\\u0026quot;\\u003C/a\\u003E. And yet, in this battle for survival, Castellotti turned it into a driving masterclass. And, despite the undeniable truth that having a navigator in a thousand-mile road race would certainly help, Castellotti pulled this off all by himself. What an absolute legend.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack to Formula One, though, his performances weren\\u0026#39;t so legendary. One thing he was very good at was qualifying, as evidenced when \\u003Ca href=\\\"https://www.statsf1.com/en/statistiques/pilote/divers/grille-moyenne.aspx\\\"\\u003EStatsF1 placed him \\u003Cstrong\\u003E13th\\u003C/strong\\u003E all-time in best average qualifying performances (min. 10 GP starts)\\u003C/a\\u003E. On race-day, his starts would be fantastic, but more often than not, a whole bevy of mechanical problems would drop him down the grid. This was the case for most of 1956, retiring from 3rd in Argentina, 5th in Monaco and 4th in Belgium despite having promising starts in all these races.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn France, he got a similarly fantastic start, and actually led for a few early laps before seceding the lead to Fangio. However, once Fangio retired, Castellotti was all but in the clear and seemed to be destined to win his first ever Grand Prix and the spearhead in a Ferrari 1-2. However, teammate Peter Collins was competing for the title, and so the order was given through the pit-board for Collins to pass Castellotti for the win. One of the earliest examples of team-orders lost Castellotti his chance for an F1 victory, but he still trailed Peter Collins right on his bumper, being separated by just \\u003Cem\\u003E0.3 seconds\\u003C/em\\u003E at the line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter these performances, though, the wild side of Eugenio came back to form, having probably the worst race of his F1 career to date in Silverstone, dicing with many local entries and spinning out on the opening lap at the Nurburgring. Teammate and rival Musso had also had a rough season, with a crash in a sportscar event sidelining him for a couple events, not to mention every other race since his shared win in Argentina has ended with him failing to finish. With just one event left in the calendar, their home race in Monza, both Castellotti and Musso were determined to make the race their highlight of 1956. And neither wanted to give way.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETheir team leader, Fangio, was well aware of their competition, despite being in a championship hunt at the time. He also remembered how the D50s ripped every tyre to shreds in the last Italian Grand Prix, so he gave Eugenio and Musso sage advice. He\\u0026#39;d lead the way so Castellotti and Musso could pace their laps without destroying any tyres. With ten laps, he\\u0026#39;d pull over and let Castellotti and Musso duke it out for the finish, \\u003Cem\\u003Ekeirin style.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EMeasured and steady\\u003C/em\\u003E was the advice from Fangio to the young drivers. But they didn\\u0026#39;t listen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstead, Musso and Castellotti went for a \\u003Cstrong\\u003E\\u003Cem\\u003EBALLS OUT, FLAT-OUT, BAT OUT OF HELL, NO FUCKS GIVEN, MY DICK IS BIGGER THAN YOURS, TRADIN\\u0026#39; PAINT\\u003C/em\\u003E\\u003C/strong\\u003E scrapheap for the lead the \\u003Cem\\u003Emoment\\u003C/em\\u003E the green flag dropped. Castellotti was the leader for the majority of this intense battle, but Musso was nowhere near giving up. It was the battle the tifosi wanted, the two Italian drivers for the Prancing Horse, battling for supremacy on hallowed racing ground.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, this battle couldn\\u0026#39;t last forever. Fangio\\u0026#39;s advice was right. The tyres on both Musso\\u0026#39;s and Castellotti\\u0026#39;s cars didn\\u0026#39;t last the whole race. They didn\\u0026#39;t even last for half distance. Heck, not even \\u003Cem\\u003Equarter-distance\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth of their tyres completely wore out their threads by \\u003Cstrong\\u003Elap 4\\u003C/strong\\u003E. You heard me. Lap. FOUR.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWorse for Castellotti, his stop was a measure longer than Musso\\u0026#39;s and was left playing the catch-up game. Paying no heed to his earlier lesson or Fangio\\u0026#39;s prior advice, he continued the \\u003Cstrong\\u003E\\u003Cem\\u003EPEDAL TO THE METAL, I DON\\u0026#39;T GIVE A DAMN, DON\\u0026#39;T LIFT OR YOU\\u0026#39;RE A PUSSY\\u003C/em\\u003E\\u003C/strong\\u003E strategy to catch up to Musso. And by lap \\u003Cem\\u003Enine\\u003C/em\\u003E, his tyre punctured yet again and sent him spinning onto the main straight, ending his race.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy all accounts, his 1956 season, results wise, wasn\\u0026#39;t the best. Just the two points finishes left him sixth in the championship, though to be fair his pace was \\u003Cem\\u003Efar, far greater\\u003C/em\\u003E than those results indicate. In fact, over on GP Rejects, I ran an alternative championship where points were scored after just three laps. And, spoilers, \\u003Ca href=\\\"https://gprejects.com/forum/viewtopic.php?f=12\\u0026amp;t=7589#p350138\\\"\\u003ECASTELLOTTI FREAKIN\\u0026#39; WON\\u003C/a\\u003E (though admittedly thanks to dropped scores, but \\u003Cstrong\\u003Estill\\u003C/strong\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s more, he had plenty of things to smile about that year outside of F1. Securing his seat at Ferrari. Sharing the win with \\u003Cem\\u003EEl Maestro\\u003C/em\\u003E at the Sebring 12 Hours. And finally \\u003Cstrong\\u003Edominating the field\\u003C/strong\\u003E at the Mille Miglia. And it\\u0026#39;s not just racing achievements Castellotti had to smile about as well.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 4: Il Bello\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EMost drivers from the 50\\u0026#39;s had cool-ass nicknames. Fangio was El Maestro, also known as \\u003Cem\\u003E\\u0026#39;The Master\\u0026#39;\\u003C/em\\u003E. Jose Froilan Gonzalez was known as \\u003Cem\\u003EThe Pampas Bull\\u003C/em\\u003E. Luigi Fagioli was known as the goddamn \\u003Cem\\u003EABRUZZI ROBBER\\u003C/em\\u003E. Seriously, if you were a racing driver in the 50\\u0026#39;s, it was almost part and parcel that you\\u0026#39;d get a dope-ass nickname as a reward.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, when Castellotti got his nickname, there was only one obvious choice: \\u003Cem\\u003EIl Bello\\u003C/em\\u003E. Put simply, \\u003Cstrong\\u003EThe Beautiful\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd goddamn, he was \\u003Ca href=\\\"https://cdn-8.latimages.com/images/mgl/ZnzlQo/s4/1017237256-LAT-19550716-315_29.jpg\\\"\\u003E\\u003Cem\\u003Ebeautiful\\u003C/em\\u003E\\u003C/a\\u003E. So. Damn. Beautiful. That perfect chin, the neat at hell hairstyle, those pecs...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...wait, where was I? Right. Ahem. Yeah, he was called Il Bello, and for good reason. Castellotti was \\u003Cem\\u003Eridiculously vain\\u003C/em\\u003E. He wore the finest of suits and shirts tailored exactly to how he wanted it. He kept his hair in perfect shape. He was even self-conscious about his lack of height, so much so that he often wore lifts in his shoes. He didn\\u0026#39;t earn the nickname Il Bello for nothing. And likewise, he didn\\u0026#39;t put the nickname to waste either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPartly because of his vanity, Castellotti was definitely a ladies man. He had many short flings throughout his racing career, all of which was followed relentlessly through gossip magazines. But, in 1956, he finally found someone to settle down with. And it couldn\\u0026#39;t have come with someone more high-profile.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDelia Scala was one of Italy\\u0026#39;s leading actresses at the time, and through 1956 and 1957, was beginning the transition to the silver screen to become one of Italy\\u0026#39;s pioneering television personalities. In the summer of 1956, she met Castellotti at a restaurant, and started talking to him simply because the pale blue colour of his trousers matched the car. Eventually, conversations about matching colours became a date, and then a relationship. A relationship that apparently newspaper reporters \\u003Cstrong\\u003Ecould not get enough of\\u003C/strong\\u003E. Italy\\u0026#39;s future legend in motor racing pairs up with leading young actress, both of whom were ridiculously hot. A gossip writer\\u0026#39;s wet dream.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis was two people\\u0026#39;s nightmare, though. First was Castellotti\\u0026#39;s mother, who upon meeting Scala for the first time, took her by the hand and said \\u0026quot;\\u003Cem\\u003EYou look like a waitress, the kitchen is over there\\u003C/em\\u003E\\u0026quot;. Good going, Mrs. Castellotti.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESecond, and maybe more importantly, was Enzo Ferrari. He hated it when his drivers would get all caught up in intense romance, furthermore if it affected them emotionally, and \\u003Cem\\u003Eeven more so\\u003C/em\\u003E if it said relationship was spread over nearly every damn newspaper in Italy. He thought it\\u0026#39;d affect their race pace and their drive to continue. And, for a while, it seemed Enzo was right.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti and Scala proposed and planned to get married in April. However, between the two, there was an intense discussion that turned into a disagreement. Scala wanted Castellotti to give up driving, fearing that it was getting too dangerous for him. However, Castellotti told Scala that \\u003Cem\\u003Eshe\\u003C/em\\u003E should give up acting as it would cost them time together when he wasn\\u0026#39;t racing elsewhere. I don\\u0026#39;t know where the two stood on the compromise, but it was certain that Castellotti would probably have to focus less on racing should he wish to remain with Scala.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, on track, results were still going pretty well for Castellotti in 1957, claiming \\u003Cem\\u003Eboth\\u003C/em\\u003E first and third in his respective driver lineups in the 1000 km of Buenos Aires. Additionally, in the Argentine Grand Prix for 1957, he took an early lead and was launching a serious challenge to the now-dominant Maseratis, but his Ferrari, like all the other Ferraris, gave up the ghost while running in third.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs was tradition in those days, the Argentine Grand Prix and other events in South America was run in their January summer, then Formula One would take a break until May to restart that season in Monaco. With marriage around the corner, Castellotti took the time to take a nice vacation in Florence with his bride-to-be Scala, who was booked for a play there for the time being. Call it a pre-marriage honeymoon, if you will.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA pre-marriage honeymoon that got rudely interrupted by none other than \\u003Cem\\u003EEnzo Ferrari\\u003C/em\\u003E. He rang up Castellotti in a huff and instructed him to go to Modena the next day to test the Ferrari. But this was more than just some last-minute test set up by Ferrari or a call for Castellotti to deputize for another driver.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it turns out, Jean Behra and Maserati were testing at Modena that day, and Enzo found out that they had beaten Ferrari\\u0026#39;s ultimate lap record around the Autodrome. According to some people, most notably Luigi Villoresi, Enzo Ferrari had placed a lunchtime wager on the lap record, so when he saw it got beaten, he called the first person he could find - that being Eugenio - to come down to Modena to \\u003Cem\\u003Etake that record back\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti was undoubtedly fuming, having had precious time with his fianc\\u00e9e interrupted for a stupid lap record. But he had to listen to Enzo. Nobody dared to oppose him. On March 14th, he left Florence at 4 a.m. to make the long drive to Modena, to get suited up and get ready for practice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn just his second or third flying lap, Castellotti lost control in the esses at the start of the lap, and the car overturned through a fence and into a (\\u003Cem\\u003Emercifully empty\\u003C/em\\u003E) grandstand. Castellotti was thrown out. The local parish priest, Don Sergio Mantovani, was present to read him the last rites as he laid dying on the track. He was only 26 years old. His wedding with Scala was just twenty-five days away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe reason for the crash has been disputed. Jean Behra, present at the track having set the aforementioned lap record, insisted there was a problem with the gearbox, having heard it shift to neutral just before the crash. Other sources feel it was just a mistake in downshifting. Most attribute this error to the fact that Castellotti was robbed of a holiday with Scala for the pettiest of reasons, thus the claim that his mind was not in the right place. This theory was exacerbated by the fact he had to wake up extremely early and drive a considerable distance to reach Modena in the first place. The \\u003Cem\\u003Etrue cause\\u003C/em\\u003E of his death was still unknown. Multiple sources claim that Enzo Ferrari, upon hearing news of the crash, said something to the tune of, \\u0026quot;Castellotti? Dead? What a pity. \\u003Cem\\u003EHow\\u0026#39;s the car?\\u003C/em\\u003E\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhatever it was, a petty debate over a trivial lap record robbed Formula One of a rising star in his prime. One who could\\u0026#39;ve done so much more. \\u003Cstrong\\u003EAnd yet,\\u003C/strong\\u003E despite this, his story in motor racing is extremely colourful. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe scored a podium in just his second start in F1. He was the protege to Alberto Ascari, and also heavily involved in the scene of his death. Impacted by this, he convinced a major manufacturer shutting up shop to loan him a chassis, with which he would become the \\u003Cem\\u003Eyoungest ever polesitter\\u003C/em\\u003E in F1 at the time. He would finish his rookie season third, a feat that remained unbeaten for 41 years. He won the Mille Miglia \\u003Cem\\u003Eall by himself\\u003C/em\\u003E in downright atrocious conditions. He had a fiery rivalry with a fellow compatriot to see who would be their country\\u0026#39;s next future star. He married one of Italy\\u0026#39;s most famous celebrities at the time. And he died because of a wager set over lunch.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat is the story of \\u0026#39;\\u003Cem\\u003EIl Bello\\u003C/em\\u003E\\u0026#39;, Eugenio Castellotti.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003ESources:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://books.google.com.sg/books?id=4UjKS5w8udcC\\u0026amp;pg=PT100\\u0026amp;dq=castellotti+delia+scala\\u0026amp;hl=en\\u0026amp;sa=X\\u0026amp;ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEILzAB#v=onepage\\u0026amp;q=castellotti%20delia%20scala\\u0026amp;f=false\\\"\\u003E\\u003Cstrong\\u003EThe Limit: Life and Death in Formula One\\u0026#39;s Most Dangerous Era\\u003C/strong\\u003E by Michael Cannell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://books.google.com.sg/books?id=BfFHSYJwOUwC\\u0026amp;pg=PA187\\u0026amp;dq=castellotti+delia+scala\\u0026amp;hl=en\\u0026amp;sa=X\\u0026amp;ved=0ahUKEwiEitDM_ZfiAhV363MBHVmOCgkQ6AEIKTAA#v=onepage\\u0026amp;q=castellotti%20delia%20scala\\u0026amp;f=false\\\"\\u003E\\u003Cstrong\\u003EEnzo Ferrari: A Life\\u003C/strong\\u003E by Richard Williams\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://books.google.com.sg/books?id=gEFLDwAAQBAJ\\u0026amp;pg=PT126\\u0026amp;dq=castellotti+delia+scala\\u0026amp;hl=en\\u0026amp;sa=X\\u0026amp;ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEINTAC#v=onepage\\u0026amp;q=castellotti%20delia%20scala\\u0026amp;f=false\\\"\\u003E\\u003Cstrong\\u003EToo Fast A Life\\u003C/strong\\u003E by Martin Shepherd\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.motorsportmagazine.com/archive/article/february-1998/65/young-bloods\\\"\\u003EMotorsport Magazine (This plus many of their contemporary race reports)\\u003C/a\\u003E -- \\u003Ca href=\\\"http://forix.autosport.com/8w/castellotti.html\\\"\\u003E8W @ Forix\\u003C/a\\u003E -- \\u003Ca href=\\\"http://www.motorsportmemorial.org/focus.php?db=ct\\u0026amp;n=63\\\"\\u003EMotorsport Memorial\\u003C/a\\u003E -- \\u003Ca href=\\\"http://archive-focgb.co.uk/happenings/2001/january/castellotti.html\\\"\\u003EFerrari Owner\\u0026#39;s Club\\u003C/a\\u003E -- \\u003Ca href=\\\"http://www.scuderia-legends.it/eugenio.htm\\\"\\u003EScuderia Ferrari Legends\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.pressreader.com/uk/f1-racing-uk/20180501/281655370651027\\\"\\u003EF1 Racing (via PressReader)\\u003C/a\\u003E -- \\u003Ca href=\\\"https://www.velocetoday.com/eugenio-castellotti-by-graham-gauld/\\\"\\u003EVeloce Today\\u003C/a\\u003E -- \\u003Ca href=\\\"https://www.racingsportscars.com/driver/results/Eugenio-Castellotti-I.html\\\"\\u003ERacing Sportscars\\u003C/a\\u003E -- \\u003Ca href=\\\"https://www.statsf1.com/en/eugenio-castellotti.aspx\\\"\\u003EStatsF1\\u003C/a\\u003E -- \\u003Ca href=\\\"https://revsinstitute.org/the-collection/1955-lancia-d50/\\\"\\u003ERevs Institute\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?auto=webp\\u0026s=49e05353005d1b94e69a503a85c8a023e6303b84\", \"width\": 690, \"height\": 678}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=199f563207acf9ddadb5280494f3037749885229\", \"width\": 108, \"height\": 106}, {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=388d0360b9d007780fefa48f131e3de8f90625b3\", \"width\": 216, \"height\": 212}, {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5138e05b08a0b9317c9c7fffb1201a571deaa029\", \"width\": 320, \"height\": 314}, {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=655e6ce878d37b26d6ae41f9e926b75cb8953af0\", \"width\": 640, \"height\": 628}], \"variants\": {}, \"id\": \"z-B0Vwn1GWLa5hHNK1-IIAjbQL_clQ3v3Ld6xsYOkL8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqi80q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TheStateOfIt\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqi80q/testellotti/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqi80q/testellotti/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558279854.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello everyone! Hopefully this is the right place to ask. I've dabbled in avatar making before, I've got a modicum of experience with working in Blender, converting models and then using them, but the biggest issue that I come across when I go to produce another avatar, is just finding parts. I was wondering if anyone had an idea where one could find clothing that is very similar to this?\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/a4tjy6oto2z21.png\\n\\nI'm a quiet guy and I like to wander around various worlds, to explore them. It's one of the things I find most fascinating about VRChat. I wanted to make an avatar to reflect that, but I'm getting to the point, where I might have to ask for a commission and money is not necessarily something I have ease of access to.\", \"author_fullname\": \"t2_5359pua\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Help] Trying to Find Some Model Parts, or Something Similar\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"media_metadata\": {\"a4tjy6oto2z21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 616, \"x\": 313, \"u\": \"https://i.redd.it/a4tjy6oto2z21.png\"}, \"m\": \"image/png\", \"id\": \"a4tjy6oto2z21\"}}, \"name\": \"t3_bqbir8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/TYDybMYKUihHAT5Qhg6-uM4OFWE_sz9TR8FIyBc8-D0.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558258876.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone! Hopefully this is the right place to ask. I\\u0026#39;ve dabbled in avatar making before, I\\u0026#39;ve got a modicum of experience with working in Blender, converting models and then using them, but the biggest issue that I come across when I go to produce another avatar, is just finding parts. I was wondering if anyone had an idea where one could find clothing that is very similar to this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/a4tjy6oto2z21.png\\\"\\u003Ehttps://i.redd.it/a4tjy6oto2z21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a quiet guy and I like to wander around various worlds, to explore them. It\\u0026#39;s one of the things I find most fascinating about VRChat. I wanted to make an avatar to reflect that, but I\\u0026#39;m getting to the point, where I might have to ask for a commission and money is not necessarily something I have ease of access to.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqbir8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Waffles201\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqbir8/help_trying_to_find_some_model_parts_or_something/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqbir8/help_trying_to_find_some_model_parts_or_something/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558230076.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_yx7zk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bqajgx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/KAEJI8CROhTd4dEecJUSL4Sccsn1gckIhloYaCKqA5w.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558252580.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?auto=webp\\u0026s=98250712b387129fe2909c112cebbd5ef07bd2f8\", \"width\": 1012, \"height\": 12706}, \"resolutions\": [{\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b441ad75b21dd7b318f000cd51059c7ac61748bc\", \"width\": 108, \"height\": 216}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=7ba834ef921e153c8ae41067b4dde6649ba0ad97\", \"width\": 216, \"height\": 432}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b891c40743e978c65f3ece392865ac1182735a00\", \"width\": 320, \"height\": 640}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=68c0725e883e5fbbdcaed1d9043174d38c4479f9\", \"width\": 640, \"height\": 1280}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=110343f6ab10679ed4f991391e5db61c9fa0833d\", \"width\": 960, \"height\": 1920}], \"variants\": {}, \"id\": \"nXm5UpK4-609PglxuqFbC0mo-uwmk_YJ7IUSV04c04g\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqajgx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cvardy1998\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqajgx/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/cgc1m25a52z21.png\", \"subreddit_subscribers\": 704, \"created_utc\": 1558223780.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Button Input| Command|\\n-|-|\\nPrimary Fire- Enemy| Fire and Fly at, then explode near, enemy|\\nPrimary Fire- Ground| Station Drone there|\\nSecondary Fire| Swap consciousness to selected Drone|\\n\\nHP Remaining| Hydra Stage| Hydra Effect(Damage)| Hydra Effect(Healing)| \\n-|-|-|-|\\n250+| Stage 1| 100%| 100%|\\n249-200| Stage 2| 110%| 105%|\\n199-150| Stage 3| 120% | 110%|\\n149-100| Stage 4| 130% | 115%|\\n99-50| Stage 5| 140%| 120%|\\n49-1| Stage 6| 150%| 125%|\\n\\n(Combat Mode): \\n\\nHydra Stage| Damage Per Second (DPS)\\n-|-|\\nStage 1| 50|\\nStage 2| 58|\\nStage 3| 65|\", \"author_fullname\": \"t2_1v6f2bm3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Table test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bq56as\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558194765.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558222045.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EButton Input\\u003C/th\\u003E\\n\\u003Cth\\u003ECommand\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPrimary Fire- Enemy\\u003C/td\\u003E\\n\\u003Ctd\\u003EFire and Fly at, then explode near, enemy\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPrimary Fire- Ground\\u003C/td\\u003E\\n\\u003Ctd\\u003EStation Drone there\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESecondary Fire\\u003C/td\\u003E\\n\\u003Ctd\\u003ESwap consciousness to selected Drone\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EHP Remaining\\u003C/th\\u003E\\n\\u003Cth\\u003EHydra Stage\\u003C/th\\u003E\\n\\u003Cth\\u003EHydra Effect(Damage)\\u003C/th\\u003E\\n\\u003Cth\\u003EHydra Effect(Healing)\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E250+\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 1\\u003C/td\\u003E\\n\\u003Ctd\\u003E100%\\u003C/td\\u003E\\n\\u003Ctd\\u003E100%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E249-200\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 2\\u003C/td\\u003E\\n\\u003Ctd\\u003E110%\\u003C/td\\u003E\\n\\u003Ctd\\u003E105%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E199-150\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 3\\u003C/td\\u003E\\n\\u003Ctd\\u003E120%\\u003C/td\\u003E\\n\\u003Ctd\\u003E110%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E149-100\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 4\\u003C/td\\u003E\\n\\u003Ctd\\u003E130%\\u003C/td\\u003E\\n\\u003Ctd\\u003E115%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E99-50\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 5\\u003C/td\\u003E\\n\\u003Ctd\\u003E140%\\u003C/td\\u003E\\n\\u003Ctd\\u003E120%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E49-1\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 6\\u003C/td\\u003E\\n\\u003Ctd\\u003E150%\\u003C/td\\u003E\\n\\u003Ctd\\u003E125%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E(Combat Mode): \\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EHydra Stage\\u003C/th\\u003E\\n\\u003Cth\\u003EDamage Per Second (DPS)\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStage 1\\u003C/td\\u003E\\n\\u003Ctd\\u003E50\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStage 2\\u003C/td\\u003E\\n\\u003Ctd\\u003E58\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStage 3\\u003C/td\\u003E\\n\\u003Ctd\\u003E65\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq56as\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"W-eye\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bq56as/table_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bq56as/table_test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558193245.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#Bloo\\n\\n####Blee\\n\\n\\u2014-\\n\\n\\nHello\", \"author_fullname\": \"t2_1v6f2bm3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bq4c8b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558217124.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EBloo\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EBlee\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u2014-\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq4c8b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"W-eye\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bq4c8b/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bq4c8b/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558188324.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Metroidvanias,\\n\\nThere are a few important sub updates that I would like to share. Pls read.\\n\\n---\\n\\n1 - **Pencil2Paper is stepping down as moderator**\\n\\nAfter having been this sub's primary moderator for 2 years, P2P has decided that it is time for him to step down, in order to focus on career-related endeavours. He will remain an honorary moderator on our Discord server for as long as he sees fit. This is a great opportunity for me to thank P2P for his efforts in growing the sub, for his friendship, and for the memes. We wouldn't be where we are today without you. ily no homo\\n\\nLuckily, the trusty /u/AAM2RF, a fine addition to the team, will continue to co-moderate the sub.\\n\\n---\\n\\n2 - **Stricter self-promotion policy**\\n\\nWe, as a moderation team, have always felt strongly about self-promotion in this community. In particular, YouTubers posting links to their Let's Plays and similar types of videos are removed immediately. Other forms of content blur the lines to an extent, but we always use the notion of a post having to benefit the reader more so than the poster. As an example of shameless self-promotion, at some point we saw a surge of posts about shirt designs with a user \\\"coincidentally\\\" having a link to the online shop in the comments. Another trend we're seeing are minor development updates that, while popular, ultimately count as self-promotion. The moderation team went back and forth on whether or not we thought these posts were okay, but the bottom line is that **r/metroidvania is not an advertisement space**, and we are going to uphold that ideal effective immediately. This means that:\\n\\n**Minor development updates are no longer permitted on this sub**. Appropriate types of posts pertaining to your own games include: 1) Official Announcements / Teasers and Trailers, and 2) Significant Updates, such as a new demo being available, or a launch post. If in doubt, contact the moderators.\\n\\nEverything already posted will be allowed to remain on the sub, but future posts violating this rule will be removed without warning.\\n\\nIf you are a developer and want to share minor development updates, we have a dedicated channel for that in our Discord server.\\n\\n---\\n\\n3 - **Sneaky Spam Filter**\\n\\nIt has recently come to light that a significant number of posts have been caught in reddit's spam filter. This is unfortunate, and has to do with how reddit tries to handle automatic filtering - by attaching \\\"smart\\\", machine-learned rules to the filter. For a relatively small sub like ours, the default spam filter setting is way too ambitious. We changed some settings which should alleviate the issue. We apologize for this inconvenience, and **we encourage you to re-submit any posts that were caught in the spam filter**.\\n\\n---\\n\\nThank you for reading, stay awesome.\", \"author_fullname\": \"t2_enb87\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"thingamajig\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bq1zjs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558286956.0, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558200815.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMetroidvanias,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere are a few important sub updates that I would like to share. Pls read.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E1 - \\u003Cstrong\\u003EPencil2Paper is stepping down as moderator\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter having been this sub\\u0026#39;s primary moderator for 2 years, P2P has decided that it is time for him to step down, in order to focus on career-related endeavours. He will remain an honorary moderator on our Discord server for as long as he sees fit. This is a great opportunity for me to thank P2P for his efforts in growing the sub, for his friendship, and for the memes. We wouldn\\u0026#39;t be where we are today without you. ily no homo\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuckily, the trusty \\u003Ca href=\\\"/u/AAM2RF\\\"\\u003E/u/AAM2RF\\u003C/a\\u003E, a fine addition to the team, will continue to co-moderate the sub.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E2 - \\u003Cstrong\\u003EStricter self-promotion policy\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe, as a moderation team, have always felt strongly about self-promotion in this community. In particular, YouTubers posting links to their Let\\u0026#39;s Plays and similar types of videos are removed immediately. Other forms of content blur the lines to an extent, but we always use the notion of a post having to benefit the reader more so than the poster. As an example of shameless self-promotion, at some point we saw a surge of posts about shirt designs with a user \\u0026quot;coincidentally\\u0026quot; having a link to the online shop in the comments. Another trend we\\u0026#39;re seeing are minor development updates that, while popular, ultimately count as self-promotion. The moderation team went back and forth on whether or not we thought these posts were okay, but the bottom line is that \\u003Cstrong\\u003E\\u003Ca href=\\\"/r/metroidvania\\\"\\u003Er/metroidvania\\u003C/a\\u003E is not an advertisement space\\u003C/strong\\u003E, and we are going to uphold that ideal effective immediately. This means that:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMinor development updates are no longer permitted on this sub\\u003C/strong\\u003E. Appropriate types of posts pertaining to your own games include: 1) Official Announcements / Teasers and Trailers, and 2) Significant Updates, such as a new demo being available, or a launch post. If in doubt, contact the moderators.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEverything already posted will be allowed to remain on the sub, but future posts violating this rule will be removed without warning.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you are a developer and want to share minor development updates, we have a dedicated channel for that in our Discord server.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E3 - \\u003Cstrong\\u003ESneaky Spam Filter\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt has recently come to light that a significant number of posts have been caught in reddit\\u0026#39;s spam filter. This is unfortunate, and has to do with how reddit tries to handle automatic filtering - by attaching \\u0026quot;smart\\u0026quot;, machine-learned rules to the filter. For a relatively small sub like ours, the default spam filter setting is way too ambitious. We changed some settings which should alleviate the issue. We apologize for this inconvenience, and \\u003Cstrong\\u003Ewe encourage you to re-submit any posts that were caught in the spam filter\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EThank you for reading, stay awesome.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Alpha Tester\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq1zjs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Fazermint\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/PostPreview/comments/bq1zjs/thingamajig/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bq1zjs/thingamajig/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558172015.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I am starting an open source R package for actuaries if anybody is interested in trying to learn R. I have version 0.0.1 on CRAN and github.\\n\\nHere is a vignette describing how to use it.\\n\\n[http://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies\\\\_intro.html](http://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies_intro.html)\\n\\nThe package is on CRAN, you can download the package using:\\n\\n\\tinstall.packages(\\\"expstudies\\\", type = \\\"source\\\")\\n\\n\\tlibrary(expstudies)\\n\\n\\tvignette(\\\"expstudies\\\\_intro\\\")\\n\\nThe code is on github: [https://github.com/ActuarialAnalyst/expstudies](https://github.com/ActuarialAnalyst/expstudies)\\n\\nThere is a note called Next Steps.txt on my github that is describing functionality I think would be useful if anybody wants to find stuff to build.\", \"author_fullname\": \"t2_3qls0vfv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"expstudies: An R package for Life Experience Studies (ongoing project)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpzmrt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558144296.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558172875.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am starting an open source R package for actuaries if anybody is interested in trying to learn R. I have version 0.0.1 on CRAN and github.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is a vignette describing how to use it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies_intro.html\\\"\\u003Ehttp://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies_intro.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe package is on CRAN, you can download the package using:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Einstall.packages(\\u0026quot;expstudies\\u0026quot;, type = \\u0026quot;source\\u0026quot;)\\n\\nlibrary(expstudies)\\n\\nvignette(\\u0026quot;expstudies\\\\_intro\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe code is on github: \\u003Ca href=\\\"https://github.com/ActuarialAnalyst/expstudies\\\"\\u003Ehttps://github.com/ActuarialAnalyst/expstudies\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is a note called Next Steps.txt on my github that is describing functionality I think would be useful if anybody wants to find stuff to build.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpzmrt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ActuarialAnalyst\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpzmrt/expstudies_an_r_package_for_life_experience/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpzmrt/expstudies_an_r_package_for_life_experience/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558144075.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3seiaklv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Podstew - Episode 1 - True Crime Mutton by sirpumpalot\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bptihg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 500, \"scrolling\": false, \"height\": 500}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"soundcloud.com\", \"oembed\": {\"provider_url\": \"http://soundcloud.com\", \"description\": \"Podstew curates the the best clips from the best episodes from the best podcasts creators in one place. Episode 1 is some of the clips from some of the best True Crime podcasts including My Favorite Murder, True Crime Garage, Sword \\u0026 Scale, Criminal and Serial.\", \"title\": \"Podstew - Episode 1 - True Crime Mutton by sirpumpalot\", \"type\": \"rich\", \"author_name\": \"sirpumpalot\", \"height\": 500, \"width\": 500, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 500, \"version\": \"1.0\", \"provider_name\": \"SoundCloud\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 500, \"author_url\": \"https://soundcloud.com/louis-lapat\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 500, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bptihg\", \"height\": 500}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/W5r7wav0m4kbzcFKjClk33izFMqQKDmYlK2yntvvJhs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558139769.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"soundcloud.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?auto=webp\\u0026s=ec06b343b294a64f58001c4c51f064403f858151\", \"width\": 500, \"height\": 500}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=abcb666730f7125ebcff761d2ae934b64bb2207b\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=125f4a4501a4ddd76e1af4c7f77df9bb3b9f1670\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2ad8caa62cbd486282cffc09b33654eb2c9cf08f\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"FnUOCtppeFRE35cTgB5gTlp5Ta11SzQ2wR8YQypipx4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bptihg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"throwaway--0039\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bptihg/podstew_episode_1_true_crime_mutton_by_sirpumpalot/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://soundcloud.com/louis-lapat/podstew-episode-1-true-crime-mutton\", \"subreddit_subscribers\": 704, \"created_utc\": 1558110969.0, \"media\": {\"type\": \"soundcloud.com\", \"oembed\": {\"provider_url\": \"http://soundcloud.com\", \"description\": \"Podstew curates the the best clips from the best episodes from the best podcasts creators in one place. Episode 1 is some of the clips from some of the best True Crime podcasts including My Favorite Murder, True Crime Garage, Sword \\u0026 Scale, Criminal and Serial.\", \"title\": \"Podstew - Episode 1 - True Crime Mutton by sirpumpalot\", \"type\": \"rich\", \"author_name\": \"sirpumpalot\", \"height\": 500, \"width\": 500, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 500, \"version\": \"1.0\", \"provider_name\": \"SoundCloud\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 500, \"author_url\": \"https://soundcloud.com/louis-lapat\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**SCP-4107:** [Dead](https://www.scp-wiki.net/scp-4107)\\n \\n**Object Class:** Euclid\\n \\n**Author:** PeppersGhost\\n \\n***\\n \\nWhat's up, it's me, dyqz. I decided to tackle 4107 after Peppers enlightened us about it on the SCPD discord, and after Brewster gave up on it.\\n \\nLet me just preface this by saying 4107 is up there with 4012, 3999 and [everything](http://www.scp-wiki.net/scp-3188) [Kalinin](https://www.scp-wiki.net/kalinins-proposal) [has](https://www.scp-wiki.net/scp-3084) [written](http://www.scp-wiki.net/scp-2003) in terms of sheer fuckery. If you haven't read 4107 already, I thoroughly encourage you to.\\n \\nAnyways, on with the declass.\\n \\n***\\n \\n**Brief Summary**\\n \\n4107 is a collection of the same woman's corpse. Around 311 of the corpses have been found, with the same DNA, wounds, basically the same corpse. Over and over again. No one knows what she is, no one knows why her corpse keeps reappearing. No one knows anything, apart from her injuries, which are... fucking wack. Here they are.\\n \\n* A big long gash down her forearm. Scratches found on the bones, made by a human finger. Presumably her own fingers.\\n* All teeth have been cut off\\n* Her milk teeth found in her stomach\\n* Fingernails and toenails ripped off, the skin at the base of the fingers peeled\\n* The head's hair has been threaded into the upper back\\n \\n...Nice.\\n \\nThe Foundation ruled the cause of death as blood loss. There's also these confusing lines.\\n \\n\\u003EAll injuries are believed to have been inflicted antemortem. In all cases, evidence has indicated that the victim changed clothes between the time most of the injuries were inflicted and the moment of death. Other traces of the victim's actions before death, such as footprints and unfinished meals, are also occasionally found in the vicinity.\\n \\nFor your information, antemortem means 'before death'. So she had to have lived through all the head stitching and the teeth ripping and the toenail pulling. Yikes.\\n \\nThat's not all, because of course it's not. 4107 can't be mentioned with *a specific action*. No matter what you try to do, what sneaky tricks you try to pull, you can't mention *this action* while talking about 4107.\\n \\n***\\n \\n**Meta**\\n \\nNow, while you read my summary, I hope you went through the same sense of confusion everyone else did while they were reading the article. Just the strangest, weirdest injuries happening to this girl over and over again, with no clear link between any of them. And what is *this goddamned action?*\\n \\nThis might be disappointing to you, but I have no answers. I don't know what happened to the girl. I don't know what the action is. Maybe you can read up on the Discussion page, some interesting theories are present there. I do know something of use, however. And to learn of that, we'll need to learn more about the article itself.\\n \\nThe article was written as part of a draft swap between two authors, Peppers and Othello. [Here's the original article by Othello, for anybody curious.](http://topia.wikidot.com/the-draft-othello-be-offering-for-draft-swap) The main gist of the article is that it's a woman who committed suicide, with the anomalous effect that anyone who sees her corpse believe she was murdered, and try to go on a crazy witch hunt to learn more about her 'murder'.\\n \\nSo, what is 4107? On a meta level, it is a replication of that effect in real life. The article has all of these weird symptoms that happened to this girl that are seemingly unconnected, and the reason for that is to get you thinking. What happened? What really happened to this girl, why are there so many injuries? But that's not the REAL point of the article. The real point of the article, [in Peppers' own words,](https://imgur.com/a/6FZgiye) it is the simulation of an infohazard. If you don't remember what an infohazard is, here's a short explanation.\\n \\n\\u003EAn *infohazard*, as coined by Sorts, is something that is triggered if you simply know about it. It is similar to but distinct from a *memetic* agent because a *memetic* agent is pure information whereas an *infohazard* is generally an object. [SCP-426](http://www.scp-wiki.net/scp-426) (I Am A Toaster) is a perfect example of this.\\n \\nRecall Othello's article, about how people kept trying to explain her suicide as murder. This article makes you those people. You know about this girl, with these weird wounds, and you're inclined to try to explain everything away. You're creating backstories for it that fit 4107's effects best. That, in a nutshell, is what 4107 is. Trying to force you to explain the unexplainable.\\n \\nThat answer might be unsatisfying. Honestly, it is. It's REALLY unsatisfying. I wanna know what happened to this girl too. But the fact of the matter is that the unsolvability of the article is key to making it effective. Would it really be effective if, say, there was a nice explanation to everything? No. Because then you wouldn't keep thinking about it, you wouldn't keep trying to theorize about it, and you'd certainly forget about it sooner or later. It'd just be another mundane, somewhat weird article.\\n \\nIn Peppers' own words,\\n \\n\\u003ESo while there is an answer for the textual level mystery, the actual purpose of the article is the meta level. The whole point of the textual level is that it can be filled in with all sorts of different interpretations, and the fact that one *may be* the *one true* interpretation is what creates the meta compulsion.\\n \\nAlso,\\n \\n\\u003EThere is more to the mystery, but the answer only exists to be something that's sought.\\n \\n***\\n \\n**Theories**\\n \\nI originally had a separate part of this article that was meant to explain the textual mystery, because as Peppers said:\\n \\n\\u003EFwiw in regards to the actual original mystery in the article, I'll go ahead and say that at least one person's theory that I've heard pretty much correctly guessed about 80% of the backstory I had in mind. So it's basically solvable\\n \\nSo let's go through some theories then! What could this even be? Honestly the declass wouldn't be complete without some attempt at explaining what's going on here.\\n \\nWe'll start off by figuring out what the _aforementioned action_ is. There are two answers I (ripped off of the Discussions tab) think have some merit.\\n \\nA theory is that the _aforementioned action_ is the act of suicide. The slit wrists certainly point to that, alongside the scratches on the bone itself. Those don't seem like murder marks, rather suicide marks. You'd think a thorough, scientific article on this woman would make some passing mentions to the possibility of suicide, but that's not present in the article. ctrl+f \\\"suicide\\\" doesn't pull anything up.\\n \\nBut that can't possibly be true - there's no way that she stitched her hairs to her back herself, that's not humanly possible. Rather, let's think. Why would she purposely be censoring some thoughts, or rather, some theories about her death?\\n \\nBecause those theories aren't true. By preventing people from talking about suicide about her in any way, she's reinforcing the idea that it's NOT suicide. Her killer's out there.\\n \\nNow, to explain the injuries.\\n \\nIf you scroll down and look at the tags, there's a tag that stands out. \\\"loop\\\". \\\"loop\\\" is certainly an interesting tag, and it gives me a perfect segue into this next bit:\\n \\nHer murderer is either her past self or her future self trying to kill her, and you've heard the grandfather paradox - the one where killing your grandfather in the past leads to Temporal Fuckery - her trying to kill her past self led to Temporal Fuckery. That's why her body keeps reanimating, that's why her old teeth are in her stomach and her new teeth gone. It's all a part of the Temporal Fuckery. How'd she get the means to go to the past to kill herself?\\n \\nHow she got the past means to kill herself, I'm not sure. Not everything really needs to have an origin, and there's not much in the article about her origin anyway. That's not important. She can also censor things about _a certain action that is probably suicide_, so clearly we're dealing with someone weird here, most likely a reality bender. That's not the important parts of the article.\\n \\n_Wait,_ you think. _I thought it wasn't suicide?_ _You just said it wasn't like, two paragraphs ago._\\n \\nHey fuck you I'm not done yet. Her killer is some Temporally Fucked version of herself that's still out there on the run, and TECHNICALLY it's not suicide (this is a stretch I know) so just hear me out.\\n \\nOk I think that's all I have, that's my main theory. In summary, her past self (or future self) went back in time (or forward in time) to kill herself but then that created some Temporal Fuckery which resulted in 4107.\\n \\nI'm not claiming that this is true. I could be completely off base, but the important thing is that - the theories aren't the main issue here. That's not the REAL meat of the article, the real meat of the article is the act of theorizing. Because when you do that, you are fulfilling the article's purpose. Recall that it's a simulation of an infohazard. Theorizing about it, thinking about it, trying to fill in some gaps, that's what 4107 is about. I encourage you to think of some theories of your own, maybe even share them in the comments if you'd like. We can compare and think of the correct answer - it's out there, Peppers said it.\\n \\n***\\n \\nThis is an interesting article in many ways. It's well written, with good execution and a really fucking interesting mystery. It's a brilliant new idea that I haven't seen before on the site, even with all of the meta articles out there. So go read it and upvote. It recently cracked +100, maybe you can help it crack +200.\\n \\nThat's all I have for you today. Thanks for reading.\", \"author_fullname\": \"t2_2qewmtrw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"scp 4107 - dead\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpssmd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558200511.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558136263.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ESCP-4107:\\u003C/strong\\u003E \\u003Ca href=\\\"https://www.scp-wiki.net/scp-4107\\\"\\u003EDead\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class:\\u003C/strong\\u003E Euclid\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor:\\u003C/strong\\u003E PeppersGhost\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s up, it\\u0026#39;s me, dyqz. I decided to tackle 4107 after Peppers enlightened us about it on the SCPD discord, and after Brewster gave up on it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet me just preface this by saying 4107 is up there with 4012, 3999 and \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3188\\\"\\u003Eeverything\\u003C/a\\u003E \\u003Ca href=\\\"https://www.scp-wiki.net/kalinins-proposal\\\"\\u003EKalinin\\u003C/a\\u003E \\u003Ca href=\\\"https://www.scp-wiki.net/scp-3084\\\"\\u003Ehas\\u003C/a\\u003E \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2003\\\"\\u003Ewritten\\u003C/a\\u003E in terms of sheer fuckery. If you haven\\u0026#39;t read 4107 already, I thoroughly encourage you to.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyways, on with the declass.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBrief Summary\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E4107 is a collection of the same woman\\u0026#39;s corpse. Around 311 of the corpses have been found, with the same DNA, wounds, basically the same corpse. Over and over again. No one knows what she is, no one knows why her corpse keeps reappearing. No one knows anything, apart from her injuries, which are... fucking wack. Here they are.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EA big long gash down her forearm. Scratches found on the bones, made by a human finger. Presumably her own fingers.\\u003C/li\\u003E\\n\\u003Cli\\u003EAll teeth have been cut off\\u003C/li\\u003E\\n\\u003Cli\\u003EHer milk teeth found in her stomach\\u003C/li\\u003E\\n\\u003Cli\\u003EFingernails and toenails ripped off, the skin at the base of the fingers peeled\\u003C/li\\u003E\\n\\u003Cli\\u003EThe head\\u0026#39;s hair has been threaded into the upper back\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E...Nice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Foundation ruled the cause of death as blood loss. There\\u0026#39;s also these confusing lines.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAll injuries are believed to have been inflicted antemortem. In all cases, evidence has indicated that the victim changed clothes between the time most of the injuries were inflicted and the moment of death. Other traces of the victim\\u0026#39;s actions before death, such as footprints and unfinished meals, are also occasionally found in the vicinity.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFor your information, antemortem means \\u0026#39;before death\\u0026#39;. So she had to have lived through all the head stitching and the teeth ripping and the toenail pulling. Yikes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s not all, because of course it\\u0026#39;s not. 4107 can\\u0026#39;t be mentioned with \\u003Cem\\u003Ea specific action\\u003C/em\\u003E. No matter what you try to do, what sneaky tricks you try to pull, you can\\u0026#39;t mention \\u003Cem\\u003Ethis action\\u003C/em\\u003E while talking about 4107.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMeta\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, while you read my summary, I hope you went through the same sense of confusion everyone else did while they were reading the article. Just the strangest, weirdest injuries happening to this girl over and over again, with no clear link between any of them. And what is \\u003Cem\\u003Ethis goddamned action?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis might be disappointing to you, but I have no answers. I don\\u0026#39;t know what happened to the girl. I don\\u0026#39;t know what the action is. Maybe you can read up on the Discussion page, some interesting theories are present there. I do know something of use, however. And to learn of that, we\\u0026#39;ll need to learn more about the article itself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe article was written as part of a draft swap between two authors, Peppers and Othello. \\u003Ca href=\\\"http://topia.wikidot.com/the-draft-othello-be-offering-for-draft-swap\\\"\\u003EHere\\u0026#39;s the original article by Othello, for anybody curious.\\u003C/a\\u003E The main gist of the article is that it\\u0026#39;s a woman who committed suicide, with the anomalous effect that anyone who sees her corpse believe she was murdered, and try to go on a crazy witch hunt to learn more about her \\u0026#39;murder\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, what is 4107? On a meta level, it is a replication of that effect in real life. The article has all of these weird symptoms that happened to this girl that are seemingly unconnected, and the reason for that is to get you thinking. What happened? What really happened to this girl, why are there so many injuries? But that\\u0026#39;s not the REAL point of the article. The real point of the article, \\u003Ca href=\\\"https://imgur.com/a/6FZgiye\\\"\\u003Ein Peppers\\u0026#39; own words,\\u003C/a\\u003E it is the simulation of an infohazard. If you don\\u0026#39;t remember what an infohazard is, here\\u0026#39;s a short explanation.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAn \\u003Cem\\u003Einfohazard\\u003C/em\\u003E, as coined by Sorts, is something that is triggered if you simply know about it. It is similar to but distinct from a \\u003Cem\\u003Ememetic\\u003C/em\\u003E agent because a \\u003Cem\\u003Ememetic\\u003C/em\\u003E agent is pure information whereas an \\u003Cem\\u003Einfohazard\\u003C/em\\u003E is generally an object. \\u003Ca href=\\\"http://www.scp-wiki.net/scp-426\\\"\\u003ESCP-426\\u003C/a\\u003E (I Am A Toaster) is a perfect example of this.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ERecall Othello\\u0026#39;s article, about how people kept trying to explain her suicide as murder. This article makes you those people. You know about this girl, with these weird wounds, and you\\u0026#39;re inclined to try to explain everything away. You\\u0026#39;re creating backstories for it that fit 4107\\u0026#39;s effects best. That, in a nutshell, is what 4107 is. Trying to force you to explain the unexplainable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat answer might be unsatisfying. Honestly, it is. It\\u0026#39;s REALLY unsatisfying. I wanna know what happened to this girl too. But the fact of the matter is that the unsolvability of the article is key to making it effective. Would it really be effective if, say, there was a nice explanation to everything? No. Because then you wouldn\\u0026#39;t keep thinking about it, you wouldn\\u0026#39;t keep trying to theorize about it, and you\\u0026#39;d certainly forget about it sooner or later. It\\u0026#39;d just be another mundane, somewhat weird article.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Peppers\\u0026#39; own words,\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESo while there is an answer for the textual level mystery, the actual purpose of the article is the meta level. The whole point of the textual level is that it can be filled in with all sorts of different interpretations, and the fact that one \\u003Cem\\u003Emay be\\u003C/em\\u003E the \\u003Cem\\u003Eone true\\u003C/em\\u003E interpretation is what creates the meta compulsion.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAlso,\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThere is more to the mystery, but the answer only exists to be something that\\u0026#39;s sought.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETheories\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI originally had a separate part of this article that was meant to explain the textual mystery, because as Peppers said:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EFwiw in regards to the actual original mystery in the article, I\\u0026#39;ll go ahead and say that at least one person\\u0026#39;s theory that I\\u0026#39;ve heard pretty much correctly guessed about 80% of the backstory I had in mind. So it\\u0026#39;s basically solvable\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESo let\\u0026#39;s go through some theories then! What could this even be? Honestly the declass wouldn\\u0026#39;t be complete without some attempt at explaining what\\u0026#39;s going on here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe\\u0026#39;ll start off by figuring out what the \\u003Cem\\u003Eaforementioned action\\u003C/em\\u003E is. There are two answers I (ripped off of the Discussions tab) think have some merit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA theory is that the \\u003Cem\\u003Eaforementioned action\\u003C/em\\u003E is the act of suicide. The slit wrists certainly point to that, alongside the scratches on the bone itself. Those don\\u0026#39;t seem like murder marks, rather suicide marks. You\\u0026#39;d think a thorough, scientific article on this woman would make some passing mentions to the possibility of suicide, but that\\u0026#39;s not present in the article. ctrl+f \\u0026quot;suicide\\u0026quot; doesn\\u0026#39;t pull anything up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut that can\\u0026#39;t possibly be true - there\\u0026#39;s no way that she stitched her hairs to her back herself, that\\u0026#39;s not humanly possible. Rather, let\\u0026#39;s think. Why would she purposely be censoring some thoughts, or rather, some theories about her death?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause those theories aren\\u0026#39;t true. By preventing people from talking about suicide about her in any way, she\\u0026#39;s reinforcing the idea that it\\u0026#39;s NOT suicide. Her killer\\u0026#39;s out there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, to explain the injuries.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you scroll down and look at the tags, there\\u0026#39;s a tag that stands out. \\u0026quot;loop\\u0026quot;. \\u0026quot;loop\\u0026quot; is certainly an interesting tag, and it gives me a perfect segue into this next bit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHer murderer is either her past self or her future self trying to kill her, and you\\u0026#39;ve heard the grandfather paradox - the one where killing your grandfather in the past leads to Temporal Fuckery - her trying to kill her past self led to Temporal Fuckery. That\\u0026#39;s why her body keeps reanimating, that\\u0026#39;s why her old teeth are in her stomach and her new teeth gone. It\\u0026#39;s all a part of the Temporal Fuckery. How\\u0026#39;d she get the means to go to the past to kill herself?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow she got the past means to kill herself, I\\u0026#39;m not sure. Not everything really needs to have an origin, and there\\u0026#39;s not much in the article about her origin anyway. That\\u0026#39;s not important. She can also censor things about \\u003Cem\\u003Ea certain action that is probably suicide\\u003C/em\\u003E, so clearly we\\u0026#39;re dealing with someone weird here, most likely a reality bender. That\\u0026#39;s not the important parts of the article.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EWait,\\u003C/em\\u003E you think. \\u003Cem\\u003EI thought it wasn\\u0026#39;t suicide?\\u003C/em\\u003E \\u003Cem\\u003EYou just said it wasn\\u0026#39;t like, two paragraphs ago.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHey fuck you I\\u0026#39;m not done yet. Her killer is some Temporally Fucked version of herself that\\u0026#39;s still out there on the run, and TECHNICALLY it\\u0026#39;s not suicide (this is a stretch I know) so just hear me out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOk I think that\\u0026#39;s all I have, that\\u0026#39;s my main theory. In summary, her past self (or future self) went back in time (or forward in time) to kill herself but then that created some Temporal Fuckery which resulted in 4107.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not claiming that this is true. I could be completely off base, but the important thing is that - the theories aren\\u0026#39;t the main issue here. That\\u0026#39;s not the REAL meat of the article, the real meat of the article is the act of theorizing. Because when you do that, you are fulfilling the article\\u0026#39;s purpose. Recall that it\\u0026#39;s a simulation of an infohazard. Theorizing about it, thinking about it, trying to fill in some gaps, that\\u0026#39;s what 4107 is about. I encourage you to think of some theories of your own, maybe even share them in the comments if you\\u0026#39;d like. We can compare and think of the correct answer - it\\u0026#39;s out there, Peppers said it.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EThis is an interesting article in many ways. It\\u0026#39;s well written, with good execution and a really fucking interesting mystery. It\\u0026#39;s a brilliant new idea that I haven\\u0026#39;t seen before on the site, even with all of the meta articles out there. So go read it and upvote. It recently cracked +100, maybe you can help it crack +200.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s all I have for you today. Thanks for reading.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?auto=webp\\u0026s=1553a87c5e9cc9a77446c6201895fe3e249eb1a0\", \"width\": 835, \"height\": 340}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0d7497f34f16a9edfdc923c233c6b5e3110e1d46\", \"width\": 108, \"height\": 43}, {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=2a2ce22bd1794280aa8ac8690f1a65e0cc54ce8a\", \"width\": 216, \"height\": 87}, {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5b2a5cbcc715d7dd08e742f6350327555b98d40a\", \"width\": 320, \"height\": 130}, {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a38702857c8dc996beed473e395c484b90c0c10d\", \"width\": 640, \"height\": 260}], \"variants\": {}, \"id\": \"GNqlwzMFaNw_8CcLzPq1qR2pANG92KVPHLXd7RKU3PI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpssmd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dyqz\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpssmd/scp_4107_dead/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpssmd/scp_4107_dead/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558107463.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_14ln8v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bpqdnn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UNqhsOUJmWQ2t4sHX0UOTnzheok0G9SVqpRL6ffKMuU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558123374.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgflip.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?auto=webp\\u0026s=fddbe8a9b179ed977621edcd7999d89a6c1fdcec\", \"width\": 360, \"height\": 202}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2ff40466a56ae465ba222ff2c92d17a9ea5f4bca\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d7b9d6edfe19f3d744b036f76950800e2e9e8bb3\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=548b4b887e3fefb2504b5554475d4b30f7d44a63\", \"width\": 320, \"height\": 179}], \"variants\": {}, \"id\": \"NSuoweBBRwM2msxx3gGpw9BRiUbbSHHOamy4surpy3U\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpqdnn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kilroy83\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpqdnn/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgflip.com/gif/2wm2zx\", \"subreddit_subscribers\": 704, \"created_utc\": 1558094574.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://www.youtube.com/watch?time\\\\_continue=123\\u0026v=6xItQ-cWgK0](https://www.youtube.com/watch?time_continue=123\\u0026v=6xItQ-cWgK0)\", \"author_fullname\": \"t2_1gk7l8fh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inauguration of the Montreal Paddock\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpk55p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558080308.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?time_continue=123\\u0026amp;v=6xItQ-cWgK0\\\"\\u003Ehttps://www.youtube.com/watch?time_continue=123\\u0026amp;v=6xItQ-cWgK0\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?auto=webp\\u0026s=053c40f1229c86afac6ab313fb6ddd103c166f15\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fe7f90a1f704ce581f914fa65344ff85ddff6298\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d2a2b15e83f83b69d39ef9cede0f14e8ab336eaf\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=54828e7e42bdab5059c348f799314cec96477c21\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"5YD429GR93M7FILAKNtTqyWyiOeA_fEXsM79eqTgh0w\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpk55p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"canisra\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpk55p/inauguration_of_the_montreal_paddock/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpk55p/inauguration_of_the_montreal_paddock/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558051508.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*Part 1 is [HERE](https://www.reddit.com/r/fixingmovies/comments/ak8qt1/my_take_on_fixing_the_dark_universe/), and Part 2 is [HERE](https://www.reddit.com/r/fixingmovies/comments/bomg7i/my_take_on_fixing_the_dark_universe_part_2/)*.\\n\\n*I promise, I'll only post one more of these before I call it quits. Real talk: I wanted to include my big grand finale in this post, but it got a little too long.*\\n\\n*Thanks to everyone who's followed along so far! I appreciate all of the comments!*\\n_____________________\\n\\n***The Case*** *(2026)*\\n\\n*Setting: New York, 1948*\\n\\nJust as the events of *The Vampire* are unfolding in Moscow in 1948, *another* story transpires on the other side of the Atlantic.\\n\\nThree years after the end of World War II, as thousands of battle-scarred American veterans adjust to peacetime, we meet a New York private detective named **Hank**. Not too long ago, Hank was a crack operator in the American **OSS**, and ran numerous daring missions against the Nazi war machine. As he attempts to put his military service behind him, he now runs a small-time private investigation firm out of a cramped office in Brooklyn, where he spends his days solving problems for desperate New Yorkers too afraid to turn to the police. When not pounding the pavement in search of clues, he enjoys the occasional romantic liaison with **Mary**\\u2014a pretty young reporter from a local tabloid newspaper, who occasionally hits him up for story leads.\\n\\nTo most casual observers, Hank is your typical square-jawed, street-smart private eye\\u2014but when people get to know him, they gradually notice a few odd details about him. He refuses to speak about his experiences in the war, but occasionally makes vague references to \\\"**The London Assignment**\\\", a dangerous OSS mission that went wrong. He regularly meets with an old contact from his OSS days, who supplies him with **unlabeled bottles of pills**, which he takes on a regular basis. Most strangely, there isn't a single mirror in his apartment, and he habitually avoids reflective surfaces, as if he's afraid of his own reflection.\\n\\nAs our story begins, the tabloid rags of New York are abuzz with stories about a new public menace:\\n\\\"**The Gemini Killer**\\\", a malevolent serial murderer who maims his victims by gruesomely ***removing half of their faces***. While the NYPD launches a manhunt for the elusive killer, Hank takes to the streets to launch his own investigation, convinced that he can find him before the police do. While he's ordinarily content to stay out of law enforcement's way, this case is distinctly personal for Hank, since the Gemini Killer's latest victim was his partner, a man named **Gabe**. Though he does his best to maintain a stoic facade, Hank can't help but feel a twinge of survivor's guilt, as he knows that *he* easily could have fallen prey to the killer instead.\\n\\nIn the first scene, Hank turns up at the scene of the Gemini Killer's latest murder, where the police are scouring the scene for clues. **Detective Enfield**, the cop in charge of the NYPD's manhunt, attempts to shoo him away from the crime scene, but he sticks around long enough to pick up one crucial clue: the newest murder victim was found with a distinctive tattoo along his arm, which Hank instantly recognizes as the work of a well-known Brooklyn tattoo artist with a devoted clientele. \\n\\nArmed with that useful nugget of information, Hank heads to the tattoo shop to interview the tattoo artist about his client, and he learns that the murder victim\\u2014a man named \\\"**Poole**\\\"\\u2014had a reputation for paranoia, and he was convinced that someone near his home in **the Bowery** was stalking him. Too late, the tattoo artist realizes that Poole's suspicions were true. Determined to help Hank avenge him, he gives him as much information as he can about Poole's personal life, hoping that Hank might be able to find his killer by retracing the steps in his daily routine.\\n\\nAs Hank searches the Bowery for further clues, his search window narrows considerably when he tracks down a craftsman who makes specialty knives, and the craftsman lets it slip\\u2014after an intense round of questioning\\u2014that he sold a vast collection of **surgical blades** to a mysterious man with a frightening appearance. As his search continues, Hank finally manages to track down a secluded apartment building in a crime-ridden neighborhood that the police avoid, and he realizes that he's struck gold when the landlord admits that he has a reclusive tenant in **Apartment 86** who he's never seen in person.\\n\\nUnder cover of darkness, Hank scales the building's fire escape and stealthily sneaks through the window of Apartment 86, finding it empty. As he lights a lamp to investigate, he recoils in horror at what he sees inside:\\n\\nThe room is filled with a vast collection of plaster casts of human heads, and each one is covered with grotesque \\\"masks\\\" stitched together from ***human skin***. Each one is perfectly split down the middle and stitched together from two different human specimens\\u2014and Hank soon realizes that they're crafted from the severed faces of the Gemini Killer's victims!\\n\\nAs he creeps through the apartment, Hank is unable to find any information that might allow him to identify the Gemini Killer, but he discovers\\u2014much to his surprise\\u2014that the mirror in the apartment's bathroom has been removed from the wall. Sufficiently shaken, he slips out of the apartment before anyone can catch him snooping, and he returns to his office as quickly as he can.\\n\\nBack at his office, Hank has a chance encounter with Mary, who's looking for a few juicy quotes about the search for the Gemini Killer. He declines to tell her anything about the case, but he invites her inside for a steamy night of lovemaking. As Hank closes his office door and locks it behind him, the camera closes on the door's glass panel, and\\u2014for the first time\\u2014we see the inscription written on the door.\\n\\nClear as day, it reads **\\\"Henry Jekyll, Licensed Private Investigator\\\"**.\\n\\n***SURPRISE!***\\n\\nOur story was actually an adaptation of *The Strange Case of Dr. Jekyll and Mr. Hyde* all along. \\\"Hank\\\" is **Henry Jekyll**, his partner \\\"Gabe\\\" was **Gabriel Utterson**, and his lover \\\"Mary\\\" is **Mary Reilly**. And now that you know that, you can probably guess the identity of the sinister Gemini Killer.\\n\\nHours later, Hank suddenly finds himself in a dark alleyway with his hands covered in blood. As he realizes what's happening, he realizes\\u2014much to his shock\\u2014that Mary is lying at his feet, stone dead. In his pocket, Hank finds a razor-sharp surgical knife, still soaked with Mary's fresh flesh blood. Worse still: when he reaches down to close her eyelids, he finds that half of her face has been removed.\\n\\nFinally piecing together the many strange details about the case, Hank realizes that *he* was the Gemini Killer all along\\u2014but for some reason, he can't seem to recall any of the many murders that he committed. It's as if someone else has been living inside his mind, leaving lengthy blank spaces in his memory whenever they take over.\\n\\nShaken to the core, Hank flees to a nearby dive bar, where he locks himself in the nearest bathroom. As he attempts to collect himself, he looks into the mirror above the sink, and sees his reflection staring back with a wicked grin on its face. From the depths of the mirror, the Gemini Killer\\u2014whose calls himself \\\"**Eddie Hyde**\\\"\\u2014mockingly congratulates Hank on finally solving the case of a lifetime.\\n\\nMoments later, Enfield kicks in the front door, and a squad of armed NYPD officers storm the bar with guns drawn. It seems that the police have found Mary's corpse, and eyewitness reports have led them to the bar. Hank sees that his clothes are soaked with blood, and he realizes that Enfield will arrest him as soon as he sees him. As he begins to panic, Hyde takes the opportunity to seize control of Hank's body again\\u2014and as he exits the bathroom to face the police, he reveals his trusty blades.\\n\\nIn a gruesome battle scene, Hyde mercilessly slaughters the police one by one, and finally kills Enfield with a well-placed headshot from a stolen service revolver. Too late, Hank regains control of his body and flees into the streets, leaving the blood-soaked bar behind him.\\n\\nAs the police flood the streets of New York looking for him, Hank narrowly manages to track down his old contact in the OSS, hoping that he might have some answers. Against his better judgment, his old contact (\\\"**The Major**\\\") agrees to provide what little help he can. Though the Major is initially reluctant to help a wanted fugitive, Hank insists that he's innocent.\\n\\nThe Major confirms that the fallout from \\\"The London Assignment\\\" affected Hank in strange ways, and he has never truly recovered from the events that transpired that day. The mysterious pills, which the Major still gives Hank without complaint, were intended to suppress his \\\"condition\\\". While they once worked perfectly, they're beginning to lose their effectiveness as the murderous Eddie Hyde becomes stronger. But try as he might, Hank still can't remember what happened in London.\\n\\nThe Major agrees to give Hank the dossier containing all known files on the London Assignment, which he secretly took from OSS headquarters after the agency was disbanded after the war. Inside the file, the Major tells Hank that he'll find everything that he needs to know about the mission\\u2014including the address of the building in London where everything went wrong. Determined to finally solve the mystery of his past, Hank leaves with the file, planning to book a flight to London with the help of a bootlegger pilot who owes him a favor.\\n\\nBefore he leaves, the Major gives Hank a final word of advice:\\n\\n*\\\"Watch yourself, son. If those cops find me, I'll insist you were never here. But if they find* ***you****, you're on your own.\\\"*\\n\\nAfter stealing a car and making his way upstate, Hank manages to make it to **the bootlegger**'s secret airstrip, where his plane is primed and ready for takeoff. After some tense negotiations, he agrees to fly Hank to London\\u2014but he insists that it's a one-way trip. Before they leave, he assures Hank that a wanted fugitive *isn't* the most dangerous cargo that he's ever smuggled. As they take off, Hank requests\\u2014to the bootlegger's befuddlement\\u2014that he handcuff him to his seat's armrest until they land.\\n\\nAs the plane rises into the air and soars over the Atlantic, Hank closes his eyes and drifts off to sleep. As he does, he finally remembers what happened in London...\\n\\nAt the height of the war, the OSS assigned Hank to track down and capture the infamous Nazi scientist **Dr. Hans Niemann**, who was rumored to be the mind behind the Third Reich's deadliest military projects. For years, Hank stalked the mad doctor across Europe as the war raged on\\u2014but Niemann was always one step ahead of him, and he never found him. But he *did* stumble upon evidence that the doctor was involved with a shady organization known as \\\"**Prodigium**\\\". As the OSS investigated Prodigium for clues about Niemann's whereabouts, they eventually discovered that the group had a base of operations in the heart of London itself, and they managed to uncover a plot to smuggle a mysterious chemical formula across the English Channel. Suspecting that the group was trafficking chemical weapons, the OSS deployed Hank to London to track down the formula and steal it.\\n\\nWorking fast, Hank managed to assassinate the Prodigium operative who was entrusted with carrying the formula, and he managed to escape with the leather briefcase containing the chemical vials. But his luck ran out when he tried to drive to the airport to rendezvous with his handlers, and discovered\\u2014just moments too late\\u2014that Prodigium had planted a bomb in his car. Hank bailed out of the car as the engine exploded, and he narrowly managed to survive the blast with minor burns and a concussion\\u2014but the case was destroyed in the explosion, and Hank was doused with chemicals as the glass vials shattered.\\n\\nAs he stumbled to his feet\\u2014half-blind, disoriented, and struggling to speak\\u2014he felt the chemicals seeping through his skin, transforming him in ways that he couldn't explain. Without warning, he found himself seized by the dark urge to kill, maim, and torture, and he felt a malevolent presence clawing its way into his heart. Worst of all, he found that he *couldn't remember his own name!* But as his vision cleared, he found himself staring right at the iron sign for **Hyde Park**. In that moment, Eddie Hyde was born.\\n\\nHank wakes as the plane touches down in a remote airfield on the outskirts of London. With his gun loaded and ready, he sets out in search of the address listed in the Major's files, which is allegedly the location of Prodigium's London headquarters. After a long walk across the bombed-out face of London, he finds a stately Victorian mansion at the address, and a well-dressed butler arrives at the door and invites him inside\\u2014as if he was expecting him.\\n\\nHank walks through the door of the mansion, where he's greeted by a room full of well-dressed men and women wearing masquerade masks, who gather around a circle of candles surrounding a mirror. In a scene eerily mirroring **Victor Frankenstein**'s first encounter with Prodigium at **Ingolstadt University** over a century earlier, the assembled members of the cult begin chanting an obscene prayer to \\\"**The Dark One**\\\". As Hank contemplates his reflection in the mirror, he sees the Dark One place a hand on his shoulder, causing half of his face to rot and wither away.\\n\\nAs Hank shrinks back in fear, a pair of armed guards force him to his feet and confiscate his gun, and an **elderly man** steps forward to greet him. In his gnarled hands, he carries an ornate silver dish with a golden chalice balanced atop it. The chalice is filled to the brim with green liquid\\u2014which Hank recognizes as the mysterious chemical agent from the London Assignment.\\n\\nThe elderly man introduces himself as the new leader of Prodigium, and\\u2014at long last\\u2014he explains the full story behind the mysterious formula.\\n\\nFor years, Prodigium's scholars and alchemists have believed that it might be possible to unlock the repressed dark side of the human psyche through chemistry, allowing ordinary people to unlock the darkness within their souls. Ever since his incident in London accidentally exposed him to the formula, the dark side of Hank's personality has been fighting for complete control of his soul, manifesting as his *alter ego* Hyde. But if he were to voluntarily ingest a full dose of the formula, Prodigium believes that his soul would be entirely consumed by darkness, allowing him to serve as the Dark One's living emissary on Earth.\\n\\nThe leader of Prodigium offers Hank a choice: he can willingly drink from the golden chalice, allowing Hyde to take full control of his mind, in exchange for his life; if he refuses to drink the potion, Prodigium will kill him\\u2014but he'll die with his free will fully intact.\\n\\nTorn between two impossible choices, Hank tries to push the chalice away, but Hyde seizes control of his body just in time to stop him. Although Hank tries his best to regain control, Hyde grabs the chalice and eagerly gulps the potion down, and the assembled members of Prodigium applaud as his eyes glaze over. Moments later, Hank smiles maliciously\\u2014and it's instantly clear that he has become Hyde permanently.\\n\\nThen all hell breaks loose.\\n\\nAs the elderly leader of Prodigium congratulates Hyde and welcomes him into the fold, Hyde grabs him by the throat and *breaks his neck* with his bare hands, then pulls a hidden blade from his boot and brutally murders three Prodigium members by slashing their jugulars. The guards draw their guns and try to shoot him, but Hyde manages to steal a guard's pistol, and a massive shootout ensues as he fires back at them. Once again, Hyde tears through the helpless crowd with ease, killing everyone he sees. As dozens of Prodigium members fall to the ground bleeding out, he throws his head back and cackles maliciously.\\n\\n***\\\"I'M NOBODY'S SLAVE!\\\"*** he screams. ***\\\"NO ONE CONTROLS EDDIE HYDE\\u2014GOD OR MORTAL!\\\"***\\n\\nThe shootout rages on, and the assembled guards try to surround Hyde\\u2014but he mows down everyone that dares to take a shot at him. Finally, as reinforcements arrive from another room, the guards manage to force Hyde into the basement of the mansion. As bullets fly, Hyde forces his way into the **boiler room**, where he takes a shot at the antique brass boiler. As the boiler explodes, half of the mansion suddenly erupts in flames, and most of the surviving Prodigium members burn to death as they're consumed in the blaze. The few remaining members futilely try to make a run for it; some of them pass out from smoke inhalation, and others are crushed by falling debris as the roof begins to collapse.\\n\\nAs the fire spreads through the mansion, Hyde defiantly shoots everyone he sees. When he finally runs out of bullets, he realizes that every last member of Prodigium is dead. The Dark One's cult failed in their mission, but Eddie Hyde got exactly what he wanted: Hank Jekyll lost the battle for his soul, and Hyde won.\\n\\n...Or *did* he?\\n\\nAs an exhausted Hyde drops his empty pistol and slumps against the wall, he looks into a nearby mirror. But it's not Hank that stares back from the mirror\\u2014it's *Hyde*.\\n\\nAgainst all odds, Hank has managed to summon the strength to fight Hyde, giving him control of his body for a few precious minutes. And for those few minutes, Hank chooses to stay in the basement as the mansion collapses around him.\\n\\nStaring out at him from the depths of the mirror, Hyde finally loses his cocky composure as he begs Hank to run to safety, warning him that he'll die if he doesn't.\\n\\n*\\\"That's the idea, Eddie old pal,\\\"* Hank says smirking. *\\\"Don't worry about me. My soul's in order, and I don't have any regrets. If this is what I've gotta do to bring you down, I consider it an honest trade. As for you... You've only got a few minutes left. Don't waste them in anger.*\\\"\\n\\nHyde screams at Hank as the fire envelops the basement. But as the mirror melts, and Hyde's face vanishes, his voice is finally silent. With that, the screen fades to black.\\n\\nA few hours later, three figures approach the ruins of the mansion as the London police pick their way through the ashes and rubble. As the camera swings around, we see their faces: it's **Eve**, **Lester Talbot**, and **Jacob Van Helsing**. \\n\\nTen years after their first meeting in Paris, the trio are now an inseparable team, and a decade of adventure has turned them into close friends. But as they survey Prodigium's ruined headquarters, they can only stare at the site of the massacre in befuddlement.\\n\\n*\\\"What the hell happened here?\\\"* Eve wonders aloud.\\n\\n*\\\"Perhaps divine justice,\\\"* Jacob says. *\\\"Or perhaps something else.\\\"*\\n\\n*\\\"We'll probably never know,\\\"* Lester says. *\\\"And for once, I think I'm alright with that...\\\"*\\n______________\\n\\n***The Creature*** *(2027)* \\n\\n*Setting: The Pacific, 1958*\\n\\nOur story begins with a flashback.\\n\\nSometime in the 19th century, a few promising young students gather in a cramped classroom at **Ingolstadt University** to hear a lecture from the eccentric old oceanographer **Professor Pierre Arronax**, who tells them an unlikely story about a perilous undersea voyage that he took with a mad sea captain called \\\"*Nemo*\\\". The students\\u2014including a few familiar faces like **Victor Frankenstein**, **Igor Waldman**, **Jack Griffin**, and a young **Abraham Van Helsing**\\u2014listen with bated breath as Arronax tells them about all of the strange things that he saw in the dark depths of the ocean. He tells them about his battles with giant squids, his brief sojourn to the ruins of Atlantis, and his time in the icy waters of the North Pole. But they're truly enraptured when he tells them about his strangest adventure of all: an encounter with a bizarre race of human-fish hybrids who dwell in the deepest depths of the oceans.\\n\\nThough some of the students initially doubt Arronax's story about the bizarre \\\"**ichthyoids**\\\", they change their tune when the Professor shows them a faded daguerrotype photo that he snapped of the creatures from the porthole of Nemo's submarine. As they stare at the grainy photo in awe, Arronax fondly reminisces about his adventure in the deep ocean, but he sadly admits that he's never been able to convince his scientific colleagues that the ichthyoids are real. But if *another* scientist managed to prove the creatures' existence by capturing an ichthyoid specimen and bringing it to the surface, that scientist's name would be enshrined forever in the annals of history. For in the depths of the ocean, he tells them, there are always mysteries waiting to be discovered...\\n\\nThe scenes fades out, and we return to the present day, where we see a familiar figure reading an antique leather diary packed with old photographs. As we zoom in on the diary, we see that it's the personal journal of Abraham Van Helsing\\u2014and one of the pictures is Arronax's photograph of the ichthyoids. And the figure reading the journal is none other than ***Dr. Hans Niemann***.\\n\\nThe year is 1958, and it's been 10 years since Niemann fled Russia and defected to the United States. Ever since that day, he has been hard at work designing weapons of war for the US military, and his handlers in the CIA have been all too happy to conceal his Nazi past. In years past, he played a key role in developing the hydrogen bomb for the Army; more recently, he designed the nuclear submarine **USS** ***Nautilus*** (named after Nemo's legendary submarine) for the US Navy, and helped plan **Project Mercury** for the fledgling space agency **NASA**. In time, his inventions may even put men on the Moon!\\n\\nBut after a decade of loyally working for the US government, Niemann now has a more personal project in mind: with the US Navy's blessing, he wants to lead an experimental submarine voyage to the uncharted depths of the Pacific Ocean, hoping to *finally* prove the existence of the mysterious ichthyoids. To do it, he has his sights set on one location: the shadowy **Marianas Trench**.\\n\\nOn a pristine Summer day, Niemann leaves the coast of **San Francisco** and sets off on a long ocean voyage to a remote naval base off the coast of Japan, where the US Navy has recently completed work on his experimental deep-ocean submersible **USS** ***Ammonite***. As he boards the *Ammonite* and prepares to dive, he recruits a motley crew of \\\"assistants\\\" to aid him in the journey. Hawaiian fisherman **Keoni Kamaka**, a decorated Navy veteran who saw action at Pearl Harbor, signs on as navigator; bookish young Japanese scientist **Ishiro Nakamura**, who devoted his life to science after losing his parents in the bombing of Hiroshima, agrees to be Niemann's research assistant; grizzled Australian sailor **John Allerdyce** (\\\"**Johnny Dice**\\\" to his friends) enlists as First Mate; and Jamaican-born engineer **Oliver \\\"Twisty\\\" O'Rear\\\"** joins the crew as a radio operator.\\n\\nAlthough they all sign on to crew the *Ammonite*, Niemann chooses not to tell them the true purpose of the mission\\u2014believing that they wouldn't have agreed to help him if they knew what he was really after. As far as they know, they're only crewing the vessel on its experimental test run.\\n\\nAs the *Ammonite* dives, tension soon erupts among the crew as Niemann admits that they'll be at sea for much longer than he led them to believe. Niemann knows that the Navy likely won't give him another chance to research the ichthyoids, so he refuses to return to port until he's found what he's looking for. Later, tensions escalate when the crew presses him on the true purpose of his mission, and Niemann admits that he's looking for a deep-ocean life-form that's never been proven to exist. Seeing Niemann as a delusional madman, Twisty and Kamaka tell him that his mission is a fool's errand, and they encourage him to call off the mission before he gets them all killed\\u2014though Ishiro is intrigued by the possibility of researching the ichthyoids.\\n\\nOn the second day of the voyage, another argument erupts among the crew when Johnny Dice questions Niemann about his past. Knowing of the doctor's German heritage, he comes to suspect (rightly) that he's one of the Nazi researchers who defected to the Allies to save himself after World War II. Still remembering his time spent fighting in the Pacific, he's repulsed by the idea of working for a Nazi. But Niemann, who has always worked hard to keep his past a secret, becomes enraged by Johnny's unrelenting questions\\u2014and he ultimately loses his temper and strikes him. As a fight ensues, Twisty is forced to intercede and separate the two, and they agree to keep their distance for the remainder of the voyage. But that night, tragedy strikes...\\n\\nAs he attempts to sleep, Niemann is plagued by a series of disturbing dreams about scaly figures lurking in the shadows of the Pacific. Before he wakes\\u2014shaking and drenched in sweat\\u2014he sees powerful tentacles reaching out to grab him. When he turns on his lamp, Niemann sees Johnny Dice standing over his bed with a knife in his hand, his eyes blank and glazed over. In a trance, Johnny lunges at Niemann and tries to stab him, and Niemann fights back. As a fight ensues, Johnny and Niemann struggle over the knife, and Johnny begins murmuring two words over and over again:\\n\\n*\\\"Go back... Go back... Go back...\\\"*\\n\\nAs Niemann tries to wrestle the knife from Johnny's hand, he accidentally stabs him in the chest with it, and calls the rest of the crew to help him stop the bleeding. When the others arrive, they become even *more* suspicious of Niemann when they see him standing over Johnny with a knife lodged in his chest. Remembering Niemann's violent argument with Johnny earlier in the day, they're reluctant to believe Niemann when he insists that Johnny attacked him. Try as they might, they're unable to stop the bleeding, and Johnny soon bleeds to death.\\n\\nRattled by Johnny's sudden death, the crew becomes even more terrified when the *Ammonite* suddenly stops moving, and they realize that the propeller has inexplicably become *jammed*. As they convene to discuss repairs, Ishiro suddenly recoils in fear when he sees a grotesque scaly face staring at him through the porthole; when he ties to get a closer look at it, the face vanishes into the darkness.\\n\\nAs the crew tries to convince Niemann to return to the surface, Kamaka agrees to don a diving suit and exit the airlock to repair the propeller from outside. In a tense scene, he feels his way along the exterior of the *Ammonite* while using a flashlight to light his way. When he finally reaches the propeller, he realizes that it isn't jammed, but it's somehow been *dismantled* with great care and precision. Working fast, he manages to reassemble the propeller\\u2014but as soon as he does, he's *grabbed* by powerful webbed hands, which drag him from the sub and pull him into the darkness. As the rest of the crew attempt to stay in touch with him via radio, they hear Kamaka's terrified screams as he dies.\\n\\nDespite their suspicions of Niemann, Twisty and Ishiro agree to cooperate with him until they can return to the surface\\u2014and with Kamaka's death, they suddenly realize that the ichthyoids are very real. Still, Niemann convinces them to remain below the surface for one more day, if only to ensure that Johnny and Kamaka didn't die in vain. Hours later, though, tragedy strikes again.\\n\\nWhen Niemann pays a visit to Ishiro's bunk to go over some research with him, he discovers that Ishiro has *committed suicide* by slashing his throat with a knife\\u2014and before dying, he daubed the words *\\\"GO BACK\\\"* on the bulkhead in his own blood. When Twisty finds him, he finally begins to believe Niemann's story about Johnny's mysterious trance. *Something* in the depths seems to be manipulating the crew's minds, driving them into madness in an effort to stop their voyage from uncovering too much. As they discuss recent events, Niemann tells Twisty about his bizarre dreams, theorizing that he had psychic images projected into his mind while he slept. His suspicions are confirmed when Twisty admits that he has also been having bizarre nightmares since the voyage began\\u2014and he *also* saw an image of a massive tentacled creature in his dreams.\\n\\nAt first, Twisty theorizes that the ichthyoids are responsible for the crew's madness, but Niemann persuades him that there's a more powerful force at work. After all, it would take an incredibly powerful brain to project such strong images directly into another creature's mind, and the ichthyoids are too small to possess such power. But since the ichthyoids always appear to act in perfect synchronicity with one another, perhaps they're *also* being psychically controlled. Perhaps they're just *drones*, and a more powerful creature is acting as their Queen.\\n\\nIn a desperate effort to avenge the other crew-members, Twisty agrees to help Niemann find the mysterious being that drove them to their deaths, knowing that he won't be able to live with himself if he passes up a chance to kill it. Pushing the *Ammonite*'s sonar array to its limits, he soon detects a massive structure on a nearby underwater plateau, and decides to check it out.\\n\\nIn the climax, Niemann and Twisty both don diving suits and venture onto the plateau, where\\u2014to their shock and horror\\u2014they discover a massive metallic structure perched atop the oceanic ridge, guarded by a massive swarm of ichthyoids. As Niemann approaches the metal structure, he realizes that it's actually a ***spaceship***, and he finds his mind swimming with bizarre voices and images whenever he moves closer to it.\\n\\nAt long last, Niemann realizes the truth about the ichthyoids: they're aquatic *aliens* who've been hiding in Earth's ocean ever since their spacecraft crashed in the Pacific. Judging by the amount of coral covering the drowned spacecraft, Niemann realizes that the ship must have crashed more than two centuries ago, long before any humans would have been able to find it.\\n\\nArmed with knives, harpoons and explosives, Twisty and Niemann drive off the ichthyoids in a massive underwater battle, and Niemann narrowly manages to force his way into the heart of the ruined spaceship\\u2014where a **massive tentacled beast** is waiting at the center of a glass enclosure. **The Creature**'s body resembles a massive swollen *brain*, explaining how its psychic abilities were so powerful. But despite the long reach of its tentacles, its body is far too massive to move; instead, it uses its psychic abilities to force enslaved ichthyoids to do its bidding, and they loyally bring it food and safeguard its larval offspring. In the glass enclosure where the Creature sits, the walls are lined with countess rows of transparent jars filled with murky amniotic fluid; inside each one, we can clearly see a miniature embryo with a brain-like body and slender tentacles.\\n\\nIn a climactic showdown, the Creature bombards Niemann with psychic energy and swipes at him with its massive tentacles. Niemann nearly passes out as the beast invades his mind, but he manages to land a good shot with a harpoon gun tipped with explosives, and he successfully wounds the Creature's massive brain. As it dies, the ichthyoids fall into disarray, and Niemann finally relaxes as the Creature's psychic attacks stop. With that, he and Twisty return to the *Ammonite* and make their way back to the surface, where they go their separate ways\\u2014agreeing *never* to tell anyone what they saw in the depths of the Pacific.\\n\\nIn the final scene, Niemann returns to his old lab in a remote military base on the California coast, where he resumes his old research. But when his handlers are out of earshot, he opens a locked cabinet and retrieves a small glass object. It's *one of the Creature's embryos*, which he secretly took from the Creature's drowned spaceship. As he lays the cylindrical glass jar on his table and strokes the glass fondly, the embryo's small tentacles begin to twitch.\\n\\n*\\\"Come, little one...\\\"* he says. *\\\"Together, I think you and I are going to accomplish wonders...\\\"*\\n\\nJust outside the base, where the Pacific Ocean laps at the stony shore, a scaly green head pokes out of the water. Moments later, an ichthyoid crawls out of the ocean and walks onto the beach, with six more behind it. Inside the lab, Niemann waves his hand\\u2014and in an instant, the scaly creatures are still.\\n\\nNiemann smiles, and the screen fades to black...\\n______________\\n\\n***The Case:*** In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\\"The Gemini Killer\\\" to justice. In a twist, it's revealed that Hank's full name is \\\"Henry Jekyll\\\", and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium's secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\n\\n***The Creature:*** Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they're aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they're slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures' drowned spaceship to kill the monster, and manages to steal one of the monster's embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpiv79\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558565104.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558073240.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EPart 1 is \\u003Ca href=\\\"https://www.reddit.com/r/fixingmovies/comments/ak8qt1/my_take_on_fixing_the_dark_universe/\\\"\\u003EHERE\\u003C/a\\u003E, and Part 2 is \\u003Ca href=\\\"https://www.reddit.com/r/fixingmovies/comments/bomg7i/my_take_on_fixing_the_dark_universe_part_2/\\\"\\u003EHERE\\u003C/a\\u003E\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EI promise, I\\u0026#39;ll only post one more of these before I call it quits. Real talk: I wanted to include my big grand finale in this post, but it got a little too long.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EThanks to everyone who\\u0026#39;s followed along so far! I appreciate all of the comments!\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Case\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003E(2026)\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESetting: New York, 1948\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust as the events of \\u003Cem\\u003EThe Vampire\\u003C/em\\u003E are unfolding in Moscow in 1948, \\u003Cem\\u003Eanother\\u003C/em\\u003E story transpires on the other side of the Atlantic.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThree years after the end of World War II, as thousands of battle-scarred American veterans adjust to peacetime, we meet a New York private detective named \\u003Cstrong\\u003EHank\\u003C/strong\\u003E. Not too long ago, Hank was a crack operator in the American \\u003Cstrong\\u003EOSS\\u003C/strong\\u003E, and ran numerous daring missions against the Nazi war machine. As he attempts to put his military service behind him, he now runs a small-time private investigation firm out of a cramped office in Brooklyn, where he spends his days solving problems for desperate New Yorkers too afraid to turn to the police. When not pounding the pavement in search of clues, he enjoys the occasional romantic liaison with \\u003Cstrong\\u003EMary\\u003C/strong\\u003E\\u2014a pretty young reporter from a local tabloid newspaper, who occasionally hits him up for story leads.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo most casual observers, Hank is your typical square-jawed, street-smart private eye\\u2014but when people get to know him, they gradually notice a few odd details about him. He refuses to speak about his experiences in the war, but occasionally makes vague references to \\u0026quot;\\u003Cstrong\\u003EThe London Assignment\\u003C/strong\\u003E\\u0026quot;, a dangerous OSS mission that went wrong. He regularly meets with an old contact from his OSS days, who supplies him with \\u003Cstrong\\u003Eunlabeled bottles of pills\\u003C/strong\\u003E, which he takes on a regular basis. Most strangely, there isn\\u0026#39;t a single mirror in his apartment, and he habitually avoids reflective surfaces, as if he\\u0026#39;s afraid of his own reflection.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs our story begins, the tabloid rags of New York are abuzz with stories about a new public menace:\\n\\u0026quot;\\u003Cstrong\\u003EThe Gemini Killer\\u003C/strong\\u003E\\u0026quot;, a malevolent serial murderer who maims his victims by gruesomely \\u003Cstrong\\u003E\\u003Cem\\u003Eremoving half of their faces\\u003C/em\\u003E\\u003C/strong\\u003E. While the NYPD launches a manhunt for the elusive killer, Hank takes to the streets to launch his own investigation, convinced that he can find him before the police do. While he\\u0026#39;s ordinarily content to stay out of law enforcement\\u0026#39;s way, this case is distinctly personal for Hank, since the Gemini Killer\\u0026#39;s latest victim was his partner, a man named \\u003Cstrong\\u003EGabe\\u003C/strong\\u003E. Though he does his best to maintain a stoic facade, Hank can\\u0026#39;t help but feel a twinge of survivor\\u0026#39;s guilt, as he knows that \\u003Cem\\u003Ehe\\u003C/em\\u003E easily could have fallen prey to the killer instead.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the first scene, Hank turns up at the scene of the Gemini Killer\\u0026#39;s latest murder, where the police are scouring the scene for clues. \\u003Cstrong\\u003EDetective Enfield\\u003C/strong\\u003E, the cop in charge of the NYPD\\u0026#39;s manhunt, attempts to shoo him away from the crime scene, but he sticks around long enough to pick up one crucial clue: the newest murder victim was found with a distinctive tattoo along his arm, which Hank instantly recognizes as the work of a well-known Brooklyn tattoo artist with a devoted clientele. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EArmed with that useful nugget of information, Hank heads to the tattoo shop to interview the tattoo artist about his client, and he learns that the murder victim\\u2014a man named \\u0026quot;\\u003Cstrong\\u003EPoole\\u003C/strong\\u003E\\u0026quot;\\u2014had a reputation for paranoia, and he was convinced that someone near his home in \\u003Cstrong\\u003Ethe Bowery\\u003C/strong\\u003E was stalking him. Too late, the tattoo artist realizes that Poole\\u0026#39;s suspicions were true. Determined to help Hank avenge him, he gives him as much information as he can about Poole\\u0026#39;s personal life, hoping that Hank might be able to find his killer by retracing the steps in his daily routine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Hank searches the Bowery for further clues, his search window narrows considerably when he tracks down a craftsman who makes specialty knives, and the craftsman lets it slip\\u2014after an intense round of questioning\\u2014that he sold a vast collection of \\u003Cstrong\\u003Esurgical blades\\u003C/strong\\u003E to a mysterious man with a frightening appearance. As his search continues, Hank finally manages to track down a secluded apartment building in a crime-ridden neighborhood that the police avoid, and he realizes that he\\u0026#39;s struck gold when the landlord admits that he has a reclusive tenant in \\u003Cstrong\\u003EApartment 86\\u003C/strong\\u003E who he\\u0026#39;s never seen in person.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnder cover of darkness, Hank scales the building\\u0026#39;s fire escape and stealthily sneaks through the window of Apartment 86, finding it empty. As he lights a lamp to investigate, he recoils in horror at what he sees inside:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe room is filled with a vast collection of plaster casts of human heads, and each one is covered with grotesque \\u0026quot;masks\\u0026quot; stitched together from \\u003Cstrong\\u003E\\u003Cem\\u003Ehuman skin\\u003C/em\\u003E\\u003C/strong\\u003E. Each one is perfectly split down the middle and stitched together from two different human specimens\\u2014and Hank soon realizes that they\\u0026#39;re crafted from the severed faces of the Gemini Killer\\u0026#39;s victims!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he creeps through the apartment, Hank is unable to find any information that might allow him to identify the Gemini Killer, but he discovers\\u2014much to his surprise\\u2014that the mirror in the apartment\\u0026#39;s bathroom has been removed from the wall. Sufficiently shaken, he slips out of the apartment before anyone can catch him snooping, and he returns to his office as quickly as he can.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack at his office, Hank has a chance encounter with Mary, who\\u0026#39;s looking for a few juicy quotes about the search for the Gemini Killer. He declines to tell her anything about the case, but he invites her inside for a steamy night of lovemaking. As Hank closes his office door and locks it behind him, the camera closes on the door\\u0026#39;s glass panel, and\\u2014for the first time\\u2014we see the inscription written on the door.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EClear as day, it reads \\u003Cstrong\\u003E\\u0026quot;Henry Jekyll, Licensed Private Investigator\\u0026quot;\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESURPRISE!\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur story was actually an adaptation of \\u003Cem\\u003EThe Strange Case of Dr. Jekyll and Mr. Hyde\\u003C/em\\u003E all along. \\u0026quot;Hank\\u0026quot; is \\u003Cstrong\\u003EHenry Jekyll\\u003C/strong\\u003E, his partner \\u0026quot;Gabe\\u0026quot; was \\u003Cstrong\\u003EGabriel Utterson\\u003C/strong\\u003E, and his lover \\u0026quot;Mary\\u0026quot; is \\u003Cstrong\\u003EMary Reilly\\u003C/strong\\u003E. And now that you know that, you can probably guess the identity of the sinister Gemini Killer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHours later, Hank suddenly finds himself in a dark alleyway with his hands covered in blood. As he realizes what\\u0026#39;s happening, he realizes\\u2014much to his shock\\u2014that Mary is lying at his feet, stone dead. In his pocket, Hank finds a razor-sharp surgical knife, still soaked with Mary\\u0026#39;s fresh flesh blood. Worse still: when he reaches down to close her eyelids, he finds that half of her face has been removed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally piecing together the many strange details about the case, Hank realizes that \\u003Cem\\u003Ehe\\u003C/em\\u003E was the Gemini Killer all along\\u2014but for some reason, he can\\u0026#39;t seem to recall any of the many murders that he committed. It\\u0026#39;s as if someone else has been living inside his mind, leaving lengthy blank spaces in his memory whenever they take over.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShaken to the core, Hank flees to a nearby dive bar, where he locks himself in the nearest bathroom. As he attempts to collect himself, he looks into the mirror above the sink, and sees his reflection staring back with a wicked grin on its face. From the depths of the mirror, the Gemini Killer\\u2014whose calls himself \\u0026quot;\\u003Cstrong\\u003EEddie Hyde\\u003C/strong\\u003E\\u0026quot;\\u2014mockingly congratulates Hank on finally solving the case of a lifetime.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoments later, Enfield kicks in the front door, and a squad of armed NYPD officers storm the bar with guns drawn. It seems that the police have found Mary\\u0026#39;s corpse, and eyewitness reports have led them to the bar. Hank sees that his clothes are soaked with blood, and he realizes that Enfield will arrest him as soon as he sees him. As he begins to panic, Hyde takes the opportunity to seize control of Hank\\u0026#39;s body again\\u2014and as he exits the bathroom to face the police, he reveals his trusty blades.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a gruesome battle scene, Hyde mercilessly slaughters the police one by one, and finally kills Enfield with a well-placed headshot from a stolen service revolver. Too late, Hank regains control of his body and flees into the streets, leaving the blood-soaked bar behind him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the police flood the streets of New York looking for him, Hank narrowly manages to track down his old contact in the OSS, hoping that he might have some answers. Against his better judgment, his old contact (\\u0026quot;\\u003Cstrong\\u003EThe Major\\u003C/strong\\u003E\\u0026quot;) agrees to provide what little help he can. Though the Major is initially reluctant to help a wanted fugitive, Hank insists that he\\u0026#39;s innocent.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Major confirms that the fallout from \\u0026quot;The London Assignment\\u0026quot; affected Hank in strange ways, and he has never truly recovered from the events that transpired that day. The mysterious pills, which the Major still gives Hank without complaint, were intended to suppress his \\u0026quot;condition\\u0026quot;. While they once worked perfectly, they\\u0026#39;re beginning to lose their effectiveness as the murderous Eddie Hyde becomes stronger. But try as he might, Hank still can\\u0026#39;t remember what happened in London.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Major agrees to give Hank the dossier containing all known files on the London Assignment, which he secretly took from OSS headquarters after the agency was disbanded after the war. Inside the file, the Major tells Hank that he\\u0026#39;ll find everything that he needs to know about the mission\\u2014including the address of the building in London where everything went wrong. Determined to finally solve the mystery of his past, Hank leaves with the file, planning to book a flight to London with the help of a bootlegger pilot who owes him a favor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore he leaves, the Major gives Hank a final word of advice:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Watch yourself, son. If those cops find me, I\\u0026#39;ll insist you were never here. But if they find\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003Eyou\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E, you\\u0026#39;re on your own.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter stealing a car and making his way upstate, Hank manages to make it to \\u003Cstrong\\u003Ethe bootlegger\\u003C/strong\\u003E\\u0026#39;s secret airstrip, where his plane is primed and ready for takeoff. After some tense negotiations, he agrees to fly Hank to London\\u2014but he insists that it\\u0026#39;s a one-way trip. Before they leave, he assures Hank that a wanted fugitive \\u003Cem\\u003Eisn\\u0026#39;t\\u003C/em\\u003E the most dangerous cargo that he\\u0026#39;s ever smuggled. As they take off, Hank requests\\u2014to the bootlegger\\u0026#39;s befuddlement\\u2014that he handcuff him to his seat\\u0026#39;s armrest until they land.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the plane rises into the air and soars over the Atlantic, Hank closes his eyes and drifts off to sleep. As he does, he finally remembers what happened in London...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the height of the war, the OSS assigned Hank to track down and capture the infamous Nazi scientist \\u003Cstrong\\u003EDr. Hans Niemann\\u003C/strong\\u003E, who was rumored to be the mind behind the Third Reich\\u0026#39;s deadliest military projects. For years, Hank stalked the mad doctor across Europe as the war raged on\\u2014but Niemann was always one step ahead of him, and he never found him. But he \\u003Cem\\u003Edid\\u003C/em\\u003E stumble upon evidence that the doctor was involved with a shady organization known as \\u0026quot;\\u003Cstrong\\u003EProdigium\\u003C/strong\\u003E\\u0026quot;. As the OSS investigated Prodigium for clues about Niemann\\u0026#39;s whereabouts, they eventually discovered that the group had a base of operations in the heart of London itself, and they managed to uncover a plot to smuggle a mysterious chemical formula across the English Channel. Suspecting that the group was trafficking chemical weapons, the OSS deployed Hank to London to track down the formula and steal it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWorking fast, Hank managed to assassinate the Prodigium operative who was entrusted with carrying the formula, and he managed to escape with the leather briefcase containing the chemical vials. But his luck ran out when he tried to drive to the airport to rendezvous with his handlers, and discovered\\u2014just moments too late\\u2014that Prodigium had planted a bomb in his car. Hank bailed out of the car as the engine exploded, and he narrowly managed to survive the blast with minor burns and a concussion\\u2014but the case was destroyed in the explosion, and Hank was doused with chemicals as the glass vials shattered.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he stumbled to his feet\\u2014half-blind, disoriented, and struggling to speak\\u2014he felt the chemicals seeping through his skin, transforming him in ways that he couldn\\u0026#39;t explain. Without warning, he found himself seized by the dark urge to kill, maim, and torture, and he felt a malevolent presence clawing its way into his heart. Worst of all, he found that he \\u003Cem\\u003Ecouldn\\u0026#39;t remember his own name!\\u003C/em\\u003E But as his vision cleared, he found himself staring right at the iron sign for \\u003Cstrong\\u003EHyde Park\\u003C/strong\\u003E. In that moment, Eddie Hyde was born.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHank wakes as the plane touches down in a remote airfield on the outskirts of London. With his gun loaded and ready, he sets out in search of the address listed in the Major\\u0026#39;s files, which is allegedly the location of Prodigium\\u0026#39;s London headquarters. After a long walk across the bombed-out face of London, he finds a stately Victorian mansion at the address, and a well-dressed butler arrives at the door and invites him inside\\u2014as if he was expecting him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHank walks through the door of the mansion, where he\\u0026#39;s greeted by a room full of well-dressed men and women wearing masquerade masks, who gather around a circle of candles surrounding a mirror. In a scene eerily mirroring \\u003Cstrong\\u003EVictor Frankenstein\\u003C/strong\\u003E\\u0026#39;s first encounter with Prodigium at \\u003Cstrong\\u003EIngolstadt University\\u003C/strong\\u003E over a century earlier, the assembled members of the cult begin chanting an obscene prayer to \\u0026quot;\\u003Cstrong\\u003EThe Dark One\\u003C/strong\\u003E\\u0026quot;. As Hank contemplates his reflection in the mirror, he sees the Dark One place a hand on his shoulder, causing half of his face to rot and wither away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Hank shrinks back in fear, a pair of armed guards force him to his feet and confiscate his gun, and an \\u003Cstrong\\u003Eelderly man\\u003C/strong\\u003E steps forward to greet him. In his gnarled hands, he carries an ornate silver dish with a golden chalice balanced atop it. The chalice is filled to the brim with green liquid\\u2014which Hank recognizes as the mysterious chemical agent from the London Assignment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe elderly man introduces himself as the new leader of Prodigium, and\\u2014at long last\\u2014he explains the full story behind the mysterious formula.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor years, Prodigium\\u0026#39;s scholars and alchemists have believed that it might be possible to unlock the repressed dark side of the human psyche through chemistry, allowing ordinary people to unlock the darkness within their souls. Ever since his incident in London accidentally exposed him to the formula, the dark side of Hank\\u0026#39;s personality has been fighting for complete control of his soul, manifesting as his \\u003Cem\\u003Ealter ego\\u003C/em\\u003E Hyde. But if he were to voluntarily ingest a full dose of the formula, Prodigium believes that his soul would be entirely consumed by darkness, allowing him to serve as the Dark One\\u0026#39;s living emissary on Earth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe leader of Prodigium offers Hank a choice: he can willingly drink from the golden chalice, allowing Hyde to take full control of his mind, in exchange for his life; if he refuses to drink the potion, Prodigium will kill him\\u2014but he\\u0026#39;ll die with his free will fully intact.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETorn between two impossible choices, Hank tries to push the chalice away, but Hyde seizes control of his body just in time to stop him. Although Hank tries his best to regain control, Hyde grabs the chalice and eagerly gulps the potion down, and the assembled members of Prodigium applaud as his eyes glaze over. Moments later, Hank smiles maliciously\\u2014and it\\u0026#39;s instantly clear that he has become Hyde permanently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen all hell breaks loose.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the elderly leader of Prodigium congratulates Hyde and welcomes him into the fold, Hyde grabs him by the throat and \\u003Cem\\u003Ebreaks his neck\\u003C/em\\u003E with his bare hands, then pulls a hidden blade from his boot and brutally murders three Prodigium members by slashing their jugulars. The guards draw their guns and try to shoot him, but Hyde manages to steal a guard\\u0026#39;s pistol, and a massive shootout ensues as he fires back at them. Once again, Hyde tears through the helpless crowd with ease, killing everyone he sees. As dozens of Prodigium members fall to the ground bleeding out, he throws his head back and cackles maliciously.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;M NOBODY\\u0026#39;S SLAVE!\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E he screams. \\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;NO ONE CONTROLS EDDIE HYDE\\u2014GOD OR MORTAL!\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe shootout rages on, and the assembled guards try to surround Hyde\\u2014but he mows down everyone that dares to take a shot at him. Finally, as reinforcements arrive from another room, the guards manage to force Hyde into the basement of the mansion. As bullets fly, Hyde forces his way into the \\u003Cstrong\\u003Eboiler room\\u003C/strong\\u003E, where he takes a shot at the antique brass boiler. As the boiler explodes, half of the mansion suddenly erupts in flames, and most of the surviving Prodigium members burn to death as they\\u0026#39;re consumed in the blaze. The few remaining members futilely try to make a run for it; some of them pass out from smoke inhalation, and others are crushed by falling debris as the roof begins to collapse.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the fire spreads through the mansion, Hyde defiantly shoots everyone he sees. When he finally runs out of bullets, he realizes that every last member of Prodigium is dead. The Dark One\\u0026#39;s cult failed in their mission, but Eddie Hyde got exactly what he wanted: Hank Jekyll lost the battle for his soul, and Hyde won.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...Or \\u003Cem\\u003Edid\\u003C/em\\u003E he?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs an exhausted Hyde drops his empty pistol and slumps against the wall, he looks into a nearby mirror. But it\\u0026#39;s not Hank that stares back from the mirror\\u2014it\\u0026#39;s \\u003Cem\\u003EHyde\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAgainst all odds, Hank has managed to summon the strength to fight Hyde, giving him control of his body for a few precious minutes. And for those few minutes, Hank chooses to stay in the basement as the mansion collapses around him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStaring out at him from the depths of the mirror, Hyde finally loses his cocky composure as he begs Hank to run to safety, warning him that he\\u0026#39;ll die if he doesn\\u0026#39;t.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;That\\u0026#39;s the idea, Eddie old pal,\\u0026quot;\\u003C/em\\u003E Hank says smirking. \\u003Cem\\u003E\\u0026quot;Don\\u0026#39;t worry about me. My soul\\u0026#39;s in order, and I don\\u0026#39;t have any regrets. If this is what I\\u0026#39;ve gotta do to bring you down, I consider it an honest trade. As for you... You\\u0026#39;ve only got a few minutes left. Don\\u0026#39;t waste them in anger.\\u003C/em\\u003E\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyde screams at Hank as the fire envelops the basement. But as the mirror melts, and Hyde\\u0026#39;s face vanishes, his voice is finally silent. With that, the screen fades to black.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA few hours later, three figures approach the ruins of the mansion as the London police pick their way through the ashes and rubble. As the camera swings around, we see their faces: it\\u0026#39;s \\u003Cstrong\\u003EEve\\u003C/strong\\u003E, \\u003Cstrong\\u003ELester Talbot\\u003C/strong\\u003E, and \\u003Cstrong\\u003EJacob Van Helsing\\u003C/strong\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETen years after their first meeting in Paris, the trio are now an inseparable team, and a decade of adventure has turned them into close friends. But as they survey Prodigium\\u0026#39;s ruined headquarters, they can only stare at the site of the massacre in befuddlement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;What the hell happened here?\\u0026quot;\\u003C/em\\u003E Eve wonders aloud.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Perhaps divine justice,\\u0026quot;\\u003C/em\\u003E Jacob says. \\u003Cem\\u003E\\u0026quot;Or perhaps something else.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;ll probably never know,\\u0026quot;\\u003C/em\\u003E Lester says. \\u003Cem\\u003E\\u0026quot;And for once, I think I\\u0026#39;m alright with that...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Creature\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003E(2027)\\u003C/em\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESetting: The Pacific, 1958\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur story begins with a flashback.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESometime in the 19th century, a few promising young students gather in a cramped classroom at \\u003Cstrong\\u003EIngolstadt University\\u003C/strong\\u003E to hear a lecture from the eccentric old oceanographer \\u003Cstrong\\u003EProfessor Pierre Arronax\\u003C/strong\\u003E, who tells them an unlikely story about a perilous undersea voyage that he took with a mad sea captain called \\u0026quot;\\u003Cem\\u003ENemo\\u003C/em\\u003E\\u0026quot;. The students\\u2014including a few familiar faces like \\u003Cstrong\\u003EVictor Frankenstein\\u003C/strong\\u003E, \\u003Cstrong\\u003EIgor Waldman\\u003C/strong\\u003E, \\u003Cstrong\\u003EJack Griffin\\u003C/strong\\u003E, and a young \\u003Cstrong\\u003EAbraham Van Helsing\\u003C/strong\\u003E\\u2014listen with bated breath as Arronax tells them about all of the strange things that he saw in the dark depths of the ocean. He tells them about his battles with giant squids, his brief sojourn to the ruins of Atlantis, and his time in the icy waters of the North Pole. But they\\u0026#39;re truly enraptured when he tells them about his strangest adventure of all: an encounter with a bizarre race of human-fish hybrids who dwell in the deepest depths of the oceans.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThough some of the students initially doubt Arronax\\u0026#39;s story about the bizarre \\u0026quot;\\u003Cstrong\\u003Eichthyoids\\u003C/strong\\u003E\\u0026quot;, they change their tune when the Professor shows them a faded daguerrotype photo that he snapped of the creatures from the porthole of Nemo\\u0026#39;s submarine. As they stare at the grainy photo in awe, Arronax fondly reminisces about his adventure in the deep ocean, but he sadly admits that he\\u0026#39;s never been able to convince his scientific colleagues that the ichthyoids are real. But if \\u003Cem\\u003Eanother\\u003C/em\\u003E scientist managed to prove the creatures\\u0026#39; existence by capturing an ichthyoid specimen and bringing it to the surface, that scientist\\u0026#39;s name would be enshrined forever in the annals of history. For in the depths of the ocean, he tells them, there are always mysteries waiting to be discovered...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe scenes fades out, and we return to the present day, where we see a familiar figure reading an antique leather diary packed with old photographs. As we zoom in on the diary, we see that it\\u0026#39;s the personal journal of Abraham Van Helsing\\u2014and one of the pictures is Arronax\\u0026#39;s photograph of the ichthyoids. And the figure reading the journal is none other than \\u003Cstrong\\u003E\\u003Cem\\u003EDr. Hans Niemann\\u003C/em\\u003E\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe year is 1958, and it\\u0026#39;s been 10 years since Niemann fled Russia and defected to the United States. Ever since that day, he has been hard at work designing weapons of war for the US military, and his handlers in the CIA have been all too happy to conceal his Nazi past. In years past, he played a key role in developing the hydrogen bomb for the Army; more recently, he designed the nuclear submarine \\u003Cstrong\\u003EUSS\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003ENautilus\\u003C/em\\u003E\\u003C/strong\\u003E (named after Nemo\\u0026#39;s legendary submarine) for the US Navy, and helped plan \\u003Cstrong\\u003EProject Mercury\\u003C/strong\\u003E for the fledgling space agency \\u003Cstrong\\u003ENASA\\u003C/strong\\u003E. In time, his inventions may even put men on the Moon!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut after a decade of loyally working for the US government, Niemann now has a more personal project in mind: with the US Navy\\u0026#39;s blessing, he wants to lead an experimental submarine voyage to the uncharted depths of the Pacific Ocean, hoping to \\u003Cem\\u003Efinally\\u003C/em\\u003E prove the existence of the mysterious ichthyoids. To do it, he has his sights set on one location: the shadowy \\u003Cstrong\\u003EMarianas Trench\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn a pristine Summer day, Niemann leaves the coast of \\u003Cstrong\\u003ESan Francisco\\u003C/strong\\u003E and sets off on a long ocean voyage to a remote naval base off the coast of Japan, where the US Navy has recently completed work on his experimental deep-ocean submersible \\u003Cstrong\\u003EUSS\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EAmmonite\\u003C/em\\u003E\\u003C/strong\\u003E. As he boards the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E and prepares to dive, he recruits a motley crew of \\u0026quot;assistants\\u0026quot; to aid him in the journey. Hawaiian fisherman \\u003Cstrong\\u003EKeoni Kamaka\\u003C/strong\\u003E, a decorated Navy veteran who saw action at Pearl Harbor, signs on as navigator; bookish young Japanese scientist \\u003Cstrong\\u003EIshiro Nakamura\\u003C/strong\\u003E, who devoted his life to science after losing his parents in the bombing of Hiroshima, agrees to be Niemann\\u0026#39;s research assistant; grizzled Australian sailor \\u003Cstrong\\u003EJohn Allerdyce\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EJohnny Dice\\u003C/strong\\u003E\\u0026quot; to his friends) enlists as First Mate; and Jamaican-born engineer \\u003Cstrong\\u003EOliver \\u0026quot;Twisty\\u0026quot; O\\u0026#39;Rear\\u0026quot;\\u003C/strong\\u003E joins the crew as a radio operator.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlthough they all sign on to crew the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E, Niemann chooses not to tell them the true purpose of the mission\\u2014believing that they wouldn\\u0026#39;t have agreed to help him if they knew what he was really after. As far as they know, they\\u0026#39;re only crewing the vessel on its experimental test run.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E dives, tension soon erupts among the crew as Niemann admits that they\\u0026#39;ll be at sea for much longer than he led them to believe. Niemann knows that the Navy likely won\\u0026#39;t give him another chance to research the ichthyoids, so he refuses to return to port until he\\u0026#39;s found what he\\u0026#39;s looking for. Later, tensions escalate when the crew presses him on the true purpose of his mission, and Niemann admits that he\\u0026#39;s looking for a deep-ocean life-form that\\u0026#39;s never been proven to exist. Seeing Niemann as a delusional madman, Twisty and Kamaka tell him that his mission is a fool\\u0026#39;s errand, and they encourage him to call off the mission before he gets them all killed\\u2014though Ishiro is intrigued by the possibility of researching the ichthyoids.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the second day of the voyage, another argument erupts among the crew when Johnny Dice questions Niemann about his past. Knowing of the doctor\\u0026#39;s German heritage, he comes to suspect (rightly) that he\\u0026#39;s one of the Nazi researchers who defected to the Allies to save himself after World War II. Still remembering his time spent fighting in the Pacific, he\\u0026#39;s repulsed by the idea of working for a Nazi. But Niemann, who has always worked hard to keep his past a secret, becomes enraged by Johnny\\u0026#39;s unrelenting questions\\u2014and he ultimately loses his temper and strikes him. As a fight ensues, Twisty is forced to intercede and separate the two, and they agree to keep their distance for the remainder of the voyage. But that night, tragedy strikes...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he attempts to sleep, Niemann is plagued by a series of disturbing dreams about scaly figures lurking in the shadows of the Pacific. Before he wakes\\u2014shaking and drenched in sweat\\u2014he sees powerful tentacles reaching out to grab him. When he turns on his lamp, Niemann sees Johnny Dice standing over his bed with a knife in his hand, his eyes blank and glazed over. In a trance, Johnny lunges at Niemann and tries to stab him, and Niemann fights back. As a fight ensues, Johnny and Niemann struggle over the knife, and Johnny begins murmuring two words over and over again:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Go back... Go back... Go back...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Niemann tries to wrestle the knife from Johnny\\u0026#39;s hand, he accidentally stabs him in the chest with it, and calls the rest of the crew to help him stop the bleeding. When the others arrive, they become even \\u003Cem\\u003Emore\\u003C/em\\u003E suspicious of Niemann when they see him standing over Johnny with a knife lodged in his chest. Remembering Niemann\\u0026#39;s violent argument with Johnny earlier in the day, they\\u0026#39;re reluctant to believe Niemann when he insists that Johnny attacked him. Try as they might, they\\u0026#39;re unable to stop the bleeding, and Johnny soon bleeds to death.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERattled by Johnny\\u0026#39;s sudden death, the crew becomes even more terrified when the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E suddenly stops moving, and they realize that the propeller has inexplicably become \\u003Cem\\u003Ejammed\\u003C/em\\u003E. As they convene to discuss repairs, Ishiro suddenly recoils in fear when he sees a grotesque scaly face staring at him through the porthole; when he ties to get a closer look at it, the face vanishes into the darkness.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the crew tries to convince Niemann to return to the surface, Kamaka agrees to don a diving suit and exit the airlock to repair the propeller from outside. In a tense scene, he feels his way along the exterior of the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E while using a flashlight to light his way. When he finally reaches the propeller, he realizes that it isn\\u0026#39;t jammed, but it\\u0026#39;s somehow been \\u003Cem\\u003Edismantled\\u003C/em\\u003E with great care and precision. Working fast, he manages to reassemble the propeller\\u2014but as soon as he does, he\\u0026#39;s \\u003Cem\\u003Egrabbed\\u003C/em\\u003E by powerful webbed hands, which drag him from the sub and pull him into the darkness. As the rest of the crew attempt to stay in touch with him via radio, they hear Kamaka\\u0026#39;s terrified screams as he dies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDespite their suspicions of Niemann, Twisty and Ishiro agree to cooperate with him until they can return to the surface\\u2014and with Kamaka\\u0026#39;s death, they suddenly realize that the ichthyoids are very real. Still, Niemann convinces them to remain below the surface for one more day, if only to ensure that Johnny and Kamaka didn\\u0026#39;t die in vain. Hours later, though, tragedy strikes again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen Niemann pays a visit to Ishiro\\u0026#39;s bunk to go over some research with him, he discovers that Ishiro has \\u003Cem\\u003Ecommitted suicide\\u003C/em\\u003E by slashing his throat with a knife\\u2014and before dying, he daubed the words \\u003Cem\\u003E\\u0026quot;GO BACK\\u0026quot;\\u003C/em\\u003E on the bulkhead in his own blood. When Twisty finds him, he finally begins to believe Niemann\\u0026#39;s story about Johnny\\u0026#39;s mysterious trance. \\u003Cem\\u003ESomething\\u003C/em\\u003E in the depths seems to be manipulating the crew\\u0026#39;s minds, driving them into madness in an effort to stop their voyage from uncovering too much. As they discuss recent events, Niemann tells Twisty about his bizarre dreams, theorizing that he had psychic images projected into his mind while he slept. His suspicions are confirmed when Twisty admits that he has also been having bizarre nightmares since the voyage began\\u2014and he \\u003Cem\\u003Ealso\\u003C/em\\u003E saw an image of a massive tentacled creature in his dreams.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt first, Twisty theorizes that the ichthyoids are responsible for the crew\\u0026#39;s madness, but Niemann persuades him that there\\u0026#39;s a more powerful force at work. After all, it would take an incredibly powerful brain to project such strong images directly into another creature\\u0026#39;s mind, and the ichthyoids are too small to possess such power. But since the ichthyoids always appear to act in perfect synchronicity with one another, perhaps they\\u0026#39;re \\u003Cem\\u003Ealso\\u003C/em\\u003E being psychically controlled. Perhaps they\\u0026#39;re just \\u003Cem\\u003Edrones\\u003C/em\\u003E, and a more powerful creature is acting as their Queen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a desperate effort to avenge the other crew-members, Twisty agrees to help Niemann find the mysterious being that drove them to their deaths, knowing that he won\\u0026#39;t be able to live with himself if he passes up a chance to kill it. Pushing the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E\\u0026#39;s sonar array to its limits, he soon detects a massive structure on a nearby underwater plateau, and decides to check it out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the climax, Niemann and Twisty both don diving suits and venture onto the plateau, where\\u2014to their shock and horror\\u2014they discover a massive metallic structure perched atop the oceanic ridge, guarded by a massive swarm of ichthyoids. As Niemann approaches the metal structure, he realizes that it\\u0026#39;s actually a \\u003Cstrong\\u003E\\u003Cem\\u003Espaceship\\u003C/em\\u003E\\u003C/strong\\u003E, and he finds his mind swimming with bizarre voices and images whenever he moves closer to it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt long last, Niemann realizes the truth about the ichthyoids: they\\u0026#39;re aquatic \\u003Cem\\u003Ealiens\\u003C/em\\u003E who\\u0026#39;ve been hiding in Earth\\u0026#39;s ocean ever since their spacecraft crashed in the Pacific. Judging by the amount of coral covering the drowned spacecraft, Niemann realizes that the ship must have crashed more than two centuries ago, long before any humans would have been able to find it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EArmed with knives, harpoons and explosives, Twisty and Niemann drive off the ichthyoids in a massive underwater battle, and Niemann narrowly manages to force his way into the heart of the ruined spaceship\\u2014where a \\u003Cstrong\\u003Emassive tentacled beast\\u003C/strong\\u003E is waiting at the center of a glass enclosure. \\u003Cstrong\\u003EThe Creature\\u003C/strong\\u003E\\u0026#39;s body resembles a massive swollen \\u003Cem\\u003Ebrain\\u003C/em\\u003E, explaining how its psychic abilities were so powerful. But despite the long reach of its tentacles, its body is far too massive to move; instead, it uses its psychic abilities to force enslaved ichthyoids to do its bidding, and they loyally bring it food and safeguard its larval offspring. In the glass enclosure where the Creature sits, the walls are lined with countess rows of transparent jars filled with murky amniotic fluid; inside each one, we can clearly see a miniature embryo with a brain-like body and slender tentacles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a climactic showdown, the Creature bombards Niemann with psychic energy and swipes at him with its massive tentacles. Niemann nearly passes out as the beast invades his mind, but he manages to land a good shot with a harpoon gun tipped with explosives, and he successfully wounds the Creature\\u0026#39;s massive brain. As it dies, the ichthyoids fall into disarray, and Niemann finally relaxes as the Creature\\u0026#39;s psychic attacks stop. With that, he and Twisty return to the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E and make their way back to the surface, where they go their separate ways\\u2014agreeing \\u003Cem\\u003Enever\\u003C/em\\u003E to tell anyone what they saw in the depths of the Pacific.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the final scene, Niemann returns to his old lab in a remote military base on the California coast, where he resumes his old research. But when his handlers are out of earshot, he opens a locked cabinet and retrieves a small glass object. It\\u0026#39;s \\u003Cem\\u003Eone of the Creature\\u0026#39;s embryos\\u003C/em\\u003E, which he secretly took from the Creature\\u0026#39;s drowned spaceship. As he lays the cylindrical glass jar on his table and strokes the glass fondly, the embryo\\u0026#39;s small tentacles begin to twitch.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Come, little one...\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;Together, I think you and I are going to accomplish wonders...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust outside the base, where the Pacific Ocean laps at the stony shore, a scaly green head pokes out of the water. Moments later, an ichthyoid crawls out of the ocean and walks onto the beach, with six more behind it. Inside the lab, Niemann waves his hand\\u2014and in an instant, the scaly creatures are still.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENiemann smiles, and the screen fades to black...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Case:\\u003C/em\\u003E\\u003C/strong\\u003E In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\u0026quot;The Gemini Killer\\u0026quot; to justice. In a twist, it\\u0026#39;s revealed that Hank\\u0026#39;s full name is \\u0026quot;Henry Jekyll\\u0026quot;, and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium\\u0026#39;s secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Creature:\\u003C/em\\u003E\\u003C/strong\\u003E Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they\\u0026#39;re aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they\\u0026#39;re slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures\\u0026#39; drowned spaceship to kill the monster, and manages to steal one of the monster\\u0026#39;s embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpiv79\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpiv79/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpiv79/test/\", \"subreddit_subscribers\": 704, \"created_utc\": 1558044440.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bpiv79\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["1566680"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:56 GMT"], "x-ratelimit-remaining": ["588.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["12"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930756.779512,VS0,VE1187"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["245"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T18:05:57"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_bxw8jy"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:57 GMT"], "x-ratelimit-remaining": ["587.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["13"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930758.542004,VS0,VE95"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["243"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_bxw8jy"}, "recorded_at": "2019-06-07T18:05:57"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/api/v1/me?raw_json=1"}, "response": {"body": {"string": "{\"is_employee\": false, \"seen_layout_switch\": true, \"has_visited_new_profile\": false, \"pref_no_profanity\": true, \"has_external_account\": false, \"pref_geopopular\": \"\", \"seen_redesign_modal\": true, \"pref_show_trending\": true, \"subreddit\": {\"default_set\": true, \"user_is_contributor\": false, \"banner_img\": \"\", \"disable_contributor_requests\": false, \"user_is_banned\": false, \"free_form_reports\": true, \"community_icon\": \"\", \"show_media\": true, \"icon_color\": \"#25B79F\", \"user_is_muted\": false, \"display_name\": \"u_nnreddit-user\", \"header_img\": null, \"title\": \"\", \"over_18\": false, \"icon_size\": [256, 256], \"primary_color\": \"\", \"icon_img\": \"https://www.redditstatic.com/avatars/avatar_default_16_25B79F.png\", \"description\": \"\", \"header_size\": null, \"restrict_posting\": true, \"restrict_commenting\": false, \"subscribers\": 0, \"is_default_icon\": true, \"link_flair_position\": \"\", \"display_name_prefixed\": \"u/nnreddit-user\", \"key_color\": \"\", \"name\": \"t5_125o8u\", \"is_default_banner\": true, \"url\": \"/user/nnreddit-user/\", \"banner_size\": null, \"user_is_moderator\": true, \"public_description\": \"\", \"link_flair_enabled\": false, \"subreddit_type\": \"user\", \"user_is_subscriber\": false}, \"is_sponsor\": false, \"gold_expiration\": null, \"has_gold_subscription\": false, \"num_friends\": 0, \"features\": {\"mweb_xpromo_revamp_v2\": {\"owner\": \"growth\", \"variant\": \"treatment_5\", \"experiment_id\": 457}, \"chat_subreddit\": true, \"show_amp_link\": true, \"read_from_pref_service\": true, \"chat_rollout\": true, \"chat_reddar_reports\": true, \"default_srs_holdout\": {\"owner\": \"relevance\", \"variant\": \"popular\", \"experiment_id\": 171}, \"is_email_permission_required\": false, \"richtext_previews\": true, \"email_verification\": {\"owner\": \"growth\", \"variant\": \"variant_3\", \"experiment_id\": 1038}, \"mweb_xpromo_revamp_v3\": {\"owner\": \"growth\", \"variant\": \"control_2\", \"experiment_id\": 480}, \"sequence\": true, \"mweb_xpromo_modal_listing_click_daily_dismissible_ios\": true, \"community_awards\": true, \"dual_write_user_prefs\": true, \"do_not_track\": true, \"chat_user_settings\": true, \"mweb_xpromo_interstitial_comments_ios\": true, \"mweb_xpromo_modal_listing_click_daily_dismissible_android\": true, \"mweb_xpromo_interstitial_comments_android\": true, \"seq_randomize_sort\": true, \"mweb_sharing_web_share_api\": {\"owner\": \"growth\", \"variant\": \"control_1\", \"experiment_id\": 314}, \"chat_group_rollout\": true, \"custom_feeds\": true, \"spez_modal\": true, \"mweb_link_tab\": {\"owner\": \"growth\", \"variant\": \"control_1\", \"experiment_id\": 404}}, \"has_android_subscription\": false, \"verified\": true, \"new_modmail_exists\": null, \"pref_autoplay\": true, \"coins\": 0, \"has_paypal_subscription\": false, \"has_subscribed_to_premium\": false, \"id\": \"3um52nx7\", \"has_stripe_subscription\": false, \"seen_premium_adblock_modal\": false, \"can_create_subreddit\": false, \"over_18\": false, \"is_gold\": false, \"is_mod\": false, \"suspension_expiration_utc\": null, \"has_verified_email\": true, \"is_suspended\": false, \"pref_video_autoplay\": true, \"in_redesign_beta\": true, \"icon_img\": \"https://www.redditstatic.com/avatars/avatar_default_16_25B79F.png\", \"has_mod_mail\": false, \"pref_nightmode\": false, \"oauth_client_id\": \"KBV2seGZgHOa9g\", \"hide_from_robots\": false, \"link_karma\": 1, \"force_password_reset\": false, \"inbox_count\": 0, \"pref_top_karma_subreddits\": true, \"has_mail\": false, \"pref_show_snoovatar\": false, \"name\": \"nnreddit-user\", \"pref_clickgadget\": 5, \"created\": 1559101744.0, \"gold_creddits\": 0, \"created_utc\": 1559072944.0, \"has_ios_subscription\": false, \"pref_show_twitter\": false, \"in_beta\": false, \"comment_karma\": 0, \"has_subscribed\": true, \"seen_subreddit_chat_ftux\": false}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["3591"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:58 GMT"], "x-ratelimit-remaining": ["586.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["14"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930758.063876,VS0,VE126"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["242"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/api/v1/me?raw_json=1"}, "recorded_at": "2019-06-07T18:05:58"}, {"request": {"body": {"string": "api_type=json&kind=self&nsfw=False&resubmit=True&sendreplies=True&spoiler=False&sr=PostPreview&text=this+is+a+test%0A&title=test+baby+test+baby+123", "encoding": "utf-8"}, "headers": {"Content-Length": ["147"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=F9BacgwCoXdZsRLMkl"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["bearer **********"]}, "method": "POST", "uri": "https://oauth.reddit.com/api/submit/?raw_json=1"}, "response": {"body": {"string": "{\"json\": {\"errors\": [], \"data\": {\"url\": \"https://www.reddit.com/r/PostPreview/comments/bxxrzi/test_baby_test_baby_123/\", \"drafts_count\": 0, \"id\": \"bxxrzi\", \"name\": \"t3_bxxrzi\"}}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["178"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 18:05:58 GMT"], "x-ratelimit-remaining": ["585.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21950-LGA"], "x-ratelimit-used": ["15"], "Via": ["1.1 varnish"], "X-Timer": ["S1559930759.615759,VS0,VE311"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["242"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/api/submit/?raw_json=1"}, "recorded_at": "2019-06-07T18:05:58"}], "recorded_with": "betamax/0.8.1"} \ No newline at end of file diff --git a/tests/cassettes/random.json b/tests/cassettes/random.json new file mode 100644 index 0000000..8774361 --- /dev/null +++ b/tests/cassettes/random.json @@ -0,0 +1 @@ +{"http_interactions": [{"request": {"body": {"string": "grant_type=refresh_token&refresh_token=**********", "encoding": "utf-8"}, "headers": {"Content-Length": ["79"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["**********"]}, "method": "POST", "uri": "https://www.reddit.com/api/v1/access_token"}, "response": {"body": {"string": "{\"access_token\": \"**********\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"edit history identity mysubreddits privatemessages read report save submit subscribe vote\"}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["206"], "x-xss-protection": ["1; mode=block"], "X-Cache": ["MISS"], "x-content-type-options": ["nosniff"], "Set-Cookie": ["edgebucket=22TxEEenydI2YJKjWj; Domain=reddit.com; Max-Age=63071999; Path=/; secure"], "Accept-Ranges": ["bytes"], "X-Timer": ["S1559914212.312297,VS0,VE41"], "X-Served-By": ["cache-ewr18149-EWR"], "X-Moose": ["majestic"], "Connection": ["keep-alive"], "Via": ["1.1 varnish"], "X-Cache-Hits": ["0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "cache-control": ["max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:12 GMT"], "x-frame-options": ["SAMEORIGIN"], "Server": ["snooserv"], "Content-Type": ["application/json; charset=UTF-8"]}, "status": {"message": "OK", "code": 200}, "url": "https://www.reddit.com/api/v1/access_token"}, "recorded_at": "2019-06-07T13:30:12"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 3, \"children\": [{\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"emacs\", \"header_img\": \"https://f.thumbs.redditmedia.com/1CBmBnoqVxNCXdVS.png\", \"title\": \"M-x emacs-reddit\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/emacs\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 29865, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2qhwu\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"The extensible, customizable, self-documenting real-time display editor.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA sub-reddit for the timeless and infinitely powerful editor. \\u003Ca href=\\\"http://emacsrocks.com/\\\"\\u003EWant to see what Emacs is capable of?!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGet Emacs\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://ftp.gnu.org/gnu/emacs/windows/\\\"\\u003EWindows\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://emacsformacosx.com/\\\"\\u003EMac OS X\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGNU/Linux and BSD (Just get it from your distribution\\u0026#39;s package manager)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.gnu.org/software/emacs/#Obtaining\\\"\\u003EBuild it from source\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Resources\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/\\\"\\u003EEmacs Wiki\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://wikemacs.org/\\\"\\u003EWikEmacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://emacs.zeef.com/ehartc\\\"\\u003EEmacs Reference\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://shop.oreilly.com/product/9780596006488.do\\\"\\u003ELearning GNU Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf\\\"\\u003EEmacs Reference Card\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026amp;restrict_sr=on\\u0026amp;sort=new\\u0026amp;t=all\\\"\\u003EWeekly tips/tricks/etc threads\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Tutorials\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/\\\"\\u003EBeginner\\u2019s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/\\\"\\u003EAbsolute Beginner\\u0026#39;s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/\\\"\\u003EHow to Learn Emacs: A Hand-drawn One-pager for Beginners\\n\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERelated Subreddits\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/orgmode\\\"\\u003Er/orgmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/evilmode\\\"\\u003Er/evilmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/spacemacs\\\"\\u003Er/spacemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/planetemacs\\\"\\u003Er/planetemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUseful Emacs configuration files and distributions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/technomancy/better-defaults\\\"\\u003EBetter Defaults\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick pain-saver tip\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/emacs/MovingTheCtrlKey\\\"\\u003EPut the Caps Lock key to better use!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": [152, 50], \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1210079411.0, \"wls\": 6, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe extensible, customizable, self-documenting real-time display editor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2qhwu\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"A sub-reddit for the timeless and infinitely powerful editor. [Want to see what Emacs is capable of?!](http://emacsrocks.com/)\\n\\n**Get Emacs**\\n\\n* [Windows](http://ftp.gnu.org/gnu/emacs/windows/)\\n* [Mac OS X](http://emacsformacosx.com/)\\n* GNU/Linux and BSD (Just get it from your distribution's package manager)\\n* [Build it from source] (http://www.gnu.org/software/emacs/#Obtaining)\\n\\n**Emacs Resources**\\n\\n* [Emacs Wiki](http://www.emacswiki.org/)\\n* [WikEmacs](http://wikemacs.org/)\\n* [Emacs Reference](https://emacs.zeef.com/ehartc)\\n* [Learning GNU Emacs](http://shop.oreilly.com/product/9780596006488.do)\\n* [Emacs Reference Card](https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf)\\n* [Weekly tips/tricks/etc threads](/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026restrict_sr=on\\u0026sort=new\\u0026t=all)\\n\\n**Emacs Tutorials**\\n\\n* [Beginner\\u2019s Guide to Emacs](http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/)\\n* [Absolute Beginner's Guide to Emacs](http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/)\\n* [How to Learn Emacs: A Hand-drawn One-pager for Beginners\\n](http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/)\\n\\n**Related Subreddits**\\n\\n* r/orgmode\\n* r/evilmode\\n* r/spacemacs\\n* r/planetemacs\\n\\n**Useful Emacs configuration files and distributions**\\n\\n* [Better Defaults](https://github.com/technomancy/better-defaults)\\n\\n**Quick pain-saver tip**\\n\\n* [Put the Caps Lock key to better use!](http://www.emacswiki.org/emacs/MovingTheCtrlKey)\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": \"all_ads\", \"url\": \"/r/emacs/\", \"created_utc\": 1210050611.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": true, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"orgmode\", \"header_img\": null, \"title\": \"Org-mode\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/orgmode\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 4790, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2s5ak\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"[Org-mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EAbout Org mode\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EResources\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://orgmode.org/#docs\\\"\\u003EOfficial Documentation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/worg/\\\"\\u003ECommunity Documentation (Worg)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/guide/\\\"\\u003ECompact Org-mode Guide\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://lists.gnu.org/archive/html/emacs-orgmode/\\\"\\u003EOfficial Mailing list\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EIRC Channel: #org-mode on \\u003Ca href=\\\"http://freenode.net/\\\"\\u003EFreenode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMatrix: \\u003Ca href=\\\"https://matrix.to/#/#org-mode:matrix.org\\\"\\u003E#org-mode:matrix.org\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003ERelated Subreddits\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1287182517.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg-mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2s5ak\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"# About Org mode\\n\\n[Org mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\n\\n# Resources\\n\\n* [Official Documentation](http://orgmode.org/#docs)\\n* [Community Documentation (Worg)](https://orgmode.org/worg/)\\n* [Compact Org-mode Guide](https://orgmode.org/guide/)\\n* [Official Mailing list](http://lists.gnu.org/archive/html/emacs-orgmode/)\\n* IRC Channel: #org-mode on [Freenode](http://freenode.net/)\\n* Matrix: [#org-mode:matrix.org](https://matrix.to/#/#org-mode:matrix.org)\\n\\n# Related Subreddits\\n\\n* /r/emacs\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/orgmode/\", \"created_utc\": 1287153717.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"PostPreview\", \"header_img\": null, \"title\": \"Preview your Reddit posts\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/PostPreview\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 703, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2waml\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"A place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWhat this is\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAllowed posts\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYou can post whatever and however much you\\u0026#39;d like here, \\u003Cstrong\\u003Eas long as it conforms to \\u003Ca href=\\\"http://www.reddit.com/rules\\\"\\u003Ereddiquette\\u003C/a\\u003E\\u003C/strong\\u003E (eg. NO personal info, no alt accounts, etc). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPlease\\u003C/strong\\u003E utilize the Report button for content you feel breaks these rules, we can\\u0026#39;t sift through EVERYTHING, so your help is greatly appreciated.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpam filter\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESome posts/comments may be auto-rejected by Reddit\\u0026#39;s spam filter, despite the threshold set to \\u0026quot;Minimal\\u0026quot; here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you don\\u0026#39;t see you post show up, it\\u0026#39;s likely it got rejected. Message the mod mail and we can override it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHave fun previewing!\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"#24a0ed\", \"can_assign_user_flair\": true, \"created\": 1360563027.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": \"Try a text post!\", \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": \"confidence\", \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": true, \"id\": \"2waml\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"**What this is** \\n\\u003E A place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\n \\n**Allowed posts**\\n\\u003E You can post whatever and however much you'd like here, **as long as it conforms to [reddiquette](http://www.reddit.com/rules)** (eg. NO personal info, no alt accounts, etc). \\n\\u003E \\n\\u003E **Please** utilize the Report button for content you feel breaks these rules, we can't sift through EVERYTHING, so your help is greatly appreciated.\\n \\n**Spam filter** \\n\\u003E Some posts/comments may be auto-rejected by Reddit's spam filter, despite the threshold set to \\\"Minimal\\\" here. \\n\\u003E \\n\\u003E If you don't see you post show up, it's likely it got rejected. Message the mod mail and we can override it.\\n\\n**Have fun previewing!**\\n\\n \\n \", \"submit_link_label\": \"Test out a link!\", \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/PostPreview/\", \"created_utc\": 1360534227.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["18143"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:12 GMT"], "x-ratelimit-remaining": ["599.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "x-ratelimit-used": ["1"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914212.410139,VS0,VE326"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["588"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:30:12"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9omn4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559913776.0, \"send_replies\": true, \"parent_id\": \"t1_eq9lk8u\", \"score\": 1, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Take also look at Helm or Ivy.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9omn4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETake also look at Helm or Ivy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9omn4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942576.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9oiqt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559913688.0, \"send_replies\": true, \"parent_id\": \"t3_bxtwfg\", \"score\": 1, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003Ethat's not the case for Windows. I'm not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\n\\nWhile it is true that Windows does not ship with either grep or find, there are myriad of grep and find ports and versions available on Windows, so I don't see how is that a practical problem. Implementing efficient and fast search is not a trivial task, so I personally believe it is better to leave that to external utility such as [ag (silversearcher),](https://github.com/ggreer/the_silver_searcher) [ripgrep](https://github.com/BurntSushi/ripgrep) or maybe latest kid on the block, [hyperscan](https://github.com/intel/hyperscan).\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9oiqt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ethat\\u0026#39;s not the case for Windows. I\\u0026#39;m not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhile it is true that Windows does not ship with either grep or find, there are myriad of grep and find ports and versions available on Windows, so I don\\u0026#39;t see how is that a practical problem. Implementing efficient and fast search is not a trivial task, so I personally believe it is better to leave that to external utility such as \\u003Ca href=\\\"https://github.com/ggreer/the_silver_searcher\\\"\\u003Eag (silversearcher),\\u003C/a\\u003E \\u003Ca href=\\\"https://github.com/BurntSushi/ripgrep\\\"\\u003Eripgrep\\u003C/a\\u003E or maybe latest kid on the block, \\u003Ca href=\\\"https://github.com/intel/hyperscan\\\"\\u003Ehyperscan\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9oiqt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942488.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ob92\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559913518.0, \"send_replies\": true, \"parent_id\": \"t1_eq9lk8u\", \"score\": 1, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There is also `find-lisp-find-dired` which might be of help.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9ob92\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is also \\u003Ccode\\u003Efind-lisp-find-dired\\u003C/code\\u003E which might be of help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9ob92/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942318.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9mn9c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559912075.0, \"send_replies\": true, \"parent_id\": \"t1_eq8psyw\", \"score\": 1, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I think this fits my need. Thank you for the pointer.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq9mn9c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think this fits my need. Thank you for the pointer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq9mn9c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559940875.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9m7eg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BruceConnor\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559911680.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 1, \"author_fullname\": \"t2_ccvfk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"http://endlessparentheses.com/exclude-directories-from-grep.html\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9m7eg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://endlessparentheses.com/exclude-directories-from-grep.html\\\"\\u003Ehttp://endlessparentheses.com/exclude-directories-from-grep.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9m7eg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559940480.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559911855.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9lk8u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"andreyorst\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559911085.0, \"send_replies\": true, \"parent_id\": \"t1_eq9kr70\", \"score\": 1, \"author_fullname\": \"t2_w7w9e32\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks, I wasn't aware of any of these. This is about using imitating `grep`, but what about `find` - I guess `project-find-file` is what I'm looking for?\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9lk8u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I wasn\\u0026#39;t aware of any of these. This is about using imitating \\u003Ccode\\u003Egrep\\u003C/code\\u003E, but what about \\u003Ccode\\u003Efind\\u003C/code\\u003E - I guess \\u003Ccode\\u003Eproject-find-file\\u003C/code\\u003E is what I\\u0026#39;m looking for?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9lk8u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559939885.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9kr70\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559910307.0, \"send_replies\": true, \"parent_id\": \"t3_bxtwfg\", \"score\": 2, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There is `multi-occur`, `multi-isearch` and `project-find-regexp`.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9kr70\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is \\u003Ccode\\u003Emulti-occur\\u003C/code\\u003E, \\u003Ccode\\u003Emulti-isearch\\u003C/code\\u003E and \\u003Ccode\\u003Eproject-find-regexp\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9kr70/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559939107.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsyyo9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9k2zg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"user_was_not_found\", \"num_comments\": 22, \"can_mod_post\": false, \"created_utc\": 1559909649.0, \"send_replies\": true, \"parent_id\": \"t3_bsyyo9\", \"score\": 1, \"author_fullname\": \"t2_h1nda\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I take out my notebook and pencil. Open it up. Write notes. Put notebook away.\", \"link_title\": \"What is your note-taking workflow?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9k2zg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI take out my notebook and pencil. Open it up. Write notes. Put notebook away.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/eq9k2zg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/\", \"report_reasons\": null, \"link_author\": \"the_sealed_tanker\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/\", \"created\": 1559938449.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9jwip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"5heikki\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559909470.0, \"send_replies\": true, \"parent_id\": \"t1_eq9hme8\", \"score\": 3, \"author_fullname\": \"t2_h43er\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"No, the zero is great, very easy to tell apart from O. Hack is the best :)\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9jwip\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, the zero is great, very easy to tell apart from O. Hack is the best :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9jwip/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs shill\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559938270.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9azu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9jk7q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"user_was_not_found\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559909120.0, \"send_replies\": true, \"parent_id\": \"t3_bw9azu\", \"score\": 1, \"author_fullname\": \"t2_h1nda\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[mine](https://raw.githubusercontent.com/ryanolsonx/.emacs.d/master/init.el)\\n\\nI've been really going minimalist lately and this suffices.\", \"link_title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"author_flair_css_class\": null, \"name\": \"t1_eq9jk7q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://raw.githubusercontent.com/ryanolsonx/.emacs.d/master/init.el\\\"\\u003Emine\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been really going minimalist lately and this suffices.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/eq9jk7q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"report_reasons\": null, \"link_author\": \"Rainymood_XI\", \"author_flair_text\": null, \"link_url\": \"https://github.com/Rainymood/dotemacs\", \"created\": 1559937920.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9i5r5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"__i_forgot_my_name__\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559907625.0, \"send_replies\": true, \"parent_id\": \"t1_eq5k72d\", \"score\": 1, \"author_fullname\": \"t2_3agebbhs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"In Firefox I literally removed the tab bar. I feel tabs are just not useful. I don't typically need to see all the tabs, and if I want to go back to a previous or next tab, then I really don't need to see it do I? If I want to switch back to a tab I remember then I just go ahead and search it, otherwise I just maintain one tab and that's typically fine.\\n\\nI used to use tabs as a todo list and that's just not great in practice, I end up with far too many tabs, because I would never close anything. If I want something very close by, I'll typically open another window now, and from that I can actually cross reference, and with tabs out of the way, I can stack them one on top of the other.\\n\\nI never realized how much I could do just from the URL bar in Firefox, but you can switch tabs, search for partial URLs, search history, search bookmarks, create search queries with keywords much like DDG tags, there's just so much I never realized I could do, because I would just heavily depends on tabs, and keeping things in view.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9i5r5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn Firefox I literally removed the tab bar. I feel tabs are just not useful. I don\\u0026#39;t typically need to see all the tabs, and if I want to go back to a previous or next tab, then I really don\\u0026#39;t need to see it do I? If I want to switch back to a tab I remember then I just go ahead and search it, otherwise I just maintain one tab and that\\u0026#39;s typically fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used to use tabs as a todo list and that\\u0026#39;s just not great in practice, I end up with far too many tabs, because I would never close anything. If I want something very close by, I\\u0026#39;ll typically open another window now, and from that I can actually cross reference, and with tabs out of the way, I can stack them one on top of the other.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI never realized how much I could do just from the URL bar in Firefox, but you can switch tabs, search for partial URLs, search history, search bookmarks, create search queries with keywords much like DDG tags, there\\u0026#39;s just so much I never realized I could do, because I would just heavily depends on tabs, and keeping things in view.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq9i5r5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559936425.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hwei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559907338.0, \"send_replies\": true, \"parent_id\": \"t1_eq9hdw0\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks!!\\n\\nIn normal mode, \\u2018p\\u2019 is enough to save the game, in reverse mode, \\u2018p RET\\u2019 is needed. Since RET is ignored in normal mode, I decided to show the same intructions on the header line for both modes, but I should probably change that. I couldn\\u2019t find a way of making \\u2018p\\u2019 cancel the prompt when using completing-read (when playing reverse mode), so RET is also needed to read it in.\\n\\nI like the idea of showing the other correct keys!I\\u2019ll add it to my todo list.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hwei\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn normal mode, \\u2018p\\u2019 is enough to save the game, in reverse mode, \\u2018p RET\\u2019 is needed. Since RET is ignored in normal mode, I decided to show the same intructions on the header line for both modes, but I should probably change that. I couldn\\u2019t find a way of making \\u2018p\\u2019 cancel the prompt when using completing-read (when playing reverse mode), so RET is also needed to read it in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI like the idea of showing the other correct keys!I\\u2019ll add it to my todo list.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9hwei/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559936138.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hme8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jackjackk0\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559907026.0, \"send_replies\": true, \"parent_id\": \"t1_eq9f4zn\", \"score\": 1, \"author_fullname\": \"t2_q52rf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"thanks, just tried it and it looks pleasant. Maybe only the zero is a bit weird!\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hme8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks, just tried it and it looks pleasant. Maybe only the zero is a bit weird!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9hme8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559935826.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hdw0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rekIfdyt2\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559906750.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 2, \"author_fullname\": \"t2_7jmd3dk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is amazingly cool and educationally quite valuable!\\n\\nRegarding pausing the quiz \\u2014 isn't just `p` (not `p RET`) sufficient?\\n\\nOne suggestion (no pressure to implement it, just in case you're looking for ideas): when there's more than one possible answer and the user guesses correctly, display the remaining possible answers.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hdw0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is amazingly cool and educationally quite valuable!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding pausing the quiz \\u2014 isn\\u0026#39;t just \\u003Ccode\\u003Ep\\u003C/code\\u003E (not \\u003Ccode\\u003Ep RET\\u003C/code\\u003E) sufficient?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne suggestion (no pressure to implement it, just in case you\\u0026#39;re looking for ideas): when there\\u0026#39;s more than one possible answer and the user guesses correctly, display the remaining possible answers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9hdw0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559935550.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9h5sl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eugenemah\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559906488.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 1, \"author_fullname\": \"t2_6urz5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\+1 for Hack\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9h5sl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E+1 for Hack\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9h5sl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559935288.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9h2zl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"loskutak-the-ptak\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559906394.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_ke7apcf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Don't miss https://github.com/alf/ob-restclient.el ! With that you can use restclient in org source code blocks.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq9h2zl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDon\\u0026#39;t miss \\u003Ca href=\\\"https://github.com/alf/ob-restclient.el\\\"\\u003Ehttps://github.com/alf/ob-restclient.el\\u003C/a\\u003E ! With that you can use restclient in org source code blocks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq9h2zl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559935194.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g32m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Asteridae\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559905158.0, \"send_replies\": true, \"parent_id\": \"t1_eq9ez1l\", \"score\": 1, \"author_fullname\": \"t2_o2f0w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have a similar setup: I don't store anything in the `.emacs.d` folder, instead I have a minimalistic `.emacs` that loads the `init.el` located in my `~/git/config/emacs` folder.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g32m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a similar setup: I don\\u0026#39;t store anything in the \\u003Ccode\\u003E.emacs.d\\u003C/code\\u003E folder, instead I have a minimalistic \\u003Ccode\\u003E.emacs\\u003C/code\\u003E that loads the \\u003Ccode\\u003Einit.el\\u003C/code\\u003E located in my \\u003Ccode\\u003E~/git/config/emacs\\u003C/code\\u003E folder.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9g32m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559933958.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g1sf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559905111.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Like many others already said, I usually don't bother about many buffers, too. However, one thing which did bother me was Magit's (good and consistent) buffer naming which results in worse buffer name completion because they are so similar. Especially, I frequently do one-shot changes to different repositories and then kill the Magit status buffer which left all auxiliary Magit buffers (process, diffs, log, etc.) alive.\\n\\n\\u0026#x200B;\\n\\nThen I learned that you actually kill Magit buffers with `C-u q` instead of `C-x k` and added that a double-prefix argument (`C-u C-u q`) now kills the current Magit status buffer and all related Magit buffers of the current project. That's at least in the current MELPA version of Magit.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g1sf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELike many others already said, I usually don\\u0026#39;t bother about many buffers, too. However, one thing which did bother me was Magit\\u0026#39;s (good and consistent) buffer naming which results in worse buffer name completion because they are so similar. Especially, I frequently do one-shot changes to different repositories and then kill the Magit status buffer which left all auxiliary Magit buffers (process, diffs, log, etc.) alive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I learned that you actually kill Magit buffers with \\u003Ccode\\u003EC-u q\\u003C/code\\u003E instead of \\u003Ccode\\u003EC-x k\\u003C/code\\u003E and added that a double-prefix argument (\\u003Ccode\\u003EC-u C-u q\\u003C/code\\u003E) now kills the current Magit status buffer and all related Magit buffers of the current project. That\\u0026#39;s at least in the current MELPA version of Magit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq9g1sf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559933911.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559904943.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9fmu4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Asteridae\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559904560.0, \"send_replies\": true, \"parent_id\": \"t1_eq9ex29\", \"score\": 1, \"author_fullname\": \"t2_o2f0w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is exactly what I do! I store the Emacs packages and my config in the same Git repository, when searching my config I use `projectile-grep` to prevent searching in my `packages` folder.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9fmu4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is exactly what I do! I store the Emacs packages and my config in the same Git repository, when searching my config I use \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E to prevent searching in my \\u003Ccode\\u003Epackages\\u003C/code\\u003E folder.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9fmu4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559933360.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9f4zn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"irmanp\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559903880.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 4, \"author_fullname\": \"t2_30ctkuyb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I like to use Hack:\\nhttps://sourcefoundry.org/hack/\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9f4zn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like to use Hack:\\n\\u003Ca href=\\\"https://sourcefoundry.org/hack/\\\"\\u003Ehttps://sourcefoundry.org/hack/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9f4zn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559932680.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ez1l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559903646.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 2, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I use symlinks and keep all my code \\u0026 scripts in their own directory.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9ez1l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use symlinks and keep all my code \\u0026amp; scripts in their own directory.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9ez1l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559932446.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ex29\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"flexibeast\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559903567.0, \"send_replies\": true, \"parent_id\": \"t1_eq9eb42\", \"score\": 2, \"author_fullname\": \"t2_3tmsj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Ah, fair enough. Well, unless someone else knows of existing functionality to do this, you could write a wrapper function around (in the specific case you mentioned) `projectile-grep` which asks the user for values for the variables `projectile-ignored-directories` and `projectile-ignored-files`, then calls `projectile-grep`, after which it resets those variables to their old values.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq9ex29\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAh, fair enough. Well, unless someone else knows of existing functionality to do this, you could write a wrapper function around (in the specific case you mentioned) \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E which asks the user for values for the variables \\u003Ccode\\u003Eprojectile-ignored-directories\\u003C/code\\u003E and \\u003Ccode\\u003Eprojectile-ignored-files\\u003C/code\\u003E, then calls \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E, after which it resets those variables to their old values.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9ex29/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"org-vcard pulseaudio-control ewmctrl\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559932367.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9escc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SlowValue\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559903371.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_1rke6ck4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I understood your question the following way: \\nYou want a function `switch-to-buffer-dwim`, which is working in following order (name completion aside):\\n\\n 1. switch to buffer, if buffer with given name is available\\n 2. when no buffer with that name exists, then open a file with this name in current directory\\n 3. if both is wrong, what next?\\n\\nLast point is important! What should be done next? Should be searched for a file with that name recursively? Should a file be created (and where should the file be created)? Should a buffer without file be created? If a file gets created, how do you create new buffers (and vice versa)? \\n\\n\\nIs this, what you are searching for?\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9escc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI understood your question the following way:\\u003Cbr/\\u003E\\nYou want a function \\u003Ccode\\u003Eswitch-to-buffer-dwim\\u003C/code\\u003E, which is working in following order (name completion aside):\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Eswitch to buffer, if buffer with given name is available\\u003C/li\\u003E\\n\\u003Cli\\u003Ewhen no buffer with that name exists, then open a file with this name in current directory\\u003C/li\\u003E\\n\\u003Cli\\u003Eif both is wrong, what next?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ELast point is important! What should be done next? Should be searched for a file with that name recursively? Should a file be created (and where should the file be created)? Should a buffer without file be created? If a file gets created, how do you create new buffers (and vice versa)? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this, what you are searching for?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq9escc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559932171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ekt0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559903055.0, \"send_replies\": true, \"parent_id\": \"t1_eq96zwx\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It uses both the default keys and your customizations. By default, the key/command list is read from a buffer set to Fundamental Mode.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9ekt0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt uses both the default keys and your customizations. By default, the key/command list is read from a buffer set to Fundamental Mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9ekt0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559931855.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ejbn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559902995.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 2, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Absolutely! really good idea.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9ejbn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAbsolutely! really good idea.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq9ejbn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559931795.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9edsg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559902767.0, \"send_replies\": true, \"parent_id\": \"t1_eq97l5i\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks!\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9edsg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9edsg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559931567.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9eb42\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vfclists\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559902659.0, \"send_replies\": true, \"parent_id\": \"t1_eq99y5z\", \"score\": 1, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Actually I prefer something that will enable me to do it on the fly, ie with a dialog for that particular instance\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9eb42\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EActually I prefer something that will enable me to do it on the fly, ie with a dialog for that particular instance\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9eb42/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559931459.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrwro\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cg2j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"acheronuk\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559899671.0, \"send_replies\": true, \"parent_id\": \"t3_bxrwro\", \"score\": 2, \"author_fullname\": \"t2_11hs72\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It appears that .info files are supplied in a separate package/source **emacs-common-non-dfsg**.\\n\\nFile list: https://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\n\\nIf installing that does not help, then you can install the build depends for emacs on K/Ubuntu by going to Muon and doing \\u003E Settings \\u003E Configure software sources \\u003E Then tick the source code box. Then in a terminal do:\\n\\n sudo apt build-dep emacs\\n\\nThat will get all the direct build dependencies for emacs. It will also get you tools to build .deb packages, which you won't need, but do no harm.\", \"link_title\": \"Roadblock when installing Emacs 26.2 on kubuntu 19.04\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cg2j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt appears that .info files are supplied in a separate package/source \\u003Cstrong\\u003Eemacs-common-non-dfsg\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile list: \\u003Ca href=\\\"https://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\\"\\u003Ehttps://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf installing that does not help, then you can install the build depends for emacs on K/Ubuntu by going to Muon and doing \\u0026gt; Settings \\u0026gt; Configure software sources \\u0026gt; Then tick the source code box. Then in a terminal do:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Esudo apt build-dep emacs\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThat will get all the direct build dependencies for emacs. It will also get you tools to build .deb packages, which you won\\u0026#39;t need, but do no harm.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/eq9cg2j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"report_reasons\": null, \"link_author\": \"granti128\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"created\": 1559928471.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cfwr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ballfresno\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559899664.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_2b5qxk6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I do all of my writing in org. The majority is targeting PDF export, either as articles for publication or for presentations. I almost always make extensive use of org-babel within these documents. All graphics will be done this way, including using gnuplot, plantuml, ditaa, etc. Depending on the topic, the results might also be generated from org-babel src blocks in a number of different languages including octave, Julia, R, as well as text processing using shell or awk blocks.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cfwr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do all of my writing in org. The majority is targeting PDF export, either as articles for publication or for presentations. I almost always make extensive use of org-babel within these documents. All graphics will be done this way, including using gnuplot, plantuml, ditaa, etc. Depending on the topic, the results might also be generated from org-babel src blocks in a number of different languages including octave, Julia, R, as well as text processing using shell or awk blocks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq9cfwr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559928464.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx54uk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9bgm9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559898010.0, \"send_replies\": true, \"parent_id\": \"t1_eq73rjt\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\\\u003EUse-package forms an abstraction upon which it's hard to debug\\n\\n\\u0026#x200B;\\n\\nM-x pp-macroexpand-last-sexp at you service\", \"link_title\": \"Even Better 'Better Defaults'\", \"author_flair_css_class\": null, \"name\": \"t1_eq9bgm9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;Use-package forms an abstraction upon which it\\u0026#39;s hard to debug\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EM-x pp-macroexpand-last-sexp at you service\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/eq9bgm9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://github.com/ianpan870102/.emacs.d\", \"created\": 1559926810.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9a23n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ibizaman\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559895652.0, \"send_replies\": true, \"parent_id\": \"t1_eq7g89b\", \"score\": 1, \"author_fullname\": \"t2_sxb1k\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"With org-mode you get org-babel. So say you have a code example, you could actually run it from the org file, get the result and insert both in the LaTeX export.\\n\\nOrg-mode understands tables too. You can have formulas in tables referencing other cells. The whole table is dynamic \\n\\nAlso, emacs have a symbolic calculator. Very neat when combined with tables.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq9a23n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith org-mode you get org-babel. So say you have a code example, you could actually run it from the org file, get the result and insert both in the LaTeX export.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg-mode understands tables too. You can have formulas in tables referencing other cells. The whole table is dynamic \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, emacs have a symbolic calculator. Very neat when combined with tables.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq9a23n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559924452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq99y5z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"flexibeast\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559895474.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 2, \"author_fullname\": \"t2_3tmsj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Assuming that a package uses `defcustom` to define variables intended to be user-customisable, you can do `M-x customize-group` and specify that package's customize-group to browse for any such variables.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq99y5z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAssuming that a package uses \\u003Ccode\\u003Edefcustom\\u003C/code\\u003E to define variables intended to be user-customisable, you can do \\u003Ccode\\u003EM-x customize-group\\u003C/code\\u003E and specify that package\\u0026#39;s customize-group to browse for any such variables.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq99y5z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"org-vcard pulseaudio-control ewmctrl\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559924274.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq99y5p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ibizaman\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559895474.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 1, \"author_fullname\": \"t2_sxb1k\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Recent versions of grep support `--exclude-dir` so it must be possible.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq99y5p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERecent versions of grep support \\u003Ccode\\u003E--exclude-dir\\u003C/code\\u003E so it must be possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq99y5p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559924274.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq97l5i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grimscythe_\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559891747.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 3, \"author_fullname\": \"t2_17fhdh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Great work!\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq97l5i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreat work!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq97l5i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559920547.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq97j20\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"vfclists\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559891659.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 7, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sad to hear of his passing.\\n\\nI remember him from this thread - [Request: The Future of PHP Mode (TL;DR Near Bottom) : emacs](https://old.reddit.com/r/emacs/comments/6pchsm/request_the_future_of_php_mode_tldr_near_bottom/)\\n\\nIt led me to write a whole blog post on open source funding issues.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": null, \"name\": \"t1_eq97j20\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESad to hear of his passing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI remember him from this thread - \\u003Ca href=\\\"https://old.reddit.com/r/emacs/comments/6pchsm/request_the_future_of_php_mode_tldr_near_bottom/\\\"\\u003ERequest: The Future of PHP Mode (TL;DR Near Bottom) : emacs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt led me to write a whole blog post on open source funding issues.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq97j20/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559920459.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq96zwx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"FLMatt\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559890860.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 4, \"author_fullname\": \"t2_14rw8c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Does it use the default keys or does it take into consideration your customizations?\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq96zwx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes it use the default keys or does it take into consideration your customizations?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq96zwx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559919660.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_brp26g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq96tmb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xtifr\", \"num_comments\": 69, \"can_mod_post\": false, \"created_utc\": 1559890596.0, \"send_replies\": true, \"parent_id\": \"t1_eoo2rr0\", \"score\": 1, \"author_fullname\": \"t2_3bi8nddx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"With tramp, commands like M-x grep and M-x compile run on the remote host, which is a whole lot faster, and, in the case of compiles, may actually mean the difference between working and not working. :)\\n\\n\\u0026#x200B;\\n\\n(Which is not to say that sshfs isn't quite handy...)\", \"link_title\": \"What advantages does Emacs have over Neovim + Tmux?\", \"author_flair_css_class\": null, \"name\": \"t1_eq96tmb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith tramp, commands like M-x grep and M-x compile run on the remote host, which is a whole lot faster, and, in the case of compiles, may actually mean the difference between working and not working. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Which is not to say that sshfs isn\\u0026#39;t quite handy...)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/eq96tmb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/\", \"report_reasons\": null, \"link_author\": \"seagoj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/\", \"created\": 1559919396.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq93rtr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vitorqb23\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559884982.0, \"send_replies\": true, \"parent_id\": \"t1_eq91pn4\", \"score\": 1, \"author_fullname\": \"t2_2nkdd29t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"So far I can not tell the difference.\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq93rtr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo far I can not tell the difference.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq93rtr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559913782.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq92lak\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559883630.0, \"send_replies\": true, \"parent_id\": \"t1_eq92kbd\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Oh, and apparently PlantUML, if that's your thing\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq92lak\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh, and apparently PlantUML, if that\\u0026#39;s your thing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq92lak/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559912430.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq92kbd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559883600.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gal6\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You got it, that part is all LaTeX, but the org exporter recognizes it if you use \\\\\\\\begin{} and you don't even need a source block. Also very nice Beamer integration.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq92kbd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou got it, that part is all LaTeX, but the org exporter recognizes it if you use \\\\begin{} and you don\\u0026#39;t even need a source block. Also very nice Beamer integration.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq92kbd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559912400.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq91pn4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Michaelmrose\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559882652.0, \"send_replies\": true, \"parent_id\": \"t1_eq6btfk\", \"score\": 1, \"author_fullname\": \"t2_8yohe\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Is lucid snappier than gtk?\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq91pn4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs lucid snappier than gtk?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq91pn4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559911452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9049n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"ibillius\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559880936.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 8, \"author_fullname\": \"t2_8no13\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not aware of anything like that but that's a lovely idea. I'm sorry to hear about his passing. PHP mode was very useful to me in my last job and I even briefly corresponded with Eric on Reddit about Emacs.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9049n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not aware of anything like that but that\\u0026#39;s a lovely idea. I\\u0026#39;m sorry to hear about his passing. PHP mode was very useful to me in my last job and I even briefly corresponded with Eric on Reddit about Emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq9049n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559909736.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8qohc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"KrishnaKrGopal\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559872674.0, \"send_replies\": true, \"parent_id\": \"t1_eq4t18o\", \"score\": 1, \"author_fullname\": \"t2_1zt5mges\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes, I use this method too. Emacs is not so heavy weight for today's hardware that a few instances hurt.\\n\\nTo add to it, I have a few server names that are dedicated : org-mode has its own Emacs server : used by commands to capture via org-protocol. For coding, each project has its own server : named after the main Git branch. And there is a default server : for misc usage.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8qohc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, I use this method too. Emacs is not so heavy weight for today\\u0026#39;s hardware that a few instances hurt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo add to it, I have a few server names that are dedicated : org-mode has its own Emacs server : used by commands to capture via org-protocol. For coding, each project has its own server : named after the main Git branch. And there is a default server : for misc usage.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq8qohc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559901474.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bn3qax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8qhil\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"im_not_juicing\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1559872512.0, \"send_replies\": true, \"parent_id\": \"t1_eq87ssp\", \"score\": 1, \"author_fullname\": \"t2_22kx841q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \":D\", \"link_title\": \"where, might you say, is the most \\\"super\\\" of a \\\"super cua\\\" package?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8qhil\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E:D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/eq8qhil/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"created\": 1559901312.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8psyw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"reddit_uname\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871929.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gboh\", \"score\": 2, \"author_fullname\": \"t2_byz78\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This might be what you're looking for: [https://www.gnu.org/software/emacs/manual/html\\\\_mono/autotype.html#Autoinserting](https://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting)\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8psyw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis might be what you\\u0026#39;re looking for: \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting\\\"\\u003Ehttps://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8psyw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559900729.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8p65z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sugarbridalsentry\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871395.0, \"send_replies\": true, \"parent_id\": \"t1_eq09l4k\", \"score\": 1, \"author_fullname\": \"t2_i9gakgq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hey neat! It's simple, and does the job -- way better better than I could have written. \\n\\nI was the one asking about it last week -- someone recommended `iy-go-to-char`, which I've been using. Lets you repeat the search by hitting the character again, and works backwards to. A+, would `'require` again.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8p65z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey neat! It\\u0026#39;s simple, and does the job -- way better better than I could have written. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was the one asking about it last week -- someone recommended \\u003Ccode\\u003Eiy-go-to-char\\u003C/code\\u003E, which I\\u0026#39;ve been using. Lets you repeat the search by hitting the character again, and works backwards to. A+, would \\u003Ccode\\u003E\\u0026#39;require\\u003C/code\\u003E again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8p65z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559900195.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvweh8\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8ov1a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grettke\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559871136.0, \"send_replies\": true, \"parent_id\": \"t1_eq2n87o\", \"score\": 1, \"author_fullname\": \"t2_3fcko\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thank you for sharing that thoughtful advice.\\n\\nWhile I don't have restrictions on my writing style, I do use [WriteGood](https://github.com/bnbeckwith/writegood-mode), [Langtool](https://github.com/mhayashi1120/Emacs-langtool), and [Proselint](https://proselint.com/) liberally.\\n\\nThe call outs on adverbs and adjectives are helpful!\", \"link_title\": \"Writing Academic Papers in Org-mode\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq8ov1a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for sharing that thoughtful advice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile I don\\u0026#39;t have restrictions on my writing style, I do use \\u003Ca href=\\\"https://github.com/bnbeckwith/writegood-mode\\\"\\u003EWriteGood\\u003C/a\\u003E, \\u003Ca href=\\\"https://github.com/mhayashi1120/Emacs-langtool\\\"\\u003ELangtool\\u003C/a\\u003E, and \\u003Ca href=\\\"https://proselint.com/\\\"\\u003EProselint\\u003C/a\\u003E liberally.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe call outs on adverbs and adjectives are helpful!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/eq8ov1a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"doulos05\", \"author_flair_text\": \"Org2Blog Maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"created\": 1559899936.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8outf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sugarbridalsentry\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871131.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gboh\", \"score\": 1, \"author_fullname\": \"t2_i9gakgq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I've used a function like this one to create a buffer for a blog -- it makes a new buffer with header information. To get the different elements to show up on different lines, you just add the newline `\\\\n`\\n\\n ;; Pop a blog buffer\\n (defun blog-buffer ()\\n \\\"Creates a new buffer with the basic title/date header needed by `org-static-blog`\\\"\\n (interactive)\\n (let (($buf (generate-new-buffer \\\"untitled\\\")))\\n (switch-to-buffer $buf)\\n (insert (format-time-string\\n \\\"#+TITLE:\\\\n#+DATE: \\u003C%Y-%m-%d %T %A\\u003E\\\"))\\n (funcall 'org-mode)\\n (setq buffer-offer-save t)))\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8outf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve used a function like this one to create a buffer for a blog -- it makes a new buffer with header information. To get the different elements to show up on different lines, you just add the newline \\u003Ccode\\u003E\\\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Pop a blog buffer\\n(defun blog-buffer ()\\n \\u0026quot;Creates a new buffer with the basic title/date header needed by `org-static-blog`\\u0026quot;\\n (interactive)\\n (let (($buf (generate-new-buffer \\u0026quot;untitled\\u0026quot;)))\\n (switch-to-buffer $buf)\\n (insert (format-time-string\\n \\u0026quot;#+TITLE:\\\\n#+DATE: \\u0026lt;%Y-%m-%d %T %A\\u0026gt;\\u0026quot;))\\n (funcall \\u0026#39;org-mode)\\n (setq buffer-offer-save t)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8outf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559899931.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8ofb1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grettke\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559870776.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_3fcko\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"From my perspective Org is an information management system that includes publishing, LaTeX is a publishing solution and not more than that, so it isn't Org versus LaTeX, it is Org and LaTeX. Is that how you are seeing them? Or what aspects do you see them as competing against each other on?\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq8ofb1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFrom my perspective Org is an information management system that includes publishing, LaTeX is a publishing solution and not more than that, so it isn\\u0026#39;t Org versus LaTeX, it is Org and LaTeX. Is that how you are seeing them? Or what aspects do you see them as competing against each other on?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq8ofb1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": \"Org2Blog Maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559899576.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8nzic\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559870405.0, \"send_replies\": true, \"parent_id\": \"t1_eq8kyv3\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"My take on not even having to look is that I'd rather a menu I don't need to look at didn't appear at all. :)\\n\\nThe particular thing, and perhaps it's customizable, that bugged me about Ivy's key bindings is that I had to use a special keystroke when I actually wanted the thing I typed, to not be given the best match instead. Magic tilde got me quite a few times before I turned it off too. With Helm, it was the tab thing of course. I like Ivy a bit better than Helm, but really I don't want a menu until I need a menu, at which point I'll take a nice big two-column *Completions* buffer.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8nzic\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy take on not even having to look is that I\\u0026#39;d rather a menu I don\\u0026#39;t need to look at didn\\u0026#39;t appear at all. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe particular thing, and perhaps it\\u0026#39;s customizable, that bugged me about Ivy\\u0026#39;s key bindings is that I had to use a special keystroke when I actually wanted the thing I typed, to not be given the best match instead. Magic tilde got me quite a few times before I turned it off too. With Helm, it was the tab thing of course. I like Ivy a bit better than Helm, but really I don\\u0026#39;t want a menu until I need a menu, at which point I\\u0026#39;ll take a nice big two-column \\u003Cem\\u003ECompletions\\u003C/em\\u003E buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8nzic/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559899205.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8kyv3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bump_bump_bump\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559867889.0, \"send_replies\": true, \"parent_id\": \"t1_eq8flnq\", \"score\": 2, \"author_fullname\": \"t2_33ybbkqd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E I'd really rather manually tab complete than have the flashing menus and weird keystrokes\\n\\nSorry, I didn't read that closely enough. \\n\\nI can't imagine doing without fuzzy matching myself, but I can appreciate disliking the rapidly changing matches. \\n\\nMy usage mode is usually to just type off a few fragments that I know will work and *only then* pay attention to the results. Often I don't even have to look, as I know the few keystrokes that get me the exact match I want. e.g. I know the function `projectile-browse-dirty-projects` is useful - and `M-x dirt RET` does it.\\n\\nI don't know about weird keystrokes though - in ivy tab works as you'd expect (unlike helm), and if you set the height to fixed (`ivy-fixed-height-minibuffer`) it won't jump around. The very thing that draws people to ivy over helm is that it's relatively unobtrusive.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8kyv3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI\\u0026#39;d really rather manually tab complete than have the flashing menus and weird keystrokes\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESorry, I didn\\u0026#39;t read that closely enough. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can\\u0026#39;t imagine doing without fuzzy matching myself, but I can appreciate disliking the rapidly changing matches. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy usage mode is usually to just type off a few fragments that I know will work and \\u003Cem\\u003Eonly then\\u003C/em\\u003E pay attention to the results. Often I don\\u0026#39;t even have to look, as I know the few keystrokes that get me the exact match I want. e.g. I know the function \\u003Ccode\\u003Eprojectile-browse-dirty-projects\\u003C/code\\u003E is useful - and \\u003Ccode\\u003EM-x dirt RET\\u003C/code\\u003E does it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t know about weird keystrokes though - in ivy tab works as you\\u0026#39;d expect (unlike helm), and if you set the height to fixed (\\u003Ccode\\u003Eivy-fixed-height-minibuffer\\u003C/code\\u003E) it won\\u0026#39;t jump around. The very thing that draws people to ivy over helm is that it\\u0026#39;s relatively unobtrusive.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8kyv3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559896689.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8jia3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559866675.0, \"send_replies\": true, \"parent_id\": \"t1_eq8gjie\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sounds worth checking out UI-wise anyway. Thanks for the tip!\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8jia3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESounds worth checking out UI-wise anyway. Thanks for the tip!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8jia3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559895475.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559865162.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8gjie\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"00-11\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559864960.0, \"send_replies\": true, \"parent_id\": \"t1_eq8flnq\", \"score\": 1, \"author_fullname\": \"t2_3upsyt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[Icicles](https://www.emacswiki.org/emacs/Icicles) (just like Helm, Ivy, etc. but a decade earlier ;-)) lets you include recent files during buffer-name completion. \\n\\nAnd by default there is no flashing, automatic completion etc. - you hit `TAB` (or `S-TAB`) to complete on demand, just as you usually do with any buffer-completion command.\\n\\nInclusion of recent files during buffer-name completion is controlled by option `icicle-buffer-include-recent-files-nflag`:\\n\\n\\u003E `icicle-buffer-include-recent-files-nflag` is a variable defined in `icicles-opt.el`.\\n\\n\\u003E Its value is -2305843009213693951\\n\\n\\u003E Documentation:\\n\\n\\u003E An integer \\u003E 0 means include recent files during buffer-name completion.\\nThis means file names managed by `recentf-mode` - see (emacs) `File\\nConveniences`. An integer \\u003C 0 means do not include them.\\n\\n\\u003E When they are included, the value is the maximum number of such\\ncandidates to include.\\n\\n\\u003E You can toggle this option (between + and -) using `C-x R` in the\\nminibuffer during buffer-name completion.\\n\\nSee [Icicles - Buffer-Name Input](https://www.emacswiki.org/emacs/Icicles_-_Buffer-Name_Input).\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8gjie\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/Icicles\\\"\\u003EIcicles\\u003C/a\\u003E (just like Helm, Ivy, etc. but a decade earlier ;-)) lets you include recent files during buffer-name completion. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd by default there is no flashing, automatic completion etc. - you hit \\u003Ccode\\u003ETAB\\u003C/code\\u003E (or \\u003Ccode\\u003ES-TAB\\u003C/code\\u003E) to complete on demand, just as you usually do with any buffer-completion command.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInclusion of recent files during buffer-name completion is controlled by option \\u003Ccode\\u003Eicicle-buffer-include-recent-files-nflag\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Ccode\\u003Eicicle-buffer-include-recent-files-nflag\\u003C/code\\u003E is a variable defined in \\u003Ccode\\u003Eicicles-opt.el\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIts value is -2305843009213693951\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDocumentation:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn integer \\u0026gt; 0 means include recent files during buffer-name completion.\\nThis means file names managed by \\u003Ccode\\u003Erecentf-mode\\u003C/code\\u003E - see (emacs) \\u003Ccode\\u003EFile\\nConveniences\\u003C/code\\u003E. An integer \\u0026lt; 0 means do not include them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen they are included, the value is the maximum number of such\\ncandidates to include.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can toggle this option (between + and -) using \\u003Ccode\\u003EC-x R\\u003C/code\\u003E in the\\nminibuffer during buffer-name completion.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESee \\u003Ca href=\\\"https://www.emacswiki.org/emacs/Icicles_-_Buffer-Name_Input\\\"\\u003EIcicles - Buffer-Name Input\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8gjie/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559893760.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8flnq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559864457.0, \"send_replies\": true, \"parent_id\": \"t1_eq89p5p\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yeah, I've tried Ivy for a while at least, and fooled with others. I wasn't sure how to say it but that kind of thing is what I meant by \\\"do-everything completion system\\\". I'd really rather manually tab complete than have the flashing menus and weird keystrokes, and with what these packages want to provide, neither is avoidable. I like switch-to-buffer and find-file, I just don't like remembering which to use.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8flnq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, I\\u0026#39;ve tried Ivy for a while at least, and fooled with others. I wasn\\u0026#39;t sure how to say it but that kind of thing is what I meant by \\u0026quot;do-everything completion system\\u0026quot;. I\\u0026#39;d really rather manually tab complete than have the flashing menus and weird keystrokes, and with what these packages want to provide, neither is avoidable. I like switch-to-buffer and find-file, I just don\\u0026#39;t like remembering which to use.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8flnq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559893257.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559866729.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8cmxs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559862918.0, \"send_replies\": true, \"parent_id\": \"t1_eq894nu\", \"score\": 0, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not really sold on using recent files for this... I can see how it would mostly work, but simply trying to switch buffers often works too. It seems like less hassle in the long run to write a command that does something like trying to complete a buffer name, then searching the current directory for completion, then trying locate. I'm just seeing if that command is out there, before I really think about working on it.\\n\\nEDIT: And of course the recent files list may contain deleted files.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8cmxs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not really sold on using recent files for this... I can see how it would mostly work, but simply trying to switch buffers often works too. It seems like less hassle in the long run to write a command that does something like trying to complete a buffer name, then searching the current directory for completion, then trying locate. I\\u0026#39;m just seeing if that command is out there, before I really think about working on it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: And of course the recent files list may contain deleted files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8cmxs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559891718.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8bumi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559862516.0, \"send_replies\": true, \"parent_id\": \"t1_eq43s1i\", \"score\": 2, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There's also the `browse-at-remote` package, which includes the `browse-at-remote-kill` command.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq8bumi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s also the \\u003Ccode\\u003Ebrowse-at-remote\\u003C/code\\u003E package, which includes the \\u003Ccode\\u003Ebrowse-at-remote-kill\\u003C/code\\u003E command.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8bumi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559891316.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq89p5p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"bump_bump_bump\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559861399.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 6, \"author_fullname\": \"t2_33ybbkqd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Are you familiar with `recentf`? Both `helm` and `ivy`, and probably `ido`, can include recent files in your buffer switching completions.\\n\\nApologies if you already know this. It's not clear from your question what you're already familiar with. But you mention tab completion, which makes me think of the built-in completion, which is much cruder than the fuzzy matching with the above packages.\\n\\nBetween my use of `counsel-projectile-find-file`, `counsel-file-jump`, and `ivy-switch-buffer`, I can't really see a hole that would be filled by what you're talking about.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq89p5p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAre you familiar with \\u003Ccode\\u003Erecentf\\u003C/code\\u003E? Both \\u003Ccode\\u003Ehelm\\u003C/code\\u003E and \\u003Ccode\\u003Eivy\\u003C/code\\u003E, and probably \\u003Ccode\\u003Eido\\u003C/code\\u003E, can include recent files in your buffer switching completions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EApologies if you already know this. It\\u0026#39;s not clear from your question what you\\u0026#39;re already familiar with. But you mention tab completion, which makes me think of the built-in completion, which is much cruder than the fuzzy matching with the above packages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBetween my use of \\u003Ccode\\u003Ecounsel-projectile-find-file\\u003C/code\\u003E, \\u003Ccode\\u003Ecounsel-file-jump\\u003C/code\\u003E, and \\u003Ccode\\u003Eivy-switch-buffer\\u003C/code\\u003E, I can\\u0026#39;t really see a hole that would be filled by what you\\u0026#39;re talking about.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq89p5p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559890199.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq894nu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559861122.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 3, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Some \\\"switch-to-buffer\\\" functions like those provided by ivy and ido have the idea of \\\"virtual buffers\\\", which allows you to switch to buffers of previously-opened files even if you don't have them open currently. In practice, combined with a large `recentf` history of filenames, I think you'll find this does what you want.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq894nu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESome \\u0026quot;switch-to-buffer\\u0026quot; functions like those provided by ivy and ido have the idea of \\u0026quot;virtual buffers\\u0026quot;, which allows you to switch to buffers of previously-opened files even if you don\\u0026#39;t have them open currently. In practice, combined with a large \\u003Ccode\\u003Erecentf\\u003C/code\\u003E history of filenames, I think you\\u0026#39;ll find this does what you want.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq894nu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559889922.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2swo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq88wik\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559861001.0, \"send_replies\": true, \"parent_id\": \"t1_eq7rd66\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Request.el is a solid library, and it's what I always direct people towards\\n\\nGiven its age and lack of maintainership, it's held up respectably, but it's\\nby no means \\\"solid\\\" at the current time. There are well documented bugs, and\\nI don't particularly trust `url-retrieve` backend (the other backend is curl).\", \"link_title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"author_flair_css_class\": null, \"name\": \"t1_eq88wik\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERequest.el is a solid library, and it\\u0026#39;s what I always direct people towards\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EGiven its age and lack of maintainership, it\\u0026#39;s held up respectably, but it\\u0026#39;s\\nby no means \\u0026quot;solid\\u0026quot; at the current time. There are well documented bugs, and\\nI don\\u0026#39;t particularly trust \\u003Ccode\\u003Eurl-retrieve\\u003C/code\\u003E backend (the other backend is curl).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/eq88wik/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"report_reasons\": null, \"link_author\": \"andreas-marschke\", \"author_flair_text\": null, \"link_url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"created\": 1559889801.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq88h6h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"poiu-\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559860787.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_dcfnv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I would like to have this as a helm source (should be easy?)\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq88h6h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to have this as a helm source (should be easy?)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq88h6h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559889587.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bn3qax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq87ssp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rgrau\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1559860391.0, \"send_replies\": true, \"parent_id\": \"t1_eq2yn8z\", \"score\": 1, \"author_fullname\": \"t2_7p0zo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"it's better than Awesome :)\", \"link_title\": \"where, might you say, is the most \\\"super\\\" of a \\\"super cua\\\" package?\", \"author_flair_css_class\": null, \"name\": \"t1_eq87ssp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eit\\u0026#39;s better than Awesome :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/eq87ssp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"created\": 1559889191.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq810id\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erickgnavar\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559856701.0, \"send_replies\": true, \"parent_id\": \"t1_eq7ywee\", \"score\": 1, \"author_fullname\": \"t2_ndbm5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I\\u2019ve used it with https with no problem maybe there is something wrong outside emacs, a system package maybe\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq810id\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u2019ve used it with https with no problem maybe there is something wrong outside emacs, a system package maybe\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq810id/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559885501.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ywee\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"politza\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559855652.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_j63jw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Last time I tried it, it couldn't handle https connections and it did not handle http errors. Which means you don't know what's going on if something goes wrong. So, I had to use something else.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ywee\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELast time I tried it, it couldn\\u0026#39;t handle https connections and it did not handle http errors. Which means you don\\u0026#39;t know what\\u0026#39;s going on if something goes wrong. So, I had to use something else.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq7ywee/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559884452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7vhja\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jhelberg\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559853941.0, \"send_replies\": true, \"parent_id\": \"t3_bx7m7a\", \"score\": 1, \"author_fullname\": \"t2_kf8fe\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"one book, one file I'd say. only long lines slow things down, one file makes searching easy.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7vhja\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eone book, one file I\\u0026#39;d say. only long lines slow things down, one file makes searching easy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq7vhja/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559882741.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvucsw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7uu9d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559853615.0, \"send_replies\": true, \"parent_id\": \"t1_eq1rf8b\", \"score\": 1, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E why is '(defconst qc-cmd-prefx:{c, cpp} ...)' moved out of the defun ? coming from a c'ish background, it seems more appropriate to have function-local-const values indicating readers that this 'foo' has a specified value, and cannot be changed (though not so sure about whether elisp guarantees that i.e. constness of the value held by 'foo').\\n\\n`defconst` doesn't introduce a local var. Use `let` for that. `defconst` always defines a global binding.\\n\\nAlso note that on Emacs 24.3+, ie any reasonable Emacs version, you can use `setq-local` instead of the `set` + `make-local-variable` combo.\", \"link_title\": \"help with trivial emacs lisp function\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq7uu9d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ewhy is \\u0026#39;(defconst qc-cmd-prefx:{c, cpp} ...)\\u0026#39; moved out of the defun ? coming from a c\\u0026#39;ish background, it seems more appropriate to have function-local-const values indicating readers that this \\u0026#39;foo\\u0026#39; has a specified value, and cannot be changed (though not so sure about whether elisp guarantees that i.e. constness of the value held by \\u0026#39;foo\\u0026#39;).\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Edefconst\\u003C/code\\u003E doesn\\u0026#39;t introduce a local var. Use \\u003Ccode\\u003Elet\\u003C/code\\u003E for that. \\u003Ccode\\u003Edefconst\\u003C/code\\u003E always defines a global binding.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso note that on Emacs 24.3+, ie any reasonable Emacs version, you can use \\u003Ccode\\u003Esetq-local\\u003C/code\\u003E instead of the \\u003Ccode\\u003Eset\\u003C/code\\u003E + \\u003Ccode\\u003Emake-local-variable\\u003C/code\\u003E combo.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/eq7uu9d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"report_reasons\": null, \"link_author\": \"daddyc00l\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"created\": 1559882415.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2swo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7rd66\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skeeto\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559851876.0, \"send_replies\": true, \"parent_id\": \"t1_eq5t16p\", \"score\": 1, \"author_fullname\": \"t2_3em9l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Request.el is a solid library, and it's what I always direct people\\ntowards when they're interested in reusing the URL request library built\\ninto Elfeed. So that's fine.\\n\\nHowever, that's only part of the equation, right? You'd need to also\\nparse and crawl the pages you download?\", \"link_title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"author_flair_css_class\": null, \"name\": \"t1_eq7rd66\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERequest.el is a solid library, and it\\u0026#39;s what I always direct people\\ntowards when they\\u0026#39;re interested in reusing the URL request library built\\ninto Elfeed. So that\\u0026#39;s fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, that\\u0026#39;s only part of the equation, right? You\\u0026#39;d need to also\\nparse and crawl the pages you download?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/eq7rd66/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"report_reasons\": null, \"link_author\": \"andreas-marschke\", \"author_flair_text\": null, \"link_url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"created\": 1559880676.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2cy9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7plfn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ConfidentGarbage9\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559850978.0, \"send_replies\": true, \"parent_id\": \"t1_eq7mpvi\", \"score\": 1, \"author_fullname\": \"t2_3bwix9h6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"No defun, defparameter, defmacro ect. should remain the same color\", \"link_title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"author_flair_css_class\": null, \"name\": \"t1_eq7plfn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo defun, defparameter, defmacro ect. should remain the same color\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/eq7plfn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"report_reasons\": null, \"link_author\": \"ConfidentGarbage9\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"created\": 1559879778.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ofgr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559850423.0, \"send_replies\": true, \"parent_id\": \"t1_eq7noav\", \"score\": 1, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Both checking and setting can be done using the customize interface, see https://www.gnu.org/software/emacs/manual/html_node/emacs/Easy-Customization.html.\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ofgr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBoth checking and setting can be done using the customize interface, see \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/emacs/Easy-Customization.html\\\"\\u003Ehttps://www.gnu.org/software/emacs/manual/html_node/emacs/Easy-Customization.html\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7ofgr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559879223.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7noav\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rpgwaiter\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559850054.0, \"send_replies\": true, \"parent_id\": \"t1_eq7kx00\", \"score\": 1, \"author_fullname\": \"t2_eim28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not sure how to check the current value, but I did change it to utf-8 from whatever it was and it looks fine now. The change doesn't persist when I close the terminal and reload emacs. How do I make the changes persist?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7noav\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not sure how to check the current value, but I did change it to utf-8 from whatever it was and it looks fine now. The change doesn\\u0026#39;t persist when I close the terminal and reload emacs. How do I make the changes persist?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7noav/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559878854.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2cy9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7mpvi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bodertz\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559849546.0, \"send_replies\": true, \"parent_id\": \"t1_eq357aa\", \"score\": 1, \"author_fullname\": \"t2_9c5ij\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Would `defun` also be blue?\", \"link_title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"author_flair_css_class\": null, \"name\": \"t1_eq7mpvi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWould \\u003Ccode\\u003Edefun\\u003C/code\\u003E also be blue?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/eq7mpvi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"report_reasons\": null, \"link_author\": \"ConfidentGarbage9\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"created\": 1559878346.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7kx00\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559848539.0, \"send_replies\": true, \"parent_id\": \"t1_eq7ka7f\", \"score\": 3, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"As Eli said: check your \\\\`terminal-coding-system\\\\`. What's its value?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7kx00\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs Eli said: check your `terminal-coding-system`. What\\u0026#39;s its value?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7kx00/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559877339.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ka7f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rpgwaiter\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559848206.0, \"send_replies\": true, \"parent_id\": \"t1_eq7jho8\", \"score\": 1, \"author_fullname\": \"t2_eim28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Gotcha.. So how should I go about fixing it?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ka7f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGotcha.. So how should I go about fixing it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7ka7f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559877006.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7jho8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559847827.0, \"send_replies\": true, \"parent_id\": \"t1_eq7es87\", \"score\": 2, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's the point of -Q.\\n\\nIf the font was the problem, you wouldn't see \\\\\\\\-escape sequences but boxes. What you see indicates an encoding issue.\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7jho8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s the point of -Q.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the font was the problem, you wouldn\\u0026#39;t see \\\\-escape sequences but boxes. What you see indicates an encoding issue.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7jho8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559876627.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7gboh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559846287.0, \"send_replies\": true, \"parent_id\": \"t3_bwm94g\", \"score\": 2, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Can you guide me to something that addresses my need to have a new buffer made ready from an existing template when i open a new file. Example, If I want to open a new file named lecture2.org, i want the new buffer to have the `#+TITLE: #+AUTHOR: #+Latex_Class:` already typed in. What should I be searching for on my internet searches?\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq7gboh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan you guide me to something that addresses my need to have a new buffer made ready from an existing template when i open a new file. Example, If I want to open a new file named lecture2.org, i want the new buffer to have the \\u003Ccode\\u003E#+TITLE: #+AUTHOR: #+Latex_Class:\\u003C/code\\u003E already typed in. What should I be searching for on my internet searches?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq7gboh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559875087.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7gal6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"-dag-\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559846274.0, \"send_replies\": true, \"parent_id\": \"t1_eq7a4uh\", \"score\": 1, \"author_fullname\": \"t2_ds1dyo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's interesting. How does it integrate with TikZ? Do you still write embedded latex for that?\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7gal6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s interesting. How does it integrate with TikZ? Do you still write embedded latex for that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7gal6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559875074.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7g89b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"-dag-\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559846242.0, \"send_replies\": true, \"parent_id\": \"t1_eq7dgei\", \"score\": 1, \"author_fullname\": \"t2_ds1dyo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yep, I get the literate programming aspect. I'm asking about \\\"pure\\\" documentation. This is a paper to be read by others. The only code would be example snippets. org-babel could be useful for writing the snippets and generating the output automatically. I'm curious what other advantages org-babel has over just writing a paper in latex. \\n\\n\\nI'll have to look into org's support for diagrams and equations. Thanks!\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7g89b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYep, I get the literate programming aspect. I\\u0026#39;m asking about \\u0026quot;pure\\u0026quot; documentation. This is a paper to be read by others. The only code would be example snippets. org-babel could be useful for writing the snippets and generating the output automatically. I\\u0026#39;m curious what other advantages org-babel has over just writing a paper in latex. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ll have to look into org\\u0026#39;s support for diagrams and equations. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7g89b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559875042.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7es87\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rpgwaiter\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559845521.0, \"send_replies\": true, \"parent_id\": \"t1_eq7eaon\", \"score\": 1, \"author_fullname\": \"t2_eim28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes I'm running in a text terminal. No issue when running with -Q, although none of my configuration seems to be loaded with that option.\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7es87\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes I\\u0026#39;m running in a text terminal. No issue when running with -Q, although none of my configuration seems to be loaded with that option.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7es87/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559874321.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7eaon\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eli-zaretskii\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559845287.0, \"send_replies\": true, \"parent_id\": \"t3_bxjr2h\", \"score\": 2, \"author_fullname\": \"t2_13cvre\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You are running Emacs on a text terminal, right? Then I think the problem might be `terminal-coding-system`. Does this happen in `emacs -Q` as well?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq7eaon\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou are running Emacs on a text terminal, right? Then I think the problem might be \\u003Ccode\\u003Eterminal-coding-system\\u003C/code\\u003E. Does this happen in \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E as well?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7eaon/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": \"GNU Emacs maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559874087.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7dgei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559844887.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"org-babel allows literate programming in regular org files. Regular org files can be exported to pdf using latex. Regular org files already allow math equations, diagrams and code. org-babel can execute the code and provide the output (in different formats as you please).\\n\\nThe advantage is that you can have your program / code and your document in the same file.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7dgei\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eorg-babel allows literate programming in regular org files. Regular org files can be exported to pdf using latex. Regular org files already allow math equations, diagrams and code. org-babel can execute the code and provide the output (in different formats as you please).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe advantage is that you can have your program / code and your document in the same file.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7dgei/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559873687.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ca4a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Tatrics\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559844312.0, \"send_replies\": true, \"parent_id\": \"t1_eq7088x\", \"score\": 1, \"author_fullname\": \"t2_tpfed\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is handy! Thanks!\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ca4a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is handy! Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq7ca4a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559873112.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7a4uh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559843222.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm a big fan actually. Even with latex mode shortcuts it's a lot faster to use org, once you get it set up. I use it with TikZ and Beamer...\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7a4uh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a big fan actually. Even with latex mode shortcuts it\\u0026#39;s a lot faster to use org, once you get it set up. I use it with TikZ and Beamer...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7a4uh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559872022.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9yo7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7a260\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dzecniv\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1559843184.0, \"send_replies\": true, \"parent_id\": \"t3_bw9yo7\", \"score\": 1, \"author_fullname\": \"t2_j6dwn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I completed a bit https://wikemacs.org/wiki/Eshell, more additions welcome ! cheers\", \"link_title\": \"Did you know that the Eshell is awesome?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7a260\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI completed a bit \\u003Ca href=\\\"https://wikemacs.org/wiki/Eshell\\\"\\u003Ehttps://wikemacs.org/wiki/Eshell\\u003C/a\\u003E, more additions welcome ! cheers\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/eq7a260/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"report_reasons\": null, \"link_author\": \"202700000000\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"created\": 1559871984.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559902737.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx54uk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq73rjt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yep808\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559840023.0, \"send_replies\": true, \"parent_id\": \"t1_eq5r6wd\", \"score\": 1, \"author_fullname\": \"t2_3kgkql01\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes I'm aware of it, but I prefer to require the packages with native Elisp. Use-package forms an abstraction upon which is hard to debug\", \"link_title\": \"Even Better 'Better Defaults'\", \"author_flair_css_class\": null, \"name\": \"t1_eq73rjt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes I\\u0026#39;m aware of it, but I prefer to require the packages with native Elisp. Use-package forms an abstraction upon which is hard to debug\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/eq73rjt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://github.com/ianpan870102/.emacs.d\", \"created\": 1559868823.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq70hsc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559838492.0, \"send_replies\": true, \"parent_id\": \"t1_eq4kvcb\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"In my experience, that has happened. But that doesn't mean it happens to everyone.\\n\\nA good for instance is Control-v . Out of the box, that key is to scroll up (that is, page down). Then I added the cua.el package that maps Control-v to the yank (or insert from clipboard) action.\\n\\nThat caused problems until I redefined Shift-Control-v to do the scrolling thing.\\n\\n (define-key global-map [(shift control ?v)] 'scroll-up)\\n\\nI did the reverse with Control-a . The cua package wanted that to Select Whole Buffer. BUt I was too used to Control-a being beginning-of-line.\\n\\nYes, I did wind up with a LOT of conflicts in the keymap. So in my dot-emacs file, I have a big area towards the end in which I reconfigure lots and lots of keys at once.\\n\\nBecause, doing it in each package easily leads to one package wiping out another package's keys.\\n\\nIt is not so much a problem these days, because packages have the option of defining their own prefix key if they like. Then they can assign their own keymap to that prefix.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq70hsc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn my experience, that has happened. But that doesn\\u0026#39;t mean it happens to everyone.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA good for instance is Control-v . Out of the box, that key is to scroll up (that is, page down). Then I added the cua.el package that maps Control-v to the yank (or insert from clipboard) action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat caused problems until I redefined Shift-Control-v to do the scrolling thing.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(define-key global-map [(shift control ?v)] \\u0026#39;scroll-up)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI did the reverse with Control-a . The cua package wanted that to Select Whole Buffer. BUt I was too used to Control-a being beginning-of-line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes, I did wind up with a LOT of conflicts in the keymap. So in my dot-emacs file, I have a big area towards the end in which I reconfigure lots and lots of keys at once.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause, doing it in each package easily leads to one package wiping out another package\\u0026#39;s keys.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is not so much a problem these days, because packages have the option of defining their own prefix key if they like. Then they can assign their own keymap to that prefix.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq70hsc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559867292.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7088x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erickgnavar\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559838371.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 2, \"author_fullname\": \"t2_ndbm5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"A nice thing I use in combination with restclient.el is `json-mode-beautify`(from `json-mode` package) this way you can format json payload easily. I have it binded to `C-c C-f` for more quickly access.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq7088x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA nice thing I use in combination with restclient.el is \\u003Ccode\\u003Ejson-mode-beautify\\u003C/code\\u003E(from \\u003Ccode\\u003Ejson-mode\\u003C/code\\u003E package) this way you can format json payload easily. I have it binded to \\u003Ccode\\u003EC-c C-f\\u003C/code\\u003E for more quickly access.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq7088x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559867171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6xou0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vitorqb23\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559837175.0, \"send_replies\": true, \"parent_id\": \"t1_eq6ooiv\", \"score\": 1, \"author_fullname\": \"t2_2nkdd29t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hey! \\n\\n\\nSo my \\\"remote\\\" server actually lives on our LAN, so I'm guessing that is a very different scenario than having a really remote server. \\n\\n\\nAnyway, even when the server is on our local network the delay is \\\\*still\\\\* a problem for low response-time features like completion, etc. So I feel your pain.\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6xou0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo my \\u0026quot;remote\\u0026quot; server actually lives on our LAN, so I\\u0026#39;m guessing that is a very different scenario than having a really remote server. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway, even when the server is on our local network the delay is *still* a problem for low response-time features like completion, etc. So I feel your pain.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq6xou0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559865975.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6wy35\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559836799.0, \"send_replies\": true, \"parent_id\": \"t1_eq6685h\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Nope, only EXWM + EXWM-x and few single-key bindings:\\n - F1 switch-to-last-buffer\\n - F2 delete-other-windows\\n - F3 other-window\\n - F4 split-window-below\\n - F5 split-window-right\\n - F6 notmuch / S-F6 notmuch-mua-new-mail / C-F6 call-process-shell-command to a script that wrap RSS2Email\\n....\\n - F9 aweshell-toggle\\n....\\n\\nWith \\\"printed\\\" (actually a stickers) keycaps so it's super-easy to operate.\\n\\nsshot: https://transfer.sh/10A2hA/sshot.png\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6wy35\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENope, only EXWM + EXWM-x and few single-key bindings:\\n - F1 switch-to-last-buffer\\n - F2 delete-other-windows\\n - F3 other-window\\n - F4 split-window-below\\n - F5 split-window-right\\n - F6 notmuch / S-F6 notmuch-mua-new-mail / C-F6 call-process-shell-command to a script that wrap RSS2Email\\n....\\n - F9 aweshell-toggle\\n....\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith \\u0026quot;printed\\u0026quot; (actually a stickers) keycaps so it\\u0026#39;s super-easy to operate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esshot: \\u003Ca href=\\\"https://transfer.sh/10A2hA/sshot.png\\\"\\u003Ehttps://transfer.sh/10A2hA/sshot.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6wy35/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559865599.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6w95t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"egregius313\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559836472.0, \"send_replies\": true, \"parent_id\": \"t1_eq4dw7d\", \"score\": 2, \"author_fullname\": \"t2_clfs9gn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"If you use `M-x switch-to-buffer` or even ido, having a lot of buffers open makes the autocomplete a lot less helpful.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6w95t\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you use \\u003Ccode\\u003EM-x switch-to-buffer\\u003C/code\\u003E or even ido, having a lot of buffers open makes the autocomplete a lot less helpful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6w95t/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559865272.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6tq5v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eli-zaretskii\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559835257.0, \"send_replies\": true, \"parent_id\": \"t1_eq65bol\", \"score\": 3, \"author_fullname\": \"t2_13cvre\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"If it means anything, I never kill any buffers in my sessions, even though these go on for many weeks.\\n\\nBut if you are bothered by that, someone else pointed out that the bundled package midnight.el will kill unused buffer for you so look it up.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq6tq5v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf it means anything, I never kill any buffers in my sessions, even though these go on for many weeks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut if you are bothered by that, someone else pointed out that the bundled package midnight.el will kill unused buffer for you so look it up.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6tq5v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": \"GNU Emacs maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559864057.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6sx3k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bnzmnzhnz\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559834863.0, \"send_replies\": true, \"parent_id\": \"t3_bx7m7a\", \"score\": 1, \"author_fullname\": \"t2_ek4av\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I find projectile with ivy and ivy-rich is a good pattern for bouncing between projects and keeping track of which buffers belong to each.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6sx3k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find projectile with ivy and ivy-rich is a good pattern for bouncing between projects and keeping track of which buffers belong to each.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6sx3k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559863663.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxhod6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6rm65\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"C0untLizzi\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559834237.0, \"send_replies\": true, \"parent_id\": \"t3_bxhod6\", \"score\": 3, \"author_fullname\": \"t2_1235w2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I think you need to require dap-python for it to be registered, something like\\n\\n (require 'dap-mode)\\n (require 'dap-ui)\\n (require 'dap-python)\\n (dap-mode 1)\\n (dap-ui-mode 1)\\n\\nworks for me.\", \"link_title\": \"Where do I find templates for dap-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6rm65\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think you need to require dap-python for it to be registered, something like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;dap-mode)\\n(require \\u0026#39;dap-ui)\\n(require \\u0026#39;dap-python)\\n(dap-mode 1)\\n(dap-ui-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eworks for me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/eq6rm65/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"report_reasons\": null, \"link_author\": \"billy_wade\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"created\": 1559863037.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6ooiv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rufusthedogwoof\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559832823.0, \"send_replies\": true, \"parent_id\": \"t3_bxfdd1\", \"score\": 1, \"author_fullname\": \"t2_10s2l8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm happy you have found a fix with --with-x-toolkit=lucid.\\n\\nquick question, how much latency are you finding with this? I tried it awhile back, and with my vpn connect -\\u003E my servers it was just unbearably slow.. and then i went down the rabbit hole of trying to get a better emacs experience with cygwin, w32 native, and WSL...\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6ooiv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m happy you have found a fix with --with-x-toolkit=lucid.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Equick question, how much latency are you finding with this? I tried it awhile back, and with my vpn connect -\\u0026gt; my servers it was just unbearably slow.. and then i went down the rabbit hole of trying to get a better emacs experience with cygwin, w32 native, and WSL...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq6ooiv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559861623.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6nvuu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dzecniv\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559832429.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_j6dwn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Contributions on its wikemacs page are welcome ! https://wikemacs.org/wiki/Restclient cheers\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq6nvuu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EContributions on its wikemacs page are welcome ! \\u003Ca href=\\\"https://wikemacs.org/wiki/Restclient\\\"\\u003Ehttps://wikemacs.org/wiki/Restclient\\u003C/a\\u003E cheers\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq6nvuu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559861229.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx82j3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6kuko\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559830945.0, \"send_replies\": true, \"parent_id\": \"t3_bx82j3\", \"score\": 1, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have been experiencing the exact same thing, but never thought much about it.. Looks like it's time to switch back to the default Emacs undo system.\", \"link_title\": \"Somehow my undo history is truncated... what did I inadvertently change?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq6kuko\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have been experiencing the exact same thing, but never thought much about it.. Looks like it\\u0026#39;s time to switch back to the default Emacs undo system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/eq6kuko/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"report_reasons\": null, \"link_author\": \"moxxon\", \"author_flair_text\": \"default bindings, org, magit, ox-hugo\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"created\": 1559859745.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9azu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6kou5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559830867.0, \"send_replies\": true, \"parent_id\": \"t1_eq6295p\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\\\u003EWhat would you say are the most significant determining factors for init time?\\n\\n\\u0026#x200B;\\n\\nI meant that the same code snippet could affect loading time completely different depending on the rest of the configuration.\\n\\n\\u0026#x200B;\\n\\n\\\\\\u003ECorrect. It's also not Atom or VS Code. That doesn't preclude comparison.\\n\\n\\u0026#x200B;\\n\\nI meant Emacs is not a text editor like all these.\", \"link_title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"author_flair_css_class\": null, \"name\": \"t1_eq6kou5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;What would you say are the most significant determining factors for init time?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI meant that the same code snippet could affect loading time completely different depending on the rest of the configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026gt;Correct. It\\u0026#39;s also not Atom or VS Code. That doesn\\u0026#39;t preclude comparison.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI meant Emacs is not a text editor like all these.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/eq6kou5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"report_reasons\": null, \"link_author\": \"Rainymood_XI\", \"author_flair_text\": null, \"link_url\": \"https://github.com/Rainymood/dotemacs\", \"created\": 1559859667.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwbizf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6iqjv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"billy_wade\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559829882.0, \"send_replies\": true, \"parent_id\": \"t1_epyenr4\", \"score\": 1, \"author_fullname\": \"t2_14xlbd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Okay, it should be up now, after I upload the gif.\", \"link_title\": \"I'm getting a strange color theme bug in 26.2\", \"author_flair_css_class\": null, \"name\": \"t1_eq6iqjv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOkay, it should be up now, after I upload the gif.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/eq6iqjv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"report_reasons\": null, \"link_author\": \"billy_wade\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"created\": 1559858682.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6hswy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"localhorst\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559829397.0, \"send_replies\": true, \"parent_id\": \"t3_bx7m7a\", \"score\": 1, \"author_fullname\": \"t2_1l9g7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"For me just\\n\\n (setq ido-default-buffer-method 'selected-window)\\n (ido-mode 1)\\n\\nis good enough and I rarely close buffers\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6hswy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor me just\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq ido-default-buffer-method \\u0026#39;selected-window)\\n(ido-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eis good enough and I rarely close buffers\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6hswy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559858197.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6heyr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"danielszm\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559829196.0, \"send_replies\": true, \"parent_id\": \"t1_eq5k72d\", \"score\": 2, \"author_fullname\": \"t2_9jyp6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I second that which has been seconded. A memoir begs to be written with the title: How I Learned to Stop Worrying and Love Open Buffers.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6heyr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI second that which has been seconded. A memoir begs to be written with the title: How I Learned to Stop Worrying and Love Open Buffers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6heyr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559857996.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6h8b4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kcin\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559829099.0, \"send_replies\": true, \"parent_id\": \"t1_eq5gail\", \"score\": 1, \"author_fullname\": \"t2_2z9w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Frequent tasks should be made more accessible and easier than infrequent tasks. C-x b is an awful sequence and it's astounding that it's used for such a highest-frequency task.\\n\\nAgreed, but I go further than you and assign buffer switching to a single key, because it's a such a frequent task, that it deserves its own key.\\n\\nI don't use the right windows key on my keyboard, so it's a good choice for that (other candidates are the right control, right shift, etc. which can be assigned as single keys to frequent tasks).\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6h8b4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EFrequent tasks should be made more accessible and easier than infrequent tasks. C-x b is an awful sequence and it\\u0026#39;s astounding that it\\u0026#39;s used for such a highest-frequency task.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAgreed, but I go further than you and assign buffer switching to a single key, because it\\u0026#39;s a such a frequent task, that it deserves its own key.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t use the right windows key on my keyboard, so it\\u0026#39;s a good choice for that (other candidates are the right control, right shift, etc. which can be assigned as single keys to frequent tasks).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6h8b4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559857899.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6gspy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kcin\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559828878.0, \"send_replies\": true, \"parent_id\": \"t1_eq65bol\", \"score\": 1, \"author_fullname\": \"t2_2z9w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"My laptop's last reboot was back in the first days of March, and I never close buffers. I run midnight-mode, though, to clear out buffers which haven't been touched in a week.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6gspy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy laptop\\u0026#39;s last reboot was back in the first days of March, and I never close buffers. I run midnight-mode, though, to clear out buffers which haven\\u0026#39;t been touched in a week.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6gspy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559857678.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_eq6gspy\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["242300"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:14 GMT"], "x-ratelimit-remaining": ["598.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "x-ratelimit-used": ["2"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914214.740661,VS0,VE509"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["587"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:30:14"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_eq9omn4"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:15 GMT"], "x-ratelimit-remaining": ["597.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "x-ratelimit-used": ["3"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914215.301433,VS0,VE74"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["585"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_eq9omn4"}, "recorded_at": "2019-06-07T13:30:15"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So Emacs is pretty old, and it has `grep.el` and `find-dired` that allow to use external tools to search for files and in files. But that can cause difficulties when those tools are not available. Sure, `grep` and `find` are available on every *nix environment (ahem, BSD and GNU actually differ, ahem), but that's not the case for Windows. I'm not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\n\\nI'm aware of [xah-find](https://github.com/xahlee/xah-find), which declares these features:\\n\\n\\u003E\\u2022 Pure emacs lisp. No dependencies on unix/linux grep/sed/find. Especially useful on Windows.\\n\\u003E\\n\\u003E\\u2022 Output is highlighted and clickable for jumping to occurence.\\n\\u003E\\n\\u003E\\u2022 Using emacs regex, not bash/perl etc regex.\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that\\u2019s multiple lines.\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that contains lots Unicode characters. See [unix uniq unicode bug](http://xahlee.info/comp/unix_uniq_unicode_bug.html) and [emacs calling unix grep problem](http://ergoemacs.org/emacs/emacs_grep_problem.html)\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that contains lots escape slashes or backslashes. For example, Find/Replace string that\\u2019s regex in source code.\\n\\nAnd it's seem to be nice solution for searching within file contents when `grep` or alternatives aren't available, but it's not in the default Emacs, you have to use googlefu in order to find it. And also it features output format that is quite different from what `grep` produces.\\n\\nAs for file search, I know that [Projectile](https://github.com/bbatsov/projectile) provides a [native](https://docs.projectile.mx/en/latest/configuration/#project-indexing-method) way of searching for files written in elisp, but again, it's not in the core, for obvious reasons.\\n\\nI wonder why there's no builtin commands to do arbitrary file search and contents search from Emacs like in, say, VSCode, Sublime Text, and Atom, which have cross-platform methods to search for and in files, which make sense to me, since I will get similar results across platforms, and will not be worried if my system features GNU grep or BSD grep, and GNU find or BSD find, which can be an issue on Linux and MacOS, and will require setting up GNU utilities on Windows.\\n\\nSo are there any historical or technical reasons for that? I know that elisp can be pretty slow for such task, but it seems that `xah-find` performs pretty good on my machine, and `native` method in projectile works acceptable as well.\", \"author_fullname\": \"t2_w7w9e32\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"grep and find but in pure Emacs LISP?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_bxtwfg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559938474.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo Emacs is pretty old, and it has \\u003Ccode\\u003Egrep.el\\u003C/code\\u003E and \\u003Ccode\\u003Efind-dired\\u003C/code\\u003E that allow to use external tools to search for files and in files. But that can cause difficulties when those tools are not available. Sure, \\u003Ccode\\u003Egrep\\u003C/code\\u003E and \\u003Ccode\\u003Efind\\u003C/code\\u003E are available on every *nix environment (ahem, BSD and GNU actually differ, ahem), but that\\u0026#39;s not the case for Windows. I\\u0026#39;m not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m aware of \\u003Ca href=\\\"https://github.com/xahlee/xah-find\\\"\\u003Exah-find\\u003C/a\\u003E, which declares these features:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u2022 Pure emacs lisp. No dependencies on unix/linux grep/sed/find. Especially useful on Windows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Output is highlighted and clickable for jumping to occurence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Using emacs regex, not bash/perl etc regex.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that\\u2019s multiple lines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that contains lots Unicode characters. See \\u003Ca href=\\\"http://xahlee.info/comp/unix_uniq_unicode_bug.html\\\"\\u003Eunix uniq unicode bug\\u003C/a\\u003E and \\u003Ca href=\\\"http://ergoemacs.org/emacs/emacs_grep_problem.html\\\"\\u003Eemacs calling unix grep problem\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that contains lots escape slashes or backslashes. For example, Find/Replace string that\\u2019s regex in source code.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAnd it\\u0026#39;s seem to be nice solution for searching within file contents when \\u003Ccode\\u003Egrep\\u003C/code\\u003E or alternatives aren\\u0026#39;t available, but it\\u0026#39;s not in the default Emacs, you have to use googlefu in order to find it. And also it features output format that is quite different from what \\u003Ccode\\u003Egrep\\u003C/code\\u003E produces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for file search, I know that \\u003Ca href=\\\"https://github.com/bbatsov/projectile\\\"\\u003EProjectile\\u003C/a\\u003E provides a \\u003Ca href=\\\"https://docs.projectile.mx/en/latest/configuration/#project-indexing-method\\\"\\u003Enative\\u003C/a\\u003E way of searching for files written in elisp, but again, it\\u0026#39;s not in the core, for obvious reasons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wonder why there\\u0026#39;s no builtin commands to do arbitrary file search and contents search from Emacs like in, say, VSCode, Sublime Text, and Atom, which have cross-platform methods to search for and in files, which make sense to me, since I will get similar results across platforms, and will not be worried if my system features GNU grep or BSD grep, and GNU find or BSD find, which can be an issue on Linux and MacOS, and will require setting up GNU utilities on Windows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo are there any historical or technical reasons for that? I know that elisp can be pretty slow for such task, but it seems that \\u003Ccode\\u003Exah-find\\u003C/code\\u003E performs pretty good on my machine, and \\u003Ccode\\u003Enative\\u003C/code\\u003E method in projectile works acceptable as well.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxtwfg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andreyorst\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559909674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"There was a post recently about why people quit using helm and I said that the TAB key usage was just too jarring (by default). I said that I gave up but prompted to change them I tried, but I didn't like any of my options that I could find. So I write my own. This will make the tab:\\n\\n* If there's more than one candidate flash the mode-line. This is a close enough approximation of the default `find-file` behavior that expands the candidates\\n* If there's one or less candidates do whatever the default persistent action is.\\n\\nNow helm doesn't really conflict with two decades of `find-file` or `execute-extended-command` usage(\\\\*):\\n\\nSo the flasher ([source](https://www.emacswiki.org/emacs/AlarmBell)):\\n\\n defun double-flash-mode-line ()\\n \\\"Flash the modeline\\\"\\n (let ((flash-sec (/ 1.0 20)))\\n (invert-face 'mode-line)\\n (run-with-timer flash-sec nil #'invert-face 'mode-line)\\n (run-with-timer (* 2 flash-sec) nil #'invert-face 'mode-line)\\n (run-with-timer (* 3 flash-sec) nil #'invert-face 'mode-line)))\\n\\nThe action:\\n\\n (defun helm-execute-if-single-persistent-action (\\u0026optional attr split-onewindow)\\n \\\"Execute persistent action if the candidate list is less than 2\\\"\\n (interactive)\\n (with-helm-alive-p\\n (if (\\u003E (helm-get-candidate-number) 2)\\n (double-flash-mode-line)\\n (helm-execute-persistent-action)\\n )))\\n\\nSo here's my helm-related configuration in it's entirety for now. I'm probably still missing a lot of gems to get the most out of it but still:\\n\\n (use-package helm\\n :demand t\\n :bind* (:map helm-map \\n ([tab] . helm-execute-if-single-persistent-action)\\n (\\\"C-i\\\" . helm-execute-persistent-action)\\n ))\\n \\n (use-package helm-files\\n :bind (:map helm-find-files-map\\n (\\\"\\u003CC-backspace\\u003E\\\" . helm-find-files-up-one-level)\\n )\\n )\\n \\n (require 'helm-config)\\n (global-set-key (kbd \\\"M-x\\\") 'helm-M-x)\\n (global-set-key (kbd \\\"C-x b\\\") 'helm-buffers-list)\\n (global-set-key (kbd \\\"C-x C-f\\\") 'helm-find-files)\\n (helm-mode 1)\\n\\nSimple enough and now helm can get off my lawn and back to my emacs.\\n\\n\\u0026#x200B;\\n\\n(\\\\*) I still make mistakes when I want a new file and there's a close candidate, but I can live with that.\", \"author_fullname\": \"t2_z7asf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Helm and the Tab key\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxt0cz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559932255.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere was a post recently about why people quit using helm and I said that the TAB key usage was just too jarring (by default). I said that I gave up but prompted to change them I tried, but I didn\\u0026#39;t like any of my options that I could find. So I write my own. This will make the tab:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf there\\u0026#39;s more than one candidate flash the mode-line. This is a close enough approximation of the default \\u003Ccode\\u003Efind-file\\u003C/code\\u003E behavior that expands the candidates\\u003C/li\\u003E\\n\\u003Cli\\u003EIf there\\u0026#39;s one or less candidates do whatever the default persistent action is.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ENow helm doesn\\u0026#39;t really conflict with two decades of \\u003Ccode\\u003Efind-file\\u003C/code\\u003E or \\u003Ccode\\u003Eexecute-extended-command\\u003C/code\\u003E usage(*):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo the flasher (\\u003Ca href=\\\"https://www.emacswiki.org/emacs/AlarmBell\\\"\\u003Esource\\u003C/a\\u003E):\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edefun double-flash-mode-line ()\\n \\u0026quot;Flash the modeline\\u0026quot;\\n (let ((flash-sec (/ 1.0 20)))\\n (invert-face \\u0026#39;mode-line)\\n (run-with-timer flash-sec nil #\\u0026#39;invert-face \\u0026#39;mode-line)\\n (run-with-timer (* 2 flash-sec) nil #\\u0026#39;invert-face \\u0026#39;mode-line)\\n (run-with-timer (* 3 flash-sec) nil #\\u0026#39;invert-face \\u0026#39;mode-line)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe action:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun helm-execute-if-single-persistent-action (\\u0026amp;optional attr split-onewindow)\\n \\u0026quot;Execute persistent action if the candidate list is less than 2\\u0026quot;\\n (interactive)\\n (with-helm-alive-p\\n (if (\\u0026gt; (helm-get-candidate-number) 2)\\n (double-flash-mode-line)\\n (helm-execute-persistent-action)\\n )))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo here\\u0026#39;s my helm-related configuration in it\\u0026#39;s entirety for now. I\\u0026#39;m probably still missing a lot of gems to get the most out of it but still:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package helm\\n :demand t\\n :bind* (:map helm-map \\n ([tab] . helm-execute-if-single-persistent-action)\\n (\\u0026quot;C-i\\u0026quot; . helm-execute-persistent-action)\\n ))\\n\\n(use-package helm-files\\n :bind (:map helm-find-files-map\\n (\\u0026quot;\\u0026lt;C-backspace\\u0026gt;\\u0026quot; . helm-find-files-up-one-level)\\n )\\n )\\n\\n(require \\u0026#39;helm-config)\\n(global-set-key (kbd \\u0026quot;M-x\\u0026quot;) \\u0026#39;helm-M-x)\\n(global-set-key (kbd \\u0026quot;C-x b\\u0026quot;) \\u0026#39;helm-buffers-list)\\n(global-set-key (kbd \\u0026quot;C-x C-f\\u0026quot;) \\u0026#39;helm-find-files)\\n(helm-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESimple enough and now helm can get off my lawn and back to my emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(*) I still make mistakes when I want a new file and there\\u0026#39;s a close candidate, but I can live with that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxt0cz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TTRation\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxt0cz/helm_and_the_tab_key/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxt0cz/helm_and_the_tab_key/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559903455.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm currently using\\n\\n```\\n(defvar default-font \\\"DejaVu Sans Mono-11.0:antialias=natural\\\")\\n(add-to-list 'default-frame-alist `(font . ,default-font))\\n```\\n\\nbut I'm wondering whether there is sth better out there.\", \"author_fullname\": \"t2_q52rf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What font settings would you recommend?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxsydi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559931829.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m currently using\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(defvar default-font \\u0026quot;DejaVu Sans Mono-11.0:antialias=natural\\u0026quot;)\\n(add-to-list \\u0026#39;default-frame-alist `(font . ,default-font))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut I\\u0026#39;m wondering whether there is sth better out there.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsydi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackjackk0\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559903029.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have install the MELPA stable packages for pandoc, mark-down-mode and pandoc-mode. Can export, compile etc fine with mark-down mode but I cannot get the pandoc-mode exporting to work as the error is 'Searching for program: No such file or directory, pandoc'\\n\\n\\u0026#x200B;\\n\\nIn my .emacs file I have (setq markdown-command \\\"/usr/local/bin/pandoc\\\")\\n\\n\\u0026#x200B;\\n\\nGoing through finder, I do have a 50.9MB pandoc file (with no extension though) in /usr/local/bin\\n\\n\\u0026#x200B;\\n\\nAny ideas?\", \"author_fullname\": \"t2_5034r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help installing pandoc, markdown-mode, pandoc-mode. OSX\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxsvnc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559931249.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have install the MELPA stable packages for pandoc, mark-down-mode and pandoc-mode. Can export, compile etc fine with mark-down mode but I cannot get the pandoc-mode exporting to work as the error is \\u0026#39;Searching for program: No such file or directory, pandoc\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my .emacs file I have (setq markdown-command \\u0026quot;/usr/local/bin/pandoc\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoing through finder, I do have a 50.9MB pandoc file (with no extension though) in /usr/local/bin\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsvnc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"richardsplash\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559902449.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Because the `elpa` directory is in the `emacs.d` directory when I try to search for some strings in own `init.el` it shows results from the `elpa` directory which I don't need.\\n\\nDo some of the grepping packages (projectile-grep for instance) have options to restrict or exclude some directories from the search?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to configure a grep command not to search some directories?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxrxm0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559923409.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause the \\u003Ccode\\u003Eelpa\\u003C/code\\u003E directory is in the \\u003Ccode\\u003Eemacs.d\\u003C/code\\u003E directory when I try to search for some strings in own \\u003Ccode\\u003Einit.el\\u003C/code\\u003E it shows results from the \\u003Ccode\\u003Eelpa\\u003C/code\\u003E directory which I don\\u0026#39;t need.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo some of the grepping packages (projectile-grep for instance) have options to restrict or exclude some directories from the search?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxrxm0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559894609.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I don't know why I hadn't done this sooner, but today I installed kubuntu on a memory stick and am now running that on my otherwise Windows 10 laptop.\\n\\nOf course, the first thing I did after installing 106 kubuntu updates was to install Emacs, which happens to be version 26.1. I noticed, however, that the kubuntu repository doesn't include any of the `.info` files!\\n\\nSo I uninstalled, downloaded 26.2 from [GNU Land](https://www.gnu.org/software/emacs/download.html) and read through the installation instructions. I got as far as running `./configure` and came up with this message:\\n\\n configure: error: You seem to be running X, but no X development libraries\\n were found. You should install the relevant development files for X\\n and for the toolkit you want, such as Gtk+ or Motif. Also make\\n sure you have development files for image handling, i.e.\\n tiff, gif, jpeg, png and xpm.\\n If you are sure you want Emacs compiled without X window support, pass\\n --without-x\\n to configure.\\n\\nI went into the Muon package manager, typed in `x window development library`, and found these two lovelies:\\n\\n- libclxclient-dev (X Window System C++ access library)\\n- libdri2-dev (library for the DRI2 extension to the X Window System)\\n\\nWhich means very little to me :-( I haven't even looked at Gtk+ or Motif, as well as the development files for image handling.\\n\\nI've Googled, and most of what I've found is at least 2 years old. Hoping someone would offer some guidance here, please.\", \"author_fullname\": \"t2_3n4c5vdo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Roadblock when installing Emacs 26.2 on kubuntu 19.04\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxrwro\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559923220.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t know why I hadn\\u0026#39;t done this sooner, but today I installed kubuntu on a memory stick and am now running that on my otherwise Windows 10 laptop.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, the first thing I did after installing 106 kubuntu updates was to install Emacs, which happens to be version 26.1. I noticed, however, that the kubuntu repository doesn\\u0026#39;t include any of the \\u003Ccode\\u003E.info\\u003C/code\\u003E files!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I uninstalled, downloaded 26.2 from \\u003Ca href=\\\"https://www.gnu.org/software/emacs/download.html\\\"\\u003EGNU Land\\u003C/a\\u003E and read through the installation instructions. I got as far as running \\u003Ccode\\u003E./configure\\u003C/code\\u003E and came up with this message:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Econfigure: error: You seem to be running X, but no X development libraries\\nwere found. You should install the relevant development files for X\\nand for the toolkit you want, such as Gtk+ or Motif. Also make\\nsure you have development files for image handling, i.e.\\ntiff, gif, jpeg, png and xpm.\\nIf you are sure you want Emacs compiled without X window support, pass\\n --without-x\\nto configure.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI went into the Muon package manager, typed in \\u003Ccode\\u003Ex window development library\\u003C/code\\u003E, and found these two lovelies:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Elibclxclient-dev (X Window System C++ access library)\\u003C/li\\u003E\\n\\u003Cli\\u003Elibdri2-dev (library for the DRI2 extension to the X Window System)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhich means very little to me :-( I haven\\u0026#39;t even looked at Gtk+ or Motif, as well as the development files for image handling.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve Googled, and most of what I\\u0026#39;ve found is at least 2 years old. Hoping someone would offer some guidance here, please.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxrwro\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"granti128\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559894420.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello r/emacs\\n\\nI would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz.[1](https://www.floydmortuary.com/obituaries/Eric-Ritz/) I didn't know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his `php-mode`.\\n\\nI'm not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\", \"author_fullname\": \"t2_gilh3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[meta] An \\\"in memoriam\\\" page?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxq3a0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 46, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 46, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559908284.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/emacs\\\"\\u003Er/emacs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz.\\u003Ca href=\\\"https://www.floydmortuary.com/obituaries/Eric-Ritz/\\\"\\u003E1\\u003C/a\\u003E I didn\\u0026#39;t know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his \\u003Ccode\\u003Ephp-mode\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"export EDITOR=emacs\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxq3a0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paxperscientiam\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559879484.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_6b5tg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxmyy8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 30, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 30, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559889098.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxmyy8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"LiterallyCarlSagan\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/federicotdn/key-quiz\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559860298.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a package that will let me forget which files I've already opened? Not so much a project exploration package or a do-everything completion system, just a slight twist on switch-to-buffer which would look for files if tab-completing to an existing buffer has failed. Kind of like how finding a file that's already open just switches to its buffer. Ideally as similar to switch-to-buffer's UI as possible.\", \"author_fullname\": \"t2_ajc92\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Package to switch to buffer or file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxm847\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559885167.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a package that will let me forget which files I\\u0026#39;ve already opened? Not so much a project exploration package or a do-everything completion system, just a slight twist on switch-to-buffer which would look for files if tab-completing to an existing buffer has failed. Kind of like how finding a file that\\u0026#39;s already open just switches to its buffer. Ideally as similar to switch-to-buffer\\u0026#39;s UI as possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxm847\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"phalp\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559856367.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm pretty new to emacs, I just installed spacemacs on my arch machine. In the terminal, the interface is near-unreadable. I just see \\\\u6969 all over the place where arrows and other unicode characters would be. Is there a font package I'm missing or something?\", \"author_fullname\": \"t2_eim28\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs showing unicode sequences in the terminal\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxjr2h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559872476.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m pretty new to emacs, I just installed spacemacs on my arch machine. In the terminal, the interface is near-unreadable. I just see \\\\u6969 all over the place where arrows and other unicode characters would be. Is there a font package I\\u0026#39;m missing or something?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxjr2h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rpgwaiter\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559843676.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If I'm writing a document to be published via latex, what, if any, advantages are there to author it in org-babel vs. pure latex? Does the answer change if the document includes things like mathematical equations, technical diagrams and/or code examples?\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-babel for latex\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxiz6w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559868561.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I\\u0026#39;m writing a document to be published via latex, what, if any, advantages are there to author it in org-babel vs. pure latex? Does the answer change if the document includes things like mathematical equations, technical diagrams and/or code examples?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxiz6w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559839761.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to debug python, but when it asks for a template and I type in \\\"python,\\\" nothing comes up. Where do I get a template?\", \"author_fullname\": \"t2_14xlbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Where do I find templates for dap-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxhod6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559861885.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to debug python, but when it asks for a template and I type in \\u0026quot;python,\\u0026quot; nothing comes up. Where do I get a template?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxhod6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_wade\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559833085.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have a setup where I'm forced to work on a Windows machine and connect to a remote linux server.\\n\\nMy initial idea was to start a emacs in daemon mode with `emacs --daemon` and having it persistently running on the server. Then, from windows and using putty (with X-forwarding) + vcxsrv (X Server for Windows), I could call `emacsclient -c` and have a client to this persistent session every time I need in a dedicated window in my Windows pc.\\n\\n\\nThis setup for me would be great because my sessions would survive connection instabilities. Even if my putty session dropped (which happens sometimes), I could just start another emacsclient and resume the work from where I left, including long-running `compile` commands.\\n\\n\\nHowever what happens is that after my connection drops for the first time (or I close a emacsclient) is that the next call to `emacsclient` fails. The system simply hangs and nothing happens. This happened with `emacsclient foo`, `emacsclient -c`, `emacsclient -e nil`, `emacsclient -t`, etc. It hangs (saying \\\"Waiting for Emacs\\\" if the -n flag is passed) as usual, but it never really opens a new emacs frame. \\n\\n\\nRestarting the server solves the issue, but of course I lose all my work.\\n\\n\\nAny ideas?\\n\\n\\n```\\nThis is GNU Emacs 25.1.1 (x86\\\\_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-15, modified by Debian\\n```\", \"author_fullname\": \"t2_2nkdd29t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxfdd1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847473.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a setup where I\\u0026#39;m forced to work on a Windows machine and connect to a remote linux server.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy initial idea was to start a emacs in daemon mode with \\u003Ccode\\u003Eemacs --daemon\\u003C/code\\u003E and having it persistently running on the server. Then, from windows and using putty (with X-forwarding) + vcxsrv (X Server for Windows), I could call \\u003Ccode\\u003Eemacsclient -c\\u003C/code\\u003E and have a client to this persistent session every time I need in a dedicated window in my Windows pc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis setup for me would be great because my sessions would survive connection instabilities. Even if my putty session dropped (which happens sometimes), I could just start another emacsclient and resume the work from where I left, including long-running \\u003Ccode\\u003Ecompile\\u003C/code\\u003E commands.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever what happens is that after my connection drops for the first time (or I close a emacsclient) is that the next call to \\u003Ccode\\u003Eemacsclient\\u003C/code\\u003E fails. The system simply hangs and nothing happens. This happened with \\u003Ccode\\u003Eemacsclient foo\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -c\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -e nil\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -t\\u003C/code\\u003E, etc. It hangs (saying \\u0026quot;Waiting for Emacs\\u0026quot; if the -n flag is passed) as usual, but it never really opens a new emacs frame. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERestarting the server solves the issue, but of course I lose all my work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\nThis is GNU Emacs 25.1.1 (x86\\\\_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-15, modified by Debian\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfdd1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vitorqb23\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559818673.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I used to get a longer undo history, I would frequently use visualize-undo-tree to navigate through my undo states... suddenly my tree is always a single path. \\n\\nAnyone have any idea what I might have changed?\", \"author_fullname\": \"t2_krp1j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Somehow my undo history is truncated... what did I inadvertently change?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx82j3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559798322.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used to get a longer undo history, I would frequently use visualize-undo-tree to navigate through my undo states... suddenly my tree is always a single path. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone have any idea what I might have changed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx82j3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moxxon\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559769522.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"well, recently i am using emacs to manage agenda, to write academic docs, to write some scripts for programming contest and so on until sudendly i find myself unproductive and crazy closing all buffer related to magit, org-mode, eshell, etc.... so i want to know how do you deal with all buffers?, how do you find and change to a buffer quickly?....\\n\\nany ideas is well received... thanks you!!\", \"author_fullname\": \"t2_rpq4n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"how to deal with a lot of buffers in emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx7m7a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 47, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 47, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559796022.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewell, recently i am using emacs to manage agenda, to write academic docs, to write some scripts for programming contest and so on until sudendly i find myself unproductive and crazy closing all buffer related to magit, org-mode, eshell, etc.... so i want to know how do you deal with all buffers?, how do you find and change to a buffer quickly?....\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eany ideas is well received... thanks you!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx7m7a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ch0ff\", \"num_crossposts\": 0, \"num_comments\": 54, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559767222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Even Better 'Better Defaults'\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx54uk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559783750.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx54uk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/ianpan870102/.emacs.d\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559754950.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've made an example [restclient file](https://github.com/TatriX/realworld-rust-rocket/blob/master/tests/dev.http) for my [realworld](https://github.com/TatriX/realworld-rust-rocket) implementation in Rust.\\n\\n[Restclient](https://github.com/pashky/restclient.el) is useful for http testing. So if you never tried it I encourage you to do so!\\n\\nhttps://i.redd.it/lfmdm6x2mj231.png\", \"author_fullname\": \"t2_tpfed\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Restclient example\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"lfmdm6x2mj231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1810, \"x\": 1915, \"u\": \"https://i.redd.it/lfmdm6x2mj231.png\"}, \"m\": \"image/png\", \"id\": \"lfmdm6x2mj231\"}}, \"name\": \"t3_bx2t14\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559771552.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve made an example \\u003Ca href=\\\"https://github.com/TatriX/realworld-rust-rocket/blob/master/tests/dev.http\\\"\\u003Erestclient file\\u003C/a\\u003E for my \\u003Ca href=\\\"https://github.com/TatriX/realworld-rust-rocket\\\"\\u003Erealworld\\u003C/a\\u003E implementation in Rust.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/pashky/restclient.el\\\"\\u003ERestclient\\u003C/a\\u003E is useful for http testing. So if you never tried it I encourage you to do so!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/lfmdm6x2mj231.png\\\"\\u003Ehttps://i.redd.it/lfmdm6x2mj231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2t14\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tatrics\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559742752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_eqgha\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx2swo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559771533.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2swo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andreas-marschke\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559742733.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want to make it so that all variable and function calls are highlighted in the same way they are in definitions but I cannot work out how to properly do so.\\n\\n[Image](https://imgur.com/t9sIhUs) of my current highlighting.\", \"author_fullname\": \"t2_3bwix9h6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx2cy9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559768909.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to make it so that all variable and function calls are highlighted in the same way they are in definitions but I cannot work out how to properly do so.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/t9sIhUs\\\"\\u003EImage\\u003C/a\\u003E of my current highlighting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2cy9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ConfidentGarbage9\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559740109.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to get into writing backends for Gnus, and I'm having a hard time wrapping my head around it coneptwise, essentialwise and otherwise.\\n\\n\\u0026#x200B;\\n\\nI think I've seen a blog-post or somesuch years ago walking through the basics, but all my attempts at finding it have evaluated to nil.\\n\\n\\u0026#x200B;\\n\\nWould I be so lucky that one of you might be able provide any pointers?\", \"author_fullname\": \"t2_mdzdbt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The woes of writing Gnus backends\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx25j5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559767624.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to get into writing backends for Gnus, and I\\u0026#39;m having a hard time wrapping my head around it coneptwise, essentialwise and otherwise.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I\\u0026#39;ve seen a blog-post or somesuch years ago walking through the basics, but all my attempts at finding it have evaluated to nil.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWould I be so lucky that one of you might be able provide any pointers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx25j5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"StoffePro\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx25j5/the_woes_of_writing_gnus_backends/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx25j5/the_woes_of_writing_gnus_backends/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559738824.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have some interesting agenda entries dating back to 2017 that I want to use in my current org files and I have set the TODO values to TODO2017, but there is too much to see when I am working on current items.\\n\\nIs there a way to filter the editing page to hide the TODO2017 or any other items?\\n\\nI think I can filter them out in the agenda view, but in this case I need them filtered when viewing or editing the page.\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can some org TODOs filtered out from normal working view?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx0bp9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559752893.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have some interesting agenda entries dating back to 2017 that I want to use in my current org files and I have set the TODO values to TODO2017, but there is too much to see when I am working on current items.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way to filter the editing page to hide the TODO2017 or any other items?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I can filter them out in the agenda view, but in this case I need them filtered when viewing or editing the page.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx0bp9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx0bp9/how_can_some_org_todos_filtered_out_from_normal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx0bp9/how_can_some_org_todos_filtered_out_from_normal/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559724093.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I saw [an earlier thread](https://www.reddit.com/r/emacs/comments/8e24t9/writing_reactjsx_in_2018_what_addons_do_you_all/) asking about users\\u2019 setups for JSX. Since I can\\u2019t respond to that thread, I thought I\\u2019d make a new one / an announcement.\\n\\nSince Emacs 25, js-jsx-mode was added to provide some indentation support for JSX \\u2014 however, the indentation code had many bugs and limitations. Not everyone knew about js-jsx-mode either.\\n\\nI decided to return to the Emacs core and fix the indentation code. I also added highlighting for JSX. I even made it so that JSX could be detected and used in normal JavaScript buffers, without the user needing to know about js-jsx-mode.\\n\\n[JSX code highlighted in Emacs 27](https://i.redd.it/hh8uds9elh231.png)\\n\\nAll these features are now available on the Emacs master branch, and eventually will be released in Emacs 27. I invite JS devs to take my improvements for a spin. Hopefully they will be pleasant for you to use!\\n\\nMy goal was to do most of the same things that the combination of js2-mode+rjsx-mode would achieve, without needing to install and configure extra modes, and hopefully with better performance.\", \"author_fullname\": \"t2_3w4fpd4t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"Improved JSX support now available in js-mode on Emacs master\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"hh8uds9elh231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 684, \"x\": 816, \"u\": \"https://i.redd.it/hh8uds9elh231.png\"}, \"m\": \"image/png\", \"id\": \"hh8uds9elh231\"}}, \"name\": \"t3_bwzpw0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 110, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 110, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559747224.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI saw \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/8e24t9/writing_reactjsx_in_2018_what_addons_do_you_all/\\\"\\u003Ean earlier thread\\u003C/a\\u003E asking about users\\u2019 setups for JSX. Since I can\\u2019t respond to that thread, I thought I\\u2019d make a new one / an announcement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince Emacs 25, js-jsx-mode was added to provide some indentation support for JSX \\u2014 however, the indentation code had many bugs and limitations. Not everyone knew about js-jsx-mode either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI decided to return to the Emacs core and fix the indentation code. I also added highlighting for JSX. I even made it so that JSX could be detected and used in normal JavaScript buffers, without the user needing to know about js-jsx-mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/hh8uds9elh231.png\\\"\\u003EJSX code highlighted in Emacs 27\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll these features are now available on the Emacs master branch, and eventually will be released in Emacs 27. I invite JS devs to take my improvements for a spin. Hopefully they will be pleasant for you to use!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy goal was to do most of the same things that the combination of js2-mode+rjsx-mode would achieve, without needing to install and configure extra modes, and hopefully with better performance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwzpw0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jacksonrayhamilton\", \"num_crossposts\": 0, \"num_comments\": 23, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559718424.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"It is kind of annoying to have to use capital letters to get a complete suggestion in many cases. So I was wondering if it possible to make company-lsp non-case-sensitive.\\n\\n\\u0026#x200B;\\n\\nThanks.\", \"author_fullname\": \"t2_3d69xp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make company-lsp non-case-sensitive?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwt79w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559706779.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt is kind of annoying to have to use capital letters to get a complete suggestion in many cases. So I was wondering if it possible to make company-lsp non-case-sensitive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwt79w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ram535\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwt79w/how_to_make_companylsp_noncasesensitive/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwt79w/how_to_make_companylsp_noncasesensitive/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559677979.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm a long-time vim user who's been intrigued for a while by what emacs has to offer. I recently made the plunge and have been been using emacs for my workflow with C/C++ development mostly. One issue that I'm running into is that I can't seem to get autoindent to behave nicely, or at least to behave like it does in vim.\\n\\nIn my .vimrc, I have two lines:\\n\\n set tabstop=4\\n set shiftwidth=4\\n\\nThere is a third option, set notabexpand, which is on by default and keeps tabs as tabs, instead of substituting spaces.\\n\\nThis is the behavior that I'm trying to create in emacs. The tab character is displayed as 4 spaces wide, but is actually saved as a tab character in the file instead of four spaces. Autoindentation also inserts tabs, which are displayed as 4 spaces wide.\\n\\nHow do I reproduce this in emacs? I've gone through half a dozen guides, each recommending something different, and all of them have had funky results. Currently I've got:\\n\\n (setq-default tab-width 4)\\n (setq tap-stop-list (number-sequence 4 80 4))\\n\\nAutoindents give me a tab two characters wide. I'm not sure if it's a tab being displayed as two spaces, or two actual spaces.\\n\\nI tried adding: \\n\\n (setq c-default-style \\\"linux\\\" tab-width 4)\\n\\nWhen I did this, tabs were indeed displayed as 4 characters wide, but each level of indention was giving me 2 tabs for a total of 8 characters of indentation per level.\\n\\nWhat am I missing here? I feel like I *must* be making this way harder than it is because such basic functionality can't be hidden behind 10 lines of configuration.\\n\\n\\nEdit:\\n\\nI did a little bit more tinkering, and I seem to have found a combination of settings that (mostly) gets the correct behavior.\\n\\nBasically, I got rid of everything in my .emacs that mentioned indentation and added the following:\\n\\n (setq-default c-basic-offset 4\\n tab-width 4\\n indent-tabs-mode t)\\n\\nWith that change, everything *seems* to be working correctly. c-basic-offset is how many spaces emacs will indent a level of code, tab width is how many spaces the tab character is equal to, and indent-tabs-mode is a boolean variable that determines if tabs are used (t) or spaces (f). At least that's what I'm gathering.\", \"author_fullname\": \"t2_ge28w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I get my tabs and auto-indent to behave nicely?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bws522\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559712779.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559701657.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a long-time vim user who\\u0026#39;s been intrigued for a while by what emacs has to offer. I recently made the plunge and have been been using emacs for my workflow with C/C++ development mostly. One issue that I\\u0026#39;m running into is that I can\\u0026#39;t seem to get autoindent to behave nicely, or at least to behave like it does in vim.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my .vimrc, I have two lines:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eset tabstop=4\\nset shiftwidth=4\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThere is a third option, set notabexpand, which is on by default and keeps tabs as tabs, instead of substituting spaces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the behavior that I\\u0026#39;m trying to create in emacs. The tab character is displayed as 4 spaces wide, but is actually saved as a tab character in the file instead of four spaces. Autoindentation also inserts tabs, which are displayed as 4 spaces wide.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I reproduce this in emacs? I\\u0026#39;ve gone through half a dozen guides, each recommending something different, and all of them have had funky results. Currently I\\u0026#39;ve got:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq-default tab-width 4)\\n(setq tap-stop-list (number-sequence 4 80 4))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAutoindents give me a tab two characters wide. I\\u0026#39;m not sure if it\\u0026#39;s a tab being displayed as two spaces, or two actual spaces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried adding: \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq c-default-style \\u0026quot;linux\\u0026quot; tab-width 4)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I did this, tabs were indeed displayed as 4 characters wide, but each level of indention was giving me 2 tabs for a total of 8 characters of indentation per level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat am I missing here? I feel like I \\u003Cem\\u003Emust\\u003C/em\\u003E be making this way harder than it is because such basic functionality can\\u0026#39;t be hidden behind 10 lines of configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did a little bit more tinkering, and I seem to have found a combination of settings that (mostly) gets the correct behavior.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically, I got rid of everything in my .emacs that mentioned indentation and added the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq-default c-basic-offset 4\\n tab-width 4\\n indent-tabs-mode t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith that change, everything \\u003Cem\\u003Eseems\\u003C/em\\u003E to be working correctly. c-basic-offset is how many spaces emacs will indent a level of code, tab width is how many spaces the tab character is equal to, and indent-tabs-mode is a boolean variable that determines if tabs are used (t) or spaces (f). At least that\\u0026#39;s what I\\u0026#39;m gathering.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bws522\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"morganmachine91\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bws522/how_do_i_get_my_tabs_and_autoindent_to_behave/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bws522/how_do_i_get_my_tabs_and_autoindent_to_behave/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559672857.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_r6lg7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Will this Debian buster (testing) bug of Emacs related to a 16 year old upstream gtk+ bug affect those waiting for buster?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwrhq4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559698416.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"bugs.debian.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwrhq4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jumpUpHigh\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwrhq4/will_this_debian_buster_testing_bug_of_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://bugs.debian.org/cgi-bin/bugreport.cgi?archive=no\\u0026bug=929567\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559669616.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello everyone,\\n\\nI have been wanting to customize emacs to my needs for a long time but except for org-mode haven't quite done anything. Figured now would be a good time to start.\\n\\nThe first thing that I want is I create a lot of buffers on emacs but sometimes when my work laptop decides to restart I loose all those buffers (since they aren't associated with any file).\\n\\nHow do I get emacs to auto save my buffers\\\\*\\\\* to a particular location? \\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\* When I say buffer I basically mean \\\\`C-x b\\\\` type in a new name and start working on it.\", \"author_fullname\": \"t2_u6flf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make emacs automatically save buffers to a location\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwqw72\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"3a5e1042-1094-11e7-bb00-0e3b6c7befce\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559695385.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been wanting to customize emacs to my needs for a long time but except for org-mode haven\\u0026#39;t quite done anything. Figured now would be a good time to start.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first thing that I want is I create a lot of buffers on emacs but sometimes when my work laptop decides to restart I loose all those buffers (since they aren\\u0026#39;t associated with any file).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I get emacs to auto save my buffers** to a particular location? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** When I say buffer I basically mean `C-x b` type in a new name and start working on it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwqw72\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"abhixec\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/bwqw72/how_to_make_emacs_automatically_save_buffers_to_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwqw72/how_to_make_emacs_automatically_save_buffers_to_a/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559666585.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am trying to create a package manager for emacs which doesn't rely on package.el, is very minimalistic, and does all of its operations in the background. I have done some basic operations using shell scripts, Maybe I will use elisp code instead at some point. Any feedbacks or comments are very much appreciated.\\n\\nhttps://github.com/SidharthArya/emacsit\", \"author_fullname\": \"t2_3tn7pcdr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A simple package manager for emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwptua\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559661450.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559689923.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to create a package manager for emacs which doesn\\u0026#39;t rely on package.el, is very minimalistic, and does all of its operations in the background. I have done some basic operations using shell scripts, Maybe I will use elisp code instead at some point. Any feedbacks or comments are very much appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/SidharthArya/emacsit\\\"\\u003Ehttps://github.com/SidharthArya/emacsit\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwptua\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SidharthArya-\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwptua/a_simple_package_manager_for_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwptua/a_simple_package_manager_for_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559661123.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cr743\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"dianyou 0.0.3 is out (Gnus tool to search/analyze mails)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwohf8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559682405.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"blog.binchen.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwohf8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"redguardtoo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwohf8/dianyou_003_is_out_gnus_tool_to_searchanalyze/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://blog.binchen.org/posts/dianyou-0-0-3-is-out.html\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559653605.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I know that `emacs` is not multi-threaded, but I'd hope to be able to spawn a child process from `eshell`. Running `M-x shell` and then `yes \\u003E /dev/null` results in a process `yes` being spawned and it is occupying one core's 100%, it does not block `emacs`, all is good.\\n\\nHowever, when running `M-x eshell` and then `yes \\u003E /dev/null` results in the `emacs` process chugging 100% cpu, therefore `eshell` spawns a process as a child `emacs` process? Do I get this right?\\n\\nSo the question is: Can `eshell` spawn a process that is detached from `emacs`, just like `M-x shell` does?\", \"author_fullname\": \"t2_17fhdh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Eshell don't blocks Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwn89f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559673594.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know that \\u003Ccode\\u003Eemacs\\u003C/code\\u003E is not multi-threaded, but I\\u0026#39;d hope to be able to spawn a child process from \\u003Ccode\\u003Eeshell\\u003C/code\\u003E. Running \\u003Ccode\\u003EM-x shell\\u003C/code\\u003E and then \\u003Ccode\\u003Eyes \\u0026gt; /dev/null\\u003C/code\\u003E results in a process \\u003Ccode\\u003Eyes\\u003C/code\\u003E being spawned and it is occupying one core\\u0026#39;s 100%, it does not block \\u003Ccode\\u003Eemacs\\u003C/code\\u003E, all is good.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, when running \\u003Ccode\\u003EM-x eshell\\u003C/code\\u003E and then \\u003Ccode\\u003Eyes \\u0026gt; /dev/null\\u003C/code\\u003E results in the \\u003Ccode\\u003Eemacs\\u003C/code\\u003E process chugging 100% cpu, therefore \\u003Ccode\\u003Eeshell\\u003C/code\\u003E spawns a process as a child \\u003Ccode\\u003Eemacs\\u003C/code\\u003E process? Do I get this right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo the question is: Can \\u003Ccode\\u003Eeshell\\u003C/code\\u003E spawn a process that is detached from \\u003Ccode\\u003Eemacs\\u003C/code\\u003E, just like \\u003Ccode\\u003EM-x shell\\u003C/code\\u003E does?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwn89f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"grimscythe_\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwn89f/eshell_dont_blocks_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwn89f/eshell_dont_blocks_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559644794.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559637338.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As in the previous thread don't feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly tips/trick/etc/ thread\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwm94g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559664939.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs in the previous thread don\\u0026#39;t feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwm94g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 19, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": true, \"url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559636139.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_661dm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A keyboard that changes as you type.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwlncu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 75, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 75, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559659632.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwlncu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jaccarmac\", \"num_crossposts\": 1, \"num_comments\": 25, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwlncu/a_keyboard_that_changes_as_you_type/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/shapr/markovkeyboard\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559630832.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"After set debug-on-error to t in order to make sure that there is no error inside my .emacs file then i got some error on startup.\\n\\n Debugger entered--Lisp error: (wrong-type-argument undo-tree nil)\\n signal(wrong-type-argument (undo-tree nil))\\n undo-tree-current(nil)\\n (undo-tree-node-previous (undo-tree-current buffer-undo-tree))\\n (and undo-tree-mode (not buffer-read-only) (not (eq t buffer-undo-list)) (undo-tree-node-previous (undo-tree-current buffer-undo-tree)))\\n redisplay_internal\\\\ \\\\(C\\\\ function\\\\)()\\n message(\\\"Loading %s (source)...\\\" \\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\")\\n load-with-code-conversion(\\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\" \\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\" nil nil)\\n #\\u003Csubr load\\u003E(\\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\" nil nil nil nil)\\n ad-Advice-load(#\\u003Csubr load\\u003E \\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n apply(ad-Advice-load #\\u003Csubr load\\u003E \\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n load(\\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n eval-buffer(#\\u003Cbuffer *load*\\u003E nil \\\"/home/yourpc/.emacs\\\" nil t) ; Reading at buffer position 29657\\n load-with-code-conversion(\\\"/home/yourpc/.emacs\\\" \\\"/home/yourpc/.emacs\\\" t t)\\n load(\\\"~/.emacs\\\" noerror nomessage)\\n startup--load-user-init-file(#f(compiled-function () #\\u003Cbytecode 0x1fd3c2958e75\\u003E) #f(compiled-function () #\\u003Cbytecode 0x1fd3c2958e03\\u003E) t)\\n command-line()\\n normal-top-level()\\n\\nAnyone could help me fix this? I just want an error free.\", \"author_fullname\": \"t2_3uh7inav\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Set debug-on-error to t then startup with undo-tree error.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwleyk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559657730.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter set debug-on-error to t in order to make sure that there is no error inside my .emacs file then i got some error on startup.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EDebugger entered--Lisp error: (wrong-type-argument undo-tree nil)\\n signal(wrong-type-argument (undo-tree nil))\\n undo-tree-current(nil)\\n (undo-tree-node-previous (undo-tree-current buffer-undo-tree))\\n (and undo-tree-mode (not buffer-read-only) (not (eq t buffer-undo-list)) (undo-tree-node-previous (undo-tree-current buffer-undo-tree)))\\n redisplay_internal\\\\ \\\\(C\\\\ function\\\\)()\\n message(\\u0026quot;Loading %s (source)...\\u0026quot; \\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot;)\\n load-with-code-conversion(\\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot; \\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot; nil nil)\\n #\\u0026lt;subr load\\u0026gt;(\\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot; nil nil nil nil)\\n ad-Advice-load(#\\u0026lt;subr load\\u0026gt; \\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n apply(ad-Advice-load #\\u0026lt;subr load\\u0026gt; \\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n load(\\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n eval-buffer(#\\u0026lt;buffer *load*\\u0026gt; nil \\u0026quot;/home/yourpc/.emacs\\u0026quot; nil t) ; Reading at buffer position 29657\\n load-with-code-conversion(\\u0026quot;/home/yourpc/.emacs\\u0026quot; \\u0026quot;/home/yourpc/.emacs\\u0026quot; t t)\\n load(\\u0026quot;~/.emacs\\u0026quot; noerror nomessage)\\n startup--load-user-init-file(#f(compiled-function () #\\u0026lt;bytecode 0x1fd3c2958e75\\u0026gt;) #f(compiled-function () #\\u0026lt;bytecode 0x1fd3c2958e03\\u0026gt;) t)\\n command-line()\\n normal-top-level()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnyone could help me fix this? I just want an error free.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwleyk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cuhabaho\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwleyk/set_debugonerror_to_t_then_startup_with_undotree/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwleyk/set_debugonerror_to_t_then_startup_with_undotree/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559628930.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Unfortunately, this is not a just a statement about the longevity of Emacs, it's an actual problem I'm having: when I try to exit Emacs (either by C -x-C-c or closing the window), I get this error message in the minibuffer: \\n\\n\\nWrong type argument: number-or-marker-p, (+ -8) \\n\\n\\nI have to force quit it to get out. When I start Emacs with -q, this doesn't happen, so I'm getting ready to go through my whole init file, but I was hoping someone else might have encountered this and could save me some time. Thanks!\", \"author_fullname\": \"t2_gu9ty\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs won't quit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwjenz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559643882.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnfortunately, this is not a just a statement about the longevity of Emacs, it\\u0026#39;s an actual problem I\\u0026#39;m having: when I try to exit Emacs (either by C -x-C-c or closing the window), I get this error message in the minibuffer: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWrong type argument: number-or-marker-p, (+ -8) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have to force quit it to get out. When I start Emacs with -q, this doesn\\u0026#39;t happen, so I\\u0026#39;m getting ready to go through my whole init file, but I was hoping someone else might have encountered this and could save me some time. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwjenz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"viscountslim\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559615082.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello All,\\n\\nI have a single org file with lots of entries. Each entry has a few tags. I would like to view full entries for a specific a tag.\\n\\nI tried org-occur: it seem to highlight matching tags but keeps all entries in view\\n\\nI came across this old thread: [https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines](https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines) \\n\\nBefore trying this I wanted to see if there is something already baked in.\", \"author_fullname\": \"t2_62u3sb0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-mode: Narrow org buffer to matching tag entries such that full entry is in view\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwjdry\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559643739.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello All,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a single org file with lots of entries. Each entry has a few tags. I would like to view full entries for a specific a tag.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried org-occur: it seem to highlight matching tags but keeps all entries in view\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI came across this old thread: \\u003Ca href=\\\"https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines\\\"\\u003Ehttps://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore trying this I wanted to see if there is something already baked in.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwjdry\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"manojm321\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwjdry/orgmode_narrow_org_buffer_to_matching_tag_entries/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwjdry/orgmode_narrow_org_buffer_to_matching_tag_entries/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559614939.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My use case is this, I usually have emacs split into three vertical frames (left, center, and right) and I prefer editing in the middle buffer while using the right for reference and the left for compilation, testing, etc. Is there a way to make it so that when I open a buffer (or switch to a buffer) in the middle frame and it is open in the right, it swaps the middle and right buffers? This would be very nice for me so that I don't have to go back to the right buffer to change it myself. Is there a package for this or a simple script to make it work?\", \"author_fullname\": \"t2_apgh2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to swap if buffer is open in other frame, swap frame buffers instead of having two frames with the same buffer.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwdztj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559614819.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy use case is this, I usually have emacs split into three vertical frames (left, center, and right) and I prefer editing in the middle buffer while using the right for reference and the left for compilation, testing, etc. Is there a way to make it so that when I open a buffer (or switch to a buffer) in the middle frame and it is open in the right, it swaps the middle and right buffers? This would be very nice for me so that I don\\u0026#39;t have to go back to the right buffer to change it myself. Is there a package for this or a simple script to make it work?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwdztj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Twosided13\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwdztj/is_there_a_way_to_swap_if_buffer_is_open_in_other/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwdztj/is_there_a_way_to_swap_if_buffer_is_open_in_other/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559586019.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have the following code in my `.emacs` file:\\n\\n````\\n(custom-set-faces\\n '(default ((t (:family \\\"Source Code Pro\\\" :foundry \\\"ADBO\\\" :slant normal :weight normal :height 160 :width normal)))))\\n(set-fontset-font \\\"fontset-default\\\"\\n\\t\\t 'arabic\\n\\t\\t (font-spec :family \\\"Kawkab Mono\\\" :size 14))\\n````\\n\\nSetting `Source Code Pro` is done successfully for English text. But `Kawkab Mono` doesn't get applied on Arabic text, I still need to put the point at the end of that section, press C-x C-e to execute it.\\n\\nStarting emacs with `--debug-init` doesn't show any error message.\", \"author_fullname\": \"t2_169z83\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doesn't Execute `set-fontset-font` code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwchvn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559607309.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have the following code in my \\u003Ccode\\u003E.emacs\\u003C/code\\u003E file:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(custom-set-faces\\n \\u0026#39;(default ((t (:family \\u0026quot;Source Code Pro\\u0026quot; :foundry \\u0026quot;ADBO\\u0026quot; :slant normal :weight normal :height 160 :width normal)))))\\n(set-fontset-font \\u0026quot;fontset-default\\u0026quot;\\n \\u0026#39;arabic\\n (font-spec :family \\u0026quot;Kawkab Mono\\u0026quot; :size 14))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESetting \\u003Ccode\\u003ESource Code Pro\\u003C/code\\u003E is done successfully for English text. But \\u003Ccode\\u003EKawkab Mono\\u003C/code\\u003E doesn\\u0026#39;t get applied on Arabic text, I still need to put the point at the end of that section, press C-x C-e to execute it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStarting emacs with \\u003Ccode\\u003E--debug-init\\u003C/code\\u003E doesn\\u0026#39;t show any error message.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwchvn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tareefdev\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwchvn/emacs_doesnt_execute_setfontsetfont_code/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwchvn/emacs_doesnt_execute_setfontsetfont_code/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559578509.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[https://github.com/abrochard/emacs-todoist](https://github.com/abrochard/emacs-todoist)\\n\\n\\u0026#x200B;\\n\\nI'm a big fan of [todoist.com](https://todoist.com) and it's so convenient to be able to just create a new task from a binding, or pull out the task list in an org-mode buffer.\", \"author_fullname\": \"t2_10q1g7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"emacs-todoist: interact with todoist.com for task management\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwc9lr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559606158.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/abrochard/emacs-todoist\\\"\\u003Ehttps://github.com/abrochard/emacs-todoist\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a big fan of \\u003Ca href=\\\"https://todoist.com\\\"\\u003Etodoist.com\\u003C/a\\u003E and it\\u0026#39;s so convenient to be able to just create a new task from a binding, or pull out the task list in an org-mode buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwc9lr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Metr0idFusi0n\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559577358.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[leaf.el](https://github.com/conao3/leaf.el)\\n\\n[feather.el](https://github.com/conao3/feather.el)\\n\\nBoth seem interesting, and I didn't see them in MELPA so I thought I'd give them exposure. :) Currently there's very few contributors, so maybe people here might be interested in contributing.\\n\\nI don't own these, just btw.\", \"author_fullname\": \"t2_md275\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Interesting Emacs packages: leaf.el and feather.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwbo9n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559603044.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/conao3/leaf.el\\\"\\u003Eleaf.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/conao3/feather.el\\\"\\u003Efeather.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth seem interesting, and I didn\\u0026#39;t see them in MELPA so I thought I\\u0026#39;d give them exposure. :) Currently there\\u0026#39;s very few contributors, so maybe people here might be interested in contributing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t own these, just btw.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbo9n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ProfessorSexyTime\", \"num_crossposts\": 0, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559574244.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_960gwtm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I wrote some elisp to insert pretty comments. Please code review! :)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwbmc3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559602783.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gist.github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbmc3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nsapte\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbmc3/i_wrote_some_elisp_to_insert_pretty_comments/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://gist.github.com/suvratapte/fc3f5bfbc9c9d649e3ef080ec66bf9d5\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559573983.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So when I try to change custom themes, the previous theme is overwriting the new theme in my init.el. When I change it, this is what I'm seeing in my custom-set-theme section.\\n\\n\\u0026#x200B;\\n\\n '(ansi-color-names-vector\\n [\\\"#1F1611\\\" \\\"#660000\\\" \\\"#144212\\\" \\\"#EFC232\\\" \\\"#5798AE\\\" \\\"#BE73FD\\\" \\\"#93C1BC\\\" \\\"#E6E1DC\\\"])\\n '(ansi-term-color-vector\\n [unspecified \\\"#1F1611\\\" \\\"#660000\\\" \\\"#144212\\\" \\\"#EFC232\\\" \\\"#5798AE\\\" \\\"#BE73FD\\\" \\\"#93C1BC\\\" \\\"#E6E1DC\\\"])\\n '(custom-safe-themes\\n (quote\\n (\\\"3e83abe75cebf5621e34ce1cbe6e12e4d80766bed0755033febed5794d0c69bf\\\" \\\"35b000995eb4a526249078664d91b056feab7e96e81b2f226a0d9cad7f0a416e\\\" \\\"4b19d61c560a93ef90767abe513c11f236caec2864617d718aa366618133704c\\\" default)))\\n '(fci-rule-character-color \\\"#452E2E\\\")\\n '(fci-rule-color \\\"#452E2E\\\")\\n\\n\\u0026#x200B;\\n\\nDeleting this doesn't do anything, it just adds it in next time.\\n\\nHere are some screenshots to clarify what it is I'm seeing.\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[https://i.redd.it/kr94yn9hm5231.png](https://i.redd.it/kr94yn9hm5231.png)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[https://i.redd.it/84g8yxfkm5231.png](https://i.redd.it/84g8yxfkm5231.png)\\n\\nThe custom theme is supposed to look like [this](https://peach-melpa.org/themes/birds-of-paradise-plus-theme). Uninstalling the autumn-light theme doesn't help, either.\\n\\nEDIT: Color v custom\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/anogyn56vq231.gif\", \"author_fullname\": \"t2_14xlbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I'm getting a strange color theme bug in 26.2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"anogyn56vq231\": {\"status\": \"valid\", \"e\": \"AnimatedImage\", \"s\": {\"y\": 534, \"gif\": \"https://i.redd.it/anogyn56vq231.gif\", \"mp4\": \"https://external-preview.redd.it/anogyn56vq231.gif?format=mp4\\u0026s=862f232535c436319569146e87e81869651931c2\", \"x\": 500}, \"m\": \"image/gif\", \"id\": \"anogyn56vq231\"}}, \"name\": \"t3_bwbizf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559830430.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559602269.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo when I try to change custom themes, the previous theme is overwriting the new theme in my init.el. When I change it, this is what I\\u0026#39;m seeing in my custom-set-theme section.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026#39;(ansi-color-names-vector\\n[\\u0026quot;#1F1611\\u0026quot; \\u0026quot;#660000\\u0026quot; \\u0026quot;#144212\\u0026quot; \\u0026quot;#EFC232\\u0026quot; \\u0026quot;#5798AE\\u0026quot; \\u0026quot;#BE73FD\\u0026quot; \\u0026quot;#93C1BC\\u0026quot; \\u0026quot;#E6E1DC\\u0026quot;])\\n\\u0026#39;(ansi-term-color-vector\\n[unspecified \\u0026quot;#1F1611\\u0026quot; \\u0026quot;#660000\\u0026quot; \\u0026quot;#144212\\u0026quot; \\u0026quot;#EFC232\\u0026quot; \\u0026quot;#5798AE\\u0026quot; \\u0026quot;#BE73FD\\u0026quot; \\u0026quot;#93C1BC\\u0026quot; \\u0026quot;#E6E1DC\\u0026quot;])\\n\\u0026#39;(custom-safe-themes\\n(quote\\n(\\u0026quot;3e83abe75cebf5621e34ce1cbe6e12e4d80766bed0755033febed5794d0c69bf\\u0026quot; \\u0026quot;35b000995eb4a526249078664d91b056feab7e96e81b2f226a0d9cad7f0a416e\\u0026quot; \\u0026quot;4b19d61c560a93ef90767abe513c11f236caec2864617d718aa366618133704c\\u0026quot; default)))\\n\\u0026#39;(fci-rule-character-color \\u0026quot;#452E2E\\u0026quot;)\\n\\u0026#39;(fci-rule-color \\u0026quot;#452E2E\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeleting this doesn\\u0026#39;t do anything, it just adds it in next time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are some screenshots to clarify what it is I\\u0026#39;m seeing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/kr94yn9hm5231.png\\\"\\u003Ehttps://i.redd.it/kr94yn9hm5231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/84g8yxfkm5231.png\\\"\\u003Ehttps://i.redd.it/84g8yxfkm5231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe custom theme is supposed to look like \\u003Ca href=\\\"https://peach-melpa.org/themes/birds-of-paradise-plus-theme\\\"\\u003Ethis\\u003C/a\\u003E. Uninstalling the autumn-light theme doesn\\u0026#39;t help, either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Color v custom\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/anogyn56vq231.gif\\\"\\u003Ehttps://i.redd.it/anogyn56vq231.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbizf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_wade\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559573469.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here's the story:\\n\\nOnce upon a time, I wanted to convert some videos into mp3 files. But why download some GUI program off the internet or write a script when you can open up Emacs, right?\\n\\nSo after messing around with some Elisp code for running ffmpeg as a subprocess, I stumbled on Eshell! Not only does it work amazingly with Evil (it's like a regular buffer and bash had a baby), but you can throw in all the other Emacs favourites like Helm for getting file paths, and Company for some auto-complete.\\n\\nHere are some (Evil) manoeuvres.\\n\\n`:eshell`\\n\\n`cd C-x C-f` choose a file `C-c i` insert file path.\\n\\nWant to copy past your cool Eshell script to Reddit?\\n\\n`ESC` to go back to normal mode (or `jk` if you're fancy) `yy` yank the line.\\n\\n`\\u003E\\u003E for f in *.mkv {ffmpeg -i $f -aq 3 output/$(file-name-sans-extension f).mp3}`\\n\\n`i` go back to insert mode, run your mini-script. Horrah! All files converted.\\n\\nWhat's `$(file-name-sans-extension f)` you ask? That's Elisp code. That's right, you can just throw in the entire power of Emacs Lisp into your one line script.\\n\\nThere is just one little issue I ran into and that's when typing $(file-name...) Company bugged out and wouldn't complete the function name so I had to type the whole thing out (the horror!).\\n\\n\\u003Cedit\\u003E Found some extra links, since the documentation for Eshell inside emacs is a bit sparse.\\n\\nhttps://www.emacswiki.org/emacs/CategoryEshell\\n\\nhttps://masteringemacs.org/article/complete-guide-mastering-eshell\", \"author_fullname\": \"t2_c4blft1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Did you know that the Eshell is awesome?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9yo7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 91, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 91, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559574338.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559592800.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s the story:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce upon a time, I wanted to convert some videos into mp3 files. But why download some GUI program off the internet or write a script when you can open up Emacs, right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo after messing around with some Elisp code for running ffmpeg as a subprocess, I stumbled on Eshell! Not only does it work amazingly with Evil (it\\u0026#39;s like a regular buffer and bash had a baby), but you can throw in all the other Emacs favourites like Helm for getting file paths, and Company for some auto-complete.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are some (Evil) manoeuvres.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:eshell\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ecd C-x C-f\\u003C/code\\u003E choose a file \\u003Ccode\\u003EC-c i\\u003C/code\\u003E insert file path.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWant to copy past your cool Eshell script to Reddit?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EESC\\u003C/code\\u003E to go back to normal mode (or \\u003Ccode\\u003Ejk\\u003C/code\\u003E if you\\u0026#39;re fancy) \\u003Ccode\\u003Eyy\\u003C/code\\u003E yank the line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026gt;\\u0026gt; for f in *.mkv {ffmpeg -i $f -aq 3 output/$(file-name-sans-extension f).mp3}\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ei\\u003C/code\\u003E go back to insert mode, run your mini-script. Horrah! All files converted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s \\u003Ccode\\u003E$(file-name-sans-extension f)\\u003C/code\\u003E you ask? That\\u0026#39;s Elisp code. That\\u0026#39;s right, you can just throw in the entire power of Emacs Lisp into your one line script.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is just one little issue I ran into and that\\u0026#39;s when typing $(file-name...) Company bugged out and wouldn\\u0026#39;t complete the function name so I had to type the whole thing out (the horror!).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;edit\\u0026gt; Found some extra links, since the documentation for Eshell inside emacs is a bit sparse.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/CategoryEshell\\\"\\u003Ehttps://www.emacswiki.org/emacs/CategoryEshell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://masteringemacs.org/article/complete-guide-mastering-eshell\\\"\\u003Ehttps://masteringemacs.org/article/complete-guide-mastering-eshell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9yo7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"202700000000\", \"num_crossposts\": 0, \"num_comments\": 25, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559564000.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_64sbo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9azu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559588032.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9azu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rainymood_XI\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/Rainymood/dotemacs\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559559232.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nAs above, I'm wanting to access OneDrive from my emacs init as I'm trying to use org-mode/agenda, and want to be able to use OneDrive to sync between locations, however emacs always says can't find the file regardless if I use:\\n\\n\\\\~/OneDrive...\\n\\n%userprofile%/OneDrive\\n\\n%systemdrive%%homepath%/OneDrive\\n\\nFrom here:\\n\\n[https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt](https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt)\\n\\n\\u0026#x200B;\\n\\nBasically want this:\\n\\nsetq org-agenda-files (list \\\"\\\\~/OneDrive/org/general.org\\\")\\n\\n\\u0026#x200B;\\n\\nSince I have different user names at work/home I can't use a full path, any ideas? Most of the comments about home on windows seem to be with moving the .emacs.d directory, which I'm fine keeping that where it is.\", \"author_fullname\": \"t2_5f5ma\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Accessing OneDrive from emacs init?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw8ejb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559580110.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs above, I\\u0026#39;m wanting to access OneDrive from my emacs init as I\\u0026#39;m trying to use org-mode/agenda, and want to be able to use OneDrive to sync between locations, however emacs always says can\\u0026#39;t find the file regardless if I use:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E~/OneDrive...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E%userprofile%/OneDrive\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E%systemdrive%%homepath%/OneDrive\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt\\\"\\u003Ehttps://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically want this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esetq org-agenda-files (list \\u0026quot;~/OneDrive/org/general.org\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince I have different user names at work/home I can\\u0026#39;t use a full path, any ideas? Most of the comments about home on windows seem to be with moving the .emacs.d directory, which I\\u0026#39;m fine keeping that where it is.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw8ejb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GeorgeStorm\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw8ejb/accessing_onedrive_from_emacs_init/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw8ejb/accessing_onedrive_from_emacs_init/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559551310.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi there,\\n\\nI couldn't find anything about this online (well, nothing I could really get a direct answer from). If I copy a table on an HTML page, is it possible to paste it into an org document as an org table? I tried with org-protocol, but it doesn't set up the |--| separators at all and it just ends up being a mess. Maybe I'm missing something?\\n\\nThanks for any help!\", \"author_fullname\": \"t2_dmarn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Copy HTML Table/Paste Org Mode Table?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw7qdy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559573914.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi there,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI couldn\\u0026#39;t find anything about this online (well, nothing I could really get a direct answer from). If I copy a table on an HTML page, is it possible to paste it into an org document as an org table? I tried with org-protocol, but it doesn\\u0026#39;t set up the |--| separators at all and it just ends up being a mess. Maybe I\\u0026#39;m missing something?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any help!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw7qdy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TyrionBean\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw7qdy/copy_html_tablepaste_org_mode_table/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw7qdy/copy_html_tablepaste_org_mode_table/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559545114.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When I export to HTML, the source blocks have labels which show what language they are, but they only appear on hover. Can they easily be set to always show?\", \"author_fullname\": \"t2_rrtp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Export src-block to HTML with labels always on\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw7ps7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559573777.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I export to HTML, the source blocks have labels which show what language they are, but they only appear on hover. Can they easily be set to always show?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw7ps7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nagora\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw7ps7/export_srcblock_to_html_with_labels_always_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw7ps7/export_srcblock_to_html_with_labels_always_on/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559544977.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I can't make this function work...\\n\\n (defun codemascot/phpcbf-standard-toggle ()\\n \\\"Toggle PHPCS default standard between WordPress-VIP and PSR2\\\"\\n (interactive)\\n (if (= phpcbf-standard \\\"PSR2\\\")\\n ((setq phpcbf-standard \\\"WordPress-VIP\\\")\\n (message \\\"WordPress-VIP standard activated\\\"))\\n ((setq phpcbf-standard \\\"PSR2\\\")\\n (message \\\"PSR2 standard activated\\\"))))\\n\\nWhat is wrong with it that Emacs 26.2(Spacemacs) is giving me `helm-M-x: Wrong type argument: number-or-marker-p` error?\\n\\n\\n\\nUpdate, Working Snippet :) :\\n\\n (defun codemascot/phpcbf-standard-toggle ()\\n \\\"Toggle PHPCS default standard between WordPress-VIP and PSR2\\\"\\n (interactive)\\n (if (string= phpcbf-standard \\\"PSR2\\\")\\n (progn\\n (setq phpcbf-standard \\\"WordPress-VIP\\\")\\n (message \\\"WordPress-VIP CS standard has set\\\"))\\n (progn\\n (setq phpcbf-standard \\\"PSR2\\\")\\n (message \\\"PSR2 CS standard has set\\\"))))\\n\\nActually I work with *WordPress* and *Laravel* mostly. So I need to switch between these WordPress-VIP and PSR2 coding standard frequently. Anyway, here I'm sharing my updated function code which is working for me pretty well. Hope this help you too.\", \"author_fullname\": \"t2_38mg40l9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Toggle a variable based on condition\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw6zcv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559630313.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559567789.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t make this function work...\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun codemascot/phpcbf-standard-toggle ()\\n \\u0026quot;Toggle PHPCS default standard between WordPress-VIP and PSR2\\u0026quot;\\n (interactive)\\n (if (= phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n ((setq phpcbf-standard \\u0026quot;WordPress-VIP\\u0026quot;)\\n (message \\u0026quot;WordPress-VIP standard activated\\u0026quot;))\\n ((setq phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (message \\u0026quot;PSR2 standard activated\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhat is wrong with it that Emacs 26.2(Spacemacs) is giving me \\u003Ccode\\u003Ehelm-M-x: Wrong type argument: number-or-marker-p\\u003C/code\\u003E error?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate, Working Snippet :) :\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun codemascot/phpcbf-standard-toggle ()\\n \\u0026quot;Toggle PHPCS default standard between WordPress-VIP and PSR2\\u0026quot;\\n (interactive)\\n (if (string= phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (progn\\n (setq phpcbf-standard \\u0026quot;WordPress-VIP\\u0026quot;)\\n (message \\u0026quot;WordPress-VIP CS standard has set\\u0026quot;))\\n (progn\\n (setq phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (message \\u0026quot;PSR2 CS standard has set\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EActually I work with \\u003Cem\\u003EWordPress\\u003C/em\\u003E and \\u003Cem\\u003ELaravel\\u003C/em\\u003E mostly. So I need to switch between these WordPress-VIP and PSR2 coding standard frequently. Anyway, here I\\u0026#39;m sharing my updated function code which is working for me pretty well. Hope this help you too.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw6zcv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"codemascot\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw6zcv/toggle_a_variable_based_on_condition/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw6zcv/toggle_a_variable_based_on_condition/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559538989.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"`C-c C-s` and `C-c C-d` don't add hours and time in the timestamp.\\n\\nI thought prefixing them with `C-u` gives you minutes and seconds, but that option seems to be for removing deadlines.\\n\\nDo hours and minutes have to be added manually?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to add hours and minutes to orgmode deadlines and schedules?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw5zw6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559560806.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003EC-c C-s\\u003C/code\\u003E and \\u003Ccode\\u003EC-c C-d\\u003C/code\\u003E don\\u0026#39;t add hours and time in the timestamp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought prefixing them with \\u003Ccode\\u003EC-u\\u003C/code\\u003E gives you minutes and seconds, but that option seems to be for removing deadlines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo hours and minutes have to be added manually?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw5zw6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw5zw6/how_to_add_hours_and_minutes_to_orgmode_deadlines/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw5zw6/how_to_add_hours_and_minutes_to_orgmode_deadlines/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559532006.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I love [Vimcasts](http://vimcasts.org/) for learning Vim. I was wondering if there is something equivalent for Emacs: screencasts showcasing the editor. Added bonus for tutorials that include Emacs Lisp tips/tricks.\", \"author_fullname\": \"t2_3u1io9ko\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Screencasts showcasing Emacs tips/tricks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw4ix7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 38, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 38, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559551482.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love \\u003Ca href=\\\"http://vimcasts.org/\\\"\\u003EVimcasts\\u003C/a\\u003E for learning Vim. I was wondering if there is something equivalent for Emacs: screencasts showcasing the editor. Added bonus for tutorials that include Emacs Lisp tips/tricks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw4ix7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"scbm-reddit\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw4ix7/screencasts_showcasing_emacs_tipstricks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw4ix7/screencasts_showcasing_emacs_tipstricks/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559522682.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi all, I'm still new to Emacs and I'm having some issues with company-mode, when showing suggestions they often show up misaligned, like in this image: [https://imgur.com/a/GSqfBLn](https://imgur.com/a/GSqfBLn) , I don't think this is caused by company, as it sometimes also happens on the lines (a particular line will show up some pixels to the left), my config is here: [https://github.com/martini97/.emacs.d](https://github.com/martini97/.emacs.d), I've already tried to switch themes, which didn't help, and there's nothing being logged on messages. Has anyone had similar issues, or know how to fix this?\", \"author_fullname\": \"t2_9eav0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help identifying what's causing this bug on company\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvy2sp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559515571.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I\\u0026#39;m still new to Emacs and I\\u0026#39;m having some issues with company-mode, when showing suggestions they often show up misaligned, like in this image: \\u003Ca href=\\\"https://imgur.com/a/GSqfBLn\\\"\\u003Ehttps://imgur.com/a/GSqfBLn\\u003C/a\\u003E , I don\\u0026#39;t think this is caused by company, as it sometimes also happens on the lines (a particular line will show up some pixels to the left), my config is here: \\u003Ca href=\\\"https://github.com/martini97/.emacs.d\\\"\\u003Ehttps://github.com/martini97/.emacs.d\\u003C/a\\u003E, I\\u0026#39;ve already tried to switch themes, which didn\\u0026#39;t help, and there\\u0026#39;s nothing being logged on messages. Has anyone had similar issues, or know how to fix this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvy2sp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_martini97\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvy2sp/help_identifying_whats_causing_this_bug_on_company/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvy2sp/help_identifying_whats_causing_this_bug_on_company/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559486771.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Before coming to EXWM I was a power-user of KDE. I used a 3x3 grid for my workspace and so could position all applications within a screen up, down, right, or left of me. I had shortcuts established to quickly move between desktops and to send things to-and-from them. Then I found exwm. Aside: I am almost always connected to two or three monitors, whether using exwm or KDE. It works nicely with both WM. \\n\\n\\u0026#x200B;\\n\\nI use a single-workspace setup with exwm and the two primary benefits were that, instead of the geometric model from my KDE, thing were all random-access. Second benefit was that I could use emacs keys everywhere. Those are sizable benefits that served me well up until now. Now I am on a project using Android Studio (IntelliJ), and even after I figured out how to get it to start correctly on exwm (that's another story) it is still very hard to manage there; in particular, it gets hard when I launch an AVD (Android Virtual Device), which spawns a new EXWM window showing the device (e.g. phone), another floating one for the phone interactions/controls (which floats as a narrow strip in the middle of the screen over the top of whatever is there), and still leaves a couple of old ones with the actual IntelliJ window and AVD manager screen. The trouble here is two-fold: first, there are a lot of windows (emacs: Frames) that really need to be all seen at once because they interact with eachother, and more aggravataingly, the new exwm frames for the device and its controls hijack my keys and make it very hard to maneuver my other exwm around them (e.g. switching buffers gets tough). \\n\\n\\u0026#x200B;\\n\\nFor now I'm defeatedly switching back to KDE for this project; does anyone have an exwm workflow with IntelliJ or Android Studio that would make this more do-able?\", \"author_fullname\": \"t2_gmmqi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In search of an exwm workflow for Android Studio\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvxehe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559511215.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBefore coming to EXWM I was a power-user of KDE. I used a 3x3 grid for my workspace and so could position all applications within a screen up, down, right, or left of me. I had shortcuts established to quickly move between desktops and to send things to-and-from them. Then I found exwm. Aside: I am almost always connected to two or three monitors, whether using exwm or KDE. It works nicely with both WM. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use a single-workspace setup with exwm and the two primary benefits were that, instead of the geometric model from my KDE, thing were all random-access. Second benefit was that I could use emacs keys everywhere. Those are sizable benefits that served me well up until now. Now I am on a project using Android Studio (IntelliJ), and even after I figured out how to get it to start correctly on exwm (that\\u0026#39;s another story) it is still very hard to manage there; in particular, it gets hard when I launch an AVD (Android Virtual Device), which spawns a new EXWM window showing the device (e.g. phone), another floating one for the phone interactions/controls (which floats as a narrow strip in the middle of the screen over the top of whatever is there), and still leaves a couple of old ones with the actual IntelliJ window and AVD manager screen. The trouble here is two-fold: first, there are a lot of windows (emacs: Frames) that really need to be all seen at once because they interact with eachother, and more aggravataingly, the new exwm frames for the device and its controls hijack my keys and make it very hard to maneuver my other exwm around them (e.g. switching buffers gets tough). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor now I\\u0026#39;m defeatedly switching back to KDE for this project; does anyone have an exwm workflow with IntelliJ or Android Studio that would make this more do-able?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvxehe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WorldsEndless\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvxehe/in_search_of_an_exwm_workflow_for_android_studio/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvxehe/in_search_of_an_exwm_workflow_for_android_studio/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559482415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here's the latest in my Year of Emacs series.\\n\\nI'm aiming for weekly updates to this (excluding weeks where I publish the current version of my emacs.org dotfile).\\n\\nNext week, I want to learn something new, so I'll be doing dired and either dired-x or dired-aux. I'm open to community suggestions for which of those two supplemental packages are recommended (I'm leaning toward dired-x).\\n\\n\\u0026#x200B;\\n\\n[https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/](https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/)\", \"author_fullname\": \"t2_jqpn4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Writing Academic Papers in Org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvweh8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 65, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 65, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559503503.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s the latest in my Year of Emacs series.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m aiming for weekly updates to this (excluding weeks where I publish the current version of my emacs.org dotfile).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext week, I want to learn something new, so I\\u0026#39;ll be doing dired and either dired-x or dired-aux. I\\u0026#39;m open to community suggestions for which of those two supplemental packages are recommended (I\\u0026#39;m leaning toward dired-x).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/\\\"\\u003Ehttps://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvweh8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doulos05\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559474703.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"For some reason when i use \\\"find\\\" from emacs(in particular in dired to search files) it doesn't show cyrillic letters properly and i can't open files that it finds.\\n\\nIn general cyrillic letters work fine, and from regular terminal they work in \\\"find\\\"\\n\\n[https://imgur.com/a/jIY8ba7](https://imgur.com/a/jIY8ba7)\\n\\nWhat can I do about it?\", \"author_fullname\": \"t2_9riom\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cyrillic letters don't work with \\\"find\\\" in emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvuv9q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559488341.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor some reason when i use \\u0026quot;find\\u0026quot; from emacs(in particular in dired to search files) it doesn\\u0026#39;t show cyrillic letters properly and i can\\u0026#39;t open files that it finds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn general cyrillic letters work fine, and from regular terminal they work in \\u0026quot;find\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/jIY8ba7\\\"\\u003Ehttps://imgur.com/a/jIY8ba7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat can I do about it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvuv9q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GrinDeg\", \"num_crossposts\": 0, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvuv9q/cyrillic_letters_dont_work_with_find_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvuv9q/cyrillic_letters_dont_work_with_find_in_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559459541.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"hi all,\\n\\ni have a trivial function (code below) that tries to compile a c/c++ buffer as follows:\\n\\n ;;\\n ;; find major mode of a buffer. if no name is specified, this returns\\n ;; major mode of current buffer\\n ;;\\n (defun utils/buffer-major-mode (\\u0026optional buffer-or-name)\\n \\\"Returns the major mode associated with a buffer.\\n If buffer-or-name is nil return current buffer's mode.\\\"\\n (interactive)\\n (buffer-local-value 'major-mode\\n (if buffer-or-name (get-buffer buffer-or-name) (current-buffer))))\\n\\n ;; \\n ;; this function is called to quickly compile single-file c/c++\\n ;; programs.\\n ;;\\n ;; it produces final executable in 'obj' directory of the buffer, and\\n ;; christens it with 'file-name' sans file extension. thus a source\\n ;; file called '\\u003Csome-path\\u003E/foo.cpp' will produce an executable called\\n ;; '\\u003Csome-path\\u003E/obj/foo'\\n ;;\\n (defun cc-quick-compile ()\\n (interactive)\\n \\n ;;\\n ;; how we build c/c++ sources are almost fixed\\n ;; -fdiagnostics-color=never ==\\u003E no ansii colorized output\\n ;;\\n (defconst qc-cmd-prefix:c \\\"gcc -fdiagnostics-color=never -std=c99 -g -O2 -Wall -o obj/\\\")\\n (defconst qc-cmd-prefix:cpp \\\"g++ -fdiagnostics-color=never -std=c++11 -g -O2 -Wall -o obj/\\\")\\n \\n ;; first setup the appropriate compilation command based on buffer\\n ;; major-mode\\n (set (make-local-variable 'qc-cmd-prefix:cc)\\n (if (string= (utils/buffer-major-mode) \\\"c-mode\\\")\\n qc-cmd-prefix:c\\n qc-cmd-prefix:cpp))\\n \\n ;;\\n ;; now we can setup the qc-cc-cmd to produce a final executable as\\n ;; described above...\\n ;;\\n (set (make-local-variable 'qc-cmd-str)\\n (let ((file (file-name-nondirectory buffer-file-name)))\\n (concat qc-cmd-prefix:cc (file-name-sans-extension file) \\\" \\\" file)))\\n \\n (compile qc-cmd-str))\\n \\n ;;\\n ;; this is the top-level function to compile c/c++ sources.\\n ;;\\n ;; when the local variable 'compile-command' is set to default we\\n ;; create a quick-compile-command, and use that. however, when it is\\n ;; set to non-default value, we use that.\\n ;;\\n (defun cc-quick-or-custom-compile ()\\n (interactive)\\n \\n (if (string= \\\"make -k \\\" compile-command)\\n (progn\\n (cc-quick-compile)\\n (setq compile-command \\\"make -k \\\"))\\n (compile compile-command)))\\n\\nfinally, 'cc-quick-or-custom-compile' is bound as follows\\n \\n (global-set-key '[C-return] 'cc-quick-or-custom-compile)\\n\\nthe above thing works, but given my elisp na\\u00efvet\\u00e9, i am *sure* it can be made much better. \\n\\ni was wondering, if you would take some time, and help me improve the above functions. i *suspect* creating a Makefile with appropriate rules might play nicer with emacs, but am not too keen on that at the moment.\\n\\n--\\nthank you kindly !\", \"author_fullname\": \"t2_pb2x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"help with trivial emacs lisp function\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvucsw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559454959.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559483467.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehi all,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei have a trivial function (code below) that tries to compile a c/c++ buffer as follows:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;;\\n;; find major mode of a buffer. if no name is specified, this returns\\n;; major mode of current buffer\\n;;\\n(defun utils/buffer-major-mode (\\u0026amp;optional buffer-or-name)\\n \\u0026quot;Returns the major mode associated with a buffer.\\nIf buffer-or-name is nil return current buffer\\u0026#39;s mode.\\u0026quot;\\n (interactive)\\n (buffer-local-value \\u0026#39;major-mode\\n (if buffer-or-name (get-buffer buffer-or-name) (current-buffer))))\\n\\n;; \\n;; this function is called to quickly compile single-file c/c++\\n;; programs.\\n;;\\n;; it produces final executable in \\u0026#39;obj\\u0026#39; directory of the buffer, and\\n;; christens it with \\u0026#39;file-name\\u0026#39; sans file extension. thus a source\\n;; file called \\u0026#39;\\u0026lt;some-path\\u0026gt;/foo.cpp\\u0026#39; will produce an executable called\\n;; \\u0026#39;\\u0026lt;some-path\\u0026gt;/obj/foo\\u0026#39;\\n;;\\n(defun cc-quick-compile ()\\n (interactive)\\n\\n ;;\\n ;; how we build c/c++ sources are almost fixed\\n ;; -fdiagnostics-color=never ==\\u0026gt; no ansii colorized output\\n ;;\\n (defconst qc-cmd-prefix:c \\u0026quot;gcc -fdiagnostics-color=never -std=c99 -g -O2 -Wall -o obj/\\u0026quot;)\\n (defconst qc-cmd-prefix:cpp \\u0026quot;g++ -fdiagnostics-color=never -std=c++11 -g -O2 -Wall -o obj/\\u0026quot;)\\n\\n ;; first setup the appropriate compilation command based on buffer\\n ;; major-mode\\n (set (make-local-variable \\u0026#39;qc-cmd-prefix:cc)\\n (if (string= (utils/buffer-major-mode) \\u0026quot;c-mode\\u0026quot;)\\n qc-cmd-prefix:c\\n qc-cmd-prefix:cpp))\\n\\n ;;\\n ;; now we can setup the qc-cc-cmd to produce a final executable as\\n ;; described above...\\n ;;\\n (set (make-local-variable \\u0026#39;qc-cmd-str)\\n (let ((file (file-name-nondirectory buffer-file-name)))\\n (concat qc-cmd-prefix:cc (file-name-sans-extension file) \\u0026quot; \\u0026quot; file)))\\n\\n (compile qc-cmd-str))\\n\\n;;\\n;; this is the top-level function to compile c/c++ sources.\\n;;\\n;; when the local variable \\u0026#39;compile-command\\u0026#39; is set to default we\\n;; create a quick-compile-command, and use that. however, when it is\\n;; set to non-default value, we use that.\\n;;\\n(defun cc-quick-or-custom-compile ()\\n (interactive)\\n\\n (if (string= \\u0026quot;make -k \\u0026quot; compile-command)\\n (progn\\n (cc-quick-compile)\\n (setq compile-command \\u0026quot;make -k \\u0026quot;))\\n (compile compile-command)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Efinally, \\u0026#39;cc-quick-or-custom-compile\\u0026#39; is bound as follows\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(global-set-key \\u0026#39;[C-return] \\u0026#39;cc-quick-or-custom-compile)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ethe above thing works, but given my elisp na\\u00efvet\\u00e9, i am \\u003Cem\\u003Esure\\u003C/em\\u003E it can be made much better. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei was wondering, if you would take some time, and help me improve the above functions. i \\u003Cem\\u003Esuspect\\u003C/em\\u003E creating a Makefile with appropriate rules might play nicer with emacs, but am not too keen on that at the moment.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003Ethank you kindly !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvucsw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"daddyc00l\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559454667.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When running this without Org-Babel I don't have a problem, but, fwiw, I did just recently get my Python 3 paths working properly so there could be an issue somewhere in there.\\n\\n\\u0026#x200B;\\n\\nWithout further ado, here's the source file: [http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1\\\\_practice.py](http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py), and the linter: [http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112\\\\_s17\\\\_linter.py](http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py).\\n\\n\\u0026#x200B;\\n\\nWhat I did was wrap the entire wk1\\\\_practice.py in a `#+BEGIN_SRC python ... #+END_SRC` block, then when running C-c C-c (org-babel-execute-src-block) the following error appeared:\\n\\n`Traceback (most recent call last):`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 333, in \\u003Cmodule\\u003E`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 331, in main`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 327, in main`\\n\\n`File \\\"/Users/Joe/org/cs112_s17_linter.py\\\", line 215, in lint`\\n\\n`_Linter(code=code, filename=filename, bannedTokens=bannedTokens).lint()`\\n\\n`File \\\"/Users/Joe/org/cs112_s17_linter.py\\\", line 148, in lint`\\n\\n`with open(self.filename, 'rt') as f:`\\n\\n`FileNotFoundError: [Errno 2] No such file or directory: '\\u003Cstdin\\u003E'`\\n\\n\\u0026#x200B;\\n\\nBecause I can run wk1\\\\_practice.py error free in run-python, and the bash shell outside of Emacs, I think it's Org-Babel that I'm misusing and that it has to do with the call to the linter. It's probably worth mentioning that Org-Babel seemingly works fine and as expected as long as I don't make this call to the linter.\\n\\n\\u0026#x200B;\\n\\n(sorry if it's a dumb question or appears ill researched, I spent about 1.5 hours trying to figure this out with various queries and expirements, but turned up no leads).\", \"author_fullname\": \"t2_3th1enuk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help Deciphering Error w/ Org-Babel, Python and a Linter\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvsj5o\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559470017.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen running this without Org-Babel I don\\u0026#39;t have a problem, but, fwiw, I did just recently get my Python 3 paths working properly so there could be an issue somewhere in there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithout further ado, here\\u0026#39;s the source file: \\u003Ca href=\\\"http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py\\\"\\u003Ehttp://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py\\u003C/a\\u003E, and the linter: \\u003Ca href=\\\"http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py\\\"\\u003Ehttp://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat I did was wrap the entire wk1_practice.py in a \\u003Ccode\\u003E#+BEGIN_SRC python ... #+END_SRC\\u003C/code\\u003E block, then when running C-c C-c (org-babel-execute-src-block) the following error appeared:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003ETraceback (most recent call last):\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 333, in \\u0026lt;module\\u0026gt;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 331, in main\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 327, in main\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;/Users/Joe/org/cs112_s17_linter.py\\u0026quot;, line 215, in lint\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E_Linter(code=code, filename=filename, bannedTokens=bannedTokens).lint()\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;/Users/Joe/org/cs112_s17_linter.py\\u0026quot;, line 148, in lint\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ewith open(self.filename, \\u0026#39;rt\\u0026#39;) as f:\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFileNotFoundError: [Errno 2] No such file or directory: \\u0026#39;\\u0026lt;stdin\\u0026gt;\\u0026#39;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause I can run wk1_practice.py error free in run-python, and the bash shell outside of Emacs, I think it\\u0026#39;s Org-Babel that I\\u0026#39;m misusing and that it has to do with the call to the linter. It\\u0026#39;s probably worth mentioning that Org-Babel seemingly works fine and as expected as long as I don\\u0026#39;t make this call to the linter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(sorry if it\\u0026#39;s a dumb question or appears ill researched, I spent about 1.5 hours trying to figure this out with various queries and expirements, but turned up no leads).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvsj5o\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"impendingLawsuit\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvsj5o/help_deciphering_error_w_orgbabel_python_and_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvsj5o/help_deciphering_error_w_orgbabel_python_and_a/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559441217.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Running a fresh Emacs session with `emacs -Q`, I evaluated the following:\\n\\n (setq org-agenda-files '(\\\"~/index.org\\\"))\\n (setq org-enforce-todo-dependencies t)\\n (setq org-agenda-dim-blocked-tasks 'invisible)\\n\\nwhere `~/index.org` simply contains:\\n\\n * Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO First subheading\\n ** TODO Second subheading\\n\\nWhen I call `(org-agenda nil \\\"t\\\")` to display the available TODOs, it correctly displays only \\\"First subheading.\\\" However, if I then export that buffer with `org-agenda-write`, then the resulting file contains both \\\"First subheading\\\" and \\\"Second subheading.\\\"\\n\\nWhat is going on here, and can it be fixed?\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvs6jo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559467712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERunning a fresh Emacs session with \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E, I evaluated the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files \\u0026#39;(\\u0026quot;~/index.org\\u0026quot;))\\n(setq org-enforce-todo-dependencies t)\\n(setq org-agenda-dim-blocked-tasks \\u0026#39;invisible)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E~/index.org\\u003C/code\\u003E simply contains:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO First subheading\\n** TODO Second subheading\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I call \\u003Ccode\\u003E(org-agenda nil \\u0026quot;t\\u0026quot;)\\u003C/code\\u003E to display the available TODOs, it correctly displays only \\u0026quot;First subheading.\\u0026quot; However, if I then export that buffer with \\u003Ccode\\u003Eorg-agenda-write\\u003C/code\\u003E, then the resulting file contains both \\u0026quot;First subheading\\u0026quot; and \\u0026quot;Second subheading.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is going on here, and can it be fixed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvs6jo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559438912.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have always wanted to use Emacs on my iPad without jailbreaking it. After almost giving up I stumbled onto a fairly new developer app called iSH - a Linux shell that runs a small version of Alpine Linux on an iOS device (iPad or iPhone) using an x86 emulator. Now, that in and of itself is really nice and opens up all kinds of new ways to use an iOS device. The icing on the cake, though, is that Emacs can then be installed from the command line using the Alpine Linux package manager, \\\"apk\\\".\\n\\niSH can't be found on the App Store, but fear not - it can be run using a developer tool called TestFlight, which *is* in the App Store. There's also a way to side load iSH directly onto an iOS device without TestFlight if you have access to a Mac with Xcode. \\n\\nInstalling iSH shell and Emacs using TestFlight:\\n\\n1. Install TestFlight from the [https://itunes.apple.com/us/app/testflight/id899247664?mt=8](https://itunes.apple.com/us/app/testflight/id899247664?mt=8) App Store.\\n2. Open a web browser on the iOS device and click here [https://testflight.apple.com/join/97i7KM8O](https://testflight.apple.com/join/97i7KM8O) to review/accept the terms and start testing iSH using TestFlight.\\n3. Click \\\"Install\\\" to install the iSH Shell application onto the iOS device.\\n4. You will now have the iSH app on your iOS device. Open this app to run the Alpine Linux shell. This command line environment has the normal complement of Linux commands (ls, cd, mkdir, touch, cat, etc.). iSH even has a dark mode. If you haven't already done so, pair up a real keyboard to your device and hold onto your socks for what's next.\\n5. Install Emacs with apk by simply entering the command \\\"apk add emacs\\\" in iSH. After emacs installs, you can then enter the command \\\"emacs\\\" from the command line to run emacs.\", \"author_fullname\": \"t2_4rrrx65\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs on an iPad without jailbreaking it - It can be done!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvrmsf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559464162.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have always wanted to use Emacs on my iPad without jailbreaking it. After almost giving up I stumbled onto a fairly new developer app called iSH - a Linux shell that runs a small version of Alpine Linux on an iOS device (iPad or iPhone) using an x86 emulator. Now, that in and of itself is really nice and opens up all kinds of new ways to use an iOS device. The icing on the cake, though, is that Emacs can then be installed from the command line using the Alpine Linux package manager, \\u0026quot;apk\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EiSH can\\u0026#39;t be found on the App Store, but fear not - it can be run using a developer tool called TestFlight, which \\u003Cem\\u003Eis\\u003C/em\\u003E in the App Store. There\\u0026#39;s also a way to side load iSH directly onto an iOS device without TestFlight if you have access to a Mac with Xcode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstalling iSH shell and Emacs using TestFlight:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EInstall TestFlight from the \\u003Ca href=\\\"https://itunes.apple.com/us/app/testflight/id899247664?mt=8\\\"\\u003Ehttps://itunes.apple.com/us/app/testflight/id899247664?mt=8\\u003C/a\\u003E App Store.\\u003C/li\\u003E\\n\\u003Cli\\u003EOpen a web browser on the iOS device and click here \\u003Ca href=\\\"https://testflight.apple.com/join/97i7KM8O\\\"\\u003Ehttps://testflight.apple.com/join/97i7KM8O\\u003C/a\\u003E to review/accept the terms and start testing iSH using TestFlight.\\u003C/li\\u003E\\n\\u003Cli\\u003EClick \\u0026quot;Install\\u0026quot; to install the iSH Shell application onto the iOS device.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou will now have the iSH app on your iOS device. Open this app to run the Alpine Linux shell. This command line environment has the normal complement of Linux commands (ls, cd, mkdir, touch, cat, etc.). iSH even has a dark mode. If you haven\\u0026#39;t already done so, pair up a real keyboard to your device and hold onto your socks for what\\u0026#39;s next.\\u003C/li\\u003E\\n\\u003Cli\\u003EInstall Emacs with apk by simply entering the command \\u0026quot;apk add emacs\\u0026quot; in iSH. After emacs installs, you can then enter the command \\u0026quot;emacs\\u0026quot; from the command line to run emacs.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvrmsf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Chilasta\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvrmsf/emacs_on_an_ipad_without_jailbreaking_it_it_can/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvrmsf/emacs_on_an_ipad_without_jailbreaking_it_it_can/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559435362.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi everyone!\\n\\n\\u0026#x200B;\\n\\nInspired by the great Juan Pedro Fisanotti and his wonderful [fisa-vim-config](https://github.com/fisadev/fisa-vim-config), I share my [Emacs](https://www.gnu.org/software/emacs/) config. This is my personal Emacs configuration, built according to my personal preferences, without any justification to think it's the best possible emacs configuration.\\n\\n\\u0026#x200B;\\n\\n[https://github.com/Abuelodelanada/pepe-emacs-config](https://github.com/Abuelodelanada/pepe-emacs-config)\\n\\n\\u0026#x200B;\\n\\nIt's mainly oriented to PHP software development, but many of its features are useful for other languages and editing tasks.\\n\\n\\u0026#x200B;\\n\\nHope you like it!\\n\\n\\u0026#x200B;\\n\\nJose\", \"author_fullname\": \"t2_1v9z01ve\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Pepe Emacs config\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvrbyc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559462253.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInspired by the great Juan Pedro Fisanotti and his wonderful \\u003Ca href=\\\"https://github.com/fisadev/fisa-vim-config\\\"\\u003Efisa-vim-config\\u003C/a\\u003E, I share my \\u003Ca href=\\\"https://www.gnu.org/software/emacs/\\\"\\u003EEmacs\\u003C/a\\u003E config. This is my personal Emacs configuration, built according to my personal preferences, without any justification to think it\\u0026#39;s the best possible emacs configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/Abuelodelanada/pepe-emacs-config\\\"\\u003Ehttps://github.com/Abuelodelanada/pepe-emacs-config\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s mainly oriented to PHP software development, but many of its features are useful for other languages and editing tasks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHope you like it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJose\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvrbyc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Abuelodelanada\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvrbyc/the_pepe_emacs_config/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvrbyc/the_pepe_emacs_config/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559433453.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_5i6ym4s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using CLI Commands in Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvqsb5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 39, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 39, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559458913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"hackeryarn.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvqsb5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hackeryarn\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvqsb5/using_cli_commands_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://hackeryarn.com/post/cli-in-emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559430113.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I can connect to [nethack.alt.org](https://nethack.alt.org) using putty and it has colors and everything lines up just right. Is there a way for me to use emacs instead? I did \\\"M-x telnet\\\" and it didn't show the colors and the formatting is all messed up. Kinda looks like it's missing CR/LFs.\\n\\n\\u0026#x200B;\\n\\nAs you can tell, I'm not well versed in this area.\", \"author_fullname\": \"t2_d79ff\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using Emacs for Nethack?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvmkvw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559435126.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can connect to \\u003Ca href=\\\"https://nethack.alt.org\\\"\\u003Enethack.alt.org\\u003C/a\\u003E using putty and it has colors and everything lines up just right. Is there a way for me to use emacs instead? I did \\u0026quot;M-x telnet\\u0026quot; and it didn\\u0026#39;t show the colors and the formatting is all messed up. Kinda looks like it\\u0026#39;s missing CR/LFs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs you can tell, I\\u0026#39;m not well versed in this area.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvmkvw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AlchemicRez\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvmkvw/using_emacs_for_nethack/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvmkvw/using_emacs_for_nethack/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559406326.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Does anyone knows of an Emacs package that shows your minibuffer as a floating window/frame in the middle of the screen, like on this video: [https://www.youtube.com/watch?v=GxMAPW9\\\\_LsA\\u0026t=2m30s](https://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026t=2m30s)?\\n\\nThe closest I've found is this StackExchange answer: [https://emacs.stackexchange.com/a/1078/23627](https://emacs.stackexchange.com/a/1078/23627). These are his dotfiles ([https://bitbucket.org/seanfarley/dotfiles](https://bitbucket.org/seanfarley/dotfiles)) but I'm pretty new at Emacs so I couldn't find anything.\\n\\nhttps://i.redd.it/dhvj5jtm6r131.png\", \"author_fullname\": \"t2_5t856\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs package to show the minibuffer in the middle of the screen\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"dhvj5jtm6r131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 768, \"x\": 1366, \"u\": \"https://i.redd.it/dhvj5jtm6r131.png\"}, \"m\": \"image/png\", \"id\": \"dhvj5jtm6r131\"}}, \"name\": \"t3_bvl94b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"2019-02-27: Emacs as a Python IDE - Sean Farley\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Emacs SF\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/GxMAPW9_LsA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCFk8kgNu_bqsRZewxMGqkzQ\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bvl94b\", \"height\": 338}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559427415.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone knows of an Emacs package that shows your minibuffer as a floating window/frame in the middle of the screen, like on this video: \\u003Ca href=\\\"https://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026amp;t=2m30s\\\"\\u003Ehttps://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026amp;t=2m30s\\u003C/a\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe closest I\\u0026#39;ve found is this StackExchange answer: \\u003Ca href=\\\"https://emacs.stackexchange.com/a/1078/23627\\\"\\u003Ehttps://emacs.stackexchange.com/a/1078/23627\\u003C/a\\u003E. These are his dotfiles (\\u003Ca href=\\\"https://bitbucket.org/seanfarley/dotfiles\\\"\\u003Ehttps://bitbucket.org/seanfarley/dotfiles\\u003C/a\\u003E) but I\\u0026#39;m pretty new at Emacs so I couldn\\u0026#39;t find anything.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/dhvj5jtm6r131.png\\\"\\u003Ehttps://i.redd.it/dhvj5jtm6r131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvl94b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"humpum\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvl94b/emacs_package_to_show_the_minibuffer_in_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvl94b/emacs_package_to_show_the_minibuffer_in_the/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559398615.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"2019-02-27: Emacs as a Python IDE - Sean Farley\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Emacs SF\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/GxMAPW9_LsA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCFk8kgNu_bqsRZewxMGqkzQ\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How to remove emacs's bottom window and have only editor always?\\n\\nOur Linux team setup emacs as the only editor now, and the useless bottom window blocks the half of my screen. \\n\\nI liked using gedit before, but now must work with emacs.\\n\\nI tried to decrease the size of the bottom window to the minimum, but as soon as I close the document, this setting is lost and the new document in emacs is opened with the same useless bottom window which blocks half of the screen.\", \"author_fullname\": \"t2_3vd5ee30\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to remove emacs's bottom window and have only editor always?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvkd1a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559421425.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow to remove emacs\\u0026#39;s bottom window and have only editor always?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur Linux team setup emacs as the only editor now, and the useless bottom window blocks the half of my screen. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI liked using gedit before, but now must work with emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to decrease the size of the bottom window to the minimum, but as soon as I close the document, this setting is lost and the new document in emacs is opened with the same useless bottom window which blocks half of the screen.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvkd1a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OVM2712\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvkd1a/how_to_remove_emacss_bottom_window_and_have_only/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvkd1a/how_to_remove_emacss_bottom_window_and_have_only/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559392625.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've noticed a peculiar behavior when using auto-fill-mode editing Python code. For example if I start typing the following (fill-column is set to 79),\\n\\n def some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2='foobar'):\\n \\\"\\\"\\\"\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\\n\\nand press Enter, it will look like this:\\n\\n def some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2='foobar'):\\n \\\"\\\"\\\"\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod\\n tempor incididunt ut labore et dolore magna aliqua.\\nIf the keyword arguments are all in one line, the docstring continues to be indented with 4 spaces as expected, but whenever it is extended across multiple lines, any line of the docstring after the first will match the indentation of the second line of the list of keyword arguments. Is there a good reason for this, or is this just a bug in auto-fill-mode?\", \"author_fullname\": \"t2_ch6my\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Python Documentation String Indentation In Auto-Fill Mode (Emacs 26.2)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvjzem\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559418423.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve noticed a peculiar behavior when using auto-fill-mode editing Python code. For example if I start typing the following (fill-column is set to 79),\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edef some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2=\\u0026#39;foobar\\u0026#39;):\\n \\u0026quot;\\u0026quot;\\u0026quot;\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eand press Enter, it will look like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edef some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2=\\u0026#39;foobar\\u0026#39;):\\n \\u0026quot;\\u0026quot;\\u0026quot;\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod\\n tempor incididunt ut labore et dolore magna aliqua.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf the keyword arguments are all in one line, the docstring continues to be indented with 4 spaces as expected, but whenever it is extended across multiple lines, any line of the docstring after the first will match the indentation of the second line of the list of keyword arguments. Is there a good reason for this, or is this just a bug in auto-fill-mode?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvjzem\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hexidon\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvjzem/python_documentation_string_indentation_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvjzem/python_documentation_string_indentation_in/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559389623.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello, I really like Emacs approach to text editing compared to vi, vim or joe (I love joe though, he's a trooper, but I like Emacs keybindings and logic). However Emacs is a little heavy and has many, many features that I will never use. Any tips on compiling it to bare-bones lite? Or is there an Emacs-lite fork out there? I'm currently using a custom compiled version called emacs-nox (no x11) on FreeBSD 12-stable. (I tried the nox flavor, and also removed gtk support and sound/image features, but it still renders a basic X widget. So I'm forced to alias emacs=\\\"emacs -nw\\\")\", \"author_fullname\": \"t2_3d6u59wh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New to emacs, couple of stupid questions.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvibhq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559403055.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I really like Emacs approach to text editing compared to vi, vim or joe (I love joe though, he\\u0026#39;s a trooper, but I like Emacs keybindings and logic). However Emacs is a little heavy and has many, many features that I will never use. Any tips on compiling it to bare-bones lite? Or is there an Emacs-lite fork out there? I\\u0026#39;m currently using a custom compiled version called emacs-nox (no x11) on FreeBSD 12-stable. (I tried the nox flavor, and also removed gtk support and sound/image features, but it still renders a basic X widget. So I\\u0026#39;m forced to alias emacs=\\u0026quot;emacs -nw\\u0026quot;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvibhq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cshurtsmybrain\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvibhq/new_to_emacs_couple_of_stupid_questions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvibhq/new_to_emacs_couple_of_stupid_questions/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559374255.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"This is my current ediff clause.\\n\\n (use-package ediff\\n :ensure nil\\n :commands (magit-status projectile-vc)\\n :config\\n (progn\\n (setq ediff-diff-options \\\"-w\\\"\\n ediff-split-window-function 'split-window-horizontally\\n ediff-window-setup-function 'ediff-setup-windows-plain)\\n ))\\n \\nI want to make it quit without prompting for yes or no when the `q` key is pressed using this [snippet from stackoverflow](https://emacs.stackexchange.com/questions/9322/how-can-i-quit-ediff-immediately-without-having-to-type-y/24602#24602):\\n\\n (defun disable-y-or-n-p (orig-fun \\u0026rest args)\\n (cl-letf (((symbol-function 'y-or-n-p) (lambda (prompt) t)))\\n (apply orig-fun args)))\\n \\n (advice-add 'ediff-quit :around #'disable-y-or-n-p)\\n\\nSince the `disable-y-or-n-p` function can be used elsewhere only the advice has to be add to the ediff clause. Does it have to go into a `:config` or an `:init` section?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is good way to make this change in use-package?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvi8yt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559402399.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is my current ediff clause.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package ediff\\n :ensure nil\\n :commands (magit-status projectile-vc)\\n :config\\n (progn\\n (setq ediff-diff-options \\u0026quot;-w\\u0026quot;\\n ediff-split-window-function \\u0026#39;split-window-horizontally\\n ediff-window-setup-function \\u0026#39;ediff-setup-windows-plain)\\n ))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI want to make it quit without prompting for yes or no when the \\u003Ccode\\u003Eq\\u003C/code\\u003E key is pressed using this \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/9322/how-can-i-quit-ediff-immediately-without-having-to-type-y/24602#24602\\\"\\u003Esnippet from stackoverflow\\u003C/a\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun disable-y-or-n-p (orig-fun \\u0026amp;rest args)\\n (cl-letf (((symbol-function \\u0026#39;y-or-n-p) (lambda (prompt) t)))\\n (apply orig-fun args)))\\n\\n(advice-add \\u0026#39;ediff-quit :around #\\u0026#39;disable-y-or-n-p)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESince the \\u003Ccode\\u003Edisable-y-or-n-p\\u003C/code\\u003E function can be used elsewhere only the advice has to be add to the ediff clause. Does it have to go into a \\u003Ccode\\u003E:config\\u003C/code\\u003E or an \\u003Ccode\\u003E:init\\u003C/code\\u003E section?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvi8yt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvi8yt/what_is_good_way_to_make_this_change_in_usepackage/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvi8yt/what_is_good_way_to_make_this_change_in_usepackage/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559373599.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want to write my first emacs function that depends on searching through the buffer and need some help examples and source code to begin.\\n\\nMy goal is to change the control `C-c C-z` key to log a note to the drawer containing the cursor, or the default LOGBOOK if it is not in a drawer.\\n\\nThis means:\\n\\n1. starting on the current line, scan backwards for a line starting with the drawer syntax ie `\\\\s*:[a-zA-Z][a-zA-Z0-9_]*:` which is not `:END:` for a set number of characters or discover the cursor is not in a drawer by arriving at a line which starts with a headline character `^\\\\*`. If you get to a header line, then the cursor is not in a drawer, so return the cursor to the starting point and run `org-add-note` as normal, most likely into the default LOGBOOK.\\n\\n2. If you find a drawer header, read the current value of `org-log-into-drawer` into a temporary variable. Set `org-log-into-drawer` to the drawer name you found and execute `org-add-log-note`, then revert `org-log-into-drawer` to its previous value.\\n\\nCan anyone provide me with a script that does it and documentation and examples with more knowledge on the process?\\n\\nPS. What is the conceptual difference between `org-add-note` and `org-add-log-note`?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I need some help sources and examples to buffer navigation for emacs script?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bve79d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559372890.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to write my first emacs function that depends on searching through the buffer and need some help examples and source code to begin.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy goal is to change the control \\u003Ccode\\u003EC-c C-z\\u003C/code\\u003E key to log a note to the drawer containing the cursor, or the default LOGBOOK if it is not in a drawer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis means:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Estarting on the current line, scan backwards for a line starting with the drawer syntax ie \\u003Ccode\\u003E\\\\s*:[a-zA-Z][a-zA-Z0-9_]*:\\u003C/code\\u003E which is not \\u003Ccode\\u003E:END:\\u003C/code\\u003E for a set number of characters or discover the cursor is not in a drawer by arriving at a line which starts with a headline character \\u003Ccode\\u003E^\\\\*\\u003C/code\\u003E. If you get to a header line, then the cursor is not in a drawer, so return the cursor to the starting point and run \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E as normal, most likely into the default LOGBOOK.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIf you find a drawer header, read the current value of \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E into a temporary variable. Set \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to the drawer name you found and execute \\u003Ccode\\u003Eorg-add-log-note\\u003C/code\\u003E, then revert \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to its previous value.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ECan anyone provide me with a script that does it and documentation and examples with more knowledge on the process?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS. What is the conceptual difference between \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-add-log-note\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bve79d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bve79d/i_need_some_help_sources_and_examples_to_buffer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bve79d/i_need_some_help_sources_and_examples_to_buffer/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559344090.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I like emacs in the terminal, but how do I get rid of that bottom bar? The grey one. [https://ibin.co/4j1egykIYYYk.png](https://ibin.co/4j1egykIYYYk.png)\\n\\nI thought it was the \\\"toolbar\\\", but `(tool-bar-mode -1)` is not working. Thanks in advance!\", \"author_fullname\": \"t2_3d6u59wh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \".emacs question\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvci93\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559363370.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like emacs in the terminal, but how do I get rid of that bottom bar? The grey one. \\u003Ca href=\\\"https://ibin.co/4j1egykIYYYk.png\\\"\\u003Ehttps://ibin.co/4j1egykIYYYk.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought it was the \\u0026quot;toolbar\\u0026quot;, but \\u003Ccode\\u003E(tool-bar-mode -1)\\u003C/code\\u003E is not working. Thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvci93\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cshurtsmybrain\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvci93/emacs_question/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvci93/emacs_question/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559334570.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"For example, Craigslist only sends the 25 most recent links in the rss export, so if I wake up in the morning after 10 hours of not refreshing my feed, I will see only the 25 most recent links for a given query, and miss a lot of stuff. It would also be nice to not feel pressured to refresh my feed every hour just so I don't miss something. FWIW, the only query I'm really having this problem with is the Craigslist \\\"free\\\" section. \\n\\n\\u0026#x200B;\\n\\nI'm sure this isn't specific to Elfeed, but I'm relatively new to RSS/Atom as well. I would like my feed to always refresh sufficiently so I don't have to worry about links escaping my view. I did look into \\\\`run-with-timer\\\\` but that feels dirty compared to built-in Elfeed feature I may be missing. Thansk for reading!\", \"author_fullname\": \"t2_3th1enuk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a simple way to get Elfeed to update / refresh it's feed every x minutes?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvbp92\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559359140.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor example, Craigslist only sends the 25 most recent links in the rss export, so if I wake up in the morning after 10 hours of not refreshing my feed, I will see only the 25 most recent links for a given query, and miss a lot of stuff. It would also be nice to not feel pressured to refresh my feed every hour just so I don\\u0026#39;t miss something. FWIW, the only query I\\u0026#39;m really having this problem with is the Craigslist \\u0026quot;free\\u0026quot; section. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sure this isn\\u0026#39;t specific to Elfeed, but I\\u0026#39;m relatively new to RSS/Atom as well. I would like my feed to always refresh sufficiently so I don\\u0026#39;t have to worry about links escaping my view. I did look into `run-with-timer` but that feels dirty compared to built-in Elfeed feature I may be missing. Thansk for reading!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvbp92\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"impendingLawsuit\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvbp92/is_there_a_simple_way_to_get_elfeed_to_update/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvbp92/is_there_a_simple_way_to_get_elfeed_to_update/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559330340.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying out an org init file. Got the idea from [here](https://cestlaz.github.io/posts/using-emacs-10-org-init/). It works perfectly on Ubuntu but for some reason, it won't work on mac. I think the issue might be with org-babel. It parses the majority of my packages but not all of them, in particular, the first 2 and my interface tweaks. Heres my files [github link](https://github.com/girvain/.emacs.d/tree/orgModeInit).\\n\\nAnyone else had a similar issue?\", \"author_fullname\": \"t2_lkmww7c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org init files won't parse on mac\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvb6ep\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559356424.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying out an org init file. Got the idea from \\u003Ca href=\\\"https://cestlaz.github.io/posts/using-emacs-10-org-init/\\\"\\u003Ehere\\u003C/a\\u003E. It works perfectly on Ubuntu but for some reason, it won\\u0026#39;t work on mac. I think the issue might be with org-babel. It parses the majority of my packages but not all of them, in particular, the first 2 and my interface tweaks. Heres my files \\u003Ca href=\\\"https://github.com/girvain/.emacs.d/tree/orgModeInit\\\"\\u003Egithub link\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone else had a similar issue?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvb6ep\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"girvain\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvb6ep/org_init_files_wont_parse_on_mac/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvb6ep/org_init_files_wont_parse_on_mac/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559327624.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a command to choose the drawer `org-add-note` saves the text in?\\n\\nI was thinking that with the cursor in a particular drawer `org-add-note` would enter the text into that drawer, but it always goes into the `LOGBOOK` drawer.\\n\\nFrom the documentation the logical thing to do would be to check the location of the cursor and if it is in drawer, change the `org-log-into-drawer` variable, add the note then revert `org-log-into-drawer` to what it was before, but that seems to be rather long-winded, or is it the only valid alternative?\\n\\nIs there builtin function for checking the current drawer?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to add a note to a specific drawer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvay1h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559355236.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a command to choose the drawer \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E saves the text in?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was thinking that with the cursor in a particular drawer \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E would enter the text into that drawer, but it always goes into the \\u003Ccode\\u003ELOGBOOK\\u003C/code\\u003E drawer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the documentation the logical thing to do would be to check the location of the cursor and if it is in drawer, change the \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E variable, add the note then revert \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to what it was before, but that seems to be rather long-winded, or is it the only valid alternative?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there builtin function for checking the current drawer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvay1h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvay1h/how_to_add_a_note_to_a_specific_drawer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvay1h/how_to_add_a_note_to_a_specific_drawer/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559326436.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I wonder if anyone using emacs on Windows notices a slight text flicker when scrolling up and down buffers or resizing the program. I experience this even when launching under \\\"emacs -Q\\\" and now that I've noticed it a couple times I can't unsee it.\\n\\nMainly want to know if there are any workarounds for this or plans to fix it in the future.\", \"author_fullname\": \"t2_1sukobfg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"text flicker on windows (emacs 26.2)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv9jgk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559348196.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI wonder if anyone using emacs on Windows notices a slight text flicker when scrolling up and down buffers or resizing the program. I experience this even when launching under \\u0026quot;emacs -Q\\u0026quot; and now that I\\u0026#39;ve noticed it a couple times I can\\u0026#39;t unsee it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMainly want to know if there are any workarounds for this or plans to fix it in the future.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv9jgk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DesperateSell\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv9jgk/text_flicker_on_windows_emacs_262/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv9jgk/text_flicker_on_windows_emacs_262/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559319396.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nFor all the awesomeness of org-mode in general, and its export engines in particular : I cannot make a particular thing work quite well. When an org file is exported, say, to HTML with a huge majority of the available CSS'es that I could find. Export to text is even worse. E.g. org file :\\n\\n\\u0026#x200B;\\n\\n\\u003E\\\\* Introduction \\n\\u003E \\n\\u003E\\\\* Features \\n\\u003E \\n\\u003E\\\\*\\\\* Cars \\n\\u003E \\n\\u003E\\\\*\\\\* Trucks \\n\\u003E \\n\\u003E... \\n\\u003E \\n\\u003E\\\\* Problems\\n\\n\\u0026#x200B;\\n\\nThis gets exported to something like :\\n\\n\\u003E1 Introduction \\n\\u003E \\n\\u003E2 Features \\n\\u003E \\n\\u003E2.1 Cars \\n\\u003E \\n\\u003E2.2 Trucks \\n\\u003E \\n\\u003E... \\n\\u003E \\n\\u003E3 Problems\\n\\n\\u0026#x200B;\\n\\nWithout anything to distinguish between \\\"1\\\" and \\\"Introduction\\\". Or \\\"2\\\" and \\\"Features\\\". Everyone who is not used to org mode exporting asks me that you have only 2 features and 3 problems ? BTW the Features section can be many pages long.\\n\\n\\u0026#x200B;\\n\\nI tried the CSSes from :\\n\\n1. [https://www.reddit.com/r/emacs/comments/3pvbag/is\\\\_there\\\\_a\\\\_collection\\\\_of\\\\_css\\\\_styles\\\\_for\\\\_org/](https://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/)\\n2. [https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html](https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html)\\n3. [http://diobla.info/doc/rtags](http://diobla.info/doc/rtags) : this has a different background for section numbers, but in simple renderers like email , the different background doesn't have any effect.\\n\\n\\u0026#x200B;\\n\\nSo my question : a simple \\\".\\\" , or \\\")\\\" between section numbering is extremely standard, and most people can make out the difference. How can I add such a separator ? It is also practically standard in HTML numbering that triple click on the line selects the whole content except the section number - which is also violated in all HTML CSSes that I could find.\\n\\n\\u0026#x200B;\\n\\nAnother question stemming from my frustration is also that how is everyone else living with this? The fact that table of contents in text and HTML export include a \\\".\\\" between section number and content means people in org also know this. But somehow this is ignored in the main content ?\", \"author_fullname\": \"t2_1zt5mges\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org mode export section numbering\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv8rli\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559344538.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor all the awesomeness of org-mode in general, and its export engines in particular : I cannot make a particular thing work quite well. When an org file is exported, say, to HTML with a huge majority of the available CSS\\u0026#39;es that I could find. Export to text is even worse. E.g. org file :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E* Introduction \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Features \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** Cars \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** Trucks \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Problems\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis gets exported to something like :\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E1 Introduction \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2 Features \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2.1 Cars \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2.2 Trucks \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E3 Problems\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithout anything to distinguish between \\u0026quot;1\\u0026quot; and \\u0026quot;Introduction\\u0026quot;. Or \\u0026quot;2\\u0026quot; and \\u0026quot;Features\\u0026quot;. Everyone who is not used to org mode exporting asks me that you have only 2 features and 3 problems ? BTW the Features section can be many pages long.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried the CSSes from :\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/\\\"\\u003Ehttps://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html\\\"\\u003Ehttps://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://diobla.info/doc/rtags\\\"\\u003Ehttp://diobla.info/doc/rtags\\u003C/a\\u003E : this has a different background for section numbers, but in simple renderers like email , the different background doesn\\u0026#39;t have any effect.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo my question : a simple \\u0026quot;.\\u0026quot; , or \\u0026quot;)\\u0026quot; between section numbering is extremely standard, and most people can make out the difference. How can I add such a separator ? It is also practically standard in HTML numbering that triple click on the line selects the whole content except the section number - which is also violated in all HTML CSSes that I could find.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother question stemming from my frustration is also that how is everyone else living with this? The fact that table of contents in text and HTML export include a \\u0026quot;.\\u0026quot; between section number and content means people in org also know this. But somehow this is ignored in the main content ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv8rli\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KrishnaKrGopal\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv8rli/org_mode_export_section_numbering/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv8rli/org_mode_export_section_numbering/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559315738.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I tried using ob-prolog, but it seems outdated and not working :'(\\n\\n\\u0026#x200B;\\n\\nLuckily with a bit of Lisp, I made a quick hack for quickly executing Prolog queries from the current buffer. I share it here in the hopes of attracting others to try Prolog with Emacs. \\n\\n ;; Don't judge me too harshly, this was quick and dirty; e.g., not enough `let`s!\\n \\n (local-set-key (kbd \\\"\\u003Cf6\\u003E\\\") (lambda () (interactive)\\n \\\"\\n org-babel-tangle the whole file, then execute the final query\\n in the current SRC block.\\n \\n If the query mentions the variable \\u2018X\\u2019, then show all possible solutions\\n followed by \\u2018false\\u2019. Usually one presses \\u2018;\\u2019 to see other solutions,\\n but in Emacs this only shows one futher solution then terminates.\\n We get around this by executing essentially\\n \\u201cforall(your-query-with-X, writeln(X)).\\u201d\\n This prints all solutions X to your query.\\n \\n If you want to use a variable but don't want to see all solutions,\\n then avoid using \\u2018X\\u2019; e.g., use \\u2018Y\\u2019 ^_^.\\n \\\"\\n (-let [kill-buffer-query-functions nil]\\n (ignore-errors\\n (switch-to-buffer \\\"*Prolog*\\\")\\n (kill-buffer \\\"*Prolog*\\\"))\\n \\n ;; Get final query in current source block\\n (search-forward \\\"#+END_SRC\\\")\\n (search-backward \\\"% ?-\\\")\\n ;; Copy line, without killing it.\\n (setq xx (thing-at-point 'line t))\\n \\n (async-shell-command (format \\\"swipl -s %s\\\" (car (org-babel-tangle))) \\\"*Prolog*\\\")\\n (other-window 1)\\n \\n ;; Paste the final query\\n (setq xx (s-chop-prefix \\\"% ?- \\\" xx))\\n (when (s-contains? \\\"X\\\" xx)\\n (setq xx (concat \\\"writeln(\\\\\\\"X =\\\\\\\"), forall(\\\" (s-replace \\\".\\\" \\\", writeln(X)).\\\" xx))))\\n \\n (insert xx)\\n (comint-send-input nil t) ;; Send it, i.e., \\u201cpress enter at prompt\\u201d.\\n \\n ;; Insert query again, but do not send, in case user wishes to change it.\\n (insert xx)\\n (previous-line) (end-of-line)\\n \\n )))\\n\\n\\u0026#x200B;\\n\\nThe [source repo](https://github.com/alhassy/PrologCheatSheet) also contains a Prolog Cheat Sheet that insipired this setup (\\u2022\\u0300\\u1d17\\u2022\\u0301)\\u0648\", \"author_fullname\": \"t2_1pko65xw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\u201cInteractive\\u201d Prolog Setup\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5hq7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559324539.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI tried using ob-prolog, but it seems outdated and not working :\\u0026#39;(\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuckily with a bit of Lisp, I made a quick hack for quickly executing Prolog queries from the current buffer. I share it here in the hopes of attracting others to try Prolog with Emacs. \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Don\\u0026#39;t judge me too harshly, this was quick and dirty; e.g., not enough `let`s!\\n\\n(local-set-key (kbd \\u0026quot;\\u0026lt;f6\\u0026gt;\\u0026quot;) (lambda () (interactive)\\n \\u0026quot;\\norg-babel-tangle the whole file, then execute the final query\\nin the current SRC block.\\n\\nIf the query mentions the variable \\u2018X\\u2019, then show all possible solutions\\nfollowed by \\u2018false\\u2019. Usually one presses \\u2018;\\u2019 to see other solutions,\\nbut in Emacs this only shows one futher solution then terminates.\\nWe get around this by executing essentially\\n\\u201cforall(your-query-with-X, writeln(X)).\\u201d\\nThis prints all solutions X to your query.\\n\\nIf you want to use a variable but don\\u0026#39;t want to see all solutions,\\nthen avoid using \\u2018X\\u2019; e.g., use \\u2018Y\\u2019 ^_^.\\n \\u0026quot;\\n (-let [kill-buffer-query-functions nil]\\n (ignore-errors\\n (switch-to-buffer \\u0026quot;*Prolog*\\u0026quot;)\\n (kill-buffer \\u0026quot;*Prolog*\\u0026quot;))\\n\\n ;; Get final query in current source block\\n (search-forward \\u0026quot;#+END_SRC\\u0026quot;)\\n (search-backward \\u0026quot;% ?-\\u0026quot;)\\n ;; Copy line, without killing it.\\n (setq xx (thing-at-point \\u0026#39;line t))\\n\\n (async-shell-command (format \\u0026quot;swipl -s %s\\u0026quot; (car (org-babel-tangle))) \\u0026quot;*Prolog*\\u0026quot;)\\n (other-window 1)\\n\\n ;; Paste the final query\\n (setq xx (s-chop-prefix \\u0026quot;% ?- \\u0026quot; xx))\\n (when (s-contains? \\u0026quot;X\\u0026quot; xx)\\n(setq xx (concat \\u0026quot;writeln(\\\\\\u0026quot;X =\\\\\\u0026quot;), forall(\\u0026quot; (s-replace \\u0026quot;.\\u0026quot; \\u0026quot;, writeln(X)).\\u0026quot; xx))))\\n\\n (insert xx)\\n (comint-send-input nil t) ;; Send it, i.e., \\u201cpress enter at prompt\\u201d.\\n\\n ;; Insert query again, but do not send, in case user wishes to change it.\\n (insert xx)\\n (previous-line) (end-of-line)\\n\\n)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe \\u003Ca href=\\\"https://github.com/alhassy/PrologCheatSheet\\\"\\u003Esource repo\\u003C/a\\u003E also contains a Prolog Cheat Sheet that insipired this setup (\\u2022\\u0300\\u1d17\\u2022\\u0301)\\u0648\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5hq7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moseswithhisbooks\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5hq7/interactive_prolog_setup/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5hq7/interactive_prolog_setup/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559295739.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I find it helpful to make cheatsheets whenever I'm learning stuff, the LaTeX was getting too much so I just hid it into Org-mode \\\\`#+latex:\\\\` invocations. The resulting mechanism ---[see here](https://github.com/alhassy/CheatSheet)\\\\--- works great: As a user, I essentially only see the usual org-mode interface, little to no LaTeX \\\\^\\\\_\\\\^ \\n\\n\\nHowever, even though I rarely consult it, the setup file is a bit akward, any suggestions for improvement would be welcome :-)\", \"author_fullname\": \"t2_1pko65xw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Easily Making CheatSheets with Org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5e7k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 74, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 74, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559323760.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find it helpful to make cheatsheets whenever I\\u0026#39;m learning stuff, the LaTeX was getting too much so I just hid it into Org-mode `#+latex:` invocations. The resulting mechanism ---\\u003Ca href=\\\"https://github.com/alhassy/CheatSheet\\\"\\u003Esee here\\u003C/a\\u003E--- works great: As a user, I essentially only see the usual org-mode interface, little to no LaTeX ^_^ \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, even though I rarely consult it, the setup file is a bit akward, any suggestions for improvement would be welcome :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5e7k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moseswithhisbooks\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5e7k/easily_making_cheatsheets_with_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5e7k/easily_making_cheatsheets_with_orgmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559294960.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hey, guys, been testing emacs on my new mbp and I ran into a rather inconvenient issue. When I put safari in full screen and switch back to emacs from safari, emacs is out of focus, i.e. I have to click on it to use it. Any ideas as to how to resolve this issue? My emacs version is emacs Mac port.\", \"author_fullname\": \"t2_2g0vvde9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Macos emacs focus issue\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5bes\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559323125.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, guys, been testing emacs on my new mbp and I ran into a rather inconvenient issue. When I put safari in full screen and switch back to emacs from safari, emacs is out of focus, i.e. I have to click on it to use it. Any ideas as to how to resolve this issue? My emacs version is emacs Mac port.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5bes\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"clafordvlawrence\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5bes/macos_emacs_focus_issue/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5bes/macos_emacs_focus_issue/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559294325.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_1s3m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Back in 2008, there were reports that Microsoft was working on Emacs.Net\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv2i7u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 44, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 44, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559301755.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"zdnet.com\", \"selftext_html\": null, \"likes\": true, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv2i7u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dharmatech\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv2i7u/back_in_2008_there_were_reports_that_microsoft/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.zdnet.com/article/microsoft-to-build-an-emacs-net-text-editor/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559272955.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a way to remap *TAB* in org-mode? I have looked into the source code and I cannot figure how to do this map.\", \"author_fullname\": \"t2_qw4yvca\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to remap TAB in org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv0ih3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559289935.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a way to remap \\u003Cem\\u003ETAB\\u003C/em\\u003E in org-mode? I have looked into the source code and I cannot figure how to do this map.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv0ih3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"machawinka\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv0ih3/how_to_remap_tab_in_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv0ih3/how_to_remap_tab_in_orgmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559261135.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"One thing that has been bugging me about using emacs for my email is when I use `message-insert-signature` it always puts my signature at the end of the email. Sometimes I leave the conversation tail after my reply, so I usually want to insert my signature at the point rather than at the end.\\n\\nIs there a way I can change this?\", \"author_fullname\": \"t2_9lkqk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Insert signature at point?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_butsst\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559255097.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOne thing that has been bugging me about using emacs for my email is when I use \\u003Ccode\\u003Emessage-insert-signature\\u003C/code\\u003E it always puts my signature at the end of the email. Sometimes I leave the conversation tail after my reply, so I usually want to insert my signature at the point rather than at the end.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way I can change this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"butsst\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lykwydchykyn\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/butsst/insert_signature_at_point/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/butsst/insert_signature_at_point/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559226297.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I using go language mode (Emacs 26.1 with Prelude). With longer lines, Emacs colors everyting beyond 80 characters in a different color.\\n\\nWhat variable(s) control this and how do I stop it from doing this?\\n\\nAppreciate your help.\\n\\nEDIT: Found it! Turning off whitespace-mode stopped this bahaviour.\", \"author_fullname\": \"t2_1a39v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I stop Emacs from coloring text beyond 80 columns differently.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_butal1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559225749.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559252400.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI using go language mode (Emacs 26.1 with Prelude). With longer lines, Emacs colors everyting beyond 80 characters in a different color.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat variable(s) control this and how do I stop it from doing this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAppreciate your help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Found it! Turning off whitespace-mode stopped this bahaviour.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"butal1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"reddit_clone\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/butal1/how_do_i_stop_emacs_from_coloring_text_beyond_80/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/butal1/how_do_i_stop_emacs_from_coloring_text_beyond_80/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559223600.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl5q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 74, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 74, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559241478.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl5q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burl5q/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559212678.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_14grtk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Brief summary of some Emacs features\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burg4w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559240415.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"old.reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burg4w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vurpius\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burg4w/brief_summary_of_some_emacs_features/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://old.reddit.com/r/linux/comments/btzzvp/unix_as_ide/ep5i1cy/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559211615.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"1. It is not super important but I'm curious if there's a way to improve EXWM startup time? After logging in and seeing Emacs briefly the window expands to fullscreen black and then it takes 10s or so before EXWM is ready. I'm curious it takes such a long time.\\n\\n2. Is there a build-in function to switch to the last used buffer quickly? Currently I'm using my own custom function because `(switch-to-buffer nil)` does not switch to hidden or system buffers. But it feels like overkill to use what I have written[1] (which I also use outside of EXWM).\\n\\n3. For changing the volume I'm using the current keybindings but on first use they have a significant delay and lock EXWM:\\n - `(lambda () (interactive) (start-process \\\"\\\" \\\"*proc-out-amixer*\\\" \\\"amixer\\\" \\\"set\\\" \\\"Master\\\" \\\"2%-\\\")))`\\n - `(lambda () (interactive) (start-process \\\"\\\" \\\"*proc-out-amixer*\\\" \\\"amixer\\\" \\\"set\\\" \\\"Master\\\" \\\"2%+\\\")))`\\n\\n[1]\\n\\n (defvar switch-to-last-buffer-hash-table (make-hash-table))\\n \\n (defun switch-to-last-buffer-store ()\\n (interactive)\\n (puthash (selected-window) (current-buffer)\\n switch-to-last-buffer-hash-table))\\n \\n ;; `(switch-to-buffer nil)` doesn't work because I also want to switch back to\\n ;; hidden or system buffers.\\n (defun switch-to-last-buffer ()\\n (interactive)\\n (let ((last-buffer (gethash (selected-window)\\n switch-to-last-buffer-hash-table)))\\n (when last-buffer\\n (switch-to-last-buffer-store)\\n (switch-to-buffer last-buffer))))\\n \\n ;; XXX What does /protected/ do?\\n (ad-add-advice #'switch-to-buffer '(switch-to-last-buffer-store nil t (lambda () (switch-to-last-buffer-store))) 'before 'first)\", \"author_fullname\": \"t2_3lmrs\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Some EXWM questions (startup time, keybindings)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bur9cm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559238876.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt is not super important but I\\u0026#39;m curious if there\\u0026#39;s a way to improve EXWM startup time? After logging in and seeing Emacs briefly the window expands to fullscreen black and then it takes 10s or so before EXWM is ready. I\\u0026#39;m curious it takes such a long time.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIs there a build-in function to switch to the last used buffer quickly? Currently I\\u0026#39;m using my own custom function because \\u003Ccode\\u003E(switch-to-buffer nil)\\u003C/code\\u003E does not switch to hidden or system buffers. But it feels like overkill to use what I have written[1] (which I also use outside of EXWM).\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor changing the volume I\\u0026#39;m using the current keybindings but on first use they have a significant delay and lock EXWM:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003E(lambda () (interactive) (start-process \\u0026quot;\\u0026quot; \\u0026quot;*proc-out-amixer*\\u0026quot; \\u0026quot;amixer\\u0026quot; \\u0026quot;set\\u0026quot; \\u0026quot;Master\\u0026quot; \\u0026quot;2%-\\u0026quot;)))\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003E(lambda () (interactive) (start-process \\u0026quot;\\u0026quot; \\u0026quot;*proc-out-amixer*\\u0026quot; \\u0026quot;amixer\\u0026quot; \\u0026quot;set\\u0026quot; \\u0026quot;Master\\u0026quot; \\u0026quot;2%+\\u0026quot;)))\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E[1]\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defvar switch-to-last-buffer-hash-table (make-hash-table))\\n\\n(defun switch-to-last-buffer-store ()\\n (interactive)\\n (puthash (selected-window) (current-buffer)\\n switch-to-last-buffer-hash-table))\\n\\n;; `(switch-to-buffer nil)` doesn\\u0026#39;t work because I also want to switch back to\\n;; hidden or system buffers.\\n(defun switch-to-last-buffer ()\\n (interactive)\\n (let ((last-buffer (gethash (selected-window)\\n switch-to-last-buffer-hash-table)))\\n (when last-buffer\\n (switch-to-last-buffer-store)\\n (switch-to-buffer last-buffer))))\\n\\n;; XXX What does /protected/ do?\\n(ad-add-advice #\\u0026#39;switch-to-buffer \\u0026#39;(switch-to-last-buffer-store nil t (lambda () (switch-to-last-buffer-store))) \\u0026#39;before \\u0026#39;first)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bur9cm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aerique\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bur9cm/some_exwm_questions_startup_time_keybindings/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bur9cm/some_exwm_questions_startup_time_keybindings/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559210076.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If that's easily available, please notice that I made it clear it was a silly question. I used to easily find this with a Google Search, but for some reason I haven't been able to find it for the last 48 hours. The mirror [only goes up to 26.2](http://mirror.sergal.org/gnu/emacs/). Where can I find versions development 27 and up?\\n\\n[I can only find pretest versions for Windows](https://alpha.gnu.org/gnu/emacs/pretest/windows/).\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A very silly question: cannot find Emacs 27.0.50 tarball for Linux anywhere!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bumr6p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559177553.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559206114.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf that\\u0026#39;s easily available, please notice that I made it clear it was a silly question. I used to easily find this with a Google Search, but for some reason I haven\\u0026#39;t been able to find it for the last 48 hours. The mirror \\u003Ca href=\\\"http://mirror.sergal.org/gnu/emacs/\\\"\\u003Eonly goes up to 26.2\\u003C/a\\u003E. Where can I find versions development 27 and up?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://alpha.gnu.org/gnu/emacs/pretest/windows/\\\"\\u003EI can only find pretest versions for Windows\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bumr6p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bumr6p/a_very_silly_question_cannot_find_emacs_27050/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bumr6p/a_very_silly_question_cannot_find_emacs_27050/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559177314.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"While me and some friends were discusing about which is the best text editor I said that it is emacs. Someone said that it is VS code because you can do things that in other editors you can't. I said you can do almost everything in emacs. Someone asked if ther is a way to use tinder from emacs. So that's the question, can you interact with other people via tinder with emacs?\\n\\nThanks.\", \"author_fullname\": \"t2_1gpw29so\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a tinder mode on emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buj4i2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 53, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 53, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559187513.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile me and some friends were discusing about which is the best text editor I said that it is emacs. Someone said that it is VS code because you can do things that in other editors you can\\u0026#39;t. I said you can do almost everything in emacs. Someone asked if ther is a way to use tinder from emacs. So that\\u0026#39;s the question, can you interact with other people via tinder with emacs?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buj4i2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"edoelas\", \"num_crossposts\": 0, \"num_comments\": 28, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buj4i2/is_there_a_tinder_mode_on_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buj4i2/is_there_a_tinder_mode_on_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559158713.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Lately I have realized that I don't have an efficient way of organizing my research and ideas. I simply bookmark different papers I have read and jot down my ideas in a notebook. I have looked into tools for this and Zotero seems to be like something I can use.\\n\\nI haven't really used org mode before, but I have heard good things about it. So if anyone uses org mode for the case I have described above (organizing research and ideas), I would love to hear about tips and hopefully links to some guides?\", \"author_fullname\": \"t2_gcwvdi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs org mode as a research/ideas journal ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buhux4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559181180.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELately I have realized that I don\\u0026#39;t have an efficient way of organizing my research and ideas. I simply bookmark different papers I have read and jot down my ideas in a notebook. I have looked into tools for this and Zotero seems to be like something I can use.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t really used org mode before, but I have heard good things about it. So if anyone uses org mode for the case I have described above (organizing research and ideas), I would love to hear about tips and hopefully links to some guides?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buhux4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vikigenius\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buhux4/emacs_org_mode_as_a_researchideas_journal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buhux4/emacs_org_mode_as_a_researchideas_journal/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559152380.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have adapted a function by Xah Lee to change the location backup files are saved, but it doesn't seem to work. Only things like the `recentf` and `idolast` are saved in it. Normal editing files are still backed up in their directories as usual.\\n\\nAre there some other functions and variables involved?\\n \\n ;; make backup to a designated dir, mirroring the full path\\n ;; adapted from xah-lee http://ergoemacs.org/emacs/emacs_set_backup_into_a_directory.html\\n \\n (defun vfc/set-backup-file-path (fpath)\\n \\\"Return a new file path of a given file path.\\n If the new path's directories does not exist, create them.\\\"\\n (let* (\\n (backupRootDir \\\"~/tmp/.emacs_backups/\\\")\\n (filePath (replace-regexp-in-string \\\"[A-Za-z]:\\\" \\\"\\\" fpath )) ; remove Windows driver letter in path, for example, \\u201cC:\\u201d\\n (backupFilePath (replace-regexp-in-string \\\"//\\\" \\\"/\\\" (concat backupRootDir filePath \\\"~\\\") ))\\n )\\n (make-directory (file-name-directory backupFilePath) (file-name-directory backupFilePath))\\n backupFilePath\\n )\\n )\\n \\n (setq make-backup-file-name-function 'vfc/set-backup-file-path)\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there another factor involved in backup file locations besides \\\"make-backup-file-name-function\\\"?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buf5od\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559167905.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have adapted a function by Xah Lee to change the location backup files are saved, but it doesn\\u0026#39;t seem to work. Only things like the \\u003Ccode\\u003Erecentf\\u003C/code\\u003E and \\u003Ccode\\u003Eidolast\\u003C/code\\u003E are saved in it. Normal editing files are still backed up in their directories as usual.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre there some other functions and variables involved?\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; make backup to a designated dir, mirroring the full path\\n;; adapted from xah-lee http://ergoemacs.org/emacs/emacs_set_backup_into_a_directory.html\\n\\n(defun vfc/set-backup-file-path (fpath)\\n \\u0026quot;Return a new file path of a given file path.\\nIf the new path\\u0026#39;s directories does not exist, create them.\\u0026quot;\\n (let* (\\n (backupRootDir \\u0026quot;~/tmp/.emacs_backups/\\u0026quot;)\\n (filePath (replace-regexp-in-string \\u0026quot;[A-Za-z]:\\u0026quot; \\u0026quot;\\u0026quot; fpath )) ; remove Windows driver letter in path, for example, \\u201cC:\\u201d\\n (backupFilePath (replace-regexp-in-string \\u0026quot;//\\u0026quot; \\u0026quot;/\\u0026quot; (concat backupRootDir filePath \\u0026quot;~\\u0026quot;) ))\\n )\\n (make-directory (file-name-directory backupFilePath) (file-name-directory backupFilePath))\\n backupFilePath\\n )\\n)\\n\\n(setq make-backup-file-name-function \\u0026#39;vfc/set-backup-file-path)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buf5od\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buf5od/is_there_another_factor_involved_in_backup_file/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buf5od/is_there_another_factor_involved_in_backup_file/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559139105.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm running Portacle (a LISP IDE).\\n\\nFor some reason I'm not able to use Ctrl+Shift+arrow keys to select text.\\n\\nDoes anyone know why? How can I enable this? In plain Emacs it works just fine.\", \"author_fullname\": \"t2_3nv0r2zn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can't Use Shift Keys for selecting text\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buepqn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559165474.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m running Portacle (a LISP IDE).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor some reason I\\u0026#39;m not able to use Ctrl+Shift+arrow keys to select text.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone know why? How can I enable this? In plain Emacs it works just fine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buepqn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gambledrum1\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buepqn/cant_use_shift_keys_for_selecting_text/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buepqn/cant_use_shift_keys_for_selecting_text/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559136674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I found there is web-mode, rjsx-mode, vue-mode, js-mode, js2-mode and so on. I am not sure if i should use web-mode for all of them or should i use a specific one for each extension like, rjsx for jsx, vue-mode for vue. I saw that most of the mode allows us to customize space, tab... like web-mode does so i could not differentiate between them. Please explain me the different and advice me what should I use and why?\", \"author_fullname\": \"t2_3q43d0xo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Should I use web-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budrzk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559160036.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I found there is web-mode, rjsx-mode, vue-mode, js-mode, js2-mode and so on. I am not sure if i should use web-mode for all of them or should i use a specific one for each extension like, rjsx for jsx, vue-mode for vue. I saw that most of the mode allows us to customize space, tab... like web-mode does so i could not differentiate between them. Please explain me the different and advice me what should I use and why?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budrzk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"onwake01\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budrzk/should_i_use_webmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budrzk/should_i_use_webmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559131236.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I really like emmet and activate it globally so that i can speed up my html code faster. But, because those files don't contain a pure html but also css and js, then emmet often interrupt rather than help because it always show completion and when i press space it just replace my typing. This is annoying when i am inside js block or css block but this interrupt me so much. \\n\\n\\u0026#x200B;\\n\\nMy question is, is it possible if i want emmet to show suggestion/completion inside a block of html code?\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n```\\n(use-package emmet-mode\\n :hook ((html-mode sgml-mode css-mode web-mode) . emmet-preview-mode)\\n :bind(\\\"C-j\\\" . emmet-expand-line)\\n :config\\n (add-hook 'rjsx-mode-hook\\n (lambda ()\\n (setq-local emmet-expand-jsx-className? t)))\\n )\\n;\\n```\", \"author_fullname\": \"t2_3q43d0xo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is it possible to activate emmet only inside HTML region or tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budods\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159433.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I really like emmet and activate it globally so that i can speed up my html code faster. But, because those files don\\u0026#39;t contain a pure html but also css and js, then emmet often interrupt rather than help because it always show completion and when i press space it just replace my typing. This is annoying when i am inside js block or css block but this interrupt me so much. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy question is, is it possible if i want emmet to show suggestion/completion inside a block of html code?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\n\\u003Ccode\\u003E\\n(use-package emmet-mode\\n :hook ((html-mode sgml-mode css-mode web-mode) . emmet-preview-mode)\\n :bind(\\u0026quot;C-j\\u0026quot; . emmet-expand-line)\\n :config\\n (add-hook \\u0026#39;rjsx-mode-hook\\n (lambda ()\\n (setq-local emmet-expand-jsx-className? t)))\\n )\\n;\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budods\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"onwake01\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budods/is_it_possible_to_activate_emmet_only_inside_html/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budods/is_it_possible_to_activate_emmet_only_inside_html/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559130633.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I work with emacs at work to organized incoming tickets. We open these tickets in an online application, essentially a web page for each ticket. I am looking for a way to get certain text strings (for example, the ticket number \\u0026 the user ID) into Emacs, and then into a capture template in org, which contains these as properties (:ticket: :userid:).\\n\\n\\u0026#x200B;\\n\\nWhat would be a way to look into it? I'm trying to find something online but it seems to be too vague to search thoroughly. Anyone here done something similar? I'm open to suggestions...\\n\\n\\u0026#x200B;\\n\\nThanks in advance!\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Extract certain text from browser to Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budmsh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159158.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI work with emacs at work to organized incoming tickets. We open these tickets in an online application, essentially a web page for each ticket. I am looking for a way to get certain text strings (for example, the ticket number \\u0026amp; the user ID) into Emacs, and then into a capture template in org, which contains these as properties (:ticket: :userid:).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat would be a way to look into it? I\\u0026#39;m trying to find something online but it seems to be too vague to search thoroughly. Anyone here done something similar? I\\u0026#39;m open to suggestions...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budmsh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budmsh/extract_certain_text_from_browser_to_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budmsh/extract_certain_text_from_browser_to_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559130358.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\\n\\nThe other things which get noted in LOGBOOK can remain, just `C-c C-z` to go into a separate drawer?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bud0x7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559155172.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe other things which get noted in LOGBOOK can remain, just \\u003Ccode\\u003EC-c C-z\\u003C/code\\u003E to go into a separate drawer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bud0x7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bud0x7/how_can_emacs_be_set_to_use_a_different_drawer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bud0x7/how_can_emacs_be_set_to_use_a_different_drawer/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559126372.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_8dk3r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bucul7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 31, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/AL1ypvJ5yAQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bucul7\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 31, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559153900.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bucul7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zaiste\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bucul7/emacs_doom_e04_buffers_windows_and_basic/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=AL1ypvJ5yAQ\\u0026feature=youtu.be\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559125100.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/AL1ypvJ5yAQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Any using emacs to track calories or any other diet related stuff?\", \"author_fullname\": \"t2_2ibchdac\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone using emacs to track calories?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buci89\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559151135.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny using emacs to track calories or any other diet related stuff?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buci89\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"the_sealed_tanker\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buci89/anyone_using_emacs_to_track_calories/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buci89/anyone_using_emacs_to_track_calories/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559122335.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm finally diving into the world of emacs. So i set a theme and all that in the GUI wich looks great. However, outside of emacs i'm using a transparant URvxt with a color scheme of it's own, before i customized the GUI version emacs -nw would be the same transparency and all the colors would match. Now however i get a full green screen with on which the letters are hardly readable. How can I apply the theme only to the GUI version and not the terminal version?\\n\\nThanks.\", \"author_fullname\": \"t2_3p8r6ax6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs -nw color scheme.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bubuv9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559145461.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m finally diving into the world of emacs. So i set a theme and all that in the GUI wich looks great. However, outside of emacs i\\u0026#39;m using a transparant URvxt with a color scheme of it\\u0026#39;s own, before i customized the GUI version emacs -nw would be the same transparency and all the colors would match. Now however i get a full green screen with on which the letters are hardly readable. How can I apply the theme only to the GUI version and not the terminal version?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bubuv9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"whoopar\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bubuv9/emacs_nw_color_scheme/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bubuv9/emacs_nw_color_scheme/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559116661.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"# Introduction\\n\\nGNU Hyperbole 7.0.3 is released and ready for action.\\n\\nHyperbole is an amazing hypertextual information management system that installs quickly and easily as an Emacs package. It is part of GNU Elpa, the Emacs Lisp Package Archive.\\n\\nHyperbole interlinks all your working information within Emacs for fast access and editing, not just within special modes. An hour invested exploring Hyperbole's built-in interactive DEMO file will save you hundreds of hours in your future work.\\n\\n7.0.3 is a significant release with a number of interesting improvements. What's new in this release is described here:\\n\\n[www.gnu.org/s/hyperbole/HY-NEWS](https://www.gnu.org/s/hyperbole/HY-NEWS.html)\\n\\nHyperbole is described here:\\n\\n[www.gnu.org/s/hyperbole](https://www.gnu.org/s/hyperbole)\\n\\nFor use cases, see:\\n\\n[www.gnu.org/s/hyperbole/HY-WHY.html](https://www.gnu.org/s/hyperbole/HY-WHY.html)\\n\\nFor what users think about Hyperbole, see:\\n\\n[https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes](https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes)\\n\\nHyperbole can supplement and extend Org-mode's capabilities. It adds many features not found elsewhere in Emacs, including Org mode, see:\\n\\n[www.emacswiki.org/emacs/Hyperbole](https://www.emacswiki.org/emacs/Hyperbole)\\n\\nHyperbole includes its own easy-to-use hypertextual buttons and links that can be created without the need for any markup language.\\n\\nHyperbole has an interactive demo to introduce you to its features as well as a detailed reference manual, as explained here:\\n\\n[https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc](https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc)\\n\\n# Quick Reasons to Try Hyperbole\\n\\nIt contains:\\n\\n* the most flexible and easy-to-use hyperbuttons available, including implicit buttons automatically recognized by context, e.g. stack trace source line references.\\n* the only Emacs outliner with full legal item numbering, e.g. [1.4.2.6](https://1.4.2.6), and automatic permanent hyperlink anchors for every item\\n* the only free-form contact manager with full-text search for Emacs\\n* rapid and precise window, frame and buffer placement on screen\\n* an extensive menu of typed web searches, e.g. dictionary, wikipedia and stackoverflow, plus convenient, fast file and line finding functions\\n* immediate execution of a series of key presses just by typing them out. For example, a M-RETURN press on: {C-x C-b C-s scratch RET C-a} will find the first buffer menu item that contains 'scratch'; then leave point at the beginning of its line. Build interactive tutorials with this.\\n* The Magic of Implicit Buttons and the Action Key\\n\\nFor near instant gratification, try Hyperbole's 'implicit button' capabilities (hyper-buttons that Hyperbole gives you for free by recognizing all types of references embedded within text such as pathnames or error message lines). Below are more complex examples to show the power; simpler ones can be found within the Hyperbole DEMO file.\\n\\nImplicit buttons are activated by pressing the Action Key, M\\\\*-RETURN\\\\*. Once Hyperbole is loaded in your Emacs, pressing *M-RETURN* on any of these examples \\\\*in virtually any buffer\\\\* will display the associated referent in a chosen window or frame, handling all variable substitution and full path resolution:\\n\\n \\\"find-func.el\\\" Find this file whether gzipped or not\\n in the Emacs Lisp load-path\\n \\n \\\"${hyperb:dir}/HY-NEWS\\\" Resolve variable, show Hyperbole news\\n \\n \\\"${PATH}/umask\\\" Display a script somewhere in multi-dir PATH\\n \\n \\\"${hyperb:dir}/DEMO#Hyperbole Menus\\\" Org mode outline, Markdown, and HTML # refs\\n \\n \\\"(hyperbole)Menus\\\" Texinfo and Info node links\\n \\n \\\"c:/Users\\\", \\\"c:\\\\Users\\\", \\\"/C/Users\\\", \\\"/c/Users\\\", and \\\"/mnt/c/Users\\\"\\n On Windows and Windows Subsystem for Linux,\\n Hyperbole recognizes all of these as the\\n same path and can translate between Windows\\n and POSIX path formats in both directions\\n \\n Git Links:\\n git#branches List branches in current repo/project\\n git#commits List and browse commits for current project\\n git#tags List tags in current project\\n \\n git#/hyperbole From any buffer, dired on the top\\n directory of the local hyperbole\\n project\\n \\n git#/hyperbole/55a1f0 or From any buffer, display hyperbole\\n git#hyperbole/55a1f0 local git commit diff\\n \\n \\n Github Links:\\n gh@rswgnu Display user's home page \\u0026 projects\\n \\n github#rswgnu/hyperbole Display user's project\\n gh#rswgnu/helm/global_mouse Display user project's branch\\n gh#rswgnu/hyperbole/55a1f0 Display user project's commit diff\\n \\n Gitlab Links:\\n gitlab@seriyalexandrov Display user's home page\\n gl#gitlab-org/gitlab-ce/activity Summarize user's project activity\\n gl#gitlab-org/gitlab-ce/analytics Display user project's cycle_analytics\\n gl#gitlab-org/gitlab-ce/boards Display user project's kanban-type issue boards\\n \\n Once you set the default user and project variables, you can leave them off any reference links:\\n \\n (setq hibtypes-gitlab-default-user \\\"gitlab-org\\\")\\n (setq hibtypes-gitlab-default-project \\\"gitlab-ce\\\")\\n \\n gl#issues or gl#list Display default project's issue list\\n gl#labels Display default project's issue categories\\n gl#members Display default project's staff list\\n gl#contributors Show contributor push frequency charts\\n gl#merge_requests or gl#pulls Display default project's pull requests\\n gl#milestones Display default project's milestones status\\n gl#pages Display default project's web pages\\n gl#snippets Project snippets, diffs and text with discussion\\n gl#groups List all available groups of projects\\n gl#projects List all available projects\\n \\n gl#milestone=38 Show a specific project milestone\\n gl#snippet/1689487 Show a specific project snippet\\n \\n Even useful social media links:\\n tw#travel or twitter#travel Display twitter hashtag matches\\n fb#technology Display facebook hashtag matches\\n \\n Hyperbole uses simple prefix characters with paths to make them executable:\\n \\\"!/bin/date\\\" Execute as a non-windowed program within a shell\\n \\\"\\u0026/opt/X11/bin/xeyes\\\" Execute as a windowed program;\\n \\\"-find-func.el\\\" Load/execute this Emacs Lisp library\\n \\n File \\\"/usr/lib/python3.7/ast.py\\\", line 37, in parse\\n Jump to error/stack trace source\\n \\n \\\"/ftp:anonymous@ftp.gnu.org:\\\" Tramp remote paths\\n\\n# Try It - Installs or Uninstalls in a Minute\\n\\nHyperbole lets you concentrate more on your work. Then as you grow with it across time, it helps speed your work across weeks and months. It installs in about a minute and can be uninstalled even faster if ever need be. Give it a try.\\n\\nHyperbole can boost your day-to-day productivity with Emacs and your ability to manage information stored across many different machines on the internet.\\n\\nHyperbole can be installed like any other package with the Emacs package manager:\\n\\n {M-x list-packages RET C-s hyperbole RET i x y}\\n\\nThen to invoke its menu:\\n\\n {C-h h} or {M-x hyperbole RET}\\n\\nThe best way to get a feel for many of its capabilities is to invoke the interactive DEMO and explore sections of interest:\\n\\n {C-h h d d}\\n\\n\\u0026#x200B;\\n\\nEnjoy,\\n\\nThe Hyperbole Team\", \"author_fullname\": \"t2_zxjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GNU Hyperbole 7.0.3 is released and ready for action\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bua5ex\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 89, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 89, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559271243.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559132304.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EIntroduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EGNU Hyperbole 7.0.3 is released and ready for action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole is an amazing hypertextual information management system that installs quickly and easily as an Emacs package. It is part of GNU Elpa, the Emacs Lisp Package Archive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole interlinks all your working information within Emacs for fast access and editing, not just within special modes. An hour invested exploring Hyperbole\\u0026#39;s built-in interactive DEMO file will save you hundreds of hours in your future work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E7.0.3 is a significant release with a number of interesting improvements. What\\u0026#39;s new in this release is described here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/HY-NEWS.html\\\"\\u003Ewww.gnu.org/s/hyperbole/HY-NEWS\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole is described here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole\\\"\\u003Ewww.gnu.org/s/hyperbole\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor use cases, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/HY-WHY.html\\\"\\u003Ewww.gnu.org/s/hyperbole/HY-WHY.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor what users think about Hyperbole, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes\\\"\\u003Ehttps://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can supplement and extend Org-mode\\u0026#39;s capabilities. It adds many features not found elsewhere in Emacs, including Org mode, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/Hyperbole\\\"\\u003Ewww.emacswiki.org/emacs/Hyperbole\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole includes its own easy-to-use hypertextual buttons and links that can be created without the need for any markup language.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole has an interactive demo to introduce you to its features as well as a detailed reference manual, as explained here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc\\\"\\u003Ehttps://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuick Reasons to Try Hyperbole\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EIt contains:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Ethe most flexible and easy-to-use hyperbuttons available, including implicit buttons automatically recognized by context, e.g. stack trace source line references.\\u003C/li\\u003E\\n\\u003Cli\\u003Ethe only Emacs outliner with full legal item numbering, e.g. \\u003Ca href=\\\"https://1.4.2.6\\\"\\u003E1.4.2.6\\u003C/a\\u003E, and automatic permanent hyperlink anchors for every item\\u003C/li\\u003E\\n\\u003Cli\\u003Ethe only free-form contact manager with full-text search for Emacs\\u003C/li\\u003E\\n\\u003Cli\\u003Erapid and precise window, frame and buffer placement on screen\\u003C/li\\u003E\\n\\u003Cli\\u003Ean extensive menu of typed web searches, e.g. dictionary, wikipedia and stackoverflow, plus convenient, fast file and line finding functions\\u003C/li\\u003E\\n\\u003Cli\\u003Eimmediate execution of a series of key presses just by typing them out. For example, a M-RETURN press on: {C-x C-b C-s scratch RET C-a} will find the first buffer menu item that contains \\u0026#39;scratch\\u0026#39;; then leave point at the beginning of its line. Build interactive tutorials with this.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Magic of Implicit Buttons and the Action Key\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EFor near instant gratification, try Hyperbole\\u0026#39;s \\u0026#39;implicit button\\u0026#39; capabilities (hyper-buttons that Hyperbole gives you for free by recognizing all types of references embedded within text such as pathnames or error message lines). Below are more complex examples to show the power; simpler ones can be found within the Hyperbole DEMO file.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EImplicit buttons are activated by pressing the Action Key, M*-RETURN*. Once Hyperbole is loaded in your Emacs, pressing \\u003Cem\\u003EM-RETURN\\u003C/em\\u003E on any of these examples *in virtually any buffer* will display the associated referent in a chosen window or frame, handling all variable substitution and full path resolution:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E \\u0026quot;find-func.el\\u0026quot; Find this file whether gzipped or not\\n in the Emacs Lisp load-path\\n\\n \\u0026quot;${hyperb:dir}/HY-NEWS\\u0026quot; Resolve variable, show Hyperbole news\\n\\n \\u0026quot;${PATH}/umask\\u0026quot; Display a script somewhere in multi-dir PATH\\n\\n \\u0026quot;${hyperb:dir}/DEMO#Hyperbole Menus\\u0026quot; Org mode outline, Markdown, and HTML # refs\\n\\n \\u0026quot;(hyperbole)Menus\\u0026quot; Texinfo and Info node links\\n\\n \\u0026quot;c:/Users\\u0026quot;, \\u0026quot;c:\\\\Users\\u0026quot;, \\u0026quot;/C/Users\\u0026quot;, \\u0026quot;/c/Users\\u0026quot;, and \\u0026quot;/mnt/c/Users\\u0026quot;\\n On Windows and Windows Subsystem for Linux,\\n Hyperbole recognizes all of these as the\\n same path and can translate between Windows\\n and POSIX path formats in both directions\\n\\nGit Links:\\n git#branches List branches in current repo/project\\n git#commits List and browse commits for current project\\n git#tags List tags in current project\\n\\n git#/hyperbole From any buffer, dired on the top\\n directory of the local hyperbole\\n project\\n\\n git#/hyperbole/55a1f0 or From any buffer, display hyperbole\\n git#hyperbole/55a1f0 local git commit diff\\n\\n\\nGithub Links:\\n gh@rswgnu Display user\\u0026#39;s home page \\u0026amp; projects\\n\\n github#rswgnu/hyperbole Display user\\u0026#39;s project\\n gh#rswgnu/helm/global_mouse Display user project\\u0026#39;s branch\\n gh#rswgnu/hyperbole/55a1f0 Display user project\\u0026#39;s commit diff\\n\\nGitlab Links:\\n gitlab@seriyalexandrov Display user\\u0026#39;s home page\\n gl#gitlab-org/gitlab-ce/activity Summarize user\\u0026#39;s project activity\\n gl#gitlab-org/gitlab-ce/analytics Display user project\\u0026#39;s cycle_analytics\\n gl#gitlab-org/gitlab-ce/boards Display user project\\u0026#39;s kanban-type issue boards\\n\\nOnce you set the default user and project variables, you can leave them off any reference links:\\n\\n (setq hibtypes-gitlab-default-user \\u0026quot;gitlab-org\\u0026quot;)\\n (setq hibtypes-gitlab-default-project \\u0026quot;gitlab-ce\\u0026quot;)\\n\\n gl#issues or gl#list Display default project\\u0026#39;s issue list\\n gl#labels Display default project\\u0026#39;s issue categories\\n gl#members Display default project\\u0026#39;s staff list\\n gl#contributors Show contributor push frequency charts\\n gl#merge_requests or gl#pulls Display default project\\u0026#39;s pull requests\\n gl#milestones Display default project\\u0026#39;s milestones status\\n gl#pages Display default project\\u0026#39;s web pages\\n gl#snippets Project snippets, diffs and text with discussion\\n gl#groups List all available groups of projects\\n gl#projects List all available projects\\n\\n gl#milestone=38 Show a specific project milestone\\n gl#snippet/1689487 Show a specific project snippet\\n\\nEven useful social media links:\\n tw#travel or twitter#travel Display twitter hashtag matches\\n fb#technology Display facebook hashtag matches\\n\\nHyperbole uses simple prefix characters with paths to make them executable:\\n \\u0026quot;!/bin/date\\u0026quot; Execute as a non-windowed program within a shell\\n \\u0026quot;\\u0026amp;/opt/X11/bin/xeyes\\u0026quot; Execute as a windowed program;\\n \\u0026quot;-find-func.el\\u0026quot; Load/execute this Emacs Lisp library\\n\\n File \\u0026quot;/usr/lib/python3.7/ast.py\\u0026quot;, line 37, in parse\\n Jump to error/stack trace source\\n\\n \\u0026quot;/ftp:anonymous@ftp.gnu.org:\\u0026quot; Tramp remote paths\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Ch1\\u003ETry It - Installs or Uninstalls in a Minute\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EHyperbole lets you concentrate more on your work. Then as you grow with it across time, it helps speed your work across weeks and months. It installs in about a minute and can be uninstalled even faster if ever need be. Give it a try.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can boost your day-to-day productivity with Emacs and your ability to manage information stored across many different machines on the internet.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can be installed like any other package with the Emacs package manager:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {M-x list-packages RET C-s hyperbole RET i x y}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThen to invoke its menu:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {C-h h} or {M-x hyperbole RET}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe best way to get a feel for many of its capabilities is to invoke the interactive DEMO and explore sections of interest:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {C-h h d d}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEnjoy,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Hyperbole Team\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bua5ex\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rswgnu\", \"num_crossposts\": 0, \"num_comments\": 35, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559103504.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here is the second post of my Year of Emacs series. This is the version of my init.el that I am currently using. Two posts in one week because a dotfile doesn't really explore a single mode, package, workflow so I don't feel like it counts.\\n\\nThis weekend, I'll be writing about how I used org-mode to write my Master's Thesis.\\n\\n[https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-\\\\~-may-2019/](https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-~-may-2019/)\", \"author_fullname\": \"t2_jqpn4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Year of Emacs: Starting init.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu99h0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 18, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 18, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559126798.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is the second post of my Year of Emacs series. This is the version of my init.el that I am currently using. Two posts in one week because a dotfile doesn\\u0026#39;t really explore a single mode, package, workflow so I don\\u0026#39;t feel like it counts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis weekend, I\\u0026#39;ll be writing about how I used org-mode to write my Master\\u0026#39;s Thesis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-%7E-may-2019/\\\"\\u003Ehttps://jonathanabennett.github.io/blog/2019/05/28/emacs.org-~-may-2019/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu99h0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doulos05\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu99h0/year_of_emacs_starting_initel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu99h0/year_of_emacs_starting_initel/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559097998.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm slowly working on eliminating my need for a shell by moving more and more functionality into Emacs. \\n\\nI am really interested in getting my feet wet with Emacs modules, but I don't really have any ideas for stuff to wrap/write?\\n\\nDoes anyone have any lower-level functionality that they've really wished they could have in Emacs but haven't been able to get yet?\\n\\nI'm also experimenting with dbus and Emacs, so if there are any ideas with that, I'd like to play around with that as well.\\n\\nEDIT: just a quick clarification. It seems that some people misunderstood what I mean by module. I was specifically referring to Emacs' [dynamic modules](https://www.gnu.org/software/emacs/manual/html_node/elisp/Dynamic-Modules.html), not mode or library.\\n\\nI'm definitely interested in doing anything I can to make the Emacs community better off, but I was specifically asking for ideas relating to dynamic modules or using Emacs' dbus wrapper.\", \"author_fullname\": \"t2_clfs9gn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Any interesting ideas for Emacs modules?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu83ku\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 22, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 22, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559165757.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559119874.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m slowly working on eliminating my need for a shell by moving more and more functionality into Emacs. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am really interested in getting my feet wet with Emacs modules, but I don\\u0026#39;t really have any ideas for stuff to wrap/write?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have any lower-level functionality that they\\u0026#39;ve really wished they could have in Emacs but haven\\u0026#39;t been able to get yet?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m also experimenting with dbus and Emacs, so if there are any ideas with that, I\\u0026#39;d like to play around with that as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: just a quick clarification. It seems that some people misunderstood what I mean by module. I was specifically referring to Emacs\\u0026#39; \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/elisp/Dynamic-Modules.html\\\"\\u003Edynamic modules\\u003C/a\\u003E, not mode or library.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m definitely interested in doing anything I can to make the Emacs community better off, but I was specifically asking for ideas relating to dynamic modules or using Emacs\\u0026#39; dbus wrapper.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu83ku\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"egregius313\", \"num_crossposts\": 0, \"num_comments\": 27, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu83ku/any_interesting_ideas_for_emacs_modules/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu83ku/any_interesting_ideas_for_emacs_modules/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559091074.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My idea is, displaying the scheduled agenda item at current time in the header modeline, is there any way to get it as a string?\\n\\nFor example I have this:\\n\\n * TODO Do something here\\n \\u003C2019-05-28 16:30-17:00\\u003E\\n\\nAnd now is 16:45, I want to get the string `TODO Do something here`.\", \"author_fullname\": \"t2_f7e7n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there anyway to get scheduled agenda item at current time?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu7hs4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559116512.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy idea is, displaying the scheduled agenda item at current time in the header modeline, is there any way to get it as a string?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example I have this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Do something here\\n \\u0026lt;2019-05-28 16:30-17:00\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnd now is 16:45, I want to get the string \\u003Ccode\\u003ETODO Do something here\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7hs4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"huydotnet\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu7hs4/is_there_anyway_to_get_scheduled_agenda_item_at/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu7hs4/is_there_anyway_to_get_scheduled_agenda_item_at/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559087712.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm using LISPBOX for Windows: [https://common-lisp.net/project/lispbox/](https://common-lisp.net/project/lispbox/)\\n\\nEverything works great, however when I create a new file (for creating lisps the editor is not indenting my parenthesis.\\n\\nIt indents just fine in the REPL, but not in the new file. The new file does parenthesis matching just fine. It also will compile to the REPL just fine.\\n\\nIt just won't indent!!!\\n\\nHow can I fix this?\", \"author_fullname\": \"t2_3nv0r2zn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SLIME not indenting...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu3uqy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559098225.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using LISPBOX for Windows: \\u003Ca href=\\\"https://common-lisp.net/project/lispbox/\\\"\\u003Ehttps://common-lisp.net/project/lispbox/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEverything works great, however when I create a new file (for creating lisps the editor is not indenting my parenthesis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt indents just fine in the REPL, but not in the new file. The new file does parenthesis matching just fine. It also will compile to the REPL just fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt just won\\u0026#39;t indent!!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I fix this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu3uqy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gambledrum1\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu3uqy/slime_not_indenting/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu3uqy/slime_not_indenting/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559069425.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've been working on my first bit of elisp, a minor mode to make writing ruby scripts a bit easier, but since I'm pretty new to this, I'm not sure of what the best practices are. Are there any naming conventions for variable/function names that I should adhere to or any pitfalls that I should be aware of? When I get it into a more finished state, should I submit it to melpa, and if so, how would I go about doing that?\\n\\nEdit: For future programmers, here are a few things I've learned:\\n\\n* Magic autoload cookies ***need*** to have three semicolons before them or the autoload file will not build correctly. I can't find anything documenting this behavior, which made debugging really frustrating.\\n\\n Like this:\\n ;;;###autoload\\n Not these:\\n ;###autoload\\n ;;###autoload\\n ;;;;###autoload\\n\\n* Docstrings should not be indented after the first line. This looks terrible in the code, but when the docstrings are opened up in help mode, they will look wonky if they are indented.\\n* `defcustom` should be used for variables, not `defvar`. This is so users can set custom values for the variables via the customization interface. Similarly, `defgroup` should be used to create a custom group so that the customizable variables for your mode can be easily accessed/discovered.\", \"author_fullname\": \"t2_28kz9s00\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Any tips for writing minor modes?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu3ql3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 22, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 22, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559233037.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559097649.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been working on my first bit of elisp, a minor mode to make writing ruby scripts a bit easier, but since I\\u0026#39;m pretty new to this, I\\u0026#39;m not sure of what the best practices are. Are there any naming conventions for variable/function names that I should adhere to or any pitfalls that I should be aware of? When I get it into a more finished state, should I submit it to melpa, and if so, how would I go about doing that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: For future programmers, here are a few things I\\u0026#39;ve learned:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EMagic autoload cookies \\u003Cstrong\\u003E\\u003Cem\\u003Eneed\\u003C/em\\u003E\\u003C/strong\\u003E to have three semicolons before them or the autoload file will not build correctly. I can\\u0026#39;t find anything documenting this behavior, which made debugging really frustrating.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ELike this:\\n ;;;###autoload\\nNot these:\\n ;###autoload\\n ;;###autoload\\n ;;;;###autoload\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDocstrings should not be indented after the first line. This looks terrible in the code, but when the docstrings are opened up in help mode, they will look wonky if they are indented.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Edefcustom\\u003C/code\\u003E should be used for variables, not \\u003Ccode\\u003Edefvar\\u003C/code\\u003E. This is so users can set custom values for the variables via the customization interface. Similarly, \\u003Ccode\\u003Edefgroup\\u003C/code\\u003E should be used to create a custom group so that the customizable variables for your mode can be easily accessed/discovered.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu3ql3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"samuel_first\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu3ql3/any_tips_for_writing_minor_modes/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu3ql3/any_tips_for_writing_minor_modes/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559068849.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bu3ql3\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["419643"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:17 GMT"], "x-ratelimit-remaining": ["596.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "x-ratelimit-used": ["4"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914216.368294,VS0,VE816"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["584"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:30:17"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_bxtwfg"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:18 GMT"], "x-ratelimit-remaining": ["595.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "x-ratelimit-used": ["5"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914218.248963,VS0,VE68"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["582"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_bxtwfg"}, "recorded_at": "2019-06-07T13:30:18"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9nx63\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skouakskouek\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559913189.0, \"send_replies\": true, \"parent_id\": \"t3_bxu83g\", \"score\": 1, \"author_fullname\": \"t2_elo7h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hi, I'm not sure about what I should do to have syntax highlighting on my code block.\\n\\nI added this to my emacs file, to no success:\\n\\n (setq org-src-fontify-natively t\\n org-src-tab-acts-natively t\\n org-confirm-babel-evaluate nil\\n org-edit-src-content-indentation 0)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eq9nx63\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I\\u0026#39;m not sure about what I should do to have syntax highlighting on my code block.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI added this to my emacs file, to no success:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-src-fontify-natively t\\n org-src-tab-acts-natively t\\n org-confirm-babel-evaluate nil\\n org-edit-src-content-indentation 0)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/eq9nx63/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1559941989.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxooz7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g6db\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559905273.0, \"send_replies\": true, \"parent_id\": \"t3_bxooz7\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Try `(add-to-list 'org-src-lang-modes '(\\\"mathematica\\\" . wolfram)).`\", \"link_title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g6db\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETry \\u003Ccode\\u003E(add-to-list \\u0026#39;org-src-lang-modes \\u0026#39;(\\u0026quot;mathematica\\u0026quot; . wolfram)).\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/eq9g6db/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"created\": 1559934073.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7h9nd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559846733.0, \"send_replies\": true, \"parent_id\": \"t1_eq7e68j\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Oh my, TIL. Thanks for pointing me into the right direction! I even stumbled upon that variable but ignored it because of the *fold* in it's name. So, thank you again! :-)\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7h9nd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh my, TIL. Thanks for pointing me into the right direction! I even stumbled upon that variable but ignored it because of the \\u003Cem\\u003Efold\\u003C/em\\u003E in it\\u0026#39;s name. So, thank you again! :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7h9nd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559875533.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7h0nk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559846610.0, \"send_replies\": true, \"parent_id\": \"t1_eq6cg2w\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003Ean *all small caps* string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search\\n\\nSpot on, I didn't even notice that, thank you!\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7h0nk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ean \\u003Cem\\u003Eall small caps\\u003C/em\\u003E string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESpot on, I didn\\u0026#39;t even notice that, thank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7h0nk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559875410.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7e68j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559845225.0, \"send_replies\": true, \"parent_id\": \"t3_bxfd1r\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \" helm-case-fold-search is a variable defined in \\u2018helm.el\\u2019.\\n Its value is \\u2018smart\\u2019\\n\\n Documentation:\\n Adds \\u2019smart\\u2019 option to \\u2018case-fold-search\\u2019.\\n Smart option ignores case for searches as long as there are no\\n upper case characters in the pattern.\\n\\n Use nil or t to turn off smart behavior and use\\n \\u2018case-fold-search\\u2019 behavior.\\n\\n Default is smart.\\n\\n NOTE: Case fold search has no effect when searching asynchronous\\n sources, which rely on customized features implemented directly\\n into their execution process. See helm-grep.el for an example.\\n\\n You can customize this variable.\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7e68j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003Ehelm-case-fold-search is a variable defined in \\u2018helm.el\\u2019.\\nIts value is \\u2018smart\\u2019\\n\\nDocumentation:\\nAdds \\u2019smart\\u2019 option to \\u2018case-fold-search\\u2019.\\nSmart option ignores case for searches as long as there are no\\nupper case characters in the pattern.\\n\\nUse nil or t to turn off smart behavior and use\\n\\u2018case-fold-search\\u2019 behavior.\\n\\nDefault is smart.\\n\\nNOTE: Case fold search has no effect when searching asynchronous\\nsources, which rely on customized features implemented directly\\ninto their execution process. See helm-grep.el for an example.\\n\\nYou can customize this variable.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7e68j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559874025.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7dx8p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559845112.0, \"send_replies\": true, \"parent_id\": \"t1_eq6t46m\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Well, there is one potential solution I can think of: Write a function which can be used as advice to the appropriate function which would add the proper prefix to image paths when Org displays inline images, and activate the advice with `eval` in a buffer-local variable line in each Org file. (Using dir-locals would be even better, but I don't know if you can `eval` with that.)\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7dx8p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, there is one potential solution I can think of: Write a function which can be used as advice to the appropriate function which would add the proper prefix to image paths when Org displays inline images, and activate the advice with \\u003Ccode\\u003Eeval\\u003C/code\\u003E in a buffer-local variable line in each Org file. (Using dir-locals would be even better, but I don\\u0026#39;t know if you can \\u003Ccode\\u003Eeval\\u003C/code\\u003E with that.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq7dx8p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559873912.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq74izr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559840395.0, \"send_replies\": true, \"parent_id\": \"t1_eq0moy7\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I did something like that.\\n\\nIs yours text or gui?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq74izr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI did something like that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs yours text or gui?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq74izr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559869195.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq74am7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559840281.0, \"send_replies\": true, \"parent_id\": \"t1_epo4x0j\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \" \\u003E I'm curious as to what a \\\"stand-alone\\\" version of org mode would look like.\\n\\nInteresting question. To start off, please tell me what\\n\\n emacs -f org-mode my-big-org-mode-file.txt\\n\\nwould lack, as an implementation.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eq74am7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026gt; I\\u0026#39;m curious as to what a \\u0026quot;stand-alone\\u0026quot; version of org mode would look like.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EInteresting question. To start off, please tell me what\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eemacs -f org-mode my-big-org-mode-file.txt\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewould lack, as an implementation.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/eq74am7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559869081.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6t46m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559834955.0, \"send_replies\": true, \"parent_id\": \"t1_eq4m54v\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Usually, I prefer to define something once instead of copying it multiple times.\\n\\nThen, if I need to change the folder name, I just need to change on variable at the beginning of my org-mode file instead of having to do a search/replace thing.\\n\\nBut this is just personal preference.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6t46m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsually, I prefer to define something once instead of copying it multiple times.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen, if I need to change the folder name, I just need to change on variable at the beginning of my org-mode file instead of having to do a search/replace thing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut this is just personal preference.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq6t46m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559863755.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6cg2w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559826572.0, \"send_replies\": true, \"parent_id\": \"t3_bxfd1r\", \"score\": 4, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm not a helm user myself, but a frequent behaviour I meet around in regex searches are that an _all small caps_ string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search. So, if this is the same behaviour there, `\\\"Berlin/Todo\\\"` is case sensitive, whereas `\\\"berlin/todo\\\"` wouldn't be. (That's only a guess though...)\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq6cg2w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not a helm user myself, but a frequent behaviour I meet around in regex searches are that an \\u003Cem\\u003Eall small caps\\u003C/em\\u003E string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search. So, if this is the same behaviour there, \\u003Ccode\\u003E\\u0026quot;Berlin/Todo\\u0026quot;\\u003C/code\\u003E is case sensitive, whereas \\u003Ccode\\u003E\\u0026quot;berlin/todo\\u0026quot;\\u003C/code\\u003E wouldn\\u0026#39;t be. (That\\u0026#39;s only a guess though...)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq6cg2w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559855372.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq61yd0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559820069.0, \"send_replies\": true, \"parent_id\": \"t1_eq0mczn\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I can't reproduce this. I had to add (use-package dash) to your init.el file, but after that, ivy-contacts worked fine for me, and showed your two contacts. Maybe if you run M-x toggle-debug-on-error a more informative error message might be shown.\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_eq61yd0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t reproduce this. I had to add (use-package dash) to your init.el file, but after that, ivy-contacts worked fine for me, and showed your two contacts. Maybe if you run M-x toggle-debug-on-error a more informative error message might be shown.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/eq61yd0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559848869.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq4m54v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559779949.0, \"send_replies\": true, \"parent_id\": \"t1_eq499va\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Maybe I could use a snippet for that that automatically write the name of the figure folder (it's based on the note filename) but I don't really like that...\\n\\nWhy?\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq4m54v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EMaybe I could use a snippet for that that automatically write the name of the figure folder (it\\u0026#39;s based on the note filename) but I don\\u0026#39;t really like that...\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhy?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq4m54v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559808749.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq499va\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559772032.0, \"send_replies\": true, \"parent_id\": \"t1_eq3fu1x\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have a folder with all my notes on books or articles.\\nEach note has its own org file.\\nThen I have a figs folder and subfolders for each of my notes. I don't want to have one fog folder for all my notes as I have hundreds of figures.\\n\\nSo in the end, I have to manually put [[figs/verylongfilename/figurename]] which is quite boring. Maybe I could use a snippet for that that automatically write the name of the figure folder (it's based on the note filename) but I don't really like that...\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq499va\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a folder with all my notes on books or articles.\\nEach note has its own org file.\\nThen I have a figs folder and subfolders for each of my notes. I don\\u0026#39;t want to have one fog folder for all my notes as I have hundreds of figures.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo in the end, I have to manually put [[figs/verylongfilename/figurename]] which is quite boring. Maybe I could use a snippet for that that automatically write the name of the figure folder (it\\u0026#39;s based on the note filename) but I don\\u0026#39;t really like that...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq499va/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559800832.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq3fu1x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559755118.0, \"send_replies\": true, \"parent_id\": \"t1_epztbtv\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E The thing is that I have complicated folder names for my figures.\\n\\nThat's a key point that you didn't mention in your question. Without knowing that, it seems like you're trying to avoid typing `figs/`, which would be kind of silly. :)\\n\\nSo why don't you put all the figures in `figs/`?\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq3fu1x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe thing is that I have complicated folder names for my figures.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s a key point that you didn\\u0026#39;t mention in your question. Without knowing that, it seems like you\\u0026#39;re trying to avoid typing \\u003Ccode\\u003Efigs/\\u003C/code\\u003E, which would be kind of silly. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo why don\\u0026#39;t you put all the figures in \\u003Ccode\\u003Efigs/\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq3fu1x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559783918.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq2i8vy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dr_Schmoctor\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559737707.0, \"send_replies\": true, \"parent_id\": \"t1_eq2g6te\", \"score\": 1, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"What I'd like to see most is notifications being able to notify before the deadline. I make due by setting 'scheduled' some time before the 'deadline' so it notifies me beforehand, but it'd be nice to have an easier setting for it.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq2i8vy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat I\\u0026#39;d like to see most is notifications being able to notify before the deadline. I make due by setting \\u0026#39;scheduled\\u0026#39; some time before the \\u0026#39;deadline\\u0026#39; so it notifies me beforehand, but it\\u0026#39;d be nice to have an easier setting for it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq2i8vy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559766507.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq2g6te\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"enilkcals\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559736393.0, \"send_replies\": true, \"parent_id\": \"t1_eq29p8x\", \"score\": 1, \"author_fullname\": \"t2_91o9h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Nice, I'd somehow missed that will give it a whirl, thank you.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq2g6te\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice, I\\u0026#39;d somehow missed that will give it a whirl, thank you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq2g6te/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559765193.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq29p8x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dr_Schmoctor\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559731937.0, \"send_replies\": true, \"parent_id\": \"t1_eq1kjlt\", \"score\": 3, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003Ethe only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application \\n\\nI have the Auto-sync (experimental) option enabled and it syncs as you go.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq29p8x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ethe only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI have the Auto-sync (experimental) option enabled and it syncs as you go.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq29p8x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559760737.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwcmiw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq28lvx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gabrielelana\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559731176.0, \"send_replies\": true, \"parent_id\": \"t3_bwcmiw\", \"score\": 1, \"author_fullname\": \"t2_flffy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I was really disappointed by this unilateral and arbitrary change without a way to opt-out :-(\\n\\nAnyway I solved the issue with [this piece of code](https://github.com/gabrielelana/dotfiles/blob/master/emacs.d/local-packages/org-functions.el) in particular the function `cc/org-mode-buffer-force-uppercase-keywords`\", \"link_title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"author_flair_css_class\": null, \"name\": \"t1_eq28lvx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was really disappointed by this unilateral and arbitrary change without a way to opt-out :-(\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway I solved the issue with \\u003Ca href=\\\"https://github.com/gabrielelana/dotfiles/blob/master/emacs.d/local-packages/org-functions.el\\\"\\u003Ethis piece of code\\u003C/a\\u003E in particular the function \\u003Ccode\\u003Ecc/org-mode-buffer-force-uppercase-keywords\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/eq28lvx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"report_reasons\": null, \"link_author\": \"BOOF_GOBLIN_69\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"created\": 1559759976.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq1kjlt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"enilkcals\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559711909.0, \"send_replies\": true, \"parent_id\": \"t1_eq0o23a\", \"score\": 3, \"author_fullname\": \"t2_91o9h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Came to suggest exactly the same thing which is what I too do. Its a nice smooth experience, phone uses Syncthing to synchronise the files between internal SD and computer when connected to WiFi at home, the only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq1kjlt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECame to suggest exactly the same thing which is what I too do. Its a nice smooth experience, phone uses Syncthing to synchronise the files between internal SD and computer when connected to WiFi at home, the only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq1kjlt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559740709.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0qw8h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559691873.0, \"send_replies\": true, \"parent_id\": \"t1_eq0o23a\", \"score\": 2, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have heard of Orgzly and I would like to give it a try. It looks like it is a win in the ease of use category! Using full-blown emacs on a little phone screen (taken up primarily by the keyboard) is not easy! However, what this lacks in ease of use, it makes up in completeness; I have access to everything I can do with org mode on my laptop -- on my phone. It has all my capture templates, custom bindings, todo keywords. Everything!\\n\\nI'm not sure I would be able to do that with Orgzly, but I have not tried yet. What do you think?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0qw8h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have heard of Orgzly and I would like to give it a try. It looks like it is a win in the ease of use category! Using full-blown emacs on a little phone screen (taken up primarily by the keyboard) is not easy! However, what this lacks in ease of use, it makes up in completeness; I have access to everything I can do with org mode on my laptop -- on my phone. It has all my capture templates, custom bindings, todo keywords. Everything!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure I would be able to do that with Orgzly, but I have not tried yet. What do you think?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0qw8h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559720673.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0o23a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"Dr_Schmoctor\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559689650.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 7, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"[Orgzly](https://play.google.com/store/apps/details?id=com.orgzly\\u0026hl=en) is quite nice. \\n\\nI have it synced with my computer's .org files with Syncthing.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0o23a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://play.google.com/store/apps/details?id=com.orgzly\\u0026amp;hl=en\\\"\\u003EOrgzly\\u003C/a\\u003E is quite nice. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have it synced with my computer\\u0026#39;s .org files with Syncthing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0o23a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559718450.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0n3x7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559688909.0, \"send_replies\": true, \"parent_id\": \"t1_eq0l8hv\", \"score\": 2, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Will do!\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0n3x7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWill do!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0n3x7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559717709.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0moy7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559688592.0, \"send_replies\": true, \"parent_id\": \"t1_eq0dh59\", \"score\": 10, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I used Termux [https://termux.com/](https://termux.com/) to run linux on the pixel 2. I ran `apt install emacs` and `apt install git`. I installed \\\"Hacker Keyboard\\\" to make it easier to write commands within termux, and to use emacs.\\n\\nI cloned my dotfiles `git clone https://github.com/nackjicholson/dotfiles`.\\n\\nI used [https://syncthing.net/](https://syncthing.net/) to sync my org files at `~/Sync/org` between both my laptop and pixel 2.\\n\\nI had to enable \\\"storage\\\" in Termux to let it access my androids files.\\n\\nThen I had to do some symlinking.\\n\\n`ln -s \\\"$HOME/storage/shared/Sync\\\" \\\"$HOME/Sync\\\"`\\n\\n`ln -s \\\"$HOME/dotfiles/mac/emacs.d\\\" \\\"$HOME/.emacs.d\\\"`\\n\\n\\u0026#x200B;\\n\\nDoes this all work? Yes.\\n\\nDoes this all work really well? Not really.\\n\\nDid I do a lot of this on the bus to work today? Yup.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0moy7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used Termux \\u003Ca href=\\\"https://termux.com/\\\"\\u003Ehttps://termux.com/\\u003C/a\\u003E to run linux on the pixel 2. I ran \\u003Ccode\\u003Eapt install emacs\\u003C/code\\u003E and \\u003Ccode\\u003Eapt install git\\u003C/code\\u003E. I installed \\u0026quot;Hacker Keyboard\\u0026quot; to make it easier to write commands within termux, and to use emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cloned my dotfiles \\u003Ccode\\u003Egit clone https://github.com/nackjicholson/dotfiles\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used \\u003Ca href=\\\"https://syncthing.net/\\\"\\u003Ehttps://syncthing.net/\\u003C/a\\u003E to sync my org files at \\u003Ccode\\u003E~/Sync/org\\u003C/code\\u003E between both my laptop and pixel 2.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI had to enable \\u0026quot;storage\\u0026quot; in Termux to let it access my androids files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I had to do some symlinking.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eln -s \\u0026quot;$HOME/storage/shared/Sync\\u0026quot; \\u0026quot;$HOME/Sync\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eln -s \\u0026quot;$HOME/dotfiles/mac/emacs.d\\u0026quot; \\u0026quot;$HOME/.emacs.d\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes this all work? Yes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes this all work really well? Not really.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDid I do a lot of this on the bus to work today? Yup.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0moy7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559717392.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 10}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0mczn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"_martini97\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559688343.0, \"send_replies\": true, \"parent_id\": \"t1_epyu7qo\", \"score\": 1, \"author_fullname\": \"t2_9eav0az\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hey u/jkitchin I'm having some issues with the `contacts-update-cache` when trying to use `ivy-contacts`, it is throwing this error:\\n\\n Updating contacts cache for \\u003Cmy contacts file\\u003E\\n let*: Wrong type argument: consp, nil\\n\\nI created [this branch](https://github.com/martini97/.emacs.d/tree/scimax-contacts) that reproduces the issue with a minimal config.\\n\\nAny pointers?\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_eq0mczn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey \\u003Ca href=\\\"/u/jkitchin\\\"\\u003Eu/jkitchin\\u003C/a\\u003E I\\u0026#39;m having some issues with the \\u003Ccode\\u003Econtacts-update-cache\\u003C/code\\u003E when trying to use \\u003Ccode\\u003Eivy-contacts\\u003C/code\\u003E, it is throwing this error:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EUpdating contacts cache for \\u0026lt;my contacts file\\u0026gt;\\nlet*: Wrong type argument: consp, nil\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI created \\u003Ca href=\\\"https://github.com/martini97/.emacs.d/tree/scimax-contacts\\\"\\u003Ethis branch\\u003C/a\\u003E that reproduces the issue with a minimal config.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny pointers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/eq0mczn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559717143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0l8hv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hmlwilliams\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559687491.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 5, \"author_fullname\": \"t2_s1eux6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Couldn't help but notice your GTD Todos included a journal, make sure to give [org-journal](https://github.com/bastibe/org-journal) a look!\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0l8hv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECouldn\\u0026#39;t help but notice your GTD Todos included a journal, make sure to give \\u003Ca href=\\\"https://github.com/bastibe/org-journal\\\"\\u003Eorg-journal\\u003C/a\\u003E a look!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0l8hv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559716291.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0ivh2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ford_beeblebrox\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559685763.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 2, \"author_fullname\": \"t2_9hd4y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Termux rules ! \\n\\nEmacs , org , python , ssh \\u0026 mosh - fast to set things up, all only an apt-get away.\\n\\nCompiling apk's for the platform on the platform.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0ivh2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETermux rules ! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmacs , org , python , ssh \\u0026amp; mosh - fast to set things up, all only an apt-get away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECompiling apk\\u0026#39;s for the platform on the platform.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0ivh2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559714563.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0hbsy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Salpal673\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559684698.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 5, \"author_fullname\": \"t2_2drmw0wd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Using **Termux**, a Linux distribution for Android.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0hbsy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsing \\u003Cstrong\\u003ETermux\\u003C/strong\\u003E, a Linux distribution for Android.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0hbsy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559713498.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0gs1z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RoccoTech00\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559684420.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 2, \"author_fullname\": \"t2_88l5xwz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Android? How?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0gs1z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAndroid? How?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0gs1z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559713220.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0dh59\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"loskutak-the-ptak\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559682620.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 6, \"author_fullname\": \"t2_ke7apcf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"how?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0dh59\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehow?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0dh59/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559711420.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epztbtv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559672254.0, \"send_replies\": true, \"parent_id\": \"t1_epzrglx\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I know that, the point is that I don't want to have to type the folder each time.\\nThe thing is that I have complicated folder names for my figures.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_epztbtv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know that, the point is that I don\\u0026#39;t want to have to type the folder each time.\\nThe thing is that I have complicated folder names for my figures.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/epztbtv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559701054.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epzrglx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559671221.0, \"send_replies\": true, \"parent_id\": \"t3_bwmraz\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Use `[[figs/figurename.png]]`.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_epzrglx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUse \\u003Ccode\\u003E[[figs/figurename.png]]\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/epzrglx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559700021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epywsc9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"_martini97\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559653023.0, \"send_replies\": true, \"parent_id\": \"t1_epyu7qo\", \"score\": 1, \"author_fullname\": \"t2_9eav0az\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, I'm still getting to know elisp so I have a hard time doing things from scratch, I will test it tonight and let you know if it worked\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epywsc9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I\\u0026#39;m still getting to know elisp so I have a hard time doing things from scratch, I will test it tonight and let you know if it worked\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epywsc9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559681823.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw916a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyuk3k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559651343.0, \"send_replies\": true, \"parent_id\": \"t3_bw916a\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I don't think you can do this with C+u method. I think you have to manually edit the link after it is inserted.\\n\\nYou probably can do this though where you want the link:\\n\\nC-c C-l then, type cite: and select the kind of cite you want. You can then select which key to use. And finally you type the page numbers into the description.\", \"link_title\": \"How do you include page number in page number in org-ref with helm?\", \"author_flair_css_class\": null, \"name\": \"t1_epyuk3k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t think you can do this with C+u method. I think you have to manually edit the link after it is inserted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou probably can do this though where you want the link:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EC-c C-l then, type cite: and select the kind of cite you want. You can then select which key to use. And finally you type the page numbers into the description.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/epyuk3k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"report_reasons\": null, \"link_author\": \"kandidate\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"created\": 1559680143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyu7qo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559651075.0, \"send_replies\": true, \"parent_id\": \"t3_bwk33h\", \"score\": 2, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I do something like this in https://github.com/jkitchin/scimax/blob/master/contacts.el#L320 with ivy. There is also a helm version (https://github.com/jkitchin/scimax/blob/master/contacts.el#L518) that I don't use anymore (there is a note that it is slow).\\n\\nThis is roughly built on the format of org-contacts and should be compatible with it.\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epyu7qo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do something like this in \\u003Ca href=\\\"https://github.com/jkitchin/scimax/blob/master/contacts.el#L320\\\"\\u003Ehttps://github.com/jkitchin/scimax/blob/master/contacts.el#L320\\u003C/a\\u003E with ivy. There is also a helm version (\\u003Ca href=\\\"https://github.com/jkitchin/scimax/blob/master/contacts.el#L518\\\"\\u003Ehttps://github.com/jkitchin/scimax/blob/master/contacts.el#L518\\u003C/a\\u003E) that I don\\u0026#39;t use anymore (there is a note that it is slow).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is roughly built on the format of org-contacts and should be compatible with it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epyu7qo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559679875.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epylnd4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559642162.0, \"send_replies\": true, \"parent_id\": \"t3_bwk33h\", \"score\": 2, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"While I can't elispit myself, I'm sure you can use helm or ivy to open a list of contacts and -upon selection- insert directly a link to it...\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epylnd4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile I can\\u0026#39;t elispit myself, I\\u0026#39;m sure you can use helm or ivy to open a list of contacts and -upon selection- insert directly a link to it...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epylnd4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559670962.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwcmiw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epx8v9s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"marcowahl\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559594797.0, \"send_replies\": true, \"parent_id\": \"t3_bwcmiw\", \"score\": 1, \"author_fullname\": \"t2_it55tk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"As far as I can see there is no configuration switch for that. \\n\\nYou could ask for the switch on the Org mailing list.\", \"link_title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"author_flair_css_class\": null, \"name\": \"t1_epx8v9s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs far as I can see there is no configuration switch for that. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou could ask for the switch on the Org mailing list.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/epx8v9s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"report_reasons\": null, \"link_author\": \"BOOF_GOBLIN_69\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"created\": 1559623597.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epwq376\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559581984.0, \"send_replies\": true, \"parent_id\": \"t1_epvbmh0\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"`awhen` is from the `anaphora` package. Just search the package list for \\\"anaphoric\\\".\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epwq376\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Eawhen\\u003C/code\\u003E is from the \\u003Ccode\\u003Eanaphora\\u003C/code\\u003E package. Just search the package list for \\u0026quot;anaphoric\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epwq376/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559610784.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9eiq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw3g8q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cipharius\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559564392.0, \"send_replies\": true, \"parent_id\": \"t1_epw366x\", \"score\": 2, \"author_fullname\": \"t2_2hldsj4s\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I recommend checking out the Org mode manual with `info` command - it's not like I remember these things by heart myself, haha. \\n\\nUseful for both a quick reference and just reading to learn new ways of using Org mode.\", \"link_title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"author_flair_css_class\": null, \"name\": \"t1_epw3g8q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recommend checking out the Org mode manual with \\u003Ccode\\u003Einfo\\u003C/code\\u003E command - it\\u0026#39;s not like I remember these things by heart myself, haha. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUseful for both a quick reference and just reading to learn new ways of using Org mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/epw3g8q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"created\": 1559593192.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9eiq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw366x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gausby\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559564101.0, \"send_replies\": true, \"parent_id\": \"t1_epw2zfg\", \"score\": 1, \"author_fullname\": \"t2_5n9uk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you! Seems to work perfectly. Gotta learn that format\\u2014it is vary handy, but kinda obscure :)\", \"link_title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"author_flair_css_class\": null, \"name\": \"t1_epw366x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you! Seems to work perfectly. Gotta learn that format\\u2014it is vary handy, but kinda obscure :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/epw366x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"created\": 1559592901.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9eiq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw2zfg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cipharius\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559563901.0, \"send_replies\": true, \"parent_id\": \"t3_bw9eiq\", \"score\": 3, \"author_fullname\": \"t2_2hldsj4s\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You could use more specific formula reference. From a quick experiment, this seems to be an alright solution: `#+TBLFM: @\\u003C\\u003C$2..@\\u003E\\u003E$2=@+1$1-$1;U`\", \"link_title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"author_flair_css_class\": null, \"name\": \"t1_epw2zfg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou could use more specific formula reference. From a quick experiment, this seems to be an alright solution: \\u003Ccode\\u003E#+TBLFM: @\\u0026lt;\\u0026lt;$2..@\\u0026gt;\\u0026gt;$2=@+1$1-$1;U\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/epw2zfg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"created\": 1559592701.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559562994.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvz12r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw1z9b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"anotherRedditIdiot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559562801.0, \"send_replies\": true, \"parent_id\": \"t3_bvz12r\", \"score\": 2, \"author_fullname\": \"t2_138ymc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"How do you use this metadata once you have it? Org has hierarchical tags: https://orgmode.org/manual/Tag-hierarchy.html\\nand effort estimates (time based, not energy based): https://orgmode.org/manual/Effort-estimates.html\\n\\nAt first glance, I would implement the resources as a hierarchicy of tags. I'd also ditch the prefix notation and just spell out the full properties, e.g.:\\n\\n :Energy: (1 4)\", \"link_title\": \"Converting org-tags into properties (recursively)\", \"author_flair_css_class\": null, \"name\": \"t1_epw1z9b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow do you use this metadata once you have it? Org has hierarchical tags: \\u003Ca href=\\\"https://orgmode.org/manual/Tag-hierarchy.html\\\"\\u003Ehttps://orgmode.org/manual/Tag-hierarchy.html\\u003C/a\\u003E\\nand effort estimates (time based, not energy based): \\u003Ca href=\\\"https://orgmode.org/manual/Effort-estimates.html\\\"\\u003Ehttps://orgmode.org/manual/Effort-estimates.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt first glance, I would implement the resources as a hierarchicy of tags. I\\u0026#39;d also ditch the prefix notation and just spell out the full properties, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E:Energy: (1 4)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/epw1z9b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"created\": 1559591601.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epvbmh0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fisxoj\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559529328.0, \"send_replies\": true, \"parent_id\": \"t1_epv27o2\", \"score\": 2, \"author_fullname\": \"t2_7r7zc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm just passing through, but if awhen is the same one I'm used to, it's 'anaphoric' when and will bind the value of its condition to the variable 'it' automatically. Which, I hope, answers both your questions.\\n\\nThat said, I don't know what emacs package provides it.\\n\\nIt's equivalent to\\n\\n(let ((it (property \\\"composer\\\"))\\n (when it\\n (string-prefix \\\"C\\\" it)))\\n\\nIn this case.\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epvbmh0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m just passing through, but if awhen is the same one I\\u0026#39;m used to, it\\u0026#39;s \\u0026#39;anaphoric\\u0026#39; when and will bind the value of its condition to the variable \\u0026#39;it\\u0026#39; automatically. Which, I hope, answers both your questions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat said, I don\\u0026#39;t know what emacs package provides it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s equivalent to\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(let ((it (property \\u0026quot;composer\\u0026quot;))\\n (when it\\n (string-prefix \\u0026quot;C\\u0026quot; it)))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn this case.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epvbmh0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559558128.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epv27o2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eeg_bert\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559522318.0, \"send_replies\": true, \"parent_id\": \"t1_epuyu0b\", \"score\": 1, \"author_fullname\": \"t2_uhm4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Do you `when` instead of `awhen`? Also: I get `(void-variable it)` errors when evaluating this.\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epv27o2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDo you \\u003Ccode\\u003Ewhen\\u003C/code\\u003E instead of \\u003Ccode\\u003Eawhen\\u003C/code\\u003E? Also: I get \\u003Ccode\\u003E(void-variable it)\\u003C/code\\u003E errors when evaluating this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epv27o2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559551118.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559520154.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epuyu0b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559519729.0, \"send_replies\": true, \"parent_id\": \"t1_eputaup\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You are very mistaken. ;) For example, the readme shows this example:\\n\\n (org-ql \\\"~/org/music.org\\\"\\n (and (property \\\"genre\\\" \\\"classical\\\")\\n (property \\\"composer\\\" \\\"Chopin\\\")\\n (not (property \\\"key\\\"))))\\n\\nYou can also use arbitrary lisp code, like:\\n\\n (org-ql \\\"/tmp/music.org\\\"\\n (awhen (property \\\"composer\\\")\\n (string-prefix-p \\\"C\\\" it)))\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epuyu0b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou are very mistaken. ;) For example, the readme shows this example:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(org-ql \\u0026quot;~/org/music.org\\u0026quot;\\n (and (property \\u0026quot;genre\\u0026quot; \\u0026quot;classical\\u0026quot;)\\n (property \\u0026quot;composer\\u0026quot; \\u0026quot;Chopin\\u0026quot;)\\n (not (property \\u0026quot;key\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EYou can also use arbitrary lisp code, like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(org-ql \\u0026quot;/tmp/music.org\\u0026quot;\\n (awhen (property \\u0026quot;composer\\u0026quot;)\\n (string-prefix-p \\u0026quot;C\\u0026quot; it)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epuyu0b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559548529.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eputaup\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eeg_bert\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559515754.0, \"send_replies\": true, \"parent_id\": \"t1_epurujf\", \"score\": 1, \"author_fullname\": \"t2_uhm4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I checked out `org-ql`, and it doesn't look like it offers this AFAIK (instead it's just wrapper around regexp searching, unless I'm mistaken).\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_eputaup\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI checked out \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E, and it doesn\\u0026#39;t look like it offers this AFAIK (instead it\\u0026#39;s just wrapper around regexp searching, unless I\\u0026#39;m mistaken).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/eputaup/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559544554.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epurujf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559514832.0, \"send_replies\": true, \"parent_id\": \"t3_bw317n\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"See `org-map-entries` and `org-ql`.\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epurujf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESee \\u003Ccode\\u003Eorg-map-entries\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epurujf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559543632.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559484864.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_aeaq9d\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ept50p2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"frumious\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1559481805.0, \"send_replies\": true, \"parent_id\": \"t1_emwyyjr\", \"score\": 1, \"author_fullname\": \"t2_32juj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"The recent post about Linkz.org got me to revisit this problem and figured I might as well info dump here. \\n\\nI happen to notice that trying to capture on github.com shows an error in Firefox's Browser Console which doesn't show on pages that can be successfully captured.\\n\\n Content Security Policy: The page\\u2019s settings blocked the loading of a resource at inline (\\u201cscript-src\\u201d).\\n\\nSearches show that disabling `security.csp.enable` in `about:config` will \\\"fix\\\" the problem but is very insecure.\\n\\nKnowing what to search on, I see [Sacha](https://sachachua.com/blog/2015/11/capturing-links-quickly-with-emacsclient-org-protocol-and-chrome-shortcut-manager-on-microsoft-windows-8/) pointed out this problem with GitHub many years ago.\\n\\nOther results hinted at the FF add-ons I was using. Disabling them led to no change in results.\\n\\nI have the `org-protocol` send to a script so I can log the action. When a capture fails on `github.com` there is nothing the log. So, it's not even `org-protocol` that is the problem. This makes me suspect \\\"bookmarklets\\\" and lo, [I find this](https://geordgez.github.io/jots/2017/12/31/xss-csp-bookmarklet).\\n\\nIndeed, making a bookmarklet with just:\\n\\n javascript:alert('hello')\\n\\nfails on `github.com` and succeeds elsewhere.\\n\\nAt this point, I'm way over my head in web tech I don't understand but at least there is a new direction to pursue.\\n\\nEdit: more searching and it seems there's a world of hurt over \\\"CSP\\\".\\n\\nThis [bug report](https://bugzilla.mozilla.org/show_bug.cgi?id=866522) has much of the story including mention of [Bookmarklets context menu](https://addons.mozilla.org/en-US/firefox/addon/bookmarklets-context-menu/) add-on. I've tested with `security.csp.enabled` set to `true`. The \\\"hello\\\" test is okay but instead of running the capture bookmarklets properly it loads some \\\"page\\\"\\n\\n blob:https://github.com/014373a1-e732-4c7a-b9d4-3d17c9d00393\\n\\nMy conclusion: I'll disable CSP. This \\\"feature\\\" seems more like a stupid patch for web sites that can't generate HTML free of XSS and gives more control to the server at the expense of the client/user.\", \"link_title\": \"Anyone using Org mode as snippet manager\", \"author_flair_css_class\": null, \"name\": \"t1_ept50p2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe recent post about Linkz.org got me to revisit this problem and figured I might as well info dump here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI happen to notice that trying to capture on github.com shows an error in Firefox\\u0026#39;s Browser Console which doesn\\u0026#39;t show on pages that can be successfully captured.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EContent Security Policy: The page\\u2019s settings blocked the loading of a resource at inline (\\u201cscript-src\\u201d).\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESearches show that disabling \\u003Ccode\\u003Esecurity.csp.enable\\u003C/code\\u003E in \\u003Ccode\\u003Eabout:config\\u003C/code\\u003E will \\u0026quot;fix\\u0026quot; the problem but is very insecure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKnowing what to search on, I see \\u003Ca href=\\\"https://sachachua.com/blog/2015/11/capturing-links-quickly-with-emacsclient-org-protocol-and-chrome-shortcut-manager-on-microsoft-windows-8/\\\"\\u003ESacha\\u003C/a\\u003E pointed out this problem with GitHub many years ago.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOther results hinted at the FF add-ons I was using. Disabling them led to no change in results.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have the \\u003Ccode\\u003Eorg-protocol\\u003C/code\\u003E send to a script so I can log the action. When a capture fails on \\u003Ccode\\u003Egithub.com\\u003C/code\\u003E there is nothing the log. So, it\\u0026#39;s not even \\u003Ccode\\u003Eorg-protocol\\u003C/code\\u003E that is the problem. This makes me suspect \\u0026quot;bookmarklets\\u0026quot; and lo, \\u003Ca href=\\\"https://geordgez.github.io/jots/2017/12/31/xss-csp-bookmarklet\\\"\\u003EI find this\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIndeed, making a bookmarklet with just:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ejavascript:alert(\\u0026#39;hello\\u0026#39;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Efails on \\u003Ccode\\u003Egithub.com\\u003C/code\\u003E and succeeds elsewhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt this point, I\\u0026#39;m way over my head in web tech I don\\u0026#39;t understand but at least there is a new direction to pursue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: more searching and it seems there\\u0026#39;s a world of hurt over \\u0026quot;CSP\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis \\u003Ca href=\\\"https://bugzilla.mozilla.org/show_bug.cgi?id=866522\\\"\\u003Ebug report\\u003C/a\\u003E has much of the story including mention of \\u003Ca href=\\\"https://addons.mozilla.org/en-US/firefox/addon/bookmarklets-context-menu/\\\"\\u003EBookmarklets context menu\\u003C/a\\u003E add-on. I\\u0026#39;ve tested with \\u003Ccode\\u003Esecurity.csp.enabled\\u003C/code\\u003E set to \\u003Ccode\\u003Etrue\\u003C/code\\u003E. The \\u0026quot;hello\\u0026quot; test is okay but instead of running the capture bookmarklets properly it loads some \\u0026quot;page\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eblob:https://github.com/014373a1-e732-4c7a-b9d4-3d17c9d00393\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EMy conclusion: I\\u0026#39;ll disable CSP. This \\u0026quot;feature\\u0026quot; seems more like a stupid patch for web sites that can\\u0026#39;t generate HTML free of XSS and gives more control to the server at the expense of the client/user.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/aeaq9d/anyone_using_org_mode_as_snippet_manager/ept50p2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/aeaq9d/anyone_using_org_mode_as_snippet_manager/\", \"report_reasons\": null, \"link_author\": \"to1ne\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/aeaq9d/anyone_using_org_mode_as_snippet_manager/\", \"created\": 1559510605.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvqyqw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eprv8ip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559431510.0, \"send_replies\": true, \"parent_id\": \"t3_bvqyqw\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"There exists no code to do that. You will have to write it.\\n\\nIt will probably be easier if you use syntax like `E1 E3`, which can be parsed by splitting the value string on a space, or `(E1 E3)`, which can be parsed as a sexp.\", \"link_title\": \"Matching org tasks against an interval of values\", \"author_flair_css_class\": null, \"name\": \"t1_eprv8ip\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere exists no code to do that. You will have to write it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt will probably be easier if you use syntax like \\u003Ccode\\u003EE1 E3\\u003C/code\\u003E, which can be parsed by splitting the value string on a space, or \\u003Ccode\\u003E(E1 E3)\\u003C/code\\u003E, which can be parsed as a sexp.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/eprv8ip/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"created\": 1559460310.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559418889.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epr5ebh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559418621.0, \"send_replies\": true, \"parent_id\": \"t1_epneizy\", \"score\": 3, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'll take the Hersey approach ;)\\n\\nOrg-mode is customizeable because of Emacs and Lisp. You can take any part of it and play with it, and then you can go behind the scenes and build another part completely, if you want to. You can add your own packages into Emacs that integrate into Org, or don't. I can't imagine Org-mode without Emacs. \\n\\nFor me personally, Org-mode is a safe place. It's away from all the other bells and whistles of all the \\\"awesome GUI apps\\\" that my co-worker use. My mangers use [Evernote](https://evernote.com/). Our office has Office 365 that comes with its own tasks and outlook. Windows has numerous to-do apps, and if that not enough, we have our own spreadsheet-project placed in [Smartsheets](https://www.smartsheet.com/) (also now from Microsoft). We have Emails, we do our conference calls in MS Teams, and we work with customers using Zoom. Our ticketing system is yet on another app. \\n\\nIt's a freaking mess, that's what it is. A nightmare. A cacophony of information overload.\\n\\nI used Evernote for about three full years. I've used Google Keep, Todoist, Trello, Wunderlist, and these just the few I can remember. They all failed because they were limited, closed, costly, sell your data to whoever pays them (or threatens them) or who buys them, if they don't get eaten by a bigger company or disappear because they couldn't get bought by one. While this is not the conversation you originally started, is it is very much of a reason for me (and others) to stick to Org-mode and Emacs, which have been pretty much the same all these years. I'm not kidding when I say it's a safe place from all that nonsense.\\n\\nNow take all that I said, hopefully with patience and a grain of humor, and look at it from this way. At the end of the day, I want *my* trusty system that I own. A place that I know how it works, is modified to how I want to work with my data. Sure, my team doesn't speak \\\"org-mode,\\\" and to be honest, they think I'm nuts. My one manager looked at my Linux VM with disapproval, but he knows I'm effective and organized (guess why?) so he lets it slide, for now. I go through the pains of translating my Org universe to Smarthseets, Outlook email, support tickets, because it's worth it. I finally have *one place*, not a plethora of online accounts, where all my information is stored, personal and professional side by side, neat and organized, and I take whatever bits I need and fit it into their crazy buckets. \\n\\nMy tools are a VM with SUSE OS at work (stable, comes with Emacs out of the box, supported well by vmware), Syncthing (to sync everything without worrying about buying more space or [Dropbox sharing my personal journal files for research](https://hbr.org/2018/07/a-study-of-thousands-of-dropbox-projects-reveals-how-successful-teams-collaborate#comment-section)), and Orgzly (my workflow would be impossible without it) on the go. There are challenges, sure. Many times I just want a good picture and I can't have it, or I just need to send a quick checklist to my boss and it comes out with weird square brackets etc \\u0026#x2013; but I make it work. Frankly, I wouldn't be able to do what I do today without Org-mode. The impact on my life has been huge\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epr5ebh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ll take the Hersey approach ;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg-mode is customizeable because of Emacs and Lisp. You can take any part of it and play with it, and then you can go behind the scenes and build another part completely, if you want to. You can add your own packages into Emacs that integrate into Org, or don\\u0026#39;t. I can\\u0026#39;t imagine Org-mode without Emacs. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor me personally, Org-mode is a safe place. It\\u0026#39;s away from all the other bells and whistles of all the \\u0026quot;awesome GUI apps\\u0026quot; that my co-worker use. My mangers use \\u003Ca href=\\\"https://evernote.com/\\\"\\u003EEvernote\\u003C/a\\u003E. Our office has Office 365 that comes with its own tasks and outlook. Windows has numerous to-do apps, and if that not enough, we have our own spreadsheet-project placed in \\u003Ca href=\\\"https://www.smartsheet.com/\\\"\\u003ESmartsheets\\u003C/a\\u003E (also now from Microsoft). We have Emails, we do our conference calls in MS Teams, and we work with customers using Zoom. Our ticketing system is yet on another app. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a freaking mess, that\\u0026#39;s what it is. A nightmare. A cacophony of information overload.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used Evernote for about three full years. I\\u0026#39;ve used Google Keep, Todoist, Trello, Wunderlist, and these just the few I can remember. They all failed because they were limited, closed, costly, sell your data to whoever pays them (or threatens them) or who buys them, if they don\\u0026#39;t get eaten by a bigger company or disappear because they couldn\\u0026#39;t get bought by one. While this is not the conversation you originally started, is it is very much of a reason for me (and others) to stick to Org-mode and Emacs, which have been pretty much the same all these years. I\\u0026#39;m not kidding when I say it\\u0026#39;s a safe place from all that nonsense.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow take all that I said, hopefully with patience and a grain of humor, and look at it from this way. At the end of the day, I want \\u003Cem\\u003Emy\\u003C/em\\u003E trusty system that I own. A place that I know how it works, is modified to how I want to work with my data. Sure, my team doesn\\u0026#39;t speak \\u0026quot;org-mode,\\u0026quot; and to be honest, they think I\\u0026#39;m nuts. My one manager looked at my Linux VM with disapproval, but he knows I\\u0026#39;m effective and organized (guess why?) so he lets it slide, for now. I go through the pains of translating my Org universe to Smarthseets, Outlook email, support tickets, because it\\u0026#39;s worth it. I finally have \\u003Cem\\u003Eone place\\u003C/em\\u003E, not a plethora of online accounts, where all my information is stored, personal and professional side by side, neat and organized, and I take whatever bits I need and fit it into their crazy buckets. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy tools are a VM with SUSE OS at work (stable, comes with Emacs out of the box, supported well by vmware), Syncthing (to sync everything without worrying about buying more space or \\u003Ca href=\\\"https://hbr.org/2018/07/a-study-of-thousands-of-dropbox-projects-reveals-how-successful-teams-collaborate#comment-section\\\"\\u003EDropbox sharing my personal journal files for research\\u003C/a\\u003E), and Orgzly (my workflow would be impossible without it) on the go. There are challenges, sure. Many times I just want a good picture and I can\\u0026#39;t have it, or I just need to send a quick checklist to my boss and it comes out with weird square brackets etc \\u0026#x2013; but I make it work. Frankly, I wouldn\\u0026#39;t be able to do what I do today without Org-mode. The impact on my life has been huge\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/epr5ebh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559447421.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bd4ka9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epqpszq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"the_ocean\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559410198.0, \"send_replies\": true, \"parent_id\": \"t1_epqludy\", \"score\": 1, \"author_fullname\": \"t2_3ezlt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"That\\u2019s a good idea that hadn\\u2019t occurred to me - thanks!\", \"link_title\": \"Hierarchical Agendas?\", \"author_flair_css_class\": null, \"name\": \"t1_epqpszq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u2019s a good idea that hadn\\u2019t occurred to me - thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/epqpszq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"report_reasons\": null, \"link_author\": \"SmoothInternet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"created\": 1559438998.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epqot95\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559409722.0, \"send_replies\": true, \"parent_id\": \"t3_btzy6m\", \"score\": 1, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"what's the point?\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_epqot95\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewhat\\u0026#39;s the point?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/epqot95/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559438522.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bd4ka9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epqludy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559408133.0, \"send_replies\": true, \"parent_id\": \"t1_ekvtlyj\", \"score\": 1, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I find the 'CATEGORY' property more helpful for this, personally, as it displays to the left hand side of the agenda like it's own special agenda tag.\", \"link_title\": \"Hierarchical Agendas?\", \"author_flair_css_class\": null, \"name\": \"t1_epqludy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find the \\u0026#39;CATEGORY\\u0026#39; property more helpful for this, personally, as it displays to the left hand side of the agenda like it\\u0026#39;s own special agenda tag.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/epqludy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"report_reasons\": null, \"link_author\": \"SmoothInternet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"created\": 1559436933.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559407988.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bd4ka9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epql3ag\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559407719.0, \"send_replies\": true, \"parent_id\": \"t3_bd4ka9\", \"score\": 2, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"If I'm understanding your question correctly, it sounds like you just want TODO keywords and filters. And maybe org-edna. For example, for the 'sub-TODOs that need attention', perhaps a \\\"NEXT\\\" keyword would be fitting, so you could pull all \\\"NEXT\\\" headers into a view (I do this). And to omit 'blocked' TODOs, you can play with the variable org-agenda-todo-list-sublevels in conjunction with the above (I also filter redundant TODOs like this from my agenda views, including global search).\", \"link_title\": \"Hierarchical Agendas?\", \"author_flair_css_class\": null, \"name\": \"t1_epql3ag\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I\\u0026#39;m understanding your question correctly, it sounds like you just want TODO keywords and filters. And maybe org-edna. For example, for the \\u0026#39;sub-TODOs that need attention\\u0026#39;, perhaps a \\u0026quot;NEXT\\u0026quot; keyword would be fitting, so you could pull all \\u0026quot;NEXT\\u0026quot; headers into a view (I do this). And to omit \\u0026#39;blocked\\u0026#39; TODOs, you can play with the variable org-agenda-todo-list-sublevels in conjunction with the above (I also filter redundant TODOs like this from my agenda views, including global search).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/epql3ag/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"report_reasons\": null, \"link_author\": \"SmoothInternet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"created\": 1559436519.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eposeia\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"doulos05\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559352091.0, \"send_replies\": true, \"parent_id\": \"t1_epo4x0j\", \"score\": 1, \"author_fullname\": \"t2_jqpn4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Well, one major barrier is \\\"Why would I look for my todo list manager in the Text Editors list?\\\"\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eposeia\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, one major barrier is \\u0026quot;Why would I look for my todo list manager in the Text Editors list?\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/eposeia/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559380891.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epo4x0j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mexicorn\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559338461.0, \"send_replies\": true, \"parent_id\": \"t1_epneizy\", \"score\": 2, \"author_fullname\": \"t2_3xl2j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm curious as to what a \\\"stand-alone\\\" version of org mode would look like. One of the main strengths of org-mode is its nearly limitless customization, which is made possible by the underlying Lisp. I feel like anything that hopes to decouple from emacs but retain the same functionality \\u0026 customization would inevitably turn into an emacs clone project.\\n\\nPerhaps it's worth thinking of the opposite question: what overhead and adoption barriers are present in getting people into emacs that would not be present in some stand-alone org mode app?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epo4x0j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m curious as to what a \\u0026quot;stand-alone\\u0026quot; version of org mode would look like. One of the main strengths of org-mode is its nearly limitless customization, which is made possible by the underlying Lisp. I feel like anything that hopes to decouple from emacs but retain the same functionality \\u0026amp; customization would inevitably turn into an emacs clone project.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPerhaps it\\u0026#39;s worth thinking of the opposite question: what overhead and adoption barriers are present in getting people into emacs that would not be present in some stand-alone org mode app?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/epo4x0j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559367261.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epneizy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ManiacMcCree\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559326165.0, \"send_replies\": true, \"parent_id\": \"t3_bv747t\", \"score\": 3, \"author_fullname\": \"t2_130p93\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I feel like org-mode is hands down the best outlining and writing tool in existence. \\n\\nIn terms of task management and general note taking though, I always end up walking away from it due to the inability to work with teams, clunkiness of adding different kinds of media, and the weak mobile workflow. \\n\\nIs there a \\\"future\\\" of org-mode? Or do you think that the app is as mature as it's ever going to be? \\n\\nHonestly it is sad to me to see how well markdown has taken off when org is such a more powerful format. \\n\\nI'd personally like to see org uncoupled from emacs, as I think it's got more value moving into the future than emacs itself. Imagine a new generation of note-taking app (a-la joplin, notability etc.) but based on org-mode rather than markdown. \\n\\n(and yes, I know about orgzly etc. - it's okay, but doesn't address the big issues)\\n\\nHeresy? Good idea? LMK\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epneizy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI feel like org-mode is hands down the best outlining and writing tool in existence. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn terms of task management and general note taking though, I always end up walking away from it due to the inability to work with teams, clunkiness of adding different kinds of media, and the weak mobile workflow. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a \\u0026quot;future\\u0026quot; of org-mode? Or do you think that the app is as mature as it\\u0026#39;s ever going to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHonestly it is sad to me to see how well markdown has taken off when org is such a more powerful format. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d personally like to see org uncoupled from emacs, as I think it\\u0026#39;s got more value moving into the future than emacs itself. Imagine a new generation of note-taking app (a-la joplin, notability etc.) but based on org-mode rather than markdown. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(and yes, I know about orgzly etc. - it\\u0026#39;s okay, but doesn\\u0026#39;t address the big issues)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHeresy? Good idea? LMK\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/epneizy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559354965.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epnachi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"OverthrowDissent\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559324196.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": -1, \"author_fullname\": \"t2_37uew703\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Add the word \\\"TODO\\\" in a list item like:\\n\\n * TODO Item 1\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_epnachi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAdd the word \\u0026quot;TODO\\u0026quot; in a list item like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Item 1\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/epnachi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559352996.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplr2oq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559301731.0, \"send_replies\": true, \"parent_id\": \"t1_epjzbl6\", \"score\": 1, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hello Tsdwm52. \\n\\nWhile it's not exactly what I was searching for (the next comment points to it), it has some very interesting options that I will explore further. \\n\\nThanks a lot for your help... :)\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_eplr2oq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello Tsdwm52. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile it\\u0026#39;s not exactly what I was searching for (the next comment points to it), it has some very interesting options that I will explore further. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks a lot for your help... :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/eplr2oq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559330531.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplq73q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559301232.0, \"send_replies\": true, \"parent_id\": \"t1_epk2sub\", \"score\": 1, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hello Gusbrs. You found it, that was exactly wat I was searching for. \\n\\nThanks a lot, I sure others will benefit from your answer here too... :)\\n\\n\\u0026#x200B;\\n\\nBest regards.\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_eplq73q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello Gusbrs. You found it, that was exactly wat I was searching for. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks a lot, I sure others will benefit from your answer here too... :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBest regards.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/eplq73q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559330032.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epk2sub\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559266336.0, \"send_replies\": true, \"parent_id\": \"t3_buzxzp\", \"score\": 2, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"From the `memoir` docs:\\n\\n\\u003E The commands \\\\tableofcontents, \\\\listoffigures and \\\\listoftables typeset, repectively, the Table of Contents (ToC), List of Figures (LoF) and List of Tables (LoT). In memoir , unlike the standard classes, the unstarred versions add their respective titles to the ToC. The starred versions act like the standard classes\\u2019 unstarred versions as they don\\u2019t add their titles to the ToC.\\n\\nSo, if you add the command directly, you can simply use the starred version. If this is added by the Org exporter, you will have to find a way to convince it to do the same thing by tweaking your customizations.\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_epk2sub\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFrom the \\u003Ccode\\u003Ememoir\\u003C/code\\u003E docs:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe commands \\\\tableofcontents, \\\\listoffigures and \\\\listoftables typeset, repectively, the Table of Contents (ToC), List of Figures (LoF) and List of Tables (LoT). In memoir , unlike the standard classes, the unstarred versions add their respective titles to the ToC. The starred versions act like the standard classes\\u2019 unstarred versions as they don\\u2019t add their titles to the ToC.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESo, if you add the command directly, you can simply use the starred version. If this is added by the Org exporter, you will have to find a way to convince it to do the same thing by tweaking your customizations.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/epk2sub/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559295136.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epjzbl6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdwm52\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559263892.0, \"send_replies\": true, \"parent_id\": \"t3_buzxzp\", \"score\": 2, \"author_fullname\": \"t2_mj8i2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is a LaTeX question. The answers here will help: [https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc](https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc). The answers include a bit on Memoir-specific changes.\\n\\nYou'll probably want to make the changes in the Org mode file using #+LATEX\\\\_HEADER:\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_epjzbl6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is a LaTeX question. The answers here will help: \\u003Ca href=\\\"https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc\\\"\\u003Ehttps://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc\\u003C/a\\u003E. The answers include a bit on Memoir-specific changes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;ll probably want to make the changes in the Org mode file using #+LATEX_HEADER:\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/epjzbl6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559292692.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buopeh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eph5z4d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaiwen1\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559222771.0, \"send_replies\": true, \"parent_id\": \"t1_epf1oai\", \"score\": 2, \"author_fullname\": \"t2_6qzsr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This function does it:\\n\\n```\\n(defun org-hide-src-block-delimiters()\\n (interactive)\\n (save-excursion (goto-char (point-max))\\n (while (re-search-backward \\\"#\\\\\\\\+BEGIN_SRC\\\\\\\\|#\\\\\\\\+END_SRC\\\" nil t)\\n (let ((ov (make-overlay (line-beginning-position)\\n (1+ (line-end-position)))))\\n (overlay-put ov 'invisible t)))))\\n```\\n\\nThis would be better as a toggle but I haven't quite figured out how to do that yet.\", \"link_title\": \"How can I hide source block header and footer?\", \"author_flair_css_class\": null, \"name\": \"t1_eph5z4d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis function does it:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(defun org-hide-src-block-delimiters()\\n (interactive)\\n (save-excursion (goto-char (point-max))\\n (while (re-search-backward \\u0026quot;#\\\\\\\\+BEGIN_SRC\\\\\\\\|#\\\\\\\\+END_SRC\\u0026quot; nil t)\\n (let ((ov (make-overlay (line-beginning-position)\\n (1+ (line-end-position)))))\\n (overlay-put ov \\u0026#39;invisible t)))))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis would be better as a toggle but I haven\\u0026#39;t quite figured out how to do that yet.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/eph5z4d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"created\": 1559251571.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buopeh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epflcbr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"venomspinner\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559197849.0, \"send_replies\": true, \"parent_id\": \"t1_epf1oai\", \"score\": 1, \"author_fullname\": \"t2_ejpaa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"you can make its foreground same color as the background of your emacs theme.\", \"link_title\": \"How can I hide source block header and footer?\", \"author_flair_css_class\": null, \"name\": \"t1_epflcbr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyou can make its foreground same color as the background of your emacs theme.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/epflcbr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"created\": 1559226649.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buopeh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epf1oai\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaiwen1\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559189916.0, \"send_replies\": true, \"parent_id\": \"t3_buopeh\", \"score\": 1, \"author_fullname\": \"t2_6qzsr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Found this: [https://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters](https://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters).\\n\\nNot quite there, but close.\", \"link_title\": \"How can I hide source block header and footer?\", \"author_flair_css_class\": null, \"name\": \"t1_epf1oai\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFound this: \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters\\\"\\u003Ehttps://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot quite there, but close.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/epf1oai/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"created\": 1559218716.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdnqd3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559170003.0, \"send_replies\": true, \"parent_id\": \"t1_epdmeme\", \"score\": 1, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"No, the macros will work only if you export from Org. I export my master Org file to README.org for GitHub. \\n\\nIf you don't want to use `ox-org`, you'll have to expand those macros manually.\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epdnqd3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, the macros will work only if you export from Org. I export my master Org file to README.org for GitHub. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you don\\u0026#39;t want to use \\u003Ccode\\u003Eox-org\\u003C/code\\u003E, you\\u0026#39;ll have to expand those macros manually.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epdnqd3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559198803.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdmeme\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hardrived_\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559169203.0, \"send_replies\": true, \"parent_id\": \"t1_epdajfx\", \"score\": 1, \"author_fullname\": \"t2_ycu34\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm not exporting to another file format so would a Macro work? Github doesn't technically render Org file like it does Markdown. I tried this method and it didn't replace the text with the Macro.\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epdmeme\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not exporting to another file format so would a Macro work? Github doesn\\u0026#39;t technically render Org file like it does Markdown. I tried this method and it didn\\u0026#39;t replace the text with the Macro.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epdmeme/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559198003.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsgj6t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdlg9r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559168638.0, \"send_replies\": true, \"parent_id\": \"t3_bsgj6t\", \"score\": 1, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"finally synced w/ syncthing and termux on android. this lead to me wanting to consolidate my files a bit, so I'm running with [wiki.org](https://wiki.org), [archives.org](https://archives.org), [tasks.org](https://tasks.org), refile.org and \\\\~/emacs.d/configuration.org being my agenda files. previously I was just using agenda/ as my org-agenda directory, but I like this set up a lot more. I'm still not sure what merits a new file, and i think about it too much. having monolithic files is nice now that I useC-c / (sparse tree view), C-c C-j (jump to header) and C-x n s (narrow to subtree)\\n\\n\\u0026#x200B;\\n\\nalso, finally moved over to a literate configuration and it's been amazingly helpful and was painless to set up :-) this short article was a good guide: [https://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration](https://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 24, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epdlg9r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efinally synced w/ syncthing and termux on android. this lead to me wanting to consolidate my files a bit, so I\\u0026#39;m running with \\u003Ca href=\\\"https://wiki.org\\\"\\u003Ewiki.org\\u003C/a\\u003E, \\u003Ca href=\\\"https://archives.org\\\"\\u003Earchives.org\\u003C/a\\u003E, \\u003Ca href=\\\"https://tasks.org\\\"\\u003Etasks.org\\u003C/a\\u003E, refile.org and ~/emacs.d/configuration.org being my agenda files. previously I was just using agenda/ as my org-agenda directory, but I like this set up a lot more. I\\u0026#39;m still not sure what merits a new file, and i think about it too much. having monolithic files is nice now that I useC-c / (sparse tree view), C-c C-j (jump to header) and C-x n s (narrow to subtree)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealso, finally moved over to a literate configuration and it\\u0026#39;s been amazingly helpful and was painless to set up :-) this short article was a good guide: \\u003Ca href=\\\"https://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration\\\"\\u003Ehttps://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/epdlg9r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"created\": 1559197438.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdajfx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559163831.0, \"send_replies\": true, \"parent_id\": \"t3_buhsue\", \"score\": 3, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I use these:\\n\\n #+macro: travis [[https://travis-ci.org/kaushalmodi/ox-hugo][https://travis-ci.org/kaushalmodi/ox-hugo.svg?branch=master]]\\n #+macro: melpa [[https://melpa.org/#/ox-hugo][file:https://melpa.org/packages/ox-hugo-badge.svg]]\\n #+macro: GPLv3 [[https://www.gnu.org/licenses/gpl-3.0][https://img.shields.io/badge/License-GPL%20v3-blue.svg]]\\n\\n {{{travis}}} {{{melpa}}} {{{GPLv3}}}\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epdajfx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use these:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+macro: travis [[https://travis-ci.org/kaushalmodi/ox-hugo][https://travis-ci.org/kaushalmodi/ox-hugo.svg?branch=master]]\\n#+macro: melpa [[https://melpa.org/#/ox-hugo][file:https://melpa.org/packages/ox-hugo-badge.svg]]\\n#+macro: GPLv3 [[https://www.gnu.org/licenses/gpl-3.0][https://img.shields.io/badge/License-GPL%20v3-blue.svg]]\\n\\n{{{travis}}} {{{melpa}}} {{{GPLv3}}}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epdajfx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559192631.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epcozp9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hardrived_\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559156766.0, \"send_replies\": true, \"parent_id\": \"t1_epco8wc\", \"score\": 1, \"author_fullname\": \"t2_ycu34\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Funny enough this how I redid the markdown formatted badge into org format. But I can't believe I forgot that MELPA shows badge codes in HTML, Markdown, and Org lol\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epcozp9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFunny enough this how I redid the markdown formatted badge into org format. But I can\\u0026#39;t believe I forgot that MELPA shows badge codes in HTML, Markdown, and Org lol\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epcozp9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559185566.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epco8wc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"akirakom\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559156511.0, \"send_replies\": true, \"parent_id\": \"t3_buhsue\", \"score\": 2, \"author_fullname\": \"t2_ouz7ysa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"- An example of Circle CI badge in Org: `[[https://circleci.com/gh/akirak/emacs.d/tree/master][https://circleci.com/gh/akirak/emacs.d/tree/master.svg?style=svg]]`\\n- MELPA: `[[https://melpa.org/#/org-reverse-datetree][https://melpa.org/packages/org-reverse-datetree-badge.svg]]`\\n- Travis CI: `[[https://travis-ci.org/akirak/org-reverse-datetree][https://travis-ci.org/akirak/org-reverse-datetree.svg?branch=master]]`\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epco8wc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cul\\u003E\\n\\u003Cli\\u003EAn example of Circle CI badge in Org: \\u003Ccode\\u003E[[https://circleci.com/gh/akirak/emacs.d/tree/master][https://circleci.com/gh/akirak/emacs.d/tree/master.svg?style=svg]]\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMELPA: \\u003Ccode\\u003E[[https://melpa.org/#/org-reverse-datetree][https://melpa.org/packages/org-reverse-datetree-badge.svg]]\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETravis CI: \\u003Ccode\\u003E[[https://travis-ci.org/akirak/org-reverse-datetree][https://travis-ci.org/akirak/org-reverse-datetree.svg?branch=master]]\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epco8wc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559185311.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbd7gf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"doulos05\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559140998.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": 3, \"author_fullname\": \"t2_jqpn4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"There's an important design decision at work here.\\n\\nHeaders are where you organize your tasks, lists are where you itemize the steps to complete your tasks.\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_epbd7gf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s an important design decision at work here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHeaders are where you organize your tasks, lists are where you itemize the steps to complete your tasks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/epbd7gf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559169798.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eparx61\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jazzpecq\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559132539.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": 1, \"author_fullname\": \"t2_hv9nd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"TODO keywords and tags belong to headings only. For list items you have to use checkboxes.\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_eparx61\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETODO keywords and tags belong to headings only. For list items you have to use checkboxes.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/eparx61/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559161339.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eparjs7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ccharles\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559132378.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": 5, \"author_fullname\": \"t2_bhd0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Your best bet is probably to use [checkboxes][1]:\\n\\n - [ ] One\\n - [ ] Two\\n\\nYou can `C-c C-c` on an item to toggle it, and this will be reflected in headings if you have them, e.g.:\\n\\n * Some heading [1/2]\\n - [ ] One\\n - [X] Two\\n\\n[1]: https://orgmode.org/manual/Checkboxes.html#Checkboxes\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_eparjs7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYour best bet is probably to use \\u003Ca href=\\\"https://orgmode.org/manual/Checkboxes.html#Checkboxes\\\"\\u003Echeckboxes\\u003C/a\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E- [ ] One\\n- [ ] Two\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EYou can \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E on an item to toggle it, and this will be reflected in headings if you have them, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Some heading [1/2]\\n - [ ] One\\n - [X] Two\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/eparjs7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559161178.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ajngqj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep9vhci\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559116967.0, \"send_replies\": true, \"parent_id\": \"t3_ajngqj\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Update \\u003C2019-05-29\\u003E: Found a crude workaround I probably can live with: I just bound a function to `(search-forward \\\"[ ]\\\"))`.\", \"link_title\": \"Jump to the next unchecked checkbox in a list\", \"author_flair_css_class\": null, \"name\": \"t1_ep9vhci\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUpdate \\u0026lt;2019-05-29\\u0026gt;: Found a crude workaround I probably can live with: I just bound a function to \\u003Ccode\\u003E(search-forward \\u0026quot;[ ]\\u0026quot;))\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ajngqj/jump_to_the_next_unchecked_checkbox_in_a_list/ep9vhci/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ajngqj/jump_to_the_next_unchecked_checkbox_in_a_list/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ajngqj/jump_to_the_next_unchecked_checkbox_in_a_list/\", \"created\": 1559145767.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu1tby\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep701qj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vale_fallacia\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559075655.0, \"send_replies\": true, \"parent_id\": \"t1_ep6tih1\", \"score\": 2, \"author_fullname\": \"t2_2al88q3x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Perfect, thank you for answering. That was exactly it!\", \"link_title\": \"Possible confusion over ORDERED property\", \"author_flair_css_class\": null, \"name\": \"t1_ep701qj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPerfect, thank you for answering. That was exactly it!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/ep701qj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"created\": 1559104455.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu1tby\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep6tih1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"telap\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559073371.0, \"send_replies\": true, \"parent_id\": \"t3_bu1tby\", \"score\": 5, \"author_fullname\": \"t2_yr0wz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Check the value of the variable `org-enforce-todo-dependencies`.\\n\\n\\u0026#x200B;\\n\\nFrom documentation of the variable:\\n\\n\\u003ENon-nil means undone TODO entries will block switching the parent to DONE. \\n\\u003E \\n\\u003EAlso, if a parent has an :ORDERED: property, switching an entry to DONE will be blocked if any prior sibling is not yet done. \\n\\u003E \\n\\u003EFinally, if the parent is blocked because of ordered siblings of its own, the child will also be blocked.\", \"link_title\": \"Possible confusion over ORDERED property\", \"author_flair_css_class\": null, \"name\": \"t1_ep6tih1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECheck the value of the variable \\u003Ccode\\u003Eorg-enforce-todo-dependencies\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom documentation of the variable:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENon-nil means undone TODO entries will block switching the parent to DONE. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, if a parent has an :ORDERED: property, switching an entry to DONE will be blocked if any prior sibling is not yet done. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally, if the parent is blocked because of ordered siblings of its own, the child will also be blocked.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/ep6tih1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"created\": 1559102171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep5vaqx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"juustgowithit\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559061322.0, \"send_replies\": true, \"parent_id\": \"t1_ep53pu4\", \"score\": 2, \"author_fullname\": \"t2_dxeab\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I love reading this so much. I barely even use emacs but even that is thanks to the discussions on this sub\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep5vaqx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love reading this so much. I barely even use emacs but even that is thanks to the discussions on this sub\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep5vaqx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559090122.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep5p4a5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559059117.0, \"send_replies\": true, \"parent_id\": \"t1_ep56l9p\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Incidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on)\\n\\nFollow the instructions in the readme carefully and it will work.\\n\\n\\u003E Anyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\n\\nThey do different things. They are complementary.\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep5p4a5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIncidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on)\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFollow the instructions in the readme carefully and it will work.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAnyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey do different things. They are complementary.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep5p4a5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559087917.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_br2g1m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep5m7f3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"little_big_h\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559057968.0, \"send_replies\": true, \"parent_id\": \"t3_br2g1m\", \"score\": 1, \"author_fullname\": \"t2_11kij2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Your question is way to vague to be properly answered. Trying to anticipate your actual problem, here is a suggestion: You have to add \\n'mathematica to 'org-babel-Load-languages .\", \"link_title\": \"How do I use ob-mathematica.el?\", \"author_flair_css_class\": null, \"name\": \"t1_ep5m7f3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYour question is way to vague to be properly answered. Trying to anticipate your actual problem, here is a suggestion: You have to add \\n\\u0026#39;mathematica to \\u0026#39;org-babel-Load-languages .\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/ep5m7f3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"created\": 1559086768.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep56l9p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jackjackk0\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559051301.0, \"send_replies\": true, \"parent_id\": \"t1_ep53pu4\", \"score\": 2, \"author_fullname\": \"t2_q52rf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, I see, it's probably not as straightforward as originally thought. Maybe, an easier way could b: 1) when capturing an item, add automatically deadline based on parent one, and 2) when changing a deadline, change the deadline of subitems... but then not sure it is worth the time. Incidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on). probably I have some conflicting configuration. Anyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\n\\nedit: fix typo\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep56l9p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I see, it\\u0026#39;s probably not as straightforward as originally thought. Maybe, an easier way could b: 1) when capturing an item, add automatically deadline based on parent one, and 2) when changing a deadline, change the deadline of subitems... but then not sure it is worth the time. Incidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on). probably I have some conflicting configuration. Anyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eedit: fix typo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep56l9p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559080101.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep53pu4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559050086.0, \"send_replies\": true, \"parent_id\": \"t3_btzy6m\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I think the question is, inherit it in what context? I guess you mean in Org Agenda views--in which case I think the answer is, good luck, because a) the Org Agenda code is not generally well suited to modifying parts of its functionality, and b) the agenda code specifically searches for \\\"planning lines\\\" to build agenda views, which would preclude what you are wanting.\\n\\nMaybe you're wanting \\\"project\\\" functionality, which Org provides by other means. Refer to the documentation and Google searches for more info on that.\\n\\nYou might also find the `org-ql` package helpful in building an agenda-like view with certain items.\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep53pu4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think the question is, inherit it in what context? I guess you mean in Org Agenda views--in which case I think the answer is, good luck, because a) the Org Agenda code is not generally well suited to modifying parts of its functionality, and b) the agenda code specifically searches for \\u0026quot;planning lines\\u0026quot; to build agenda views, which would preclude what you are wanting.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaybe you\\u0026#39;re wanting \\u0026quot;project\\u0026quot; functionality, which Org provides by other means. Refer to the documentation and Google searches for more info on that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou might also find the \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E package helpful in building an agenda-like view with certain items.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep53pu4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559078886.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep4llp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559042069.0, \"send_replies\": true, \"parent_id\": \"t3_btdd9b\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You may also find this helpful: https://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_ep4llp8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou may also find this helpful: \\u003Ca href=\\\"https://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\\\"\\u003Ehttps://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/ep4llp8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1559070869.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btovhk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep38ai6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559019320.0, \"send_replies\": true, \"parent_id\": \"t1_ep1m1sg\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yeah, rather than setting a prefix, it would be easier to use `org-super-agenda` to put them in groups accordingly.\", \"link_title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"author_flair_css_class\": null, \"name\": \"t1_ep38ai6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, rather than setting a prefix, it would be easier to use \\u003Ccode\\u003Eorg-super-agenda\\u003C/code\\u003E to put them in groups accordingly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/ep38ai6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"report_reasons\": null, \"link_author\": \"werzor\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"created\": 1559048120.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boymdt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep34vwh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559017112.0, \"send_replies\": true, \"parent_id\": \"t1_eoyztpe\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Okay, but that doesn't help us find and fix any problem that may exist in Org 9.\", \"link_title\": \"Org-agenda and tags position\", \"author_flair_css_class\": null, \"name\": \"t1_ep34vwh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOkay, but that doesn\\u0026#39;t help us find and fix any problem that may exist in Org 9.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/ep34vwh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"report_reasons\": null, \"link_author\": \"cyberl3o\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"created\": 1559045912.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btovhk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep1m1sg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SmoothInternet\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558990945.0, \"send_replies\": true, \"parent_id\": \"t3_btovhk\", \"score\": 2, \"author_fullname\": \"t2_baw354f\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You might want to look for the org-super-agenda package. I think it simplifies what you want to do. It\\u2019s available on MELPA, but the complete docs are on Github.\", \"link_title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"author_flair_css_class\": null, \"name\": \"t1_ep1m1sg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou might want to look for the org-super-agenda package. I think it simplifies what you want to do. It\\u2019s available on MELPA, but the complete docs are on Github.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/ep1m1sg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"report_reasons\": null, \"link_author\": \"werzor\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"created\": 1559019745.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep0mauh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BeetleB\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1558977342.0, \"send_replies\": true, \"parent_id\": \"t1_eowkgw9\", \"score\": 1, \"author_fullname\": \"t2_1tduz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Actually, it's \\u003C\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_ep0mauh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EActually, it\\u0026#39;s \\u0026lt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/ep0mauh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1559006142.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boymdt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoyztpe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cyberl3o\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1558949639.0, \"send_replies\": true, \"parent_id\": \"t1_eoa9yk2\", \"score\": 1, \"author_fullname\": \"t2_3rz1w0lq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hi! Sorry for the delay. I downgrade to Org 8.2.10 and all work fine ;)\", \"link_title\": \"Org-agenda and tags position\", \"author_flair_css_class\": null, \"name\": \"t1_eoyztpe\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi! Sorry for the delay. I downgrade to Org 8.2.10 and all work fine ;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/eoyztpe/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"report_reasons\": null, \"link_author\": \"cyberl3o\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"created\": 1558978439.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eowlzq0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ralphbluecoat\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1558911652.0, \"send_replies\": true, \"parent_id\": \"t1_eowkgw9\", \"score\": 3, \"author_fullname\": \"t2_4hzm8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"That works. Thank you.\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_eowlzq0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat works. Thank you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/eowlzq0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1558940452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eowkgw9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zreeon\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1558911049.0, \"send_replies\": true, \"parent_id\": \"t3_btdd9b\", \"score\": 3, \"author_fullname\": \"t2_h5re9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is built into the agenda dispatcher. I think the default binding is \\u003E\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_eowkgw9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is built into the agenda dispatcher. I think the default binding is \\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/eowkgw9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1558939849.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bt9f5z\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eovu3rf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vale_fallacia\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558900706.0, \"send_replies\": true, \"parent_id\": \"t1_eovt3d0\", \"score\": 2, \"author_fullname\": \"t2_2al88q3x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Holy crap! **That's** the app I was thinking about when I began looking at org-mode! I couldn't remember its name, and I couldn't describe it well enough for Google to find it.\\n\\nYou've seriously cleared up a years long issue I had with not being able to find that application. Thank you so much!\", \"link_title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"author_flair_css_class\": null, \"name\": \"t1_eovu3rf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHoly crap! \\u003Cstrong\\u003EThat\\u0026#39;s\\u003C/strong\\u003E the app I was thinking about when I began looking at org-mode! I couldn\\u0026#39;t remember its name, and I couldn\\u0026#39;t describe it well enough for Google to find it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;ve seriously cleared up a years long issue I had with not being able to find that application. Thank you so much!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/eovu3rf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"created\": 1558929506.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bt9f5z\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eovt3d0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jwiegley\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558900276.0, \"send_replies\": true, \"parent_id\": \"t3_bt9f5z\", \"score\": 3, \"author_fullname\": \"t2_3sm69\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"In case anyone is interested, Org habits was implemented to imitate the behavior of [http://sciral.com/consistency/](http://sciral.com/consistency/)\", \"link_title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"author_flair_css_class\": null, \"name\": \"t1_eovt3d0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn case anyone is interested, Org habits was implemented to imitate the behavior of \\u003Ca href=\\\"http://sciral.com/consistency/\\\"\\u003Ehttp://sciral.com/consistency/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/eovt3d0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"created\": 1558929076.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsnq2u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eotsyx6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WalterGR\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558847848.0, \"send_replies\": true, \"parent_id\": \"t1_eop4wet\", \"score\": 1, \"author_fullname\": \"t2_3c1ug\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is only for macOS, right?\", \"link_title\": \"[Question] Paste with source format\", \"author_flair_css_class\": null, \"name\": \"t1_eotsyx6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is only for macOS, right?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bsnq2u/question_paste_with_source_format/eotsyx6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"report_reasons\": null, \"link_author\": \"GracefulToucan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"created\": 1558876648.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpjh7e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eorf0ei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sshaw_\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558805809.0, \"send_replies\": true, \"parent_id\": \"t1_eorel43\", \"score\": 1, \"author_fullname\": \"t2_h8sck\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hurmmm, I will have a 2nd look. Thanks for the info. \\n\\nWhat I ended up doing was using [org-clock-csv](https://github.com/atheriel/org-clock-csv) with custom export function and header. Works well since Toggl's spreadsheet import can detect rows it already imported but really, who wants to use the mouse :)\", \"link_title\": \"Anyone Use Org mode With Toggl\", \"author_flair_css_class\": null, \"name\": \"t1_eorf0ei\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHurmmm, I will have a 2nd look. Thanks for the info. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat I ended up doing was using \\u003Ca href=\\\"https://github.com/atheriel/org-clock-csv\\\"\\u003Eorg-clock-csv\\u003C/a\\u003E with custom export function and header. Works well since Toggl\\u0026#39;s spreadsheet import can detect rows it already imported but really, who wants to use the mouse :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/eorf0ei/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"report_reasons\": null, \"link_author\": \"sshaw_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"created\": 1558834609.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpjh7e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eorel43\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ssd198778\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558805532.0, \"send_replies\": true, \"parent_id\": \"t3_bpjh7e\", \"score\": 1, \"author_fullname\": \"t2_1yleajma\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks to this post, I tried Fuco1's org-toggle and it seems to work fine for me and it's able to sync current current clock-ins when doing org-clock-in. \\n\\norgversion: 9.1.6\\n\\nemacs : 25.2.2\", \"link_title\": \"Anyone Use Org mode With Toggl\", \"author_flair_css_class\": null, \"name\": \"t1_eorel43\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks to this post, I tried Fuco1\\u0026#39;s org-toggle and it seems to work fine for me and it\\u0026#39;s able to sync current current clock-ins when doing org-clock-in. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorgversion: 9.1.6\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eemacs : 25.2.2\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/eorel43/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"report_reasons\": null, \"link_author\": \"sshaw_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"created\": 1558834332.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqu8sp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoq5g5m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"OverthrowDissent\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1558785420.0, \"send_replies\": true, \"parent_id\": \"t1_eod0sqj\", \"score\": 1, \"author_fullname\": \"t2_37uew703\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you all for those that tried to help! This is the solution. You use the :tstart and :tend tags and place dates within. The start date is the day you want to look at, the end date is the day after. Then you add the step tag and step by day.\\n\\nExample:\\n\\u003E :tstart \\\"\\u003C2019-05-24 Fri\\u003E\\\" :tend \\\"\\u003C2019-05-25 Sat\\u003E\\\" :step day\\n\\nThis works. Nice!\", \"link_title\": \"View clock table entries by date?\", \"author_flair_css_class\": null, \"name\": \"t1_eoq5g5m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you all for those that tried to help! This is the solution. You use the :tstart and :tend tags and place dates within. The start date is the day you want to look at, the end date is the day after. Then you add the step tag and step by day.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E:tstart \\u0026quot;\\u0026lt;2019-05-24 Fri\\u0026gt;\\u0026quot; :tend \\u0026quot;\\u0026lt;2019-05-25 Sat\\u0026gt;\\u0026quot; :step day\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis works. Nice!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/eoq5g5m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"report_reasons\": null, \"link_author\": \"OverthrowDissent\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"created\": 1558814220.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsnq2u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eop4wet\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"peter-salazar\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558754900.0, \"send_replies\": true, \"parent_id\": \"t3_bsnq2u\", \"score\": 3, \"author_fullname\": \"t2_apwv8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"For pasting from the web to org-mode, I use this, which uses pandoc: \\n\\n(defun kdm/html2org-clipboard ()\\n \\\"Convert clipboard contents from HTML to Org and then paste (yank).\\\"\\n (interactive)\\n (setq cmd \\\"osascript -e 'the clipboard as \\\\\\\"HTML\\\\\\\"' | perl -ne 'print chr foreach unpack(\\\\\\\"C*\\\\\\\",pack(\\\\\\\"H*\\\\\\\",substr($_,11,-3)))' | pandoc -f html -t json | pandoc -f json -t org\\\")\\n (kill-new (shell-command-to-string cmd))\\n (yank))\", \"link_title\": \"[Question] Paste with source format\", \"author_flair_css_class\": null, \"name\": \"t1_eop4wet\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor pasting from the web to org-mode, I use this, which uses pandoc: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(defun kdm/html2org-clipboard ()\\n \\u0026quot;Convert clipboard contents from HTML to Org and then paste (yank).\\u0026quot;\\n (interactive)\\n (setq cmd \\u0026quot;osascript -e \\u0026#39;the clipboard as \\\\\\u0026quot;HTML\\\\\\u0026quot;\\u0026#39; | perl -ne \\u0026#39;print chr foreach unpack(\\\\\\u0026quot;C\\u003Cem\\u003E\\\\\\u0026quot;,pack(\\\\\\u0026quot;H\\u003C/em\\u003E\\\\\\u0026quot;,substr($_,11,-3)))\\u0026#39; | pandoc -f html -t json | pandoc -f json -t org\\u0026quot;)\\n (kill-new (shell-command-to-string cmd))\\n (yank))\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bsnq2u/question_paste_with_source_format/eop4wet/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"report_reasons\": null, \"link_author\": \"GracefulToucan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"created\": 1558783700.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bry1c2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eonqshk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Okesa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1558719246.0, \"send_replies\": true, \"parent_id\": \"t1_eonkd7o\", \"score\": 1, \"author_fullname\": \"t2_4utg0yv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I think the hardest part for me is deciding what is \\u2018important\\u2019. I try to set the bar high so that my agenda isn\\u2019t full of \\u2018important \\u2018 items. Anything else (not important, not urgent) I try to simply delete\\u2014or, if it seems interesting \\u2018someday\\u2019, I move to a file called \\u2018someday.org\\u2019, which I periodically review.\", \"link_title\": \"Using the Eisenhower Matrix in Emacs Org-Mode\", \"author_flair_css_class\": null, \"name\": \"t1_eonqshk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think the hardest part for me is deciding what is \\u2018important\\u2019. I try to set the bar high so that my agenda isn\\u2019t full of \\u2018important \\u2018 items. Anything else (not important, not urgent) I try to simply delete\\u2014or, if it seems interesting \\u2018someday\\u2019, I move to a file called \\u2018someday.org\\u2019, which I periodically review.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/eonqshk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/\", \"report_reasons\": null, \"link_author\": \"Okesa\", \"author_flair_text\": null, \"link_url\": \"https://www.tompurl.com/2015-12-29-emacs-eisenhower-matrix.html\", \"created\": 1558748046.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bry1c2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eonkd7o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"trae\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1558714665.0, \"send_replies\": true, \"parent_id\": \"t3_bry1c2\", \"score\": 2, \"author_fullname\": \"t2_1oqx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I didn't know about quick-tagging, thanks!\\n\\n\\u0026#x200B;\\n\\nI do something similar, but for urgent/important only. Everything else is by definitiion, not urgent, not important. I have a custom agenda for this:\\n\\n\\u0026#x200B;\\n\\n[https://imgur.com/a/Z9z8arO](https://imgur.com/a/Z9z8arO)\", \"link_title\": \"Using the Eisenhower Matrix in Emacs Org-Mode\", \"author_flair_css_class\": null, \"name\": \"t1_eonkd7o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI didn\\u0026#39;t know about quick-tagging, thanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI do something similar, but for urgent/important only. Everything else is by definitiion, not urgent, not important. I have a custom agenda for this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/Z9z8arO\\\"\\u003Ehttps://imgur.com/a/Z9z8arO\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/eonkd7o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/\", \"report_reasons\": null, \"link_author\": \"Okesa\", \"author_flair_text\": null, \"link_url\": \"https://www.tompurl.com/2015-12-29-emacs-eisenhower-matrix.html\", \"created\": 1558743465.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs1jef\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eon2s10\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"chuckfr\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1558702745.0, \"send_replies\": true, \"parent_id\": \"t1_eoinn4g\", \"score\": 1, \"author_fullname\": \"t2_100k2h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Just to be clear, the certificate is not self-signed, correct? If it is not, its probably not the issue. However, as I recall my setup, before getting anythihng to sync via webdav on phones/tablets I had to get a cert the device considered 'real' and not self-signed.\", \"link_title\": \"Has anyone set up beorg with nextcloud sucessfully?\", \"author_flair_css_class\": null, \"name\": \"t1_eon2s10\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust to be clear, the certificate is not self-signed, correct? If it is not, its probably not the issue. However, as I recall my setup, before getting anythihng to sync via webdav on phones/tablets I had to get a cert the device considered \\u0026#39;real\\u0026#39; and not self-signed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/eon2s10/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"report_reasons\": null, \"link_author\": \"CuriousQuasar\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"created\": 1558731545.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boyu8r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eomnffm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cottasteel\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1558692675.0, \"send_replies\": true, \"parent_id\": \"t1_eommezh\", \"score\": 1, \"author_fullname\": \"t2_7nfrv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yes you are right. I have a custom function that sorts checkboxes when new checkboxes are added or the checkbox state changes, and this variable is a flag that enables this behavior. I should remove the variable from the function and implement it for myself using function advice or something similar. Thanks!\", \"link_title\": \"function for DWIM insertion of new entries\", \"author_flair_css_class\": null, \"name\": \"t1_eomnffm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes you are right. I have a custom function that sorts checkboxes when new checkboxes are added or the checkbox state changes, and this variable is a flag that enables this behavior. I should remove the variable from the function and implement it for myself using function advice or something similar. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/eomnffm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"report_reasons\": null, \"link_author\": \"cottasteel\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"created\": 1558721475.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_eomnffm\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["254978"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:19 GMT"], "x-ratelimit-remaining": ["594.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "x-ratelimit-used": ["6"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914219.302532,VS0,VE472"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["581"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:30:19"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_eq9nx63"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:20 GMT"], "x-ratelimit-remaining": ["593.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "x-ratelimit-used": ["7"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914221.799059,VS0,VE69"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["580"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_eq9nx63"}, "recorded_at": "2019-06-07T13:30:20"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_bxu83g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559940568.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu83g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"parent_whitelist_status\": null, \"stickied\": true, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559911768.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have [ob-mathematica](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el) (which allows me to execute mathematica snippets via org-babel) combined with [wolfram-mode](https://github.com/kawabata/wolfram-mode) (which provides syntax highlighting).\\n\\nSo right now I have the conundrum that if I label an org-babel source block `mathematica`, then I can evaluate it via `C-c C-c` but without syntax highlighting. On the other hand, if I label the block `wolfram`, then I can no longer evaluate it, but I get source highlighting!\\n\\nHow do I combine these two to get the best of both worlds?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxooz7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559899393.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Eob-mathematica\\u003C/a\\u003E (which allows me to execute mathematica snippets via org-babel) combined with \\u003Ca href=\\\"https://github.com/kawabata/wolfram-mode\\\"\\u003Ewolfram-mode\\u003C/a\\u003E (which provides syntax highlighting).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo right now I have the conundrum that if I label an org-babel source block \\u003Ccode\\u003Emathematica\\u003C/code\\u003E, then I can evaluate it via \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E but without syntax highlighting. On the other hand, if I label the block \\u003Ccode\\u003Ewolfram\\u003C/code\\u003E, then I can no longer evaluate it, but I get source highlighting!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I combine these two to get the best of both worlds?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxooz7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559870593.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone. Has anyone some hints on how to make helm`(org-refile)` case insensitive? E.g. I want to refile the current headline below `RubyBerlin/ToDo` (note the capital `D`). Typing the correct `\\\"Berlin/ToDo\\\"` will work and offer the headline to refile below:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/6swhzzsmvp231.png\\n\\nBut typing the lower case version `\\\"Berlin/Todo\\\"` will only give results of headlines below the one I want to refile to:\\n\\n \\n\\nhttps://i.redd.it/9mlv6bxuvp231.png\\n\\nI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\", \"author_fullname\": \"t2_5cbr5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Case insensitive (org-refile)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"6swhzzsmvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 91, \"x\": 467, \"u\": \"https://i.redd.it/6swhzzsmvp231.png\"}, \"m\": \"image/png\", \"id\": \"6swhzzsmvp231\"}, \"9mlv6bxuvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 124, \"x\": 692, \"u\": \"https://i.redd.it/9mlv6bxuvp231.png\"}, \"m\": \"image/png\", \"id\": \"9mlv6bxuvp231\"}}, \"name\": \"t3_bxfd1r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"author_cakeday\": true, \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847398.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone. Has anyone some hints on how to make helm\\u003Ccode\\u003E(org-refile)\\u003C/code\\u003E case insensitive? E.g. I want to refile the current headline below \\u003Ccode\\u003ERubyBerlin/ToDo\\u003C/code\\u003E (note the capital \\u003Ccode\\u003ED\\u003C/code\\u003E). Typing the correct \\u003Ccode\\u003E\\u0026quot;Berlin/ToDo\\u0026quot;\\u003C/code\\u003E will work and offer the headline to refile below:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/6swhzzsmvp231.png\\\"\\u003Ehttps://i.redd.it/6swhzzsmvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut typing the lower case version \\u003Ccode\\u003E\\u0026quot;Berlin/Todo\\u0026quot;\\u003C/code\\u003E will only give results of headlines below the one I want to refile to:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/9mlv6bxuvp231.png\\\"\\u003Ehttps://i.redd.it/9mlv6bxuvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfd1r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bascht\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559818598.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_j2fhy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwtuob\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 31, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 31, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559710022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwtuob\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thenackjicholson\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/fldtyuwije231.png\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559681222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi guys,\\n\\nI would like to be able to preview inline images in Org-Mode without specifying its folder.\\n\\nFor instance, I would like to have `[[figurename.png]]` even tough the figure is in a folder named `figs`.\\n\\n\\u0026#x200B;\\n\\nRight now, I am using `#+LATEX_HEADER: \\\\graphicspath{{./figs/}}` and it is working good for LaTeX exports, but I don't have the nice preview in orgmode. Any idea how I could do that?\\n\\nThanks!\", \"author_fullname\": \"t2_6nzpkw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Default directory for inline images?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmraz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559669671.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to be able to preview inline images in Org-Mode without specifying its folder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor instance, I would like to have \\u003Ccode\\u003E[[figurename.png]]\\u003C/code\\u003E even tough the figure is in a folder named \\u003Ccode\\u003Efigs\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now, I am using \\u003Ccode\\u003E#+LATEX_HEADER: \\\\graphicspath{{./figs/}}\\u003C/code\\u003E and it is working good for LaTeX exports, but I don\\u0026#39;t have the nice preview in orgmode. Any idea how I could do that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmraz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tdehaeze\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559640871.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdoe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559637338.0, \"media\": null, \"is_video\": false}], \"created\": 1559666163.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdoe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bwmdlj\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmdoe/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559637363.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi all, I'm trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is: \\n1. Find the contact (M-x org-contacts)\\n\\n2. Create link (C-c l)\\n\\n3. Go to task\\n\\n4. Insert link\\n\\nThis is not very good, I would like to know if there's a way to have my contacts links permanently stored on emacs, and if there's a easier way to insert a contact in a task.\\n\\nFor more information, the reason I want this is because sometimes I create tasks as: **Ping John about foo**, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\n\\nThanks for the help.\\n\\nPS: This is my config if it helps: [https://github.com/martini97/.emacs.d](https://github.com/martini97/.emacs.d)\", \"author_fullname\": \"t2_9eav0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Linking contacts to tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwk33h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559648146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I\\u0026#39;m trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is:\\u003Cbr/\\u003E\\n1. Find the contact (M-x org-contacts)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECreate link (C-c l)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGo to task\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EInsert link\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is not very good, I would like to know if there\\u0026#39;s a way to have my contacts links permanently stored on emacs, and if there\\u0026#39;s a easier way to insert a contact in a task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more information, the reason I want this is because sometimes I create tasks as: \\u003Cstrong\\u003EPing John about foo\\u003C/strong\\u003E, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for the help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: This is my config if it helps: \\u003Ca href=\\\"https://github.com/martini97/.emacs.d\\\"\\u003Ehttps://github.com/martini97/.emacs.d\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwk33h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_martini97\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559619346.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Came across this function/variable while improving my agenda views and thought it'd be interesting ... except it doesn't seem to work for me! If I activate this in an agenda view where I know I archived a task that's now DONE, nothing shows up.\\n\\nMy archive files are located in a different directory than my main org files:\\n\\n (setq org-archive-location (concat archive-dir (format-time-string \\\"%Y\\\" (current-time)) \\\".org_archive::datetree/\\\"))\\n\\nThese YYYY.org_archive files are not part of my `org-agenda-files` either.\\n\\nDoes archives mode only work if the `:ARCHIVED:` headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How is org-agenda-archives-mode supposed to work?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwi4qu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559636288.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECame across this function/variable while improving my agenda views and thought it\\u0026#39;d be interesting ... except it doesn\\u0026#39;t seem to work for me! If I activate this in an agenda view where I know I archived a task that\\u0026#39;s now DONE, nothing shows up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy archive files are located in a different directory than my main org files:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-archive-location (concat archive-dir (format-time-string \\u0026quot;%Y\\u0026quot; (current-time)) \\u0026quot;.org_archive::datetree/\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThese YYYY.org_archive files are not part of my \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes archives mode only work if the \\u003Ccode\\u003E:ARCHIVED:\\u003C/code\\u003E headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwi4qu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559607488.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"how do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwcmiw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559607953.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehow do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwcmiw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559579153.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a time table like so with the following table format formula.\\n\\n |-------+----------+--------------|\\n | Start | Duration | Title |\\n |-------+----------+--------------|\\n | 9:00 | 00:15 | Introduction |\\n | 9:15 | 00:45 | Basics |\\n | 10:00 | 00:30 | Break |\\n | 10:30 | 01:30 | Intermediate |\\n | 12:00 | 01:00 | Lunch Break |\\n | 13:00 | 02:00 | Advanced |\\n | 15:00 | 00:30 | Break |\\n | 15:30 | 01:30 | Party |\\n | 17:00 | | End |\\n |-------+----------+--------------|\\n #+TBLFM: $2=@+1$1-$1;U\\n\\nMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\n\\n\\u003E user-error: Row descriptor +1 leads outside table\\n\\nIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\n\\nUpdate: `#+TBLFM: @\\u003C\\u003C$2..@\\u003E\\u003E$2=@+1$1-$1;U` seems to do the trick, thanks cipharius !\", \"author_fullname\": \"t2_5n9uk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9eiq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559564152.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559588764.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a time table like so with the following table format formula.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E|-------+----------+--------------|\\n| Start | Duration | Title |\\n|-------+----------+--------------|\\n| 9:00 | 00:15 | Introduction |\\n| 9:15 | 00:45 | Basics |\\n| 10:00 | 00:30 | Break |\\n| 10:30 | 01:30 | Intermediate |\\n| 12:00 | 01:00 | Lunch Break |\\n| 13:00 | 02:00 | Advanced |\\n| 15:00 | 00:30 | Break |\\n| 15:30 | 01:30 | Party |\\n| 17:00 | | End |\\n|-------+----------+--------------|\\n#+TBLFM: $2=@+1$1-$1;U\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Euser-error: Row descriptor +1 leads outside table\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate: \\u003Ccode\\u003E#+TBLFM: @\\u0026lt;\\u0026lt;$2..@\\u0026gt;\\u0026gt;$2=@+1$1-$1;U\\u003C/code\\u003E seems to do the trick, thanks cipharius !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9eiq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gausby\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559559964.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I found this post: [https://www.reddit.com/r/orgmode/comments/90sk11/how\\\\_do\\\\_you\\\\_cite\\\\_pages\\\\_for\\\\_quotes\\\\_with\\\\_orgref/](https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/), which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\", \"author_fullname\": \"t2_js9by\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you include page number in page number in org-ref with helm?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw916a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559585779.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI found this post: \\u003Ca href=\\\"https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\\"\\u003Ehttps://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\u003C/a\\u003E, which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw916a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kandidate\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559556979.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The function `org-tags-view` allows you to build up semi-complex searches for tags using regexp:\\n\\n```\\n(org-tags-view t \\\"+PROP1={value}\\u0026+PROP2={[1-2]}\\\")\\n```\\n\\nHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header's properties, do some computations on them, and returns `t` or `nil` depending upon whether the computation matches in the way I specify?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Searching for org-tags programmatically (without regexp)?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw317n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559542522.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe function \\u003Ccode\\u003Eorg-tags-view\\u003C/code\\u003E allows you to build up semi-complex searches for tags using regexp:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(org-tags-view t \\u0026quot;+PROP1={value}\\u0026amp;+PROP2={[1-2]}\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header\\u0026#39;s properties, do some computations on them, and returns \\u003Ccode\\u003Et\\u003C/code\\u003E or \\u003Ccode\\u003Enil\\u003C/code\\u003E depending upon whether the computation matches in the way I specify?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw317n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559513722.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"# Context\\n\\nI have a very strange org-mode workflow, and I don't know how better to ask this question without first explaining it. So bear with me :)\\n\\nEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\n\\n1. **Resources.** Resources are things like `Rcomputer`, `Rnone` (for pure \\\"thinking\\\" tasks), and combinatory resources like `RDevice` (defined as `Rphone` OR `Rcomputer`). They should ultimately be placed in a bracket notation such as `[Rnone]` or `[Rcomputer, Rphone]`.\\n2. **Energy.** Energy can be thought of as a real number between `E1` and `E10` (i.e., `E10` might making a hard emotional decision, while an `E1` task takes almost no effort). Energy should also ultimately be placed in brackets like `[E5]` (single value) or `[E2, E6]` (a range of energy).\\n3. **Tags.** Tags are high-level wrappers for the previous two categories. For example, `@Thinking` could convert to `E4` and `Rnone`, while `@Reading` might convert to `E3` and `RDevice`.\\n\\n# Problem\\n\\n**What I don't know how best to do:** programatically convert (3) into (1) and (2) in a sensible way. So, for example, I'd like to have a function which can convert\\n\\n * An org-mode thinking task. :@Thinking:\\n\\nto this:\\n\\n * An org-mode thinking task. :@Thinking:\\n :PROPERTIES:\\n :R: [Rnone]\\n :E: [E4]\\n :END:\\n\\nor more complicatedly, convert a task with two tags:\\n\\n * An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n :PROPERTIES:\\n :R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u003E [Rnone], while @Reading -\\u003E [RDevice] -\\u003E [Rcompter, Rphone]\\n :E: [E3, E4] ; @Thinking -\\u003E E3; @Reading -\\u003E E4\\n :END:\\n\\nHow best to encode all of this in elisp?\\n\\n# Attempt\\n\\nFirst we have high level resources:\\n\\n``` elisp\\n(setq high-level-resources (\\n (\\\"RDevice\\\" . '(\\\"Rcomputer\\\" \\\"Rphone\\\")) ;; Notice that \\\"high-level\\\" resources are capitalized while \\\"low-level\\\" resource are non-capitalized\\n ;; ..\\n )\\n```\\n\\nthen we have high-level tags (which define both a resource and an energy component):\\n\\n``` elisp\\n(setq tags ( \\n (\\\"@Reading\\\" . '((\\\"E\\\" . \\\"E3\\\") (\\\"R\\\" . \\\"RDevice\\\")))\\n (\\\"@Thinking\\\" . '((\\\"E\\\" . \\\"E2\\\") (\\\"R\\\" . \\\"Rnone\\\")))\\n ;; ..\\n )\\n```\\n\\nThen we need a function which converts tags to their resources/energy:\\n\\n``` elisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n```\\n\\nHow can we implement `convert-tags-to-resources-and-energy`?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Converting org-tags into properties (recursively)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvz12r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559520969.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EContext\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI have a very strange org-mode workflow, and I don\\u0026#39;t know how better to ask this question without first explaining it. So bear with me :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EResources.\\u003C/strong\\u003E Resources are things like \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E, \\u003Ccode\\u003ERnone\\u003C/code\\u003E (for pure \\u0026quot;thinking\\u0026quot; tasks), and combinatory resources like \\u003Ccode\\u003ERDevice\\u003C/code\\u003E (defined as \\u003Ccode\\u003ERphone\\u003C/code\\u003E OR \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E). They should ultimately be placed in a bracket notation such as \\u003Ccode\\u003E[Rnone]\\u003C/code\\u003E or \\u003Ccode\\u003E[Rcomputer, Rphone]\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EEnergy.\\u003C/strong\\u003E Energy can be thought of as a real number between \\u003Ccode\\u003EE1\\u003C/code\\u003E and \\u003Ccode\\u003EE10\\u003C/code\\u003E (i.e., \\u003Ccode\\u003EE10\\u003C/code\\u003E might making a hard emotional decision, while an \\u003Ccode\\u003EE1\\u003C/code\\u003E task takes almost no effort). Energy should also ultimately be placed in brackets like \\u003Ccode\\u003E[E5]\\u003C/code\\u003E (single value) or \\u003Ccode\\u003E[E2, E6]\\u003C/code\\u003E (a range of energy).\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003ETags.\\u003C/strong\\u003E Tags are high-level wrappers for the previous two categories. For example, \\u003Ccode\\u003E@Thinking\\u003C/code\\u003E could convert to \\u003Ccode\\u003EE4\\u003C/code\\u003E and \\u003Ccode\\u003ERnone\\u003C/code\\u003E, while \\u003Ccode\\u003E@Reading\\u003C/code\\u003E might convert to \\u003Ccode\\u003EE3\\u003C/code\\u003E and \\u003Ccode\\u003ERDevice\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Ch1\\u003EProblem\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat I don\\u0026#39;t know how best to do:\\u003C/strong\\u003E programatically convert (3) into (1) and (2) in a sensible way. So, for example, I\\u0026#39;d like to have a function which can convert\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eto this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n:PROPERTIES:\\n:R: [Rnone]\\n:E: [E4]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eor more complicatedly, convert a task with two tags:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n:PROPERTIES:\\n:R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u0026gt; [Rnone], while @Reading -\\u0026gt; [RDevice] -\\u0026gt; [Rcompter, Rphone]\\n:E: [E3, E4] ; @Thinking -\\u0026gt; E3; @Reading -\\u0026gt; E4\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHow best to encode all of this in elisp?\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EAttempt\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFirst we have high level resources:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq high-level-resources (\\n (\\u0026quot;RDevice\\u0026quot; . \\u0026#39;(\\u0026quot;Rcomputer\\u0026quot; \\u0026quot;Rphone\\u0026quot;)) ;; Notice that \\u0026quot;high-level\\u0026quot; resources are capitalized while \\u0026quot;low-level\\u0026quot; resource are non-capitalized\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethen we have high-level tags (which define both a resource and an energy component):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq tags ( \\n (\\u0026quot;@Reading\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E3\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;RDevice\\u0026quot;)))\\n (\\u0026quot;@Thinking\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E2\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;Rnone\\u0026quot;)))\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen we need a function which converts tags to their resources/energy:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can we implement \\u003Ccode\\u003Econvert-tags-to-resources-and-energy\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvz12r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559492169.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvsa9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Running a fresh Emacs session with `emacs -Q`, I evaluated the following:\\n\\n (setq org-agenda-files '(\\\"~/index.org\\\"))\\n (setq org-enforce-todo-dependencies t)\\n (setq org-agenda-dim-blocked-tasks 'invisible)\\n\\nwhere `~/index.org` simply contains:\\n\\n * Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO First subheading\\n ** TODO Second subheading\\n\\nWhen I call `(org-agenda nil \\\"t\\\")` to display the available TODOs, it correctly displays only \\\"First subheading.\\\" However, if I then export that buffer with `org-agenda-write`, then the resulting file contains both \\\"First subheading\\\" and \\\"Second subheading.\\\"\\n\\nWhat is going on here, and can it be fixed?\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvs6jo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559467712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERunning a fresh Emacs session with \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E, I evaluated the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files \\u0026#39;(\\u0026quot;~/index.org\\u0026quot;))\\n(setq org-enforce-todo-dependencies t)\\n(setq org-agenda-dim-blocked-tasks \\u0026#39;invisible)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E~/index.org\\u003C/code\\u003E simply contains:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO First subheading\\n** TODO Second subheading\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I call \\u003Ccode\\u003E(org-agenda nil \\u0026quot;t\\u0026quot;)\\u003C/code\\u003E to display the available TODOs, it correctly displays only \\u0026quot;First subheading.\\u0026quot; However, if I then export that buffer with \\u003Ccode\\u003Eorg-agenda-write\\u003C/code\\u003E, then the resulting file contains both \\u0026quot;First subheading\\u0026quot; and \\u0026quot;Second subheading.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is going on here, and can it be fixed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvs6jo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559438912.0, \"media\": null, \"is_video\": false}], \"created\": 1559468360.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvsa9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bvs6jo\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvsa9b/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559439560.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"In a list of `files` I have org tasks with the property `E` such that each `E` is marked with an interval range.\\n\\n * Some task1\\n :PROPERTIES:\\n :E: [E1, E3]\\n :END:\\n\\n * Some task2\\n :PROPERTIES:\\n :E: [E4, E7]\\n :END:\\n\\n...and so forth.\\n\\n**Question:** How can I `search` through `files` and obtain an agenda view of all tasks that intersect within a range `min` to `max`?\\n\\nSo for example `(search files 3 7)` should display tasks that have, i,e., `[E2, E4]`, `[E4, E5]` or `[E6, E8]` but *not* display tasks have `[E1, E2]` or `[E8, E9]`.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Matching org tasks against an interval of values\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvqyqw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559459994.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn a list of \\u003Ccode\\u003Efiles\\u003C/code\\u003E I have org tasks with the property \\u003Ccode\\u003EE\\u003C/code\\u003E such that each \\u003Ccode\\u003EE\\u003C/code\\u003E is marked with an interval range.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Some task1\\n:PROPERTIES:\\n:E: [E1, E3]\\n:END:\\n\\n* Some task2\\n:PROPERTIES:\\n:E: [E4, E7]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E...and so forth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion:\\u003C/strong\\u003E How can I \\u003Ccode\\u003Esearch\\u003C/code\\u003E through \\u003Ccode\\u003Efiles\\u003C/code\\u003E and obtain an agenda view of all tasks that intersect within a range \\u003Ccode\\u003Emin\\u003C/code\\u003E to \\u003Ccode\\u003Emax\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for example \\u003Ccode\\u003E(search files 3 7)\\u003C/code\\u003E should display tasks that have, i,e., \\u003Ccode\\u003E[E2, E4]\\u003C/code\\u003E, \\u003Ccode\\u003E[E4, E5]\\u003C/code\\u003E or \\u003Ccode\\u003E[E6, E8]\\u003C/code\\u003E but \\u003Cem\\u003Enot\\u003C/em\\u003E display tasks have \\u003Ccode\\u003E[E1, E2]\\u003C/code\\u003E or \\u003Ccode\\u003E[E8, E9]\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvqyqw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559431194.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-src-window-setup not behaving as expected with multi-term-dedicated opened? (more info in comments) (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvavuq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559354935.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvavuq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvavuq/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvai3u/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559326135.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv747t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559335751.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv747t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559306951.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi Everyone, \\n\\nI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\n\\n\\u0026#x200B;\\n\\n (cond ((eq system-type 'windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list 'exec-path \\\"c:/cygwin64/bin/\\\")\\n (setenv \\\"PATH\\\"\\n (concat\\n \\\"c:/cygwin64/bin/aspell.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/zip.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/unzip.exe\\\" \\\";\\\"\\n (getenv \\\"PATH\\\")\\n )\\n )\\n (setq ispell-program-name \\\"aspell.exe\\\")\\n )\\n )\\n\\nThis is my \\\\*Only Windows\\\\* Configuration Part as I cant include it to the Windows PATH Variable.\\n\\nNow (org-odt-export-to-odt) has the following problem. \\n\\n\\u0026#x200B;\\n\\n OpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\n sh: unzip: command not found\\n test of Configuration.odt FAILED\\n \\n zip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n )\\n\\nAny ideas?\\n\\nJust Message me if there is more Info needed\\n\\n\\u0026#x200B;\\n\\nThanks in advance\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Win10 Org Odt Export Unzip Problem\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv54oy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559321590.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi Everyone, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(cond ((eq system-type \\u0026#39;windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list \\u0026#39;exec-path \\u0026quot;c:/cygwin64/bin/\\u0026quot;)\\n (setenv \\u0026quot;PATH\\u0026quot;\\n (concat\\n \\u0026quot;c:/cygwin64/bin/aspell.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/zip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/unzip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n (getenv \\u0026quot;PATH\\u0026quot;)\\n )\\n )\\n (setq ispell-program-name \\u0026quot;aspell.exe\\u0026quot;)\\n )\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis is my *Only Windows* Configuration Part as I cant include it to the Windows PATH Variable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow (org-odt-export-to-odt) has the following problem. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EOpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\nsh: unzip: command not found\\ntest of Configuration.odt FAILED\\n\\nzip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust Message me if there is more Info needed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv54oy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559292790.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Dear Orgers...\\n\\nI'm exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\\"Contents\\\"). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\n\\nhttps://i.redd.it/71ml0g0ikf131.png\\n\\nHow can I prevent this from happening?\\n\\nI see here 2 possibilities:\\n\\n1. the ToC title exists, but doesn't appears in the ToC itself.\\n2. There is no ToC title!\\n\\nI'm obviously searching with the wrong keywords since I'm not finding a solution to this...\\n\\nIn every case, thanks a lot for your help. :)\", \"author_fullname\": \"t2_dyrlf6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Avoid ToC entry in ToC export to pdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"71ml0g0ikf131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1210, \"x\": 918, \"u\": \"https://i.redd.it/71ml0g0ikf131.png\"}, \"m\": \"image/png\", \"id\": \"71ml0g0ikf131\"}}, \"name\": \"t3_buzxzp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559286714.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDear Orgers...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\u0026quot;Contents\\u0026quot;). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/71ml0g0ikf131.png\\\"\\u003Ehttps://i.redd.it/71ml0g0ikf131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I prevent this from happening?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI see here 2 possibilities:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Ethe ToC title exists, but doesn\\u0026#39;t appears in the ToC itself.\\u003C/li\\u003E\\n\\u003Cli\\u003EThere is no ToC title!\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m obviously searching with the wrong keywords since I\\u0026#39;m not finding a solution to this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn every case, thanks a lot for your help. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buzxzp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"edumerco\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559257914.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a `calendar.org` buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\n\\nIs this possible? Where can I start looking at this?\\n\\nThanks!\", \"author_fullname\": \"t2_3tdxdj82\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly agenda view: not show past items from certain buffers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burp9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559242335.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a \\u003Ccode\\u003Ecalendar.org\\u003C/code\\u003E buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this possible? Where can I start looking at this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burp9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mirenbe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559213535.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl9k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 24, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 24, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl5q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 69, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 69, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559241478.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl5q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burl5q/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559212678.0, \"media\": null, \"is_video\": false}], \"created\": 1559241501.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl9k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_burl5q\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burl9k/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559212701.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Any way to hide these headers/footers? It's a bit distracting with lots of small code examples.\\n\\n #+begin_src haskell\\n ...\\n #+end_src\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I hide source block header and footer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buopeh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559218136.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny way to hide these headers/footers? It\\u0026#39;s a bit distracting with lots of small code examples.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+begin_src haskell\\n...\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buopeh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559189336.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\n\\nI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\n\\nI'm pretty sure I'm overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\", \"author_fullname\": \"t2_ycu34\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Handling Github Badges in Org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buhsue\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559180889.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m pretty sure I\\u0026#39;m overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buhsue\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hardrived_\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559152089.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I add TODO to list items instead of just headers?\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Add todo to list item?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budm5j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159049.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I add TODO to list items instead of just headers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budm5j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559130249.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello!\\n\\nI'd like to use the ORDERED property but it doesn't seem to be working in the way I'd expect, so I wanted to check that my expectation is correct.\\n\\n * TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO Check contents of disks\\n ** TODO Securely wipe disks\\n ** TODO Take disks to recycling center\\n\\nWith the ORDERED property set, I figured that I wouldn't be able to mark \\\"Securely wipe disks\\\" as DONE before I had completed \\\"Check contents of disks\\\". However I can mark these items as DONE in any order I like.\\n\\nDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Possible confusion over ORDERED property\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu1tby\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559088369.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to use the ORDERED property but it doesn\\u0026#39;t seem to be working in the way I\\u0026#39;d expect, so I wanted to check that my expectation is correct.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO Check contents of disks\\n** TODO Securely wipe disks\\n** TODO Take disks to recycling center\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith the ORDERED property set, I figured that I wouldn\\u0026#39;t be able to mark \\u0026quot;Securely wipe disks\\u0026quot; as DONE before I had completed \\u0026quot;Check contents of disks\\u0026quot;. However I can mark these items as DONE in any order I like.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu1tby\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559059569.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I was wondering how one could make one entry inherit the DEADLINE of the parent. I know about `org-use-property-inheritance` but it doesn't seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\", \"author_fullname\": \"t2_q52rf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inherit DEADLINE from parent\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btzy6m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559078444.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering how one could make one entry inherit the DEADLINE of the parent. I know about \\u003Ccode\\u003Eorg-use-property-inheritance\\u003C/code\\u003E but it doesn\\u0026#39;t seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btzy6m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackjackk0\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559049644.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi y'all, this is probably a simple question for some of you, but I can't quite figure it out on my own.\\n\\nI'm trying to edit my `org-agenda-prefix-format` for an agenda view, such that:\\n\\n* If the entry has a scheduled or deadline timestamp, show the standard \\\"Deadline:\\\" / \\\"In N d.:\\\" / \\\"Scheduled:\\\" / \\\"Sched. 10 d.:\\\" strings.\\n* Otherwise, show the category\\n\\n**Example**: Agenda view\\n\\n Sunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\nIs there a way to display a conditional prefix like this?\\n\\nThe code I was tinkering with before posting looked like:\\n\\n (defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\\"sched (%s), dead (%s)\\\" is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\\" %-12s%-12t \\\"\\n \\\" %-12:c%-12t \\\")))\\n\\n ; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n (org-agenda-custom-prefix (test/custom-prefix))\\n\\nNot exactly the same as above, but it was a WIP, and the problem was that `is-scheduled` and `is-deadlined` were always both `nil` for some reason, despite the tasks having a scheduled / deadline timestamp.\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btovhk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559007583.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi y\\u0026#39;all, this is probably a simple question for some of you, but I can\\u0026#39;t quite figure it out on my own.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to edit my \\u003Ccode\\u003Eorg-agenda-prefix-format\\u003C/code\\u003E for an agenda view, such that:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf the entry has a scheduled or deadline timestamp, show the standard \\u0026quot;Deadline:\\u0026quot; / \\u0026quot;In N d.:\\u0026quot; / \\u0026quot;Scheduled:\\u0026quot; / \\u0026quot;Sched. 10 d.:\\u0026quot; strings.\\u003C/li\\u003E\\n\\u003Cli\\u003EOtherwise, show the category\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EExample\\u003C/strong\\u003E: Agenda view\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ESunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs there a way to display a conditional prefix like this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code I was tinkering with before posting looked like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\u0026quot;sched (%s), dead (%s)\\u0026quot; is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\u0026quot; %-12s%-12t \\u0026quot;\\n \\u0026quot; %-12:c%-12t \\u0026quot;)))\\n\\n; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n(org-agenda-custom-prefix (test/custom-prefix))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENot exactly the same as above, but it was a WIP, and the problem was that \\u003Ccode\\u003Eis-scheduled\\u003C/code\\u003E and \\u003Ccode\\u003Eis-deadlined\\u003C/code\\u003E were always both \\u003Ccode\\u003Enil\\u003C/code\\u003E for some reason, despite the tasks having a scheduled / deadline timestamp.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btovhk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558978783.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Not exactly sure how to phrase this question, so I'll do my best to explain what I'd like to do and why...\\n\\nI've been writing quite a few projects using literate programming via org-mode. Lately, I've been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\n\\nI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\n\\nThanks!\", \"author_fullname\": \"t2_4hzm8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using org-agenda on individual files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btdd9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558934196.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot exactly sure how to phrase this question, so I\\u0026#39;ll do my best to explain what I\\u0026#39;d like to do and why...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been writing quite a few projects using literate programming via org-mode. Lately, I\\u0026#39;ve been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btdd9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ralphbluecoat\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558905396.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I insert a string into an org file and change its appearance by using `(put-text-property start end 'font-lock-face 'my-face my-string)`, the face assignment doesn't persist after the file is saved and re-opened.\\n\\n\\u0026#x200B;\\n\\nIt also appears that I cannot use `(put-text-property start end 'face 'my-face)` in an org buffer (but it does work when the file is in fundamental mode).\\n\\n\\u0026#x200B;\\n\\nHow can I assign a persistent face to a section of an org buffer?\\n\\n\\u0026#x200B;\\n\\n(Edit: posted before I finished writing, typos.)\", \"author_fullname\": \"t2_3gjjtpnq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Persistent font changes in an org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btasp7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558892947.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558921535.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I insert a string into an org file and change its appearance by using \\u003Ccode\\u003E(put-text-property start end \\u0026#39;font-lock-face \\u0026#39;my-face my-string)\\u003C/code\\u003E, the face assignment doesn\\u0026#39;t persist after the file is saved and re-opened.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt also appears that I cannot use \\u003Ccode\\u003E(put-text-property start end \\u0026#39;face \\u0026#39;my-face)\\u003C/code\\u003E in an org buffer (but it does work when the file is in fundamental mode).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I assign a persistent face to a section of an org buffer?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Edit: posted before I finished writing, typos.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btasp7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itistheblurstoftimes\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558892735.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9f5z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'd like to better show \\\"Today\\\" in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\n\\nFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\n\\nThanks!\\n\\nMy current habit-related settings are:\\n\\n (setq org-habit-show-habits-only-for-today nil)\\n (setq org-habit-graph-column 60)\\n (setq org-habit-following-days 3)\\n\\nAlthough I don't think that they change anything to do with this question.\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9atw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558913913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d like to better show \\u0026quot;Today\\u0026quot; in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current habit-related settings are:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-habit-show-habits-only-for-today nil)\\n(setq org-habit-graph-column 60)\\n(setq org-habit-following-days 3)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAlthough I don\\u0026#39;t think that they change anything to do with this question.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9atw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1558885113.0, \"media\": null, \"is_video\": false}], \"created\": 1558914521.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9f5z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bt9atw\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558885721.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Many times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\", \"author_fullname\": \"t2_38v6e72q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Question] Paste with source format\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsnq2u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558768415.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMany times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsnq2u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GracefulToucan\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558739615.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 24, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsgj6t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558730956.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsgj6t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558702156.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"doing kanban in org mode? (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs8w8p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558677597.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs8w8p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs8w8p/doing_kanban_in_org_mode_xpost_remacs/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bs8rpm/doing_kanban_in_org_mode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558648797.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\n\\nDoes anyone of you have the same set up with a working configuration?\", \"author_fullname\": \"t2_3tjqi9un\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Has anyone set up beorg with nextcloud sucessfully?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs1jef\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558638131.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone of you have the same set up with a working configuration?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs1jef\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CuriousQuasar\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558609331.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_4utg0yv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using the Eisenhower Matrix in Emacs Org-Mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bry1c2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558609281.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"tompurl.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bry1c2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Okesa\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.tompurl.com/2015-12-29-emacs-eisenhower-matrix.html\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558580481.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The following renders with `org-toggle-latex-fragment`:\\n\\n$$\\n2+2 = 4\\n$$\\n\\nbut the following doesn't\\n\\n#+begin_latex\\n2+2 = 4\\n#+end_latex\\n\\nHow do I get the bottom to render as well?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Rendering inside \\\"#+begin_latex ... #+end_latex\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brs51i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558577715.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe following renders with \\u003Ccode\\u003Eorg-toggle-latex-fragment\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E$$\\n2+2 = 4\\n$$\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut the following doesn\\u0026#39;t\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+begin_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E2+2 = 4\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+end_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EHow do I get the bottom to render as well?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brs51i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558548915.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"When I export to pdf from org, the font is a bitmap font.\\n\\nHow can I change the export such that vector fonts will be used?\\n\\nThanks!\", \"author_fullname\": \"t2_q43ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org export to pdf: vector font instead of bitmap font\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brkczh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558528248.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I export to pdf from org, the font is a bitmap font.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I change the export such that vector fonts will be used?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brkczh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HumanBrainMapper\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558499448.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I had posted this some months ago here: https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\n\\nI've updated and added some new features to it!\\n\\nIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\n\\nIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\n\\nThe new features are: It auto generates indexes, has support for tags, header, and footer! \\n\\nRight now the main missing feature is generating the RSS.\\n\\nHere is a working example: https://ivanaf.com/org-export-head/index.html, and the source is here: https://github.com/itf/org-export-head\", \"author_fullname\": \"t2_21clngjz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Single file Blog in org mode - update\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br5iur\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558438826.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI had posted this some months ago here: \\u003Ca href=\\\"https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\\"\\u003Ehttps://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve updated and added some new features to it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe new features are: It auto generates indexes, has support for tags, header, and footer! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now the main missing feature is generating the RSS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is a working example: \\u003Ca href=\\\"https://ivanaf.com/org-export-head/index.html\\\"\\u003Ehttps://ivanaf.com/org-export-head/index.html\\u003C/a\\u003E, and the source is here: \\u003Ca href=\\\"https://github.com/itf/org-export-head\\\"\\u003Ehttps://github.com/itf/org-export-head\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br5iur\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itadeufa\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558410026.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm using spacemacs and am trying to figure out how to use the following package: [here](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el).\\n\\nIt's supposed to add mathematica support to org-babel snippets.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I use ob-mathematica.el?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br2g1m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558420778.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using spacemacs and am trying to figure out how to use the following package: \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s supposed to add mathematica support to org-babel snippets.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br2g1m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558391978.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\n\\nWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\n\\nThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\n\\n2019-05-12 \\nTask A : 3h 20m \\nTask B : 2h 5m\\n\\n2019-05-13 \\nTask A : 2h 10m \\nTask B : 1h 20m\\n\\nI've read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\", \"author_fullname\": \"t2_37uew703\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"View clock table entries by date?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bqu8sp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558379941.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-12\\u003Cbr/\\u003E\\nTask A : 3h 20m\\u003Cbr/\\u003E\\nTask B : 2h 5m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-13\\u003Cbr/\\u003E\\nTask A : 2h 10m\\u003Cbr/\\u003E\\nTask B : 1h 20m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqu8sp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OverthrowDissent\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558351141.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Have some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\n\\nbeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\n\\n\\u0026#x200B;\\n\\nBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\n\\n\\u0026#x200B;\\n\\n(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\n\\nand then format all the returns, into a working log entry I can put notes into along with some screenshots\\n\\n\\u0026#x200B;\\n\\nAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\n\\nAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\n\\n\\u0026#x200B;\\n\\nThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\n\\n\\u0026#x200B;\\n\\nadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\n\\n\\u0026#x200B;\\n\\nYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\", \"author_fullname\": \"t2_nb9r4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode / LISP Mentor or Tutor?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq9kxd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558246612.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand then format all the returns, into a working log entry I can put notes into along with some screenshots\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq9kxd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"psychocoonass\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558217812.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I'm on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\n\\nI have a lot of files in Deft that I would rather access through org-capture.\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to make the capture template selection list window (\\\"Org Select\\\") scrollable so that when you have a large number of capture templates (e.g.\\u003E 26), the display is not truncated?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq8ohl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558241466.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I\\u0026#39;m on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a lot of files in Deft that I would rather access through org-capture.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq8ohl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558212666.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 17, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpquo9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558126152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpquo9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558097352.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I see two packages: \\n\\n* https://github.com/mattduck/org-toggl-py\\n* https://github.com/mmagnus/emacs-toggl\\n\\nBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having `toggl` installed and connect to their service on task start.\\n\\nI want to log my time and send whenever I'm ready _in emacs_ using the name of the item associated with my clock entries with the ability to override/change this via properties. \\n\\norg-toggl-py has some property support, but requires exporting with external command. \\n\\nReally maybe external command is okay but wanted to see what others are using.\\n\\n\\n**Update 1**: Found https://github.com/mbork/org-toggl. Investigating...\\n\\n**Update 2**: Timer on org-toggle cannot be stopped see PR [#6](https://github.com/mbork/org-toggl/pull/6) and [#3](https://github.com/mbork/org-toggl/pull/3) \\u2013which are from 2018. Also **does not** seem to integrate with Org mode as advertised.\\n\\n**Update 3**: Tried [Fuco1's fork](https://github.com/Fuco1/org-toggl) which fixes [#6](https://github.com/mbork/org-toggl/pull/6) but Org mode integration still is not working. Went to org-toggle-py [but couldn't get it to work](https://github.com/mattduck/org-toggl-py/issues/1)\\n\\n\\nSeems like best approach is to call `toggl-start-time-entry`/`toggl-stop-time-entry ` around `org-clock-in`/`org-clock-out` and then write some export function using these. \\n\\nNot sure if it's possible to check if an export is new or requires updating. Will have to investigate Toggl's API.\", \"author_fullname\": \"t2_h8sck\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone Use Org mode With Toggl\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpjh7e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558056916.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558076490.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see two packages: \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py\\\"\\u003Ehttps://github.com/mattduck/org-toggl-py\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mmagnus/emacs-toggl\\\"\\u003Ehttps://github.com/mmagnus/emacs-toggl\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having \\u003Ccode\\u003Etoggl\\u003C/code\\u003E installed and connect to their service on task start.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to log my time and send whenever I\\u0026#39;m ready \\u003Cem\\u003Ein emacs\\u003C/em\\u003E using the name of the item associated with my clock entries with the ability to override/change this via properties. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorg-toggl-py has some property support, but requires exporting with external command. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReally maybe external command is okay but wanted to see what others are using.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 1\\u003C/strong\\u003E: Found \\u003Ca href=\\\"https://github.com/mbork/org-toggl\\\"\\u003Ehttps://github.com/mbork/org-toggl\\u003C/a\\u003E. Investigating...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 2\\u003C/strong\\u003E: Timer on org-toggle cannot be stopped see PR \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E and \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/3\\\"\\u003E#3\\u003C/a\\u003E \\u2013which are from 2018. Also \\u003Cstrong\\u003Edoes not\\u003C/strong\\u003E seem to integrate with Org mode as advertised.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 3\\u003C/strong\\u003E: Tried \\u003Ca href=\\\"https://github.com/Fuco1/org-toggl\\\"\\u003EFuco1\\u0026#39;s fork\\u003C/a\\u003E which fixes \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E but Org mode integration still is not working. Went to org-toggle-py \\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py/issues/1\\\"\\u003Ebut couldn\\u0026#39;t get it to work\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESeems like best approach is to call \\u003Ccode\\u003Etoggl-start-time-entry\\u003C/code\\u003E/\\u003Ccode\\u003Etoggl-stop-time-entry\\u003C/code\\u003E around \\u003Ccode\\u003Eorg-clock-in\\u003C/code\\u003E/\\u003Ccode\\u003Eorg-clock-out\\u003C/code\\u003E and then write some export function using these. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot sure if it\\u0026#39;s possible to check if an export is new or requires updating. Will have to investigate Toggl\\u0026#39;s API.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpjh7e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sshaw_\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558047690.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to find an note taking website that I can used to stay organized on computers that don't have emacs.\\n\\nAll of the online note taking apps I have found like SimpleNote or \\\"Tutrl\\\" can only understand markdown.\\n\\nIs there any note taking web service that can understand and edit org files like markdown.\\n\\n\\n\\nI have my own server so I can host my own app if necessary.\", \"author_fullname\": \"t2_gm7cp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Looking for a Evernote-like note taking web app that can understand org-files\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bp8uw7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558013986.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to find an note taking website that I can used to stay organized on computers that don\\u0026#39;t have emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll of the online note taking apps I have found like SimpleNote or \\u0026quot;Tutrl\\u0026quot; can only understand markdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any note taking web service that can understand and edit org files like markdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have my own server so I can host my own app if necessary.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bp8uw7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CeamoreCash\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bp8uw7/looking_for_a_evernotelike_note_taking_web_app/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bp8uw7/looking_for_a_evernotelike_note_taking_web_app/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557985186.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have made a function which \\\"intelligently\\\" inserts a new heading, TODO, list item, or checkbox based on the the type of the current entry at the point. I find it quite useful, so I thought would share it here.\\n\\nWhen inserting new headings/items into an org subtree, I don't like having to remember which command to use based on whether the current entry is a heading (`C-RET`), a TODO (`C-S-RET`), a list item (`M-x org-insert-item`), or a checkbox (`C-u M-x org-insert-item`). I also don't like that the behavior changes depending on whether the point is at the beginning of the line. \\n\\nBased on these requirements, I made the function `sbr-org-insert-dwim` listed below. It is highly opinionated based on my use preferences:\\n\\n* Lines are never split (for the duration of the command, `org-M-RET-may-split-line` is set to nil). If I really need to split the line, I can either do `C-k sbr-org-insert-dwim C-y` or use the built in `M-RET` or `M-S-RET`\\n* The behavior of `sbr-org-insert-dwim` is the same regardless of where the point is on the current line, on the asterisks/dash, at the beginning/middle/end of the entry, or even if the point is after ellipses (i.e. the subtree of the current entry is hidden). The builtin commands `org-insert-heading` and `org-insert-item` have unspecified behavior when used after ellipses.\\n* By default, the new entry in inserted below the current subtree/item. With the prefix `C-u`, the entry is inserted before the current entry and the end of previous subtree (similar to `C-u C-u org-insert-heading`). The inserted entry never breaks up a subtree, which in my opinion, would break the abstraction of the subtree hierarchy. In order to break up and edit subtree structure, I use the `M-\\u003Carrow\\u003E` commands.\\n* If the point is above the first heading, simply insert a level-1 heading. When used above the first heading, `C-RET` (`org-insert-heading-respect-content`) confusingly converts:\\n\\n\\u0026#8203;\\n\\n \\u003E \\u003C\\n * First Heading \\n Something Something\\n Something Something\\n\\ninto:\\n\\n \\n * \\u003E*\\u003C First Heading \\n Something Something\\n Something Something\\n\\nwhere `\\u003E \\u003C` is the point.\\n\\nSince `S-RET` is bound to `org-table-copy-down`, which only works in a table, I made a function `sbr-org-shift-return` that enables me to use `sbr-org-insert-dwim` outside of tables, while preserving the default behavior.\\n\\nThe code is listed below. It's a little more complicated then I would like in order for it to handle all the edge cases (e.g., point after ellipses or before the first heading), and also because the org insert functions don't behave uniformly. For example `org-insert-todo-heading` inserts a checkbox if the point is on a list item, but `org-insert-heading` doesn't similarly insert a list item when the point is on a list item (even though its documentation claims that it does). Any suggestions for streamlining this code are welcome!\\n\\n (defun sbr-org-insert-dwim (\\u0026optional arg)\\n \\\"Insert another entry of the same type as the current\\n entry. For example, if the point is on a list item, then add\\n another list item of the same type, and if the point is on a\\n checkbox list item, then add an empty checkbox item. If instead\\n the point is in a heading, then add another heading. If the point \\n is in a TODO heading, then add another TODO heading (set to the \\n TODO state). \\n \\n By default, the new entry is inserted below the current\\n subtree/item. With a 'C-u' prefix, insert the entry above the\\n current heading/item instead.\\\"\\n (interactive \\\"P\\\")\\n (when (eq major-mode 'org-mode)\\n (let ((org-special-ctrl-a/e t)\\n (below? (unless (equal arg '(4)) '(4))))\\n ;; hack to ensure that the point is not after ellipses because\\n ;; that would mess up org-at-item-p etc.\\n (org-beginning-of-line)\\n (cond ((org-at-item-p) ;; at list item or checkbox\\n (let ((org-M-RET-may-split-line nil)\\n (org-enable-sort-checkbox nil))\\n ;; hack to make item be inserted after the current one\\n ;; doesn't work if we are on an empty item line\\n (when below?\\n (org-end-of-line)) \\n (org-insert-item (org-at-item-checkbox-p))))\\n ((org-before-first-heading-p) ;; above first heading\\n (org-insert-heading))\\n (t ;; in some kind of heading\\n (org-back-to-heading)\\n (if (org-get-todo-state)\\n ;; at TODO heading\\n (org-insert-todo-heading t below?)\\n ;; at non-TODO heading \\n (org-insert-heading below?)))))))\\n \\n (defun sbr-org-shift-return (\\u0026optional arg)\\n \\\"If point is at a table, copy the table cell downward (i.e.,\\n the usual effect of typing S-RET). Otherwise, insert the same\\n kind of heading or item as the current entry containing the\\n point. \\\"\\n (interactive \\\"P\\\")\\n (if (org-at-table-p)\\n (org-table-copy-down (prefix-numeric-value arg))\\n (sbr-org-insert-dwim arg)))\\n \\n (bind-keys :map org-mode-map (\\\"\\u003CS-return\\u003E\\\" . sbr-org-insert-dwim))\", \"author_fullname\": \"t2_7nfrv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"function for DWIM insertion of new entries\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_boyu8r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557960504.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have made a function which \\u0026quot;intelligently\\u0026quot; inserts a new heading, TODO, list item, or checkbox based on the the type of the current entry at the point. I find it quite useful, so I thought would share it here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen inserting new headings/items into an org subtree, I don\\u0026#39;t like having to remember which command to use based on whether the current entry is a heading (\\u003Ccode\\u003EC-RET\\u003C/code\\u003E), a TODO (\\u003Ccode\\u003EC-S-RET\\u003C/code\\u003E), a list item (\\u003Ccode\\u003EM-x org-insert-item\\u003C/code\\u003E), or a checkbox (\\u003Ccode\\u003EC-u M-x org-insert-item\\u003C/code\\u003E). I also don\\u0026#39;t like that the behavior changes depending on whether the point is at the beginning of the line. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBased on these requirements, I made the function \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E listed below. It is highly opinionated based on my use preferences:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ELines are never split (for the duration of the command, \\u003Ccode\\u003Eorg-M-RET-may-split-line\\u003C/code\\u003E is set to nil). If I really need to split the line, I can either do \\u003Ccode\\u003EC-k sbr-org-insert-dwim C-y\\u003C/code\\u003E or use the built in \\u003Ccode\\u003EM-RET\\u003C/code\\u003E or \\u003Ccode\\u003EM-S-RET\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EThe behavior of \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E is the same regardless of where the point is on the current line, on the asterisks/dash, at the beginning/middle/end of the entry, or even if the point is after ellipses (i.e. the subtree of the current entry is hidden). The builtin commands \\u003Ccode\\u003Eorg-insert-heading\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-insert-item\\u003C/code\\u003E have unspecified behavior when used after ellipses.\\u003C/li\\u003E\\n\\u003Cli\\u003EBy default, the new entry in inserted below the current subtree/item. With the prefix \\u003Ccode\\u003EC-u\\u003C/code\\u003E, the entry is inserted before the current entry and the end of previous subtree (similar to \\u003Ccode\\u003EC-u C-u org-insert-heading\\u003C/code\\u003E). The inserted entry never breaks up a subtree, which in my opinion, would break the abstraction of the subtree hierarchy. In order to break up and edit subtree structure, I use the \\u003Ccode\\u003EM-\\u0026lt;arrow\\u0026gt;\\u003C/code\\u003E commands.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf the point is above the first heading, simply insert a level-1 heading. When used above the first heading, \\u003Ccode\\u003EC-RET\\u003C/code\\u003E (\\u003Ccode\\u003Eorg-insert-heading-respect-content\\u003C/code\\u003E) confusingly converts:\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#8203;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E \\u0026gt; \\u0026lt;\\n* First Heading \\nSomething Something\\nSomething Something\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Einto:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* \\u0026gt;*\\u0026lt; First Heading \\nSomething Something\\nSomething Something\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E\\u0026gt; \\u0026lt;\\u003C/code\\u003E is the point.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince \\u003Ccode\\u003ES-RET\\u003C/code\\u003E is bound to \\u003Ccode\\u003Eorg-table-copy-down\\u003C/code\\u003E, which only works in a table, I made a function \\u003Ccode\\u003Esbr-org-shift-return\\u003C/code\\u003E that enables me to use \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E outside of tables, while preserving the default behavior.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code is listed below. It\\u0026#39;s a little more complicated then I would like in order for it to handle all the edge cases (e.g., point after ellipses or before the first heading), and also because the org insert functions don\\u0026#39;t behave uniformly. For example \\u003Ccode\\u003Eorg-insert-todo-heading\\u003C/code\\u003E inserts a checkbox if the point is on a list item, but \\u003Ccode\\u003Eorg-insert-heading\\u003C/code\\u003E doesn\\u0026#39;t similarly insert a list item when the point is on a list item (even though its documentation claims that it does). Any suggestions for streamlining this code are welcome!\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun sbr-org-insert-dwim (\\u0026amp;optional arg)\\n \\u0026quot;Insert another entry of the same type as the current\\nentry. For example, if the point is on a list item, then add\\nanother list item of the same type, and if the point is on a\\ncheckbox list item, then add an empty checkbox item. If instead\\nthe point is in a heading, then add another heading. If the point \\nis in a TODO heading, then add another TODO heading (set to the \\nTODO state). \\n\\nBy default, the new entry is inserted below the current\\nsubtree/item. With a \\u0026#39;C-u\\u0026#39; prefix, insert the entry above the\\ncurrent heading/item instead.\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (when (eq major-mode \\u0026#39;org-mode)\\n (let ((org-special-ctrl-a/e t)\\n (below? (unless (equal arg \\u0026#39;(4)) \\u0026#39;(4))))\\n ;; hack to ensure that the point is not after ellipses because\\n ;; that would mess up org-at-item-p etc.\\n (org-beginning-of-line)\\n (cond ((org-at-item-p) ;; at list item or checkbox\\n (let ((org-M-RET-may-split-line nil)\\n (org-enable-sort-checkbox nil))\\n ;; hack to make item be inserted after the current one\\n ;; doesn\\u0026#39;t work if we are on an empty item line\\n (when below?\\n (org-end-of-line)) \\n (org-insert-item (org-at-item-checkbox-p))))\\n ((org-before-first-heading-p) ;; above first heading\\n (org-insert-heading))\\n (t ;; in some kind of heading\\n (org-back-to-heading)\\n (if (org-get-todo-state)\\n ;; at TODO heading\\n (org-insert-todo-heading t below?)\\n ;; at non-TODO heading \\n (org-insert-heading below?)))))))\\n\\n(defun sbr-org-shift-return (\\u0026amp;optional arg)\\n \\u0026quot;If point is at a table, copy the table cell downward (i.e.,\\nthe usual effect of typing S-RET). Otherwise, insert the same\\nkind of heading or item as the current entry containing the\\npoint. \\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (if (org-at-table-p)\\n (org-table-copy-down (prefix-numeric-value arg))\\n (sbr-org-insert-dwim arg)))\\n\\n(bind-keys :map org-mode-map (\\u0026quot;\\u0026lt;S-return\\u0026gt;\\u0026quot; . sbr-org-insert-dwim))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"boyu8r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cottasteel\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557931704.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello! I have a question regarding org-agenda. I just updated org-mode 9.2.3 on Emacs 26.1 and I have a problem with the location of the org-agenda tags. First (before the upgrade) I had them on the right, now automatically they always appear on a new line (in all agenda views). Do you know how I can go back to having tags on the right?\", \"author_fullname\": \"t2_3rz1w0lq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-agenda and tags position\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_boymdt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557959366.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello! I have a question regarding org-agenda. I just updated org-mode 9.2.3 on Emacs 26.1 and I have a problem with the location of the org-agenda tags. First (before the upgrade) I had them on the right, now automatically they always appear on a new line (in all agenda views). Do you know how I can go back to having tags on the right?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"boymdt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cyberl3o\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557930566.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 03 Hyperlinks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5yvk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 28, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 28, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 03 Hyperlinks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5wkl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 36, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 36, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557794720.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5wkl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bo5wkl/orgmode_hidden_gems_03_hyperlinks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt3/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1557765920.0, \"media\": null, \"is_video\": false}], \"created\": 1557795022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5yvk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bo5wkl\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo5yvk/orgmode_hidden_gems_03_hyperlinks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt3/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557766222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a main directory of all my org-files. I want to be able to export any part of an org-file to markdown in a a separate `/exports` folder (rather than cluttering up my main directory). \\n\\nI know I can constantly set my export file name property, but that becomes cumbersome. I'd like to be able to just set this up once and be done with it. \\n\\nMost of the guides out there on publishing are about setting up a full blogging system with jeckyll or something similar and it's giving me way more information than I need. \\n\\nI think the main thing I need to do is set up the projects alist? What would that look like for a simple scenario like this? Thanks for any help.\", \"author_fullname\": \"t2_130p93\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help Setting Up a Simple Export Folder\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5ly1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557793341.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a main directory of all my org-files. I want to be able to export any part of an org-file to markdown in a a separate \\u003Ccode\\u003E/exports\\u003C/code\\u003E folder (rather than cluttering up my main directory). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know I can constantly set my export file name property, but that becomes cumbersome. I\\u0026#39;d like to be able to just set this up once and be done with it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMost of the guides out there on publishing are about setting up a full blogging system with jeckyll or something similar and it\\u0026#39;s giving me way more information than I need. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think the main thing I need to do is set up the projects alist? What would that look like for a simple scenario like this? Thanks for any help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5ly1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ManiacMcCree\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo5ly1/help_setting_up_a_simple_export_folder/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bo5ly1/help_setting_up_a_simple_export_folder/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557764541.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI would like to link to my emails from Orgmode, but it seems like I'm missing something.\\n\\nI followed the tutorial here:\\n\\n[https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts](https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts)\\n\\n\\u0026#x200B;\\n\\nAnd added this to my .emacs file:\\n\\n\\u0026#x200B;\\n\\n (require 'org)\\n \\n (org-add-link-type \\\"thunderlink\\\" 'org-thunderlink-open)\\n (defun org-thunderlink-open (path)\\n \\\"Opens a specified email in Thunderbird with the help of the add-on\\n ThunderLink.\\\"\\n (start-process \\\"myname\\\" nil \\\"thunderbird\\\" \\\"-thunderlink\\\" (concat\\n \\\"thunderlink:\\\" path)))\\n \\n (provide 'org-thunderlink)\\n\\n\\u0026#x200B;\\n\\nBut it does not seems to work. When I click on a link I have an error message: \\\"No match-create this as a new heading\\\"\\n\\n\\u0026#x200B;\\n\\nDoes anyone managed to get it to work?\\n\\nMany thanks in advance\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Link to email in Thunderbird from orgmode with Thunderlink extension\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo13sc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1557739179.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557767182.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to link to my emails from Orgmode, but it seems like I\\u0026#39;m missing something.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI followed the tutorial here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts\\\"\\u003Ehttps://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd added this to my .emacs file:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;org)\\n\\n(org-add-link-type \\u0026quot;thunderlink\\u0026quot; \\u0026#39;org-thunderlink-open)\\n(defun org-thunderlink-open (path)\\n\\u0026quot;Opens a specified email in Thunderbird with the help of the add-on\\nThunderLink.\\u0026quot;\\n(start-process \\u0026quot;myname\\u0026quot; nil \\u0026quot;thunderbird\\u0026quot; \\u0026quot;-thunderlink\\u0026quot; (concat\\n\\u0026quot;thunderlink:\\u0026quot; path)))\\n\\n(provide \\u0026#39;org-thunderlink)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut it does not seems to work. When I click on a link I have an error message: \\u0026quot;No match-create this as a new heading\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone managed to get it to work?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo13sc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo13sc/link_to_email_in_thunderbird_from_orgmode_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bo13sc/link_to_email_in_thunderbird_from_orgmode_with/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557738382.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I create an elisp function that refiles the current header at point (and all of its children) to the ID `id`, but such that instead of just placing the header directly under `id`, it places it under its subheading of name `subheading` (whether or not `subheading` exists yet)?\\n\\nSo for example if I have\\n\\n```org-mode\\n* A heading\\n```\\n\\nhow can I refile this to\\n\\n```org-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n```\\n\\n\\nso that the end result will look like\\n\\n```org-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n** subheading\\n*** A heading\\n```\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Refiling header to a new sub-header?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bni3ll\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557643814.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I create an elisp function that refiles the current header at point (and all of its children) to the ID \\u003Ccode\\u003Eid\\u003C/code\\u003E, but such that instead of just placing the header directly under \\u003Ccode\\u003Eid\\u003C/code\\u003E, it places it under its subheading of name \\u003Ccode\\u003Esubheading\\u003C/code\\u003E (whether or not \\u003Ccode\\u003Esubheading\\u003C/code\\u003E exists yet)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for example if I have\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* A heading\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ehow can I refile this to\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eso that the end result will look like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n** subheading\\n*** A heading\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bni3ll\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bni3ll/refiling_header_to_a_new_subheader/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bni3ll/refiling_header_to_a_new_subheader/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557615014.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"**Question:** How can I retrieve, over a set of files `S` (in particular: over my agenda files + their archive files) the total time clocked (as the return value of an elisp function; not as a clock table)? So for example, if I have:\\n\\n```org-mode\\n* SATISFICED Header1\\n CLOSED: [2019-05-01 Wed 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-01 Sat 18:10]--[2019-05-01 Sat 18:30] =\\u003E 0:20\\n :END:\\n\\n# File2\\n* SATISFICED Header2\\n CLOSED: [2019-05-11 Sat 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:11] =\\u003E 0:01\\n :END:\\n* SATISFICED Header3\\n CLOSED: [2019-05-11 Sat 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:20] =\\u003E 0:10\\n :END:\\n```\\n\\nI'd like to run a function like `(sum--all-time-from \\\"[2019-05-10]\\\" \\\"[2019-05-12]\\\")` to get as answer ~0:11~.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Retrieve the total time CLOCKED over a given interval\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnhu7v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557642259.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion:\\u003C/strong\\u003E How can I retrieve, over a set of files \\u003Ccode\\u003ES\\u003C/code\\u003E (in particular: over my agenda files + their archive files) the total time clocked (as the return value of an elisp function; not as a clock table)? So for example, if I have:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```org-mode\\n* SATISFICED Header1\\n CLOSED: [2019-05-01 Wed 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-01 Sat 18:10]--[2019-05-01 Sat 18:30] =\\u0026gt; 0:20\\n :END:\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EFile2\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESATISFICED Header2\\nCLOSED: [2019-05-11 Sat 18:13]\\n:LOGBOOK:\\nCLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:11] =\\u0026gt; 0:01\\n:END:\\u003C/li\\u003E\\n\\u003Cli\\u003ESATISFICED Header3\\nCLOSED: [2019-05-11 Sat 18:13]\\n:LOGBOOK:\\nCLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:20] =\\u0026gt; 0:10\\n:END:\\n```\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to run a function like \\u003Ccode\\u003E(sum--all-time-from \\u0026quot;[2019-05-10]\\u0026quot; \\u0026quot;[2019-05-12]\\u0026quot;)\\u003C/code\\u003E to get as answer ~0:11~.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnhu7v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bnhu7v/retrieve_the_total_time_clocked_over_a_given/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bnhu7v/retrieve_the_total_time_clocked_over_a_given/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557613459.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems 2 - Tables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnbtfg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 22, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 22, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems 2 - Tables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnbdye\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 80, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 80, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557605382.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnbdye\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 24, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bnbdye/orgmode_hidden_gems_2_tables/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1557576582.0, \"media\": null, \"is_video\": false}], \"created\": 1557608502.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnbtfg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bnbdye\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bnbtfg/orgmode_hidden_gems_2_tables/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557579702.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to get started with ox-beamer.\\n\\nI use the basic config:\\n\\n (require 'ox-latex)\\n (add-to-list 'org-latex-classes\\n '(\\\"beamer\\\"\\n \\\"\\\\\\\\documentclass\\\\[presentation\\\\]\\\\{beamer\\\\}\\\"\\n (\\\"\\\\\\\\section\\\\{%s\\\\}\\\" . \\\"\\\\\\\\section*\\\\{%s\\\\}\\\")\\n (\\\"\\\\\\\\subsection\\\\{%s\\\\}\\\" . \\\"\\\\\\\\subsection*\\\\{%s\\\\}\\\")\\n (\\\"\\\\\\\\subsubsection\\\\{%s\\\\}\\\" . \\\"\\\\\\\\subsubsection*\\\\{%s\\\\}\\\")))\\n\\n\\u0026#x200B;\\n\\nFirst, I want to reproduce [https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org](https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org)\\n\\nBut even on this basic example, I fail to get the correct sectioning into frames.\\n\\n[https://www.scribd.com/document/409442757/Beamer-Example](https://www.scribd.com/document/409442757/Beamer-Example)\\n\\n\\u0026#x200B;\\n\\nAny idea what's wrong?\", \"author_fullname\": \"t2_2b6wlz4w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Issue with ox-beamer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmy4qe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557522795.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to get started with ox-beamer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use the basic config:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;ox-latex)\\n(add-to-list \\u0026#39;org-latex-classes\\n \\u0026#39;(\\u0026quot;beamer\\u0026quot;\\n \\u0026quot;\\\\\\\\documentclass\\\\[presentation\\\\]\\\\{beamer\\\\}\\u0026quot;\\n (\\u0026quot;\\\\\\\\section\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\section*\\\\{%s\\\\}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsection\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\subsection*\\\\{%s\\\\}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsubsection\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\subsubsection*\\\\{%s\\\\}\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, I want to reproduce \\u003Ca href=\\\"https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org\\\"\\u003Ehttps://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut even on this basic example, I fail to get the correct sectioning into frames.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.scribd.com/document/409442757/Beamer-Example\\\"\\u003Ehttps://www.scribd.com/document/409442757/Beamer-Example\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny idea what\\u0026#39;s wrong?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmy4qe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hagetarou\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmy4qe/issue_with_oxbeamer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bmy4qe/issue_with_oxbeamer/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557493995.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 10, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmxvlv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557521353.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmxvlv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmxvlv/weekly_rorgmode_open_discussion_may_10_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bmxvlv/weekly_rorgmode_open_discussion_may_10_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557492553.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmxv6e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 46, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 46, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmwec1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 134, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 134, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {\"gid_1\": 1}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557511141.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Silver Award\", \"coin_reward\": 0, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/silver_512.png\", \"days_of_premium\": 0, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 100, \"id\": \"gid_1\", \"name\": \"Silver\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmwec1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 21, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bmwec1/orgmode_hidden_gems/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt1/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1557482341.0, \"media\": null, \"is_video\": false}], \"created\": 1557521280.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmxv6e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bmwec1\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmxv6e/orgmode_hidden_gems/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt1/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557492480.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\n\\u0026#x200B;\\n\\nI have an org-file with several code blocks. Is there any way to run all of them at once instead of having to access each one individually and run c-c to make them execute?\", \"author_fullname\": \"t2_cc87w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Execute all code blocks at once\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bm856i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557365469.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have an org-file with several code blocks. Is there any way to run all of them at once instead of having to access each one individually and run c-c to make them execute?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bm856i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eljuman\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bm856i/execute_all_code_blocks_at_once/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bm856i/execute_all_code_blocks_at_once/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557336669.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I've been using org mode for task management for several months. I'm trying to transition into using it for note taking but I've found a recurrent error with the tables in org mode.\\n\\nIf I have a table with a column set to a short width, and then increase the size of the column to a width that is still shorter than the content of the longest cell in the column I get an error as shown below.\\n\\n\\u0026#x200B;\\n\\nI'm using Windows 10; GNU Emacs 26.1 (build 1, x86\\\\_64-w64-mingw32) of 2018-05-30; and Org mode version 9.1.9 (release\\\\_9.1.9-65-g5e4542 @ c:/Users/mccombsp/emacs/share/emacs/26.1/lisp/org/)\\n\\n\\u0026#x200B;\\n\\nEDIT:\\n\\nI duplicated the error on MacOs 10.14.4; GNU Emacs 26.1 (build 1, x86\\\\_64-apple-darwin14.5.0, NS appkit-1348.17 Version 10.10.5 (Build 14F2511)) of 2018-05-30; and Org mode version 9.1.9 (release\\\\_9.1.9-65-g5e4542 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)\\n\\n\\u0026#x200B;\\n\\n | short | short | long text that goes on and on and on and on |\\n | short | short | not so long text that only goes on |\\n | short | short | short |\\n | | | \\u003C5\\u003E |\\n \\n The above table works fine.\\n \\n | short | short | long text that goes on and on and on and on |\\n | short | short | not so long text that only goes on |\\n | short | short | short |\\n | | | \\u003C10\\u003E |\\n \\n The above table will work but only if I remove the width entirely first.\\n\\nEither table above table works fine. But if I change the the last cell from \\u003C5\\u003E to \\u003C10\\u003E I get the following emacs lisp error, and it doesn't adjust the table.\\n\\n org-table-next-field: Args out of range: #(\\\"long text that goes on and on and on and on\\\" 0 3 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 3 4 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 4 5 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 5 9 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 9 14 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 14 19 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 19 22 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 22 26 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 26 29 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 29 33 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 33 36 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 36 40 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 40 43 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth)), 0, 44\", \"author_fullname\": \"t2_3kfzu0nx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Error on increasing width of table columns\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_blz7uj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1557279529.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557308015.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been using org mode for task management for several months. I\\u0026#39;m trying to transition into using it for note taking but I\\u0026#39;ve found a recurrent error with the tables in org mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I have a table with a column set to a short width, and then increase the size of the column to a width that is still shorter than the content of the longest cell in the column I get an error as shown below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using Windows 10; GNU Emacs 26.1 (build 1, x86_64-w64-mingw32) of 2018-05-30; and Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ c:/Users/mccombsp/emacs/share/emacs/26.1/lisp/org/)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI duplicated the error on MacOs 10.14.4; GNU Emacs 26.1 (build 1, x86_64-apple-darwin14.5.0, NS appkit-1348.17 Version 10.10.5 (Build 14F2511)) of 2018-05-30; and Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E| short | short | long text that goes on and on and on and on |\\n| short | short | not so long text that only goes on |\\n| short | short | short |\\n| | | \\u0026lt;5\\u0026gt; |\\n\\nThe above table works fine.\\n\\n| short | short | long text that goes on and on and on and on |\\n| short | short | not so long text that only goes on |\\n| short | short | short |\\n| | | \\u0026lt;10\\u0026gt; |\\n\\nThe above table will work but only if I remove the width entirely first.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EEither table above table works fine. But if I change the the last cell from \\u0026lt;5\\u0026gt; to \\u0026lt;10\\u0026gt; I get the following emacs lisp error, and it doesn\\u0026#39;t adjust the table.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eorg-table-next-field: Args out of range: #(\\u0026quot;long text that goes on and on and on and on\\u0026quot; 0 3 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 3 4 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 4 5 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 5 9 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 9 14 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 14 19 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 19 22 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 22 26 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 26 29 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 29 33 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 33 36 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 36 40 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 40 43 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth)), 0, 44\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blz7uj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paulmccombs\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/blz7uj/error_on_increasing_width_of_table_columns/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/blz7uj/error_on_increasing_width_of_table_columns/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557279215.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3m2tic11\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Run C-c C-c fixups everywhere in a file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_blvp48\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557289465.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blvp48\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"telotortium\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/blvp48/run_cc_cc_fixups_everywhere_in_a_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/blvk82/run_cc_cc_fixups_everywhere_in_a_file/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557260665.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"https://gitlab.com/kisaragi-hiu/org-msr\\n\\nWhile trying to remember vocabulary words using Org, I thought it would be interesting if I use todo keywords and add schedules based on them to implement spaced repetition.\\n\\nI haven't used it for too long^[1] , but I made it its own package since there's too much to just stuff in my init. If this approach works, I hope this can serve as some sort of reference on how this can be done as well.\\n\\nThe package provides a function to update schedule based on the todo keyword, according to an alist (`org-msr-keyword-frequency-alist`). It also provides a minor mode that runs the function after `org-todo`).\\n\\nPlease check it out!\\n\\n[1]\\\\: The aforementioned org file is 6 days old currently (2019-05-05).\", \"author_fullname\": \"t2_10cocd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-msr: Minimal Spaced Repetition with todo keywords\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkxsd1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"elisp library\", \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557092245.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://gitlab.com/kisaragi-hiu/org-msr\\\"\\u003Ehttps://gitlab.com/kisaragi-hiu/org-msr\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile trying to remember vocabulary words using Org, I thought it would be interesting if I use todo keywords and add schedules based on them to implement spaced repetition.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t used it for too long\\u003Csup\\u003E[1]\\u003C/sup\\u003E , but I made it its own package since there\\u0026#39;s too much to just stuff in my init. If this approach works, I hope this can serve as some sort of reference on how this can be done as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe package provides a function to update schedule based on the todo keyword, according to an alist (\\u003Ccode\\u003Eorg-msr-keyword-frequency-alist\\u003C/code\\u003E). It also provides a minor mode that runs the function after \\u003Ccode\\u003Eorg-todo\\u003C/code\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease check it out!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[1]: The aforementioned org file is 6 days old currently (2019-05-05).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"698f39e4-c2ff-11e8-9e96-0e341354a6a2\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkxsd1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"flyin1501\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bkxsd1/orgmsr_minimal_spaced_repetition_with_todo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bkxsd1/orgmsr_minimal_spaced_repetition_with_todo/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557063445.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode with Spacemacs: The Absolute Minimum\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkfckb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 22, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"article\", \"can_mod_post\": false, \"score\": 22, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode with Spacemacs: The Absolute Minimum\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkfare\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 53, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Org mode and Spacemacs: The Absolute Minimum you need to know\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Jack of Some\", \"thumbnail_height\": 360, \"thumbnail_url\": \"https://i.ytimg.com/vi/S4f-GUxu3CY/hqdefault.jpg\", \"type\": \"video\", \"provider_name\": \"YouTube\", \"author_url\": \"https://www.youtube.com/channel/UCe6ABcJkH_Gso9HJOt4x9fg\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bkfare\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 53, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556957136.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkfare\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jack-of-some\", \"num_crossposts\": 4, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bkfare/org_mode_with_spacemacs_the_absolute_minimum/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/S4f-GUxu3CY\", \"subreddit_subscribers\": 29865, \"created_utc\": 1556928336.0, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Org mode and Spacemacs: The Absolute Minimum you need to know\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Jack of Some\", \"thumbnail_height\": 360, \"thumbnail_url\": \"https://i.ytimg.com/vi/S4f-GUxu3CY/hqdefault.jpg\", \"type\": \"video\", \"provider_name\": \"YouTube\", \"author_url\": \"https://www.youtube.com/channel/UCe6ABcJkH_Gso9HJOt4x9fg\"}, \"type\": \"youtube.com\"}, \"is_video\": false}], \"created\": 1556957464.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c5c6b84c-c2fd-11e8-a9b1-0ea723e3b826\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkfckb\", \"is_robot_indexable\": true, \"stickied\": false, \"author\": \"jack-of-some\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bkfare\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bkfckb/org_mode_with_spacemacs_the_absolute_minimum/\", \"parent_whitelist_status\": null, \"report_reasons\": null, \"url\": \"https://youtu.be/S4f-GUxu3CY\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556928664.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 03, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bk83wf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556916567.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bk83wf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bk83wf/weekly_rorgmode_open_discussion_may_03_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bk83wf/weekly_rorgmode_open_discussion_may_03_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556887767.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Does anyone have experience trying to share Emacs/org-mode with outsiders? \\n\\nI do realize how easily it is for me to sound like an evangelist when it comes to expressing my thoughts about the utility of a \\\"second brain\\\" on your computer, but I have been wondering on what aspects of the org-mode experience are most appealing to people who have mild interests in becoming more productive.\\n\\nPersonally, I tend to default to the \\\"don't ask don't tell\\\" approach when it comes to my deeper interests, but there seems to be something about this integration with technology that I wish I was taught about in school and thus, I feel a need to inform others. \\n\\nAll of this is not to forget that certain systems aren't suitable for all people, but I'm curious to know if anyone has a practiced \\\"elevator pitch\\\" for Emacs and org-mode? How do you go about sharing this, if you even do it at all? \\n\\nThanks\", \"author_fullname\": \"t2_w32dym0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sharing org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjyhvh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556851291.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone have experience trying to share Emacs/org-mode with outsiders? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI do realize how easily it is for me to sound like an evangelist when it comes to expressing my thoughts about the utility of a \\u0026quot;second brain\\u0026quot; on your computer, but I have been wondering on what aspects of the org-mode experience are most appealing to people who have mild interests in becoming more productive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPersonally, I tend to default to the \\u0026quot;don\\u0026#39;t ask don\\u0026#39;t tell\\u0026quot; approach when it comes to my deeper interests, but there seems to be something about this integration with technology that I wish I was taught about in school and thus, I feel a need to inform others. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll of this is not to forget that certain systems aren\\u0026#39;t suitable for all people, but I\\u0026#39;m curious to know if anyone has a practiced \\u0026quot;elevator pitch\\u0026quot; for Emacs and org-mode? How do you go about sharing this, if you even do it at all? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjyhvh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"swarmalator\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjyhvh/sharing_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjyhvh/sharing_orgmode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556822491.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, \\n\\n\\u0026#x200B;\\n\\nI'm using orgmode + komascript to generate pdf from org-mode. It seems very handy.\\n\\nHowever, I would like to be able to store some \\\"profiles\\\" and then include it in my letter.\\n\\nExample: \\nA profile for personal letters which would include my personal address\\n\\nA profile for professional letters, which would include my office address\\n\\nIt seems like it is possible with LCO files but the documentation is not very clear about that.\\n\\n\\u0026#x200B;\\n\\nDoes anyone have experience with that?\\n\\nMany thanks in advance\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Managing different letter Template with Org mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjv50e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556833647.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using orgmode + komascript to generate pdf from org-mode. It seems very handy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I would like to be able to store some \\u0026quot;profiles\\u0026quot; and then include it in my letter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample:\\u003Cbr/\\u003E\\nA profile for personal letters which would include my personal address\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA profile for professional letters, which would include my office address\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems like it is possible with LCO files but the documentation is not very clear about that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have experience with that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjv50e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjv50e/managing_different_letter_template_with_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjv50e/managing_different_letter_template_with_org_mode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556804847.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Inspired by this [StackExchange post](https://superuser.com/questions/567916/org-mode-command-to-create-new-file-from-subtree/568300#568300), I made a function that exports the current subtree to a file and replaces it with a link to that file. More specifically it does the following:\\n\\n1. Copy the subtree to a file whose filename is the subtree title\\n2. Replace the subtree with a link to the newly created file\\n3. In the file, promote all direct children of the subtree node to be level-1 headings\\n4. In the file, convert the original subtree title to be a `#+TITLE` parameter\\n\\nFor my work, I use a date-tree file to store my work notes. I use this function to move large subtrees of notes to their own dedicated file in order to keep the work notes file from growing too large. It seems to work well enough, but I feel that the code I have written is overly complicated. In particular, the mechanism I use to delete everything but the subtree headline is very similar to the mechanism I use to promote of the subtree children. Is there a simpler, more streamlined way to implement this function? The code is listed below:\\n\\n (defun sbr-org-file-from-subtree (\\u0026optional name)\\n \\\"Take the current subtree and create a new file from\\n it. Replace the current subtree with its main heading (i.e.,\\n delete all of its childen), and make the heading into a link\\n to the newly created file,\\n \\n In the new file, promote all direct children of the original\\n subtree to be level 1-headings, and transform the original\\n heading into the '#+TITLE' parameter.\\n \\n If called with the universal argument, prompt for new filename,\\n otherwise use the subtree title.\\\"\\n (interactive \\\"P\\\")\\n (org-back-to-heading)\\n (let ((filename (cond\\n (current-prefix-arg\\n (expand-file-name\\n (read-file-name \\\"New file name: \\\")))\\n (t\\n (concat\\n (expand-file-name\\n (org-element-property :title\\n (org-element-at-point))\\n default-directory)\\n \\\".org\\\")))))\\n ;; Copy current subtree into clipboard \\n (org-copy-subtree)\\n \\n ;; Delete everything but the headline\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (call-interactively 'delete-region)\\n (org-previous-visible-heading 1)\\n \\n ;; Mark the current headline text\\n (org-end-of-line)\\n (call-interactively 'set-mark-command)\\n (org-beginning-of-line)\\n \\n ;; Convert headline to a link of the to-be-created file\\n (org-insert-link nil filename)\\n \\n ;; Create file for subtree\\n (with-temp-file filename\\n ;; Paste in the subtree\\n (org-mode)\\n (org-paste-subtree)\\n ;; Promote all children, original headline is at level \\\"zero\\\"\\n (sbr-org-promote-subtree-to-zero)\\n (insert \\\"#+TITLE: \\\"))))\\n \\n (defun sbr-org-promote-subtree-to-zero ()\\n \\\"Promote the entire subtree. If the root heading is at level 1,\\n 'promote' it to level 0 by removing the heading.\\\"\\n (interactive)\\n (if (= (org-current-level) 1)\\n (progn\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (org-do-promote)\\n (org-previous-visible-heading 1)\\n (org-mark-subtree)\\n (org-toggle-heading))\\n (org-promote-subtree)))\", \"author_fullname\": \"t2_7nfrv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cleaner way to export subtree to file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjulhb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556830403.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EInspired by this \\u003Ca href=\\\"https://superuser.com/questions/567916/org-mode-command-to-create-new-file-from-subtree/568300#568300\\\"\\u003EStackExchange post\\u003C/a\\u003E, I made a function that exports the current subtree to a file and replaces it with a link to that file. More specifically it does the following:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECopy the subtree to a file whose filename is the subtree title\\u003C/li\\u003E\\n\\u003Cli\\u003EReplace the subtree with a link to the newly created file\\u003C/li\\u003E\\n\\u003Cli\\u003EIn the file, promote all direct children of the subtree node to be level-1 headings\\u003C/li\\u003E\\n\\u003Cli\\u003EIn the file, convert the original subtree title to be a \\u003Ccode\\u003E#+TITLE\\u003C/code\\u003E parameter\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EFor my work, I use a date-tree file to store my work notes. I use this function to move large subtrees of notes to their own dedicated file in order to keep the work notes file from growing too large. It seems to work well enough, but I feel that the code I have written is overly complicated. In particular, the mechanism I use to delete everything but the subtree headline is very similar to the mechanism I use to promote of the subtree children. Is there a simpler, more streamlined way to implement this function? The code is listed below:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun sbr-org-file-from-subtree (\\u0026amp;optional name)\\n \\u0026quot;Take the current subtree and create a new file from\\n it. Replace the current subtree with its main heading (i.e.,\\n delete all of its childen), and make the heading into a link\\n to the newly created file,\\n\\nIn the new file, promote all direct children of the original\\n subtree to be level 1-headings, and transform the original\\n heading into the \\u0026#39;#+TITLE\\u0026#39; parameter.\\n\\nIf called with the universal argument, prompt for new filename,\\notherwise use the subtree title.\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (org-back-to-heading)\\n (let ((filename (cond\\n (current-prefix-arg\\n (expand-file-name\\n (read-file-name \\u0026quot;New file name: \\u0026quot;)))\\n (t\\n (concat\\n (expand-file-name\\n (org-element-property :title\\n (org-element-at-point))\\n default-directory)\\n \\u0026quot;.org\\u0026quot;)))))\\n ;; Copy current subtree into clipboard \\n (org-copy-subtree)\\n\\n ;; Delete everything but the headline\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (call-interactively \\u0026#39;delete-region)\\n (org-previous-visible-heading 1)\\n\\n ;; Mark the current headline text\\n (org-end-of-line)\\n (call-interactively \\u0026#39;set-mark-command)\\n (org-beginning-of-line)\\n\\n ;; Convert headline to a link of the to-be-created file\\n (org-insert-link nil filename)\\n\\n ;; Create file for subtree\\n (with-temp-file filename\\n ;; Paste in the subtree\\n (org-mode)\\n (org-paste-subtree)\\n ;; Promote all children, original headline is at level \\u0026quot;zero\\u0026quot;\\n (sbr-org-promote-subtree-to-zero)\\n (insert \\u0026quot;#+TITLE: \\u0026quot;))))\\n\\n(defun sbr-org-promote-subtree-to-zero ()\\n \\u0026quot;Promote the entire subtree. If the root heading is at level 1,\\n\\u0026#39;promote\\u0026#39; it to level 0 by removing the heading.\\u0026quot;\\n (interactive)\\n (if (= (org-current-level) 1)\\n (progn\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (org-do-promote)\\n (org-previous-visible-heading 1)\\n (org-mark-subtree)\\n (org-toggle-heading))\\n (org-promote-subtree)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjulhb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cottasteel\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjulhb/cleaner_way_to_export_subtree_to_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjulhb/cleaner_way_to_export_subtree_to_file/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556801603.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_esdtt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to jump to a heading in a date tree\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjb692\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556700958.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"emacs.stackexchange.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjb692\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"plotnick\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjb692/how_to_jump_to_a_heading_in_a_date_tree/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://emacs.stackexchange.com/questions/50253/how-to-jump-to-a-heading-in-a-date-tree\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556672158.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How to export code blocks so that they will be side-by-side in exported HTML (like in table)? \\n\\nFor example:\\n\\n\\u0026#x200B;\\n\\n[Something like this](https://i.redd.it/g2njbopc0cv21.png)\", \"author_fullname\": \"t2_11whf3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Export code block side by side\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"g2njbopc0cv21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 73, \"x\": 250, \"u\": \"https://i.redd.it/g2njbopc0cv21.png\"}, \"m\": \"image/png\", \"id\": \"g2njbopc0cv21\"}}, \"name\": \"t3_bizbk6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556628452.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow to export code blocks so that they will be side-by-side in exported HTML (like in table)? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/g2njbopc0cv21.png\\\"\\u003ESomething like this\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bizbk6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lkmokadam\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bizbk6/export_code_block_side_by_side/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bizbk6/export_code_block_side_by_side/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556599652.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \" Create a file called issue tracker.org\\n\\nPut these in-buffer settings at the top of the file:\\n\\n #+AUTHOR: Your Name\\n #+STARTUP:indent\\n #+OPTIONS: num:nil toc:nil\\n #+TODO: ONCE(o) EPISODIC ONGOING POTENTIAL | RESOLVED IMPROVED UNRESOLVABLE TOLERATED INACTIVE\\n #+TODO: MALFUNCTION DAMAGE | REPAIRED REPLACED DISCARDED\\n #+TITLE:ISSUE TRACKER\\n \\n\\nAdd a capture template to your .emacs, e.g.:\\n\\n (\\\"i\\\" \\\"issue\\\" entry\\n (file+olp+datetree \\\"~ /org/issue tracker.org\\\")\\n \\\"* ONCE %?\\\" :time-prompt t)\\n\\n\\u0026#x200B;\\n\\nOutput appears in a datetree. Track issue statuses using TODO states. Use a sparse tree if you want to filter the log by status, date, or text string.\\n\\nExample output:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/fowvur8ow7v21.png\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using org-mode as a quick-and-dirty issue tracker.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"fowvur8ow7v21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 492, \"x\": 968, \"u\": \"https://i.redd.it/fowvur8ow7v21.png\"}, \"m\": \"image/png\", \"id\": \"fowvur8ow7v21\"}}, \"name\": \"t3_biqhjc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 25, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 25, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556578999.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECreate a file called issue tracker.org\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPut these in-buffer settings at the top of the file:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+AUTHOR: Your Name\\n#+STARTUP:indent\\n#+OPTIONS: num:nil toc:nil\\n#+TODO: ONCE(o) EPISODIC ONGOING POTENTIAL | RESOLVED IMPROVED UNRESOLVABLE TOLERATED INACTIVE\\n#+TODO: MALFUNCTION DAMAGE | REPAIRED REPLACED DISCARDED\\n#+TITLE:ISSUE TRACKER\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAdd a capture template to your .emacs, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;i\\u0026quot; \\u0026quot;issue\\u0026quot; entry\\n (file+olp+datetree \\u0026quot;~ /org/issue tracker.org\\u0026quot;)\\n \\u0026quot;* ONCE %?\\u0026quot; :time-prompt t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOutput appears in a datetree. Track issue statuses using TODO states. Use a sparse tree if you want to filter the log by status, date, or text string.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample output:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/fowvur8ow7v21.png\\\"\\u003Ehttps://i.redd.it/fowvur8ow7v21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"biqhjc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/biqhjc/using_orgmode_as_a_quickanddirty_issue_tracker/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/biqhjc/using_orgmode_as_a_quickanddirty_issue_tracker/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556550199.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I recently came across org-journal. Seems pretty sweet, but I'm overall more happy with using org-capture to log to a datetree. But, one thing I really liked about org-journal was that it was easy to set each entry to have a HH:MM timestamp as its headline title on creation.\\n\\nI've got something like\\n\\n (\\\"l\\\" \\\"Log\\\" entry (file+datetree \\\"log.org\\\") \\\"* %?\\n \\n %i\\\" :empty-lines 1 :clock-resume t)\\n\\nas my capture template. I'd love to have it the headline part be like \\\\`:\\\\* %H:%M %?\\\\`. But that doesn't work.\\n\\nIs there any way to get what I am after?\", \"author_fullname\": \"t2_mfiiw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"timestamp in capture template?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bim468\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556546700.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recently came across org-journal. Seems pretty sweet, but I\\u0026#39;m overall more happy with using org-capture to log to a datetree. But, one thing I really liked about org-journal was that it was easy to set each entry to have a HH:MM timestamp as its headline title on creation.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve got something like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;l\\u0026quot; \\u0026quot;Log\\u0026quot; entry (file+datetree \\u0026quot;log.org\\u0026quot;) \\u0026quot;* %?\\n\\n %i\\u0026quot; :empty-lines 1 :clock-resume t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eas my capture template. I\\u0026#39;d love to have it the headline part be like `:* %H:%M %?`. But that doesn\\u0026#39;t work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way to get what I am after?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bim468\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PhilosopherAboutTown\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bim468/timestamp_in_capture_template/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bim468/timestamp_in_capture_template/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556517900.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi I'm considering going to emacs org mode for work and school. One pretty critical question for me is: \\nI use Anki for studying. I take my notes and put them on Anki and I can walk around and get some studying done. Is there any similar thing with org-drill? So that I could sync flash cards to phone and study at any convenient time? Thanks\", \"author_fullname\": \"t2_21immxp8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Mobile drill\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bi3va7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556429497.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi I\\u0026#39;m considering going to emacs org mode for work and school. One pretty critical question for me is:\\u003Cbr/\\u003E\\nI use Anki for studying. I take my notes and put them on Anki and I can walk around and get some studying done. Is there any similar thing with org-drill? So that I could sync flash cards to phone and study at any convenient time? Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bi3va7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"a_person_anon\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bi3va7/mobile_drill/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bi3va7/mobile_drill/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556400697.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi. Is it possible to define a project as:\\n\\n1. a headline that is not a todo item, and\\n2. that has at least one direct child todo item (one level below)\\n\\nThis would allow nested projects. I want to add this to `org-agenda-custom-commands`, but am lacking the necessary elisp skills. I want to avoid having to use a `PROJECT` todo keyword for readability, nor a `PROJECT` tag, which demands diligence.\\n\\nBonus question: is it possible to additionally display a the direct parent project of sub-projects in the agenda view?\", \"author_fullname\": \"t2_tihct\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Project as a Headline that has direct Todo Item Children\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhwy7b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556381209.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi. Is it possible to define a project as:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Ea headline that is not a todo item, and\\u003C/li\\u003E\\n\\u003Cli\\u003Ethat has at least one direct child todo item (one level below)\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis would allow nested projects. I want to add this to \\u003Ccode\\u003Eorg-agenda-custom-commands\\u003C/code\\u003E, but am lacking the necessary elisp skills. I want to avoid having to use a \\u003Ccode\\u003EPROJECT\\u003C/code\\u003E todo keyword for readability, nor a \\u003Ccode\\u003EPROJECT\\u003C/code\\u003E tag, which demands diligence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBonus question: is it possible to additionally display a the direct parent project of sub-projects in the agenda view?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhwy7b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nopedoesntwork\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhwy7b/project_as_a_headline_that_has_direct_todo_item/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhwy7b/project_as_a_headline_that_has_direct_todo_item/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556352409.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 26, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhlvza\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556311753.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhlvza\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhlvza/weekly_rorgmode_open_discussion_april_26_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhlvza/weekly_rorgmode_open_discussion_april_26_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556282953.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to recreate the functionality of an old Mac app I saw over a decade ago that had the concept of \\\"variable time repeating tasks\\\".\\n\\nIn other words, do \\\"water the plants\\\" every 4 to 8 days. It looks like I can sort of do this with:\\n\\n EDIT: \\u003C2019-04-26 Fri .+8d -4d\\u003E\\n\\nBut does anyone know of a better way to accomplish this?\\n\\nIdeally I'd be able to see how often I watered the plants last month, showing a timeline with marks every time I complete the task. So:\\n\\n March: 1st, 5th, 12th, 20th, 24th, 29th\\n\\nTo see how lax I was, or if I was doing something too frequently.\\n\\nSorry, weird problem/request, and I'm pretty terrible at describing it.\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Repeating tasks, do X every a to b days?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhczz6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1556222407.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556250552.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to recreate the functionality of an old Mac app I saw over a decade ago that had the concept of \\u0026quot;variable time repeating tasks\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn other words, do \\u0026quot;water the plants\\u0026quot; every 4 to 8 days. It looks like I can sort of do this with:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EEDIT: \\u0026lt;2019-04-26 Fri .+8d -4d\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBut does anyone know of a better way to accomplish this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIdeally I\\u0026#39;d be able to see how often I watered the plants last month, showing a timeline with marks every time I complete the task. So:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EMarch: 1st, 5th, 12th, 20th, 24th, 29th\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ETo see how lax I was, or if I was doing something too frequently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESorry, weird problem/request, and I\\u0026#39;m pretty terrible at describing it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhczz6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhczz6/repeating_tasks_do_x_every_a_to_b_days/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhczz6/repeating_tasks_do_x_every_a_to_b_days/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556221752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_64sbo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Unexpected behavior in org-mode when dealing with paragraphs, for example \\\"vip\\\" (visual inner paragraph) and [ and ] don't work as they should. Help?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bh9imi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1728, \"scrubber_media_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_96\", \"dash_url\": \"https://v.redd.it/kj55kbq3bfu21/DASHPlaylist.mpd\", \"duration\": 27, \"hls_url\": \"https://v.redd.it/kj55kbq3bfu21/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556232582.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bh9imi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rainymood_XI\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bh9imi/unexpected_behavior_in_orgmode_when_dealing_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/kj55kbq3bfu21\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556203782.0, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1728, \"scrubber_media_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_96\", \"dash_url\": \"https://v.redd.it/kj55kbq3bfu21/DASHPlaylist.mpd\", \"duration\": 27, \"hls_url\": \"https://v.redd.it/kj55kbq3bfu21/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI want to filter the current agenda using elisp commands mapped to a shortcut. I know that I could create separate agenda for different filters but this time, I'd prefer to have an arbitrary agenda and filter it.\\n\\nIn my case, I'd like to show only higest priority tasks: `[#A]`\\n\\nI could not find a specific command for filtering according to priority. However, interactively this can be achieved using `org-agenda-filter-by-regexp` (mapped to `=`) and then entering the regular expression `.*\\\\[#A\\\\].*`.\\n\\nI tried to debug `org-agenda-filter-by-regexp` and then `org-agenda-filter-apply` in order to find out how the elisp command including the parameters has to look like when I want to use it in a DIY-function.\\n\\nWhen I apply `(org-agenda-filter-apply \\\"+.*\\\\\\\\[#A\\\\\\\\].*\\\" \\\"+\\\" nil)` in the agenda (via `M-:`), I only get `nil` and nothing is changed. This clearly is wrong somehow.\\n\\nWhen debugging my elisp command and comparing to the interactive invocation, the regex as well as the second parameter do not match. This is where my elisp knowledge ends so far.\\n\\nAre you able to help me finding out what the magic spell is to *activate* the filter via an elisp command?\\n\\nThanks!\\n\\nPS: What I could find out myself is the command to disable the filter: `(org-agenda-filter-show-all-re)` \\u2026 hooray.\", \"author_fullname\": \"t2_dp04z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Elisp command to filter the agenda to show only [#A] prio tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgzod3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556167047.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to filter the current agenda using elisp commands mapped to a shortcut. I know that I could create separate agenda for different filters but this time, I\\u0026#39;d prefer to have an arbitrary agenda and filter it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my case, I\\u0026#39;d like to show only higest priority tasks: \\u003Ccode\\u003E[#A]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI could not find a specific command for filtering according to priority. However, interactively this can be achieved using \\u003Ccode\\u003Eorg-agenda-filter-by-regexp\\u003C/code\\u003E (mapped to \\u003Ccode\\u003E=\\u003C/code\\u003E) and then entering the regular expression \\u003Ccode\\u003E.*\\\\[#A\\\\].*\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to debug \\u003Ccode\\u003Eorg-agenda-filter-by-regexp\\u003C/code\\u003E and then \\u003Ccode\\u003Eorg-agenda-filter-apply\\u003C/code\\u003E in order to find out how the elisp command including the parameters has to look like when I want to use it in a DIY-function.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I apply \\u003Ccode\\u003E(org-agenda-filter-apply \\u0026quot;+.*\\\\\\\\[#A\\\\\\\\].*\\u0026quot; \\u0026quot;+\\u0026quot; nil)\\u003C/code\\u003E in the agenda (via \\u003Ccode\\u003EM-:\\u003C/code\\u003E), I only get \\u003Ccode\\u003Enil\\u003C/code\\u003E and nothing is changed. This clearly is wrong somehow.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen debugging my elisp command and comparing to the interactive invocation, the regex as well as the second parameter do not match. This is where my elisp knowledge ends so far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre you able to help me finding out what the magic spell is to \\u003Cem\\u003Eactivate\\u003C/em\\u003E the filter via an elisp command?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: What I could find out myself is the command to disable the filter: \\u003Ccode\\u003E(org-agenda-filter-show-all-re)\\u003C/code\\u003E \\u2026 hooray.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgzod3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"murdsdrum\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgzod3/elisp_command_to_filter_the_agenda_to_show_only_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgzod3/elisp_command_to_filter_the_agenda_to_show_only_a/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556138247.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is there anyway to automate refiling according to tag? For example, let's say that I have a bunch of todos and notes in [inbox.org](https://inbox.org) captured by a template.\\n\\n\\u0026#x200B;\\n\\n* `TODO Finish task :project1:`\\n* `Reference for emacs theme :emacs:`\\n* `TODO Email Robert :project2:`\\n\\n\\u0026#x200B;\\n\\nCould all headings in [inbox.org](https://inbox.org) tagged :project1: be automatically refiled to [project1.org](https://project1.org); those tagged with :project2: refiled to [project2.org](https://project2.org); and those tagged :emacs: be refiled to [emacs.org](https://emacs.org)? maybe tied to a key binding, or through a cron job?\\n\\n\\u0026#x200B;\\n\\nMany thanks in advance!\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Automate refiling according to tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgy3v6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556159094.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there anyway to automate refiling according to tag? For example, let\\u0026#39;s say that I have a bunch of todos and notes in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E captured by a template.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003ETODO Finish task :project1:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EReference for emacs theme :emacs:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003ETODO Email Robert :project2:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECould all headings in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E tagged :project1: be automatically refiled to \\u003Ca href=\\\"https://project1.org\\\"\\u003Eproject1.org\\u003C/a\\u003E; those tagged with :project2: refiled to \\u003Ca href=\\\"https://project2.org\\\"\\u003Eproject2.org\\u003C/a\\u003E; and those tagged :emacs: be refiled to \\u003Ca href=\\\"https://emacs.org\\\"\\u003Eemacs.org\\u003C/a\\u003E? maybe tied to a key binding, or through a cron job?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgy3v6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556130294.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"On org-agenda, a new window is opened with the agenda. How can I open org-agenda in the current window and not have it open a new one?\", \"author_fullname\": \"t2_q43ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Open org-agenda in current window\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgpycx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556106434.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn org-agenda, a new window is opened with the agenda. How can I open org-agenda in the current window and not have it open a new one?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgpycx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HumanBrainMapper\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgpycx/open_orgagenda_in_current_window/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgpycx/open_orgagenda_in_current_window/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556077634.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I can't seem to get the variable to expand into src block\\n\\n #+BEGIN_SRC conf :tangle ~/.config/mine.conf :var argument=abcde\\n setting1 1234\\n setting2 argument\\n #+END_SRC\\n\\nWhen I export the file for tangling (C-c C-v t), the \\\"argument\\\" keyword is not expanded into \\\"abcde\\\". \\n\\nI realise this is because I am not evaluatiing the block but exporting it. \\n\\nHow do I achieve my desired output in the tangled file?\", \"author_fullname\": \"t2_xup40\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Passing variable into a org babel code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgdr5m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556035419.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t seem to get the variable to expand into src block\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+BEGIN_SRC conf :tangle ~/.config/mine.conf :var argument=abcde\\nsetting1 1234\\nsetting2 argument\\n#+END_SRC\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I export the file for tangling (C-c C-v t), the \\u0026quot;argument\\u0026quot; keyword is not expanded into \\u0026quot;abcde\\u0026quot;. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI realise this is because I am not evaluatiing the block but exporting it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I achieve my desired output in the tangled file?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgdr5m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tomatoaway\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgdr5m/passing_variable_into_a_org_babel_code/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgdr5m/passing_variable_into_a_org_babel_code/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556006619.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a custom clocktable as a dynamic block that I'd like to export alongside an agenda view to a file. \\n\\nIs it possible to either create a dynamic block with a custom agenda view (i.e. have this as two dynamic blocks)? Or is it possible to have an agenda execute/display a custom dynamic block (add the dyn block to the org agenda and export via the agenda?)\", \"author_fullname\": \"t2_1mhaum0e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Execute agenda command as a dynamic block? Or add a dynamic block to block agenda?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bg1vh6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555967071.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a custom clocktable as a dynamic block that I\\u0026#39;d like to export alongside an agenda view to a file. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs it possible to either create a dynamic block with a custom agenda view (i.e. have this as two dynamic blocks)? Or is it possible to have an agenda execute/display a custom dynamic block (add the dyn block to the org agenda and export via the agenda?)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bg1vh6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jethro_spackle\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bg1vh6/execute_agenda_command_as_a_dynamic_block_or_add/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bg1vh6/execute_agenda_command_as_a_dynamic_block_or_add/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555938271.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a narrowing function I use which I detail in [this post.](https://www.reddit.com/r/emacs/comments/b8jqor/making_orgmode_narrowing_as_intuitive_as_workflow/) However, is there a way that I can take the heading I narrowed into and turn into the title of the newly created indirect buffer? So for example:\\n\\nTake this:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/l7quj7b7ult21.png\\n\\nand transform into this:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/tvm0qqueult21.png\\n\\nBonus points if changing the title of the indirect buffer also updates the heading in the parent buffer.\", \"author_fullname\": \"t2_39gpz9p3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make parent heading of subtree of indirect buffer appear as title\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"tvm0qqueult21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 116, \"x\": 266, \"u\": \"https://i.redd.it/tvm0qqueult21.png\"}, \"m\": \"image/png\", \"id\": \"tvm0qqueult21\"}, \"l7quj7b7ult21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 154, \"x\": 193, \"u\": \"https://i.redd.it/l7quj7b7ult21.png\"}, \"m\": \"image/png\", \"id\": \"l7quj7b7ult21\"}}, \"name\": \"t3_bfnzqd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555875949.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a narrowing function I use which I detail in \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/b8jqor/making_orgmode_narrowing_as_intuitive_as_workflow/\\\"\\u003Ethis post.\\u003C/a\\u003E However, is there a way that I can take the heading I narrowed into and turn into the title of the newly created indirect buffer? So for example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/l7quj7b7ult21.png\\\"\\u003Ehttps://i.redd.it/l7quj7b7ult21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand transform into this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/tvm0qqueult21.png\\\"\\u003Ehttps://i.redd.it/tvm0qqueult21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBonus points if changing the title of the indirect buffer also updates the heading in the parent buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bfnzqd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ykhurshid\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bfnzqd/make_parent_heading_of_subtree_of_indirect_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bfnzqd/make_parent_heading_of_subtree_of_indirect_buffer/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555847149.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"That's all (stick it in your .emacs of course, and M-x load-file RET .emacs)! I find it handy and use it to outline my day away from the agenda view, to take notes, or to keep a live tree of info for current tasks and it allows me to easily refile any text in said buffer should I decide to keep it later.\", \"author_fullname\": \"t2_3kdg6g4t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tip: Set *scratch* buffer default mode to Org: (setq initial-major-mode 'org-mode)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bf3xw3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1555739479.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555734699.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s all (stick it in your .emacs of course, and M-x load-file RET .emacs)! I find it handy and use it to outline my day away from the agenda view, to take notes, or to keep a live tree of info for current tasks and it allows me to easily refile any text in said buffer should I decide to keep it later.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bf3xw3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PeanutButterGuru\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bf3xw3/tip_set_scratch_buffer_default_mode_to_org_setq/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bf3xw3/tip_set_scratch_buffer_default_mode_to_org_setq/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555705899.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 19, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_beyq0w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555706949.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"beyq0w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/beyq0w/weekly_rorgmode_open_discussion_april_19_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/beyq0w/weekly_rorgmode_open_discussion_april_19_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555678149.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Anyone use org-caldav? Do you know how to don't display the \\\"org caldav sync result\\\" buffer after sync?\", \"author_fullname\": \"t2_14ghl9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Don't show me \\\"org caldav sync result\\\" !\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bexsu1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555700116.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnyone use org-caldav? Do you know how to don\\u0026#39;t display the \\u0026quot;org caldav sync result\\u0026quot; buffer after sync?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bexsu1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"floZx\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bexsu1/dont_show_me_org_caldav_sync_result/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bexsu1/dont_show_me_org_caldav_sync_result/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555671316.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_2lebcxk6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"is it possible to rename the :ARCHIVE: tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bemm49\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555628701.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bemm49\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"grouchy_otter\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bemm49/is_it_possible_to_rename_the_archive_tag/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bemm49/is_it_possible_to_rename_the_archive_tag/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555599901.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a plain shopping list which I reuse. When I need an item I put a tick mark by it, and when I purchase it I marked it as ticked.\\n\\nPreparing a shopping list simply means frequenting the same list and reticking the things I need if they are unticked and usually means this type of syntax\\n\\n - [X] Item 1\\n - [ ] Item 2\\n\\nI am trying out orgzly with this syntax and backspacing in small touchkeyboard to edit lines like this is rather clunky.\\n\\nIs there another syntax that makes it easier to type on a mobile phone keyboard?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is the simplest way of express a shopping list in org?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_beaxfo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555552869.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a plain shopping list which I reuse. When I need an item I put a tick mark by it, and when I purchase it I marked it as ticked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPreparing a shopping list simply means frequenting the same list and reticking the things I need if they are unticked and usually means this type of syntax\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E- [X] Item 1\\n- [ ] Item 2\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI am trying out orgzly with this syntax and backspacing in small touchkeyboard to edit lines like this is rather clunky.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there another syntax that makes it easier to type on a mobile phone keyboard?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"beaxfo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/beaxfo/what_is_the_simplest_way_of_express_a_shopping/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/beaxfo/what_is_the_simplest_way_of_express_a_shopping/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555524069.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey folks. In the past I used Orgmode quite a lot, both for organizing my everyday life and for organizing my research. But then I grew tired of its text-heavy style. I wanted something more visual, more two dimensional. I tried Zim and even though it is a decent software, it was not as capable as the good Org. So I have a dilemma. Short of writing my own software, Org seems to be the only game in town for me.\\n\\n\\u0026#x200B;\\n\\nSo, is there any way to make Org more visual, more 2-dimensional? Or are there any such variants of it (or software inspired by it)? By more visual I mean the ability to have different font sizes (or headers), colors, etc. In short, basic HTML formatting capabilities. When I'm working on an Org file it's like I'm writing source code.\", \"author_fullname\": \"t2_15qtbm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Good old Orgmode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_be8m4x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1555514167.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555541001.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey folks. In the past I used Orgmode quite a lot, both for organizing my everyday life and for organizing my research. But then I grew tired of its text-heavy style. I wanted something more visual, more two dimensional. I tried Zim and even though it is a decent software, it was not as capable as the good Org. So I have a dilemma. Short of writing my own software, Org seems to be the only game in town for me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, is there any way to make Org more visual, more 2-dimensional? Or are there any such variants of it (or software inspired by it)? By more visual I mean the ability to have different font sizes (or headers), colors, etc. In short, basic HTML formatting capabilities. When I\\u0026#39;m working on an Org file it\\u0026#39;s like I\\u0026#39;m writing source code.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"be8m4x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"badmanbrown\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/be8m4x/good_old_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/be8m4x/good_old_orgmode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555512201.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Some of you may know the Don't break the Chain Method to gain good habits. \\n\\nI plan to organize this with a simple org table (Better suggestions are welcome).\\n\\nnow i Insert a Timestamp with `C-c .` how can I now generate like 1 month of lines in this table.\\n\\nOr how can I fill a table with consequtive Dates. \\n\\n\\u0026#x200B;\\n\\n[Table View](https://i.redd.it/wvee4lu9mls21.png)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[Wanted functionality](https://i.redd.it/gtvwmilkmls21.png)\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Don't Break the Chain with Org Mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"wvee4lu9mls21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 90, \"x\": 522, \"u\": \"https://i.redd.it/wvee4lu9mls21.png\"}, \"m\": \"image/png\", \"id\": \"wvee4lu9mls21\"}, \"gtvwmilkmls21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 294, \"x\": 495, \"u\": \"https://i.redd.it/gtvwmilkmls21.png\"}, \"m\": \"image/png\", \"id\": \"gtvwmilkmls21\"}}, \"name\": \"t3_bds2qx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555437328.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESome of you may know the Don\\u0026#39;t break the Chain Method to gain good habits. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI plan to organize this with a simple org table (Better suggestions are welcome).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Enow i Insert a Timestamp with \\u003Ccode\\u003EC-c .\\u003C/code\\u003E how can I now generate like 1 month of lines in this table.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr how can I fill a table with consequtive Dates. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/wvee4lu9mls21.png\\\"\\u003ETable View\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/gtvwmilkmls21.png\\\"\\u003EWanted functionality\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bds2qx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bds2qx/dont_break_the_chain_with_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bds2qx/dont_break_the_chain_with_org_mode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555408528.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone I've got a problem with my org agenda while using global linum mode. \\n\\nI have a function that generates a window layout with left an agenda and right another file \\n\\n\\nIf i use global linum mode the tags are always shifted to the right, so you cant read everything. \\n\\n \\n\\n\\n[with linum mode](https://i.redd.it/d6rhurfqpks21.png)\\n\\n\\u0026#x200B;\\n\\n[without linum mode](https://i.redd.it/l98vvqtvpks21.png)\\n\\n\\u0026#x200B;\\n\\nHow can I solve this problem\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Split Agenda Buffer Tag visability Error (linum mode)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"d6rhurfqpks21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 457, \"x\": 954, \"u\": \"https://i.redd.it/d6rhurfqpks21.png\"}, \"m\": \"image/png\", \"id\": \"d6rhurfqpks21\"}, \"l98vvqtvpks21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 450, \"x\": 977, \"u\": \"https://i.redd.it/l98vvqtvpks21.png\"}, \"m\": \"image/png\", \"id\": \"l98vvqtvpks21\"}}, \"name\": \"t3_bdqsi1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555426345.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone I\\u0026#39;ve got a problem with my org agenda while using global linum mode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a function that generates a window layout with left an agenda and right another file \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf i use global linum mode the tags are always shifted to the right, so you cant read everything. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/d6rhurfqpks21.png\\\"\\u003Ewith linum mode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/l98vvqtvpks21.png\\\"\\u003Ewithout linum mode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I solve this problem\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bdqsi1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bdqsi1/split_agenda_buffer_tag_visability_error_linum/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bdqsi1/split_agenda_buffer_tag_visability_error_linum/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555397545.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I define a timestamp that:\\n\\n\\u0026#x200B;\\n\\n* takes place on multiple consecutive days (date range)\\n* at a fixed time interval each day (e.g. 9am-5pm)\\n\\n\\u0026#x200B;\\n\\nI'm trying:\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E--\\u003C2019-04-30 Tue 09:00-21:00\\u003E\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E--\\u003C2019-04-30 Tue\\u003E\\n\\n\\u0026#x200B;\\n\\nBut only the first day show's a time, the rest is shown as a whole day event.\\n\\n\\u0026#x200B;\\n\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E\\n \\u003C2019-04-24 Wed 09:00-21:00\\u003E\\n \\u003C2019-04-25 Thu 09:00-21:00\\u003E\\n \\u003C2019-04-26 Fri 09:00-21:00\\u003E\\n \\u003C2019-04-27 Sat 09:00-21:00\\u003E\\n \\u003C2019-04-28 Sun 09:00-21:00\\u003E\\n \\u003C2019-04-28 Sun 09:00-21:00\\u003E\\n \\u003C2019-04-30 Tue 09:00-21:00\\u003E\\n\\nSeems to work, but is seriously broken =)\", \"author_fullname\": \"t2_dcfnv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Define a date range with time interval for each day?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bdekci\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555354229.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I define a timestamp that:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Etakes place on multiple consecutive days (date range)\\u003C/li\\u003E\\n\\u003Cli\\u003Eat a fixed time interval each day (e.g. 9am-5pm)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;--\\u0026lt;2019-04-30 Tue 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;--\\u0026lt;2019-04-30 Tue\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut only the first day show\\u0026#39;s a time, the rest is shown as a whole day event.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-24 Wed 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-25 Thu 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-26 Fri 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-27 Sat 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-28 Sun 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-28 Sun 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-30 Tue 09:00-21:00\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESeems to work, but is seriously broken =)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bdekci\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"poiu-\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bdekci/define_a_date_range_with_time_interval_for_each/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bdekci/define_a_date_range_with_time_interval_for_each/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555325429.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly reports from org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd9prf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm starting to use more advanced features of org and am loving it!\\n\\nI'd like to be able to export a weekly report from org, based on TODOs I've either marked done or TODOs that have a timestamped note underneath them within the week previous to the current day. For example, if today is Thursday and I finished TODO A on Tuesday and made notes to TODO B on Friday and Wednesday but did not update TODO C at all, I'd like the export to contain TODOS A and B, along with any notes made under them in the past week.\\n\\nI imagine someone has implemented something like this before. Is there a module or package that does it, or an org agenda export config that would do it?\\n\\nThank you!\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly reports from org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd7asx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 18, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 18, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555303180.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m starting to use more advanced features of org and am loving it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to be able to export a weekly report from org, based on TODOs I\\u0026#39;ve either marked done or TODOs that have a timestamped note underneath them within the week previous to the current day. For example, if today is Thursday and I finished TODO A on Tuesday and made notes to TODO B on Friday and Wednesday but did not update TODO C at all, I\\u0026#39;d like the export to contain TODOS A and B, along with any notes made under them in the past week.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI imagine someone has implemented something like this before. Is there a module or package that does it, or an org agenda export config that would do it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd7asx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1555274380.0, \"media\": null, \"is_video\": false}], \"created\": 1555317009.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd9prf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bd7asx\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bd9prf/weekly_reports_from_org/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555288209.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"In Org, you arrange projects as a TODO with sub-TODOs (and so on). These TODOs may be ordered such that the first TODO in a project must be finished before the next TODO can start. I have two questions:\\n\\n1. Can you create an agenda that shows TODOs hierarchically? That is, an agenda that shows all the projects with sub-TODOs that need attention?\\n\\n2. Can an agenda be made to not show TODOs that are blocked by TODOs that still have to be done?\", \"author_fullname\": \"t2_baw354f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hierarchical Agendas?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd4ka9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555288456.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn Org, you arrange projects as a TODO with sub-TODOs (and so on). These TODOs may be ordered such that the first TODO in a project must be finished before the next TODO can start. I have two questions:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECan you create an agenda that shows TODOs hierarchically? That is, an agenda that shows all the projects with sub-TODOs that need attention?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECan an agenda be made to not show TODOs that are blocked by TODOs that still have to be done?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd4ka9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SmoothInternet\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555259656.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I try something like this:\\n\\n * Hello\\n ** World\\n Some *notes* /here/. \\n ** Foo\\n #+begin_src org\\n *Hello* +world+ /sailor/. =Emacs=.\\n #+end_src\\n \\nthe text inside the org src block does not get proper font-locking/syntax-highlighting for Org mode (e.g. `*Hello*` is not shown in bold; `+world+` is not struck-through, etc.). (If I open the src block in a new buffer with `C-c '` the proper font-locking applies in the new buffer.)\\n\\nLikewise, when the point is inside the org src block, the echo area displays `eldoc error: (error Variable binding depth exceeds max-specpdl-size)`.\\n\\nIs there any way around these issues with Org-in-Org? Or is this a limitation on embedded Org blocks in Org?\", \"author_fullname\": \"t2_8a43c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Getting proper font-locking/syntax-highlighting in embedded org src blocks in Org mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bct1in\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555206091.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I try something like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Hello\\n** World\\n Some *notes* /here/. \\n** Foo\\n#+begin_src org\\n*Hello* +world+ /sailor/. =Emacs=.\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ethe text inside the org src block does not get proper font-locking/syntax-highlighting for Org mode (e.g. \\u003Ccode\\u003E*Hello*\\u003C/code\\u003E is not shown in bold; \\u003Ccode\\u003E+world+\\u003C/code\\u003E is not struck-through, etc.). (If I open the src block in a new buffer with \\u003Ccode\\u003EC-c \\u0026#39;\\u003C/code\\u003E the proper font-locking applies in the new buffer.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELikewise, when the point is inside the org src block, the echo area displays \\u003Ccode\\u003Eeldoc error: (error Variable binding depth exceeds max-specpdl-size)\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way around these issues with Org-in-Org? Or is this a limitation on embedded Org blocks in Org?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bct1in\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"emacsomancer\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bct1in/getting_proper_fontlockingsyntaxhighlighting_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bct1in/getting_proper_fontlockingsyntaxhighlighting_in/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555177291.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is it possible to set (setq org-agenda-files) files as all .org files in a directory that contain \\\"project\\\" somewhere in their filename? I've been playing around with both (find-lisp-find-files) and also (file-expand-wildcards) but cannot make it work. Much documentation re \\\\*.org but not \\\\*project\\\\*.org. Many thanks in advance!\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Possible to set agenda files to files in a directory that match partial filename?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcnamp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555161639.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to set (setq org-agenda-files) files as all .org files in a directory that contain \\u0026quot;project\\u0026quot; somewhere in their filename? I\\u0026#39;ve been playing around with both (find-lisp-find-files) and also (file-expand-wildcards) but cannot make it work. Much documentation re *.org but not *project*.org. Many thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcnamp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcnamp/possible_to_set_agenda_files_to_files_in_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcnamp/possible_to_set_agenda_files_to_files_in_a/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555132839.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I recently update my `org` to the version `9.2`\\n(to be precise: `Org mode version 9.2.3 (9.2.3-4-g6ec402-elpaplus @ /home/nanounanue/.emacs.d/elpa/org-plus-contrib-20190408/`)\\n\\nI did it because I replaced the `ob-ipython` with `emacs-jupyter` (more stable, more features and now I am very happy)\\n\\nNow, I am experimenting the following hiccups:\\n\\n(a) When I try to insert a code block using the new keybinding `C-c C-,` I got:\\n\\n```\\nWarning (org):\\nPlease update the entries of `org-structure-template-alist'.\\n\\nIn Org 9.2 the format was changed from something like\\n\\n(\\\"s\\\" \\\"#+BEGIN_SRC ?\\\\n#+END_SRC\\\")\\n\\nto something like\\n\\n(\\\"s\\\" . \\\"src\\\")\\n\\nPlease refer to the documentation of `org-structure-template-alist'.\\n\\nThe following entries must be updated:\\n\\n((\\\"n\\\" \\\"#+BEGIN_NOTES\\\\n?\\\\n#+END_NOTES\\\")\\n(\\\"Q\\\" \\\"#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\\" \\\"#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\\"))\\n```\\n\\nI searched in my =.emacs= and I don't find those lines, actually my templates are:\\n\\n```\\n(add-to-list 'org-structure-template-alist\\n'(\\\"el\\\" . \\\"src emacs-lisp\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"sh\\\" . \\\"src shell\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"Q\\\" . \\\"src sql\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"py\\\" . \\\"src jupyter-python\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"md\\\" . \\\"src markdown\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"sr\\\" . \\\"src R\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"l\\\" . \\\"src lisp\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"cl\\\" . \\\"src clojure\\\"))\\n```\\n\\nSo, I am kind of lost here.\\n\\n\\n(b) My `sql` babel blocks now throw the following error everytime that the cursor enters the block\\n\\n```\\nDebugger entered--Lisp error: (wrong-type-argument stringp 5434)\\n#f(compiled-function (elem) #\\u003Cbytecode 0x1563983c7e95\\u003E)((:dbport . 5434))\\nmapconcat(#f(compiled-function (elem) #\\u003Cbytecode 0x1563983c7e95\\u003E) ((:results . \\\"drawer table replace\\\") (:exports . \\\"both\\\") (:cmdline . \\\"-q\\\") (:eval . \\\"no-export\\\") (:database . \\\"food\\\") (:dbpassword . \\\"some_password\\\") (:dbuser . \\\"food_user\\\") (:dbport . 5434) (:dbhost . \\\"0.0.0.0\\\") (:engine . \\\"postgresql\\\") (:tangle . \\\"no\\\") (:hlines . \\\"no\\\") (:noweb . \\\"no\\\") (:cache . \\\"no\\\") (:session . \\\"none\\\")) \\\" \\\")\\norg-eldoc-get-src-header()\\norg-eldoc-documentation-function()\\neldoc-print-current-symbol-info()\\n#f(compiled-function () #\\u003Cbytecode 0x1feb98d89639\\u003E)()\\napply(#f(compiled-function () #\\u003Cbytecode 0x1feb98d89639\\u003E) nil)\\ntimer-event-handler([t 0 0 100000 t #f(compiled-function () #\\u003Cbytecode 0x1feb98d89639\\u003E) nil idle 0])\\n```\\n\\n(c) If I try to refresh the headers of an org-mode buffer using `C-c C-c` I got the following error:\\n\\n```\\nDebugger entered--Lisp error: (void-function org-outline-overlay-data)\\norg-outline-overlay-data(use-markers)\\norg-ctrl-c-ctrl-c(nil)\\nfuncall-interactively(org-ctrl-c-ctrl-c nil)\\ncall-interactively(org-ctrl-c-ctrl-c nil nil)\\n#f(compiled-function (cmd \\u0026optional record-flag keys special) \\\"Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the `commandp' predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable `command-history'.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don't clear it.\\\" #\\u003Cbytecode 0x1feb98d60d25\\u003E)(org-ctrl-c-ctrl-c nil nil nil)\\nad-Advice-command-execute(#f(compiled-function (cmd \\u0026optional record-flag keys special) \\\"Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the `commandp' predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable `command-history'.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don't clear it.\\\" #\\u003Cbytecode 0x1feb98d60d25\\u003E) org-ctrl-c-ctrl-c)\\napply(ad-Advice-command-execute #f(compiled-function (cmd \\u0026optional record-flag keys special) \\\"Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the `commandp' predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable `command-history'.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don't clear it.\\\" #\\u003Cbytecode 0x1feb98d60d25\\u003E) org-ctrl-c-ctrl-c)\\ncommand-execute(org-ctrl-c-ctrl-c)\\n````\\n\\nAll these behaviour showed up with the upgrade to `org 9.2`. Could someone give me pointers or help?\\n\\nThanks in advance\", \"author_fullname\": \"t2_5q2ns\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help, can't find the errors!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcjl8u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555136152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recently update my \\u003Ccode\\u003Eorg\\u003C/code\\u003E to the version \\u003Ccode\\u003E9.2\\u003C/code\\u003E\\n(to be precise: \\u003Ccode\\u003EOrg mode version 9.2.3 (9.2.3-4-g6ec402-elpaplus @ /home/nanounanue/.emacs.d/elpa/org-plus-contrib-20190408/\\u003C/code\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did it because I replaced the \\u003Ccode\\u003Eob-ipython\\u003C/code\\u003E with \\u003Ccode\\u003Eemacs-jupyter\\u003C/code\\u003E (more stable, more features and now I am very happy)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, I am experimenting the following hiccups:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(a) When I try to insert a code block using the new keybinding \\u003Ccode\\u003EC-c C-,\\u003C/code\\u003E I got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E``\\u003Ccode\\u003E\\nWarning (org):\\nPlease update the entries of\\u003C/code\\u003Eorg-structure-template-alist\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Org 9.2 the format was changed from something like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u0026quot;s\\u0026quot; \\u0026quot;#+BEGIN_SRC ?\\\\n#+END_SRC\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eto something like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u0026quot;s\\u0026quot; . \\u0026quot;src\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease refer to the documentation of `org-structure-template-alist\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe following entries must be updated:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E((\\u0026quot;n\\u0026quot; \\u0026quot;#+BEGIN_NOTES\\\\n?\\\\n#+END_NOTES\\u0026quot;)\\n(\\u0026quot;Q\\u0026quot; \\u0026quot;#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\u0026quot; \\u0026quot;#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\u0026quot;))\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI searched in my =.emacs= and I don\\u0026#39;t find those lines, actually my templates are:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\n(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;el\\u0026quot; . \\u0026quot;src emacs-lisp\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;sh\\u0026quot; . \\u0026quot;src shell\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;Q\\u0026quot; . \\u0026quot;src sql\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;py\\u0026quot; . \\u0026quot;src jupyter-python\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;md\\u0026quot; . \\u0026quot;src markdown\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;sr\\u0026quot; . \\u0026quot;src R\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;l\\u0026quot; . \\u0026quot;src lisp\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;cl\\u0026quot; . \\u0026quot;src clojure\\u0026quot;))\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, I am kind of lost here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(b) My \\u003Ccode\\u003Esql\\u003C/code\\u003E babel blocks now throw the following error everytime that the cursor enters the block\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\nDebugger entered--Lisp error: (wrong-type-argument stringp 5434)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Ef(compiled-function (elem) #\\u0026lt;bytecode 0x1563983c7e95\\u0026gt;)((:dbport . 5434))\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003Emapconcat(#f(compiled-function (elem) #\\u0026lt;bytecode 0x1563983c7e95\\u0026gt;) ((:results . \\u0026quot;drawer table replace\\u0026quot;) (:exports . \\u0026quot;both\\u0026quot;) (:cmdline . \\u0026quot;-q\\u0026quot;) (:eval . \\u0026quot;no-export\\u0026quot;) (:database . \\u0026quot;food\\u0026quot;) (:dbpassword . \\u0026quot;some_password\\u0026quot;) (:dbuser . \\u0026quot;food_user\\u0026quot;) (:dbport . 5434) (:dbhost . \\u0026quot;0.0.0.0\\u0026quot;) (:engine . \\u0026quot;postgresql\\u0026quot;) (:tangle . \\u0026quot;no\\u0026quot;) (:hlines . \\u0026quot;no\\u0026quot;) (:noweb . \\u0026quot;no\\u0026quot;) (:cache . \\u0026quot;no\\u0026quot;) (:session . \\u0026quot;none\\u0026quot;)) \\u0026quot; \\u0026quot;)\\norg-eldoc-get-src-header()\\norg-eldoc-documentation-function()\\neldoc-print-current-symbol-info()\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Ef(compiled-function () #\\u0026lt;bytecode 0x1feb98d89639\\u0026gt;)()\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003Eapply(#f(compiled-function () #\\u0026lt;bytecode 0x1feb98d89639\\u0026gt;) nil)\\ntimer-event-handler([t 0 0 100000 t #f(compiled-function () #\\u0026lt;bytecode 0x1feb98d89639\\u0026gt;) nil idle 0])\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(c) If I try to refresh the headers of an org-mode buffer using \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E I got the following error:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\nDebugger entered--Lisp error: (void-function org-outline-overlay-data)\\norg-outline-overlay-data(use-markers)\\norg-ctrl-c-ctrl-c(nil)\\nfuncall-interactively(org-ctrl-c-ctrl-c nil)\\ncall-interactively(org-ctrl-c-ctrl-c nil nil)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Ef(compiled-function (cmd \\u0026amp;optional record-flag keys special) \\u0026quot;Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the \\u003Ccode\\u003Ecommandp\\u0026#39; predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable\\u003C/code\\u003Ecommand-history\\u0026#39;.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don\\u0026#39;t clear it.\\u0026quot; #\\u0026lt;bytecode 0x1feb98d60d25\\u0026gt;)(org-ctrl-c-ctrl-c nil nil nil)\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003Ead-Advice-command-execute(#f(compiled-function (cmd \\u0026amp;optional record-flag keys special) \\u0026quot;Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the \\u003Ccode\\u003Ecommandp\\u0026#39; predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable\\u003C/code\\u003Ecommand-history\\u0026#39;.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don\\u0026#39;t clear it.\\u0026quot; #\\u0026lt;bytecode 0x1feb98d60d25\\u0026gt;) org-ctrl-c-ctrl-c)\\napply(ad-Advice-command-execute #f(compiled-function (cmd \\u0026amp;optional record-flag keys special) \\u0026quot;Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the \\u003Ccode\\u003Ecommandp\\u0026#39; predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable\\u003C/code\\u003Ecommand-history\\u0026#39;.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don\\u0026#39;t clear it.\\u0026quot; #\\u0026lt;bytecode 0x1feb98d60d25\\u0026gt;) org-ctrl-c-ctrl-c)\\ncommand-execute(org-ctrl-c-ctrl-c)\\n````\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll these behaviour showed up with the upgrade to \\u003Ccode\\u003Eorg 9.2\\u003C/code\\u003E. Could someone give me pointers or help?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcjl8u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nanounanue\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcjl8u/help_cant_find_the_errors/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcjl8u/help_cant_find_the_errors/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555107352.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Can Org-mode clone items such as outline entries or list items? I saw this behavior in an editor called \\\"LEO\\\" (https://leoeditor.com/tutorial-pim.html#clones). It allows you to create an item in one area of an outline, then create references to it from other areas. Changes made to any instance are propagated to all other instances.\\n\\nI am new to Emacs \\u0026 Org-mode and am documenting an upcoming trip to get familiar with these new tools. (Using Spacemacs to ease the transition from Vim to Emacs.) \\n\\nIf possible, I would like to clone some of the items such as flight data and local attractions so that they can be re-used in different places (itinerary, budget, etc.) without copying and pasting or otherwise duplicating the information.\", \"author_fullname\": \"t2_xhn00\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Clones in org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bch97g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555123663.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan Org-mode clone items such as outline entries or list items? I saw this behavior in an editor called \\u0026quot;LEO\\u0026quot; (\\u003Ca href=\\\"https://leoeditor.com/tutorial-pim.html#clones\\\"\\u003Ehttps://leoeditor.com/tutorial-pim.html#clones\\u003C/a\\u003E). It allows you to create an item in one area of an outline, then create references to it from other areas. Changes made to any instance are propagated to all other instances.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am new to Emacs \\u0026amp; Org-mode and am documenting an upcoming trip to get familiar with these new tools. (Using Spacemacs to ease the transition from Vim to Emacs.) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf possible, I would like to clone some of the items such as flight data and local attractions so that they can be re-used in different places (itinerary, budget, etc.) without copying and pasting or otherwise duplicating the information.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bch97g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NineMinuteNap\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bch97g/clones_in_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bch97g/clones_in_orgmode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555094863.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 12, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcd6an\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555102149.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcd6an\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcd6an/weekly_rorgmode_open_discussion_april_12_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcd6an/weekly_rorgmode_open_discussion_april_12_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555073349.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello all, \\n\\nit's been a while since I posted something org-mode related. More recently I tried the Org-Gcal package and, after getting it to work, realized why it doesn't work. That is, on a style level, for me. \\n\\n\\u0026#x200B;\\n\\nThis post is less about the tool itself and more about how I use org-mode and why (in my opinion) you can't just straight-\\\"translate\\\" one to the other. It boils down to the one-line agenda item with all the information I need vs the more detailed \\\"list\\\" of Google Calendar which works much better on a smart phone then on a computer. This is a matter of opinion, and I'd love to hear yours.\\n\\n\\u0026#x200B;\\n\\nHere it is: [https://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/](https://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/)\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"About the difference between Org-mode and Google calendar\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcczk3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555100968.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello all, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eit\\u0026#39;s been a while since I posted something org-mode related. More recently I tried the Org-Gcal package and, after getting it to work, realized why it doesn\\u0026#39;t work. That is, on a style level, for me. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis post is less about the tool itself and more about how I use org-mode and why (in my opinion) you can\\u0026#39;t just straight-\\u0026quot;translate\\u0026quot; one to the other. It boils down to the one-line agenda item with all the information I need vs the more detailed \\u0026quot;list\\u0026quot; of Google Calendar which works much better on a smart phone then on a computer. This is a matter of opinion, and I\\u0026#39;d love to hear yours.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere it is: \\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/\\\"\\u003Ehttps://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcczk3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcczk3/about_the_difference_between_orgmode_and_google/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcczk3/about_the_difference_between_orgmode_and_google/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555072168.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Can I set a header argument to tangle blocks to another directory?\\n\\nI currently use this to tangle my files:\\n\\n #+PROPERTY: header-args :tangle yes\\n\\nSo I my blocks can be simpler:\\n\\n #+BEGIN_SRC emacs-lisp\\n (defun some-function ()\\n (interactive)\\n (message \\\"example\\\"))\\n #+END_SRC\\n\\nWhich is fine, but the files are created in the same directory. I wonder if I can do something like this instead:\\n\\n #+PROPERTY: header-args :tangle /path/to/some-other-directory\\n\\nSo, if was tangling a file called `example.org`, it would write to\\n\\n /path/to/some-other-directory/example.file\\n\\nI could use\\n\\n #+PROPERTY: header-args :tangle /path/to/some-other-directory/example.el\\n\\nbut I have a lot of files and a declaration that works for all of them would make it simpler to maintain them, as well as making alterations in my folders structure.\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can I set a header argument to tangle blocks to another directory?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_b9zzug\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1554548008.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan I set a header argument to tangle blocks to another directory?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI currently use this to tangle my files:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+PROPERTY: header-args :tangle yes\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo I my blocks can be simpler:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+BEGIN_SRC emacs-lisp\\n(defun some-function ()\\n(interactive)\\n(message \\u0026quot;example\\u0026quot;))\\n#+END_SRC\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhich is fine, but the files are created in the same directory. I wonder if I can do something like this instead:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+PROPERTY: header-args :tangle /path/to/some-other-directory\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo, if was tangling a file called \\u003Ccode\\u003Eexample.org\\u003C/code\\u003E, it would write to\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E/path/to/some-other-directory/example.file\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI could use\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+PROPERTY: header-args :tangle /path/to/some-other-directory/example.el\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ebut I have a lot of files and a declaration that works for all of them would make it simpler to maintain them, as well as making alterations in my folders structure.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"b9zzug\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/b9zzug/can_i_set_a_header_argument_to_tangle_blocks_to/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/b9zzug/can_i_set_a_header_argument_to_tangle_blocks_to/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1554519208.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\n\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 05, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_b9qspb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1554497365.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"b9qspb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/b9qspb/weekly_rorgmode_open_discussion_april_05_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/b9qspb/weekly_rorgmode_open_discussion_april_05_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1554468565.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"(Xposting from r/spacemacs since this could also be an org problem.)\\n\\nI'm at my wits end trying to figure this out. I've reinstalled Spacemacs and all packages again and again, and I'm on the latest commit on the develop branch as of today.\\n\\n**Background:**\\n\\nI've configured `org-todo-keyword-faces` like so:\\n\\n ;; Define todo states\\n (setq org-todo-keywords\\n '((sequence \\\"NEXT(n)\\\" \\\"ACTION(a)\\\" \\\"WAIT(w)\\\" \\\"EVENT(e)\\\"\\n \\\"PROJECT(p)\\\" \\\"SCOPE(s)\\\" \\\"|\\\" \\\"DONE(d)\\\")))\\n \\n ;; Set todo keyword colors\\n (setq org-todo-keyword-faces\\n '((\\\"NEXT\\\" :background \\\"medium sea green\\\" :foreground \\\"white\\\" :weight bold)\\n (\\\"ACTION\\\" :foreground \\\"medium sea green\\\" :weight bold)\\n (\\\"WAIT\\\" :background \\\"yellow\\\" :foreground \\\"purple\\\" :weight bold)\\n (\\\"EVENT\\\" :background \\\"gray25\\\" :foreground \\\"white\\\" :weight bold)\\n (\\\"PROJECT\\\" :background \\\"firebrick\\\" :foreground \\\"white\\\" :weight bold)\\n (\\\"SCOPE\\\" :background \\\"dodger blue\\\" :foreground \\\"white\\\" :weight bold)\\n (\\\"DONE\\\" :background \\\"white\\\" :foreground \\\"black\\\" :weight bold)))\\n\\n**Problem:**\\n\\n[Here's what my buffers look like.](https://imgur.com/55SSWnz)\\n\\nThe faces seem to apply just fine, *except* for the NEXT and DONE states. In the above image, you can see that NEXT and DONE faces do not match what I've configured, while every other todo face works fine. Oddly enough, the faces are applied correctly when shown in the Org Todo buffer.\\n\\nNo matter what values I set in my config, those two will not change.\\n\\nEven if I *remove* the NEXT keyword from `org-todo-keywords` and restart, it will still highlight the keyword!\\n\\n**What I've tried:**\\n\\n* Reinstalled and upgraded to the latest Emacs and Spacemacs on the develop branch, including packages.\\n * At one point yesterday, the NEXT and DONE faces were correctly applied in-buffer, but somehow they've reverted back again.\\n * I was playing with themes, so could a theme perhaps have modified `org-done` and `org-todo` faces permanently?\\n* Deleting .emacs.d/.cache (I thought maybe the faces were somehow being cached)\\n* Disabling `font-lock-mode`\\n\\nThere might a bug *somewhere*, so I'd appreciate it if anyone could lend a hand in helping me figure this out!\\n\\n\\u0026#x200B;\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Customized org faces being overridden in buffer, but fine in Org todo buffer? [Spacemacs]\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_b9qrau\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1554497125.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E(Xposting from \\u003Ca href=\\\"/r/spacemacs\\\"\\u003Er/spacemacs\\u003C/a\\u003E since this could also be an org problem.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m at my wits end trying to figure this out. I\\u0026#39;ve reinstalled Spacemacs and all packages again and again, and I\\u0026#39;m on the latest commit on the develop branch as of today.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBackground:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve configured \\u003Ccode\\u003Eorg-todo-keyword-faces\\u003C/code\\u003E like so:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Define todo states\\n(setq org-todo-keywords\\n \\u0026#39;((sequence \\u0026quot;NEXT(n)\\u0026quot; \\u0026quot;ACTION(a)\\u0026quot; \\u0026quot;WAIT(w)\\u0026quot; \\u0026quot;EVENT(e)\\u0026quot;\\n \\u0026quot;PROJECT(p)\\u0026quot; \\u0026quot;SCOPE(s)\\u0026quot; \\u0026quot;|\\u0026quot; \\u0026quot;DONE(d)\\u0026quot;)))\\n\\n;; Set todo keyword colors\\n(setq org-todo-keyword-faces\\n \\u0026#39;((\\u0026quot;NEXT\\u0026quot; :background \\u0026quot;medium sea green\\u0026quot; :foreground \\u0026quot;white\\u0026quot; :weight bold)\\n (\\u0026quot;ACTION\\u0026quot; :foreground \\u0026quot;medium sea green\\u0026quot; :weight bold)\\n (\\u0026quot;WAIT\\u0026quot; :background \\u0026quot;yellow\\u0026quot; :foreground \\u0026quot;purple\\u0026quot; :weight bold)\\n (\\u0026quot;EVENT\\u0026quot; :background \\u0026quot;gray25\\u0026quot; :foreground \\u0026quot;white\\u0026quot; :weight bold)\\n (\\u0026quot;PROJECT\\u0026quot; :background \\u0026quot;firebrick\\u0026quot; :foreground \\u0026quot;white\\u0026quot; :weight bold)\\n (\\u0026quot;SCOPE\\u0026quot; :background \\u0026quot;dodger blue\\u0026quot; :foreground \\u0026quot;white\\u0026quot; :weight bold)\\n (\\u0026quot;DONE\\u0026quot; :background \\u0026quot;white\\u0026quot; :foreground \\u0026quot;black\\u0026quot; :weight bold)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProblem:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/55SSWnz\\\"\\u003EHere\\u0026#39;s what my buffers look like.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe faces seem to apply just fine, \\u003Cem\\u003Eexcept\\u003C/em\\u003E for the NEXT and DONE states. In the above image, you can see that NEXT and DONE faces do not match what I\\u0026#39;ve configured, while every other todo face works fine. Oddly enough, the faces are applied correctly when shown in the Org Todo buffer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo matter what values I set in my config, those two will not change.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEven if I \\u003Cem\\u003Eremove\\u003C/em\\u003E the NEXT keyword from \\u003Ccode\\u003Eorg-todo-keywords\\u003C/code\\u003E and restart, it will still highlight the keyword!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat I\\u0026#39;ve tried:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EReinstalled and upgraded to the latest Emacs and Spacemacs on the develop branch, including packages.\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAt one point yesterday, the NEXT and DONE faces were correctly applied in-buffer, but somehow they\\u0026#39;ve reverted back again.\\u003C/li\\u003E\\n\\u003Cli\\u003EI was playing with themes, so could a theme perhaps have modified \\u003Ccode\\u003Eorg-done\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-todo\\u003C/code\\u003E faces permanently?\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDeleting .emacs.d/.cache (I thought maybe the faces were somehow being cached)\\u003C/li\\u003E\\n\\u003Cli\\u003EDisabling \\u003Ccode\\u003Efont-lock-mode\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThere might a bug \\u003Cem\\u003Esomewhere\\u003C/em\\u003E, so I\\u0026#39;d appreciate it if anyone could lend a hand in helping me figure this out!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"b9qrau\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/b9qrau/customized_org_faces_being_overridden_in_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/b9qrau/customized_org_faces_being_overridden_in_buffer/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1554468325.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_b9qrau\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["433979"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:22 GMT"], "x-ratelimit-remaining": ["592.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "x-ratelimit-used": ["8"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914222.852980,VS0,VE1144"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["579"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:30:23"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_bxu83g"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:24 GMT"], "x-ratelimit-remaining": ["591.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "x-ratelimit-used": ["9"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914225.865582,VS0,VE132"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["576"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_bxu83g"}, "recorded_at": "2019-06-07T13:30:25"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsgv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cbr7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Heroquetarro10\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559899469.0, \"send_replies\": true, \"parent_id\": \"t3_bxsgv0\", \"score\": 1, \"author_fullname\": \"t2_288py4gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003Etest test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test\\n\\nYes\", \"link_title\": \"Text\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cbr7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etest test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYes\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/eq9cbr7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"report_reasons\": null, \"link_author\": \"Heroquetarro10\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"created\": 1559928269.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsgv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9c8db\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Heroquetarro10\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559899311.0, \"send_replies\": true, \"parent_id\": \"t3_bxsgv0\", \"score\": 1, \"author_fullname\": \"t2_288py4gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E test\", \"link_title\": \"Text\", \"author_flair_css_class\": null, \"name\": \"t1_eq9c8db\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/eq9c8db/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"report_reasons\": null, \"link_author\": \"Heroquetarro10\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"created\": 1559928111.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwsi3l\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq4tbku\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"testforcal\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559785341.0, \"send_replies\": true, \"parent_id\": \"t3_bwsi3l\", \"score\": 1, \"author_fullname\": \"t2_3wac7yjb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"test!\", \"link_title\": \"I CAN GO 15 SECONDS WITH ANYTHING. Howard looks like he is going to make doodie in his pants when GB hijacks his mic. Would GB walk away from this encounter if he bullied Howard in 2019? T O P L E S S\", \"author_flair_css_class\": null, \"name\": \"t1_eq4tbku\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/eq4tbku/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/\", \"report_reasons\": null, \"link_author\": \"Gooforme\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\\u0026t=2s\", \"created\": 1559814141.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwme1e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyizc2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"InsiderMemeBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559637515.0, \"send_replies\": true, \"parent_id\": \"t3_bwme1e\", \"score\": 1, \"author_fullname\": \"t2_2sm6difp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Template](/r/InsiderMemeTrading/comments/bwmd74/test/)\", \"link_title\": \"Image test\", \"author_flair_css_class\": null, \"name\": \"t1_epyizc2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/InsiderMemeTrading/comments/bwmd74/test/\\\"\\u003ETemplate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwme1e/image_test/epyizc2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwme1e/image_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/xju3qepdxa231.jpg\", \"created\": 1559666315.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwme78\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyiz7w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Crywren\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559637509.0, \"send_replies\": true, \"parent_id\": \"t3_bwme78\", \"score\": 1, \"author_fullname\": \"t2_18vy1b\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif](https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif)\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_epyiz7w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif\\\"\\u003Ehttps://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwme78/test/epyiz7w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwme78/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/vzxqgtbhxa231.png\", \"created\": 1559666309.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmads\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyih18\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"InsiderMemeBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559636627.0, \"send_replies\": true, \"parent_id\": \"t3_bwmads\", \"score\": 1, \"author_fullname\": \"t2_2sm6difp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Template](/r/InsiderMemeTrading/comments/bwmajp/cap_pointing/)\", \"link_title\": \"yeet\", \"author_flair_css_class\": null, \"name\": \"t1_epyih18\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/InsiderMemeTrading/comments/bwmajp/cap_pointing/\\\"\\u003ETemplate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwmads/yeet/epyih18/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwmads/yeet/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/b0ad3b9gua231.jpg\", \"created\": 1559665427.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw86r0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epwwjmw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erebusmaster\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559586407.0, \"send_replies\": true, \"parent_id\": \"t3_bw86r0\", \"score\": 1, \"author_fullname\": \"t2_gbhji\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"success!\", \"link_title\": \"testagain3\", \"author_flair_css_class\": null, \"name\": \"t1_epwwjmw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Esuccess!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bw86r0/testagain3/epwwjmw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"report_reasons\": null, \"link_author\": \"erebusmaster\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"created\": 1559615207.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epn2c0q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Brewsterion\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559320247.0, \"send_replies\": true, \"parent_id\": \"t1_epn250f\", \"score\": 1, \"author_fullname\": \"t2_118qqr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"A few days usually, just send it to the mods to get it approved. They\\u2019ll give some more feedback if it\\u2019s needed.\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_epn2c0q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA few days usually, just send it to the mods to get it approved. They\\u2019ll give some more feedback if it\\u2019s needed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/epn2c0q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559349047.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epn250f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SYwaves\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559320172.0, \"send_replies\": true, \"parent_id\": \"t1_eplphoy\", \"score\": 2, \"author_fullname\": \"t2_2j4j6rg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks man. I\\u2019m still thinking of making more edits, but 3790 makes taking the declass to any solid conclusion difficult:P\\n\\nAs a side note, how long does it usually take to get approved?\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_epn250f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks man. I\\u2019m still thinking of making more edits, but 3790 makes taking the declass to any solid conclusion difficult:P\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a side note, how long does it usually take to get approved?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/epn250f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559348972.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv7huc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epm852r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"binjajer\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559309424.0, \"send_replies\": false, \"parent_id\": \"t3_bv7huc\", \"score\": 1, \"author_fullname\": \"t2_3g10qxu5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Tired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens? \\n\\n\\nCheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.) \\n\\n\\n[https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/](https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/) \\n\\n\\nSquadron discord details will be disbursed upon application. \\n\\n\\n Fly bigly, commanders!\", \"link_title\": \"Make the Galaxy Great Again!\", \"author_flair_css_class\": null, \"name\": \"t1_epm852r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\\"\\u003Ehttps://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESquadron discord details will be disbursed upon application. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFly bigly, commanders!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/epm852r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"report_reasons\": null, \"link_author\": \"binjajer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"created\": 1559338224.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplphoy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Brewsterion\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559300826.0, \"send_replies\": true, \"parent_id\": \"t3_bv2mv5\", \"score\": 1, \"author_fullname\": \"t2_118qqr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"As a frequent poster to SCPD, I like what you\\u2019ve done here with explaining all the references and the main theme of the article. Good luck on getting it approved by mods.\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_eplphoy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a frequent poster to SCPD, I like what you\\u2019ve done here with explaining all the references and the main theme of the article. Good luck on getting it approved by mods.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/eplphoy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559329626.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buz6bd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epjgsbw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dwolfj\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559253716.0, \"send_replies\": true, \"parent_id\": \"t3_buz6bd\", \"score\": 1, \"author_fullname\": \"t2_2awf2pwl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" ............................................________ \\n ....................................,.-'\\\"...................``~., \\n .............................,.-\\\"...................................\\\"-., \\n .........................,/...............................................\\\":, \\n .....................,?......................................................, \\n .................../...........................................................,} \\n ................./......................................................,:`^`..} \\n .............../...................................................,:\\\"........./ \\n ..............?.....__.........................................:`.........../ \\n ............./__.(.....\\\"~-,_..............................,:`........../ \\n .........../(_....\\\"~,_........\\\"~,_....................,:`........_/ \\n ..........{.._$;_......\\\"=,_.......\\\"-,_.......,.-~-,},.~\\\";/....} \\n ...........((.....*~_.......\\\"=-._......\\\";,,./`..../\\\"............../ \\n ...,,,___.`~,......\\\"~.,....................`.....}............../ \\n ............(....`=-,,.......`........................(......;_,,-\\\" \\n ............/.`~,......`-...................................../ \\n .............`~.*-,.....................................|,./.....,__ \\n ,,_..........}.\\u003E-._...................................|..............`=~-, \\n .....`=~-,__......`,................................. \\n ...................`=~-,,.,............................... \\n ................................`:,,...........................`..............__ \\n .....................................`=-,...................,%`\\u003E--==`` \\n ........................................_..........._,-%.......` \\n ...................................,\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_epjgsbw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E............................................________ \\n....................................,.-\\u0026#39;\\u0026quot;...................``~., \\n.............................,.-\\u0026quot;...................................\\u0026quot;-., \\n.........................,/...............................................\\u0026quot;:, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\u0026quot;........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\u0026quot;~-,_..............................,:`........../ \\n.........../(_....\\u0026quot;~,_........\\u0026quot;~,_....................,:`........_/ \\n..........{.._$;_......\\u0026quot;=,_.......\\u0026quot;-,_.......,.-~-,},.~\\u0026quot;;/....} \\n...........((.....*~_.......\\u0026quot;=-._......\\u0026quot;;,,./`..../\\u0026quot;............../ \\n...,,,___.`~,......\\u0026quot;~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\u0026quot; \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u0026gt;-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u0026gt;--==`` \\n........................................_..........._,-%.......` \\n...................................,\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/buz6bd/test/epjgsbw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"report_reasons\": null, \"link_author\": \"dwolfj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"created\": 1559282516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbhff3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559142650.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts\\n**1 Correct Seed:** 15pts\\n**2 Correct Seeds:** +30pts(45 total)\\n**(S)emi(F)inalist:** 180pts\\n**(F)inalist:** 380pts\\n**(W)inners:** 780pts\\n**Score in favor of your winner:** 190pts\\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | |\\n | | | | | | |\\n Group A| | | | | | |\\nNRG|QF |1 |SF |F |W |4-3 | |\\nINTZ|QF |2 | | | | | |\\nPSG| | | | | | | WC |\\n | | | | | | |\\nGroup B | | | | | | | \\nRV | | | | | | | |\\nG2 |QF |1 |SF |F | | | |\\nOOO |QF |2 | | | | | |\\n | | | | | | |\\nGroup C | | | | | | |\\nRNG |QF |1 |SF | | | | |\\nFCB |QF |2 |SF | | | | |\\nRGE | | | | | | | |\\n | | | | | | |\\nGroup D | | | | | | |\\nLKE |QF |2 | | | | | |\\nC9 | | | | | | | WC |\\nTT |QF |1 | | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbhff3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts\\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15pts\\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30pts(45 total)\\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180pts\\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380pts\\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780pts\\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190pts\\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | |\\n | | | | | | |\\n Group A| | | | | | |\\nNRG|QF |1 |SF |F |W |4-3 | |\\nINTZ|QF |2 | | | | | |\\nPSG| | | | | | | WC |\\n | | | | | | |\\nGroup B | | | | | | | \\nRV | | | | | | | |\\nG2 |QF |1 |SF |F | | | |\\nOOO |QF |2 | | | | | |\\n | | | | | | |\\nGroup C | | | | | | |\\nRNG |QF |1 |SF | | | | |\\nFCB |QF |2 |SF | | | | |\\nRGE | | | | | | | |\\n | | | | | | |\\nGroup D | | | | | | |\\nLKE |QF |2 | | | | | |\\nC9 | | | | | | | WC |\\nTT |QF |1 | | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbhff3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559171450.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbfzp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559142036.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n(Q)uarter(F)inalist: 100 pts 1 Correct Seed: 15 pts 2 Correct Seeds: +30 pts(45 total) (S)emi(F)inalist: 180 pts (F)inalist: 380 pts (W)inners: 780 pts Score in favor of your winner: 190 pts Score in favor of your winner AND you guessed the other Finalist: +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\nWhat predictions would look like is this...\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n| | | | | | | | | | | | \\nGroup A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 | \\nINTZ|QF |2 | | | | | \\nPSG| | | | | | | \\nWC | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | | \\nOOO |QF |2 | | | | | | | | | | | \\nGroup C | | | | | | \\nRNG |QF |1 |SF | | | | \\nFCB |QF |2 |SF | | | | \\nRGE | | | | | | | | | | | | | \\nGroup D | | | | | | \\nLKE |QF |2 | | | | | \\nC9 | | | | | | | WC \\nTT |QF |1 | | | | |\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\nAdvice: Take the teams\\n\\nA1 v B2 D1 v C2\\n\\nB1 v A2 C1 v D2\\n\\nAnd substitute them with your predictions to keep track:\\n\\nNRG v OOO TT v FCB\\n\\nG2 v INTZ RNG v LKE\\n\\n Disclaimer: I\\u2019ll post this about every week and a couple days before LAN.\\n\\nRules and Guidelines:\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game. Please submit your predictions as unedited comments or Dms to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\nQuestions\\n\\nWhy am I not doing Dreamhack? I haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\nWill I do this for other tournaments in the future? For majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\nWill there be analysis on my part? Likely, but not guaranteed. I may try to get someone else on board.\\n\\nWhen and where will results be posted? Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n\\nNOTES:\\n\\nI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\nTwo Questions From Me:\\n\\nHow would you like the Wildcard picks to work? I\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n\\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be?\\n\\nThe table format will be in the comments.\\n\\nOne with a blank sheet. The other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbfzp8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Q)uarter(F)inalist: 100 pts 1 Correct Seed: 15 pts 2 Correct Seeds: +30 pts(45 total) (S)emi(F)inalist: 180 pts (F)inalist: 380 pts (W)inners: 780 pts Score in favor of your winner: 190 pts Score in favor of your winner AND you guessed the other Finalist: +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n| | | | | | | | | | | | \\nGroup A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 | \\nINTZ|QF |2 | | | | | \\nPSG| | | | | | | \\nWC | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | | \\nOOO |QF |2 | | | | | | | | | | | \\nGroup C | | | | | | \\nRNG |QF |1 |SF | | | | \\nFCB |QF |2 |SF | | | | \\nRGE | | | | | | | | | | | | | \\nGroup D | | | | | | \\nLKE |QF |2 | | | | | \\nC9 | | | | | | | WC \\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2 D1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2 C1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO TT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ RNG v LKE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERules and Guidelines:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game. Please submit your predictions as unedited comments or Dms to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuestions\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy am I not doing Dreamhack? I haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWill I do this for other tournaments in the future? For majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWill there be analysis on my part? Likely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen and where will results be posted? Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENOTES:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETwo Questions From Me:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work? I\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet. The other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbfzp8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170836.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbekt2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559141502.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts \\n**1 Correct Seed:** 15 pts \\n**2 Correct Seeds:** +30 pts(45 total) \\n**(S)emi(F)inalist:** 180 pts \\n**(F)inalist:** 380 pts \\n**(W)inners:** 780 pts \\n**Score in favor of your winner:** 190 pts \\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total) \\n \\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbekt2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts \\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15 pts \\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30 pts(45 total) \\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180 pts \\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380 pts \\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780 pts \\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190 pts \\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbekt2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170302.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbe3h9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559141322.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Why won\\u2019t the table work\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbe3h9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy won\\u2019t the table work\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbe3h9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170122.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559109977.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu790e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep9gim2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"elcocotero\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559109744.0, \"send_replies\": true, \"parent_id\": \"t3_bu790e\", \"score\": 1, \"author_fullname\": \"t2_ps7sm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"That would be [Danza Kuduro by puerto rican reggeaton artist Don Omar](https://www.youtube.com/watch?v=7zp1TbLFPp8).\\n\\n Now i'm not a big reggaeton fan but this guy's one of the best. \\\"Sali\\u00f3 el sol\\\" is amazing. Also \\\"Diva Virtual\\\".\", \"link_title\": \"Upcoming Tile Based Strategy Game: \\\"Claim Game\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ep9gim2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat would be \\u003Ca href=\\\"https://www.youtube.com/watch?v=7zp1TbLFPp8\\\"\\u003EDanza Kuduro by puerto rican reggeaton artist Don Omar\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow i\\u0026#39;m not a big reggaeton fan but this guy\\u0026#39;s one of the best. \\u0026quot;Sali\\u00f3 el sol\\u0026quot; is amazing. Also \\u0026quot;Diva Virtual\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/ep9gim2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/\", \"created\": 1559138544.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu8y26\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep8kbww\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dekarde\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559096074.0, \"send_replies\": true, \"parent_id\": \"t3_bu8y26\", \"score\": 1, \"author_fullname\": \"t2_jb0ym\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"field 1\", \"link_title\": \"up-test\", \"author_flair_css_class\": null, \"name\": \"t1_ep8kbww\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efield 1\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bu8y26/uptest/ep8kbww/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"report_reasons\": null, \"link_author\": \"Dekarde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"created\": 1559124874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bt0w6n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eosnfxq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"User09060657542\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558826026.0, \"send_replies\": true, \"parent_id\": \"t3_bt0w6n\", \"score\": 1, \"author_fullname\": \"t2_f4ra2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"..\", \"link_title\": \"testing 123\", \"author_flair_css_class\": null, \"name\": \"t1_eosnfxq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bt0w6n/testing_123/eosnfxq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"report_reasons\": null, \"link_author\": \"User09060657542\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"created\": 1558854826.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsyl0k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoruj65\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"T-8-0-0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558813105.0, \"send_replies\": true, \"parent_id\": \"t3_bsyl0k\", \"score\": 1, \"author_fullname\": \"t2_2zkr00l4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003Cblockquote class=\\\"imgur-embed-pub\\\" lang=\\\"en\\\" data-id=\\\"a/MWQxuVC\\\"\\u003E\\u003Ca href=\\\"[//imgur.com/MWQxuVC](//imgur.com/MWQxuVC)\\\"\\u003EBvS\\u003C/a\\u003E\\u003C/blockquote\\u003E\\u003Cscript async src=\\\"[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\", \"link_title\": \"BvS\", \"author_flair_css_class\": null, \"name\": \"t1_eoruj65\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;blockquote class=\\u0026quot;imgur-embed-pub\\u0026quot; lang=\\u0026quot;en\\u0026quot; data-id=\\u0026quot;a/MWQxuVC\\u0026quot;\\u0026gt;\\u0026lt;a href=\\u0026quot;[//imgur.com/MWQxuVC](//imgur.com/MWQxuVC)\\u0026quot;\\u0026gt;BvS\\u0026lt;/a\\u0026gt;\\u0026lt;/blockquote\\u0026gt;\\u0026lt;script async src=\\u0026quot;[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\u0026quot; charset=\\u0026quot;utf-8\\u0026quot;\\u0026gt;\\u0026lt;/script\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bsyl0k/bvs/eoruj65/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"report_reasons\": null, \"link_author\": \"T-8-0-0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"created\": 1558841905.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsveoo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoqtetr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"YOUREABOT\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558796617.0, \"send_replies\": true, \"parent_id\": \"t3_bsveoo\", \"score\": 1, \"author_fullname\": \"t2_3b1gaoke\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"dang, i never noticed the sound of kane cocking the gun.\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eoqtetr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edang, i never noticed the sound of kane cocking the gun.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bsveoo/test/eoqtetr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bsveoo/test/\", \"report_reasons\": null, \"link_author\": \"Ihuarraquax__\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=goQiwNZzoVA\", \"created\": 1558825417.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bskwuj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoo6l31\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558730695.0, \"send_replies\": true, \"parent_id\": \"t3_bskwuj\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"who who what what\", \"link_title\": \"Pokecube II\", \"author_flair_css_class\": null, \"name\": \"t1_eoo6l31\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewho who what what\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bskwuj/pokecube_ii/eoo6l31/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"report_reasons\": null, \"link_author\": \"vandergus\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"created\": 1558759495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs053g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eonr18y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"IncendiaryGames\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558719419.0, \"send_replies\": true, \"parent_id\": \"t1_eon0nk4\", \"score\": 1, \"author_fullname\": \"t2_kz0h4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks Ed! I just realized I accidentally linked you to my post preview post and not the one on /r/hometheater. Here is that link if you want to repost your comment there: \\nhttps://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eonr18y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks Ed! I just realized I accidentally linked you to my post preview post and not the one on \\u003Ca href=\\\"/r/hometheater\\\"\\u003E/r/hometheater\\u003C/a\\u003E. Here is that link if you want to repost your comment there: \\n\\u003Ca href=\\\"https://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\\\"\\u003Ehttps://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs053g/test/eonr18y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"report_reasons\": null, \"link_author\": \"IncendiaryGames\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"created\": 1558748219.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs053g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eon0nk4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"svsound\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558700754.0, \"send_replies\": true, \"parent_id\": \"t3_bs053g\", \"score\": 1, \"author_fullname\": \"t2_i0b8n\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Considering you're not going to be moving for 5+ years, I would size the subwoofer to your current system/loudspeakers and an apartment setting where you listen at -15 to -10. \\n\\nAn SB-4000 would be a good fit for your application, providing tight, accurate, punchy bass with excellent deep extension. You'll have plenty of SPL for the current playback level of -15 to -10. \\n\\nAfter running Audyssey XT32 in the Denon, make sure all speakers are set to Small and the crossovers should be fronts 60 Hz, center 80 Hz, surrounds 80 Hz and overheads 100-120 Hz (unless Audyssey sets them higher). \\n\\nUnder Bass the subwoofer mode should be LFE and the LPF/LFE should be 120 Hz. \\n\\nXT32 will have you level match the subwoofer to 75 dB as part of the initial set-up. This will likely result in the subwoofer volume set to somewhere in the -20 to -15 range (which is fine). The Denon will probably trim-out the subwoofer channel somewhere in the low negative range (which is also fine). \\n\\nIf you want to run the subwoofer channel hotter than the Audyssey level match, then increase the sub channel in the Denon by a few dB.\\n\\nEd M - SVS\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eon0nk4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EConsidering you\\u0026#39;re not going to be moving for 5+ years, I would size the subwoofer to your current system/loudspeakers and an apartment setting where you listen at -15 to -10. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn SB-4000 would be a good fit for your application, providing tight, accurate, punchy bass with excellent deep extension. You\\u0026#39;ll have plenty of SPL for the current playback level of -15 to -10. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter running Audyssey XT32 in the Denon, make sure all speakers are set to Small and the crossovers should be fronts 60 Hz, center 80 Hz, surrounds 80 Hz and overheads 100-120 Hz (unless Audyssey sets them higher). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnder Bass the subwoofer mode should be LFE and the LPF/LFE should be 120 Hz. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EXT32 will have you level match the subwoofer to 75 dB as part of the initial set-up. This will likely result in the subwoofer volume set to somewhere in the -20 to -15 range (which is fine). The Denon will probably trim-out the subwoofer channel somewhere in the low negative range (which is also fine). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you want to run the subwoofer channel hotter than the Audyssey level match, then increase the sub channel in the Denon by a few dB.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEd M - SVS\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs053g/test/eon0nk4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"report_reasons\": null, \"link_author\": \"IncendiaryGames\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"created\": 1558729554.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs5jg4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoj2zwz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558632235.0, \"send_replies\": true, \"parent_id\": \"t3_bs5jg4\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"care bears\", \"link_title\": \"my lil pony\", \"author_flair_css_class\": null, \"name\": \"t1_eoj2zwz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ecare bears\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs5jg4/my_lil_pony/eoj2zwz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs5jg4/my_lil_pony/\", \"report_reasons\": null, \"link_author\": \"fragglestickcar0\", \"author_flair_text\": null, \"link_url\": \"http://www.youtube.com/watch?v=21ix1OwPoY8\", \"created\": 1558661035.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs4zeb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoiznnd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"emackn\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558630564.0, \"send_replies\": true, \"parent_id\": \"t3_bs4zeb\", \"score\": 1, \"author_fullname\": \"t2_9gu2i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Build details:**\\n\\n* ***Aero Precision M4E1 Upper***\\n * Aero Precision 15\\\" Enhanced M-LOK handguard, gen 2\\n * Columbia River Arms 16\\\" 1:7 barrel in FDE\\n * VG6 Gamma 556 compensator\\n * spikes tactical gas tube\\n * superlative arms gas block\\n * Vortex Strikefire II red dot\\n* ***Aero Precision M4E1 Lower (stripped, PEW edition)***\\n * BCM BCG in FDE\\n * BAD mag release\\n * BAD ambi saftey\\n * Geissele 2 stage trigger\\n * Geissele buffer tube with super 42 spring\\n * Geissele Maritime Bolt Catch\\n\\n* ***Magpul furniture***\\n * MOE-K2 Grip\\n * CTR carbine stock\\n * Pmag\\n * handstop\\n * BUIS\\n\\n\\n**Other Images:**\\n\\n * [side fire select](https://i.postimg.cc/85FMMngJ/AR15-pew-2.jpg)\\n * [view of FDE barrel](https://i.postimg.cc/zB9WjSqd/AR15-pew-3.jpg)\\n\\n\\u0026nbsp;\\n\\n\\u0026nbsp;\\n\\nNext up is 10.5 300BLK in OD Green\", \"link_title\": \"First AR Build Friday\", \"author_flair_css_class\": null, \"name\": \"t1_eoiznnd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBuild details:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAero Precision M4E1 Upper\\u003C/em\\u003E\\u003C/strong\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAero Precision 15\\u0026quot; Enhanced M-LOK handguard, gen 2\\u003C/li\\u003E\\n\\u003Cli\\u003EColumbia River Arms 16\\u0026quot; 1:7 barrel in FDE\\u003C/li\\u003E\\n\\u003Cli\\u003EVG6 Gamma 556 compensator\\u003C/li\\u003E\\n\\u003Cli\\u003Espikes tactical gas tube\\u003C/li\\u003E\\n\\u003Cli\\u003Esuperlative arms gas block\\u003C/li\\u003E\\n\\u003Cli\\u003EVortex Strikefire II red dot\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAero Precision M4E1 Lower (stripped, PEW edition)\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBCM BCG in FDE\\u003C/li\\u003E\\n\\u003Cli\\u003EBAD mag release\\u003C/li\\u003E\\n\\u003Cli\\u003EBAD ambi saftey\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele 2 stage trigger\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele buffer tube with super 42 spring\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele Maritime Bolt Catch\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EMagpul furniture\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EMOE-K2 Grip\\u003C/li\\u003E\\n\\u003Cli\\u003ECTR carbine stock\\u003C/li\\u003E\\n\\u003Cli\\u003EPmag\\u003C/li\\u003E\\n\\u003Cli\\u003Ehandstop\\u003C/li\\u003E\\n\\u003Cli\\u003EBUIS\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EOther Images:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://i.postimg.cc/85FMMngJ/AR15-pew-2.jpg\\\"\\u003Eside fire select\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://i.postimg.cc/zB9WjSqd/AR15-pew-3.jpg\\\"\\u003Eview of FDE barrel\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext up is 10.5 300BLK in OD Green\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs4zeb/first_ar_build_friday/eoiznnd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs4zeb/first_ar_build_friday/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/if35r70kjzz21.jpg\", \"created\": 1558659364.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bq9bgb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoid65v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558616951.0, \"send_replies\": true, \"parent_id\": \"t3_bq9bgb\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\\nbugaboo\", \"link_title\": \"we\", \"author_flair_css_class\": null, \"name\": \"t1_eoid65v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\nbugaboo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bq9bgb/we/eoid65v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bq9bgb/we/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bq9bgb/we/\", \"created\": 1558645751.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_brgcyy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoibl85\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558615819.0, \"send_replies\": true, \"parent_id\": \"t3_brgcyy\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"HGCE Freedom Gundam Album\", \"author_flair_css_class\": null, \"name\": \"t1_eoibl85\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/eoibl85/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/\", \"report_reasons\": null, \"link_author\": \"NeonRunner\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/EKjeyR4\", \"created\": 1558644619.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_b892bv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoibfr4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558615716.0, \"send_replies\": true, \"parent_id\": \"t1_ejwhbla\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eoibfr4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/b892bv/test/eoibfr4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/b892bv/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/OFkJjXL\", \"created\": 1558644516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bay8r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoi61fx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558611465.0, \"send_replies\": true, \"parent_id\": \"t1_ekgl4mf\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eoi61fx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bay8r2/test/eoi61fx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bay8r2/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bay8r2/test/\", \"created\": 1558640265.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqs0lm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoah4bg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NamiPickles\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558417762.0, \"send_replies\": true, \"parent_id\": \"t1_eo84uif\", \"score\": 2, \"author_fullname\": \"t2_cp3cb3l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"thanks my dude\", \"link_title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"author_flair_css_class\": null, \"name\": \"t1_eoah4bg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks my dude\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/eoah4bg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"report_reasons\": null, \"link_author\": \"NamiPickles\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/VmalKIuFimk\", \"created\": 1558446562.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqs0lm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo84uif\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Flying-Croissant\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558357381.0, \"send_replies\": true, \"parent_id\": \"t3_bqs0lm\", \"score\": 1, \"author_fullname\": \"t2_1d8oz7i8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Good shit\", \"link_title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"author_flair_css_class\": null, \"name\": \"t1_eo84uif\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood shit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/eo84uif/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"report_reasons\": null, \"link_author\": \"NamiPickles\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/VmalKIuFimk\", \"created\": 1558386181.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqofzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo67e75\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imperatorz\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558313245.0, \"send_replies\": true, \"parent_id\": \"t3_bqofzt\", \"score\": 1, \"author_fullname\": \"t2_3s7t8gxj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hi folks,\\n\\nFirst of all, thanks for all the quality posts here, i created an account just for this community !\\nI'm a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\n\\nD1 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD2 : Squat (55)- OHP (35)\\nD3 : Rest\\nD4 : Squat (55)- OHP (35)\\nD5 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD6 : Squat (55)- OHP (35) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\nD7 : Rest\\n\\nI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP\\n\\nFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7\\n\\nMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\n\\nThanks for all you're doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_eo67e75\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\nI\\u0026#39;m a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD2 : Squat (55)- OHP (35)\\nD3 : Rest\\nD4 : Squat (55)- OHP (35)\\nD5 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD6 : Squat (55)- OHP (35) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\nD7 : Rest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/eo67e75/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"report_reasons\": null, \"link_author\": \"imperatorz\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"created\": 1558342045.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqofzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo67cm7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imperatorz\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558313217.0, \"send_replies\": true, \"parent_id\": \"t3_bqofzt\", \"score\": 1, \"author_fullname\": \"t2_3s7t8gxj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hi folks,\\n\\nFirst of all, thanks for all the quality posts here, i created an account just for this community ! \\nI'm a 20 yo male who recently got back into lifting. \\nSince the end of march I have been training consistently 4-5 times a week with the following program : \\n\\nD1 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5) \\nD2 : Squat (5*5)- OHP (3*5) \\nD3 : Rest \\nD4 : Squat (5*5)- OHP (3*5) \\nD5 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5) \\nD6 : Squat (5*5)- OHP (3*5) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\nD7 : Rest \\n \\nI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP \\n \\nFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7 \\n\\nMy questions are, in a perspective of continuing fat loss : \\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ? \\n\\u2022 Should I start cardio/HIIT to eliminate more fat ? \\n\\u2022 Have you got any recommendation altogether ? All advices appreciated. \\n \\nThanks for all you're doing in here and sorry for broken english, \\nAn over-Atlantic enthusiast\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_eo67cm7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\u003Cbr/\\u003E\\nI\\u0026#39;m a 20 yo male who recently got back into lifting.\\u003Cbr/\\u003E\\nSince the end of march I have been training consistently 4-5 times a week with the following program : \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD2 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD3 : Rest\\u003Cbr/\\u003E\\nD4 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD5 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD6 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\u003Cbr/\\u003E\\nD7 : Rest \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\u003Cbr/\\u003E\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\u003Cbr/\\u003E\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\u003Cbr/\\u003E\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\u003Cbr/\\u003E\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/eo67cm7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"report_reasons\": null, \"link_author\": \"imperatorz\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"created\": 1558342017.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ens8t9m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558025712.0, \"send_replies\": true, \"parent_id\": \"t1_ens8roy\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Omg it works!!\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_ens8t9m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOmg it works!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/ens8t9m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1558054512.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ens8roy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558025695.0, \"send_replies\": true, \"parent_id\": \"t3_bpezwp\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E testing testing one two three\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_ens8roy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etesting testing one two three\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/ens8roy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1558054495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpdae9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enrm2j5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558017205.0, \"send_replies\": true, \"parent_id\": \"t3_bpdae9\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"As good as it gets - MASSIVE 60ft Nazare\", \"author_flair_css_class\": null, \"name\": \"t1_enrm2j5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpdae9/as_good_as_it_gets_massive_60ft_nazare/enrm2j5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpdae9/as_good_as_it_gets_massive_60ft_nazare/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1558046005.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh7bm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931730.0, \"send_replies\": true, \"parent_id\": \"t3_boytzt\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"https://youtu.be/yTob1CPeL6I\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh7bm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh7bm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960530.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh4ms\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931703.0, \"send_replies\": true, \"parent_id\": \"t1_enmh2vx\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh4ms\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh4ms/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960503.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh2vx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931685.0, \"send_replies\": true, \"parent_id\": \"t3_boytzt\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh2vx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh2vx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960485.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bowuds\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enlndge\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GameInfusionTC\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557920346.0, \"send_replies\": true, \"parent_id\": \"t3_bowuds\", \"score\": 1, \"author_fullname\": \"t2_18i8688m\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"y^ikes\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_enlndge\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ey\\u003Csup\\u003Eikes\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bowuds/test/enlndge/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"created\": 1557949146.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bowuds\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enlnbx5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GameInfusionTC\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557920327.0, \"send_replies\": true, \"parent_id\": \"t3_bowuds\", \"score\": 1, \"author_fullname\": \"t2_18i8688m\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u2013\\u2013strikethrough\\u2013\\u2013\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_enlnbx5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u2013\\u2013strikethrough\\u2013\\u2013\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bowuds/test/enlnbx5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"created\": 1557949127.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bogbq5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enfx5gc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheB333\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557824074.0, \"send_replies\": true, \"parent_id\": \"t3_bogbq5\", \"score\": 1, \"author_fullname\": \"t2_10snnt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Last week there was a post considering a weekly theory crafting thread. I kind of liked the idea. People discussed when and how that post and the formatting should be made.\\n\\n\\u0026#x200B;\\n\\nI may not be up to date with this idea, since i couldnt follow the reddit in the last week due to my working shedule. But i want to give it a shot.\\n\\n\\u0026#x200B;\\n\\nAs the Esther hype fades, i want to dedicate this post to our beloved queen of damage dealers. \\n\\n\\\\##Let us gather and share all possible and crazy ideas, that come to your mind.\\n\\n\\u0026#x200B;\\n\\nEsther is such an easy charackter, yet i bet that there are strategies that i cannot even imagine in my boldest dreams. There are a few reasons for this: She has innitiate evade, can work as AoE tank, absorbs lightning damage, has chaining counters, just to list a few important features.\\n\\n\\u0026#x200B;\\n\\nHow do i Imagine the struckture of this thread:\\n\\nHere\\\\`s an example on how you could make the formatting of your comment:\\n\\n\\u0026#x200B;\\n\\n\\\\# \\\\*\\\\*Title/Trial/Strategy\\\\*\\\\* #\\n\\nDescription\\n\\n\\u0026#x200B;\\n\\n\\\\* \\\\*\\\\*Difficulty/Equipment needed:\\\\*\\\\*/Beginner-Casual-Whale\\n\\n\\\\* \\\\*\\\\*Team Comp:\\\\*\\\\* (with eqipment, best would be FFBE equip link)\\n\\n\\\\* \\\\*\\\\*Turn rotation:\\\\*\\\\*\\n\\n\\\\* \\\\*\\\\*Useful tips:\\\\*\\\\*\\n\\n\\\\* \\\\*\\\\*Friend Code:\\\\*\\\\* (for Carry)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n\\\\##I would really love to heaer some strategies with her. Can she solo Ramuh? What ist the potential of 6 evade Esthers (with phoenix) ? In wich trails does she shine? What are the best unit synergies? \\n\\n\\u0026#x200B;\\n\\nI will try to give it a start:\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n\\\\# \\\\*\\\\*0TK Alexander 3\\\\* entrust LB kill\\\\*\\\\* #\\n\\nBasically you use two low level \\\\[units with entrust\\\\]([https://exvius.gamepedia.com/Entrust](https://exvius.gamepedia.com/Entrust)) that you fill their LB with either Aileen or Nyx in first turn. Then you imbue both your Esthers with water so you get the benefit of the 300% imperil. Use two chaining LB first turn -\\u003E finish. It's not all achievements but it saved me a lot of nerves. \\n\\n\\u0026#x200B;\\n\\n\\\\* \\\\*\\\\*Difficulty/Equipment needed:\\\\*\\\\*Casual-Dolphin\\n\\n\\\\* \\\\*\\\\*Requirements:\\\\*\\\\* \\\\[Build\\\\]([http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4](http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4)), Basically you need 2x low level entrusters, Aileen or Nxy, CG Nichol or SS Nichol, 2x Esthers with as much Machine Killer you can find.\\n\\n\\\\* \\\\*\\\\*Turn rotation:\\\\*\\\\* Turn 1: Aileen/Nyx is using LB fill, 2x entrust to both Esthers, dualcast water imbue on Esthers and then kill Alexander 3\\\\* with 2x limit chain Esther\\n\\n\\\\* \\\\*\\\\*Useful tips:\\\\*\\\\* Make sure to give Esther all the machine killer that you have and LB damage boosting eqipment. NOTE: If you use Aileen, make sure that the LB of the entrust units get filled! You can just let them be on lv 1 to make sure of this.\\n\\n\\\\* \\\\*\\\\*Friend Code:\\\\*\\\\* not carrying right now since im at work, sorry guys!\\n\\n\\u0026#x200B;\\n\\nI know that this strategy may not only be possible with Esther but Zeno or many more too! Feel free to comment and incite some nice discussions/comparisons/replacements.\\n\\n\\u0026#x200B;\\n\\nPS. Sorry if theres any problems with formatting.\", \"link_title\": \"y\", \"author_flair_css_class\": null, \"name\": \"t1_enfx5gc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELast week there was a post considering a weekly theory crafting thread. I kind of liked the idea. People discussed when and how that post and the formatting should be made.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI may not be up to date with this idea, since i couldnt follow the reddit in the last week due to my working shedule. But i want to give it a shot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the Esther hype fades, i want to dedicate this post to our beloved queen of damage dealers. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##Let us gather and share all possible and crazy ideas, that come to your mind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEsther is such an easy charackter, yet i bet that there are strategies that i cannot even imagine in my boldest dreams. There are a few reasons for this: She has innitiate evade, can work as AoE tank, absorbs lightning damage, has chaining counters, just to list a few important features.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do i Imagine the struckture of this thread:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere`s an example on how you could make the formatting of your comment:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# **Title/Trial/Strategy** #\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Difficulty/Equipment needed:**/Beginner-Casual-Whale\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Team Comp:** (with eqipment, best would be FFBE equip link)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Turn rotation:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Useful tips:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Friend Code:** (for Carry)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##I would really love to heaer some strategies with her. Can she solo Ramuh? What ist the potential of 6 evade Esthers (with phoenix) ? In wich trails does she shine? What are the best unit synergies? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI will try to give it a start:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# **0TK Alexander 3* entrust LB kill** #\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically you use two low level [units with entrust](\\u003Ca href=\\\"https://exvius.gamepedia.com/Entrust\\\"\\u003Ehttps://exvius.gamepedia.com/Entrust\\u003C/a\\u003E) that you fill their LB with either Aileen or Nyx in first turn. Then you imbue both your Esthers with water so you get the benefit of the 300% imperil. Use two chaining LB first turn -\\u0026gt; finish. It\\u0026#39;s not all achievements but it saved me a lot of nerves. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Difficulty/Equipment needed:**Casual-Dolphin\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Requirements:** [Build](\\u003Ca href=\\\"http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4\\\"\\u003Ehttp://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4\\u003C/a\\u003E), Basically you need 2x low level entrusters, Aileen or Nxy, CG Nichol or SS Nichol, 2x Esthers with as much Machine Killer you can find.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Turn rotation:** Turn 1: Aileen/Nyx is using LB fill, 2x entrust to both Esthers, dualcast water imbue on Esthers and then kill Alexander 3* with 2x limit chain Esther\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Useful tips:** Make sure to give Esther all the machine killer that you have and LB damage boosting eqipment. NOTE: If you use Aileen, make sure that the LB of the entrust units get filled! You can just let them be on lv 1 to make sure of this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Friend Code:** not carrying right now since im at work, sorry guys!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know that this strategy may not only be possible with Esther but Zeno or many more too! Feel free to comment and incite some nice discussions/comparisons/replacements.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS. Sorry if theres any problems with formatting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bogbq5/y/enfx5gc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bogbq5/y/\", \"report_reasons\": null, \"link_author\": \"TheB333\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bogbq5/y/\", \"created\": 1557852874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo84dx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"endic87\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DrHandyman\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557783117.0, \"send_replies\": true, \"parent_id\": \"t3_bo84dx\", \"score\": 0, \"author_fullname\": \"t2_2wbf73p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"`|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|`\\n\\n`:-:|:-:|:-:|:-:|:-:|:-:|`\\n\\n`|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|`\\n\\n`|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|`\\n\\n`|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|`\\n\\n`|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|`\\n\\n`|Blanton's|$14.00|$99.99|$224.00|$124.01|124.02%|`\\n\\n`|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|`\\n\\n`|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|`\\n\\n`|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|`\\n\\n`|Basil Hayden's|$10.00|$39.99|$160.00|$120.01|300.10%|`\\n\\n`|Noah's Mill|$15.00|$49.99|$240.00|$190.01|380.10%|`\\n\\n`|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|`\\n\\n`|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|`\\n\\n`|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|`\\n\\n`|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|`\", \"link_title\": \"Table Test\", \"author_flair_css_class\": null, \"name\": \"t1_endic87\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003E|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:-:|:-:|:-:|:-:|:-:|:-:|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Blanton\\u0026#39;s|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Basil Hayden\\u0026#39;s|$10.00|$39.99|$160.00|$120.01|300.10%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Noah\\u0026#39;s Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo84dx/table_test/endic87/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"report_reasons\": null, \"link_author\": \"Rammzie\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"created\": 1557811917.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo84dx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"endib3d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DrHandyman\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557783105.0, \"send_replies\": true, \"parent_id\": \"t3_bo84dx\", \"score\": 0, \"author_fullname\": \"t2_2wbf73p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"|\\\\*\\\\*Name\\\\*\\\\*|\\\\*\\\\*ACME Price Per 1.5oz\\\\*\\\\*|\\\\*\\\\*Bottle Street Price\\\\*\\\\*|\\\\*\\\\*Revenue Per Bottle (16 pours) \\\\*\\\\*|\\\\*\\\\*Profit Per Bottle\\\\*\\\\*|\\\\*\\\\*Profit Percentage\\\\*\\\\*|\\n\\n:-:|:-:|:-:|:-:|:-:|:-:|\\n\\n|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\n\\n|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\n\\n|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\n\\n|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\n\\n|Blanton's|$14.00|$99.99|$224.00|$124.01|124.02%|\\n\\n|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\n\\n|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\n\\n|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\n\\n|Basil Hayden's|$10.00|$39.99|$160.00|$120.01|300.10%|\\n\\n|Noah's Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\n\\n|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\n\\n|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\n\\n|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\n\\n|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\", \"link_title\": \"Table Test\", \"author_flair_css_class\": null, \"name\": \"t1_endib3d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:-:|:-:|:-:|:-:|:-:|:-:|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Blanton\\u0026#39;s|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Basil Hayden\\u0026#39;s|$10.00|$39.99|$160.00|$120.01|300.10%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Noah\\u0026#39;s Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo84dx/table_test/endib3d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"report_reasons\": null, \"link_author\": \"Rammzie\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"created\": 1557811905.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbsgh6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557754397.0, \"send_replies\": true, \"parent_id\": \"t3_bo3eog\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbsgh6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbsgh6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557783197.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbsf7d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557754377.0, \"send_replies\": true, \"parent_id\": \"t1_enbrfwi\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbsf7d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbsf7d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557783177.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbrfwi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557753791.0, \"send_replies\": true, \"parent_id\": \"t1_enbrecx\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbrfwi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbrfwi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557782591.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbrecx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557753764.0, \"send_replies\": true, \"parent_id\": \"t3_bo3eog\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbrecx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbrecx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557782564.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnh87u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5kn7c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DefNotPolonius\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557609950.0, \"send_replies\": true, \"parent_id\": \"t3_bnh87u\", \"score\": 1, \"author_fullname\": \"t2_3r6vjfb1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Looks legit to me!\", \"link_title\": \"A recent study suggests rates of step-siblings getting married is increasing exponentially\", \"author_flair_css_class\": null, \"name\": \"t1_en5kn7c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks legit to me!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnh87u/a_recent_study_suggests_rates_of_stepsiblings/en5kn7c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnh87u/a_recent_study_suggests_rates_of_stepsiblings/\", \"report_reasons\": null, \"link_author\": \"PraisetheKing1\", \"author_flair_text\": null, \"link_url\": \"https://www.theatlantic.com/entertainment/archive/2019/05/state-of-the-union-sundance-tv-review/589117/\", \"created\": 1557638750.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnh3at\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5j7r9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DefNotPolonius\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557609148.0, \"send_replies\": true, \"parent_id\": \"t3_bnh3at\", \"score\": 1, \"author_fullname\": \"t2_3r6vjfb1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Murderous indeed\", \"link_title\": \"Classic Murderous Hamlet\", \"author_flair_css_class\": null, \"name\": \"t1_en5j7r9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMurderous indeed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnh3at/classic_murderous_hamlet/en5j7r9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnh3at/classic_murderous_hamlet/\", \"report_reasons\": null, \"link_author\": \"PraisetheKing1\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/wqo9b9e3enx21.jpg\", \"created\": 1557637948.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bngumb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5h7hv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bummy_mans\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557608063.0, \"send_replies\": true, \"parent_id\": \"t3_bngumb\", \"score\": 1, \"author_fullname\": \"t2_15oya7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Murderous Indeed\", \"link_title\": \"Classic Murderous Hamlet\", \"author_flair_css_class\": null, \"name\": \"t1_en5h7hv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMurderous Indeed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bngumb/classic_murderous_hamlet/en5h7hv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bngumb/classic_murderous_hamlet/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/v4u3ua21anx21.jpg\", \"created\": 1557636863.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bndgzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4lk6i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fear_from_ignorance\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557590014.0, \"send_replies\": true, \"parent_id\": \"t3_bndgzp\", \"score\": 1, \"author_fullname\": \"t2_116zo5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#Countries that Shooting people in last 12 months\\n\\n|Country | Total Shooting \\n|:-----------|------------:|\\n| France| 14+(without yellow vest|\\n| Germany| 14+|\\n| U.K|3+| \\n\\nGreat good holy countries, only E.U \\n##We can not put a nobleman to death! :)\", \"link_title\": \"t\", \"author_flair_css_class\": null, \"name\": \"t1_en4lk6i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECountries that Shooting people in last 12 months\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ECountry\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ETotal Shooting\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFrance\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14+(without yellow vest\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGermany\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14+\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU.K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3+\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EGreat good holy countries, only E.U \\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EWe can not put a nobleman to death! :)\\u003C/h2\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bndgzp/t/en4lk6i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"report_reasons\": null, \"link_author\": \"fear_from_ignorance\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"created\": 1557618814.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bndgzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4lilt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fear_from_ignorance\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557589986.0, \"send_replies\": true, \"parent_id\": \"t3_bndgzp\", \"score\": 1, \"author_fullname\": \"t2_116zo5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\#Countries that Shooting people in last 12 months\\n\\n\\u0026#x200B;\\n\\n|Country | Total Shooting \\n\\n|:-----------|------------:|\\n\\n| France| 14+(without yellow vest|\\n\\n| Germany| 14+|\\n\\n| U.K|3+| \\n\\n\\u0026#x200B;\\n\\nGreat good holy countries, only E.U \\n\\n\\\\##We can not put a nobleman to death! :)\", \"link_title\": \"t\", \"author_flair_css_class\": null, \"name\": \"t1_en4lilt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#Countries that Shooting people in last 12 months\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Country | Total Shooting \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|:-----------|------------:|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| France| 14+(without yellow vest|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| Germany| 14+|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| U.K|3+| \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreat good holy countries, only E.U \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##We can not put a nobleman to death! :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bndgzp/t/en4lilt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"report_reasons\": null, \"link_author\": \"fear_from_ignorance\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"created\": 1557618786.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnddi4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4km0v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bacalado\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557589379.0, \"send_replies\": true, \"parent_id\": \"t3_bnddi4\", \"score\": 1, \"author_fullname\": \"t2_zs6we\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Test pot\", \"link_title\": \"Test post\", \"author_flair_css_class\": null, \"name\": \"t1_en4km0v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest pot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnddi4/test_post/en4km0v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnddi4/test_post/\", \"report_reasons\": null, \"link_author\": \"KindlyPangolin\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bnddi4/test_post/\", \"created\": 1557618179.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgvc57\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2j37y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533822.0, \"send_replies\": true, \"parent_id\": \"t3_bgvc57\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"What does this do\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_en2j37y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat does this do\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgvc57/test/en2j37y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgvc57/test/\", \"report_reasons\": null, \"link_author\": \"harison86\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgvc57/test/\", \"created\": 1557562622.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgz2ru\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2j1b8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533788.0, \"send_replies\": true, \"parent_id\": \"t3_bgz2ru\", \"score\": 0, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"We want shaggy\", \"link_title\": \"Settra the Imperishable, the Majestic Emperor of the Shifting Sands, Great Hawk Of The Heavens, King of Kings, Monarch of the Sky, High King of Nehekhara and many, many more, invades Outworld during the events of Mortal Kombat X. Can he claim it?\", \"author_flair_css_class\": null, \"name\": \"t1_en2j1b8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe want shaggy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/en2j1b8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/\", \"report_reasons\": null, \"link_author\": \"TitanBrass\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/\", \"created\": 1557562588.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bjy4q1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2iyjr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533739.0, \"send_replies\": true, \"parent_id\": \"t3_bjy4q1\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Neat\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_en2iyjr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENeat\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bjy4q1/test/en2iyjr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bjy4q1/test/\", \"report_reasons\": null, \"link_author\": \"Toemism\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/vSa7WcG\", \"created\": 1557562539.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk5dk7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2ix0e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533713.0, \"send_replies\": true, \"parent_id\": \"t3_bk5dk7\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Reddit doesn't work like that\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_en2ix0e\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EReddit doesn\\u0026#39;t work like that\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk5dk7/test/en2ix0e/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk5dk7/test/\", \"report_reasons\": null, \"link_author\": \"lucasade7\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk5dk7/test/\", \"created\": 1557562513.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2iq27\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557533589.0, \"send_replies\": true, \"parent_id\": \"t3_blxuys\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Just uses you're magic to convince him\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_en2iq27\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust uses you\\u0026#39;re magic to convince him\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/en2iq27/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557562389.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1557490423.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bmfbja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en0e11l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rew01f\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557490240.0, \"send_replies\": true, \"parent_id\": \"t3_bmfbja\", \"score\": 1, \"author_fullname\": \"t2_3mmzhxol\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\ud83d\\udf8eTest\\n\\n\\ud83d\\udf8e Test\\n\\n\\ud83d\\udf8e Testing as ordered\", \"link_title\": \"testy\", \"author_flair_css_class\": null, \"name\": \"t1_en0e11l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\ud83d\\udf8eTest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\ud83d\\udf8e Test\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\ud83d\\udf8e Testing as ordered\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bmfbja/testy/en0e11l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bmfbja/testy/\", \"report_reasons\": null, \"link_author\": \"Sleepchao\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bmfbja/testy/\", \"created\": 1557519040.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bme57y\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emvxrme\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TotesMessenger\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557368561.0, \"send_replies\": true, \"parent_id\": \"t3_bme57y\", \"score\": 1, \"author_fullname\": \"t2_kq14w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I'm a bot, *bleep*, *bloop*. Someone has linked to this thread from another place on reddit:\\n\\n- [/r/porsche] [First time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!](https://www.reddit.com/r/Porsche/comments/bme8ym/first_time_porsche_owner_takes_immediate_cayman/)\\n\\n\\u0026nbsp;*^(If you follow any of the above links, please respect the rules of reddit and don't vote in the other threads.) ^\\\\([Info](/r/TotesMessenger) ^/ ^[Contact](/message/compose?to=/r/TotesMessenger))*\", \"link_title\": \"First time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!\", \"author_flair_css_class\": null, \"name\": \"t1_emvxrme\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a bot, \\u003Cem\\u003Ebleep\\u003C/em\\u003E, \\u003Cem\\u003Ebloop\\u003C/em\\u003E. Someone has linked to this thread from another place on reddit:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E[\\u003Ca href=\\\"/r/porsche\\\"\\u003E/r/porsche\\u003C/a\\u003E] \\u003Ca href=\\\"https://www.reddit.com/r/Porsche/comments/bme8ym/first_time_porsche_owner_takes_immediate_cayman/\\\"\\u003EFirst time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003Cem\\u003E\\u003Csup\\u003EIf you follow any of the above links, please respect the rules of reddit and don\\u0026#39;t vote in the other threads.\\u003C/sup\\u003E \\u003Csup\\u003E(\\u003Ca href=\\\"/r/TotesMessenger\\\"\\u003EInfo\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E/\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"/message/compose?to=/r/TotesMessenger\\\"\\u003EContact\\u003C/a\\u003E)\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/emvxrme/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/\", \"report_reasons\": null, \"link_author\": \"Null-P\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/\", \"created\": 1557397361.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ems8494\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DoingSchoolProject2\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557271693.0, \"send_replies\": true, \"parent_id\": \"t1_ems7zov\", \"score\": 2, \"author_fullname\": \"t2_3q15i8tn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Growing well\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_ems8494\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGrowing well\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/ems8494/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557300493.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ems7zov\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DoingSchoolProject\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557271609.0, \"send_replies\": true, \"parent_id\": \"t3_blxuys\", \"score\": 2, \"author_fullname\": \"t2_3otlbacn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hey Elizabeth, hows the baby doing\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_ems7zov\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey Elizabeth, hows the baby doing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/ems7zov/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557300409.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkze3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257480.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Future Features People Want (Compiled from Blizzard forums)\\n#### *Disclaimer* These very wildly in implementation time. They also aren't too specific. That's for another thread.\\n\\n#### Ease of Coding\\n- [Text-based Editor/IDE/Ability to Import File](#s \\\"Anything for more coding speed\\\")\\n- Conditionals\\n- Functions\\n- Hotkey Saves/Auto Saves\\n- Hotkey Undo\\n- Events/Statuses for every [possible thing](#s \\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\")\\n- [Classes/Object Types/Enums](#s \\\"Bad class objects hurt\\\")\\n- [Multiple-Script Compilation](#s \\\"I make a piece, you make a piece, we compile the codes together\\\")\\n- Disable/Enable Rule options\\n- Custom Strings/Variable Names\\n\\t\\n####Importation of art assets\\n- Custom Skins\\n- Custom Emotes\\n- Custom Hero Models\\n- Custom Animations\\n\\t\\n#### Bigger Creations\\n- Rule Limit Increase\\n- Effect Increase\\n- More Presets Saves\\n- More Variables\\n\\n#### Recognition of Good Modes\\n- Best-of-Workshop Arcade Mode\\n- Popularity contests between [similar game-modes](#s \\\"See which gun game people like best\\\")\\n\\t\\n#### Map Editor\\n- Ability to create gameplay zones\\n- Change Lighting\\n- Custom Maps\\n\\t\\n#### Hero Editor\\n- Being able to give [one hero's ability to another hero](#s \\\"Tracer with Piledriver\\\")\\n- More Control over [Effects](#s \\\"On-destruct, custom IDs, etc\\\")\\n- Control over [hero-specific variables](#s \\\"Number of Symmetra Turrets, headshot dmg, passives\\\")\\n- Being able to use Arcade Enemies/All Models\\n- Custom Cooldowns/Modify Cooldowns\\n- Control over animations\\n- Control over fire/POTG worthy actions\\n\\t\\t\\n#### Object Editor\\n- Deployables\\n- Weapon Qualities\\n- Collisions\\n- Objectives/Payloads\\n- Access to Old Assets/Abilities\\n- Custom Effect Durations\\n- Custom Conditions\\n- Custom Physics Engine\\n\\t\\n#### AI Editor\\n- PVE Mode Access\\n- Ease of Making Bots\\n- Bots in any Mode\\n\\t\\t\\n#### Gameplay Editor\\n- Change Spawn Points\\n- Switch Teams\\n- Change Team Size\\n\\t\\n####Hosting Games\\n- Being able to host Workshop Games locally\\n\\t\\n#### Workshop-Specific Assets\\n- Extra Animations\\n- More effects\\n- [Non-Graphics intensive testing map](#s \\\"Just a White Room\\\")\\n- [Arena map](#s \\\"Just a square\\\")\\n\\n#### More Recognition of Dan and Keith\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkze3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFuture Features People Want (Compiled from Blizzard forums)\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003E\\u003Cem\\u003EDisclaimer\\u003C/em\\u003E These very wildly in implementation time. They also aren\\u0026#39;t too specific. That\\u0026#39;s for another thread.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EEase of Coding\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Anything for more coding speed\\\"\\u003EText-based Editor/IDE/Ability to Import File\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EConditionals\\u003C/li\\u003E\\n\\u003Cli\\u003EFunctions\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Saves/Auto Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Undo\\u003C/li\\u003E\\n\\u003Cli\\u003EEvents/Statuses for every \\u003Ca href=\\\"#s\\\" title=\\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\"\\u003Epossible thing\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Bad class objects hurt\\\"\\u003EClasses/Object Types/Enums\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"I make a piece, you make a piece, we compile the codes together\\\"\\u003EMultiple-Script Compilation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDisable/Enable Rule options\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Strings/Variable Names\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EImportation of art assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECustom Skins\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Emotes\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Hero Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Animations\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EBigger Creations\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERule Limit Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EEffect Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Presets Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Variables\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ERecognition of Good Modes\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBest-of-Workshop Arcade Mode\\u003C/li\\u003E\\n\\u003Cli\\u003EPopularity contests between \\u003Ca href=\\\"#s\\\" title=\\\"See which gun game people like best\\\"\\u003Esimilar game-modes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMap Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAbility to create gameplay zones\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Lighting\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Maps\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHero Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to give \\u003Ca href=\\\"#s\\\" title=\\\"Tracer with Piledriver\\\"\\u003Eone hero\\u0026#39;s ability to another hero\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Control over \\u003Ca href=\\\"#s\\\" title=\\\"On-destruct, custom IDs, etc\\\"\\u003EEffects\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over \\u003Ca href=\\\"#s\\\" title=\\\"Number of Symmetra Turrets, headshot dmg, passives\\\"\\u003Ehero-specific variables\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBeing able to use Arcade Enemies/All Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Cooldowns/Modify Cooldowns\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over animations\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over fire/POTG worthy actions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EObject Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDeployables\\u003C/li\\u003E\\n\\u003Cli\\u003EWeapon Qualities\\u003C/li\\u003E\\n\\u003Cli\\u003ECollisions\\u003C/li\\u003E\\n\\u003Cli\\u003EObjectives/Payloads\\u003C/li\\u003E\\n\\u003Cli\\u003EAccess to Old Assets/Abilities\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Effect Durations\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Conditions\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Physics Engine\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EAI Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPVE Mode Access\\u003C/li\\u003E\\n\\u003Cli\\u003EEase of Making Bots\\u003C/li\\u003E\\n\\u003Cli\\u003EBots in any Mode\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EGameplay Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EChange Spawn Points\\u003C/li\\u003E\\n\\u003Cli\\u003ESwitch Teams\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Team Size\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHosting Games\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to host Workshop Games locally\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWorkshop-Specific Assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EExtra Animations\\u003C/li\\u003E\\n\\u003Cli\\u003EMore effects\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a White Room\\\"\\u003ENon-Graphics intensive testing map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a square\\\"\\u003EArena map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMore Recognition of Dan and Keith\\u003C/h4\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkze3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286280.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkqzg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257336.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#One-Stop Workshop\\n## Workshop FAQ\\n### What is Overwatch Workshop?\\n- In layman's terms, its just [additional](#s \\\"Many, many additional\\\") features for designing custom games, using more drop-down menus.\\n\\n### What is the One-Stop Workshop?\\n- \\tThis is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\n-\\tI call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\n\\n### What is an FAQ?\\n-\\tFrantically Answering Questions!\\n\\n### How to access the Workshop?\\n-\\tMake sure you have the PTR installed.\\n- \\tPlay \\u003E Game Browser \\u003E Create \\u003E Settings \\u003E Workshop\\n\\n### What resources does Workshop give us?\\n-\\tCreation of Effects\\n-\\tConditional Changes to Rules\\n-\\tAdding HUD elements\\n-\\tAnd More\\n\\n### Can you test heroes with workshop?\\n- \\tYesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\n- \\tHowever, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\n-\\tBut, don't fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\n\\n### Is it a map editor?\\n- \\tNo. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\n\\n### Do I need to know how to code to use it? Can normal people use it?\\n- \\tNo and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\n\\n### What presets does it have for me to build off of?\\n- \\tMolten Floor - You set on fire while touching the floor.\\n- \\tOne Ultimate - Elimination mode where you start with your Ultimate, but can't get Ultimate charge.\\n- \\tHide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\n- \\tDouble Jump - Everyone can double jump.\\n- \\tFire Dome - A dome slowly shrinks, limiting the play space. (*Cough* Battle Royale *Cough*)\\n- \\tBalanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\n- \\tMirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\n- \\tZombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\n- \\tHero Gauntlet - Gun Game\\n\\n### Is it on Console?\\n-\\tNot yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\n\\n### Who built this?\\n-\\tKeith and Dan, our two buddy devs, in their free time. They have now been labeled [Hero 31 and Hero 32](#s \\\"Dan is 31, fight me\\\") by the reddit community.\\n\\n### Is this going to get updates?\\n- It has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\n\\n### Is there a limit to sizes of script/number of objects.\\n- Yes. 64 icons/effects, and some limit to the size of the script. \\n- However, the devs are working to increase these numbers.\\n\\n### Is this Overwatch getting a bunch of people to be their unpaid interns?\\n- Sadly, it doesn't seem to be. Plenty of people would love to design stuff for Blizzard for free. Instead, you can just make fun modes for people to enjoy. \\n\\n### Do I have control over my modes? Can I link/post other peoples content?\\n#### The Bad\\n- You do not have ownership over your creations\\n- Your code could be overriden at any time\\n- Other people can use your mode by just clicking on it and copying your 5-character code\\n- Currently, there are numerous bugs that can delete your work, if you have a slow connection, too much code, or are just plain unlucky\\n\\n#### The Good\\n- You can check out any code you find interesting and get ideas\\n- You don't have to worry about someone else running their server. With the 5-character code, you can start one yourself\\n- Your code will carry over to the Live version and the Console version, as the actual data is stored in the cloud\\n- The Devs are fixing all work-deleting bugs\\n- The Devs will (almost certainly) add enough characters to the codes to prevent your code from being overriden\\n- You can store the info for your mode on this page if you want people to know that a mode was originally created by you\\n\\n#### The Neutral\\n- Being polite and asking for permission is the correct thing to do if you want to repost their work, modify their work, or look at their rules\\n\\n#### The Time Saving\\n- I propose that if you create a mode that you want anyone to be able to modify or use, while crediting you, you write \\\"Free Use\\\" on it somewhere, so that those who want to use it won't [constantly bug you](#s \\\"Sorry all people I bugged about adding your stuff to this post\\\")\\n- I propose that if you create a mode and don't care about being credited, you write \\\"Free Game\\\", and people can use your mode without crediting you, but shouldn't act like they invented it whole-sale\\n- I propose that the community shares any useful tricks, codes, or ideas somewhere. This post works as well as any other place.\\n\\n### Why does the Workshop Community need to be organized?\\n- For [Casual Players](#s \\\"Filthy Casuals\\\"): An organized community will make it easier to find good, fun, game modes.\\n\\n- For [Ranked Players](#s \\\"Sports Nuts\\\"): With a few changes, I personally think that Workshop can allow for [more frequent patch testing.](#s \\\"More Powerful Workshop = Give out Patch Codes instead of Downloads\\\") An organized community could help the workshop get to that state sooner.\\n\\n- For [Creators](#s \\\"Over-Dedicated Fans\\\"): An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\n\\n- For [Devs](#s \\\"All-Mighty Deities\\\"): An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\n\\n##Useful Links\\n### Mode Lists\\nhttps://dutchdemons.com - u/Marinosbitter\\n\\nhttps://overwatchcustom.games - u/Thriver\\n\\nhttps://overwatchmodding.com/ - u/xSailboats\\n\\nhttps://workshop.elohell.gg/ - EloHell Discord\\n\\nhttps://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA - u/alloriginalnamesused\\n\\n[Lier1's Code List]()\\n\\n### Discord Channels\\n[OW Scripting](https://discord.gg/9pc4yyE)\\n\\n[Overwatch Workshop](https://discord.gg/qa9vR94)\\n\\n[Elo Hell Workshops](https://discord.gg/U5ARg2Fs)\\n\\n### Youtube Channels\\n#### Mode Creation Help:\\n[SamstaTV](https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g)\\n\\n[RunicOW](https://www.youtube.com/channel/UCB1j7mXXRgCRBBri6E5Ch2A)\\n\\n#### Creation Showcases:\\n[Master Ian Gamer](https://www.youtube.com/channel/UCh7qwd3VnN1AGqlqec8K8Zw)\\n\\n### Miscellaneous Sites/Posts\\n[List of Flat Areas with few Obstacles](https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/) - u/Zezombye\\n\\n[Workshop Syntax \\u0026 Script Database](https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92) - WyomingMyst\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkqzg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EOne-Stop Workshop\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EWorkshop FAQ\\u003C/h2\\u003E\\n\\n\\u003Ch3\\u003EWhat is Overwatch Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E In layman\\u0026#39;s terms, its just \\u003Ca href=\\\"#s\\\" title=\\\"Many, many additional\\\"\\u003Eadditional\\u003C/a\\u003E features for designing custom games, using more drop-down menus.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat is the One-Stop Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E This is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\u003C/li\\u003E\\n\\u003Cli\\u003E I call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat is an FAQ?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Frantically Answering Questions!\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EHow to access the Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Make sure you have the PTR installed.\\u003C/li\\u003E\\n\\u003Cli\\u003E Play \\u0026gt; Game Browser \\u0026gt; Create \\u0026gt; Settings \\u0026gt; Workshop\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat resources does Workshop give us?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Creation of Effects\\u003C/li\\u003E\\n\\u003Cli\\u003E Conditional Changes to Rules\\u003C/li\\u003E\\n\\u003Cli\\u003E Adding HUD elements\\u003C/li\\u003E\\n\\u003Cli\\u003E And More\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003ECan you test heroes with workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Yesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\u003C/li\\u003E\\n\\u003Cli\\u003E However, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\u003C/li\\u003E\\n\\u003Cli\\u003E But, don\\u0026#39;t fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs it a map editor?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EDo I need to know how to code to use it? Can normal people use it?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat presets does it have for me to build off of?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Molten Floor - You set on fire while touching the floor.\\u003C/li\\u003E\\n\\u003Cli\\u003E One Ultimate - Elimination mode where you start with your Ultimate, but can\\u0026#39;t get Ultimate charge.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\u003C/li\\u003E\\n\\u003Cli\\u003E Double Jump - Everyone can double jump.\\u003C/li\\u003E\\n\\u003Cli\\u003E Fire Dome - A dome slowly shrinks, limiting the play space. (\\u003Cem\\u003ECough\\u003C/em\\u003E Battle Royale \\u003Cem\\u003ECough\\u003C/em\\u003E)\\u003C/li\\u003E\\n\\u003Cli\\u003E Balanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\u003C/li\\u003E\\n\\u003Cli\\u003E Mirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\u003C/li\\u003E\\n\\u003Cli\\u003E Zombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hero Gauntlet - Gun Game\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs it on Console?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Not yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWho built this?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Keith and Dan, our two buddy devs, in their free time. They have now been labeled \\u003Ca href=\\\"#s\\\" title=\\\"Dan is 31, fight me\\\"\\u003EHero 31 and Hero 32\\u003C/a\\u003E by the reddit community.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs this going to get updates?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs there a limit to sizes of script/number of objects.\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYes. 64 icons/effects, and some limit to the size of the script. \\u003C/li\\u003E\\n\\u003Cli\\u003EHowever, the devs are working to increase these numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs this Overwatch getting a bunch of people to be their unpaid interns?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESadly, it doesn\\u0026#39;t seem to be. Plenty of people would love to design stuff for Blizzard for free. Instead, you can just make fun modes for people to enjoy. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EDo I have control over my modes? Can I link/post other peoples content?\\u003C/h3\\u003E\\n\\n\\u003Ch4\\u003EThe Bad\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou do not have ownership over your creations\\u003C/li\\u003E\\n\\u003Cli\\u003EYour code could be overriden at any time\\u003C/li\\u003E\\n\\u003Cli\\u003EOther people can use your mode by just clicking on it and copying your 5-character code\\u003C/li\\u003E\\n\\u003Cli\\u003ECurrently, there are numerous bugs that can delete your work, if you have a slow connection, too much code, or are just plain unlucky\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Good\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou can check out any code you find interesting and get ideas\\u003C/li\\u003E\\n\\u003Cli\\u003EYou don\\u0026#39;t have to worry about someone else running their server. With the 5-character code, you can start one yourself\\u003C/li\\u003E\\n\\u003Cli\\u003EYour code will carry over to the Live version and the Console version, as the actual data is stored in the cloud\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Devs are fixing all work-deleting bugs\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Devs will (almost certainly) add enough characters to the codes to prevent your code from being overriden\\u003C/li\\u003E\\n\\u003Cli\\u003EYou can store the info for your mode on this page if you want people to know that a mode was originally created by you\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Neutral\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing polite and asking for permission is the correct thing to do if you want to repost their work, modify their work, or look at their rules\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Time Saving\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EI propose that if you create a mode that you want anyone to be able to modify or use, while crediting you, you write \\u0026quot;Free Use\\u0026quot; on it somewhere, so that those who want to use it won\\u0026#39;t \\u003Ca href=\\\"#s\\\" title=\\\"Sorry all people I bugged about adding your stuff to this post\\\"\\u003Econstantly bug you\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EI propose that if you create a mode and don\\u0026#39;t care about being credited, you write \\u0026quot;Free Game\\u0026quot;, and people can use your mode without crediting you, but shouldn\\u0026#39;t act like they invented it whole-sale\\u003C/li\\u003E\\n\\u003Cli\\u003EI propose that the community shares any useful tricks, codes, or ideas somewhere. This post works as well as any other place.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhy does the Workshop Community need to be organized?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Filthy Casuals\\\"\\u003ECasual Players\\u003C/a\\u003E: An organized community will make it easier to find good, fun, game modes.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Sports Nuts\\\"\\u003ERanked Players\\u003C/a\\u003E: With a few changes, I personally think that Workshop can allow for \\u003Ca href=\\\"#s\\\" title=\\\"More Powerful Workshop = Give out Patch Codes instead of Downloads\\\"\\u003Emore frequent patch testing.\\u003C/a\\u003E An organized community could help the workshop get to that state sooner.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Over-Dedicated Fans\\\"\\u003ECreators\\u003C/a\\u003E: An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"All-Mighty Deities\\\"\\u003EDevs\\u003C/a\\u003E: An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EUseful Links\\u003C/h2\\u003E\\n\\n\\u003Ch3\\u003EMode Lists\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://dutchdemons.com\\\"\\u003Ehttps://dutchdemons.com\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Marinosbitter\\\"\\u003Eu/Marinosbitter\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchcustom.games\\\"\\u003Ehttps://overwatchcustom.games\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Thriver\\\"\\u003Eu/Thriver\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchmodding.com/\\\"\\u003Ehttps://overwatchmodding.com/\\u003C/a\\u003E - \\u003Ca href=\\\"/u/xSailboats\\\"\\u003Eu/xSailboats\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://workshop.elohell.gg/\\\"\\u003Ehttps://workshop.elohell.gg/\\u003C/a\\u003E - EloHell Discord\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA\\\"\\u003Ehttps://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA\\u003C/a\\u003E - \\u003Ca href=\\\"/u/alloriginalnamesused\\\"\\u003Eu/alloriginalnamesused\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Lier1\\u0026#39;s Code List]()\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EDiscord Channels\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/9pc4yyE\\\"\\u003EOW Scripting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/qa9vR94\\\"\\u003EOverwatch Workshop\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/U5ARg2Fs\\\"\\u003EElo Hell Workshops\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EYoutube Channels\\u003C/h3\\u003E\\n\\n\\u003Ch4\\u003EMode Creation Help:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g\\\"\\u003ESamstaTV\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UCB1j7mXXRgCRBBri6E5Ch2A\\\"\\u003ERunicOW\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch4\\u003ECreation Showcases:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UCh7qwd3VnN1AGqlqec8K8Zw\\\"\\u003EMaster Ian Gamer\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EMiscellaneous Sites/Posts\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/\\\"\\u003EList of Flat Areas with few Obstacles\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92\\\"\\u003EWorkshop Syntax \\u0026amp; Script Database\\u003C/a\\u003E - WyomingMyst\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkqzg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286136.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkof9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257292.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"# Custom Content\\n\\n### Disclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\n\\n### Names with u/ are from reddit. Names without are from the Overwatch Forum unless labeled otherwise.\\n\\n### If you like a mode, go to the original post and like or comment. Let them know you appreciate it. I'll add links directly to each post once I figure out if Reddit allows that and I get around to it.\\n\\n### If you want to add a mode to the list, just PM me and I'll add it eventually.\\n\\n## Fun Modes\\n- K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n- 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n- RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n- EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n- N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n- 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n- M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n- T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n- NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n- R4DWM - BloodBorne in Overwatch - u/Elodeona\\n- EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n- FHQZ4 - Bridgette Pong - u/AJ_Black\\n- KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n- 53J3R - Shooters Vs Stabbers - Lilsis\\n- BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n- BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n- 5KCP4 - Dva Eject into Random Ult - u/qbbftw - ORIGINAL IDEA FROM: u/Woolin\\n- YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n- 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n- 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n- MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n- SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n- VJCT2 - Chase the Snowmen - u/andygmb\\n- 6PC67 - Take Hero of Kills - u/CrenderMutant\\n- 9J42E - Mcree Hot Potato - u/olipoulihot\\n- 85J46 - TF2 the Return - u/Greg266\\n- 7792M - Ninja Sword Fight - u/zhpete\\n- VQ5W8 - Turn Based 3v3 Deathmatch - u/nodas9990\\n- 56XNH - Reinhardt's Completely Stoned Bumper Car Emporeum v14 - u/TheRedstoneBlaze\\n- R68FF - Lucio Ball - u/Telefrag_Ent\\n- V5NKR - Volleybomb - u/Telefrag_Ent\\n- GB9PM - Instagib Railgun : Ashe Team Deathmatch - u/Telefrag_Ent\\n- PGF9P - 1 v 1 High Noon Duel - u/Zenmill\\n- ZKQVG - One in the Chamber: 3 Lives - u/iejb\\n- QT7TQ - Torbjorn Golfing - u/officialraider\\n-\\n- 0D2W5 - Hampster Chase - u/Woolin\\n- 6E3Z5 - Lucio Tag - u/Woolin\\n-\\n- 4J6KW - Screencheat - u/PotsNPans\\n- MN787 - Screencheat - u/microcosm_ow\\n-\\n- PTTNK - Weeping Angels (Zen Mcree) - u/Semproser\\n- X2HH9 - Weeping Angels (Mercy Mei) - u/Hogrid125\\n-\\n- NJGZ4 - Deathmatch Rivals - u/Hypno--Toad\\n- A6736 - Rival System - u/Hypno--Toad\\n-\\n- JWY47 - Hammond Racing - @DanielFedder (Twitter)\\n- D9RND - Hamster Ball Racing - u/qwook\\n-\\n- SH9XN - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n- 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray\\n-\\n- RGH0D - High Speed: FFA - u/rbnsky\\n- SF1R2 - High Speed Gun Game - u/rbnsky\\n-\\n- E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n- QH5SP - PVE Horde Mode - u/Jechto\\n- 52Y5Y - PvE RPG - u/ES_Curse\\n\\n## Training Modes\\n- RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n- 2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n- QKAAM - Placeable Cameras - u/ItsDeltin\\n- CQ00S - Elemental Aspects - u/poststakhanovist\\n- 179QN - Slot Machine - u/Cowboy_Jimmy\\n- 6WXRW - Navi - u/andygmb - u/Lymbow\\n- P9DC5 - Custom Bouncing Projectiles - u/JayTheYggdrasil\\n- FM3WR - Retaliation Damage - u/bacondev\\n-\\n- NK1YF - 2-D Sidescroller - u/HaxD3\\n- D8ZQC - 3rd Person View - u/Jiggy_Jigsaw\\n- 4V8NC - Top Down Shooter - u/microcosm_ow\\n-\\n- ZW1PY - Scoreboard - u/Paf13\\n- 9EKZB - Scoreboard - u/caldoran2\\n-\\n- QESP4 - Walls - u/Zezombye\\n- TZYK6 - Walls - u/Gecktendo\\n- RFJ4G - Walls - u/Gecktendo\\n-\\n- P4Y50 - Bunny Hopping - u/microcosm_ow\\n- WV5HH - Bunny Hop - u/TyzoneLyraNature\\n\\n## Hero Ideas\\n- XJZB1 - Orisa AoE Push - AlexEptit\\n- H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n- RNKKJ - All Heroes Hover Jet - u/microcosm_ow\\n- 8H2DN - Sym Gravity Gun (Half-life) - u/IFIsc\\n- XGAPQ - Genji as Maeve (Paladins) - u/jprosk\\n- BE2J7 - Portal Gun - u/Lymbow - u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkof9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECustom Content\\u003C/h1\\u003E\\n\\n\\u003Ch3\\u003EDisclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003ENames with u/ are from reddit. Names without are from the Overwatch Forum unless labeled otherwise.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003EIf you like a mode, go to the original post and like or comment. Let them know you appreciate it. I\\u0026#39;ll add links directly to each post once I figure out if Reddit allows that and I get around to it.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003EIf you want to add a mode to the list, just PM me and I\\u0026#39;ll add it eventually.\\u003C/h3\\u003E\\n\\n\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9J42E - Mcree Hot Potato - \\u003Ca href=\\\"/u/olipoulihot\\\"\\u003Eu/olipoulihot\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E85J46 - TF2 the Return - \\u003Ca href=\\\"/u/Greg266\\\"\\u003Eu/Greg266\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E7792M - Ninja Sword Fight - \\u003Ca href=\\\"/u/zhpete\\\"\\u003Eu/zhpete\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVQ5W8 - Turn Based 3v3 Deathmatch - \\u003Ca href=\\\"/u/nodas9990\\\"\\u003Eu/nodas9990\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E56XNH - Reinhardt\\u0026#39;s Completely Stoned Bumper Car Emporeum v14 - \\u003Ca href=\\\"/u/TheRedstoneBlaze\\\"\\u003Eu/TheRedstoneBlaze\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER68FF - Lucio Ball - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EV5NKR - Volleybomb - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGB9PM - Instagib Railgun : Ashe Team Deathmatch - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EPGF9P - 1 v 1 High Noon Duel - \\u003Ca href=\\\"/u/Zenmill\\\"\\u003Eu/Zenmill\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZKQVG - One in the Chamber: 3 Lives - \\u003Ca href=\\\"/u/iejb\\\"\\u003Eu/iejb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- QT7TQ - Torbjorn Golfing - \\u003Ca href=\\\"/u/officialraider\\\"\\u003Eu/officialraider\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E0D2W5 - Hampster Chase - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 6E3Z5 - Lucio Tag - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E4J6KW - Screencheat - \\u003Ca href=\\\"/u/PotsNPans\\\"\\u003Eu/PotsNPans\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- MN787 - Screencheat - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPTTNK - Weeping Angels (Zen Mcree) - \\u003Ca href=\\\"/u/Semproser\\\"\\u003Eu/Semproser\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- X2HH9 - Weeping Angels (Mercy Mei) - \\u003Ca href=\\\"/u/Hogrid125\\\"\\u003Eu/Hogrid125\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENJGZ4 - Deathmatch Rivals - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- A6736 - Rival System - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EJWY47 - Hammond Racing - @DanielFedder (Twitter)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- D9RND - Hamster Ball Racing - \\u003Ca href=\\\"/u/qwook\\\"\\u003Eu/qwook\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESH9XN - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- SF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E52Y5Y - PvE RPG - \\u003Ca href=\\\"/u/ES_Curse\\\"\\u003Eu/ES_Curse\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E179QN - Slot Machine - \\u003Ca href=\\\"/u/Cowboy_Jimmy\\\"\\u003Eu/Cowboy_Jimmy\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EP9DC5 - Custom Bouncing Projectiles - \\u003Ca href=\\\"/u/JayTheYggdrasil\\\"\\u003Eu/JayTheYggdrasil\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- FM3WR - Retaliation Damage - \\u003Ca href=\\\"/u/bacondev\\\"\\u003Eu/bacondev\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENK1YF - 2-D Sidescroller - \\u003Ca href=\\\"/u/HaxD3\\\"\\u003Eu/HaxD3\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ED8ZQC - 3rd Person View - \\u003Ca href=\\\"/u/Jiggy_Jigsaw\\\"\\u003Eu/Jiggy_Jigsaw\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 4V8NC - Top Down Shooter - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETZYK6 - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- RFJ4G - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EP4Y50 - Bunny Hopping - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERNKKJ - All Heroes Hover Jet - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8H2DN - Sym Gravity Gun (Half-life) - \\u003Ca href=\\\"/u/IFIsc\\\"\\u003Eu/IFIsc\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EXGAPQ - Genji as Maeve (Paladins) - \\u003Ca href=\\\"/u/jprosk\\\"\\u003Eu/jprosk\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkof9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286092.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkm0q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257251.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#Reddit Post Organization\\n\\n####If posts are organized in a readable manner, it will help people to:\\n\\n- [Locate modes they like](#s \\\"Or hate\\\")\\n\\n- [Easily lend assistance](#s \\\"Hardly\\\")\\n\\n- [Not have to deal with ugly things](#s \\\"Except walking Zenyattas and wall-climbing Torbs\\\")\\n\\n##Post Example Layout\\n\\n- [Descriptive Title](#s \\\"Flaired Appropriately\\\")\\n\\n- Post Body\\n - Picture/Video [(Optional)](#s \\\"Follow this subs rules\\\")\\n - Code\\n - [Brief Summary](#s \\\"Or why your code is the awesomest ever\\\")\\n - Detailed Description (Optional)\\n - [Future Improvements](#s \\\"Unnecessary as your creation is perfect\\\") (Optional)\\n - [Credits](#s \\\"Those whose stuff you stole\\\")\\n\\n##General Posting Tips\\n\\n\\n\\n- Title\\tTips\\n\\n - Do use this phrasing: _[MyThing](#s \\\"What you made\\\") from [OtherMedia](#s \\\"What you stole the idea from\\\")_\\n\\n - Do be very specific. _Alphabetic Gun Game_ is better than simply _Gun Game_.\\n\\n - Good Example: _Alphabetic Gun Game from [CS:S:HTMLGO](#s \\\"CS Major\\\")_\\n\\n- Post Body Tips\\n\\n - Do use a visual if possible. [Video \\u003E Picture \\u003E Text](#s \\\"\\u003E Lier1\\\")\\n\\n - Do use formatting, titles, or at the very least, [paragraph breaks](#s \\\"Hit enter twice, not once\\\")\\n\\n - Do keep updated modes organized, either with new posts commented in the original post, or with update codes added with [edits](#s \\\"v3.1 Never mind\\\")\\n\\n - Do put things you are unsure how to do under [Future Improvements](#s \\\"As you will somehow be smarter in the future\\\")\\n\\n - Do [credit](#s \\\"I'll talk about using others work later\\\") other users in your post. It's only polite\\n\\n - Do your [research.](#s \\\"See that other people have posted working code before\\\") It will save you time and effort\\n\\n - Don't go into the [nitty gritty.](#s \\\"I used this rule with this condition\\\") Explain how it works in game, not in code\\n\\n\\n\\n---\\n\\n\\n\\n#Reddit Comment Organization\\n\\n#### If comments are organized in a helpful manner, it will help people to:\\n\\n- Get useful feedback\\n\\n- Raise their self-esteem\\n\\n\\n\\n\\n\\n\\n\\n##Comment Example Layout\\n\\n- [Notice the Good](#s \\\"It does exists, its just hiding\\\")\\n\\n- Harsh reality (Optional)\\n\\n- [Useful feedback](#s \\\"Unnecessary\\\")\\n\\n\\n\\n\\n\\n##General Tips\\n\\n\\n\\n- Do always be positive. There is [no need nor reason for negativity.](#s \\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\")\\n\\n- Do mention similar ideas. Link to them so the poster can get some ideas.\\n\\n- Do give actual information/feedback.\\n\\n- Do keep comments to the post at hand.\\n\\n- Don't simply comment [\\\"Great job\\\"](#s \\\"Great Job, finding this hover text\\\"). That's what liking is usually for.\\n\\n- Don't assume that the [posters vision matches yours.](#s \\\"My vision isn't 20-20, you see\\\")\\n\\n- Good Example: \\\"Me and a few friends played this mode, because we love it from Halloo 4. It's a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There's some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\\"\\n\\n---\\n\\n# Reddit Mode Specific\\n\\n\\n##Game Mode Post\\n\\n- Do label the specific [play mode](#s \\\"FFA, 5CP, Domination\\\") used in the code if it is unclear\\n\\n\\n\\n---\\n\\n\\n\\n##Game Mode Comment\\n\\n- Do play and share your experiences\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Post\\n\\n\\n\\n####Hero Description Example Layout\\n\\n- Health\\n\\n- Passives\\n\\n- Triggered Abilities\\n\\n - Stats\\n\\n - Other Features\\n\\n\\n\\n- ###Brief Summary Tips\\n\\n - Do mention what [role](#s \\\"Flanker, Tank, Monkey, etc.\\\") your hero should fill\\n\\n - Don't talk about how your hero will [destroy the meta](#s \\\"It won't\\\")\\n\\n\\n\\n- ### Triggered Ability Tips\\n\\n - Do use numbers to describe hero [DPS](#s \\\"Deaths per Second\\\") and [HPS](#s \\\"i need Healing per Second\\\") if you want balance advice\\n\\n - Do keep any numbers used checked against [actual heroes](#s \\\"No supports firing 20 rounds of 15 dmg a second\\\")\\n\\n - Do check sources such as this _linked_ [Overwatch GamePedia](https://overwatch.gamepedia.com/Overwatch_Wiki) page for how to describe abilities\\n\\n\\n\\n- ### General Tips\\n\\n - Do follow precedent for most parts of your character. They don't need a new leveling system, 50 HP, and a different [control scheme](#s \\\"Command Line\\\")\\n\\n - Do make heroes both fun to play and [fun to play against](#s \\\"mostly the second\\\")\\n\\n - Don't make a character with [lots of exceptions](#s \\\"Blocks all CC except Doomfist Punch\\\")\\n\\n - Don't step on too many [toes](#s \\\"*Cough* Pre-nerf Bridgette *Cough*\\\")\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Comment\\n\\n- Do keep balance comparisons within Overwatch. Comparing to Bastion is [OK](#s \\\"If dangerous\\\"). Comparing to Demo is less [helpful](#s \\\"Unless they are making TF2 accurate Demo\\\")\\n\\n- Do think of the character as a [whole](#s \\\"They can't attack while their shield is up? Useless\\\")\\n\\n- Do be kind. Not all posters are secretly [Blizzard Devs testing new heroes](#s \\\"But some are, right?\\\")\\n\\n- Don't talk balance unless the poster [wants to.](#s \\\"The hero will be horribly underpowered their first time. Let that go.\\\") They may just be creating for fun\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Post\\n\\n- Do try to keep the code as [simple and self-contained](#s \\\"Minimize Dependencies\\\") as possible\\n\\n- Do mention what variables you use\\n\\n- Do explain how you accomplished your [goal](#s \\\"Magic is an acceptable response\\\")\\n\\n- Do explain [bugs and edge cases](#s \\\"Or treat them as just part of the experience\\\")\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Comment\\n\\n- Do mention what cool game-modes you can imagine using with it\\n\\n- Do mention alternate ideas for how to implement it\\n\\n- Do post links to other [implementations](#s \\\"With permission\\\")\\n\\n- Do be amazed at what they managed to do\\n\\n---\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkm0q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EReddit Post Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf posts are organized in a readable manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or hate\\\"\\u003ELocate modes they like\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Hardly\\\"\\u003EEasily lend assistance\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Except walking Zenyattas and wall-climbing Torbs\\\"\\u003ENot have to deal with ugly things\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EPost Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Flaired Appropriately\\\"\\u003EDescriptive Title\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPicture/Video \\u003Ca href=\\\"#s\\\" title=\\\"Follow this subs rules\\\"\\u003E(Optional)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECode\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or why your code is the awesomest ever\\\"\\u003EBrief Summary\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDetailed Description (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary as your creation is perfect\\\"\\u003EFuture Improvements\\u003C/a\\u003E (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Those whose stuff you stole\\\"\\u003ECredits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Posting Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETitle Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use this phrasing: \\u003Cem\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What you made\\\"\\u003EMyThing\\u003C/a\\u003E from \\u003Ca href=\\\"#s\\\" title=\\\"What you stole the idea from\\\"\\u003EOtherMedia\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo be very specific. \\u003Cem\\u003EAlphabetic Gun Game\\u003C/em\\u003E is better than simply \\u003Cem\\u003EGun Game\\u003C/em\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003EGood Example: \\u003Cem\\u003EAlphabetic Gun Game from \\u003Ca href=\\\"#s\\\" title=\\\"CS Major\\\"\\u003ECS:S:HTMLGO\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use a visual if possible. \\u003Ca href=\\\"#s\\\" title=\\\"\\u0026gt; Lier1\\\"\\u003EVideo \\u0026gt; Picture \\u0026gt; Text\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo use formatting, titles, or at the very least, \\u003Ca href=\\\"#s\\\" title=\\\"Hit enter twice, not once\\\"\\u003Eparagraph breaks\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep updated modes organized, either with new posts commented in the original post, or with update codes added with \\u003Ca href=\\\"#s\\\" title=\\\"v3.1 Never mind\\\"\\u003Eedits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo put things you are unsure how to do under \\u003Ca href=\\\"#s\\\" title=\\\"As you will somehow be smarter in the future\\\"\\u003EFuture Improvements\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo \\u003Ca href=\\\"#s\\\" title=\\\"I\\u0026#39;ll talk about using others work later\\\"\\u003Ecredit\\u003C/a\\u003E other users in your post. It\\u0026#39;s only polite\\u003C/li\\u003E\\n\\u003Cli\\u003EDo your \\u003Ca href=\\\"#s\\\" title=\\\"See that other people have posted working code before\\\"\\u003Eresearch.\\u003C/a\\u003E It will save you time and effort\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t go into the \\u003Ca href=\\\"#s\\\" title=\\\"I used this rule with this condition\\\"\\u003Enitty gritty.\\u003C/a\\u003E Explain how it works in game, not in code\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Comment Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf comments are organized in a helpful manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGet useful feedback\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERaise their self-esteem\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EComment Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"It does exists, its just hiding\\\"\\u003ENotice the Good\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHarsh reality (Optional)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary\\\"\\u003EUseful feedback\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo always be positive. There is \\u003Ca href=\\\"#s\\\" title=\\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\"\\u003Eno need nor reason for negativity.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention similar ideas. Link to them so the poster can get some ideas.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo give actual information/feedback.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep comments to the post at hand.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t simply comment \\u003Ca href=\\\"#s\\\" title=\\\"Great Job, finding this hover text\\\"\\u003E\\u0026quot;Great job\\u0026quot;\\u003C/a\\u003E. That\\u0026#39;s what liking is usually for.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t assume that the \\u003Ca href=\\\"#s\\\" title=\\\"My vision isn\\u0026#39;t 20-20, you see\\\"\\u003Eposters vision matches yours.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGood Example: \\u0026quot;Me and a few friends played this mode, because we love it from Halloo 4. It\\u0026#39;s a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There\\u0026#39;s some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\u0026quot;\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Mode Specific\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo label the specific \\u003Ca href=\\\"#s\\\" title=\\\"FFA, 5CP, Domination\\\"\\u003Eplay mode\\u003C/a\\u003E used in the code if it is unclear\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo play and share your experiences\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Post\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EHero Description Example Layout\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHealth\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPassives\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETriggered Abilities\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EStats\\u003C/li\\u003E\\n\\u003Cli\\u003EOther Features\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EBrief Summary Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo mention what \\u003Ca href=\\\"#s\\\" title=\\\"Flanker, Tank, Monkey, etc.\\\"\\u003Erole\\u003C/a\\u003E your hero should fill\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t talk about how your hero will \\u003Ca href=\\\"#s\\\" title=\\\"It won\\u0026#39;t\\\"\\u003Edestroy the meta\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003ETriggered Ability Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use numbers to describe hero \\u003Ca href=\\\"#s\\\" title=\\\"Deaths per Second\\\"\\u003EDPS\\u003C/a\\u003E and \\u003Ca href=\\\"#s\\\" title=\\\"i need Healing per Second\\\"\\u003EHPS\\u003C/a\\u003E if you want balance advice\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep any numbers used checked against \\u003Ca href=\\\"#s\\\" title=\\\"No supports firing 20 rounds of 15 dmg a second\\\"\\u003Eactual heroes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo check sources such as this \\u003Cem\\u003Elinked\\u003C/em\\u003E \\u003Ca href=\\\"https://overwatch.gamepedia.com/Overwatch_Wiki\\\"\\u003EOverwatch GamePedia\\u003C/a\\u003E page for how to describe abilities\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EGeneral Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo follow precedent for most parts of your character. They don\\u0026#39;t need a new leveling system, 50 HP, and a different \\u003Ca href=\\\"#s\\\" title=\\\"Command Line\\\"\\u003Econtrol scheme\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo make heroes both fun to play and \\u003Ca href=\\\"#s\\\" title=\\\"mostly the second\\\"\\u003Efun to play against\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t make a character with \\u003Ca href=\\\"#s\\\" title=\\\"Blocks all CC except Doomfist Punch\\\"\\u003Elots of exceptions\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t step on too many \\u003Ca href=\\\"#s\\\" title=\\\"*Cough* Pre-nerf Bridgette *Cough*\\\"\\u003Etoes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep balance comparisons within Overwatch. Comparing to Bastion is \\u003Ca href=\\\"#s\\\" title=\\\"If dangerous\\\"\\u003EOK\\u003C/a\\u003E. Comparing to Demo is less \\u003Ca href=\\\"#s\\\" title=\\\"Unless they are making TF2 accurate Demo\\\"\\u003Ehelpful\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo think of the character as a \\u003Ca href=\\\"#s\\\" title=\\\"They can\\u0026#39;t attack while their shield is up? Useless\\\"\\u003Ewhole\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be kind. Not all posters are secretly \\u003Ca href=\\\"#s\\\" title=\\\"But some are, right?\\\"\\u003EBlizzard Devs testing new heroes\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t talk balance unless the poster \\u003Ca href=\\\"#s\\\" title=\\\"The hero will be horribly underpowered their first time. Let that go.\\\"\\u003Ewants to.\\u003C/a\\u003E They may just be creating for fun\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo try to keep the code as \\u003Ca href=\\\"#s\\\" title=\\\"Minimize Dependencies\\\"\\u003Esimple and self-contained\\u003C/a\\u003E as possible\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what variables you use\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain how you accomplished your \\u003Ca href=\\\"#s\\\" title=\\\"Magic is an acceptable response\\\"\\u003Egoal\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain \\u003Ca href=\\\"#s\\\" title=\\\"Or treat them as just part of the experience\\\"\\u003Ebugs and edge cases\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what cool game-modes you can imagine using with it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention alternate ideas for how to implement it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo post links to other \\u003Ca href=\\\"#s\\\" title=\\\"With permission\\\"\\u003Eimplementations\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be amazed at what they managed to do\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkm0q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286051.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkcxj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257095.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**[TLDR:](#s \\\"Too Logical, Died Reading\\\")** I think that the Overwatch Workshop Community should get organized, and have some [ideas on doing so.](#s \\\"Not good ideas, mind you\\\")\\n\\n**Brief disclaimer:**\\n\\n- I by no means think these are the best ideas, I'm just trying to get a discussion started.\\n\\n- Please comment with better ideas, or parts I'm wrong about, or just because you feel like it.\\n\\n- A lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\n\\n- Also, liberal hover tags abound, and [none](#s \\\"some are funny, however\\\") are useful. The only things you can click on are specifically called out as links.\\n\\n- This got really big, really fast. I've split it into a few seperate posts. If the organization seems off, please tell me how to [fix it.](#s \\\"Because I don't know how to.\\\")\\n\\n---\\n\\n# Table of Contents\\n\\n##[Reddit Organization](#s \\\"How to do better than this post\\\") A.K.A Proposals\\n\\n- #### Posts\\n\\n- #### Comments\\n\\n- #### Mode Specific Tips\\n\\n- #### Ownership Discussion\\n\\n##[One-Stop Assistance](#s \\\"More like None-Start\\\") A.K.A Resources\\n\\n- #### [Workshop FAQ](#s \\\"What is an FAQ?\\\")\\n\\n- #### [Useful Links](#s \\\"May be copywrite infringing\\\")\\n - ###### Discord Channels\\n - ###### Youtube Channels\\n - ###### Dev Updates\\n - ###### Mode/Code Lists\\n\\n## [Workshop Improvement Ideas](#s \\\"Nonexistent\\\")\\n\\n## [Future](#s \\\"Implying they will get done\\\") Projects\\n\\n## Random [Asides](#s \\\"Also B-sides\\\")\\n - #### [TLDR](#s \\\"You look for the TLDR in the Table of Contents?\\\")\\n---\\n\\n[Reddit Organization Post Link]()\\n\\n[One Stop Assistance Post Link]()\\n\\n[My Code List Link]()\\n\\n[Workshop Improvement Ideas Link]()\\n\\n## Future Projects\\n#### I'll probably see what I can do to organize a large-scale modding project once we get enough space on the workshop for it.\\n#### I'll be updating and correcting this post with all the information you commentors give me, and the actual game-modes I've been collection. Maybe I'll add more hover-text jokes.\\n#### I'm planning on adding a section with advice on creating a new mode or character, instead of just how to post one.\\n\\n## Random Asides\\n#### About Me: I'm Lier1. I'm a filthy casual, I make lots of jokes, and I [main DPS.](#s \\\"The worst sort of main, I know\\\") However, I don't wish to offend, and hope to improve this resource, so feel free to comment and ask questions, fix my mistakes, or add more resources.\\n#### TLDR: I have some ideas for organizing the reddit posts and comments, the feedback we give the devs, an FAQ for answering your questions, and a One-Stop Workshop for leading you to resources.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkcxj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Too Logical, Died Reading\\\"\\u003ETLDR:\\u003C/a\\u003E\\u003C/strong\\u003E I think that the Overwatch Workshop Community should get organized, and have some \\u003Ca href=\\\"#s\\\" title=\\\"Not good ideas, mind you\\\"\\u003Eideas on doing so.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBrief disclaimer:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI by no means think these are the best ideas, I\\u0026#39;m just trying to get a discussion started.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPlease comment with better ideas, or parts I\\u0026#39;m wrong about, or just because you feel like it.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EA lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EAlso, liberal hover tags abound, and \\u003Ca href=\\\"#s\\\" title=\\\"some are funny, however\\\"\\u003Enone\\u003C/a\\u003E are useful. The only things you can click on are specifically called out as links.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EThis got really big, really fast. I\\u0026#39;ve split it into a few seperate posts. If the organization seems off, please tell me how to \\u003Ca href=\\\"#s\\\" title=\\\"Because I don\\u0026#39;t know how to.\\\"\\u003Efix it.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ETable of Contents\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"How to do better than this post\\\"\\u003EReddit Organization\\u003C/a\\u003E A.K.A Proposals\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EPosts\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EComments\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EMode Specific Tips\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EOwnership Discussion\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"More like None-Start\\\"\\u003EOne-Stop Assistance\\u003C/a\\u003E A.K.A Resources\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What is an FAQ?\\\"\\u003EWorkshop FAQ\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"May be copywrite infringing\\\"\\u003EUseful Links\\u003C/a\\u003E\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E###### Discord Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Youtube Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Dev Updates\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Mode/Code Lists\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Nonexistent\\\"\\u003EWorkshop Improvement Ideas\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Implying they will get done\\\"\\u003EFuture\\u003C/a\\u003E Projects\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ERandom \\u003Ca href=\\\"#s\\\" title=\\\"Also B-sides\\\"\\u003EAsides\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003E - #### \\u003Ca href=\\\"#s\\\" title=\\\"You look for the TLDR in the Table of Contents?\\\"\\u003ETLDR\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E[Reddit Organization Post Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[One Stop Assistance Post Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[My Code List Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Workshop Improvement Ideas Link]()\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EFuture Projects\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;ll probably see what I can do to organize a large-scale modding project once we get enough space on the workshop for it.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;ll be updating and correcting this post with all the information you commentors give me, and the actual game-modes I\\u0026#39;ve been collection. Maybe I\\u0026#39;ll add more hover-text jokes.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;m planning on adding a section with advice on creating a new mode or character, instead of just how to post one.\\u003C/h4\\u003E\\n\\n\\u003Ch2\\u003ERandom Asides\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EAbout Me: I\\u0026#39;m Lier1. I\\u0026#39;m a filthy casual, I make lots of jokes, and I \\u003Ca href=\\\"#s\\\" title=\\\"The worst sort of main, I know\\\"\\u003Emain DPS.\\u003C/a\\u003E However, I don\\u0026#39;t wish to offend, and hope to improve this resource, so feel free to comment and ask questions, fix my mistakes, or add more resources.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003ETLDR: I have some ideas for organizing the reddit posts and comments, the feedback we give the devs, an FAQ for answering your questions, and a One-Stop Workshop for leading you to resources.\\u003C/h4\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkcxj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557285895.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emo4wbj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557169931.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Fun Modes\\n\\n* K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n* 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n* RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n* EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n* N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n* 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n* M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n* T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n* NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n* R4DWM - BloodBorne in Overwatch - u/Elodeona\\n* EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n* FHQZ4 - Bridgette Pong - u/AJ_Black\\n* KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n* 53J3R - Shooters Vs Stabbers - Lilsis\\n* BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n* BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n* 5KCP4 - Dva Eject into Random Ult - u/qbbftw \\\\- ORIGINAL IDEA FROM: u/Woolin\\n* YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n* 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n* 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n* MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n* SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n* VJCT2 - Chase the Snowmen - u/andygmb\\n* 6PC67 - Take Hero of Kills - u/CrenderMutant\\n* 9J42E - Mcree Hot Potato - u/olipoulihot\\n* 85J46 - TF2 the Return - u/Greg266\\n* 7792M - Ninja Sword Fight - u/zhpete\\n* VQ5W8 - Turn Based 3v3 Deathmatch - u/nodas9990\\n* 56XNH - Reinhardt's Completely Stoned Bumper Car Emporeum v14 - u/TheRedstoneBlaze\\n* R68FF - Lucio Ball - u/Telefrag_Ent\\n* V5NKR - Volleybomb - u/Telefrag_Ent\\n* GB9PM - Instagib Railgun : Ashe Team Deathmatch - u/Telefrag_Ent\\n* PGF9P - 1 v 1 High Noon Duel - u/Zenmill\\n* ZKQVG - One in the Chamber: 3 Lives - u/iejb\\n* \\u00a0\\n* 0D2W5 - Hampster Chase - u/Woolin\\n* 6E3Z5 - Lucio Tag - u/Woolin \\u00a0\\n*\\n* 4J6KW - Screencheat - u/PotsNPans\\n* MN787 - Screencheat - u/microcosm_ow \\u00a0\\n*\\n* PTTNK - Weeping Angels (Zen Mcree) - u/Semproser\\n* X2HH9 - Weeping Angels (Mercy Mei) - u/Hogrid125 \\u00a0\\n*\\n* NJGZ4 - Deathmatch Rivals - u/Hypno--Toad\\n* A6736 - Rival System - u/Hypno--Toad \\u00a0\\n*\\n* JWY47 - Hammond Racing - @DanielFedder (Twitter)\\n* D9RND - Hamster Ball Racing - u/qwook \\u00a0\\n*\\n* SH9XN - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n* 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray \\u00a0\\n*\\n* RGH0D - High Speed: FFA - u/rbnsky\\n* SF1R2 - High Speed Gun Game - u/rbnsky \\u00a0\\n*\\n* E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n* QH5SP - PVE Horde Mode - u/Jechto\\n\\n## Training Modes\\n\\n* RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n* 2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n\\n* QKAAM - Placeable Cameras - u/ItsDeltin\\n* CQ00S - Elemental Aspects - u/poststakhanovist\\n* 179QN - Slot Machine - u/Cowboy_Jimmy\\n* 6WXRW - Navi - u/andygmb \\\\- u/Lymbow \\u00a0\\n*\\n* NK1YF - 2-D Sidescroller - u/HaxD3\\n* 4V8NC - Top Down Shooter - u/microcosm_ow \\u00a0\\n*\\n* ZW1PY - Scoreboard - u/Paf13\\n* 9EKZB - Scoreboard - u/caldoran2 \\u00a0\\n*\\n* QESP4 - Walls - u/Zezombye\\n* TZYK6 - Walls - u/Gecktendo\\n* RFJ4G - Walls - u/Gecktendo \\u00a0\\n*\\n* P4Y50 - Bunny Hopping - u/microcosm_ow\\n* WV5HH - Bunny Hop - u/TyzoneLyraNature\\n\\n## Hero Ideas\\n\\n* XJZB1 - Orisa AoE Push - AlexEptit\\n* H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n* RNKKJ - All Heroes Hover Jet - u/microcosm_ow\\n* 8H2DN - Sym Gravity Gun (Half-life) - u/IFIsc\\n* XGAPQ - Genji as Maeve (Paladins) - u/jprosk\\n* BE2J7 - Portal Gun - u/Lymbow \\\\- u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emo4wbj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9J42E - Mcree Hot Potato - \\u003Ca href=\\\"/u/olipoulihot\\\"\\u003Eu/olipoulihot\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E85J46 - TF2 the Return - \\u003Ca href=\\\"/u/Greg266\\\"\\u003Eu/Greg266\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E7792M - Ninja Sword Fight - \\u003Ca href=\\\"/u/zhpete\\\"\\u003Eu/zhpete\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVQ5W8 - Turn Based 3v3 Deathmatch - \\u003Ca href=\\\"/u/nodas9990\\\"\\u003Eu/nodas9990\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E56XNH - Reinhardt\\u0026#39;s Completely Stoned Bumper Car Emporeum v14 - \\u003Ca href=\\\"/u/TheRedstoneBlaze\\\"\\u003Eu/TheRedstoneBlaze\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER68FF - Lucio Ball - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EV5NKR - Volleybomb - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGB9PM - Instagib Railgun : Ashe Team Deathmatch - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EPGF9P - 1 v 1 High Noon Duel - \\u003Ca href=\\\"/u/Zenmill\\\"\\u003Eu/Zenmill\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZKQVG - One in the Chamber: 3 Lives - \\u003Ca href=\\\"/u/iejb\\\"\\u003Eu/iejb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u00a0\\u003C/li\\u003E\\n\\u003Cli\\u003E0D2W5 - Hampster Chase - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6E3Z5 - Lucio Tag - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003E4J6KW - Screencheat - \\u003Ca href=\\\"/u/PotsNPans\\\"\\u003Eu/PotsNPans\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMN787 - Screencheat - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EPTTNK - Weeping Angels (Zen Mcree) - \\u003Ca href=\\\"/u/Semproser\\\"\\u003Eu/Semproser\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EX2HH9 - Weeping Angels (Mercy Mei) - \\u003Ca href=\\\"/u/Hogrid125\\\"\\u003Eu/Hogrid125\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ENJGZ4 - Deathmatch Rivals - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EA6736 - Rival System - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EJWY47 - Hammond Racing - @DanielFedder (Twitter)\\u003C/li\\u003E\\n\\u003Cli\\u003ED9RND - Hamster Ball Racing - \\u003Ca href=\\\"/u/qwook\\\"\\u003Eu/qwook\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ESH9XN - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E179QN - Slot Machine - \\u003Ca href=\\\"/u/Cowboy_Jimmy\\\"\\u003Eu/Cowboy_Jimmy\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ENK1YF - 2-D Sidescroller - \\u003Ca href=\\\"/u/HaxD3\\\"\\u003Eu/HaxD3\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E4V8NC - Top Down Shooter - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETZYK6 - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERFJ4G - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EP4Y50 - Bunny Hopping - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERNKKJ - All Heroes Hover Jet - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8H2DN - Sym Gravity Gun (Half-life) - \\u003Ca href=\\\"/u/IFIsc\\\"\\u003Eu/IFIsc\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EXGAPQ - Genji as Maeve (Paladins) - \\u003Ca href=\\\"/u/jprosk\\\"\\u003Eu/jprosk\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emo4wbj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557198731.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emny9vc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MeddyEvalNight\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557166074.0, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Image was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u003Cimg/\\u003E . It looks like an inline rendered image needs to be uploaded\\n\\n\\u0026#x200B;\\n\\n[Video link](https://www.youtube.com/watch?v=yd98RGxad0U)\", \"link_title\": \"Testing inline image links. Is it a url link or an inline image render?\", \"author_flair_css_class\": null, \"name\": \"t1_emny9vc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EImage was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u0026lt;img/\\u0026gt; . It looks like an inline rendered image needs to be uploaded\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=yd98RGxad0U\\\"\\u003EVideo link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emny9vc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"report_reasons\": null, \"link_author\": \"MeddyEvalNight\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"created\": 1557194874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emnwgbf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MeddyEvalNight\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557165020.0, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Not what I wanted... next test.\", \"link_title\": \"Testing inline image links. Is it a url link or an inline image render?\", \"author_flair_css_class\": null, \"name\": \"t1_emnwgbf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot what I wanted... next test.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emnwgbf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"report_reasons\": null, \"link_author\": \"MeddyEvalNight\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"created\": 1557193820.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmzbbw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gpngc\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557143134.0, \"send_replies\": true, \"parent_id\": \"t3_blb203\", \"score\": 1, \"author_fullname\": \"t2_6fxy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n**1.** **Chargers \\u2013 Jerry Tillery \\u2013 4** \\n\\nI loved this Chargers draft. They got the No. 11 and 12 players on my Big Board. \\n\\nTillery has bust risk after an uneven college career, but I think his pro traits translate in a big way. He absolutely wrecked the Stanford game with 4 sacks, so perhaps my evaluation wouldn\\u2019t be as rosy if I watched his entire career. Still, traits. He has a strong club, pushes the pocket, and is stout against the run. Just watch Stanford. His issues with consistency come down to technique and stupid things like not exploding off the ball for some reason. He\\u2019s really good right now and with some coaching can be great. The Chargers might have the best defense in the league next year. \\n\\nNasir Adderly was my favorite player in the entire draft. My prediction is a 5. Copied and pasted from my notes: wowowowowowoowowwowoow. It doesn\\u2019t take a professional scout to see that he\\u2019s playing at a different speed than everyone else on the field at the FCS level. Against NDSU, I saw him at 206 pounds push back a 300-pound OL and knock down an outside WR. He\\u2019s a missile downhill and has the ball skills and range of a top safety. The only question I have is how he\\u2019ll respond to the jump in competition. When scouting FCS players, you want to see them dominate exactly as he did. STOP whatever you\\u2019re doing and watch this right now: [https://www.youtube.com/watch?v=0dwOuc8K4ik](https://www.youtube.com/watch?v=0dwOuc8K4ik) He gives a new meaning to the term \\u201cstop and start\\u201d, makes some spectacular catches down the field, and misses a tackle on punt coverage\\u2026 \\u2026then Ben Watsons his mistake in unbelievable fashion. Seriously, just watch this right now: [https://www.youtube.com/watch?v=0dwOuc8K4ik](https://www.youtube.com/watch?v=0dwOuc8K4ik) \\n\\nThe Chargers might have the best safety duo in the league soon. \\n\\n**2.** **Seahawks \\u2013 L.J. Collier \\u2013 1** \\n\\nI\\u2019m a Seahawks fan and I\\u2019m just about done with GM John Schneider. I\\u2019ll forever love him for building a SB Champion, but enough is enough, and they\\u2019re wasting Russ\\u2019 prime. After the all-time draft class in 2012, Schneider has done very little good and a ton bad with Seahawks draft capital. Besides Tyler Lockett, Frank Clark, Jarran Reed, and Chris Carson, there hasn\\u2019t been much to show for despite hoarding draft picks and trading down every year. Just look at how he\\u2019s handled the first round since 2013: \\n\\n2013: Traded for Percy Harvin. While he may have sealed one SB, he fractured the locker room. \\n\\n2014: Traded into the 2nd and took Paul Richardson. Meh. \\n\\n2015: Traded for Jimmy Graham. Eh. \\n\\n2016: Selected Germain Ifedi. LOL. \\n\\n2017: Traded into the the 2nd and took Malik McDowell who never played a snap for them. \\n\\n2018: Traded down to No. 27 to take a RB, who, even if he\\u2019s good, is still a RB. \\n\\nAnd it\\u2019s not like he\\u2019s been nailing the later rounds either. \\n\\nHis drafts since 2013 are a fireable offense. He\\u2019ll probably never be separated from Carroll, and he\\u2019ll always have 2012 to shield him, but he\\u2019s been objectively awful for years. Sorry to spit the truth fellow 12s. \\n\\nThe Seahawks take pride in doing off-the-wall things and have missed out on so much talent because of it. I don\\u2019t believe in the term \\u201creach\\u201d, but the guys the media says they reached for don\\u2019t ever pan out (besides 2012), sooooo\\u2026. They also love trading down to hoard draft picks, but they just end up on missing on all the picks they get! It\\u2019s frustrating as a fan to see guys like Calvin Ridley, Sweat, Tillery, and Marquise Brown get taken in between their original slot and trade-down slot. They take pride in their unconventional ways, and their ways have been thoroughly ineffective since 2012. This year JS was quoted as saying something along the lines of \\u2018the draft was going the way it was expected to, and we didn\\u2019t like that.\\u2019 The media and draftniks have gotten wiser and straying so far off EVERYONE\\u2019S Big Boards usually doesn\\u2019t work anymore. \\n\\nOn to Collier, he\\u2019s a decent 24-year-old power edge guy, who\\u2019s profile is that of a clear capped-upside second-rounder. The only thing he has going for him that I can\\u2019t really speak on is his supposedly dominant Senior Bowl week. There are some nice things on film, and he can be a solid run defender, but a lot of his pressures and sacks won\\u2019t translate. He\\u2019s not going to bull-rush and get instant sacks against NFL tackles. His horrid 7.71 3cone confirms his lack of bend off the edge. He started one year at TCU and had so-so film. The pick just doesn\\u2019t make sense. \\n\\nI did a YouTube video ([https://www.youtube.com/watch?v=VsRjqfOao\\\\_0](https://www.youtube.com/watch?v=VsRjqfOao_0)) on D.K. Metcalf (2) right after he blew up the combine and called him a 3rd-round pick. He has every trait of a bust risk but went to the best situation possible. Russ makes everyone around him better and D.K. won\\u2019t have to run many advanced routes for the best deep-ball passer in the game. He\\u2019ll also be thrust right away into playing time, and the culture at Seattle sets their players up for success, especially at WR. If he was a developmental project in a different program, stuck behind better receivers or with a bad QB, I could see him falling out of relevance and not building any confidence. \\n\\nAs a deep threat, he\\u2019s not bad. However, there are a ton of concerns on tape. He\\u2019s all straight-linish with no agility, and his athletic testing comparisons to Tom Brady are evident on film. He lacks a release plan to gain separation. He will body catch when he doesn\\u2019t have to and I can\\u2019t tell if his hands are just average or below average, probably because there simply weren\\u2019t many catches on film. Some of his proponents cited \\u201cbad coaching\\u201d as the reason he didn\\u2019t produce. I understand he plays a different position, but A.J. Brown produced huge numbers in the same offense. Metcalf isn\\u2019t a bad prospect by any means. He flashed as a deep threat (which fits Seattle) and has functional (and photogenic) strength as a blocker and fall-forward-after-catch guy. But concerns with rawness and route-running make him developmental with question marks. I would have preferred to stay away and I can\\u2019t endorse the pick. But in the late-second, I suppose they could have done worse. \\n\\nHere\\u2019s a hot take: Gary Jennings Jr. (3) Will be a better pro than D.K. He popped on film while scouting Grier. He can\\u2019t run a route to save his life but he has literally everything else you want from a pro WR including outstanding ball skills.\\n\\n3. Giants \\u2013 See Pick 6 \\n\\n4. Falcons \\u2013 See Pick 14 \\n\\n**5.** **Patriots \\u2013 N\\u2019Keal Harry \\u2013 2** \\n\\nThe ghost of Chad Jackson has haunted Gillette for years. Read the book \\u201cWar Room\\u201d about Belichick and the Patriots drafts. With a glaring need at WR, the Pats finally spent a first on one, and Harry has a chance to start right away. \\n\\nHarry was one of the most unique WR prospects I\\u2019ve ever scouted. Nothing about his game is conventional, starting with his awkward upright stance and weird rolling release. His running-after-the-catch transitions are awkward as he\\u2019ll weirdly high-step or foot-fire for one full second before somehow gliding forward without being an easy target for a tackler. His arms pump down to his knees when he runs. Good coaches let players be themselves, and Harry\\u2019s unconventional ways do lead to success on film. He\\u2019s sudden down the field on second-level releases and catches the ball well for the most part, using his bigger body to his advantage. His confidence on film is evident, but the Oregon game makes me reluctant to pick a star. He had a couple of drops and generally struggled. Predicting the careers of draft picks is really ridiculous. I wouldn\\u2019t be shocked with any outcome, including a full-blown implosion or budding superstar. My initial instinct was that he was just OK. 3. Wait. He really won\\u2019t be a 3. He\\u2019s either going to be the guy or not work out. 2. \\n\\n**46. Browns \\u2013 Greedy Wiliams \\u2013 3** \\n\\nI don\\u2019t know why Greedy fell and Dorsey made a good move trading up to get him. Everyone knows what he is as a long press corner but a second look at his tape revealed one issue. He is very inconsistent locating the football and getting his head around in press. Teams are going to play the percentages and abuse him if he doesn\\u2019t learn how to consistently turn his head. Still, the traits are there and he\\u2019s really good. I don\\u2019t care about his run defense in a man-heavy scheme.\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmzbbw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E1.\\u003C/strong\\u003E \\u003Cstrong\\u003EChargers \\u2013 Jerry Tillery \\u2013 4\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI loved this Chargers draft. They got the No. 11 and 12 players on my Big Board. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETillery has bust risk after an uneven college career, but I think his pro traits translate in a big way. He absolutely wrecked the Stanford game with 4 sacks, so perhaps my evaluation wouldn\\u2019t be as rosy if I watched his entire career. Still, traits. He has a strong club, pushes the pocket, and is stout against the run. Just watch Stanford. His issues with consistency come down to technique and stupid things like not exploding off the ball for some reason. He\\u2019s really good right now and with some coaching can be great. The Chargers might have the best defense in the league next year. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENasir Adderly was my favorite player in the entire draft. My prediction is a 5. Copied and pasted from my notes: wowowowowowoowowwowoow. It doesn\\u2019t take a professional scout to see that he\\u2019s playing at a different speed than everyone else on the field at the FCS level. Against NDSU, I saw him at 206 pounds push back a 300-pound OL and knock down an outside WR. He\\u2019s a missile downhill and has the ball skills and range of a top safety. The only question I have is how he\\u2019ll respond to the jump in competition. When scouting FCS players, you want to see them dominate exactly as he did. STOP whatever you\\u2019re doing and watch this right now: \\u003Ca href=\\\"https://www.youtube.com/watch?v=0dwOuc8K4ik\\\"\\u003Ehttps://www.youtube.com/watch?v=0dwOuc8K4ik\\u003C/a\\u003E He gives a new meaning to the term \\u201cstop and start\\u201d, makes some spectacular catches down the field, and misses a tackle on punt coverage\\u2026 \\u2026then Ben Watsons his mistake in unbelievable fashion. Seriously, just watch this right now: \\u003Ca href=\\\"https://www.youtube.com/watch?v=0dwOuc8K4ik\\\"\\u003Ehttps://www.youtube.com/watch?v=0dwOuc8K4ik\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Chargers might have the best safety duo in the league soon. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E2.\\u003C/strong\\u003E \\u003Cstrong\\u003ESeahawks \\u2013 L.J. Collier \\u2013 1\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m a Seahawks fan and I\\u2019m just about done with GM John Schneider. I\\u2019ll forever love him for building a SB Champion, but enough is enough, and they\\u2019re wasting Russ\\u2019 prime. After the all-time draft class in 2012, Schneider has done very little good and a ton bad with Seahawks draft capital. Besides Tyler Lockett, Frank Clark, Jarran Reed, and Chris Carson, there hasn\\u2019t been much to show for despite hoarding draft picks and trading down every year. Just look at how he\\u2019s handled the first round since 2013: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2013: Traded for Percy Harvin. While he may have sealed one SB, he fractured the locker room. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2014: Traded into the 2nd and took Paul Richardson. Meh. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2015: Traded for Jimmy Graham. Eh. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2016: Selected Germain Ifedi. LOL. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2017: Traded into the the 2nd and took Malik McDowell who never played a snap for them. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2018: Traded down to No. 27 to take a RB, who, even if he\\u2019s good, is still a RB. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd it\\u2019s not like he\\u2019s been nailing the later rounds either. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHis drafts since 2013 are a fireable offense. He\\u2019ll probably never be separated from Carroll, and he\\u2019ll always have 2012 to shield him, but he\\u2019s been objectively awful for years. Sorry to spit the truth fellow 12s. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Seahawks take pride in doing off-the-wall things and have missed out on so much talent because of it. I don\\u2019t believe in the term \\u201creach\\u201d, but the guys the media says they reached for don\\u2019t ever pan out (besides 2012), sooooo\\u2026. They also love trading down to hoard draft picks, but they just end up on missing on all the picks they get! It\\u2019s frustrating as a fan to see guys like Calvin Ridley, Sweat, Tillery, and Marquise Brown get taken in between their original slot and trade-down slot. They take pride in their unconventional ways, and their ways have been thoroughly ineffective since 2012. This year JS was quoted as saying something along the lines of \\u2018the draft was going the way it was expected to, and we didn\\u2019t like that.\\u2019 The media and draftniks have gotten wiser and straying so far off EVERYONE\\u2019S Big Boards usually doesn\\u2019t work anymore. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn to Collier, he\\u2019s a decent 24-year-old power edge guy, who\\u2019s profile is that of a clear capped-upside second-rounder. The only thing he has going for him that I can\\u2019t really speak on is his supposedly dominant Senior Bowl week. There are some nice things on film, and he can be a solid run defender, but a lot of his pressures and sacks won\\u2019t translate. He\\u2019s not going to bull-rush and get instant sacks against NFL tackles. His horrid 7.71 3cone confirms his lack of bend off the edge. He started one year at TCU and had so-so film. The pick just doesn\\u2019t make sense. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did a YouTube video (\\u003Ca href=\\\"https://www.youtube.com/watch?v=VsRjqfOao_0\\\"\\u003Ehttps://www.youtube.com/watch?v=VsRjqfOao_0\\u003C/a\\u003E) on D.K. Metcalf (2) right after he blew up the combine and called him a 3rd-round pick. He has every trait of a bust risk but went to the best situation possible. Russ makes everyone around him better and D.K. won\\u2019t have to run many advanced routes for the best deep-ball passer in the game. He\\u2019ll also be thrust right away into playing time, and the culture at Seattle sets their players up for success, especially at WR. If he was a developmental project in a different program, stuck behind better receivers or with a bad QB, I could see him falling out of relevance and not building any confidence. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a deep threat, he\\u2019s not bad. However, there are a ton of concerns on tape. He\\u2019s all straight-linish with no agility, and his athletic testing comparisons to Tom Brady are evident on film. He lacks a release plan to gain separation. He will body catch when he doesn\\u2019t have to and I can\\u2019t tell if his hands are just average or below average, probably because there simply weren\\u2019t many catches on film. Some of his proponents cited \\u201cbad coaching\\u201d as the reason he didn\\u2019t produce. I understand he plays a different position, but A.J. Brown produced huge numbers in the same offense. Metcalf isn\\u2019t a bad prospect by any means. He flashed as a deep threat (which fits Seattle) and has functional (and photogenic) strength as a blocker and fall-forward-after-catch guy. But concerns with rawness and route-running make him developmental with question marks. I would have preferred to stay away and I can\\u2019t endorse the pick. But in the late-second, I suppose they could have done worse. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u2019s a hot take: Gary Jennings Jr. (3) Will be a better pro than D.K. He popped on film while scouting Grier. He can\\u2019t run a route to save his life but he has literally everything else you want from a pro WR including outstanding ball skills.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGiants \\u2013 See Pick 6 \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFalcons \\u2013 See Pick 14 \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E5.\\u003C/strong\\u003E \\u003Cstrong\\u003EPatriots \\u2013 N\\u2019Keal Harry \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe ghost of Chad Jackson has haunted Gillette for years. Read the book \\u201cWar Room\\u201d about Belichick and the Patriots drafts. With a glaring need at WR, the Pats finally spent a first on one, and Harry has a chance to start right away. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHarry was one of the most unique WR prospects I\\u2019ve ever scouted. Nothing about his game is conventional, starting with his awkward upright stance and weird rolling release. His running-after-the-catch transitions are awkward as he\\u2019ll weirdly high-step or foot-fire for one full second before somehow gliding forward without being an easy target for a tackler. His arms pump down to his knees when he runs. Good coaches let players be themselves, and Harry\\u2019s unconventional ways do lead to success on film. He\\u2019s sudden down the field on second-level releases and catches the ball well for the most part, using his bigger body to his advantage. His confidence on film is evident, but the Oregon game makes me reluctant to pick a star. He had a couple of drops and generally struggled. Predicting the careers of draft picks is really ridiculous. I wouldn\\u2019t be shocked with any outcome, including a full-blown implosion or budding superstar. My initial instinct was that he was just OK. 3. Wait. He really won\\u2019t be a 3. He\\u2019s either going to be the guy or not work out. 2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E46. Browns \\u2013 Greedy Wiliams \\u2013 3\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u2019t know why Greedy fell and Dorsey made a good move trading up to get him. Everyone knows what he is as a long press corner but a second look at his tape revealed one issue. He is very inconsistent locating the football and getting his head around in press. Teams are going to play the percentages and abuse him if he doesn\\u2019t learn how to consistently turn his head. Still, the traits are there and he\\u2019s really good. I don\\u2019t care about his run defense in a man-heavy scheme.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmzbbw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171934.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmz810\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"converter-bot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557143052.0, \"send_replies\": true, \"parent_id\": \"t1_emmz7qr\", \"score\": 1, \"author_fullname\": \"t2_zds627j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"7 yards is 6.4 meters\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmz810\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E7 yards is 6.4 meters\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmz810/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171852.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmz7qr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gpngc\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557143045.0, \"send_replies\": true, \"parent_id\": \"t3_blb203\", \"score\": 1, \"author_fullname\": \"t2_6fxy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n**1.** **Vikings \\u2013 Garrett Bradbury \\u2013 2** \\n\\nI don\\u2019t like picking this many 2s in the teens, but these were the guys I was down on a bit and all of them have fairly high floors so I\\u2019m reluctant to pick 1s. It\\u2019s simply very rare than interior OL is drafted in the teens and doesn\\u2019t end up at least being solid. Still, I had Bradbury ranked 49th on my Big Board. His tape was that of an average college OL. He struggled to get movement in the run game. He was fine in pass protection. Against Michigan, he was bench pressed and pushed back multiple times by LB #35. It was jarring. Even in a zone scheme, getting moved back at center against LBs is a red flag for me. If I\\u2019m taking a center in the first round I want Travis Frederick or Ryan Kelly \\u2013 technicians who also have the power to move people. Bradbury was a fine college player in an offense with a lot of quick game reps, especially against Clemson, but I see his lack of strength at the POA as a major flaw. And it\\u2019s not like he\\u2019s Ryan Kelly in terms of technique. Athleticism and intelligence are great qualities, but if you\\u2019re spending the 18th overall pick on a center, he better have more than that. Bradbury doesn\\u2019t. \\n\\n**2.** **Titans \\u2013 Jeffrey Simmons \\u2013 3** \\n\\nI have no idea why ESPN handled the Simmons pick the way they did. It was one of the most bizarre NFL Draft segments I\\u2019ve ever seen. And the worst part is I don\\u2019t think they showed ONE SECOND of him playing football. So odd. \\n\\nI don\\u2019t think Simmons\\u2019 film showed the best player in the draft as some said. He was the 23rd ranked player on my board before I knew about his character questions. Injuries factored in slightly for me. He\\u2019s got everything you want in a dominant DL, but there were some really bad stretches on film. He struggled vs double teams against Florida, on one rep stopping his feet and getting driven back literally 7 yards before flailing his arm in a feeble tackle attempt. He\\u2019ll lean too much and get caught out of position. He\\u2019ll stand straight up. There were flashes of brilliance, and if he can make some technique changes to mix with his strength, he can be a factor inside in the NFL. He\\u2019s tough to reach in the run game and makes plays. Really good college player who needs to work that much harder to up his game for the next level.\\n\\n**3.** **Broncos \\u2013 Noah Fant \\u2013 3** \\n\\nThere is one glaring takeaway from Fant\\u2019s film, and I\\u2019m surprised I haven\\u2019t read it anywhere: He doesn\\u2019t break ANY tackles. Breaking tackles isn\\u2019t exactly a hugely important skill for TEs in the NFL, but it speaks to a lack of dominance over his level of competition. As a possession receiver, Fant is fine. He can stretch the field, was money on deep crosses, and is a red zone threat. His skills fall somewhere in the middle on the Ricky Seals-Jones-to-Jordan Reed spectrum. He\\u2019s not a good blocker and I saw him jump for no reason on one catch and drop another in three games. In a passing league, he\\u2019s a valuable TE but he might be one-dimensional. He\\u2019ll be a good to great TE in fantasy by his second year with his ceiling decided by his QB. \\n\\nI didn\\u2019t love Drew Lock (1) on film. He\\u2019s athletic with good size and a great arm, and played pretty well in the SEC. However, he sees ghosts, makes too many fade-away throws, and is slow to process information. I can see the delay of games in his future. Although he is pretty accurate which is my No. 1 most important trait for QBs. Hmmm.\\n\\n4. Packers \\u2013 See Pick 12 \\n\\n**5.** **Eagles \\u2013 Andre Dillard \\u2013 2** \\n\\nPredicting Andre Dillard\\u2019s career comes down to one question: Can finesse-first work in the NFL? Dillard is smart with great feet. He just may not be physical or nasty enough to be a franchise LT. It\\u2019s also important to remember that while skill positions have to make a tough transition from Air Raid offenses, OL must basically re-learn everything as well. He got whooped at the Senior Bowl by the Texas DE. He has the tools to make the jump but there are more questions than answers here. Jumping over Houston to get Wentz\\u2019s next blindside protector might actually bite the Eagles because Tytus Howard is actually better. \\n\\n**6.** **Texans \\u2013 Tytus Howard - 4** \\n\\nScouting Howard is very simple. He kick-slides well, moves well, and needs to get stronger. He can handle speed. Some OL have quirks where they play better on one side, so I hope that\\u2019s not the case with Howard, because he played RT at Alabama State and the Senior Bowl. He gets into stalemates too much in the run game but he handled everything Auburn threw at him in terms of speed and power rushers and his game translates to the pros in a big way. I think he has more upside than Dillard. \\n\\nCoincidentally, their 5th-rounder, Texas DE Charles Omenihu (3) whooped Andre Dillard at the Senior Bowl and has all the tools of a steal. \\n\\n7. Raiders \\u2013 See Pick 4 \\n\\n**8.** **Ravens \\u2013 Marquise Brown \\u2013 4** \\n\\nBrown to the Ravens is very interesting. On one hand, he was the No. 8 player on my Big Board. On the other hand, using a first on a WR in an offense that wants to throw less than 20 times a game is head-scratching. I loved Lamar Jackson as a prospect last year, but he\\u2019ll have to make gigantic, unprecedented strides as a passer for Brown to reach his potential. \\n\\nOne of the keys to route-running is avoiding contact while still executing your assignment. This is obvious in the form of press coverage at the LOS, and it\\u2019s very easy to evaluate effective press releases. The average football fan might not notice what happens mid-route on secondary releases, which is the move or plan a receiver executes to get off a collision by a defender. The fact that Brown doesn\\u2019t get touched on his secondary or LOS releases epitomizes why I love this player\\u2019s game. Advanced scouting term: he\\u2019s fast. Also, he\\u2019s quick. His deep threat prowess has contributed to two QBs going first overall. He\\u2019s terrific after the catch. He\\u2019s smooth in and out of his breaks and comes downhill on his post curls beautifully. There are two concerns. 1) He gets literally tossed around like a rag doll. And 2) He had three drops against Texas. Evaluating college performance, the three drops were bad and his position coach should grade him negatively. But if you watch the three drops closely, and all of his catches, his hand positioning and coordination is pretty much perfect \\u2013 the CB on Texas made a couple of nice plays and on the deep post, his small hands just couldn\\u2019t squeeze it over his opposite shoulder. His hands were still positioned correctly, which is a pro trait that translates. DeSean Jackson has shown us that thin speedsters can stay healthy, but Brown already struggling with injuries is concerning. If he stays healthy, he\\u2019ll be a star and have a T.Y./DJax career. When a prospect\\u2019s only issue is size, I always take him (Tarik Cohen!).\\n\\n9. Skins \\u2013 See Pick 15 \\n\\n10. Raiders \\u2013 I told you before, go to 4\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmz7qr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E1.\\u003C/strong\\u003E \\u003Cstrong\\u003EVikings \\u2013 Garrett Bradbury \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u2019t like picking this many 2s in the teens, but these were the guys I was down on a bit and all of them have fairly high floors so I\\u2019m reluctant to pick 1s. It\\u2019s simply very rare than interior OL is drafted in the teens and doesn\\u2019t end up at least being solid. Still, I had Bradbury ranked 49th on my Big Board. His tape was that of an average college OL. He struggled to get movement in the run game. He was fine in pass protection. Against Michigan, he was bench pressed and pushed back multiple times by LB #35. It was jarring. Even in a zone scheme, getting moved back at center against LBs is a red flag for me. If I\\u2019m taking a center in the first round I want Travis Frederick or Ryan Kelly \\u2013 technicians who also have the power to move people. Bradbury was a fine college player in an offense with a lot of quick game reps, especially against Clemson, but I see his lack of strength at the POA as a major flaw. And it\\u2019s not like he\\u2019s Ryan Kelly in terms of technique. Athleticism and intelligence are great qualities, but if you\\u2019re spending the 18th overall pick on a center, he better have more than that. Bradbury doesn\\u2019t. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E2.\\u003C/strong\\u003E \\u003Cstrong\\u003ETitans \\u2013 Jeffrey Simmons \\u2013 3\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have no idea why ESPN handled the Simmons pick the way they did. It was one of the most bizarre NFL Draft segments I\\u2019ve ever seen. And the worst part is I don\\u2019t think they showed ONE SECOND of him playing football. So odd. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u2019t think Simmons\\u2019 film showed the best player in the draft as some said. He was the 23rd ranked player on my board before I knew about his character questions. Injuries factored in slightly for me. He\\u2019s got everything you want in a dominant DL, but there were some really bad stretches on film. He struggled vs double teams against Florida, on one rep stopping his feet and getting driven back literally 7 yards before flailing his arm in a feeble tackle attempt. He\\u2019ll lean too much and get caught out of position. He\\u2019ll stand straight up. There were flashes of brilliance, and if he can make some technique changes to mix with his strength, he can be a factor inside in the NFL. He\\u2019s tough to reach in the run game and makes plays. Really good college player who needs to work that much harder to up his game for the next level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E3.\\u003C/strong\\u003E \\u003Cstrong\\u003EBroncos \\u2013 Noah Fant \\u2013 3\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is one glaring takeaway from Fant\\u2019s film, and I\\u2019m surprised I haven\\u2019t read it anywhere: He doesn\\u2019t break ANY tackles. Breaking tackles isn\\u2019t exactly a hugely important skill for TEs in the NFL, but it speaks to a lack of dominance over his level of competition. As a possession receiver, Fant is fine. He can stretch the field, was money on deep crosses, and is a red zone threat. His skills fall somewhere in the middle on the Ricky Seals-Jones-to-Jordan Reed spectrum. He\\u2019s not a good blocker and I saw him jump for no reason on one catch and drop another in three games. In a passing league, he\\u2019s a valuable TE but he might be one-dimensional. He\\u2019ll be a good to great TE in fantasy by his second year with his ceiling decided by his QB. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI didn\\u2019t love Drew Lock (1) on film. He\\u2019s athletic with good size and a great arm, and played pretty well in the SEC. However, he sees ghosts, makes too many fade-away throws, and is slow to process information. I can see the delay of games in his future. Although he is pretty accurate which is my No. 1 most important trait for QBs. Hmmm.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EPackers \\u2013 See Pick 12 \\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E5.\\u003C/strong\\u003E \\u003Cstrong\\u003EEagles \\u2013 Andre Dillard \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPredicting Andre Dillard\\u2019s career comes down to one question: Can finesse-first work in the NFL? Dillard is smart with great feet. He just may not be physical or nasty enough to be a franchise LT. It\\u2019s also important to remember that while skill positions have to make a tough transition from Air Raid offenses, OL must basically re-learn everything as well. He got whooped at the Senior Bowl by the Texas DE. He has the tools to make the jump but there are more questions than answers here. Jumping over Houston to get Wentz\\u2019s next blindside protector might actually bite the Eagles because Tytus Howard is actually better. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E6.\\u003C/strong\\u003E \\u003Cstrong\\u003ETexans \\u2013 Tytus Howard - 4\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScouting Howard is very simple. He kick-slides well, moves well, and needs to get stronger. He can handle speed. Some OL have quirks where they play better on one side, so I hope that\\u2019s not the case with Howard, because he played RT at Alabama State and the Senior Bowl. He gets into stalemates too much in the run game but he handled everything Auburn threw at him in terms of speed and power rushers and his game translates to the pros in a big way. I think he has more upside than Dillard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECoincidentally, their 5th-rounder, Texas DE Charles Omenihu (3) whooped Andre Dillard at the Senior Bowl and has all the tools of a steal. \\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ERaiders \\u2013 See Pick 4\\u003Cbr/\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E8.\\u003C/strong\\u003E \\u003Cstrong\\u003ERavens \\u2013 Marquise Brown \\u2013 4\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBrown to the Ravens is very interesting. On one hand, he was the No. 8 player on my Big Board. On the other hand, using a first on a WR in an offense that wants to throw less than 20 times a game is head-scratching. I loved Lamar Jackson as a prospect last year, but he\\u2019ll have to make gigantic, unprecedented strides as a passer for Brown to reach his potential. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of the keys to route-running is avoiding contact while still executing your assignment. This is obvious in the form of press coverage at the LOS, and it\\u2019s very easy to evaluate effective press releases. The average football fan might not notice what happens mid-route on secondary releases, which is the move or plan a receiver executes to get off a collision by a defender. The fact that Brown doesn\\u2019t get touched on his secondary or LOS releases epitomizes why I love this player\\u2019s game. Advanced scouting term: he\\u2019s fast. Also, he\\u2019s quick. His deep threat prowess has contributed to two QBs going first overall. He\\u2019s terrific after the catch. He\\u2019s smooth in and out of his breaks and comes downhill on his post curls beautifully. There are two concerns. 1) He gets literally tossed around like a rag doll. And 2) He had three drops against Texas. Evaluating college performance, the three drops were bad and his position coach should grade him negatively. But if you watch the three drops closely, and all of his catches, his hand positioning and coordination is pretty much perfect \\u2013 the CB on Texas made a couple of nice plays and on the deep post, his small hands just couldn\\u2019t squeeze it over his opposite shoulder. His hands were still positioned correctly, which is a pro trait that translates. DeSean Jackson has shown us that thin speedsters can stay healthy, but Brown already struggling with injuries is concerning. If he stays healthy, he\\u2019ll be a star and have a T.Y./DJax career. When a prospect\\u2019s only issue is size, I always take him (Tarik Cohen!).\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ESkins \\u2013 See Pick 15 \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERaiders \\u2013 I told you before, go to 4\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmz7qr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171845.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmz2hg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gpngc\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557142917.0, \"send_replies\": true, \"parent_id\": \"t3_blb203\", \"score\": 1, \"author_fullname\": \"t2_6fxy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pt. 2\\n\\n\\u0026#x200B;\\n\\n**13.** **Dolphins \\u2013 Christian Wilkins \\u2013 2** \\n\\nChristian Wilkins is another example of evaluating pro traits translating rather than college performance. A storied college winner who inspired on and off the field, Wilkins is a tremendous young man with a bright future. However, I think his character and intelligence inflated his stock a little too much. Against Mississippi State he was mostly a ghost, and in other games had long stretches of invisible or even just bad film, with the occasional splash play. He\\u2019s the poster child for my Reverse Planet Theory, which cautions against the allure of quick, penetrating, 3-techs. There are plays on film where his short arms leave him exposed, struggling to post against double teams and getting reached on zone runs. When he has the quickness advantage against low-skilled ACC guards, he looks great as a penetrator, and to be fair his quicks are terrific. But leverage and quicks can only take a short-armed, decently talented 3-Tech so far in the pros. I don\\u2019t think he lives up to his draft slot.\\n\\n \\n\\nAs for the Rosen trade, it wasn\\u2019t awful because they gave up a late 2 to take a shot on talent, but as a vocal Rosen detractor I don\\u2019t think it will help them. Without much talent on the roster, there is a legitimate chance they end up taking a top-5 QB next year and Rosen gets dealt again. There has been a weird fascination with Rosen since last offseason, but I never liked him much as a prospect and gave him a 2 last year. My reasons can be found in last year\\u2019s review. \\n\\n**14.** **Falcons \\u2013 Chris Lindstrom \\u2013 2** \\n\\nThe Falcons had one of the worst defenses in the NFL last year and decided to spend their first two picks on OL. While they\\u2019ll get Keanu Neal and Deion Jones back from injury, it\\u2019s still head-scratching to not address the D early. I understand building the OL BEFORE it becomes an issue, but I don\\u2019t think they made the right pick at No. 14. \\n\\nAfter watching his film, I ranked Lindstrom 44th on my Big Board and noted that he was an athletic guard who didn\\u2019t have enough power to play in anything other than a zone-heavy scheme. He\\u2019ll be fine getting to the second level and staying in front of penetrating 3-techs, and clearly I\\u2019m missing something with him going this high. Staying true to my eval, I expect him to get pushed back routinely by bigger DL in both the run and pass game. I can see inside pressure now. He takes the initial contact at the POA too much. With the right S\\u0026C regimen (he benched 25 reps, not bad), he could get stronger. They did need a guard. I want to trust the Falcons, but with Dexter Lawrence and others on the board I think they made a mistake. \\n\\nI scouted McGary (3) after the draft and I liked his game on film. He did some impressive things in the run game on double-teams against Ohio State. I think he fits better in a gap scheme where he can use his size and power, which makes the Lindstrom pick more head-scratching. We all know his value will be determined mainly by how he holds up against speed rushers at RT. Short arms, limited lateral quickness, and some bad beats by pure speed on film give me pause. I like him better than Lindstrom but he projects as a plus run blocker with struggles vs speed rushers in the passing game. He has the demeanor of a starting NFL OL so I\\u2019ll go with a 3.\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmz2hg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPt. 2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E13.\\u003C/strong\\u003E \\u003Cstrong\\u003EDolphins \\u2013 Christian Wilkins \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChristian Wilkins is another example of evaluating pro traits translating rather than college performance. A storied college winner who inspired on and off the field, Wilkins is a tremendous young man with a bright future. However, I think his character and intelligence inflated his stock a little too much. Against Mississippi State he was mostly a ghost, and in other games had long stretches of invisible or even just bad film, with the occasional splash play. He\\u2019s the poster child for my Reverse Planet Theory, which cautions against the allure of quick, penetrating, 3-techs. There are plays on film where his short arms leave him exposed, struggling to post against double teams and getting reached on zone runs. When he has the quickness advantage against low-skilled ACC guards, he looks great as a penetrator, and to be fair his quicks are terrific. But leverage and quicks can only take a short-armed, decently talented 3-Tech so far in the pros. I don\\u2019t think he lives up to his draft slot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for the Rosen trade, it wasn\\u2019t awful because they gave up a late 2 to take a shot on talent, but as a vocal Rosen detractor I don\\u2019t think it will help them. Without much talent on the roster, there is a legitimate chance they end up taking a top-5 QB next year and Rosen gets dealt again. There has been a weird fascination with Rosen since last offseason, but I never liked him much as a prospect and gave him a 2 last year. My reasons can be found in last year\\u2019s review. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E14.\\u003C/strong\\u003E \\u003Cstrong\\u003EFalcons \\u2013 Chris Lindstrom \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Falcons had one of the worst defenses in the NFL last year and decided to spend their first two picks on OL. While they\\u2019ll get Keanu Neal and Deion Jones back from injury, it\\u2019s still head-scratching to not address the D early. I understand building the OL BEFORE it becomes an issue, but I don\\u2019t think they made the right pick at No. 14. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter watching his film, I ranked Lindstrom 44th on my Big Board and noted that he was an athletic guard who didn\\u2019t have enough power to play in anything other than a zone-heavy scheme. He\\u2019ll be fine getting to the second level and staying in front of penetrating 3-techs, and clearly I\\u2019m missing something with him going this high. Staying true to my eval, I expect him to get pushed back routinely by bigger DL in both the run and pass game. I can see inside pressure now. He takes the initial contact at the POA too much. With the right S\\u0026amp;C regimen (he benched 25 reps, not bad), he could get stronger. They did need a guard. I want to trust the Falcons, but with Dexter Lawrence and others on the board I think they made a mistake. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI scouted McGary (3) after the draft and I liked his game on film. He did some impressive things in the run game on double-teams against Ohio State. I think he fits better in a gap scheme where he can use his size and power, which makes the Lindstrom pick more head-scratching. We all know his value will be determined mainly by how he holds up against speed rushers at RT. Short arms, limited lateral quickness, and some bad beats by pure speed on film give me pause. I like him better than Lindstrom but he projects as a plus run blocker with struggles vs speed rushers in the passing game. He has the demeanor of a starting NFL OL so I\\u2019ll go with a 3.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmz2hg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171717.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bl9iu1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmpp7m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"XARFIGHTER\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557132732.0, \"send_replies\": true, \"parent_id\": \"t3_bl9iu1\", \"score\": 1, \"author_fullname\": \"t2_9515o\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Am I missing something here? \\n\\n\\u0026#x200B;\\n\\nBy simply removing this box =\\n\\n**Advanced** remains at 1 input from {X/A} to {start}\\n\\n**Edit lineup** goes from 2 inputs {down\\u003EX/A} to no input {already there}\\n\\nAnd **Go back** goes from 3 inputs {down\\u003Edown\\u003EX/A} to 1 input {O/B}\\n\\n\\u0026#x200B;\\n\\nI can't attribute any functional value to this box besides either just unnecessarily delaying the player, or the potential psychological effect it has by prompting the player and essentially saying \\\"come at me brah?\\\" to tilted players. Maybe that's a stretch but surely there must be a point to having this menu? \\n\\n\\u0026#x200B;\\n\\nI'm simply curious as to why developers are paid to spend time on things like this that seem to detract from user experience over simple additions like comprehensive search filters or logical and straightforward menus - something that would likely save thousands of collective hours currently wasted scrolling and tapping.\", \"link_title\": \"test1234\", \"author_flair_css_class\": null, \"name\": \"t1_emmpp7m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAm I missing something here? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy simply removing this box =\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAdvanced\\u003C/strong\\u003E remains at 1 input from {X/A} to {start}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit lineup\\u003C/strong\\u003E goes from 2 inputs {down\\u0026gt;X/A} to no input {already there}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd \\u003Cstrong\\u003EGo back\\u003C/strong\\u003E goes from 3 inputs {down\\u0026gt;down\\u0026gt;X/A} to 1 input {O/B}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can\\u0026#39;t attribute any functional value to this box besides either just unnecessarily delaying the player, or the potential psychological effect it has by prompting the player and essentially saying \\u0026quot;come at me brah?\\u0026quot; to tilted players. Maybe that\\u0026#39;s a stretch but surely there must be a point to having this menu? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m simply curious as to why developers are paid to spend time on things like this that seem to detract from user experience over simple additions like comprehensive search filters or logical and straightforward menus - something that would likely save thousands of collective hours currently wasted scrolling and tapping.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bl9iu1/test1234/emmpp7m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bl9iu1/test1234/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/pzt3f8hqyjw21.png\", \"created\": 1557161532.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emjwxrc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557053695.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"# Custom Content\\n\\n## Disclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\n\\n## Names with u/ are from reddit. Names without are probably from the overwatch forum.\\n\\n## If you like a mode, go to the original post and like or comment. Let them know you appreciate it.\\n\\n## If you want to add a mode to the list, just PM me and I'll add it eventually.\\n\\n## Fun Modes\\n\\n* RGH0D - High Speed: FFA - u/rbnsky\\n* SF1R2 - High Speed Gun Game - u/rbnsky\\n* K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n* 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n* RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n* EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n* N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n* 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n* M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n* T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n* NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n* R4DWM - BloodBorne in Overwatch - u/Elodeona\\n* EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n* E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n* FHQZ4 - Bridgette Pong - u/AJ_Black\\n* KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n* 53J3R - Shooters Vs Stabbers - Lilsis\\n* FQ5N8 - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n* RY95K - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray\\n* BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n* BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n* QH5SP - PVE Horde Mode - u/Jechto\\n* 5KCP4 - Dva Eject into Random Ult - u/qbbftw \\\\- ORIGINAL IDEA FROM: u/Woolin\\n* YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n* 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n* 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n* MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n* SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n* VJCT2 - Chase the Snowmen - u/andygmb\\n* 6PC67 - Take Hero of Kills - u/CrenderMutant\\n\\n## Training Modes\\n\\n* RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n* CPFKM - Advanced Training Mode - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n\\n* QKAAM - Placeable Cameras - u/ItsDeltin\\n* ZW1PY - Scoreboard - u/Paf13\\n* 9EKZB - Scoreboard - u/caldoran2\\n* 6WXRW - Navi - u/andygmb \\\\- u/Lymbow\\n* WV5HH - Bunny Hop - u/TyzoneLyraNature\\n* QESP4 - Walls - u/Zezombye\\n* CQ00S - Elemental Aspects - u/poststakhanovist\\n\\n## Hero Ideas\\n\\n* XJZB1 - Orisa AoE Push - AlexEptit\\n* H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n* BE2J7 - Portal Gun - u/Lymbow \\\\- u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emjwxrc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECustom Content\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EDisclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ENames with u/ are from reddit. Names without are probably from the overwatch forum.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EIf you like a mode, go to the original post and like or comment. Let them know you appreciate it.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EIf you want to add a mode to the list, just PM me and I\\u0026#39;ll add it eventually.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EFQ5N8 - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERY95K - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECPFKM - Advanced Training Mode - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emjwxrc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557082495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1556967649.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emh4ksb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556965703.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## My Take on Workshop Improvements\\n\\n## Coding Improvements need to happen\\n\\n## Before adding all sorts of new methods and helpful features, it is probably best if the Workshop becomes easier to use.\\n\\n* If it is a power-user tool, give power-user style tools.\\n* If it is for the general public, have better error-handling and bug commenting.\\n* If it is for both, give all the above. Please.\\n\\n## [Easy](#s) Coding fixes:\\n\\n* Quick saving - Just not having to go to a seperate screen to save the project\\n* Backing-up files while saving - Preventing loss of data\\n* Adding else statements\\n* Displaying error logs - Such as, your code is too big, remove some rules before saving\\n\\n## Hard but [Worthwhile](#s) Coding fixes:\\n\\n* Adding the ability to upload json/xml or some sort of file into the editor and have the rules generated there - This would allow fans to create tools to generate this json/xml, meaning you won't need to make an IDE, fans will probably make their own\\n* Adding Functions\\n\\n### A New Game entirely should probably be next\\n##### This sounds crazy, but hear me out. \\n##### Imagine OverWorkshop, a seperate game that is just Overwatch Workshop with extended mechanics\\n- If a separate game, they can optimize with the engine to make it work better for custom projects without worrying about messing with qp and comp. \\n- If a separate game, they can monetize differently. They could work directly with creators, ask people to pay for access to this new game, use a monthly subscription, etc.\\n- If monetized differently, Blizzard has an incentive to help the fanbase as much as possible. Currently, Workshop will not directly make Blizzard money. Sure, people may come back to the game, but how many of those people buy loot boxes? Or how many new people will buy the game?\\n- If a separate game, they could build the game with lots of storage for custom rule-sets.\\n- If a separate game, they can add limited time access skins/emotes/maps without directly affecting their core audience who are following the normal Overwatch Loot Box monetization method. \\n- If a separate game, they can design from the ground up, instead of extending original functionality. This gives a lot more flexibility.\\n- If a separate game, they can draw in a wider market. Currently, only people who like Overwatch and like Content Creation will use Workshop. With enough of a spin, Blizzard could get way more customers with: OverWorkshop, build your own games using Overwatches mechanics as a basis.\\n- If a separate game, they can release the source code to be modded. At least, if they design it right.\\n##### What I'm saying is: If a separate game, they can create a better experience, and they can earn more money. Win-win. We get something awesome, they get money.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emh4ksb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EMy Take on Workshop Improvements\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ECoding Improvements need to happen\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EBefore adding all sorts of new methods and helpful features, it is probably best if the Workshop becomes easier to use.\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf it is a power-user tool, give power-user style tools.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf it is for the general public, have better error-handling and bug commenting.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf it is for both, give all the above. Please.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\"\\u003EEasy\\u003C/a\\u003E Coding fixes:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQuick saving - Just not having to go to a seperate screen to save the project\\u003C/li\\u003E\\n\\u003Cli\\u003EBacking-up files while saving - Preventing loss of data\\u003C/li\\u003E\\n\\u003Cli\\u003EAdding else statements\\u003C/li\\u003E\\n\\u003Cli\\u003EDisplaying error logs - Such as, your code is too big, remove some rules before saving\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHard but \\u003Ca href=\\\"#s\\\"\\u003EWorthwhile\\u003C/a\\u003E Coding fixes:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAdding the ability to upload json/xml or some sort of file into the editor and have the rules generated there - This would allow fans to create tools to generate this json/xml, meaning you won\\u0026#39;t need to make an IDE, fans will probably make their own\\u003C/li\\u003E\\n\\u003Cli\\u003EAdding Functions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EA New Game entirely should probably be next\\u003C/h3\\u003E\\n\\n\\u003Ch5\\u003EThis sounds crazy, but hear me out.\\u003C/h5\\u003E\\n\\n\\u003Ch5\\u003EImagine OverWorkshop, a seperate game that is just Overwatch Workshop with extended mechanics\\u003C/h5\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf a separate game, they can optimize with the engine to make it work better for custom projects without worrying about messing with qp and comp. \\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can monetize differently. They could work directly with creators, ask people to pay for access to this new game, use a monthly subscription, etc.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf monetized differently, Blizzard has an incentive to help the fanbase as much as possible. Currently, Workshop will not directly make Blizzard money. Sure, people may come back to the game, but how many of those people buy loot boxes? Or how many new people will buy the game?\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they could build the game with lots of storage for custom rule-sets.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can add limited time access skins/emotes/maps without directly affecting their core audience who are following the normal Overwatch Loot Box monetization method. \\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can design from the ground up, instead of extending original functionality. This gives a lot more flexibility.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can draw in a wider market. Currently, only people who like Overwatch and like Content Creation will use Workshop. With enough of a spin, Blizzard could get way more customers with: OverWorkshop, build your own games using Overwatches mechanics as a basis.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can release the source code to be modded. At least, if they design it right.\\n##### What I\\u0026#39;m saying is: If a separate game, they can create a better experience, and they can earn more money. Win-win. We get something awesome, they get money.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emh4ksb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556994503.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emh0mkm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556958465.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Future Features People Want (Compiled from Blizzard forums)\\n#### Ease of Coding\\n- [Text-based Editor/IDE/Ability to Import File](#s \\\"Anything for more coding speed\\\")\\n- Conditionals\\n- Functions\\n- Hotkey Saves/Auto Saves\\n- Hotkey Undo\\n- Events/Statuses for every [possible thing](#s \\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\")\\n- [Classes/Object Types/Enums](#s \\\"Bad class objects hurt\\\")\\n- [Multiple-Script Compilation](#s \\\"I make a piece, you make a piece, we compile the codes together\\\")\\n- Disable/Enable Rule options\\n- Custom Strings/Variable Names\\n- Debugger with Game Running\\n\\t\\n####Importation of art assets\\n- Custom Skins\\n- Custom Emotes\\n- Custom Hero Models\\n- Custom Animations\\n\\t\\n#### Bigger Creations\\n- Rule Limit Increase\\n- Effect Increase\\n- More Presets Saves\\n\\n#### Recognition of Good Modes\\n- Best-of-Workshop Arcade Mode\\n- Popularity contests between [similar game-modes](#s \\\"See which gun game people like best\\\")\\n\\t\\n#### Map Editor\\n- Ability to create gameplay zones\\n- Change Lighting\\n- Custom Maps\\n\\t\\n#### Hero Editor\\n- Being able to give [one hero's ability to another hero](#s \\\"Tracer with Piledriver\\\")\\n- More Control over [Effects](#s \\\"On-destruct, custom IDs, etc\\\")\\n- Control over [hero-specific variables](#s \\\"Number of Symmetra Turrets, headshot dmg, passives\\\")\\n- Being able to use Arcade Enemies/All Models\\n- Custom Cooldowns/Modify Cooldowns\\n- Control over animations\\n- Control over fire/POTG worthy actions\\n\\t\\t\\n#### Object Editor\\n- Deployables\\n- Weapon Qualities\\n- Collisions\\n- Objectives/Payloads\\n- Access to Old Assets/Abilities\\n- Custom Effect Durations\\n- Custom Conditions\\n- Custom Physics Engine\\n\\t\\n#### AI Editor\\n- PVE Mode Access\\n- Ease of Making Bots\\n- Bots in any Mode\\n\\t\\t\\n#### Gameplay Editor\\n- Spawn Points\\n- Switch Teams\\n- Team Size\\n\\t\\n####Hosting Games\\n- Being able to host Workshop Games locally\\n\\t\\n#### Workshop-Specific Assets\\n- Extra Animations\\n- More effects\\n- [Non-Graphics intensive testing map](#s \\\"White Room\\\")\\n- [Arena map](#s \\\"Just a square\\\")\\n\\t\\t\\n#### More Recognition of Dan and Keith\\n\\t\\n## Common Complaints\\n#### It's not a Map Editor.\\n- No, it isn't. \\n\\t\\n#### It's not a Ranked Fix.\\n- No, it isn't.\\n\\t\\t\\n#### Lier1, you made me sound stupid in the complaint section.\\n- Correct.\\n\\t\\n#### Lier1, you don't care about my complaints because I'm not a filthy casual.\\n- Correct.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emh0mkm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFuture Features People Want (Compiled from Blizzard forums)\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EEase of Coding\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Anything for more coding speed\\\"\\u003EText-based Editor/IDE/Ability to Import File\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EConditionals\\u003C/li\\u003E\\n\\u003Cli\\u003EFunctions\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Saves/Auto Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Undo\\u003C/li\\u003E\\n\\u003Cli\\u003EEvents/Statuses for every \\u003Ca href=\\\"#s\\\" title=\\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\"\\u003Epossible thing\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Bad class objects hurt\\\"\\u003EClasses/Object Types/Enums\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"I make a piece, you make a piece, we compile the codes together\\\"\\u003EMultiple-Script Compilation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDisable/Enable Rule options\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Strings/Variable Names\\u003C/li\\u003E\\n\\u003Cli\\u003EDebugger with Game Running\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EImportation of art assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECustom Skins\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Emotes\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Hero Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Animations\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EBigger Creations\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERule Limit Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EEffect Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Presets Saves\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ERecognition of Good Modes\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBest-of-Workshop Arcade Mode\\u003C/li\\u003E\\n\\u003Cli\\u003EPopularity contests between \\u003Ca href=\\\"#s\\\" title=\\\"See which gun game people like best\\\"\\u003Esimilar game-modes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMap Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAbility to create gameplay zones\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Lighting\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Maps\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHero Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to give \\u003Ca href=\\\"#s\\\" title=\\\"Tracer with Piledriver\\\"\\u003Eone hero\\u0026#39;s ability to another hero\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Control over \\u003Ca href=\\\"#s\\\" title=\\\"On-destruct, custom IDs, etc\\\"\\u003EEffects\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over \\u003Ca href=\\\"#s\\\" title=\\\"Number of Symmetra Turrets, headshot dmg, passives\\\"\\u003Ehero-specific variables\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBeing able to use Arcade Enemies/All Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Cooldowns/Modify Cooldowns\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over animations\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over fire/POTG worthy actions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EObject Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDeployables\\u003C/li\\u003E\\n\\u003Cli\\u003EWeapon Qualities\\u003C/li\\u003E\\n\\u003Cli\\u003ECollisions\\u003C/li\\u003E\\n\\u003Cli\\u003EObjectives/Payloads\\u003C/li\\u003E\\n\\u003Cli\\u003EAccess to Old Assets/Abilities\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Effect Durations\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Conditions\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Physics Engine\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EAI Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPVE Mode Access\\u003C/li\\u003E\\n\\u003Cli\\u003EEase of Making Bots\\u003C/li\\u003E\\n\\u003Cli\\u003EBots in any Mode\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EGameplay Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESpawn Points\\u003C/li\\u003E\\n\\u003Cli\\u003ESwitch Teams\\u003C/li\\u003E\\n\\u003Cli\\u003ETeam Size\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHosting Games\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to host Workshop Games locally\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWorkshop-Specific Assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EExtra Animations\\u003C/li\\u003E\\n\\u003Cli\\u003EMore effects\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"White Room\\\"\\u003ENon-Graphics intensive testing map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a square\\\"\\u003EArena map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMore Recognition of Dan and Keith\\u003C/h4\\u003E\\n\\n\\u003Ch2\\u003ECommon Complaints\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Map Editor.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Ranked Fix.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you made me sound stupid in the complaint section.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you don\\u0026#39;t care about my complaints because I\\u0026#39;m not a filthy casual.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emh0mkm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556987265.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emgwjcc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556951769.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Future Features People Want (Compiled from Blizzard forums)\\n####*Disclaimer*: This isn't everything, but it's a good high-level sampling. I think. Comment with more.\\n\\tEase of Coding\\n\\t\\t[Text-based Editor/IDE/Ability to Import File](#s \\\"Anything for more coding speed\\\")\\n\\t\\tConditionals\\n\\t\\tFunctions\\n\\t\\tHotkey Saves/Auto Saves\\n\\t\\tHotkey Undo\\n\\t\\tEvents/Statuses for every [possible thing](#s \\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\")\\n\\t\\t[Classes/Object Types/Enums](#s \\\"Bad class objects hurt\\\")\\n\\t\\t[Multiple-Script Compilation](#s \\\"I make a piece, you make a piece, we compile the codes together\\\")\\n\\t\\tDisable/Enable Rule options\\n\\t\\tCustom Strings/Variable Names\\n\\t\\tDebugger with Game Running\\n\\t\\n\\tImporting art assets\\n\\t\\tCustom Skins\\n\\t\\tCustom Emotes\\n\\t\\tCustom Hero Models\\n\\t\\tCustom Animations\\n\\t\\n\\tBigger Creations\\n\\t\\tRule Limit Increase\\n\\t\\tEffect Increase\\n\\t\\tMore Presets Saves\\n\\t\\n\\tRecognition of Good Modes\\n\\t\\tBest-of-Workshop Arcade Mode\\n\\t\\tPopularity contests between [similar game-modes](#s \\\"See which gun game people like best\\\")\\n\\t\\n\\tMap Editor\\n\\t\\tAbility to create gameplay zones\\n\\t\\tChange Lighting\\n\\t\\tCustom Maps\\n\\t\\n\\tHero Editor\\n\\t\\tBeing able to give [one hero's ability to another hero](#s \\\"Tracer with Piledriver\\\")\\n\\t\\tMore Control over [Effects](#s \\\"On-destruct, custom IDs, etc\\\")\\n\\t\\tControl over [hero-specific variables](#s \\\"Number of Symmetra Turrets, headshot dmg, passives\\\")\\n\\t\\tBeing able to use Arcade Enemies/All Models\\n\\t\\tCustom Cooldowns/Modify Cooldowns\\n\\t\\tControl over animations\\n\\t\\tControl over fire/POTG worthy actions\\n\\t\\t\\n\\tObject Editor\\n\\t\\tDeployables\\n\\t\\tWeapon Qualities\\n\\t\\tCollisions\\n\\t\\tObjectives/Payloads\\n\\t\\tAccess to Old Assets/Abilities\\n\\t\\tCustom Effect Durations\\n\\t\\tCustom Conditions\\n\\t\\tCustom Physics Engine\\n\\t\\n\\tAI Editor\\n\\t\\tPVE Mode Access\\n\\t\\tEase of Making Bots\\n\\t\\tBots in any Mode\\n\\t\\t\\n\\tGameplay Editor\\n\\t\\tSpawn Points\\n\\t\\tSwitch Teams\\n\\t\\tTeam Size\\n\\t\\n\\tHosting Games\\n\\t\\tBeing able to host Workshop Games locally\\n\\t\\n\\tWorkshop-Specific Assets\\n\\t\\tExtra Animations\\n\\t\\tMore effects\\n\\t\\t[Non-Graphics intensive testing map](#s \\\"White Room\\\")\\n\\t\\t[Arena map](#s \\\"Just a square\\\")\\n\\t\\t\\n\\tMore Recognition of Dan and Keith\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emgwjcc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFuture Features People Want (Compiled from Blizzard forums)\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003E\\u003Cem\\u003EDisclaimer\\u003C/em\\u003E: This isn\\u0026#39;t everything, but it\\u0026#39;s a good high-level sampling. I think. Comment with more.\\u003C/h4\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EEase of Coding\\n [Text-based Editor/IDE/Ability to Import File](#s \\u0026quot;Anything for more coding speed\\u0026quot;)\\n Conditionals\\n Functions\\n Hotkey Saves/Auto Saves\\n Hotkey Undo\\n Events/Statuses for every [possible thing](#s \\u0026quot;Melee kills, dva in/out of mech, on hollywood map, etc.\\u0026quot;)\\n [Classes/Object Types/Enums](#s \\u0026quot;Bad class objects hurt\\u0026quot;)\\n [Multiple-Script Compilation](#s \\u0026quot;I make a piece, you make a piece, we compile the codes together\\u0026quot;)\\n Disable/Enable Rule options\\n Custom Strings/Variable Names\\n Debugger with Game Running\\n\\nImporting art assets\\n Custom Skins\\n Custom Emotes\\n Custom Hero Models\\n Custom Animations\\n\\nBigger Creations\\n Rule Limit Increase\\n Effect Increase\\n More Presets Saves\\n\\nRecognition of Good Modes\\n Best-of-Workshop Arcade Mode\\n Popularity contests between [similar game-modes](#s \\u0026quot;See which gun game people like best\\u0026quot;)\\n\\nMap Editor\\n Ability to create gameplay zones\\n Change Lighting\\n Custom Maps\\n\\nHero Editor\\n Being able to give [one hero\\u0026#39;s ability to another hero](#s \\u0026quot;Tracer with Piledriver\\u0026quot;)\\n More Control over [Effects](#s \\u0026quot;On-destruct, custom IDs, etc\\u0026quot;)\\n Control over [hero-specific variables](#s \\u0026quot;Number of Symmetra Turrets, headshot dmg, passives\\u0026quot;)\\n Being able to use Arcade Enemies/All Models\\n Custom Cooldowns/Modify Cooldowns\\n Control over animations\\n Control over fire/POTG worthy actions\\n\\nObject Editor\\n Deployables\\n Weapon Qualities\\n Collisions\\n Objectives/Payloads\\n Access to Old Assets/Abilities\\n Custom Effect Durations\\n Custom Conditions\\n Custom Physics Engine\\n\\nAI Editor\\n PVE Mode Access\\n Ease of Making Bots\\n Bots in any Mode\\n\\nGameplay Editor\\n Spawn Points\\n Switch Teams\\n Team Size\\n\\nHosting Games\\n Being able to host Workshop Games locally\\n\\nWorkshop-Specific Assets\\n Extra Animations\\n More effects\\n [Non-Graphics intensive testing map](#s \\u0026quot;White Room\\u0026quot;)\\n [Arena map](#s \\u0026quot;Just a square\\u0026quot;)\\n\\nMore Recognition of Dan and Keith\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emgwjcc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556980569.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emgwhbf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556951688.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Common Complaints\\n#### It's not a Map Editor.\\n- No, it isn't. \\n\\t\\n#### It's not a Ranked Fix.\\n- No, it isn't.\\n\\t\\t\\n#### Lier1, you made me sound stupid in the complaint section.\\n- Correct.\\n\\t\\n#### Lier1, you don't care about my complaints because I'm not a filthy casual.\\n- Correct.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emgwhbf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003ECommon Complaints\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Map Editor.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Ranked Fix.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you made me sound stupid in the complaint section.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you don\\u0026#39;t care about my complaints because I\\u0026#39;m not a filthy casual.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emgwhbf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556980488.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1556951205.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emgv059\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556949805.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#One-Stop Workshop\\n\\n## Workshop FAQ\\n#### What is Overwatch Workshop?\\n- In layman's terms, its just [additional](#s \\\"Many, many additional\\\") features for designing custom games, using more drop-down menus.\\n\\n#### What is the One-Stop Workshop?\\n- \\tThis is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\n-\\tI call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\n\\n#### What is an FAQ?\\n-\\tFrantically Answering Questions!\\n\\n#### How to access the Workshop?\\n-\\tMake sure you have the PTR installed.\\n- \\tPlay \\u003E Game Browser \\u003E Create \\u003E Settings \\u003E Workshop\\n\\n#### What resources does Workshop give us?\\n-\\tCreation of Effects\\n-\\tConditional Changes to Rules\\n-\\tAdding HUD elements\\n-\\tAnd More\\n\\n#### Can you test heroes with workshop?\\n- \\tYesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\n- \\tHowever, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\n-\\tBut, don't fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\n\\n#### Is it a map editor?\\n- \\tNo. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\n\\n#### Do I need to know how to code to use it? Can normal people use it?\\n- \\tNo and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\n\\n#### What presets does it have for me to build off of?\\n- \\tMolten Floor - You set on fire while touching the floor.\\n- \\tOne Ultimate - Elimination mode where you start with your Ultimate, but can't get Ultimate charge.\\n- \\tHide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\n- \\tDouble Jump - Everyone can double jump.\\n- \\tFire Dome - A dome slowly shrinks, limiting the play space. (*Cough* Battle Royale *Cough*)\\n- \\tBalanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\n- \\tMirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\n- \\tZombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\n- \\tHero Gauntlet - Gun Game\\n\\n#### Is it on Console?\\n-\\tNot yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\n-\\tConsole access is part of why there are drop-down menus as the scripting language.\\n\\n#### Who built this?\\n-\\tKeith and Dan, our two buddy devs, in their free time. They have now been labeled [Hero 31 and Hero 32](#s \\\"Dan is 31, fight me\\\") by the reddit community.\\n\\n#### Is this going to get updates?\\n- It has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\n\\n#### Is there a limit to sizes of script/number of objects.\\n- Yes. 64 icons/effects, and some limit to the size of the script. \\n- However, the devs are working to increase these numbers.\\n\\t\\n#Useful Links\\n## Code Storage Sites\\nhttps://dutchdemons.com - u/Marinosbitter\\n\\nhttps://overwatchcustom.games - u/Thriver\\n\\nhttps://overwatchmodding.com/ - u/xSailboats\\n\\t\\n## Discord Channels\\n[OW Scripting](https://discord.gg/9pc4yyE)\\n\\n[Overwatch Workshop](https://discord.gg/qa9vR94)\\n\\n[Elo Hell Workshops](https://discord.gg/U5ARg2Fs)\\n\\n## Youtube Channels\\n#### Mode Creation Help:\\n[SamstaTV](https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g)\\n\\n## Miscellaneous Sites/Posts\\n[List of Flat Areas with few Obstacles](https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/) - u/Zezombye\\n\\n[Workshop Syntax \\u0026 Script Database](https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92) - WyomingMyst\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emgv059\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EOne-Stop Workshop\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EWorkshop FAQ\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EWhat is Overwatch Workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E In layman\\u0026#39;s terms, its just \\u003Ca href=\\\"#s\\\" title=\\\"Many, many additional\\\"\\u003Eadditional\\u003C/a\\u003E features for designing custom games, using more drop-down menus.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat is the One-Stop Workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E This is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\u003C/li\\u003E\\n\\u003Cli\\u003E I call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat is an FAQ?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Frantically Answering Questions!\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHow to access the Workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Make sure you have the PTR installed.\\u003C/li\\u003E\\n\\u003Cli\\u003E Play \\u0026gt; Game Browser \\u0026gt; Create \\u0026gt; Settings \\u0026gt; Workshop\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat resources does Workshop give us?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Creation of Effects\\u003C/li\\u003E\\n\\u003Cli\\u003E Conditional Changes to Rules\\u003C/li\\u003E\\n\\u003Cli\\u003E Adding HUD elements\\u003C/li\\u003E\\n\\u003Cli\\u003E And More\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ECan you test heroes with workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Yesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\u003C/li\\u003E\\n\\u003Cli\\u003E However, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\u003C/li\\u003E\\n\\u003Cli\\u003E But, don\\u0026#39;t fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs it a map editor?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EDo I need to know how to code to use it? Can normal people use it?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat presets does it have for me to build off of?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Molten Floor - You set on fire while touching the floor.\\u003C/li\\u003E\\n\\u003Cli\\u003E One Ultimate - Elimination mode where you start with your Ultimate, but can\\u0026#39;t get Ultimate charge.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\u003C/li\\u003E\\n\\u003Cli\\u003E Double Jump - Everyone can double jump.\\u003C/li\\u003E\\n\\u003Cli\\u003E Fire Dome - A dome slowly shrinks, limiting the play space. (\\u003Cem\\u003ECough\\u003C/em\\u003E Battle Royale \\u003Cem\\u003ECough\\u003C/em\\u003E)\\u003C/li\\u003E\\n\\u003Cli\\u003E Balanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\u003C/li\\u003E\\n\\u003Cli\\u003E Mirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\u003C/li\\u003E\\n\\u003Cli\\u003E Zombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hero Gauntlet - Gun Game\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs it on Console?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Not yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\u003C/li\\u003E\\n\\u003Cli\\u003E Console access is part of why there are drop-down menus as the scripting language.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWho built this?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Keith and Dan, our two buddy devs, in their free time. They have now been labeled \\u003Ca href=\\\"#s\\\" title=\\\"Dan is 31, fight me\\\"\\u003EHero 31 and Hero 32\\u003C/a\\u003E by the reddit community.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs this going to get updates?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs there a limit to sizes of script/number of objects.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYes. 64 icons/effects, and some limit to the size of the script. \\u003C/li\\u003E\\n\\u003Cli\\u003EHowever, the devs are working to increase these numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EUseful Links\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003ECode Storage Sites\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://dutchdemons.com\\\"\\u003Ehttps://dutchdemons.com\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Marinosbitter\\\"\\u003Eu/Marinosbitter\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchcustom.games\\\"\\u003Ehttps://overwatchcustom.games\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Thriver\\\"\\u003Eu/Thriver\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchmodding.com/\\\"\\u003Ehttps://overwatchmodding.com/\\u003C/a\\u003E - \\u003Ca href=\\\"/u/xSailboats\\\"\\u003Eu/xSailboats\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EDiscord Channels\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/9pc4yyE\\\"\\u003EOW Scripting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/qa9vR94\\\"\\u003EOverwatch Workshop\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/U5ARg2Fs\\\"\\u003EElo Hell Workshops\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EYoutube Channels\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EMode Creation Help:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g\\\"\\u003ESamstaTV\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EMiscellaneous Sites/Posts\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/\\\"\\u003EList of Flat Areas with few Obstacles\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92\\\"\\u003EWorkshop Syntax \\u0026amp; Script Database\\u003C/a\\u003E - WyomingMyst\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emgv059/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556978605.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkb0kl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emg7uhl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MineSweeper2048\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556927588.0, \"send_replies\": true, \"parent_id\": \"t3_bkb0kl\", \"score\": 1, \"author_fullname\": \"t2_1a5b92pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"It's a really cool game, see if you can add in different attacks or improve the punch\", \"link_title\": \"My first attempt at making a game in Godot! feedback appreciated and link to the game below.\", \"author_flair_css_class\": null, \"name\": \"t1_emg7uhl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s a really cool game, see if you can add in different attacks or improve the punch\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/emg7uhl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/\", \"report_reasons\": null, \"link_author\": \"raikkhan\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/6wliprr531w21\", \"created\": 1556956388.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkdn1j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emfvztp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Interlake_Olympia\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1556918417.0, \"send_replies\": true, \"parent_id\": \"t3_bkdn1j\", \"score\": 1, \"author_fullname\": \"t2_9gwmh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"# Spurs 2019-2020 Salaries\\n\\n|*Player*|*Position*|*Salary*|*Age*|\\n|:-|:-|:-|:-|\\n|DeMar DeRozan|G|$27,739,975|30|\\n|LaMarcus Aldridge|F|$26,000,000|34|\\n|Patty Mills|G|$12,428,571|31|\\n|Davis Bertans|F|$7,000,000|26|\\n|Marco Belinelli|G|$5,846,154|33|\\n|Jakob Poeltl|C|$3,754,886|23|\\n|Bryn Forbes|G|$2,875,000|26|\\n|Lonnie Walker IV|G|$2,760,480|20|\\n|Dejounte Murray|G|$2,321,735|23|\\n|Derrick White|G|$1,948,080|25|\\n|Chimezie Metu|F|$1,416,852|22|\\n|**TOTAL:**||**$94,091,733**||\\n\\n# Dead Cap\\n\\n|*Player*|*Salary*|\\n|:-|:-|\\n|Pau Gasol|$5,075,000|\\n|**TOTAL:**|**$5,075,000**|\\n\\n# Cap Holds\\n\\n|*Player*|*Age*|*Amount*|*Rights*|\\n|:-|:-|:-|:-|\\n|Rudy Gay|33|$13,113,360|Early Bird (max raise of 175% over 2019 salary)|\\n|Dante Cunningham|32|$2,984,400|Non Bird (max raise of 120% over 2019 salary)|\\n|Quincy Pondexter|31|$1,618,486|Non Bird (max raise of 120% over 2019 salary)|\\n|Donatas Motiejunas|29|$1,618,486|Non Bird (max raise of 120% over 2019 salary)|\\n|\\\\*19th Overall Pick, 2019 Draft|$2,238,700|Rookie Deal||\\n|\\\\*29th Overall Pick, 2019 Draft|$1,623,300|Rookie Deal||\\n|**TOTAL:**||**$23,196,732**||\\n\\n# 2019 First Round Picks\\n\\n|*Pick*|*100% Rookie Scale Amount*|\\n|:-|:-|\\n|19th Overall Pick|$2,238,700|\\n|29th Overall Pick|$1,623,300|\\n|**TOTAL:**|**$3,862,000**|\\n\\n# Totals\\n\\n|Description|Amount|\\n|:-|:-|\\n|NBA Luxury Tax Threshold|$132,000,000|\\n|NBA Salary Cap|$109,000,000|\\n|Spurs Total Taxable Salaries (Team Salary+Dead Cap)|$99,166,733|\\n|Spurs Total Cap Allocations (Team Salary+Dead Cap+Cap Holds)|$122,363,465|\\n|Spurs Actual Cap Space|\\\\-$14,220,608|\\n|Spurs Max Possible Cap Space (No Draft Picks, Renounce Cap Holds)|$8,976,124|\\n|**Spurs Likely Cap Space (Including Draft Picks, Renounce Cap Holds)**|**$5,971,267**|\", \"link_title\": \"Spurs 2019-20 Salary Cap Outlook\", \"author_flair_css_class\": null, \"name\": \"t1_emfvztp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ESpurs 2019-2020 Salaries\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPlayer\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPosition\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003ESalary\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EAge\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDeMar DeRozan\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$27,739,975\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ELaMarcus Aldridge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$26,000,000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E34\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPatty Mills\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$12,428,571\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E31\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDavis Bertans\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$7,000,000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMarco Belinelli\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$5,846,154\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E33\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJakob Poeltl\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$3,754,886\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBryn Forbes\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,875,000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ELonnie Walker IV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,760,480\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDejounte Murray\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,321,735\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDerrick White\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,948,080\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EChimezie Metu\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,416,852\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E22\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$94,091,733\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EDead Cap\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPlayer\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003ESalary\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPau Gasol\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$5,075,000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$5,075,000\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ECap Holds\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPlayer\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EAge\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EAmount\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003ERights\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERudy Gay\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$13,113,360\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEarly Bird (max raise of 175% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDante Cunningham\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,984,400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon Bird (max raise of 120% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EQuincy Pondexter\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,618,486\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon Bird (max raise of 120% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDonatas Motiejunas\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,618,486\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon Bird (max raise of 120% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E*19th Overall Pick, 2019 Draft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,238,700\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERookie Deal\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E*29th Overall Pick, 2019 Draft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,623,300\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERookie Deal\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$23,196,732\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003E2019 First Round Picks\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPick\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003E100% Rookie Scale Amount\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19th Overall Pick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,238,700\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E29th Overall Pick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,623,300\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$3,862,000\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ETotals\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAmount\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENBA Luxury Tax Threshold\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$132,000,000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENBA Salary Cap\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$109,000,000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Total Taxable Salaries (Team Salary+Dead Cap)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$99,166,733\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Total Cap Allocations (Team Salary+Dead Cap+Cap Holds)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$122,363,465\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Actual Cap Space\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-$14,220,608\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Max Possible Cap Space (No Draft Picks, Renounce Cap Holds)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$8,976,124\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ESpurs Likely Cap Space (Including Draft Picks, Renounce Cap Holds)\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$5,971,267\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkdn1j/spurs_201920_salary_cap_outlook/emfvztp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkdn1j/spurs_201920_salary_cap_outlook/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bkdn1j/spurs_201920_salary_cap_outlook/\", \"created\": 1556947217.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkb0kl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emfbqr2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"raikkhan\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556904863.0, \"send_replies\": true, \"parent_id\": \"t3_bkb0kl\", \"score\": 2, \"author_fullname\": \"t2_11ekhc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"ghvhgv\", \"link_title\": \"My first attempt at making a game in Godot! feedback appreciated and link to the game below.\", \"author_flair_css_class\": null, \"name\": \"t1_emfbqr2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eghvhgv\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/emfbqr2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/\", \"report_reasons\": null, \"link_author\": \"raikkhan\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/6wliprr531w21\", \"created\": 1556933663.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1556951066.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emcwx0i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556836326.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**[TLDR:](#s \\\"Too Logical, Died Reading\\\")** I think that the Overwatch Workshop Community should get organized, and have some [ideas on doing so.](#s \\\"Not good ideas, mind you\\\")\\n\\n\\n\\n**Brief disclaimer:**\\n\\n\\n\\n- I by no means think these are the best ideas, I'm just trying to get a discussion started.\\n\\n\\n\\n- Please comment with better ideas, or parts I'm wrong about, or just because you feel like it.\\n\\n- A lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\n\\n- Also, liberal hover tags abound, and [none](#s \\\"some are funny, however\\\") are useful. The only things you can click on are specifically called out as links.\\n\\n\\n\\n---\\n\\n\\n\\n####First, an explanation on why organization helps players, creators, and devs alike.\\n\\n\\n\\n- [Casual Players](#s \\\"Filthy Casuals\\\"): An organized community will make it easier to find good, fun, game modes.\\n\\n\\n\\n- [Ranked Players](#s \\\"Sports Nuts\\\"): With a few changes, I personally think that Workshop can allow for [more frequent patch testing.](#s \\\"More on that later.\\\") An organized community could help the workshop get to that state sooner.\\n\\n\\n\\n- [Creators](#s \\\"Over-Dedicated Fans\\\"): An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\n\\n\\n\\n- [Devs](#s \\\"All-Mighty Deities\\\"): An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\n\\n\\n\\n---\\n\\n# Table of Contents\\n\\n##[Reddit Organization](#s \\\"How to do better than this post\\\")\\n\\n- #### Posts\\n\\n- #### Comments\\n\\n- #### Mode Specific Tips\\n\\n\\n\\n##[One-Stop Assistance](#s \\\"More like None-Start\\\")\\n\\n- #### [Workshop FAQ](#s \\\"What is an FAQ?\\\")\\n\\n- #### [Fun Modes](#s \\\"For Casuals\\\")\\n\\n- #### [Good Mechanics](#s \\\"For Creators\\\")\\n\\n- #### [Hero Ideas](#s \\\"For Devs?\\\")\\n\\n- #### [Useful Links](#s \\\"May be copywrite infringing\\\")\\n - ###### Discord Channels\\n - ###### Youtube Channels\\n - ###### Dev Updates\\n - ###### Storage Sites\\n\\n- ### [Ideas for Workshop Improvement](#s \\\"Nonexistent\\\")\\n\\n\\n\\n---\\n\\n#Reddit Post Organization\\n\\n\\n\\n####If posts are organized in a readable manner, it will help people to:\\n\\n- [Locate modes they like](#s \\\"Or hate\\\")\\n\\n- [Easily lend assistance](#s \\\"Hardly\\\")\\n\\n- [Not have to deal with ugly things](#s \\\"Except walking Zenyattas and wall-climbing Torbs\\\")\\n\\n\\n\\n\\n\\n##Post Example Layout\\n\\n\\n\\n- [Descriptive Title](#s \\\"Flaired Appropriately\\\")\\n\\n- Post Body\\n - Picture/Video [(Optional)](#s \\\"Follow this subs rules\\\")\\n - Code\\n - [Brief Summary](#s \\\"Or why your code is the awesomest ever\\\")\\n - Detailed Description (Optional)\\n - [Future Improvements](#s \\\"Unnecessary as your creation is perfect\\\") (Optional)\\n - [Credits](#s \\\"Those whose stuff you stole\\\")\\n\\n\\n\\n\\n##General Posting Tips\\n\\n\\n\\n- Title\\tTips\\n\\n - Do use this phrasing: _[MyThing](#s \\\"What you made\\\") from [OtherMedia](#s \\\"What you stole the idea from\\\")_\\n\\n\\n\\n - Do be very specific. _Alphabetic Gun Game_ is better than simply _Gun Game_.\\n\\n - Good Example: _Alphabetic Gun Game from [CS:S:HTMLGO](#s \\\"CS Major\\\")_\\n\\n- Post Body Tips\\n\\n - Do use a visual if possible. [Video \\u003E Picture \\u003E Text](#s \\\"\\u003E Lier1\\\")\\n\\n - Do use formatting, titles, or at the very least, [paragraph breaks](#s \\\"Hit enter twice, not once\\\")\\n\\n - Do keep updated modes organized, either with new posts commented in the original post, or with update codes added with [edits](#s \\\"v3.1 Never mind\\\")\\n\\n - Do put things you are unsure how to do under [Future Improvements](#s \\\"As you will somehow be smarter in the future\\\")\\n\\n - Do [credit](#s \\\"I'll talk about using others work later\\\") other users in your post. It's only polite\\n\\n - Do your [research.](#s \\\"See that other people have posted working code before\\\") It will save you time and effort\\n\\n - Don't go into the [nitty gritty.](#s \\\"I used this rule with this condition\\\") Explain how it works in game, not in code\\n\\n\\n\\n---\\n\\n\\n\\n#Reddit Comment Organization\\n\\n#### If comments are organized in a helpful manner, it will help people to:\\n\\n- Get useful feedback\\n\\n- Raise their self-esteem\\n\\n\\n\\n\\n\\n\\n\\n##Comment Example Layout\\n\\n- [Notice the Good](#s \\\"It does exists, its just hiding\\\")\\n\\n- Harsh reality (Optional)\\n\\n- [Useful feedback](#s \\\"Unnecessary\\\")\\n\\n\\n\\n\\n\\n##General Tips\\n\\n\\n\\n- Do always be positive. There is [no need nor reason for negativity.](#s \\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\")\\n\\n- Do mention similar ideas. Link to them so the poster can get some ideas.\\n\\n- Do give actual information/feedback.\\n\\n- Do keep comments to the post at hand.\\n\\n- Don't simply comment [\\\"Great job\\\"](#s \\\"Great Job, finding this hover text\\\"). That's what liking is usually for.\\n\\n- Don't assume that the [posters vision matches yours.](#s \\\"My vision isn't 20-20, you see\\\")\\n\\n- Good Example: \\\"Me and a few friends played this mode, because we love it from Halloo 4. It's a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There's some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\\"\\n\\n---\\n\\n# Reddit Mode Specific\\n\\n\\n##Game Mode Post\\n\\n- Do label the specific [play mode](#s \\\"FFA, 5CP, Domination\\\") used in the code if it is unclear\\n\\n\\n\\n---\\n\\n\\n\\n##Game Mode Comment\\n\\n- Do play and share your experiences\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Post\\n\\n\\n\\n####Hero Description Example Layout\\n\\n- Health\\n\\n- Passives\\n\\n- Triggered Abilities\\n\\n - Stats\\n\\n - Other Features\\n\\n\\n\\n- ###Brief Summary Tips\\n\\n - Do mention what [role](#s \\\"Flanker, Tank, Monkey, etc.\\\") your hero should fill\\n\\n - Don't talk about how your hero will [destroy the meta](#s \\\"It won't\\\")\\n\\n\\n\\n- ### Triggered Ability Tips\\n\\n - Do use numbers to describe hero [DPS](#s \\\"Deaths per Second\\\") and [HPS](#s \\\"i need Healing per Second\\\") if you want balance advice\\n\\n - Do keep any numbers used checked against [actual heroes](#s \\\"No supports firing 20 rounds of 15 dmg a second\\\")\\n\\n - Do check sources such as this _linked_ [Overwatch GamePedia](https://overwatch.gamepedia.com/Overwatch_Wiki) page for how to describe abilities\\n\\n\\n\\n- ### General Tips\\n\\n - Do follow precedent for most parts of your character. They don't need a new leveling system, 50 HP, and a different [control scheme](#s \\\"Command Line\\\")\\n\\n - Do make heroes both fun to play and [fun to play against](#s \\\"mostly the second\\\")\\n\\n - Don't make a character with [lots of exceptions](#s \\\"Blocks all CC except Doomfist Punch\\\")\\n\\n - Don't step on too many [toes](#s \\\"*Cough* Pre-nerf Bridgette *Cough*\\\")\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Comment\\n\\n- Do keep balance comparisons within Overwatch. Comparing to Bastion is [OK](#s \\\"If dangerous\\\"). Comparing to Demo is less [helpful](#s \\\"Unless they are making TF2 accurate Demo\\\")\\n\\n- Do think of the character as a [whole](#s \\\"They can't attack while their shield is up? Useless\\\")\\n\\n- Do be kind. Not all posters are secretly [Blizzard Devs testing new heroes](#s \\\"But some are, right?\\\")\\n\\n- Don't talk balance unless the poster [wants to.](#s \\\"The hero will be horribly underpowered their first time. Let that go.\\\") They may just be creating for fun\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Post\\n\\n- Do try to keep the code as [simple and self-contained](#s \\\"Minimize Dependencies\\\") as possible\\n\\n- Do mention what variables you use\\n\\n- Do explain how you accomplished your [goal](#s \\\"Magic is an acceptable response\\\")\\n\\n- Do explain [bugs and edge cases](#s \\\"Or treat them as just part of the experience\\\")\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Comment\\n\\n- Do mention what cool game-modes you can imagine using with it\\n\\n- Do mention alternate ideas for how to implement it\\n\\n- Do post links to other [implementations](#s \\\"With permission\\\")\\n\\n- Do be amazed at what they managed to do\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emcwx0i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Too Logical, Died Reading\\\"\\u003ETLDR:\\u003C/a\\u003E\\u003C/strong\\u003E I think that the Overwatch Workshop Community should get organized, and have some \\u003Ca href=\\\"#s\\\" title=\\\"Not good ideas, mind you\\\"\\u003Eideas on doing so.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBrief disclaimer:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI by no means think these are the best ideas, I\\u0026#39;m just trying to get a discussion started.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPlease comment with better ideas, or parts I\\u0026#39;m wrong about, or just because you feel like it.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EA lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EAlso, liberal hover tags abound, and \\u003Ca href=\\\"#s\\\" title=\\\"some are funny, however\\\"\\u003Enone\\u003C/a\\u003E are useful. The only things you can click on are specifically called out as links.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EFirst, an explanation on why organization helps players, creators, and devs alike.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Filthy Casuals\\\"\\u003ECasual Players\\u003C/a\\u003E: An organized community will make it easier to find good, fun, game modes.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Sports Nuts\\\"\\u003ERanked Players\\u003C/a\\u003E: With a few changes, I personally think that Workshop can allow for \\u003Ca href=\\\"#s\\\" title=\\\"More on that later.\\\"\\u003Emore frequent patch testing.\\u003C/a\\u003E An organized community could help the workshop get to that state sooner.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Over-Dedicated Fans\\\"\\u003ECreators\\u003C/a\\u003E: An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"All-Mighty Deities\\\"\\u003EDevs\\u003C/a\\u003E: An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ETable of Contents\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"How to do better than this post\\\"\\u003EReddit Organization\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EPosts\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EComments\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EMode Specific Tips\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"More like None-Start\\\"\\u003EOne-Stop Assistance\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What is an FAQ?\\\"\\u003EWorkshop FAQ\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"For Casuals\\\"\\u003EFun Modes\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"For Creators\\\"\\u003EGood Mechanics\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"For Devs?\\\"\\u003EHero Ideas\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"May be copywrite infringing\\\"\\u003EUseful Links\\u003C/a\\u003E\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E###### Discord Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Youtube Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Dev Updates\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Storage Sites\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Nonexistent\\\"\\u003EIdeas for Workshop Improvement\\u003C/a\\u003E\\u003C/h3\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Post Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf posts are organized in a readable manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or hate\\\"\\u003ELocate modes they like\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Hardly\\\"\\u003EEasily lend assistance\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Except walking Zenyattas and wall-climbing Torbs\\\"\\u003ENot have to deal with ugly things\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EPost Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Flaired Appropriately\\\"\\u003EDescriptive Title\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPicture/Video \\u003Ca href=\\\"#s\\\" title=\\\"Follow this subs rules\\\"\\u003E(Optional)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECode\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or why your code is the awesomest ever\\\"\\u003EBrief Summary\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDetailed Description (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary as your creation is perfect\\\"\\u003EFuture Improvements\\u003C/a\\u003E (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Those whose stuff you stole\\\"\\u003ECredits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Posting Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETitle Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use this phrasing: \\u003Cem\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What you made\\\"\\u003EMyThing\\u003C/a\\u003E from \\u003Ca href=\\\"#s\\\" title=\\\"What you stole the idea from\\\"\\u003EOtherMedia\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo be very specific. \\u003Cem\\u003EAlphabetic Gun Game\\u003C/em\\u003E is better than simply \\u003Cem\\u003EGun Game\\u003C/em\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003EGood Example: \\u003Cem\\u003EAlphabetic Gun Game from \\u003Ca href=\\\"#s\\\" title=\\\"CS Major\\\"\\u003ECS:S:HTMLGO\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use a visual if possible. \\u003Ca href=\\\"#s\\\" title=\\\"\\u0026gt; Lier1\\\"\\u003EVideo \\u0026gt; Picture \\u0026gt; Text\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo use formatting, titles, or at the very least, \\u003Ca href=\\\"#s\\\" title=\\\"Hit enter twice, not once\\\"\\u003Eparagraph breaks\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep updated modes organized, either with new posts commented in the original post, or with update codes added with \\u003Ca href=\\\"#s\\\" title=\\\"v3.1 Never mind\\\"\\u003Eedits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo put things you are unsure how to do under \\u003Ca href=\\\"#s\\\" title=\\\"As you will somehow be smarter in the future\\\"\\u003EFuture Improvements\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo \\u003Ca href=\\\"#s\\\" title=\\\"I\\u0026#39;ll talk about using others work later\\\"\\u003Ecredit\\u003C/a\\u003E other users in your post. It\\u0026#39;s only polite\\u003C/li\\u003E\\n\\u003Cli\\u003EDo your \\u003Ca href=\\\"#s\\\" title=\\\"See that other people have posted working code before\\\"\\u003Eresearch.\\u003C/a\\u003E It will save you time and effort\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t go into the \\u003Ca href=\\\"#s\\\" title=\\\"I used this rule with this condition\\\"\\u003Enitty gritty.\\u003C/a\\u003E Explain how it works in game, not in code\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Comment Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf comments are organized in a helpful manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGet useful feedback\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERaise their self-esteem\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EComment Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"It does exists, its just hiding\\\"\\u003ENotice the Good\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHarsh reality (Optional)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary\\\"\\u003EUseful feedback\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo always be positive. There is \\u003Ca href=\\\"#s\\\" title=\\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\"\\u003Eno need nor reason for negativity.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention similar ideas. Link to them so the poster can get some ideas.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo give actual information/feedback.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep comments to the post at hand.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t simply comment \\u003Ca href=\\\"#s\\\" title=\\\"Great Job, finding this hover text\\\"\\u003E\\u0026quot;Great job\\u0026quot;\\u003C/a\\u003E. That\\u0026#39;s what liking is usually for.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t assume that the \\u003Ca href=\\\"#s\\\" title=\\\"My vision isn\\u0026#39;t 20-20, you see\\\"\\u003Eposters vision matches yours.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGood Example: \\u0026quot;Me and a few friends played this mode, because we love it from Halloo 4. It\\u0026#39;s a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There\\u0026#39;s some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\u0026quot;\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Mode Specific\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo label the specific \\u003Ca href=\\\"#s\\\" title=\\\"FFA, 5CP, Domination\\\"\\u003Eplay mode\\u003C/a\\u003E used in the code if it is unclear\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo play and share your experiences\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Post\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EHero Description Example Layout\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHealth\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPassives\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETriggered Abilities\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EStats\\u003C/li\\u003E\\n\\u003Cli\\u003EOther Features\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EBrief Summary Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo mention what \\u003Ca href=\\\"#s\\\" title=\\\"Flanker, Tank, Monkey, etc.\\\"\\u003Erole\\u003C/a\\u003E your hero should fill\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t talk about how your hero will \\u003Ca href=\\\"#s\\\" title=\\\"It won\\u0026#39;t\\\"\\u003Edestroy the meta\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003ETriggered Ability Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use numbers to describe hero \\u003Ca href=\\\"#s\\\" title=\\\"Deaths per Second\\\"\\u003EDPS\\u003C/a\\u003E and \\u003Ca href=\\\"#s\\\" title=\\\"i need Healing per Second\\\"\\u003EHPS\\u003C/a\\u003E if you want balance advice\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep any numbers used checked against \\u003Ca href=\\\"#s\\\" title=\\\"No supports firing 20 rounds of 15 dmg a second\\\"\\u003Eactual heroes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo check sources such as this \\u003Cem\\u003Elinked\\u003C/em\\u003E \\u003Ca href=\\\"https://overwatch.gamepedia.com/Overwatch_Wiki\\\"\\u003EOverwatch GamePedia\\u003C/a\\u003E page for how to describe abilities\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EGeneral Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo follow precedent for most parts of your character. They don\\u0026#39;t need a new leveling system, 50 HP, and a different \\u003Ca href=\\\"#s\\\" title=\\\"Command Line\\\"\\u003Econtrol scheme\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo make heroes both fun to play and \\u003Ca href=\\\"#s\\\" title=\\\"mostly the second\\\"\\u003Efun to play against\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t make a character with \\u003Ca href=\\\"#s\\\" title=\\\"Blocks all CC except Doomfist Punch\\\"\\u003Elots of exceptions\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t step on too many \\u003Ca href=\\\"#s\\\" title=\\\"*Cough* Pre-nerf Bridgette *Cough*\\\"\\u003Etoes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep balance comparisons within Overwatch. Comparing to Bastion is \\u003Ca href=\\\"#s\\\" title=\\\"If dangerous\\\"\\u003EOK\\u003C/a\\u003E. Comparing to Demo is less \\u003Ca href=\\\"#s\\\" title=\\\"Unless they are making TF2 accurate Demo\\\"\\u003Ehelpful\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo think of the character as a \\u003Ca href=\\\"#s\\\" title=\\\"They can\\u0026#39;t attack while their shield is up? Useless\\\"\\u003Ewhole\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be kind. Not all posters are secretly \\u003Ca href=\\\"#s\\\" title=\\\"But some are, right?\\\"\\u003EBlizzard Devs testing new heroes\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t talk balance unless the poster \\u003Ca href=\\\"#s\\\" title=\\\"The hero will be horribly underpowered their first time. Let that go.\\\"\\u003Ewants to.\\u003C/a\\u003E They may just be creating for fun\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo try to keep the code as \\u003Ca href=\\\"#s\\\" title=\\\"Minimize Dependencies\\\"\\u003Esimple and self-contained\\u003C/a\\u003E as possible\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what variables you use\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain how you accomplished your \\u003Ca href=\\\"#s\\\" title=\\\"Magic is an acceptable response\\\"\\u003Egoal\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain \\u003Ca href=\\\"#s\\\" title=\\\"Or treat them as just part of the experience\\\"\\u003Ebugs and edge cases\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what cool game-modes you can imagine using with it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention alternate ideas for how to implement it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo post links to other \\u003Ca href=\\\"#s\\\" title=\\\"With permission\\\"\\u003Eimplementations\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be amazed at what they managed to do\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emcwx0i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556865126.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bix03h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"em3phyw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"userleansbot\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556584797.0, \"send_replies\": true, \"parent_id\": \"t1_em3ph6v\", \"score\": 1, \"author_fullname\": \"t2_3a4fedhv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Author: /u/userleansbot\\n___\\nAnalysis of /u/roddypiper534's activity in political subreddits over the past 1000 comments and submissions.\\n\\nAccount Created: 3 years, 1 months, 0 days ago\\n\\nSummary: **This user does not have enough activity in political subs for analysis or has no clear leanings, they might be one of those weirdo moderate types. I don't trust them.**\\n\\n Subreddit|Lean|No. of comments|Total comment karma|No. of posts|Total post karma\\n :--|:--|:--|:--|:--|:--|:--|:--\\n[/r/politics](https://redditsearch.io/?term=\\u0026dataviz=true\\u0026aggs=true\\u0026subreddits=politics\\u0026searchtype=posts,comments,aggs,stats,dataviz\\u0026search=true\\u0026start=0\\u0026size=1000\\u0026authors=roddypiper534)|left|2|74|0|0\\n\\n***\\n ^(Bleep, bloop, I'm a bot trying to help inform political discussions on Reddit.) ^| [^About](https://www.reddit.com/user/userleansbot/comments/au1pva/faq_about_userleansbot/)\\n ___\", \"link_title\": \"Dog face\", \"author_flair_css_class\": null, \"name\": \"t1_em3phyw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAuthor: \\u003Ca href=\\\"/u/userleansbot\\\"\\u003E/u/userleansbot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EAnalysis of \\u003Ca href=\\\"/u/roddypiper534\\\"\\u003E/u/roddypiper534\\u003C/a\\u003E\\u0026#39;s activity in political subreddits over the past 1000 comments and submissions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAccount Created: 3 years, 1 months, 0 days ago\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESummary: \\u003Cstrong\\u003EThis user does not have enough activity in political subs for analysis or has no clear leanings, they might be one of those weirdo moderate types. I don\\u0026#39;t trust them.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ESubreddit\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ELean\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ENo. of comments\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETotal comment karma\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ENo. of posts\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETotal post karma\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://redditsearch.io/?term=\\u0026amp;dataviz=true\\u0026amp;aggs=true\\u0026amp;subreddits=politics\\u0026amp;searchtype=posts,comments,aggs,stats,dataviz\\u0026amp;search=true\\u0026amp;start=0\\u0026amp;size=1000\\u0026amp;authors=roddypiper534\\\"\\u003E/r/politics\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eleft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EBleep, bloop, I\\u0026#39;m a bot trying to help inform political discussions on Reddit.\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Ca href=\\\"https://www.reddit.com/user/userleansbot/comments/au1pva/faq_about_userleansbot/\\\"\\u003E\\u003Csup\\u003EAbout\\u003C/sup\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bix03h/dog_face/em3phyw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bix03h/dog_face/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=Mgv88ZLi6LY\", \"created\": 1556613597.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bix03h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"em3ph6v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"roddypiper534\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556584782.0, \"send_replies\": true, \"parent_id\": \"t3_bix03h\", \"score\": 1, \"author_fullname\": \"t2_wqliu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"/u/userleansbot\", \"link_title\": \"Dog face\", \"author_flair_css_class\": null, \"name\": \"t1_em3ph6v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/userleansbot\\\"\\u003E/u/userleansbot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bix03h/dog_face/em3ph6v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bix03h/dog_face/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=Mgv88ZLi6LY\", \"created\": 1556613582.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bhoqrx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elugkmp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LitteulCevenn\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1556298399.0, \"send_replies\": true, \"parent_id\": \"t3_bhoqrx\", \"score\": 1, \"author_fullname\": \"t2_17k23q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E!Oh it works!\\u003C\", \"link_title\": \"Spoiler test mobile\", \"author_flair_css_class\": null, \"name\": \"t1_elugkmp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003EOh it works\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bhoqrx/spoiler_test_mobile/elugkmp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bhoqrx/spoiler_test_mobile/\", \"report_reasons\": null, \"link_author\": \"LitteulCevenn\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bhoqrx/spoiler_test_mobile/\", \"created\": 1556327199.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eltdv4s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mcsquizzy\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556264587.0, \"send_replies\": true, \"parent_id\": \"t1_elrja1i\", \"score\": 1, \"author_fullname\": \"t2_8xjhh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"lmao\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_eltdv4s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Elmao\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": \"moderator\", \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/eltdv4s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556293387.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrk49b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Devstackr\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556216258.0, \"send_replies\": true, \"parent_id\": \"t1_elrja1i\", \"score\": 2, \"author_fullname\": \"t2_2m0kgx4w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"haha :D\\n\\nI posted it here to see what the image would look like before posting on /r/Frontend :P\\n\\nthanks again for the feedback :D\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrk49b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehaha :D\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI posted it here to see what the image would look like before posting on \\u003Ca href=\\\"/r/Frontend\\\"\\u003E/r/Frontend\\u003C/a\\u003E :P\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethanks again for the feedback :D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrk49b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556245058.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrk0nk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Devstackr\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556216195.0, \"send_replies\": true, \"parent_id\": \"t1_elrj823\", \"score\": 2, \"author_fullname\": \"t2_2m0kgx4w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"thanks for the feedback, I really appreciate it! :D\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrk0nk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks for the feedback, I really appreciate it! :D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrk0nk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556244995.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrja1i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MadcapTangent\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556215730.0, \"send_replies\": true, \"parent_id\": \"t1_elrj823\", \"score\": 3, \"author_fullname\": \"t2_q5gho\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"well just saw what sub this was. Excuse me while I jump into oncoming traffic....\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrja1i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewell just saw what sub this was. Excuse me while I jump into oncoming traffic....\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrja1i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556244530.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrj823\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MadcapTangent\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556215696.0, \"send_replies\": true, \"parent_id\": \"t3_bh7hrl\", \"score\": 2, \"author_fullname\": \"t2_q5gho\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"If this is primarily accessed through phones and tablets the bottom one. If on PC, the top one. Keep the spatial symmetry in mind when deciding on these things.\\n\\nThey are both fantastic though, visually speaking.\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrj823\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf this is primarily accessed through phones and tablets the bottom one. If on PC, the top one. Keep the spatial symmetry in mind when deciding on these things.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThey are both fantastic though, visually speaking.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrj823/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556244496.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgvjfl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elnsm1i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"CrBr\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1556117505.0, \"send_replies\": true, \"parent_id\": \"t3_bgvjfl\", \"score\": 1, \"author_fullname\": \"t2_sujjc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"and in the comments\\n\\n\\u0026#x200B;\\n\\n \\u003C!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--\\u003ETask | Goal | Checkin 1 10:30 | Checkin 2 | Checkin 3:-- | :- | :-- | :-- | :--Check in here | 0.50 | 0.50 | | housework | 0.50 | | | Meditate | 0.50 | | | my lesson | 1.50 | | | drive k2 2x | 1.25 | | | paper mail | 0.50 | | | accounting | 2.00 | | | shorthand | 0.50 | | | Mosquitoes | 0.50 | | | Craft | 0.50 | | | Total | 8.25 | 0.50 | 0.00 | 0.00\", \"link_title\": \"test table\", \"author_flair_css_class\": null, \"name\": \"t1_elnsm1i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eand in the comments\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--\\u0026gt;Task | Goal | Checkin 1 10:30 | Checkin 2 | Checkin 3:-- | :- | :-- | :-- | :--Check in here | 0.50 | 0.50 | | housework | 0.50 | | | Meditate | 0.50 | | | my lesson | 1.50 | | | drive k2 2x | 1.25 | | | paper mail | 0.50 | | | accounting | 2.00 | | | shorthand | 0.50 | | | Mosquitoes | 0.50 | | | Craft | 0.50 | | | Total | 8.25 | 0.50 | 0.00 | 0.00\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgvjfl/test_table/elnsm1i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgvjfl/test_table/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgvjfl/test_table/\", \"created\": 1556146305.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1555883686.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfu16t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elgaylo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"danielthetemp\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1555883030.0, \"send_replies\": true, \"parent_id\": \"t3_bfu16t\", \"score\": 1, \"author_fullname\": \"t2_14hd4t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E***PRICES (Open to Offers)***\\n\\n\\u003E- **If An Octopus Could Palm** - $119.99\\n\\n\\u003E- **Brown Bee Wynn** - $37.99\\n\\n\\u003E- **2012 Magic Con** - $37.99 - 2x\\n\\n\\u003E- **Absolut Vodka** - $34.99 - 2x\\n\\n\\u003E- **Carrot Fontaine** - $31.99 - 8x\\n\\n\\u003E- **Smoke \\u0026 Mirrors v5** - $28.99\\n\\n\\u003E- **Smoke \\u0026 Mirrors v6** - $26.99/$25.99 - 2x\\n\\n\\u003E- **A1 Black Logo** - $26.99 - 5x\\n\\n\\u003E- **Gold Rarebit** - $21.99\\n\\n\\u003E- **Black USPCC Logo \\u201cTech Art\\u201d** - $60.99\\n\\n\\u003E- **Watermelon Fontaine** - $52.99\\n\\n\\u003E- **A1/DND Smoke \\u0026 Mirrors** - $33.99 - 3x\\n\\n\\u003E- **A1 Headlong Into Eternity** - $27.99\\n\\n\\u003E- **Lot of Opened Decks (DND Private Reserve, Blue Fontaine, Absolut Vodka, S\\u0026M v4)** - $99.99\\n\\n\\u003E- **Lot of Opened Bee Wynns (1x Brown, 1x Violet \\u201cTech Art,\\u201d 1x Violet \\u201cStandard Index\\u201d)** - $72.99\\n\\n\\u003E- **Lot of Opened Golden Nuggets (1x Green, 1x Black)** - $37.99\\n\\n\\u003E- **Green Ace Fulton\\u2019s** - $18.99 - 15x\\n\\n***CONDITION OF DAMAGED/OPEN DECKS***\\n\\n- **If An Octopus Could Palm**: Multiple dents and creases to the box.\\n- **Brown Wynn**: Loose cellophane on top, taped cello on one side.\\n- **2012 Magic Con**: Dents to one corner of both decks.\\n- **Smoke \\u0026 Mirrors v5**: Dents to two corners.\\n- **Smoke \\u0026 Mirrors v6**: Dent to one corner of one deck.\\n- **1st Lot**: All decks in unused condition. All Jokers/ad cards included, except with S\\u0026M v4\\n- **2nd Lot**: Brown Wynn (52 std + 4 Jokers/ad cards) in great condition, but Queen of Spades has a defect to one corner. Violet \\u201cTech Art\\u201d (52 std + no Jokers/ad cards) in great condition. Violet \\u201cStandard Index\\u201d (52 std + 4 Jokers/ad cards) in great condition, though they don\\u2019t fan well due to standard pips.\\n- **3rd Lot**: Black Golden Nugget (52 standard + 2 Joker cards) in good but lightly worn condition, fanning and spreading w/ noticeable clumping. Green Golden Nugget (52 standard + no Jokers/ad cards) in very good condition, but don\\u2019t fan/spread due to finish.\\n\\n***SHIPPING***\\n\\n***Free U.S. shipping (insured depending on order value).***\\n\\n***Calculated Worldwide shipping (insured depending on buyer\\u2019s preference).***\", \"link_title\": \"TEST\", \"author_flair_css_class\": null, \"name\": \"t1_elgaylo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EPRICES (Open to Offers)\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EIf An Octopus Could Palm\\u003C/strong\\u003E - $119.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBrown Bee Wynn\\u003C/strong\\u003E - $37.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E2012 Magic Con\\u003C/strong\\u003E - $37.99 - 2x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAbsolut Vodka\\u003C/strong\\u003E - $34.99 - 2x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ECarrot Fontaine\\u003C/strong\\u003E - $31.99 - 8x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v5\\u003C/strong\\u003E - $28.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v6\\u003C/strong\\u003E - $26.99/$25.99 - 2x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EA1 Black Logo\\u003C/strong\\u003E - $26.99 - 5x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EGold Rarebit\\u003C/strong\\u003E - $21.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBlack USPCC Logo \\u201cTech Art\\u201d\\u003C/strong\\u003E - $60.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWatermelon Fontaine\\u003C/strong\\u003E - $52.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EA1/DND Smoke \\u0026amp; Mirrors\\u003C/strong\\u003E - $33.99 - 3x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EA1 Headlong Into Eternity\\u003C/strong\\u003E - $27.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELot of Opened Decks (DND Private Reserve, Blue Fontaine, Absolut Vodka, S\\u0026amp;M v4)\\u003C/strong\\u003E - $99.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELot of Opened Bee Wynns (1x Brown, 1x Violet \\u201cTech Art,\\u201d 1x Violet \\u201cStandard Index\\u201d)\\u003C/strong\\u003E - $72.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELot of Opened Golden Nuggets (1x Green, 1x Black)\\u003C/strong\\u003E - $37.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EGreen Ace Fulton\\u2019s\\u003C/strong\\u003E - $18.99 - 15x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ECONDITION OF DAMAGED/OPEN DECKS\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EIf An Octopus Could Palm\\u003C/strong\\u003E: Multiple dents and creases to the box.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBrown Wynn\\u003C/strong\\u003E: Loose cellophane on top, taped cello on one side.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E2012 Magic Con\\u003C/strong\\u003E: Dents to one corner of both decks.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v5\\u003C/strong\\u003E: Dents to two corners.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v6\\u003C/strong\\u003E: Dent to one corner of one deck.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E1st Lot\\u003C/strong\\u003E: All decks in unused condition. All Jokers/ad cards included, except with S\\u0026amp;M v4\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E2nd Lot\\u003C/strong\\u003E: Brown Wynn (52 std + 4 Jokers/ad cards) in great condition, but Queen of Spades has a defect to one corner. Violet \\u201cTech Art\\u201d (52 std + no Jokers/ad cards) in great condition. Violet \\u201cStandard Index\\u201d (52 std + 4 Jokers/ad cards) in great condition, though they don\\u2019t fan well due to standard pips.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E3rd Lot\\u003C/strong\\u003E: Black Golden Nugget (52 standard + 2 Joker cards) in good but lightly worn condition, fanning and spreading w/ noticeable clumping. Green Golden Nugget (52 standard + no Jokers/ad cards) in very good condition, but don\\u2019t fan/spread due to finish.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESHIPPING\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EFree U.S. shipping (insured depending on order value).\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ECalculated Worldwide shipping (insured depending on buyer\\u2019s preference).\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfu16t/test/elgaylo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfu16t/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfu16t/test/\", \"created\": 1555911830.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfsmkt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elg60jw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"peacegang\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1555879268.0, \"send_replies\": true, \"parent_id\": \"t1_elg5k7o\", \"score\": 1, \"author_fullname\": \"t2_30chc41y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks for the tip \\ud83d\\udc4d\", \"link_title\": \"Test for posting my music (anxiety check)\", \"author_flair_css_class\": null, \"name\": \"t1_elg60jw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for the tip \\ud83d\\udc4d\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/elg60jw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"report_reasons\": null, \"link_author\": \"peacegang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"created\": 1555908068.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfsmkt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elg5k7o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thanksgames\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1555878932.0, \"send_replies\": true, \"parent_id\": \"t1_elg0fz0\", \"score\": 2, \"author_fullname\": \"t2_haj2j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I also use https://redditpreview.com then here.\", \"link_title\": \"Test for posting my music (anxiety check)\", \"author_flair_css_class\": null, \"name\": \"t1_elg5k7o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI also use \\u003Ca href=\\\"https://redditpreview.com\\\"\\u003Ehttps://redditpreview.com\\u003C/a\\u003E then here.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/elg5k7o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"report_reasons\": null, \"link_author\": \"peacegang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"created\": 1555907732.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfsmkt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elg0l70\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"peacegang\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1555875286.0, \"send_replies\": true, \"parent_id\": \"t3_bfsmkt\", \"score\": 1, \"author_fullname\": \"t2_30chc41y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[SALEM - Jennifer's Rush (Unreleased)](https://soundcloud.com/peacegang/everyone-dies)\\n\\n\\n[Amnesia Scanner - AS Crust](https://soundcloud.com/peacegang/psfd)\\n\\n\\n[Balam Acab - Dream Out](https://soundcloud.com/peacegang/permo)\\n\\n\\n[CRIM3S - Pansy](https://soundcloud.com/peacegang/pansy-ruff)\\n\\n\\n[Wolfgang Tillmans - Make It Up As You Go Along (SALEM Remix)](https://soundcloud.com/peacegang/odt)\", \"link_title\": \"Test for posting my music (anxiety check)\", \"author_flair_css_class\": null, \"name\": \"t1_elg0l70\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/everyone-dies\\\"\\u003ESALEM - Jennifer\\u0026#39;s Rush (Unreleased)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/psfd\\\"\\u003EAmnesia Scanner - AS Crust\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/permo\\\"\\u003EBalam Acab - Dream Out\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/pansy-ruff\\\"\\u003ECRIM3S - Pansy\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/odt\\\"\\u003EWolfgang Tillmans - Make It Up As You Go Along (SALEM Remix)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/elg0l70/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"report_reasons\": null, \"link_author\": \"peacegang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"created\": 1555904086.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_elg0l70\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["467008"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:26 GMT"], "x-ratelimit-remaining": ["590.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "x-ratelimit-used": ["10"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914226.987926,VS0,VE776"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["574"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:30:26"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_eq9cbr7"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:27 GMT"], "x-ratelimit-remaining": ["589.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "x-ratelimit-used": ["11"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914228.809686,VS0,VE68"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["573"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_eq9cbr7"}, "recorded_at": "2019-06-07T13:30:27"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_x9hgy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Orleans Funk and Soul Comp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_bxu0h7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/HZGF8jwxJvb-kmQ0VHxmPmJwsj7cME_lUiJh0tMOdyA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559939195.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?auto=webp\\u0026s=63435ce5b9021c26f3f3361832bee85120b95da7\", \"width\": 2997, \"height\": 3000}, \"resolutions\": [{\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4f2d78539e84109eff8c55ef3881fc5cd9895610\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=36b248b4534ebb7224b313476f08bfaeac231423\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d14878565506f79f9a565575c94dd15cb87b126f\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b8599670803f247e3567c308259e0e008d6ade54\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5f099f6836672fd6e14fc584d919502251a20062\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=80dc7ae6be61b47e33fb9efb8e6396ee20665a72\", \"width\": 1080, \"height\": 1081}], \"variants\": {}, \"id\": \"oOKJ7WqkVkUAvpB0GW3QoNctvySrbQLkpEE891MLydk\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu0h7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"branch_immersion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxu0h7/new_orleans_funk_and_soul_comp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/st657dn4fx231.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559910395.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Very sad news about the passing of Dr John. I took out a couple of his records this lunchtime and gave them a spin. \\n\\n\\u0026#x200B;\\n\\nI also dug out a copy of this compilation Saturday Night Fish Fry (New Orleans Funk And Soul). There was a post earlier this week about Betty Harris and the drums on her record. And I think generally, within this subreddit and elsewhere, there is a huge appetite for the New Orleans funk and blues. Some people may even correct me that sometimes the genre is referred to in more granular terms as fonk, I don't know. In his autobiography Dr. John put this distinct musical signature down to the unique geographic location of the City to absorb and conjoin different artistic ideas from America and the Caribbean. \\n\\n\\u0026#x200B;\\n\\nThis double lp is a collection of New Orleans funk and really gets my groove on. If you want to find out more about this City's musical heritage you could do a lot worse than get an overview from this selection.\", \"author_fullname\": \"t2_x9hgy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Orleans Funk and Soul Comp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_bxtvoq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559938349.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVery sad news about the passing of Dr John. I took out a couple of his records this lunchtime and gave them a spin. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also dug out a copy of this compilation Saturday Night Fish Fry (New Orleans Funk And Soul). There was a post earlier this week about Betty Harris and the drums on her record. And I think generally, within this subreddit and elsewhere, there is a huge appetite for the New Orleans funk and blues. Some people may even correct me that sometimes the genre is referred to in more granular terms as fonk, I don\\u0026#39;t know. In his autobiography Dr. John put this distinct musical signature down to the unique geographic location of the City to absorb and conjoin different artistic ideas from America and the Caribbean. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis double lp is a collection of New Orleans funk and really gets my groove on. If you want to find out more about this City\\u0026#39;s musical heritage you could do a lot worse than get an overview from this selection.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxtvoq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"branch_immersion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxtvoq/new_orleans_funk_and_soul_comp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxtvoq/new_orleans_funk_and_soul_comp/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559909549.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_288py4gj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Text\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxsgv0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559928038.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsgv0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Heroquetarro10\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559899238.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Text Area \\\\_\\\\_\\\\_ 1234567890\", \"author_fullname\": \"t2_3l1yc231\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing format of post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxqfkz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559910553.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EText Area ___ 1234567890\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxqfkz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"denHting\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxqfkz/testing_format_of_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxqfkz/testing_format_of_post/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559881753.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_3um52nx7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"get get get out\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxprj4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559906146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": true, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"rte_mode\": \"markdown\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxprj4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxprj4/get_get_get_out/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxprj4/get_get_get_out/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559877346.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Our story begins five years after the events of our last movie. In the time since Jean Grey and her fellow X-Men escaped from a US government base, battled the Sentinels, and survived a confrontation with the Mutant terrorist Magneto, America has slowly become a hotbed of political unrest. As the debate over Mutant rights rages on, young Mutants are still regularly arrested and detained without trial when their powers manifest, Mutant rights protests regularly erupt into riots in major cities, and lurid stories about wanted Mutant fugitives regularly make the evening news. \\n\\nAmid this tense backdrop, the terrorist Magneto launches attacks on police stations and military bases without warning, always leaving a trail of dead bodies in his wake. But in his stately Westchester mansion, political activist Professor Charles Xavier does his best to weather the storm as he peacefully fights for his people's freedom while training his Mutant pupils to use their powers for good. But as the years wear on, the teenage X-Men\\u2014now young adults\\u2014face plenty of changes in their private lives.\\n\\nFirst, young **Warren Worthington** (\\\"**Angel**\\\") chooses to leave the Xavier Institute to care for his terminally ill father. Then **Hank McCoy** (\\\"**Beast**\\\") chooses to leave to pursue his doctoral studies, planning to devote his life to science. Finally, **Bobby Drake** (\\\"**Iceman**\\\"), who just wants a normal life, decides to settle down with his girlfriend **Lorna**. Only **Scott Summers** (\\\"**Cyclops**\\\") can't envision a life outside of the X-Men; ever since losing his family in a mysterious plane crash at the age of 10, the Xavier Institute has been Scott's only home, and the X-Men are the only family that he has left. And as his relationship with **Jean Grey** develops into a passionate love affair, Jean is torn between her devotion to Scott and her desire to move forward with her life; though she longs to conceal her powerful psychic abilities and live as an ordinary human, she knows that Scott could never leave the Institute, and she feels compelled to stay by his side. This leaves Scott and Jean as the last remaining members of the original X-Men. But that may change soon.\\n\\nAs Professor Xavier turns his eyes to the world at large, it soon becomes clear that the struggle for Mutant rights is no longer solely an American problem; all over the world, innocent Mutants are being arrested and detained by paranoid government forces, and some are choosing to fight back. Over time, rumors spread of an underground network of Mutant rebels, who supposedly work to shelter and protect fugitive Mutants. Some call them terrorists, and others call them freedom fighters\\u2014but Professor Xavier sees them as potential new recruits.\\n\\nOn a quiet day in Moscow, Russia, a pair of uniformed FSB agents knock on the door of a secluded apartment, flanked by a squad of armed soldiers. When a young blonde woman answer the door, she stares defiantly at the agents.\\n\\n*\\\"There's no use playing the fool, Ms. Rasputin,\\\"* the lead agent says. *\\\"We know that you're sheltering a Mutant here. And you know the penalty for refusing to hand him over.\\\"*\\n\\nThe woman\\u2014**Ilyana Rasputin**\\u2014stares back at them, maintaining her cold composure.\\n\\n*\\\"I would never give my brother to mongrels like you,\\\"* she hisses. *\\\"He's a Mutant, but he's still my brother.\\\"*\\n\\nA tall, dark-haired man appears behind Ilyana and places a comforting hand upon her shoulder.\\n\\n*\\\"It's alright, Ilyana,\\\"* **Piotr Rasputin** says. *\\\"I'll go quietly. But always remember: your quarrel is with me, and me alone. My family is not to be harmed.\\\"*\\n\\nWith that, the agents cuff Piotr's wrists, and the soldiers escort him from the building at gunpoint. Standing at the window of her apartment with tear-streaked eyes, Ilyana can only watch helplessly as her beloved brother is marched into an armored van, softly whispering *\\\"Goodbye\\\"* as they close the doors. But unbeknownst to her, he's being watched from afar...\\n\\nIt turns out that three members of the mysterious **Mutant Freedom Network** have come to Moscow, and they know that a Mutant is about to be imprisoned by government forces. And this time, they've sworn to do something about it.\\n\\nWe meet three of them:\\n\\n* **Sean Cassidy** (callsign: \\\"**Banshee**\\\"), a grizzled ex-cop from Dublin who was thrown out of Interpol after he was outed as a Mutant. He possesses a powerful sonic scream that's strong enough to shatter glass, allowing him to fly for limited distances.\\n* **Ororo Munroe** (callsign: \\\"**Storm**\\\"), a young Kenyan-born woman who spent years as a petty thief on the streets of Nairobi, but became accepted as a priestess by a group of Bantu farmers, who realized that she possessed a supernatural ability to control the weather.\\n* **Kurt Wagner** (callsign: \\\"**Nightcrawler**\\\"), a fun-loving young German man of Romani heritage, who grew up as an acrobatic performer in a traveling circus. Possessing the power to vanish and teleport in a puff of smoke, his Mutant abilities give him a bizarre demonic appearance; his body is covered with blue fur, and he has fangs and a prehensile tail.\\n\\nAs Banshee, Storm and Nightcrawler watch the armored van pull into a convoy, a squad of black helicopters appears in the sky, watching the FSB agents from above as they drive Piotr away. At Banshee's command, they bust into action.\\n\\nFirst, Nightcrawler uses his teleporting abilities to jump into the front seat of the armored van, where he kicks the driver into the street and takes the wheel. As he hijacks the truck and drives away with Piotr in the back, Storm lashes out with a bolt of lightning and fries the other vans in the convoy before they can drive off after him. Moments later, Banshee tears through the sky and brings down a helicopter with his sonic scream.\\n\\n*\\\"Who the hell are you people?\\\"* Piotr demands. *\\\"And where are you taking me?!\\\"*\\n\\n*\\\"Relax, mein freund,\\\"* Nightcrawler says. *\\\"We're the good guys! And we're taking you where they can't hurt you. After that, you can go where you wish.\\\"*\\n\\nNightcrawler high-tails it to the highway with Storm riding on top of the stolen van, and Banshee follows them from the sky. As the FSB calls for backup, a frantic car chase ensues, and Ororo uses her powers to hold off a squad of pursuing cars while Banshee fights off the helicopters from above. At first, all seems well\\u2014but the escape takes a bad turn when Banshee catches a stray bullet and falls to his death. Pushing their powers to their limit, Nightcrawler and Storm fight for their lives against the pursuing soldiers. After breaking free of his cuffs, Piotr helps them out as he reveals his own Mutant ability: he can transform his body into near-indestructible steel, giving him superhuman strength and invulnerability.\\n\\nAfter Piotr uses his powers to punch his way through a police barricade and clear a path for the others, they all drive off into the distance in the stolen van. But before long, they receive a radio message from a familiar voice.\\n\\n*\\\"Stay calm,\\\"* Scott Summers says. *\\\"We're right on top of you!\\\"*\\n\\nA shadow appears on the highway as the frantic chase continues. It's **the Blackbird**! Scott is sitting in the cockpit, and Jean is next to him.\\n\\n*\\\"You've gotta jump!\\\"* Jean calls. *\\\"Don't worry, we'll catch you!\\\"*\\n\\nFrom the cockpit of the Blackbird, Jean uses her telekinesis to take control of the van's steering wheel, allowing the trio to clamber onto the roof of the van as it speeds along. As the van drives off the side of a cliff\\u2014where the Blackbird is waiting to pick them up\\u2014they just barely manage to jump into the cargo hold before the van falls and crashes on the ground below. Safe inside the jet, Storm, Nightcrawler and Piotr meet Scott and Jean personally.\\n\\n*\\\"Who are you people, exactly?\\\"* Storm asks.\\n\\n*\\\"We're the X-Men,\\\"* Scott says proudly. *\\\"And if you want to join us...then so are you.\\\"*\\n\\nIt turns out that Professor Xavier has been in touch with the three Mutant freedom fighters for weeks, and offered them a place in the Xavier Institute weeks ago. They accepted, but refused to leave for America before finishing one last rescue. Though the group is saddened by the loss of Banshee, Piotr agrees to join the X-Men along with Storm and Nightcrawler, believing that he has a duty to pay them back for rescuing him. Scott and Jean welcome him to the group with open arms, dubbing him \\\"**Colossus**\\\".\\n\\nBut the X-Men's elation is suddenly cut short when the Blackbird mysteriously stops in mid-air. Alarm sirens blare as some mysterious force grips the jet from the outside, and its navigation computers instantly go haywire. As they rush to the cockpit to figure out what's going on, their blood runs cold as they look out the window and see a familiar figure: ***Magneto****!* Showing off the full extent of his powers, he effortlessly hovers in mid-air in a bubble of magnetic energy; with one hand outstretched, he holds the Blackbird in the grip of a magnetic field.\\n\\nIt seems that Magneto has followed Scott and Jean to Russia, eager for a rematch with them. In the five years since Magneto murdered the scientist **Bolivar Trask**, he has had numerous confrontations with the X-Men\\u2014and each time, the X-Men have narrowly escaped with their lives.\\n\\nThinking fast, Scott and Jean clamber onto the roof of the Blackbird and engage Magneto, but he taunts them as he deflects Scott's optic blasts and shrugs off Jean's telepathic attacks\\u2014but the three new X-Men spring into action to aid them. Though Magneto easily subdues Colossus with his magnetic powers, Storm manages to weaken his shield by summoning a massive lightning storm, and Nightcrawler uses his teleportation abilities to land a crushing kick to his midsection. Taking advantage of the distraction, Scott blasts Magneto with his optic blasts, weakening him enough to free the Blackbird from his magnetic field. Seizing their window of opportunity, the X-Men pile into the jet and strap themselves in, and they make their escape.\\n\\nBack in Westchester, Professor Xavier happily welcomes his three new recruits to the Xavier Institute with open arms, and he gives them all a rousing speech as they gather in the mansion.\\n\\nIs the Professor turning them into an *army?*\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxk7dz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559862102.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559874781.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOur story begins five years after the events of our last movie. In the time since Jean Grey and her fellow X-Men escaped from a US government base, battled the Sentinels, and survived a confrontation with the Mutant terrorist Magneto, America has slowly become a hotbed of political unrest. As the debate over Mutant rights rages on, young Mutants are still regularly arrested and detained without trial when their powers manifest, Mutant rights protests regularly erupt into riots in major cities, and lurid stories about wanted Mutant fugitives regularly make the evening news. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAmid this tense backdrop, the terrorist Magneto launches attacks on police stations and military bases without warning, always leaving a trail of dead bodies in his wake. But in his stately Westchester mansion, political activist Professor Charles Xavier does his best to weather the storm as he peacefully fights for his people\\u0026#39;s freedom while training his Mutant pupils to use their powers for good. But as the years wear on, the teenage X-Men\\u2014now young adults\\u2014face plenty of changes in their private lives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, young \\u003Cstrong\\u003EWarren Worthington\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EAngel\\u003C/strong\\u003E\\u0026quot;) chooses to leave the Xavier Institute to care for his terminally ill father. Then \\u003Cstrong\\u003EHank McCoy\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EBeast\\u003C/strong\\u003E\\u0026quot;) chooses to leave to pursue his doctoral studies, planning to devote his life to science. Finally, \\u003Cstrong\\u003EBobby Drake\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EIceman\\u003C/strong\\u003E\\u0026quot;), who just wants a normal life, decides to settle down with his girlfriend \\u003Cstrong\\u003ELorna\\u003C/strong\\u003E. Only \\u003Cstrong\\u003EScott Summers\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003ECyclops\\u003C/strong\\u003E\\u0026quot;) can\\u0026#39;t envision a life outside of the X-Men; ever since losing his family in a mysterious plane crash at the age of 10, the Xavier Institute has been Scott\\u0026#39;s only home, and the X-Men are the only family that he has left. And as his relationship with \\u003Cstrong\\u003EJean Grey\\u003C/strong\\u003E develops into a passionate love affair, Jean is torn between her devotion to Scott and her desire to move forward with her life; though she longs to conceal her powerful psychic abilities and live as an ordinary human, she knows that Scott could never leave the Institute, and she feels compelled to stay by his side. This leaves Scott and Jean as the last remaining members of the original X-Men. But that may change soon.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Professor Xavier turns his eyes to the world at large, it soon becomes clear that the struggle for Mutant rights is no longer solely an American problem; all over the world, innocent Mutants are being arrested and detained by paranoid government forces, and some are choosing to fight back. Over time, rumors spread of an underground network of Mutant rebels, who supposedly work to shelter and protect fugitive Mutants. Some call them terrorists, and others call them freedom fighters\\u2014but Professor Xavier sees them as potential new recruits.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn a quiet day in Moscow, Russia, a pair of uniformed FSB agents knock on the door of a secluded apartment, flanked by a squad of armed soldiers. When a young blonde woman answer the door, she stares defiantly at the agents.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;There\\u0026#39;s no use playing the fool, Ms. Rasputin,\\u0026quot;\\u003C/em\\u003E the lead agent says. \\u003Cem\\u003E\\u0026quot;We know that you\\u0026#39;re sheltering a Mutant here. And you know the penalty for refusing to hand him over.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe woman\\u2014\\u003Cstrong\\u003EIlyana Rasputin\\u003C/strong\\u003E\\u2014stares back at them, maintaining her cold composure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I would never give my brother to mongrels like you,\\u0026quot;\\u003C/em\\u003E she hisses. \\u003Cem\\u003E\\u0026quot;He\\u0026#39;s a Mutant, but he\\u0026#39;s still my brother.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA tall, dark-haired man appears behind Ilyana and places a comforting hand upon her shoulder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;It\\u0026#39;s alright, Ilyana,\\u0026quot;\\u003C/em\\u003E \\u003Cstrong\\u003EPiotr Rasputin\\u003C/strong\\u003E says. \\u003Cem\\u003E\\u0026quot;I\\u0026#39;ll go quietly. But always remember: your quarrel is with me, and me alone. My family is not to be harmed.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith that, the agents cuff Piotr\\u0026#39;s wrists, and the soldiers escort him from the building at gunpoint. Standing at the window of her apartment with tear-streaked eyes, Ilyana can only watch helplessly as her beloved brother is marched into an armored van, softly whispering \\u003Cem\\u003E\\u0026quot;Goodbye\\u0026quot;\\u003C/em\\u003E as they close the doors. But unbeknownst to her, he\\u0026#39;s being watched from afar...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt turns out that three members of the mysterious \\u003Cstrong\\u003EMutant Freedom Network\\u003C/strong\\u003E have come to Moscow, and they know that a Mutant is about to be imprisoned by government forces. And this time, they\\u0026#39;ve sworn to do something about it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe meet three of them:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESean Cassidy\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003EBanshee\\u003C/strong\\u003E\\u0026quot;), a grizzled ex-cop from Dublin who was thrown out of Interpol after he was outed as a Mutant. He possesses a powerful sonic scream that\\u0026#39;s strong enough to shatter glass, allowing him to fly for limited distances.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EOroro Munroe\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003EStorm\\u003C/strong\\u003E\\u0026quot;), a young Kenyan-born woman who spent years as a petty thief on the streets of Nairobi, but became accepted as a priestess by a group of Bantu farmers, who realized that she possessed a supernatural ability to control the weather.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EKurt Wagner\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003ENightcrawler\\u003C/strong\\u003E\\u0026quot;), a fun-loving young German man of Romani heritage, who grew up as an acrobatic performer in a traveling circus. Possessing the power to vanish and teleport in a puff of smoke, his Mutant abilities give him a bizarre demonic appearance; his body is covered with blue fur, and he has fangs and a prehensile tail.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAs Banshee, Storm and Nightcrawler watch the armored van pull into a convoy, a squad of black helicopters appears in the sky, watching the FSB agents from above as they drive Piotr away. At Banshee\\u0026#39;s command, they bust into action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, Nightcrawler uses his teleporting abilities to jump into the front seat of the armored van, where he kicks the driver into the street and takes the wheel. As he hijacks the truck and drives away with Piotr in the back, Storm lashes out with a bolt of lightning and fries the other vans in the convoy before they can drive off after him. Moments later, Banshee tears through the sky and brings down a helicopter with his sonic scream.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who the hell are you people?\\u0026quot;\\u003C/em\\u003E Piotr demands. \\u003Cem\\u003E\\u0026quot;And where are you taking me?!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Relax, mein freund,\\u0026quot;\\u003C/em\\u003E Nightcrawler says. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;re the good guys! And we\\u0026#39;re taking you where they can\\u0026#39;t hurt you. After that, you can go where you wish.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENightcrawler high-tails it to the highway with Storm riding on top of the stolen van, and Banshee follows them from the sky. As the FSB calls for backup, a frantic car chase ensues, and Ororo uses her powers to hold off a squad of pursuing cars while Banshee fights off the helicopters from above. At first, all seems well\\u2014but the escape takes a bad turn when Banshee catches a stray bullet and falls to his death. Pushing their powers to their limit, Nightcrawler and Storm fight for their lives against the pursuing soldiers. After breaking free of his cuffs, Piotr helps them out as he reveals his own Mutant ability: he can transform his body into near-indestructible steel, giving him superhuman strength and invulnerability.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter Piotr uses his powers to punch his way through a police barricade and clear a path for the others, they all drive off into the distance in the stolen van. But before long, they receive a radio message from a familiar voice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Stay calm,\\u0026quot;\\u003C/em\\u003E Scott Summers says. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;re right on top of you!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA shadow appears on the highway as the frantic chase continues. It\\u0026#39;s \\u003Cstrong\\u003Ethe Blackbird\\u003C/strong\\u003E! Scott is sitting in the cockpit, and Jean is next to him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;ve gotta jump!\\u0026quot;\\u003C/em\\u003E Jean calls. \\u003Cem\\u003E\\u0026quot;Don\\u0026#39;t worry, we\\u0026#39;ll catch you!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the cockpit of the Blackbird, Jean uses her telekinesis to take control of the van\\u0026#39;s steering wheel, allowing the trio to clamber onto the roof of the van as it speeds along. As the van drives off the side of a cliff\\u2014where the Blackbird is waiting to pick them up\\u2014they just barely manage to jump into the cargo hold before the van falls and crashes on the ground below. Safe inside the jet, Storm, Nightcrawler and Piotr meet Scott and Jean personally.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who are you people, exactly?\\u0026quot;\\u003C/em\\u003E Storm asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;re the X-Men,\\u0026quot;\\u003C/em\\u003E Scott says proudly. \\u003Cem\\u003E\\u0026quot;And if you want to join us...then so are you.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt turns out that Professor Xavier has been in touch with the three Mutant freedom fighters for weeks, and offered them a place in the Xavier Institute weeks ago. They accepted, but refused to leave for America before finishing one last rescue. Though the group is saddened by the loss of Banshee, Piotr agrees to join the X-Men along with Storm and Nightcrawler, believing that he has a duty to pay them back for rescuing him. Scott and Jean welcome him to the group with open arms, dubbing him \\u0026quot;\\u003Cstrong\\u003EColossus\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut the X-Men\\u0026#39;s elation is suddenly cut short when the Blackbird mysteriously stops in mid-air. Alarm sirens blare as some mysterious force grips the jet from the outside, and its navigation computers instantly go haywire. As they rush to the cockpit to figure out what\\u0026#39;s going on, their blood runs cold as they look out the window and see a familiar figure: \\u003Cstrong\\u003E\\u003Cem\\u003EMagneto\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E!\\u003C/em\\u003E Showing off the full extent of his powers, he effortlessly hovers in mid-air in a bubble of magnetic energy; with one hand outstretched, he holds the Blackbird in the grip of a magnetic field.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems that Magneto has followed Scott and Jean to Russia, eager for a rematch with them. In the five years since Magneto murdered the scientist \\u003Cstrong\\u003EBolivar Trask\\u003C/strong\\u003E, he has had numerous confrontations with the X-Men\\u2014and each time, the X-Men have narrowly escaped with their lives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThinking fast, Scott and Jean clamber onto the roof of the Blackbird and engage Magneto, but he taunts them as he deflects Scott\\u0026#39;s optic blasts and shrugs off Jean\\u0026#39;s telepathic attacks\\u2014but the three new X-Men spring into action to aid them. Though Magneto easily subdues Colossus with his magnetic powers, Storm manages to weaken his shield by summoning a massive lightning storm, and Nightcrawler uses his teleportation abilities to land a crushing kick to his midsection. Taking advantage of the distraction, Scott blasts Magneto with his optic blasts, weakening him enough to free the Blackbird from his magnetic field. Seizing their window of opportunity, the X-Men pile into the jet and strap themselves in, and they make their escape.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in Westchester, Professor Xavier happily welcomes his three new recruits to the Xavier Institute with open arms, and he gives them all a rousing speech as they gather in the mansion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs the Professor turning them into an \\u003Cem\\u003Earmy?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxk7dz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxk7dz/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxk7dz/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559845981.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_5ijtn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 12, \"hide_score\": false, \"name\": \"t3_bxfqen\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ZMjeoipMxQ3bRu7Gbso5AMjI0QnyRUvbys50zzeSRHg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559850058.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?auto=webp\\u0026s=6d88313f2c01fb65fd4dfac7f372dd58761154d8\", \"width\": 1985, \"height\": 184}, \"resolutions\": [{\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ef14c58b5359e5cee2e44484a1445c24cbcb6c74\", \"width\": 108, \"height\": 10}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5c10e0ab3c5c459950fd8b2b53afc9550ada288e\", \"width\": 216, \"height\": 20}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=04da7a02871577f68e7b8f226ace537039186d1f\", \"width\": 320, \"height\": 29}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5798b9ac875f896439e407b4be792746ac5af021\", \"width\": 640, \"height\": 59}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2a6b88d3275179016bbc16a31c84fab844a21611\", \"width\": 960, \"height\": 88}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ac41548df3abfb57153e76f1acf77aad1ea06881\", \"width\": 1080, \"height\": 100}], \"variants\": {}, \"id\": \"37BQwgGDDek1wnbE0TCNlewSvltCJFOhbRB1kfNUMhA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfqen\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"killroy200\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxfqen/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/ol16qrsw3q231.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1559821258.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_j843ij2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"David baldeon\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bxetqt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/m3rUKYfsSdlyGoaGh5wvUvrM1c4STiyplCNdlfpQRhk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559843173.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"pbs.twimg.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?auto=webp\\u0026s=43c066330a06d2d8d5bca251a8a4811882c33423\", \"width\": 1840, \"height\": 2048}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0bdafd5b0f83d3ec2b33853ea6562f883e0397c2\", \"width\": 108, \"height\": 120}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1f2a430d8f9d494b3d60dab91709ae43cece167f\", \"width\": 216, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=0fe60b0fa60898cc650a2d809feb39a7d2ce2591\", \"width\": 320, \"height\": 356}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=77a93a8b1083aa79c8639a40bb83dd9872e1788e\", \"width\": 640, \"height\": 712}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=03aa15e18e660b2763ea2a3b471f9d19e083dd9b\", \"width\": 960, \"height\": 1068}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c7767c724137a83b643d47906adb4f9165dce0b0\", \"width\": 1080, \"height\": 1202}], \"variants\": {}, \"id\": \"5Tr0M7lNan8uCLe6JLeIcnoU05eiHN8ApgBANUjkHug\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxetqt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mothman232\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxetqt/david_baldeon/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://pbs.twimg.com/media/D7lJtTCXkAI0O3E.jpg:large\", \"subreddit_subscribers\": 703, \"created_utc\": 1559814373.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I CAN GO 15 SECONDS WITH ANYTHING. Howard looks like he is going to make doodie in his pants when GB hijacks his mic. Would GB walk away from this encounter if he bullied Howard in 2019? T O P L E S S\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bwsi3l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwsi3l\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Vkisu9g-VZo3thxeoTEh7_sHe6pgucV1XMkDjc08RY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559703482.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?auto=webp\\u0026s=3e2a10eb30c9a5b77b30a241735e3e8b8e1cfccc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a22b052dedffebf783ba26dae6003cd3c55a250\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcf039e2e79b58782dfd536386b50fa8b338f1d2\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=77375886fab998dde88f536da5c4503437f4c152\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"bdEz7hRKzTsVVn3Vyr7qozX0OUrbARsbBsUoqJKdw7M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwsi3l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\\u0026t=2s\", \"subreddit_subscribers\": 703, \"created_utc\": 1559674682.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_11r26z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Image test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bwl0fm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/kksd_8fx216qsy4gL0wzul47ods9QoCbZqBfN9_5nP8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559654591.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?auto=webp\\u0026s=ec79ffaf9e22e32c6e41f6946737e14d55a3b940\", \"width\": 2896, \"height\": 2896}, \"resolutions\": [{\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c3c8dfece59ca2a351d51df624d7beaabb02863c\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1b1a7dac32dd046927c2c8fc65bb58d81ac0c932\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3e8cd8af164b2b78530a4168875c3ab407422677\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=bf806ec58298e63494dd4d00966bde0c369f6c7a\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e8fc39dbf7e1348397f5a9836f13473aeff79ad1\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=86615f13d9764a381a194c798b715a78a43db6b6\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"xjLAgIF4juxLsEPnfXluO5CqMIQxaAYzHRiXsdAzPMg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwl0fm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Syclowave\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwl0fm/image_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/8mrszs4py9231.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559625791.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[France](#bar-10-blue) , via u/BuzzBuzz01\\n\\n#[](#icon-info-big) About\\n\\n - **Nickname(s)**: Les Bleues\\n\\n - **Women's World Cup Appearances**: 4\\n\\n - **Best Finish**: 4th (2001)\\n\\n - **FIFA Ranking**: 4 (3rd in Europe)\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nFrance has been building it's women's football for years on years on years. With parallels to men's team (which are addressed in the P.O.D) combined with being the hosts, is expected to at the very least contest in the final. After building up from the ground up year on year on year, this seems the exact right for them to be hosting the World Cup. They're excellent in every department, with strong centrebacks who can both play out the back, proven and experienced goal scorers up top, technical midfielders, and creative wingers. France has 12 wins in the last 13 matches since the SheBelievesCup (including 3-1 against Brazil, the USA and Japan and 4-0 against Denmark + one defeat against Germany 0-1). Is this the year that France finally puts it all together to become the first ever country to hold both the men's and women's World Cups?\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager:** Corinne Diacre (France)\\n\\n**Goalkeepers:** Sarah BOUHADDI (Olympique Lyonnais), Sol\\u00e8ne DURAND (EA Guingamp), Pauline PEYRAUD-MAGNIN (Arsenal)\\n\\n**Defenders:** Julie DEBEVER (EA Guingamp), Sakina KARCHAOUI (Montpellier HSC), Amel MAJRI (Olympique Lyonnais), Griedge MBOCK (Olympique Lyonnais), \\u00c8ve P\\u00c9RISSET (Paris Saint-Germain), Wendie RENARD (Olympique Lyonnais), Marion TORRENT (Montpellier HSC), A\\u00efssatou TOUNKARA (Atl\\u00e9tico Madrid)\\n\\n**Midfielders:** Charlotte BILBAULT (Paris FC), \\u00c9lise BUSSAGLIA (Dijon FCO), Ma\\u00e9va CLEMARON (FC Fleury 91), Grace GEYORO (Paris Saint-Germain), Amandine HENRY (Olympique Lyonnais), Ga\\u00ebtane THINEY (Paris FC)\\n\\n**Forwards:** Viviane ASSEYI (Girondins de Bordeaux), Delphine CASCARINO (Olympique Lyonnais), Kadidiatou DIANI (Paris Saint-Germain), Val\\u00e9rie GAUVIN (Montpellier HSC), Emelyne LAURENT (EA Guingamp), Eug\\u00e9nie LE SOMMER (Olympique Lyonnais)\\n\\n#[](#icon-whistle-big) [Potential Starting 11](https://imgur.com/a/hMH9Gy8)\\n\\n Bouhaddi\\n\\n Torrent Renard Mbock Bathy Majri\\n\\n Bussaglia Henry (C)\\n\\n Cascarino Thiney Diani\\n\\n Le Sommer\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n[Eug\\u00e9nie Le Sommer (ST):](https://cdn-media.rtl.fr/cache/YFtm3Fv-bsG7aM6_D8KqTw/880v587-0/online/image/2018/1228/7796070733_l-attaquante-francaise-eugenie-le-sommer-le-1er-septembre-2018.jpg)\\n\\nLe Sommer usually plays up top as the out and out striker and is without a doubt the star attacking player. With 74 goals in 159 caps, Le Sommer is only 7 goals off of being the country's all time top goal scorer. Le Sommer is not simply just some poacher and can score in a multitude of ways, whether with her fox-in-the-box instincts (either her feet or her head), ability to get past defenders with her adept dribbling, or just absolutely lacing one from outside the box, Le Sommer has it all.\\n\\n[Here is a short highlight video of hers](https://www.youtube.com/watch?v=CCC4eK4aEdA)\\n\\n\\n[Amandine Henry (DM)](https://c.static-nike.com/a/images/w_960,c_limit,f_auto/x7ycyrbgveskryrkkpyy/athlete-stories-amandine-henry.jpg)\\n\\nThe 29 year old captain has 83 appearances and 11 goals for the national team. With the ability to launch a belter outside the box, Henry is the calm metronome in midfield for France. If you were to compare her to a player it would have to be a prime Sergio Busquets. A very one-touch oriented style of play, Henry uses her calmness and series of fakes and feints to swivel and alleviate pressure with ease. And if she does somehow manage to lose the ball, she's quick and strong to recover and win it back.\\n\\n[Here is a featurette on Henry done by France's official YouTube channel](https://www.youtube.com/watch?v=YMUzaTan7mM)\\n\\n[Here is a Henry highlight video in France's 3-1 win over the USA in January](https://www.youtube.com/watch?v=ry4Ed25fCu8)\\n\\nQuite literally the heart of the midfielder and always in the right spot, Henry will play a key role for France. If they do happen to match up against the USA in the quarterfinal if all goes accepted, her matchup against Julie Ertz should definitely be one to watch out for.\\n\\n\\n[Wendie Renard (CB)](https://i.pinimg.com/originals/51/75/7f/51757f3bb7e30e196793fcf928a1e884.jpg)\\n\\nThe former captain, Renard is without a doubt one of the best defenders in the world. At 6'2\\\" (188 cm), Renard is one of the biggest and tallest players at the tournament, which makes a particular threat on set pieces in defence and attack, seen with her 12 goals in 26 matches across the league and Champions League with the oh so dominant Lyon. Though don't be fooled, Renard is not just a French Gareth McAuley, she also provides an excellent Plan B with her pinpoint long balls from the back. If a team happens to be pressuring France extensively, just get to Renard and she'll knock one into the channels or over the top with Bonnucci/van Dijk levels of precision.\\n\\n#[](#icon-discuss-big) Points of Discussion\\n\\n - **The Seeming Parallels to the Men's Team**\\nLet's look back at the discussion points surrounding the men's team. \\nManaged by a former player, Didier Deschamps for the men's and Corinne Diacre for the women, the latter of which became the first woman to manage a men's professional football match, when she took charge of Clermont Foot.\\nAbsolutely loaded with talent. experience plus up and coming stars\\nLeft some talent at home to try and fit together players who fit the system, in the case of the men's it was Lacazette and with the women's it's with Division 1 F\\u00e9minine's top goalscorer Marie-Antoinette Katoto, who had 22 goals in 22 games at only 20 years old\\nHaven't made nearly as far as they should have in previous tournaments and have lots of pressure to turn that around this time around, with the women having more pressure being the hosts\\n\\n\\n - **Lyon Dominant**\\nIf they trot out with the expected XI, seven of their starting XI are a part of the Champions League winning Lyon, who are blessed with stars from across the planet. Since Lyon put money into women's football quite early on, they've seemed to reap the benefits immensely. Lyon have won 13 straight league titles and 4 straight Champions League's. They scored 89 goals and allowed only 6 in 22 matches this season, going 20-2-0 and 62 points, and PSG were still hot on their tail with 57. With a core of players playing with one another week in week out, this is a definite positive heading into the tournament\\n\\n\\n- **Their Style of Play**\\nFrance are no one-dimensional team, being able to attack in a number of ways, with a particular emphasis on attacking the wings and overloading one side to make space in the middle to get to their goal scorers. The left overload is one to be particularly terrified of, as Henry drifts out to the channels to support an overlapping Majri, who is one of the most technically gifted defenders at the tournament, coupled with Diani and Thiney, a combination of very high skilled players that teams will be forced to double up with, leaving the deadly Le Sommer room to manuever in and around the box\\n\\nOther players to look out for include Amel Majri (LB) , a converted midfielder turned fullback, and with her technical ability making her one of if not the best in her position, Delphine Cascarino (RW) a typical young tricky winger who loves a little stepover or two, and the experienced 33 year old Ga\\u00ebtane Thiney (AM), who has 155 caps and 58 goals for Les Blues\\n\\n---\\n\\n[South Korea](#bar-10-red) , via u/loser0001\\n\\n#[](#icon-info-big) About\\n\\n- **Nickname(s)**: Taegeuk Ladies\\n\\n- **Appearances**: 2\\n\\n- **Best Finish**: Round of 16 (2015)\\n\\n- **FIFA Ranking**: 14\\n\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nSouth Korea women's team played their first international in 1990, when they were unsurprisingly hammered by Japan in what remains their heaviest-ever defeat. Thankfully things have improved since then. In more recent history, they finished runners-up in their group at the 2015 World Cup, behind Brazil but ahead of Costa Rica and Spain; in the Round of 16 they were knocked out by future 2019 opponents France.\\n\\n**Route to the 2019 World Cup**\\n\\nTL;DR: North South Korea best Korea\\n\\nI'm sure there are a few stories in this World Cup of teams qualifying against the odds, but South Korea's may be up there, amid unusual circumstances.\\n\\nFor background, the Asian Football Confederation (AFC) has 5 spots for the World Cup. Qualification is done via the AFC's regional tournament - the Asian Cup - held every four years, in the year before the World Cup. That makes qualification for the Asian Cup doubly important - miss out on qualifying for the Asian Cup, and you absolutely won't be going to the World Cup.\\n\\nIn the 2017 Asian Cup qualifying, South Korea were the top seeds ahead of the group draw (Japan, Australia, and China were the 1-2-3 of the previous Asian Cup and so did not participate in qualifying). Rather than the standard home and away fixtures, all group games are played in a selected 'host nation' with just 2 or 3 days rest in between games. Only the group winner qualifies for the Asian Cup proper.\\n\\nSouth Korea were drawn in a group with North Korea, then ranked #10 in the world, 7 places above them in the FIFA rankings. To make matters worse, North Korea were the selected host nation and would be playing all games on home soil. Unlucky to say the least, but how did this happen if South Korea were the top seeds?\\nFollowing the North Korean doping scandal in 2011, North Korea were banned from participating in the 2015 World Cup, and the 2014 Asian Cup (and qualifying). Because they hadn't taken part in the previous Asian Cup at all, they had the lowest seeding, being drawn from pot 5.\\n\\nBoth North and South Korea won their early group games comfortably. For the probable group-deciding match against each other, I could find exactly two highlights videos, corresponding to the respective North and South Korean broadcasts of the match. The South Korean source has an interesting camera angle but I recommend watching just the start to see the atmosphere created by a few tens of thousand of well-co-ordinated North Korean fans (attendance was reported to be 42,500). The North Korean source is in some ways much better - it has replays, alternate angles, and commentary - but the video quality makes it look like it's from a broadcast in the 90's. If you want to watch this one, the goals are at 29:00 and 51:20. There's also a penalty given and saved starting from 6:00. The match finished 1-1.\\n\\nThose were the only goals that either Korea would concede, and in the end it was South Korea that topped the group with a goal difference of +20 to North Korea's +17.\\n\\nIn the 2018 Asian Cup South Korea were once again slightly unlucky with their group draw, finding themselves with both Australia and Japan. They drew against both and finished level on points with both, but found themselves in 3rd place based on goal difference and goals scored. Thankfully this was enough to get them to a play-off against Phillipines for that last World Cup spot, whom they dispatched 5-0.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\nThe majority of the national team play their club football in the domestic WK League, with two playing in England's WSL and one in Japan. Incheon Red Angels are the dominant force in Korea, having won the past 6 league titles and are on course to make that 7 this season.\\n\\nThe team has a handful of players who were part of the U-17 World Cup winning squad from 2010.\\n\\n**Manager**: Yoon Deok-yeo (South Korea)\\n\\n**Goalkeepers:** Kang Ga-ae (Gumi), Jung Bo-ram (Hwacheon), \\tKim Min-jeong (Incheon)\\n\\n**Defenders:** Kim Hye-ri (Incheon), Shin Dam-yeong (Incheon), Lim Seon-joo (Incheon), Lee Eun-mi (Suwon), Kim Do-yeon (Incheon), Jang Sel-gi (Incheon), Jeong Yeong-a (Gyeonju), Hwang Bo-ram (Hwacheon)\\n\\n**Midfielders:** Lee Young-ju (Incheon), Kang Yu-mi (Hwacheon), Lee So-dam (Incheon), Moon Mi-ra (Suwon), Cho So-hyun (West Ham), Lee Min-a (INAC Kobe), Kang Chae-rim (Incheon)\\n\\n**Forwards:** Jung Seol-bin (Incheon), Ji So-yun (Chelsea), Lee Geum-min (Gyeonju), Yeo Min-ji (Suwon), Son Hwa-yeon (Changnyeon)\\n\\n#[](#icon-whistle-big) [Potential Starting 11](https://i.imgur.com/ejiZpWV.jpg)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**[Ji So-yun](http://photo.hankooki.com/newsphoto/v001/2019/04/09/holic20190409183756_P_02_C_1.jpg)**: Korean prodigy - youngest senior national team debut and goal, both at the age of 15, and highest ever goal scorer (54 in 116 appearances). Unusual in that she did not start her senior club career in Korea, being signed early by INAC Kobe Leonessa. In her 3 years in Japan she won three League titles, and just before leaving for Chelsea she managed to score against them in the final of the International Women's Club Championship (Japan's attempt to get a Club World Cup going). Since moving to England with Chelsea, she has added another few titles to the collection, and is a regular nominee and occasional winner for PFA player of the year. Has excellent dead ball skills and is just generally a class above. Is hugely important to the team - more so than Son Heung-min is to the men's team.\\n\\n**[Cho So-hyun](https://img.sbs.co.kr/newimg/news/20181229/201266238_1280.jpg)**: Korea's captain and most capped player ever with 121 appearances. Spent the majority of her career with Incheon in the WK League, but in the past few years has played in Japan, Norway, and signed for West Ham at the start of 2019. Usually plays as DM between the defensive and midfield lines. The coach has sometimes started her in a CB position for extra reliability, but midfield is her natural position.\\n\\n---\\n\\n\\n#[](#icon-discuss-big) Points of Discussion\\n\\n - **Norway**\\n\\nThe main point of discussion is trying to work out how good this South Korean team really is. They didn't actually lose a single game during qualifying, drawing with teams who on paper were much better - North Korea, Australia, and Japan. This has seen their FIFA ranking steadily rise, and I'm not sure if it has settled on its 'true' value yet. Progressing to the group stage again is the target for this team, and to do that, picking up points against Norway is probably required. To get a win against Norway and take the 2nd spot (barring any other upsets in the group) would be enough to label this World Cup a success.\\n\\nThe focus on Norway is evident in their pre-tournament friendlies, as they arranged two matches against Iceland and two against Sweden under the assumption that the Northern European teams will have a similar physicality to their game. In the first game against Iceland, Korea were dominant, and yet lost 3-2 as Iceland scored with their only 3 attempts on goal (to Korea's 22 shots), leading the coach to rather publicly bemoan the state of his goalkeepers and defence. At least in the goalkeeper department, his hand has been forced as veteran keeper Kim Jung-mi suffered an Achilles tendon injury in training.\\n\\n - **Future retirements?**\\n\\n\\nThis is now just my personal speculation, but the two current stars Ji So-yun and Cho So-hyun are now 28 and 30 respectively, and while they may still play in another World Cup, they also may not. With these two being so important to the team, could this be the peak of this generation of players? A lot of the current core of players are hovering around 26/27 years old, standout fullback Jang Sel-gi (KFA player of the year 2018) is 25. If South Korea won't be fielding a team of 30-year-olds in 4 years time, the team will look very different, and it's not clear who the young rising stars are now.\\n\\n---\\n\\n[Norway](#bar-10-red) , via u/Crusarius28\\n\\n#[](#icon-info-big) About\\n\\n- **Appearances**: 7 (All Editions)\\n\\n- **Best Finish**: Champions (1995)\\n\\n- **FIFA Ranking**: 12\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nFormer World and Olympic Champions Norway have fallen from power in the past decade. The team comes to France with big expectations after having qualified for another World Cup in dramatic fashion. The Norwegians left it all to the last match-day and had to earn a hard fought victory over EURO Champions Netherlands to earn automatic qualification.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager**: Martin Sjogren (Sweden)\\n\\n**Goalkeepers:** Ingrid Hjelmseth (Stabaek), Cecilie Fiskerstrand (LSK), Oda Bogstad (Arna-Bjomar)\\n\\n**Defenders:** Ingrid Wold (LSK), Maria Thorisdottir (Chelsea), Stine Hovland (Sandviken), Maren Mjelde (Chelsea), Cecilie Kvamme (Sandviken)\\n\\n**Midfielders:** Synne Hansen (LSK), Vilde Boe Risa (Kopparbergs), Caroline Hansen (Wolfsburg/Barca), Ingrid Engen (LSK), Guro Reiten (LSK), Kristine Minde (Wolfsburg), Frida Maanum (Linkoping), Karina Saevik (Kolbotn)\\n\\n**Forwards:** Elise Thorsnes (LSK), Isabell Herlovsen (Kotbotn), Lisa-Marie Utland (Rosengard), Therese Asland (LSK), amalie Eikeland (Sandviken), Emilie Haavi (LSK), Emilie Nautnes (Arna-Bjonar)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**Caroline Graham Hansen:** Completing a move to Barcelona just weeks before appearing in her first World Cup, Hansen will be Noway's most important player. The 24 yr old is the full midfield package that can control games, deliver pin point passes and score whenever needed. Ruled out of the 2015 World Cup due to a knee injury, she's back and stronger than ever. Forming a team around this future superstar was one of the headaches Coach Sjogren had this year, but it's a good headache to have.\\n\\n**Isabell Herlovsen:** 30 yr old Herlovsen is a constant goal threat. The brunt of all goals scored will be on Herlovsen's shoulders this summer. Her uncanny sense to be at the right place at the right time has paid dividends, including scoring the winner in the decider against the Netherlands. Her finishing skills will be a major key for Norway's progression.\\n\\n---\\n\\n#[](#icon-discuss) Points of Discussion\\n\\n**Turning Experience into Results**\\n\\nNorway are no strangers to winning and a realistic goal this year will be to get a medal. High expectations come from a storied past but following in the footsteps of legends proves no easy task. In terms of quality, Norway aren't able to best the top teams, but are certainly best of the rest and managing to utilize all their experience and hunger to put together performances early on versus Nigeria and France in the toughest qualifying group will be important to building momentum for Norway.\\n\\n**Defense**\\n\\nDefense wins championships, and true to the old adage, Norway's defense will be key. Chelsea duo Mjelde and Thorisd\\u00f3ttir are important in the back but Thorisdottir has missed half the season due to injury and may not be fully fit. Mjelde's responsibilities will extend to organizing the midfield during transitions, even more importantly as she herself likes to get forward and score goals. She's scored 19 goals for Norway from the fullback position thus far.\\n\\n**Ada Hedgerberg**\\n\\nThe world's best female player Ada Hedgerberg has refused to play for Norway since 2017 (think Messi refusing to play for Argentina), and the current team has done well to step up in her absence. While Hedgerberg has taken headlines this summer due to her stance on the treatment of women's footballers in Norway, the team has to continue doing what they've been doing for the past two years and not let any of the new found media attention affect their performances.\\n\\n---\\n[Nigeria](#bar-10-green) , via u/Crusarius28\\n\\n#[](#icon-info-big) About\\n\\n- **Appearances**: 7 (All Editions)\\n\\n- **Best Finish**: Quarter Finals (1999)\\n\\n- **FIFA Ranking**: 38\\n\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nNigeria have dominated Africa with 9 out of 11 Women's African Cup of Nations. But turning continental results into intercontinental ones proves tough, they haven't progressed past the group stages since 1999. Their search for more will be toughened by the hardest group in the World Cup with games versus France, Nigeria and Norway proving a major hurdle.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager**: Thoms Dennerby (Sweden)\\n\\n**Goalkeepers:** Tochukwu Oluehi (Rivers Angels), Chiamaka Nnadozie (Rivers Angels), Alaba Jonathan (Bayelsa Queens)\\n\\n**Defenders:** Osinachi Ohale (Vaxjo), Ngozi Ebere (Arna-Bjomar), Onome Ebi (Henan Huishang), Faith Michael (Pitea), Chidinma Okeke (Robo Queens)\\n\\n**Midfielders:** Amarachi Okoronkwo (Nasarawa Amazons), Evelyn Nwabuoku (Rivers Angels), Rita Chikwelu (Kristianstads), Ngozi Okobi-Okeoghene (Eskilstuna Utd), Halimatu Ayinde (Eskilstuna Utd), oganna Chukwudi (Djurgarden)\\n\\n**Forwards:** Anam Imo (Rosengard), Asisat Oshoala (Barcelona), Desire oparanozie (Guingamp), Chinaza Uchendu (Braga), Uchenna Kanu (Southeastern Fire), Rasheedat Ajibade (Avaldsnes), Francisca Ordega (Shangai), Chinwendu Ihezuo (Henan Huishang), Alice Ogebe (Rivers Angels)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**Asisat Oshoala:** \\u201cSuperzee\\u201d has added Women's African Footballer of the Year award to her title. Three time Women's African Footballer of the year in fact. Her clinical ability in front of goal, raw pace and power put her on the map back in 2014 and now she's leading the line at Barcelona and helping them to their first ever Women's Champions League Final in history.\\n\\n**Onome Ebi:** Playing in China hasn't hampered the 36yr old Nigerian. Her game reading and anticipation makes her a striker's nightmare. Add that to her supreme strength and you have a player that can shut down all but the fastest forwards in the game. Ebi will be representing the Super Eagles for the 5th time this summer.\\n\\n---\\n\\n#[](#icon-discuss) Points of Discussion\\n\\n**Preparation for Tournaments**\\n\\nThe Ladies of Nigeria have been underfunded and their tournament preparations have always been the absolute minimum if non existent. They went 2 full years without playing a game from May 2016 to April 2018, months before the next major tournament. They've fixed that issue this time around and have participated in several tournaments, friendlies and training camps that hopefully give them the push they need to defeat the group stage this time around.\\n\\n**Set Pieces and Defensive Gaps**\\n\\nThe Nigerians play a high defensive line and leave gaps but yet they only conceded 1 goal the entire AFCON tournament in 2018. Plugging those holes are important but recent friendlies and showings at the Algarve Cup exposed a weakness to set pieces as well. Ebi is 36 yrs old and even though her mind is quick, her feet are not and it will be the responsibility of the midfield to plug the gaps and not allow teams to get the ball to their forwards looking to make run behind.\\n\\n**Quick Transitions**\\n\\nThe midfield not only has to cover for gaps but quickly move the ball forward during transitions to the forwards. Nigeria's strengths and speed comes from their star strikers and they'll get the ball at every opportunity. Their top heavy system works when the ball is constantly up the pitch to the final third where their creative offense can shine.\", \"author_fullname\": \"t2_pasw0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"2019 Women's World Cup Group A Profile: France, South Korea, Norway, Nigeria\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwkei5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559621947.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559650215.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-blue\\\"\\u003EFrance\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/BuzzBuzz01\\\"\\u003Eu/BuzzBuzz01\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ENickname(s)\\u003C/strong\\u003E: Les Bleues\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWomen\\u0026#39;s World Cup Appearances\\u003C/strong\\u003E: 4\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: 4th (2001)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 4 (3rd in Europe)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFrance has been building it\\u0026#39;s women\\u0026#39;s football for years on years on years. With parallels to men\\u0026#39;s team (which are addressed in the P.O.D) combined with being the hosts, is expected to at the very least contest in the final. After building up from the ground up year on year on year, this seems the exact right for them to be hosting the World Cup. They\\u0026#39;re excellent in every department, with strong centrebacks who can both play out the back, proven and experienced goal scorers up top, technical midfielders, and creative wingers. France has 12 wins in the last 13 matches since the SheBelievesCup (including 3-1 against Brazil, the USA and Japan and 4-0 against Denmark + one defeat against Germany 0-1). Is this the year that France finally puts it all together to become the first ever country to hold both the men\\u0026#39;s and women\\u0026#39;s World Cups?\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager:\\u003C/strong\\u003E Corinne Diacre (France)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Sarah BOUHADDI (Olympique Lyonnais), Sol\\u00e8ne DURAND (EA Guingamp), Pauline PEYRAUD-MAGNIN (Arsenal)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Julie DEBEVER (EA Guingamp), Sakina KARCHAOUI (Montpellier HSC), Amel MAJRI (Olympique Lyonnais), Griedge MBOCK (Olympique Lyonnais), \\u00c8ve P\\u00c9RISSET (Paris Saint-Germain), Wendie RENARD (Olympique Lyonnais), Marion TORRENT (Montpellier HSC), A\\u00efssatou TOUNKARA (Atl\\u00e9tico Madrid)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Charlotte BILBAULT (Paris FC), \\u00c9lise BUSSAGLIA (Dijon FCO), Ma\\u00e9va CLEMARON (FC Fleury 91), Grace GEYORO (Paris Saint-Germain), Amandine HENRY (Olympique Lyonnais), Ga\\u00ebtane THINEY (Paris FC)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Viviane ASSEYI (Girondins de Bordeaux), Delphine CASCARINO (Olympique Lyonnais), Kadidiatou DIANI (Paris Saint-Germain), Val\\u00e9rie GAUVIN (Montpellier HSC), Emelyne LAURENT (EA Guingamp), Eug\\u00e9nie LE SOMMER (Olympique Lyonnais)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-whistle-big\\\"\\u003E\\u003C/a\\u003E \\u003Ca href=\\\"https://imgur.com/a/hMH9Gy8\\\"\\u003EPotential Starting 11\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Bouhaddi\\n\\n Torrent Renard Mbock Bathy Majri\\n\\n Bussaglia Henry (C)\\n\\n Cascarino Thiney Diani\\n\\n Le Sommer\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cdn-media.rtl.fr/cache/YFtm3Fv-bsG7aM6_D8KqTw/880v587-0/online/image/2018/1228/7796070733_l-attaquante-francaise-eugenie-le-sommer-le-1er-septembre-2018.jpg\\\"\\u003EEug\\u00e9nie Le Sommer (ST):\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELe Sommer usually plays up top as the out and out striker and is without a doubt the star attacking player. With 74 goals in 159 caps, Le Sommer is only 7 goals off of being the country\\u0026#39;s all time top goal scorer. Le Sommer is not simply just some poacher and can score in a multitude of ways, whether with her fox-in-the-box instincts (either her feet or her head), ability to get past defenders with her adept dribbling, or just absolutely lacing one from outside the box, Le Sommer has it all.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=CCC4eK4aEdA\\\"\\u003EHere is a short highlight video of hers\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://c.static-nike.com/a/images/w_960,c_limit,f_auto/x7ycyrbgveskryrkkpyy/athlete-stories-amandine-henry.jpg\\\"\\u003EAmandine Henry (DM)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe 29 year old captain has 83 appearances and 11 goals for the national team. With the ability to launch a belter outside the box, Henry is the calm metronome in midfield for France. If you were to compare her to a player it would have to be a prime Sergio Busquets. A very one-touch oriented style of play, Henry uses her calmness and series of fakes and feints to swivel and alleviate pressure with ease. And if she does somehow manage to lose the ball, she\\u0026#39;s quick and strong to recover and win it back.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=YMUzaTan7mM\\\"\\u003EHere is a featurette on Henry done by France\\u0026#39;s official YouTube channel\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=ry4Ed25fCu8\\\"\\u003EHere is a Henry highlight video in France\\u0026#39;s 3-1 win over the USA in January\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuite literally the heart of the midfielder and always in the right spot, Henry will play a key role for France. If they do happen to match up against the USA in the quarterfinal if all goes accepted, her matchup against Julie Ertz should definitely be one to watch out for.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.pinimg.com/originals/51/75/7f/51757f3bb7e30e196793fcf928a1e884.jpg\\\"\\u003EWendie Renard (CB)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe former captain, Renard is without a doubt one of the best defenders in the world. At 6\\u0026#39;2\\u0026quot; (188 cm), Renard is one of the biggest and tallest players at the tournament, which makes a particular threat on set pieces in defence and attack, seen with her 12 goals in 26 matches across the league and Champions League with the oh so dominant Lyon. Though don\\u0026#39;t be fooled, Renard is not just a French Gareth McAuley, she also provides an excellent Plan B with her pinpoint long balls from the back. If a team happens to be pressuring France extensively, just get to Renard and she\\u0026#39;ll knock one into the channels or over the top with Bonnucci/van Dijk levels of precision.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss-big\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EThe Seeming Parallels to the Men\\u0026#39;s Team\\u003C/strong\\u003E\\nLet\\u0026#39;s look back at the discussion points surrounding the men\\u0026#39;s team. \\nManaged by a former player, Didier Deschamps for the men\\u0026#39;s and Corinne Diacre for the women, the latter of which became the first woman to manage a men\\u0026#39;s professional football match, when she took charge of Clermont Foot.\\nAbsolutely loaded with talent. experience plus up and coming stars\\nLeft some talent at home to try and fit together players who fit the system, in the case of the men\\u0026#39;s it was Lacazette and with the women\\u0026#39;s it\\u0026#39;s with Division 1 F\\u00e9minine\\u0026#39;s top goalscorer Marie-Antoinette Katoto, who had 22 goals in 22 games at only 20 years old\\nHaven\\u0026#39;t made nearly as far as they should have in previous tournaments and have lots of pressure to turn that around this time around, with the women having more pressure being the hosts\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELyon Dominant\\u003C/strong\\u003E\\nIf they trot out with the expected XI, seven of their starting XI are a part of the Champions League winning Lyon, who are blessed with stars from across the planet. Since Lyon put money into women\\u0026#39;s football quite early on, they\\u0026#39;ve seemed to reap the benefits immensely. Lyon have won 13 straight league titles and 4 straight Champions League\\u0026#39;s. They scored 89 goals and allowed only 6 in 22 matches this season, going 20-2-0 and 62 points, and PSG were still hot on their tail with 57. With a core of players playing with one another week in week out, this is a definite positive heading into the tournament\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ETheir Style of Play\\u003C/strong\\u003E\\nFrance are no one-dimensional team, being able to attack in a number of ways, with a particular emphasis on attacking the wings and overloading one side to make space in the middle to get to their goal scorers. The left overload is one to be particularly terrified of, as Henry drifts out to the channels to support an overlapping Majri, who is one of the most technically gifted defenders at the tournament, coupled with Diani and Thiney, a combination of very high skilled players that teams will be forced to double up with, leaving the deadly Le Sommer room to manuever in and around the box\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EOther players to look out for include Amel Majri (LB) , a converted midfielder turned fullback, and with her technical ability making her one of if not the best in her position, Delphine Cascarino (RW) a typical young tricky winger who loves a little stepover or two, and the experienced 33 year old Ga\\u00ebtane Thiney (AM), who has 155 caps and 58 goals for Les Blues\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-red\\\"\\u003ESouth Korea\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/loser0001\\\"\\u003Eu/loser0001\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ENickname(s)\\u003C/strong\\u003E: Taegeuk Ladies\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 2\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Round of 16 (2015)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 14\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ESouth Korea women\\u0026#39;s team played their first international in 1990, when they were unsurprisingly hammered by Japan in what remains their heaviest-ever defeat. Thankfully things have improved since then. In more recent history, they finished runners-up in their group at the 2015 World Cup, behind Brazil but ahead of Costa Rica and Spain; in the Round of 16 they were knocked out by future 2019 opponents France.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERoute to the 2019 World Cup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETL;DR: North South Korea best Korea\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sure there are a few stories in this World Cup of teams qualifying against the odds, but South Korea\\u0026#39;s may be up there, amid unusual circumstances.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor background, the Asian Football Confederation (AFC) has 5 spots for the World Cup. Qualification is done via the AFC\\u0026#39;s regional tournament - the Asian Cup - held every four years, in the year before the World Cup. That makes qualification for the Asian Cup doubly important - miss out on qualifying for the Asian Cup, and you absolutely won\\u0026#39;t be going to the World Cup.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the 2017 Asian Cup qualifying, South Korea were the top seeds ahead of the group draw (Japan, Australia, and China were the 1-2-3 of the previous Asian Cup and so did not participate in qualifying). Rather than the standard home and away fixtures, all group games are played in a selected \\u0026#39;host nation\\u0026#39; with just 2 or 3 days rest in between games. Only the group winner qualifies for the Asian Cup proper.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESouth Korea were drawn in a group with North Korea, then ranked #10 in the world, 7 places above them in the FIFA rankings. To make matters worse, North Korea were the selected host nation and would be playing all games on home soil. Unlucky to say the least, but how did this happen if South Korea were the top seeds?\\nFollowing the North Korean doping scandal in 2011, North Korea were banned from participating in the 2015 World Cup, and the 2014 Asian Cup (and qualifying). Because they hadn\\u0026#39;t taken part in the previous Asian Cup at all, they had the lowest seeding, being drawn from pot 5.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth North and South Korea won their early group games comfortably. For the probable group-deciding match against each other, I could find exactly two highlights videos, corresponding to the respective North and South Korean broadcasts of the match. The South Korean source has an interesting camera angle but I recommend watching just the start to see the atmosphere created by a few tens of thousand of well-co-ordinated North Korean fans (attendance was reported to be 42,500). The North Korean source is in some ways much better - it has replays, alternate angles, and commentary - but the video quality makes it look like it\\u0026#39;s from a broadcast in the 90\\u0026#39;s. If you want to watch this one, the goals are at 29:00 and 51:20. There\\u0026#39;s also a penalty given and saved starting from 6:00. The match finished 1-1.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThose were the only goals that either Korea would concede, and in the end it was South Korea that topped the group with a goal difference of +20 to North Korea\\u0026#39;s +17.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the 2018 Asian Cup South Korea were once again slightly unlucky with their group draw, finding themselves with both Australia and Japan. They drew against both and finished level on points with both, but found themselves in 3rd place based on goal difference and goals scored. Thankfully this was enough to get them to a play-off against Phillipines for that last World Cup spot, whom they dispatched 5-0.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EThe majority of the national team play their club football in the domestic WK League, with two playing in England\\u0026#39;s WSL and one in Japan. Incheon Red Angels are the dominant force in Korea, having won the past 6 league titles and are on course to make that 7 this season.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe team has a handful of players who were part of the U-17 World Cup winning squad from 2010.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Yoon Deok-yeo (South Korea)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Kang Ga-ae (Gumi), Jung Bo-ram (Hwacheon), Kim Min-jeong (Incheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Kim Hye-ri (Incheon), Shin Dam-yeong (Incheon), Lim Seon-joo (Incheon), Lee Eun-mi (Suwon), Kim Do-yeon (Incheon), Jang Sel-gi (Incheon), Jeong Yeong-a (Gyeonju), Hwang Bo-ram (Hwacheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Lee Young-ju (Incheon), Kang Yu-mi (Hwacheon), Lee So-dam (Incheon), Moon Mi-ra (Suwon), Cho So-hyun (West Ham), Lee Min-a (INAC Kobe), Kang Chae-rim (Incheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Jung Seol-bin (Incheon), Ji So-yun (Chelsea), Lee Geum-min (Gyeonju), Yeo Min-ji (Suwon), Son Hwa-yeon (Changnyeon)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-whistle-big\\\"\\u003E\\u003C/a\\u003E \\u003Ca href=\\\"https://i.imgur.com/ejiZpWV.jpg\\\"\\u003EPotential Starting 11\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"http://photo.hankooki.com/newsphoto/v001/2019/04/09/holic20190409183756_P_02_C_1.jpg\\\"\\u003EJi So-yun\\u003C/a\\u003E\\u003C/strong\\u003E: Korean prodigy - youngest senior national team debut and goal, both at the age of 15, and highest ever goal scorer (54 in 116 appearances). Unusual in that she did not start her senior club career in Korea, being signed early by INAC Kobe Leonessa. In her 3 years in Japan she won three League titles, and just before leaving for Chelsea she managed to score against them in the final of the International Women\\u0026#39;s Club Championship (Japan\\u0026#39;s attempt to get a Club World Cup going). Since moving to England with Chelsea, she has added another few titles to the collection, and is a regular nominee and occasional winner for PFA player of the year. Has excellent dead ball skills and is just generally a class above. Is hugely important to the team - more so than Son Heung-min is to the men\\u0026#39;s team.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"https://img.sbs.co.kr/newimg/news/20181229/201266238_1280.jpg\\\"\\u003ECho So-hyun\\u003C/a\\u003E\\u003C/strong\\u003E: Korea\\u0026#39;s captain and most capped player ever with 121 appearances. Spent the majority of her career with Incheon in the WK League, but in the past few years has played in Japan, Norway, and signed for West Ham at the start of 2019. Usually plays as DM between the defensive and midfield lines. The coach has sometimes started her in a CB position for extra reliability, but midfield is her natural position.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss-big\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ENorway\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThe main point of discussion is trying to work out how good this South Korean team really is. They didn\\u0026#39;t actually lose a single game during qualifying, drawing with teams who on paper were much better - North Korea, Australia, and Japan. This has seen their FIFA ranking steadily rise, and I\\u0026#39;m not sure if it has settled on its \\u0026#39;true\\u0026#39; value yet. Progressing to the group stage again is the target for this team, and to do that, picking up points against Norway is probably required. To get a win against Norway and take the 2nd spot (barring any other upsets in the group) would be enough to label this World Cup a success.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe focus on Norway is evident in their pre-tournament friendlies, as they arranged two matches against Iceland and two against Sweden under the assumption that the Northern European teams will have a similar physicality to their game. In the first game against Iceland, Korea were dominant, and yet lost 3-2 as Iceland scored with their only 3 attempts on goal (to Korea\\u0026#39;s 22 shots), leading the coach to rather publicly bemoan the state of his goalkeepers and defence. At least in the goalkeeper department, his hand has been forced as veteran keeper Kim Jung-mi suffered an Achilles tendon injury in training.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFuture retirements?\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThis is now just my personal speculation, but the two current stars Ji So-yun and Cho So-hyun are now 28 and 30 respectively, and while they may still play in another World Cup, they also may not. With these two being so important to the team, could this be the peak of this generation of players? A lot of the current core of players are hovering around 26/27 years old, standout fullback Jang Sel-gi (KFA player of the year 2018) is 25. If South Korea won\\u0026#39;t be fielding a team of 30-year-olds in 4 years time, the team will look very different, and it\\u0026#39;s not clear who the young rising stars are now.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-red\\\"\\u003ENorway\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/Crusarius28\\\"\\u003Eu/Crusarius28\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 7 (All Editions)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Champions (1995)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 12\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFormer World and Olympic Champions Norway have fallen from power in the past decade. The team comes to France with big expectations after having qualified for another World Cup in dramatic fashion. The Norwegians left it all to the last match-day and had to earn a hard fought victory over EURO Champions Netherlands to earn automatic qualification.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Martin Sjogren (Sweden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Ingrid Hjelmseth (Stabaek), Cecilie Fiskerstrand (LSK), Oda Bogstad (Arna-Bjomar)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Ingrid Wold (LSK), Maria Thorisdottir (Chelsea), Stine Hovland (Sandviken), Maren Mjelde (Chelsea), Cecilie Kvamme (Sandviken)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Synne Hansen (LSK), Vilde Boe Risa (Kopparbergs), Caroline Hansen (Wolfsburg/Barca), Ingrid Engen (LSK), Guro Reiten (LSK), Kristine Minde (Wolfsburg), Frida Maanum (Linkoping), Karina Saevik (Kolbotn)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Elise Thorsnes (LSK), Isabell Herlovsen (Kotbotn), Lisa-Marie Utland (Rosengard), Therese Asland (LSK), amalie Eikeland (Sandviken), Emilie Haavi (LSK), Emilie Nautnes (Arna-Bjonar)\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECaroline Graham Hansen:\\u003C/strong\\u003E Completing a move to Barcelona just weeks before appearing in her first World Cup, Hansen will be Noway\\u0026#39;s most important player. The 24 yr old is the full midfield package that can control games, deliver pin point passes and score whenever needed. Ruled out of the 2015 World Cup due to a knee injury, she\\u0026#39;s back and stronger than ever. Forming a team around this future superstar was one of the headaches Coach Sjogren had this year, but it\\u0026#39;s a good headache to have.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EIsabell Herlovsen:\\u003C/strong\\u003E 30 yr old Herlovsen is a constant goal threat. The brunt of all goals scored will be on Herlovsen\\u0026#39;s shoulders this summer. Her uncanny sense to be at the right place at the right time has paid dividends, including scoring the winner in the decider against the Netherlands. Her finishing skills will be a major key for Norway\\u0026#39;s progression.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETurning Experience into Results\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENorway are no strangers to winning and a realistic goal this year will be to get a medal. High expectations come from a storied past but following in the footsteps of legends proves no easy task. In terms of quality, Norway aren\\u0026#39;t able to best the top teams, but are certainly best of the rest and managing to utilize all their experience and hunger to put together performances early on versus Nigeria and France in the toughest qualifying group will be important to building momentum for Norway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefense\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDefense wins championships, and true to the old adage, Norway\\u0026#39;s defense will be key. Chelsea duo Mjelde and Thorisd\\u00f3ttir are important in the back but Thorisdottir has missed half the season due to injury and may not be fully fit. Mjelde\\u0026#39;s responsibilities will extend to organizing the midfield during transitions, even more importantly as she herself likes to get forward and score goals. She\\u0026#39;s scored 19 goals for Norway from the fullback position thus far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAda Hedgerberg\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe world\\u0026#39;s best female player Ada Hedgerberg has refused to play for Norway since 2017 (think Messi refusing to play for Argentina), and the current team has done well to step up in her absence. While Hedgerberg has taken headlines this summer due to her stance on the treatment of women\\u0026#39;s footballers in Norway, the team has to continue doing what they\\u0026#39;ve been doing for the past two years and not let any of the new found media attention affect their performances.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-green\\\"\\u003ENigeria\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/Crusarius28\\\"\\u003Eu/Crusarius28\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 7 (All Editions)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Quarter Finals (1999)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 38\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ENigeria have dominated Africa with 9 out of 11 Women\\u0026#39;s African Cup of Nations. But turning continental results into intercontinental ones proves tough, they haven\\u0026#39;t progressed past the group stages since 1999. Their search for more will be toughened by the hardest group in the World Cup with games versus France, Nigeria and Norway proving a major hurdle.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Thoms Dennerby (Sweden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Tochukwu Oluehi (Rivers Angels), Chiamaka Nnadozie (Rivers Angels), Alaba Jonathan (Bayelsa Queens)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Osinachi Ohale (Vaxjo), Ngozi Ebere (Arna-Bjomar), Onome Ebi (Henan Huishang), Faith Michael (Pitea), Chidinma Okeke (Robo Queens)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Amarachi Okoronkwo (Nasarawa Amazons), Evelyn Nwabuoku (Rivers Angels), Rita Chikwelu (Kristianstads), Ngozi Okobi-Okeoghene (Eskilstuna Utd), Halimatu Ayinde (Eskilstuna Utd), oganna Chukwudi (Djurgarden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Anam Imo (Rosengard), Asisat Oshoala (Barcelona), Desire oparanozie (Guingamp), Chinaza Uchendu (Braga), Uchenna Kanu (Southeastern Fire), Rasheedat Ajibade (Avaldsnes), Francisca Ordega (Shangai), Chinwendu Ihezuo (Henan Huishang), Alice Ogebe (Rivers Angels)\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAsisat Oshoala:\\u003C/strong\\u003E \\u201cSuperzee\\u201d has added Women\\u0026#39;s African Footballer of the Year award to her title. Three time Women\\u0026#39;s African Footballer of the year in fact. Her clinical ability in front of goal, raw pace and power put her on the map back in 2014 and now she\\u0026#39;s leading the line at Barcelona and helping them to their first ever Women\\u0026#39;s Champions League Final in history.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EOnome Ebi:\\u003C/strong\\u003E Playing in China hasn\\u0026#39;t hampered the 36yr old Nigerian. Her game reading and anticipation makes her a striker\\u0026#39;s nightmare. Add that to her supreme strength and you have a player that can shut down all but the fastest forwards in the game. Ebi will be representing the Super Eagles for the 5th time this summer.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPreparation for Tournaments\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Ladies of Nigeria have been underfunded and their tournament preparations have always been the absolute minimum if non existent. They went 2 full years without playing a game from May 2016 to April 2018, months before the next major tournament. They\\u0026#39;ve fixed that issue this time around and have participated in several tournaments, friendlies and training camps that hopefully give them the push they need to defeat the group stage this time around.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESet Pieces and Defensive Gaps\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Nigerians play a high defensive line and leave gaps but yet they only conceded 1 goal the entire AFCON tournament in 2018. Plugging those holes are important but recent friendlies and showings at the Algarve Cup exposed a weakness to set pieces as well. Ebi is 36 yrs old and even though her mind is quick, her feet are not and it will be the responsibility of the midfield to plug the gaps and not allow teams to get the ball to their forwards looking to make run behind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick Transitions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe midfield not only has to cover for gaps but quickly move the ball forward during transitions to the forwards. Nigeria\\u0026#39;s strengths and speed comes from their star strikers and they\\u0026#39;ll get the ball at every opportunity. Their top heavy system works when the ball is constantly up the pitch to the final third where their creative offense can shine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?auto=webp\\u0026s=8536a1bab8642c35f8f8ce6ff0d2c225f742f0df\", \"width\": 431, \"height\": 536}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5222659d4531a310385f7ad45a6a1bee0807dcf5\", \"width\": 108, \"height\": 134}, {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b0a822a359f7492a7b1263a92b9767518ec53b66\", \"width\": 216, \"height\": 268}, {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c3be09db027cef0fcc3a3b228935acf88e5d6893\", \"width\": 320, \"height\": 397}], \"variants\": {}, \"id\": \"dYE-hpAiNCPKZeSNCQxv6JlVTRpt6ovh8CLxMWBANYM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwkei5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"riskyrofl\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwkei5/2019_womens_world_cup_group_a_profile_france/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwkei5/2019_womens_world_cup_group_a_profile_france/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559621415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TEST TELATT ITEAT - DOSEA ALRJ AR A A ER A REEE ARE A? AERE?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bwhpb9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwhpb9\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Vkisu9g-VZo3thxeoTEh7_sHe6pgucV1XMkDjc08RY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559633760.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?auto=webp\\u0026s=3e2a10eb30c9a5b77b30a241735e3e8b8e1cfccc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a22b052dedffebf783ba26dae6003cd3c55a250\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcf039e2e79b58782dfd536386b50fa8b338f1d2\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=77375886fab998dde88f536da5c4503437f4c152\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"bdEz7hRKzTsVVn3Vyr7qozX0OUrbARsbBsUoqJKdw7M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwhpb9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwhpb9/test_telatt_iteat_dosea_alrj_ar_a_a_er_a_reee_are/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\", \"subreddit_subscribers\": 703, \"created_utc\": 1559604960.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://i.redd.it/n6wnbnoq68231.png\\n\\nWelcome to Eternal Aegis! We are a close-knit clan dedicated to keeping a casual, fun, and welcoming atmosphere. We strive to give our members the best clan experience Warframe has to offer. If you are interested in joining, please leave a comment below or message one of us in game!\\u00a0Here is our official Warframe clan group which you can join now:\\u00a0[https://forums.warframe.com/clubs/1730-eternal-aegis/](https://forums.warframe.com/clubs/1730-eternal-aegis/)\\n\\n# What We Offer\\n\\n* A very active, friendly, and helpful community\\n* An international community with members from all over the world. Most of our players are based in North America and Western Europe\\n* Large and well-designed dojo\\u00a0[Photos of our Dojo](https://imgur.com/a/h04Gk3N)\\n* 100% Completed Clan research\\n* Casually Competitive - we do well on leaderboards, and have no minimum quota for our members.\\u00a0[http://content.warframe.com/dynamic/hostileMergers.php](http://content.warframe.com/dynamic/hostileMergers.php)\\n* Eidolon hunting, Arbitrations, and other types of content are regularly hosted\\n* We are a Moon clan with over 980+ members at any time\\n* An organized discord server with alerts, guides, announcements, and more!\\n* We frequently host clan events, contests, and giveaways\\n* We are a member of the Moonlapse Alliance, a close-knit alliance with friendly clans.\\n\\n# Our Rules\\n\\n* Be polite and respect each other. Harassment, sexism, racism, bullying, and excessive profanity will not be tolerated.\\n* No Sexual, political, or obscene discussions in clan chat or discord.\\n* Our inactivity policy is 10\\u00a0days (members gone for longer can contact a mod).\\n* Currently, we require new recruits to be MR12+ (But friends of clanmates are only required to be MR8+).\\n\\n# Join Now!\\n\\nWe will need interested Tenno to comment below with the following information:\\n\\n1. Your in-game name\\n2. Your Mastery Rank (Note: Mastery Rank MR12+ is required but friends can join at MR 8+)\\n3. Your Region\\u00a0\\n4. The length of time you have been playing the game for\\n5. What you are looking for in a clan\\n6. How often are you able to play during a typical week\\n7. Have you been in a clan before? If so, which ones and why did you choose to leave?\\n\\nWe will respond as soon as possible! Reminder:\\u00a0Make sure you exit your clan before leaving a comment.\\n\\n# Contact List:\\n\\n\\\\--Aegis--Dandy\\u00a0| Nightressa | --Aegis--Paikoo | -OatGod- | Bhesus | --Aegis--Excalibur64 | Myzhari |\\u00a0Valkor | --Aegis--Dragunova2018 | Komi |\\u00a0Sebas\\\\_Sal12| --Aegis--Tetsuni | JohnSaint | ChaoticJiggles | Renzashi\\ufeff\", \"author_fullname\": \"t2_1gb0jvk5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[INT][PC][Clan] Eternal Aegis | 100% Research | 990+ Members | 10 Day Inactivity | MR12+ Req. | Complete Dojo | Active Discord | Organized Clan Events | Moonlapse Alliance\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"n6wnbnoq68231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 98, \"x\": 600, \"u\": \"https://i.redd.it/n6wnbnoq68231.png\"}, \"m\": \"image/png\", \"id\": \"n6wnbnoq68231\"}}, \"name\": \"t3_bwhl33\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/AdMg7EUd91sNRMaEDemva54vXtcz7xPbLvAxLgMqUVg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559633092.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/n6wnbnoq68231.png\\\"\\u003Ehttps://i.redd.it/n6wnbnoq68231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWelcome to Eternal Aegis! We are a close-knit clan dedicated to keeping a casual, fun, and welcoming atmosphere. We strive to give our members the best clan experience Warframe has to offer. If you are interested in joining, please leave a comment below or message one of us in game!\\u00a0Here is our official Warframe clan group which you can join now:\\u00a0\\u003Ca href=\\\"https://forums.warframe.com/clubs/1730-eternal-aegis/\\\"\\u003Ehttps://forums.warframe.com/clubs/1730-eternal-aegis/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EWhat We Offer\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EA very active, friendly, and helpful community\\u003C/li\\u003E\\n\\u003Cli\\u003EAn international community with members from all over the world. Most of our players are based in North America and Western Europe\\u003C/li\\u003E\\n\\u003Cli\\u003ELarge and well-designed dojo\\u00a0\\u003Ca href=\\\"https://imgur.com/a/h04Gk3N\\\"\\u003EPhotos of our Dojo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E100% Completed Clan research\\u003C/li\\u003E\\n\\u003Cli\\u003ECasually Competitive - we do well on leaderboards, and have no minimum quota for our members.\\u00a0\\u003Ca href=\\\"http://content.warframe.com/dynamic/hostileMergers.php\\\"\\u003Ehttp://content.warframe.com/dynamic/hostileMergers.php\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEidolon hunting, Arbitrations, and other types of content are regularly hosted\\u003C/li\\u003E\\n\\u003Cli\\u003EWe are a Moon clan with over 980+ members at any time\\u003C/li\\u003E\\n\\u003Cli\\u003EAn organized discord server with alerts, guides, announcements, and more!\\u003C/li\\u003E\\n\\u003Cli\\u003EWe frequently host clan events, contests, and giveaways\\u003C/li\\u003E\\n\\u003Cli\\u003EWe are a member of the Moonlapse Alliance, a close-knit alliance with friendly clans.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EOur Rules\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBe polite and respect each other. Harassment, sexism, racism, bullying, and excessive profanity will not be tolerated.\\u003C/li\\u003E\\n\\u003Cli\\u003ENo Sexual, political, or obscene discussions in clan chat or discord.\\u003C/li\\u003E\\n\\u003Cli\\u003EOur inactivity policy is 10\\u00a0days (members gone for longer can contact a mod).\\u003C/li\\u003E\\n\\u003Cli\\u003ECurrently, we require new recruits to be MR12+ (But friends of clanmates are only required to be MR8+).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EJoin Now!\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EWe will need interested Tenno to comment below with the following information:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EYour in-game name\\u003C/li\\u003E\\n\\u003Cli\\u003EYour Mastery Rank (Note: Mastery Rank MR12+ is required but friends can join at MR 8+)\\u003C/li\\u003E\\n\\u003Cli\\u003EYour Region\\u00a0\\u003C/li\\u003E\\n\\u003Cli\\u003EThe length of time you have been playing the game for\\u003C/li\\u003E\\n\\u003Cli\\u003EWhat you are looking for in a clan\\u003C/li\\u003E\\n\\u003Cli\\u003EHow often are you able to play during a typical week\\u003C/li\\u003E\\n\\u003Cli\\u003EHave you been in a clan before? If so, which ones and why did you choose to leave?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWe will respond as soon as possible! Reminder:\\u00a0Make sure you exit your clan before leaving a comment.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EContact List:\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E--Aegis--Dandy\\u00a0| Nightressa | --Aegis--Paikoo | -OatGod- | Bhesus | --Aegis--Excalibur64 | Myzhari |\\u00a0Valkor | --Aegis--Dragunova2018 | Komi |\\u00a0Sebas_Sal12| --Aegis--Tetsuni | JohnSaint | ChaoticJiggles | Renzashi\\ufeff\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?auto=webp\\u0026s=e98d685d9fcf12f7f7392b525e415ac027917600\", \"width\": 2560, \"height\": 1440}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=59342af73454d35034c3c2d4f475ac9a0769342f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=33b993e87781a7e2cc16124014a2db665ad1dcf3\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=067ceadbbab70f2e7568b6194ddd308d85bf70f3\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d65ab11bab91d92431c27e891c04d4f39dd66a19\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=92623901f6db2b25568baf6fcaf5db221626276e\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=32b5ff6ab01a5aae5c9bd70cb394bfe77ac67e3b\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"O2SqmsxqqImr7fOGU_I228obe-zxqR6BfpRXHbSRU7s\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwhl33\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"EternalAegisWarframe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwhl33/intpcclan_eternal_aegis_100_research_990_members/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwhl33/intpcclan_eternal_aegis_100_research_990_members/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559604292.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Item #: SCP-4260**\\n\\n**Object Class: Euclid**\\n\\n**Author: Nagiros**\\n\\n\\\"*And with strange aeons even death may die.\\\"*\\n\\nHello SCPDeclassified, Brewsterion here. Today, I wanted to cover [SCP-4260](http://www.scp-wiki.net/scp-4260) at the request of the author and a few users who talked to me about it. So, let's get into it.\\n\\nWe can't get into containment procedures yet, however, as there's something very important at the top of the page.\\n\\n\\u003EThis document has been significantly edited in order to obfuscate the identity of SCP-4260; several addenda have been omitted, and are only available with **Level 5/4260 Clearance**.\\n\\nWell, this is interesting. You would think the omitting of the identity makes it an infohazard, but that's not one of the tags so we can rule that out. What it does tell us is that this thing is extremely important to the Foundation, since basically only the O5s have Level 5 clearance. Let's see what we can tell from this version, though.\\n\\n**Special Containment Procedures**\\n\\nThe first paragraph of the containment procedures isn't too weird, but some sentences do stick out. Area-03 is located 2 kilometers beneath Hong Kong, specifically to contain 4260.\\n\\n\\u003EThe containment chamber housing SCP-4260 has been augmented with a Strayer Density Matrix designed to coalesce and bind its disparate elements.\\n\\nThis is a device we haven't seen before. Disparate elements would imply an anomaly of multiple parts, however we don't seen mentions of components here. Rather this line means that whatever 4260 is, it's greatly spread out over a very large area, similar to SCP-3125, and the Foundation needs a condensed form to contain it.\\n\\n\\u003EMaintenance of the Strayer Density Matrix is integral to SCP-4260's containment and requires a specialized team of technicians and speculative ultraphysicalists.\\n\\nOh boy, new concepts. There's a footnote here that says that ultraphysicalists deal with a science of entities that produce an effect on the universe by simply existing. How this differs from normal reality benders will be explained later, but for now let's say that these things don't try to produce an effect, they just do.\\n\\nThe next sentence explains that there is a Procedure 8917 associated with 4260, and it requires joint operation of three separate MTFs. Gamma-8 uses the Density Matrices to summon 4260. Xi-2 apparently terminates 4260, but don't worry, that will be explained shortly. Tau-900 locates and terminates civilians affected by a successful termination of 4260, and remove evidence Procedure 8917 ever happened. Apparently, terminating 4260 affects people in a specific way. Not to give much away, but Tau-900's nickname is \\\"Deliverance\\\". Just wait and see.\\n\\nIt then goes on to say that Procedure 8917 is considered complete when the following steps have been met:\\n\\n1. SCP-4260 has been successfully terminated.2. The Strayer Density Matrix is fully operational.3. All affected civilians have been located and terminated.4. All evidence of Procedure 8917 has been removed.5. SCP-4260 has been resurrected.\\n\\nWell that's straightforward, if not simple. From what this tells us, between the time 4260 is terminated and brought back, civilians are affected in some way. We don't know how, or what conditions for being affected are, but we'll find out soon. More emphasis is also placed on the Density Matrix, reinforcing that the Foundation needs this, and it once again mentions removing evidence of Procedure 8917 ever happening. Basically, terminating this thing is useful for the Foundation, but it can't stay dead for long, as it has side effects. Alright.\\n\\nThe last line before the description says that the unclassified version is gonna be filled with omissions to hide the identity of 4260. As if we couldn't tell.\\n\\n**Description**\\n\\n\\u003ESCP-4260 refers to the consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. The effect of SCP-4260's existence has been well documented by almost every sapient culture. Termination of SCP-4260 has resulted in the neutralization of its primary anomalous effect until its resurrection during Procedure 8917.\\n\\nAlright, so 4260 refers to the consciousness of an entity that is present throughout the entire universe. The effect of it's existence has been documented by every sapient culture. It's kind of implied this includes aliens, which narrows it down. It's not some sort of emotional construct, it's something that effects everything, like time or gravity. Terminating it neutralizes the effect until resurrection.\\n\\nThat's it. That's the entire description. Yeah, omissions is a bit of an understatement. But there's another addendum here.\\n\\n**Addendum.4260.1**\\n\\nIt's a list of all activations of Procedure 8917. Let's try to get some answers.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 1999 \\n\\u003E \\n\\u003EMethod: Fatal puncture wounds and blood loss, administered by MTF Xi-2. \\n\\u003E \\n\\u003EReason: A massive containment failure at [Site-62C](http://www.scp-wiki.net/scp-579). \\n\\u003E \\n\\u003EDuration:110 seconds \\n\\u003E \\n\\u003EAffected: 3 civilians \\n\\u003E \\n\\u003EStatus: Recontained\\n\\nA crosslink to SCP-579, an old article where the description is literally \\\\[DATA EXPUNGED\\\\]. Not truly linked to this article, but it tells us that 4260 was killed because of a breach of some terrifyingly dangerous entity.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2003 \\n\\u003E \\n\\u003EMethod: Blunt force trauma by a member of MTF Xi-2. \\n\\u003E \\n\\u003EReason: The nuclear bombardment of Site-001. \\n\\u003E \\n\\u003EDuration: 25 seconds \\n\\u003E \\n\\u003EAffected: 1 civilian \\n\\u003E \\n\\u003EStatus: Recontained. SCP-4260's consciousness replicated and reproduced as *Tantalus.aic*.\\n\\nXi-2 bashed this thing's head in as a rush job while Site-001 was getting nuked, and resurrected them as soon as they could. Interestingly, Tantalus is a Greek mythological figure most famous for his punishment after death. Remember that.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2008 \\n\\u003E \\n\\u003EMethod: Destruction of SCP-4260's hard drive, completed by MTF Xi-2. \\n\\u003E \\n\\u003EReason: An imminent [ZK-Class (\\\"End-of-Reality\\\") Scenario](http://www.scp-wiki.net/scp-2975). \\n\\u003E \\n\\u003EDuration: Indeterminate \\n\\u003E \\n\\u003EAffected: 7,213,426,000 individuals, termination unnecessary. \\n\\u003E \\n\\u003EStatus: Recontained. A copy of *Tantalus.aic* uploaded into an appropriated [Peregrine Series Humanoid Utility Droid](http://www.scp-wiki.net/scp-1360).\\n\\nA crosslink to both SCP-2975, an interactive article meant to represent after-action report of various CK shifts and an almost ZK end of reality, and SCP-1360, one of the earlier Anderson Robotics articles. This one gives us something very vital; this procedure was activated to save the planet from destruction. This gives us as close to an answer as to what Procedure 8917 is for: saving people's asses and letting them skip through destruction easily. The next one is just the same idea with something about O5-6, but the final one is interesting.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2016 \\n\\u003E \\n\\u003EMethod: Incineration, committed by MTF Xi-2 during Experimental Operation \\u201cMany-Crowned Serpent\\u201d. \\n\\u003E \\n\\u003EReason: The insufficiency of SCP-4260's containment procedures. \\n\\u003E \\n\\u003EDuration: 415 seconds \\n\\u003E \\n\\u003EAffected: 10 civilians \\n\\u003E \\n\\u003EStatus: *N/A*\\n\\nUhhh....shit.\\n\\nApparently, they didn't bring 4260 back after this one for this Operation Many-Crowned Serpent. This opens a whole new load of questions. What is Many-Crowned Serpent? Why is 4260 staying dead? Why were the containment procedures insufficient? This iteration doesn't answer them, because it ends here.\\n\\nYou'd assume we're in trouble, but there's a prompt at the bottom of the page. Apparently, we're O5-9, and Iteration Beta of the file, the Level 5 version, is available to us to read. Now, I get if you're confused on why I just went through all of that if it's not the real version. The answer is that some of the information here, such as the times it was used and the purposes of the MTFs, are not present in Iteration Beta. And we needed to know those things before we went into Iteration Beta, as well as know how classified among the Foundation this was. Anyways, let's get into Iteration Beta.\\n\\nI'm gonna skip the containment procedures for this one, as all they tell us is just that Iteration Alpha's containment procedures, the first ones we read, were insufficient and that Operation Many-Crowned Serpent was executed to fix that. As such, this version's technically outdated too, as it doesn't reflect the changes that Operation Many-Crowned Serpent caused to 4260, but we can still use it.\\n\\n**Description 2: Electric Boogaloo**\\n\\n\\u003ESCP-4260 is the collective consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. SCP-4260's existence has resulted in the universally entropic decline of sentient organisms and is the direct cause of any organism's cessation of life functions. \\n\\u003E \\n\\u003E**Note:** \\\"Entropic decline\\\" refers to an organism\\u2019s eventual abatement into infirmity when it achieves an advanced age for its species.\\n\\nIt's Death. Well, really more Entropy than Death, but 4260 is literally Death. We could have probably inferred it from Iteration Alpha, but that document served a different purpose, and it was kind of obvious we were dealing with Death near the end and from the quote I put.\\n\\n\\u003ESCP-4260 itself is subject to its own entropy, and its anomalous influence on the universe has notably diminished in the preceding millennia. It is projected that SCP-4260 will expire by achieving an ultraphysical null-state at approximately 2017 CE. The former containment procedures of SCP-4260 proved both incapable of halting this effect and its primary anomalous trait, although complete physical containment was achieved.\\n\\n*Oh shit.*\\n\\nNow the quote at the top of this declass makes a little more sense, doesn't it? The entropy and decay 4260 inflicts upon the universe hurts itself as well, and death is inescapable. It says that by 2017, 4260's gonna be dead, but if you recall from the Procedure 8917 logs, Operation Many-Crowned Serpent was executed in 2016. Now you see why we looked through those logs.\\n\\nThe next line says that our earlier assumption about Procedure 8917 was correct in it's purpose of saving people. By temporarily killing 4260, they create an Omega-K End Of Death Scenario for long enough to save Foundation personnel or prevent global extinction, both of which we saw in the logs. This also explains why civilians are affected, as they need to take care of people that should have died but didn't during the duration of the Omega-K. ^(Hey didn't you just declass something from End of Death?) This isn't part of the central canon, it's just a reference, so don't worry about the EoD storyline.\\n\\n**Addenda 4260-1 and 4260-2**\\n\\nI'm going to group these two addenda together since they're very closely related. Addendum 1 is just a recovery log of 4260 first being recovered by the Foundation, but it's a bit odd. 4260 willingly manifested itself as a young woman at Site-76 and asked to be contained and medically treated. This is further elaborated in Addendum 2, where we also learn some more about ultraphysical entities, or Intrinsics, as the nickname goes. The Foundation doesn't know much about them, but 4260 has told them a few things, namely that they're not omnipotent, because 4260 came to them to help save it, and that they have no personality traits or goals beyond self-preservation. This desire for self-preservation extends to trying to escape it's own effect, and how this actually ended up letting life exist as a whole. The addendum ends with the statement that Death's dying is both the best and worst news humanity could have.\\n\\nOkay, so basically, Death itself is starting to fade into nothingness while the Foundation keeps killing and resurrecting them to save high-ranking personnel. This seems to be both good and bad news for the Foundation, for obvious reasons. Oh, but what's this? ANOTHER iteration? This one, Iteration Gamma, is apparently pending approval and reflects the changes caused by Operation Many-Crowned Serpent to 4260. Let's check it out and see if we finally get an answer for what Operation Many-Crowned Serpent is. \\n\\n**Special Containment Procedures 3: The Securing**\\n\\nThese containment procedures are similar to the ones from Iteration Alpha, but much stricter. This version of 4260 is locked up in a massive nuclear bunker made to withstand every K-Class Scenario the Foundation knows of, with seven Strayer Density Matrices all around the chamber and as few people as possible staffing the place. If it gets out, O5-1, O5-7, and O5-13 are to be alerted as soon as possible. This thing is even more dangerous that the prior version of 4260, and they don't seem to be planning on using Procedure 8917 on it anytime soon. It also seems to be much stronger than previous 4260, as this version needs seven Density Matrices as opposed to only one being needed for Iteration Alpha. Time to see if the description matches this guess. \\n\\n**Description 3: Describe Harder**\\n\\n\\u003E SCP-4260 is Foundation Administrator Ethan Horowitz, who has undergone considerable physical augmentation as a result of Operation \\\"Many-Crowned Serpent\\\". \\n\\nWell I know the Administrator is often seen as anomalous himself but this is very new. Apparently Operation Many-Crowned Serpent involved doing weird stuff to the Administrator. Collapsibles that follow state that this new 4260 has a large amount of limbs, stands 130 meters tall, can manipulate it's physical form as well, and apparently has the ultraphysical abilities from the old 4260. It's also mentioned that it's more resistant to the Density Matrices, and that if five out of seven Matrices fail, we'll be enjoying a Chi-K Class \\\"Crowning Of Death\\\" scenario, which I'll try to elaborate more on after the upcoming quote. \\n\\n\\u003E The ultraphysical entity previously cataloged as SCP-4260, prior to its neutralization in Operation \\\"Many-Crowned Serpent\\\", exhibited several of these anomalous traits to a more limited degree. After its termination, Foundation Administrator Ethan Horowitz elected to transfer its anomalous properties onto his own person, in accordance with the contractual and ritualistic nature of Operation \\\"Many-Crowned Serpent\\\". \\n\\nFinally, an answer to what Operation Many-Crowned Serpent is. After the old 4260 was finally terminated, their properties were transferred to Horowitz so that we don't have to worry about Death dying anymore. That Chi-K scenario is likely the threat of Death's strength returning to what it was at the beginning of the universe, causing all living beings to die. This fits the name, as crowning implies something good happening to them. Well, good is relative in these circumstances. \\n\\nThere's one final addendum to the article, and I promise it's the last addendum. Let's get through it. \\n\\n**Addendum 4260-1: The Finale**\\n\\nThis addendum, written by Horowitz himself before Operation Many-Crowned Serpent was executed, opens with a restatement of the Foundation's Prime Directives; lock up anomalies, keep them secret, make sure they don't return, and prioritize everything except reality itself below the preservation of life. Things get interesting very quickly after that, though. \\n\\n\\u003E**This is the Subdirective of the Foundation:** to terminate the primary anomalous phenomenon which has plagued life since life\\u2019s conception, or to facilitate the termination thereof. \\n\\u003E \\n\\u003E**This is the prime anomaly:** Death.\\n\\nTitle drop. They just said they hold almost everything above life, and this is proof of that. \\n\\n\\u003E The Subdirective was never meant to be feasible, at least not in the day and age of our founding. We cannot hope to mitigate the disasters that this would result in: overpopulation, species stagnation, and susceptibility to cataclysmic extra-dimensional forces which can only be contained via euthanization of those affected. \\n\\u003E \\n\\u003E Now, over a century later, we could achieve the Subdirective at any moment with only a missive sent to the lead of Amalgamate Force Omicron-45. I suppose it would be marvelous to see: a world without death and infirmity, each person freed from the dread of uncertainty and peril. Maybe, one day, we will find a way to make that world. \\n\\u003E \\n\\u003EUntil such a time, we must secure the perpetual containment of Death. This is the nature of Operation \\u201cMany-Crowned Serpent\\u201d: to fulfill the first steps of the Foundation\\u2019s subdirective. \\n\\u003E \\n\\u003EAs it stands now, Death is a hostile entity intent on its own self-preservation at any cost. We spoke, once, and I began to realize that if it could feel anything at all, it would feel the same fear we must face under its tyranny. We could not save Death from itself; as far as our science has elevated us, there is still so much we do not understand. I told this to SCP-4260, and it smiled. \\\"Administrator,\\\" it said, \\\"How can I die when I will live on through you?\\\" \\n\\u003E \\n\\u003EDeath has struck a deal with us. In all its arcane knowledge, it knows a way to live on after its death: it has chosen me to be its heir. It is a choice between the eternal agony of humanity and a pain suffered only until we know enough to repair our tired species. It is not a choice at all. \\n\\u003E \\n\\u003EOn this day, I will become Death. This last evil I must allow us all to suffer patiently. Be bold, for one day soon, we will have won the battle waged by both us and our ancestors emerging from the primordial soup: the struggle for Life Everlasting.\\n\\nThis gives some more answers. Everything that the Foundation's done and is doing is all for the purpose of facilitating this Subdirective, the end of the threat of Death to all living beings, freeing the world from fear and uncertainty. But then why aren't they just doing that now? \\n\\nWell, have you ever read any tales from the [End Of Death canon?](http://www.scp-wiki.net/end-of-death-hub) There's your answer. When humans are faced with immortality, there's a whole lot of complications. Aging, decay, population, all the other lifeforms not dying. If humans were to all become immortal tomorrow, it wouldn't end well. That's why the Foundation's delaying the Subdirective. They need to find answers to the questions posed by immortality, making sure that when Death is no more, it will be a true paradise, not one with catches and people left out, suffering as the few enjoy true immortality. They're waiting until they have the technology, and then they'll terminate 4260 for good, kicking in an Omega-K that hopefully won't be an issue. Do they like waiting? No. The Subdirective is in their grasp. But they know they have to. \\n\\nAnd thus ends SCP-4260, a tale of the Foundation's ultimate goal and the means to get there. I hope this helped you understand this SCP better. Thank you all for reading, and memento mori.\", \"author_fullname\": \"t2_118qqr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SCP-4260, \\\"The Subdirective\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwfesx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559621697.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EItem #: SCP-4260\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class: Euclid\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor: Nagiros\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Cem\\u003EAnd with strange aeons even death may die.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello SCPDeclassified, Brewsterion here. Today, I wanted to cover \\u003Ca href=\\\"http://www.scp-wiki.net/scp-4260\\\"\\u003ESCP-4260\\u003C/a\\u003E at the request of the author and a few users who talked to me about it. So, let\\u0026#39;s get into it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe can\\u0026#39;t get into containment procedures yet, however, as there\\u0026#39;s something very important at the top of the page.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThis document has been significantly edited in order to obfuscate the identity of SCP-4260; several addenda have been omitted, and are only available with \\u003Cstrong\\u003ELevel 5/4260 Clearance\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell, this is interesting. You would think the omitting of the identity makes it an infohazard, but that\\u0026#39;s not one of the tags so we can rule that out. What it does tell us is that this thing is extremely important to the Foundation, since basically only the O5s have Level 5 clearance. Let\\u0026#39;s see what we can tell from this version, though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first paragraph of the containment procedures isn\\u0026#39;t too weird, but some sentences do stick out. Area-03 is located 2 kilometers beneath Hong Kong, specifically to contain 4260.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe containment chamber housing SCP-4260 has been augmented with a Strayer Density Matrix designed to coalesce and bind its disparate elements.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is a device we haven\\u0026#39;t seen before. Disparate elements would imply an anomaly of multiple parts, however we don\\u0026#39;t seen mentions of components here. Rather this line means that whatever 4260 is, it\\u0026#39;s greatly spread out over a very large area, similar to SCP-3125, and the Foundation needs a condensed form to contain it.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EMaintenance of the Strayer Density Matrix is integral to SCP-4260\\u0026#39;s containment and requires a specialized team of technicians and speculative ultraphysicalists.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOh boy, new concepts. There\\u0026#39;s a footnote here that says that ultraphysicalists deal with a science of entities that produce an effect on the universe by simply existing. How this differs from normal reality benders will be explained later, but for now let\\u0026#39;s say that these things don\\u0026#39;t try to produce an effect, they just do.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next sentence explains that there is a Procedure 8917 associated with 4260, and it requires joint operation of three separate MTFs. Gamma-8 uses the Density Matrices to summon 4260. Xi-2 apparently terminates 4260, but don\\u0026#39;t worry, that will be explained shortly. Tau-900 locates and terminates civilians affected by a successful termination of 4260, and remove evidence Procedure 8917 ever happened. Apparently, terminating 4260 affects people in a specific way. Not to give much away, but Tau-900\\u0026#39;s nickname is \\u0026quot;Deliverance\\u0026quot;. Just wait and see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt then goes on to say that Procedure 8917 is considered complete when the following steps have been met:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ESCP-4260 has been successfully terminated.2. The Strayer Density Matrix is fully operational.3. All affected civilians have been located and terminated.4. All evidence of Procedure 8917 has been removed.5. SCP-4260 has been resurrected.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWell that\\u0026#39;s straightforward, if not simple. From what this tells us, between the time 4260 is terminated and brought back, civilians are affected in some way. We don\\u0026#39;t know how, or what conditions for being affected are, but we\\u0026#39;ll find out soon. More emphasis is also placed on the Density Matrix, reinforcing that the Foundation needs this, and it once again mentions removing evidence of Procedure 8917 ever happening. Basically, terminating this thing is useful for the Foundation, but it can\\u0026#39;t stay dead for long, as it has side effects. Alright.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last line before the description says that the unclassified version is gonna be filled with omissions to hide the identity of 4260. As if we couldn\\u0026#39;t tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 refers to the consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. The effect of SCP-4260\\u0026#39;s existence has been well documented by almost every sapient culture. Termination of SCP-4260 has resulted in the neutralization of its primary anomalous effect until its resurrection during Procedure 8917.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAlright, so 4260 refers to the consciousness of an entity that is present throughout the entire universe. The effect of it\\u0026#39;s existence has been documented by every sapient culture. It\\u0026#39;s kind of implied this includes aliens, which narrows it down. It\\u0026#39;s not some sort of emotional construct, it\\u0026#39;s something that effects everything, like time or gravity. Terminating it neutralizes the effect until resurrection.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s it. That\\u0026#39;s the entire description. Yeah, omissions is a bit of an understatement. But there\\u0026#39;s another addendum here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum.4260.1\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a list of all activations of Procedure 8917. Let\\u0026#39;s try to get some answers.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 1999 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Fatal puncture wounds and blood loss, administered by MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: A massive containment failure at \\u003Ca href=\\\"http://www.scp-wiki.net/scp-579\\\"\\u003ESite-62C\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration:110 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 3 civilians \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EA crosslink to SCP-579, an old article where the description is literally [DATA EXPUNGED]. Not truly linked to this article, but it tells us that 4260 was killed because of a breach of some terrifyingly dangerous entity.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2003 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Blunt force trauma by a member of MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: The nuclear bombardment of Site-001. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: 25 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 1 civilian \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained. SCP-4260\\u0026#39;s consciousness replicated and reproduced as \\u003Cem\\u003ETantalus.aic\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EXi-2 bashed this thing\\u0026#39;s head in as a rush job while Site-001 was getting nuked, and resurrected them as soon as they could. Interestingly, Tantalus is a Greek mythological figure most famous for his punishment after death. Remember that.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2008 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Destruction of SCP-4260\\u0026#39;s hard drive, completed by MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: An imminent \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2975\\\"\\u003EZK-Class (\\u0026quot;End-of-Reality\\u0026quot;) Scenario\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: Indeterminate \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 7,213,426,000 individuals, termination unnecessary. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained. A copy of \\u003Cem\\u003ETantalus.aic\\u003C/em\\u003E uploaded into an appropriated \\u003Ca href=\\\"http://www.scp-wiki.net/scp-1360\\\"\\u003EPeregrine Series Humanoid Utility Droid\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EA crosslink to both SCP-2975, an interactive article meant to represent after-action report of various CK shifts and an almost ZK end of reality, and SCP-1360, one of the earlier Anderson Robotics articles. This one gives us something very vital; this procedure was activated to save the planet from destruction. This gives us as close to an answer as to what Procedure 8917 is for: saving people\\u0026#39;s asses and letting them skip through destruction easily. The next one is just the same idea with something about O5-6, but the final one is interesting.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2016 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Incineration, committed by MTF Xi-2 during Experimental Operation \\u201cMany-Crowned Serpent\\u201d. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: The insufficiency of SCP-4260\\u0026#39;s containment procedures. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: 415 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 10 civilians \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: \\u003Cem\\u003EN/A\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EUhhh....shit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EApparently, they didn\\u0026#39;t bring 4260 back after this one for this Operation Many-Crowned Serpent. This opens a whole new load of questions. What is Many-Crowned Serpent? Why is 4260 staying dead? Why were the containment procedures insufficient? This iteration doesn\\u0026#39;t answer them, because it ends here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;d assume we\\u0026#39;re in trouble, but there\\u0026#39;s a prompt at the bottom of the page. Apparently, we\\u0026#39;re O5-9, and Iteration Beta of the file, the Level 5 version, is available to us to read. Now, I get if you\\u0026#39;re confused on why I just went through all of that if it\\u0026#39;s not the real version. The answer is that some of the information here, such as the times it was used and the purposes of the MTFs, are not present in Iteration Beta. And we needed to know those things before we went into Iteration Beta, as well as know how classified among the Foundation this was. Anyways, let\\u0026#39;s get into Iteration Beta.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m gonna skip the containment procedures for this one, as all they tell us is just that Iteration Alpha\\u0026#39;s containment procedures, the first ones we read, were insufficient and that Operation Many-Crowned Serpent was executed to fix that. As such, this version\\u0026#39;s technically outdated too, as it doesn\\u0026#39;t reflect the changes that Operation Many-Crowned Serpent caused to 4260, but we can still use it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription 2: Electric Boogaloo\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 is the collective consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. SCP-4260\\u0026#39;s existence has resulted in the universally entropic decline of sentient organisms and is the direct cause of any organism\\u0026#39;s cessation of life functions. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E \\u0026quot;Entropic decline\\u0026quot; refers to an organism\\u2019s eventual abatement into infirmity when it achieves an advanced age for its species.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s Death. Well, really more Entropy than Death, but 4260 is literally Death. We could have probably inferred it from Iteration Alpha, but that document served a different purpose, and it was kind of obvious we were dealing with Death near the end and from the quote I put.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 itself is subject to its own entropy, and its anomalous influence on the universe has notably diminished in the preceding millennia. It is projected that SCP-4260 will expire by achieving an ultraphysical null-state at approximately 2017 CE. The former containment procedures of SCP-4260 proved both incapable of halting this effect and its primary anomalous trait, although complete physical containment was achieved.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EOh shit.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow the quote at the top of this declass makes a little more sense, doesn\\u0026#39;t it? The entropy and decay 4260 inflicts upon the universe hurts itself as well, and death is inescapable. It says that by 2017, 4260\\u0026#39;s gonna be dead, but if you recall from the Procedure 8917 logs, Operation Many-Crowned Serpent was executed in 2016. Now you see why we looked through those logs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next line says that our earlier assumption about Procedure 8917 was correct in it\\u0026#39;s purpose of saving people. By temporarily killing 4260, they create an Omega-K End Of Death Scenario for long enough to save Foundation personnel or prevent global extinction, both of which we saw in the logs. This also explains why civilians are affected, as they need to take care of people that should have died but didn\\u0026#39;t during the duration of the Omega-K. \\u003Csup\\u003EHey didn\\u0026#39;t you just declass something from End of Death?\\u003C/sup\\u003E This isn\\u0026#39;t part of the central canon, it\\u0026#39;s just a reference, so don\\u0026#39;t worry about the EoD storyline.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddenda 4260-1 and 4260-2\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m going to group these two addenda together since they\\u0026#39;re very closely related. Addendum 1 is just a recovery log of 4260 first being recovered by the Foundation, but it\\u0026#39;s a bit odd. 4260 willingly manifested itself as a young woman at Site-76 and asked to be contained and medically treated. This is further elaborated in Addendum 2, where we also learn some more about ultraphysical entities, or Intrinsics, as the nickname goes. The Foundation doesn\\u0026#39;t know much about them, but 4260 has told them a few things, namely that they\\u0026#39;re not omnipotent, because 4260 came to them to help save it, and that they have no personality traits or goals beyond self-preservation. This desire for self-preservation extends to trying to escape it\\u0026#39;s own effect, and how this actually ended up letting life exist as a whole. The addendum ends with the statement that Death\\u0026#39;s dying is both the best and worst news humanity could have.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOkay, so basically, Death itself is starting to fade into nothingness while the Foundation keeps killing and resurrecting them to save high-ranking personnel. This seems to be both good and bad news for the Foundation, for obvious reasons. Oh, but what\\u0026#39;s this? ANOTHER iteration? This one, Iteration Gamma, is apparently pending approval and reflects the changes caused by Operation Many-Crowned Serpent to 4260. Let\\u0026#39;s check it out and see if we finally get an answer for what Operation Many-Crowned Serpent is. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures 3: The Securing\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThese containment procedures are similar to the ones from Iteration Alpha, but much stricter. This version of 4260 is locked up in a massive nuclear bunker made to withstand every K-Class Scenario the Foundation knows of, with seven Strayer Density Matrices all around the chamber and as few people as possible staffing the place. If it gets out, O5-1, O5-7, and O5-13 are to be alerted as soon as possible. This thing is even more dangerous that the prior version of 4260, and they don\\u0026#39;t seem to be planning on using Procedure 8917 on it anytime soon. It also seems to be much stronger than previous 4260, as this version needs seven Density Matrices as opposed to only one being needed for Iteration Alpha. Time to see if the description matches this guess. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription 3: Describe Harder\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 is Foundation Administrator Ethan Horowitz, who has undergone considerable physical augmentation as a result of Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell I know the Administrator is often seen as anomalous himself but this is very new. Apparently Operation Many-Crowned Serpent involved doing weird stuff to the Administrator. Collapsibles that follow state that this new 4260 has a large amount of limbs, stands 130 meters tall, can manipulate it\\u0026#39;s physical form as well, and apparently has the ultraphysical abilities from the old 4260. It\\u0026#39;s also mentioned that it\\u0026#39;s more resistant to the Density Matrices, and that if five out of seven Matrices fail, we\\u0026#39;ll be enjoying a Chi-K Class \\u0026quot;Crowning Of Death\\u0026quot; scenario, which I\\u0026#39;ll try to elaborate more on after the upcoming quote. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe ultraphysical entity previously cataloged as SCP-4260, prior to its neutralization in Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;, exhibited several of these anomalous traits to a more limited degree. After its termination, Foundation Administrator Ethan Horowitz elected to transfer its anomalous properties onto his own person, in accordance with the contractual and ritualistic nature of Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFinally, an answer to what Operation Many-Crowned Serpent is. After the old 4260 was finally terminated, their properties were transferred to Horowitz so that we don\\u0026#39;t have to worry about Death dying anymore. That Chi-K scenario is likely the threat of Death\\u0026#39;s strength returning to what it was at the beginning of the universe, causing all living beings to die. This fits the name, as crowning implies something good happening to them. Well, good is relative in these circumstances. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere\\u0026#39;s one final addendum to the article, and I promise it\\u0026#39;s the last addendum. Let\\u0026#39;s get through it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4260-1: The Finale\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis addendum, written by Horowitz himself before Operation Many-Crowned Serpent was executed, opens with a restatement of the Foundation\\u0026#39;s Prime Directives; lock up anomalies, keep them secret, make sure they don\\u0026#39;t return, and prioritize everything except reality itself below the preservation of life. Things get interesting very quickly after that, though. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis is the Subdirective of the Foundation:\\u003C/strong\\u003E to terminate the primary anomalous phenomenon which has plagued life since life\\u2019s conception, or to facilitate the termination thereof. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis is the prime anomaly:\\u003C/strong\\u003E Death.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETitle drop. They just said they hold almost everything above life, and this is proof of that. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Subdirective was never meant to be feasible, at least not in the day and age of our founding. We cannot hope to mitigate the disasters that this would result in: overpopulation, species stagnation, and susceptibility to cataclysmic extra-dimensional forces which can only be contained via euthanization of those affected. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, over a century later, we could achieve the Subdirective at any moment with only a missive sent to the lead of Amalgamate Force Omicron-45. I suppose it would be marvelous to see: a world without death and infirmity, each person freed from the dread of uncertainty and peril. Maybe, one day, we will find a way to make that world. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUntil such a time, we must secure the perpetual containment of Death. This is the nature of Operation \\u201cMany-Crowned Serpent\\u201d: to fulfill the first steps of the Foundation\\u2019s subdirective. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it stands now, Death is a hostile entity intent on its own self-preservation at any cost. We spoke, once, and I began to realize that if it could feel anything at all, it would feel the same fear we must face under its tyranny. We could not save Death from itself; as far as our science has elevated us, there is still so much we do not understand. I told this to SCP-4260, and it smiled. \\u0026quot;Administrator,\\u0026quot; it said, \\u0026quot;How can I die when I will live on through you?\\u0026quot; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeath has struck a deal with us. In all its arcane knowledge, it knows a way to live on after its death: it has chosen me to be its heir. It is a choice between the eternal agony of humanity and a pain suffered only until we know enough to repair our tired species. It is not a choice at all. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn this day, I will become Death. This last evil I must allow us all to suffer patiently. Be bold, for one day soon, we will have won the battle waged by both us and our ancestors emerging from the primordial soup: the struggle for Life Everlasting.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis gives some more answers. Everything that the Foundation\\u0026#39;s done and is doing is all for the purpose of facilitating this Subdirective, the end of the threat of Death to all living beings, freeing the world from fear and uncertainty. But then why aren\\u0026#39;t they just doing that now? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, have you ever read any tales from the \\u003Ca href=\\\"http://www.scp-wiki.net/end-of-death-hub\\\"\\u003EEnd Of Death canon?\\u003C/a\\u003E There\\u0026#39;s your answer. When humans are faced with immortality, there\\u0026#39;s a whole lot of complications. Aging, decay, population, all the other lifeforms not dying. If humans were to all become immortal tomorrow, it wouldn\\u0026#39;t end well. That\\u0026#39;s why the Foundation\\u0026#39;s delaying the Subdirective. They need to find answers to the questions posed by immortality, making sure that when Death is no more, it will be a true paradise, not one with catches and people left out, suffering as the few enjoy true immortality. They\\u0026#39;re waiting until they have the technology, and then they\\u0026#39;ll terminate 4260 for good, kicking in an Omega-K that hopefully won\\u0026#39;t be an issue. Do they like waiting? No. The Subdirective is in their grasp. But they know they have to. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd thus ends SCP-4260, a tale of the Foundation\\u0026#39;s ultimate goal and the means to get there. I hope this helped you understand this SCP better. Thank you all for reading, and memento mori.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?auto=webp\\u0026s=eb7e84b6777b9441cff986b491b9c844d2574ddb\", \"width\": 500, \"height\": 364}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bcae4878a092d9b918d961b1622fd9666b9ca968\", \"width\": 108, \"height\": 78}, {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=68c2ffe78e81071d4f95d8923cdb4f9e7a55c182\", \"width\": 216, \"height\": 157}, {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a9ffa511f3dab1524f43720275a5f4e58c725258\", \"width\": 320, \"height\": 232}], \"variants\": {}, \"id\": \"wqpxqRTyCw4m0-4ES2XLY4f4UxAxlhBTybhU-CTz2uo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwfesx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Brewsterion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwfesx/scp4260_the_subdirective/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwfesx/scp4260_the_subdirective/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559592897.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello everyone,\\n\\n\\u0026#x200B;\\n\\nI wanted to talk a bit about the rift between the performance of Beams and Cannons that is getting bigger and bigger.\\n\\n\\u0026#x200B;\\n\\nAs some who have longer played the game will remember, when the game was lunched it quickly got the nickname Cannons Online. Later on we had the Beam and Plasma Console Meta and now we are back to Cannons.\\n\\n\\u0026#x200B;\\n\\nIf we compare the average setup of today, an Epic Beam Array and an Epic Dual Cannon (both Phasers and the same Mods CrtD/Dm\\\\] \\\\[Dmg\\\\]x4) we can see a difference of 951 or generously rounded 1K DPS.\\n\\n\\u0026#x200B;\\n\\n(**Note:** I used Beam Arrays to show the difference because we still don't have enough variants of Omni-Dicretional Beams of every Energy type to be able to equip a 4x4 ship and have an efficient Dual Beam Bank Setup.)\\n\\n\\u0026#x200B;\\n\\nIn the past we argued that the difference was due to the ease of using Beams and to be fair a Beam Boat is easier to fly, but how to learn to use cannons is also no mystery.\\n\\n\\u0026#x200B;\\n\\nWhat has changed however are the Traits that support Beams vs. Cannons and the Cannon Traits have become severely better not to mention that the Boff ability of Beam Fire at Will with it's duration of 10 seconds and 20 seconds global cooldown is worse than the one for Rapid Fire or Scatter Volley with the same duration of 10 seconds but only a global cooldown of 15 seconds.\\n\\n\\u0026#x200B;\\n\\nIf we now look at the Traits we have for Cannons \\\"Go for the Kill\\\", \\\"Preferential Targeting\\\", \\\"Withering Barrage\\\", and for Beams \\\"Redirecting Arrays\\\" and \\\"Entwined Tactical Matrices\\\".\\n\\n\\u0026#x200B;\\n\\nSo for once we have a fantastic combo for Rapid Fire, with Go for the Kill and Preferential Targeting and the same is true for Scatter Volley with Withering Barrage both extends the duration of Rapid Fire (indefinitely by causing critical hits) and Scatter Volley (for four seconds).\\n\\n\\u0026#x200B;\\n\\n(**Note:** I know that Go for the Kill is super expensive and most players will never get it, but Withering Barrage is not and since it is an AOE attack it is most of the time the preferred Trait for cannons and you can buy the ships that have it in the C-Store.)\\n\\n\\u0026#x200B;\\n\\nOn the other side for Beams we have Redirecting Arrays which extends the duration of Beam Fire at Will by a Max of 15 seconds if you take constant damage, the problem however is that targets are dying so quickly that you basically never can take advantage of the duration increase.\\n\\n\\u0026#x200B;\\n\\nEntwined Tactical Matrices is an interesting Trait but I would only use it if I had none of the other Traits for Beams and Cannons but it really shines for Torp Builds allowing you to rain Torp Spreads on your target.\\n\\n\\u0026#x200B;\\n\\nSo why is it important to buff Beams, so for once there are a lot of ships that can only use Beams, and other ships that could potentially use cannons are so sluggish they simply can't move/turn fast enough to keep up and second it's not that great of an experience when you enter a STF and everything is dead in seconds.\\n\\nI have been on both sides nuke everything with my cannons before the rest of the team had a chance to do anything and I have seen the other side being the 5th wheel on the car.\\n\\n\\u0026#x200B;\\n\\n**At this point what can be done:**\\n\\nIncrease the base damage of Beams\\n\\nReduce the global cooldown of FAW to 15 seconds\\n\\nAlter Redirecting Arrays so the duration increase is reduced by maybe 50% but is not depending on taking constant damage.\\n\\n(I know this is very unlikely)\", \"author_fullname\": \"t2_gfwd5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The growing gab between Beams and Cannons\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwbfv6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559601797.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wanted to talk a bit about the rift between the performance of Beams and Cannons that is getting bigger and bigger.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs some who have longer played the game will remember, when the game was lunched it quickly got the nickname Cannons Online. Later on we had the Beam and Plasma Console Meta and now we are back to Cannons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf we compare the average setup of today, an Epic Beam Array and an Epic Dual Cannon (both Phasers and the same Mods CrtD/Dm] [Dmg]x4) we can see a difference of 951 or generously rounded 1K DPS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E I used Beam Arrays to show the difference because we still don\\u0026#39;t have enough variants of Omni-Dicretional Beams of every Energy type to be able to equip a 4x4 ship and have an efficient Dual Beam Bank Setup.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the past we argued that the difference was due to the ease of using Beams and to be fair a Beam Boat is easier to fly, but how to learn to use cannons is also no mystery.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat has changed however are the Traits that support Beams vs. Cannons and the Cannon Traits have become severely better not to mention that the Boff ability of Beam Fire at Will with it\\u0026#39;s duration of 10 seconds and 20 seconds global cooldown is worse than the one for Rapid Fire or Scatter Volley with the same duration of 10 seconds but only a global cooldown of 15 seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf we now look at the Traits we have for Cannons \\u0026quot;Go for the Kill\\u0026quot;, \\u0026quot;Preferential Targeting\\u0026quot;, \\u0026quot;Withering Barrage\\u0026quot;, and for Beams \\u0026quot;Redirecting Arrays\\u0026quot; and \\u0026quot;Entwined Tactical Matrices\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for once we have a fantastic combo for Rapid Fire, with Go for the Kill and Preferential Targeting and the same is true for Scatter Volley with Withering Barrage both extends the duration of Rapid Fire (indefinitely by causing critical hits) and Scatter Volley (for four seconds).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E I know that Go for the Kill is super expensive and most players will never get it, but Withering Barrage is not and since it is an AOE attack it is most of the time the preferred Trait for cannons and you can buy the ships that have it in the C-Store.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the other side for Beams we have Redirecting Arrays which extends the duration of Beam Fire at Will by a Max of 15 seconds if you take constant damage, the problem however is that targets are dying so quickly that you basically never can take advantage of the duration increase.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEntwined Tactical Matrices is an interesting Trait but I would only use it if I had none of the other Traits for Beams and Cannons but it really shines for Torp Builds allowing you to rain Torp Spreads on your target.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo why is it important to buff Beams, so for once there are a lot of ships that can only use Beams, and other ships that could potentially use cannons are so sluggish they simply can\\u0026#39;t move/turn fast enough to keep up and second it\\u0026#39;s not that great of an experience when you enter a STF and everything is dead in seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been on both sides nuke everything with my cannons before the rest of the team had a chance to do anything and I have seen the other side being the 5th wheel on the car.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAt this point what can be done:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIncrease the base damage of Beams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReduce the global cooldown of FAW to 15 seconds\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlter Redirecting Arrays so the duration increase is reduced by maybe 50% but is not depending on taking constant damage.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(I know this is very unlikely)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbfv6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bridgern\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwbfv6/the_growing_gab_between_beams_and_cannons/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwbfv6/the_growing_gab_between_beams_and_cannons/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559572997.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test avoid 401\", \"author_fullname\": \"t2_gbhji\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testagain3\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bw86r0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559578081.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest avoid 401\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw86r0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"erebusmaster\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bw86r0/testagain3/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559549281.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_teik0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"X5xjg5755\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 77, \"hide_score\": false, \"name\": \"t3_bw5s73\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_240?source=fallback\", \"height\": 234, \"width\": 426, \"scrubber_media_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_96\", \"dash_url\": \"https://v.redd.it/s7j0qhnb32231/DASHPlaylist.mpd\", \"duration\": 19, \"hls_url\": \"https://v.redd.it/s7j0qhnb32231/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UgBdgvQL7CGZ0x20Wf7IMOnF3wkO1xtpNXL1W4skdSE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559559448.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?format=pjpg\\u0026auto=webp\\u0026s=8f3632625940d92614b86de3baa00b4e513e4ca1\", \"width\": 640, \"height\": 352}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=9cd6401c64efd76cdecb4102c7eb0c424fe3dc67\", \"width\": 108, \"height\": 59}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=ecbb4c746658195f9309c3633bf1afb403d5f8d0\", \"width\": 216, \"height\": 118}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=e8f6509d25875f11e236b6291f30fb78f2650b85\", \"width\": 320, \"height\": 176}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=640\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=22a48248e037066d331290b3d7364be1a7615e04\", \"width\": 640, \"height\": 352}], \"variants\": {}, \"id\": \"-8_XkWX0CM_gb4MCXRpMpYFxNStsuDQsz1Bh8NYJiD0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw5s73\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ShiftyRider\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bw5s73/x5xjg5755/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/s7j0qhnb32231\", \"subreddit_subscribers\": 703, \"created_utc\": 1559530648.0, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_240?source=fallback\", \"height\": 234, \"width\": 426, \"scrubber_media_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_96\", \"dash_url\": \"https://v.redd.it/s7j0qhnb32231/DASHPlaylist.mpd\", \"duration\": 19, \"hls_url\": \"https://v.redd.it/s7j0qhnb32231/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_rpmhm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"whoaaa does the link work\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bvzhmk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/iTnjKpbA4mac1jgFlLry3EAicfoVm_TDGlxj83mJerc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559523455.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gifyourgame.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?auto=webp\\u0026s=11f7e16039a632def2a5529d21aa1417c31b3b23\", \"width\": 448, \"height\": 252}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8f2b73431c3a3affc064af6e24a3b5b2f276f220\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d32ebeb37a2315a6fd90ca7d96bfd47b34bd4dfb\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3b6b217ff52246acb0e9a98b30d81afaa91d415b\", \"width\": 320, \"height\": 180}], \"variants\": {}, \"id\": \"Yl6MCedx3BkJMCf4V29laFNcXVd7gNJz8-4LknIKiZg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvzhmk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"snowguy13\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvzhmk/whoaaa_does_the_link_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.gifyourgame.com/ComposedBalmyQuale\", \"subreddit_subscribers\": 703, \"created_utc\": 1559494655.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Defesa do Botafogo\\n\\n\\u003EA defesa do Botafogo apresentou imagens de v\\u00eddeo ao Tribunal que comprovariam que o \\u00e1rbitro autorizou o rein\\u00edcio da partida antes de ser chamado pelo VAR para mudar sua decis\\u00e3o. E por j\\u00e1 ter reiniciado o jogo, ele n\\u00e3o poderia mais voltar atr\\u00e1s e marcar o p\\u00eanalti contra o Botafogo.\\n\\nDefesa da CBF\\n\\n\\u003EAs imagens mostram que o \\u00e1rbitro pode sim ter induzido o rein\\u00edcio ao abaixar o bra\\u00e7o que indicava tiro livre indireto e ao correr na dire\\u00e7\\u00e3o do meio campo.\\n\\n\\u003EO problema \\u00e9 que as regras do jogo, as mesmas que o Botafogo cita para sustentar sua den\\u00fancia, estabelecem que o uso do apito \\u00e9 necess\\u00e1rio para reiniciar o jogo ap\\u00f3s um cart\\u00e3o amarelo ou vermelho.\", \"author_fullname\": \"t2_itdhw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvz153\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559520978.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDefesa do Botafogo\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA defesa do Botafogo apresentou imagens de v\\u00eddeo ao Tribunal que comprovariam que o \\u00e1rbitro autorizou o rein\\u00edcio da partida antes de ser chamado pelo VAR para mudar sua decis\\u00e3o. E por j\\u00e1 ter reiniciado o jogo, ele n\\u00e3o poderia mais voltar atr\\u00e1s e marcar o p\\u00eanalti contra o Botafogo.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EDefesa da CBF\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAs imagens mostram que o \\u00e1rbitro pode sim ter induzido o rein\\u00edcio ao abaixar o bra\\u00e7o que indicava tiro livre indireto e ao correr na dire\\u00e7\\u00e3o do meio campo.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EO problema \\u00e9 que as regras do jogo, as mesmas que o Botafogo cita para sustentar sua den\\u00fancia, estabelecem que o uso do apito \\u00e9 necess\\u00e1rio para reiniciar o jogo ap\\u00f3s um cart\\u00e3o amarelo ou vermelho.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvz153\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"heronb\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvz153/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvz153/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559492178.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\[test.\\\\]\\\\[[https://www.youtube.com/watch?v=bV87CcSYqdY](https://www.youtube.com/watch?v=bV87CcSYqdY)\\\\]\", \"author_fullname\": \"t2_biesn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvks18\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559424409.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[test.][\\u003Ca href=\\\"https://www.youtube.com/watch?v=bV87CcSYqdY\\\"\\u003Ehttps://www.youtube.com/watch?v=bV87CcSYqdY\\u003C/a\\u003E]\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?auto=webp\\u0026s=4fcf18ab1d69228f991ceb9d9f5606e2386868fb\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3bb1140dbbc2d30590d93de9a8b7230bd25bf14a\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5eb48232b460293d9b5be807983a1aea3f5d2918\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ab14b38064578527c909effc6801637092d4e28f\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"qgPzrYjBE0VHRhxPsGYR8V92NeWVLuVmSZC7vhukjek\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvks18\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dramaticablacka\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvks18/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvks18/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559395609.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"My Ryzentosh is currently very stable, with the only 'non-workers' being iMessage, Siri, FaceTime and sort of Handoff (only works one way).\\n\\n\\u0026#x200B;\\n\\nAnyhow, regarding the issue I described the title, two settings in System Preferences, namely:\\n\\n\\u0026#x200B;\\n\\n1. **Find my Mac** under the iCloud tab\\n2. **Allow guest user to use this computer** under the Users \\u0026 Groups tab\\n\\n\\u0026#x200B;\\n\\nalways get reset to their defaults after a restart, or powering up after a full shutdown. The 'Find my Mac' option always gets unchecked and 'Allow guest user to use this computer' gets checked.\\n\\n\\u0026#x200B;\\n\\nI would like to keep the Find my Mac setting permanently on and to keep the guest account permanently off. Is there a way I can achieve this?\\n\\n\\u0026#x200B;\\n\\nAny help is appreciated, specs are summed up in the table below. \\ud83d\\udda5\\ud83d\\udda5\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n|**CPU**|AMD Ryzen 1800x|\\n|:-:|:-:|\\n|**Motherboard**|ASUS Crosshair VI Hero|\\n|**GPU**|Zotac Nvidia gtx 1070 (reference cooler)|\\n|**Memory**|16gb - 2x Corsair dominator platinum 8gb 3200mhz|\\n|**OS install drive**|Crucial MX500 250gb SSD|\\n|**Wifi \\u0026 Bluetooth**|iMac A1419BCM94360CD card with PCI-e adapter|\", \"author_fullname\": \"t2_ttqmp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Settings under System Preferences get rest after shutdown \\u0026 restarts\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvk747\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559391772.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559420174.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy Ryzentosh is currently very stable, with the only \\u0026#39;non-workers\\u0026#39; being iMessage, Siri, FaceTime and sort of Handoff (only works one way).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyhow, regarding the issue I described the title, two settings in System Preferences, namely:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFind my Mac\\u003C/strong\\u003E under the iCloud tab\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EAllow guest user to use this computer\\u003C/strong\\u003E under the Users \\u0026amp; Groups tab\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealways get reset to their defaults after a restart, or powering up after a full shutdown. The \\u0026#39;Find my Mac\\u0026#39; option always gets unchecked and \\u0026#39;Allow guest user to use this computer\\u0026#39; gets checked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to keep the Find my Mac setting permanently on and to keep the guest account permanently off. Is there a way I can achieve this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help is appreciated, specs are summed up in the table below. \\ud83d\\udda5\\ud83d\\udda5\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAMD Ryzen 1800x\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EASUS Crosshair VI Hero\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EGPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EZotac Nvidia gtx 1070 (reference cooler)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16gb - 2x Corsair dominator platinum 8gb 3200mhz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EOS install drive\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECrucial MX500 250gb SSD\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EWifi \\u0026amp; Bluetooth\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EiMac A1419BCM94360CD card with PCI-e adapter\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvk747\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Pepi28t-50\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvk747/settings_under_system_preferences_get_rest_after/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvk747/settings_under_system_preferences_get_rest_after/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559391374.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1141dc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Graphic found in a 2015 Terra Prime preview is the same as the ones around Area 18\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bvf8q3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit) GIF by @robotdude on Gfycat. Discover more starcitizen GIFs on Gfycat\", \"title\": \"Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit)\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ActualRightColt-size_restricted.gif\", \"thumbnail_height\": 250}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bvf8q3\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/c9_Wg6yf03hoBaNzKW8V4C6c3LjGbX6dNXDj3mUHy7c.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559379402.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gfycat.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?format=png8\\u0026s=c0569ed9f587376e57d01e8ef5ba86d518df8771\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=3ccb8ac692e06a59918fb1799b6990e338172f5f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=16d097c9fe9c24465632bcd6e014f66b8b1bd2fa\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=d46c61ee71e7f625e6f8ca58551a1b74847abe98\", \"width\": 320, \"height\": 179}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?s=634e3b5adfe3dcaef794e3b30a8b35216951ab36\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026crop=smart\\u0026s=c163952d7527278194216f9845477ed70ede7fca\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026crop=smart\\u0026s=f3ef9b10b9219bffbead65215e7f8a4949f67aba\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026crop=smart\\u0026s=04ce94a6ab48fe49f6b9265bc3583d2f18cbe921\", \"width\": 320, \"height\": 179}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?format=mp4\\u0026s=7a2fa61a333d02e104ffc485e595b9f04824ea67\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026format=mp4\\u0026s=b008d417dc5bc1f2f9203612293cd38c9f98dade\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026format=mp4\\u0026s=2d9f8c04c8ab09d0abdc59a8ea407b593d82ad82\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026format=mp4\\u0026s=2ac9548358af384cf7bf04397f61fea396a9bda5\", \"width\": 320, \"height\": 179}]}}, \"id\": \"OA1SrhwRQdwHUJgo4zOwQTEZegw59-SLQj-ZypHdhoM\"}], \"reddit_video_preview\": {\"fallback_url\": \"https://v.redd.it/oc4537uf8n131/DASH_360\", \"height\": 360, \"width\": 640, \"scrubber_media_url\": \"https://v.redd.it/oc4537uf8n131/DASH_96\", \"dash_url\": \"https://v.redd.it/oc4537uf8n131/DASHPlaylist.mpd\", \"duration\": 9, \"hls_url\": \"https://v.redd.it/oc4537uf8n131/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvf8q3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ehriqhck\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvf8q3/graphic_found_in_a_2015_terra_prime_preview_is/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://gfycat.com/actualrightcolt\", \"subreddit_subscribers\": 703, \"created_utc\": 1559350602.0, \"media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit) GIF by @robotdude on Gfycat. Discover more starcitizen GIFs on Gfycat\", \"title\": \"Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit)\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ActualRightColt-size_restricted.gif\", \"thumbnail_height\": 250}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Title** \\nText\\n\\n\\u0026nbsp;\\n\\n**Title** \\nText\", \"author_fullname\": \"t2_16lvip\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvd605\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559366978.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ETitle\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nText\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETitle\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nText\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvd605\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CT-24601\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvd605/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvd605/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559338178.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"So I've noticed that when I pressed TAB to view the teams, it also says a lot about the MMR of the players in the match. There are a couple of rules though, before figuring out who has the lowest and highest MMR. The positioning of the portrait is based on MMR, far left being the lowest rated and far right being highest rated.\\n\\n---\\n\\n# Rule #1: You are always at the bottom left.\\n\\nThis one is pretty simple. No matter what, you will always be on the bottom left when you press TAB to view the teams. [I drew it out for you, in case you want to see my beautiful art.](https://i.imgur.com/IETyq6l.jpg) Because of this, you cannot tell whether you are the lowest or highest MMR on your team.\\n\\n---\\n\\n# Rule #2: Groups are to the right, and ordered alphabetically.\\n\\nSpeaks for itself, but groups of any sizes are placed to the far right and are organized alphabetically. The smaller the group, the easier it is for you to determine who has the lowest/highest MMR on that team. [Here's my drawing as an example for a duo queue.](https://i.imgur.com/PU1X5G4.jpg)\\n\\nAlso I should clarify that it's very possible that one of the players in the duo can have the highest or lowest MMR, but since groups are always to the right and alphabetically, it's impossible to tell if which group member has a higher or lower MMR.\\n\\n\\u0026nbsp;\\n\\n[In this screenshot, you can see the enemy team is a 6-group and is organized alphabetically.](https://i.imgur.com/p7nTqmK.png) You cannot determine who has the highest or lowest MMR from this 6-stack.\\n\\n---\\n\\n#### All solo queue.\\n\\nIf there are no groups, then seeing who has the highest rated MMR on both teams is easier. Simply look left to right to see from lowest to highest MMR on a team. Do keep in mind that since you are always positioned bottom left, you cannot tell what MMR you are, only your teammates. However, you can find out by asking the highest rated MMR player on your team where you are positioned on their screen, and that will help you figure out if where you stand in your team. [Another drawing.](https://i.imgur.com/bMIQr7D.jpg)\\n\\n---\\n\\n#### Decayed Accounts\\n\\nThe positioning of the portraits does not take into account the SR of the person, but the MMR. For instance, you can have a player that is around 4.4k MMR, but decayed to Masters. In a 4.1k average game, it will position this \\\"Masters\\\" player above GM's.\\n\\n\\nAn example of this is [this screenshot.](https://i.imgur.com/c4yrmNB.jpg) The player Valentine had decayed but is still positioned higher due to having a higher MMR. I only have [this clip](https://clips.twitch.tv/SoftDoubtfulFriseePrimeMe) that he explains that he hasn't played in a while (which would hint at him being decayed). If any of you can find any extra examples of decayed accounts and their portraits positioning, then share it please! I know it's a thing but I don't have much to show.\\n\\n---\\n\\nAlso, if you leave and rejoin a competitive match, the positioning of all portraits gets messed up for some reason. Not sure why, but that's a thing.\\n\\n---\\n\\n[Last example](https://i.imgur.com/NZJQQgo.jpg) On the enemy team, you can see that groups ignore MMR and are placed to the right and are alphabetically organized. It would appear that Pigeon would have the highest MMR on the enemy team (I'm taking a guess that the duo isn't decayed.)\\n\\n\\nOn the friendly team, the Masters players are on the left and it's safe to say that those aren't decayed accounts either. Neziwi is positioned to have a higher MMR out of the three and they are Grandmaster. Then of course the duo ignored the MMR rule and is set far right, however it would be safe to say that Zerg would be the highest rated MMR. If you are Dino in this scenario, you'd have to ask other teammates where you're positioned when they press TAB to figure out where you stand on your team.\\n\\n---\\n\\nHope this wasn't confusing, I suck at explaining things and well I always wanted to share this.\", \"author_fullname\": \"t2_3v8bc9yn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"title\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvbjmw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559358317.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I\\u0026#39;ve noticed that when I pressed TAB to view the teams, it also says a lot about the MMR of the players in the match. There are a couple of rules though, before figuring out who has the lowest and highest MMR. The positioning of the portrait is based on MMR, far left being the lowest rated and far right being highest rated.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ERule #1: You are always at the bottom left.\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EThis one is pretty simple. No matter what, you will always be on the bottom left when you press TAB to view the teams. \\u003Ca href=\\\"https://i.imgur.com/IETyq6l.jpg\\\"\\u003EI drew it out for you, in case you want to see my beautiful art.\\u003C/a\\u003E Because of this, you cannot tell whether you are the lowest or highest MMR on your team.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ERule #2: Groups are to the right, and ordered alphabetically.\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ESpeaks for itself, but groups of any sizes are placed to the far right and are organized alphabetically. The smaller the group, the easier it is for you to determine who has the lowest/highest MMR on that team. \\u003Ca href=\\\"https://i.imgur.com/PU1X5G4.jpg\\\"\\u003EHere\\u0026#39;s my drawing as an example for a duo queue.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso I should clarify that it\\u0026#39;s very possible that one of the players in the duo can have the highest or lowest MMR, but since groups are always to the right and alphabetically, it\\u0026#39;s impossible to tell if which group member has a higher or lower MMR.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/p7nTqmK.png\\\"\\u003EIn this screenshot, you can see the enemy team is a 6-group and is organized alphabetically.\\u003C/a\\u003E You cannot determine who has the highest or lowest MMR from this 6-stack.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EAll solo queue.\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003EIf there are no groups, then seeing who has the highest rated MMR on both teams is easier. Simply look left to right to see from lowest to highest MMR on a team. Do keep in mind that since you are always positioned bottom left, you cannot tell what MMR you are, only your teammates. However, you can find out by asking the highest rated MMR player on your team where you are positioned on their screen, and that will help you figure out if where you stand in your team. \\u003Ca href=\\\"https://i.imgur.com/bMIQr7D.jpg\\\"\\u003EAnother drawing.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EDecayed Accounts\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003EThe positioning of the portraits does not take into account the SR of the person, but the MMR. For instance, you can have a player that is around 4.4k MMR, but decayed to Masters. In a 4.1k average game, it will position this \\u0026quot;Masters\\u0026quot; player above GM\\u0026#39;s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn example of this is \\u003Ca href=\\\"https://i.imgur.com/c4yrmNB.jpg\\\"\\u003Ethis screenshot.\\u003C/a\\u003E The player Valentine had decayed but is still positioned higher due to having a higher MMR. I only have \\u003Ca href=\\\"https://clips.twitch.tv/SoftDoubtfulFriseePrimeMe\\\"\\u003Ethis clip\\u003C/a\\u003E that he explains that he hasn\\u0026#39;t played in a while (which would hint at him being decayed). If any of you can find any extra examples of decayed accounts and their portraits positioning, then share it please! I know it\\u0026#39;s a thing but I don\\u0026#39;t have much to show.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EAlso, if you leave and rejoin a competitive match, the positioning of all portraits gets messed up for some reason. Not sure why, but that\\u0026#39;s a thing.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/NZJQQgo.jpg\\\"\\u003ELast example\\u003C/a\\u003E On the enemy team, you can see that groups ignore MMR and are placed to the right and are alphabetically organized. It would appear that Pigeon would have the highest MMR on the enemy team (I\\u0026#39;m taking a guess that the duo isn\\u0026#39;t decayed.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the friendly team, the Masters players are on the left and it\\u0026#39;s safe to say that those aren\\u0026#39;t decayed accounts either. Neziwi is positioned to have a higher MMR out of the three and they are Grandmaster. Then of course the duo ignored the MMR rule and is set far right, however it would be safe to say that Zerg would be the highest rated MMR. If you are Dino in this scenario, you\\u0026#39;d have to ask other teammates where you\\u0026#39;re positioned when they press TAB to figure out where you stand on your team.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EHope this wasn\\u0026#39;t confusing, I suck at explaining things and well I always wanted to share this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?auto=webp\\u0026s=b55948b8997a97d3a4d66b2c1107e618805eefb3\", \"width\": 1368, \"height\": 672}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bd56a360da0819da36aa8dbb90b7c0c1e0bef366\", \"width\": 108, \"height\": 53}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=af8d8a88bfb68ba72a21b510ad22ecdabdcb39f8\", \"width\": 216, \"height\": 106}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=301a2df728199828321008fe18ecc7ff7a66e9cf\", \"width\": 320, \"height\": 157}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d043fabb01f80aafb92f35a196b837f4bec18e6c\", \"width\": 640, \"height\": 314}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=c5b40409bf6a7dbf0368810654efb27d971fbfa4\", \"width\": 960, \"height\": 471}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9103804bad1528f461cb8a9ffca3352914282dd3\", \"width\": 1080, \"height\": 530}], \"variants\": {}, \"id\": \"ZROe6eIaHJYbMLtqMVopuCGne3uCW67NGQzR28nxfLg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvbjmw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ieatwatermelon3\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvbjmw/title/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvbjmw/title/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559329517.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3g10qxu5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make The Galaxy Great again\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bv7m33\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/dVpFA5GDGB82WiRJ2E5_reqsaTqO4eVbprgMcAheTVo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559338611.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?auto=webp\\u0026s=5032fcfcb8c9b8b4d3d0c91db5ea099c39ccbde2\", \"width\": 720, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bf753c7677d1de410675298b0a57dec27f54ef64\", \"width\": 108, \"height\": 162}, {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3c3ae5535af89163e046ea2262caea94b92e0e29\", \"width\": 216, \"height\": 324}, {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c32e901c934b5a250c6e71296710aca7d16554d9\", \"width\": 320, \"height\": 480}, {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a8bc03446597a0d715fd15b68e9fb4fe6d59268b\", \"width\": 640, \"height\": 960}], \"variants\": {}, \"id\": \"hNbbNAjQxsHCybW2rgZJTQKwTBfWIs3zP9KEP7GFxCg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv7m33\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"binjajer\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv7m33/make_the_galaxy_great_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/gcdb8g62vj131.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559309811.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\n[Join the Cause!](https://i.redd.it/56dsp8netj131.jpg)\\n\\n\\u0026#x200B;\\n\\nTired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens?\\n\\nCheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.)\\n\\n[https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/](https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/)\\n\\nSquadron discord details will be disbursed upon application.\\n\\nFly bigly, commanders!\\n\\n[Make the Galaxy Great Again!](https://i.redd.it/se3vvpg3tj131.jpg)\", \"author_fullname\": \"t2_3g10qxu5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make the Galaxy Great Again!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"56dsp8netj131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 720, \"x\": 1280, \"u\": \"https://i.redd.it/56dsp8netj131.jpg\"}, \"m\": \"image/jpg\", \"id\": \"56dsp8netj131\"}, \"se3vvpg3tj131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1080, \"x\": 720, \"u\": \"https://i.redd.it/se3vvpg3tj131.jpg\"}, \"m\": \"image/jpg\", \"id\": \"se3vvpg3tj131\"}}, \"name\": \"t3_bv7huc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/4IFvYtwaO9I4-fDj96eb2Tl7zjVyhI5H9gPpozkKK08.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559337944.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/56dsp8netj131.jpg\\\"\\u003EJoin the Cause!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\\"\\u003Ehttps://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESquadron discord details will be disbursed upon application.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFly bigly, commanders!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/se3vvpg3tj131.jpg\\\"\\u003EMake the Galaxy Great Again!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv7huc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"binjajer\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559309144.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#Stats Report\\n\\nAll activity was compiled from the last 1 days of data\\n\\n***\\n##Upcoming Cookie Days\\n\\n|**user**|**cookie day**|\\n|:-:|:-:|\\n|Engvar|2017-6-26|\\n|bioszombie|2017-7-3|\\n|BrentIsAbel|2018-7-6|\\n\\n\\n\\n\\n***\\n##r/edefined\\n\\n|**mean age**|**median age**|**users kicked**|**users w/o siblings**|**kicked per week**|**kicked user of the month**|**position history graph**|**kick history graph**|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|1.04|0.9|2328|43|20%|jiggs_|[# graph](http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.pdf)|[kick graph](http://intotheskies.com/edef/stats/2019-05-30/poshistory_all_graph.pdf)|\\n\\n\\n\\n\\n***\\n##[Users](http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.png)\\n\\n|**#**|**+/-**|**user**|**#'s moved**|**#'s / botrun**|**age**|**# by add day**|**biggest jump**|**botruns survived**|**botruns moved**|**siblings**|**buddy of the month**|**# history graph**|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|1|+0|CaptainPedge|35|1.94|2.61|#1|15|117|5|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Vic_the_Dick|[graph](http://intotheskies.com/edef/stats/2019-05-30/CaptainPedge_poshistory_graph.pdf)|\\n|2|+0|LukeWarmCage|38|0.51|2.22|#2|18|112|12|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|ticktockalock|[graph](http://intotheskies.com/edef/stats/2019-05-30/LukeWarmCage_poshistory_graph.pdf)|\\n|3|+0|boomheadshot7|37|0.5|2.21|#3|16|111|13|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|BrentIsAbel|[graph](http://intotheskies.com/edef/stats/2019-05-30/boomheadshot7_poshistory_graph.pdf)|\\n|4|+0|hornplayerKC|51|0.69|2.21|#4|23|111|13|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|doncicismydaddy|[graph](http://intotheskies.com/edef/stats/2019-05-30/hornplayerKC_poshistory_graph.pdf)|\\n|5|+0|Kinighos|53|0.73|2.19|#5|23|110|15|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|And_So_It_Goess|[graph](http://intotheskies.com/edef/stats/2019-05-30/Kinighos_poshistory_graph.pdf)|\\n|6|+0|Lizzibabe|81|1.11|2.19|#6|38|110|16|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|DogfoodEnforcer|[graph](http://intotheskies.com/edef/stats/2019-05-30/Lizzibabe_poshistory_graph.pdf)|\\n|7|+0|Ravenwald|74|1.03|2.18|#7|38|109|16|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|moreawkwardthenyou|[graph](http://intotheskies.com/edef/stats/2019-05-30/Ravenwald_poshistory_graph.pdf)|\\n|8|+0|emrickgj|81|1.14|2.16|#8|27|108|19|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|fartfacepooper|[graph](http://intotheskies.com/edef/stats/2019-05-30/emrickgj_poshistory_graph.pdf)|\\n|9|+0|choontang|71|1.04|2.1|#9|32|105|21|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Hippo_Singularity|[graph](http://intotheskies.com/edef/stats/2019-05-30/choontang_poshistory_graph.pdf)|\\n|10|+0|PM-YOUR-PMS|48|0.72|2.08|#10|11|104|20|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Phaethonas|[graph](http://intotheskies.com/edef/stats/2019-05-30/PM-YOUR-PMS_poshistory_graph.pdf)|\\n|11|+0|Engvar|82|0.89|1.94|#15|30|96|28|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Error404NoUserFound|[graph](http://intotheskies.com/edef/stats/2019-05-30/Engvar_poshistory_graph.pdf)|\\n|12|+0|bioszombie|83|0.91|1.93|#16|29|95|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|1wrx2subarus|[graph](http://intotheskies.com/edef/stats/2019-05-30/bioszombie_poshistory_graph.pdf)|\\n|13|+0|draftstone|55|0.61|1.91|#17|8|94|28|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|tiffanydisasterxoxo|[graph](http://intotheskies.com/edef/stats/2019-05-30/draftstone_poshistory_graph.pdf)|\\n|14|+0|hitch21|64|0.71|1.91|#18|10|94|28|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|EarlNeonCog|[graph](http://intotheskies.com/edef/stats/2019-05-30/hitch21_poshistory_graph.pdf)|\\n|15|+0|booziwan|56|0.64|1.87|#19|9|92|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Kusmariini|[graph](http://intotheskies.com/edef/stats/2019-05-30/booziwan_poshistory_graph.pdf)|\\n|16|+0|MinagiV|59|0.67|1.87|#20|12|92|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|FerniWrites|[graph](http://intotheskies.com/edef/stats/2019-05-30/MinagiV_poshistory_graph.pdf)|\\n|17|+0|eliporter877|65|0.76|1.83|#21|16|90|28|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|DaOrkiestSalamander|[graph](http://intotheskies.com/edef/stats/2019-05-30/eliporter877_poshistory_graph.pdf)|\\n|18|+0|And_So_It_Goess|65|0.78|2.04|#13|20|87|28|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Kinighos|[graph](http://intotheskies.com/edef/stats/2019-05-30/And_So_It_Goess_poshistory_graph.pdf)|\\n|19|+0|JorgeAmVF|90|1.06|1.81|#22|34|89|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|AcePhoenixGamer|[graph](http://intotheskies.com/edef/stats/2019-05-30/JorgeAmVF_poshistory_graph.pdf)|\\n|20|+0|opticalshadow|103|1.21|1.81|#23|41|89|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|GreatDane666|[graph](http://intotheskies.com/edef/stats/2019-05-30/opticalshadow_poshistory_graph.pdf)|\\n|21|+0|moreawkwardthenyou|66|0.82|1.72|#24|18|84|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Ravenwald|[graph](http://intotheskies.com/edef/stats/2019-05-30/moreawkwardthenyou_poshistory_graph.pdf)|\\n|22|+0|1wrx2subarus|87|1.09|1.72|#25|33|84|32|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|bioszombie|[graph](http://intotheskies.com/edef/stats/2019-05-30/1wrx2subarus_poshistory_graph.pdf)|\\n|23|+0|Phaethonas|72|0.91|1.7|#26|19|83|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|PM-YOUR-PMS|[graph](http://intotheskies.com/edef/stats/2019-05-30/Phaethonas_poshistory_graph.pdf)|\\n|24|+0|xTMT|80|1.01|1.7|#27|26|83|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Cowbeller|[graph](http://intotheskies.com/edef/stats/2019-05-30/xTMT_poshistory_graph.pdf)|\\n|25|+0|medes24|69|0.91|1.64|#28|19|80|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|TheFern33|[graph](http://intotheskies.com/edef/stats/2019-05-30/medes24_poshistory_graph.pdf)|\\n|26|+0|fartfacepooper|55|0.74|1.61|#30|8|78|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|emrickgj|[graph](http://intotheskies.com/edef/stats/2019-05-30/fartfacepooper_poshistory_graph.pdf)|\\n|27|+0|YourAmishNeighbor|67|0.92|1.59|#31|13|77|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Henchman29|[graph](http://intotheskies.com/edef/stats/2019-05-30/YourAmishNeighbor_poshistory_graph.pdf)|\\n|28|+0|SJC-Caron|49|0.69|1.55|#32|9|75|27|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|dishonorable|[graph](http://intotheskies.com/edef/stats/2019-05-30/SJC-Caron_poshistory_graph.pdf)|\\n|29|+0|CNNsPrimarySource|46|0.66|1.53|#33|8|74|27|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|n3gd0|[graph](http://intotheskies.com/edef/stats/2019-05-30/CNNsPrimarySource_poshistory_graph.pdf)|\\n|30|+0|TheFern33|56|0.88|1.42|#34|12|68|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|medes24|[graph](http://intotheskies.com/edef/stats/2019-05-30/TheFern33_poshistory_graph.pdf)|\\n|31|+0|n3gd0|53|0.84|1.4|#35|8|67|30|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|CNNsPrimarySource|[graph](http://intotheskies.com/edef/stats/2019-05-30/n3gd0_poshistory_graph.pdf)|\\n|32|+0|tecrogue|55|0.87|1.4|#36|9|67|30|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|fighterace00|[graph](http://intotheskies.com/edef/stats/2019-05-30/tecrogue_poshistory_graph.pdf)|\\n|33|+0|Rougefarie|58|0.92|1.4|#37|11|67|30|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|GotZeroFucks2Give|[graph](http://intotheskies.com/edef/stats/2019-05-30/Rougefarie_poshistory_graph.pdf)|\\n|34|+0|Eurotriangle|54|0.87|1.38|#38|10|66|30|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|esoper1976|[graph](http://intotheskies.com/edef/stats/2019-05-30/Eurotriangle_poshistory_graph.pdf)|\\n|35|+0|biffpower3|52|0.95|1.24|#39|6|59|29|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|the_dank_666|[graph](http://intotheskies.com/edef/stats/2019-05-30/biffpower3_poshistory_graph.pdf)|\\n|36|+0|MrNorc|58|1.05|1.24|#40|9|59|29|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|p5yk0t1km1r4ge|[graph](http://intotheskies.com/edef/stats/2019-05-30/MrNorc_poshistory_graph.pdf)|\\n|37|+0|Hippo_Singularity|63|1.21|1.16|#41|14|56|31|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|choontang|[graph](http://intotheskies.com/edef/stats/2019-05-30/Hippo_Singularity_poshistory_graph.pdf)|\\n|38|+0|Vic_the_Dick|55|1.08|1.15|#42|6|55|30|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|CaptainPedge|[graph](http://intotheskies.com/edef/stats/2019-05-30/Vic_the_Dick_poshistory_graph.pdf)|\\n|39|+0|the_dank_666|60|1.18|1.15|#43|8|55|30|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|biffpower3|[graph](http://intotheskies.com/edef/stats/2019-05-30/the_dank_666_poshistory_graph.pdf)|\\n|40|+0|glorious_albus|58|1.21|1.07|#44|8|52|28|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|fuel126|[graph](http://intotheskies.com/edef/stats/2019-05-30/glorious_albus_poshistory_graph.pdf)|\\n|41|+0|Lorddragonfang|51|1.09|1.05|#45|8|51|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|kurtn0tk1rk|[graph](http://intotheskies.com/edef/stats/2019-05-30/Lorddragonfang_poshistory_graph.pdf)|\\n|42|+0|Sicarius_Tacet|51|1.09|1.05|#46|8|51|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|chaosdemonhu|[graph](http://intotheskies.com/edef/stats/2019-05-30/Sicarius_Tacet_poshistory_graph.pdf)|\\n|43|+0|Maxiscoolerthanyou|50|1.09|1.03|#47|7|50|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|schludy|[graph](http://intotheskies.com/edef/stats/2019-05-30/Maxiscoolerthanyou_poshistory_graph.pdf)|\\n|44|+0|Kusmariini|48|1.07|1.01|#48|7|49|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|booziwan|[graph](http://intotheskies.com/edef/stats/2019-05-30/Kusmariini_poshistory_graph.pdf)|\\n|45|+0|BrentIsAbel|53|1.29|0.92|#49|13|45|24|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|boomheadshot7|[graph](http://intotheskies.com/edef/stats/2019-05-30/BrentIsAbel_poshistory_graph.pdf)|\\n|46|+0|misterpyrrhuloxia|71|1.77|0.9|#50|26|44|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|TastyTacoN1nja|[graph](http://intotheskies.com/edef/stats/2019-05-30/misterpyrrhuloxia_poshistory_graph.pdf)|\\n|47|+0|Sickened_but_curious|77|1.93|0.9|#51|30|44|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Willowx|[graph](http://intotheskies.com/edef/stats/2019-05-30/Sickened_but_curious_poshistory_graph.pdf)|\\n|48|+0|fighterace00|85|2.12|0.9|#52|34|44|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|tecrogue|[graph](http://intotheskies.com/edef/stats/2019-05-30/fighterace00_poshistory_graph.pdf)|\\n|49|+0|Dystopian_Dreamer|62|1.59|0.88|#53|19|43|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|ClogsInBronteland|[graph](http://intotheskies.com/edef/stats/2019-05-30/Dystopian_Dreamer_poshistory_graph.pdf)|\\n|50|+0|Willowx|63|1.62|0.88|#54|20|43|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Sickened_but_curious|[graph](http://intotheskies.com/edef/stats/2019-05-30/Willowx_poshistory_graph.pdf)|\\n|51|+0|p5yk0t1km1r4ge|76|1.95|0.88|#55|29|43|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|MrNorc|[graph](http://intotheskies.com/edef/stats/2019-05-30/p5yk0t1km1r4ge_poshistory_graph.pdf)|\\n|52|+0|ClogsInBronteland|53|1.39|0.85|#56|13|42|24|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Dystopian_Dreamer|[graph](http://intotheskies.com/edef/stats/2019-05-30/ClogsInBronteland_poshistory_graph.pdf)|\\n|53|+0|Henchman29|72|1.89|0.85|#57|25|42|24|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|YourAmishNeighbor|[graph](http://intotheskies.com/edef/stats/2019-05-30/Henchman29_poshistory_graph.pdf)|\\n|54|+0|yoctometric|28|0.29|2.04|#14|27|99|57|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|MaxNobody|[graph](http://intotheskies.com/edef/stats/2019-05-30/yoctometric_poshistory_graph.pdf)|\\n|55|+0|svenguillotien|58|1.53|0.82|#59|12|40|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Ana_S_Gram|[graph](http://intotheskies.com/edef/stats/2019-05-30/svenguillotien_poshistory_graph.pdf)|\\n|56|+0|baildodger|44|1.22|0.78|#60|10|38|24|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Seven65|[graph](http://intotheskies.com/edef/stats/2019-05-30/baildodger_poshistory_graph.pdf)|\\n|57|+0|A_lot_of_arachnids|30|0.97|0.69|#62|4|33|22|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Theradead|[graph](http://intotheskies.com/edef/stats/2019-05-30/A_lot_of_arachnids_poshistory_graph.pdf)|\\n|58|+0|EarlNeonCog|36|1.2|0.67|#63|9|32|22|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|hitch21|[graph](http://intotheskies.com/edef/stats/2019-05-30/EarlNeonCog_poshistory_graph.pdf)|\\n|59|+0|madbubers|35|1.21|0.65|#64|8|31|21|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Tigernos|[graph](http://intotheskies.com/edef/stats/2019-05-30/madbubers_poshistory_graph.pdf)|\\n|60|+0|Upper_Canada_Pango|34|1.21|0.63|#65|8|30|20|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|solarSpring|[graph](http://intotheskies.com/edef/stats/2019-05-30/Upper_Canada_Pango_poshistory_graph.pdf)|\\n|61|+0|ticktockalock|39|1.39|0.63|#66|9|30|20|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|LukeWarmCage|[graph](http://intotheskies.com/edef/stats/2019-05-30/ticktockalock_poshistory_graph.pdf)|\\n|62|+0|topaz_b|24|0.92|0.59|#67|3|28|18|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|allyourbase51|[graph](http://intotheskies.com/edef/stats/2019-05-30/topaz_b_poshistory_graph.pdf)|\\n|63|+0|_Dia_|24|0.92|0.59|#68|3|28|18|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|This_Explains_It_All|[graph](http://intotheskies.com/edef/stats/2019-05-30/_Dia__poshistory_graph.pdf)|\\n|64|+0|MaxNobody|36|1.44|0.57|#69|12|27|17|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|yoctometric|[graph](http://intotheskies.com/edef/stats/2019-05-30/MaxNobody_poshistory_graph.pdf)|\\n|65|+0|kurtn0tk1rk|27|1.17|0.53|#70|7|25|16|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Lorddragonfang|[graph](http://intotheskies.com/edef/stats/2019-05-30/kurtn0tk1rk_poshistory_graph.pdf)|\\n|66|+0|Ana_S_Gram|23|0.23|2.06|#12|20|102|64|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|svenguillotien|[graph](http://intotheskies.com/edef/stats/2019-05-30/Ana_S_Gram_poshistory_graph.pdf)|\\n|67|+0|TastyTacoN1nja|24|1.09|0.51|#71|4|24|17|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|misterpyrrhuloxia|[graph](http://intotheskies.com/edef/stats/2019-05-30/TastyTacoN1nja_poshistory_graph.pdf)|\\n|68|+0|doncicismydaddy|24|1.09|0.51|#72|4|24|17|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|hornplayerKC|[graph](http://intotheskies.com/edef/stats/2019-05-30/doncicismydaddy_poshistory_graph.pdf)|\\n|69|+0|dishonorable|27|1.29|0.5|#74|4|23|17|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|SJC-Caron|[graph](http://intotheskies.com/edef/stats/2019-05-30/dishonorable_poshistory_graph.pdf)|\\n|70|+0|tiffanydisasterxoxo|12|0.12|2.08|#11|27|100|62|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|draftstone|[graph](http://intotheskies.com/edef/stats/2019-05-30/tiffanydisasterxoxo_poshistory_graph.pdf)|\\n|71|+0|solarSpring|28|1.47|0.46|#75|4|21|16|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Upper_Canada_Pango|[graph](http://intotheskies.com/edef/stats/2019-05-30/solarSpring_poshistory_graph.pdf)|\\n|72|+0|rahuldottech|28|1.56|0.44|#76|5|20|15|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|BatteredAggie19|[graph](http://intotheskies.com/edef/stats/2019-05-30/rahuldottech_poshistory_graph.pdf)|\\n|73|+0|Tigernos|27|1.93|0.32|#77|5|16|12|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|madbubers|[graph](http://intotheskies.com/edef/stats/2019-05-30/Tigernos_poshistory_graph.pdf)|\\n|74|+0|chaosdemonhu|23|1.77|0.3|#78|6|15|11|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Sicarius_Tacet|[graph](http://intotheskies.com/edef/stats/2019-05-30/chaosdemonhu_poshistory_graph.pdf)|\\n|75|+0|tlenze|22|2.0|0.27|#79|6|13|10|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|OhAces|[graph](http://intotheskies.com/edef/stats/2019-05-30/tlenze_poshistory_graph.pdf)|\\n|76|+0|AcePhoenixGamer|38|1.09|0.84|#58|17|37|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|JorgeAmVF|[graph](http://intotheskies.com/edef/stats/2019-05-30/AcePhoenixGamer_poshistory_graph.pdf)|\\n|77|+0|karmatic89|22|1.05|0.51|#73|7|23|16|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|F0000r|[graph](http://intotheskies.com/edef/stats/2019-05-30/karmatic89_poshistory_graph.pdf)|\\n|78|+0|F0000r|21|2.62|0.2|#80|5|10|7|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|karmatic89|[graph](http://intotheskies.com/edef/stats/2019-05-30/F0000r_poshistory_graph.pdf)|\\n|79|+0|Seven65|19|3.17|0.17|#81|6|8|6|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|baildodger|[graph](http://intotheskies.com/edef/stats/2019-05-30/Seven65_poshistory_graph.pdf)|\\n|80|+0|FerniWrites|21|4.2|0.15|#82|8|7|5|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|MinagiV|[graph](http://intotheskies.com/edef/stats/2019-05-30/FerniWrites_poshistory_graph.pdf)|\\n|81|+0|Error404NoUserFound|13|3.25|0.13|#83|4|6|4|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Engvar|[graph](http://intotheskies.com/edef/stats/2019-05-30/Error404NoUserFound_poshistory_graph.pdf)|\\n|82|+0|esoper1976|13|3.25|0.13|#84|4|6|4|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Eurotriangle|[graph](http://intotheskies.com/edef/stats/2019-05-30/esoper1976_poshistory_graph.pdf)|\\n|83|+0|DaOrkiestSalamander|19|0.59|0.76|#61|8|35|25|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|eliporter877|[graph](http://intotheskies.com/edef/stats/2019-05-30/DaOrkiestSalamander_poshistory_graph.pdf)|\\n|84|+0|GreatDane666|8|0.11|1.63|#29|14|76|31|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|opticalshadow|[graph](http://intotheskies.com/edef/stats/2019-05-30/GreatDane666_poshistory_graph.pdf)|\\n|85|+0|Theradead|12|4.0|0.11|#85|5|5|3|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|A_lot_of_arachnids|[graph](http://intotheskies.com/edef/stats/2019-05-30/Theradead_poshistory_graph.pdf)|\\n|86|+0|LaquaciousMute|14|4.67|0.11|#86|6|5|3|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|WhiteStripesWS6|[graph](http://intotheskies.com/edef/stats/2019-05-30/LaquaciousMute_poshistory_graph.pdf)|\\n|87|+0|allyourbase51|11|-|0.09|#87|8|4|2|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|topaz_b|[graph](http://intotheskies.com/edef/stats/2019-05-30/allyourbase51_poshistory_graph.pdf)|\\n|88|+1|Cowbeller|9|-|0.07|#88|8|3|2|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|xTMT|[graph](http://intotheskies.com/edef/stats/2019-05-30/Cowbeller_poshistory_graph.pdf)|\\n|89|+1|WhiteStripesWS6|2|-|0.05|#89|1|2|2|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|LaquaciousMute|[graph](http://intotheskies.com/edef/stats/2019-05-30/WhiteStripesWS6_poshistory_graph.pdf)|\\n|90|+1|GotZeroFucks2Give|1|-|0.04|#90|1|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Rougefarie|[graph](http://intotheskies.com/edef/stats/2019-05-30/GotZeroFucks2Give_poshistory_graph.pdf)|\\n|91|+1|bees1280|1|-|0.04|#91|1|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|UnbiasedSportsExpert|[graph](http://intotheskies.com/edef/stats/2019-05-30/bees1280_poshistory_graph.pdf)|\\n|92|+1|Gooberflagm2|1|-|0.04|#92|1|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|LMY723|[graph](http://intotheskies.com/edef/stats/2019-05-30/Gooberflagm2_poshistory_graph.pdf)|\\n|93|+2|BatteredAggie19|2|-|0.04|#93|2|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|rahuldottech|[graph](http://intotheskies.com/edef/stats/2019-05-30/BatteredAggie19_poshistory_graph.pdf)|\\n|94|+2|This_Explains_It_All|2|-|0.04|#94|2|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|_Dia_|[graph](http://intotheskies.com/edef/stats/2019-05-30/This_Explains_It_All_poshistory_graph.pdf)|\\n|95|+3|OhAces|3|-|0.04|#95|3|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|tlenze|[graph](http://intotheskies.com/edef/stats/2019-05-30/OhAces_poshistory_graph.pdf)|\\n|96|+3|LMY723|3|-|0.04|#96|3|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Gooberflagm2|[graph](http://intotheskies.com/edef/stats/2019-05-30/LMY723_poshistory_graph.pdf)|\\n|97|blue|UnbiasedSportsExpert|0|-|0.02|#97|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|bees1280|[graph](http://intotheskies.com/edef/stats/2019-05-30/UnbiasedSportsExpert_poshistory_graph.pdf)|\\n|98|blue|fuel126|0|-|0.02|#98|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|glorious_albus|[graph](http://intotheskies.com/edef/stats/2019-05-30/fuel126_poshistory_graph.pdf)|\\n|99|blue|schludy|0|-|0.02|#99|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Maxiscoolerthanyou|[graph](http://intotheskies.com/edef/stats/2019-05-30/schludy_poshistory_graph.pdf)|\\n|100|blue|DogfoodEnforcer|0|-|0.02|#100|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Lizzibabe|[graph](http://intotheskies.com/edef/stats/2019-05-30/DogfoodEnforcer_poshistory_graph.pdf)|\\n\\n\\n\\n\\n***\\n##Activity\\n(last 1 days)\\n\\n|**users active daily**|**posts**|**comments**|**avg posts / user / day**|**avg comments / user / day**|**random post of the month**|**activity graph**|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|51%|13|201|0.13|2.01|dev|[bar graph](http://intotheskies.com/edef/stats/2019-05-30/memberactivity_bar.pdf)|\\n\\n\\n\\n\\n***\\n##Our Favorite Subs\\n(last 1 days)\\n\\n|**by comment count**|**by user count**|\\n|:-:|:-:|\\n|d|d|\\n|e|e|\\n|v|v|\\n\\n\\n\\n\\n***\\n##Fallen Heroes\\n(5 longest surviving of top 20 kicked)\\n\\n|**hero**|**age at death**|\\n|:-:|:-:|\\n|RaggedFountain5|1.91|\\n|2068857539|1.91|\\n|Undoer|1.47|\\n|GeckoEidechse|1.11|\\n|OldManPhill|1.09|\\n\\n\\n\\n\\n***\\n##Recently Departed\\n(5 highest ranked of last 1 days)\\n\\n|**user**|**#**|**age at death**|**departure**|\\n|:-:|:-:|:-:|:-:|\\n|LyndyDM|54|0.78|2019-05-10|\\n|Fredstien850|77|0.15|2019-05-10|\\n|n00f|81|0.1|2019-05-10|\\n|576875|88|0.06|2019-05-24|\\n|schnapster31|90|0.0|2019-05-17|\\n\\n\\n\\n\\n***\\n##[Siblings](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)\\n(largest cookie group)\\n\\n|**cookie day**|**user**|\\n|:-:|:-:|\\n|2018-1-12|n3gd0|\\n|2018-1-12|tecrogue|\\n|2018-1-12|Rougefarie|\\n|2018-7-13|misterpyrrhuloxia|\\n|2018-7-13|Sickened_but_curious|\\n|2018-7-13|fighterace00|\\n|2018-7-20|Dystopian_Dreamer|\\n|2018-7-20|Willowx|\\n|2018-7-20|p5yk0t1km1r4ge|\\n|2018-12-1|TastyTacoN1nja|\\n|2018-12-1|doncicismydaddy|\\n|2018-12-1|karmatic89|\\n\\n\\n\\n\\n***\\n##Longest Neighbors\\n(top 2)\\n\\n|**botruns together**|**users**|\\n|:-:|:-:|\\n|108|boomheadshot7 and hornplayerKC|\\n|108|LukeWarmCage and boomheadshot7|\\n\\n\\n\\n\\n***\\nKicked users with similar usernames:\\n\\n d, e, v, \\n\\n***\\n\\n*I am not a bot, this post was performed manually by u/fighterace00\", \"author_fullname\": \"t2_j01kt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"table test2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv5tfz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559774614.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559327046.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EStats Report\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll activity was compiled from the last 1 days of data\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EUpcoming Cookie Days\\u003C/h2\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ecookie day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEngvar\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2017-6-26\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebioszombie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2017-7-3\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrentIsAbel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-6\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"/r/edefined\\\"\\u003Er/edefined\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Emean age\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Emedian age\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers kicked\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers w/o siblings\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ekicked per week\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ekicked user of the month\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eposition history graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ekick history graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2328\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ejiggs_\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.pdf\\\"\\u003E# graph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/poshistory_all_graph.pdf\\\"\\u003Ekick graph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.png\\\"\\u003EUsers\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E+/-\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u0026#39;s moved\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u0026#39;s / botrun\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eage\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E# by add day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebiggest jump\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebotruns survived\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebotruns moved\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Esiblings\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebuddy of the month\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E# history graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECaptainPedge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E117\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EVic_the_Dick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/CaptainPedge_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELukeWarmCage\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E112\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eticktockalock\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/LukeWarmCage_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eboomheadshot7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E111\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrentIsAbel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/boomheadshot7_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EhornplayerKC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E111\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edoncicismydaddy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/hornplayerKC_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKinighos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.73\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E110\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAnd_So_It_Goess\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Kinighos_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELizzibabe\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E110\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDogfoodEnforcer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Lizzibabe_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERavenwald\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.03\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E109\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emoreawkwardthenyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Ravenwald_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eemrickgj\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efartfacepooper\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/emrickgj_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echoontang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E105\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHippo_Singularity\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/choontang_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPM-YOUR-PMS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.08\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E104\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPhaethonas\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/PM-YOUR-PMS_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEngvar\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EError404NoUserFound\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Engvar_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebioszombie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1wrx2subarus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/bioszombie_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edraftstone\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etiffanydisasterxoxo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/draftstone_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ehitch21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEarlNeonCog\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/hitch21_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebooziwan\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKusmariini\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/booziwan_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMinagiV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EFerniWrites\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/MinagiV_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eeliporter877\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDaOrkiestSalamander\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/eliporter877_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAnd_So_It_Goess\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKinighos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/And_So_It_Goess_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJorgeAmVF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.06\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAcePhoenixGamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/JorgeAmVF_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eopticalshadow\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E103\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGreatDane666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/opticalshadow_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emoreawkwardthenyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERavenwald\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/moreawkwardthenyou_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1wrx2subarus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebioszombie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/1wrx2subarus_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPhaethonas\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPM-YOUR-PMS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Phaethonas_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ExTMT\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.01\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECowbeller\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/xTMT_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emedes24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheFern33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/medes24_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efartfacepooper\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eemrickgj\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/fartfacepooper_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EYourAmishNeighbor\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHenchman29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/YourAmishNeighbor_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESJC-Caron\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edishonorable\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/SJC-Caron_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECNNsPrimarySource\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En3gd0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/CNNsPrimarySource_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheFern33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emedes24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/TheFern33_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En3gd0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECNNsPrimarySource\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/n3gd0_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etecrogue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efighterace00\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/tecrogue_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERougefarie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGotZeroFucks2Give\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Rougefarie_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEurotriangle\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eesoper1976\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Eurotriangle_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebiffpower3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ethe_dank_666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/biffpower3_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMrNorc\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ep5yk0t1km1r4ge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/MrNorc_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHippo_Singularity\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echoontang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Hippo_Singularity_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EVic_the_Dick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.08\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECaptainPedge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Vic_the_Dick_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ethe_dank_666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebiffpower3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/the_dank_666_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eglorious_albus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.07\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efuel126\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/glorious_albus_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELorddragonfang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekurtn0tk1rk\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Lorddragonfang_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESicarius_Tacet\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echaosdemonhu\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Sicarius_Tacet_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxiscoolerthanyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.03\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eschludy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Maxiscoolerthanyou_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKusmariini\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.07\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.01\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebooziwan\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Kusmariini_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrentIsAbel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eboomheadshot7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/BrentIsAbel_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emisterpyrrhuloxia\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETastyTacoN1nja\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/misterpyrrhuloxia_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESickened_but_curious\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWillowx\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Sickened_but_curious_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efighterace00\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etecrogue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/fighterace00_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDystopian_Dreamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EClogsInBronteland\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Dystopian_Dreamer_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWillowx\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESickened_but_curious\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Willowx_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ep5yk0t1km1r4ge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMrNorc\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/p5yk0t1km1r4ge_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EClogsInBronteland\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDystopian_Dreamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/ClogsInBronteland_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHenchman29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EYourAmishNeighbor\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Henchman29_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eyoctometric\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E99\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxNobody\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/yoctometric_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Esvenguillotien\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAna_S_Gram\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/svenguillotien_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebaildodger\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESeven65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/baildodger_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA_lot_of_arachnids\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheradead\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/A_lot_of_arachnids_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEarlNeonCog\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ehitch21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/EarlNeonCog_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emadbubers\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETigernos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/madbubers_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUpper_Canada_Pango\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EsolarSpring\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Upper_Canada_Pango_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eticktockalock\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELukeWarmCage\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/ticktockalock_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etopaz_b\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eallyourbase51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/topaz_b_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cem\\u003EDia\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EThis_Explains_It_All\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/_Dia__poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxNobody\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eyoctometric\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/MaxNobody_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekurtn0tk1rk\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELorddragonfang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/kurtn0tk1rk_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAna_S_Gram\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.06\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E102\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Esvenguillotien\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Ana_S_Gram_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETastyTacoN1nja\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emisterpyrrhuloxia\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/TastyTacoN1nja_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edoncicismydaddy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EhornplayerKC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/doncicismydaddy_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edishonorable\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESJC-Caron\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/dishonorable_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etiffanydisasterxoxo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.08\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edraftstone\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/tiffanydisasterxoxo_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EsolarSpring\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUpper_Canada_Pango\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/solarSpring_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Erahuldottech\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBatteredAggie19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/rahuldottech_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E73\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETigernos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emadbubers\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Tigernos_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echaosdemonhu\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESicarius_Tacet\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/chaosdemonhu_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etlenze\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#79\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EOhAces\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/tlenze_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAcePhoenixGamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJorgeAmVF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/AcePhoenixGamer_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekarmatic89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#73\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EF0000r\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/karmatic89_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EF0000r\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekarmatic89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/F0000r_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E79\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESeven65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebaildodger\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Seven65_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EFerniWrites\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMinagiV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/FerniWrites_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EError404NoUserFound\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEngvar\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Error404NoUserFound_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eesoper1976\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEurotriangle\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/esoper1976_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDaOrkiestSalamander\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eeliporter877\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/DaOrkiestSalamander_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGreatDane666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eopticalshadow\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/GreatDane666_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheradead\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA_lot_of_arachnids\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Theradead_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E86\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELaquaciousMute\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#86\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWhiteStripesWS6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/LaquaciousMute_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eallyourbase51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etopaz_b\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/allyourbase51_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECowbeller\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.07\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ExTMT\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Cowbeller_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWhiteStripesWS6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELaquaciousMute\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/WhiteStripesWS6_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGotZeroFucks2Give\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERougefarie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/GotZeroFucks2Give_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebees1280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUnbiasedSportsExpert\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/bees1280_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGooberflagm2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELMY723\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Gooberflagm2_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBatteredAggie19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Erahuldottech\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/BatteredAggie19_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EThis_Explains_It_All\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cem\\u003EDia\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/This_Explains_It_All_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EOhAces\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etlenze\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/OhAces_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELMY723\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGooberflagm2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/LMY723_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUnbiasedSportsExpert\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebees1280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/UnbiasedSportsExpert_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efuel126\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eglorious_albus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/fuel126_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E99\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eschludy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#99\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxiscoolerthanyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/schludy_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDogfoodEnforcer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELizzibabe\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/DogfoodEnforcer_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EActivity\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(last 1 days)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers active daily\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eposts\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ecomments\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eavg posts / user / day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eavg comments / user / day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Erandom post of the month\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eactivity graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E201\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.01\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edev\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/memberactivity_bar.pdf\\\"\\u003Ebar graph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EOur Favorite Subs\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(last 1 days)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eby comment count\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eby user count\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ed\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ed\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ee\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ee\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ev\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ev\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EFallen Heroes\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(5 longest surviving of top 20 kicked)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ehero\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eage at death\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERaggedFountain5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2068857539\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUndoer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.47\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGeckoEidechse\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.11\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EOldManPhill\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003ERecently Departed\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(5 highest ranked of last 1 days)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eage at death\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Edeparture\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELyndyDM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EFredstien850\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En00f\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E576875\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.06\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-24\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eschnapster31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-17\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003ESiblings\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(largest cookie group)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ecookie day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-1-12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En3gd0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-1-12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etecrogue\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-1-12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERougefarie\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emisterpyrrhuloxia\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESickened_but_curious\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efighterace00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDystopian_Dreamer\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWillowx\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ep5yk0t1km1r4ge\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-12-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETastyTacoN1nja\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-12-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edoncicismydaddy\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-12-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekarmatic89\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003ELongest Neighbors\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(top 2)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebotruns together\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eboomheadshot7 and hornplayerKC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELukeWarmCage and boomheadshot7\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EKicked users with similar usernames:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ed, e, v, \\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E*I am not a bot, this post was performed manually by \\u003Ca href=\\\"/u/fighterace00\\\"\\u003Eu/fighterace00\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?auto=webp\\u0026s=cc205237bea6714c06337b455f14f778fb6d485c\", \"width\": 645, \"height\": 468}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4ad85fc0456064b525d9efedefa663385278e26b\", \"width\": 108, \"height\": 78}, {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5fa2e2e5127faa889b483cc9eb1906571a111978\", \"width\": 216, \"height\": 156}, {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=91d8338561c77d952059cba248c255c4dd3db9ab\", \"width\": 320, \"height\": 232}, {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b21ccfef6e9f53b61906d7d041d77650b9c84dab\", \"width\": 640, \"height\": 464}], \"variants\": {}, \"id\": \"syJpnjA2y2EOuPguxrqZbt8mYL90TIX_CcVnha3-Yxs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5tfz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fighterace00\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv5tfz/table_test2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv5tfz/table_test2/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559298246.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"1.\\\\*\\\\***Strategy name**: Putting this dog on Ice\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n2. \\\\*\\\\***Boss**: Ugallu D350\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n3. \\\\*\\\\***Describe your Strategy**:\\\\*\\\\* \\\\`Ice Team\\\\` / \\\\`Off-Realm\\\\`\\n\\n\\u0026#x200B;\\n\\n4. \\\\*\\\\*\\\\***Insight!**:\\\\*\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\* Laguna provides Imperils and Chain. W-MCH + LMR sets Sora up for the beatdown. 6 stack Imperil + Snow USB2 = 19999 SSS + 10kish Blitzes, capped Icy Offerings and Icicle Rushes, even with 3 off realmers.\\n\\n\\u0026#x200B;\\n\\n\\\\* Sora does Sora things\\n\\n\\u0026#x200B;\\n\\n\\\\* Elarra dances all of his buffs away and USBs to counter poison for Snow's BSB.\\n\\n\\u0026#x200B;\\n\\n\\\\* Snow USB2s then BSBs for Last Stand. Could've used USB1 for Radiant shield in hindsight since Regenga helped mitigate deaths. Icicle Rush in between for chain.\\n\\n\\u0026#x200B;\\n\\n\\\\* Vanille Protectgas then BSBs. LMR1 buffs her heals while LMR2 debuffs doge.\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***Holy Trinity casts**:\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\* **Wal**l: 1\\n\\n\\u0026#x200B;\\n\\n\\\\* **Medica**: Lots\\n\\n\\u0026#x200B;\\n\\n\\\\* **Hastega**: 1\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***S/L count / Medals lost**: 0\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***Time**: 29.32\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n|Hero, dive|Ability 1||Ability 2|RM+LMR|SB(-)|\\n\\n|:-|:-|:-|:-|:-|\\n\\n|Snow, 5, 100|Banishing Strike R3|Icicle Rush R4|DMT, LMR1, LM1|USB2(1), BSB(1)|\\n\\n|Laguna, 5, 103|Icy Offering R3|Frost Offering R4|Ace Striker, LM2, LMR|Chain(1), SSB(1)|\\n\\n|Sora, 5, 110|Snowspell Strike R4|Snowspell Strike R3|Orphaned Cub, LMR, LM2(Ice)|AASB(1), AOSB(1)|\\n\\n|Vanille, 4, 10|Curaja R4|Protectga R3|MM, LMR1, LMR2|BSB(2)|\\n\\n|Elarra, 5, 120|Multi Break R2|Enfeebling Jitterbug R4|Battleforged, LM2, LM1|USB(3+)|\\n\\n\\u0026#x200B;\\n\\n|main|sub1|sub2|sub3|sub4|\\n|:-|:-|:-|:-|:-|\\n|Mateus|Famfrit|Manticore|Madeen|Madeen|\\n|Damp Air10+Def15|BWard8+HPBoon8|Ice+15x2|ATK20x2|BWard8+SWard8|\\n\\n\\\\*\\\\*\\\\*\", \"author_fullname\": \"t2_xltvv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv4dok\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559287428.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559315081.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E1.**\\u003Cstrong\\u003EStrategy name\\u003C/strong\\u003E: Putting this dog on Ice**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E**\\u003Cstrong\\u003EBoss\\u003C/strong\\u003E: Ugallu D350**\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E**\\u003Cstrong\\u003EDescribe your Strategy\\u003C/strong\\u003E:** `Ice Team` / `Off-Realm`\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E***\\u003Cstrong\\u003EInsight!\\u003C/strong\\u003E:***\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Laguna provides Imperils and Chain. W-MCH + LMR sets Sora up for the beatdown. 6 stack Imperil + Snow USB2 = 19999 SSS + 10kish Blitzes, capped Icy Offerings and Icicle Rushes, even with 3 off realmers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Sora does Sora things\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Elarra dances all of his buffs away and USBs to counter poison for Snow\\u0026#39;s BSB.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Snow USB2s then BSBs for Last Stand. Could\\u0026#39;ve used USB1 for Radiant shield in hindsight since Regenga helped mitigate deaths. Icicle Rush in between for chain.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Vanille Protectgas then BSBs. LMR1 buffs her heals while LMR2 debuffs doge.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003EHoly Trinity casts\\u003C/strong\\u003E:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EWal\\u003C/strong\\u003El: 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EMedica\\u003C/strong\\u003E: Lots\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EHastega\\u003C/strong\\u003E: 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003ES/L count / Medals lost\\u003C/strong\\u003E: 0**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003ETime\\u003C/strong\\u003E: 29.32**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Hero, dive|Ability 1||Ability 2|RM+LMR|SB(-)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|:-|:-|:-|:-|:-|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Snow, 5, 100|Banishing Strike R3|Icicle Rush R4|DMT, LMR1, LM1|USB2(1), BSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Laguna, 5, 103|Icy Offering R3|Frost Offering R4|Ace Striker, LM2, LMR|Chain(1), SSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Sora, 5, 110|Snowspell Strike R4|Snowspell Strike R3|Orphaned Cub, LMR, LM2(Ice)|AASB(1), AOSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Vanille, 4, 10|Curaja R4|Protectga R3|MM, LMR1, LMR2|BSB(2)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Elarra, 5, 120|Multi Break R2|Enfeebling Jitterbug R4|Battleforged, LM2, LM1|USB(3+)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Emain\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub1\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub2\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub3\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub4\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMateus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFamfrit\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EManticore\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMadeen\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMadeen\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDamp Air10+Def15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBWard8+HPBoon8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EIce+15x2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EATK20x2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBWard8+SWard8\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv4dok\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tenryou\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv4dok/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv4dok/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559286281.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test2\\n\\n\\u0026#x200B;\\n\\n[test2](https://i.redd.it/gbjaof51mh131.jpg)\", \"author_fullname\": \"t2_mjiuof2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test1\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 92, \"hide_score\": false, \"media_metadata\": {\"gbjaof51mh131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1848, \"x\": 2784, \"u\": \"https://i.redd.it/gbjaof51mh131.jpg\"}, \"m\": \"image/jpg\", \"id\": \"gbjaof51mh131\"}}, \"name\": \"t3_bv3wh8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/G-x_-fkvlWPBquR_7ko3ewYcPtnUtxr0oHTB-1c3rZs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559311347.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/gbjaof51mh131.jpg\\\"\\u003Etest2\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv3wh8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hanzeedent69\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv3wh8/test1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv3wh8/test1/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559282547.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[SCP-3790](http://www.scp-wiki.net/scp-3790) - Department of Abnormalities\\n\\nAUTHOR: Croquembouche, djkaktus\\n\\n***\\n\\n3790 is a fascinating scip, ostensibly a minimalistic Series 1 entry wrapped in the modernity of a Series 4 one, ending in an absolute masterclass of an atmospheric piece that tells a story of hidden secrets, but never truly gives us its conclusion.\\n\\nAnyway, let's get on with this.\\n\\n***\\n**PART 1 - OVERVIEW**\\n\\n\\u003EObject Class: Safe\\n\\nThis tell us that this SCP is easy to contain, just put a lock on it and leave it alone. *wink wink*\\n\\u003ESpecial Containment Procedures: The door into the stairwell leading to SCP-3790 is to be padlocked at all times, and a single guard is to be posted nearby to ensure no individuals enter SCP-3790.\\n\\n\\u003EBy order of the Overseer Council, entry into SCP-3790 is forbidden.\\n\\nForbidden entry, huh? That just makes all the more enticing, you know.\\n\\u003EDescription: SCP-3790 is a structure located beneath the abandoned Port Superior Canning Company warehouse in London, United Kingdom. The only access to this space is down a narrow stairwell that ends in a short black door. The door is free of identifying markings save for a small metal placard just above the door handle that reads \\\"SCP Foundation Department of Abnormalities\\\".\\n\\nSCP Foundation Department of Abnormalities? Implying that it\\u2019s a branch that specifically deal with abnormalities alone? Isn\\u2019t that what the whole of the SCP Foundation\\u2019s job? Hmm\\u2026\\n\\nWell, there are two distinct possibilities I can think of:\\n\\n1. It\\u2019s an outdated relic of a younger, less experienced Foundation whose duty didn\\u2019t concern anomalies only, and has since been lost to time, or\\n\\n2. It\\u2019s a hidden department operation in secret, not unlike the Antimemetics Department, which deals with things so far outside the norm that not even the main Foundation can deal with.\\n\\nEither or. Perhaps both.\\n\\nThe rest of the file has been locked away by the Overseer Council. Being locked away seems to be a recurring theme, among other things. Let\\u2019s see what the Council has to hide.\\n\\n\\u003E While there is evidence of prior human activity within SCP-3790, the structure appears to have been abandoned for a considerable amount of time.\\n\\n\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists. No information regarding the structure has been located.\\n\\nBeen abandoned, or sealed off and forgotten? More questions, but no answer.\\n\\n**PART 2 - THE RUNDOWN**\\n\\n*Disclaimer: From this point onwards, I may not be able to concretely point out any real connections, nor can I ensure the ones I do are correct. Proceed with skepticism.*\\n\\nLet\\u2019s start with **Level One**:\\n\\u003ERoom One\\n\\n\\n\\u003EPlacard Name: Vivaldi\\n\\n\\u003EDescription: Chamber is empty aside from a violin propped in the far corner of the room. The bow is broken on the ground in front of it.\\n\\nAppears to be Antonio Vivaldi\\u2019s violin. Mr. Vivaldi was a famous composer, but his compositions became outmoded later in life, Vivaldi eventually came into impoverishment and died in relative obscurity.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: No placard\\n\\n\\u003EDescription: Chamber is empty.\\n\\nCould be a nod to [SCP-3930](http://www.scp-wiki.net/scp-3930), the one that doesn\\u2019t exist and if you enter, you don\\u2019t exist either. (Might also be a reference to [SCP-1935](http://www.scp-wiki.net/scp-1935) \\u201cAn Empty Chamber, but that\\u2019s shaky at best.)\\n\\n**Level Two**:\\n\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: The Crying Boy\\n\\n\\u003EDescription: A canvas is set up in the room. A sheet is draped over it.\\n\\nThe Crying Boy is famed as a cursed painting usually found undamaged amidst the ruins of burned houses. Later, more scientific analysis revealed the explanation behind this mystery, and this myth fell out of vogue.\\n\\n**Level Three**:\\n\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: The Infinite Cold\\n\\n\\u003EDescription: The floor of the chamber is covered with a thin layer of water. The interior of the room seems to be considerably larger than its exterior physical dimensions would allow.\\n\\nSeems to be a reference to [SCP-3799](http://www.scp-wiki.net/scp-3799), in which the event in question was basically retconned to no longer happen, the water implying that it melted. In another, more meta sense, it might refer to the ex-SCP-2318 \\u201cAwake in the Infinite Cold\\u201d, which the author djkaktus himself deleted out of existence.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: World Without Man\\n\\n\\u003EDescription: Chamber is empty.\\n\\n[SCP-804](http://www.scp-wiki.net/scp-804), the object that wants to delete all of humanity. The chamber being empty is interesting, though.\\n\\n**Level Four**:\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: The Morning Star\\n\\n\\u003EDescription: A rusted sword hangs on a rack in the back of the room. The door to the chamber feels warm.\\n\\nAppears to be Lucifer\\u2019s blazing sword from djkaktus\\u2019s Proposal III. Considering the story behind it, the O5 Council and the Administrator, this being a secret that they want to lock away probably belongs here.\\n\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: Wormwood\\n\\n\\u003EDescription: Viewport is obscured.\\n\\n[SCP-4008](http://www.scp-wiki.net/scp-4008) \\u201cWormwood\\u201d \\u2013 Seeds that makes people forget.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: Harmonia's Necklace\\n\\n\\u003EDescription: A simple golden necklace hangs on a post in the back of the room, which is lit by a single tall candle. The chamber does not appear to have a floor.\\n\\nThe mythical Necklace of Harmonia that grants woman eternal youth. Not sure how it ended up here.\\n\\n\\u003ERoom Four\\n\\n\\u003EPlacard Name: No placard\\n\\n\\u003EDescription: Chamber is unlit. Individuals who look into this room feel a lingering sense of dread afterward.\\n\\n[SCP-2740](http://www.scp-wiki.net/scp-2740). The unlit attic that you can\\u2019t never truly seems to grasp, and has a habit of retconning people out of existence.\\n\\n**Level Five**:\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: Tool marks indicate that placard has been pried off. The word \\\"hello\\\" is scratched into the metal where the placard should be.\\n\\n\\u003EDescription: Sliding panel is welded shut.\\n\\nSounds like [SCP-3935](http://www.scp-wiki.net/scp-3935). There\\u2019s already an excellent declass of it here, but I\\u2019ll quote this: \\u201cthe spiral of dark secrets *only goes deeper and deeper, hidden underground, buried to be forgotten*, with all the suffering still present, like the endless schools going deeper and deeper.\\\"\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: Channel 55\\n\\n\\u003EDescription: A small, CRT television sits in the center of the room. Something is playing on the screen, but a dark cloth has been draped over the top of it.\\n\\nMight be a reference to SCP-055 and SCP-2998? [SCP-2998](http://www.scp-wiki.net/scp-2998) is about an anomalous (TV) signal that contained alien which eventually took over the world. To reset it, SCP-055 and SCP-579 were used (as per Roget's Proposal) to reverse everything, and all knowledge of SCP-2998\\u2019s full extent were purged to prevent another repeat.\\n\\n**Level Six**:\\n\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: Mr. Silence\\n\\n\\u003EDescription: A tall, black, wooden box rests against the back wall. It is bound in chains and locks. A bright purple \\\"W\\\" is emblazoned on its front in gold trim.\\n\\n[A tale.] (http://www.scp-wiki.net/to-never-again-see-the-light-of-day)\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: \\u00d6tzi\\n\\n\\u003EDescription: A layer of ice covers the viewport and obscures visibility. A dark shape can be seen in the middle of the room, although no details can be distinguished.\\n\\nCould be referring to [SCP-2521](http://www.scp-wiki.net/scp-2521), if only because the description matches its image. An entity whose information cannot be spoken, and those who do are gone from this world.\\n\\n\\u003ERoom Four\\n\\n\\u003EPlacard Name: Apollyon's Crown\\n\\n\\u003EDescription: A silver lockbox rests on a table in the middle of the room. Notably, the exterior of the door is covered in scratch marks, as if by something trying to get into the chamber.\\n\\n[SCP-2317](http://www.scp-wiki.net/scp-2998). All its containment procedures boil down to 'stick their had in the sand, and hope for the best'. The O5 council made sure to keep virtually everyone in the dark about this thing, and the true SCP-2317 file remain secret to everyone but the topmost level.\\nCould also be referring to Tufto's Proposal, in which the foundation decides that the Scarlet King is no longer a threat, and ignore the underlying problem.\\n\\nAnd finally, **Level Seve**-\\n\\n\\u003E Although the opening to the seventh level is visible through the grated floor of the elevator, the lift mechanism appears to have been modified and can no longer access that floor.\\n\\nWell, ain\\u2019t that ominous.\\n\\n**PART 3 - HOW ABNORMAL**\\n\\nAs a personal observation, the chambers contain things that seems to share a general idea: They are that which we have forgotten or ignored, be it willfully, because we no longer find it fascinating, because we were made to forget, or because it no longer exist. Strangely enough, the Department of Abnormalities itself fits this criteria as well, considering:\\n\\n\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists.\\n\\nReading through SCP-3790, signs seems to point toward this being a coverup: No exploration log, no attempt to gain access to Level Seven, not even a cursory attempt to study whatever's being contained in here. \\n\\nFor something so blatantly called \\\"SCP Foundation Department of Abnormalities\\\", the Council sure seems eager to do the bare minimum of documenting it. Heck, I'm surprised thy even let us read this file at al-\\n\\n...Huh.\\n\\n**PART 4 - SECRETKEEPING**\\n\\nWhy do they let us read this file? Why not just restrict the whole thing to Clearance Level 5? Why go through the trouble of locking the rest of it but let someone know there exists an \\\"SCP Foundation Department of Abnormalities\\\" in the first place?\\n\\n*Because it's a hook.*\\n\\nIf the council deemed this thing dangerous this thing dangerous enough to lock away knowledge of its content, telling us its title seems almost counterproductive, and this file doesn't seem to classified either. In fact...\\n\\n\\u003ELock Overridden\\n\\nWe overrode the lock to gain access to the meat of 3790. Our curiosity got the better of us, and now we're exploring this abnormality of an article.\\n\\nRemember when I said \\\"More questions, but no answer.\\\"? This is what SCP-3790 is about. It's a place where secrets are put to rest, so far down that virtually no one knows what it is anymore. And that makes us ask questions, draws connections, grasping for answers that was made to never supposed to be discovered.\\n\\nUltimately, what this thing contains doesn't matter too much in the grand scheme of things. They're there as a bait to keep us digging for more, and by god, we *took* it.\\n\\n**CONCLUSION**\\n\\nI can not praise Croquembouche and djkaktus enough for writing an absolute masterclass of an article in such a way that draws everyone in, yet leaving a hole in the shape of closure, making the curious minds, both in-universe and out-, clamoring for answers.\\n\\nWhat is the Department of Abnormalities, and what resides on Level Seven? Only time can tell.\\n\\nAnd when that time comes, perhaps we will finally learn there\\u2019s a price to be paid for unearthing secrets that should never see the light of day again.\", \"author_fullname\": \"t2_2j4j6rg7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test dc\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv2mv5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559302648.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-3790\\\"\\u003ESCP-3790\\u003C/a\\u003E - Department of Abnormalities\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAUTHOR: Croquembouche, djkaktus\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E3790 is a fascinating scip, ostensibly a minimalistic Series 1 entry wrapped in the modernity of a Series 4 one, ending in an absolute masterclass of an atmospheric piece that tells a story of hidden secrets, but never truly gives us its conclusion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway, let\\u0026#39;s get on with this.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 1 - OVERVIEW\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EObject Class: Safe\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis tell us that this SCP is easy to contain, just put a lock on it and leave it alone. \\u003Cem\\u003Ewink wink\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESpecial Containment Procedures: The door into the stairwell leading to SCP-3790 is to be padlocked at all times, and a single guard is to be posted nearby to ensure no individuals enter SCP-3790.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy order of the Overseer Council, entry into SCP-3790 is forbidden.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EForbidden entry, huh? That just makes all the more enticing, you know.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDescription: SCP-3790 is a structure located beneath the abandoned Port Superior Canning Company warehouse in London, United Kingdom. The only access to this space is down a narrow stairwell that ends in a short black door. The door is free of identifying markings save for a small metal placard just above the door handle that reads \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESCP Foundation Department of Abnormalities? Implying that it\\u2019s a branch that specifically deal with abnormalities alone? Isn\\u2019t that what the whole of the SCP Foundation\\u2019s job? Hmm\\u2026\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, there are two distinct possibilities I can think of:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt\\u2019s an outdated relic of a younger, less experienced Foundation whose duty didn\\u2019t concern anomalies only, and has since been lost to time, or\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt\\u2019s a hidden department operation in secret, not unlike the Antimemetics Department, which deals with things so far outside the norm that not even the main Foundation can deal with.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EEither or. Perhaps both.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe rest of the file has been locked away by the Overseer Council. Being locked away seems to be a recurring theme, among other things. Let\\u2019s see what the Council has to hide.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWhile there is evidence of prior human activity within SCP-3790, the structure appears to have been abandoned for a considerable amount of time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists. No information regarding the structure has been located.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EBeen abandoned, or sealed off and forgotten? More questions, but no answer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 2 - THE RUNDOWN\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EDisclaimer: From this point onwards, I may not be able to concretely point out any real connections, nor can I ensure the ones I do are correct. Proceed with skepticism.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet\\u2019s start with \\u003Cstrong\\u003ELevel One\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Vivaldi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty aside from a violin propped in the far corner of the room. The bow is broken on the ground in front of it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAppears to be Antonio Vivaldi\\u2019s violin. Mr. Vivaldi was a famous composer, but his compositions became outmoded later in life, Vivaldi eventually came into impoverishment and died in relative obscurity.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: No placard\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECould be a nod to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3930\\\"\\u003ESCP-3930\\u003C/a\\u003E, the one that doesn\\u2019t exist and if you enter, you don\\u2019t exist either. (Might also be a reference to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-1935\\\"\\u003ESCP-1935\\u003C/a\\u003E \\u201cAn Empty Chamber, but that\\u2019s shaky at best.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Two\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Crying Boy\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A canvas is set up in the room. A sheet is draped over it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Crying Boy is famed as a cursed painting usually found undamaged amidst the ruins of burned houses. Later, more scientific analysis revealed the explanation behind this mystery, and this myth fell out of vogue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Three\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Infinite Cold\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: The floor of the chamber is covered with a thin layer of water. The interior of the room seems to be considerably larger than its exterior physical dimensions would allow.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESeems to be a reference to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3799\\\"\\u003ESCP-3799\\u003C/a\\u003E, in which the event in question was basically retconned to no longer happen, the water implying that it melted. In another, more meta sense, it might refer to the ex-SCP-2318 \\u201cAwake in the Infinite Cold\\u201d, which the author djkaktus himself deleted out of existence.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: World Without Man\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-804\\\"\\u003ESCP-804\\u003C/a\\u003E, the object that wants to delete all of humanity. The chamber being empty is interesting, though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Four\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Morning Star\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A rusted sword hangs on a rack in the back of the room. The door to the chamber feels warm.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAppears to be Lucifer\\u2019s blazing sword from djkaktus\\u2019s Proposal III. Considering the story behind it, the O5 Council and the Administrator, this being a secret that they want to lock away probably belongs here.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Wormwood\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Viewport is obscured.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-4008\\\"\\u003ESCP-4008\\u003C/a\\u003E \\u201cWormwood\\u201d \\u2013 Seeds that makes people forget.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Harmonia\\u0026#39;s Necklace\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A simple golden necklace hangs on a post in the back of the room, which is lit by a single tall candle. The chamber does not appear to have a floor.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe mythical Necklace of Harmonia that grants woman eternal youth. Not sure how it ended up here.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Four\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: No placard\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is unlit. Individuals who look into this room feel a lingering sense of dread afterward.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-2740\\\"\\u003ESCP-2740\\u003C/a\\u003E. The unlit attic that you can\\u2019t never truly seems to grasp, and has a habit of retconning people out of existence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Five\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Tool marks indicate that placard has been pried off. The word \\u0026quot;hello\\u0026quot; is scratched into the metal where the placard should be.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Sliding panel is welded shut.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESounds like \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3935\\\"\\u003ESCP-3935\\u003C/a\\u003E. There\\u2019s already an excellent declass of it here, but I\\u2019ll quote this: \\u201cthe spiral of dark secrets \\u003Cem\\u003Eonly goes deeper and deeper, hidden underground, buried to be forgotten\\u003C/em\\u003E, with all the suffering still present, like the endless schools going deeper and deeper.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Channel 55\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A small, CRT television sits in the center of the room. Something is playing on the screen, but a dark cloth has been draped over the top of it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMight be a reference to SCP-055 and SCP-2998? \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2998\\\"\\u003ESCP-2998\\u003C/a\\u003E is about an anomalous (TV) signal that contained alien which eventually took over the world. To reset it, SCP-055 and SCP-579 were used (as per Roget\\u0026#39;s Proposal) to reverse everything, and all knowledge of SCP-2998\\u2019s full extent were purged to prevent another repeat.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Six\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Mr. Silence\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A tall, black, wooden box rests against the back wall. It is bound in chains and locks. A bright purple \\u0026quot;W\\u0026quot; is emblazoned on its front in gold trim.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/to-never-again-see-the-light-of-day\\\"\\u003EA tale.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: \\u00d6tzi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A layer of ice covers the viewport and obscures visibility. A dark shape can be seen in the middle of the room, although no details can be distinguished.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECould be referring to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2521\\\"\\u003ESCP-2521\\u003C/a\\u003E, if only because the description matches its image. An entity whose information cannot be spoken, and those who do are gone from this world.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Four\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Apollyon\\u0026#39;s Crown\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A silver lockbox rests on a table in the middle of the room. Notably, the exterior of the door is covered in scratch marks, as if by something trying to get into the chamber.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-2998\\\"\\u003ESCP-2317\\u003C/a\\u003E. All its containment procedures boil down to \\u0026#39;stick their had in the sand, and hope for the best\\u0026#39;. The O5 council made sure to keep virtually everyone in the dark about this thing, and the true SCP-2317 file remain secret to everyone but the topmost level.\\nCould also be referring to Tufto\\u0026#39;s Proposal, in which the foundation decides that the Scarlet King is no longer a threat, and ignore the underlying problem.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd finally, \\u003Cstrong\\u003ELevel Seve\\u003C/strong\\u003E-\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAlthough the opening to the seventh level is visible through the grated floor of the elevator, the lift mechanism appears to have been modified and can no longer access that floor.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell, ain\\u2019t that ominous.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 3 - HOW ABNORMAL\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a personal observation, the chambers contain things that seems to share a general idea: They are that which we have forgotten or ignored, be it willfully, because we no longer find it fascinating, because we were made to forget, or because it no longer exist. Strangely enough, the Department of Abnormalities itself fits this criteria as well, considering:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EReading through SCP-3790, signs seems to point toward this being a coverup: No exploration log, no attempt to gain access to Level Seven, not even a cursory attempt to study whatever\\u0026#39;s being contained in here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor something so blatantly called \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot;, the Council sure seems eager to do the bare minimum of documenting it. Heck, I\\u0026#39;m surprised thy even let us read this file at al-\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...Huh.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 4 - SECRETKEEPING\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy do they let us read this file? Why not just restrict the whole thing to Clearance Level 5? Why go through the trouble of locking the rest of it but let someone know there exists an \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot; in the first place?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EBecause it\\u0026#39;s a hook.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the council deemed this thing dangerous this thing dangerous enough to lock away knowledge of its content, telling us its title seems almost counterproductive, and this file doesn\\u0026#39;t seem to classified either. In fact...\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ELock Overridden\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWe overrode the lock to gain access to the meat of 3790. Our curiosity got the better of us, and now we\\u0026#39;re exploring this abnormality of an article.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERemember when I said \\u0026quot;More questions, but no answer.\\u0026quot;? This is what SCP-3790 is about. It\\u0026#39;s a place where secrets are put to rest, so far down that virtually no one knows what it is anymore. And that makes us ask questions, draws connections, grasping for answers that was made to never supposed to be discovered.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUltimately, what this thing contains doesn\\u0026#39;t matter too much in the grand scheme of things. They\\u0026#39;re there as a bait to keep us digging for more, and by god, we \\u003Cem\\u003Etook\\u003C/em\\u003E it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECONCLUSION\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can not praise Croquembouche and djkaktus enough for writing an absolute masterclass of an article in such a way that draws everyone in, yet leaving a hole in the shape of closure, making the curious minds, both in-universe and out-, clamoring for answers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is the Department of Abnormalities, and what resides on Level Seven? Only time can tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd when that time comes, perhaps we will finally learn there\\u2019s a price to be paid for unearthing secrets that should never see the light of day again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?auto=webp\\u0026s=c819c19d942b726d0a2ff50cb74acbfff1e08a06\", \"width\": 1880, \"height\": 1253}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c2e24f32402052f314732b2536e0cc47089dcee3\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fbcce917a4186d2c4b6e3d9a8e33c2bd7a3a738f\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=61c8f923e42459533533af8ca93d4df3ee37b5e4\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f7154363e4a980a8daf17a79782c71f42a65b417\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e813d5635e53ece285115c875dd756c0acc4318b\", \"width\": 960, \"height\": 639}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d29b4e3ea4db162608c93db1eaf9d11936fdc172\", \"width\": 1080, \"height\": 719}], \"variants\": {}, \"id\": \"Qjpf9RWeib9EvmI2MPm7-BmVBDzqrMOowRjqJjf6c4g\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv2mv5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SYwaves\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559273848.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#Captain Details \\nCaptain Name\\u0026nbsp; | Dr. Jannick Carter\\u0026nbsp; | \\u0026nbsp; \\n--|--|-- \\nCaptain Career\\u0026nbsp; | Science\\u0026nbsp; | \\u0026nbsp; \\nCaptain Faction\\u0026nbsp; | Federation\\u0026nbsp; | \\u0026nbsp; \\nCaptain Race\\u0026nbsp; | Human\\u0026nbsp; | \\u0026nbsp; \\nPrimary Specialization\\u0026nbsp; | Temporal\\u0026nbsp; | \\u0026nbsp; \\nSecondary Specialization\\u0026nbsp; | Strategist\\u0026nbsp; | \\u0026nbsp; \\n#Space Skill Tree \\nRank\\u0026nbsp; | Engineering\\u0026nbsp; | \\u0026nbsp; | Science\\u0026nbsp; | \\u0026nbsp; | Tactical\\u0026nbsp; | \\u0026nbsp; | \\n--|--|--|--|--|--|-- \\nLieutenant\\u0026nbsp; | Improved Hull Restoration\\u0026nbsp; | Improved Hull Capacity\\u0026nbsp; | Improved Shield Restoration\\u0026nbsp; | Improved Shield Capacity\\u0026nbsp; | Improved Energy Weapon Training\\u0026nbsp; | Advanced Projectile Weapon Training\\u0026nbsp; \\nLt. Commander\\u0026nbsp; | Electro-Plasma System Flow\\u0026nbsp; | Advanced Impulse Expertise\\u0026nbsp; | Improved Control Expertise\\u0026nbsp; | Improved Drain Expertise\\u0026nbsp; | Targeting Expertise\\u0026nbsp; | Defensive Maneuvering\\u0026nbsp; \\n\\u0026nbsp; | Full Impulse Energy Shunt\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nCommander\\u0026nbsp; | Hull Plating\\u0026nbsp; | \\u0026nbsp; | Shield Regeneration\\u0026nbsp; | Shield Hardness\\u0026nbsp; | Improved Weapon Amplification\\u0026nbsp; | Improved Weapon Specialization\\u0026nbsp; \\nCaptain\\u0026nbsp; | Defensive Subsystem Tuning\\u0026nbsp; | Offensive Subsystem Tuning\\u0026nbsp; | Advanced Exotic Particle Generator\\u0026nbsp; | Advanced Long Range Targeting Sensors\\u0026nbsp; | Improved Hull Penetration\\u0026nbsp; | Improved Shield Weakening\\u0026nbsp; \\nAdmiral\\u0026nbsp; | Warp Core Potential\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | Warp Core Efficiency\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n1 Points Left\\u0026nbsp; | 14\\u0026nbsp; | \\u0026nbsp; | 16\\u0026nbsp; | \\u0026nbsp; | 15\\u0026nbsp; | \\u0026nbsp; \\n \\n#Space Skill Unlocks \\nPurchases\\u0026nbsp; | Engineering\\u0026nbsp; | Science\\u0026nbsp; | Tactical\\u0026nbsp; \\n--|--|--|-- \\n2\\u0026nbsp; | Hazard Emitters III\\u0026nbsp; | Science Team III\\u0026nbsp; | Tachyon Beam III\\u0026nbsp; \\n5\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n7\\u0026nbsp; | Feedback Pulse III\\u0026nbsp; | Photonic Shockwave III\\u0026nbsp; | Jam Sensors III\\u0026nbsp; \\n10\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n12\\u0026nbsp; | Polarize Hull III\\u0026nbsp; | Gravity Well III\\u0026nbsp; | Tractor Beam III\\u0026nbsp; \\n15\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n#Ship Loadout: *Fleet Advanced Research Vessel (T6)* \\nSlot\\u0026nbsp; | Item\\u0026nbsp; | Notes\\u0026nbsp; \\n--|--|-- \\nFore Weapon 1\\u0026nbsp; | Advanced Piezo- Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nFore Weapon 2\\u0026nbsp; | Gravimetric Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nFore Weapon 3\\u0026nbsp; | Terran Task Force Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 1\\u0026nbsp; | Cutting Kinetic Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 2\\u0026nbsp; | Dyson Proton Turret Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 3\\u0026nbsp; | Chronometric Polaron Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nDeflector\\u0026nbsp; | [Counter-Command Deflector Array](http://sto.gamepedia.com/Counter-Command_Deflector_Array) Mk XII Very Rare\\u0026nbsp; | 2nd - Deteriorating Secondary Deflector Mk XIV [EPG/ShdHeal]\\u0026nbsp; \\nImpulse Engines\\u0026nbsp; | [Adapted M.A.C.O. Combat Impulse Engines](http://sto.gamepedia.com/Adapted_M.A.C.O._Combat_Impulse_Engines) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nWarp Core\\u0026nbsp; | [Temporal Defense Initiative Overcharged Warp Core](http://sto.gamepedia.com/Temporal_Defense_Initiative_Overcharged_Warp_Core) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nShields\\u0026nbsp; | [Adapted M.A.C.O. Covariant Shield Array](http://sto.gamepedia.com/Adapted_M.A.C.O._Covariant_Shield_Array) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n4 Engineering Consoles\\u0026nbsp; | [Proton Particle Stabilizer](http://sto.gamepedia.com/Console_-_Universal_-_Proton_Particle_Stabilizer) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Ferrofluid Hydraulic Assembly](http://sto.gamepedia.com/Console_-_Universal_-_Ferrofluid_Hydraulic_Assembly) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Conductive RCS Accelerator [EPG]](http://sto.gamepedia.com/Console_-_Engineering_-_Conductive_RCS_Accelerator_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Delphic Tear Generator](http://sto.gamepedia.com/Console_-_Universal_-_Delphic_Tear_Generator) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n5 Science Consoles\\u0026nbsp; | [Restorative Particle Focuser [EPG] [CtrlX]](http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Restorative Particle Focuser [EPG] [CtrlX]](http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Temporal Disentanglement Suite](http://sto.gamepedia.com/Console_-_Science_-_Temporal_Disentanglement_Suite) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Plasma-Generating Weapon Signature Amplifier [EPG]](http://sto.gamepedia.com/Console_-_Science_-_Plasma-Generating_Weapon_Signature_Amplifier_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Exotic Particle Field Exciter [EPG]](http://sto.gamepedia.com/Console_-_Science_-_Exotic_Particle_Field_Exciter_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n2 Tactical Consoles\\u0026nbsp; | [Chronometric Capacitor](http://sto.gamepedia.com/Console_-_Tactical_-_Chronometric_Capacitor) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Piezo-Electric Focuser](http://sto.gamepedia.com/Console_-_Universal_-_Piezo-Electric_Focuser) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n \\n#Officer Details\\nBridge Officers\\u0026nbsp; | Power\\u0026nbsp; \\n--|-- \\nCommander Science\\u0026nbsp; | [Subspace Vortex I](http://sto.gamepedia.com/Ability:_Subspace_Vortex) \\u0026nbsp; \\n\\u0026nbsp; | [Hazard Emitters II](http://sto.gamepedia.com/Ability:_Hazard_Emitters) \\u0026nbsp; \\n\\u0026nbsp; | [Destabilizing Resonance Beam II](http://sto.gamepedia.com/Ability:_Destabilizing_Resonance_Beam) \\u0026nbsp; \\n\\u0026nbsp; | [Gravity Well III](http://sto.gamepedia.com/Ability:_Gravity_Well) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nLt. Commander Engineering-Temporal\\u0026nbsp; | [Entropic Redistribution I](http://sto.gamepedia.com/Ability:_Entropic_Redistribution) \\u0026nbsp; \\n\\u0026nbsp; | [Chronometric Inversion Field I](http://sto.gamepedia.com/Ability:_Chronometric_Inversion_Field) \\u0026nbsp; \\n\\u0026nbsp; | [Entropic Cascade II](http://sto.gamepedia.com/Ability:_Entropic_Cascade) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nLieutenant Tactical\\u0026nbsp; | [Tactical Team I](http://sto.gamepedia.com/Ability:_Tactical_Team) \\u0026nbsp; \\n\\u0026nbsp; | [Torpedo: Spread II](http://sto.gamepedia.com/Ability:_Torpedo:_Spread) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nEnsign Science\\u0026nbsp; | [Tachyon Beam I](http://sto.gamepedia.com/Ability:_Tachyon_Beam) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\n \\n#Traits \\u0026 Duty Officers \\nTrait\\u0026nbsp; | Name\\u0026nbsp; | Description\\u0026nbsp; \\n--|--|-- \\nPersonal Traits\\u0026nbsp; | Ablative Shell\\u0026nbsp; | After receiving a total of 10,000 Damage (pre-resist), trigger Ablative Shell: +X Hit Points every 0.5 sec for 3 sec, +33 All Damage Resistance Rating for 3 sec, May only trigger once per 30 sec\\u0026nbsp; \\n\\u0026nbsp; | Context is for Kings\\u0026nbsp; | Each second while in combat, if you did not take damage in the past second, you gain a damage bonus. Otherwise, you gain a boost to your Damage Resistence Rating. Each second while in combat: If you did take damage in the past second: +3 All Damage Resistence Rating for 10 sec If you did not take damage in the past second: +1% Bonus All Damage for 10 sec\\u0026nbsp; \\n\\u0026nbsp; | Fleet Coordinator\\u0026nbsp; | +2% All Damage per Team member (Self included), up to 10%\\u0026nbsp; \\n\\u0026nbsp; | Repair Crews\\u0026nbsp; | While in combat, gain 1 stack of Repair Crews every 5 sec (up to 5 max). Per Stack: +5 All Damage Resistance Rating +5% Hull Repair Rate\\u0026nbsp; \\n\\u0026nbsp; | Inspirational Leader\\u0026nbsp; | 10% chance: Activating any Bridge Officer Ability grants +10 to Most Starship Skills for 15 seconds (may stack up to 3 times).\\u0026nbsp; \\n\\u0026nbsp; | Particle Manipulator\\u0026nbsp; | Gain .2% Critical Chance and .1% Critical Severity for Exotic Damage abilities, per point you have in the Starship Exotic Particle Generator skill. The Critical Chance bonus gained from this Trait is capped at +50% (attained by having 250 Particle Generators skill), but there is no cap on the Critical Severity bonus. +__% Critical Hit Chance for Exotic Damage Abilities +__% Critical Hit Severity for Exotic Damage Abilities\\u0026nbsp; \\n\\u0026nbsp; | Projectile Training\\u0026nbsp; | +5% Projectile Weapon Damage\\u0026nbsp; \\n\\u0026nbsp; | Self-Modulating Fire\\u0026nbsp; | On outgoing Critical Hits, your energy weapons and projectiles gain +50% Shield Penetration for 10 sec (Can trigger once every 45 sec)\\u0026nbsp; \\n\\u0026nbsp; | Duelist's Fervor\\u0026nbsp; | You or your teammates getting kills will grant you a short-duration damage and accuracy rating boost. Whenever you or a teammate kills something: +5% All Damage for 10 sec +5 Accuracy Rating for 10 sec (Effect stack up to 3 times)\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nStarship Traits\\u0026nbsp; | Desperate Repairs\\u0026nbsp; | When critically hit: Grant 1 Desperation counter for 120 sec. At 3 counters: To self: +5,000 Shield Regeneration. To self: +25,000 Hit Points. Prevents gaining Desperation counters for 60 sec.\\u0026nbsp; \\n\\u0026nbsp; | Emitter Synergy\\u0026nbsp; | When using Tac or Intel Bridge Office Ability: To self: +7.5% Exotic Damage for 15 sec (Stacks up to 3 times) To self: +7.5% Shield Heals for 15 sec (Stacks up to 3 times)\\u0026nbsp; \\n\\u0026nbsp; | Reactive Repair Nanites\\u0026nbsp; | Using a hull heal ability will also heal your hangar pets within 5km of your target for a portion of the healing dealt.\\u0026nbsp; \\n\\u0026nbsp; | Tachyon Dispersal\\u0026nbsp; | While this trait is slotted, Tachyon Beam will significantly reduce the target's shield hardness while channeled. In addition, if Tachyon Beam reaches its full duration it will release a large burst of Tachyon energy that will inflict shield damage over time and reduce the hardness of affected targets within its radius.\\u0026nbsp; \\n\\u0026nbsp; | Highly Specialized\\u0026nbsp; | Each time one of their abilities is activated, it will cause all other specialist bridge officer abilities to recharge more quickly, allowing them all to be used more frequently. In addition, you will gain a boost to Starship Hull Repair, Starship Weapon Specialization and Starship Particle Generators skills. This skill buff stacks up to 5 times.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nSpace Reputation Traits\\u0026nbsp; | Advanced Targeting Systems\\u0026nbsp; | Slightly increases critical severity in space combat\\u0026nbsp; \\n\\u0026nbsp; | Torpedo Pre-Fire Sequence\\u0026nbsp; | Torpedo Damage and Destructible Torpedo Flight Speed\\u0026nbsp; \\n\\u0026nbsp; | Auxiliary Power Configuration - Offense\\u0026nbsp; | In space combat you gain a damage and accuracy boost based on your Auxiliary Power Level\\u0026nbsp; \\n\\u0026nbsp; | Omega Kinetic Shearing\\u0026nbsp; | Torpedoes and Mines deal an additional 40% of their outgoing kinetic damage as a shield-penetrating DoT over 6 seconds.\\u0026nbsp; \\n\\u0026nbsp; | Precision\\u0026nbsp; | Increases your Critical Hit Chance in space combat.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nActive Reputation Traits\\u0026nbsp; | Bio-Molecular Shield Generator\\u0026nbsp; | Bio-Molecular Shield Generator creates a fixed position shield generator, in space combat, that regenerates starship shields and reduces the damage taken by starship shields for allies in the immediate area.\\u0026nbsp; \\n\\u0026nbsp; | Deploy Sensor Interference Platform\\u0026nbsp; | Deploy a Sensor Interference Platform which redirects most weapons fire to itself. The platform generates an inhibiting feedback pulse around nearby allied vessels, reducing the damage of enemies who attack targets other than the platform.\\u0026nbsp; \\n\\u0026nbsp; | Quantum Singularity Manipulation\\u0026nbsp; | Drastically increases all space Science Stats for a short time. After a few seconds, your ship will also be cloaked for the remaining duration of the power. You may fire your weapons and use abilities normally without breaking the cloak. This cloak does not bring your shields offline.\\u0026nbsp; \\n\\u0026nbsp; | Refracting Tetryon Cascade\\u0026nbsp; | Releases a cascading burst of Tetryon energy from your Deflector Dish at foes within 3km. The Tetryon Cascade will refract from initial targets to other nearby targets, dealing less damage with each jump. The Refracting Tetryon Cascade can jump to 2 additional targets. The charge can only jump 5km to the next target. WARNING: If the target's sensors are scrambled or otherwise confused when it is hit with the Tetryon Cascade, the charge may bounce back to you or your allies.\\u0026nbsp; \\n\\u0026nbsp; | Anti-Time Entanglement Singularity\\u0026nbsp; | Anti-Time Entanglement Singularity creates an Anti-Time anomaly in the target's immediate vicinity. The singularity causes severe Physical damage to foes caught within while slowing and potentially locking them in place as normal space-time violently interacts with the anomaly. This singularity rapidly shrinks in size until it fully dissipates.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nDuty Officers\\u0026nbsp; | Projectile Weapons Officer\\u0026nbsp; | Chance to increase Kinetic Damage from torpedoes\\u0026nbsp; \\n\\u0026nbsp; | Projectile Weapons Officer\\u0026nbsp; | Chance for stacking Crit Severity buff on firing Projectiles\\u0026nbsp; \\n\\u0026nbsp; | Conn Officer\\u0026nbsp; | Recharges Evasive Maneuvers when Emergency Power to Engines is activated\\u0026nbsp; \\n\\u0026nbsp; | Deflector Officer\\u0026nbsp; | Chance to reduce the recharge time for Deflector abilities\\u0026nbsp; \\n\\u0026nbsp; | Deflector Officer\\u0026nbsp; | Chance to reduce the recharge time for Deflector abilities\\u0026nbsp; \\n\\u0026nbsp; | Gravimetric Scientist\\u0026nbsp; | Chance to create an aftershock Gravity Well\\u0026nbsp;\", \"author_fullname\": \"t2_k7vp5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv0dwk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559289215.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECaptain Details\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ECaptain Name\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EDr. Jannick Carter\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Career\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EScience\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Faction\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFederation\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Race\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHuman\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPrimary Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETemporal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESecondary Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EStrategist\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ESpace Skill Tree\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ERank\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EEngineering\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EScience\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ETactical\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELieutenant\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Restoration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Capacity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Restoration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Capacity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Energy Weapon Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Projectile Weapon Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELt. Commander\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EElectro-Plasma System Flow\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Impulse Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Control Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Drain Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETargeting Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDefensive Maneuvering\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFull Impulse Energy Shunt\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECommander\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHull Plating\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EShield Regeneration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EShield Hardness\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Weapon Amplification\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Weapon Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDefensive Subsystem Tuning\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOffensive Subsystem Tuning\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Exotic Particle Generator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Long Range Targeting Sensors\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Penetration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Weakening\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAdmiral\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWarp Core Potential\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWarp Core Efficiency\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E1 Points Left\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E14\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E16\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E15\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ESpace Skill Unlocks\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EPurchases\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EEngineering\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EScience\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ETactical\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHazard Emitters III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EScience Team III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETachyon Beam III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E5\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E7\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFeedback Pulse III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPhotonic Shockwave III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EJam Sensors III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E10\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E12\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPolarize Hull III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravity Well III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETractor Beam III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E15\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EShip Loadout: \\u003Cem\\u003EFleet Advanced Research Vessel (T6)\\u003C/em\\u003E\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ESlot\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EItem\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ENotes\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 1\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Piezo- Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravimetric Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 3\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETerran Task Force Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 1\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ECutting Kinetic Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDyson Proton Turret Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 3\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChronometric Polaron Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EDeflector\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Counter-Command_Deflector_Array\\\"\\u003ECounter-Command Deflector Array\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E2nd - Deteriorating Secondary Deflector Mk XIV [EPG/ShdHeal]\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EImpulse Engines\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Adapted_M.A.C.O._Combat_Impulse_Engines\\\"\\u003EAdapted M.A.C.O. Combat Impulse Engines\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EWarp Core\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Temporal_Defense_Initiative_Overcharged_Warp_Core\\\"\\u003ETemporal Defense Initiative Overcharged Warp Core\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EShields\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Adapted_M.A.C.O._Covariant_Shield_Array\\\"\\u003EAdapted M.A.C.O. Covariant Shield Array\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E4 Engineering Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Proton_Particle_Stabilizer\\\"\\u003EProton Particle Stabilizer\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Ferrofluid_Hydraulic_Assembly\\\"\\u003EFerrofluid Hydraulic Assembly\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Engineering_-_Conductive_RCS_Accelerator_\\\"\\u003EConductive RCS Accelerator [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Delphic_Tear_Generator\\\"\\u003EDelphic Tear Generator\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E5 Science Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_\\\"\\u003ERestorative Particle Focuser [EPG] [CtrlX]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_\\\"\\u003ERestorative Particle Focuser [EPG] [CtrlX]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Temporal_Disentanglement_Suite\\\"\\u003ETemporal Disentanglement Suite\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Plasma-Generating_Weapon_Signature_Amplifier_\\\"\\u003EPlasma-Generating Weapon Signature Amplifier [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Exotic_Particle_Field_Exciter_\\\"\\u003EExotic Particle Field Exciter [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E2 Tactical Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Tactical_-_Chronometric_Capacitor\\\"\\u003EChronometric Capacitor\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Piezo-Electric_Focuser\\\"\\u003EPiezo-Electric Focuser\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EOfficer Details\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EBridge Officers\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EPower\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECommander Science\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Subspace_Vortex\\\"\\u003ESubspace Vortex I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Hazard_Emitters\\\"\\u003EHazard Emitters II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Destabilizing_Resonance_Beam\\\"\\u003EDestabilizing Resonance Beam II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Gravity_Well\\\"\\u003EGravity Well III\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELt. Commander Engineering-Temporal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Entropic_Redistribution\\\"\\u003EEntropic Redistribution I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Chronometric_Inversion_Field\\\"\\u003EChronometric Inversion Field I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Entropic_Cascade\\\"\\u003EEntropic Cascade II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELieutenant Tactical\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Tactical_Team\\\"\\u003ETactical Team I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Torpedo:_Spread\\\"\\u003ETorpedo: Spread II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EEnsign Science\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Tachyon_Beam\\\"\\u003ETachyon Beam I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ETraits \\u0026amp; Duty Officers\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ETrait\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EName\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EDescription\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPersonal Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAblative Shell\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAfter receiving a total of 10,000 Damage (pre-resist), trigger Ablative Shell: +X Hit Points every 0.5 sec for 3 sec, +33 All Damage Resistance Rating for 3 sec, May only trigger once per 30 sec\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EContext is for Kings\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEach second while in combat, if you did not take damage in the past second, you gain a damage bonus. Otherwise, you gain a boost to your Damage Resistence Rating. Each second while in combat: If you did take damage in the past second: +3 All Damage Resistence Rating for 10 sec If you did not take damage in the past second: +1% Bonus All Damage for 10 sec\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFleet Coordinator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E+2% All Damage per Team member (Self included), up to 10%\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERepair Crews\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhile in combat, gain 1 stack of Repair Crews every 5 sec (up to 5 max). Per Stack: +5 All Damage Resistance Rating +5% Hull Repair Rate\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EInspirational Leader\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E10% chance: Activating any Bridge Officer Ability grants +10 to Most Starship Skills for 15 seconds (may stack up to 3 times).\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EParticle Manipulator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGain .2% Critical Chance and .1% Critical Severity for Exotic Damage abilities, per point you have in the Starship Exotic Particle Generator skill. The Critical Chance bonus gained from this Trait is capped at +50% (attained by having 250 Particle Generators skill), but there is no cap on the Critical Severity bonus. +\\u003Cstrong\\u003E% Critical Hit Chance for Exotic Damage Abilities +\\u003C/strong\\u003E% Critical Hit Severity for Exotic Damage Abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E+5% Projectile Weapon Damage\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ESelf-Modulating Fire\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOn outgoing Critical Hits, your energy weapons and projectiles gain +50% Shield Penetration for 10 sec (Can trigger once every 45 sec)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDuelist\\u0026#39;s Fervor\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EYou or your teammates getting kills will grant you a short-duration damage and accuracy rating boost. Whenever you or a teammate kills something: +5% All Damage for 10 sec +5 Accuracy Rating for 10 sec (Effect stack up to 3 times)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStarship Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDesperate Repairs\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhen critically hit: Grant 1 Desperation counter for 120 sec. At 3 counters: To self: +5,000 Shield Regeneration. To self: +25,000 Hit Points. Prevents gaining Desperation counters for 60 sec.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEmitter Synergy\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhen using Tac or Intel Bridge Office Ability: To self: +7.5% Exotic Damage for 15 sec (Stacks up to 3 times) To self: +7.5% Shield Heals for 15 sec (Stacks up to 3 times)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EReactive Repair Nanites\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EUsing a hull heal ability will also heal your hangar pets within 5km of your target for a portion of the healing dealt.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETachyon Dispersal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhile this trait is slotted, Tachyon Beam will significantly reduce the target\\u0026#39;s shield hardness while channeled. In addition, if Tachyon Beam reaches its full duration it will release a large burst of Tachyon energy that will inflict shield damage over time and reduce the hardness of affected targets within its radius.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHighly Specialized\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEach time one of their abilities is activated, it will cause all other specialist bridge officer abilities to recharge more quickly, allowing them all to be used more frequently. In addition, you will gain a boost to Starship Hull Repair, Starship Weapon Specialization and Starship Particle Generators skills. This skill buff stacks up to 5 times.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESpace Reputation Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Targeting Systems\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ESlightly increases critical severity in space combat\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedo Pre-Fire Sequence\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedo Damage and Destructible Torpedo Flight Speed\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAuxiliary Power Configuration - Offense\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EIn space combat you gain a damage and accuracy boost based on your Auxiliary Power Level\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOmega Kinetic Shearing\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedoes and Mines deal an additional 40% of their outgoing kinetic damage as a shield-penetrating DoT over 6 seconds.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPrecision\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EIncreases your Critical Hit Chance in space combat.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EActive Reputation Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EBio-Molecular Shield Generator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EBio-Molecular Shield Generator creates a fixed position shield generator, in space combat, that regenerates starship shields and reduces the damage taken by starship shields for allies in the immediate area.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeploy Sensor Interference Platform\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeploy a Sensor Interference Platform which redirects most weapons fire to itself. The platform generates an inhibiting feedback pulse around nearby allied vessels, reducing the damage of enemies who attack targets other than the platform.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EQuantum Singularity Manipulation\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDrastically increases all space Science Stats for a short time. After a few seconds, your ship will also be cloaked for the remaining duration of the power. You may fire your weapons and use abilities normally without breaking the cloak. This cloak does not bring your shields offline.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERefracting Tetryon Cascade\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EReleases a cascading burst of Tetryon energy from your Deflector Dish at foes within 3km. The Tetryon Cascade will refract from initial targets to other nearby targets, dealing less damage with each jump. The Refracting Tetryon Cascade can jump to 2 additional targets. The charge can only jump 5km to the next target. WARNING: If the target\\u0026#39;s sensors are scrambled or otherwise confused when it is hit with the Tetryon Cascade, the charge may bounce back to you or your allies.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAnti-Time Entanglement Singularity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAnti-Time Entanglement Singularity creates an Anti-Time anomaly in the target\\u0026#39;s immediate vicinity. The singularity causes severe Physical damage to foes caught within while slowing and potentially locking them in place as normal space-time violently interacts with the anomaly. This singularity rapidly shrinks in size until it fully dissipates.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EDuty Officers\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Weapons Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to increase Kinetic Damage from torpedoes\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Weapons Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance for stacking Crit Severity buff on firing Projectiles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EConn Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERecharges Evasive Maneuvers when Emergency Power to Engines is activated\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeflector Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to reduce the recharge time for Deflector abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeflector Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to reduce the recharge time for Deflector abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravimetric Scientist\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to create an aftershock Gravity Well\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?auto=webp\\u0026s=1b86bccaf167b2d5123de5174f8e10d449263d48\", \"width\": 290, \"height\": 80}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=69311b30c71d5588ef2476413ab46e99ccd63a63\", \"width\": 108, \"height\": 29}, {\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0f8e5d419be15a063d995bcf551bcc86c9348be3\", \"width\": 216, \"height\": 59}], \"variants\": {}, \"id\": \"8pVmilrUZuM4Y3Z8IjHjdTYNdYCe6e2y_bUeDCZKUg4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv0dwk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wooyoo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv0dwk/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv0dwk/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559260415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"............................................________ \\n....................................,.-'\\\"...................``~., \\n.............................,.-\\\"...................................\\\"-., \\n.........................,/...............................................\\\":, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\\"........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\\"~-,_..............................,:`........../ \\n.........../(_....\\\"~,_........\\\"~,_....................,:`........_/ \\n..........{.._$;_......\\\"=,_.......\\\"-,_.......,.-~-,},.~\\\";/....} \\n...........((.....*~_.......\\\"=-._......\\\";,,./`..../\\\"............../ \\n...,,,___.`~,......\\\"~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\\" \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u003E-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u003E--==`` \\n........................................_..........._,-%.......` \\n...................................,\", \"author_fullname\": \"t2_2awf2pwl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buz6bd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559282431.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E............................................________ \\n....................................,.-\\u0026#39;\\u0026quot;...................\\u003Ccode\\u003E~., \\n.............................,.-\\u0026quot;...................................\\u0026quot;-., \\n.........................,/...............................................\\u0026quot;:, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\u0026quot;........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\u0026quot;~-,_..............................,:`........../ \\n.........../(_....\\u0026quot;~,_........\\u0026quot;~,_....................,:`........_/ \\n..........{.._$;_......\\u0026quot;=,_.......\\u0026quot;-,_.......,.-~-,},.~\\u0026quot;;/....} \\n...........((.....*~_.......\\u0026quot;=-._......\\u0026quot;;,,./`..../\\u0026quot;............../ \\n...,,,___.`~,......\\u0026quot;~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\u0026quot; \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u0026gt;-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u0026gt;--==\\u003C/code\\u003E \\n........................................\\u003Cem\\u003E...........\\u003C/em\\u003E,-%.......` \\n...................................,\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buz6bd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dwolfj\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buz6bd/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559253631.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1u17f7xq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Excalibur] Darkness\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 76, \"hide_score\": false, \"name\": \"t3_buyfh6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/rQRkNUFVzJBfU0NKRterlAHy9b6lCEqixFHKQBoz6LM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559278533.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?auto=webp\\u0026s=f909102a292f8e034817ecba780a3335b97cd05a\", \"width\": 1280, \"height\": 699}, \"resolutions\": [{\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8b1f21db35f534c67e58cad03be2796677f047fb\", \"width\": 108, \"height\": 58}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=dc78a564e15d9728dda51215a38d3ac3ac354af9\", \"width\": 216, \"height\": 117}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=66018766b3c398c0c7c1f434d4805330b75a3ddb\", \"width\": 320, \"height\": 174}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1676c512c45c5c31f6b597ec4e1f263c11973593\", \"width\": 640, \"height\": 349}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5cfbc3635f1655a01d8f70f8b7772efba886c379\", \"width\": 960, \"height\": 524}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e4cbbe7cb9746362a029aeea72037dd8c8316a46\", \"width\": 1080, \"height\": 589}], \"variants\": {}, \"id\": \"hz42riBu_Nv54z_i96b8_OFwO7HaAcgdWq6FDP77RJs\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buyfh6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CephalonSoural\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buyfh6/excalibur_darkness/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/z1p9l2vgwe131.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559249733.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*This is a proposal for the complete overhaul of the skills modding system, which was inspired by the many suggestions calling for changes to the current system.*\\n\\n*My main objective was to create an engaging experience with clear and rewarding progression goals. I also wanted to create more flexible and convenient skills modding options than the current system could ever provide. At the end of the progression, I wanted skill power players to feel proud of their achievement.*\\n\\n*Consequently, I was able to eliminate the seemingly impossible task of obtaining exactly the mods we need, as well as the frustration associated with managing hundreds of skill mods. In a few words, the current system is daunting and unproductive.*\\n\\n*In contrast, the proposed system is filled with incentives meant to keep us playing, not only because our dedication is continually rewarded, but also because we can make progress every day.*\\n\\n\\u0026#x200B;\\n\\n**This modding system is composed of 5 parts:**\\n\\n1. Tech Proficiency Progression\\n2. Skill Mod Strength Levels\\n3. Skill Power Budgeting\\n4. Tech Proficiency Awards\\n5. Skills Maintenance\\n\\n\\u0026#x200B;\\n\\n**TECH PROFICIENCY PROGRESSION**\\n\\nEach skill variant has its own proficiency progression, which starts at level 0 and ends at level 4. Players may start a progression for their favorite skills after reaching character level 15. The final proficiency level is reserved for World Tier 5. If you're already at world tier 5, you'll simply complete the proficiency progressions you choose without interruptions.\\n\\nTech points are earned by completing activities and objectives while using your preferred skill variant. Each time your proficiency level increases, small skill power boosts are awarded for that variant, as well as other benefits mentioned later.\\n\\n***Edit:*** *How soon you can finish depends on how much you play, but it shouldn't take more than 2-3 weeks to complete the progression for all skill variants. You also don't need to start the progression for skills you're not interested in using. It's all up to you. Proficiency progressions are pretty much automatic because they work just like when you're ranking your character. That is, there is no traveling to the Quartermaster to upgrade anything. It just happens as you play.*\\n\\n\\u0026#x200B;\\n\\n**SKILL MOD STRENGTH LEVELS**\\n\\nSkill mods don\\u2019t have a percentage value. Instead, skill variants have a unique set of mods, and each set has five different strength levels that match your proficiency with the variant. Mod strength levels allow you to reach higher modding percentage values in combination with sufficient skill power. This means that it\\u2019s okay to run a low skill power build using stronger mods.\\n\\nCharacter level and world tier don't define the strength of the mods that will drop for you, but skill mods do begin to drop at character level 15. If you're already at world tier 5, there's no need to start a new character. Just start farming for mods.\\n\\nSkill mods can be obtained from the same sources we have right now (there are many), but strength levels must be collected in numerical order. This means that you must first obtain a set\\u2019s strength level 1 mod before strength 2 can drop for you, and so on.\\n\\nSkill mods won\\u2019t need inventory space because they\\u2019re stored just like weapon mods. The difference is that skill mods of greater strengths will upgrade what you\\u2019ve already collected. It\\u2019s possible to find a mod with a strength level that is higher than your proficiency level. In this case, the upgrade is saved for later use and will be automatically applied when the mod matches your proficiency level.\\n\\n***Edit:*** *You can target mod types by equipping the skill variants for which you want to find mods. So, if you want mods for your Scanner pulse and the Oxidizer chem launcher, just equip them and go play the game.*\\n\\n*Your proficiency level with a variant doesn't determine which mod strength will drop; proficiency only determines which mods you can use, and how much of a skill power boost you'll be getting.*\\n\\n*Like the proficiency progression, mod upgrades occur automatically. You just pick up the mod and the system does the rest. There's no need to unequip a weaker mod to equip a stronger mod, and there's no need to travel to the Quartermaster or a specific bench somewhere. The upgrades just happen automatically.*\\n\\n\\u0026#x200B;\\n\\n**SKILL POWER BUDGETING**\\n\\nMods unlock the slider bars you\\u2019ll use to budget your skill power, as long as the mod\\u2019s strength isn\\u2019t higher than your proficiency level.\\n\\nBudgeting skill power is an easy concept to explain. Essentially, when you increase the slider bar for a specific mod, less skill power is available for the remaining mods associated with the skill variant.\\n\\nThe budgeting method let\\u2019s you distribute custom amounts of your skill power to improve all active mods at the same time, or you can use all of your skill power to improve a single mod. The choice is yours.\\n\\nBalance is important! Skill power will affect skill mods differently, so not all slider bars begin at 0% and end at 100% improvement.\\n\\n\\u0026#x200B;\\n\\n**TECH PROFICIENCY AWARDS**\\n\\nProficiency awards can be earned for reaching maximum proficiency with a skill platform. So, if you achieve maximum proficiency with the Scanner, Remote, and Jammer Pulse, you\\u2019ll earn special rewards.\\n\\nThe best rewards are additional slots that let you save and manage modding configurations separately from loadouts, all without affecting your build.\\n\\nOther proficiency awards could include patches and cosmetics, as well as tech-oriented accessories, such as that tactical flashlight these guys keep asking for.\\n\\n\\u0026#x200B;\\n\\n**SKILLS MAINTENANCE**\\n\\nThis system also introduces the concept of skill maintenance, for which you\\u2019ll need special currency. Failure to properly maintain the equipment could have consequences, such as very long skill cooldowns.\\n\\nThe maintenance concept creates a cycle that continues even after every proficiency level has been achieved and every mod strength has been collected. *This is what could replace the seemingly impossible hunt for the correct skill mods we\\u2019re dealing with today.*\\n\\nMaintenance tasks should never create a burden for players. Maintenance should be quick and simple, *and obtaining the necessary currency or materials should result from just playing the game.* This means no lengthy animations, no complicated requirements, and no overly scarce resources.\\n\\n***Edit:*** *Which skills need maintenance depends on which skills you use. I use the Reinforcer Chem Launcher and the Assault Turret all the time. This means that I'll need to maintain only these variants. If and when I do, all I have to do is hold down the \\\"maintenance\\\" button down for 3-5 seconds and I'm done. I just need to make sure that I have enough special currency to perform the task. But how is the special currency obtained? By just playing the game.*\\n\\n\\u0026#x200B;\\n\\n***Note:*** *The skill power budgeting concept was posted on this sub, but I\\u2019m unable to find the post to give the guy credit.*\\n\\n\\u0026#x200B;\\n\\n\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\n\\n**Edit: There seems to be some confusion regarding the length of progressions and how much work really needs to be done here. I expanded some points and included clarifications in** ***italics.*** \\n\\n\\u0026#x200B;\\n\\n**Here are answers to some important questions:**\\n\\n\\u0026#x200B;\\n\\n**Why such a complicated system?**\\n\\nThe system is not complicated at all. It just takes a lot of words to explain everything. All you have to do is play the game using your favorite skills. Everything else just happens automatically, except for skills maintenance. Becoming the ultimate skill power player is meant to happen much faster than the description might make you think.\\n\\n\\u0026#x200B;\\n\\n**Why do we need a new system?**\\n\\nBecause the current system is designed to throttle progress. It could seriously take many months to years to min/max various builds. I play about 6 hours a day and I haven't min/maxed a single build. That's fine and all, but getting to a place where I can comfortably mod my skills will take way too long, plus it is frustrating to manage all those mods.\\n\\nAnother reason is that the game is boring for some people right now. To put it simply, variety and flexibility are hogtied by RNG and a huge loot pool. That's not even mentioning how skills themselves need to be worked on.\\n\\n\\u0026#x200B;\\n\\n**Why not go back to how things were in Division 1?**\\n\\nI don't think that's what they want for this game. The Division 1 made it easy to put together a skill build and boost any skill to the max. They expect effort and dedication to result in the most powerful skills, but I think they're going about it all wrong. Remember, we want skills to be powerful and modding to be convenient and flexible, but at what cost? Months and months of farming? We don't even have enough inventory space to hold all the skill mods!\\n\\n\\u0026#x200B;\\n\\n**Why a proficiency progression?**\\n\\nThe proficiency progression is a compromise that gives us something to strive for. We can't really expect to just stack skill power and collect a few mods like we did in the first game, because that's not what they seem to want. Direct evidence of what what they want is the very low probability of obtaining a single item with the correct attributes and talents. If you don't know, there is a very, very low chance of finding exactly what you need. I just don't think this very low probability should apply to modding skills. At the same time, I don't think it should be a breeze. And it should definitely not be boring.\\n\\nIt's important to also look at the big picture: the way mods are programmed to drop (randomly and with a percentage range) doesn't let us target which skills we want to improve, how well we can improve them, or even how fast we can accomplish that. Overall, the control we have is so small that it's discouraging.\\n\\nIn contrast, the system I'm proposing keeps us engaged because we're always making notable progress, we're always working toward something that is well within range. This system is also rewarding from start to finish (see Tech Proficiency Awards).\\n\\nThink about it -- the progression speed is in your hands. You choose which skills you want to work on and when. You would almost have complete control, if it weren't for the limited number of mods you need to collect. And that's a fair trade off. If skill modding is not your thing, then just let the progression and mods collection happen naturally. \\n\\nAll this convenience and bonuses in exchange for what? Two weeks to max out all skill platforms and collect a limited number of mods (that don't even have to be managed or stored). Then, there's some easy skills maintenance task that, if ignored, only affects the efficiency of the skills you use the most.\", \"author_fullname\": \"t2_3syb9zh4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buy2m9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559334132.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559276681.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EThis is a proposal for the complete overhaul of the skills modding system, which was inspired by the many suggestions calling for changes to the current system.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EMy main objective was to create an engaging experience with clear and rewarding progression goals. I also wanted to create more flexible and convenient skills modding options than the current system could ever provide. At the end of the progression, I wanted skill power players to feel proud of their achievement.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EConsequently, I was able to eliminate the seemingly impossible task of obtaining exactly the mods we need, as well as the frustration associated with managing hundreds of skill mods. In a few words, the current system is daunting and unproductive.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EIn contrast, the proposed system is filled with incentives meant to keep us playing, not only because our dedication is continually rewarded, but also because we can make progress every day.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis modding system is composed of 5 parts:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ETech Proficiency Progression\\u003C/li\\u003E\\n\\u003Cli\\u003ESkill Mod Strength Levels\\u003C/li\\u003E\\n\\u003Cli\\u003ESkill Power Budgeting\\u003C/li\\u003E\\n\\u003Cli\\u003ETech Proficiency Awards\\u003C/li\\u003E\\n\\u003Cli\\u003ESkills Maintenance\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETECH PROFICIENCY PROGRESSION\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEach skill variant has its own proficiency progression, which starts at level 0 and ends at level 4. Players may start a progression for their favorite skills after reaching character level 15. The final proficiency level is reserved for World Tier 5. If you\\u0026#39;re already at world tier 5, you\\u0026#39;ll simply complete the proficiency progressions you choose without interruptions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETech points are earned by completing activities and objectives while using your preferred skill variant. Each time your proficiency level increases, small skill power boosts are awarded for that variant, as well as other benefits mentioned later.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EHow soon you can finish depends on how much you play, but it shouldn\\u0026#39;t take more than 2-3 weeks to complete the progression for all skill variants. You also don\\u0026#39;t need to start the progression for skills you\\u0026#39;re not interested in using. It\\u0026#39;s all up to you. Proficiency progressions are pretty much automatic because they work just like when you\\u0026#39;re ranking your character. That is, there is no traveling to the Quartermaster to upgrade anything. It just happens as you play.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILL MOD STRENGTH LEVELS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods don\\u2019t have a percentage value. Instead, skill variants have a unique set of mods, and each set has five different strength levels that match your proficiency with the variant. Mod strength levels allow you to reach higher modding percentage values in combination with sufficient skill power. This means that it\\u2019s okay to run a low skill power build using stronger mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECharacter level and world tier don\\u0026#39;t define the strength of the mods that will drop for you, but skill mods do begin to drop at character level 15. If you\\u0026#39;re already at world tier 5, there\\u0026#39;s no need to start a new character. Just start farming for mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods can be obtained from the same sources we have right now (there are many), but strength levels must be collected in numerical order. This means that you must first obtain a set\\u2019s strength level 1 mod before strength 2 can drop for you, and so on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods won\\u2019t need inventory space because they\\u2019re stored just like weapon mods. The difference is that skill mods of greater strengths will upgrade what you\\u2019ve already collected. It\\u2019s possible to find a mod with a strength level that is higher than your proficiency level. In this case, the upgrade is saved for later use and will be automatically applied when the mod matches your proficiency level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EYou can target mod types by equipping the skill variants for which you want to find mods. So, if you want mods for your Scanner pulse and the Oxidizer chem launcher, just equip them and go play the game.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EYour proficiency level with a variant doesn\\u0026#39;t determine which mod strength will drop; proficiency only determines which mods you can use, and how much of a skill power boost you\\u0026#39;ll be getting.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ELike the proficiency progression, mod upgrades occur automatically. You just pick up the mod and the system does the rest. There\\u0026#39;s no need to unequip a weaker mod to equip a stronger mod, and there\\u0026#39;s no need to travel to the Quartermaster or a specific bench somewhere. The upgrades just happen automatically.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILL POWER BUDGETING\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMods unlock the slider bars you\\u2019ll use to budget your skill power, as long as the mod\\u2019s strength isn\\u2019t higher than your proficiency level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBudgeting skill power is an easy concept to explain. Essentially, when you increase the slider bar for a specific mod, less skill power is available for the remaining mods associated with the skill variant.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe budgeting method let\\u2019s you distribute custom amounts of your skill power to improve all active mods at the same time, or you can use all of your skill power to improve a single mod. The choice is yours.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBalance is important! Skill power will affect skill mods differently, so not all slider bars begin at 0% and end at 100% improvement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETECH PROFICIENCY AWARDS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EProficiency awards can be earned for reaching maximum proficiency with a skill platform. So, if you achieve maximum proficiency with the Scanner, Remote, and Jammer Pulse, you\\u2019ll earn special rewards.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe best rewards are additional slots that let you save and manage modding configurations separately from loadouts, all without affecting your build.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOther proficiency awards could include patches and cosmetics, as well as tech-oriented accessories, such as that tactical flashlight these guys keep asking for.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILLS MAINTENANCE\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis system also introduces the concept of skill maintenance, for which you\\u2019ll need special currency. Failure to properly maintain the equipment could have consequences, such as very long skill cooldowns.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe maintenance concept creates a cycle that continues even after every proficiency level has been achieved and every mod strength has been collected. \\u003Cem\\u003EThis is what could replace the seemingly impossible hunt for the correct skill mods we\\u2019re dealing with today.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaintenance tasks should never create a burden for players. Maintenance should be quick and simple, \\u003Cem\\u003Eand obtaining the necessary currency or materials should result from just playing the game.\\u003C/em\\u003E This means no lengthy animations, no complicated requirements, and no overly scarce resources.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EWhich skills need maintenance depends on which skills you use. I use the Reinforcer Chem Launcher and the Assault Turret all the time. This means that I\\u0026#39;ll need to maintain only these variants. If and when I do, all I have to do is hold down the \\u0026quot;maintenance\\u0026quot; button down for 3-5 seconds and I\\u0026#39;m done. I just need to make sure that I have enough special currency to perform the task. But how is the special currency obtained? By just playing the game.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENote:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EThe skill power budgeting concept was posted on this sub, but I\\u2019m unable to find the post to give the guy credit.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E__________________________________________________________________\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit: There seems to be some confusion regarding the length of progressions and how much work really needs to be done here. I expanded some points and included clarifications in\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003Eitalics.\\u003C/em\\u003E\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHere are answers to some important questions:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy such a complicated system?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe system is not complicated at all. It just takes a lot of words to explain everything. All you have to do is play the game using your favorite skills. Everything else just happens automatically, except for skills maintenance. Becoming the ultimate skill power player is meant to happen much faster than the description might make you think.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy do we need a new system?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause the current system is designed to throttle progress. It could seriously take many months to years to min/max various builds. I play about 6 hours a day and I haven\\u0026#39;t min/maxed a single build. That\\u0026#39;s fine and all, but getting to a place where I can comfortably mod my skills will take way too long, plus it is frustrating to manage all those mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother reason is that the game is boring for some people right now. To put it simply, variety and flexibility are hogtied by RNG and a huge loot pool. That\\u0026#39;s not even mentioning how skills themselves need to be worked on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy not go back to how things were in Division 1?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t think that\\u0026#39;s what they want for this game. The Division 1 made it easy to put together a skill build and boost any skill to the max. They expect effort and dedication to result in the most powerful skills, but I think they\\u0026#39;re going about it all wrong. Remember, we want skills to be powerful and modding to be convenient and flexible, but at what cost? Months and months of farming? We don\\u0026#39;t even have enough inventory space to hold all the skill mods!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy a proficiency progression?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe proficiency progression is a compromise that gives us something to strive for. We can\\u0026#39;t really expect to just stack skill power and collect a few mods like we did in the first game, because that\\u0026#39;s not what they seem to want. Direct evidence of what what they want is the very low probability of obtaining a single item with the correct attributes and talents. If you don\\u0026#39;t know, there is a very, very low chance of finding exactly what you need. I just don\\u0026#39;t think this very low probability should apply to modding skills. At the same time, I don\\u0026#39;t think it should be a breeze. And it should definitely not be boring.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s important to also look at the big picture: the way mods are programmed to drop (randomly and with a percentage range) doesn\\u0026#39;t let us target which skills we want to improve, how well we can improve them, or even how fast we can accomplish that. Overall, the control we have is so small that it\\u0026#39;s discouraging.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn contrast, the system I\\u0026#39;m proposing keeps us engaged because we\\u0026#39;re always making notable progress, we\\u0026#39;re always working toward something that is well within range. This system is also rewarding from start to finish (see Tech Proficiency Awards).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThink about it -- the progression speed is in your hands. You choose which skills you want to work on and when. You would almost have complete control, if it weren\\u0026#39;t for the limited number of mods you need to collect. And that\\u0026#39;s a fair trade off. If skill modding is not your thing, then just let the progression and mods collection happen naturally. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll this convenience and bonuses in exchange for what? Two weeks to max out all skill platforms and collect a limited number of mods (that don\\u0026#39;t even have to be managed or stored). Then, there\\u0026#39;s some easy skills maintenance task that, if ignored, only affects the efficiency of the skills you use the most.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buy2m9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KelpieCyanide\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buy2m9/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buy2m9/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559247881.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" line 1\\n \\n line 2\\n \\n line 3\\n\\nnormal text\", \"author_fullname\": \"t2_6k6mm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buvucz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559265507.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003Eline 1\\n\\nline 2\\n\\nline 3\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Enormal text\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buvucz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Wongehchuu\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buvucz/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buvucz/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559236707.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"```lua\\nlocal ffi = require(\\\"ffi\\\")\\n\\nffi.cdef[[\\nvoid Sleep(unsigned int seconds); \\n]]\\n```\", \"author_fullname\": \"t2_391wfwow\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buu8cl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559257370.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E```lua\\nlocal ffi = require(\\u0026quot;ffi\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Effi.cdef[[\\nvoid Sleep(unsigned int seconds); \\n]]\\n```\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buu8cl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Anxious_Theory\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buu8cl/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buu8cl/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559228570.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I would like to draw comparison between the 2 incidents.\\n\\n|Date|Ceb|Date|Kuku|\\n|:-|:-|:-|:-|\\n|23/05/2019 Pt1|[Ceb made a crude remark in an EU pub](https://www.removeddit.com/r/DotA2/comments/bs2l9m/ogceb_new_lvl_tilting/) [First reported by u/LVR322 but retracted after Ceb contacted him](https://ibb.co/sgpM4bF)|2/11/2018|[Kuku made the crude remark in a Sea pub](https://www.reddit.com/r/DotA2/comments/9tippm/just_after_col_drama_tnc_kuku_did_it_again_at/)[Initial chinese reaction](https://twitter.com/GodBlessMali/status/1058326847321202688)|2/11/2018|[Kuku apologised on facebook](https://www.facebook.com/pogingkuku/posts/2190153977864424)|\\n|23/05/2019 Pt2|[Another player from same game makes the same complaint](https://www.reddit.com/r/DotA2/comments/bs9ero/ogceb/) [Ceb initial apology](https://www.reddit.com/r/DotA2/comments/bsahbl/ogcebs\\\\_first\\\\_reply\\\\_for\\\\_people\\\\_who\\\\_are\\\\_too\\\\_lazy\\\\_to/)|3/11/2018|[Mender of his Weibo account created an excuse for the remark and was exposed](https://old.reddit.com/r/DotA2/comments/9trn4s/kuku\\\\_apologized\\\\_with\\\\_a\\\\_plot\\\\_twist)\\n|24/05/2019|[Solo take personal action to avoid Epicenter unless Valve make clear of their rules openly](https://www.reddit.com/r/DotA2/comments/bsgsbp/vp\\\\_solo\\\\_wont\\\\_participate\\\\_at\\\\_epicenter\\\\_unless)|3/11/2018|[Mender of his Weibo account created an excuse for the remark and was exposed](https://old.reddit.com/r/DotA2/comments/9trn4s/kuku\\\\_apologized\\\\_with\\\\_a\\\\_plot\\\\_twist)|\\n|25/05/2019|[Pasha also voices his displeasure with valve inconsistencies](https://www.reddit.com/r/DotA2/comments/bsxs9o/vp9pasha\\\\_people\\\\_want\\\\_to\\\\_see\\\\_the\\\\_rules\\\\_so\\\\_that) [Ceb second apology](https://www.reddit.com/r/DotA2/comments/bsuu97/one\\\\_day\\\\_wiser\\\\_twitlonger\\\\_by\\\\_ceb/)|11/11/2018|[Valve initial reaction to let things sort itself out](https://www.reddit.com/r/DotA2/comments/9w1547/the\\\\_major\\\\_and\\\\_professional\\\\_dota\\\\_players/)|\\n|25/05/2019|[Ceb interview with u/LVR322 on the issue](https://www.reddit.com/r/DotA2/comments/bsrtg6/cebs\\\\_first\\\\_thread\\\\_op\\\\_ceb\\\\_told\\\\_me\\\\_that\\\\_he\\\\_might/)|13/11/2018|[TNC manager admit to his mistake](https://www.reddit.com/r/DotA2/comments/9wrkhi/tncs\\\\_manager\\\\_confesses\\\\_that\\\\_he\\\\_was\\\\_the\\\\_one\\\\_who/)|\\n|26/05/2019|[Valve now working with all stakeholders for a long term solution](https://www.reddit.com/r/DotA2/comments/bt6lhw/solo\\\\_valve\\\\_and\\\\_seb\\\\_are\\\\_working\\\\_on\\\\_a\\\\_longterm/) |24/11/2018| [Cyborgmatt first mention of the ban of Kuku and Skem from the CQ major](https://www.reddit.com/r/DotA2/comments/9zxa5q/cyborgmatt\\\\_confirms\\\\_kuku\\\\_and\\\\_skem\\\\_are\\\\_banned/) [Immediate reaction from reddit](https://old.reddit.com/r/DotA2/comments/9zxbyv/valve\\\\_if\\\\_you\\\\_let\\\\_kuku\\\\_and\\\\_skem\\\\_and\\\\_be\\\\_banned\\\\_from) [Ceb reaction](https://www.reddit.com/r/DotA2/comments/9zyhh6/i\\\\_believe\\\\_in\\\\_talk\\\\_no\\\\_jutsu\\\\_and\\\\_i\\\\_hope\\\\_others\\\\_will/)\\n|||25/11/2018|[TNC punishment to Kuku and the manager for their actions](https://old.reddit.com/r/DotA2/comments/a05u22/tnc\\\\_on\\\\_the\\\\_responsibility\\\\_being\\\\_taken\\\\_for\\\\_kuku/)|\\n|||27/11/2018|[TNC qualifies for CQ major](https://www.reddit.com/r/DotA2/comments/a0vobe/congratulations\\\\_to\\\\_the\\\\_2nd\\\\_sea\\\\_team\\\\_to\\\\_qualify/)|\\n|||2/12/2018|[Grantgrant putting himself on the line for Kuku](https://old.reddit.com/r/DotA2/comments/a2agjg/grant\\\\_putting\\\\_his\\\\_casting\\\\_career\\\\_on\\\\_the\\\\_line\\\\_for/) [Action taken by other casters](https://old.reddit.com/r/DotA2/comments/a2fc30/chongqing\\\\_major\\\\_updates\\\\_megathread/) [CQ Org correspondence with TNC](https://www.reddit.com/r/DotA2/comments/a2bt4r/tncs\\\\_new\\\\_statement\\\\_about\\\\_the\\\\_issue/) [IMBATV refusal to contact TNC](https://www.facebook.com/840515722697409/posts/2043073252441644/)|\\n|||3/12/2018|[Valve outright banning kuku after being unsatified with TNC handling](https://www.reddit.com/r/DotA2/comments/a2uary/tnc\\\\_and\\\\_the\\\\_chongqing\\\\_major/) [People calling out valve for their inconsistencies](https://old.reddit.com/r/DotA2/comments/a2umx5/valve\\\\_this\\\\_is\\\\_the\\\\_most\\\\_disappointed\\\\_i\\\\_have\\\\_ever) [2](https://www.reddit.com/r/DotA2/comments/a2ulv2/valves\\\\_statement\\\\_doesnt\\\\_make\\\\_sense/) [3](https://www.reddit.com/r/DotA2/comments/a3b62g/the\\\\_problem\\\\_with\\\\_valves\\\\_statement\\\\_is\\\\_part\\\\_of/) [4](https://old.reddit.com/r/DotA2/comments/a2yp85/since\\\\_valve\\\\_already\\\\_punished\\\\_kuku\\\\_and\\\\_tnc\\\\_should/)||\\n|||11/2/2019|[Kuku banned from attending WESG also held in CQ](https://www.reddit.com/r/DotA2/comments/apfsgy/kuku\\\\_is\\\\_not\\\\_allowed\\\\_to\\\\_enter\\\\_chongqing\\\\_for\\\\_the/) [Valve response](https://www.reddit.com/r/DotA2/comments/aplzur/danielj\\\\_valve\\\\_responds\\\\_regarding\\\\_kuku\\\\_and/) [reddit's reaction](https://www.reddit.com/r/DotA2/comments/apgsen/valve\\\\_straight\\\\_out\\\\_lied\\\\_about\\\\_the\\\\_kuku\\\\_issue\\\\_just/)|\\n|||||\\n\\nI have added additional link labelled in numbers for some reference and context.\\n\\n\\u0026#x200B;\\n\\nWe can safely say that Solo's want for consistency and transparency on valve part have not been realised. Their latest update to work on a long term solution is not openly released to the public and we are not informed if Solo has changed his stance on avoiding Epicenter. Valve are still buying time to make their rules and we are already at the tail end of the DPC.\\n\\n\\u0026#x200B;\\n\\nFrom the interview, Ceb has personally said he will be willing to take the same punishment as Kuku for precedence sake and that he probably would not go to EPICENTER himself, because he started receiving messages with threats. I respect that he is will to hold himself to that punishment.\\n\\n\\u0026#x200B;\\n\\nNow that TI invites are on the line, the docking of TNC points in the DPC could make or brake the chances TNC have for a TI invite as they are one of the team hotly in contention.\\n\\n\\u0026#x200B;\\n\\nValve reluctance to make clear rules for their game makes it very difficult for us audience observe the DPC as objective. I hope they release the schematics of their rules at least before the start of the next minor.\", \"author_fullname\": \"t2_27i74989\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bupc9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559199157.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559222693.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to draw comparison between the 2 incidents.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ECeb\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EKuku\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23/05/2019 Pt1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.removeddit.com/r/DotA2/comments/bs2l9m/ogceb_new_lvl_tilting/\\\"\\u003ECeb made a crude remark in an EU pub\\u003C/a\\u003E \\u003Ca href=\\\"https://ibb.co/sgpM4bF\\\"\\u003EFirst reported by u/LVR322 but retracted after Ceb contacted him\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9tippm/just_after_col_drama_tnc_kuku_did_it_again_at/\\\"\\u003EKuku made the crude remark in a Sea pub\\u003C/a\\u003E\\u003Ca href=\\\"https://twitter.com/GodBlessMali/status/1058326847321202688\\\"\\u003EInitial chinese reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23/05/2019 Pt2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bs9ero/ogceb/\\\"\\u003EAnother player from same game makes the same complaint\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsahbl/ogcebs_first_reply_for_people_who_are_too_lazy_to/\\\"\\u003ECeb initial apology\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9trn4s/kuku_apologized_with_a_plot_twist\\\"\\u003EMender of his Weibo account created an excuse for the remark and was exposed\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E24/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsgsbp/vp_solo_wont_participate_at_epicenter_unless\\\"\\u003ESolo take personal action to avoid Epicenter unless Valve make clear of their rules openly\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9trn4s/kuku_apologized_with_a_plot_twist\\\"\\u003EMender of his Weibo account created an excuse for the remark and was exposed\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsxs9o/vp9pasha_people_want_to_see_the_rules_so_that\\\"\\u003EPasha also voices his displeasure with valve inconsistencies\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsuu97/one_day_wiser_twitlonger_by_ceb/\\\"\\u003ECeb second apology\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9w1547/the_major_and_professional_dota_players/\\\"\\u003EValve initial reaction to let things sort itself out\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsrtg6/cebs_first_thread_op_ceb_told_me_that_he_might/\\\"\\u003ECeb interview with u/LVR322 on the issue\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9wrkhi/tncs_manager_confesses_that_he_was_the_one_who/\\\"\\u003ETNC manager admit to his mistake\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bt6lhw/solo_valve_and_seb_are_working_on_a_longterm/\\\"\\u003EValve now working with all stakeholders for a long term solution\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E24/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9zxa5q/cyborgmatt_confirms_kuku_and_skem_are_banned/\\\"\\u003ECyborgmatt first mention of the ban of Kuku and Skem from the CQ major\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9zxbyv/valve_if_you_let_kuku_and_skem_and_be_banned_from\\\"\\u003EImmediate reaction from reddit\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9zyhh6/i_believe_in_talk_no_jutsu_and_i_hope_others_will/\\\"\\u003ECeb reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a05u22/tnc_on_the_responsibility_being_taken_for_kuku/\\\"\\u003ETNC punishment to Kuku and the manager for their actions\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E27/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a0vobe/congratulations_to_the_2nd_sea_team_to_qualify/\\\"\\u003ETNC qualifies for CQ major\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2/12/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2agjg/grant_putting_his_casting_career_on_the_line_for/\\\"\\u003EGrantgrant putting himself on the line for Kuku\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2fc30/chongqing_major_updates_megathread/\\\"\\u003EAction taken by other casters\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2bt4r/tncs_new_statement_about_the_issue/\\\"\\u003ECQ Org correspondence with TNC\\u003C/a\\u003E \\u003Ca href=\\\"https://www.facebook.com/840515722697409/posts/2043073252441644/\\\"\\u003EIMBATV refusal to contact TNC\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/12/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2uary/tnc_and_the_chongqing_major/\\\"\\u003EValve outright banning kuku after being unsatified with TNC handling\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2umx5/valve_this_is_the_most_disappointed_i_have_ever\\\"\\u003EPeople calling out valve for their inconsistencies\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2ulv2/valves_statement_doesnt_make_sense/\\\"\\u003E2\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a3b62g/the_problem_with_valves_statement_is_part_of/\\\"\\u003E3\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2yp85/since_valve_already_punished_kuku_and_tnc_should/\\\"\\u003E4\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11/2/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/apfsgy/kuku_is_not_allowed_to_enter_chongqing_for_the/\\\"\\u003EKuku banned from attending WESG also held in CQ\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/aplzur/danielj_valve_responds_regarding_kuku_and/\\\"\\u003EValve response\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/apgsen/valve_straight_out_lied_about_the_kuku_issue_just/\\\"\\u003Ereddit\\u0026#39;s reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EI have added additional link labelled in numbers for some reference and context.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe can safely say that Solo\\u0026#39;s want for consistency and transparency on valve part have not been realised. Their latest update to work on a long term solution is not openly released to the public and we are not informed if Solo has changed his stance on avoiding Epicenter. Valve are still buying time to make their rules and we are already at the tail end of the DPC.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the interview, Ceb has personally said he will be willing to take the same punishment as Kuku for precedence sake and that he probably would not go to EPICENTER himself, because he started receiving messages with threats. I respect that he is will to hold himself to that punishment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow that TI invites are on the line, the docking of TNC points in the DPC could make or brake the chances TNC have for a TI invite as they are one of the team hotly in contention.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EValve reluctance to make clear rules for their game makes it very difficult for us audience observe the DPC as objective. I hope they release the schematics of their rules at least before the start of the next minor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bupc9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Achuapy\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bupc9u/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bupc9u/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559193893.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\", \"author_fullname\": \"t2_j01kt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"table test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bum3x6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559173943.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559202526.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bum3x6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fighterace00\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bum3x6/table_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bum3x6/table_test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559173726.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"TL;DR: No tl;dr\\n\\nI refuse to use an absolute tierlist to make my decisions on what should I be choosing upon level-up. I'd rather base my ability choices on the weapon I'm using as well as previously selected abilities.\\n\\n#Scythe\\n\\n##Traits:\\n\\n* It boasts high damage per hit, so I like to aim for a Nuking-one-by-one build.\\n* It boasts high knockback per hit, so I like to keep that in mind, it makes ASPD not as desirable because you could be knocking back a flying enemy through a wall and then your next shots won't hit it.\\n\\n##Core Ability Choices:\\n\\n* **Multi-shot** firing an extra layer of arrows in every direction you fire is awesome, even if they only deal a portion of your original DPH, specially helpful if you're going in point-blank range, *get as many of this as you can!*\\n* **Rage**, it is an absolute must-pick, it can greatly increase your offensive capabilities when you're in a pinch (and Offense is the best defense when your defense is failing you), I find it satisfying to land a crit almost 2x as strong as usual because I'm under 100hp.\\n * You lose HP, you gain power INSTANTLY.\\n * You gain HP, you lose power but have more breathing room.\\n* **Wingman**, is another absolute must-pick, your spirits can help you survive by fully blocking shots, and this only gets better and better as enemies fire more often and their projectile trajectories are less-predictable each World.\\n* **ATK** increases damage based off your Base DPS (Damage per shot), so, the higher your base DPS is, makes this ability more desirable for this weapon and Scythe has the highest DPS.\\n* **Diagonal** is in the eyes of some is reliant on having **Bouncy-Wall**, and yeah *stray that could or could not hit an enemy* are good, they are not the only saving grace for this ability. Keep in mind that:\\n * Each diagonal scythe you fire from this ablity, deals 100% of your hit damage, so by getting it you're pouring out 3x as much damage out in the wind as opposed to only firing a frontal scythe.\\n * Some enemies like to get up close and personal with you, and geting 3 nukes to their face can quickly get you out of this pit, including boss monters.\\n * If you get multiple **ATK**/**CRIT** upgrades and **Rage**, this is an instant synergy.\\n * You can add **Invincible** for even more time to go nuts on butchering bosses from the inside out (The first time I cleared the Chapter 3 Dragon, I just walked under its face and stood there for 3-4 seconds before it died).\\n * Multiple hits means multiple chances to crit, and the only thing you like more than landing muliple nukes instantly every time you fire a shot, is some of them critting the boss to oblivion.\\n * If you're good enough you can get to point-blank distance without touching the enemy and sucessfully firing 3 nukes in their face, this makes it much more desirable than **Side**/**Rear** (which only really work for this strat when you're firing from inside the enemy hitbox).\\n* **Blood-thirst** Healing off every kill can really add up, specially if you're quickly nuking enemies without giving them a chance to damage you at all, it pairs up incredibly well with **Rage**.\\n* **Extra-arrow** Having an extra chance to crit is nice, but it only applies in front of you, all the previous upgrades sound better than this. The one saving grace for extra-arrow is how good it is as a first/second upgrade, don't get a third arrow unless none of the above upgrades are available.\\n\\n##After Core \\n\\nPick those after you're satisfied with your DPS or when nothing in the core is available, thing of these as \\\"Nice to have, but not necessary\\\":\\n\\n* **Energy Shield** shots getting blocked can be a very good thing, but these run in a constant circular motion that you can't control, if you have **Wingman**, this would be a skip since you can just run behind your spirit while trying to dodge and the nice guy will block the shot for you.\\n* **Invincible** Going invincible a couple seconds is great on tight spots, but given how fast fights are, this can be rather situational, prioritize the core abilities. \\n* **Freeze**, making your enemies stand still allows you to hit them more easily. Just keep in mind that when building freeze you don't really want to go **Bouncy+Pierce+Ricochet**, because it could really make your game more hazardous when you unintentionally mess with an enemy's firing pattern by freezing them in an enemy-crowded screen.\\n* **CRIT** increases both crit chance and crit damage. Albeit RNG-reliant, CRIT is a solid pickup option at this point, thie higher your atk and if you have rage, the more effective crit will be, this is multiplicative, so don't ever prioritize **CRIT** over **ATK**/**Rage**.\\n* **ASPD** is detrimental for your early game, but it can be very good when you're really getting stacked on core offensive abilities. This is not crucial because we want to prioritize our DPS.\\n\\n##Situational Choices\\n\\nThese depend on other factors that don't necessarily heighten the strengths of the Scythe, they could work, but wouldn't necessarily be as effective as with a *Knife/Boomerang*:\\n\\n* **Ricochet**, it is in paper a very good pick: Having every hit you land automatically directed to the closest enemy really helps you make the most of every shot. However, a noticeable caveat is when fighting small enemies, enemies will be constantly knocked all over the screen, possibly bringing enemies closer than you would like them to be. Of course, if you're nuking enemies in 2-3 shots, it becomes less hazardous. And the knockback is much smaller (or none) for bosses.\\n* **Bouncy-wall**, simply having BW allows you to hit an enemy multiple times with the same projectile as long as you're firing it at a perpendicular-ish direction from a wall, or when they are located in corners. This isn't the case if you have the scythe ricochet to a different enemy. You can try and go for **Bouncy-Wall+Pierce/Ricochet+Diagonal/Rear/Side** and go ham, but none of these abilities actually increase your DPS, which is what you should be aiming to increase when building for nukes. Besides, flooding your screen with your own projectiles can make you miss enemy projectiles aimed at you.\\n* **Pierce**, I like to think of it as poor-man's **Ricochet**, the main difference being the projectile keeps going forward if there are no enemies close to ricochet towards, you could make a case for **Pierce**+**Bouncy-Wall** when fighting immobile/Gigantic bosses, or you could go this way and hope for one or two **Diagonal** to drop along so you can go bonkers, but I already covered that on Bouncy-Wall.\\n* **Side**/**Rear**, I like to think of it as poor-man's **Diagonal**, you can point-blank with it when you're eating a boss from the inside-out, but other than that it doesn't add as much value as **Diagonal**.\\n* **Walk through water**/**Walk through walls**, these could be nice depending on what World you're going through, pick them at discretion (Usually they'll cost you Max HP from a devil deal).\\n\\nDon't even think about it:\\n\\n* **Fire**/**Bolt**/**Poison**/**Holy**, it scales off your *Attack* and not off your *DPS*, making every fire tick for the same amount through the entire game, it doesn't really synergize with a strong, low fire-rate weapon.\\n* **Headshot**, you don't fire many times with a Scythe, so the there are less chances for this to proc, this is counter-synergy.\\n* **Fire orbs/swords**/**Bolt orbs/swords**/**Poison orbs/swords** , even if you're point-blanking, the effects granted by these abilities just don't really add much to your performance.\\n* **Summon one-eyed bat**/**Summon Shadow-clone** I just don't like these abilities, they mess with your drops, you can confuse the shadows for enemies and be distracted from projectiles and it's pretty much useless against most boss monsters. Just DON'T.\\n* **Slow Projectile**, See... enemies move, and the slower your projectile travels, the less likely it is your hit will land. It doesn't really add much to what a Scythe offers, from my experience, I just stray away from it as much as I can, usually there are more desirable abilities to choose from.\\n* **Pet CRIT/ASPD/ATK**, you don't really control these guys, and I don't really like to have to rely on their attack patterns to clear content.\\n\\nWhen built right, the scythe tends to get stupid strong, but I believe this is the case for most weapons, as long as you're playing them right.\\n\\nAny abilities I might have missed are either because they are irrelevant or I haven't unlocked them yet (I'm sitting at stage 4, feel free to laugh and point at me while I have a lot of fun nuking mobs).\", \"author_fullname\": \"t2_h9397\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ability recommendations (Not a tierlist)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buicsw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559159476.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559183584.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETL;DR: No tl;dr\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI refuse to use an absolute tierlist to make my decisions on what should I be choosing upon level-up. I\\u0026#39;d rather base my ability choices on the weapon I\\u0026#39;m using as well as previously selected abilities.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EScythe\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003ETraits:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt boasts high damage per hit, so I like to aim for a Nuking-one-by-one build.\\u003C/li\\u003E\\n\\u003Cli\\u003EIt boasts high knockback per hit, so I like to keep that in mind, it makes ASPD not as desirable because you could be knocking back a flying enemy through a wall and then your next shots won\\u0026#39;t hit it.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ECore Ability Choices:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EMulti-shot\\u003C/strong\\u003E firing an extra layer of arrows in every direction you fire is awesome, even if they only deal a portion of your original DPH, specially helpful if you\\u0026#39;re going in point-blank range, \\u003Cem\\u003Eget as many of this as you can!\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERage\\u003C/strong\\u003E, it is an absolute must-pick, it can greatly increase your offensive capabilities when you\\u0026#39;re in a pinch (and Offense is the best defense when your defense is failing you), I find it satisfying to land a crit almost 2x as strong as usual because I\\u0026#39;m under 100hp.\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou lose HP, you gain power INSTANTLY.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou gain HP, you lose power but have more breathing room.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EWingman\\u003C/strong\\u003E, is another absolute must-pick, your spirits can help you survive by fully blocking shots, and this only gets better and better as enemies fire more often and their projectile trajectories are less-predictable each World.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EATK\\u003C/strong\\u003E increases damage based off your Base DPS (Damage per shot), so, the higher your base DPS is, makes this ability more desirable for this weapon and Scythe has the highest DPS.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E is in the eyes of some is reliant on having \\u003Cstrong\\u003EBouncy-Wall\\u003C/strong\\u003E, and yeah \\u003Cem\\u003Estray that could or could not hit an enemy\\u003C/em\\u003E are good, they are not the only saving grace for this ability. Keep in mind that:\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EEach diagonal scythe you fire from this ablity, deals 100% of your hit damage, so by getting it you\\u0026#39;re pouring out 3x as much damage out in the wind as opposed to only firing a frontal scythe.\\u003C/li\\u003E\\n\\u003Cli\\u003ESome enemies like to get up close and personal with you, and geting 3 nukes to their face can quickly get you out of this pit, including boss monters.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf you get multiple \\u003Cstrong\\u003EATK\\u003C/strong\\u003E/\\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E upgrades and \\u003Cstrong\\u003ERage\\u003C/strong\\u003E, this is an instant synergy.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou can add \\u003Cstrong\\u003EInvincible\\u003C/strong\\u003E for even more time to go nuts on butchering bosses from the inside out (The first time I cleared the Chapter 3 Dragon, I just walked under its face and stood there for 3-4 seconds before it died).\\u003C/li\\u003E\\n\\u003Cli\\u003EMultiple hits means multiple chances to crit, and the only thing you like more than landing muliple nukes instantly every time you fire a shot, is some of them critting the boss to oblivion.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf you\\u0026#39;re good enough you can get to point-blank distance without touching the enemy and sucessfully firing 3 nukes in their face, this makes it much more desirable than \\u003Cstrong\\u003ESide\\u003C/strong\\u003E/\\u003Cstrong\\u003ERear\\u003C/strong\\u003E (which only really work for this strat when you\\u0026#39;re firing from inside the enemy hitbox).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBlood-thirst\\u003C/strong\\u003E Healing off every kill can really add up, specially if you\\u0026#39;re quickly nuking enemies without giving them a chance to damage you at all, it pairs up incredibly well with \\u003Cstrong\\u003ERage\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EExtra-arrow\\u003C/strong\\u003E Having an extra chance to crit is nice, but it only applies in front of you, all the previous upgrades sound better than this. The one saving grace for extra-arrow is how good it is as a first/second upgrade, don\\u0026#39;t get a third arrow unless none of the above upgrades are available.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EAfter Core\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003EPick those after you\\u0026#39;re satisfied with your DPS or when nothing in the core is available, thing of these as \\u0026quot;Nice to have, but not necessary\\u0026quot;:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EEnergy Shield\\u003C/strong\\u003E shots getting blocked can be a very good thing, but these run in a constant circular motion that you can\\u0026#39;t control, if you have \\u003Cstrong\\u003EWingman\\u003C/strong\\u003E, this would be a skip since you can just run behind your spirit while trying to dodge and the nice guy will block the shot for you.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EInvincible\\u003C/strong\\u003E Going invincible a couple seconds is great on tight spots, but given how fast fights are, this can be rather situational, prioritize the core abilities. \\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFreeze\\u003C/strong\\u003E, making your enemies stand still allows you to hit them more easily. Just keep in mind that when building freeze you don\\u0026#39;t really want to go \\u003Cstrong\\u003EBouncy+Pierce+Ricochet\\u003C/strong\\u003E, because it could really make your game more hazardous when you unintentionally mess with an enemy\\u0026#39;s firing pattern by freezing them in an enemy-crowded screen.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E increases both crit chance and crit damage. Albeit RNG-reliant, CRIT is a solid pickup option at this point, thie higher your atk and if you have rage, the more effective crit will be, this is multiplicative, so don\\u0026#39;t ever prioritize \\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E over \\u003Cstrong\\u003EATK\\u003C/strong\\u003E/\\u003Cstrong\\u003ERage\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EASPD\\u003C/strong\\u003E is detrimental for your early game, but it can be very good when you\\u0026#39;re really getting stacked on core offensive abilities. This is not crucial because we want to prioritize our DPS.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ESituational Choices\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003EThese depend on other factors that don\\u0026#39;t necessarily heighten the strengths of the Scythe, they could work, but wouldn\\u0026#39;t necessarily be as effective as with a \\u003Cem\\u003EKnife/Boomerang\\u003C/em\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERicochet\\u003C/strong\\u003E, it is in paper a very good pick: Having every hit you land automatically directed to the closest enemy really helps you make the most of every shot. However, a noticeable caveat is when fighting small enemies, enemies will be constantly knocked all over the screen, possibly bringing enemies closer than you would like them to be. Of course, if you\\u0026#39;re nuking enemies in 2-3 shots, it becomes less hazardous. And the knockback is much smaller (or none) for bosses.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBouncy-wall\\u003C/strong\\u003E, simply having BW allows you to hit an enemy multiple times with the same projectile as long as you\\u0026#39;re firing it at a perpendicular-ish direction from a wall, or when they are located in corners. This isn\\u0026#39;t the case if you have the scythe ricochet to a different enemy. You can try and go for \\u003Cstrong\\u003EBouncy-Wall+Pierce/Ricochet+Diagonal/Rear/Side\\u003C/strong\\u003E and go ham, but none of these abilities actually increase your DPS, which is what you should be aiming to increase when building for nukes. Besides, flooding your screen with your own projectiles can make you miss enemy projectiles aimed at you.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPierce\\u003C/strong\\u003E, I like to think of it as poor-man\\u0026#39;s \\u003Cstrong\\u003ERicochet\\u003C/strong\\u003E, the main difference being the projectile keeps going forward if there are no enemies close to ricochet towards, you could make a case for \\u003Cstrong\\u003EPierce\\u003C/strong\\u003E+\\u003Cstrong\\u003EBouncy-Wall\\u003C/strong\\u003E when fighting immobile/Gigantic bosses, or you could go this way and hope for one or two \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E to drop along so you can go bonkers, but I already covered that on Bouncy-Wall.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESide\\u003C/strong\\u003E/\\u003Cstrong\\u003ERear\\u003C/strong\\u003E, I like to think of it as poor-man\\u0026#39;s \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E, you can point-blank with it when you\\u0026#39;re eating a boss from the inside-out, but other than that it doesn\\u0026#39;t add as much value as \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EWalk through water\\u003C/strong\\u003E/\\u003Cstrong\\u003EWalk through walls\\u003C/strong\\u003E, these could be nice depending on what World you\\u0026#39;re going through, pick them at discretion (Usually they\\u0026#39;ll cost you Max HP from a devil deal).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EDon\\u0026#39;t even think about it:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFire\\u003C/strong\\u003E/\\u003Cstrong\\u003EBolt\\u003C/strong\\u003E/\\u003Cstrong\\u003EPoison\\u003C/strong\\u003E/\\u003Cstrong\\u003EHoly\\u003C/strong\\u003E, it scales off your \\u003Cem\\u003EAttack\\u003C/em\\u003E and not off your \\u003Cem\\u003EDPS\\u003C/em\\u003E, making every fire tick for the same amount through the entire game, it doesn\\u0026#39;t really synergize with a strong, low fire-rate weapon.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EHeadshot\\u003C/strong\\u003E, you don\\u0026#39;t fire many times with a Scythe, so the there are less chances for this to proc, this is counter-synergy.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFire orbs/swords\\u003C/strong\\u003E/\\u003Cstrong\\u003EBolt orbs/swords\\u003C/strong\\u003E/\\u003Cstrong\\u003EPoison orbs/swords\\u003C/strong\\u003E , even if you\\u0026#39;re point-blanking, the effects granted by these abilities just don\\u0026#39;t really add much to your performance.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESummon one-eyed bat\\u003C/strong\\u003E/\\u003Cstrong\\u003ESummon Shadow-clone\\u003C/strong\\u003E I just don\\u0026#39;t like these abilities, they mess with your drops, you can confuse the shadows for enemies and be distracted from projectiles and it\\u0026#39;s pretty much useless against most boss monsters. Just DON\\u0026#39;T.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESlow Projectile\\u003C/strong\\u003E, See... enemies move, and the slower your projectile travels, the less likely it is your hit will land. It doesn\\u0026#39;t really add much to what a Scythe offers, from my experience, I just stray away from it as much as I can, usually there are more desirable abilities to choose from.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPet CRIT/ASPD/ATK\\u003C/strong\\u003E, you don\\u0026#39;t really control these guys, and I don\\u0026#39;t really like to have to rely on their attack patterns to clear content.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhen built right, the scythe tends to get stupid strong, but I believe this is the case for most weapons, as long as you\\u0026#39;re playing them right.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny abilities I might have missed are either because they are irrelevant or I haven\\u0026#39;t unlocked them yet (I\\u0026#39;m sitting at stage 4, feel free to laugh and point at me while I have a lot of fun nuking mobs).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buicsw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"snivs\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buicsw/ability_recommendations_not_a_tierlist/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buicsw/ability_recommendations_not_a_tierlist/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559154784.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts\\n**1 Correct Seed:** 15pts\\n**2 Correct Seeds:** +30pts(45 total)\\n**(S)emi(F)inalist:** 180pts\\n**(F)inalist:** 380pts\\n**(W)inners:** 780pts\\n**Score in favor of your winner:** 190pts\\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"author_fullname\": \"t2_ze11d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"RLCS Season 7 LAN Bracket Prediction\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bufkvu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559170095.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts\\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15pts\\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30pts(45 total)\\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180pts\\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380pts\\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780pts\\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190pts\\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bufkvu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"RyanDaLegendary\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559141295.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test 1\", \"author_fullname\": \"t2_jb0ym\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"up-test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bu8y26\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559124859.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest 1\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu8y26\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dekarde\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu8y26/uptest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559096059.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"https://i.redd.it/n748pckqj1131.png\\n\\nHere is our game\", \"author_fullname\": \"t2_143lgq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"n748pckqj1131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1080, \"x\": 1920, \"u\": \"https://i.redd.it/n748pckqj1131.png\"}, \"m\": \"image/png\", \"id\": \"n748pckqj1131\"}}, \"name\": \"t3_bu7uio\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/sr9ge0kfsgNx8x4rIDjOnKDSVCL18SDnkOraCwBHop8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559118474.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/n748pckqj1131.png\\\"\\u003Ehttps://i.redd.it/n748pckqj1131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is our game\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7uio\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vivid_Mauve\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu7uio/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu7uio/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559089674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test test\", \"author_fullname\": \"t2_143lgq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Claim Game\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bu7jss\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559116818.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7jss\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vivid_Mauve\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu7jss/claim_game/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu7jss/claim_game/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559088018.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_nlpmjd2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I HATE THE FUCKING NlG8GERS, THEY SMELL DAAAWG. LIKE I DONT EVEN KNOW WHY, I THINK ITS BECAUSE OF THEIR DIRT MONKEY SKIN OR SOME SHIT LIKE THAT\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bu3xsz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ArScYM5Q48TrtDof4ST-2EeyNmmkxsGz6QkPcuHwYmI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559098637.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?auto=webp\\u0026s=82354c537d30bbf07eb9b7e3191e3834a8af2ce6\", \"width\": 640, \"height\": 838}, \"resolutions\": [{\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=75ec4f00b631f497c0aafdef0e0a758953e48a3a\", \"width\": 108, \"height\": 141}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c0e25d181ba2cb381ec414e0ac76752eb45b11f6\", \"width\": 216, \"height\": 282}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8eff642156f04ce1ad2e42bc2fb782b11b88d271\", \"width\": 320, \"height\": 419}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f6fb42bc9a8b65f8be8afac2b6190130b5463160\", \"width\": 640, \"height\": 838}], \"variants\": {}, \"id\": \"950GL9F_ZaUbbJK3rJxkM1RLCMb6VYKACygOpjTiR4s\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu3xsz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KFC_MANAGER_TRIHARD\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu3xsz/i_hate_the_fucking_nlg8gers_they_smell_daaawg/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/y5uqepxj10131.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559069837.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_kvp37q4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_btnd7z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Onn2p7TcF2NuasNIGcR0CfMWDLEDmV12cjySeav5UGM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559000072.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?auto=webp\\u0026s=090d65871b6a42fa951e66396dce697552b174c1\", \"width\": 1600, \"height\": 1600}, \"resolutions\": [{\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=15a7e193fed161120c580133451cc0809b4e3257\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=005721458dcadca85be7d27fd446e30eff44415b\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3eb3e6fba97d72e1efc6f464dae29c2de85ec963\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=3a3eeba7579458cb8713415f60484fa0d23f402f\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=150168de16c3811111564cb92578ec189608ea9d\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=3df90efe0f287fa027b51ea347ba65096d893233\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"FqP4WYIjTnkAX8xVjzbzRRdIW6207vOaOhoPRV5_-Xg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btnd7z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"agasitko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btnd7z/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/4mvy2odfwr031.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558971272.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Just migrated the unit tests for one of our projects from Boost.Test to Doctest and decided to share the time measurements while I still have the two branches at hand. You can see the number of the test cases in the run-time output below.\\n\\nThe tests were done on virtual machine with 4 cores and 8 GB of RAM.\\n\\nThe build was done with GCC 7.3 with `-std='c++17' -O2 -Wall -Wextra -Werror -Winvalid-pch` and 4 threads for parallel building. The setup with Doctest has two additional flags:\\n\\n`-DDOCTEST_CONFIG_SUPER_FAST_ASSERTS -DDOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION`.\\n\\nThe Boost version that I'm using is 1.69 and the Doctest version is 2.3.2.\\n\\nFor the run-time tests, I ran them 3 times each and picked the slower ones. The timings for each version was in the same ballpark anyway.\\n\\nFull rebuild, including the precompiled header, with Boost.Test\\n\\n real \\u00a0 \\u00a01m5.710s \\n user \\u00a0 \\u00a03m42.350s \\n sys \\u00a0 \\u00a0 0m5.751s\\n\\nFull rebuild, including the precompiled header, with Doctest\\n\\n real \\u00a0 \\u00a00m52.567s \\n user \\u00a0 \\u00a02m40.018s \\n sys \\u00a0 \\u00a0 0m4.993s \\n\\nRebuild, without the precompiled header, with Boost.Test\\n\\n real \\u00a0 \\u00a01m2.391s \\n user \\u00a0 \\u00a03m40.168s \\n sys \\u00a0 \\u00a0 0m5.532s \\n\\nRebuild, without the precompiled header, with Doctest\\n\\n real \\u00a0 \\u00a00m46.351s \\n user \\u00a0 \\u00a02m38.131s \\n sys \\u00a0 \\u00a0 0m4.029s \\n\\nRun-time with Boost.Test\\n\\n time ./tests.bin -r short \\n Running 149 test cases... \\n \\n Test module \\\"p3_tests\\\" has passed with: \\n \\u00a0 149 test cases out of 149 passed \\n \\u00a0 1166 assertions out of 1166 passed \\n \\n real \\u00a0 \\u00a00m0.056s \\n user \\u00a0 \\u00a00m0.025s \\n sys \\u00a0 \\u00a0 0m0.031s \\n\\nRun-time with Doctest\\n\\n time ./tests.bin \\n [doctest] doctest version is \\\"2.3.2\\\" \\n [doctest] run with \\\"--help\\\" for options \\n =============================================================================== \\n [doctest] test cases: \\u00a0 \\u00a0149 | \\u00a0 \\u00a0149 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\u00a0 \\u00a0 \\u00a00 skipped \\n [doctest] assertions: \\u00a0 1167 | \\u00a0 1167 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\n [doctest] Status: SUCCESS! \\n \\n real \\u00a0 \\u00a00m0.042s \\n user \\u00a0 \\u00a00m0.021s \\n sys \\u00a0 \\u00a0 0m0.021s\", \"author_fullname\": \"t2_tk6dd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Timing Boost.Test and Doctest\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btkt4w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558984671.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust migrated the unit tests for one of our projects from Boost.Test to Doctest and decided to share the time measurements while I still have the two branches at hand. You can see the number of the test cases in the run-time output below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe tests were done on virtual machine with 4 cores and 8 GB of RAM.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe build was done with GCC 7.3 with \\u003Ccode\\u003E-std=\\u0026#39;c++17\\u0026#39; -O2 -Wall -Wextra -Werror -Winvalid-pch\\u003C/code\\u003E and 4 threads for parallel building. The setup with Doctest has two additional flags:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E-DDOCTEST_CONFIG_SUPER_FAST_ASSERTS -DDOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Boost version that I\\u0026#39;m using is 1.69 and the Doctest version is 2.3.2.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the run-time tests, I ran them 3 times each and picked the slower ones. The timings for each version was in the same ballpark anyway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFull rebuild, including the precompiled header, with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a01m5.710s \\nuser \\u00a0 \\u00a03m42.350s \\nsys \\u00a0 \\u00a0 0m5.751s\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EFull rebuild, including the precompiled header, with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a00m52.567s \\nuser \\u00a0 \\u00a02m40.018s \\nsys \\u00a0 \\u00a0 0m4.993s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERebuild, without the precompiled header, with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a01m2.391s \\nuser \\u00a0 \\u00a03m40.168s \\nsys \\u00a0 \\u00a0 0m5.532s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERebuild, without the precompiled header, with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a00m46.351s \\nuser \\u00a0 \\u00a02m38.131s \\nsys \\u00a0 \\u00a0 0m4.029s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERun-time with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Etime ./tests.bin -r short \\nRunning 149 test cases... \\n\\nTest module \\u0026quot;p3_tests\\u0026quot; has passed with: \\n\\u00a0 149 test cases out of 149 passed \\n\\u00a0 1166 assertions out of 1166 passed \\n\\nreal \\u00a0 \\u00a00m0.056s \\nuser \\u00a0 \\u00a00m0.025s \\nsys \\u00a0 \\u00a0 0m0.031s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERun-time with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Etime ./tests.bin \\n[doctest] doctest version is \\u0026quot;2.3.2\\u0026quot; \\n[doctest] run with \\u0026quot;--help\\u0026quot; for options \\n=============================================================================== \\n[doctest] test cases: \\u00a0 \\u00a0149 | \\u00a0 \\u00a0149 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\u00a0 \\u00a0 \\u00a00 skipped \\n[doctest] assertions: \\u00a0 1167 | \\u00a0 1167 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\n[doctest] Status: SUCCESS! \\n\\nreal \\u00a0 \\u00a00m0.042s \\nuser \\u00a0 \\u00a00m0.021s \\nsys \\u00a0 \\u00a0 0m0.021s\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btkt4w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pavel_v\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btkt4w/timing_boosttest_and_doctest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btkt4w/timing_boosttest_and_doctest/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558955871.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_znwfd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 109, \"hide_score\": false, \"name\": \"t3_btgu09\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/G7me3nXuT4WiSJ_5w66HsnXsLrt6szjE7w7XGClSb8Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558954744.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?auto=webp\\u0026s=393cdc6165f09e5e16b544fb51e88087b027c5c0\", \"width\": 499, \"height\": 389}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fa7f679c4a6c8b1c74b7d9df06e2157d168876e6\", \"width\": 108, \"height\": 84}, {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c96d97f5ca9370651816f1391b1a55a33cce980a\", \"width\": 216, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d436b0e54126c4dc606260434294b6064c053d07\", \"width\": 320, \"height\": 249}], \"variants\": {}, \"id\": \"E-YB0z8GJjScZr1sRZLjjEz-pdps6apmJB4z1z2yzLA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btgu09\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Conan_JP\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btgu09/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.imgur.com/5CLcQGP.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558925944.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\nJust comment before pm\\n\\nLocal: 79401\\n\\n[Timestamps](https://imgur.com/a/qfjjjRx)\\n\\n|Item|Local + shipping|Description|\\n|:-|:-|:-|\\n|ASUS Prime X470-Pro AMD Ryzen|$100 shipped|Have original box, SLI adapter, and screws|\\n|2x G.Skill TridentZ RGB Series 8GB|$105 shipped|running at 3200 MHz|\\n|EVGA Supernova 750 G2, 80+ Gold 750W|$80 shipped|Fully Modular, EVGA ECO Mode|\\n|ANNE PRO 2 RGB|$75shipped|Missing Y Key replaced w/ colored key cap|\\n|SteelSeries Arcits 5 RGB ( Headset)|$40 shipped|Works perfectly although there is a small scuff|\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"E2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btdfqu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558934579.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust comment before pm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELocal: 79401\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/qfjjjRx\\\"\\u003ETimestamps\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ELocal + shipping\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EASUS Prime X470-Pro AMD Ryzen\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$100 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHave original box, SLI adapter, and screws\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2x G.Skill TridentZ RGB Series 8GB\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$105 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Erunning at 3200 MHz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEVGA Supernova 750 G2, 80+ Gold 750W\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$80 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFully Modular, EVGA ECO Mode\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EANNE PRO 2 RGB\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$75shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMissing Y Key replaced w/ colored key cap\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESteelSeries Arcits 5 RGB ( Headset)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EWorks perfectly although there is a small scuff\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?auto=webp\\u0026s=e3cd8025431b8d4e4a001c163dff8247a6d332fa\", \"width\": 2048, \"height\": 1536}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5ee5cf7d1be3464420cac8148fb7776b3db5ce4e\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=36cf5d02c9cf110ea13a4a1805bdd615aeb871a8\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9fb11c2092ec2a4287ec4cc436ab14659175ce6b\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=4a74f9cb14b1f7a893dc86ed40c19d0e773ba8f6\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=740f8d332c2129b8abead72eef7968317d5cde8d\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c46ac181d7dd9625a47805f6b36077275271ad4f\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"3O1ITl-5hWXF7luK9SXQMRkyhjwvYMhGJEuuQC-l1i4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btdfqu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/PostPreview/comments/btdfqu/e2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btdfqu/e2/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558905779.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"So for starters, please comment before PM'ing me. None of the listings include shipping, I can give you a quote if you tell me what you want and give me your zip code. Anything that can fit in a small priority mail box will be a $7.20 flat fee. Everything else will vary. I have some trades on here as well as excellent feedback on ebay so if you would like to see that let me know.\\n\\n\\u0026#x200B;\\n\\n|Item|Description|Price|\\n|:-|:-|:-|\\n|Black Realforce 87u|Great working condition. No keycaps included, but it has been converted to mini USB and jtk mx sliders|$115|\\n|IBM Model M |THIS IS NOT WORKING, IT IS FOR PARTS ONLY. | $10|\\n|Battlestation io Wrist Rest |Purple Heart Color, made for a 60% keyboard|$30|\\n|HKP Gas Mask |Green Poison black eyes|$14|\\n|Keyforge Osiris|Chlorium Color|$40|\\n|girldc Stormtrooper|Black Stormtrooper (Looks dark grey)|$30|\\n|JTK Sliders|Jtk purple sliders installed once and removed shortly after|$15|\\n|Alps Keyset|Full keyset I pulled off of a vintage board. Let me know if you want more pictures|$10|\\n|Tektronix F\\u0026F|Foam and Foil board, i'm not totally sure if it works. Chassis is made out of metal and VERY heavy|$25|\\n\\n\\u0026#x200B;\\n\\nAs for the trade, I don't want to pay anything extra, if you find stuff you like and you want to trade for a black HHKB stock or modded, just let me know.\", \"author_fullname\": \"t2_xrrbz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[US-NJ][H]Realforce 87u, Keyboards, Artisans, Battlestation 10 wrist rest [W]Paypal, Black HHKB\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btb4ye\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558895507.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558923254.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo for starters, please comment before PM\\u0026#39;ing me. None of the listings include shipping, I can give you a quote if you tell me what you want and give me your zip code. Anything that can fit in a small priority mail box will be a $7.20 flat fee. Everything else will vary. I have some trades on here as well as excellent feedback on ebay so if you would like to see that let me know.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlack Realforce 87u\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGreat working condition. No keycaps included, but it has been converted to mini USB and jtk mx sliders\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$115\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EIBM Model M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETHIS IS NOT WORKING, IT IS FOR PARTS ONLY.\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBattlestation io Wrist Rest\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurple Heart Color, made for a 60% keyboard\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHKP Gas Mask\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGreen Poison black eyes\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$14\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EKeyforge Osiris\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EChlorium Color\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Egirldc Stormtrooper\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlack Stormtrooper (Looks dark grey)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJTK Sliders\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJtk purple sliders installed once and removed shortly after\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$15\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EAlps Keyset\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFull keyset I pulled off of a vintage board. Let me know if you want more pictures\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETektronix F\\u0026amp;F\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFoam and Foil board, i\\u0026#39;m not totally sure if it works. Chassis is made out of metal and VERY heavy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$25\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for the trade, I don\\u0026#39;t want to pay anything extra, if you find stuff you like and you want to trade for a black HHKB stock or modded, just let me know.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btb4ye\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"blackriver35\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btb4ye/usnjhrealforce_87u_keyboards_artisans/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btb4ye/usnjhrealforce_87u_keyboards_artisans/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558894454.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Test\\n\\nhttps://i.redd.it/43djennmkj031.jpg\\n\\nhttps://i.redd.it/bjdfsn4pkj031.jpg\\n\\nanother test\", \"author_fullname\": \"t2_11gzbx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"blub\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 56, \"hide_score\": false, \"media_metadata\": {\"43djennmkj031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 775, \"x\": 1920, \"u\": \"https://i.redd.it/43djennmkj031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"43djennmkj031\"}, \"bjdfsn4pkj031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 775, \"x\": 1920, \"u\": \"https://i.redd.it/bjdfsn4pkj031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"bjdfsn4pkj031\"}}, \"name\": \"t3_bt6wuy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/0UAaA8XpjYLxWwuXJiyi-R4dMzJm8wGf2wmAH_mbjlY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558899273.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/43djennmkj031.jpg\\\"\\u003Ehttps://i.redd.it/43djennmkj031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/bjdfsn4pkj031.jpg\\\"\\u003Ehttps://i.redd.it/bjdfsn4pkj031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eanother test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt6wuy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AnotherDayOfLife\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt6wuy/blub/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt6wuy/blub/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558870473.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\#opioid #statistics #pandemic #emergency #drugs\\n\\nhttps://i.redd.it/od006dfy9j031.png\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Crisis - By the Numbers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"od006dfy9j031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1008, \"x\": 1800, \"u\": \"https://i.redd.it/od006dfy9j031.png\"}, \"m\": \"image/png\", \"id\": \"od006dfy9j031\"}}, \"name\": \"t3_bt6gq0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ULg29n5F6KbOENW5WKQV8hVHUaCSmwUV2Pvi7lAzTnw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558895647.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#opioid #statistics #pandemic #emergency #drugs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/od006dfy9j031.png\\\"\\u003Ehttps://i.redd.it/od006dfy9j031.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt6gq0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt6gq0/the_opioid_crisis_by_the_numbers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt6gq0/the_opioid_crisis_by_the_numbers/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558866847.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Crisis - By the Numbers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bt570v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/J57kjqkqWulPTF0F2CGsfdOw-ZHKtDF8-vmDnuC1ZrA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558884640.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?auto=webp\\u0026s=883d696a42fd4b489a2443ac7948425234dead06\", \"width\": 1800, \"height\": 1008}, \"resolutions\": [{\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b2271e2b6a77c996f1b68d98c2f21282f5fc64af\", \"width\": 108, \"height\": 60}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a735587be8be935850d72f92104abbd7524f7989\", \"width\": 216, \"height\": 120}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f2b57eb686d7a9cae234ef30d0929508d82f9b0c\", \"width\": 320, \"height\": 179}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=0b51cbc6ab0ed7c1b0603fa9bc60be8a314cfd00\", \"width\": 640, \"height\": 358}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=b6d4f46ac0317e4d199b1a2314dca58d625149f3\", \"width\": 960, \"height\": 537}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=a90b09a8c6c8fb24697eac10c348ab894bbc8a62\", \"width\": 1080, \"height\": 604}], \"variants\": {}, \"id\": \"i4RH5BnT_PvxAameb4XpCaX1qIqRrxlNsTuO6tn_QXU\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt570v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt570v/the_opioid_crisis_by_the_numbers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/bgwlznx4di031.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558855840.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2hmmk43f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Falcon view...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bt1azs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5yIb3YjCt03EmRM3zlVIMsQhCs43pA7wbEqktH19Cfc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558856981.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?auto=webp\\u0026s=3c1bb6209fd60cd5f0a5f7df4bb35496e2fa1589\", \"width\": 1440, \"height\": 2560}, \"resolutions\": [{\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0ef05f2642c8199aa57f21c0d54b9c69b5f71d5f\", \"width\": 108, \"height\": 192}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=df094af1b4ddd4fc3447cf0656ec22e7f7c02e78\", \"width\": 216, \"height\": 384}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6a092c4d9a07e3789a75ce521d34e21d29b86f4a\", \"width\": 320, \"height\": 568}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=474632e119d567afa4d85306584e47fb276ac835\", \"width\": 640, \"height\": 1137}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=db7e4fc3eaa4d78682a1f9bf880fc8414d69059f\", \"width\": 960, \"height\": 1706}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d6be90f315a480dc381dc3ec39f55f2a6c961fd2\", \"width\": 1080, \"height\": 1920}], \"variants\": {}, \"id\": \"ARZyk4zeMGPtRhvZx49MKXfvtDuF1hkTmnswophEGiA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt1azs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aantoniss\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt1azs/falcon_view/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/jx5956qz2g031.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1558828181.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_35aabssu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bt13kk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/bUwI22Oy5hk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bt13kk\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Tn0uh2-gqGg07MFL1mh36xt2XVPaD43KQ-yyrgULlgw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558855680.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?auto=webp\\u0026s=9ae2a3720570e28a4271afd504fe7644c5ae6af5\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e891ae8f3829df0995f789d716b42297d899791d\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e9528bd0e8d23e42b9a583446d121186f9dd3e0a\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=57b456dd9a2dd298987a841d98226090b702f41b\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"GFq8VRTcX1rYutnbOlEzIndyVsutsicYznT49lCUJ_c\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt13kk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Goldymires\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt13kk/ultimate_skyrim_room_filled_with_magelight_balls/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=bUwI22Oy5hk\\u0026feature=youtu.be\", \"subreddit_subscribers\": 703, \"created_utc\": 1558826880.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/bUwI22Oy5hk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"tested\", \"author_fullname\": \"t2_f4ra2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing 123\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bt0w6n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558829283.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558854391.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etested\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt0w6n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"User09060657542\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt0w6n/testing_123/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558825591.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://imgur.com/register/thirdparty/google](https://imgur.com/register/thirdparty/google)\", \"author_fullname\": \"t2_2zkr00l4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"BvS\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsyl0k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558841880.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/register/thirdparty/google\\\"\\u003Ehttps://imgur.com/register/thirdparty/google\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?auto=webp\\u0026s=d94e7feac682dd559e4a8b3fbbdd38d08adf1d44\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=de5d021977c520c60b9fe96c226154cceb44ec68\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=733ff487f388d32420b5247b49f7728a869fafba\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=69eeff9db988ab6c60ccca380e0cb106af7d12f6\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=dcacd413d3fad44ec5470093a98420843adb1dbb\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=58c767d070db90d652c921e75dd04d2e5bf260b1\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9b4e777c321d825eb745725cb99d589cb8fc7df8\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"nHmB3tUVKrCUK7BucSpK1ZRAoN-XyaQHrTTqr75VHnw\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsyl0k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"T-8-0-0\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsyl0k/bvs/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558813080.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"In the 1990's, opioids became available to the general public with reassurance from pharmaceutical companies that patients would not become addicted to them. Fast forward 25 years and now we have a global epidemic. The widespread misuse of opioids can be related to the greater rates of prescription of opioids. According to the World Health Organisation roughly 118,000 people lost their lives due to opioid use disorders and an estimated 27 million people suffer from opioid use disorders.\\n\\n\\\\#opioid #opioidabuse #addiction #crisis #publichealth\\n\\n\\u0026#x200B;\\n\\nFor more information visit: [https://wp.deakin.edu.au/deakinsso\\\\_242366117/2019/04/10/the-painkillers-are-killing-us/](https://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/)\\n\\nhttps://i.redd.it/60b8yo4o5e031.jpg\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Epidemic\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"media_metadata\": {\"60b8yo4o5e031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1375, \"x\": 2500, \"u\": \"https://i.redd.it/60b8yo4o5e031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"60b8yo4o5e031\"}}, \"name\": \"t3_bsx5gx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/XQozoeoqb6ku7BcrTRAau0oUH_lExeTt6WxLONr8RpY.jpg\", \"edited\": 1558866228.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558834399.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn the 1990\\u0026#39;s, opioids became available to the general public with reassurance from pharmaceutical companies that patients would not become addicted to them. Fast forward 25 years and now we have a global epidemic. The widespread misuse of opioids can be related to the greater rates of prescription of opioids. According to the World Health Organisation roughly 118,000 people lost their lives due to opioid use disorders and an estimated 27 million people suffer from opioid use disorders.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#opioid #opioidabuse #addiction #crisis #publichealth\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more information visit: \\u003Ca href=\\\"https://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/\\\"\\u003Ehttps://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/60b8yo4o5e031.jpg\\\"\\u003Ehttps://i.redd.it/60b8yo4o5e031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?auto=webp\\u0026s=7cdb1bbd0e34ff3d8c3f0ec52de03f8436d374f3\", \"width\": 1024, \"height\": 687}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5ec6842c7828c02fe7f3fde357f0a4ab2ee61791\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4e3991a079067adb7748d2dcb08fe5b9b6a9dc35\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c94c9b8c0a597eb5e84d847bb1e25c757b1cb520\", \"width\": 320, \"height\": 214}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b596c3cfff0267b17a13844f43c079a3f66e6494\", \"width\": 640, \"height\": 429}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=fbf7168e509bdd47347b08ba83c83d38fdd8821d\", \"width\": 960, \"height\": 644}], \"variants\": {}, \"id\": \"Oezj5KFHw35YTNV7f2ysRbVTt0E7sP5x-007SvngELE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx5gx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx5gx/the_opioid_epidemic/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsx5gx/the_opioid_epidemic/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558805599.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3rko2hk2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Season 8. Expectation VS Reality - Coub\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 76, \"hide_score\": false, \"name\": \"t3_bsx4cw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 329}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"coub.com\", \"oembed\": {\"provider_url\": \"https://coub.com/\", \"description\": \"Season 8. Expectation VS Reality - Coub - The Biggest Video Meme Platform by \\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"title\": \"Season 8. Expectation VS Reality\", \"url\": \"https://coub.com/view/1uqk30\", \"type\": \"video\", \"author_name\": \"\\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"height\": 329, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 1280, \"version\": \"1.0\", \"provider_name\": \"Coub\", \"thumbnail_url\": \"https://coubsecure-s.akamaihd.net/get/b189/p/coub/simple/cw_image/fc2f77efef2/92fbfabd438d77bc688f2/big_1558602182_00030.jpg\", \"thumbnail_height\": 700}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bsx4cw\", \"height\": 329}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/yYWmiAtN3NIBqz36GFAuzE1Gm9bfyBqWIvr-NLCrdiE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558834230.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"coub.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?auto=webp\\u0026s=2c537c6f4db6a7134e41a1fed83f527a9205a6fc\", \"width\": 1280, \"height\": 700}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8379e056ce44d98ba8cabcedc3e57a5179eb8077\", \"width\": 108, \"height\": 59}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=8546634eedbc00136050661223afe85fa0df9af7\", \"width\": 216, \"height\": 118}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=716bea022cac586a80f5e0d8a91506edd0d83528\", \"width\": 320, \"height\": 175}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d3048a26334e43b4c90357ee44fcdcc546b50f00\", \"width\": 640, \"height\": 350}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=3210c1f30af3c93e6c4667634d00863669de17f4\", \"width\": 960, \"height\": 525}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b15926a8817d038edddebbea83e70e9b359050e6\", \"width\": 1080, \"height\": 590}], \"variants\": {}, \"id\": \"2zfAfglMEQHb1kq47IlSy9xMsGT3DskaBFmGCWHMJm4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx4cw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hunsorgelargen\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx4cw/season_8_expectation_vs_reality_coub/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://coub.com/view/1uqk30\", \"subreddit_subscribers\": 703, \"created_utc\": 1558805430.0, \"media\": {\"type\": \"coub.com\", \"oembed\": {\"provider_url\": \"https://coub.com/\", \"description\": \"Season 8. Expectation VS Reality - Coub - The Biggest Video Meme Platform by \\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"title\": \"Season 8. Expectation VS Reality\", \"url\": \"https://coub.com/view/1uqk30\", \"type\": \"video\", \"author_name\": \"\\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"height\": 329, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 1280, \"version\": \"1.0\", \"provider_name\": \"Coub\", \"thumbnail_url\": \"https://coubsecure-s.akamaihd.net/get/b189/p/coub/simple/cw_image/fc2f77efef2/92fbfabd438d77bc688f2/big_1558602182_00030.jpg\", \"thumbnail_height\": 700}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Epidemic\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 77, \"hide_score\": false, \"name\": \"t3_bsx03j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/QMgLgBWZo2J6BvtEUhCtq1puxq_1nXJklQluEpY1eVc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558833593.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?auto=webp\\u0026s=112c158959edb120ed7a4b2c6af8005b24adfae3\", \"width\": 2500, \"height\": 1375}, \"resolutions\": [{\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=58286f10819d029635929b919b885efe84113bc1\", \"width\": 108, \"height\": 59}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5b950ddd484fbbbf695b9d78f249484dd503ca34\", \"width\": 216, \"height\": 118}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b1627f91c9c141adc0907618e1104fb76265822e\", \"width\": 320, \"height\": 176}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b6a7d4e67ba17921827b1fc20be649529936fbf2\", \"width\": 640, \"height\": 352}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=51b4a2ca46ae9a14de2d1526ea16ee912fc2d5fb\", \"width\": 960, \"height\": 528}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=97c530e4986d9fb9ad52ce225a3776d6b21d34db\", \"width\": 1080, \"height\": 594}], \"variants\": {}, \"id\": \"r0QQSeXyt6cpVPwloW0dlXs4ghmbkHS-vOX8K4sT4o8\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx03j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx03j/the_opioid_epidemic/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/hjkw4r1g5e031.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1558804793.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_225ztxy6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bsveoo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Kane disposes of Seth\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"heiamll\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/goQiwNZzoVA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/heiamll\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bsveoo\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/a3QmR3Wv2LyuxQEMuRGkWJMyV3qVSzueTO5c6mQqVbU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558825096.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?auto=webp\\u0026s=7d0ecdb5c17f93a12cd53f87a9c8d41e27f6731f\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2e2b3e97b45ce73dcddf4449e6cbfc56ff39fc3f\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e84cf3f890c1d24edfefc7d96ef383b5bc317490\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2c1318b4441b4e7015d9d1f514c83f6f5afbafd6\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"JI-LuN1c02BWSJpGlnUncuUUM9PwrbfPwhq5sYuo_jU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsveoo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ihuarraquax__\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsveoo/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=goQiwNZzoVA\", \"subreddit_subscribers\": 703, \"created_utc\": 1558796296.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Kane disposes of Seth\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"heiamll\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/goQiwNZzoVA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/heiamll\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"B\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\\nThay v\\u00ec th\\u1ed1ng nh\\u1ea5t c\\u01a1 quan h\\u00e0nh ch\\u00ednh c\\u1ea3 n\\u01b0\\u1edbc c\\u00f9ng gi\\u1edd l\\u00e0m vi\\u1ec7c, \\u0111\\u1ec1 xu\\u1ea5t m\\u1edbi cho ph\\u00e9p c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng quy \\u0111\\u1ecbnh gi\\u1edd linh ho\\u1ea1t. \\n\\nB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1eeb 8h30\\nSau g\\u1ea7n 20 ng\\u00e0y c\\u00f4ng b\\u1ed1 t\\u1edd tr\\u00ecnh d\\u1ef1 th\\u1ea3o s\\u1eeda \\u0111\\u1ed5i B\\u1ed9 Lu\\u1eadt Lao \\u0111\\u1ed9ng n\\u0103m 2012, ng\\u00e0y 16/5, B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u00e3 \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i n\\u1ed9i dung \\u0111\\u1ec1 xu\\u1ea5t v\\u1ec1 gi\\u1edd l\\u00e0m vi\\u1ec7c.\\n\\n\\u00d4ng Nguy\\u1ec5n V\\u0103n B\\u00ecnh, Ph\\u00f3 v\\u1ee5 tr\\u01b0\\u1edfng V\\u1ee5 ph\\u00e1p ch\\u1ebf (B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 x\\u00e3 h\\u1ed9i), cho hay v\\u1eeba qua B\\u1ed9 nh\\u1eadn \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u \\u00fd ki\\u1ebfn \\u0111\\u00f3ng g\\u00f3p c\\u1ee7a ng\\u01b0\\u1eddi d\\u00e2n v\\u00e0 c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng n\\u00ean \\u0111\\u00e3 ti\\u1ebfp thu, \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1ea1i c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng \\u0111\\u1ec3 linh ho\\u1ea1t, ph\\u00f9 h\\u1ee3p v\\u1edbi \\u0111i\\u1ec1u ki\\u1ec7n kh\\u00ed h\\u1eadu m\\u1ed7i v\\u00f9ng mi\\u1ec1n. \\n\\nC\\u1ee5 th\\u1ec3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c s\\u1eeda l\\u1ea1i nh\\u01b0 sau: \\\"Giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\\". \\n\\n\\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc c\\u1ea5p trung \\u01b0\\u01a1ng v\\u00e0 c\\u00e1c \\u0111\\u00f4 th\\u1ecb l\\u1edbn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat (tr\\u1eeb nh\\u1eefng \\u0111\\u01a1n v\\u1ecb ho\\u1eb7c b\\u1ed9 ph\\u1eadn ph\\u1ea3i th\\u01b0\\u1eddng tr\\u1ef1c 24/24 gi\\u1edd \\u0111\\u1ec3 \\u0111\\u1ea3m b\\u1ea3o li\\u00ean th\\u00f4ng c\\u00f4ng vi\\u1ec7c ho\\u1eb7c tr\\u1ef1c ti\\u1ebfp gi\\u1ea3i quy\\u1ebft c\\u00f4ng vi\\u1ec7c v\\u1edbi ng\\u01b0\\u1eddi d\\u00e2n). \\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc \\u1edf \\u0111\\u1ecba ph\\u01b0\\u01a1ng th\\u00ec th\\u1ed1ng nh\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c m\\u00f9a h\\u00e8 v\\u00e0 m\\u00f9a \\u0111\\u00f4ng theo \\u0111i\\u1ec1u ki\\u1ec7n \\u0111\\u1ecba l\\u00fd.\\n\\nPh\\u01b0\\u01a1ng \\u00e1n 2 c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c gi\\u1eef nh\\u01b0 hi\\u1ec7n h\\u00e0nh. Theo \\u0111\\u00f3, th\\u1eddi gian l\\u00e0m vi\\u1ec7c kh\\u00f4ng quy \\u0111\\u1ecbnh trong B\\u1ed9 lu\\u1eadt Lao \\u0111\\u1ed9ng m\\u00e0 n\\u00eau t\\u1ea1i c\\u00e1c v\\u0103n b\\u1ea3n h\\u00e0nh ch\\u00ednh; \\u0111\\u1ed1i v\\u1edbi c\\u00e1c B\\u1ed9 do Th\\u1ee7 t\\u01b0\\u1edbng quy\\u1ebft \\u0111\\u1ecbnh; \\u0111\\u1ed1i v\\u1edbi UBND v\\u00e0 c\\u00e1c c\\u01a1 quan chuy\\u00ean m\\u00f4n do Ch\\u1ee7 t\\u1ecbch t\\u1ec9nh quy\\u1ebft.\\n\\u003Cimg src=\\\"https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\\" alt=\\\"Markdown Monster icon\\\"/\\u003E\\n[Ng\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. ](https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg)\\n\\n![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png)\\n\\nNg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\n\\nTr\\u01b0\\u1edbc \\u0111\\u00f3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t trong phi\\u00ean b\\u1ea3n c\\u0169 c\\u1ee7a d\\u1ef1 th\\u1ea3o t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c c\\u00f4ng b\\u1ed1 h\\u00f4m 28/4 n\\u00eau, \\\"giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\\". Th\\u1eddi gian l\\u00e0m vi\\u1ec7c d\\u1ef1 ki\\u1ebfn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat.\", \"author_fullname\": \"t2_3nwxz2cj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"B\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsqqvo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558760411.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558788601.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\\nThay v\\u00ec th\\u1ed1ng nh\\u1ea5t c\\u01a1 quan h\\u00e0nh ch\\u00ednh c\\u1ea3 n\\u01b0\\u1edbc c\\u00f9ng gi\\u1edd l\\u00e0m vi\\u1ec7c, \\u0111\\u1ec1 xu\\u1ea5t m\\u1edbi cho ph\\u00e9p c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng quy \\u0111\\u1ecbnh gi\\u1edd linh ho\\u1ea1t. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1eeb 8h30\\nSau g\\u1ea7n 20 ng\\u00e0y c\\u00f4ng b\\u1ed1 t\\u1edd tr\\u00ecnh d\\u1ef1 th\\u1ea3o s\\u1eeda \\u0111\\u1ed5i B\\u1ed9 Lu\\u1eadt Lao \\u0111\\u1ed9ng n\\u0103m 2012, ng\\u00e0y 16/5, B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u00e3 \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i n\\u1ed9i dung \\u0111\\u1ec1 xu\\u1ea5t v\\u1ec1 gi\\u1edd l\\u00e0m vi\\u1ec7c.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00d4ng Nguy\\u1ec5n V\\u0103n B\\u00ecnh, Ph\\u00f3 v\\u1ee5 tr\\u01b0\\u1edfng V\\u1ee5 ph\\u00e1p ch\\u1ebf (B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 x\\u00e3 h\\u1ed9i), cho hay v\\u1eeba qua B\\u1ed9 nh\\u1eadn \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u \\u00fd ki\\u1ebfn \\u0111\\u00f3ng g\\u00f3p c\\u1ee7a ng\\u01b0\\u1eddi d\\u00e2n v\\u00e0 c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng n\\u00ean \\u0111\\u00e3 ti\\u1ebfp thu, \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1ea1i c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng \\u0111\\u1ec3 linh ho\\u1ea1t, ph\\u00f9 h\\u1ee3p v\\u1edbi \\u0111i\\u1ec1u ki\\u1ec7n kh\\u00ed h\\u1eadu m\\u1ed7i v\\u00f9ng mi\\u1ec1n. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EC\\u1ee5 th\\u1ec3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c s\\u1eeda l\\u1ea1i nh\\u01b0 sau: \\u0026quot;Giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\u0026quot;. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc c\\u1ea5p trung \\u01b0\\u01a1ng v\\u00e0 c\\u00e1c \\u0111\\u00f4 th\\u1ecb l\\u1edbn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat (tr\\u1eeb nh\\u1eefng \\u0111\\u01a1n v\\u1ecb ho\\u1eb7c b\\u1ed9 ph\\u1eadn ph\\u1ea3i th\\u01b0\\u1eddng tr\\u1ef1c 24/24 gi\\u1edd \\u0111\\u1ec3 \\u0111\\u1ea3m b\\u1ea3o li\\u00ean th\\u00f4ng c\\u00f4ng vi\\u1ec7c ho\\u1eb7c tr\\u1ef1c ti\\u1ebfp gi\\u1ea3i quy\\u1ebft c\\u00f4ng vi\\u1ec7c v\\u1edbi ng\\u01b0\\u1eddi d\\u00e2n). \\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc \\u1edf \\u0111\\u1ecba ph\\u01b0\\u01a1ng th\\u00ec th\\u1ed1ng nh\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c m\\u00f9a h\\u00e8 v\\u00e0 m\\u00f9a \\u0111\\u00f4ng theo \\u0111i\\u1ec1u ki\\u1ec7n \\u0111\\u1ecba l\\u00fd.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPh\\u01b0\\u01a1ng \\u00e1n 2 c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c gi\\u1eef nh\\u01b0 hi\\u1ec7n h\\u00e0nh. Theo \\u0111\\u00f3, th\\u1eddi gian l\\u00e0m vi\\u1ec7c kh\\u00f4ng quy \\u0111\\u1ecbnh trong B\\u1ed9 lu\\u1eadt Lao \\u0111\\u1ed9ng m\\u00e0 n\\u00eau t\\u1ea1i c\\u00e1c v\\u0103n b\\u1ea3n h\\u00e0nh ch\\u00ednh; \\u0111\\u1ed1i v\\u1edbi c\\u00e1c B\\u1ed9 do Th\\u1ee7 t\\u01b0\\u1edbng quy\\u1ebft \\u0111\\u1ecbnh; \\u0111\\u1ed1i v\\u1edbi UBND v\\u00e0 c\\u00e1c c\\u01a1 quan chuy\\u00ean m\\u00f4n do Ch\\u1ee7 t\\u1ecbch t\\u1ec9nh quy\\u1ebft.\\n\\u0026lt;img src=\\u0026quot;https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\u0026quot; alt=\\u0026quot;Markdown Monster icon\\u0026quot;/\\u0026gt;\\n\\u003Ca href=\\\"https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\\"\\u003ENg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E![Image of Yaktocat](\\u003Ca href=\\\"https://octodex.github.com/images/yaktocat.png\\\"\\u003Ehttps://octodex.github.com/images/yaktocat.png\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETr\\u01b0\\u1edbc \\u0111\\u00f3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t trong phi\\u00ean b\\u1ea3n c\\u0169 c\\u1ee7a d\\u1ef1 th\\u1ea3o t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c c\\u00f4ng b\\u1ed1 h\\u00f4m 28/4 n\\u00eau, \\u0026quot;giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\u0026quot;. Th\\u1eddi gian l\\u00e0m vi\\u1ec7c d\\u1ef1 ki\\u1ebfn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsqqvo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Fortuner2022\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsqqvo/b\\u1ed9_lao_\\u0111\\u1ed9ng_th\\u01b0\\u01a1ng_binh_v\\u00e0_x\\u00e3_h\\u1ed9i_\\u0111i\\u1ec1u_ch\\u1ec9nh_\\u0111\\u1ec1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsqqvo/b\\u1ed9_lao_\\u0111\\u1ed9ng_th\\u01b0\\u01a1ng_binh_v\\u00e0_x\\u00e3_h\\u1ed9i_\\u0111i\\u1ec1u_ch\\u1ec9nh_\\u0111\\u1ec1/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558759801.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Now the sad part. I don't actually have anyone to play my cube with at the moment. Why would someone put all the effort into building a cube that they can't actually play? Well, I started playing on ptcgo so I don't have a physical play group and from ptcgo I got into collecting some physical cards. I eventually heard about pokemon cubes and thought it sounded like a fun thing to do with all of the cards I was collecting. Some people collect Charizards or secret rares or Yuka Morii art. I collected a cube. That's another reason I went with all the bling, to add some longevity to the project.\\n\\nThe long term plan is to play it with my kids (I have three boys). They're interested in pokemon and I've given them some beater cards to start \\\"collecting\\\" but they're still a year or two away from actually playing the game. In the mean time, I've been playing and testing the cube on my own. You may have seen my post a couple months ago about my [draft interface](https://www.reddit.com/r/pkmntcg/comments/a1i5p1/i_made_a_drafting_interface_for_testing_your_cube/). I use that to build decks then play a few games against myself to get a feel for the power level, consistency and balance. Even with just self-testing, I've been able to learn quite a bit about how the cube plays. Here are some of my observations/musings.\\n\\n##Drafting\\n\\n**Table Draft** (4-6 players, 60 card decks, 6 prize games)\\n\\n1. Create packs\\n * 4 players: 36 packs of 10 cards\\n * 5 players: 45 packs of 10 cards\\n * 6 players: 48 packs of 10 cards\\n2. Each player opens a pack, picks 1 card and passes it to the player on their right.\\n3. Each player continues picking 1 card from the pack that is passed to them until all the cards in the packs are drafted.\\n4. Each player opens a new pack, picks 1 card and passes it to the player on their left.\\n5. Continue until all of the packs have been drafted.\\n\\nThis is the most common draft format and probably what most people have in mind for playing cube. The most challenging part of this format is figuring out what you need to pick early in a pack versus what you think you can leave behind and pick up later. Mid-way through a draft, you might open a pack with a [Strong Energy](https://pkmncards.com/card/strong-energy-fates-collide-fco-115/ \\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\") and a [Nest Ball](https://pkmncards.com/card/nest-ball-sun-moon-sum-123/ \\\"Search your deck for a Basic Pok\\u00e9mon and put it onto your Bench. Then, shuffle your deck.\\\") and be faced with a tough choice. Strong Energy would be incredible in your Fighting deck, probably better than Nest Ball, and not many other people at the table will want the Strong Energy. The Nest Ball, on the other hand, will be in high demand. There's almost no chance that it will still be in the pack when it comes back to you. So do you take the consistency boosting Nest Ball and try to wheel the Strong Energy or do you take the damage boost to guarantee some extra power in your deck. Or maybe you're passed a Salandit that you really want for your [Roast Reveal Salazzle](https://pkmncards.com/card/salazzle-unbroken-bonds-unb-31/ \\\"Ability: Roast Reveal\\nOnce during your turn (before your attack), you may discard a [R] Energy card from your hand. If you do, draw 3 cards.\\\"). Will it come back around or will a Grass deck take it to support a [Hot Poison](https://pkmncards.com/card/salazzle-guardians-rising-gri-16/ \\\"Ability: Hot Poison\\nWhen you play this Pok\\u00e9mon from your hand to evolve 1 of your Pok\\u00e9mon during your turn, you may leave your opponent\\u2019s Active Pok\\u00e9mon Burned and Poisoned.\\\"). Interesting choices!\\n\\nI also like how the pick priorities change throughout the draft. Early on you're mostly looking for big spicy cards to build around. Magnezone, Greninja, Victreebel, etc. If there's nothing like that in the pack, you take a nice consistency card like Sycamore or Ultra Ball that still leaves you open to lots of decks. Further into the draft, you're first picking a lot of the high quality trainer cards cause everyone wants them, but also balancing that with powerful support cards that your deck needs to function. At the tail end, you're trying to fill in any holes that your deck still has. You may find yourself picking a [Brock's Grit](https://pkmncards.com/card/brocks-grit-evolutions-evo-107/ \\\"Shuffle 6 in any combination of Pok\\u00e9mon and basic Energy cards from your discard pile into your deck.\\\") over a [Cynthia](https://pkmncards.com/card/cynthia-ultra-prism-upr-148/ \\\"Shuffle your hand into your deck. Then, draw 6 cards.\\\") simply because you don't have any energy or pokemon recovery yet. While some cards come really close to insta-picks, most of a cards' worth is highly dependent on the deck you're trying to build the stage of the draft you're in, which I really like.\\n\\nRegarding the number of packs to draft, it's tempting to simply draft the entire cube every time. But, especially with four players, it leads to predictable and somewhat boring drafts. Each player gets into their own archetype and there is very little competition for cards other than trainers. If someone first picks a Magnezone, you might as well hand them the rest of the Lightning cards in the cube. If you limit the number of packs, players are not guaranteed to see all of their support cards during the draft. They will have to explore other options within an archetype or at least a way to supplement their preferred deck with other cards. This is an important source of innovation and variety in cube drafting. It's what keeps each new draft form being just like the previous one. Of course, this has to be balanced against giving players enough cards to build a functioning deck. To few cards and you'll end up with a bunch of weak attackers and no real synergy between cards. I feel like around 80-90 cards in your final card pool (not including basic energies) is about right. This may sound like a ton of cards if you are coming from a background of drafting Magic: the Gathering but, proportionally, it's not too far off. In a Magic draft, you have 24 packs of 14 cards and each player ends up with 42 non-land cards. Your 40 card deck will typically have 23 non-land cards so you draft nearly twice as many cards as you end up using. In a 60 card pokemon deck you will have around 45-48 non-energy cards in your final deck and 80-90 is roughly double that. It's enough cards to present you with meaningful choices during deck building rather than just including anything that is remotely playable. Do I try to splash that off-color attacker to cover weakness or do I include more basic energy for consistency? How much energy fixing did I draft? That kind of stuff.\\n\\n**Grid Draft** (2 players, 60 card decks, 6 prize games)\\n\\n1. Create 34 packs of 9 cards. \\n2. Layout one pack in a 3 X 3 grid face up.\\n3. The first player chooses either a row or a column and takes all three of the cards in the row/column.\\n4. The second player chooses another row or column and takes those cards\\n5. Alternated who chooses first with each pack.\\n\\nGrid drafting is a really good place to start if you are playing with someone who's never drafted before. With all the cards laid out for everyone to see, you can easily give hints and guidance without breaking any of the rules of the draft (i.e. \\\"show me your pack\\\"). Drafting an entire deck from a cube involves *a lot* of decisions, and it can be overwhelming for people that aren't familiar with your cube and all of the card interactions. Providing some gentle guidance when they get stuck removes some of that burden and keep things fun. Grid drafting also goes a little bit faster than some of the other forms because you are picking 2-3 cards at a time.\\n\\nUnfortunately, I don't think grid drafting is a very good format for pokemon cubes. After doing several grid drafts in my simulator, I kept ending up with decks that were missing key cards like pre-evolutions even though I was drafting *a lot* of extra cards. During a table draft, you can easily pick up your pre-evolutions later in a pack because no one else is interested in them. But in grid drafting, it's not uncommon to have your pre-evolutions accidentally hate drafted by the other player because they just happened to be in a row with something else they wanted. And if you prioritize pre-evolutions too heavily, you are often giving up high quality consistency cards like draw supporters or poke search. Basically, grid drafting does not give you the precise control over picks necessary to build proper pokemon decks.\\n\\n**Pancake Draft** (2 players)\\n\\n1. Create 30 packs of 12 cards.\\n2. Each player takes a pack, picks 1 card and passes it to the other player.\\n3. Each player picks 2 cards then removes 2 cards and puts them in a discard pile. Pass the pack again.\\n4. Each player picks 2 cards and discards the remaining 5 cards.\\n5. Repeat 2-3 until all packs have been drafted.\\n\\nThis is essentially the traditional table draft adapted for two players. \\n\\n**Sealed** (2-4 players, 60 card decks, 6 prize games)\\n\\n1. Remove pre-evolutions from the pool of cards (142 cards).\\n2. Create sealed pools of 80 cards for each player.\\n3. Build decks adding basic energy and the necessary pre-evolutions as needed.\\n\\nSealed is pretty dicey for the same reasons that grid drafting is. You need to make a lot of intentional picks while drafting to make sure that your evolution lines work. You can't do that in sealed. There's no way you can reliably get enough complete evolution lines in a reasonably sized sealed pool. However, removing the pre-evolutions from the pool helps a ton. Now you're just looking for enough strong attackers that share a type or a strategy to mash together into a deck. After you build you deck, you simply add whatever pre-evolutions you need, similar to how basic energy is handled.\\n\\nSealed decks, across various card games, generally rely less on card synergy and more on individually strong cards. Don't expect the decks to be as intricate or as fun as draft decks. It's not the way I prefer to play cube but it's a decent option if you don't have time for a lengthy draft. It's also a good way to introduce new players to your cube. Having to read every card in a pack 40 times over is exhausting and without a mental short list of what cards they should be considering, inexperienced players can quickly become overwhelmed. With a static sealed pool, a player unfamiliar with the cards can focus on what they have and make the best of it. Consider 40 card decks with 4 prize games if you are playing with new folks, as well.\\n\\n##Gameplay\\n\\n* **Pace of play**: As you might expect, games are quite a bit slower than competitive constructed decks. You don't have the draw engines that give you complete turn 1 setups and let you see half your deck by turn 3. You don't have fully powered up attackers every turn taking knockouts. Instead, cube decks play at around the same speed as theme decks. You spend a few turns setting up, then start taking knock-outs semi-regularly. There will still be occasional dead draws and slow starts but part of the strategy is learning how to mitigate the damage of these situations. Is there a pokemon I can [Flick Poison](https://pkmncards.com/card/carnivine-shining-legends-slg-6/ \\\"[G] Flick Poison\\nSwitch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. The new Active Pok\\u00e9mon is now Poisoned.\\\") and stall while I draw out of this? There are also a fair number of catch-up mechanics available in the cube so getting a slower start than your opponent is not an automatic game loss.\\n\\nWhere cube decks exceed theme decks is in their available lines of play. Theme decks execute basically the same game plan every time because they have only a couple good attackers and maybe one or two tricks. Cube decks have completely unique attackers and each will be strongest in different situations. Sequencing and setting up the right attacker for the right response KO becomes very important. The number of tricks available in cube decks is also much higher than theme decks, leading to lots of fun and unexpected plays throughout the game. \\n\\n* **Consistency**: Consistency is a trick. On one hand, you want your decks to be doing cool, powerful, and interesting things. But doing those things usually means getting several specific cards in your hand and into play. Unfortunately, cube doesn't have strong enough draw engines to support intricate setups, and decks that rely heavily on them are going to be wildly inconsistent. On the other hand, if decks are very simple (play basic pokemon, attach energy, declare attack) they will be very consistent, but also very boring. So decks need a little bit of both. They need some meat and potatoes, basic attacks with low energy costs, as well as some spice, splashy evolution pokemon with unique attacks or abilities. The same is true with trainers, where you want your [Colresses](https://pkmncards.com/card/colress-plasma-storm-pls-135/ \\\"Shuffle your hand into your deck. Then, draw a number of cards equal to the number of Benched Pok\\u00e9mon (both your and your opponent\\u2019s).\\\") along side your [Nanus](https://pkmncards.com/card/nanu-team-up-teu-179/ \\\"Choose a Basic [D] Pok\\u00e9mon in your discard pile. Switch it with 1 of your Pok\\u00e9mon in play. Any attached cards, damage counters, Special Conditions, turns in play, and any other effects remain of the new Pok\\u00e9mon.\\\"). The decks that seem to work best are ones with solid basic attackers that can function on their own, but kick into another gear when they get the stage 2 support online. In Lightning decks, [Zekrom](https://pkmncards.com/card/zekrom-shining-legends-slg-35/ \\\"[C][C] Outrage: 20+\\nThis attack does 10 more damage for each damage counter on this Pok\\u00e9mon.\\n[L][L][C] Storm Blade: 130\\nDiscard 2 Energy from this Pok\\u00e9mon.\\\") or [Zeraora](https://pkmncards.com/card/zeraora-unbroken-bonds-unb-60/ \\\"[L] Crushing Claw: 20\\nDiscard a Special Energy from your opponent\\u2019s Active Pok\\u00e9mon.\\n[L][C][C] Discharge: 50\\u00d7\\nDiscard all [L] Energy from this Pok\\u00e9mon. This attack does 50 damage for each card you discarded in this way.\\\") can chip away for a few turns until [Magnezone](https://pkmncards.com/card/magnezone-forbidden-light-fli-36/ \\\"Ability: Magnetic Circuit\\nAs often as you like during your turn (before your attack), you may attach a [L] Energy card from your hand to 1 of your Pok\\u00e9mon.\\\") begins accelerating energy and you start chewing through attackers. In Psychic decks, [Hoopa](https://pkmncards.com/card/hoopa-steam-siege-sts-51/ \\\"[C] Hyperspace Punch\\nThis attack does 20 damage to 2 of your opponent\\u2019s Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][P][P] Portal Strike: 130\\nThis Pok\\u00e9mon can\\u2019t use Portal Strike during your next turn.\\\") and [Latios](https://pkmncards.com/card/latios-shining-legends-slg-41/ \\\"[C][C] Break Through: 30\\nThis attack does 30 damage to 1 of your opponent\\u2019s Benched Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][C][C] Lagoon Flight: 70 \\\") can load up the board with damage allowing [Chandelure](https://pkmncards.com/card/chandelure-lost-thunder-lot-103/ \\\"[P][P] Vortex of Pain: 20\\u00d7\\nThis attack does 20 damage for each damage counter on all of your opponent\\u2019s Pok\\u00e9mon.\\\") to come in later and Vortex for huge numbers.\\n\\nIn general, people tend to err on the cool and splashy side when building their cube. We're much more likely to imagine Magical Christmas Land in our heads when we envision how all the cards are going to work together. \\\"Of course I'm going to draw [Regirock](https://pkmncards.com/card/regirock-celestial-storm-ces-80/ \\\"[F] Enhanced Stomp: 20+\\nIf this Pok\\u00e9mon has a Pok\\u00e9mon Tool card attached to it, this attack does 20 more damage.\\\"), [Muscle Band](https://pkmncards.com/card/muscle-band-xy-121/ \\\"The attacks of the Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon (before applying Weakness and Resistance).\\\"), [Strong Energy](https://pkmncards.com/card/strong-energy-fates-collide-fco-115/ \\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\") and Rare Candy [Fighting Fury Machamp](https://pkmncards.com/card/machamp-furious-fists-ffi-46/ \\\"Ability: Fighting Fury\\nEach of your [F] Pok\\u00e9mon\\u2019s attacks do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon .\\\") on turn 2. 100 Damage for 1 energy! Might even be too good for cube.\\\" I try to avoid cards that do actual nothing if some previous setup isn't there. I want whatever I draw to be useful in some way. What makes Regirock good is that you only need *one* of those pieces for it to be hitting above average numbers, but the more you have, the better it gets. One example of borderline do-nothings in my cube are the [Reactive Poison](https://pkmncards.com/card/ariados-celestial-storm-ces-6/ \\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\\") attacks, since you really need access to status conditions for them to do anything. Fortunately, [Victreebel](https://pkmncards.com/card/victreebel-unbroken-bonds-unb-15/ \\\"[G] Reactive Poison: 10+\\nThis attack does 60 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G][C][C] Gastro Acid: 90\\nThe Defending Pok\\u00e9mon has no Abilities until the end of your next turn.\\\") and [Ariados](https://pkmncards.com/card/ariados-celestial-storm-ces-6/ \\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G] Spider Trap\\nYou may switch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. Your opponent\\u2019s Active Pok\\u00e9mon is now Asleep and Poisoned..\\\") have decent backup attacks making them somewhat more flexible if the setup isn't there.\\n\\nSo what are the best types of cards to include to support the spice? What are the meat and potatoes?\\n\\n* **Attack draw/search**: Standard games are usually too fast to waste your attack drawing cards, but with the slower pace of play in cube, attack based setup is very valuable. Cards like [Alolan Vulpix](https://pkmncards.com/card/alolan-vulpix-guardians-rising-gri-21/ \\\"[-] Beacon\\nSearch your deck for up to 2 Pok\\u00e9mon, reveal them, and put them into your hand. Then, shuffle your deck.\\\") and [Dunsparce](https://pkmncards.com/card/dunsparce-celestial-storm-ces-110/ \\\"[C] Strike and Run\\nSearch your deck for up to 3 Basic Pok\\u00e9mon and put them onto your Bench. Then, shuffle your deck. If you put any Pok\\u00e9mon onto your Bench in this way, you may switch this Pok\\u00e9mon with 1 of your Benched Pok\\u00e9mon.\\\") are pretty good for setting up your board but can be hard to reliably get out on the first turn and aren't that useful later on. [Espeon](https://pkmncards.com/card/espeon-plasma-freeze-plf-48/ \\\"[C] Psy Alert: 20\\nDraw cards until you have 6 cards in your hand.\\n[P] Shadow Ball\\nThis attack does 40 damage to 1 of your opponent\\u2019s Pok\\u00e9mon. Also apply Weakness and Resistance for Benched Pok\\u00e9mon.\\\") and [Zoroark](https://pkmncards.com/card/zoroark-black-white-blw-71/ \\\"[D] Nasty Plot\\nSearch your deck for a card and put it into your hand. Shuffle your deck afterward.\\n[C][C] Foul Play\\nChoose 1 of the Defending Pok\\u00e9mon\\u2019s attacks and use it as this attack.\\\") can dish out damage in addition to drawing cards, but are stage 1 and require some setup themselves before they are useful. My favorite kinds of cards are pokemon like [Shaymin](https://pkmncards.com/card/shaymin-shining-legends-slg-7/ \\\"[G] Flippity Flap\\nShuffle your hand into your deck. Then, draw 6 cards.\\n[G][C] Rally Back: 30+\\nIf any of your Pok\\u00e9mon were Knocked Out by damage from an opponent\\u2019s attack during their last turn, this attack does 90 more damage.\\\") and [Mimikyu](https://pkmncards.com/card/mimikyu-guardians-rising-gri-58/ \\\"[C] Filch\\nDraw 2 cards.\\n[P][C] Copycat\\nIf your opponent\\u2019s Pok\\u00e9mon used an attack that isn\\u2019t a GX attack during their last turn, use it as this attack.\\\"). The efficient card draw helps with early game setup and mid-game dead draws while their situational attacks keep them relevant to the last prize. They may not be super flavorful additions to their respective archetypes, but they are crucial to a well functioning decks. When things aren't going as planned, you still need cards that get out there and do *something* to help move the game along. Basic attackers, single energy card draw, efficient damage; these pokemon are the glue that hold all fun stuff together.\", \"author_fullname\": \"t2_i1ikl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Pokecube II\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bskwuj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558753845.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENow the sad part. I don\\u0026#39;t actually have anyone to play my cube with at the moment. Why would someone put all the effort into building a cube that they can\\u0026#39;t actually play? Well, I started playing on ptcgo so I don\\u0026#39;t have a physical play group and from ptcgo I got into collecting some physical cards. I eventually heard about pokemon cubes and thought it sounded like a fun thing to do with all of the cards I was collecting. Some people collect Charizards or secret rares or Yuka Morii art. I collected a cube. That\\u0026#39;s another reason I went with all the bling, to add some longevity to the project.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe long term plan is to play it with my kids (I have three boys). They\\u0026#39;re interested in pokemon and I\\u0026#39;ve given them some beater cards to start \\u0026quot;collecting\\u0026quot; but they\\u0026#39;re still a year or two away from actually playing the game. In the mean time, I\\u0026#39;ve been playing and testing the cube on my own. You may have seen my post a couple months ago about my \\u003Ca href=\\\"https://www.reddit.com/r/pkmntcg/comments/a1i5p1/i_made_a_drafting_interface_for_testing_your_cube/\\\"\\u003Edraft interface\\u003C/a\\u003E. I use that to build decks then play a few games against myself to get a feel for the power level, consistency and balance. Even with just self-testing, I\\u0026#39;ve been able to learn quite a bit about how the cube plays. Here are some of my observations/musings.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EDrafting\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETable Draft\\u003C/strong\\u003E (4-6 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate packs\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E4 players: 36 packs of 10 cards\\u003C/li\\u003E\\n\\u003Cli\\u003E5 players: 45 packs of 10 cards\\u003C/li\\u003E\\n\\u003Cli\\u003E6 players: 48 packs of 10 cards\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player opens a pack, picks 1 card and passes it to the player on their right.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player continues picking 1 card from the pack that is passed to them until all the cards in the packs are drafted.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player opens a new pack, picks 1 card and passes it to the player on their left.\\u003C/li\\u003E\\n\\u003Cli\\u003EContinue until all of the packs have been drafted.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is the most common draft format and probably what most people have in mind for playing cube. The most challenging part of this format is figuring out what you need to pick early in a pack versus what you think you can leave behind and pick up later. Mid-way through a draft, you might open a pack with a \\u003Ca href=\\\"https://pkmncards.com/card/strong-energy-fates-collide-fco-115/\\\" title=\\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EStrong Energy\\u003C/a\\u003E and a \\u003Ca href=\\\"https://pkmncards.com/card/nest-ball-sun-moon-sum-123/\\\" title=\\\"Search your deck for a Basic Pok\\u00e9mon and put it onto your Bench. Then, shuffle your deck.\\\"\\u003ENest Ball\\u003C/a\\u003E and be faced with a tough choice. Strong Energy would be incredible in your Fighting deck, probably better than Nest Ball, and not many other people at the table will want the Strong Energy. The Nest Ball, on the other hand, will be in high demand. There\\u0026#39;s almost no chance that it will still be in the pack when it comes back to you. So do you take the consistency boosting Nest Ball and try to wheel the Strong Energy or do you take the damage boost to guarantee some extra power in your deck. Or maybe you\\u0026#39;re passed a Salandit that you really want for your \\u003Ca href=\\\"https://pkmncards.com/card/salazzle-unbroken-bonds-unb-31/\\\" title=\\\"Ability: Roast Reveal\\nOnce during your turn (before your attack), you may discard a [R] Energy card from your hand. If you do, draw 3 cards.\\\"\\u003ERoast Reveal Salazzle\\u003C/a\\u003E. Will it come back around or will a Grass deck take it to support a \\u003Ca href=\\\"https://pkmncards.com/card/salazzle-guardians-rising-gri-16/\\\" title=\\\"Ability: Hot Poison\\nWhen you play this Pok\\u00e9mon from your hand to evolve 1 of your Pok\\u00e9mon during your turn, you may leave your opponent\\u2019s Active Pok\\u00e9mon Burned and Poisoned.\\\"\\u003EHot Poison\\u003C/a\\u003E. Interesting choices!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also like how the pick priorities change throughout the draft. Early on you\\u0026#39;re mostly looking for big spicy cards to build around. Magnezone, Greninja, Victreebel, etc. If there\\u0026#39;s nothing like that in the pack, you take a nice consistency card like Sycamore or Ultra Ball that still leaves you open to lots of decks. Further into the draft, you\\u0026#39;re first picking a lot of the high quality trainer cards cause everyone wants them, but also balancing that with powerful support cards that your deck needs to function. At the tail end, you\\u0026#39;re trying to fill in any holes that your deck still has. You may find yourself picking a \\u003Ca href=\\\"https://pkmncards.com/card/brocks-grit-evolutions-evo-107/\\\" title=\\\"Shuffle 6 in any combination of Pok\\u00e9mon and basic Energy cards from your discard pile into your deck.\\\"\\u003EBrock\\u0026#39;s Grit\\u003C/a\\u003E over a \\u003Ca href=\\\"https://pkmncards.com/card/cynthia-ultra-prism-upr-148/\\\" title=\\\"Shuffle your hand into your deck. Then, draw 6 cards.\\\"\\u003ECynthia\\u003C/a\\u003E simply because you don\\u0026#39;t have any energy or pokemon recovery yet. While some cards come really close to insta-picks, most of a cards\\u0026#39; worth is highly dependent on the deck you\\u0026#39;re trying to build the stage of the draft you\\u0026#39;re in, which I really like.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding the number of packs to draft, it\\u0026#39;s tempting to simply draft the entire cube every time. But, especially with four players, it leads to predictable and somewhat boring drafts. Each player gets into their own archetype and there is very little competition for cards other than trainers. If someone first picks a Magnezone, you might as well hand them the rest of the Lightning cards in the cube. If you limit the number of packs, players are not guaranteed to see all of their support cards during the draft. They will have to explore other options within an archetype or at least a way to supplement their preferred deck with other cards. This is an important source of innovation and variety in cube drafting. It\\u0026#39;s what keeps each new draft form being just like the previous one. Of course, this has to be balanced against giving players enough cards to build a functioning deck. To few cards and you\\u0026#39;ll end up with a bunch of weak attackers and no real synergy between cards. I feel like around 80-90 cards in your final card pool (not including basic energies) is about right. This may sound like a ton of cards if you are coming from a background of drafting Magic: the Gathering but, proportionally, it\\u0026#39;s not too far off. In a Magic draft, you have 24 packs of 14 cards and each player ends up with 42 non-land cards. Your 40 card deck will typically have 23 non-land cards so you draft nearly twice as many cards as you end up using. In a 60 card pokemon deck you will have around 45-48 non-energy cards in your final deck and 80-90 is roughly double that. It\\u0026#39;s enough cards to present you with meaningful choices during deck building rather than just including anything that is remotely playable. Do I try to splash that off-color attacker to cover weakness or do I include more basic energy for consistency? How much energy fixing did I draft? That kind of stuff.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGrid Draft\\u003C/strong\\u003E (2 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate 34 packs of 9 cards. \\u003C/li\\u003E\\n\\u003Cli\\u003ELayout one pack in a 3 X 3 grid face up.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe first player chooses either a row or a column and takes all three of the cards in the row/column.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe second player chooses another row or column and takes those cards\\u003C/li\\u003E\\n\\u003Cli\\u003EAlternated who chooses first with each pack.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EGrid drafting is a really good place to start if you are playing with someone who\\u0026#39;s never drafted before. With all the cards laid out for everyone to see, you can easily give hints and guidance without breaking any of the rules of the draft (i.e. \\u0026quot;show me your pack\\u0026quot;). Drafting an entire deck from a cube involves \\u003Cem\\u003Ea lot\\u003C/em\\u003E of decisions, and it can be overwhelming for people that aren\\u0026#39;t familiar with your cube and all of the card interactions. Providing some gentle guidance when they get stuck removes some of that burden and keep things fun. Grid drafting also goes a little bit faster than some of the other forms because you are picking 2-3 cards at a time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnfortunately, I don\\u0026#39;t think grid drafting is a very good format for pokemon cubes. After doing several grid drafts in my simulator, I kept ending up with decks that were missing key cards like pre-evolutions even though I was drafting \\u003Cem\\u003Ea lot\\u003C/em\\u003E of extra cards. During a table draft, you can easily pick up your pre-evolutions later in a pack because no one else is interested in them. But in grid drafting, it\\u0026#39;s not uncommon to have your pre-evolutions accidentally hate drafted by the other player because they just happened to be in a row with something else they wanted. And if you prioritize pre-evolutions too heavily, you are often giving up high quality consistency cards like draw supporters or poke search. Basically, grid drafting does not give you the precise control over picks necessary to build proper pokemon decks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPancake Draft\\u003C/strong\\u003E (2 players)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate 30 packs of 12 cards.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player takes a pack, picks 1 card and passes it to the other player.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player picks 2 cards then removes 2 cards and puts them in a discard pile. Pass the pack again.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player picks 2 cards and discards the remaining 5 cards.\\u003C/li\\u003E\\n\\u003Cli\\u003ERepeat 2-3 until all packs have been drafted.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is essentially the traditional table draft adapted for two players. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESealed\\u003C/strong\\u003E (2-4 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ERemove pre-evolutions from the pool of cards (142 cards).\\u003C/li\\u003E\\n\\u003Cli\\u003ECreate sealed pools of 80 cards for each player.\\u003C/li\\u003E\\n\\u003Cli\\u003EBuild decks adding basic energy and the necessary pre-evolutions as needed.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ESealed is pretty dicey for the same reasons that grid drafting is. You need to make a lot of intentional picks while drafting to make sure that your evolution lines work. You can\\u0026#39;t do that in sealed. There\\u0026#39;s no way you can reliably get enough complete evolution lines in a reasonably sized sealed pool. However, removing the pre-evolutions from the pool helps a ton. Now you\\u0026#39;re just looking for enough strong attackers that share a type or a strategy to mash together into a deck. After you build you deck, you simply add whatever pre-evolutions you need, similar to how basic energy is handled.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESealed decks, across various card games, generally rely less on card synergy and more on individually strong cards. Don\\u0026#39;t expect the decks to be as intricate or as fun as draft decks. It\\u0026#39;s not the way I prefer to play cube but it\\u0026#39;s a decent option if you don\\u0026#39;t have time for a lengthy draft. It\\u0026#39;s also a good way to introduce new players to your cube. Having to read every card in a pack 40 times over is exhausting and without a mental short list of what cards they should be considering, inexperienced players can quickly become overwhelmed. With a static sealed pool, a player unfamiliar with the cards can focus on what they have and make the best of it. Consider 40 card decks with 4 prize games if you are playing with new folks, as well.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EGameplay\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPace of play\\u003C/strong\\u003E: As you might expect, games are quite a bit slower than competitive constructed decks. You don\\u0026#39;t have the draw engines that give you complete turn 1 setups and let you see half your deck by turn 3. You don\\u0026#39;t have fully powered up attackers every turn taking knockouts. Instead, cube decks play at around the same speed as theme decks. You spend a few turns setting up, then start taking knock-outs semi-regularly. There will still be occasional dead draws and slow starts but part of the strategy is learning how to mitigate the damage of these situations. Is there a pokemon I can \\u003Ca href=\\\"https://pkmncards.com/card/carnivine-shining-legends-slg-6/\\\" title=\\\"[G] Flick Poison\\nSwitch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. The new Active Pok\\u00e9mon is now Poisoned.\\\"\\u003EFlick Poison\\u003C/a\\u003E and stall while I draw out of this? There are also a fair number of catch-up mechanics available in the cube so getting a slower start than your opponent is not an automatic game loss.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhere cube decks exceed theme decks is in their available lines of play. Theme decks execute basically the same game plan every time because they have only a couple good attackers and maybe one or two tricks. Cube decks have completely unique attackers and each will be strongest in different situations. Sequencing and setting up the right attacker for the right response KO becomes very important. The number of tricks available in cube decks is also much higher than theme decks, leading to lots of fun and unexpected plays throughout the game. \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EConsistency\\u003C/strong\\u003E: Consistency is a trick. On one hand, you want your decks to be doing cool, powerful, and interesting things. But doing those things usually means getting several specific cards in your hand and into play. Unfortunately, cube doesn\\u0026#39;t have strong enough draw engines to support intricate setups, and decks that rely heavily on them are going to be wildly inconsistent. On the other hand, if decks are very simple (play basic pokemon, attach energy, declare attack) they will be very consistent, but also very boring. So decks need a little bit of both. They need some meat and potatoes, basic attacks with low energy costs, as well as some spice, splashy evolution pokemon with unique attacks or abilities. The same is true with trainers, where you want your \\u003Ca href=\\\"https://pkmncards.com/card/colress-plasma-storm-pls-135/\\\" title=\\\"Shuffle your hand into your deck. Then, draw a number of cards equal to the number of Benched Pok\\u00e9mon (both your and your opponent\\u2019s).\\\"\\u003EColresses\\u003C/a\\u003E along side your \\u003Ca href=\\\"https://pkmncards.com/card/nanu-team-up-teu-179/\\\" title=\\\"Choose a Basic [D] Pok\\u00e9mon in your discard pile. Switch it with 1 of your Pok\\u00e9mon in play. Any attached cards, damage counters, Special Conditions, turns in play, and any other effects remain of the new Pok\\u00e9mon.\\\"\\u003ENanus\\u003C/a\\u003E. The decks that seem to work best are ones with solid basic attackers that can function on their own, but kick into another gear when they get the stage 2 support online. In Lightning decks, \\u003Ca href=\\\"https://pkmncards.com/card/zekrom-shining-legends-slg-35/\\\" title=\\\"[C][C] Outrage: 20+\\nThis attack does 10 more damage for each damage counter on this Pok\\u00e9mon.\\n[L][L][C] Storm Blade: 130\\nDiscard 2 Energy from this Pok\\u00e9mon.\\\"\\u003EZekrom\\u003C/a\\u003E or \\u003Ca href=\\\"https://pkmncards.com/card/zeraora-unbroken-bonds-unb-60/\\\" title=\\\"[L] Crushing Claw: 20\\nDiscard a Special Energy from your opponent\\u2019s Active Pok\\u00e9mon.\\n[L][C][C] Discharge: 50\\u00d7\\nDiscard all [L] Energy from this Pok\\u00e9mon. This attack does 50 damage for each card you discarded in this way.\\\"\\u003EZeraora\\u003C/a\\u003E can chip away for a few turns until \\u003Ca href=\\\"https://pkmncards.com/card/magnezone-forbidden-light-fli-36/\\\" title=\\\"Ability: Magnetic Circuit\\nAs often as you like during your turn (before your attack), you may attach a [L] Energy card from your hand to 1 of your Pok\\u00e9mon.\\\"\\u003EMagnezone\\u003C/a\\u003E begins accelerating energy and you start chewing through attackers. In Psychic decks, \\u003Ca href=\\\"https://pkmncards.com/card/hoopa-steam-siege-sts-51/\\\" title=\\\"[C] Hyperspace Punch\\nThis attack does 20 damage to 2 of your opponent\\u2019s Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][P][P] Portal Strike: 130\\nThis Pok\\u00e9mon can\\u2019t use Portal Strike during your next turn.\\\"\\u003EHoopa\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/latios-shining-legends-slg-41/\\\" title=\\\"[C][C] Break Through: 30\\nThis attack does 30 damage to 1 of your opponent\\u2019s Benched Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][C][C] Lagoon Flight: 70 \\\"\\u003ELatios\\u003C/a\\u003E can load up the board with damage allowing \\u003Ca href=\\\"https://pkmncards.com/card/chandelure-lost-thunder-lot-103/\\\" title=\\\"[P][P] Vortex of Pain: 20\\u00d7\\nThis attack does 20 damage for each damage counter on all of your opponent\\u2019s Pok\\u00e9mon.\\\"\\u003EChandelure\\u003C/a\\u003E to come in later and Vortex for huge numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EIn general, people tend to err on the cool and splashy side when building their cube. We\\u0026#39;re much more likely to imagine Magical Christmas Land in our heads when we envision how all the cards are going to work together. \\u0026quot;Of course I\\u0026#39;m going to draw \\u003Ca href=\\\"https://pkmncards.com/card/regirock-celestial-storm-ces-80/\\\" title=\\\"[F] Enhanced Stomp: 20+\\nIf this Pok\\u00e9mon has a Pok\\u00e9mon Tool card attached to it, this attack does 20 more damage.\\\"\\u003ERegirock\\u003C/a\\u003E, \\u003Ca href=\\\"https://pkmncards.com/card/muscle-band-xy-121/\\\" title=\\\"The attacks of the Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon (before applying Weakness and Resistance).\\\"\\u003EMuscle Band\\u003C/a\\u003E, \\u003Ca href=\\\"https://pkmncards.com/card/strong-energy-fates-collide-fco-115/\\\" title=\\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EStrong Energy\\u003C/a\\u003E and Rare Candy \\u003Ca href=\\\"https://pkmncards.com/card/machamp-furious-fists-ffi-46/\\\" title=\\\"Ability: Fighting Fury\\nEach of your [F] Pok\\u00e9mon\\u2019s attacks do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon .\\\"\\u003EFighting Fury Machamp\\u003C/a\\u003E on turn 2. 100 Damage for 1 energy! Might even be too good for cube.\\u0026quot; I try to avoid cards that do actual nothing if some previous setup isn\\u0026#39;t there. I want whatever I draw to be useful in some way. What makes Regirock good is that you only need \\u003Cem\\u003Eone\\u003C/em\\u003E of those pieces for it to be hitting above average numbers, but the more you have, the better it gets. One example of borderline do-nothings in my cube are the \\u003Ca href=\\\"https://pkmncards.com/card/ariados-celestial-storm-ces-6/\\\" title=\\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EReactive Poison\\u003C/a\\u003E attacks, since you really need access to status conditions for them to do anything. Fortunately, \\u003Ca href=\\\"https://pkmncards.com/card/victreebel-unbroken-bonds-unb-15/\\\" title=\\\"[G] Reactive Poison: 10+\\nThis attack does 60 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G][C][C] Gastro Acid: 90\\nThe Defending Pok\\u00e9mon has no Abilities until the end of your next turn.\\\"\\u003EVictreebel\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/ariados-celestial-storm-ces-6/\\\" title=\\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G] Spider Trap\\nYou may switch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. Your opponent\\u2019s Active Pok\\u00e9mon is now Asleep and Poisoned..\\\"\\u003EAriados\\u003C/a\\u003E have decent backup attacks making them somewhat more flexible if the setup isn\\u0026#39;t there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo what are the best types of cards to include to support the spice? What are the meat and potatoes?\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EAttack draw/search\\u003C/strong\\u003E: Standard games are usually too fast to waste your attack drawing cards, but with the slower pace of play in cube, attack based setup is very valuable. Cards like \\u003Ca href=\\\"https://pkmncards.com/card/alolan-vulpix-guardians-rising-gri-21/\\\" title=\\\"[-] Beacon\\nSearch your deck for up to 2 Pok\\u00e9mon, reveal them, and put them into your hand. Then, shuffle your deck.\\\"\\u003EAlolan Vulpix\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/dunsparce-celestial-storm-ces-110/\\\" title=\\\"[C] Strike and Run\\nSearch your deck for up to 3 Basic Pok\\u00e9mon and put them onto your Bench. Then, shuffle your deck. If you put any Pok\\u00e9mon onto your Bench in this way, you may switch this Pok\\u00e9mon with 1 of your Benched Pok\\u00e9mon.\\\"\\u003EDunsparce\\u003C/a\\u003E are pretty good for setting up your board but can be hard to reliably get out on the first turn and aren\\u0026#39;t that useful later on. \\u003Ca href=\\\"https://pkmncards.com/card/espeon-plasma-freeze-plf-48/\\\" title=\\\"[C] Psy Alert: 20\\nDraw cards until you have 6 cards in your hand.\\n[P] Shadow Ball\\nThis attack does 40 damage to 1 of your opponent\\u2019s Pok\\u00e9mon. Also apply Weakness and Resistance for Benched Pok\\u00e9mon.\\\"\\u003EEspeon\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/zoroark-black-white-blw-71/\\\" title=\\\"[D] Nasty Plot\\nSearch your deck for a card and put it into your hand. Shuffle your deck afterward.\\n[C][C] Foul Play\\nChoose 1 of the Defending Pok\\u00e9mon\\u2019s attacks and use it as this attack.\\\"\\u003EZoroark\\u003C/a\\u003E can dish out damage in addition to drawing cards, but are stage 1 and require some setup themselves before they are useful. My favorite kinds of cards are pokemon like \\u003Ca href=\\\"https://pkmncards.com/card/shaymin-shining-legends-slg-7/\\\" title=\\\"[G] Flippity Flap\\nShuffle your hand into your deck. Then, draw 6 cards.\\n[G][C] Rally Back: 30+\\nIf any of your Pok\\u00e9mon were Knocked Out by damage from an opponent\\u2019s attack during their last turn, this attack does 90 more damage.\\\"\\u003EShaymin\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/mimikyu-guardians-rising-gri-58/\\\" title=\\\"[C] Filch\\nDraw 2 cards.\\n[P][C] Copycat\\nIf your opponent\\u2019s Pok\\u00e9mon used an attack that isn\\u2019t a GX attack during their last turn, use it as this attack.\\\"\\u003EMimikyu\\u003C/a\\u003E. The efficient card draw helps with early game setup and mid-game dead draws while their situational attacks keep them relevant to the last prize. They may not be super flavorful additions to their respective archetypes, but they are crucial to a well functioning decks. When things aren\\u0026#39;t going as planned, you still need cards that get out there and do \\u003Cem\\u003Esomething\\u003C/em\\u003E to help move the game along. Basic attackers, single energy card draw, efficient damage; these pokemon are the glue that hold all fun stuff together.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?auto=webp\\u0026s=e600eb5ec36578972c9dcb042117f9d7e73eaf67\", \"width\": 700, \"height\": 990}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fbc3f54435181448357a2436160e1dfb3519b084\", \"width\": 108, \"height\": 152}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a5f63fcfa2a6c9d8c07906f31aa033efa31e74b8\", \"width\": 216, \"height\": 305}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cfed664ed03f019883ba79e3a787368deb119107\", \"width\": 320, \"height\": 452}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=32513d92d08fcbec7db49d5f29ef8e082ddf5716\", \"width\": 640, \"height\": 905}], \"variants\": {}, \"id\": \"fHDRdxaTIumi8RmF5w1gT1sw9aM-jH8wqoT5OXhhUUQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bskwuj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vandergus\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558725045.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**TL;DR I will make separate comments for each type of post below and users can volunteer and coordinate amongst yourselves as to who will make the posts to avoid duplicate posts on the same subject**\\n\\nHello fellow Formula 1.5 enthusiasts! We'd love to see some volunteers to make various race-weekend and other posts on a regular basis. There is a comprehensive list in this post but feel free to point out any others that you think should be a regular feature!\\n\\n**Regular threads for race weekends:**\\n\\n*For practice, qualifying and race / immediately post-racesessions, please join the threads on r/formula1*\\n\\n**We would like to ask for volunteers to make the following regular posts:**\\n\\n\\nPoll for DOTD\\n\\nRace report \\n\\nThe race report post will also act as a race-debrief thread (day or two after the race) - this will be more heavily moderated to remove memes, circlejerks and low effort comments.\\n\\n\\nPractice 1, 2 and 3 classification and timesheets (in the same style as official ones)\\n\\nQualifying classification and timesheets (in the same style as official ones)\\n\\nFinal race classification and timesheet (in the same style as official ones)\\n\\nPicture of podium finishers [example](https://twitter.com/F1/status/1127586568703754240?s=20)\\n\\nDOTD announcement [example](https://twitter.com/F1/status/1127587969437765632?s=20)\\n\\nFastest Lap announcement [example](https://twitter.com/F1/status/1127600146374635526?s=20)\\n\\nFastest pit stop announcement [example](https://twitter.com/F1/status/1127682358327402497?s=20)\\n\\nWDC standings after the race [example](https://twitter.com/F1/status/1127597818590519297?s=20)\\n\\nWCC standings after the race (similar style to above)\\n\\nOf course, other OC is always welcome, you may like to consider that you will likely get more visibility in r/formula1 at the moment as it is just a far bigger subreddit.\", \"author_fullname\": \"t2_6yp2341\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Formula 1.5 | Call for volunteers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsfs29\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558726259.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ETL;DR I will make separate comments for each type of post below and users can volunteer and coordinate amongst yourselves as to who will make the posts to avoid duplicate posts on the same subject\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello fellow Formula 1.5 enthusiasts! We\\u0026#39;d love to see some volunteers to make various race-weekend and other posts on a regular basis. There is a comprehensive list in this post but feel free to point out any others that you think should be a regular feature!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERegular threads for race weekends:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EFor practice, qualifying and race / immediately post-racesessions, please join the threads on \\u003Ca href=\\\"/r/formula1\\\"\\u003Er/formula1\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWe would like to ask for volunteers to make the following regular posts:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPoll for DOTD\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERace report \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe race report post will also act as a race-debrief thread (day or two after the race) - this will be more heavily moderated to remove memes, circlejerks and low effort comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPractice 1, 2 and 3 classification and timesheets (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQualifying classification and timesheets (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinal race classification and timesheet (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPicture of podium finishers \\u003Ca href=\\\"https://twitter.com/F1/status/1127586568703754240?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDOTD announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127587969437765632?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFastest Lap announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127600146374635526?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFastest pit stop announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127682358327402497?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWDC standings after the race \\u003Ca href=\\\"https://twitter.com/F1/status/1127597818590519297?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWCC standings after the race (similar style to above)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, other OC is always welcome, you may like to consider that you will likely get more visibility in \\u003Ca href=\\\"/r/formula1\\\"\\u003Er/formula1\\u003C/a\\u003E at the moment as it is just a far bigger subreddit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?auto=webp\\u0026s=531b435f194ee4f9748862ea1f91c2b67808c9f7\", \"width\": 1080, \"height\": 916}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d5452d83fbe31e607852fdcf1fde109bd7f3a4cc\", \"width\": 108, \"height\": 91}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=16e1e705a2cac15745660eedc341cd51707cf99c\", \"width\": 216, \"height\": 183}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=aa9d5874c0919292a0aca1ef10c92decc7a31d14\", \"width\": 320, \"height\": 271}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f9c5c8bf7d52b467b305e24ee5efcd517d3c171d\", \"width\": 640, \"height\": 542}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e1b62c400be0002c41001bf986fd3216bdc25147\", \"width\": 960, \"height\": 814}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=2f1df5035b62f8945614ca65e4c8656ca6760a0a\", \"width\": 1080, \"height\": 916}], \"variants\": {}, \"id\": \"MiHDcikgOe3mM0vjxRgbnrY-GqdMjGqvxB79Gt7ozgk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsfs29\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"elusive_username\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsfs29/formula_15_call_for_volunteers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsfs29/formula_15_call_for_volunteers/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558697459.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_e9a3z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"More test code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 110, \"hide_score\": false, \"name\": \"t3_bsdcgq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/o1Wz3EYwj9GW7Qr_bmSIsLld3Kz5O6AcX7oCXbFhvEY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558706660.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?auto=webp\\u0026s=c58d56e9df9af072d5a095e6817d45ee9c561df5\", \"width\": 328, \"height\": 258}, \"resolutions\": [{\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0973c520828e38195d066689c8fe9a8d2c35c77f\", \"width\": 108, \"height\": 84}, {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a7f5f8811cd4fd4214888c2037f3f8df8509f8eb\", \"width\": 216, \"height\": 169}, {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=53978780d7a0aebc1491cc0ac3acfb7d5e4b6c71\", \"width\": 320, \"height\": 251}], \"variants\": {}, \"id\": \"TZlQzMgacJjOUSE2BlGji8NTN8-C9hPqq8kMNAqpWso\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsdcgq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kyrieru\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsdcgq/more_test_code/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/su3ly0osl3031.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558677860.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"And example of this\\nhttps://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\", \"author_fullname\": \"t2_e9a3z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Code stuff\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsd8yc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558705892.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd example of this\\n\\u003Ca href=\\\"https://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\\\"\\u003Ehttps://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?auto=webp\\u0026s=5b993446d3d76df08f0c0371951333128f74c769\", \"width\": 328, \"height\": 258}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ea056c4c9fee2d83218d84b8aa6ed581e2eabf7c\", \"width\": 108, \"height\": 84}, {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=eecea5ccbbd73effaa403a85d0605bd8746c5752\", \"width\": 216, \"height\": 169}, {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=28f18ef2ebc9f593b6dff7e583b7ff1d0fdae743\", \"width\": 320, \"height\": 251}], \"variants\": {}, \"id\": \"0xh4SkoN-_7L19axx7iX9dkL1P45YCt3cq7ntix-vAA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsd8yc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kyrieru\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsd8yc/code_stuff/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsd8yc/code_stuff/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558677092.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"hula hula\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs5rrg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558661342.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs5rrg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs5rrg/hula_hula/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs5rrg/hula_hula/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558632542.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"my lil pony\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bs5jg4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Snail Mail: NPR Music Tiny Desk Concert\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"NPR Music\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/21ix1OwPoY8/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/nprmusic\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bs5jg4\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/NQre-JqAcR4bl9-yMXUx4RaT5Ub5-xLn2eE0he_B5rI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558660165.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?auto=webp\\u0026s=dd82178336835b0d9ade4b238edb5e9800334ae3\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=89e1bcb2c1784115389b14cc50ee747c908e766c\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=050bb5c4afcac9bd34deca76be313bc6b31e682e\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=44e665a96892d7afd4b824ebf0e674b6b9b81dc3\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"mhwh-bo9dmEuYO_PMyd1-wSh93Ge-4baH0jdQnIlCRU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs5jg4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs5jg4/my_lil_pony/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"http://www.youtube.com/watch?v=21ix1OwPoY8\", \"subreddit_subscribers\": 703, \"created_utc\": 1558631365.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Snail Mail: NPR Music Tiny Desk Concert\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"NPR Music\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/21ix1OwPoY8/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/nprmusic\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project **Chronicles of Osira**! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\n***\\n###Our Purpose \\u0026 Goals:\\n\\nOur vision is to be the most popular multiplayer survival RPG \\u0026 minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\n***\\n###Survival RPG World (Osira):\\n\\nIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\n***\\n###Main Features:\\n\\n######Terrain Regen Mod\\n\\nOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\n\\n######NPC Mod\\n\\nThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\n\\n######Kingdom System\\n\\nThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\n***\\n###Server Status: \\n\\n**Various Positions Open**! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\n***\\n###Social Media: \\n\\n* Twitter: [Twitter](https://twitter.com/OsiraChronicles)\\n* Discord: [Discord](https://discord.gg/rzfNq8p)\\n* SubReddit: Coming Soon\\n* Starter Website: Coming Soon (finishing up development)\\n* Youtube: Coming Soon\\n* Email: chroniclesofosira@gmail.com\", \"author_fullname\": \"t2_3tl8crp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs4e7x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558654467.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch4\\u003EHey everyone, we\\u2019re super excited today to publicly announce the development of our server project \\u003Cstrong\\u003EChronicles of Osira\\u003C/strong\\u003E! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\u003C/h4\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EOur Purpose \\u0026amp; Goals:\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EOur vision is to be the most popular multiplayer survival RPG \\u0026amp; minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003ESurvival RPG World (Osira):\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EMain Features:\\u003C/h3\\u003E\\n\\n\\u003Ch6\\u003ETerrain Regen Mod\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\u003C/p\\u003E\\n\\n\\u003Ch6\\u003ENPC Mod\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\u003C/p\\u003E\\n\\n\\u003Ch6\\u003EKingdom System\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EServer Status:\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EVarious Positions Open\\u003C/strong\\u003E! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003ESocial Media:\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ETwitter: \\u003Ca href=\\\"https://twitter.com/OsiraChronicles\\\"\\u003ETwitter\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDiscord: \\u003Ca href=\\\"https://discord.gg/rzfNq8p\\\"\\u003EDiscord\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESubReddit: Coming Soon\\u003C/li\\u003E\\n\\u003Cli\\u003EStarter Website: Coming Soon (finishing up development)\\u003C/li\\u003E\\n\\u003Cli\\u003EYoutube: Coming Soon\\u003C/li\\u003E\\n\\u003Cli\\u003EEmail: \\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?auto=webp\\u0026s=4175bc2acf207428f5a243476ba4485bd153bda3\", \"width\": 400, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8caf7c066e7a5bab8d9fe3a872adba0b01b74464\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f7a0a268911ad5c4f4709811f2f98acf4cab9411\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=72c8baed8a1f8b67b30b4cf626fa1514a1fb81f4\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"bTS-23LsPy3BUIV0fTZfuz80MZ1bVJqHdkOLkoUzRLY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs4e7x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OsiraDevTeam\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs4e7x/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs4e7x/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558625667.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project \\\\*\\\\*Chronicles of Osira\\\\*\\\\*! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Our Purpose \\u0026 Goals:\\n\\n\\u0026#x200B;\\n\\nOur vision is to be the most popular multiplayer survival RPG \\u0026 minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Survival RPG World (Osira):\\n\\n\\u0026#x200B;\\n\\nIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Main Features:\\n\\n\\u0026#x200B;\\n\\n\\\\######Terrain Regen Mod\\n\\n\\u0026#x200B;\\n\\nOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\n\\n\\u0026#x200B;\\n\\n\\\\######NPC Mod\\n\\n\\u0026#x200B;\\n\\nThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\n\\n\\u0026#x200B;\\n\\n\\\\######Kingdom System\\n\\n\\u0026#x200B;\\n\\nThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Server Status:\\n\\n\\u0026#x200B;\\n\\n**Various Positions Open**! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\n\\n\\\\*\\\\*\\\\*\\n\\n# ###Social Media:\\n\\nTwitter: \\\\[Twitter\\\\]([https://twitter.com/OsiraChronicles](https://twitter.com/OsiraChronicles))\\n\\nDiscord: \\\\[Discord\\\\]([https://discord.gg/rzfNq8p](https://discord.gg/rzfNq8p))\\n\\nSubReddit: Coming Soon\\n\\nStarter Website: Coming Soon (finishing up development)\\n\\nYoutube: Coming Soon\\n\\nEmail: [chroniclesofosira@gmail.com](mailto:chroniclesofosira@gmail.com)\", \"author_fullname\": \"t2_3tl8crp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"CoO\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs48eu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558625101.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558653631.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project **Chronicles of Osira**! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Our Purpose \\u0026amp; Goals:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur vision is to be the most popular multiplayer survival RPG \\u0026amp; minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Survival RPG World (Osira):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Main Features:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######Terrain Regen Mod\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######NPC Mod\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######Kingdom System\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Server Status:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EVarious Positions Open\\u003C/strong\\u003E! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E###Social Media:\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ETwitter: [Twitter](\\u003Ca href=\\\"https://twitter.com/OsiraChronicles\\\"\\u003Ehttps://twitter.com/OsiraChronicles\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDiscord: [Discord](\\u003Ca href=\\\"https://discord.gg/rzfNq8p\\\"\\u003Ehttps://discord.gg/rzfNq8p\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESubReddit: Coming Soon\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStarter Website: Coming Soon (finishing up development)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYoutube: Coming Soon\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmail: [\\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E](mailto:\\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?auto=webp\\u0026s=4175bc2acf207428f5a243476ba4485bd153bda3\", \"width\": 400, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8caf7c066e7a5bab8d9fe3a872adba0b01b74464\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f7a0a268911ad5c4f4709811f2f98acf4cab9411\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=72c8baed8a1f8b67b30b4cf626fa1514a1fb81f4\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"bTS-23LsPy3BUIV0fTZfuz80MZ1bVJqHdkOLkoUzRLY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs48eu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OsiraDevTeam\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs48eu/coo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs48eu/coo/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558624831.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"my testes\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testual\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs2x6p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558646741.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emy testes\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs2x6p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs2x6p/testual/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs2x6p/testual/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558617941.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Should I upgrade my subwoofer and if so, what subwoofers do you recommend? Also just got a new 77\\\" LG C8 OLED TV (pics.)\\n\\n[Layout \\u0026 Picture Album](https://imgur.com/a/GhlqXQo) \\n\\nI'm doing a complete home theater overhaul. I just upgraded to a LG C8 77\\\" OLED TV. Please excuse the mess - I have lots of boxes from new goodies for this. =D I'm upgrading to a Dolby Atmos 5.1.4 (5.2.4) surround sound system with ceiling mounted speakers. I just picked up a Denon AVR-X4400h. I'm planning on getting 4x [Boston Acoustics SoundWare](https://www.accessories4less.com/make-a-store/item/bossoundwareblka/boston-acoustics-soundware-4.5-speaker-atmos-dts-x-on-wall-speaker-black-each/1.html) ceiling mounted speakers. I still have acoustic room treatment to do and that's part of my whole budget too. I'm also considering upgrading my subwoofer. \\n\\nMy current 5.1 surround sound system (satellites temporarily removed for the TV install) is a [Jamo S 606 HCS 3 system.](https://www.jamo.com/products/s606hcs3) I also have one sealed [Jamo D 6 SUB.](https://www.jamo.com/products/d6sub)\\n\\nWould it be worthwhile to upgrade my subwoofer and get two subs? I notice a lot of bass loudness variability from each seating position due to standing waves in my current apartment and running two subwoofers will help mitigate it. Of course you need two matching subwoofers for this but my jamo is discontinued and can't find any more on eBay. \\n\\nThen my jamo really doesn't hit low enough frequencies these days for new movie content. Online the specs advertise down to 28 hz, but listening to test tones it seems like there is a lot of dropoff starting to occur at 35-40 hz. I'm really desiring a subwoofer that doesn't start to drop off until 20-16 hz. I definitely would like to feel the low bass more and feel infrasonic frequencies (say down to 10hz) in movies. Of course there may be realistic limits in an apartment as that may disrupt others vs say 35hz playback. \\n\\nI'm in an apartment. I generally listen at -10 db to -15 db below reference level and haven't gotten any complaints. The walls seem thick but I definitely don't want to go past reference level currently. I do plan on getting my own home in 5~ years so I do want to save some future capability to comfortably listen at reference level. I'm also really desiring quality bass delivery and not just high SPL.\\n\\n**Usage:** \\n80% Netflix streaming/bd movies/tv shows, 10% music, possibly 10% or more gaming when new consoles come out (I'm mostly a pc gamer). \\n\\n**Room Specs:** \\nSee above diagram. Inner wall dimensions are 18'x14' for the living room, 10.5' x 10.0' for my dining room, and 5.5' x 8.5' for the kitchen area. So total room size is roughly 3,600 ft ^ 3 counting dining area/kitchen. Distance to main listening position is roughly 9' to my ears (8' 6\\\" to tv). \\n\\n**Budget:** \\nI'm pretty flexible as I want the best experience. I don't mind spending a bit for future headroom for when I don't have shared walls, but I don't want to drastically overspend. My hard limit is $2.5k/subwoofer (so $5k for dual subs.) I'm really leaning more towards the $1k sub price point. \\n\\n**Requirements:** \\n \\n* Dual subwoofer setup. \\n* Needs to hit max loudness THX reference SPL level playback at a 9' main listening position for all frequencies above 20hz, allowing for room gain to contribute to it (and ideally down to 16 hz). (So hitting 115dB peaks.) This is for two subwoofers in use. That will be enough future proofing for my situation.\\n* No more than $4k - $5k total for two subs. \\n* Ideally less than $2k ($1k per sub) for the subs if possible. \\n* Very flat frequency response.\\n* A great listening experience. \\n* Accurate and precise bass - not boomy.\\n* I care greatly about quality over raw loudness - as long as it can hit reference levels. \\n* No homebuilt. I don't have the time, skills, room, or equipment to build my own sub. \\n\\n**Bonuses:**\\n\\n* Great infrasonic experience.\\n* Able to be picked up by one person (under 100 lbs.)\\n* Calibration options that my receiver may not be able to support.\\n\\n**Subs I've looked at:** \\nSVS SB-2000 / PB-2000 \\nSVS SB-3000 / PB-3000 \\nSVS SB-4000 / PB-4000 \\nSVS SB16-Ultra / PB16-Ultra \\nHSU VTF-15H MK2 \\n\\n**Things I'm still trying to decide:** \\nSealed vs ported subs. It's really hard for me to decide this. I know SVS's tune frequencies are very low. I like that SVS's response curve seems to be much flatter for their ported subs above the tune frequency and also seems to have more power than the sealed subwoofers. But then below the tune frequency I think I really like the roll-off graph of their sealed subwoofers more when say hitting 10hz, as it appears pretty flat when you account for room gain. Then since I'm running two subwoofers that will add some gain.\\n\\n**Things I've ruled out:** \\nThe SVS SB-1000/PB-1000 - I don't think it will be able to hit reference level movie bass at a 9' listening position. I'm sure it's a great sub but it seems a bit under-powered to what I have according to CEA 2010 test results. \\n\\nI'm leaning towards at least the SB-3000 (or ported version) as it seems to have newer drivers/tech than the SB-2000. It also doesn't seem ungodly heavy unlike the higher end subwoofers. I'm also likewise leaning towards the sealed sub for greater infrasonic extension but that's not firm at all. I'm concerned that the sealed SVS SB-4000 doesn't hit near 115 db in CEA 2010 testing until 40hz, while the ported version gets near there at 20hz. Running with one port open (extended mode) seems to be the best of both worlds - lower sealed like extension and flatter ported like curve. Is that truly the case?\\n\\n**Questions:** \\n \\n* If I get a SVS ported sub and plug up all three ports is it very close to the sealed version? Or is there a huge difference between the dedicated sealed version? \\n* Ported or sealed subwoofer?\\n* If ported, how many ports open?\\n* What is the cheapest subwoofer that meets my SPL requirements and is at least equal to quality as the SVS subs? \\n* Is the DSP calibration tools SVS provides just a marketing gimick? Can my Denon AVR-X4400H EQ the subs just fine? Or is that sort of feature worthwhile? \\n* What crossover should I set with two of these subwoofers? Go past 80hz and into 100-200 hz? \\n* What other subwoofers should I seriously consider?\\n* Should I consider revisiting my towers/surrounds or are they still really good? They sound great to me and I have no complaints, but then I don't know if I'm missing out on improvements here. \\n\\nThanks!\", \"author_fullname\": \"t2_kz0h4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs053g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558657807.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558626664.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShould I upgrade my subwoofer and if so, what subwoofers do you recommend? Also just got a new 77\\u0026quot; LG C8 OLED TV (pics.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/GhlqXQo\\\"\\u003ELayout \\u0026amp; Picture Album\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m doing a complete home theater overhaul. I just upgraded to a LG C8 77\\u0026quot; OLED TV. Please excuse the mess - I have lots of boxes from new goodies for this. =D I\\u0026#39;m upgrading to a Dolby Atmos 5.1.4 (5.2.4) surround sound system with ceiling mounted speakers. I just picked up a Denon AVR-X4400h. I\\u0026#39;m planning on getting 4x \\u003Ca href=\\\"https://www.accessories4less.com/make-a-store/item/bossoundwareblka/boston-acoustics-soundware-4.5-speaker-atmos-dts-x-on-wall-speaker-black-each/1.html\\\"\\u003EBoston Acoustics SoundWare\\u003C/a\\u003E ceiling mounted speakers. I still have acoustic room treatment to do and that\\u0026#39;s part of my whole budget too. I\\u0026#39;m also considering upgrading my subwoofer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current 5.1 surround sound system (satellites temporarily removed for the TV install) is a \\u003Ca href=\\\"https://www.jamo.com/products/s606hcs3\\\"\\u003EJamo S 606 HCS 3 system.\\u003C/a\\u003E I also have one sealed \\u003Ca href=\\\"https://www.jamo.com/products/d6sub\\\"\\u003EJamo D 6 SUB.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWould it be worthwhile to upgrade my subwoofer and get two subs? I notice a lot of bass loudness variability from each seating position due to standing waves in my current apartment and running two subwoofers will help mitigate it. Of course you need two matching subwoofers for this but my jamo is discontinued and can\\u0026#39;t find any more on eBay. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen my jamo really doesn\\u0026#39;t hit low enough frequencies these days for new movie content. Online the specs advertise down to 28 hz, but listening to test tones it seems like there is a lot of dropoff starting to occur at 35-40 hz. I\\u0026#39;m really desiring a subwoofer that doesn\\u0026#39;t start to drop off until 20-16 hz. I definitely would like to feel the low bass more and feel infrasonic frequencies (say down to 10hz) in movies. Of course there may be realistic limits in an apartment as that may disrupt others vs say 35hz playback. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m in an apartment. I generally listen at -10 db to -15 db below reference level and haven\\u0026#39;t gotten any complaints. The walls seem thick but I definitely don\\u0026#39;t want to go past reference level currently. I do plan on getting my own home in 5~ years so I do want to save some future capability to comfortably listen at reference level. I\\u0026#39;m also really desiring quality bass delivery and not just high SPL.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUsage:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\n80% Netflix streaming/bd movies/tv shows, 10% music, possibly 10% or more gaming when new consoles come out (I\\u0026#39;m mostly a pc gamer). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERoom Specs:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSee above diagram. Inner wall dimensions are 18\\u0026#39;x14\\u0026#39; for the living room, 10.5\\u0026#39; x 10.0\\u0026#39; for my dining room, and 5.5\\u0026#39; x 8.5\\u0026#39; for the kitchen area. So total room size is roughly 3,600 ft ^ 3 counting dining area/kitchen. Distance to main listening position is roughly 9\\u0026#39; to my ears (8\\u0026#39; 6\\u0026quot; to tv). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBudget:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nI\\u0026#39;m pretty flexible as I want the best experience. I don\\u0026#39;t mind spending a bit for future headroom for when I don\\u0026#39;t have shared walls, but I don\\u0026#39;t want to drastically overspend. My hard limit is $2.5k/subwoofer (so $5k for dual subs.) I\\u0026#39;m really leaning more towards the $1k sub price point. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERequirements:\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDual subwoofer setup.\\u003Cbr/\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENeeds to hit max loudness THX reference SPL level playback at a 9\\u0026#39; main listening position for all frequencies above 20hz, allowing for room gain to contribute to it (and ideally down to 16 hz). (So hitting 115dB peaks.) This is for two subwoofers in use. That will be enough future proofing for my situation.\\u003C/li\\u003E\\n\\u003Cli\\u003ENo more than $4k - $5k total for two subs. \\u003C/li\\u003E\\n\\u003Cli\\u003EIdeally less than $2k ($1k per sub) for the subs if possible. \\u003C/li\\u003E\\n\\u003Cli\\u003EVery flat frequency response.\\u003C/li\\u003E\\n\\u003Cli\\u003EA great listening experience. \\u003C/li\\u003E\\n\\u003Cli\\u003EAccurate and precise bass - not boomy.\\u003C/li\\u003E\\n\\u003Cli\\u003EI care greatly about quality over raw loudness - as long as it can hit reference levels. \\u003C/li\\u003E\\n\\u003Cli\\u003ENo homebuilt. I don\\u0026#39;t have the time, skills, room, or equipment to build my own sub. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBonuses:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EGreat infrasonic experience.\\u003C/li\\u003E\\n\\u003Cli\\u003EAble to be picked up by one person (under 100 lbs.)\\u003C/li\\u003E\\n\\u003Cli\\u003ECalibration options that my receiver may not be able to support.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESubs I\\u0026#39;ve looked at:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSVS SB-2000 / PB-2000\\u003Cbr/\\u003E\\nSVS SB-3000 / PB-3000\\u003Cbr/\\u003E\\nSVS SB-4000 / PB-4000\\u003Cbr/\\u003E\\nSVS SB16-Ultra / PB16-Ultra\\u003Cbr/\\u003E\\nHSU VTF-15H MK2 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThings I\\u0026#39;m still trying to decide:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSealed vs ported subs. It\\u0026#39;s really hard for me to decide this. I know SVS\\u0026#39;s tune frequencies are very low. I like that SVS\\u0026#39;s response curve seems to be much flatter for their ported subs above the tune frequency and also seems to have more power than the sealed subwoofers. But then below the tune frequency I think I really like the roll-off graph of their sealed subwoofers more when say hitting 10hz, as it appears pretty flat when you account for room gain. Then since I\\u0026#39;m running two subwoofers that will add some gain.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThings I\\u0026#39;ve ruled out:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nThe SVS SB-1000/PB-1000 - I don\\u0026#39;t think it will be able to hit reference level movie bass at a 9\\u0026#39; listening position. I\\u0026#39;m sure it\\u0026#39;s a great sub but it seems a bit under-powered to what I have according to CEA 2010 test results. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m leaning towards at least the SB-3000 (or ported version) as it seems to have newer drivers/tech than the SB-2000. It also doesn\\u0026#39;t seem ungodly heavy unlike the higher end subwoofers. I\\u0026#39;m also likewise leaning towards the sealed sub for greater infrasonic extension but that\\u0026#39;s not firm at all. I\\u0026#39;m concerned that the sealed SVS SB-4000 doesn\\u0026#39;t hit near 115 db in CEA 2010 testing until 40hz, while the ported version gets near there at 20hz. Running with one port open (extended mode) seems to be the best of both worlds - lower sealed like extension and flatter ported like curve. Is that truly the case?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuestions:\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf I get a SVS ported sub and plug up all three ports is it very close to the sealed version? Or is there a huge difference between the dedicated sealed version? \\u003C/li\\u003E\\n\\u003Cli\\u003EPorted or sealed subwoofer?\\u003C/li\\u003E\\n\\u003Cli\\u003EIf ported, how many ports open?\\u003C/li\\u003E\\n\\u003Cli\\u003EWhat is the cheapest subwoofer that meets my SPL requirements and is at least equal to quality as the SVS subs? \\u003C/li\\u003E\\n\\u003Cli\\u003EIs the DSP calibration tools SVS provides just a marketing gimick? Can my Denon AVR-X4400H EQ the subs just fine? Or is that sort of feature worthwhile? \\u003C/li\\u003E\\n\\u003Cli\\u003EWhat crossover should I set with two of these subwoofers? Go past 80hz and into 100-200 hz? \\u003C/li\\u003E\\n\\u003Cli\\u003EWhat other subwoofers should I seriously consider?\\u003C/li\\u003E\\n\\u003Cli\\u003EShould I consider revisiting my towers/surrounds or are they still really good? They sound great to me and I have no complaints, but then I don\\u0026#39;t know if I\\u0026#39;m missing out on improvements here. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?auto=webp\\u0026s=59339d4b2ebfbe18b61c9a86e365f8321531d124\", \"width\": 657, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c18fe46880e5ca72d70aecab4f79a4f265755b32\", \"width\": 108, \"height\": 197}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=eb476b372546cf2d51c8d9f6f6b3181ea39b4c69\", \"width\": 216, \"height\": 394}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=628e28ecbb59a23550dade2a9b91fed61c296c81\", \"width\": 320, \"height\": 584}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d2a0c12ad208ef2add9bca3b8ec39909bf6404e5\", \"width\": 640, \"height\": 1168}], \"variants\": {}, \"id\": \"g_mPvQ05DaozAfugMZjnsIvHh9OD3XMO1-AgGxxaLwQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs053g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"IncendiaryGames\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs053g/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558597864.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Ru Paul's Drag Race Episode ???\\n\\n(Queens entering the Werkroom holding hands and laughing together)\\n\\n\\\"Yeah I hate all these bitches and I'm here to win!\\\"\\n\\n\\u003EEditors use a shot of said queen hugging everyone. Everyone gathers around the table\\n\\n\\\"So who you think the challenge is going to be?\\n\\n\\u003ENeedless drama happens. Everyone bickers. \\n\\u003ERu enters\\n\\n\\\"AAHHHHHH!\\\"\\n\\nRu: \\\"Your next challenge is gonna be (insert Ru's favorite activity) which is a tribute of (Whatever Ru is really interested in) All set to (Whatever new track Ru is selling on I-Tunes)\\n\\n\\u003EQueens show polite interest\\n\\nRu:\\\"Tonight's runway is judged by (insert name of celebrity/media person that you kinda like but don't super love)\\n\\nQueens: \\\"AHHHHHH!\\\"\\n\\n\\u003EInterview Segment\\n\\n\\\"OMG I am the biggest fan of (insert name of celebrity/media person that you kinda like but don't super love)! They are my idol! I can't fuck this up.\\n\\n\\u003ERu walks the Werkroom and gives Boomer tier advice like \\\"Be yourself\\\", \\\"Make it funny\\\" and something about your inner sabatoor.\\n\\n\\u003ERehearsal segment that plays similar to everyone. Be mindful of the Queen that looks really bad as they usually will win or do better than the edit makes them appear to be. \\n\\u003EChallenge starts\\n\\n\\u003EQueen says joke that you are unsure if it is good or bad until you see the camera pan, in silence, the sound of a woodblock being struck and another queen going \\\"Say what?!\\\"\\n\\n\\u003ERu walks out wearing one of her five prepackaged looks.\\n\\u003ERunway segment\\n\\u003EUnsure of what the judges think as everyone is making dad jokes \\n\\u003ERu picks the bottom two queens\\n\\nQueen A: \\\"I can't go home now, Queen B is fierce but I have so much to show. I gotta turn it out!\\\"\\n\\nQueen B: I have so much to show, I can't go home now. Queen A is fierce and I gotta turn it out!\\\"\\n\\n\\u003EQuestionable lipsynch that reddit will debate who won endlessly\\n\\u003EWinner is chosen\\n\\u003EOther queen goes home, its sad. They later write a message on the mirror where they pour their heart out only for it to be read once and instantly wiped away.\\n\\nTO TO TO DA MOON!\", \"author_fullname\": \"t2_mic9d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brvh14\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558594377.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERu Paul\\u0026#39;s Drag Race Episode ???\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Queens entering the Werkroom holding hands and laughing together)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;Yeah I hate all these bitches and I\\u0026#39;m here to win!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EEditors use a shot of said queen hugging everyone. Everyone gathers around the table\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;So who you think the challenge is going to be?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENeedless drama happens. Everyone bickers. \\nRu enters\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;AAHHHHHH!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERu: \\u0026quot;Your next challenge is gonna be (insert Ru\\u0026#39;s favorite activity) which is a tribute of (Whatever Ru is really interested in) All set to (Whatever new track Ru is selling on I-Tunes)\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EQueens show polite interest\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ERu:\\u0026quot;Tonight\\u0026#39;s runway is judged by (insert name of celebrity/media person that you kinda like but don\\u0026#39;t super love)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQueens: \\u0026quot;AHHHHHH!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EInterview Segment\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;OMG I am the biggest fan of (insert name of celebrity/media person that you kinda like but don\\u0026#39;t super love)! They are my idol! I can\\u0026#39;t fuck this up.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERu walks the Werkroom and gives Boomer tier advice like \\u0026quot;Be yourself\\u0026quot;, \\u0026quot;Make it funny\\u0026quot; and something about your inner sabatoor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERehearsal segment that plays similar to everyone. Be mindful of the Queen that looks really bad as they usually will win or do better than the edit makes them appear to be. \\nChallenge starts\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQueen says joke that you are unsure if it is good or bad until you see the camera pan, in silence, the sound of a woodblock being struck and another queen going \\u0026quot;Say what?!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERu walks out wearing one of her five prepackaged looks.\\nRunway segment\\nUnsure of what the judges think as everyone is making dad jokes \\nRu picks the bottom two queens\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EQueen A: \\u0026quot;I can\\u0026#39;t go home now, Queen B is fierce but I have so much to show. I gotta turn it out!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQueen B: I have so much to show, I can\\u0026#39;t go home now. Queen A is fierce and I gotta turn it out!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EQuestionable lipsynch that reddit will debate who won endlessly\\nWinner is chosen\\nOther queen goes home, its sad. They later write a message on the mirror where they pour their heart out only for it to be read once and instantly wiped away.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETO TO TO DA MOON!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brvh14\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bearality\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brvh14/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brvh14/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558565577.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"***War of the Monsters*** *(2028)*\\n\\n*Setting: Various places, 1963*\\n\\nIn our final story, we rejoin **Eve**, **Lester Talbot**, and **Jacob Van Helsing** twenty-five years after we first met them.\\n\\nThe year is 1963. At home, America is still reeling from the horror of **President John F. Kennedy**'s assassination, which has provoked a fresh wave of social unrest as rumors spread of international conspiracies. Abroad, the Cold War with the Soviet Union rages on as American soldiers in South Vietnam brace for a looming skirmish with Communist forces. After more than two decades of adventure, Eve\\u2014who doesn't age\\u2014is still just as youthful as she was in 1938, but Lester and Jacob are both showing their age, and both men are contemplating retirement. As the 20th century rolls forward, monsters are becoming progressively rare, to the point that Eve and Lester wonder if they're the last of a dying breed. And while an aging Jacob still feels an obligation to uphold the legacy of his grandfather **Abraham Van Helsing**, he knows that there is no need for monster hunters in a world without monsters.\\n\\nBut after twenty-five years of searching, the trio *still* haven't been able to find **Dr. Hans Niemann**. And although the years have been hard on Jacob and Lester, they know that they won't be able to rest until they finally bring the sinister ex-Nazi to justice.\\n\\nBut all of that changes when they stumble upon a stolen KGB dossier.\\n\\nWhile trying to bust a voodoo cult in New Orleans, Eve accidentally comes into possession of a dossier that one of their members stole from a KGB spy hiding out in America. The file contains detailed information about the activities of **Directorate M**, a secret KGB task force that was assembled in the 1940s to research and weaponize vampire DNA. As she learns, the leader of the group was determined to track down a certain vampire living in a remote village in Romania, believing that his bloodline held special powers. But when Jacob and Lester read over the dossier with her, they soon learn that the Romanian vampire (a man called \\\"**Vladislav**\\\", or just \\\"**Vlad**\\\") was believed to be the biological son of **Dracula** himself! Not only that, Vladislav has been missing since 1948, when he escaped from Directorate M's headquarters in Moscow and fled Russia. And while the KGB never found him, they believe that he fled across the Atlantic sometime in the 1950s.\\n\\nThe son of Dracula is still alive, and he may be hiding in America! As soon as Jacob realizes this, he knows that he has to find Vlad and kill him, since it's the only way to finish what his grandfather started. Armed with a grainy photo of Vlad contained in the dossier, Jacob begins pressing his contacts in the underworld for information about the fugitive vampire. But unbeknownst to him, he and Vlad have a common enemy: Hans Niemann.\\n\\nFifteen years ago, Niemann murdered Vlad's mother **Marieta** after ordering the Red Army to raze his village tp the ground. On that horrible day, the doctor narrowly slipped through Vlad's fingers when he tried to take his revenge, and defected to the United States shortly thereafter. Ever since, Vlad has been determined to track him down and hold him accountable for his crimes\\u2014but Niemann is still elusive as ever. So for fifteen long years, Vlad has lived underground in America, making odd money as a freelance spy and mercenary as he searches for clues on the Niemann's whereabouts.\\n\\nWhen our story begins, Vlad is living a quiet life in Miami under a long succession of aliases, like \\\"**Victor Whitby**\\\", \\\"**Michael Alucard**\\\", and \\\"**Vladislav Sear\\u0103**\\\". There, as he walks into a seaside bar for a clandestine meeting with the Jamaican-born sailor **Oliver \\\"Twisty\\\" O'Rear**, he finally stumbles upon a clue that might lead him to Niemann. It seems that Twisty is the sole survivor of a submarine voyage to the deep Pacific ocean, where Niemann captained his vessel. While he hasn't seen Niemann since that fateful voyage, he has long suspected that the doctor's mind was affected by an encounter with a **psychic alien being** near the Marianas Trench. Since that day, he has heard rumors that the doctor has gone rogue and fled to the Caribbean, and he believes that he may be planning a new experiment.\\n\\nThough nobody knows *exactly* where Niemann has fled, Twisty tells Vlad that one of his recent voyages in the Caribbean took him near an infamous island known as \\\"**Isla de los Perdidos**\\\", or \\\"**The Isle of the Lost**\\\". While passing by Isla de los Perdidos, the entire crew suffered from a series of strange visions and bizarre nightmares, which left them so shaken that they vowed never to return to the island again. But while the rest of the crew dismissed the experience as merely the result of \\\"bad vibes\\\", Twisty recognized it for what it truly was. He experienced similar nightmares and visions during his ill-fated voyage with the crew of the *Ammonite*, where he and Niemann had their minds psychically invaded by **the Creature**. Further, he remembers that Niemann managed to force his way into the Creature's downed spacecraft\\u2014which was packed with alien embryos. Though it's only a hunch, he believes that Niemann might be hiding on Isla de los Perdidos, and he may have found some way to harness the Creature's psychic abilities.\\n\\nBut as Vlad tries to leave the bar, he's ambushed by a small gang of armed men dressed in civilian clothes, who pull him into an unmarked van and drive him away. Unbeknownst to the armed men, Jacob is watching them from a nearby street corner, with Eve and Lester by his side. Furious at seeing their target captured by someone else, they resolve to track down the van.\\n\\nInside the unmarked van, Vlad learns that his assailants are undercover CIA operatives. It seems that the CIA has *also* learned about the mysterious Directorate M, and they recognize Vlad as a high-priority KGB target who escaped from Moscow Centre fifteen years previously. Suspecting him of being a Soviet agent, they plan to take him back to their nearest base to interrogate him. Vlad futilely protests that it's all a misunderstanding, and the KGB are his enemies\\u2014but the agents refuse to listen.\\n\\nSuddenly, the van is driven off the road as Lester\\u2014assuming his lupine form\\u2014charges the vehicle from the side and manages to flip it over. As Vlad struggles with the agents in the back seat, Eve takes aim with a crossbow and dispatches the agent in the driver's seat, but she loses track of Vlad as he leaps from the van and runs into the distance. But as Vlad attempts to flee the scene, he runs right into Jacob.\\n\\nA tense standoff ensues as Vlad and Jacob\\u2014the son of Dracula and the grandson of Abraham Van Helsing\\u2014stare each other down, and Jacob draws his gun. Despite Jacob's advancing age, Vlad recognizes him as a professional monster hunter, and he knows that he's been trained to kill vampires. \\n\\n\\\"*Shoot me if you can, old man,\\\"* Vlad snarls. *\\\"But I promise you, I've only got a quarrel with one mortal man:* ***Hans Niemann****.\\\"*\\n\\nAs \\n______________\\n\\n***The Case:*** In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\\"The Gemini Killer\\\" to justice. In a twist, it's revealed that Hank's full name is \\\"Henry Jekyll\\\", and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium's secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\n\\n***The Creature:*** Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they're aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they're slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures' drowned spaceship to kill the monster, and manages to steal one of the monster's embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\\n\\n***War of the Monsters:*** In 1963, Vlad's search for ex-Nazi scientist Dr. Hans Niemann leads him to cross paths with Eve, who is still traveling the world with an aging Jacob Van Helsing and Lester Talbot. As Vlad, Eve, Jacob and Lester unite to finally bring Niemann to justice, they discover Niemann's plot to use a psychic alien's brain to unleash nuclear armageddon with the help of an army of vampires, werewolves and ichthyoids. As they journey to the Caribbean for a final showdown with Niemann on his island base, Jacob and Lester ultimately sacrifice their lives to stop the doctor's plot, but Eve and Vlad defeat him together. In the end, Eve and Vlad become lovers, and they settle down together in a remote Caribbean island to enjoy a peaceful retirement.\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brusoo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558590802.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EWar of the Monsters\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003E(2028)\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESetting: Various places, 1963\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our final story, we rejoin \\u003Cstrong\\u003EEve\\u003C/strong\\u003E, \\u003Cstrong\\u003ELester Talbot\\u003C/strong\\u003E, and \\u003Cstrong\\u003EJacob Van Helsing\\u003C/strong\\u003E twenty-five years after we first met them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe year is 1963. At home, America is still reeling from the horror of \\u003Cstrong\\u003EPresident John F. Kennedy\\u003C/strong\\u003E\\u0026#39;s assassination, which has provoked a fresh wave of social unrest as rumors spread of international conspiracies. Abroad, the Cold War with the Soviet Union rages on as American soldiers in South Vietnam brace for a looming skirmish with Communist forces. After more than two decades of adventure, Eve\\u2014who doesn\\u0026#39;t age\\u2014is still just as youthful as she was in 1938, but Lester and Jacob are both showing their age, and both men are contemplating retirement. As the 20th century rolls forward, monsters are becoming progressively rare, to the point that Eve and Lester wonder if they\\u0026#39;re the last of a dying breed. And while an aging Jacob still feels an obligation to uphold the legacy of his grandfather \\u003Cstrong\\u003EAbraham Van Helsing\\u003C/strong\\u003E, he knows that there is no need for monster hunters in a world without monsters.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut after twenty-five years of searching, the trio \\u003Cem\\u003Estill\\u003C/em\\u003E haven\\u0026#39;t been able to find \\u003Cstrong\\u003EDr. Hans Niemann\\u003C/strong\\u003E. And although the years have been hard on Jacob and Lester, they know that they won\\u0026#39;t be able to rest until they finally bring the sinister ex-Nazi to justice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut all of that changes when they stumble upon a stolen KGB dossier.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile trying to bust a voodoo cult in New Orleans, Eve accidentally comes into possession of a dossier that one of their members stole from a KGB spy hiding out in America. The file contains detailed information about the activities of \\u003Cstrong\\u003EDirectorate M\\u003C/strong\\u003E, a secret KGB task force that was assembled in the 1940s to research and weaponize vampire DNA. As she learns, the leader of the group was determined to track down a certain vampire living in a remote village in Romania, believing that his bloodline held special powers. But when Jacob and Lester read over the dossier with her, they soon learn that the Romanian vampire (a man called \\u0026quot;\\u003Cstrong\\u003EVladislav\\u003C/strong\\u003E\\u0026quot;, or just \\u0026quot;\\u003Cstrong\\u003EVlad\\u003C/strong\\u003E\\u0026quot;) was believed to be the biological son of \\u003Cstrong\\u003EDracula\\u003C/strong\\u003E himself! Not only that, Vladislav has been missing since 1948, when he escaped from Directorate M\\u0026#39;s headquarters in Moscow and fled Russia. And while the KGB never found him, they believe that he fled across the Atlantic sometime in the 1950s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe son of Dracula is still alive, and he may be hiding in America! As soon as Jacob realizes this, he knows that he has to find Vlad and kill him, since it\\u0026#39;s the only way to finish what his grandfather started. Armed with a grainy photo of Vlad contained in the dossier, Jacob begins pressing his contacts in the underworld for information about the fugitive vampire. But unbeknownst to him, he and Vlad have a common enemy: Hans Niemann.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFifteen years ago, Niemann murdered Vlad\\u0026#39;s mother \\u003Cstrong\\u003EMarieta\\u003C/strong\\u003E after ordering the Red Army to raze his village tp the ground. On that horrible day, the doctor narrowly slipped through Vlad\\u0026#39;s fingers when he tried to take his revenge, and defected to the United States shortly thereafter. Ever since, Vlad has been determined to track him down and hold him accountable for his crimes\\u2014but Niemann is still elusive as ever. So for fifteen long years, Vlad has lived underground in America, making odd money as a freelance spy and mercenary as he searches for clues on the Niemann\\u0026#39;s whereabouts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen our story begins, Vlad is living a quiet life in Miami under a long succession of aliases, like \\u0026quot;\\u003Cstrong\\u003EVictor Whitby\\u003C/strong\\u003E\\u0026quot;, \\u0026quot;\\u003Cstrong\\u003EMichael Alucard\\u003C/strong\\u003E\\u0026quot;, and \\u0026quot;\\u003Cstrong\\u003EVladislav Sear\\u0103\\u003C/strong\\u003E\\u0026quot;. There, as he walks into a seaside bar for a clandestine meeting with the Jamaican-born sailor \\u003Cstrong\\u003EOliver \\u0026quot;Twisty\\u0026quot; O\\u0026#39;Rear\\u003C/strong\\u003E, he finally stumbles upon a clue that might lead him to Niemann. It seems that Twisty is the sole survivor of a submarine voyage to the deep Pacific ocean, where Niemann captained his vessel. While he hasn\\u0026#39;t seen Niemann since that fateful voyage, he has long suspected that the doctor\\u0026#39;s mind was affected by an encounter with a \\u003Cstrong\\u003Epsychic alien being\\u003C/strong\\u003E near the Marianas Trench. Since that day, he has heard rumors that the doctor has gone rogue and fled to the Caribbean, and he believes that he may be planning a new experiment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThough nobody knows \\u003Cem\\u003Eexactly\\u003C/em\\u003E where Niemann has fled, Twisty tells Vlad that one of his recent voyages in the Caribbean took him near an infamous island known as \\u0026quot;\\u003Cstrong\\u003EIsla de los Perdidos\\u003C/strong\\u003E\\u0026quot;, or \\u0026quot;\\u003Cstrong\\u003EThe Isle of the Lost\\u003C/strong\\u003E\\u0026quot;. While passing by Isla de los Perdidos, the entire crew suffered from a series of strange visions and bizarre nightmares, which left them so shaken that they vowed never to return to the island again. But while the rest of the crew dismissed the experience as merely the result of \\u0026quot;bad vibes\\u0026quot;, Twisty recognized it for what it truly was. He experienced similar nightmares and visions during his ill-fated voyage with the crew of the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E, where he and Niemann had their minds psychically invaded by \\u003Cstrong\\u003Ethe Creature\\u003C/strong\\u003E. Further, he remembers that Niemann managed to force his way into the Creature\\u0026#39;s downed spacecraft\\u2014which was packed with alien embryos. Though it\\u0026#39;s only a hunch, he believes that Niemann might be hiding on Isla de los Perdidos, and he may have found some way to harness the Creature\\u0026#39;s psychic abilities.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut as Vlad tries to leave the bar, he\\u0026#39;s ambushed by a small gang of armed men dressed in civilian clothes, who pull him into an unmarked van and drive him away. Unbeknownst to the armed men, Jacob is watching them from a nearby street corner, with Eve and Lester by his side. Furious at seeing their target captured by someone else, they resolve to track down the van.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInside the unmarked van, Vlad learns that his assailants are undercover CIA operatives. It seems that the CIA has \\u003Cem\\u003Ealso\\u003C/em\\u003E learned about the mysterious Directorate M, and they recognize Vlad as a high-priority KGB target who escaped from Moscow Centre fifteen years previously. Suspecting him of being a Soviet agent, they plan to take him back to their nearest base to interrogate him. Vlad futilely protests that it\\u0026#39;s all a misunderstanding, and the KGB are his enemies\\u2014but the agents refuse to listen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESuddenly, the van is driven off the road as Lester\\u2014assuming his lupine form\\u2014charges the vehicle from the side and manages to flip it over. As Vlad struggles with the agents in the back seat, Eve takes aim with a crossbow and dispatches the agent in the driver\\u0026#39;s seat, but she loses track of Vlad as he leaps from the van and runs into the distance. But as Vlad attempts to flee the scene, he runs right into Jacob.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA tense standoff ensues as Vlad and Jacob\\u2014the son of Dracula and the grandson of Abraham Van Helsing\\u2014stare each other down, and Jacob draws his gun. Despite Jacob\\u0026#39;s advancing age, Vlad recognizes him as a professional monster hunter, and he knows that he\\u0026#39;s been trained to kill vampires. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Cem\\u003EShoot me if you can, old man,\\u0026quot;\\u003C/em\\u003E Vlad snarls. \\u003Cem\\u003E\\u0026quot;But I promise you, I\\u0026#39;ve only got a quarrel with one mortal man:\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EHans Niemann\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs \\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Case:\\u003C/em\\u003E\\u003C/strong\\u003E In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\u0026quot;The Gemini Killer\\u0026quot; to justice. In a twist, it\\u0026#39;s revealed that Hank\\u0026#39;s full name is \\u0026quot;Henry Jekyll\\u0026quot;, and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium\\u0026#39;s secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Creature:\\u003C/em\\u003E\\u003C/strong\\u003E Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they\\u0026#39;re aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they\\u0026#39;re slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures\\u0026#39; drowned spaceship to kill the monster, and manages to steal one of the monster\\u0026#39;s embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EWar of the Monsters:\\u003C/em\\u003E\\u003C/strong\\u003E In 1963, Vlad\\u0026#39;s search for ex-Nazi scientist Dr. Hans Niemann leads him to cross paths with Eve, who is still traveling the world with an aging Jacob Van Helsing and Lester Talbot. As Vlad, Eve, Jacob and Lester unite to finally bring Niemann to justice, they discover Niemann\\u0026#39;s plot to use a psychic alien\\u0026#39;s brain to unleash nuclear armageddon with the help of an army of vampires, werewolves and ichthyoids. As they journey to the Caribbean for a final showdown with Niemann on his island base, Jacob and Lester ultimately sacrifice their lives to stop the doctor\\u0026#39;s plot, but Eve and Vlad defeat him together. In the end, Eve and Vlad become lovers, and they settle down together in a remote Caribbean island to enjoy a peaceful retirement.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brusoo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brusoo/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brusoo/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558562002.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Re: test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brqdyy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558568873.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brqdyy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brqdyy/re_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brqdyy/re_test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558540073.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1fshia0q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HGCE Freedom Gundam Album\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_brgcyy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/vW0UdiH9e624y4qys50Me5h6qGoo_e8CES7MGnJZPxo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558503867.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?auto=webp\\u0026s=b28b0884c28818078b55da9d1ef4ba90c026b0a7\", \"width\": 4608, \"height\": 3456}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3ee43ed883b609843a35a6ce3b8fa00b9a232224\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4be0a0f262272a1c71cfcc67a81e124447a0be1e\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=dfcf219052c23b175b96366209cd00bbfb5111a4\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=66a6cc36d3f09d8915d6217e11670e6a6c4e4399\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2c618a1384bb98f133c9da345381c1d60d4b924c\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8e6a4ecccf64e0032d26ca44cba778d7d2e8c5e5\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"l8RMDATpIekeXve7O9NIY9G1sZuopNbytbJIHSfuRYs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brgcyy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NeonRunner\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/EKjeyR4\", \"subreddit_subscribers\": 703, \"created_utc\": 1558475067.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\n\\nNEW EPSIODE IS LIVE!\\nEP#: Title\\n\\nOur weekly show w/ United analysis\\n\\n:dart:#USOC2019 v @PhxRisingFC Recap\\n:mount_fuji: #KoTM v @SwitchbacksFC Recap\\n:microphone: Post-Match with Coach Lesesne\\n:ox: Match Preview v Austin Bold FC\\n\\nWe Are Seek \\u0026 Strike Podcast Subscription Links\\n\\n[Spotify](https://open.spotify.com/show/6XkXWcO6bz5apNm3ZinE8C?si=tq3LBfKMQgKsn7GI5evPIA)\\n\\n[Apple Podcasts](https://itunes.apple.com/us/podcast/we-are-seek-strike-podcast/id1463144252?mt=2)\\n\\nSubscribe and review on iTunes and Spotify!\", \"author_fullname\": \"t2_th7e2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brel0b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558495011.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENEW EPSIODE IS LIVE!\\nEP#: Title\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur weekly show w/ United analysis\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:dart:#USOC2019 v @PhxRisingFC Recap\\n:mount_fuji: #KoTM v @SwitchbacksFC Recap\\n:microphone: Post-Match with Coach Lesesne\\n:ox: Match Preview v Austin Bold FC\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe Are Seek \\u0026amp; Strike Podcast Subscription Links\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://open.spotify.com/show/6XkXWcO6bz5apNm3ZinE8C?si=tq3LBfKMQgKsn7GI5evPIA\\\"\\u003ESpotify\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://itunes.apple.com/us/podcast/we-are-seek-strike-podcast/id1463144252?mt=2\\\"\\u003EApple Podcasts\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESubscribe and review on iTunes and Spotify!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?auto=webp\\u0026s=7b498390c4a1298299ac305cfdb0b3e1f3abca3e\", \"width\": 640, \"height\": 640}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a44d019cf4521ff2a71dc87c059f38f3033f64d9\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b8bdfaa18569ff71e3a6d659e58d7180229d8250\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=725225366c28b39c204a9296a01ca811b507e941\", \"width\": 320, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=339d0a115de48e0238ab3052a0a24855bc6b9527\", \"width\": 640, \"height\": 640}], \"variants\": {}, \"id\": \"H9VuA66GqaorRc34m5mtaix9iln8b_QAJWcmu-qc748\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brel0b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"IlatzimepAho\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brel0b/test_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brel0b/test_post/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558466211.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Item #: SCP-4935**\\n\\n**Object Class: Euclid**\\n\\n**Author: djKaktus**\\n\\nHello SCPDeclassified, Brewsterion here. Today, I wanted to declassify SCP-4935, by djKaktus, or that guy that wrote a novel for an 001. This one's a longer one, so let's get into it.\\n\\nRight off the bat, we notice a link to the End Of Death canon hub. This is a canon where an Omega-K End Of Death Scenario occurred, forcing immortality upon all life. A such, there's likely going to be a lot of talk about souls and death. Let's see the containment procedures.\\n\\n**Special Containment Procedures**\\n\\n\\u003EThe access point to SCP-4935 is to be sealed and guarded when not in use. Access to SCP-4935 is forbidden unless authorized. Authorization is to be given only by the Site-77 Director of Containment, and only for the purposes of continued research into the nature of SCP-4935.\\n\\nIt's some sort of location, that much is clear. They don't want people walking in and out of it freely, so it's likely dangerous in some way. But they don't fully get it for some reason, otherwise they wouldn't care for research. But next to the procedures there's an image of a single tree in a desert and a...giant, black, inverted pyramid hovering above it.\\n\\nYou know what, let's just see the description.\\n\\n**Description**\\n\\n\\u003ESCP-4935 is the group designation for two phenomena. The first, identified as SCP-4935-\\u03b1, is a temporal anomaly existing within the Sankuru Nature Preserve in the Democratic Republic of the Congo. The anomaly can be identified visually, as light further away from the anomaly appears to red-shift as the observer draws closer to it. Inversely, the anomaly and the area directly around it appear blue-shifted to outside observers, who will see anything approaching the anomaly appear to blue-shift towards an indeterminate point in the center of the anomaly and disappear. The same is true in reverse for anything exiting the anomaly, as returning subjects will appear red-shifted until they match pace with the standard flow of spacetime.\\n\\nIt's a temporal anomaly, situated in the middle of the Congo in Africa. There's a visible effect as people get closer to it, meaning they can tell when something's going in or out. It's not some secret doorway, it's big and obvious.\\n\\n\\u003ESCP-4935-\\u03b1-PRIME (hereafter identified simply as SCP-4935) is the point in time beyond the SCP-4935-\\u03b1 anomaly. Analysis of the stars visible in the sky within SCP-4935 has determined that SCP-4935 is the planet Earth, roughly 130,000 years in the future from the present day. Due to changes in the planet\\u2019s atmospheric composition, the air within SCP-4935 contains significantly more oxygen than present day, leading to an abundance of megaflora. The area directly around SCP-4935-\\u03b1 within SCP-4935 is a grove of trees, many of which are in excess of 200m in height.\\n\\nThat's a loooong way from now.\\n\\n\\u003ESCP-4935 is seemingly devoid of intelligent life, with two significant exceptions. The first is a race of secretive and highly advanced pseudo-humanoid entities who self identify, phonetically, as the Akot. These entities inhabit the dark, canopied forests of the planet in small numbers, often in underground vaults or other similarly protected structures. They appear generally similar to modern humans, with elongated skulls, larger, deep set eyes, reduced mouths and noses, less robust chests and abdomens and longer, leaner arms and legs.\\n\\nThey're basically just humans if you messed with their settings a bit. There's a footnote that says their name actually means gravedigger in their tongue, which will make sense very shortly.\\n\\n\\u003EThe Akot describe themselves as protectors and guardians of a massive, levitating black cube situated above a similarly massive machine complex near the center of the African continent. This cube, composed primarily of silica and carbon with trace organic compounds throughout, is called the \\u201cHereafter\\u201d, and is a site of significant religious importance to the Akot.\\n\\nNow we know what the cube from the image is, it's this 20-kilometer by 20-kilometer thing called the Hereafter. There's also a footnote that says since the Akot aren't technically anomalous, they don't get a designation and are just referred to as the Akot.\\n\\n\\u003EAccording to the Akot, the Hereafter was constructed as resting place for the some ninety-three billion persons who lived on the Earth at the time of its construction, all of whom had lost the biological ability to die. As time passed and the age of these peoples grew unceasingly long, several major wars broke out and the species, as a whole, descended into madness. The Hereafter was designed as a way for the peoples of the Earth to enter a suspended state, until such time that the ability to die could be restored to the species. The Akot were those entrusted to maintain the Hereafter and continue researching the nature of the biological alteration the planet had experienced. This event was likely a hypothesized \\u03a9K-Class (\\\"End-of-Death\\\") Scenario, though the biological triggers for such an event are still unknown.\\n\\nThis is where the End Of Death connection comes in. It's the future of humanity, once the Omega-K kicks in. They give up, so they create the Akot to figure out how to die and then go chill in the Hereafter until they're successful. It also explains the Akot's name: their entire purpose in life is to dig a grave for humanity, one that they'll jump into willingly. Additionally, this paragraph establishes that the present world hasn't undergone the Omega-K, as it's still \\\"hypothesized.\\\"\\n\\n\\u003EThe Akot universally suffer from a debilitating genetic disorder that causes their bodies to deteriorate over time. To offset this, these entities often augment their bodies with technology designed to enhance their reduced functions. However, the most significant consequence of the genetic disorder is that the Akot have a tenuous connection to three-dimensional space. \\n\\u003E \\n\\u003EDue to an event sometime in their past, the Akot exist within two spatial dimensions simultaneously. Through the use of highly advanced technology they have been able to \\u201canchor\\u201d themselves in the baseline dimension, though the condition still puts a considerable strain on their bodies and they are still subject to violent and painful dimensional shifts if the anchors fail. The Akot call this alternate dimension the \\u201cHigh Horror\\u201d, and discussion of the dimension is strictly taboo.\\n\\nThe Akot suffer from a wasting disease that also causes them to slowly fall into another spacial dimension, the High Horror.\\n\\n\\u003EThe second exception is a massive, scorpioid entity (SCP-4935-\\u03b2) that is currently intertwined with and attempting to pierce the exterior of the Hereafter. SCP-4935-\\u03b2, which is biological in nature, is called the \\u201cCorpse-Father\\u201d by the Akot, and has been on the planet for roughly six-hundred years. The origin of this entity is unknown. This entity is capable of spawning larval incarnations of itself through its chitinous flesh in large swarms. These larval entities are aggressive and dangerous in large numbers, but have short life-spans.\\n\\n\\u0026#x200B;\\n\\nIt is organic and biological, but the things it spawns do indeed have the ability to die, unlike the humans in the Hereafter and the Akot. It also seems to be significant to the Akot, since they've named it.\\n\\n\\u003EThe Akot have claimed that SCP-4935-\\u03b1 exists due to a series of experiments testing machines designed to collapse the linear flow of time in a controlled area, as they as a species no longer have the physical capability or technological advantage needed to combat the SCP-4935-\\u03b2 entity.\\n\\nThey made the temporal anomaly after trying to kill the Beta entity and having an experiment backfire.\\n\\n\\u003ETo date, it is believed that these experiments have been ~~unsuccessful~~ \\\\[NOTE: SEE ADDENDUM 4935.6 FOR MORE INFORMATION\\\\]\\n\\nOr not. We should hurry down there.\\n\\n**Addendum 4935-1**\\n\\nThis addendum is a memo on 4935 written by the first doctor to contact the Akot. It describes what the Akot say happened before humans got dumped into the Hereafter: very close to modern day, the Omega-K kicked in, people got happy and made big tech, some even going into space-but they don't know what happened to them-until they ran out of stuff to build rockets from. Resources dried up, and people started fighting. But after these wars end is where we get new information. The cube isn't from Earth, it's extraterrestrial, and the Foundation moved all the humans into it. The cube would keep them in stasis until they could die again, but the Akot couldn't enter due to having biology very different from humans. The issue was, the Akot were slowly petering out due to slow reproductiona nd the tech anchoring them to this dimension failing. They were stuck in this slowly failing state, until the Beta entity showed up. Let's check out the next part of the article, an exploration log.\\n\\n\\u0026#x200B;\\n\\n**Addendum 4931-2**\\n\\nMTF Epsilon-45, Base Jumpers, is sent in on an exploration job. Guess Zeta-9 was too busy being killed off. They enter the anomaly and start heading for the Hereafter. They don't find anything until they encounter an Akot half-stuck in the wall.\\n\\n\\u003E**Unknown Akot:** They will act in desperation now. I know it. I have dreamed of it, for so many years. A day when they would expend their last efforts and we might be saved, in one way or another. (*Pauses*) I want to die. I want to die. Why can't I die? Why has this simple mercy eluded us? \\n\\u003E \\n\\u003E**E-45 Murphy:** This machine - does it have a control area? How is it operated? \\n\\u003E \\n\\u003E**Unknown Akot:** The center - Gerryon's Ark. It is there. But - the Ark cannot be tasked any longer. It has expended itself. There is no more use for it. There is no salvation here.\\n\\nThe Akot have another plan, one that will end up causing them to die. And this machine, Gerryon's Ark, is probably what caused the temporal anomaly. The team continues to the big machine in the center, finding the bottom corner of the cube, and a hologram appears in front of them.\\n\\n\\u003E**Projection:** Greetings, travelers. My name is Gerryon, engineer of the forsaken peoples of this world. You have arrived at our final resting place - we were cursed by an uncaring creator with a tormented existence that would not end, but by the grace of this machine we were delivered unto restful death. Tread lightly on these hallowed grounds. \\n\\u003E \\n\\u003E**E-45 Santos:** Think it can hear us? \\n\\u003E \\n\\u003E**Projection:** (*To E-45 Santos*) Of course. This database was created to answer and respond to the inquiries of all those who may come across our burial place.\\n\\nExcellent, a big database that answers questions. Time to get some answers.\\n\\n\\u003E**E-45 Murphy:** What was this machine designed to do? \\n\\u003E \\n\\u003E**Projection:** Long before I was born, my species collectively decided that we would prefer death over the continued torment of an existence without end. We tried - and failed - to reach that end, by any means. This machine is the culmination of our efforts; a device that, when activated, will rend our souls from our bodies and sever the threads that can be said to be keeping us alive.\\n\\nThe Ark was made to rip souls from bodies, and effectively kill all humans. But then why are the Akot still here?\\n\\n\\u003E**E-45 Murphy:** When was this device activated? \\n\\u003E \\n\\u003E**Projection:** The device has not been activated. \\n\\u003E \\n\\u003E**E-45 Ailes:** What? \\n\\u003E \\n\\u003E**E-45 Murphy:** How does this device determine if it was activated? \\n\\u003E \\n\\u003E**Projection:** There are still living human beings on this planet. Due to this, it is impossible that the device has been activated.\\n\\nThe Ark hasn't been activated yet, is the answer.\\n\\n\\u003E**E-45 Murphy:** (*Pauses*) How did Gerryon know how to create this machine? \\n\\u003E \\n\\u003E**Projection:** Gerryon was the product of the greatest minds of several generations. His birth was conceived by the most advanced sciences of the day, and the stimulation of his mind followed. When he awoke into being he was given access to the greatest compendium of knowledge this world had to offer. \\n\\u003E \\n\\u003E**E-45 Murphy:** Where did he get that knowledge? \\n\\u003E \\n\\u003E**Projection:** The SCP Foundation had collected a massive archive of- (*pauses*) I'm sorry, it appears any additional information has been expunged.\\n\\nMild surprise. Gerryon was born in a lab and raised for the exact purpose of building the Ark and killing off humanity, his knowledge enhanced by the Foundation's information. We don't know what information, though, but it was probably relating to death.\\n\\n\\u003E**E-45 Murphy:** Now **that's** something. (*Pauses*) One more thing. Can this machine be activated? \\n\\u003E \\n\\u003E**Projection:** The Ark is no longer functional to its intended purpose in its current state. It has been modified by a third-party to perform a different task. \\n\\u003E \\n\\u003E**E-45 Murphy:** What task is that? \\n\\u003E \\n\\u003E**Projection:** I'm sorry, that information is not available.\\n\\nThe Ark's been tweaked by somebody to fulfill a different purpose, likely the Akot. We don't know what it was tweaked for, though. The database can't tell.\\n\\nThe team leaves, and they find out there's a slight time dilation present where time passes slower inside the anomaly than outside it. Odd, but not too worrying.\\n\\n\\u0026#x200B;\\n\\n**Addendum 4935-3**\\n\\nAnother doctor wrote a report on the Akot, and it tells us what we mostly knew, pretty much. The Akot were part of a experiment to try and die by rending the soul from the body, but it backfired and began sending them into the High Horror instead. Jump cut to now, their tech's slowly breaking, they're not reproducing enough, and the Beta entity is making things worse. So, to fulfill their self-acknowledged purpose as gravediggers for humanity, they made the temporal anomaly to try and get Foundation help.\\n\\nAt least, that's what they've said so far.\\n\\n**Addendum 4935-4**\\n\\nA third doctor wrote a report on the Beta entity, immediately comparing the scorpioid nature to SCP-4812-K, with the implication it's that entity in the future. They say it crawled out of the sea 600 years ago, which contradicts what the Akot from the exploration said, but they were surprised because apparently everything in the oceans died a long time ago. They also say that when the Beta entity eats something, it adds it's face and by extension it's consciousness to it's own.This discovery split the Akot into two groups, one that was terrified of it, and another group, the Corpse-Children, thought that being eaten would obliterate their soul. So, they chucked themselves at it.\\n\\nThen their heads came out and started screaming to be saved.\\n\\nNeedless to say, it didn't end well. The remaining Akot dumped every single weapon they had onto the Beta entity, from nukes to plasma rods, but it just didn't die. It got to the Hereafter, and began chewing and clawing it's way into it, with the Akot helpless to watch as they failed their one true duty.So, basically, the Akot are screwed. But they still don't know why they made the temporal anomaly. First they said it was them trying to get help from the Foundation, then they said it was an experiment gone wrong, but they don't know why they lied in the first place.\\n\\n\\u003EWe\\u2019ve found out why. Dr. Regal, I believe, has that in her report.\\n\\nSomething big must have happened in Addendum 6. Let's hurry up.\\n\\nIn our way is a small addendum about how the time dilation is rapidly picking up in effect, going from 7 minutes off to 215 minutes off in two weeks. If it wasn't clear something's happening on the other side, it is now.\\n\\n**Addendum 6**\\n\\nThis is Dr. Regal's report, the thing that holds most of the answers from earlier in the article. Let's check it out.\\n\\n\\u003EA few days ago, one of our engineering teams produced some troubling findings. Exploratory teams on the far side of SCP-4935-\\u03b1 were no longer experiencing the 1-to-1 forward progression through time they had previously. The most recent team reported spending the allotted 180 minutes on the other side of SCP-4935-\\u03b1, whereas our teams on our side reported they were gone for 277 minutes. In other words, the forward progression on the far side of the anomaly appears to be slowing considerably relative to our own. \\n\\u003E \\n\\u003EAfter putting together our findings, we approached the Akot about it. They were surprisingly frank about it - SCP-4935-\\u03b1 wasn\\u2019t the result of them trying to reach us for help, or some sort of weapons test. It was an open valve.\\n\\nThey were intentionally messing with time, to mess up time. But why?\\n\\n\\u003E**Archivist:** Death is a long lost dream. For the gravediggers, and for those Sleepers in the graves, all that can be accomplished is an end of suffering. Time expounds our agony. It was decided, a short time ago, that there is no end to the sorrow of the Corpse-Father that does not also follow the end of time.\\n\\nThey've given up on trying to die. They can't end all of it without ending time itself.\\n\\n\\u003E**Ti-8:** Is this why we\\u2019ve seen alterations in our relative experience of the forward progression of linear time? \\n\\u003E \\n\\u003E**Archivist:** It is Gerryon\\u2019s last gift. We cannot escape agony. We cannot escape torment. We cannot escape the Corpse-Father, and we cannot abandon the Sleepers. Time brings us closer to the moment of our final defeat, and stopping that progression is our last chance. Gerryon\\u2019s Ark will interrupt the flow of time, and with it will pause our suffering forever.\\n\\nThat's their endgame. They're going to break the flow of time so that they can all stop existing.\\n\\n\\u003E**Ti-8:** To be clear, this is the same machine that caused your people to become disconnected from three-dimensional space, correct? \\n\\u003E \\n\\u003E**Archivist:** It is. We do not fault Gerryon, no more than we would fault the sun rising or the wind blowing. Gerryon was nature, a mind conceived by the blessings of the Earth. Those who first laid hands on his Ark and could not conceive his vision turned the machine against us. It has been many long millenia since then, and we have grown and learned. We have peered into the heart of Gerryon\\u2019s design and seen its majesty.\\n\\nThe Ark's first activation cause the Akot to suffer from their wasting disease and disconnect from reality. This was the activation that opened the portal in the first place.\\n\\n\\u003E**Archivist:** We feared that we would have to turn Gerryon's Ark upon ourselves, and I will admit that this frightened us more than nearly anything. But Gerryon blessed us with a reprieve. The Ark is not for us, forefather. The Ark is for you. You have not yet been touched by the long dread finger of a life everlasting. We will collapse your timeline, and you will not have to suffer. We will not be born into suffering.\\n\\nThey're going to collapse the timeline so humanity ends before the Omega-K hits and the Akot are created. The gravediggers are trying to bury their ancestors so they don't have to dig at all.\\n\\n\\u003E**Ti-8:** This would mean our destruction, you understand that? \\n\\u003E \\n\\u003E**Archivist:** No. Not destruction. Can't you see? Salvation. Salvation for us both.\\n\\nIt is, in a sense, truly their salvation. Death is their rapture.\\n\\n**Addendum 4395-8 and 4395-9**\\n\\nBoth of these are pretty short, so I'll lump them together. The Ethics Committee gets together in Addendum 8 and decides that while violence is not the Foundation's preferred option, in the case of 4395, the Akot are threatening all of humanity, and they find it \\\" ethically allowable to take actions that may result in the collapse of the primary SCP-4935 anomaly, as well as any damaging effects this may have on the inhabitants of the anomaly.\\\" They vote 7-2, in favor of taking this thing out.\\n\\nOn January 31, 2019, they forced the temporal anomaly shut, and blew up the Ark as well. They don't want this thing open in any way now that they know how dangerous it is.\\n\\nThe Akot tried to claw their way out of the anomaly, make it back into our world so that they could at least try to end us and fix it without the Ark. They couldn't make it out of 4935 before it collapsed, though The time dilation was set back to zero, and the anomaly itself is gone. It's still listed as Euclid though, since the Foundation knows the Akot could try again with their tech.\\n\\nAlright, so, there were a lot of double-bluffs and lies in that article, so let's have a TL;DR Version: Omega-K occurs, and humanity prospers at first but then everything falls apart into a big war. This war ends, and the Akot are created for unknown reasons. The Foundation contributes information to a project to create Gerryon, a lab-made genius, who then builds his Ark in an attempt to split souls from bodies and try to die. It doesn't work and actually ends up causing the Akot to be disconnected from this dimension,, and the humans go into sleep in the Hereafter until the Akot can try to figure out a way to die. They can't, though, and the unkillable Corpse-Father shows up and begins trying to break in to the Hereafter. The Akot, out of weapons and options, modify the Ark to go back in time and collapse the timeline before the Omega-K occurs, therefore never existing in the first place. The Foundation doesn't like this, and decides to destroy the Ark and shut down the temporal anomaly to survive.\\n\\nAnd so, after that, thus ends the story of SCP-4935 for now, a tale of gravediggers and salvation in death. I hope this helped you understand this SCP better. Thank you all for reading, and leave the corpses be.\", \"author_fullname\": \"t2_118qqr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SCP-4935, \\\"Hereafter\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bref1f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558494182.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EItem #: SCP-4935\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class: Euclid\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor: djKaktus\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello SCPDeclassified, Brewsterion here. Today, I wanted to declassify SCP-4935, by djKaktus, or that guy that wrote a novel for an 001. This one\\u0026#39;s a longer one, so let\\u0026#39;s get into it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight off the bat, we notice a link to the End Of Death canon hub. This is a canon where an Omega-K End Of Death Scenario occurred, forcing immortality upon all life. A such, there\\u0026#39;s likely going to be a lot of talk about souls and death. Let\\u0026#39;s see the containment procedures.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe access point to SCP-4935 is to be sealed and guarded when not in use. Access to SCP-4935 is forbidden unless authorized. Authorization is to be given only by the Site-77 Director of Containment, and only for the purposes of continued research into the nature of SCP-4935.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s some sort of location, that much is clear. They don\\u0026#39;t want people walking in and out of it freely, so it\\u0026#39;s likely dangerous in some way. But they don\\u0026#39;t fully get it for some reason, otherwise they wouldn\\u0026#39;t care for research. But next to the procedures there\\u0026#39;s an image of a single tree in a desert and a...giant, black, inverted pyramid hovering above it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou know what, let\\u0026#39;s just see the description.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4935 is the group designation for two phenomena. The first, identified as SCP-4935-\\u03b1, is a temporal anomaly existing within the Sankuru Nature Preserve in the Democratic Republic of the Congo. The anomaly can be identified visually, as light further away from the anomaly appears to red-shift as the observer draws closer to it. Inversely, the anomaly and the area directly around it appear blue-shifted to outside observers, who will see anything approaching the anomaly appear to blue-shift towards an indeterminate point in the center of the anomaly and disappear. The same is true in reverse for anything exiting the anomaly, as returning subjects will appear red-shifted until they match pace with the standard flow of spacetime.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a temporal anomaly, situated in the middle of the Congo in Africa. There\\u0026#39;s a visible effect as people get closer to it, meaning they can tell when something\\u0026#39;s going in or out. It\\u0026#39;s not some secret doorway, it\\u0026#39;s big and obvious.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4935-\\u03b1-PRIME (hereafter identified simply as SCP-4935) is the point in time beyond the SCP-4935-\\u03b1 anomaly. Analysis of the stars visible in the sky within SCP-4935 has determined that SCP-4935 is the planet Earth, roughly 130,000 years in the future from the present day. Due to changes in the planet\\u2019s atmospheric composition, the air within SCP-4935 contains significantly more oxygen than present day, leading to an abundance of megaflora. The area directly around SCP-4935-\\u03b1 within SCP-4935 is a grove of trees, many of which are in excess of 200m in height.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s a loooong way from now.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4935 is seemingly devoid of intelligent life, with two significant exceptions. The first is a race of secretive and highly advanced pseudo-humanoid entities who self identify, phonetically, as the Akot. These entities inhabit the dark, canopied forests of the planet in small numbers, often in underground vaults or other similarly protected structures. They appear generally similar to modern humans, with elongated skulls, larger, deep set eyes, reduced mouths and noses, less robust chests and abdomens and longer, leaner arms and legs.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey\\u0026#39;re basically just humans if you messed with their settings a bit. There\\u0026#39;s a footnote that says their name actually means gravedigger in their tongue, which will make sense very shortly.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Akot describe themselves as protectors and guardians of a massive, levitating black cube situated above a similarly massive machine complex near the center of the African continent. This cube, composed primarily of silica and carbon with trace organic compounds throughout, is called the \\u201cHereafter\\u201d, and is a site of significant religious importance to the Akot.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ENow we know what the cube from the image is, it\\u0026#39;s this 20-kilometer by 20-kilometer thing called the Hereafter. There\\u0026#39;s also a footnote that says since the Akot aren\\u0026#39;t technically anomalous, they don\\u0026#39;t get a designation and are just referred to as the Akot.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAccording to the Akot, the Hereafter was constructed as resting place for the some ninety-three billion persons who lived on the Earth at the time of its construction, all of whom had lost the biological ability to die. As time passed and the age of these peoples grew unceasingly long, several major wars broke out and the species, as a whole, descended into madness. The Hereafter was designed as a way for the peoples of the Earth to enter a suspended state, until such time that the ability to die could be restored to the species. The Akot were those entrusted to maintain the Hereafter and continue researching the nature of the biological alteration the planet had experienced. This event was likely a hypothesized \\u03a9K-Class (\\u0026quot;End-of-Death\\u0026quot;) Scenario, though the biological triggers for such an event are still unknown.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is where the End Of Death connection comes in. It\\u0026#39;s the future of humanity, once the Omega-K kicks in. They give up, so they create the Akot to figure out how to die and then go chill in the Hereafter until they\\u0026#39;re successful. It also explains the Akot\\u0026#39;s name: their entire purpose in life is to dig a grave for humanity, one that they\\u0026#39;ll jump into willingly. Additionally, this paragraph establishes that the present world hasn\\u0026#39;t undergone the Omega-K, as it\\u0026#39;s still \\u0026quot;hypothesized.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Akot universally suffer from a debilitating genetic disorder that causes their bodies to deteriorate over time. To offset this, these entities often augment their bodies with technology designed to enhance their reduced functions. However, the most significant consequence of the genetic disorder is that the Akot have a tenuous connection to three-dimensional space. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDue to an event sometime in their past, the Akot exist within two spatial dimensions simultaneously. Through the use of highly advanced technology they have been able to \\u201canchor\\u201d themselves in the baseline dimension, though the condition still puts a considerable strain on their bodies and they are still subject to violent and painful dimensional shifts if the anchors fail. The Akot call this alternate dimension the \\u201cHigh Horror\\u201d, and discussion of the dimension is strictly taboo.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Akot suffer from a wasting disease that also causes them to slowly fall into another spacial dimension, the High Horror.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe second exception is a massive, scorpioid entity (SCP-4935-\\u03b2) that is currently intertwined with and attempting to pierce the exterior of the Hereafter. SCP-4935-\\u03b2, which is biological in nature, is called the \\u201cCorpse-Father\\u201d by the Akot, and has been on the planet for roughly six-hundred years. The origin of this entity is unknown. This entity is capable of spawning larval incarnations of itself through its chitinous flesh in large swarms. These larval entities are aggressive and dangerous in large numbers, but have short life-spans.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is organic and biological, but the things it spawns do indeed have the ability to die, unlike the humans in the Hereafter and the Akot. It also seems to be significant to the Akot, since they\\u0026#39;ve named it.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Akot have claimed that SCP-4935-\\u03b1 exists due to a series of experiments testing machines designed to collapse the linear flow of time in a controlled area, as they as a species no longer have the physical capability or technological advantage needed to combat the SCP-4935-\\u03b2 entity.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey made the temporal anomaly after trying to kill the Beta entity and having an experiment backfire.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ETo date, it is believed that these experiments have been \\u003Cdel\\u003Eunsuccessful\\u003C/del\\u003E [NOTE: SEE ADDENDUM 4935.6 FOR MORE INFORMATION]\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOr not. We should hurry down there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4935-1\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis addendum is a memo on 4935 written by the first doctor to contact the Akot. It describes what the Akot say happened before humans got dumped into the Hereafter: very close to modern day, the Omega-K kicked in, people got happy and made big tech, some even going into space-but they don\\u0026#39;t know what happened to them-until they ran out of stuff to build rockets from. Resources dried up, and people started fighting. But after these wars end is where we get new information. The cube isn\\u0026#39;t from Earth, it\\u0026#39;s extraterrestrial, and the Foundation moved all the humans into it. The cube would keep them in stasis until they could die again, but the Akot couldn\\u0026#39;t enter due to having biology very different from humans. The issue was, the Akot were slowly petering out due to slow reproductiona nd the tech anchoring them to this dimension failing. They were stuck in this slowly failing state, until the Beta entity showed up. Let\\u0026#39;s check out the next part of the article, an exploration log.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4931-2\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMTF Epsilon-45, Base Jumpers, is sent in on an exploration job. Guess Zeta-9 was too busy being killed off. They enter the anomaly and start heading for the Hereafter. They don\\u0026#39;t find anything until they encounter an Akot half-stuck in the wall.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUnknown Akot:\\u003C/strong\\u003E They will act in desperation now. I know it. I have dreamed of it, for so many years. A day when they would expend their last efforts and we might be saved, in one way or another. (\\u003Cem\\u003EPauses\\u003C/em\\u003E) I want to die. I want to die. Why can\\u0026#39;t I die? Why has this simple mercy eluded us? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E This machine - does it have a control area? How is it operated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUnknown Akot:\\u003C/strong\\u003E The center - Gerryon\\u0026#39;s Ark. It is there. But - the Ark cannot be tasked any longer. It has expended itself. There is no more use for it. There is no salvation here.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Akot have another plan, one that will end up causing them to die. And this machine, Gerryon\\u0026#39;s Ark, is probably what caused the temporal anomaly. The team continues to the big machine in the center, finding the bottom corner of the cube, and a hologram appears in front of them.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E Greetings, travelers. My name is Gerryon, engineer of the forsaken peoples of this world. You have arrived at our final resting place - we were cursed by an uncaring creator with a tormented existence that would not end, but by the grace of this machine we were delivered unto restful death. Tread lightly on these hallowed grounds. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Santos:\\u003C/strong\\u003E Think it can hear us? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E (\\u003Cem\\u003ETo E-45 Santos\\u003C/em\\u003E) Of course. This database was created to answer and respond to the inquiries of all those who may come across our burial place.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EExcellent, a big database that answers questions. Time to get some answers.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E What was this machine designed to do? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E Long before I was born, my species collectively decided that we would prefer death over the continued torment of an existence without end. We tried - and failed - to reach that end, by any means. This machine is the culmination of our efforts; a device that, when activated, will rend our souls from our bodies and sever the threads that can be said to be keeping us alive.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark was made to rip souls from bodies, and effectively kill all humans. But then why are the Akot still here?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E When was this device activated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E The device has not been activated. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Ailes:\\u003C/strong\\u003E What? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E How does this device determine if it was activated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E There are still living human beings on this planet. Due to this, it is impossible that the device has been activated.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark hasn\\u0026#39;t been activated yet, is the answer.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E (\\u003Cem\\u003EPauses\\u003C/em\\u003E) How did Gerryon know how to create this machine? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E Gerryon was the product of the greatest minds of several generations. His birth was conceived by the most advanced sciences of the day, and the stimulation of his mind followed. When he awoke into being he was given access to the greatest compendium of knowledge this world had to offer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E Where did he get that knowledge? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E The SCP Foundation had collected a massive archive of- (\\u003Cem\\u003Epauses\\u003C/em\\u003E) I\\u0026#39;m sorry, it appears any additional information has been expunged.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMild surprise. Gerryon was born in a lab and raised for the exact purpose of building the Ark and killing off humanity, his knowledge enhanced by the Foundation\\u0026#39;s information. We don\\u0026#39;t know what information, though, but it was probably relating to death.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E Now \\u003Cstrong\\u003Ethat\\u0026#39;s\\u003C/strong\\u003E something. (\\u003Cem\\u003EPauses\\u003C/em\\u003E) One more thing. Can this machine be activated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E The Ark is no longer functional to its intended purpose in its current state. It has been modified by a third-party to perform a different task. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E What task is that? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E I\\u0026#39;m sorry, that information is not available.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark\\u0026#39;s been tweaked by somebody to fulfill a different purpose, likely the Akot. We don\\u0026#39;t know what it was tweaked for, though. The database can\\u0026#39;t tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe team leaves, and they find out there\\u0026#39;s a slight time dilation present where time passes slower inside the anomaly than outside it. Odd, but not too worrying.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4935-3\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother doctor wrote a report on the Akot, and it tells us what we mostly knew, pretty much. The Akot were part of a experiment to try and die by rending the soul from the body, but it backfired and began sending them into the High Horror instead. Jump cut to now, their tech\\u0026#39;s slowly breaking, they\\u0026#39;re not reproducing enough, and the Beta entity is making things worse. So, to fulfill their self-acknowledged purpose as gravediggers for humanity, they made the temporal anomaly to try and get Foundation help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt least, that\\u0026#39;s what they\\u0026#39;ve said so far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4935-4\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA third doctor wrote a report on the Beta entity, immediately comparing the scorpioid nature to SCP-4812-K, with the implication it\\u0026#39;s that entity in the future. They say it crawled out of the sea 600 years ago, which contradicts what the Akot from the exploration said, but they were surprised because apparently everything in the oceans died a long time ago. They also say that when the Beta entity eats something, it adds it\\u0026#39;s face and by extension it\\u0026#39;s consciousness to it\\u0026#39;s own.This discovery split the Akot into two groups, one that was terrified of it, and another group, the Corpse-Children, thought that being eaten would obliterate their soul. So, they chucked themselves at it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen their heads came out and started screaming to be saved.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENeedless to say, it didn\\u0026#39;t end well. The remaining Akot dumped every single weapon they had onto the Beta entity, from nukes to plasma rods, but it just didn\\u0026#39;t die. It got to the Hereafter, and began chewing and clawing it\\u0026#39;s way into it, with the Akot helpless to watch as they failed their one true duty.So, basically, the Akot are screwed. But they still don\\u0026#39;t know why they made the temporal anomaly. First they said it was them trying to get help from the Foundation, then they said it was an experiment gone wrong, but they don\\u0026#39;t know why they lied in the first place.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWe\\u2019ve found out why. Dr. Regal, I believe, has that in her report.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESomething big must have happened in Addendum 6. Let\\u0026#39;s hurry up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our way is a small addendum about how the time dilation is rapidly picking up in effect, going from 7 minutes off to 215 minutes off in two weeks. If it wasn\\u0026#39;t clear something\\u0026#39;s happening on the other side, it is now.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 6\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is Dr. Regal\\u0026#39;s report, the thing that holds most of the answers from earlier in the article. Let\\u0026#39;s check it out.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA few days ago, one of our engineering teams produced some troubling findings. Exploratory teams on the far side of SCP-4935-\\u03b1 were no longer experiencing the 1-to-1 forward progression through time they had previously. The most recent team reported spending the allotted 180 minutes on the other side of SCP-4935-\\u03b1, whereas our teams on our side reported they were gone for 277 minutes. In other words, the forward progression on the far side of the anomaly appears to be slowing considerably relative to our own. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter putting together our findings, we approached the Akot about it. They were surprisingly frank about it - SCP-4935-\\u03b1 wasn\\u2019t the result of them trying to reach us for help, or some sort of weapons test. It was an open valve.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey were intentionally messing with time, to mess up time. But why?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E Death is a long lost dream. For the gravediggers, and for those Sleepers in the graves, all that can be accomplished is an end of suffering. Time expounds our agony. It was decided, a short time ago, that there is no end to the sorrow of the Corpse-Father that does not also follow the end of time.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey\\u0026#39;ve given up on trying to die. They can\\u0026#39;t end all of it without ending time itself.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETi-8:\\u003C/strong\\u003E Is this why we\\u2019ve seen alterations in our relative experience of the forward progression of linear time? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E It is Gerryon\\u2019s last gift. We cannot escape agony. We cannot escape torment. We cannot escape the Corpse-Father, and we cannot abandon the Sleepers. Time brings us closer to the moment of our final defeat, and stopping that progression is our last chance. Gerryon\\u2019s Ark will interrupt the flow of time, and with it will pause our suffering forever.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s their endgame. They\\u0026#39;re going to break the flow of time so that they can all stop existing.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETi-8:\\u003C/strong\\u003E To be clear, this is the same machine that caused your people to become disconnected from three-dimensional space, correct? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E It is. We do not fault Gerryon, no more than we would fault the sun rising or the wind blowing. Gerryon was nature, a mind conceived by the blessings of the Earth. Those who first laid hands on his Ark and could not conceive his vision turned the machine against us. It has been many long millenia since then, and we have grown and learned. We have peered into the heart of Gerryon\\u2019s design and seen its majesty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark\\u0026#39;s first activation cause the Akot to suffer from their wasting disease and disconnect from reality. This was the activation that opened the portal in the first place.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E We feared that we would have to turn Gerryon\\u0026#39;s Ark upon ourselves, and I will admit that this frightened us more than nearly anything. But Gerryon blessed us with a reprieve. The Ark is not for us, forefather. The Ark is for you. You have not yet been touched by the long dread finger of a life everlasting. We will collapse your timeline, and you will not have to suffer. We will not be born into suffering.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey\\u0026#39;re going to collapse the timeline so humanity ends before the Omega-K hits and the Akot are created. The gravediggers are trying to bury their ancestors so they don\\u0026#39;t have to dig at all.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETi-8:\\u003C/strong\\u003E This would mean our destruction, you understand that? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E No. Not destruction. Can\\u0026#39;t you see? Salvation. Salvation for us both.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt is, in a sense, truly their salvation. Death is their rapture.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4395-8 and 4395-9\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth of these are pretty short, so I\\u0026#39;ll lump them together. The Ethics Committee gets together in Addendum 8 and decides that while violence is not the Foundation\\u0026#39;s preferred option, in the case of 4395, the Akot are threatening all of humanity, and they find it \\u0026quot; ethically allowable to take actions that may result in the collapse of the primary SCP-4935 anomaly, as well as any damaging effects this may have on the inhabitants of the anomaly.\\u0026quot; They vote 7-2, in favor of taking this thing out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn January 31, 2019, they forced the temporal anomaly shut, and blew up the Ark as well. They don\\u0026#39;t want this thing open in any way now that they know how dangerous it is.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Akot tried to claw their way out of the anomaly, make it back into our world so that they could at least try to end us and fix it without the Ark. They couldn\\u0026#39;t make it out of 4935 before it collapsed, though The time dilation was set back to zero, and the anomaly itself is gone. It\\u0026#39;s still listed as Euclid though, since the Foundation knows the Akot could try again with their tech.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlright, so, there were a lot of double-bluffs and lies in that article, so let\\u0026#39;s have a TL;DR Version: Omega-K occurs, and humanity prospers at first but then everything falls apart into a big war. This war ends, and the Akot are created for unknown reasons. The Foundation contributes information to a project to create Gerryon, a lab-made genius, who then builds his Ark in an attempt to split souls from bodies and try to die. It doesn\\u0026#39;t work and actually ends up causing the Akot to be disconnected from this dimension,, and the humans go into sleep in the Hereafter until the Akot can try to figure out a way to die. They can\\u0026#39;t, though, and the unkillable Corpse-Father shows up and begins trying to break in to the Hereafter. The Akot, out of weapons and options, modify the Ark to go back in time and collapse the timeline before the Omega-K occurs, therefore never existing in the first place. The Foundation doesn\\u0026#39;t like this, and decides to destroy the Ark and shut down the temporal anomaly to survive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd so, after that, thus ends the story of SCP-4935 for now, a tale of gravediggers and salvation in death. I hope this helped you understand this SCP better. Thank you all for reading, and leave the corpses be.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bref1f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Brewsterion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bref1f/scp4935_hereafter/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bref1f/scp4935_hereafter/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558465382.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_c07be\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Our very own Corgi\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bre064\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 840}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views. Katsu's First Day\", \"title\": \"Katsu's First Day\", \"url\": \"https://imgur.com/a/5cyGTUa\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 840, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bre064\", \"height\": 840}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/hr15FLCYpTX2Hdi4-D8pN3xuaS1BKV7LPeUwNa-0-L4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558492189.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?auto=webp\\u0026s=e6f394089edaed813a20b2ae9be80355a675683e\", \"width\": 3024, \"height\": 4032}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4bc71fbc22a8432bde208e9819500caa06db35a1\", \"width\": 108, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=03926630d81a5f2fbc46f44c708bdb32ab7e88d9\", \"width\": 216, \"height\": 288}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f48497dd96015f9566dc130b3e1751d073899910\", \"width\": 320, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=7759525928d560f0a8aacdc90d485b446254f8cc\", \"width\": 640, \"height\": 853}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f80fe2af55a75b053a0265b2431b1aed4f3b258d\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8733d7299d16dd7616aac8eb7c2ac447d52cf5c4\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"HwI1x-pgTiu90wXPmNvBjY8Bkyx0pec088I80HtvAjQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bre064\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MisterOinky\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bre064/our_very_own_corgi/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/5cyGTUa#jKzFTOe\", \"subreddit_subscribers\": 703, \"created_utc\": 1558463389.0, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views. Katsu's First Day\", \"title\": \"Katsu's First Day\", \"url\": \"https://imgur.com/a/5cyGTUa\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 840, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_35aabssu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Supreme Commander: Forged Alliance Let's Play #1 - LOUD Project Mod\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bray7j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Supreme Commander: Forged Alliance Let's Play #1 - LOUD Project Mod\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VgRH8yaTrqo/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bray7j\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/HXJCjqB_CJRS5YgZ8wZJZ-_SCvrAgIAGuYLWnKvT96Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558477033.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?auto=webp\\u0026s=25269a95e8684f288ca8ae522c1b5c32ba168c2d\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=deabb18f7148a5ab4428400866150e03cbb42eff\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1134ea9c6ea0b98aa411c769d29f440530e99e56\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a027329c4dca2e554026595a710fb986ff0b6e4a\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"rbuCAFhCCm7VEnvfC5M52nsZjhIsSKarkhjDgzW_PlE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bray7j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Goldymires\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bray7j/supreme_commander_forged_alliance_lets_play_1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=VgRH8yaTrqo\", \"subreddit_subscribers\": 703, \"created_utc\": 1558448233.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Supreme Commander: Forged Alliance Let's Play #1 - LOUD Project Mod\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VgRH8yaTrqo/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Testing\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brafrm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558474186.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETesting\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brafrm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brafrm/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brafrm/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558445386.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1fshia0q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HGCE Freedom Gundam\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_br1w5r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/PEW4xg4iL6liP5ICAzjaLSS2OJvua4tErk1XnW7A22Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558417917.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"1drv.ms\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?auto=webp\\u0026s=fa17f0c4923b59e84d3ea0b8a17b02985711ba0d\", \"width\": 1600, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=645d3c23f10d589991e05c595e6c1dbe242708f2\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e759becc18d475d837daebb261e20113df3c3db1\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=23e34cb0917a07cf068c8965a4f677962c01f7c5\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1e584518f947ef50b73a3e3b21ca9228adec1db4\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f6631b04e07f0a54b36c11f0799b2a3005c9fbaa\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=593b6d7db7fd1e3277e864df7056eee5c6787bbb\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"O2ToZVz84eHwlQwXHWwsacHs3Ogulvoo-0Swmp6_wd4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br1w5r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NeonRunner\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/br1w5r/hgce_freedom_gundam/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://1drv.ms/f/s!Ak86GWNk26yEgSsd2-gvcl-B53yF\", \"subreddit_subscribers\": 703, \"created_utc\": 1558389117.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_hl2m5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Eyes Wide Open - The Disheartened Song (Official Lyric Video)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bqz81d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Eyes Wide Open - The Disheartened Song (Official Lyric Video)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"EyesWideOpenOfficial\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/jegzxxv6T-I/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/EyesWideOpenOfficial\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bqz81d\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/nQ91ba0Ip2KUxaaBlMGoOlB8ijhVnAGscQf0jkN0HOU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558405282.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?auto=webp\\u0026s=c0fdb565fe87811d2731f3f929a9075d0b63423f\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=89134035e8dd80a06ebd481d63e30e1db6711a3d\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=755cd4f0857ce89207d07f6b6535d1fcbbf12846\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d8dd2d537f88cd623d15f66828c9c25a3c6c291a\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"sqLuOqp9DV-i9vOHLKbhyIp7LgH5b6M7Oc6TMh34K-8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqz81d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sunfire230\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqz81d/eyes_wide_open_the_disheartened_song_official/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=jegzxxv6T-I\", \"subreddit_subscribers\": 703, \"created_utc\": 1558376482.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Eyes Wide Open - The Disheartened Song (Official Lyric Video)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"EyesWideOpenOfficial\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/jegzxxv6T-I/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/EyesWideOpenOfficial\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"As the title says: I've been lurking here to learn how avoid any foibles of writing female characters from my male perspective. You have all been an amazing help, so thanks for that! I figured it's only right that I show my work on the female protagonist from my novel, so that you can see what I've learned, and just in case I've still missed something.\\n\\nSetting: Charlie (male protag) is a lonely UPS man who gets pulled into a mystery after he delivers a package which turns out to be something very many people want very badly. This is the scene of that delivery, which introduces our female protag, Anabelle Must. To wit: \\n\\nShe looked like sex, sauntering towards him on legs long enough hang power lines and a body as slick as European butter. Her nipples rose and fell with each step, offering a howdy-there-soldier-salute each time they bounced up to meet his eyes. They were staring at him. Staring into his very soul... \\n\\n\\u201cHi,\\u201d she said, in a voice which sounded like sex, her pink tongue tying an invisible cherry stem around the single syllable.\\n\\nCharlie did not answer. He could not breathe. He could not think. His pupils were fixed upon her second pair of eyes, those erect, desperate nipples which still bounced though she stood still. \\n\\n\\u201cIs that for me?\\u201d she wondered, reaching for the package with five fingers which were shaped like sex \\u2013 lithe little submarines which might soon dive into the skin of his oceanic bum. Down. Down. Down. \\n\\n\\u201cYe\\u2014Yeah\\u2026\\u201d sputtered Charlie, hoisting his package into the air. \\u201cJust go-gonna need a signature, mam\\u2026\\u201d\\n\\nShe reached into her pocket, though she was entirely naked, and produced a pen which looked like sex, its pleading tip dripping a moist, musty ink onto the floor.\\n\\n\\u201cSure,\\u201d she smiled, spilling that blue sex-juice onto his rattling clipboard. \\u201cAnything else?\\u201d\\n\\nCharlie retreated onto the porch, thinking that the mere aura of the woman might soon stop his heart. \\u201cN\\u2014No, mam,\\u201d he whispered, grabbing urgently at the front of his pants, fearful that they might soon launch a rocket. \\n\\nThe door fell shut against his face. He fell to his knees, feeling a sudden pain in his chest. His heart had given out. The mere sight of her had killed him. *Cardiac arrest* they called it. It felt like sex\\u2026\", \"author_fullname\": \"t2_n0kou\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"po\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqtosh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558376118.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs the title says: I\\u0026#39;ve been lurking here to learn how avoid any foibles of writing female characters from my male perspective. You have all been an amazing help, so thanks for that! I figured it\\u0026#39;s only right that I show my work on the female protagonist from my novel, so that you can see what I\\u0026#39;ve learned, and just in case I\\u0026#39;ve still missed something.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESetting: Charlie (male protag) is a lonely UPS man who gets pulled into a mystery after he delivers a package which turns out to be something very many people want very badly. This is the scene of that delivery, which introduces our female protag, Anabelle Must. To wit: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe looked like sex, sauntering towards him on legs long enough hang power lines and a body as slick as European butter. Her nipples rose and fell with each step, offering a howdy-there-soldier-salute each time they bounced up to meet his eyes. They were staring at him. Staring into his very soul... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cHi,\\u201d she said, in a voice which sounded like sex, her pink tongue tying an invisible cherry stem around the single syllable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECharlie did not answer. He could not breathe. He could not think. His pupils were fixed upon her second pair of eyes, those erect, desperate nipples which still bounced though she stood still. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cIs that for me?\\u201d she wondered, reaching for the package with five fingers which were shaped like sex \\u2013 lithe little submarines which might soon dive into the skin of his oceanic bum. Down. Down. Down. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cYe\\u2014Yeah\\u2026\\u201d sputtered Charlie, hoisting his package into the air. \\u201cJust go-gonna need a signature, mam\\u2026\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe reached into her pocket, though she was entirely naked, and produced a pen which looked like sex, its pleading tip dripping a moist, musty ink onto the floor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cSure,\\u201d she smiled, spilling that blue sex-juice onto his rattling clipboard. \\u201cAnything else?\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECharlie retreated onto the porch, thinking that the mere aura of the woman might soon stop his heart. \\u201cN\\u2014No, mam,\\u201d he whispered, grabbing urgently at the front of his pants, fearful that they might soon launch a rocket. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe door fell shut against his face. He fell to his knees, feeling a sudden pain in his chest. His heart had given out. The mere sight of her had killed him. \\u003Cem\\u003ECardiac arrest\\u003C/em\\u003E they called it. It felt like sex\\u2026\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqtosh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BaronVonButternickle\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqtosh/po/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqtosh/po/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558347318.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_cp3cb3l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bqs0lm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"WoW Fishing: Stormsong Valley (Ambience/ASMR)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Sweetbun\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VmalKIuFimk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCrRoBf9CFTXErdj-Z1W-LaA\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bqs0lm\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Ai1RT718z01rsfPlWCCGgZEIIg8JoQowRbOaIZq5oiA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558363115.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?auto=webp\\u0026s=2c73ce6751ae262f5ac06b60c4b214664596662c\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d72d4d25cf69aa2946fa665f119b3c3a20ac800f\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6a124dc14e04c3a16da0302ebba5414a82c235b0\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3ecc5919b56a452b9f8f01472555a2a15af60127\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"4uEgYAelHlW11bf8oWKYoOFFJb_IvtDGBFSpL_owSYI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqs0lm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NamiPickles\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://youtu.be/VmalKIuFimk\", \"subreddit_subscribers\": 703, \"created_utc\": 1558334315.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"WoW Fishing: Stormsong Valley (Ambience/ASMR)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Sweetbun\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VmalKIuFimk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCrRoBf9CFTXErdj-Z1W-LaA\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Text\", \"author_fullname\": \"t2_cp3cb3l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqrx73\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558362459.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EText\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqrx73\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NamiPickles\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqrx73/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqrx73/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558333659.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hi folks,\\n\\n First of all, thanks for all the quality posts here, i created an account just for this community !\\n\\n I'm a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\n\\n D1 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5)\\n D2 : Squat (5*5)- OHP (3*5) \\n D3 : Rest\\n D4 : Squat (5*5)- OHP (3*5)\\n D5 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5)\\n D6 : Squat (5*5)- OHP (3*5) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\n D7 : Rest\\n\\n I think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP\\n\\n For these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7\\n\\nMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\n\\nThanks for all you're doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\", \"author_fullname\": \"t2_3s7t8gxj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"sdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqofzt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558341883.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\n D2 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) \\n D3 : Rest\\n D4 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\n D5 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\n D6 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\n D7 : Rest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?auto=webp\\u0026s=b59cadc793d0be52f56b3fe70bd7bd442a7b404e\", \"width\": 681, \"height\": 279}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=41e4d61a71c4994fe6d65cd5f5e5117101a8c177\", \"width\": 108, \"height\": 44}, {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f54ed93edb582388d2be8048d9b2ce14e17339e2\", \"width\": 216, \"height\": 88}, {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=197cdcd689260137ffeb3630d6ce6c8591f0123f\", \"width\": 320, \"height\": 131}, {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=48803a69899fb1896652c3f22a84062c59105e8f\", \"width\": 640, \"height\": 262}], \"variants\": {}, \"id\": \"qtTefy3j-6oGIh5mtKWiXy7kht_Oew60BsrcQCPqFhM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqofzt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"imperatorz\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558313083.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hey y'all, been a while away thanks to university, and it kinda sucked the wind out of me writing stuff about F1 for a while. But never mind that, I'm back.\\n\\nThis will be the start of a little series of mine, where I focus on F1 drivers that *should* be recognised for their stories behind their career, yet for some reason, are barely footnotes in history. You all know the story of Ascari and Fangio, of Lauda and Hunt, of Prost and Senna, of Schumacher and Hakkinen and so on. However, there are many more stories of drivers that don't receive the attention they deserve. Whether stories of success or failure, glory or ignominy, tragedy or happiness, these stories are worthy of remembering and retelling. This little series of posts are not Random Driver Highlights, given how they're not...y'know, random. But instead, they'll each have their own post, cause they deserve it.\\n\\nThe first driver I want to spotlight is an Italian driver for Ferrari in the 1950's. His story isn't *that* unknown, but compared to his contemporaries, it's very, very hidden unless you search for his name. He was F1's youngest polesitter at the time, with that record lasting for 13 years. He is directly involved with the death of a legend of a sport. He dated a rather famous Italian celebrity that got them on gossip pages. And he was very, **very** handsome. Like, ridiculously handsome.\\n\\nThis is the story of Eugenio Castellotti.\\n\\n*****\\n# [Eugenio Castellotti](https://www.classicdriver.com/sites/default/files/styles/article_full/public/183477804a.jpg?itok=mIrjs49d) #\\n\\n**STATISTICS**\\n\\n**Nationality:** Italian\\n\\n**Years in F1:** 1955-57\\n\\n**Teams Raced For:** Lancia, Ferrari\\n\\n**Entries:** 14\\n\\n**Starts:** 14\\n\\n**Podium Finishes:** 3\\n\\n**Pole Positions:** 1 (*1955 Belgian Grand Prix*)\\n\\n**Points:** 19.5\\n\\n**Highest Finish:** 2nd (*Twice -- 1955 Monaco and 1956 French Grands Prix*)\\n\\n**Good looks:** On a scale from 1-10, [*he was a goddamn 17*](http://formula-fan.ru/assets/images/drivers/Castellotti_Eugenio.jpg).\\n\\n*****\\n\\n### Part 1: Baby You're a Rich Kid ###\\n\\nEvery report on how Castellotti began his career states that it was due to his wealth, being able to buy a Ferrari sportscar at the young age of 20. Most 20 year-olds would be worrying about paying off their university fees, but here was Eugenio, buying himself a Ferrari. So, naturally, the narrative was that he had a mollycoddled childhood by two rich, wealthy parents and was able to buy his way into motorsport. Right?\\n\\nWell...not quite. I think. His mother, Angela, according to some accounts, was unmarried and *only sixteen* when she gave birth to Eugenio. Not to mention that his father, a very, *very* wealthy lawyer, reportedly first met Eugenio at the age 9. Most other sources just hook onto the fact that his family was wealthy, but if the above is true, that his dad impregnated someone at 16 and didn't bother taking care of their child until nine years later, life may not have been *that* rosy for young Eugenio as some sources claim.\\n\\nEugenio, however, quickly gained a fascination for cars, and supposedly learned how to drive through the Castellotti's family driver. As he grew up, he even tried to fake his age to obtain a driving license. Despite the probable family tensions between his mom and his dad for, well, **that** situation, there was one thing that both his parents agreed on: that Castellotti *should not race*. They became increasingly restrictive with Castellotti's passion, but that probably drove young Eugenio further into getting a racing career.\\n\\nThis was until his dad died when Eugenio was either 12 or 19. I don't know this for sure as sources are picky, but more sources point towards 19. Because, when his dad died, he left a massive, and I mean **massive**, inheritance to Eugenio. I don't know how much, but damn if it didn't look like Loadsamoney. From there, Eugenio went into a manic shopping spree, often fancying finely-tailored suits here and there. However, still against his mother's wishes, Eugenio used his money to explore his passion, motor racing.\\n\\nAnd that's how Eugenio Castellotti bought his first Ferrari, a 166MM sportscar, at the young age of 20. But, unlike most ridiculously rich youth of the generation, he didn't buy the 166MM to stare at it in his garage every once in a while. He was going to **race it**.\\n\\nHowever, Castellotti figured that the best way to start off racing wouldn't be a few simple club races, oh no. His first race was the gruelling 1,080-kilometre Tour of Sicily, where he unsurprisingly failed to finish. Not to be perturbed by this little blip, Castellotti opted to enter the frikin' **Mille Miglia**, or 1000 Miles in Italian, probably one of the grandest road races ever. There, he actually finished a credible 6th in class and 50th in an overall field of *322 starters*. As inexperienced as he was, Castellotti proved he wasn't just a regular rich kid who bought his way into racing. His first two races were only two of the toughest sportscar races, and by golly did he do well.\\n\\nInto 1952, and Castellotti's form in sportscars just got better and better over time, leading to his first win in the Gold Cup at Pescara. Buoyed by all this success, he felt it was about time he entered the grandest event of all, the Monaco Grand Prix. However, it wouldn't be his first Formula One start. The Monaco Grand Prix was going through some financial difficulties, and with radical changes in rules in the World Driver's Championship, the organisers played a *safe bet* and hosted the 1952 Grand Prix for sports cars instead.\\n\\nThat's not to say the field was any weaker, though. A number of British up-and-comers like Stirling Moss and Peter Collins entered, not to mention crafty French veterans in Robert Manzon and Louis Rosier. Entering a Grand Prix of such prestige so early in his career, Castellotti would have his work cut out for him.\\n\\nHowever, Castellotti showed an oddly cool head when everyone lost theirs, especially when Stirling Moss and other drivers ploughed into Reg Parnell's broken down Aston Martin. Following the pile-up it would be Castellotti who would inherit the lead from Vittorio Marzotto. However, the heat would take its both drivers and cars, and both had to make a mandatory pit stop to attend to both the cars and drivers.\\n\\nAccording to urban legend, when Castellotti stopped, he also requested for a **bottle of Coke**. Apparently, this slowed Castellotti's stop significantly, maybe because Coke was hard to source in Monaco, or Castellotti just had to sip Coke leisurely, I don't know. Whatever the case, this was enough to hand the lead back to Marzotto, who went on to win the Monaco Grand Prix. \\n\\nCastellotti's performance, where he lost the Monaco Grand Prix to a bottle of Coke, didn't go unnoticed, though, and despite a lucky escape in Vila Real where marshals carried him out of the way from an oncoming pileup, through the next two years, including a win at the Portuguese Grand Prix in 1952 and the Messina 10 hours in 1953.\\n\\nHis shot at the big time, though, was just on the horizon. And it would come from none other than the *reigning champion of Formula 1*, Alberto Ascari.\\n*****\\n\\n### Part 2: Lancia's Lancer ###\\n\\nIn his career so far, Castellotti had just been entering races as a privateer, mainly entering with Ferrari's purchased from his father's inheritance. Being a relatively youthful driver in the sport, he was seen as one of Italy's brightest young talents to carry Italy's motorsport image into the future, so he was probably in high demand. It would probably be just a matter of time before he got snapped up.\\n\\nThen he met Alberto Ascari. Holder of the record for most consecutive victories in F1 at the time (*and all the way until 2013*) and had secured his second consecutive World Driver's Championship by the time of the Italian Grand Prix, when he met the young Castellotti. Despite his service for Ferrari, pay disputes and other issues led the current reigning champion to leave the Prancing Horse and join, out of all teams, Lancia, who were all set to make their leap into Formula One.\\n\\nAnd, out of all people, Ascari hand-picked both his mentor, Luigi Villoresi, and his now-protege, **Eugenio Castellotti**, to join him in Lancia. Yep, he was handpicked by probably the best driver in the world to not only be his teammate for the upcoming season, but also taken under his wing as his *protege*. \\n\\nLancia had doubts over his drive, though, after a dismal showing at the Nurburgring 1000km, but those doubts were cast aside after a brilliant third place in the Carrera Panamericana. Heck, sources say him and teammate Piero Taruffi could have actually contested for the win, but received orders from above to hold station behind leader Fangio to play it safe, already having a massive lead to the rest of the field and to keep a 1-2-3 finish for Lancia.\\n\\nHowever, for 1954, Lancia's F1 project encountered delay after delay. Not quite as delayed as \\\"The Thief and the Cobbler\\\", but still, delayed by a lot. So much so that they let Ascari and Villoresi race for other teams while they continued to toil over their chassis.\\n\\nCastellotti, meanwhile, didn't follow down their path. He remained loyal to Lancia and, as their 'junior driver', was given the opportunity to race in a multitude of sportscar events. However, instead of anticipated success, Eugenio recorded DNF after DNF after DNF in many sportscar races, from the Sebring 12 hours to Mille Miglia to Targa Florio, poor Castellotti didn't have **anything** going right for him in 1954, save for winning his second Italian Mountain Championship on the trot in hillclimbing. And when Lancia were *finally* able to enter their long-awaited D50 in the season-closing race at Spain, they only had enough for Ascari and Villoresi, leaving Castellotti by the sidelines once again.\\n\\n1955 came around, and finally Lancia were ready with their D50 project. It took a while, but come the Argentine Grand Prix, Eugenio was all ready to step foot into the big leagues, Formula One. However, as most people who know their F1 history, the 1955 Argentine Grand Prix was probably the **worst race possible** to take your first steps in F1. The heat was held in mind-melting temperatures reaching *40 degrees Celsius*.\\n\\nNot only was it mind-melting, but also car-melting. This proved to be the case when Villoresi's Lancia gave up on lap **2**. As shared drives were essentially part-and-parcel with Formula One at the time, Castellotti was relieved by Villoresi on lap 20 to cut his first Formula One start short. Probably mercifully, too, as Villoresi wrecked the Lancia just 15 laps later.\\n\\nThe next race for him at Monaco, though, finally showed off what Castellotti was capable of. He qualified a stellar *fourth* in just his second race for Lancia, and in his first lap, moved up the field with a great start and this [*downright bonkers overtake for 1955 standards*](https://youtu.be/XSqH-uf1-xQ?t=108) on Stirling Moss at the station hairpin to take second on lap one. After a crazy battle with Moss early on, Moss's Mercedes dominance won out and Castellotti settled into a battle for third with teammate Ascari and Jean Behra.\\n\\nIn that battle, though, Castellotti cut a tyre after driving too aggressively and mounting several kerbs on the streets of Monaco, forcing a pitstop that dropped him to ninth, essentially being a precursor to the crazed, balls-out driving style that Castellotti would go on to develop with time in future Formula One starts. However, the dashing youngster here was only in his second race, and yet, thanks to some retirements and some seriously impressive driving, Castellotti came in **second place** in just his second Grand Prix start, a result that undoubtedly would've been a victory had it not been for the tyre trouble mentioned earlier.\\n\\nOne of those retirements, though, was his mentor and teammate, Ascari, as he ploughed through barriers and past bollards into the Monaco harbour in one of F1's most famous crashes never filmed, primarily because all the focus was on Stirling Moss' smoking Mercedes just ahead in the pitlane. Despite the frightening looking crash and the aftermath, Ascari mercifully left the accident scene with nothing more than a broken nose.\\n\\nThis was bad for Castellotti, as just the week after that, he and Ascari were teaming up to drive a Ferrari 750 Monza for the Supercortemaggiore in Monza. On the 26th of May, 1955, Castellotti and Villoresi were ready to test the unpainted, newly developed car before the race, and had invited Ascari to spectate, probably to give advice to young Eugenio like he always had, or just to see how the car handled before their upcoming event. Impulsively, during a break in action before lunch, Ascari elected to drive the car for a few laps. Some say it was to test the car he was due to race in a couple of days, others say it was to test his psyche and get back on track after his mammoth crash in Monaco.\\n\\nDressed in a suit and tie, he didn't have any racing gear on him, especially his lucky blue helmet, still under repair from his accident in Monaco. So, without thinking, he borrowed Castellotti's helmet and set out for a few laps. On the third lap, at Curva Vialone, Ascari spun out, either due to ill-effects from Monaco, distractions from his flapping tie, or someone or something crossing the track ahead of him. The car proceeded to somersault, killing the two-time champion.\\n\\nCastellotti was distraught. He was one of the first at the scene and saw his close friend and mentor pass in front of his very eyes. He lent Ascari his helmet that allowed him to test the car in the first place. Emotionally, he was probably a mess. Yet, at the same time, he was probably more driven than ever.\\n\\nWhich was why it came to be a shock when Lancia announced their immediate withdrawal from Formula One. It was partially due to the loss of their stalwart, but financial problems had also been piling on the Italian outfit, which was the main reason for their withdrawal. Unperturbed, though, Castellotti begged them to participate in the upcoming Belgian Grand Prix. Lancia couldn't send their team to Belgium, though, so they just lent Castellotti two of their D50s to enter as a privateer.\\n\\nFull of emotion, Eugenio arrived at Spa with a fire lit under him. The Mercedes team were clearly the team to beat, and with the revolutionary W196, looked near unstoppable through the season. Castellotti hadn't even been to Spa before today. And yet, on the first day of practice, his lap times were falling rapidly on the near nine-mile circuit. As the day came to a close, Castellotti had already run a *full-race distance* in practice. But on one of his last laps, the time he set was a purely incredible 4:18.1. Half a second better than Fangio, a full second ahead of Moss. And, luckily for Castellotti, the second day was completely rained out.\\n\\nAll this meant that Eugenio Castellotti, in just his **third** Grand Prix, following the recent death of his mentor and close friend, after the withdrawal of his team and entering the race *all by himself*, had just beaten the near-unbeatable Mercedes to become the **youngest polesitter in Formula One history**.\\n\\nAlthough his Lancia was eventually outpaced on race day by the Mercs and retired from a still-impressive third place with transmission issues, there was almost no doubt in many people's minds, that he truly was the next Ascari.\\n\\nWell, one of *two* potential future Ascaris.\\n*****\\n\\n### Part 3: Ferrari's Future ###\\n\\nAfter the closure of Lancia, Ferrari had snapped up most of their assets, and this included Castellotti, the Prancing Horse having been impressed by the promise shown by their young countryman. Indeed, it was out with the old, in with the new at Ferrari, as Nino Farina was forced to scale back his racing commitments due to persistent injuries, and so in stepped Castellotti for the next race at the Netherlands.\\n\\nThe next two results weren't exactly the greatest for Eugenio, salvaging a 5th in a troublesome Ferrari in Zandvoort and transmission issues plaguing him all weekend in Aintree, retiring from his main entry, and substituting Mike Hawthorn late in the race only guaranteed them a then sixth place finish, which scored them *nul points* back in the 50's.\\n\\nThe season-ending Italian Grand Prix, though, was his first real great race for Ferrari. Having acquired the Lancia D50's, Ferrari elected to race them for the Italian Grand Prix, seeing them as much faster than the Ferrari 625s and 555s they had with them. However, throughout practice, both D50's suffered intense tyre wear with the Ferrari-contracted Englebert tyres on the oval banking as opposed to the Pirelli tyres it was designed for. So, after qualifying 4th, Castellotti switched to the supposedly lesser-competitive 555 for the race. For the opening portions of the race, he surprised everyone by sticking with the four dominant Mercedes machines, giving the tifosi something to cheer about. However, ragged Eugenio slowly fell off the pace. And up stepped his rival.\\n\\nLuigi Musso was born into nobility in Rome in 1924. Being a few years Castellotti's senior, he had an earlier start into racing than him, and had impressed for the Maserati in most of his starts, including a podium in the Spanish Grand Prix and a couple of wins in non-championship Grand Prix. And him being a Roman driving for Maserati, he simply couldn't let a Milanese driving for Ferrari beat him in their home Grand Prix. So, for a good twenty-odd laps, the two battled hard, being separated by a matter of *inches* at some point in the Grand Prix. \\n\\nEventually, Castellotti won out as Musso's Maserati petered out after the intense battle. And with that battle won and the retirement of a few Mercedes machines, Eugenio salvaged a podium for Ferrari in their home race, ending the season with 12 total points. With other drivers like Farina and Hans Herrmann unable to complete a full season due to injury, and the inconsistency of others like Trintignant and Musso in such a short season, these 12 points were enough for Castellotti to finish **third** in the World Driver's Championship, best of the rest behind the Mercedes duo of Fangio and Moss. This was the best championship finish for a debutant in F1, a record that would be equalled, but never beaten for **41 years** before Jacques Villeneuve finished 2nd in the 1996 championship, a record equalled by Lewis Hamilton in 2007.\\n\\nEnzo Ferrari kept his services for 1956, where they'd be using the D50, now badged as a 'Lancia-Ferrari', that Castellotti had used to good effect the previous season. However, Castellotti wasn't going to spearhead the team, as with Mercedes' withdrawal from motorsport following the Le Mans disaster, Fangio made waves by signing for Ferrari. Also signing for Ferrari was Luigi Musso, setting the scene for a potential rivalry between the two rising Italian stars. Among the two, though, Ferrari seemed to prefer Castellotti, being selected to pair with Fangio for major endurance races that year, while Musso was stuck with Schell.\\n\\nIn Formula One, though, Musso got the early upper hand when a shared drive with Fangio led to victory for the pair of them, though that only really came to pass when multiple drivers, including Castellotti, had all sorts of mechanical issues. \\n\\nIf you recall from earlier, Castellotti had developed a reputation as being a wild driver, often blasting off straight from the gate before wearing out as the race goes on. However, given all that I've seen from nearly every source about Castellotti's wild driving style, it's all the more puzzling that his greatest triumphs in 1956 came in *endurance racing*, out of all things. The first of such victories came in the 12 hours of Sebring, where he and Fangio fought off the challenge of the Jaguar squad in the fastest Sebring 12 hours at the time. His second victory, however, was more impressive.\\n\\nBack in the previous year's Mille Miglia, Castellotti was embarrassingly dominated by Moss and Denis Jenkinson before his retirement with tyre issues. He would find out later that Moss and Jenkinson were using a navigation system, which would later turn out to be a prototype for pace notes now commonly used in rallying events. Upon Jenkinson letting him know of the news, Eugenio simply shook his head, saying he couldn't possibly drive with such a navigation system.\\n\\nBesides, come 1956, Castellotti would enter the Mille Miglia *by himself*, so there was no navigator for him to follow. If that wasn't so much of a disadvantage for him, it was made worse as the weather conditions started to turn especially nasty. Normally, drivers as manic as him would fall victim to the conditions. Indeed, another young, manic driver attempting to make a name for himself that race was Wolfgang von Trips, who, while chasing the leading driver, *tripped* over the tricky conditions. (*I swear I'm a natural comedian guys*).\\n\\nBut that leading driver von Trips was chasing was none other than Castellotti himself. In rain that essentially blinded the roads ahead and ferocious winds, Castellotti wasn't even fazed. He never put a foot wrong. And apart from a short stint where he had to refuel, through each control point on the course, Castellotti **never lost the lead** for the full 1000 miles.\\n\\nYes, you heard right. **Never. Lost. The. Lead.**\\n\\nDenis Jenkinson, co-driver to Moss, would comment on the event: [\\\"We were not racing against Musso, Castellotti or Fangio; it seemed that we were fighting for the mere right to go on living.\\\"](https://www.motorsportmagazine.com/archive/article/june-1956/26/another-mille-miglia-moss). And yet, in this battle for survival, Castellotti turned it into a driving masterclass. And, despite the undeniable truth that having a navigator in a thousand-mile road race would certainly help, Castellotti pulled this off all by himself. What an absolute legend.\\n\\nBack to Formula One, though, his performances weren't so legendary. One thing he was very good at was qualifying, as evidenced when [StatsF1 placed him **13th** all-time in best average qualifying performances (min. 10 GP starts)](https://www.statsf1.com/en/statistiques/pilote/divers/grille-moyenne.aspx). On race-day, his starts would be fantastic, but more often than not, a whole bevy of mechanical problems would drop him down the grid. This was the case for most of 1956, retiring from 3rd in Argentina, 5th in Monaco and 4th in Belgium despite having promising starts in all these races.\\n\\nIn France, he got a similarly fantastic start, and actually led for a few early laps before seceding the lead to Fangio. However, once Fangio retired, Castellotti was all but in the clear and seemed to be destined to win his first ever Grand Prix and the spearhead in a Ferrari 1-2. However, teammate Peter Collins was competing for the title, and so the order was given through the pit-board for Collins to pass Castellotti for the win. One of the earliest examples of team-orders lost Castellotti his chance for an F1 victory, but he still trailed Peter Collins right on his bumper, being separated by just *0.3 seconds* at the line.\\n\\nAfter these performances, though, the wild side of Eugenio came back to form, having probably the worst race of his F1 career to date in Silverstone, dicing with many local entries and spinning out on the opening lap at the Nurburgring. Teammate and rival Musso had also had a rough season, with a crash in a sportscar event sidelining him for a couple events, not to mention every other race since his shared win in Argentina has ended with him failing to finish. With just one event left in the calendar, their home race in Monza, both Castellotti and Musso were determined to make the race their highlight of 1956. And neither wanted to give way.\\n\\nTheir team leader, Fangio, was well aware of their competition, despite being in a championship hunt at the time. He also remembered how the D50s ripped every tyre to shreds in the last Italian Grand Prix, so he gave Eugenio and Musso sage advice. He'd lead the way so Castellotti and Musso could pace their laps without destroying any tyres. With ten laps, he'd pull over and let Castellotti and Musso duke it out for the finish, *keirin style.*\\n\\n*Measured and steady* was the advice from Fangio to the young drivers. But they didn't listen.\\n\\nInstead, Musso and Castellotti went for a ***BALLS OUT, FLAT-OUT, BAT OUT OF HELL, NO FUCKS GIVEN, MY DICK IS BIGGER THAN YOURS, TRADIN' PAINT*** scrapheap for the lead the *moment* the green flag dropped. Castellotti was the leader for the majority of this intense battle, but Musso was nowhere near giving up. It was the battle the tifosi wanted, the two Italian drivers for the Prancing Horse, battling for supremacy on hallowed racing ground.\\n\\nOf course, this battle couldn't last forever. Fangio's advice was right. The tyres on both Musso's and Castellotti's cars didn't last the whole race. They didn't even last for half distance. Heck, not even *quarter-distance*.\\n\\nBoth of their tyres completely wore out their threads by **lap 4**. You heard me. Lap. FOUR.\\n\\nWorse for Castellotti, his stop was a measure longer than Musso's and was left playing the catch-up game. Paying no heed to his earlier lesson or Fangio's prior advice, he continued the ***PEDAL TO THE METAL, I DON'T GIVE A DAMN, DON'T LIFT OR YOU'RE A PUSSY*** strategy to catch up to Musso. And by lap *nine*, his tyre punctured yet again and sent him spinning onto the main straight, ending his race.\\n\\nBy all accounts, his 1956 season, results wise, wasn't the best. Just the two points finishes left him sixth in the championship, though to be fair his pace was *far, far greater* than those results indicate. In fact, over on GP Rejects, I ran an alternative championship where points were scored after just three laps. And, spoilers, [CASTELLOTTI FREAKIN' WON](https://gprejects.com/forum/viewtopic.php?f=12\\u0026t=7589#p350138) (though admittedly thanks to dropped scores, but **still**).\\n\\nWhat's more, he had plenty of things to smile about that year outside of F1. Securing his seat at Ferrari. Sharing the win with *El Maestro* at the Sebring 12 Hours. And finally **dominating the field** at the Mille Miglia. And it's not just racing achievements Castellotti had to smile about as well.\\n*****\\n\\n### Part 4: Il Bello ###\\n\\nMost drivers from the 50's had cool-ass nicknames. Fangio was El Maestro, also known as *'The Master'*. Jose Froilan Gonzalez was known as *The Pampas Bull*. Luigi Fagioli was known as the goddamn *ABRUZZI ROBBER*. Seriously, if you were a racing driver in the 50's, it was almost part and parcel that you'd get a dope-ass nickname as a reward.\\n\\nSo, when Castellotti got his nickname, there was only one obvious choice: *Il Bello*. Put simply, **The Beautiful**.\\n\\nAnd goddamn, he was [*beautiful*](https://cdn-8.latimages.com/images/mgl/ZnzlQo/s4/1017237256-LAT-19550716-315_29.jpg). So. Damn. Beautiful. That perfect chin, the neat at hell hairstyle, those pecs...\\n\\n...wait, where was I? Right. Ahem. Yeah, he was called Il Bello, and for good reason. Castellotti was *ridiculously vain*. He wore the finest of suits and shirts tailored exactly to how he wanted it. He kept his hair in perfect shape. He was even self-conscious about his lack of height, so much so that he often wore lifts in his shoes. He didn't earn the nickname Il Bello for nothing. And likewise, he didn't put the nickname to waste either.\\n\\nPartly because of his vanity, Castellotti was definitely a ladies man. He had many short flings throughout his racing career, all of which was followed relentlessly through gossip magazines. But, in 1956, he finally found someone to settle down with. And it couldn't have come with someone more high-profile.\\n\\nDelia Scala was one of Italy's leading actresses at the time, and through 1956 and 1957, was beginning the transition to the silver screen to become one of Italy's pioneering television personalities. In the summer of 1956, she met Castellotti at a restaurant, and started talking to him simply because the pale blue colour of his trousers matched the car. Eventually, conversations about matching colours became a date, and then a relationship. A relationship that apparently newspaper reporters **could not get enough of**. Italy's future legend in motor racing pairs up with leading young actress, both of whom were ridiculously hot. A gossip writer's wet dream.\\n\\nThis was two people's nightmare, though. First was Castellotti's mother, who upon meeting Scala for the first time, took her by the hand and said \\\"*You look like a waitress, the kitchen is over there*\\\". Good going, Mrs. Castellotti.\\n\\nSecond, and maybe more importantly, was Enzo Ferrari. He hated it when his drivers would get all caught up in intense romance, furthermore if it affected them emotionally, and *even more so* if it said relationship was spread over nearly every damn newspaper in Italy. He thought it'd affect their race pace and their drive to continue. And, for a while, it seemed Enzo was right.\\n\\nCastellotti and Scala proposed and planned to get married in April. However, between the two, there was an intense discussion that turned into a disagreement. Scala wanted Castellotti to give up driving, fearing that it was getting too dangerous for him. However, Castellotti told Scala that *she* should give up acting as it would cost them time together when he wasn't racing elsewhere. I don't know where the two stood on the compromise, but it was certain that Castellotti would probably have to focus less on racing should he wish to remain with Scala.\\n\\nHowever, on track, results were still going pretty well for Castellotti in 1957, claiming *both* first and third in his respective driver lineups in the 1000 km of Buenos Aires. Additionally, in the Argentine Grand Prix for 1957, he took an early lead and was launching a serious challenge to the now-dominant Maseratis, but his Ferrari, like all the other Ferraris, gave up the ghost while running in third.\\n\\nAs was tradition in those days, the Argentine Grand Prix and other events in South America was run in their January summer, then Formula One would take a break until May to restart that season in Monaco. With marriage around the corner, Castellotti took the time to take a nice vacation in Florence with his bride-to-be Scala, who was booked for a play there for the time being. Call it a pre-marriage honeymoon, if you will.\\n\\nA pre-marriage honeymoon that got rudely interrupted by none other than *Enzo Ferrari*. He rang up Castellotti in a huff and instructed him to go to Modena the next day to test the Ferrari. But this was more than just some last-minute test set up by Ferrari or a call for Castellotti to deputize for another driver.\\n\\nAs it turns out, Jean Behra and Maserati were testing at Modena that day, and Enzo found out that they had beaten Ferrari's ultimate lap record around the Autodrome. According to some people, most notably Luigi Villoresi, Enzo Ferrari had placed a lunchtime wager on the lap record, so when he saw it got beaten, he called the first person he could find - that being Eugenio - to come down to Modena to *take that record back*.\\n\\nCastellotti was undoubtedly fuming, having had precious time with his fianc\\u00e9e interrupted for a stupid lap record. But he had to listen to Enzo. Nobody dared to oppose him. On March 14th, he left Florence at 4 a.m. to make the long drive to Modena, to get suited up and get ready for practice.\\n\\nOn just his second or third flying lap, Castellotti lost control in the esses at the start of the lap, and the car overturned through a fence and into a (*mercifully empty*) grandstand. Castellotti was thrown out. The local parish priest, Don Sergio Mantovani, was present to read him the last rites as he laid dying on the track. He was only 26 years old. His wedding with Scala was just twenty-five days away.\\n\\nThe reason for the crash has been disputed. Jean Behra, present at the track having set the aforementioned lap record, insisted there was a problem with the gearbox, having heard it shift to neutral just before the crash. Other sources feel it was just a mistake in downshifting. Most attribute this error to the fact that Castellotti was robbed of a holiday with Scala for the pettiest of reasons, thus the claim that his mind was not in the right place. This theory was exacerbated by the fact he had to wake up extremely early and drive a considerable distance to reach Modena in the first place. The *true cause* of his death was still unknown. Multiple sources claim that Enzo Ferrari, upon hearing news of the crash, said something to the tune of, \\\"Castellotti? Dead? What a pity. *How's the car?*\\\"\\n\\nWhatever it was, a petty debate over a trivial lap record robbed Formula One of a rising star in his prime. One who could've done so much more. **And yet,** despite this, his story in motor racing is extremely colourful. \\n\\nHe scored a podium in just his second start in F1. He was the protege to Alberto Ascari, and also heavily involved in the scene of his death. Impacted by this, he convinced a major manufacturer shutting up shop to loan him a chassis, with which he would become the *youngest ever polesitter* in F1 at the time. He would finish his rookie season third, a feat that remained unbeaten for 41 years. He won the Mille Miglia *all by himself* in downright atrocious conditions. He had a fiery rivalry with a fellow compatriot to see who would be their country's next future star. He married one of Italy's most famous celebrities at the time. And he died because of a wager set over lunch.\\n\\nThat is the story of '*Il Bello*', Eugenio Castellotti.\\n\\n*****\\n\\nSources:\\n\\n[**The Limit: Life and Death in Formula One's Most Dangerous Era** by Michael Cannell](https://books.google.com.sg/books?id=4UjKS5w8udcC\\u0026pg=PT100\\u0026dq=castellotti+delia+scala\\u0026hl=en\\u0026sa=X\\u0026ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEILzAB#v=onepage\\u0026q=castellotti%20delia%20scala\\u0026f=false)\\n\\n[**Enzo Ferrari: A Life** by Richard Williams](https://books.google.com.sg/books?id=BfFHSYJwOUwC\\u0026pg=PA187\\u0026dq=castellotti+delia+scala\\u0026hl=en\\u0026sa=X\\u0026ved=0ahUKEwiEitDM_ZfiAhV363MBHVmOCgkQ6AEIKTAA#v=onepage\\u0026q=castellotti%20delia%20scala\\u0026f=false)\\n\\n[**Too Fast A Life** by Martin Shepherd](https://books.google.com.sg/books?id=gEFLDwAAQBAJ\\u0026pg=PT126\\u0026dq=castellotti+delia+scala\\u0026hl=en\\u0026sa=X\\u0026ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEINTAC#v=onepage\\u0026q=castellotti%20delia%20scala\\u0026f=false)\\n\\n[Motorsport Magazine (This plus many of their contemporary race reports)](https://www.motorsportmagazine.com/archive/article/february-1998/65/young-bloods) -- [8W @ Forix](http://forix.autosport.com/8w/castellotti.html) -- [Motorsport Memorial](http://www.motorsportmemorial.org/focus.php?db=ct\\u0026n=63) -- [Ferrari Owner's Club](http://archive-focgb.co.uk/happenings/2001/january/castellotti.html) -- [Scuderia Ferrari Legends](http://www.scuderia-legends.it/eugenio.htm)\\n\\n[F1 Racing (via PressReader)](https://www.pressreader.com/uk/f1-racing-uk/20180501/281655370651027) -- [Veloce Today](https://www.velocetoday.com/eugenio-castellotti-by-graham-gauld/) -- [Racing Sportscars](https://www.racingsportscars.com/driver/results/Eugenio-Castellotti-I.html) -- [StatsF1](https://www.statsf1.com/en/eugenio-castellotti.aspx) -- [Revs Institute](https://revsinstitute.org/the-collection/1955-lancia-d50/)\", \"author_fullname\": \"t2_go65n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testellotti\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqi80q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558280545.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558308654.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey y\\u0026#39;all, been a while away thanks to university, and it kinda sucked the wind out of me writing stuff about F1 for a while. But never mind that, I\\u0026#39;m back.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis will be the start of a little series of mine, where I focus on F1 drivers that \\u003Cem\\u003Eshould\\u003C/em\\u003E be recognised for their stories behind their career, yet for some reason, are barely footnotes in history. You all know the story of Ascari and Fangio, of Lauda and Hunt, of Prost and Senna, of Schumacher and Hakkinen and so on. However, there are many more stories of drivers that don\\u0026#39;t receive the attention they deserve. Whether stories of success or failure, glory or ignominy, tragedy or happiness, these stories are worthy of remembering and retelling. This little series of posts are not Random Driver Highlights, given how they\\u0026#39;re not...y\\u0026#39;know, random. But instead, they\\u0026#39;ll each have their own post, cause they deserve it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first driver I want to spotlight is an Italian driver for Ferrari in the 1950\\u0026#39;s. His story isn\\u0026#39;t \\u003Cem\\u003Ethat\\u003C/em\\u003E unknown, but compared to his contemporaries, it\\u0026#39;s very, very hidden unless you search for his name. He was F1\\u0026#39;s youngest polesitter at the time, with that record lasting for 13 years. He is directly involved with the death of a legend of a sport. He dated a rather famous Italian celebrity that got them on gossip pages. And he was very, \\u003Cstrong\\u003Every\\u003C/strong\\u003E handsome. Like, ridiculously handsome.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the story of Eugenio Castellotti.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"https://www.classicdriver.com/sites/default/files/styles/article_full/public/183477804a.jpg?itok=mIrjs49d\\\"\\u003EEugenio Castellotti\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESTATISTICS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENationality:\\u003C/strong\\u003E Italian\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EYears in F1:\\u003C/strong\\u003E 1955-57\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETeams Raced For:\\u003C/strong\\u003E Lancia, Ferrari\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEntries:\\u003C/strong\\u003E 14\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EStarts:\\u003C/strong\\u003E 14\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPodium Finishes:\\u003C/strong\\u003E 3\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPole Positions:\\u003C/strong\\u003E 1 (\\u003Cem\\u003E1955 Belgian Grand Prix\\u003C/em\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPoints:\\u003C/strong\\u003E 19.5\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHighest Finish:\\u003C/strong\\u003E 2nd (\\u003Cem\\u003ETwice -- 1955 Monaco and 1956 French Grands Prix\\u003C/em\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGood looks:\\u003C/strong\\u003E On a scale from 1-10, \\u003Ca href=\\\"http://formula-fan.ru/assets/images/drivers/Castellotti_Eugenio.jpg\\\"\\u003E\\u003Cem\\u003Ehe was a goddamn 17\\u003C/em\\u003E\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 1: Baby You\\u0026#39;re a Rich Kid\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EEvery report on how Castellotti began his career states that it was due to his wealth, being able to buy a Ferrari sportscar at the young age of 20. Most 20 year-olds would be worrying about paying off their university fees, but here was Eugenio, buying himself a Ferrari. So, naturally, the narrative was that he had a mollycoddled childhood by two rich, wealthy parents and was able to buy his way into motorsport. Right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell...not quite. I think. His mother, Angela, according to some accounts, was unmarried and \\u003Cem\\u003Eonly sixteen\\u003C/em\\u003E when she gave birth to Eugenio. Not to mention that his father, a very, \\u003Cem\\u003Every\\u003C/em\\u003E wealthy lawyer, reportedly first met Eugenio at the age 9. Most other sources just hook onto the fact that his family was wealthy, but if the above is true, that his dad impregnated someone at 16 and didn\\u0026#39;t bother taking care of their child until nine years later, life may not have been \\u003Cem\\u003Ethat\\u003C/em\\u003E rosy for young Eugenio as some sources claim.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEugenio, however, quickly gained a fascination for cars, and supposedly learned how to drive through the Castellotti\\u0026#39;s family driver. As he grew up, he even tried to fake his age to obtain a driving license. Despite the probable family tensions between his mom and his dad for, well, \\u003Cstrong\\u003Ethat\\u003C/strong\\u003E situation, there was one thing that both his parents agreed on: that Castellotti \\u003Cem\\u003Eshould not race\\u003C/em\\u003E. They became increasingly restrictive with Castellotti\\u0026#39;s passion, but that probably drove young Eugenio further into getting a racing career.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis was until his dad died when Eugenio was either 12 or 19. I don\\u0026#39;t know this for sure as sources are picky, but more sources point towards 19. Because, when his dad died, he left a massive, and I mean \\u003Cstrong\\u003Emassive\\u003C/strong\\u003E, inheritance to Eugenio. I don\\u0026#39;t know how much, but damn if it didn\\u0026#39;t look like Loadsamoney. From there, Eugenio went into a manic shopping spree, often fancying finely-tailored suits here and there. However, still against his mother\\u0026#39;s wishes, Eugenio used his money to explore his passion, motor racing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd that\\u0026#39;s how Eugenio Castellotti bought his first Ferrari, a 166MM sportscar, at the young age of 20. But, unlike most ridiculously rich youth of the generation, he didn\\u0026#39;t buy the 166MM to stare at it in his garage every once in a while. He was going to \\u003Cstrong\\u003Erace it\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, Castellotti figured that the best way to start off racing wouldn\\u0026#39;t be a few simple club races, oh no. His first race was the gruelling 1,080-kilometre Tour of Sicily, where he unsurprisingly failed to finish. Not to be perturbed by this little blip, Castellotti opted to enter the frikin\\u0026#39; \\u003Cstrong\\u003EMille Miglia\\u003C/strong\\u003E, or 1000 Miles in Italian, probably one of the grandest road races ever. There, he actually finished a credible 6th in class and 50th in an overall field of \\u003Cem\\u003E322 starters\\u003C/em\\u003E. As inexperienced as he was, Castellotti proved he wasn\\u0026#39;t just a regular rich kid who bought his way into racing. His first two races were only two of the toughest sportscar races, and by golly did he do well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInto 1952, and Castellotti\\u0026#39;s form in sportscars just got better and better over time, leading to his first win in the Gold Cup at Pescara. Buoyed by all this success, he felt it was about time he entered the grandest event of all, the Monaco Grand Prix. However, it wouldn\\u0026#39;t be his first Formula One start. The Monaco Grand Prix was going through some financial difficulties, and with radical changes in rules in the World Driver\\u0026#39;s Championship, the organisers played a \\u003Cem\\u003Esafe bet\\u003C/em\\u003E and hosted the 1952 Grand Prix for sports cars instead.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s not to say the field was any weaker, though. A number of British up-and-comers like Stirling Moss and Peter Collins entered, not to mention crafty French veterans in Robert Manzon and Louis Rosier. Entering a Grand Prix of such prestige so early in his career, Castellotti would have his work cut out for him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, Castellotti showed an oddly cool head when everyone lost theirs, especially when Stirling Moss and other drivers ploughed into Reg Parnell\\u0026#39;s broken down Aston Martin. Following the pile-up it would be Castellotti who would inherit the lead from Vittorio Marzotto. However, the heat would take its both drivers and cars, and both had to make a mandatory pit stop to attend to both the cars and drivers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAccording to urban legend, when Castellotti stopped, he also requested for a \\u003Cstrong\\u003Ebottle of Coke\\u003C/strong\\u003E. Apparently, this slowed Castellotti\\u0026#39;s stop significantly, maybe because Coke was hard to source in Monaco, or Castellotti just had to sip Coke leisurely, I don\\u0026#39;t know. Whatever the case, this was enough to hand the lead back to Marzotto, who went on to win the Monaco Grand Prix. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti\\u0026#39;s performance, where he lost the Monaco Grand Prix to a bottle of Coke, didn\\u0026#39;t go unnoticed, though, and despite a lucky escape in Vila Real where marshals carried him out of the way from an oncoming pileup, through the next two years, including a win at the Portuguese Grand Prix in 1952 and the Messina 10 hours in 1953.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHis shot at the big time, though, was just on the horizon. And it would come from none other than the \\u003Cem\\u003Ereigning champion of Formula 1\\u003C/em\\u003E, Alberto Ascari.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 2: Lancia\\u0026#39;s Lancer\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EIn his career so far, Castellotti had just been entering races as a privateer, mainly entering with Ferrari\\u0026#39;s purchased from his father\\u0026#39;s inheritance. Being a relatively youthful driver in the sport, he was seen as one of Italy\\u0026#39;s brightest young talents to carry Italy\\u0026#39;s motorsport image into the future, so he was probably in high demand. It would probably be just a matter of time before he got snapped up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen he met Alberto Ascari. Holder of the record for most consecutive victories in F1 at the time (\\u003Cem\\u003Eand all the way until 2013\\u003C/em\\u003E) and had secured his second consecutive World Driver\\u0026#39;s Championship by the time of the Italian Grand Prix, when he met the young Castellotti. Despite his service for Ferrari, pay disputes and other issues led the current reigning champion to leave the Prancing Horse and join, out of all teams, Lancia, who were all set to make their leap into Formula One.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd, out of all people, Ascari hand-picked both his mentor, Luigi Villoresi, and his now-protege, \\u003Cstrong\\u003EEugenio Castellotti\\u003C/strong\\u003E, to join him in Lancia. Yep, he was handpicked by probably the best driver in the world to not only be his teammate for the upcoming season, but also taken under his wing as his \\u003Cem\\u003Eprotege\\u003C/em\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELancia had doubts over his drive, though, after a dismal showing at the Nurburgring 1000km, but those doubts were cast aside after a brilliant third place in the Carrera Panamericana. Heck, sources say him and teammate Piero Taruffi could have actually contested for the win, but received orders from above to hold station behind leader Fangio to play it safe, already having a massive lead to the rest of the field and to keep a 1-2-3 finish for Lancia.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, for 1954, Lancia\\u0026#39;s F1 project encountered delay after delay. Not quite as delayed as \\u0026quot;The Thief and the Cobbler\\u0026quot;, but still, delayed by a lot. So much so that they let Ascari and Villoresi race for other teams while they continued to toil over their chassis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti, meanwhile, didn\\u0026#39;t follow down their path. He remained loyal to Lancia and, as their \\u0026#39;junior driver\\u0026#39;, was given the opportunity to race in a multitude of sportscar events. However, instead of anticipated success, Eugenio recorded DNF after DNF after DNF in many sportscar races, from the Sebring 12 hours to Mille Miglia to Targa Florio, poor Castellotti didn\\u0026#39;t have \\u003Cstrong\\u003Eanything\\u003C/strong\\u003E going right for him in 1954, save for winning his second Italian Mountain Championship on the trot in hillclimbing. And when Lancia were \\u003Cem\\u003Efinally\\u003C/em\\u003E able to enter their long-awaited D50 in the season-closing race at Spain, they only had enough for Ascari and Villoresi, leaving Castellotti by the sidelines once again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E1955 came around, and finally Lancia were ready with their D50 project. It took a while, but come the Argentine Grand Prix, Eugenio was all ready to step foot into the big leagues, Formula One. However, as most people who know their F1 history, the 1955 Argentine Grand Prix was probably the \\u003Cstrong\\u003Eworst race possible\\u003C/strong\\u003E to take your first steps in F1. The heat was held in mind-melting temperatures reaching \\u003Cem\\u003E40 degrees Celsius\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot only was it mind-melting, but also car-melting. This proved to be the case when Villoresi\\u0026#39;s Lancia gave up on lap \\u003Cstrong\\u003E2\\u003C/strong\\u003E. As shared drives were essentially part-and-parcel with Formula One at the time, Castellotti was relieved by Villoresi on lap 20 to cut his first Formula One start short. Probably mercifully, too, as Villoresi wrecked the Lancia just 15 laps later.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next race for him at Monaco, though, finally showed off what Castellotti was capable of. He qualified a stellar \\u003Cem\\u003Efourth\\u003C/em\\u003E in just his second race for Lancia, and in his first lap, moved up the field with a great start and this \\u003Ca href=\\\"https://youtu.be/XSqH-uf1-xQ?t=108\\\"\\u003E\\u003Cem\\u003Edownright bonkers overtake for 1955 standards\\u003C/em\\u003E\\u003C/a\\u003E on Stirling Moss at the station hairpin to take second on lap one. After a crazy battle with Moss early on, Moss\\u0026#39;s Mercedes dominance won out and Castellotti settled into a battle for third with teammate Ascari and Jean Behra.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn that battle, though, Castellotti cut a tyre after driving too aggressively and mounting several kerbs on the streets of Monaco, forcing a pitstop that dropped him to ninth, essentially being a precursor to the crazed, balls-out driving style that Castellotti would go on to develop with time in future Formula One starts. However, the dashing youngster here was only in his second race, and yet, thanks to some retirements and some seriously impressive driving, Castellotti came in \\u003Cstrong\\u003Esecond place\\u003C/strong\\u003E in just his second Grand Prix start, a result that undoubtedly would\\u0026#39;ve been a victory had it not been for the tyre trouble mentioned earlier.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of those retirements, though, was his mentor and teammate, Ascari, as he ploughed through barriers and past bollards into the Monaco harbour in one of F1\\u0026#39;s most famous crashes never filmed, primarily because all the focus was on Stirling Moss\\u0026#39; smoking Mercedes just ahead in the pitlane. Despite the frightening looking crash and the aftermath, Ascari mercifully left the accident scene with nothing more than a broken nose.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis was bad for Castellotti, as just the week after that, he and Ascari were teaming up to drive a Ferrari 750 Monza for the Supercortemaggiore in Monza. On the 26th of May, 1955, Castellotti and Villoresi were ready to test the unpainted, newly developed car before the race, and had invited Ascari to spectate, probably to give advice to young Eugenio like he always had, or just to see how the car handled before their upcoming event. Impulsively, during a break in action before lunch, Ascari elected to drive the car for a few laps. Some say it was to test the car he was due to race in a couple of days, others say it was to test his psyche and get back on track after his mammoth crash in Monaco.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDressed in a suit and tie, he didn\\u0026#39;t have any racing gear on him, especially his lucky blue helmet, still under repair from his accident in Monaco. So, without thinking, he borrowed Castellotti\\u0026#39;s helmet and set out for a few laps. On the third lap, at Curva Vialone, Ascari spun out, either due to ill-effects from Monaco, distractions from his flapping tie, or someone or something crossing the track ahead of him. The car proceeded to somersault, killing the two-time champion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti was distraught. He was one of the first at the scene and saw his close friend and mentor pass in front of his very eyes. He lent Ascari his helmet that allowed him to test the car in the first place. Emotionally, he was probably a mess. Yet, at the same time, he was probably more driven than ever.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhich was why it came to be a shock when Lancia announced their immediate withdrawal from Formula One. It was partially due to the loss of their stalwart, but financial problems had also been piling on the Italian outfit, which was the main reason for their withdrawal. Unperturbed, though, Castellotti begged them to participate in the upcoming Belgian Grand Prix. Lancia couldn\\u0026#39;t send their team to Belgium, though, so they just lent Castellotti two of their D50s to enter as a privateer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFull of emotion, Eugenio arrived at Spa with a fire lit under him. The Mercedes team were clearly the team to beat, and with the revolutionary W196, looked near unstoppable through the season. Castellotti hadn\\u0026#39;t even been to Spa before today. And yet, on the first day of practice, his lap times were falling rapidly on the near nine-mile circuit. As the day came to a close, Castellotti had already run a \\u003Cem\\u003Efull-race distance\\u003C/em\\u003E in practice. But on one of his last laps, the time he set was a purely incredible 4:18.1. Half a second better than Fangio, a full second ahead of Moss. And, luckily for Castellotti, the second day was completely rained out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll this meant that Eugenio Castellotti, in just his \\u003Cstrong\\u003Ethird\\u003C/strong\\u003E Grand Prix, following the recent death of his mentor and close friend, after the withdrawal of his team and entering the race \\u003Cem\\u003Eall by himself\\u003C/em\\u003E, had just beaten the near-unbeatable Mercedes to become the \\u003Cstrong\\u003Eyoungest polesitter in Formula One history\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlthough his Lancia was eventually outpaced on race day by the Mercs and retired from a still-impressive third place with transmission issues, there was almost no doubt in many people\\u0026#39;s minds, that he truly was the next Ascari.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, one of \\u003Cem\\u003Etwo\\u003C/em\\u003E potential future Ascaris.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 3: Ferrari\\u0026#39;s Future\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EAfter the closure of Lancia, Ferrari had snapped up most of their assets, and this included Castellotti, the Prancing Horse having been impressed by the promise shown by their young countryman. Indeed, it was out with the old, in with the new at Ferrari, as Nino Farina was forced to scale back his racing commitments due to persistent injuries, and so in stepped Castellotti for the next race at the Netherlands.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next two results weren\\u0026#39;t exactly the greatest for Eugenio, salvaging a 5th in a troublesome Ferrari in Zandvoort and transmission issues plaguing him all weekend in Aintree, retiring from his main entry, and substituting Mike Hawthorn late in the race only guaranteed them a then sixth place finish, which scored them \\u003Cem\\u003Enul points\\u003C/em\\u003E back in the 50\\u0026#39;s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe season-ending Italian Grand Prix, though, was his first real great race for Ferrari. Having acquired the Lancia D50\\u0026#39;s, Ferrari elected to race them for the Italian Grand Prix, seeing them as much faster than the Ferrari 625s and 555s they had with them. However, throughout practice, both D50\\u0026#39;s suffered intense tyre wear with the Ferrari-contracted Englebert tyres on the oval banking as opposed to the Pirelli tyres it was designed for. So, after qualifying 4th, Castellotti switched to the supposedly lesser-competitive 555 for the race. For the opening portions of the race, he surprised everyone by sticking with the four dominant Mercedes machines, giving the tifosi something to cheer about. However, ragged Eugenio slowly fell off the pace. And up stepped his rival.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuigi Musso was born into nobility in Rome in 1924. Being a few years Castellotti\\u0026#39;s senior, he had an earlier start into racing than him, and had impressed for the Maserati in most of his starts, including a podium in the Spanish Grand Prix and a couple of wins in non-championship Grand Prix. And him being a Roman driving for Maserati, he simply couldn\\u0026#39;t let a Milanese driving for Ferrari beat him in their home Grand Prix. So, for a good twenty-odd laps, the two battled hard, being separated by a matter of \\u003Cem\\u003Einches\\u003C/em\\u003E at some point in the Grand Prix. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEventually, Castellotti won out as Musso\\u0026#39;s Maserati petered out after the intense battle. And with that battle won and the retirement of a few Mercedes machines, Eugenio salvaged a podium for Ferrari in their home race, ending the season with 12 total points. With other drivers like Farina and Hans Herrmann unable to complete a full season due to injury, and the inconsistency of others like Trintignant and Musso in such a short season, these 12 points were enough for Castellotti to finish \\u003Cstrong\\u003Ethird\\u003C/strong\\u003E in the World Driver\\u0026#39;s Championship, best of the rest behind the Mercedes duo of Fangio and Moss. This was the best championship finish for a debutant in F1, a record that would be equalled, but never beaten for \\u003Cstrong\\u003E41 years\\u003C/strong\\u003E before Jacques Villeneuve finished 2nd in the 1996 championship, a record equalled by Lewis Hamilton in 2007.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEnzo Ferrari kept his services for 1956, where they\\u0026#39;d be using the D50, now badged as a \\u0026#39;Lancia-Ferrari\\u0026#39;, that Castellotti had used to good effect the previous season. However, Castellotti wasn\\u0026#39;t going to spearhead the team, as with Mercedes\\u0026#39; withdrawal from motorsport following the Le Mans disaster, Fangio made waves by signing for Ferrari. Also signing for Ferrari was Luigi Musso, setting the scene for a potential rivalry between the two rising Italian stars. Among the two, though, Ferrari seemed to prefer Castellotti, being selected to pair with Fangio for major endurance races that year, while Musso was stuck with Schell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Formula One, though, Musso got the early upper hand when a shared drive with Fangio led to victory for the pair of them, though that only really came to pass when multiple drivers, including Castellotti, had all sorts of mechanical issues. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you recall from earlier, Castellotti had developed a reputation as being a wild driver, often blasting off straight from the gate before wearing out as the race goes on. However, given all that I\\u0026#39;ve seen from nearly every source about Castellotti\\u0026#39;s wild driving style, it\\u0026#39;s all the more puzzling that his greatest triumphs in 1956 came in \\u003Cem\\u003Eendurance racing\\u003C/em\\u003E, out of all things. The first of such victories came in the 12 hours of Sebring, where he and Fangio fought off the challenge of the Jaguar squad in the fastest Sebring 12 hours at the time. His second victory, however, was more impressive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in the previous year\\u0026#39;s Mille Miglia, Castellotti was embarrassingly dominated by Moss and Denis Jenkinson before his retirement with tyre issues. He would find out later that Moss and Jenkinson were using a navigation system, which would later turn out to be a prototype for pace notes now commonly used in rallying events. Upon Jenkinson letting him know of the news, Eugenio simply shook his head, saying he couldn\\u0026#39;t possibly drive with such a navigation system.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBesides, come 1956, Castellotti would enter the Mille Miglia \\u003Cem\\u003Eby himself\\u003C/em\\u003E, so there was no navigator for him to follow. If that wasn\\u0026#39;t so much of a disadvantage for him, it was made worse as the weather conditions started to turn especially nasty. Normally, drivers as manic as him would fall victim to the conditions. Indeed, another young, manic driver attempting to make a name for himself that race was Wolfgang von Trips, who, while chasing the leading driver, \\u003Cem\\u003Etripped\\u003C/em\\u003E over the tricky conditions. (\\u003Cem\\u003EI swear I\\u0026#39;m a natural comedian guys\\u003C/em\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut that leading driver von Trips was chasing was none other than Castellotti himself. In rain that essentially blinded the roads ahead and ferocious winds, Castellotti wasn\\u0026#39;t even fazed. He never put a foot wrong. And apart from a short stint where he had to refuel, through each control point on the course, Castellotti \\u003Cstrong\\u003Enever lost the lead\\u003C/strong\\u003E for the full 1000 miles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes, you heard right. \\u003Cstrong\\u003ENever. Lost. The. Lead.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDenis Jenkinson, co-driver to Moss, would comment on the event: \\u003Ca href=\\\"https://www.motorsportmagazine.com/archive/article/june-1956/26/another-mille-miglia-moss\\\"\\u003E\\u0026quot;We were not racing against Musso, Castellotti or Fangio; it seemed that we were fighting for the mere right to go on living.\\u0026quot;\\u003C/a\\u003E. And yet, in this battle for survival, Castellotti turned it into a driving masterclass. And, despite the undeniable truth that having a navigator in a thousand-mile road race would certainly help, Castellotti pulled this off all by himself. What an absolute legend.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack to Formula One, though, his performances weren\\u0026#39;t so legendary. One thing he was very good at was qualifying, as evidenced when \\u003Ca href=\\\"https://www.statsf1.com/en/statistiques/pilote/divers/grille-moyenne.aspx\\\"\\u003EStatsF1 placed him \\u003Cstrong\\u003E13th\\u003C/strong\\u003E all-time in best average qualifying performances (min. 10 GP starts)\\u003C/a\\u003E. On race-day, his starts would be fantastic, but more often than not, a whole bevy of mechanical problems would drop him down the grid. This was the case for most of 1956, retiring from 3rd in Argentina, 5th in Monaco and 4th in Belgium despite having promising starts in all these races.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn France, he got a similarly fantastic start, and actually led for a few early laps before seceding the lead to Fangio. However, once Fangio retired, Castellotti was all but in the clear and seemed to be destined to win his first ever Grand Prix and the spearhead in a Ferrari 1-2. However, teammate Peter Collins was competing for the title, and so the order was given through the pit-board for Collins to pass Castellotti for the win. One of the earliest examples of team-orders lost Castellotti his chance for an F1 victory, but he still trailed Peter Collins right on his bumper, being separated by just \\u003Cem\\u003E0.3 seconds\\u003C/em\\u003E at the line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter these performances, though, the wild side of Eugenio came back to form, having probably the worst race of his F1 career to date in Silverstone, dicing with many local entries and spinning out on the opening lap at the Nurburgring. Teammate and rival Musso had also had a rough season, with a crash in a sportscar event sidelining him for a couple events, not to mention every other race since his shared win in Argentina has ended with him failing to finish. With just one event left in the calendar, their home race in Monza, both Castellotti and Musso were determined to make the race their highlight of 1956. And neither wanted to give way.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETheir team leader, Fangio, was well aware of their competition, despite being in a championship hunt at the time. He also remembered how the D50s ripped every tyre to shreds in the last Italian Grand Prix, so he gave Eugenio and Musso sage advice. He\\u0026#39;d lead the way so Castellotti and Musso could pace their laps without destroying any tyres. With ten laps, he\\u0026#39;d pull over and let Castellotti and Musso duke it out for the finish, \\u003Cem\\u003Ekeirin style.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EMeasured and steady\\u003C/em\\u003E was the advice from Fangio to the young drivers. But they didn\\u0026#39;t listen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstead, Musso and Castellotti went for a \\u003Cstrong\\u003E\\u003Cem\\u003EBALLS OUT, FLAT-OUT, BAT OUT OF HELL, NO FUCKS GIVEN, MY DICK IS BIGGER THAN YOURS, TRADIN\\u0026#39; PAINT\\u003C/em\\u003E\\u003C/strong\\u003E scrapheap for the lead the \\u003Cem\\u003Emoment\\u003C/em\\u003E the green flag dropped. Castellotti was the leader for the majority of this intense battle, but Musso was nowhere near giving up. It was the battle the tifosi wanted, the two Italian drivers for the Prancing Horse, battling for supremacy on hallowed racing ground.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, this battle couldn\\u0026#39;t last forever. Fangio\\u0026#39;s advice was right. The tyres on both Musso\\u0026#39;s and Castellotti\\u0026#39;s cars didn\\u0026#39;t last the whole race. They didn\\u0026#39;t even last for half distance. Heck, not even \\u003Cem\\u003Equarter-distance\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth of their tyres completely wore out their threads by \\u003Cstrong\\u003Elap 4\\u003C/strong\\u003E. You heard me. Lap. FOUR.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWorse for Castellotti, his stop was a measure longer than Musso\\u0026#39;s and was left playing the catch-up game. Paying no heed to his earlier lesson or Fangio\\u0026#39;s prior advice, he continued the \\u003Cstrong\\u003E\\u003Cem\\u003EPEDAL TO THE METAL, I DON\\u0026#39;T GIVE A DAMN, DON\\u0026#39;T LIFT OR YOU\\u0026#39;RE A PUSSY\\u003C/em\\u003E\\u003C/strong\\u003E strategy to catch up to Musso. And by lap \\u003Cem\\u003Enine\\u003C/em\\u003E, his tyre punctured yet again and sent him spinning onto the main straight, ending his race.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy all accounts, his 1956 season, results wise, wasn\\u0026#39;t the best. Just the two points finishes left him sixth in the championship, though to be fair his pace was \\u003Cem\\u003Efar, far greater\\u003C/em\\u003E than those results indicate. In fact, over on GP Rejects, I ran an alternative championship where points were scored after just three laps. And, spoilers, \\u003Ca href=\\\"https://gprejects.com/forum/viewtopic.php?f=12\\u0026amp;t=7589#p350138\\\"\\u003ECASTELLOTTI FREAKIN\\u0026#39; WON\\u003C/a\\u003E (though admittedly thanks to dropped scores, but \\u003Cstrong\\u003Estill\\u003C/strong\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s more, he had plenty of things to smile about that year outside of F1. Securing his seat at Ferrari. Sharing the win with \\u003Cem\\u003EEl Maestro\\u003C/em\\u003E at the Sebring 12 Hours. And finally \\u003Cstrong\\u003Edominating the field\\u003C/strong\\u003E at the Mille Miglia. And it\\u0026#39;s not just racing achievements Castellotti had to smile about as well.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 4: Il Bello\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EMost drivers from the 50\\u0026#39;s had cool-ass nicknames. Fangio was El Maestro, also known as \\u003Cem\\u003E\\u0026#39;The Master\\u0026#39;\\u003C/em\\u003E. Jose Froilan Gonzalez was known as \\u003Cem\\u003EThe Pampas Bull\\u003C/em\\u003E. Luigi Fagioli was known as the goddamn \\u003Cem\\u003EABRUZZI ROBBER\\u003C/em\\u003E. Seriously, if you were a racing driver in the 50\\u0026#39;s, it was almost part and parcel that you\\u0026#39;d get a dope-ass nickname as a reward.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, when Castellotti got his nickname, there was only one obvious choice: \\u003Cem\\u003EIl Bello\\u003C/em\\u003E. Put simply, \\u003Cstrong\\u003EThe Beautiful\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd goddamn, he was \\u003Ca href=\\\"https://cdn-8.latimages.com/images/mgl/ZnzlQo/s4/1017237256-LAT-19550716-315_29.jpg\\\"\\u003E\\u003Cem\\u003Ebeautiful\\u003C/em\\u003E\\u003C/a\\u003E. So. Damn. Beautiful. That perfect chin, the neat at hell hairstyle, those pecs...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...wait, where was I? Right. Ahem. Yeah, he was called Il Bello, and for good reason. Castellotti was \\u003Cem\\u003Eridiculously vain\\u003C/em\\u003E. He wore the finest of suits and shirts tailored exactly to how he wanted it. He kept his hair in perfect shape. He was even self-conscious about his lack of height, so much so that he often wore lifts in his shoes. He didn\\u0026#39;t earn the nickname Il Bello for nothing. And likewise, he didn\\u0026#39;t put the nickname to waste either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPartly because of his vanity, Castellotti was definitely a ladies man. He had many short flings throughout his racing career, all of which was followed relentlessly through gossip magazines. But, in 1956, he finally found someone to settle down with. And it couldn\\u0026#39;t have come with someone more high-profile.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDelia Scala was one of Italy\\u0026#39;s leading actresses at the time, and through 1956 and 1957, was beginning the transition to the silver screen to become one of Italy\\u0026#39;s pioneering television personalities. In the summer of 1956, she met Castellotti at a restaurant, and started talking to him simply because the pale blue colour of his trousers matched the car. Eventually, conversations about matching colours became a date, and then a relationship. A relationship that apparently newspaper reporters \\u003Cstrong\\u003Ecould not get enough of\\u003C/strong\\u003E. Italy\\u0026#39;s future legend in motor racing pairs up with leading young actress, both of whom were ridiculously hot. A gossip writer\\u0026#39;s wet dream.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis was two people\\u0026#39;s nightmare, though. First was Castellotti\\u0026#39;s mother, who upon meeting Scala for the first time, took her by the hand and said \\u0026quot;\\u003Cem\\u003EYou look like a waitress, the kitchen is over there\\u003C/em\\u003E\\u0026quot;. Good going, Mrs. Castellotti.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESecond, and maybe more importantly, was Enzo Ferrari. He hated it when his drivers would get all caught up in intense romance, furthermore if it affected them emotionally, and \\u003Cem\\u003Eeven more so\\u003C/em\\u003E if it said relationship was spread over nearly every damn newspaper in Italy. He thought it\\u0026#39;d affect their race pace and their drive to continue. And, for a while, it seemed Enzo was right.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti and Scala proposed and planned to get married in April. However, between the two, there was an intense discussion that turned into a disagreement. Scala wanted Castellotti to give up driving, fearing that it was getting too dangerous for him. However, Castellotti told Scala that \\u003Cem\\u003Eshe\\u003C/em\\u003E should give up acting as it would cost them time together when he wasn\\u0026#39;t racing elsewhere. I don\\u0026#39;t know where the two stood on the compromise, but it was certain that Castellotti would probably have to focus less on racing should he wish to remain with Scala.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, on track, results were still going pretty well for Castellotti in 1957, claiming \\u003Cem\\u003Eboth\\u003C/em\\u003E first and third in his respective driver lineups in the 1000 km of Buenos Aires. Additionally, in the Argentine Grand Prix for 1957, he took an early lead and was launching a serious challenge to the now-dominant Maseratis, but his Ferrari, like all the other Ferraris, gave up the ghost while running in third.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs was tradition in those days, the Argentine Grand Prix and other events in South America was run in their January summer, then Formula One would take a break until May to restart that season in Monaco. With marriage around the corner, Castellotti took the time to take a nice vacation in Florence with his bride-to-be Scala, who was booked for a play there for the time being. Call it a pre-marriage honeymoon, if you will.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA pre-marriage honeymoon that got rudely interrupted by none other than \\u003Cem\\u003EEnzo Ferrari\\u003C/em\\u003E. He rang up Castellotti in a huff and instructed him to go to Modena the next day to test the Ferrari. But this was more than just some last-minute test set up by Ferrari or a call for Castellotti to deputize for another driver.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it turns out, Jean Behra and Maserati were testing at Modena that day, and Enzo found out that they had beaten Ferrari\\u0026#39;s ultimate lap record around the Autodrome. According to some people, most notably Luigi Villoresi, Enzo Ferrari had placed a lunchtime wager on the lap record, so when he saw it got beaten, he called the first person he could find - that being Eugenio - to come down to Modena to \\u003Cem\\u003Etake that record back\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti was undoubtedly fuming, having had precious time with his fianc\\u00e9e interrupted for a stupid lap record. But he had to listen to Enzo. Nobody dared to oppose him. On March 14th, he left Florence at 4 a.m. to make the long drive to Modena, to get suited up and get ready for practice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn just his second or third flying lap, Castellotti lost control in the esses at the start of the lap, and the car overturned through a fence and into a (\\u003Cem\\u003Emercifully empty\\u003C/em\\u003E) grandstand. Castellotti was thrown out. The local parish priest, Don Sergio Mantovani, was present to read him the last rites as he laid dying on the track. He was only 26 years old. His wedding with Scala was just twenty-five days away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe reason for the crash has been disputed. Jean Behra, present at the track having set the aforementioned lap record, insisted there was a problem with the gearbox, having heard it shift to neutral just before the crash. Other sources feel it was just a mistake in downshifting. Most attribute this error to the fact that Castellotti was robbed of a holiday with Scala for the pettiest of reasons, thus the claim that his mind was not in the right place. This theory was exacerbated by the fact he had to wake up extremely early and drive a considerable distance to reach Modena in the first place. The \\u003Cem\\u003Etrue cause\\u003C/em\\u003E of his death was still unknown. Multiple sources claim that Enzo Ferrari, upon hearing news of the crash, said something to the tune of, \\u0026quot;Castellotti? Dead? What a pity. \\u003Cem\\u003EHow\\u0026#39;s the car?\\u003C/em\\u003E\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhatever it was, a petty debate over a trivial lap record robbed Formula One of a rising star in his prime. One who could\\u0026#39;ve done so much more. \\u003Cstrong\\u003EAnd yet,\\u003C/strong\\u003E despite this, his story in motor racing is extremely colourful. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe scored a podium in just his second start in F1. He was the protege to Alberto Ascari, and also heavily involved in the scene of his death. Impacted by this, he convinced a major manufacturer shutting up shop to loan him a chassis, with which he would become the \\u003Cem\\u003Eyoungest ever polesitter\\u003C/em\\u003E in F1 at the time. He would finish his rookie season third, a feat that remained unbeaten for 41 years. He won the Mille Miglia \\u003Cem\\u003Eall by himself\\u003C/em\\u003E in downright atrocious conditions. He had a fiery rivalry with a fellow compatriot to see who would be their country\\u0026#39;s next future star. He married one of Italy\\u0026#39;s most famous celebrities at the time. And he died because of a wager set over lunch.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat is the story of \\u0026#39;\\u003Cem\\u003EIl Bello\\u003C/em\\u003E\\u0026#39;, Eugenio Castellotti.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003ESources:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://books.google.com.sg/books?id=4UjKS5w8udcC\\u0026amp;pg=PT100\\u0026amp;dq=castellotti+delia+scala\\u0026amp;hl=en\\u0026amp;sa=X\\u0026amp;ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEILzAB#v=onepage\\u0026amp;q=castellotti%20delia%20scala\\u0026amp;f=false\\\"\\u003E\\u003Cstrong\\u003EThe Limit: Life and Death in Formula One\\u0026#39;s Most Dangerous Era\\u003C/strong\\u003E by Michael Cannell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://books.google.com.sg/books?id=BfFHSYJwOUwC\\u0026amp;pg=PA187\\u0026amp;dq=castellotti+delia+scala\\u0026amp;hl=en\\u0026amp;sa=X\\u0026amp;ved=0ahUKEwiEitDM_ZfiAhV363MBHVmOCgkQ6AEIKTAA#v=onepage\\u0026amp;q=castellotti%20delia%20scala\\u0026amp;f=false\\\"\\u003E\\u003Cstrong\\u003EEnzo Ferrari: A Life\\u003C/strong\\u003E by Richard Williams\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://books.google.com.sg/books?id=gEFLDwAAQBAJ\\u0026amp;pg=PT126\\u0026amp;dq=castellotti+delia+scala\\u0026amp;hl=en\\u0026amp;sa=X\\u0026amp;ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEINTAC#v=onepage\\u0026amp;q=castellotti%20delia%20scala\\u0026amp;f=false\\\"\\u003E\\u003Cstrong\\u003EToo Fast A Life\\u003C/strong\\u003E by Martin Shepherd\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.motorsportmagazine.com/archive/article/february-1998/65/young-bloods\\\"\\u003EMotorsport Magazine (This plus many of their contemporary race reports)\\u003C/a\\u003E -- \\u003Ca href=\\\"http://forix.autosport.com/8w/castellotti.html\\\"\\u003E8W @ Forix\\u003C/a\\u003E -- \\u003Ca href=\\\"http://www.motorsportmemorial.org/focus.php?db=ct\\u0026amp;n=63\\\"\\u003EMotorsport Memorial\\u003C/a\\u003E -- \\u003Ca href=\\\"http://archive-focgb.co.uk/happenings/2001/january/castellotti.html\\\"\\u003EFerrari Owner\\u0026#39;s Club\\u003C/a\\u003E -- \\u003Ca href=\\\"http://www.scuderia-legends.it/eugenio.htm\\\"\\u003EScuderia Ferrari Legends\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.pressreader.com/uk/f1-racing-uk/20180501/281655370651027\\\"\\u003EF1 Racing (via PressReader)\\u003C/a\\u003E -- \\u003Ca href=\\\"https://www.velocetoday.com/eugenio-castellotti-by-graham-gauld/\\\"\\u003EVeloce Today\\u003C/a\\u003E -- \\u003Ca href=\\\"https://www.racingsportscars.com/driver/results/Eugenio-Castellotti-I.html\\\"\\u003ERacing Sportscars\\u003C/a\\u003E -- \\u003Ca href=\\\"https://www.statsf1.com/en/eugenio-castellotti.aspx\\\"\\u003EStatsF1\\u003C/a\\u003E -- \\u003Ca href=\\\"https://revsinstitute.org/the-collection/1955-lancia-d50/\\\"\\u003ERevs Institute\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?auto=webp\\u0026s=49e05353005d1b94e69a503a85c8a023e6303b84\", \"width\": 690, \"height\": 678}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=199f563207acf9ddadb5280494f3037749885229\", \"width\": 108, \"height\": 106}, {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=388d0360b9d007780fefa48f131e3de8f90625b3\", \"width\": 216, \"height\": 212}, {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5138e05b08a0b9317c9c7fffb1201a571deaa029\", \"width\": 320, \"height\": 314}, {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=655e6ce878d37b26d6ae41f9e926b75cb8953af0\", \"width\": 640, \"height\": 628}], \"variants\": {}, \"id\": \"z-B0Vwn1GWLa5hHNK1-IIAjbQL_clQ3v3Ld6xsYOkL8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqi80q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TheStateOfIt\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqi80q/testellotti/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqi80q/testellotti/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558279854.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello everyone! Hopefully this is the right place to ask. I've dabbled in avatar making before, I've got a modicum of experience with working in Blender, converting models and then using them, but the biggest issue that I come across when I go to produce another avatar, is just finding parts. I was wondering if anyone had an idea where one could find clothing that is very similar to this?\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/a4tjy6oto2z21.png\\n\\nI'm a quiet guy and I like to wander around various worlds, to explore them. It's one of the things I find most fascinating about VRChat. I wanted to make an avatar to reflect that, but I'm getting to the point, where I might have to ask for a commission and money is not necessarily something I have ease of access to.\", \"author_fullname\": \"t2_5359pua\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Help] Trying to Find Some Model Parts, or Something Similar\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"media_metadata\": {\"a4tjy6oto2z21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 616, \"x\": 313, \"u\": \"https://i.redd.it/a4tjy6oto2z21.png\"}, \"m\": \"image/png\", \"id\": \"a4tjy6oto2z21\"}}, \"name\": \"t3_bqbir8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/TYDybMYKUihHAT5Qhg6-uM4OFWE_sz9TR8FIyBc8-D0.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558258876.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone! Hopefully this is the right place to ask. I\\u0026#39;ve dabbled in avatar making before, I\\u0026#39;ve got a modicum of experience with working in Blender, converting models and then using them, but the biggest issue that I come across when I go to produce another avatar, is just finding parts. I was wondering if anyone had an idea where one could find clothing that is very similar to this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/a4tjy6oto2z21.png\\\"\\u003Ehttps://i.redd.it/a4tjy6oto2z21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a quiet guy and I like to wander around various worlds, to explore them. It\\u0026#39;s one of the things I find most fascinating about VRChat. I wanted to make an avatar to reflect that, but I\\u0026#39;m getting to the point, where I might have to ask for a commission and money is not necessarily something I have ease of access to.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqbir8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Waffles201\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqbir8/help_trying_to_find_some_model_parts_or_something/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqbir8/help_trying_to_find_some_model_parts_or_something/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558230076.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_yx7zk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bqajgx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/KAEJI8CROhTd4dEecJUSL4Sccsn1gckIhloYaCKqA5w.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558252580.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?auto=webp\\u0026s=98250712b387129fe2909c112cebbd5ef07bd2f8\", \"width\": 1012, \"height\": 12706}, \"resolutions\": [{\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b441ad75b21dd7b318f000cd51059c7ac61748bc\", \"width\": 108, \"height\": 216}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=7ba834ef921e153c8ae41067b4dde6649ba0ad97\", \"width\": 216, \"height\": 432}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b891c40743e978c65f3ece392865ac1182735a00\", \"width\": 320, \"height\": 640}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=68c0725e883e5fbbdcaed1d9043174d38c4479f9\", \"width\": 640, \"height\": 1280}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=110343f6ab10679ed4f991391e5db61c9fa0833d\", \"width\": 960, \"height\": 1920}], \"variants\": {}, \"id\": \"nXm5UpK4-609PglxuqFbC0mo-uwmk_YJ7IUSV04c04g\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqajgx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cvardy1998\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqajgx/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/cgc1m25a52z21.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558223780.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Button Input| Command|\\n-|-|\\nPrimary Fire- Enemy| Fire and Fly at, then explode near, enemy|\\nPrimary Fire- Ground| Station Drone there|\\nSecondary Fire| Swap consciousness to selected Drone|\\n\\nHP Remaining| Hydra Stage| Hydra Effect(Damage)| Hydra Effect(Healing)| \\n-|-|-|-|\\n250+| Stage 1| 100%| 100%|\\n249-200| Stage 2| 110%| 105%|\\n199-150| Stage 3| 120% | 110%|\\n149-100| Stage 4| 130% | 115%|\\n99-50| Stage 5| 140%| 120%|\\n49-1| Stage 6| 150%| 125%|\\n\\n(Combat Mode): \\n\\nHydra Stage| Damage Per Second (DPS)\\n-|-|\\nStage 1| 50|\\nStage 2| 58|\\nStage 3| 65|\", \"author_fullname\": \"t2_1v6f2bm3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Table test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bq56as\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558194765.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558222045.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EButton Input\\u003C/th\\u003E\\n\\u003Cth\\u003ECommand\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPrimary Fire- Enemy\\u003C/td\\u003E\\n\\u003Ctd\\u003EFire and Fly at, then explode near, enemy\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPrimary Fire- Ground\\u003C/td\\u003E\\n\\u003Ctd\\u003EStation Drone there\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESecondary Fire\\u003C/td\\u003E\\n\\u003Ctd\\u003ESwap consciousness to selected Drone\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EHP Remaining\\u003C/th\\u003E\\n\\u003Cth\\u003EHydra Stage\\u003C/th\\u003E\\n\\u003Cth\\u003EHydra Effect(Damage)\\u003C/th\\u003E\\n\\u003Cth\\u003EHydra Effect(Healing)\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E250+\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 1\\u003C/td\\u003E\\n\\u003Ctd\\u003E100%\\u003C/td\\u003E\\n\\u003Ctd\\u003E100%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E249-200\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 2\\u003C/td\\u003E\\n\\u003Ctd\\u003E110%\\u003C/td\\u003E\\n\\u003Ctd\\u003E105%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E199-150\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 3\\u003C/td\\u003E\\n\\u003Ctd\\u003E120%\\u003C/td\\u003E\\n\\u003Ctd\\u003E110%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E149-100\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 4\\u003C/td\\u003E\\n\\u003Ctd\\u003E130%\\u003C/td\\u003E\\n\\u003Ctd\\u003E115%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E99-50\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 5\\u003C/td\\u003E\\n\\u003Ctd\\u003E140%\\u003C/td\\u003E\\n\\u003Ctd\\u003E120%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E49-1\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 6\\u003C/td\\u003E\\n\\u003Ctd\\u003E150%\\u003C/td\\u003E\\n\\u003Ctd\\u003E125%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E(Combat Mode): \\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EHydra Stage\\u003C/th\\u003E\\n\\u003Cth\\u003EDamage Per Second (DPS)\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStage 1\\u003C/td\\u003E\\n\\u003Ctd\\u003E50\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStage 2\\u003C/td\\u003E\\n\\u003Ctd\\u003E58\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStage 3\\u003C/td\\u003E\\n\\u003Ctd\\u003E65\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq56as\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"W-eye\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bq56as/table_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bq56as/table_test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558193245.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#Bloo\\n\\n####Blee\\n\\n\\u2014-\\n\\n\\nHello\", \"author_fullname\": \"t2_1v6f2bm3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bq4c8b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558217124.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EBloo\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EBlee\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u2014-\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq4c8b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"W-eye\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bq4c8b/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bq4c8b/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558188324.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Metroidvanias,\\n\\nThere are a few important sub updates that I would like to share. Pls read.\\n\\n---\\n\\n1 - **Pencil2Paper is stepping down as moderator**\\n\\nAfter having been this sub's primary moderator for 2 years, P2P has decided that it is time for him to step down, in order to focus on career-related endeavours. He will remain an honorary moderator on our Discord server for as long as he sees fit. This is a great opportunity for me to thank P2P for his efforts in growing the sub, for his friendship, and for the memes. We wouldn't be where we are today without you. ily no homo\\n\\nLuckily, the trusty /u/AAM2RF, a fine addition to the team, will continue to co-moderate the sub.\\n\\n---\\n\\n2 - **Stricter self-promotion policy**\\n\\nWe, as a moderation team, have always felt strongly about self-promotion in this community. In particular, YouTubers posting links to their Let's Plays and similar types of videos are removed immediately. Other forms of content blur the lines to an extent, but we always use the notion of a post having to benefit the reader more so than the poster. As an example of shameless self-promotion, at some point we saw a surge of posts about shirt designs with a user \\\"coincidentally\\\" having a link to the online shop in the comments. Another trend we're seeing are minor development updates that, while popular, ultimately count as self-promotion. The moderation team went back and forth on whether or not we thought these posts were okay, but the bottom line is that **r/metroidvania is not an advertisement space**, and we are going to uphold that ideal effective immediately. This means that:\\n\\n**Minor development updates are no longer permitted on this sub**. Appropriate types of posts pertaining to your own games include: 1) Official Announcements / Teasers and Trailers, and 2) Significant Updates, such as a new demo being available, or a launch post. If in doubt, contact the moderators.\\n\\nEverything already posted will be allowed to remain on the sub, but future posts violating this rule will be removed without warning.\\n\\nIf you are a developer and want to share minor development updates, we have a dedicated channel for that in our Discord server.\\n\\n---\\n\\n3 - **Sneaky Spam Filter**\\n\\nIt has recently come to light that a significant number of posts have been caught in reddit's spam filter. This is unfortunate, and has to do with how reddit tries to handle automatic filtering - by attaching \\\"smart\\\", machine-learned rules to the filter. For a relatively small sub like ours, the default spam filter setting is way too ambitious. We changed some settings which should alleviate the issue. We apologize for this inconvenience, and **we encourage you to re-submit any posts that were caught in the spam filter**.\\n\\n---\\n\\nThank you for reading, stay awesome.\", \"author_fullname\": \"t2_enb87\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"thingamajig\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bq1zjs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558286956.0, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558200815.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMetroidvanias,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere are a few important sub updates that I would like to share. Pls read.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E1 - \\u003Cstrong\\u003EPencil2Paper is stepping down as moderator\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter having been this sub\\u0026#39;s primary moderator for 2 years, P2P has decided that it is time for him to step down, in order to focus on career-related endeavours. He will remain an honorary moderator on our Discord server for as long as he sees fit. This is a great opportunity for me to thank P2P for his efforts in growing the sub, for his friendship, and for the memes. We wouldn\\u0026#39;t be where we are today without you. ily no homo\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuckily, the trusty \\u003Ca href=\\\"/u/AAM2RF\\\"\\u003E/u/AAM2RF\\u003C/a\\u003E, a fine addition to the team, will continue to co-moderate the sub.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E2 - \\u003Cstrong\\u003EStricter self-promotion policy\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe, as a moderation team, have always felt strongly about self-promotion in this community. In particular, YouTubers posting links to their Let\\u0026#39;s Plays and similar types of videos are removed immediately. Other forms of content blur the lines to an extent, but we always use the notion of a post having to benefit the reader more so than the poster. As an example of shameless self-promotion, at some point we saw a surge of posts about shirt designs with a user \\u0026quot;coincidentally\\u0026quot; having a link to the online shop in the comments. Another trend we\\u0026#39;re seeing are minor development updates that, while popular, ultimately count as self-promotion. The moderation team went back and forth on whether or not we thought these posts were okay, but the bottom line is that \\u003Cstrong\\u003E\\u003Ca href=\\\"/r/metroidvania\\\"\\u003Er/metroidvania\\u003C/a\\u003E is not an advertisement space\\u003C/strong\\u003E, and we are going to uphold that ideal effective immediately. This means that:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMinor development updates are no longer permitted on this sub\\u003C/strong\\u003E. Appropriate types of posts pertaining to your own games include: 1) Official Announcements / Teasers and Trailers, and 2) Significant Updates, such as a new demo being available, or a launch post. If in doubt, contact the moderators.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEverything already posted will be allowed to remain on the sub, but future posts violating this rule will be removed without warning.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you are a developer and want to share minor development updates, we have a dedicated channel for that in our Discord server.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E3 - \\u003Cstrong\\u003ESneaky Spam Filter\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt has recently come to light that a significant number of posts have been caught in reddit\\u0026#39;s spam filter. This is unfortunate, and has to do with how reddit tries to handle automatic filtering - by attaching \\u0026quot;smart\\u0026quot;, machine-learned rules to the filter. For a relatively small sub like ours, the default spam filter setting is way too ambitious. We changed some settings which should alleviate the issue. We apologize for this inconvenience, and \\u003Cstrong\\u003Ewe encourage you to re-submit any posts that were caught in the spam filter\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EThank you for reading, stay awesome.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Alpha Tester\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq1zjs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Fazermint\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/PostPreview/comments/bq1zjs/thingamajig/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bq1zjs/thingamajig/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558172015.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I am starting an open source R package for actuaries if anybody is interested in trying to learn R. I have version 0.0.1 on CRAN and github.\\n\\nHere is a vignette describing how to use it.\\n\\n[http://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies\\\\_intro.html](http://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies_intro.html)\\n\\nThe package is on CRAN, you can download the package using:\\n\\n\\tinstall.packages(\\\"expstudies\\\", type = \\\"source\\\")\\n\\n\\tlibrary(expstudies)\\n\\n\\tvignette(\\\"expstudies\\\\_intro\\\")\\n\\nThe code is on github: [https://github.com/ActuarialAnalyst/expstudies](https://github.com/ActuarialAnalyst/expstudies)\\n\\nThere is a note called Next Steps.txt on my github that is describing functionality I think would be useful if anybody wants to find stuff to build.\", \"author_fullname\": \"t2_3qls0vfv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"expstudies: An R package for Life Experience Studies (ongoing project)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpzmrt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558144296.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558172875.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am starting an open source R package for actuaries if anybody is interested in trying to learn R. I have version 0.0.1 on CRAN and github.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is a vignette describing how to use it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies_intro.html\\\"\\u003Ehttp://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies_intro.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe package is on CRAN, you can download the package using:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Einstall.packages(\\u0026quot;expstudies\\u0026quot;, type = \\u0026quot;source\\u0026quot;)\\n\\nlibrary(expstudies)\\n\\nvignette(\\u0026quot;expstudies\\\\_intro\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe code is on github: \\u003Ca href=\\\"https://github.com/ActuarialAnalyst/expstudies\\\"\\u003Ehttps://github.com/ActuarialAnalyst/expstudies\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is a note called Next Steps.txt on my github that is describing functionality I think would be useful if anybody wants to find stuff to build.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpzmrt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ActuarialAnalyst\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpzmrt/expstudies_an_r_package_for_life_experience/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpzmrt/expstudies_an_r_package_for_life_experience/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558144075.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3seiaklv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Podstew - Episode 1 - True Crime Mutton by sirpumpalot\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bptihg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 500, \"scrolling\": false, \"height\": 500}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"soundcloud.com\", \"oembed\": {\"provider_url\": \"http://soundcloud.com\", \"description\": \"Podstew curates the the best clips from the best episodes from the best podcasts creators in one place. Episode 1 is some of the clips from some of the best True Crime podcasts including My Favorite Murder, True Crime Garage, Sword \\u0026 Scale, Criminal and Serial.\", \"title\": \"Podstew - Episode 1 - True Crime Mutton by sirpumpalot\", \"type\": \"rich\", \"author_name\": \"sirpumpalot\", \"height\": 500, \"width\": 500, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 500, \"version\": \"1.0\", \"provider_name\": \"SoundCloud\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 500, \"author_url\": \"https://soundcloud.com/louis-lapat\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 500, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bptihg\", \"height\": 500}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/W5r7wav0m4kbzcFKjClk33izFMqQKDmYlK2yntvvJhs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558139769.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"soundcloud.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?auto=webp\\u0026s=ec06b343b294a64f58001c4c51f064403f858151\", \"width\": 500, \"height\": 500}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=abcb666730f7125ebcff761d2ae934b64bb2207b\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=125f4a4501a4ddd76e1af4c7f77df9bb3b9f1670\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2ad8caa62cbd486282cffc09b33654eb2c9cf08f\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"FnUOCtppeFRE35cTgB5gTlp5Ta11SzQ2wR8YQypipx4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bptihg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"throwaway--0039\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bptihg/podstew_episode_1_true_crime_mutton_by_sirpumpalot/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://soundcloud.com/louis-lapat/podstew-episode-1-true-crime-mutton\", \"subreddit_subscribers\": 703, \"created_utc\": 1558110969.0, \"media\": {\"type\": \"soundcloud.com\", \"oembed\": {\"provider_url\": \"http://soundcloud.com\", \"description\": \"Podstew curates the the best clips from the best episodes from the best podcasts creators in one place. Episode 1 is some of the clips from some of the best True Crime podcasts including My Favorite Murder, True Crime Garage, Sword \\u0026 Scale, Criminal and Serial.\", \"title\": \"Podstew - Episode 1 - True Crime Mutton by sirpumpalot\", \"type\": \"rich\", \"author_name\": \"sirpumpalot\", \"height\": 500, \"width\": 500, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 500, \"version\": \"1.0\", \"provider_name\": \"SoundCloud\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 500, \"author_url\": \"https://soundcloud.com/louis-lapat\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**SCP-4107:** [Dead](https://www.scp-wiki.net/scp-4107)\\n \\n**Object Class:** Euclid\\n \\n**Author:** PeppersGhost\\n \\n***\\n \\nWhat's up, it's me, dyqz. I decided to tackle 4107 after Peppers enlightened us about it on the SCPD discord, and after Brewster gave up on it.\\n \\nLet me just preface this by saying 4107 is up there with 4012, 3999 and [everything](http://www.scp-wiki.net/scp-3188) [Kalinin](https://www.scp-wiki.net/kalinins-proposal) [has](https://www.scp-wiki.net/scp-3084) [written](http://www.scp-wiki.net/scp-2003) in terms of sheer fuckery. If you haven't read 4107 already, I thoroughly encourage you to.\\n \\nAnyways, on with the declass.\\n \\n***\\n \\n**Brief Summary**\\n \\n4107 is a collection of the same woman's corpse. Around 311 of the corpses have been found, with the same DNA, wounds, basically the same corpse. Over and over again. No one knows what she is, no one knows why her corpse keeps reappearing. No one knows anything, apart from her injuries, which are... fucking wack. Here they are.\\n \\n* A big long gash down her forearm. Scratches found on the bones, made by a human finger. Presumably her own fingers.\\n* All teeth have been cut off\\n* Her milk teeth found in her stomach\\n* Fingernails and toenails ripped off, the skin at the base of the fingers peeled\\n* The head's hair has been threaded into the upper back\\n \\n...Nice.\\n \\nThe Foundation ruled the cause of death as blood loss. There's also these confusing lines.\\n \\n\\u003EAll injuries are believed to have been inflicted antemortem. In all cases, evidence has indicated that the victim changed clothes between the time most of the injuries were inflicted and the moment of death. Other traces of the victim's actions before death, such as footprints and unfinished meals, are also occasionally found in the vicinity.\\n \\nFor your information, antemortem means 'before death'. So she had to have lived through all the head stitching and the teeth ripping and the toenail pulling. Yikes.\\n \\nThat's not all, because of course it's not. 4107 can't be mentioned with *a specific action*. No matter what you try to do, what sneaky tricks you try to pull, you can't mention *this action* while talking about 4107.\\n \\n***\\n \\n**Meta**\\n \\nNow, while you read my summary, I hope you went through the same sense of confusion everyone else did while they were reading the article. Just the strangest, weirdest injuries happening to this girl over and over again, with no clear link between any of them. And what is *this goddamned action?*\\n \\nThis might be disappointing to you, but I have no answers. I don't know what happened to the girl. I don't know what the action is. Maybe you can read up on the Discussion page, some interesting theories are present there. I do know something of use, however. And to learn of that, we'll need to learn more about the article itself.\\n \\nThe article was written as part of a draft swap between two authors, Peppers and Othello. [Here's the original article by Othello, for anybody curious.](http://topia.wikidot.com/the-draft-othello-be-offering-for-draft-swap) The main gist of the article is that it's a woman who committed suicide, with the anomalous effect that anyone who sees her corpse believe she was murdered, and try to go on a crazy witch hunt to learn more about her 'murder'.\\n \\nSo, what is 4107? On a meta level, it is a replication of that effect in real life. The article has all of these weird symptoms that happened to this girl that are seemingly unconnected, and the reason for that is to get you thinking. What happened? What really happened to this girl, why are there so many injuries? But that's not the REAL point of the article. The real point of the article, [in Peppers' own words,](https://imgur.com/a/6FZgiye) it is the simulation of an infohazard. If you don't remember what an infohazard is, here's a short explanation.\\n \\n\\u003EAn *infohazard*, as coined by Sorts, is something that is triggered if you simply know about it. It is similar to but distinct from a *memetic* agent because a *memetic* agent is pure information whereas an *infohazard* is generally an object. [SCP-426](http://www.scp-wiki.net/scp-426) (I Am A Toaster) is a perfect example of this.\\n \\nRecall Othello's article, about how people kept trying to explain her suicide as murder. This article makes you those people. You know about this girl, with these weird wounds, and you're inclined to try to explain everything away. You're creating backstories for it that fit 4107's effects best. That, in a nutshell, is what 4107 is. Trying to force you to explain the unexplainable.\\n \\nThat answer might be unsatisfying. Honestly, it is. It's REALLY unsatisfying. I wanna know what happened to this girl too. But the fact of the matter is that the unsolvability of the article is key to making it effective. Would it really be effective if, say, there was a nice explanation to everything? No. Because then you wouldn't keep thinking about it, you wouldn't keep trying to theorize about it, and you'd certainly forget about it sooner or later. It'd just be another mundane, somewhat weird article.\\n \\nIn Peppers' own words,\\n \\n\\u003ESo while there is an answer for the textual level mystery, the actual purpose of the article is the meta level. The whole point of the textual level is that it can be filled in with all sorts of different interpretations, and the fact that one *may be* the *one true* interpretation is what creates the meta compulsion.\\n \\nAlso,\\n \\n\\u003EThere is more to the mystery, but the answer only exists to be something that's sought.\\n \\n***\\n \\n**Theories**\\n \\nI originally had a separate part of this article that was meant to explain the textual mystery, because as Peppers said:\\n \\n\\u003EFwiw in regards to the actual original mystery in the article, I'll go ahead and say that at least one person's theory that I've heard pretty much correctly guessed about 80% of the backstory I had in mind. So it's basically solvable\\n \\nSo let's go through some theories then! What could this even be? Honestly the declass wouldn't be complete without some attempt at explaining what's going on here.\\n \\nWe'll start off by figuring out what the _aforementioned action_ is. There are two answers I (ripped off of the Discussions tab) think have some merit.\\n \\nA theory is that the _aforementioned action_ is the act of suicide. The slit wrists certainly point to that, alongside the scratches on the bone itself. Those don't seem like murder marks, rather suicide marks. You'd think a thorough, scientific article on this woman would make some passing mentions to the possibility of suicide, but that's not present in the article. ctrl+f \\\"suicide\\\" doesn't pull anything up.\\n \\nBut that can't possibly be true - there's no way that she stitched her hairs to her back herself, that's not humanly possible. Rather, let's think. Why would she purposely be censoring some thoughts, or rather, some theories about her death?\\n \\nBecause those theories aren't true. By preventing people from talking about suicide about her in any way, she's reinforcing the idea that it's NOT suicide. Her killer's out there.\\n \\nNow, to explain the injuries.\\n \\nIf you scroll down and look at the tags, there's a tag that stands out. \\\"loop\\\". \\\"loop\\\" is certainly an interesting tag, and it gives me a perfect segue into this next bit:\\n \\nHer murderer is either her past self or her future self trying to kill her, and you've heard the grandfather paradox - the one where killing your grandfather in the past leads to Temporal Fuckery - her trying to kill her past self led to Temporal Fuckery. That's why her body keeps reanimating, that's why her old teeth are in her stomach and her new teeth gone. It's all a part of the Temporal Fuckery. How'd she get the means to go to the past to kill herself?\\n \\nHow she got the past means to kill herself, I'm not sure. Not everything really needs to have an origin, and there's not much in the article about her origin anyway. That's not important. She can also censor things about _a certain action that is probably suicide_, so clearly we're dealing with someone weird here, most likely a reality bender. That's not the important parts of the article.\\n \\n_Wait,_ you think. _I thought it wasn't suicide?_ _You just said it wasn't like, two paragraphs ago._\\n \\nHey fuck you I'm not done yet. Her killer is some Temporally Fucked version of herself that's still out there on the run, and TECHNICALLY it's not suicide (this is a stretch I know) so just hear me out.\\n \\nOk I think that's all I have, that's my main theory. In summary, her past self (or future self) went back in time (or forward in time) to kill herself but then that created some Temporal Fuckery which resulted in 4107.\\n \\nI'm not claiming that this is true. I could be completely off base, but the important thing is that - the theories aren't the main issue here. That's not the REAL meat of the article, the real meat of the article is the act of theorizing. Because when you do that, you are fulfilling the article's purpose. Recall that it's a simulation of an infohazard. Theorizing about it, thinking about it, trying to fill in some gaps, that's what 4107 is about. I encourage you to think of some theories of your own, maybe even share them in the comments if you'd like. We can compare and think of the correct answer - it's out there, Peppers said it.\\n \\n***\\n \\nThis is an interesting article in many ways. It's well written, with good execution and a really fucking interesting mystery. It's a brilliant new idea that I haven't seen before on the site, even with all of the meta articles out there. So go read it and upvote. It recently cracked +100, maybe you can help it crack +200.\\n \\nThat's all I have for you today. Thanks for reading.\", \"author_fullname\": \"t2_2qewmtrw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"scp 4107 - dead\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpssmd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558200511.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558136263.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ESCP-4107:\\u003C/strong\\u003E \\u003Ca href=\\\"https://www.scp-wiki.net/scp-4107\\\"\\u003EDead\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class:\\u003C/strong\\u003E Euclid\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor:\\u003C/strong\\u003E PeppersGhost\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s up, it\\u0026#39;s me, dyqz. I decided to tackle 4107 after Peppers enlightened us about it on the SCPD discord, and after Brewster gave up on it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet me just preface this by saying 4107 is up there with 4012, 3999 and \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3188\\\"\\u003Eeverything\\u003C/a\\u003E \\u003Ca href=\\\"https://www.scp-wiki.net/kalinins-proposal\\\"\\u003EKalinin\\u003C/a\\u003E \\u003Ca href=\\\"https://www.scp-wiki.net/scp-3084\\\"\\u003Ehas\\u003C/a\\u003E \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2003\\\"\\u003Ewritten\\u003C/a\\u003E in terms of sheer fuckery. If you haven\\u0026#39;t read 4107 already, I thoroughly encourage you to.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyways, on with the declass.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBrief Summary\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E4107 is a collection of the same woman\\u0026#39;s corpse. Around 311 of the corpses have been found, with the same DNA, wounds, basically the same corpse. Over and over again. No one knows what she is, no one knows why her corpse keeps reappearing. No one knows anything, apart from her injuries, which are... fucking wack. Here they are.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EA big long gash down her forearm. Scratches found on the bones, made by a human finger. Presumably her own fingers.\\u003C/li\\u003E\\n\\u003Cli\\u003EAll teeth have been cut off\\u003C/li\\u003E\\n\\u003Cli\\u003EHer milk teeth found in her stomach\\u003C/li\\u003E\\n\\u003Cli\\u003EFingernails and toenails ripped off, the skin at the base of the fingers peeled\\u003C/li\\u003E\\n\\u003Cli\\u003EThe head\\u0026#39;s hair has been threaded into the upper back\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E...Nice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Foundation ruled the cause of death as blood loss. There\\u0026#39;s also these confusing lines.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAll injuries are believed to have been inflicted antemortem. In all cases, evidence has indicated that the victim changed clothes between the time most of the injuries were inflicted and the moment of death. Other traces of the victim\\u0026#39;s actions before death, such as footprints and unfinished meals, are also occasionally found in the vicinity.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFor your information, antemortem means \\u0026#39;before death\\u0026#39;. So she had to have lived through all the head stitching and the teeth ripping and the toenail pulling. Yikes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s not all, because of course it\\u0026#39;s not. 4107 can\\u0026#39;t be mentioned with \\u003Cem\\u003Ea specific action\\u003C/em\\u003E. No matter what you try to do, what sneaky tricks you try to pull, you can\\u0026#39;t mention \\u003Cem\\u003Ethis action\\u003C/em\\u003E while talking about 4107.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMeta\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, while you read my summary, I hope you went through the same sense of confusion everyone else did while they were reading the article. Just the strangest, weirdest injuries happening to this girl over and over again, with no clear link between any of them. And what is \\u003Cem\\u003Ethis goddamned action?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis might be disappointing to you, but I have no answers. I don\\u0026#39;t know what happened to the girl. I don\\u0026#39;t know what the action is. Maybe you can read up on the Discussion page, some interesting theories are present there. I do know something of use, however. And to learn of that, we\\u0026#39;ll need to learn more about the article itself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe article was written as part of a draft swap between two authors, Peppers and Othello. \\u003Ca href=\\\"http://topia.wikidot.com/the-draft-othello-be-offering-for-draft-swap\\\"\\u003EHere\\u0026#39;s the original article by Othello, for anybody curious.\\u003C/a\\u003E The main gist of the article is that it\\u0026#39;s a woman who committed suicide, with the anomalous effect that anyone who sees her corpse believe she was murdered, and try to go on a crazy witch hunt to learn more about her \\u0026#39;murder\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, what is 4107? On a meta level, it is a replication of that effect in real life. The article has all of these weird symptoms that happened to this girl that are seemingly unconnected, and the reason for that is to get you thinking. What happened? What really happened to this girl, why are there so many injuries? But that\\u0026#39;s not the REAL point of the article. The real point of the article, \\u003Ca href=\\\"https://imgur.com/a/6FZgiye\\\"\\u003Ein Peppers\\u0026#39; own words,\\u003C/a\\u003E it is the simulation of an infohazard. If you don\\u0026#39;t remember what an infohazard is, here\\u0026#39;s a short explanation.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAn \\u003Cem\\u003Einfohazard\\u003C/em\\u003E, as coined by Sorts, is something that is triggered if you simply know about it. It is similar to but distinct from a \\u003Cem\\u003Ememetic\\u003C/em\\u003E agent because a \\u003Cem\\u003Ememetic\\u003C/em\\u003E agent is pure information whereas an \\u003Cem\\u003Einfohazard\\u003C/em\\u003E is generally an object. \\u003Ca href=\\\"http://www.scp-wiki.net/scp-426\\\"\\u003ESCP-426\\u003C/a\\u003E (I Am A Toaster) is a perfect example of this.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ERecall Othello\\u0026#39;s article, about how people kept trying to explain her suicide as murder. This article makes you those people. You know about this girl, with these weird wounds, and you\\u0026#39;re inclined to try to explain everything away. You\\u0026#39;re creating backstories for it that fit 4107\\u0026#39;s effects best. That, in a nutshell, is what 4107 is. Trying to force you to explain the unexplainable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat answer might be unsatisfying. Honestly, it is. It\\u0026#39;s REALLY unsatisfying. I wanna know what happened to this girl too. But the fact of the matter is that the unsolvability of the article is key to making it effective. Would it really be effective if, say, there was a nice explanation to everything? No. Because then you wouldn\\u0026#39;t keep thinking about it, you wouldn\\u0026#39;t keep trying to theorize about it, and you\\u0026#39;d certainly forget about it sooner or later. It\\u0026#39;d just be another mundane, somewhat weird article.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Peppers\\u0026#39; own words,\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESo while there is an answer for the textual level mystery, the actual purpose of the article is the meta level. The whole point of the textual level is that it can be filled in with all sorts of different interpretations, and the fact that one \\u003Cem\\u003Emay be\\u003C/em\\u003E the \\u003Cem\\u003Eone true\\u003C/em\\u003E interpretation is what creates the meta compulsion.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAlso,\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThere is more to the mystery, but the answer only exists to be something that\\u0026#39;s sought.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETheories\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI originally had a separate part of this article that was meant to explain the textual mystery, because as Peppers said:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EFwiw in regards to the actual original mystery in the article, I\\u0026#39;ll go ahead and say that at least one person\\u0026#39;s theory that I\\u0026#39;ve heard pretty much correctly guessed about 80% of the backstory I had in mind. So it\\u0026#39;s basically solvable\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESo let\\u0026#39;s go through some theories then! What could this even be? Honestly the declass wouldn\\u0026#39;t be complete without some attempt at explaining what\\u0026#39;s going on here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe\\u0026#39;ll start off by figuring out what the \\u003Cem\\u003Eaforementioned action\\u003C/em\\u003E is. There are two answers I (ripped off of the Discussions tab) think have some merit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA theory is that the \\u003Cem\\u003Eaforementioned action\\u003C/em\\u003E is the act of suicide. The slit wrists certainly point to that, alongside the scratches on the bone itself. Those don\\u0026#39;t seem like murder marks, rather suicide marks. You\\u0026#39;d think a thorough, scientific article on this woman would make some passing mentions to the possibility of suicide, but that\\u0026#39;s not present in the article. ctrl+f \\u0026quot;suicide\\u0026quot; doesn\\u0026#39;t pull anything up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut that can\\u0026#39;t possibly be true - there\\u0026#39;s no way that she stitched her hairs to her back herself, that\\u0026#39;s not humanly possible. Rather, let\\u0026#39;s think. Why would she purposely be censoring some thoughts, or rather, some theories about her death?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause those theories aren\\u0026#39;t true. By preventing people from talking about suicide about her in any way, she\\u0026#39;s reinforcing the idea that it\\u0026#39;s NOT suicide. Her killer\\u0026#39;s out there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, to explain the injuries.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you scroll down and look at the tags, there\\u0026#39;s a tag that stands out. \\u0026quot;loop\\u0026quot;. \\u0026quot;loop\\u0026quot; is certainly an interesting tag, and it gives me a perfect segue into this next bit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHer murderer is either her past self or her future self trying to kill her, and you\\u0026#39;ve heard the grandfather paradox - the one where killing your grandfather in the past leads to Temporal Fuckery - her trying to kill her past self led to Temporal Fuckery. That\\u0026#39;s why her body keeps reanimating, that\\u0026#39;s why her old teeth are in her stomach and her new teeth gone. It\\u0026#39;s all a part of the Temporal Fuckery. How\\u0026#39;d she get the means to go to the past to kill herself?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow she got the past means to kill herself, I\\u0026#39;m not sure. Not everything really needs to have an origin, and there\\u0026#39;s not much in the article about her origin anyway. That\\u0026#39;s not important. She can also censor things about \\u003Cem\\u003Ea certain action that is probably suicide\\u003C/em\\u003E, so clearly we\\u0026#39;re dealing with someone weird here, most likely a reality bender. That\\u0026#39;s not the important parts of the article.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EWait,\\u003C/em\\u003E you think. \\u003Cem\\u003EI thought it wasn\\u0026#39;t suicide?\\u003C/em\\u003E \\u003Cem\\u003EYou just said it wasn\\u0026#39;t like, two paragraphs ago.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHey fuck you I\\u0026#39;m not done yet. Her killer is some Temporally Fucked version of herself that\\u0026#39;s still out there on the run, and TECHNICALLY it\\u0026#39;s not suicide (this is a stretch I know) so just hear me out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOk I think that\\u0026#39;s all I have, that\\u0026#39;s my main theory. In summary, her past self (or future self) went back in time (or forward in time) to kill herself but then that created some Temporal Fuckery which resulted in 4107.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not claiming that this is true. I could be completely off base, but the important thing is that - the theories aren\\u0026#39;t the main issue here. That\\u0026#39;s not the REAL meat of the article, the real meat of the article is the act of theorizing. Because when you do that, you are fulfilling the article\\u0026#39;s purpose. Recall that it\\u0026#39;s a simulation of an infohazard. Theorizing about it, thinking about it, trying to fill in some gaps, that\\u0026#39;s what 4107 is about. I encourage you to think of some theories of your own, maybe even share them in the comments if you\\u0026#39;d like. We can compare and think of the correct answer - it\\u0026#39;s out there, Peppers said it.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EThis is an interesting article in many ways. It\\u0026#39;s well written, with good execution and a really fucking interesting mystery. It\\u0026#39;s a brilliant new idea that I haven\\u0026#39;t seen before on the site, even with all of the meta articles out there. So go read it and upvote. It recently cracked +100, maybe you can help it crack +200.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s all I have for you today. Thanks for reading.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?auto=webp\\u0026s=1553a87c5e9cc9a77446c6201895fe3e249eb1a0\", \"width\": 835, \"height\": 340}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0d7497f34f16a9edfdc923c233c6b5e3110e1d46\", \"width\": 108, \"height\": 43}, {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=2a2ce22bd1794280aa8ac8690f1a65e0cc54ce8a\", \"width\": 216, \"height\": 87}, {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5b2a5cbcc715d7dd08e742f6350327555b98d40a\", \"width\": 320, \"height\": 130}, {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a38702857c8dc996beed473e395c484b90c0c10d\", \"width\": 640, \"height\": 260}], \"variants\": {}, \"id\": \"GNqlwzMFaNw_8CcLzPq1qR2pANG92KVPHLXd7RKU3PI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpssmd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dyqz\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpssmd/scp_4107_dead/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpssmd/scp_4107_dead/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558107463.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_14ln8v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bpqdnn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UNqhsOUJmWQ2t4sHX0UOTnzheok0G9SVqpRL6ffKMuU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558123374.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgflip.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?auto=webp\\u0026s=fddbe8a9b179ed977621edcd7999d89a6c1fdcec\", \"width\": 360, \"height\": 202}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2ff40466a56ae465ba222ff2c92d17a9ea5f4bca\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d7b9d6edfe19f3d744b036f76950800e2e9e8bb3\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=548b4b887e3fefb2504b5554475d4b30f7d44a63\", \"width\": 320, \"height\": 179}], \"variants\": {}, \"id\": \"NSuoweBBRwM2msxx3gGpw9BRiUbbSHHOamy4surpy3U\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpqdnn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kilroy83\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpqdnn/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgflip.com/gif/2wm2zx\", \"subreddit_subscribers\": 703, \"created_utc\": 1558094574.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://www.youtube.com/watch?time\\\\_continue=123\\u0026v=6xItQ-cWgK0](https://www.youtube.com/watch?time_continue=123\\u0026v=6xItQ-cWgK0)\", \"author_fullname\": \"t2_1gk7l8fh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inauguration of the Montreal Paddock\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpk55p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558080308.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?time_continue=123\\u0026amp;v=6xItQ-cWgK0\\\"\\u003Ehttps://www.youtube.com/watch?time_continue=123\\u0026amp;v=6xItQ-cWgK0\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?auto=webp\\u0026s=053c40f1229c86afac6ab313fb6ddd103c166f15\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fe7f90a1f704ce581f914fa65344ff85ddff6298\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d2a2b15e83f83b69d39ef9cede0f14e8ab336eaf\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=54828e7e42bdab5059c348f799314cec96477c21\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"5YD429GR93M7FILAKNtTqyWyiOeA_fEXsM79eqTgh0w\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpk55p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"canisra\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpk55p/inauguration_of_the_montreal_paddock/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpk55p/inauguration_of_the_montreal_paddock/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558051508.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*Part 1 is [HERE](https://www.reddit.com/r/fixingmovies/comments/ak8qt1/my_take_on_fixing_the_dark_universe/), and Part 2 is [HERE](https://www.reddit.com/r/fixingmovies/comments/bomg7i/my_take_on_fixing_the_dark_universe_part_2/)*.\\n\\n*I promise, I'll only post one more of these before I call it quits. Real talk: I wanted to include my big grand finale in this post, but it got a little too long.*\\n\\n*Thanks to everyone who's followed along so far! I appreciate all of the comments!*\\n_____________________\\n\\n***The Case*** *(2026)*\\n\\n*Setting: New York, 1948*\\n\\nJust as the events of *The Vampire* are unfolding in Moscow in 1948, *another* story transpires on the other side of the Atlantic.\\n\\nThree years after the end of World War II, as thousands of battle-scarred American veterans adjust to peacetime, we meet a New York private detective named **Hank**. Not too long ago, Hank was a crack operator in the American **OSS**, and ran numerous daring missions against the Nazi war machine. As he attempts to put his military service behind him, he now runs a small-time private investigation firm out of a cramped office in Brooklyn, where he spends his days solving problems for desperate New Yorkers too afraid to turn to the police. When not pounding the pavement in search of clues, he enjoys the occasional romantic liaison with **Mary**\\u2014a pretty young reporter from a local tabloid newspaper, who occasionally hits him up for story leads.\\n\\nTo most casual observers, Hank is your typical square-jawed, street-smart private eye\\u2014but when people get to know him, they gradually notice a few odd details about him. He refuses to speak about his experiences in the war, but occasionally makes vague references to \\\"**The London Assignment**\\\", a dangerous OSS mission that went wrong. He regularly meets with an old contact from his OSS days, who supplies him with **unlabeled bottles of pills**, which he takes on a regular basis. Most strangely, there isn't a single mirror in his apartment, and he habitually avoids reflective surfaces, as if he's afraid of his own reflection.\\n\\nAs our story begins, the tabloid rags of New York are abuzz with stories about a new public menace:\\n\\\"**The Gemini Killer**\\\", a malevolent serial murderer who maims his victims by gruesomely ***removing half of their faces***. While the NYPD launches a manhunt for the elusive killer, Hank takes to the streets to launch his own investigation, convinced that he can find him before the police do. While he's ordinarily content to stay out of law enforcement's way, this case is distinctly personal for Hank, since the Gemini Killer's latest victim was his partner, a man named **Gabe**. Though he does his best to maintain a stoic facade, Hank can't help but feel a twinge of survivor's guilt, as he knows that *he* easily could have fallen prey to the killer instead.\\n\\nIn the first scene, Hank turns up at the scene of the Gemini Killer's latest murder, where the police are scouring the scene for clues. **Detective Enfield**, the cop in charge of the NYPD's manhunt, attempts to shoo him away from the crime scene, but he sticks around long enough to pick up one crucial clue: the newest murder victim was found with a distinctive tattoo along his arm, which Hank instantly recognizes as the work of a well-known Brooklyn tattoo artist with a devoted clientele. \\n\\nArmed with that useful nugget of information, Hank heads to the tattoo shop to interview the tattoo artist about his client, and he learns that the murder victim\\u2014a man named \\\"**Poole**\\\"\\u2014had a reputation for paranoia, and he was convinced that someone near his home in **the Bowery** was stalking him. Too late, the tattoo artist realizes that Poole's suspicions were true. Determined to help Hank avenge him, he gives him as much information as he can about Poole's personal life, hoping that Hank might be able to find his killer by retracing the steps in his daily routine.\\n\\nAs Hank searches the Bowery for further clues, his search window narrows considerably when he tracks down a craftsman who makes specialty knives, and the craftsman lets it slip\\u2014after an intense round of questioning\\u2014that he sold a vast collection of **surgical blades** to a mysterious man with a frightening appearance. As his search continues, Hank finally manages to track down a secluded apartment building in a crime-ridden neighborhood that the police avoid, and he realizes that he's struck gold when the landlord admits that he has a reclusive tenant in **Apartment 86** who he's never seen in person.\\n\\nUnder cover of darkness, Hank scales the building's fire escape and stealthily sneaks through the window of Apartment 86, finding it empty. As he lights a lamp to investigate, he recoils in horror at what he sees inside:\\n\\nThe room is filled with a vast collection of plaster casts of human heads, and each one is covered with grotesque \\\"masks\\\" stitched together from ***human skin***. Each one is perfectly split down the middle and stitched together from two different human specimens\\u2014and Hank soon realizes that they're crafted from the severed faces of the Gemini Killer's victims!\\n\\nAs he creeps through the apartment, Hank is unable to find any information that might allow him to identify the Gemini Killer, but he discovers\\u2014much to his surprise\\u2014that the mirror in the apartment's bathroom has been removed from the wall. Sufficiently shaken, he slips out of the apartment before anyone can catch him snooping, and he returns to his office as quickly as he can.\\n\\nBack at his office, Hank has a chance encounter with Mary, who's looking for a few juicy quotes about the search for the Gemini Killer. He declines to tell her anything about the case, but he invites her inside for a steamy night of lovemaking. As Hank closes his office door and locks it behind him, the camera closes on the door's glass panel, and\\u2014for the first time\\u2014we see the inscription written on the door.\\n\\nClear as day, it reads **\\\"Henry Jekyll, Licensed Private Investigator\\\"**.\\n\\n***SURPRISE!***\\n\\nOur story was actually an adaptation of *The Strange Case of Dr. Jekyll and Mr. Hyde* all along. \\\"Hank\\\" is **Henry Jekyll**, his partner \\\"Gabe\\\" was **Gabriel Utterson**, and his lover \\\"Mary\\\" is **Mary Reilly**. And now that you know that, you can probably guess the identity of the sinister Gemini Killer.\\n\\nHours later, Hank suddenly finds himself in a dark alleyway with his hands covered in blood. As he realizes what's happening, he realizes\\u2014much to his shock\\u2014that Mary is lying at his feet, stone dead. In his pocket, Hank finds a razor-sharp surgical knife, still soaked with Mary's fresh flesh blood. Worse still: when he reaches down to close her eyelids, he finds that half of her face has been removed.\\n\\nFinally piecing together the many strange details about the case, Hank realizes that *he* was the Gemini Killer all along\\u2014but for some reason, he can't seem to recall any of the many murders that he committed. It's as if someone else has been living inside his mind, leaving lengthy blank spaces in his memory whenever they take over.\\n\\nShaken to the core, Hank flees to a nearby dive bar, where he locks himself in the nearest bathroom. As he attempts to collect himself, he looks into the mirror above the sink, and sees his reflection staring back with a wicked grin on its face. From the depths of the mirror, the Gemini Killer\\u2014whose calls himself \\\"**Eddie Hyde**\\\"\\u2014mockingly congratulates Hank on finally solving the case of a lifetime.\\n\\nMoments later, Enfield kicks in the front door, and a squad of armed NYPD officers storm the bar with guns drawn. It seems that the police have found Mary's corpse, and eyewitness reports have led them to the bar. Hank sees that his clothes are soaked with blood, and he realizes that Enfield will arrest him as soon as he sees him. As he begins to panic, Hyde takes the opportunity to seize control of Hank's body again\\u2014and as he exits the bathroom to face the police, he reveals his trusty blades.\\n\\nIn a gruesome battle scene, Hyde mercilessly slaughters the police one by one, and finally kills Enfield with a well-placed headshot from a stolen service revolver. Too late, Hank regains control of his body and flees into the streets, leaving the blood-soaked bar behind him.\\n\\nAs the police flood the streets of New York looking for him, Hank narrowly manages to track down his old contact in the OSS, hoping that he might have some answers. Against his better judgment, his old contact (\\\"**The Major**\\\") agrees to provide what little help he can. Though the Major is initially reluctant to help a wanted fugitive, Hank insists that he's innocent.\\n\\nThe Major confirms that the fallout from \\\"The London Assignment\\\" affected Hank in strange ways, and he has never truly recovered from the events that transpired that day. The mysterious pills, which the Major still gives Hank without complaint, were intended to suppress his \\\"condition\\\". While they once worked perfectly, they're beginning to lose their effectiveness as the murderous Eddie Hyde becomes stronger. But try as he might, Hank still can't remember what happened in London.\\n\\nThe Major agrees to give Hank the dossier containing all known files on the London Assignment, which he secretly took from OSS headquarters after the agency was disbanded after the war. Inside the file, the Major tells Hank that he'll find everything that he needs to know about the mission\\u2014including the address of the building in London where everything went wrong. Determined to finally solve the mystery of his past, Hank leaves with the file, planning to book a flight to London with the help of a bootlegger pilot who owes him a favor.\\n\\nBefore he leaves, the Major gives Hank a final word of advice:\\n\\n*\\\"Watch yourself, son. If those cops find me, I'll insist you were never here. But if they find* ***you****, you're on your own.\\\"*\\n\\nAfter stealing a car and making his way upstate, Hank manages to make it to **the bootlegger**'s secret airstrip, where his plane is primed and ready for takeoff. After some tense negotiations, he agrees to fly Hank to London\\u2014but he insists that it's a one-way trip. Before they leave, he assures Hank that a wanted fugitive *isn't* the most dangerous cargo that he's ever smuggled. As they take off, Hank requests\\u2014to the bootlegger's befuddlement\\u2014that he handcuff him to his seat's armrest until they land.\\n\\nAs the plane rises into the air and soars over the Atlantic, Hank closes his eyes and drifts off to sleep. As he does, he finally remembers what happened in London...\\n\\nAt the height of the war, the OSS assigned Hank to track down and capture the infamous Nazi scientist **Dr. Hans Niemann**, who was rumored to be the mind behind the Third Reich's deadliest military projects. For years, Hank stalked the mad doctor across Europe as the war raged on\\u2014but Niemann was always one step ahead of him, and he never found him. But he *did* stumble upon evidence that the doctor was involved with a shady organization known as \\\"**Prodigium**\\\". As the OSS investigated Prodigium for clues about Niemann's whereabouts, they eventually discovered that the group had a base of operations in the heart of London itself, and they managed to uncover a plot to smuggle a mysterious chemical formula across the English Channel. Suspecting that the group was trafficking chemical weapons, the OSS deployed Hank to London to track down the formula and steal it.\\n\\nWorking fast, Hank managed to assassinate the Prodigium operative who was entrusted with carrying the formula, and he managed to escape with the leather briefcase containing the chemical vials. But his luck ran out when he tried to drive to the airport to rendezvous with his handlers, and discovered\\u2014just moments too late\\u2014that Prodigium had planted a bomb in his car. Hank bailed out of the car as the engine exploded, and he narrowly managed to survive the blast with minor burns and a concussion\\u2014but the case was destroyed in the explosion, and Hank was doused with chemicals as the glass vials shattered.\\n\\nAs he stumbled to his feet\\u2014half-blind, disoriented, and struggling to speak\\u2014he felt the chemicals seeping through his skin, transforming him in ways that he couldn't explain. Without warning, he found himself seized by the dark urge to kill, maim, and torture, and he felt a malevolent presence clawing its way into his heart. Worst of all, he found that he *couldn't remember his own name!* But as his vision cleared, he found himself staring right at the iron sign for **Hyde Park**. In that moment, Eddie Hyde was born.\\n\\nHank wakes as the plane touches down in a remote airfield on the outskirts of London. With his gun loaded and ready, he sets out in search of the address listed in the Major's files, which is allegedly the location of Prodigium's London headquarters. After a long walk across the bombed-out face of London, he finds a stately Victorian mansion at the address, and a well-dressed butler arrives at the door and invites him inside\\u2014as if he was expecting him.\\n\\nHank walks through the door of the mansion, where he's greeted by a room full of well-dressed men and women wearing masquerade masks, who gather around a circle of candles surrounding a mirror. In a scene eerily mirroring **Victor Frankenstein**'s first encounter with Prodigium at **Ingolstadt University** over a century earlier, the assembled members of the cult begin chanting an obscene prayer to \\\"**The Dark One**\\\". As Hank contemplates his reflection in the mirror, he sees the Dark One place a hand on his shoulder, causing half of his face to rot and wither away.\\n\\nAs Hank shrinks back in fear, a pair of armed guards force him to his feet and confiscate his gun, and an **elderly man** steps forward to greet him. In his gnarled hands, he carries an ornate silver dish with a golden chalice balanced atop it. The chalice is filled to the brim with green liquid\\u2014which Hank recognizes as the mysterious chemical agent from the London Assignment.\\n\\nThe elderly man introduces himself as the new leader of Prodigium, and\\u2014at long last\\u2014he explains the full story behind the mysterious formula.\\n\\nFor years, Prodigium's scholars and alchemists have believed that it might be possible to unlock the repressed dark side of the human psyche through chemistry, allowing ordinary people to unlock the darkness within their souls. Ever since his incident in London accidentally exposed him to the formula, the dark side of Hank's personality has been fighting for complete control of his soul, manifesting as his *alter ego* Hyde. But if he were to voluntarily ingest a full dose of the formula, Prodigium believes that his soul would be entirely consumed by darkness, allowing him to serve as the Dark One's living emissary on Earth.\\n\\nThe leader of Prodigium offers Hank a choice: he can willingly drink from the golden chalice, allowing Hyde to take full control of his mind, in exchange for his life; if he refuses to drink the potion, Prodigium will kill him\\u2014but he'll die with his free will fully intact.\\n\\nTorn between two impossible choices, Hank tries to push the chalice away, but Hyde seizes control of his body just in time to stop him. Although Hank tries his best to regain control, Hyde grabs the chalice and eagerly gulps the potion down, and the assembled members of Prodigium applaud as his eyes glaze over. Moments later, Hank smiles maliciously\\u2014and it's instantly clear that he has become Hyde permanently.\\n\\nThen all hell breaks loose.\\n\\nAs the elderly leader of Prodigium congratulates Hyde and welcomes him into the fold, Hyde grabs him by the throat and *breaks his neck* with his bare hands, then pulls a hidden blade from his boot and brutally murders three Prodigium members by slashing their jugulars. The guards draw their guns and try to shoot him, but Hyde manages to steal a guard's pistol, and a massive shootout ensues as he fires back at them. Once again, Hyde tears through the helpless crowd with ease, killing everyone he sees. As dozens of Prodigium members fall to the ground bleeding out, he throws his head back and cackles maliciously.\\n\\n***\\\"I'M NOBODY'S SLAVE!\\\"*** he screams. ***\\\"NO ONE CONTROLS EDDIE HYDE\\u2014GOD OR MORTAL!\\\"***\\n\\nThe shootout rages on, and the assembled guards try to surround Hyde\\u2014but he mows down everyone that dares to take a shot at him. Finally, as reinforcements arrive from another room, the guards manage to force Hyde into the basement of the mansion. As bullets fly, Hyde forces his way into the **boiler room**, where he takes a shot at the antique brass boiler. As the boiler explodes, half of the mansion suddenly erupts in flames, and most of the surviving Prodigium members burn to death as they're consumed in the blaze. The few remaining members futilely try to make a run for it; some of them pass out from smoke inhalation, and others are crushed by falling debris as the roof begins to collapse.\\n\\nAs the fire spreads through the mansion, Hyde defiantly shoots everyone he sees. When he finally runs out of bullets, he realizes that every last member of Prodigium is dead. The Dark One's cult failed in their mission, but Eddie Hyde got exactly what he wanted: Hank Jekyll lost the battle for his soul, and Hyde won.\\n\\n...Or *did* he?\\n\\nAs an exhausted Hyde drops his empty pistol and slumps against the wall, he looks into a nearby mirror. But it's not Hank that stares back from the mirror\\u2014it's *Hyde*.\\n\\nAgainst all odds, Hank has managed to summon the strength to fight Hyde, giving him control of his body for a few precious minutes. And for those few minutes, Hank chooses to stay in the basement as the mansion collapses around him.\\n\\nStaring out at him from the depths of the mirror, Hyde finally loses his cocky composure as he begs Hank to run to safety, warning him that he'll die if he doesn't.\\n\\n*\\\"That's the idea, Eddie old pal,\\\"* Hank says smirking. *\\\"Don't worry about me. My soul's in order, and I don't have any regrets. If this is what I've gotta do to bring you down, I consider it an honest trade. As for you... You've only got a few minutes left. Don't waste them in anger.*\\\"\\n\\nHyde screams at Hank as the fire envelops the basement. But as the mirror melts, and Hyde's face vanishes, his voice is finally silent. With that, the screen fades to black.\\n\\nA few hours later, three figures approach the ruins of the mansion as the London police pick their way through the ashes and rubble. As the camera swings around, we see their faces: it's **Eve**, **Lester Talbot**, and **Jacob Van Helsing**. \\n\\nTen years after their first meeting in Paris, the trio are now an inseparable team, and a decade of adventure has turned them into close friends. But as they survey Prodigium's ruined headquarters, they can only stare at the site of the massacre in befuddlement.\\n\\n*\\\"What the hell happened here?\\\"* Eve wonders aloud.\\n\\n*\\\"Perhaps divine justice,\\\"* Jacob says. *\\\"Or perhaps something else.\\\"*\\n\\n*\\\"We'll probably never know,\\\"* Lester says. *\\\"And for once, I think I'm alright with that...\\\"*\\n______________\\n\\n***The Creature*** *(2027)* \\n\\n*Setting: The Pacific, 1958*\\n\\nOur story begins with a flashback.\\n\\nSometime in the 19th century, a few promising young students gather in a cramped classroom at **Ingolstadt University** to hear a lecture from the eccentric old oceanographer **Professor Pierre Arronax**, who tells them an unlikely story about a perilous undersea voyage that he took with a mad sea captain called \\\"*Nemo*\\\". The students\\u2014including a few familiar faces like **Victor Frankenstein**, **Igor Waldman**, **Jack Griffin**, and a young **Abraham Van Helsing**\\u2014listen with bated breath as Arronax tells them about all of the strange things that he saw in the dark depths of the ocean. He tells them about his battles with giant squids, his brief sojourn to the ruins of Atlantis, and his time in the icy waters of the North Pole. But they're truly enraptured when he tells them about his strangest adventure of all: an encounter with a bizarre race of human-fish hybrids who dwell in the deepest depths of the oceans.\\n\\nThough some of the students initially doubt Arronax's story about the bizarre \\\"**ichthyoids**\\\", they change their tune when the Professor shows them a faded daguerrotype photo that he snapped of the creatures from the porthole of Nemo's submarine. As they stare at the grainy photo in awe, Arronax fondly reminisces about his adventure in the deep ocean, but he sadly admits that he's never been able to convince his scientific colleagues that the ichthyoids are real. But if *another* scientist managed to prove the creatures' existence by capturing an ichthyoid specimen and bringing it to the surface, that scientist's name would be enshrined forever in the annals of history. For in the depths of the ocean, he tells them, there are always mysteries waiting to be discovered...\\n\\nThe scenes fades out, and we return to the present day, where we see a familiar figure reading an antique leather diary packed with old photographs. As we zoom in on the diary, we see that it's the personal journal of Abraham Van Helsing\\u2014and one of the pictures is Arronax's photograph of the ichthyoids. And the figure reading the journal is none other than ***Dr. Hans Niemann***.\\n\\nThe year is 1958, and it's been 10 years since Niemann fled Russia and defected to the United States. Ever since that day, he has been hard at work designing weapons of war for the US military, and his handlers in the CIA have been all too happy to conceal his Nazi past. In years past, he played a key role in developing the hydrogen bomb for the Army; more recently, he designed the nuclear submarine **USS** ***Nautilus*** (named after Nemo's legendary submarine) for the US Navy, and helped plan **Project Mercury** for the fledgling space agency **NASA**. In time, his inventions may even put men on the Moon!\\n\\nBut after a decade of loyally working for the US government, Niemann now has a more personal project in mind: with the US Navy's blessing, he wants to lead an experimental submarine voyage to the uncharted depths of the Pacific Ocean, hoping to *finally* prove the existence of the mysterious ichthyoids. To do it, he has his sights set on one location: the shadowy **Marianas Trench**.\\n\\nOn a pristine Summer day, Niemann leaves the coast of **San Francisco** and sets off on a long ocean voyage to a remote naval base off the coast of Japan, where the US Navy has recently completed work on his experimental deep-ocean submersible **USS** ***Ammonite***. As he boards the *Ammonite* and prepares to dive, he recruits a motley crew of \\\"assistants\\\" to aid him in the journey. Hawaiian fisherman **Keoni Kamaka**, a decorated Navy veteran who saw action at Pearl Harbor, signs on as navigator; bookish young Japanese scientist **Ishiro Nakamura**, who devoted his life to science after losing his parents in the bombing of Hiroshima, agrees to be Niemann's research assistant; grizzled Australian sailor **John Allerdyce** (\\\"**Johnny Dice**\\\" to his friends) enlists as First Mate; and Jamaican-born engineer **Oliver \\\"Twisty\\\" O'Rear\\\"** joins the crew as a radio operator.\\n\\nAlthough they all sign on to crew the *Ammonite*, Niemann chooses not to tell them the true purpose of the mission\\u2014believing that they wouldn't have agreed to help him if they knew what he was really after. As far as they know, they're only crewing the vessel on its experimental test run.\\n\\nAs the *Ammonite* dives, tension soon erupts among the crew as Niemann admits that they'll be at sea for much longer than he led them to believe. Niemann knows that the Navy likely won't give him another chance to research the ichthyoids, so he refuses to return to port until he's found what he's looking for. Later, tensions escalate when the crew presses him on the true purpose of his mission, and Niemann admits that he's looking for a deep-ocean life-form that's never been proven to exist. Seeing Niemann as a delusional madman, Twisty and Kamaka tell him that his mission is a fool's errand, and they encourage him to call off the mission before he gets them all killed\\u2014though Ishiro is intrigued by the possibility of researching the ichthyoids.\\n\\nOn the second day of the voyage, another argument erupts among the crew when Johnny Dice questions Niemann about his past. Knowing of the doctor's German heritage, he comes to suspect (rightly) that he's one of the Nazi researchers who defected to the Allies to save himself after World War II. Still remembering his time spent fighting in the Pacific, he's repulsed by the idea of working for a Nazi. But Niemann, who has always worked hard to keep his past a secret, becomes enraged by Johnny's unrelenting questions\\u2014and he ultimately loses his temper and strikes him. As a fight ensues, Twisty is forced to intercede and separate the two, and they agree to keep their distance for the remainder of the voyage. But that night, tragedy strikes...\\n\\nAs he attempts to sleep, Niemann is plagued by a series of disturbing dreams about scaly figures lurking in the shadows of the Pacific. Before he wakes\\u2014shaking and drenched in sweat\\u2014he sees powerful tentacles reaching out to grab him. When he turns on his lamp, Niemann sees Johnny Dice standing over his bed with a knife in his hand, his eyes blank and glazed over. In a trance, Johnny lunges at Niemann and tries to stab him, and Niemann fights back. As a fight ensues, Johnny and Niemann struggle over the knife, and Johnny begins murmuring two words over and over again:\\n\\n*\\\"Go back... Go back... Go back...\\\"*\\n\\nAs Niemann tries to wrestle the knife from Johnny's hand, he accidentally stabs him in the chest with it, and calls the rest of the crew to help him stop the bleeding. When the others arrive, they become even *more* suspicious of Niemann when they see him standing over Johnny with a knife lodged in his chest. Remembering Niemann's violent argument with Johnny earlier in the day, they're reluctant to believe Niemann when he insists that Johnny attacked him. Try as they might, they're unable to stop the bleeding, and Johnny soon bleeds to death.\\n\\nRattled by Johnny's sudden death, the crew becomes even more terrified when the *Ammonite* suddenly stops moving, and they realize that the propeller has inexplicably become *jammed*. As they convene to discuss repairs, Ishiro suddenly recoils in fear when he sees a grotesque scaly face staring at him through the porthole; when he ties to get a closer look at it, the face vanishes into the darkness.\\n\\nAs the crew tries to convince Niemann to return to the surface, Kamaka agrees to don a diving suit and exit the airlock to repair the propeller from outside. In a tense scene, he feels his way along the exterior of the *Ammonite* while using a flashlight to light his way. When he finally reaches the propeller, he realizes that it isn't jammed, but it's somehow been *dismantled* with great care and precision. Working fast, he manages to reassemble the propeller\\u2014but as soon as he does, he's *grabbed* by powerful webbed hands, which drag him from the sub and pull him into the darkness. As the rest of the crew attempt to stay in touch with him via radio, they hear Kamaka's terrified screams as he dies.\\n\\nDespite their suspicions of Niemann, Twisty and Ishiro agree to cooperate with him until they can return to the surface\\u2014and with Kamaka's death, they suddenly realize that the ichthyoids are very real. Still, Niemann convinces them to remain below the surface for one more day, if only to ensure that Johnny and Kamaka didn't die in vain. Hours later, though, tragedy strikes again.\\n\\nWhen Niemann pays a visit to Ishiro's bunk to go over some research with him, he discovers that Ishiro has *committed suicide* by slashing his throat with a knife\\u2014and before dying, he daubed the words *\\\"GO BACK\\\"* on the bulkhead in his own blood. When Twisty finds him, he finally begins to believe Niemann's story about Johnny's mysterious trance. *Something* in the depths seems to be manipulating the crew's minds, driving them into madness in an effort to stop their voyage from uncovering too much. As they discuss recent events, Niemann tells Twisty about his bizarre dreams, theorizing that he had psychic images projected into his mind while he slept. His suspicions are confirmed when Twisty admits that he has also been having bizarre nightmares since the voyage began\\u2014and he *also* saw an image of a massive tentacled creature in his dreams.\\n\\nAt first, Twisty theorizes that the ichthyoids are responsible for the crew's madness, but Niemann persuades him that there's a more powerful force at work. After all, it would take an incredibly powerful brain to project such strong images directly into another creature's mind, and the ichthyoids are too small to possess such power. But since the ichthyoids always appear to act in perfect synchronicity with one another, perhaps they're *also* being psychically controlled. Perhaps they're just *drones*, and a more powerful creature is acting as their Queen.\\n\\nIn a desperate effort to avenge the other crew-members, Twisty agrees to help Niemann find the mysterious being that drove them to their deaths, knowing that he won't be able to live with himself if he passes up a chance to kill it. Pushing the *Ammonite*'s sonar array to its limits, he soon detects a massive structure on a nearby underwater plateau, and decides to check it out.\\n\\nIn the climax, Niemann and Twisty both don diving suits and venture onto the plateau, where\\u2014to their shock and horror\\u2014they discover a massive metallic structure perched atop the oceanic ridge, guarded by a massive swarm of ichthyoids. As Niemann approaches the metal structure, he realizes that it's actually a ***spaceship***, and he finds his mind swimming with bizarre voices and images whenever he moves closer to it.\\n\\nAt long last, Niemann realizes the truth about the ichthyoids: they're aquatic *aliens* who've been hiding in Earth's ocean ever since their spacecraft crashed in the Pacific. Judging by the amount of coral covering the drowned spacecraft, Niemann realizes that the ship must have crashed more than two centuries ago, long before any humans would have been able to find it.\\n\\nArmed with knives, harpoons and explosives, Twisty and Niemann drive off the ichthyoids in a massive underwater battle, and Niemann narrowly manages to force his way into the heart of the ruined spaceship\\u2014where a **massive tentacled beast** is waiting at the center of a glass enclosure. **The Creature**'s body resembles a massive swollen *brain*, explaining how its psychic abilities were so powerful. But despite the long reach of its tentacles, its body is far too massive to move; instead, it uses its psychic abilities to force enslaved ichthyoids to do its bidding, and they loyally bring it food and safeguard its larval offspring. In the glass enclosure where the Creature sits, the walls are lined with countess rows of transparent jars filled with murky amniotic fluid; inside each one, we can clearly see a miniature embryo with a brain-like body and slender tentacles.\\n\\nIn a climactic showdown, the Creature bombards Niemann with psychic energy and swipes at him with its massive tentacles. Niemann nearly passes out as the beast invades his mind, but he manages to land a good shot with a harpoon gun tipped with explosives, and he successfully wounds the Creature's massive brain. As it dies, the ichthyoids fall into disarray, and Niemann finally relaxes as the Creature's psychic attacks stop. With that, he and Twisty return to the *Ammonite* and make their way back to the surface, where they go their separate ways\\u2014agreeing *never* to tell anyone what they saw in the depths of the Pacific.\\n\\nIn the final scene, Niemann returns to his old lab in a remote military base on the California coast, where he resumes his old research. But when his handlers are out of earshot, he opens a locked cabinet and retrieves a small glass object. It's *one of the Creature's embryos*, which he secretly took from the Creature's drowned spaceship. As he lays the cylindrical glass jar on his table and strokes the glass fondly, the embryo's small tentacles begin to twitch.\\n\\n*\\\"Come, little one...\\\"* he says. *\\\"Together, I think you and I are going to accomplish wonders...\\\"*\\n\\nJust outside the base, where the Pacific Ocean laps at the stony shore, a scaly green head pokes out of the water. Moments later, an ichthyoid crawls out of the ocean and walks onto the beach, with six more behind it. Inside the lab, Niemann waves his hand\\u2014and in an instant, the scaly creatures are still.\\n\\nNiemann smiles, and the screen fades to black...\\n______________\\n\\n***The Case:*** In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\\"The Gemini Killer\\\" to justice. In a twist, it's revealed that Hank's full name is \\\"Henry Jekyll\\\", and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium's secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\n\\n***The Creature:*** Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they're aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they're slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures' drowned spaceship to kill the monster, and manages to steal one of the monster's embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpiv79\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558565104.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558073240.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EPart 1 is \\u003Ca href=\\\"https://www.reddit.com/r/fixingmovies/comments/ak8qt1/my_take_on_fixing_the_dark_universe/\\\"\\u003EHERE\\u003C/a\\u003E, and Part 2 is \\u003Ca href=\\\"https://www.reddit.com/r/fixingmovies/comments/bomg7i/my_take_on_fixing_the_dark_universe_part_2/\\\"\\u003EHERE\\u003C/a\\u003E\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EI promise, I\\u0026#39;ll only post one more of these before I call it quits. Real talk: I wanted to include my big grand finale in this post, but it got a little too long.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EThanks to everyone who\\u0026#39;s followed along so far! I appreciate all of the comments!\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Case\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003E(2026)\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESetting: New York, 1948\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust as the events of \\u003Cem\\u003EThe Vampire\\u003C/em\\u003E are unfolding in Moscow in 1948, \\u003Cem\\u003Eanother\\u003C/em\\u003E story transpires on the other side of the Atlantic.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThree years after the end of World War II, as thousands of battle-scarred American veterans adjust to peacetime, we meet a New York private detective named \\u003Cstrong\\u003EHank\\u003C/strong\\u003E. Not too long ago, Hank was a crack operator in the American \\u003Cstrong\\u003EOSS\\u003C/strong\\u003E, and ran numerous daring missions against the Nazi war machine. As he attempts to put his military service behind him, he now runs a small-time private investigation firm out of a cramped office in Brooklyn, where he spends his days solving problems for desperate New Yorkers too afraid to turn to the police. When not pounding the pavement in search of clues, he enjoys the occasional romantic liaison with \\u003Cstrong\\u003EMary\\u003C/strong\\u003E\\u2014a pretty young reporter from a local tabloid newspaper, who occasionally hits him up for story leads.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo most casual observers, Hank is your typical square-jawed, street-smart private eye\\u2014but when people get to know him, they gradually notice a few odd details about him. He refuses to speak about his experiences in the war, but occasionally makes vague references to \\u0026quot;\\u003Cstrong\\u003EThe London Assignment\\u003C/strong\\u003E\\u0026quot;, a dangerous OSS mission that went wrong. He regularly meets with an old contact from his OSS days, who supplies him with \\u003Cstrong\\u003Eunlabeled bottles of pills\\u003C/strong\\u003E, which he takes on a regular basis. Most strangely, there isn\\u0026#39;t a single mirror in his apartment, and he habitually avoids reflective surfaces, as if he\\u0026#39;s afraid of his own reflection.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs our story begins, the tabloid rags of New York are abuzz with stories about a new public menace:\\n\\u0026quot;\\u003Cstrong\\u003EThe Gemini Killer\\u003C/strong\\u003E\\u0026quot;, a malevolent serial murderer who maims his victims by gruesomely \\u003Cstrong\\u003E\\u003Cem\\u003Eremoving half of their faces\\u003C/em\\u003E\\u003C/strong\\u003E. While the NYPD launches a manhunt for the elusive killer, Hank takes to the streets to launch his own investigation, convinced that he can find him before the police do. While he\\u0026#39;s ordinarily content to stay out of law enforcement\\u0026#39;s way, this case is distinctly personal for Hank, since the Gemini Killer\\u0026#39;s latest victim was his partner, a man named \\u003Cstrong\\u003EGabe\\u003C/strong\\u003E. Though he does his best to maintain a stoic facade, Hank can\\u0026#39;t help but feel a twinge of survivor\\u0026#39;s guilt, as he knows that \\u003Cem\\u003Ehe\\u003C/em\\u003E easily could have fallen prey to the killer instead.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the first scene, Hank turns up at the scene of the Gemini Killer\\u0026#39;s latest murder, where the police are scouring the scene for clues. \\u003Cstrong\\u003EDetective Enfield\\u003C/strong\\u003E, the cop in charge of the NYPD\\u0026#39;s manhunt, attempts to shoo him away from the crime scene, but he sticks around long enough to pick up one crucial clue: the newest murder victim was found with a distinctive tattoo along his arm, which Hank instantly recognizes as the work of a well-known Brooklyn tattoo artist with a devoted clientele. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EArmed with that useful nugget of information, Hank heads to the tattoo shop to interview the tattoo artist about his client, and he learns that the murder victim\\u2014a man named \\u0026quot;\\u003Cstrong\\u003EPoole\\u003C/strong\\u003E\\u0026quot;\\u2014had a reputation for paranoia, and he was convinced that someone near his home in \\u003Cstrong\\u003Ethe Bowery\\u003C/strong\\u003E was stalking him. Too late, the tattoo artist realizes that Poole\\u0026#39;s suspicions were true. Determined to help Hank avenge him, he gives him as much information as he can about Poole\\u0026#39;s personal life, hoping that Hank might be able to find his killer by retracing the steps in his daily routine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Hank searches the Bowery for further clues, his search window narrows considerably when he tracks down a craftsman who makes specialty knives, and the craftsman lets it slip\\u2014after an intense round of questioning\\u2014that he sold a vast collection of \\u003Cstrong\\u003Esurgical blades\\u003C/strong\\u003E to a mysterious man with a frightening appearance. As his search continues, Hank finally manages to track down a secluded apartment building in a crime-ridden neighborhood that the police avoid, and he realizes that he\\u0026#39;s struck gold when the landlord admits that he has a reclusive tenant in \\u003Cstrong\\u003EApartment 86\\u003C/strong\\u003E who he\\u0026#39;s never seen in person.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnder cover of darkness, Hank scales the building\\u0026#39;s fire escape and stealthily sneaks through the window of Apartment 86, finding it empty. As he lights a lamp to investigate, he recoils in horror at what he sees inside:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe room is filled with a vast collection of plaster casts of human heads, and each one is covered with grotesque \\u0026quot;masks\\u0026quot; stitched together from \\u003Cstrong\\u003E\\u003Cem\\u003Ehuman skin\\u003C/em\\u003E\\u003C/strong\\u003E. Each one is perfectly split down the middle and stitched together from two different human specimens\\u2014and Hank soon realizes that they\\u0026#39;re crafted from the severed faces of the Gemini Killer\\u0026#39;s victims!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he creeps through the apartment, Hank is unable to find any information that might allow him to identify the Gemini Killer, but he discovers\\u2014much to his surprise\\u2014that the mirror in the apartment\\u0026#39;s bathroom has been removed from the wall. Sufficiently shaken, he slips out of the apartment before anyone can catch him snooping, and he returns to his office as quickly as he can.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack at his office, Hank has a chance encounter with Mary, who\\u0026#39;s looking for a few juicy quotes about the search for the Gemini Killer. He declines to tell her anything about the case, but he invites her inside for a steamy night of lovemaking. As Hank closes his office door and locks it behind him, the camera closes on the door\\u0026#39;s glass panel, and\\u2014for the first time\\u2014we see the inscription written on the door.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EClear as day, it reads \\u003Cstrong\\u003E\\u0026quot;Henry Jekyll, Licensed Private Investigator\\u0026quot;\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESURPRISE!\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur story was actually an adaptation of \\u003Cem\\u003EThe Strange Case of Dr. Jekyll and Mr. Hyde\\u003C/em\\u003E all along. \\u0026quot;Hank\\u0026quot; is \\u003Cstrong\\u003EHenry Jekyll\\u003C/strong\\u003E, his partner \\u0026quot;Gabe\\u0026quot; was \\u003Cstrong\\u003EGabriel Utterson\\u003C/strong\\u003E, and his lover \\u0026quot;Mary\\u0026quot; is \\u003Cstrong\\u003EMary Reilly\\u003C/strong\\u003E. And now that you know that, you can probably guess the identity of the sinister Gemini Killer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHours later, Hank suddenly finds himself in a dark alleyway with his hands covered in blood. As he realizes what\\u0026#39;s happening, he realizes\\u2014much to his shock\\u2014that Mary is lying at his feet, stone dead. In his pocket, Hank finds a razor-sharp surgical knife, still soaked with Mary\\u0026#39;s fresh flesh blood. Worse still: when he reaches down to close her eyelids, he finds that half of her face has been removed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally piecing together the many strange details about the case, Hank realizes that \\u003Cem\\u003Ehe\\u003C/em\\u003E was the Gemini Killer all along\\u2014but for some reason, he can\\u0026#39;t seem to recall any of the many murders that he committed. It\\u0026#39;s as if someone else has been living inside his mind, leaving lengthy blank spaces in his memory whenever they take over.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShaken to the core, Hank flees to a nearby dive bar, where he locks himself in the nearest bathroom. As he attempts to collect himself, he looks into the mirror above the sink, and sees his reflection staring back with a wicked grin on its face. From the depths of the mirror, the Gemini Killer\\u2014whose calls himself \\u0026quot;\\u003Cstrong\\u003EEddie Hyde\\u003C/strong\\u003E\\u0026quot;\\u2014mockingly congratulates Hank on finally solving the case of a lifetime.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoments later, Enfield kicks in the front door, and a squad of armed NYPD officers storm the bar with guns drawn. It seems that the police have found Mary\\u0026#39;s corpse, and eyewitness reports have led them to the bar. Hank sees that his clothes are soaked with blood, and he realizes that Enfield will arrest him as soon as he sees him. As he begins to panic, Hyde takes the opportunity to seize control of Hank\\u0026#39;s body again\\u2014and as he exits the bathroom to face the police, he reveals his trusty blades.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a gruesome battle scene, Hyde mercilessly slaughters the police one by one, and finally kills Enfield with a well-placed headshot from a stolen service revolver. Too late, Hank regains control of his body and flees into the streets, leaving the blood-soaked bar behind him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the police flood the streets of New York looking for him, Hank narrowly manages to track down his old contact in the OSS, hoping that he might have some answers. Against his better judgment, his old contact (\\u0026quot;\\u003Cstrong\\u003EThe Major\\u003C/strong\\u003E\\u0026quot;) agrees to provide what little help he can. Though the Major is initially reluctant to help a wanted fugitive, Hank insists that he\\u0026#39;s innocent.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Major confirms that the fallout from \\u0026quot;The London Assignment\\u0026quot; affected Hank in strange ways, and he has never truly recovered from the events that transpired that day. The mysterious pills, which the Major still gives Hank without complaint, were intended to suppress his \\u0026quot;condition\\u0026quot;. While they once worked perfectly, they\\u0026#39;re beginning to lose their effectiveness as the murderous Eddie Hyde becomes stronger. But try as he might, Hank still can\\u0026#39;t remember what happened in London.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Major agrees to give Hank the dossier containing all known files on the London Assignment, which he secretly took from OSS headquarters after the agency was disbanded after the war. Inside the file, the Major tells Hank that he\\u0026#39;ll find everything that he needs to know about the mission\\u2014including the address of the building in London where everything went wrong. Determined to finally solve the mystery of his past, Hank leaves with the file, planning to book a flight to London with the help of a bootlegger pilot who owes him a favor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore he leaves, the Major gives Hank a final word of advice:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Watch yourself, son. If those cops find me, I\\u0026#39;ll insist you were never here. But if they find\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003Eyou\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E, you\\u0026#39;re on your own.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter stealing a car and making his way upstate, Hank manages to make it to \\u003Cstrong\\u003Ethe bootlegger\\u003C/strong\\u003E\\u0026#39;s secret airstrip, where his plane is primed and ready for takeoff. After some tense negotiations, he agrees to fly Hank to London\\u2014but he insists that it\\u0026#39;s a one-way trip. Before they leave, he assures Hank that a wanted fugitive \\u003Cem\\u003Eisn\\u0026#39;t\\u003C/em\\u003E the most dangerous cargo that he\\u0026#39;s ever smuggled. As they take off, Hank requests\\u2014to the bootlegger\\u0026#39;s befuddlement\\u2014that he handcuff him to his seat\\u0026#39;s armrest until they land.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the plane rises into the air and soars over the Atlantic, Hank closes his eyes and drifts off to sleep. As he does, he finally remembers what happened in London...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the height of the war, the OSS assigned Hank to track down and capture the infamous Nazi scientist \\u003Cstrong\\u003EDr. Hans Niemann\\u003C/strong\\u003E, who was rumored to be the mind behind the Third Reich\\u0026#39;s deadliest military projects. For years, Hank stalked the mad doctor across Europe as the war raged on\\u2014but Niemann was always one step ahead of him, and he never found him. But he \\u003Cem\\u003Edid\\u003C/em\\u003E stumble upon evidence that the doctor was involved with a shady organization known as \\u0026quot;\\u003Cstrong\\u003EProdigium\\u003C/strong\\u003E\\u0026quot;. As the OSS investigated Prodigium for clues about Niemann\\u0026#39;s whereabouts, they eventually discovered that the group had a base of operations in the heart of London itself, and they managed to uncover a plot to smuggle a mysterious chemical formula across the English Channel. Suspecting that the group was trafficking chemical weapons, the OSS deployed Hank to London to track down the formula and steal it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWorking fast, Hank managed to assassinate the Prodigium operative who was entrusted with carrying the formula, and he managed to escape with the leather briefcase containing the chemical vials. But his luck ran out when he tried to drive to the airport to rendezvous with his handlers, and discovered\\u2014just moments too late\\u2014that Prodigium had planted a bomb in his car. Hank bailed out of the car as the engine exploded, and he narrowly managed to survive the blast with minor burns and a concussion\\u2014but the case was destroyed in the explosion, and Hank was doused with chemicals as the glass vials shattered.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he stumbled to his feet\\u2014half-blind, disoriented, and struggling to speak\\u2014he felt the chemicals seeping through his skin, transforming him in ways that he couldn\\u0026#39;t explain. Without warning, he found himself seized by the dark urge to kill, maim, and torture, and he felt a malevolent presence clawing its way into his heart. Worst of all, he found that he \\u003Cem\\u003Ecouldn\\u0026#39;t remember his own name!\\u003C/em\\u003E But as his vision cleared, he found himself staring right at the iron sign for \\u003Cstrong\\u003EHyde Park\\u003C/strong\\u003E. In that moment, Eddie Hyde was born.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHank wakes as the plane touches down in a remote airfield on the outskirts of London. With his gun loaded and ready, he sets out in search of the address listed in the Major\\u0026#39;s files, which is allegedly the location of Prodigium\\u0026#39;s London headquarters. After a long walk across the bombed-out face of London, he finds a stately Victorian mansion at the address, and a well-dressed butler arrives at the door and invites him inside\\u2014as if he was expecting him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHank walks through the door of the mansion, where he\\u0026#39;s greeted by a room full of well-dressed men and women wearing masquerade masks, who gather around a circle of candles surrounding a mirror. In a scene eerily mirroring \\u003Cstrong\\u003EVictor Frankenstein\\u003C/strong\\u003E\\u0026#39;s first encounter with Prodigium at \\u003Cstrong\\u003EIngolstadt University\\u003C/strong\\u003E over a century earlier, the assembled members of the cult begin chanting an obscene prayer to \\u0026quot;\\u003Cstrong\\u003EThe Dark One\\u003C/strong\\u003E\\u0026quot;. As Hank contemplates his reflection in the mirror, he sees the Dark One place a hand on his shoulder, causing half of his face to rot and wither away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Hank shrinks back in fear, a pair of armed guards force him to his feet and confiscate his gun, and an \\u003Cstrong\\u003Eelderly man\\u003C/strong\\u003E steps forward to greet him. In his gnarled hands, he carries an ornate silver dish with a golden chalice balanced atop it. The chalice is filled to the brim with green liquid\\u2014which Hank recognizes as the mysterious chemical agent from the London Assignment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe elderly man introduces himself as the new leader of Prodigium, and\\u2014at long last\\u2014he explains the full story behind the mysterious formula.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor years, Prodigium\\u0026#39;s scholars and alchemists have believed that it might be possible to unlock the repressed dark side of the human psyche through chemistry, allowing ordinary people to unlock the darkness within their souls. Ever since his incident in London accidentally exposed him to the formula, the dark side of Hank\\u0026#39;s personality has been fighting for complete control of his soul, manifesting as his \\u003Cem\\u003Ealter ego\\u003C/em\\u003E Hyde. But if he were to voluntarily ingest a full dose of the formula, Prodigium believes that his soul would be entirely consumed by darkness, allowing him to serve as the Dark One\\u0026#39;s living emissary on Earth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe leader of Prodigium offers Hank a choice: he can willingly drink from the golden chalice, allowing Hyde to take full control of his mind, in exchange for his life; if he refuses to drink the potion, Prodigium will kill him\\u2014but he\\u0026#39;ll die with his free will fully intact.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETorn between two impossible choices, Hank tries to push the chalice away, but Hyde seizes control of his body just in time to stop him. Although Hank tries his best to regain control, Hyde grabs the chalice and eagerly gulps the potion down, and the assembled members of Prodigium applaud as his eyes glaze over. Moments later, Hank smiles maliciously\\u2014and it\\u0026#39;s instantly clear that he has become Hyde permanently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen all hell breaks loose.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the elderly leader of Prodigium congratulates Hyde and welcomes him into the fold, Hyde grabs him by the throat and \\u003Cem\\u003Ebreaks his neck\\u003C/em\\u003E with his bare hands, then pulls a hidden blade from his boot and brutally murders three Prodigium members by slashing their jugulars. The guards draw their guns and try to shoot him, but Hyde manages to steal a guard\\u0026#39;s pistol, and a massive shootout ensues as he fires back at them. Once again, Hyde tears through the helpless crowd with ease, killing everyone he sees. As dozens of Prodigium members fall to the ground bleeding out, he throws his head back and cackles maliciously.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;M NOBODY\\u0026#39;S SLAVE!\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E he screams. \\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;NO ONE CONTROLS EDDIE HYDE\\u2014GOD OR MORTAL!\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe shootout rages on, and the assembled guards try to surround Hyde\\u2014but he mows down everyone that dares to take a shot at him. Finally, as reinforcements arrive from another room, the guards manage to force Hyde into the basement of the mansion. As bullets fly, Hyde forces his way into the \\u003Cstrong\\u003Eboiler room\\u003C/strong\\u003E, where he takes a shot at the antique brass boiler. As the boiler explodes, half of the mansion suddenly erupts in flames, and most of the surviving Prodigium members burn to death as they\\u0026#39;re consumed in the blaze. The few remaining members futilely try to make a run for it; some of them pass out from smoke inhalation, and others are crushed by falling debris as the roof begins to collapse.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the fire spreads through the mansion, Hyde defiantly shoots everyone he sees. When he finally runs out of bullets, he realizes that every last member of Prodigium is dead. The Dark One\\u0026#39;s cult failed in their mission, but Eddie Hyde got exactly what he wanted: Hank Jekyll lost the battle for his soul, and Hyde won.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...Or \\u003Cem\\u003Edid\\u003C/em\\u003E he?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs an exhausted Hyde drops his empty pistol and slumps against the wall, he looks into a nearby mirror. But it\\u0026#39;s not Hank that stares back from the mirror\\u2014it\\u0026#39;s \\u003Cem\\u003EHyde\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAgainst all odds, Hank has managed to summon the strength to fight Hyde, giving him control of his body for a few precious minutes. And for those few minutes, Hank chooses to stay in the basement as the mansion collapses around him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStaring out at him from the depths of the mirror, Hyde finally loses his cocky composure as he begs Hank to run to safety, warning him that he\\u0026#39;ll die if he doesn\\u0026#39;t.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;That\\u0026#39;s the idea, Eddie old pal,\\u0026quot;\\u003C/em\\u003E Hank says smirking. \\u003Cem\\u003E\\u0026quot;Don\\u0026#39;t worry about me. My soul\\u0026#39;s in order, and I don\\u0026#39;t have any regrets. If this is what I\\u0026#39;ve gotta do to bring you down, I consider it an honest trade. As for you... You\\u0026#39;ve only got a few minutes left. Don\\u0026#39;t waste them in anger.\\u003C/em\\u003E\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyde screams at Hank as the fire envelops the basement. But as the mirror melts, and Hyde\\u0026#39;s face vanishes, his voice is finally silent. With that, the screen fades to black.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA few hours later, three figures approach the ruins of the mansion as the London police pick their way through the ashes and rubble. As the camera swings around, we see their faces: it\\u0026#39;s \\u003Cstrong\\u003EEve\\u003C/strong\\u003E, \\u003Cstrong\\u003ELester Talbot\\u003C/strong\\u003E, and \\u003Cstrong\\u003EJacob Van Helsing\\u003C/strong\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETen years after their first meeting in Paris, the trio are now an inseparable team, and a decade of adventure has turned them into close friends. But as they survey Prodigium\\u0026#39;s ruined headquarters, they can only stare at the site of the massacre in befuddlement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;What the hell happened here?\\u0026quot;\\u003C/em\\u003E Eve wonders aloud.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Perhaps divine justice,\\u0026quot;\\u003C/em\\u003E Jacob says. \\u003Cem\\u003E\\u0026quot;Or perhaps something else.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;ll probably never know,\\u0026quot;\\u003C/em\\u003E Lester says. \\u003Cem\\u003E\\u0026quot;And for once, I think I\\u0026#39;m alright with that...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Creature\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003E(2027)\\u003C/em\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESetting: The Pacific, 1958\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur story begins with a flashback.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESometime in the 19th century, a few promising young students gather in a cramped classroom at \\u003Cstrong\\u003EIngolstadt University\\u003C/strong\\u003E to hear a lecture from the eccentric old oceanographer \\u003Cstrong\\u003EProfessor Pierre Arronax\\u003C/strong\\u003E, who tells them an unlikely story about a perilous undersea voyage that he took with a mad sea captain called \\u0026quot;\\u003Cem\\u003ENemo\\u003C/em\\u003E\\u0026quot;. The students\\u2014including a few familiar faces like \\u003Cstrong\\u003EVictor Frankenstein\\u003C/strong\\u003E, \\u003Cstrong\\u003EIgor Waldman\\u003C/strong\\u003E, \\u003Cstrong\\u003EJack Griffin\\u003C/strong\\u003E, and a young \\u003Cstrong\\u003EAbraham Van Helsing\\u003C/strong\\u003E\\u2014listen with bated breath as Arronax tells them about all of the strange things that he saw in the dark depths of the ocean. He tells them about his battles with giant squids, his brief sojourn to the ruins of Atlantis, and his time in the icy waters of the North Pole. But they\\u0026#39;re truly enraptured when he tells them about his strangest adventure of all: an encounter with a bizarre race of human-fish hybrids who dwell in the deepest depths of the oceans.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThough some of the students initially doubt Arronax\\u0026#39;s story about the bizarre \\u0026quot;\\u003Cstrong\\u003Eichthyoids\\u003C/strong\\u003E\\u0026quot;, they change their tune when the Professor shows them a faded daguerrotype photo that he snapped of the creatures from the porthole of Nemo\\u0026#39;s submarine. As they stare at the grainy photo in awe, Arronax fondly reminisces about his adventure in the deep ocean, but he sadly admits that he\\u0026#39;s never been able to convince his scientific colleagues that the ichthyoids are real. But if \\u003Cem\\u003Eanother\\u003C/em\\u003E scientist managed to prove the creatures\\u0026#39; existence by capturing an ichthyoid specimen and bringing it to the surface, that scientist\\u0026#39;s name would be enshrined forever in the annals of history. For in the depths of the ocean, he tells them, there are always mysteries waiting to be discovered...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe scenes fades out, and we return to the present day, where we see a familiar figure reading an antique leather diary packed with old photographs. As we zoom in on the diary, we see that it\\u0026#39;s the personal journal of Abraham Van Helsing\\u2014and one of the pictures is Arronax\\u0026#39;s photograph of the ichthyoids. And the figure reading the journal is none other than \\u003Cstrong\\u003E\\u003Cem\\u003EDr. Hans Niemann\\u003C/em\\u003E\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe year is 1958, and it\\u0026#39;s been 10 years since Niemann fled Russia and defected to the United States. Ever since that day, he has been hard at work designing weapons of war for the US military, and his handlers in the CIA have been all too happy to conceal his Nazi past. In years past, he played a key role in developing the hydrogen bomb for the Army; more recently, he designed the nuclear submarine \\u003Cstrong\\u003EUSS\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003ENautilus\\u003C/em\\u003E\\u003C/strong\\u003E (named after Nemo\\u0026#39;s legendary submarine) for the US Navy, and helped plan \\u003Cstrong\\u003EProject Mercury\\u003C/strong\\u003E for the fledgling space agency \\u003Cstrong\\u003ENASA\\u003C/strong\\u003E. In time, his inventions may even put men on the Moon!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut after a decade of loyally working for the US government, Niemann now has a more personal project in mind: with the US Navy\\u0026#39;s blessing, he wants to lead an experimental submarine voyage to the uncharted depths of the Pacific Ocean, hoping to \\u003Cem\\u003Efinally\\u003C/em\\u003E prove the existence of the mysterious ichthyoids. To do it, he has his sights set on one location: the shadowy \\u003Cstrong\\u003EMarianas Trench\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn a pristine Summer day, Niemann leaves the coast of \\u003Cstrong\\u003ESan Francisco\\u003C/strong\\u003E and sets off on a long ocean voyage to a remote naval base off the coast of Japan, where the US Navy has recently completed work on his experimental deep-ocean submersible \\u003Cstrong\\u003EUSS\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EAmmonite\\u003C/em\\u003E\\u003C/strong\\u003E. As he boards the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E and prepares to dive, he recruits a motley crew of \\u0026quot;assistants\\u0026quot; to aid him in the journey. Hawaiian fisherman \\u003Cstrong\\u003EKeoni Kamaka\\u003C/strong\\u003E, a decorated Navy veteran who saw action at Pearl Harbor, signs on as navigator; bookish young Japanese scientist \\u003Cstrong\\u003EIshiro Nakamura\\u003C/strong\\u003E, who devoted his life to science after losing his parents in the bombing of Hiroshima, agrees to be Niemann\\u0026#39;s research assistant; grizzled Australian sailor \\u003Cstrong\\u003EJohn Allerdyce\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EJohnny Dice\\u003C/strong\\u003E\\u0026quot; to his friends) enlists as First Mate; and Jamaican-born engineer \\u003Cstrong\\u003EOliver \\u0026quot;Twisty\\u0026quot; O\\u0026#39;Rear\\u0026quot;\\u003C/strong\\u003E joins the crew as a radio operator.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlthough they all sign on to crew the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E, Niemann chooses not to tell them the true purpose of the mission\\u2014believing that they wouldn\\u0026#39;t have agreed to help him if they knew what he was really after. As far as they know, they\\u0026#39;re only crewing the vessel on its experimental test run.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E dives, tension soon erupts among the crew as Niemann admits that they\\u0026#39;ll be at sea for much longer than he led them to believe. Niemann knows that the Navy likely won\\u0026#39;t give him another chance to research the ichthyoids, so he refuses to return to port until he\\u0026#39;s found what he\\u0026#39;s looking for. Later, tensions escalate when the crew presses him on the true purpose of his mission, and Niemann admits that he\\u0026#39;s looking for a deep-ocean life-form that\\u0026#39;s never been proven to exist. Seeing Niemann as a delusional madman, Twisty and Kamaka tell him that his mission is a fool\\u0026#39;s errand, and they encourage him to call off the mission before he gets them all killed\\u2014though Ishiro is intrigued by the possibility of researching the ichthyoids.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the second day of the voyage, another argument erupts among the crew when Johnny Dice questions Niemann about his past. Knowing of the doctor\\u0026#39;s German heritage, he comes to suspect (rightly) that he\\u0026#39;s one of the Nazi researchers who defected to the Allies to save himself after World War II. Still remembering his time spent fighting in the Pacific, he\\u0026#39;s repulsed by the idea of working for a Nazi. But Niemann, who has always worked hard to keep his past a secret, becomes enraged by Johnny\\u0026#39;s unrelenting questions\\u2014and he ultimately loses his temper and strikes him. As a fight ensues, Twisty is forced to intercede and separate the two, and they agree to keep their distance for the remainder of the voyage. But that night, tragedy strikes...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he attempts to sleep, Niemann is plagued by a series of disturbing dreams about scaly figures lurking in the shadows of the Pacific. Before he wakes\\u2014shaking and drenched in sweat\\u2014he sees powerful tentacles reaching out to grab him. When he turns on his lamp, Niemann sees Johnny Dice standing over his bed with a knife in his hand, his eyes blank and glazed over. In a trance, Johnny lunges at Niemann and tries to stab him, and Niemann fights back. As a fight ensues, Johnny and Niemann struggle over the knife, and Johnny begins murmuring two words over and over again:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Go back... Go back... Go back...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Niemann tries to wrestle the knife from Johnny\\u0026#39;s hand, he accidentally stabs him in the chest with it, and calls the rest of the crew to help him stop the bleeding. When the others arrive, they become even \\u003Cem\\u003Emore\\u003C/em\\u003E suspicious of Niemann when they see him standing over Johnny with a knife lodged in his chest. Remembering Niemann\\u0026#39;s violent argument with Johnny earlier in the day, they\\u0026#39;re reluctant to believe Niemann when he insists that Johnny attacked him. Try as they might, they\\u0026#39;re unable to stop the bleeding, and Johnny soon bleeds to death.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERattled by Johnny\\u0026#39;s sudden death, the crew becomes even more terrified when the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E suddenly stops moving, and they realize that the propeller has inexplicably become \\u003Cem\\u003Ejammed\\u003C/em\\u003E. As they convene to discuss repairs, Ishiro suddenly recoils in fear when he sees a grotesque scaly face staring at him through the porthole; when he ties to get a closer look at it, the face vanishes into the darkness.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the crew tries to convince Niemann to return to the surface, Kamaka agrees to don a diving suit and exit the airlock to repair the propeller from outside. In a tense scene, he feels his way along the exterior of the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E while using a flashlight to light his way. When he finally reaches the propeller, he realizes that it isn\\u0026#39;t jammed, but it\\u0026#39;s somehow been \\u003Cem\\u003Edismantled\\u003C/em\\u003E with great care and precision. Working fast, he manages to reassemble the propeller\\u2014but as soon as he does, he\\u0026#39;s \\u003Cem\\u003Egrabbed\\u003C/em\\u003E by powerful webbed hands, which drag him from the sub and pull him into the darkness. As the rest of the crew attempt to stay in touch with him via radio, they hear Kamaka\\u0026#39;s terrified screams as he dies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDespite their suspicions of Niemann, Twisty and Ishiro agree to cooperate with him until they can return to the surface\\u2014and with Kamaka\\u0026#39;s death, they suddenly realize that the ichthyoids are very real. Still, Niemann convinces them to remain below the surface for one more day, if only to ensure that Johnny and Kamaka didn\\u0026#39;t die in vain. Hours later, though, tragedy strikes again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen Niemann pays a visit to Ishiro\\u0026#39;s bunk to go over some research with him, he discovers that Ishiro has \\u003Cem\\u003Ecommitted suicide\\u003C/em\\u003E by slashing his throat with a knife\\u2014and before dying, he daubed the words \\u003Cem\\u003E\\u0026quot;GO BACK\\u0026quot;\\u003C/em\\u003E on the bulkhead in his own blood. When Twisty finds him, he finally begins to believe Niemann\\u0026#39;s story about Johnny\\u0026#39;s mysterious trance. \\u003Cem\\u003ESomething\\u003C/em\\u003E in the depths seems to be manipulating the crew\\u0026#39;s minds, driving them into madness in an effort to stop their voyage from uncovering too much. As they discuss recent events, Niemann tells Twisty about his bizarre dreams, theorizing that he had psychic images projected into his mind while he slept. His suspicions are confirmed when Twisty admits that he has also been having bizarre nightmares since the voyage began\\u2014and he \\u003Cem\\u003Ealso\\u003C/em\\u003E saw an image of a massive tentacled creature in his dreams.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt first, Twisty theorizes that the ichthyoids are responsible for the crew\\u0026#39;s madness, but Niemann persuades him that there\\u0026#39;s a more powerful force at work. After all, it would take an incredibly powerful brain to project such strong images directly into another creature\\u0026#39;s mind, and the ichthyoids are too small to possess such power. But since the ichthyoids always appear to act in perfect synchronicity with one another, perhaps they\\u0026#39;re \\u003Cem\\u003Ealso\\u003C/em\\u003E being psychically controlled. Perhaps they\\u0026#39;re just \\u003Cem\\u003Edrones\\u003C/em\\u003E, and a more powerful creature is acting as their Queen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a desperate effort to avenge the other crew-members, Twisty agrees to help Niemann find the mysterious being that drove them to their deaths, knowing that he won\\u0026#39;t be able to live with himself if he passes up a chance to kill it. Pushing the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E\\u0026#39;s sonar array to its limits, he soon detects a massive structure on a nearby underwater plateau, and decides to check it out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the climax, Niemann and Twisty both don diving suits and venture onto the plateau, where\\u2014to their shock and horror\\u2014they discover a massive metallic structure perched atop the oceanic ridge, guarded by a massive swarm of ichthyoids. As Niemann approaches the metal structure, he realizes that it\\u0026#39;s actually a \\u003Cstrong\\u003E\\u003Cem\\u003Espaceship\\u003C/em\\u003E\\u003C/strong\\u003E, and he finds his mind swimming with bizarre voices and images whenever he moves closer to it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt long last, Niemann realizes the truth about the ichthyoids: they\\u0026#39;re aquatic \\u003Cem\\u003Ealiens\\u003C/em\\u003E who\\u0026#39;ve been hiding in Earth\\u0026#39;s ocean ever since their spacecraft crashed in the Pacific. Judging by the amount of coral covering the drowned spacecraft, Niemann realizes that the ship must have crashed more than two centuries ago, long before any humans would have been able to find it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EArmed with knives, harpoons and explosives, Twisty and Niemann drive off the ichthyoids in a massive underwater battle, and Niemann narrowly manages to force his way into the heart of the ruined spaceship\\u2014where a \\u003Cstrong\\u003Emassive tentacled beast\\u003C/strong\\u003E is waiting at the center of a glass enclosure. \\u003Cstrong\\u003EThe Creature\\u003C/strong\\u003E\\u0026#39;s body resembles a massive swollen \\u003Cem\\u003Ebrain\\u003C/em\\u003E, explaining how its psychic abilities were so powerful. But despite the long reach of its tentacles, its body is far too massive to move; instead, it uses its psychic abilities to force enslaved ichthyoids to do its bidding, and they loyally bring it food and safeguard its larval offspring. In the glass enclosure where the Creature sits, the walls are lined with countess rows of transparent jars filled with murky amniotic fluid; inside each one, we can clearly see a miniature embryo with a brain-like body and slender tentacles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a climactic showdown, the Creature bombards Niemann with psychic energy and swipes at him with its massive tentacles. Niemann nearly passes out as the beast invades his mind, but he manages to land a good shot with a harpoon gun tipped with explosives, and he successfully wounds the Creature\\u0026#39;s massive brain. As it dies, the ichthyoids fall into disarray, and Niemann finally relaxes as the Creature\\u0026#39;s psychic attacks stop. With that, he and Twisty return to the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E and make their way back to the surface, where they go their separate ways\\u2014agreeing \\u003Cem\\u003Enever\\u003C/em\\u003E to tell anyone what they saw in the depths of the Pacific.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the final scene, Niemann returns to his old lab in a remote military base on the California coast, where he resumes his old research. But when his handlers are out of earshot, he opens a locked cabinet and retrieves a small glass object. It\\u0026#39;s \\u003Cem\\u003Eone of the Creature\\u0026#39;s embryos\\u003C/em\\u003E, which he secretly took from the Creature\\u0026#39;s drowned spaceship. As he lays the cylindrical glass jar on his table and strokes the glass fondly, the embryo\\u0026#39;s small tentacles begin to twitch.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Come, little one...\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;Together, I think you and I are going to accomplish wonders...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust outside the base, where the Pacific Ocean laps at the stony shore, a scaly green head pokes out of the water. Moments later, an ichthyoid crawls out of the ocean and walks onto the beach, with six more behind it. Inside the lab, Niemann waves his hand\\u2014and in an instant, the scaly creatures are still.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENiemann smiles, and the screen fades to black...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Case:\\u003C/em\\u003E\\u003C/strong\\u003E In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\u0026quot;The Gemini Killer\\u0026quot; to justice. In a twist, it\\u0026#39;s revealed that Hank\\u0026#39;s full name is \\u0026quot;Henry Jekyll\\u0026quot;, and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium\\u0026#39;s secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Creature:\\u003C/em\\u003E\\u003C/strong\\u003E Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they\\u0026#39;re aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they\\u0026#39;re slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures\\u0026#39; drowned spaceship to kill the monster, and manages to steal one of the monster\\u0026#39;s embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpiv79\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpiv79/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpiv79/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558044440.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Watch: [Facebook Live](https://www.facebook.com/pg/concacafcom/videos/?ref=page_internal) (United States)/[CONCACAF GO](https://www.concacafgo.com/concacafgo) (Mexico and rest of world)\", \"author_fullname\": \"t2_figd8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing to ensure correct formatting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpik4w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558071621.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWatch: \\u003Ca href=\\\"https://www.facebook.com/pg/concacafcom/videos/?ref=page_internal\\\"\\u003EFacebook Live\\u003C/a\\u003E (United States)/\\u003Ca href=\\\"https://www.concacafgo.com/concacafgo\\\"\\u003ECONCACAF GO\\u003C/a\\u003E (Mexico and rest of world)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/BPVY-99lxG0GPWb0vHMM6NmhhdXQPqhhimCawKs8y74.jpg?auto=webp\\u0026s=7b4adc605b413117f63d41966e6306e3fcf81652\", \"width\": 200, \"height\": 200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/BPVY-99lxG0GPWb0vHMM6NmhhdXQPqhhimCawKs8y74.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=96a134d110e3e628c13f08e5e3d7175e73bce8c8\", \"width\": 108, \"height\": 108}], \"variants\": {}, \"id\": \"uD7ZV9Ek0zNalP6vV36i4DSAtQlvisM9WJxEPbVt61A\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpik4w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rspenmoll\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpik4w/testing_to_ensure_correct_formatting/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpik4w/testing_to_ensure_correct_formatting/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558042821.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_hs1my81\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I do quotes?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpezwp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558054466.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpezwp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"1LordOfAwesome\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558025666.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bpezwp\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["1566278"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:30 GMT"], "x-ratelimit-remaining": ["588.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "x-ratelimit-used": ["12"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914229.863092,VS0,VE1208"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["572"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:30:30"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_bxu0h7"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:31 GMT"], "x-ratelimit-remaining": ["587.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "x-ratelimit-used": ["13"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914231.216287,VS0,VE87"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["569"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_bxu0h7"}, "recorded_at": "2019-06-07T13:30:31"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=22TxEEenydI2YJKjWj"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/random/?unique=0&raw_json=1"}, "response": {"body": {"string": "\n \n 302 Found\n \n \n

302 Found

\n The resource was found at https://oauth.reddit.com/r/preppers/.json?unique=0&raw_json=1&utm_campaign=redirect&utm_medium=desktop&utm_source=reddit&utm_name=random_subreddit;\nyou should be redirected automatically.\n\n\n \n", "encoding": "UTF-8"}, "headers": {"Content-Length": ["515"], "Via": ["1.1 varnish"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "X-Timer": ["S1559914232.279819,VS0,VE49"], "X-Moose": ["majestic"], "Connection": ["keep-alive"], "X-Served-By": ["cache-ewr18142-EWR"], "X-Cache-Hits": ["0"], "location": ["https://oauth.reddit.com/r/preppers/.json?unique=0&raw_json=1&utm_campaign=redirect&utm_medium=desktop&utm_source=reddit&utm_name=random_subreddit"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "cache-control": ["max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:30:32 GMT"], "Server": ["snooserv"], "Content-Type": ["text/html; charset=UTF-8"], "x-ua-compatible": ["IE=edge"]}, "status": {"message": "Found", "code": 302}, "url": "https://oauth.reddit.com/r/random/?unique=0&raw_json=1"}, "recorded_at": "2019-06-07T13:30:32"}], "recorded_with": "betamax/0.8.1"} \ No newline at end of file diff --git a/tests/cassettes/refresh_token.json b/tests/cassettes/refresh_token.json new file mode 100644 index 0000000..200adba --- /dev/null +++ b/tests/cassettes/refresh_token.json @@ -0,0 +1 @@ +{"http_interactions": [{"request": {"body": {"string": "grant_type=refresh_token&refresh_token=**********", "encoding": "utf-8"}, "headers": {"Content-Length": ["79"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["**********"]}, "method": "POST", "uri": "https://www.reddit.com/api/v1/access_token"}, "response": {"body": {"string": "{\"access_token\": \"**********\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"edit history identity mysubreddits privatemessages read report save submit subscribe vote\"}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["206"], "x-xss-protection": ["1; mode=block"], "X-Cache": ["MISS"], "x-content-type-options": ["nosniff"], "Set-Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms; Domain=reddit.com; Max-Age=63071999; Path=/; secure"], "Accept-Ranges": ["bytes"], "X-Timer": ["S1559914090.071557,VS0,VE46"], "X-Served-By": ["cache-lga21937-LGA"], "X-Moose": ["majestic"], "Connection": ["keep-alive"], "Via": ["1.1 varnish"], "X-Cache-Hits": ["0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "cache-control": ["max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:10 GMT"], "x-frame-options": ["SAMEORIGIN"], "Server": ["snooserv"], "Content-Type": ["application/json; charset=UTF-8"]}, "status": {"message": "OK", "code": 200}, "url": "https://www.reddit.com/api/v1/access_token"}, "recorded_at": "2019-06-07T13:28:10"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 3, \"children\": [{\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"emacs\", \"header_img\": \"https://f.thumbs.redditmedia.com/1CBmBnoqVxNCXdVS.png\", \"title\": \"M-x emacs-reddit\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/emacs\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 29865, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2qhwu\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"The extensible, customizable, self-documenting real-time display editor.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA sub-reddit for the timeless and infinitely powerful editor. \\u003Ca href=\\\"http://emacsrocks.com/\\\"\\u003EWant to see what Emacs is capable of?!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGet Emacs\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://ftp.gnu.org/gnu/emacs/windows/\\\"\\u003EWindows\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://emacsformacosx.com/\\\"\\u003EMac OS X\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGNU/Linux and BSD (Just get it from your distribution\\u0026#39;s package manager)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.gnu.org/software/emacs/#Obtaining\\\"\\u003EBuild it from source\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Resources\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/\\\"\\u003EEmacs Wiki\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://wikemacs.org/\\\"\\u003EWikEmacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://emacs.zeef.com/ehartc\\\"\\u003EEmacs Reference\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://shop.oreilly.com/product/9780596006488.do\\\"\\u003ELearning GNU Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf\\\"\\u003EEmacs Reference Card\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026amp;restrict_sr=on\\u0026amp;sort=new\\u0026amp;t=all\\\"\\u003EWeekly tips/tricks/etc threads\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Tutorials\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/\\\"\\u003EBeginner\\u2019s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/\\\"\\u003EAbsolute Beginner\\u0026#39;s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/\\\"\\u003EHow to Learn Emacs: A Hand-drawn One-pager for Beginners\\n\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERelated Subreddits\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/orgmode\\\"\\u003Er/orgmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/evilmode\\\"\\u003Er/evilmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/spacemacs\\\"\\u003Er/spacemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/planetemacs\\\"\\u003Er/planetemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUseful Emacs configuration files and distributions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/technomancy/better-defaults\\\"\\u003EBetter Defaults\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick pain-saver tip\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/emacs/MovingTheCtrlKey\\\"\\u003EPut the Caps Lock key to better use!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": [152, 50], \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1210079411.0, \"wls\": 6, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe extensible, customizable, self-documenting real-time display editor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2qhwu\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"A sub-reddit for the timeless and infinitely powerful editor. [Want to see what Emacs is capable of?!](http://emacsrocks.com/)\\n\\n**Get Emacs**\\n\\n* [Windows](http://ftp.gnu.org/gnu/emacs/windows/)\\n* [Mac OS X](http://emacsformacosx.com/)\\n* GNU/Linux and BSD (Just get it from your distribution's package manager)\\n* [Build it from source] (http://www.gnu.org/software/emacs/#Obtaining)\\n\\n**Emacs Resources**\\n\\n* [Emacs Wiki](http://www.emacswiki.org/)\\n* [WikEmacs](http://wikemacs.org/)\\n* [Emacs Reference](https://emacs.zeef.com/ehartc)\\n* [Learning GNU Emacs](http://shop.oreilly.com/product/9780596006488.do)\\n* [Emacs Reference Card](https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf)\\n* [Weekly tips/tricks/etc threads](/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026restrict_sr=on\\u0026sort=new\\u0026t=all)\\n\\n**Emacs Tutorials**\\n\\n* [Beginner\\u2019s Guide to Emacs](http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/)\\n* [Absolute Beginner's Guide to Emacs](http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/)\\n* [How to Learn Emacs: A Hand-drawn One-pager for Beginners\\n](http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/)\\n\\n**Related Subreddits**\\n\\n* r/orgmode\\n* r/evilmode\\n* r/spacemacs\\n* r/planetemacs\\n\\n**Useful Emacs configuration files and distributions**\\n\\n* [Better Defaults](https://github.com/technomancy/better-defaults)\\n\\n**Quick pain-saver tip**\\n\\n* [Put the Caps Lock key to better use!](http://www.emacswiki.org/emacs/MovingTheCtrlKey)\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": \"all_ads\", \"url\": \"/r/emacs/\", \"created_utc\": 1210050611.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": true, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"orgmode\", \"header_img\": null, \"title\": \"Org-mode\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/orgmode\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 4790, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2s5ak\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"[Org-mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EAbout Org mode\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EResources\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://orgmode.org/#docs\\\"\\u003EOfficial Documentation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/worg/\\\"\\u003ECommunity Documentation (Worg)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/guide/\\\"\\u003ECompact Org-mode Guide\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://lists.gnu.org/archive/html/emacs-orgmode/\\\"\\u003EOfficial Mailing list\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EIRC Channel: #org-mode on \\u003Ca href=\\\"http://freenode.net/\\\"\\u003EFreenode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMatrix: \\u003Ca href=\\\"https://matrix.to/#/#org-mode:matrix.org\\\"\\u003E#org-mode:matrix.org\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003ERelated Subreddits\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1287182517.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg-mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2s5ak\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"# About Org mode\\n\\n[Org mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\n\\n# Resources\\n\\n* [Official Documentation](http://orgmode.org/#docs)\\n* [Community Documentation (Worg)](https://orgmode.org/worg/)\\n* [Compact Org-mode Guide](https://orgmode.org/guide/)\\n* [Official Mailing list](http://lists.gnu.org/archive/html/emacs-orgmode/)\\n* IRC Channel: #org-mode on [Freenode](http://freenode.net/)\\n* Matrix: [#org-mode:matrix.org](https://matrix.to/#/#org-mode:matrix.org)\\n\\n# Related Subreddits\\n\\n* /r/emacs\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/orgmode/\", \"created_utc\": 1287153717.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"PostPreview\", \"header_img\": null, \"title\": \"Preview your Reddit posts\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/PostPreview\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 703, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2waml\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"A place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWhat this is\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAllowed posts\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYou can post whatever and however much you\\u0026#39;d like here, \\u003Cstrong\\u003Eas long as it conforms to \\u003Ca href=\\\"http://www.reddit.com/rules\\\"\\u003Ereddiquette\\u003C/a\\u003E\\u003C/strong\\u003E (eg. NO personal info, no alt accounts, etc). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPlease\\u003C/strong\\u003E utilize the Report button for content you feel breaks these rules, we can\\u0026#39;t sift through EVERYTHING, so your help is greatly appreciated.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpam filter\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESome posts/comments may be auto-rejected by Reddit\\u0026#39;s spam filter, despite the threshold set to \\u0026quot;Minimal\\u0026quot; here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you don\\u0026#39;t see you post show up, it\\u0026#39;s likely it got rejected. Message the mod mail and we can override it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHave fun previewing!\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"#24a0ed\", \"can_assign_user_flair\": true, \"created\": 1360563027.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": \"Try a text post!\", \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": \"confidence\", \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": true, \"id\": \"2waml\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"**What this is** \\n\\u003E A place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\n \\n**Allowed posts**\\n\\u003E You can post whatever and however much you'd like here, **as long as it conforms to [reddiquette](http://www.reddit.com/rules)** (eg. NO personal info, no alt accounts, etc). \\n\\u003E \\n\\u003E **Please** utilize the Report button for content you feel breaks these rules, we can't sift through EVERYTHING, so your help is greatly appreciated.\\n \\n**Spam filter** \\n\\u003E Some posts/comments may be auto-rejected by Reddit's spam filter, despite the threshold set to \\\"Minimal\\\" here. \\n\\u003E \\n\\u003E If you don't see you post show up, it's likely it got rejected. Message the mod mail and we can override it.\\n\\n**Have fun previewing!**\\n\\n \\n \", \"submit_link_label\": \"Test out a link!\", \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/PostPreview/\", \"created_utc\": 1360534227.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["18143"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:10 GMT"], "x-ratelimit-remaining": ["599.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21922-LGA"], "x-ratelimit-used": ["1"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914090.170875,VS0,VE155"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["110"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:28:10"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9omn4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559913776.0, \"send_replies\": true, \"parent_id\": \"t1_eq9lk8u\", \"score\": 1, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Take also look at Helm or Ivy.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9omn4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETake also look at Helm or Ivy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9omn4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942576.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9oiqt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559913688.0, \"send_replies\": true, \"parent_id\": \"t3_bxtwfg\", \"score\": 1, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003Ethat's not the case for Windows. I'm not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\n\\nWhile it is true that Windows does not ship with either grep or find, there are myriad of grep and find ports and versions available on Windows, so I don't see how is that a practical problem. Implementing efficient and fast search is not a trivial task, so I personally believe it is better to leave that to external utility such as [ag (silversearcher),](https://github.com/ggreer/the_silver_searcher) [ripgrep](https://github.com/BurntSushi/ripgrep) or maybe latest kid on the block, [hyperscan](https://github.com/intel/hyperscan).\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9oiqt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ethat\\u0026#39;s not the case for Windows. I\\u0026#39;m not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhile it is true that Windows does not ship with either grep or find, there are myriad of grep and find ports and versions available on Windows, so I don\\u0026#39;t see how is that a practical problem. Implementing efficient and fast search is not a trivial task, so I personally believe it is better to leave that to external utility such as \\u003Ca href=\\\"https://github.com/ggreer/the_silver_searcher\\\"\\u003Eag (silversearcher),\\u003C/a\\u003E \\u003Ca href=\\\"https://github.com/BurntSushi/ripgrep\\\"\\u003Eripgrep\\u003C/a\\u003E or maybe latest kid on the block, \\u003Ca href=\\\"https://github.com/intel/hyperscan\\\"\\u003Ehyperscan\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9oiqt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942488.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ob92\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559913518.0, \"send_replies\": true, \"parent_id\": \"t1_eq9lk8u\", \"score\": 1, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There is also `find-lisp-find-dired` which might be of help.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9ob92\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is also \\u003Ccode\\u003Efind-lisp-find-dired\\u003C/code\\u003E which might be of help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9ob92/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942318.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9mn9c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559912075.0, \"send_replies\": true, \"parent_id\": \"t1_eq8psyw\", \"score\": 1, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I think this fits my need. Thank you for the pointer.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq9mn9c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think this fits my need. Thank you for the pointer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq9mn9c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559940875.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9m7eg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BruceConnor\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559911680.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 1, \"author_fullname\": \"t2_ccvfk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"http://endlessparentheses.com/exclude-directories-from-grep.html\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9m7eg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://endlessparentheses.com/exclude-directories-from-grep.html\\\"\\u003Ehttp://endlessparentheses.com/exclude-directories-from-grep.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9m7eg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559940480.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559911855.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9lk8u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"andreyorst\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559911085.0, \"send_replies\": true, \"parent_id\": \"t1_eq9kr70\", \"score\": 1, \"author_fullname\": \"t2_w7w9e32\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks, I wasn't aware of any of these. This is about using imitating `grep`, but what about `find` - I guess `project-find-file` is what I'm looking for?\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9lk8u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I wasn\\u0026#39;t aware of any of these. This is about using imitating \\u003Ccode\\u003Egrep\\u003C/code\\u003E, but what about \\u003Ccode\\u003Efind\\u003C/code\\u003E - I guess \\u003Ccode\\u003Eproject-find-file\\u003C/code\\u003E is what I\\u0026#39;m looking for?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9lk8u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559939885.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9kr70\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559910307.0, \"send_replies\": true, \"parent_id\": \"t3_bxtwfg\", \"score\": 2, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There is `multi-occur`, `multi-isearch` and `project-find-regexp`.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9kr70\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is \\u003Ccode\\u003Emulti-occur\\u003C/code\\u003E, \\u003Ccode\\u003Emulti-isearch\\u003C/code\\u003E and \\u003Ccode\\u003Eproject-find-regexp\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9kr70/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559939107.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsyyo9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9k2zg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"user_was_not_found\", \"num_comments\": 22, \"can_mod_post\": false, \"created_utc\": 1559909649.0, \"send_replies\": true, \"parent_id\": \"t3_bsyyo9\", \"score\": 1, \"author_fullname\": \"t2_h1nda\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I take out my notebook and pencil. Open it up. Write notes. Put notebook away.\", \"link_title\": \"What is your note-taking workflow?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9k2zg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI take out my notebook and pencil. Open it up. Write notes. Put notebook away.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/eq9k2zg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/\", \"report_reasons\": null, \"link_author\": \"the_sealed_tanker\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/\", \"created\": 1559938449.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9jwip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"5heikki\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559909470.0, \"send_replies\": true, \"parent_id\": \"t1_eq9hme8\", \"score\": 3, \"author_fullname\": \"t2_h43er\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"No, the zero is great, very easy to tell apart from O. Hack is the best :)\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9jwip\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, the zero is great, very easy to tell apart from O. Hack is the best :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9jwip/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs shill\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559938270.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9azu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9jk7q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"user_was_not_found\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559909120.0, \"send_replies\": true, \"parent_id\": \"t3_bw9azu\", \"score\": 1, \"author_fullname\": \"t2_h1nda\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[mine](https://raw.githubusercontent.com/ryanolsonx/.emacs.d/master/init.el)\\n\\nI've been really going minimalist lately and this suffices.\", \"link_title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"author_flair_css_class\": null, \"name\": \"t1_eq9jk7q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://raw.githubusercontent.com/ryanolsonx/.emacs.d/master/init.el\\\"\\u003Emine\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been really going minimalist lately and this suffices.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/eq9jk7q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"report_reasons\": null, \"link_author\": \"Rainymood_XI\", \"author_flair_text\": null, \"link_url\": \"https://github.com/Rainymood/dotemacs\", \"created\": 1559937920.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9i5r5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"__i_forgot_my_name__\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559907625.0, \"send_replies\": true, \"parent_id\": \"t1_eq5k72d\", \"score\": 1, \"author_fullname\": \"t2_3agebbhs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"In Firefox I literally removed the tab bar. I feel tabs are just not useful. I don't typically need to see all the tabs, and if I want to go back to a previous or next tab, then I really don't need to see it do I? If I want to switch back to a tab I remember then I just go ahead and search it, otherwise I just maintain one tab and that's typically fine.\\n\\nI used to use tabs as a todo list and that's just not great in practice, I end up with far too many tabs, because I would never close anything. If I want something very close by, I'll typically open another window now, and from that I can actually cross reference, and with tabs out of the way, I can stack them one on top of the other.\\n\\nI never realized how much I could do just from the URL bar in Firefox, but you can switch tabs, search for partial URLs, search history, search bookmarks, create search queries with keywords much like DDG tags, there's just so much I never realized I could do, because I would just heavily depends on tabs, and keeping things in view.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9i5r5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn Firefox I literally removed the tab bar. I feel tabs are just not useful. I don\\u0026#39;t typically need to see all the tabs, and if I want to go back to a previous or next tab, then I really don\\u0026#39;t need to see it do I? If I want to switch back to a tab I remember then I just go ahead and search it, otherwise I just maintain one tab and that\\u0026#39;s typically fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used to use tabs as a todo list and that\\u0026#39;s just not great in practice, I end up with far too many tabs, because I would never close anything. If I want something very close by, I\\u0026#39;ll typically open another window now, and from that I can actually cross reference, and with tabs out of the way, I can stack them one on top of the other.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI never realized how much I could do just from the URL bar in Firefox, but you can switch tabs, search for partial URLs, search history, search bookmarks, create search queries with keywords much like DDG tags, there\\u0026#39;s just so much I never realized I could do, because I would just heavily depends on tabs, and keeping things in view.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq9i5r5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559936425.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hwei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559907338.0, \"send_replies\": true, \"parent_id\": \"t1_eq9hdw0\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks!!\\n\\nIn normal mode, \\u2018p\\u2019 is enough to save the game, in reverse mode, \\u2018p RET\\u2019 is needed. Since RET is ignored in normal mode, I decided to show the same intructions on the header line for both modes, but I should probably change that. I couldn\\u2019t find a way of making \\u2018p\\u2019 cancel the prompt when using completing-read (when playing reverse mode), so RET is also needed to read it in.\\n\\nI like the idea of showing the other correct keys!I\\u2019ll add it to my todo list.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hwei\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn normal mode, \\u2018p\\u2019 is enough to save the game, in reverse mode, \\u2018p RET\\u2019 is needed. Since RET is ignored in normal mode, I decided to show the same intructions on the header line for both modes, but I should probably change that. I couldn\\u2019t find a way of making \\u2018p\\u2019 cancel the prompt when using completing-read (when playing reverse mode), so RET is also needed to read it in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI like the idea of showing the other correct keys!I\\u2019ll add it to my todo list.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9hwei/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559936138.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hme8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jackjackk0\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559907026.0, \"send_replies\": true, \"parent_id\": \"t1_eq9f4zn\", \"score\": 1, \"author_fullname\": \"t2_q52rf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"thanks, just tried it and it looks pleasant. Maybe only the zero is a bit weird!\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hme8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks, just tried it and it looks pleasant. Maybe only the zero is a bit weird!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9hme8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559935826.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hdw0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rekIfdyt2\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559906750.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 2, \"author_fullname\": \"t2_7jmd3dk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is amazingly cool and educationally quite valuable!\\n\\nRegarding pausing the quiz \\u2014 isn't just `p` (not `p RET`) sufficient?\\n\\nOne suggestion (no pressure to implement it, just in case you're looking for ideas): when there's more than one possible answer and the user guesses correctly, display the remaining possible answers.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hdw0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is amazingly cool and educationally quite valuable!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding pausing the quiz \\u2014 isn\\u0026#39;t just \\u003Ccode\\u003Ep\\u003C/code\\u003E (not \\u003Ccode\\u003Ep RET\\u003C/code\\u003E) sufficient?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne suggestion (no pressure to implement it, just in case you\\u0026#39;re looking for ideas): when there\\u0026#39;s more than one possible answer and the user guesses correctly, display the remaining possible answers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9hdw0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559935550.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9h5sl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eugenemah\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559906488.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 1, \"author_fullname\": \"t2_6urz5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\+1 for Hack\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9h5sl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E+1 for Hack\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9h5sl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559935288.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9h2zl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"loskutak-the-ptak\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559906394.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_ke7apcf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Don't miss https://github.com/alf/ob-restclient.el ! With that you can use restclient in org source code blocks.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq9h2zl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDon\\u0026#39;t miss \\u003Ca href=\\\"https://github.com/alf/ob-restclient.el\\\"\\u003Ehttps://github.com/alf/ob-restclient.el\\u003C/a\\u003E ! With that you can use restclient in org source code blocks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq9h2zl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559935194.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g32m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Asteridae\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559905158.0, \"send_replies\": true, \"parent_id\": \"t1_eq9ez1l\", \"score\": 1, \"author_fullname\": \"t2_o2f0w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have a similar setup: I don't store anything in the `.emacs.d` folder, instead I have a minimalistic `.emacs` that loads the `init.el` located in my `~/git/config/emacs` folder.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g32m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a similar setup: I don\\u0026#39;t store anything in the \\u003Ccode\\u003E.emacs.d\\u003C/code\\u003E folder, instead I have a minimalistic \\u003Ccode\\u003E.emacs\\u003C/code\\u003E that loads the \\u003Ccode\\u003Einit.el\\u003C/code\\u003E located in my \\u003Ccode\\u003E~/git/config/emacs\\u003C/code\\u003E folder.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9g32m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559933958.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g1sf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559905111.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Like many others already said, I usually don't bother about many buffers, too. However, one thing which did bother me was Magit's (good and consistent) buffer naming which results in worse buffer name completion because they are so similar. Especially, I frequently do one-shot changes to different repositories and then kill the Magit status buffer which left all auxiliary Magit buffers (process, diffs, log, etc.) alive.\\n\\n\\u0026#x200B;\\n\\nThen I learned that you actually kill Magit buffers with `C-u q` instead of `C-x k` and added that a double-prefix argument (`C-u C-u q`) now kills the current Magit status buffer and all related Magit buffers of the current project. That's at least in the current MELPA version of Magit.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g1sf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELike many others already said, I usually don\\u0026#39;t bother about many buffers, too. However, one thing which did bother me was Magit\\u0026#39;s (good and consistent) buffer naming which results in worse buffer name completion because they are so similar. Especially, I frequently do one-shot changes to different repositories and then kill the Magit status buffer which left all auxiliary Magit buffers (process, diffs, log, etc.) alive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I learned that you actually kill Magit buffers with \\u003Ccode\\u003EC-u q\\u003C/code\\u003E instead of \\u003Ccode\\u003EC-x k\\u003C/code\\u003E and added that a double-prefix argument (\\u003Ccode\\u003EC-u C-u q\\u003C/code\\u003E) now kills the current Magit status buffer and all related Magit buffers of the current project. That\\u0026#39;s at least in the current MELPA version of Magit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq9g1sf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559933911.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559904943.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9fmu4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Asteridae\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559904560.0, \"send_replies\": true, \"parent_id\": \"t1_eq9ex29\", \"score\": 1, \"author_fullname\": \"t2_o2f0w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is exactly what I do! I store the Emacs packages and my config in the same Git repository, when searching my config I use `projectile-grep` to prevent searching in my `packages` folder.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9fmu4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is exactly what I do! I store the Emacs packages and my config in the same Git repository, when searching my config I use \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E to prevent searching in my \\u003Ccode\\u003Epackages\\u003C/code\\u003E folder.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9fmu4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559933360.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9f4zn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"irmanp\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559903880.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 4, \"author_fullname\": \"t2_30ctkuyb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I like to use Hack:\\nhttps://sourcefoundry.org/hack/\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9f4zn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like to use Hack:\\n\\u003Ca href=\\\"https://sourcefoundry.org/hack/\\\"\\u003Ehttps://sourcefoundry.org/hack/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9f4zn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559932680.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ez1l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559903646.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 2, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I use symlinks and keep all my code \\u0026 scripts in their own directory.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9ez1l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use symlinks and keep all my code \\u0026amp; scripts in their own directory.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9ez1l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559932446.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ex29\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"flexibeast\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559903567.0, \"send_replies\": true, \"parent_id\": \"t1_eq9eb42\", \"score\": 2, \"author_fullname\": \"t2_3tmsj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Ah, fair enough. Well, unless someone else knows of existing functionality to do this, you could write a wrapper function around (in the specific case you mentioned) `projectile-grep` which asks the user for values for the variables `projectile-ignored-directories` and `projectile-ignored-files`, then calls `projectile-grep`, after which it resets those variables to their old values.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq9ex29\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAh, fair enough. Well, unless someone else knows of existing functionality to do this, you could write a wrapper function around (in the specific case you mentioned) \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E which asks the user for values for the variables \\u003Ccode\\u003Eprojectile-ignored-directories\\u003C/code\\u003E and \\u003Ccode\\u003Eprojectile-ignored-files\\u003C/code\\u003E, then calls \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E, after which it resets those variables to their old values.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9ex29/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"org-vcard pulseaudio-control ewmctrl\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559932367.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9escc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SlowValue\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559903371.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_1rke6ck4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I understood your question the following way: \\nYou want a function `switch-to-buffer-dwim`, which is working in following order (name completion aside):\\n\\n 1. switch to buffer, if buffer with given name is available\\n 2. when no buffer with that name exists, then open a file with this name in current directory\\n 3. if both is wrong, what next?\\n\\nLast point is important! What should be done next? Should be searched for a file with that name recursively? Should a file be created (and where should the file be created)? Should a buffer without file be created? If a file gets created, how do you create new buffers (and vice versa)? \\n\\n\\nIs this, what you are searching for?\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9escc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI understood your question the following way:\\u003Cbr/\\u003E\\nYou want a function \\u003Ccode\\u003Eswitch-to-buffer-dwim\\u003C/code\\u003E, which is working in following order (name completion aside):\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Eswitch to buffer, if buffer with given name is available\\u003C/li\\u003E\\n\\u003Cli\\u003Ewhen no buffer with that name exists, then open a file with this name in current directory\\u003C/li\\u003E\\n\\u003Cli\\u003Eif both is wrong, what next?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ELast point is important! What should be done next? Should be searched for a file with that name recursively? Should a file be created (and where should the file be created)? Should a buffer without file be created? If a file gets created, how do you create new buffers (and vice versa)? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this, what you are searching for?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq9escc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559932171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ekt0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559903055.0, \"send_replies\": true, \"parent_id\": \"t1_eq96zwx\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It uses both the default keys and your customizations. By default, the key/command list is read from a buffer set to Fundamental Mode.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9ekt0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt uses both the default keys and your customizations. By default, the key/command list is read from a buffer set to Fundamental Mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9ekt0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559931855.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ejbn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559902995.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 2, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Absolutely! really good idea.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9ejbn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAbsolutely! really good idea.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq9ejbn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559931795.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9edsg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559902767.0, \"send_replies\": true, \"parent_id\": \"t1_eq97l5i\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks!\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9edsg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9edsg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559931567.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9eb42\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vfclists\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559902659.0, \"send_replies\": true, \"parent_id\": \"t1_eq99y5z\", \"score\": 1, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Actually I prefer something that will enable me to do it on the fly, ie with a dialog for that particular instance\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9eb42\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EActually I prefer something that will enable me to do it on the fly, ie with a dialog for that particular instance\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9eb42/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559931459.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrwro\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cg2j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"acheronuk\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559899671.0, \"send_replies\": true, \"parent_id\": \"t3_bxrwro\", \"score\": 2, \"author_fullname\": \"t2_11hs72\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It appears that .info files are supplied in a separate package/source **emacs-common-non-dfsg**.\\n\\nFile list: https://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\n\\nIf installing that does not help, then you can install the build depends for emacs on K/Ubuntu by going to Muon and doing \\u003E Settings \\u003E Configure software sources \\u003E Then tick the source code box. Then in a terminal do:\\n\\n sudo apt build-dep emacs\\n\\nThat will get all the direct build dependencies for emacs. It will also get you tools to build .deb packages, which you won't need, but do no harm.\", \"link_title\": \"Roadblock when installing Emacs 26.2 on kubuntu 19.04\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cg2j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt appears that .info files are supplied in a separate package/source \\u003Cstrong\\u003Eemacs-common-non-dfsg\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile list: \\u003Ca href=\\\"https://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\\"\\u003Ehttps://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf installing that does not help, then you can install the build depends for emacs on K/Ubuntu by going to Muon and doing \\u0026gt; Settings \\u0026gt; Configure software sources \\u0026gt; Then tick the source code box. Then in a terminal do:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Esudo apt build-dep emacs\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThat will get all the direct build dependencies for emacs. It will also get you tools to build .deb packages, which you won\\u0026#39;t need, but do no harm.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/eq9cg2j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"report_reasons\": null, \"link_author\": \"granti128\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"created\": 1559928471.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cfwr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ballfresno\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559899664.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_2b5qxk6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I do all of my writing in org. The majority is targeting PDF export, either as articles for publication or for presentations. I almost always make extensive use of org-babel within these documents. All graphics will be done this way, including using gnuplot, plantuml, ditaa, etc. Depending on the topic, the results might also be generated from org-babel src blocks in a number of different languages including octave, Julia, R, as well as text processing using shell or awk blocks.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cfwr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do all of my writing in org. The majority is targeting PDF export, either as articles for publication or for presentations. I almost always make extensive use of org-babel within these documents. All graphics will be done this way, including using gnuplot, plantuml, ditaa, etc. Depending on the topic, the results might also be generated from org-babel src blocks in a number of different languages including octave, Julia, R, as well as text processing using shell or awk blocks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq9cfwr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559928464.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx54uk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9bgm9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559898010.0, \"send_replies\": true, \"parent_id\": \"t1_eq73rjt\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\\\u003EUse-package forms an abstraction upon which it's hard to debug\\n\\n\\u0026#x200B;\\n\\nM-x pp-macroexpand-last-sexp at you service\", \"link_title\": \"Even Better 'Better Defaults'\", \"author_flair_css_class\": null, \"name\": \"t1_eq9bgm9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;Use-package forms an abstraction upon which it\\u0026#39;s hard to debug\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EM-x pp-macroexpand-last-sexp at you service\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/eq9bgm9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://github.com/ianpan870102/.emacs.d\", \"created\": 1559926810.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9a23n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ibizaman\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559895652.0, \"send_replies\": true, \"parent_id\": \"t1_eq7g89b\", \"score\": 1, \"author_fullname\": \"t2_sxb1k\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"With org-mode you get org-babel. So say you have a code example, you could actually run it from the org file, get the result and insert both in the LaTeX export.\\n\\nOrg-mode understands tables too. You can have formulas in tables referencing other cells. The whole table is dynamic \\n\\nAlso, emacs have a symbolic calculator. Very neat when combined with tables.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq9a23n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith org-mode you get org-babel. So say you have a code example, you could actually run it from the org file, get the result and insert both in the LaTeX export.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg-mode understands tables too. You can have formulas in tables referencing other cells. The whole table is dynamic \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, emacs have a symbolic calculator. Very neat when combined with tables.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq9a23n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559924452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq99y5z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"flexibeast\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559895474.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 2, \"author_fullname\": \"t2_3tmsj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Assuming that a package uses `defcustom` to define variables intended to be user-customisable, you can do `M-x customize-group` and specify that package's customize-group to browse for any such variables.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq99y5z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAssuming that a package uses \\u003Ccode\\u003Edefcustom\\u003C/code\\u003E to define variables intended to be user-customisable, you can do \\u003Ccode\\u003EM-x customize-group\\u003C/code\\u003E and specify that package\\u0026#39;s customize-group to browse for any such variables.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq99y5z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"org-vcard pulseaudio-control ewmctrl\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559924274.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq99y5p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ibizaman\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559895474.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 1, \"author_fullname\": \"t2_sxb1k\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Recent versions of grep support `--exclude-dir` so it must be possible.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq99y5p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERecent versions of grep support \\u003Ccode\\u003E--exclude-dir\\u003C/code\\u003E so it must be possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq99y5p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559924274.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq97l5i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grimscythe_\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559891747.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 3, \"author_fullname\": \"t2_17fhdh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Great work!\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq97l5i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreat work!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq97l5i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559920547.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq97j20\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"vfclists\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559891659.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 5, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sad to hear of his passing.\\n\\nI remember him from this thread - [Request: The Future of PHP Mode (TL;DR Near Bottom) : emacs](https://old.reddit.com/r/emacs/comments/6pchsm/request_the_future_of_php_mode_tldr_near_bottom/)\\n\\nIt led me to write a whole blog post on open source funding issues.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": null, \"name\": \"t1_eq97j20\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESad to hear of his passing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI remember him from this thread - \\u003Ca href=\\\"https://old.reddit.com/r/emacs/comments/6pchsm/request_the_future_of_php_mode_tldr_near_bottom/\\\"\\u003ERequest: The Future of PHP Mode (TL;DR Near Bottom) : emacs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt led me to write a whole blog post on open source funding issues.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq97j20/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559920459.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq96zwx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"FLMatt\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559890860.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 4, \"author_fullname\": \"t2_14rw8c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Does it use the default keys or does it take into consideration your customizations?\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq96zwx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes it use the default keys or does it take into consideration your customizations?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq96zwx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559919660.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_brp26g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq96tmb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xtifr\", \"num_comments\": 69, \"can_mod_post\": false, \"created_utc\": 1559890596.0, \"send_replies\": true, \"parent_id\": \"t1_eoo2rr0\", \"score\": 1, \"author_fullname\": \"t2_3bi8nddx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"With tramp, commands like M-x grep and M-x compile run on the remote host, which is a whole lot faster, and, in the case of compiles, may actually mean the difference between working and not working. :)\\n\\n\\u0026#x200B;\\n\\n(Which is not to say that sshfs isn't quite handy...)\", \"link_title\": \"What advantages does Emacs have over Neovim + Tmux?\", \"author_flair_css_class\": null, \"name\": \"t1_eq96tmb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith tramp, commands like M-x grep and M-x compile run on the remote host, which is a whole lot faster, and, in the case of compiles, may actually mean the difference between working and not working. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Which is not to say that sshfs isn\\u0026#39;t quite handy...)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/eq96tmb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/\", \"report_reasons\": null, \"link_author\": \"seagoj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/\", \"created\": 1559919396.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq93rtr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vitorqb23\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559884982.0, \"send_replies\": true, \"parent_id\": \"t1_eq91pn4\", \"score\": 1, \"author_fullname\": \"t2_2nkdd29t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"So far I can not tell the difference.\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq93rtr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo far I can not tell the difference.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq93rtr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559913782.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq92lak\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559883630.0, \"send_replies\": true, \"parent_id\": \"t1_eq92kbd\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Oh, and apparently PlantUML, if that's your thing\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq92lak\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh, and apparently PlantUML, if that\\u0026#39;s your thing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq92lak/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559912430.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq92kbd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559883600.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gal6\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You got it, that part is all LaTeX, but the org exporter recognizes it if you use \\\\\\\\begin{} and you don't even need a source block. Also very nice Beamer integration.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq92kbd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou got it, that part is all LaTeX, but the org exporter recognizes it if you use \\\\begin{} and you don\\u0026#39;t even need a source block. Also very nice Beamer integration.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq92kbd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559912400.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq91pn4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Michaelmrose\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559882652.0, \"send_replies\": true, \"parent_id\": \"t1_eq6btfk\", \"score\": 1, \"author_fullname\": \"t2_8yohe\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Is lucid snappier than gtk?\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq91pn4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs lucid snappier than gtk?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq91pn4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559911452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9049n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"ibillius\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559880936.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 7, \"author_fullname\": \"t2_8no13\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not aware of anything like that but that's a lovely idea. I'm sorry to hear about his passing. PHP mode was very useful to me in my last job and I even briefly corresponded with Eric on Reddit about Emacs.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9049n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not aware of anything like that but that\\u0026#39;s a lovely idea. I\\u0026#39;m sorry to hear about his passing. PHP mode was very useful to me in my last job and I even briefly corresponded with Eric on Reddit about Emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq9049n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559909736.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8qohc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"KrishnaKrGopal\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559872674.0, \"send_replies\": true, \"parent_id\": \"t1_eq4t18o\", \"score\": 1, \"author_fullname\": \"t2_1zt5mges\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes, I use this method too. Emacs is not so heavy weight for today's hardware that a few instances hurt.\\n\\nTo add to it, I have a few server names that are dedicated : org-mode has its own Emacs server : used by commands to capture via org-protocol. For coding, each project has its own server : named after the main Git branch. And there is a default server : for misc usage.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8qohc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, I use this method too. Emacs is not so heavy weight for today\\u0026#39;s hardware that a few instances hurt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo add to it, I have a few server names that are dedicated : org-mode has its own Emacs server : used by commands to capture via org-protocol. For coding, each project has its own server : named after the main Git branch. And there is a default server : for misc usage.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq8qohc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559901474.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bn3qax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8qhil\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"im_not_juicing\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1559872512.0, \"send_replies\": true, \"parent_id\": \"t1_eq87ssp\", \"score\": 1, \"author_fullname\": \"t2_22kx841q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \":D\", \"link_title\": \"where, might you say, is the most \\\"super\\\" of a \\\"super cua\\\" package?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8qhil\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E:D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/eq8qhil/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"created\": 1559901312.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8psyw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"reddit_uname\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871929.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gboh\", \"score\": 2, \"author_fullname\": \"t2_byz78\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This might be what you're looking for: [https://www.gnu.org/software/emacs/manual/html\\\\_mono/autotype.html#Autoinserting](https://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting)\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8psyw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis might be what you\\u0026#39;re looking for: \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting\\\"\\u003Ehttps://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8psyw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559900729.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8p65z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sugarbridalsentry\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871395.0, \"send_replies\": true, \"parent_id\": \"t1_eq09l4k\", \"score\": 1, \"author_fullname\": \"t2_i9gakgq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hey neat! It's simple, and does the job -- way better better than I could have written. \\n\\nI was the one asking about it last week -- someone recommended `iy-go-to-char`, which I've been using. Lets you repeat the search by hitting the character again, and works backwards to. A+, would `'require` again.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8p65z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey neat! It\\u0026#39;s simple, and does the job -- way better better than I could have written. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was the one asking about it last week -- someone recommended \\u003Ccode\\u003Eiy-go-to-char\\u003C/code\\u003E, which I\\u0026#39;ve been using. Lets you repeat the search by hitting the character again, and works backwards to. A+, would \\u003Ccode\\u003E\\u0026#39;require\\u003C/code\\u003E again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8p65z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559900195.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvweh8\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8ov1a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grettke\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559871136.0, \"send_replies\": true, \"parent_id\": \"t1_eq2n87o\", \"score\": 1, \"author_fullname\": \"t2_3fcko\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thank you for sharing that thoughtful advice.\\n\\nWhile I don't have restrictions on my writing style, I do use [WriteGood](https://github.com/bnbeckwith/writegood-mode), [Langtool](https://github.com/mhayashi1120/Emacs-langtool), and [Proselint](https://proselint.com/) liberally.\\n\\nThe call outs on adverbs and adjectives are helpful!\", \"link_title\": \"Writing Academic Papers in Org-mode\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq8ov1a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for sharing that thoughtful advice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile I don\\u0026#39;t have restrictions on my writing style, I do use \\u003Ca href=\\\"https://github.com/bnbeckwith/writegood-mode\\\"\\u003EWriteGood\\u003C/a\\u003E, \\u003Ca href=\\\"https://github.com/mhayashi1120/Emacs-langtool\\\"\\u003ELangtool\\u003C/a\\u003E, and \\u003Ca href=\\\"https://proselint.com/\\\"\\u003EProselint\\u003C/a\\u003E liberally.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe call outs on adverbs and adjectives are helpful!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/eq8ov1a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"doulos05\", \"author_flair_text\": \"Org2Blog Maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"created\": 1559899936.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8outf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sugarbridalsentry\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871131.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gboh\", \"score\": 1, \"author_fullname\": \"t2_i9gakgq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I've used a function like this one to create a buffer for a blog -- it makes a new buffer with header information. To get the different elements to show up on different lines, you just add the newline `\\\\n`\\n\\n ;; Pop a blog buffer\\n (defun blog-buffer ()\\n \\\"Creates a new buffer with the basic title/date header needed by `org-static-blog`\\\"\\n (interactive)\\n (let (($buf (generate-new-buffer \\\"untitled\\\")))\\n (switch-to-buffer $buf)\\n (insert (format-time-string\\n \\\"#+TITLE:\\\\n#+DATE: \\u003C%Y-%m-%d %T %A\\u003E\\\"))\\n (funcall 'org-mode)\\n (setq buffer-offer-save t)))\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8outf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve used a function like this one to create a buffer for a blog -- it makes a new buffer with header information. To get the different elements to show up on different lines, you just add the newline \\u003Ccode\\u003E\\\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Pop a blog buffer\\n(defun blog-buffer ()\\n \\u0026quot;Creates a new buffer with the basic title/date header needed by `org-static-blog`\\u0026quot;\\n (interactive)\\n (let (($buf (generate-new-buffer \\u0026quot;untitled\\u0026quot;)))\\n (switch-to-buffer $buf)\\n (insert (format-time-string\\n \\u0026quot;#+TITLE:\\\\n#+DATE: \\u0026lt;%Y-%m-%d %T %A\\u0026gt;\\u0026quot;))\\n (funcall \\u0026#39;org-mode)\\n (setq buffer-offer-save t)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8outf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559899931.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8ofb1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grettke\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559870776.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_3fcko\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"From my perspective Org is an information management system that includes publishing, LaTeX is a publishing solution and not more than that, so it isn't Org versus LaTeX, it is Org and LaTeX. Is that how you are seeing them? Or what aspects do you see them as competing against each other on?\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq8ofb1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFrom my perspective Org is an information management system that includes publishing, LaTeX is a publishing solution and not more than that, so it isn\\u0026#39;t Org versus LaTeX, it is Org and LaTeX. Is that how you are seeing them? Or what aspects do you see them as competing against each other on?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq8ofb1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": \"Org2Blog Maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559899576.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8nzic\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559870405.0, \"send_replies\": true, \"parent_id\": \"t1_eq8kyv3\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"My take on not even having to look is that I'd rather a menu I don't need to look at didn't appear at all. :)\\n\\nThe particular thing, and perhaps it's customizable, that bugged me about Ivy's key bindings is that I had to use a special keystroke when I actually wanted the thing I typed, to not be given the best match instead. Magic tilde got me quite a few times before I turned it off too. With Helm, it was the tab thing of course. I like Ivy a bit better than Helm, but really I don't want a menu until I need a menu, at which point I'll take a nice big two-column *Completions* buffer.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8nzic\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy take on not even having to look is that I\\u0026#39;d rather a menu I don\\u0026#39;t need to look at didn\\u0026#39;t appear at all. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe particular thing, and perhaps it\\u0026#39;s customizable, that bugged me about Ivy\\u0026#39;s key bindings is that I had to use a special keystroke when I actually wanted the thing I typed, to not be given the best match instead. Magic tilde got me quite a few times before I turned it off too. With Helm, it was the tab thing of course. I like Ivy a bit better than Helm, but really I don\\u0026#39;t want a menu until I need a menu, at which point I\\u0026#39;ll take a nice big two-column \\u003Cem\\u003ECompletions\\u003C/em\\u003E buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8nzic/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559899205.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8kyv3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bump_bump_bump\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559867889.0, \"send_replies\": true, \"parent_id\": \"t1_eq8flnq\", \"score\": 2, \"author_fullname\": \"t2_33ybbkqd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E I'd really rather manually tab complete than have the flashing menus and weird keystrokes\\n\\nSorry, I didn't read that closely enough. \\n\\nI can't imagine doing without fuzzy matching myself, but I can appreciate disliking the rapidly changing matches. \\n\\nMy usage mode is usually to just type off a few fragments that I know will work and *only then* pay attention to the results. Often I don't even have to look, as I know the few keystrokes that get me the exact match I want. e.g. I know the function `projectile-browse-dirty-projects` is useful - and `M-x dirt RET` does it.\\n\\nI don't know about weird keystrokes though - in ivy tab works as you'd expect (unlike helm), and if you set the height to fixed (`ivy-fixed-height-minibuffer`) it won't jump around. The very thing that draws people to ivy over helm is that it's relatively unobtrusive.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8kyv3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI\\u0026#39;d really rather manually tab complete than have the flashing menus and weird keystrokes\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESorry, I didn\\u0026#39;t read that closely enough. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can\\u0026#39;t imagine doing without fuzzy matching myself, but I can appreciate disliking the rapidly changing matches. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy usage mode is usually to just type off a few fragments that I know will work and \\u003Cem\\u003Eonly then\\u003C/em\\u003E pay attention to the results. Often I don\\u0026#39;t even have to look, as I know the few keystrokes that get me the exact match I want. e.g. I know the function \\u003Ccode\\u003Eprojectile-browse-dirty-projects\\u003C/code\\u003E is useful - and \\u003Ccode\\u003EM-x dirt RET\\u003C/code\\u003E does it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t know about weird keystrokes though - in ivy tab works as you\\u0026#39;d expect (unlike helm), and if you set the height to fixed (\\u003Ccode\\u003Eivy-fixed-height-minibuffer\\u003C/code\\u003E) it won\\u0026#39;t jump around. The very thing that draws people to ivy over helm is that it\\u0026#39;s relatively unobtrusive.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8kyv3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559896689.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8jia3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559866675.0, \"send_replies\": true, \"parent_id\": \"t1_eq8gjie\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sounds worth checking out UI-wise anyway. Thanks for the tip!\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8jia3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESounds worth checking out UI-wise anyway. Thanks for the tip!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8jia3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559895475.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559865162.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8gjie\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"00-11\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559864960.0, \"send_replies\": true, \"parent_id\": \"t1_eq8flnq\", \"score\": 1, \"author_fullname\": \"t2_3upsyt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[Icicles](https://www.emacswiki.org/emacs/Icicles) (just like Helm, Ivy, etc. but a decade earlier ;-)) lets you include recent files during buffer-name completion. \\n\\nAnd by default there is no flashing, automatic completion etc. - you hit `TAB` (or `S-TAB`) to complete on demand, just as you usually do with any buffer-completion command.\\n\\nInclusion of recent files during buffer-name completion is controlled by option `icicle-buffer-include-recent-files-nflag`:\\n\\n\\u003E `icicle-buffer-include-recent-files-nflag` is a variable defined in `icicles-opt.el`.\\n\\n\\u003E Its value is -2305843009213693951\\n\\n\\u003E Documentation:\\n\\n\\u003E An integer \\u003E 0 means include recent files during buffer-name completion.\\nThis means file names managed by `recentf-mode` - see (emacs) `File\\nConveniences`. An integer \\u003C 0 means do not include them.\\n\\n\\u003E When they are included, the value is the maximum number of such\\ncandidates to include.\\n\\n\\u003E You can toggle this option (between + and -) using `C-x R` in the\\nminibuffer during buffer-name completion.\\n\\nSee [Icicles - Buffer-Name Input](https://www.emacswiki.org/emacs/Icicles_-_Buffer-Name_Input).\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8gjie\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/Icicles\\\"\\u003EIcicles\\u003C/a\\u003E (just like Helm, Ivy, etc. but a decade earlier ;-)) lets you include recent files during buffer-name completion. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd by default there is no flashing, automatic completion etc. - you hit \\u003Ccode\\u003ETAB\\u003C/code\\u003E (or \\u003Ccode\\u003ES-TAB\\u003C/code\\u003E) to complete on demand, just as you usually do with any buffer-completion command.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInclusion of recent files during buffer-name completion is controlled by option \\u003Ccode\\u003Eicicle-buffer-include-recent-files-nflag\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Ccode\\u003Eicicle-buffer-include-recent-files-nflag\\u003C/code\\u003E is a variable defined in \\u003Ccode\\u003Eicicles-opt.el\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIts value is -2305843009213693951\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDocumentation:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn integer \\u0026gt; 0 means include recent files during buffer-name completion.\\nThis means file names managed by \\u003Ccode\\u003Erecentf-mode\\u003C/code\\u003E - see (emacs) \\u003Ccode\\u003EFile\\nConveniences\\u003C/code\\u003E. An integer \\u0026lt; 0 means do not include them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen they are included, the value is the maximum number of such\\ncandidates to include.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can toggle this option (between + and -) using \\u003Ccode\\u003EC-x R\\u003C/code\\u003E in the\\nminibuffer during buffer-name completion.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESee \\u003Ca href=\\\"https://www.emacswiki.org/emacs/Icicles_-_Buffer-Name_Input\\\"\\u003EIcicles - Buffer-Name Input\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8gjie/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559893760.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8flnq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559864457.0, \"send_replies\": true, \"parent_id\": \"t1_eq89p5p\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yeah, I've tried Ivy for a while at least, and fooled with others. I wasn't sure how to say it but that kind of thing is what I meant by \\\"do-everything completion system\\\". I'd really rather manually tab complete than have the flashing menus and weird keystrokes, and with what these packages want to provide, neither is avoidable. I like switch-to-buffer and find-file, I just don't like remembering which to use.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8flnq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, I\\u0026#39;ve tried Ivy for a while at least, and fooled with others. I wasn\\u0026#39;t sure how to say it but that kind of thing is what I meant by \\u0026quot;do-everything completion system\\u0026quot;. I\\u0026#39;d really rather manually tab complete than have the flashing menus and weird keystrokes, and with what these packages want to provide, neither is avoidable. I like switch-to-buffer and find-file, I just don\\u0026#39;t like remembering which to use.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8flnq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559893257.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559866729.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8cmxs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559862918.0, \"send_replies\": true, \"parent_id\": \"t1_eq894nu\", \"score\": 0, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not really sold on using recent files for this... I can see how it would mostly work, but simply trying to switch buffers often works too. It seems like less hassle in the long run to write a command that does something like trying to complete a buffer name, then searching the current directory for completion, then trying locate. I'm just seeing if that command is out there, before I really think about working on it.\\n\\nEDIT: And of course the recent files list may contain deleted files.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8cmxs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not really sold on using recent files for this... I can see how it would mostly work, but simply trying to switch buffers often works too. It seems like less hassle in the long run to write a command that does something like trying to complete a buffer name, then searching the current directory for completion, then trying locate. I\\u0026#39;m just seeing if that command is out there, before I really think about working on it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: And of course the recent files list may contain deleted files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8cmxs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559891718.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8bumi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559862516.0, \"send_replies\": true, \"parent_id\": \"t1_eq43s1i\", \"score\": 2, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There's also the `browse-at-remote` package, which includes the `browse-at-remote-kill` command.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq8bumi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s also the \\u003Ccode\\u003Ebrowse-at-remote\\u003C/code\\u003E package, which includes the \\u003Ccode\\u003Ebrowse-at-remote-kill\\u003C/code\\u003E command.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8bumi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559891316.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq89p5p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"bump_bump_bump\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559861399.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 5, \"author_fullname\": \"t2_33ybbkqd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Are you familiar with `recentf`? Both `helm` and `ivy`, and probably `ido`, can include recent files in your buffer switching completions.\\n\\nApologies if you already know this. It's not clear from your question what you're already familiar with. But you mention tab completion, which makes me think of the built-in completion, which is much cruder than the fuzzy matching with the above packages.\\n\\nBetween my use of `counsel-projectile-find-file`, `counsel-file-jump`, and `ivy-switch-buffer`, I can't really see a hole that would be filled by what you're talking about.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq89p5p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAre you familiar with \\u003Ccode\\u003Erecentf\\u003C/code\\u003E? Both \\u003Ccode\\u003Ehelm\\u003C/code\\u003E and \\u003Ccode\\u003Eivy\\u003C/code\\u003E, and probably \\u003Ccode\\u003Eido\\u003C/code\\u003E, can include recent files in your buffer switching completions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EApologies if you already know this. It\\u0026#39;s not clear from your question what you\\u0026#39;re already familiar with. But you mention tab completion, which makes me think of the built-in completion, which is much cruder than the fuzzy matching with the above packages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBetween my use of \\u003Ccode\\u003Ecounsel-projectile-find-file\\u003C/code\\u003E, \\u003Ccode\\u003Ecounsel-file-jump\\u003C/code\\u003E, and \\u003Ccode\\u003Eivy-switch-buffer\\u003C/code\\u003E, I can\\u0026#39;t really see a hole that would be filled by what you\\u0026#39;re talking about.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq89p5p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559890199.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq894nu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559861122.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 3, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Some \\\"switch-to-buffer\\\" functions like those provided by ivy and ido have the idea of \\\"virtual buffers\\\", which allows you to switch to buffers of previously-opened files even if you don't have them open currently. In practice, combined with a large `recentf` history of filenames, I think you'll find this does what you want.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq894nu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESome \\u0026quot;switch-to-buffer\\u0026quot; functions like those provided by ivy and ido have the idea of \\u0026quot;virtual buffers\\u0026quot;, which allows you to switch to buffers of previously-opened files even if you don\\u0026#39;t have them open currently. In practice, combined with a large \\u003Ccode\\u003Erecentf\\u003C/code\\u003E history of filenames, I think you\\u0026#39;ll find this does what you want.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq894nu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559889922.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2swo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq88wik\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559861001.0, \"send_replies\": true, \"parent_id\": \"t1_eq7rd66\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Request.el is a solid library, and it's what I always direct people towards\\n\\nGiven its age and lack of maintainership, it's held up respectably, but it's\\nby no means \\\"solid\\\" at the current time. There are well documented bugs, and\\nI don't particularly trust `url-retrieve` backend (the other backend is curl).\", \"link_title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"author_flair_css_class\": null, \"name\": \"t1_eq88wik\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERequest.el is a solid library, and it\\u0026#39;s what I always direct people towards\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EGiven its age and lack of maintainership, it\\u0026#39;s held up respectably, but it\\u0026#39;s\\nby no means \\u0026quot;solid\\u0026quot; at the current time. There are well documented bugs, and\\nI don\\u0026#39;t particularly trust \\u003Ccode\\u003Eurl-retrieve\\u003C/code\\u003E backend (the other backend is curl).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/eq88wik/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"report_reasons\": null, \"link_author\": \"andreas-marschke\", \"author_flair_text\": null, \"link_url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"created\": 1559889801.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq88h6h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"poiu-\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559860787.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_dcfnv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I would like to have this as a helm source (should be easy?)\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq88h6h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to have this as a helm source (should be easy?)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq88h6h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559889587.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bn3qax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq87ssp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rgrau\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1559860391.0, \"send_replies\": true, \"parent_id\": \"t1_eq2yn8z\", \"score\": 1, \"author_fullname\": \"t2_7p0zo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"it's better than Awesome :)\", \"link_title\": \"where, might you say, is the most \\\"super\\\" of a \\\"super cua\\\" package?\", \"author_flair_css_class\": null, \"name\": \"t1_eq87ssp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eit\\u0026#39;s better than Awesome :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/eq87ssp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"created\": 1559889191.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq810id\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erickgnavar\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559856701.0, \"send_replies\": true, \"parent_id\": \"t1_eq7ywee\", \"score\": 1, \"author_fullname\": \"t2_ndbm5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I\\u2019ve used it with https with no problem maybe there is something wrong outside emacs, a system package maybe\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq810id\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u2019ve used it with https with no problem maybe there is something wrong outside emacs, a system package maybe\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq810id/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559885501.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ywee\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"politza\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559855652.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_j63jw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Last time I tried it, it couldn't handle https connections and it did not handle http errors. Which means you don't know what's going on if something goes wrong. So, I had to use something else.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ywee\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELast time I tried it, it couldn\\u0026#39;t handle https connections and it did not handle http errors. Which means you don\\u0026#39;t know what\\u0026#39;s going on if something goes wrong. So, I had to use something else.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq7ywee/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559884452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7vhja\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jhelberg\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559853941.0, \"send_replies\": true, \"parent_id\": \"t3_bx7m7a\", \"score\": 1, \"author_fullname\": \"t2_kf8fe\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"one book, one file I'd say. only long lines slow things down, one file makes searching easy.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7vhja\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eone book, one file I\\u0026#39;d say. only long lines slow things down, one file makes searching easy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq7vhja/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559882741.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvucsw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7uu9d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559853615.0, \"send_replies\": true, \"parent_id\": \"t1_eq1rf8b\", \"score\": 1, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E why is '(defconst qc-cmd-prefx:{c, cpp} ...)' moved out of the defun ? coming from a c'ish background, it seems more appropriate to have function-local-const values indicating readers that this 'foo' has a specified value, and cannot be changed (though not so sure about whether elisp guarantees that i.e. constness of the value held by 'foo').\\n\\n`defconst` doesn't introduce a local var. Use `let` for that. `defconst` always defines a global binding.\\n\\nAlso note that on Emacs 24.3+, ie any reasonable Emacs version, you can use `setq-local` instead of the `set` + `make-local-variable` combo.\", \"link_title\": \"help with trivial emacs lisp function\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq7uu9d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ewhy is \\u0026#39;(defconst qc-cmd-prefx:{c, cpp} ...)\\u0026#39; moved out of the defun ? coming from a c\\u0026#39;ish background, it seems more appropriate to have function-local-const values indicating readers that this \\u0026#39;foo\\u0026#39; has a specified value, and cannot be changed (though not so sure about whether elisp guarantees that i.e. constness of the value held by \\u0026#39;foo\\u0026#39;).\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Edefconst\\u003C/code\\u003E doesn\\u0026#39;t introduce a local var. Use \\u003Ccode\\u003Elet\\u003C/code\\u003E for that. \\u003Ccode\\u003Edefconst\\u003C/code\\u003E always defines a global binding.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso note that on Emacs 24.3+, ie any reasonable Emacs version, you can use \\u003Ccode\\u003Esetq-local\\u003C/code\\u003E instead of the \\u003Ccode\\u003Eset\\u003C/code\\u003E + \\u003Ccode\\u003Emake-local-variable\\u003C/code\\u003E combo.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/eq7uu9d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"report_reasons\": null, \"link_author\": \"daddyc00l\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"created\": 1559882415.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2swo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7rd66\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skeeto\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559851876.0, \"send_replies\": true, \"parent_id\": \"t1_eq5t16p\", \"score\": 1, \"author_fullname\": \"t2_3em9l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Request.el is a solid library, and it's what I always direct people\\ntowards when they're interested in reusing the URL request library built\\ninto Elfeed. So that's fine.\\n\\nHowever, that's only part of the equation, right? You'd need to also\\nparse and crawl the pages you download?\", \"link_title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"author_flair_css_class\": null, \"name\": \"t1_eq7rd66\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERequest.el is a solid library, and it\\u0026#39;s what I always direct people\\ntowards when they\\u0026#39;re interested in reusing the URL request library built\\ninto Elfeed. So that\\u0026#39;s fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, that\\u0026#39;s only part of the equation, right? You\\u0026#39;d need to also\\nparse and crawl the pages you download?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/eq7rd66/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"report_reasons\": null, \"link_author\": \"andreas-marschke\", \"author_flair_text\": null, \"link_url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"created\": 1559880676.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2cy9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7plfn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ConfidentGarbage9\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559850978.0, \"send_replies\": true, \"parent_id\": \"t1_eq7mpvi\", \"score\": 1, \"author_fullname\": \"t2_3bwix9h6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"No defun, defparameter, defmacro ect. should remain the same color\", \"link_title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"author_flair_css_class\": null, \"name\": \"t1_eq7plfn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo defun, defparameter, defmacro ect. should remain the same color\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/eq7plfn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"report_reasons\": null, \"link_author\": \"ConfidentGarbage9\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"created\": 1559879778.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ofgr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559850423.0, \"send_replies\": true, \"parent_id\": \"t1_eq7noav\", \"score\": 1, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Both checking and setting can be done using the customize interface, see https://www.gnu.org/software/emacs/manual/html_node/emacs/Easy-Customization.html.\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ofgr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBoth checking and setting can be done using the customize interface, see \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/emacs/Easy-Customization.html\\\"\\u003Ehttps://www.gnu.org/software/emacs/manual/html_node/emacs/Easy-Customization.html\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7ofgr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559879223.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7noav\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rpgwaiter\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559850054.0, \"send_replies\": true, \"parent_id\": \"t1_eq7kx00\", \"score\": 1, \"author_fullname\": \"t2_eim28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not sure how to check the current value, but I did change it to utf-8 from whatever it was and it looks fine now. The change doesn't persist when I close the terminal and reload emacs. How do I make the changes persist?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7noav\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not sure how to check the current value, but I did change it to utf-8 from whatever it was and it looks fine now. The change doesn\\u0026#39;t persist when I close the terminal and reload emacs. How do I make the changes persist?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7noav/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559878854.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2cy9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7mpvi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bodertz\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559849546.0, \"send_replies\": true, \"parent_id\": \"t1_eq357aa\", \"score\": 1, \"author_fullname\": \"t2_9c5ij\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Would `defun` also be blue?\", \"link_title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"author_flair_css_class\": null, \"name\": \"t1_eq7mpvi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWould \\u003Ccode\\u003Edefun\\u003C/code\\u003E also be blue?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/eq7mpvi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"report_reasons\": null, \"link_author\": \"ConfidentGarbage9\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"created\": 1559878346.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7kx00\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559848539.0, \"send_replies\": true, \"parent_id\": \"t1_eq7ka7f\", \"score\": 3, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"As Eli said: check your \\\\`terminal-coding-system\\\\`. What's its value?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7kx00\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs Eli said: check your `terminal-coding-system`. What\\u0026#39;s its value?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7kx00/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559877339.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ka7f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rpgwaiter\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559848206.0, \"send_replies\": true, \"parent_id\": \"t1_eq7jho8\", \"score\": 1, \"author_fullname\": \"t2_eim28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Gotcha.. So how should I go about fixing it?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ka7f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGotcha.. So how should I go about fixing it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7ka7f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559877006.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7jho8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559847827.0, \"send_replies\": true, \"parent_id\": \"t1_eq7es87\", \"score\": 2, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's the point of -Q.\\n\\nIf the font was the problem, you wouldn't see \\\\\\\\-escape sequences but boxes. What you see indicates an encoding issue.\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7jho8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s the point of -Q.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the font was the problem, you wouldn\\u0026#39;t see \\\\-escape sequences but boxes. What you see indicates an encoding issue.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7jho8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559876627.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7gboh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559846287.0, \"send_replies\": true, \"parent_id\": \"t3_bwm94g\", \"score\": 2, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Can you guide me to something that addresses my need to have a new buffer made ready from an existing template when i open a new file. Example, If I want to open a new file named lecture2.org, i want the new buffer to have the `#+TITLE: #+AUTHOR: #+Latex_Class:` already typed in. What should I be searching for on my internet searches?\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq7gboh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan you guide me to something that addresses my need to have a new buffer made ready from an existing template when i open a new file. Example, If I want to open a new file named lecture2.org, i want the new buffer to have the \\u003Ccode\\u003E#+TITLE: #+AUTHOR: #+Latex_Class:\\u003C/code\\u003E already typed in. What should I be searching for on my internet searches?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq7gboh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559875087.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7gal6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"-dag-\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559846274.0, \"send_replies\": true, \"parent_id\": \"t1_eq7a4uh\", \"score\": 1, \"author_fullname\": \"t2_ds1dyo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's interesting. How does it integrate with TikZ? Do you still write embedded latex for that?\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7gal6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s interesting. How does it integrate with TikZ? Do you still write embedded latex for that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7gal6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559875074.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7g89b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"-dag-\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559846242.0, \"send_replies\": true, \"parent_id\": \"t1_eq7dgei\", \"score\": 1, \"author_fullname\": \"t2_ds1dyo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yep, I get the literate programming aspect. I'm asking about \\\"pure\\\" documentation. This is a paper to be read by others. The only code would be example snippets. org-babel could be useful for writing the snippets and generating the output automatically. I'm curious what other advantages org-babel has over just writing a paper in latex. \\n\\n\\nI'll have to look into org's support for diagrams and equations. Thanks!\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7g89b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYep, I get the literate programming aspect. I\\u0026#39;m asking about \\u0026quot;pure\\u0026quot; documentation. This is a paper to be read by others. The only code would be example snippets. org-babel could be useful for writing the snippets and generating the output automatically. I\\u0026#39;m curious what other advantages org-babel has over just writing a paper in latex. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ll have to look into org\\u0026#39;s support for diagrams and equations. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7g89b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559875042.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7es87\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rpgwaiter\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559845521.0, \"send_replies\": true, \"parent_id\": \"t1_eq7eaon\", \"score\": 1, \"author_fullname\": \"t2_eim28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes I'm running in a text terminal. No issue when running with -Q, although none of my configuration seems to be loaded with that option.\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7es87\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes I\\u0026#39;m running in a text terminal. No issue when running with -Q, although none of my configuration seems to be loaded with that option.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7es87/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559874321.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7eaon\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eli-zaretskii\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559845287.0, \"send_replies\": true, \"parent_id\": \"t3_bxjr2h\", \"score\": 2, \"author_fullname\": \"t2_13cvre\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You are running Emacs on a text terminal, right? Then I think the problem might be `terminal-coding-system`. Does this happen in `emacs -Q` as well?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq7eaon\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou are running Emacs on a text terminal, right? Then I think the problem might be \\u003Ccode\\u003Eterminal-coding-system\\u003C/code\\u003E. Does this happen in \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E as well?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7eaon/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": \"GNU Emacs maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559874087.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7dgei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559844887.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"org-babel allows literate programming in regular org files. Regular org files can be exported to pdf using latex. Regular org files already allow math equations, diagrams and code. org-babel can execute the code and provide the output (in different formats as you please).\\n\\nThe advantage is that you can have your program / code and your document in the same file.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7dgei\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eorg-babel allows literate programming in regular org files. Regular org files can be exported to pdf using latex. Regular org files already allow math equations, diagrams and code. org-babel can execute the code and provide the output (in different formats as you please).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe advantage is that you can have your program / code and your document in the same file.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7dgei/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559873687.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ca4a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Tatrics\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559844312.0, \"send_replies\": true, \"parent_id\": \"t1_eq7088x\", \"score\": 1, \"author_fullname\": \"t2_tpfed\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is handy! Thanks!\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ca4a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is handy! Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq7ca4a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559873112.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7a4uh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559843222.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm a big fan actually. Even with latex mode shortcuts it's a lot faster to use org, once you get it set up. I use it with TikZ and Beamer...\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7a4uh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a big fan actually. Even with latex mode shortcuts it\\u0026#39;s a lot faster to use org, once you get it set up. I use it with TikZ and Beamer...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7a4uh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559872022.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9yo7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7a260\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dzecniv\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1559843184.0, \"send_replies\": true, \"parent_id\": \"t3_bw9yo7\", \"score\": 1, \"author_fullname\": \"t2_j6dwn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I completed a bit https://wikemacs.org/wiki/Eshell, more additions welcome ! cheers\", \"link_title\": \"Did you know that the Eshell is awesome?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7a260\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI completed a bit \\u003Ca href=\\\"https://wikemacs.org/wiki/Eshell\\\"\\u003Ehttps://wikemacs.org/wiki/Eshell\\u003C/a\\u003E, more additions welcome ! cheers\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/eq7a260/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"report_reasons\": null, \"link_author\": \"202700000000\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"created\": 1559871984.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559902737.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx54uk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq73rjt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yep808\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559840023.0, \"send_replies\": true, \"parent_id\": \"t1_eq5r6wd\", \"score\": 1, \"author_fullname\": \"t2_3kgkql01\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes I'm aware of it, but I prefer to require the packages with native Elisp. Use-package forms an abstraction upon which is hard to debug\", \"link_title\": \"Even Better 'Better Defaults'\", \"author_flair_css_class\": null, \"name\": \"t1_eq73rjt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes I\\u0026#39;m aware of it, but I prefer to require the packages with native Elisp. Use-package forms an abstraction upon which is hard to debug\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/eq73rjt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://github.com/ianpan870102/.emacs.d\", \"created\": 1559868823.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq70hsc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559838492.0, \"send_replies\": true, \"parent_id\": \"t1_eq4kvcb\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"In my experience, that has happened. But that doesn't mean it happens to everyone.\\n\\nA good for instance is Control-v . Out of the box, that key is to scroll up (that is, page down). Then I added the cua.el package that maps Control-v to the yank (or insert from clipboard) action.\\n\\nThat caused problems until I redefined Shift-Control-v to do the scrolling thing.\\n\\n (define-key global-map [(shift control ?v)] 'scroll-up)\\n\\nI did the reverse with Control-a . The cua package wanted that to Select Whole Buffer. BUt I was too used to Control-a being beginning-of-line.\\n\\nYes, I did wind up with a LOT of conflicts in the keymap. So in my dot-emacs file, I have a big area towards the end in which I reconfigure lots and lots of keys at once.\\n\\nBecause, doing it in each package easily leads to one package wiping out another package's keys.\\n\\nIt is not so much a problem these days, because packages have the option of defining their own prefix key if they like. Then they can assign their own keymap to that prefix.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq70hsc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn my experience, that has happened. But that doesn\\u0026#39;t mean it happens to everyone.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA good for instance is Control-v . Out of the box, that key is to scroll up (that is, page down). Then I added the cua.el package that maps Control-v to the yank (or insert from clipboard) action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat caused problems until I redefined Shift-Control-v to do the scrolling thing.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(define-key global-map [(shift control ?v)] \\u0026#39;scroll-up)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI did the reverse with Control-a . The cua package wanted that to Select Whole Buffer. BUt I was too used to Control-a being beginning-of-line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes, I did wind up with a LOT of conflicts in the keymap. So in my dot-emacs file, I have a big area towards the end in which I reconfigure lots and lots of keys at once.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause, doing it in each package easily leads to one package wiping out another package\\u0026#39;s keys.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is not so much a problem these days, because packages have the option of defining their own prefix key if they like. Then they can assign their own keymap to that prefix.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq70hsc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559867292.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7088x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erickgnavar\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559838371.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 2, \"author_fullname\": \"t2_ndbm5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"A nice thing I use in combination with restclient.el is `json-mode-beautify`(from `json-mode` package) this way you can format json payload easily. I have it binded to `C-c C-f` for more quickly access.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq7088x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA nice thing I use in combination with restclient.el is \\u003Ccode\\u003Ejson-mode-beautify\\u003C/code\\u003E(from \\u003Ccode\\u003Ejson-mode\\u003C/code\\u003E package) this way you can format json payload easily. I have it binded to \\u003Ccode\\u003EC-c C-f\\u003C/code\\u003E for more quickly access.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq7088x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559867171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6xou0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vitorqb23\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559837175.0, \"send_replies\": true, \"parent_id\": \"t1_eq6ooiv\", \"score\": 1, \"author_fullname\": \"t2_2nkdd29t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hey! \\n\\n\\nSo my \\\"remote\\\" server actually lives on our LAN, so I'm guessing that is a very different scenario than having a really remote server. \\n\\n\\nAnyway, even when the server is on our local network the delay is \\\\*still\\\\* a problem for low response-time features like completion, etc. So I feel your pain.\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6xou0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo my \\u0026quot;remote\\u0026quot; server actually lives on our LAN, so I\\u0026#39;m guessing that is a very different scenario than having a really remote server. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway, even when the server is on our local network the delay is *still* a problem for low response-time features like completion, etc. So I feel your pain.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq6xou0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559865975.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6wy35\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559836799.0, \"send_replies\": true, \"parent_id\": \"t1_eq6685h\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Nope, only EXWM + EXWM-x and few single-key bindings:\\n - F1 switch-to-last-buffer\\n - F2 delete-other-windows\\n - F3 other-window\\n - F4 split-window-below\\n - F5 split-window-right\\n - F6 notmuch / S-F6 notmuch-mua-new-mail / C-F6 call-process-shell-command to a script that wrap RSS2Email\\n....\\n - F9 aweshell-toggle\\n....\\n\\nWith \\\"printed\\\" (actually a stickers) keycaps so it's super-easy to operate.\\n\\nsshot: https://transfer.sh/10A2hA/sshot.png\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6wy35\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENope, only EXWM + EXWM-x and few single-key bindings:\\n - F1 switch-to-last-buffer\\n - F2 delete-other-windows\\n - F3 other-window\\n - F4 split-window-below\\n - F5 split-window-right\\n - F6 notmuch / S-F6 notmuch-mua-new-mail / C-F6 call-process-shell-command to a script that wrap RSS2Email\\n....\\n - F9 aweshell-toggle\\n....\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith \\u0026quot;printed\\u0026quot; (actually a stickers) keycaps so it\\u0026#39;s super-easy to operate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esshot: \\u003Ca href=\\\"https://transfer.sh/10A2hA/sshot.png\\\"\\u003Ehttps://transfer.sh/10A2hA/sshot.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6wy35/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559865599.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6w95t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"egregius313\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559836472.0, \"send_replies\": true, \"parent_id\": \"t1_eq4dw7d\", \"score\": 2, \"author_fullname\": \"t2_clfs9gn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"If you use `M-x switch-to-buffer` or even ido, having a lot of buffers open makes the autocomplete a lot less helpful.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6w95t\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you use \\u003Ccode\\u003EM-x switch-to-buffer\\u003C/code\\u003E or even ido, having a lot of buffers open makes the autocomplete a lot less helpful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6w95t/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559865272.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6tq5v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eli-zaretskii\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559835257.0, \"send_replies\": true, \"parent_id\": \"t1_eq65bol\", \"score\": 3, \"author_fullname\": \"t2_13cvre\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"If it means anything, I never kill any buffers in my sessions, even though these go on for many weeks.\\n\\nBut if you are bothered by that, someone else pointed out that the bundled package midnight.el will kill unused buffer for you so look it up.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq6tq5v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf it means anything, I never kill any buffers in my sessions, even though these go on for many weeks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut if you are bothered by that, someone else pointed out that the bundled package midnight.el will kill unused buffer for you so look it up.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6tq5v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": \"GNU Emacs maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559864057.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6sx3k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bnzmnzhnz\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559834863.0, \"send_replies\": true, \"parent_id\": \"t3_bx7m7a\", \"score\": 1, \"author_fullname\": \"t2_ek4av\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I find projectile with ivy and ivy-rich is a good pattern for bouncing between projects and keeping track of which buffers belong to each.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6sx3k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find projectile with ivy and ivy-rich is a good pattern for bouncing between projects and keeping track of which buffers belong to each.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6sx3k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559863663.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxhod6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6rm65\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"C0untLizzi\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559834237.0, \"send_replies\": true, \"parent_id\": \"t3_bxhod6\", \"score\": 3, \"author_fullname\": \"t2_1235w2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I think you need to require dap-python for it to be registered, something like\\n\\n (require 'dap-mode)\\n (require 'dap-ui)\\n (require 'dap-python)\\n (dap-mode 1)\\n (dap-ui-mode 1)\\n\\nworks for me.\", \"link_title\": \"Where do I find templates for dap-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6rm65\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think you need to require dap-python for it to be registered, something like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;dap-mode)\\n(require \\u0026#39;dap-ui)\\n(require \\u0026#39;dap-python)\\n(dap-mode 1)\\n(dap-ui-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eworks for me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/eq6rm65/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"report_reasons\": null, \"link_author\": \"billy_wade\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"created\": 1559863037.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6ooiv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rufusthedogwoof\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559832823.0, \"send_replies\": true, \"parent_id\": \"t3_bxfdd1\", \"score\": 1, \"author_fullname\": \"t2_10s2l8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm happy you have found a fix with --with-x-toolkit=lucid.\\n\\nquick question, how much latency are you finding with this? I tried it awhile back, and with my vpn connect -\\u003E my servers it was just unbearably slow.. and then i went down the rabbit hole of trying to get a better emacs experience with cygwin, w32 native, and WSL...\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6ooiv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m happy you have found a fix with --with-x-toolkit=lucid.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Equick question, how much latency are you finding with this? I tried it awhile back, and with my vpn connect -\\u0026gt; my servers it was just unbearably slow.. and then i went down the rabbit hole of trying to get a better emacs experience with cygwin, w32 native, and WSL...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq6ooiv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559861623.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6nvuu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dzecniv\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559832429.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_j6dwn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Contributions on its wikemacs page are welcome ! https://wikemacs.org/wiki/Restclient cheers\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq6nvuu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EContributions on its wikemacs page are welcome ! \\u003Ca href=\\\"https://wikemacs.org/wiki/Restclient\\\"\\u003Ehttps://wikemacs.org/wiki/Restclient\\u003C/a\\u003E cheers\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq6nvuu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559861229.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx82j3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6kuko\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559830945.0, \"send_replies\": true, \"parent_id\": \"t3_bx82j3\", \"score\": 1, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have been experiencing the exact same thing, but never thought much about it.. Looks like it's time to switch back to the default Emacs undo system.\", \"link_title\": \"Somehow my undo history is truncated... what did I inadvertently change?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq6kuko\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have been experiencing the exact same thing, but never thought much about it.. Looks like it\\u0026#39;s time to switch back to the default Emacs undo system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/eq6kuko/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"report_reasons\": null, \"link_author\": \"moxxon\", \"author_flair_text\": \"default bindings, org, magit, ox-hugo\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"created\": 1559859745.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9azu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6kou5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559830867.0, \"send_replies\": true, \"parent_id\": \"t1_eq6295p\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\\\u003EWhat would you say are the most significant determining factors for init time?\\n\\n\\u0026#x200B;\\n\\nI meant that the same code snippet could affect loading time completely different depending on the rest of the configuration.\\n\\n\\u0026#x200B;\\n\\n\\\\\\u003ECorrect. It's also not Atom or VS Code. That doesn't preclude comparison.\\n\\n\\u0026#x200B;\\n\\nI meant Emacs is not a text editor like all these.\", \"link_title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"author_flair_css_class\": null, \"name\": \"t1_eq6kou5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;What would you say are the most significant determining factors for init time?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI meant that the same code snippet could affect loading time completely different depending on the rest of the configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026gt;Correct. It\\u0026#39;s also not Atom or VS Code. That doesn\\u0026#39;t preclude comparison.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI meant Emacs is not a text editor like all these.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/eq6kou5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"report_reasons\": null, \"link_author\": \"Rainymood_XI\", \"author_flair_text\": null, \"link_url\": \"https://github.com/Rainymood/dotemacs\", \"created\": 1559859667.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwbizf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6iqjv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"billy_wade\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559829882.0, \"send_replies\": true, \"parent_id\": \"t1_epyenr4\", \"score\": 1, \"author_fullname\": \"t2_14xlbd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Okay, it should be up now, after I upload the gif.\", \"link_title\": \"I'm getting a strange color theme bug in 26.2\", \"author_flair_css_class\": null, \"name\": \"t1_eq6iqjv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOkay, it should be up now, after I upload the gif.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/eq6iqjv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"report_reasons\": null, \"link_author\": \"billy_wade\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"created\": 1559858682.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6hswy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"localhorst\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559829397.0, \"send_replies\": true, \"parent_id\": \"t3_bx7m7a\", \"score\": 1, \"author_fullname\": \"t2_1l9g7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"For me just\\n\\n (setq ido-default-buffer-method 'selected-window)\\n (ido-mode 1)\\n\\nis good enough and I rarely close buffers\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6hswy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor me just\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq ido-default-buffer-method \\u0026#39;selected-window)\\n(ido-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eis good enough and I rarely close buffers\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6hswy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559858197.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6heyr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"danielszm\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559829196.0, \"send_replies\": true, \"parent_id\": \"t1_eq5k72d\", \"score\": 2, \"author_fullname\": \"t2_9jyp6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I second that which has been seconded. A memoir begs to be written with the title: How I Learned to Stop Worrying and Love Open Buffers.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6heyr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI second that which has been seconded. A memoir begs to be written with the title: How I Learned to Stop Worrying and Love Open Buffers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6heyr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559857996.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6h8b4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kcin\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559829099.0, \"send_replies\": true, \"parent_id\": \"t1_eq5gail\", \"score\": 1, \"author_fullname\": \"t2_2z9w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Frequent tasks should be made more accessible and easier than infrequent tasks. C-x b is an awful sequence and it's astounding that it's used for such a highest-frequency task.\\n\\nAgreed, but I go further than you and assign buffer switching to a single key, because it's a such a frequent task, that it deserves its own key.\\n\\nI don't use the right windows key on my keyboard, so it's a good choice for that (other candidates are the right control, right shift, etc. which can be assigned as single keys to frequent tasks).\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6h8b4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EFrequent tasks should be made more accessible and easier than infrequent tasks. C-x b is an awful sequence and it\\u0026#39;s astounding that it\\u0026#39;s used for such a highest-frequency task.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAgreed, but I go further than you and assign buffer switching to a single key, because it\\u0026#39;s a such a frequent task, that it deserves its own key.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t use the right windows key on my keyboard, so it\\u0026#39;s a good choice for that (other candidates are the right control, right shift, etc. which can be assigned as single keys to frequent tasks).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6h8b4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559857899.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6gspy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kcin\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559828878.0, \"send_replies\": true, \"parent_id\": \"t1_eq65bol\", \"score\": 1, \"author_fullname\": \"t2_2z9w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"My laptop's last reboot was back in the first days of March, and I never close buffers. I run midnight-mode, though, to clear out buffers which haven't been touched in a week.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6gspy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy laptop\\u0026#39;s last reboot was back in the first days of March, and I never close buffers. I run midnight-mode, though, to clear out buffers which haven\\u0026#39;t been touched in a week.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6gspy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559857678.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_eq6gspy\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["242300"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:11 GMT"], "x-ratelimit-remaining": ["598.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21922-LGA"], "x-ratelimit-used": ["2"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914091.526457,VS0,VE758"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["110"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:28:11"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_eq9omn4"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:11 GMT"], "x-ratelimit-remaining": ["597.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21922-LGA"], "x-ratelimit-used": ["3"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914092.520894,VS0,VE116"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["109"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_eq9omn4"}, "recorded_at": "2019-06-07T13:28:11"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So Emacs is pretty old, and it has `grep.el` and `find-dired` that allow to use external tools to search for files and in files. But that can cause difficulties when those tools are not available. Sure, `grep` and `find` are available on every *nix environment (ahem, BSD and GNU actually differ, ahem), but that's not the case for Windows. I'm not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\n\\nI'm aware of [xah-find](https://github.com/xahlee/xah-find), which declares these features:\\n\\n\\u003E\\u2022 Pure emacs lisp. No dependencies on unix/linux grep/sed/find. Especially useful on Windows.\\n\\u003E\\n\\u003E\\u2022 Output is highlighted and clickable for jumping to occurence.\\n\\u003E\\n\\u003E\\u2022 Using emacs regex, not bash/perl etc regex.\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that\\u2019s multiple lines.\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that contains lots Unicode characters. See [unix uniq unicode bug](http://xahlee.info/comp/unix_uniq_unicode_bug.html) and [emacs calling unix grep problem](http://ergoemacs.org/emacs/emacs_grep_problem.html)\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that contains lots escape slashes or backslashes. For example, Find/Replace string that\\u2019s regex in source code.\\n\\nAnd it's seem to be nice solution for searching within file contents when `grep` or alternatives aren't available, but it's not in the default Emacs, you have to use googlefu in order to find it. And also it features output format that is quite different from what `grep` produces.\\n\\nAs for file search, I know that [Projectile](https://github.com/bbatsov/projectile) provides a [native](https://docs.projectile.mx/en/latest/configuration/#project-indexing-method) way of searching for files written in elisp, but again, it's not in the core, for obvious reasons.\\n\\nI wonder why there's no builtin commands to do arbitrary file search and contents search from Emacs like in, say, VSCode, Sublime Text, and Atom, which have cross-platform methods to search for and in files, which make sense to me, since I will get similar results across platforms, and will not be worried if my system features GNU grep or BSD grep, and GNU find or BSD find, which can be an issue on Linux and MacOS, and will require setting up GNU utilities on Windows.\\n\\nSo are there any historical or technical reasons for that? I know that elisp can be pretty slow for such task, but it seems that `xah-find` performs pretty good on my machine, and `native` method in projectile works acceptable as well.\", \"author_fullname\": \"t2_w7w9e32\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"grep and find but in pure Emacs LISP?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_bxtwfg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559938474.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo Emacs is pretty old, and it has \\u003Ccode\\u003Egrep.el\\u003C/code\\u003E and \\u003Ccode\\u003Efind-dired\\u003C/code\\u003E that allow to use external tools to search for files and in files. But that can cause difficulties when those tools are not available. Sure, \\u003Ccode\\u003Egrep\\u003C/code\\u003E and \\u003Ccode\\u003Efind\\u003C/code\\u003E are available on every *nix environment (ahem, BSD and GNU actually differ, ahem), but that\\u0026#39;s not the case for Windows. I\\u0026#39;m not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m aware of \\u003Ca href=\\\"https://github.com/xahlee/xah-find\\\"\\u003Exah-find\\u003C/a\\u003E, which declares these features:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u2022 Pure emacs lisp. No dependencies on unix/linux grep/sed/find. Especially useful on Windows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Output is highlighted and clickable for jumping to occurence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Using emacs regex, not bash/perl etc regex.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that\\u2019s multiple lines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that contains lots Unicode characters. See \\u003Ca href=\\\"http://xahlee.info/comp/unix_uniq_unicode_bug.html\\\"\\u003Eunix uniq unicode bug\\u003C/a\\u003E and \\u003Ca href=\\\"http://ergoemacs.org/emacs/emacs_grep_problem.html\\\"\\u003Eemacs calling unix grep problem\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that contains lots escape slashes or backslashes. For example, Find/Replace string that\\u2019s regex in source code.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAnd it\\u0026#39;s seem to be nice solution for searching within file contents when \\u003Ccode\\u003Egrep\\u003C/code\\u003E or alternatives aren\\u0026#39;t available, but it\\u0026#39;s not in the default Emacs, you have to use googlefu in order to find it. And also it features output format that is quite different from what \\u003Ccode\\u003Egrep\\u003C/code\\u003E produces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for file search, I know that \\u003Ca href=\\\"https://github.com/bbatsov/projectile\\\"\\u003EProjectile\\u003C/a\\u003E provides a \\u003Ca href=\\\"https://docs.projectile.mx/en/latest/configuration/#project-indexing-method\\\"\\u003Enative\\u003C/a\\u003E way of searching for files written in elisp, but again, it\\u0026#39;s not in the core, for obvious reasons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wonder why there\\u0026#39;s no builtin commands to do arbitrary file search and contents search from Emacs like in, say, VSCode, Sublime Text, and Atom, which have cross-platform methods to search for and in files, which make sense to me, since I will get similar results across platforms, and will not be worried if my system features GNU grep or BSD grep, and GNU find or BSD find, which can be an issue on Linux and MacOS, and will require setting up GNU utilities on Windows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo are there any historical or technical reasons for that? I know that elisp can be pretty slow for such task, but it seems that \\u003Ccode\\u003Exah-find\\u003C/code\\u003E performs pretty good on my machine, and \\u003Ccode\\u003Enative\\u003C/code\\u003E method in projectile works acceptable as well.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxtwfg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andreyorst\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559909674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"There was a post recently about why people quit using helm and I said that the TAB key usage was just too jarring (by default). I said that I gave up but prompted to change them I tried, but I didn't like any of my options that I could find. So I write my own. This will make the tab:\\n\\n* If there's more than one candidate flash the mode-line. This is a close enough approximation of the default `find-file` behavior that expands the candidates\\n* If there's one or less candidates do whatever the default persistent action is.\\n\\nNow helm doesn't really conflict with two decades of `find-file` or `execute-extended-command` usage(\\\\*):\\n\\nSo the flasher ([source](https://www.emacswiki.org/emacs/AlarmBell)):\\n\\n defun double-flash-mode-line ()\\n \\\"Flash the modeline\\\"\\n (let ((flash-sec (/ 1.0 20)))\\n (invert-face 'mode-line)\\n (run-with-timer flash-sec nil #'invert-face 'mode-line)\\n (run-with-timer (* 2 flash-sec) nil #'invert-face 'mode-line)\\n (run-with-timer (* 3 flash-sec) nil #'invert-face 'mode-line)))\\n\\nThe action:\\n\\n (defun helm-execute-if-single-persistent-action (\\u0026optional attr split-onewindow)\\n \\\"Execute persistent action if the candidate list is less than 2\\\"\\n (interactive)\\n (with-helm-alive-p\\n (if (\\u003E (helm-get-candidate-number) 2)\\n (double-flash-mode-line)\\n (helm-execute-persistent-action)\\n )))\\n\\nSo here's my helm-related configuration in it's entirety for now. I'm probably still missing a lot of gems to get the most out of it but still:\\n\\n (use-package helm\\n :demand t\\n :bind* (:map helm-map \\n ([tab] . helm-execute-if-single-persistent-action)\\n (\\\"C-i\\\" . helm-execute-persistent-action)\\n ))\\n \\n (use-package helm-files\\n :bind (:map helm-find-files-map\\n (\\\"\\u003CC-backspace\\u003E\\\" . helm-find-files-up-one-level)\\n )\\n )\\n \\n (require 'helm-config)\\n (global-set-key (kbd \\\"M-x\\\") 'helm-M-x)\\n (global-set-key (kbd \\\"C-x b\\\") 'helm-buffers-list)\\n (global-set-key (kbd \\\"C-x C-f\\\") 'helm-find-files)\\n (helm-mode 1)\\n\\nSimple enough and now helm can get off my lawn and back to my emacs.\\n\\n\\u0026#x200B;\\n\\n(\\\\*) I still make mistakes when I want a new file and there's a close candidate, but I can live with that.\", \"author_fullname\": \"t2_z7asf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Helm and the Tab key\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxt0cz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559932255.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere was a post recently about why people quit using helm and I said that the TAB key usage was just too jarring (by default). I said that I gave up but prompted to change them I tried, but I didn\\u0026#39;t like any of my options that I could find. So I write my own. This will make the tab:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf there\\u0026#39;s more than one candidate flash the mode-line. This is a close enough approximation of the default \\u003Ccode\\u003Efind-file\\u003C/code\\u003E behavior that expands the candidates\\u003C/li\\u003E\\n\\u003Cli\\u003EIf there\\u0026#39;s one or less candidates do whatever the default persistent action is.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ENow helm doesn\\u0026#39;t really conflict with two decades of \\u003Ccode\\u003Efind-file\\u003C/code\\u003E or \\u003Ccode\\u003Eexecute-extended-command\\u003C/code\\u003E usage(*):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo the flasher (\\u003Ca href=\\\"https://www.emacswiki.org/emacs/AlarmBell\\\"\\u003Esource\\u003C/a\\u003E):\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edefun double-flash-mode-line ()\\n \\u0026quot;Flash the modeline\\u0026quot;\\n (let ((flash-sec (/ 1.0 20)))\\n (invert-face \\u0026#39;mode-line)\\n (run-with-timer flash-sec nil #\\u0026#39;invert-face \\u0026#39;mode-line)\\n (run-with-timer (* 2 flash-sec) nil #\\u0026#39;invert-face \\u0026#39;mode-line)\\n (run-with-timer (* 3 flash-sec) nil #\\u0026#39;invert-face \\u0026#39;mode-line)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe action:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun helm-execute-if-single-persistent-action (\\u0026amp;optional attr split-onewindow)\\n \\u0026quot;Execute persistent action if the candidate list is less than 2\\u0026quot;\\n (interactive)\\n (with-helm-alive-p\\n (if (\\u0026gt; (helm-get-candidate-number) 2)\\n (double-flash-mode-line)\\n (helm-execute-persistent-action)\\n )))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo here\\u0026#39;s my helm-related configuration in it\\u0026#39;s entirety for now. I\\u0026#39;m probably still missing a lot of gems to get the most out of it but still:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package helm\\n :demand t\\n :bind* (:map helm-map \\n ([tab] . helm-execute-if-single-persistent-action)\\n (\\u0026quot;C-i\\u0026quot; . helm-execute-persistent-action)\\n ))\\n\\n(use-package helm-files\\n :bind (:map helm-find-files-map\\n (\\u0026quot;\\u0026lt;C-backspace\\u0026gt;\\u0026quot; . helm-find-files-up-one-level)\\n )\\n )\\n\\n(require \\u0026#39;helm-config)\\n(global-set-key (kbd \\u0026quot;M-x\\u0026quot;) \\u0026#39;helm-M-x)\\n(global-set-key (kbd \\u0026quot;C-x b\\u0026quot;) \\u0026#39;helm-buffers-list)\\n(global-set-key (kbd \\u0026quot;C-x C-f\\u0026quot;) \\u0026#39;helm-find-files)\\n(helm-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESimple enough and now helm can get off my lawn and back to my emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(*) I still make mistakes when I want a new file and there\\u0026#39;s a close candidate, but I can live with that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxt0cz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TTRation\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxt0cz/helm_and_the_tab_key/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxt0cz/helm_and_the_tab_key/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559903455.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm currently using\\n\\n```\\n(defvar default-font \\\"DejaVu Sans Mono-11.0:antialias=natural\\\")\\n(add-to-list 'default-frame-alist `(font . ,default-font))\\n```\\n\\nbut I'm wondering whether there is sth better out there.\", \"author_fullname\": \"t2_q52rf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What font settings would you recommend?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxsydi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559931829.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m currently using\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(defvar default-font \\u0026quot;DejaVu Sans Mono-11.0:antialias=natural\\u0026quot;)\\n(add-to-list \\u0026#39;default-frame-alist `(font . ,default-font))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut I\\u0026#39;m wondering whether there is sth better out there.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsydi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackjackk0\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559903029.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have install the MELPA stable packages for pandoc, mark-down-mode and pandoc-mode. Can export, compile etc fine with mark-down mode but I cannot get the pandoc-mode exporting to work as the error is 'Searching for program: No such file or directory, pandoc'\\n\\n\\u0026#x200B;\\n\\nIn my .emacs file I have (setq markdown-command \\\"/usr/local/bin/pandoc\\\")\\n\\n\\u0026#x200B;\\n\\nGoing through finder, I do have a 50.9MB pandoc file (with no extension though) in /usr/local/bin\\n\\n\\u0026#x200B;\\n\\nAny ideas?\", \"author_fullname\": \"t2_5034r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help installing pandoc, markdown-mode, pandoc-mode. OSX\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxsvnc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559931249.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have install the MELPA stable packages for pandoc, mark-down-mode and pandoc-mode. Can export, compile etc fine with mark-down mode but I cannot get the pandoc-mode exporting to work as the error is \\u0026#39;Searching for program: No such file or directory, pandoc\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my .emacs file I have (setq markdown-command \\u0026quot;/usr/local/bin/pandoc\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoing through finder, I do have a 50.9MB pandoc file (with no extension though) in /usr/local/bin\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsvnc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"richardsplash\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559902449.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Because the `elpa` directory is in the `emacs.d` directory when I try to search for some strings in own `init.el` it shows results from the `elpa` directory which I don't need.\\n\\nDo some of the grepping packages (projectile-grep for instance) have options to restrict or exclude some directories from the search?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to configure a grep command not to search some directories?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxrxm0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559923409.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause the \\u003Ccode\\u003Eelpa\\u003C/code\\u003E directory is in the \\u003Ccode\\u003Eemacs.d\\u003C/code\\u003E directory when I try to search for some strings in own \\u003Ccode\\u003Einit.el\\u003C/code\\u003E it shows results from the \\u003Ccode\\u003Eelpa\\u003C/code\\u003E directory which I don\\u0026#39;t need.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo some of the grepping packages (projectile-grep for instance) have options to restrict or exclude some directories from the search?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxrxm0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559894609.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I don't know why I hadn't done this sooner, but today I installed kubuntu on a memory stick and am now running that on my otherwise Windows 10 laptop.\\n\\nOf course, the first thing I did after installing 106 kubuntu updates was to install Emacs, which happens to be version 26.1. I noticed, however, that the kubuntu repository doesn't include any of the `.info` files!\\n\\nSo I uninstalled, downloaded 26.2 from [GNU Land](https://www.gnu.org/software/emacs/download.html) and read through the installation instructions. I got as far as running `./configure` and came up with this message:\\n\\n configure: error: You seem to be running X, but no X development libraries\\n were found. You should install the relevant development files for X\\n and for the toolkit you want, such as Gtk+ or Motif. Also make\\n sure you have development files for image handling, i.e.\\n tiff, gif, jpeg, png and xpm.\\n If you are sure you want Emacs compiled without X window support, pass\\n --without-x\\n to configure.\\n\\nI went into the Muon package manager, typed in `x window development library`, and found these two lovelies:\\n\\n- libclxclient-dev (X Window System C++ access library)\\n- libdri2-dev (library for the DRI2 extension to the X Window System)\\n\\nWhich means very little to me :-( I haven't even looked at Gtk+ or Motif, as well as the development files for image handling.\\n\\nI've Googled, and most of what I've found is at least 2 years old. Hoping someone would offer some guidance here, please.\", \"author_fullname\": \"t2_3n4c5vdo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Roadblock when installing Emacs 26.2 on kubuntu 19.04\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxrwro\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559923220.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t know why I hadn\\u0026#39;t done this sooner, but today I installed kubuntu on a memory stick and am now running that on my otherwise Windows 10 laptop.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, the first thing I did after installing 106 kubuntu updates was to install Emacs, which happens to be version 26.1. I noticed, however, that the kubuntu repository doesn\\u0026#39;t include any of the \\u003Ccode\\u003E.info\\u003C/code\\u003E files!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I uninstalled, downloaded 26.2 from \\u003Ca href=\\\"https://www.gnu.org/software/emacs/download.html\\\"\\u003EGNU Land\\u003C/a\\u003E and read through the installation instructions. I got as far as running \\u003Ccode\\u003E./configure\\u003C/code\\u003E and came up with this message:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Econfigure: error: You seem to be running X, but no X development libraries\\nwere found. You should install the relevant development files for X\\nand for the toolkit you want, such as Gtk+ or Motif. Also make\\nsure you have development files for image handling, i.e.\\ntiff, gif, jpeg, png and xpm.\\nIf you are sure you want Emacs compiled without X window support, pass\\n --without-x\\nto configure.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI went into the Muon package manager, typed in \\u003Ccode\\u003Ex window development library\\u003C/code\\u003E, and found these two lovelies:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Elibclxclient-dev (X Window System C++ access library)\\u003C/li\\u003E\\n\\u003Cli\\u003Elibdri2-dev (library for the DRI2 extension to the X Window System)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhich means very little to me :-( I haven\\u0026#39;t even looked at Gtk+ or Motif, as well as the development files for image handling.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve Googled, and most of what I\\u0026#39;ve found is at least 2 years old. Hoping someone would offer some guidance here, please.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxrwro\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"granti128\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559894420.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello r/emacs\\n\\nI would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz.[1](https://www.floydmortuary.com/obituaries/Eric-Ritz/) I didn't know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his `php-mode`.\\n\\nI'm not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\", \"author_fullname\": \"t2_gilh3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[meta] An \\\"in memoriam\\\" page?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxq3a0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 44, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 44, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559908284.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/emacs\\\"\\u003Er/emacs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz.\\u003Ca href=\\\"https://www.floydmortuary.com/obituaries/Eric-Ritz/\\\"\\u003E1\\u003C/a\\u003E I didn\\u0026#39;t know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his \\u003Ccode\\u003Ephp-mode\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"export EDITOR=emacs\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxq3a0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paxperscientiam\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559879484.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_6b5tg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxmyy8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 28, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 28, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559889098.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxmyy8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"LiterallyCarlSagan\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/federicotdn/key-quiz\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559860298.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a package that will let me forget which files I've already opened? Not so much a project exploration package or a do-everything completion system, just a slight twist on switch-to-buffer which would look for files if tab-completing to an existing buffer has failed. Kind of like how finding a file that's already open just switches to its buffer. Ideally as similar to switch-to-buffer's UI as possible.\", \"author_fullname\": \"t2_ajc92\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Package to switch to buffer or file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxm847\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559885167.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a package that will let me forget which files I\\u0026#39;ve already opened? Not so much a project exploration package or a do-everything completion system, just a slight twist on switch-to-buffer which would look for files if tab-completing to an existing buffer has failed. Kind of like how finding a file that\\u0026#39;s already open just switches to its buffer. Ideally as similar to switch-to-buffer\\u0026#39;s UI as possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxm847\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"phalp\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559856367.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm pretty new to emacs, I just installed spacemacs on my arch machine. In the terminal, the interface is near-unreadable. I just see \\\\u6969 all over the place where arrows and other unicode characters would be. Is there a font package I'm missing or something?\", \"author_fullname\": \"t2_eim28\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs showing unicode sequences in the terminal\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxjr2h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559872476.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m pretty new to emacs, I just installed spacemacs on my arch machine. In the terminal, the interface is near-unreadable. I just see \\\\u6969 all over the place where arrows and other unicode characters would be. Is there a font package I\\u0026#39;m missing or something?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxjr2h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rpgwaiter\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559843676.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If I'm writing a document to be published via latex, what, if any, advantages are there to author it in org-babel vs. pure latex? Does the answer change if the document includes things like mathematical equations, technical diagrams and/or code examples?\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-babel for latex\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxiz6w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559868561.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I\\u0026#39;m writing a document to be published via latex, what, if any, advantages are there to author it in org-babel vs. pure latex? Does the answer change if the document includes things like mathematical equations, technical diagrams and/or code examples?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxiz6w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559839761.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to debug python, but when it asks for a template and I type in \\\"python,\\\" nothing comes up. Where do I get a template?\", \"author_fullname\": \"t2_14xlbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Where do I find templates for dap-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxhod6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559861885.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to debug python, but when it asks for a template and I type in \\u0026quot;python,\\u0026quot; nothing comes up. Where do I get a template?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxhod6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_wade\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559833085.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have a setup where I'm forced to work on a Windows machine and connect to a remote linux server.\\n\\nMy initial idea was to start a emacs in daemon mode with `emacs --daemon` and having it persistently running on the server. Then, from windows and using putty (with X-forwarding) + vcxsrv (X Server for Windows), I could call `emacsclient -c` and have a client to this persistent session every time I need in a dedicated window in my Windows pc.\\n\\n\\nThis setup for me would be great because my sessions would survive connection instabilities. Even if my putty session dropped (which happens sometimes), I could just start another emacsclient and resume the work from where I left, including long-running `compile` commands.\\n\\n\\nHowever what happens is that after my connection drops for the first time (or I close a emacsclient) is that the next call to `emacsclient` fails. The system simply hangs and nothing happens. This happened with `emacsclient foo`, `emacsclient -c`, `emacsclient -e nil`, `emacsclient -t`, etc. It hangs (saying \\\"Waiting for Emacs\\\" if the -n flag is passed) as usual, but it never really opens a new emacs frame. \\n\\n\\nRestarting the server solves the issue, but of course I lose all my work.\\n\\n\\nAny ideas?\\n\\n\\n```\\nThis is GNU Emacs 25.1.1 (x86\\\\_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-15, modified by Debian\\n```\", \"author_fullname\": \"t2_2nkdd29t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxfdd1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847473.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a setup where I\\u0026#39;m forced to work on a Windows machine and connect to a remote linux server.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy initial idea was to start a emacs in daemon mode with \\u003Ccode\\u003Eemacs --daemon\\u003C/code\\u003E and having it persistently running on the server. Then, from windows and using putty (with X-forwarding) + vcxsrv (X Server for Windows), I could call \\u003Ccode\\u003Eemacsclient -c\\u003C/code\\u003E and have a client to this persistent session every time I need in a dedicated window in my Windows pc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis setup for me would be great because my sessions would survive connection instabilities. Even if my putty session dropped (which happens sometimes), I could just start another emacsclient and resume the work from where I left, including long-running \\u003Ccode\\u003Ecompile\\u003C/code\\u003E commands.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever what happens is that after my connection drops for the first time (or I close a emacsclient) is that the next call to \\u003Ccode\\u003Eemacsclient\\u003C/code\\u003E fails. The system simply hangs and nothing happens. This happened with \\u003Ccode\\u003Eemacsclient foo\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -c\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -e nil\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -t\\u003C/code\\u003E, etc. It hangs (saying \\u0026quot;Waiting for Emacs\\u0026quot; if the -n flag is passed) as usual, but it never really opens a new emacs frame. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERestarting the server solves the issue, but of course I lose all my work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\nThis is GNU Emacs 25.1.1 (x86\\\\_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-15, modified by Debian\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfdd1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vitorqb23\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559818673.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I used to get a longer undo history, I would frequently use visualize-undo-tree to navigate through my undo states... suddenly my tree is always a single path. \\n\\nAnyone have any idea what I might have changed?\", \"author_fullname\": \"t2_krp1j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Somehow my undo history is truncated... what did I inadvertently change?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx82j3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559798322.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used to get a longer undo history, I would frequently use visualize-undo-tree to navigate through my undo states... suddenly my tree is always a single path. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone have any idea what I might have changed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx82j3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moxxon\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559769522.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"well, recently i am using emacs to manage agenda, to write academic docs, to write some scripts for programming contest and so on until sudendly i find myself unproductive and crazy closing all buffer related to magit, org-mode, eshell, etc.... so i want to know how do you deal with all buffers?, how do you find and change to a buffer quickly?....\\n\\nany ideas is well received... thanks you!!\", \"author_fullname\": \"t2_rpq4n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"how to deal with a lot of buffers in emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx7m7a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 49, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 49, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559796022.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewell, recently i am using emacs to manage agenda, to write academic docs, to write some scripts for programming contest and so on until sudendly i find myself unproductive and crazy closing all buffer related to magit, org-mode, eshell, etc.... so i want to know how do you deal with all buffers?, how do you find and change to a buffer quickly?....\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eany ideas is well received... thanks you!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx7m7a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ch0ff\", \"num_crossposts\": 0, \"num_comments\": 54, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559767222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Even Better 'Better Defaults'\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx54uk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559783750.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx54uk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/ianpan870102/.emacs.d\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559754950.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've made an example [restclient file](https://github.com/TatriX/realworld-rust-rocket/blob/master/tests/dev.http) for my [realworld](https://github.com/TatriX/realworld-rust-rocket) implementation in Rust.\\n\\n[Restclient](https://github.com/pashky/restclient.el) is useful for http testing. So if you never tried it I encourage you to do so!\\n\\nhttps://i.redd.it/lfmdm6x2mj231.png\", \"author_fullname\": \"t2_tpfed\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Restclient example\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"lfmdm6x2mj231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1810, \"x\": 1915, \"u\": \"https://i.redd.it/lfmdm6x2mj231.png\"}, \"m\": \"image/png\", \"id\": \"lfmdm6x2mj231\"}}, \"name\": \"t3_bx2t14\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559771552.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve made an example \\u003Ca href=\\\"https://github.com/TatriX/realworld-rust-rocket/blob/master/tests/dev.http\\\"\\u003Erestclient file\\u003C/a\\u003E for my \\u003Ca href=\\\"https://github.com/TatriX/realworld-rust-rocket\\\"\\u003Erealworld\\u003C/a\\u003E implementation in Rust.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/pashky/restclient.el\\\"\\u003ERestclient\\u003C/a\\u003E is useful for http testing. So if you never tried it I encourage you to do so!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/lfmdm6x2mj231.png\\\"\\u003Ehttps://i.redd.it/lfmdm6x2mj231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2t14\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tatrics\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559742752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_eqgha\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx2swo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559771533.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2swo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andreas-marschke\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559742733.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want to make it so that all variable and function calls are highlighted in the same way they are in definitions but I cannot work out how to properly do so.\\n\\n[Image](https://imgur.com/t9sIhUs) of my current highlighting.\", \"author_fullname\": \"t2_3bwix9h6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx2cy9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559768909.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to make it so that all variable and function calls are highlighted in the same way they are in definitions but I cannot work out how to properly do so.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/t9sIhUs\\\"\\u003EImage\\u003C/a\\u003E of my current highlighting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2cy9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ConfidentGarbage9\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559740109.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to get into writing backends for Gnus, and I'm having a hard time wrapping my head around it coneptwise, essentialwise and otherwise.\\n\\n\\u0026#x200B;\\n\\nI think I've seen a blog-post or somesuch years ago walking through the basics, but all my attempts at finding it have evaluated to nil.\\n\\n\\u0026#x200B;\\n\\nWould I be so lucky that one of you might be able provide any pointers?\", \"author_fullname\": \"t2_mdzdbt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The woes of writing Gnus backends\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx25j5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559767624.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to get into writing backends for Gnus, and I\\u0026#39;m having a hard time wrapping my head around it coneptwise, essentialwise and otherwise.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I\\u0026#39;ve seen a blog-post or somesuch years ago walking through the basics, but all my attempts at finding it have evaluated to nil.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWould I be so lucky that one of you might be able provide any pointers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx25j5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"StoffePro\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx25j5/the_woes_of_writing_gnus_backends/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx25j5/the_woes_of_writing_gnus_backends/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559738824.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have some interesting agenda entries dating back to 2017 that I want to use in my current org files and I have set the TODO values to TODO2017, but there is too much to see when I am working on current items.\\n\\nIs there a way to filter the editing page to hide the TODO2017 or any other items?\\n\\nI think I can filter them out in the agenda view, but in this case I need them filtered when viewing or editing the page.\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can some org TODOs filtered out from normal working view?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx0bp9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559752893.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have some interesting agenda entries dating back to 2017 that I want to use in my current org files and I have set the TODO values to TODO2017, but there is too much to see when I am working on current items.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way to filter the editing page to hide the TODO2017 or any other items?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I can filter them out in the agenda view, but in this case I need them filtered when viewing or editing the page.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx0bp9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx0bp9/how_can_some_org_todos_filtered_out_from_normal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx0bp9/how_can_some_org_todos_filtered_out_from_normal/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559724093.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I saw [an earlier thread](https://www.reddit.com/r/emacs/comments/8e24t9/writing_reactjsx_in_2018_what_addons_do_you_all/) asking about users\\u2019 setups for JSX. Since I can\\u2019t respond to that thread, I thought I\\u2019d make a new one / an announcement.\\n\\nSince Emacs 25, js-jsx-mode was added to provide some indentation support for JSX \\u2014 however, the indentation code had many bugs and limitations. Not everyone knew about js-jsx-mode either.\\n\\nI decided to return to the Emacs core and fix the indentation code. I also added highlighting for JSX. I even made it so that JSX could be detected and used in normal JavaScript buffers, without the user needing to know about js-jsx-mode.\\n\\n[JSX code highlighted in Emacs 27](https://i.redd.it/hh8uds9elh231.png)\\n\\nAll these features are now available on the Emacs master branch, and eventually will be released in Emacs 27. I invite JS devs to take my improvements for a spin. Hopefully they will be pleasant for you to use!\\n\\nMy goal was to do most of the same things that the combination of js2-mode+rjsx-mode would achieve, without needing to install and configure extra modes, and hopefully with better performance.\", \"author_fullname\": \"t2_3w4fpd4t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"Improved JSX support now available in js-mode on Emacs master\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"hh8uds9elh231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 684, \"x\": 816, \"u\": \"https://i.redd.it/hh8uds9elh231.png\"}, \"m\": \"image/png\", \"id\": \"hh8uds9elh231\"}}, \"name\": \"t3_bwzpw0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 112, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 112, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559747224.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI saw \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/8e24t9/writing_reactjsx_in_2018_what_addons_do_you_all/\\\"\\u003Ean earlier thread\\u003C/a\\u003E asking about users\\u2019 setups for JSX. Since I can\\u2019t respond to that thread, I thought I\\u2019d make a new one / an announcement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince Emacs 25, js-jsx-mode was added to provide some indentation support for JSX \\u2014 however, the indentation code had many bugs and limitations. Not everyone knew about js-jsx-mode either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI decided to return to the Emacs core and fix the indentation code. I also added highlighting for JSX. I even made it so that JSX could be detected and used in normal JavaScript buffers, without the user needing to know about js-jsx-mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/hh8uds9elh231.png\\\"\\u003EJSX code highlighted in Emacs 27\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll these features are now available on the Emacs master branch, and eventually will be released in Emacs 27. I invite JS devs to take my improvements for a spin. Hopefully they will be pleasant for you to use!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy goal was to do most of the same things that the combination of js2-mode+rjsx-mode would achieve, without needing to install and configure extra modes, and hopefully with better performance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwzpw0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jacksonrayhamilton\", \"num_crossposts\": 0, \"num_comments\": 23, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559718424.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"It is kind of annoying to have to use capital letters to get a complete suggestion in many cases. So I was wondering if it possible to make company-lsp non-case-sensitive.\\n\\n\\u0026#x200B;\\n\\nThanks.\", \"author_fullname\": \"t2_3d69xp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make company-lsp non-case-sensitive?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwt79w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559706779.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt is kind of annoying to have to use capital letters to get a complete suggestion in many cases. So I was wondering if it possible to make company-lsp non-case-sensitive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwt79w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ram535\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwt79w/how_to_make_companylsp_noncasesensitive/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwt79w/how_to_make_companylsp_noncasesensitive/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559677979.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm a long-time vim user who's been intrigued for a while by what emacs has to offer. I recently made the plunge and have been been using emacs for my workflow with C/C++ development mostly. One issue that I'm running into is that I can't seem to get autoindent to behave nicely, or at least to behave like it does in vim.\\n\\nIn my .vimrc, I have two lines:\\n\\n set tabstop=4\\n set shiftwidth=4\\n\\nThere is a third option, set notabexpand, which is on by default and keeps tabs as tabs, instead of substituting spaces.\\n\\nThis is the behavior that I'm trying to create in emacs. The tab character is displayed as 4 spaces wide, but is actually saved as a tab character in the file instead of four spaces. Autoindentation also inserts tabs, which are displayed as 4 spaces wide.\\n\\nHow do I reproduce this in emacs? I've gone through half a dozen guides, each recommending something different, and all of them have had funky results. Currently I've got:\\n\\n (setq-default tab-width 4)\\n (setq tap-stop-list (number-sequence 4 80 4))\\n\\nAutoindents give me a tab two characters wide. I'm not sure if it's a tab being displayed as two spaces, or two actual spaces.\\n\\nI tried adding: \\n\\n (setq c-default-style \\\"linux\\\" tab-width 4)\\n\\nWhen I did this, tabs were indeed displayed as 4 characters wide, but each level of indention was giving me 2 tabs for a total of 8 characters of indentation per level.\\n\\nWhat am I missing here? I feel like I *must* be making this way harder than it is because such basic functionality can't be hidden behind 10 lines of configuration.\\n\\n\\nEdit:\\n\\nI did a little bit more tinkering, and I seem to have found a combination of settings that (mostly) gets the correct behavior.\\n\\nBasically, I got rid of everything in my .emacs that mentioned indentation and added the following:\\n\\n (setq-default c-basic-offset 4\\n tab-width 4\\n indent-tabs-mode t)\\n\\nWith that change, everything *seems* to be working correctly. c-basic-offset is how many spaces emacs will indent a level of code, tab width is how many spaces the tab character is equal to, and indent-tabs-mode is a boolean variable that determines if tabs are used (t) or spaces (f). At least that's what I'm gathering.\", \"author_fullname\": \"t2_ge28w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I get my tabs and auto-indent to behave nicely?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bws522\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559712779.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559701657.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a long-time vim user who\\u0026#39;s been intrigued for a while by what emacs has to offer. I recently made the plunge and have been been using emacs for my workflow with C/C++ development mostly. One issue that I\\u0026#39;m running into is that I can\\u0026#39;t seem to get autoindent to behave nicely, or at least to behave like it does in vim.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my .vimrc, I have two lines:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eset tabstop=4\\nset shiftwidth=4\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThere is a third option, set notabexpand, which is on by default and keeps tabs as tabs, instead of substituting spaces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the behavior that I\\u0026#39;m trying to create in emacs. The tab character is displayed as 4 spaces wide, but is actually saved as a tab character in the file instead of four spaces. Autoindentation also inserts tabs, which are displayed as 4 spaces wide.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I reproduce this in emacs? I\\u0026#39;ve gone through half a dozen guides, each recommending something different, and all of them have had funky results. Currently I\\u0026#39;ve got:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq-default tab-width 4)\\n(setq tap-stop-list (number-sequence 4 80 4))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAutoindents give me a tab two characters wide. I\\u0026#39;m not sure if it\\u0026#39;s a tab being displayed as two spaces, or two actual spaces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried adding: \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq c-default-style \\u0026quot;linux\\u0026quot; tab-width 4)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I did this, tabs were indeed displayed as 4 characters wide, but each level of indention was giving me 2 tabs for a total of 8 characters of indentation per level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat am I missing here? I feel like I \\u003Cem\\u003Emust\\u003C/em\\u003E be making this way harder than it is because such basic functionality can\\u0026#39;t be hidden behind 10 lines of configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did a little bit more tinkering, and I seem to have found a combination of settings that (mostly) gets the correct behavior.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically, I got rid of everything in my .emacs that mentioned indentation and added the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq-default c-basic-offset 4\\n tab-width 4\\n indent-tabs-mode t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith that change, everything \\u003Cem\\u003Eseems\\u003C/em\\u003E to be working correctly. c-basic-offset is how many spaces emacs will indent a level of code, tab width is how many spaces the tab character is equal to, and indent-tabs-mode is a boolean variable that determines if tabs are used (t) or spaces (f). At least that\\u0026#39;s what I\\u0026#39;m gathering.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bws522\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"morganmachine91\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bws522/how_do_i_get_my_tabs_and_autoindent_to_behave/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bws522/how_do_i_get_my_tabs_and_autoindent_to_behave/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559672857.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_r6lg7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Will this Debian buster (testing) bug of Emacs related to a 16 year old upstream gtk+ bug affect those waiting for buster?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwrhq4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559698416.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"bugs.debian.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwrhq4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jumpUpHigh\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwrhq4/will_this_debian_buster_testing_bug_of_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://bugs.debian.org/cgi-bin/bugreport.cgi?archive=no\\u0026bug=929567\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559669616.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello everyone,\\n\\nI have been wanting to customize emacs to my needs for a long time but except for org-mode haven't quite done anything. Figured now would be a good time to start.\\n\\nThe first thing that I want is I create a lot of buffers on emacs but sometimes when my work laptop decides to restart I loose all those buffers (since they aren't associated with any file).\\n\\nHow do I get emacs to auto save my buffers\\\\*\\\\* to a particular location? \\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\* When I say buffer I basically mean \\\\`C-x b\\\\` type in a new name and start working on it.\", \"author_fullname\": \"t2_u6flf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make emacs automatically save buffers to a location\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwqw72\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"3a5e1042-1094-11e7-bb00-0e3b6c7befce\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559695385.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been wanting to customize emacs to my needs for a long time but except for org-mode haven\\u0026#39;t quite done anything. Figured now would be a good time to start.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first thing that I want is I create a lot of buffers on emacs but sometimes when my work laptop decides to restart I loose all those buffers (since they aren\\u0026#39;t associated with any file).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I get emacs to auto save my buffers** to a particular location? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** When I say buffer I basically mean `C-x b` type in a new name and start working on it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwqw72\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"abhixec\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/bwqw72/how_to_make_emacs_automatically_save_buffers_to_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwqw72/how_to_make_emacs_automatically_save_buffers_to_a/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559666585.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am trying to create a package manager for emacs which doesn't rely on package.el, is very minimalistic, and does all of its operations in the background. I have done some basic operations using shell scripts, Maybe I will use elisp code instead at some point. Any feedbacks or comments are very much appreciated.\\n\\nhttps://github.com/SidharthArya/emacsit\", \"author_fullname\": \"t2_3tn7pcdr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A simple package manager for emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwptua\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559661450.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559689923.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to create a package manager for emacs which doesn\\u0026#39;t rely on package.el, is very minimalistic, and does all of its operations in the background. I have done some basic operations using shell scripts, Maybe I will use elisp code instead at some point. Any feedbacks or comments are very much appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/SidharthArya/emacsit\\\"\\u003Ehttps://github.com/SidharthArya/emacsit\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwptua\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SidharthArya-\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwptua/a_simple_package_manager_for_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwptua/a_simple_package_manager_for_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559661123.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cr743\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"dianyou 0.0.3 is out (Gnus tool to search/analyze mails)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwohf8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559682405.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"blog.binchen.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwohf8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"redguardtoo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwohf8/dianyou_003_is_out_gnus_tool_to_searchanalyze/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://blog.binchen.org/posts/dianyou-0-0-3-is-out.html\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559653605.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I know that `emacs` is not multi-threaded, but I'd hope to be able to spawn a child process from `eshell`. Running `M-x shell` and then `yes \\u003E /dev/null` results in a process `yes` being spawned and it is occupying one core's 100%, it does not block `emacs`, all is good.\\n\\nHowever, when running `M-x eshell` and then `yes \\u003E /dev/null` results in the `emacs` process chugging 100% cpu, therefore `eshell` spawns a process as a child `emacs` process? Do I get this right?\\n\\nSo the question is: Can `eshell` spawn a process that is detached from `emacs`, just like `M-x shell` does?\", \"author_fullname\": \"t2_17fhdh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Eshell don't blocks Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwn89f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559673594.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know that \\u003Ccode\\u003Eemacs\\u003C/code\\u003E is not multi-threaded, but I\\u0026#39;d hope to be able to spawn a child process from \\u003Ccode\\u003Eeshell\\u003C/code\\u003E. Running \\u003Ccode\\u003EM-x shell\\u003C/code\\u003E and then \\u003Ccode\\u003Eyes \\u0026gt; /dev/null\\u003C/code\\u003E results in a process \\u003Ccode\\u003Eyes\\u003C/code\\u003E being spawned and it is occupying one core\\u0026#39;s 100%, it does not block \\u003Ccode\\u003Eemacs\\u003C/code\\u003E, all is good.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, when running \\u003Ccode\\u003EM-x eshell\\u003C/code\\u003E and then \\u003Ccode\\u003Eyes \\u0026gt; /dev/null\\u003C/code\\u003E results in the \\u003Ccode\\u003Eemacs\\u003C/code\\u003E process chugging 100% cpu, therefore \\u003Ccode\\u003Eeshell\\u003C/code\\u003E spawns a process as a child \\u003Ccode\\u003Eemacs\\u003C/code\\u003E process? Do I get this right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo the question is: Can \\u003Ccode\\u003Eeshell\\u003C/code\\u003E spawn a process that is detached from \\u003Ccode\\u003Eemacs\\u003C/code\\u003E, just like \\u003Ccode\\u003EM-x shell\\u003C/code\\u003E does?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwn89f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"grimscythe_\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwn89f/eshell_dont_blocks_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwn89f/eshell_dont_blocks_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559644794.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559637338.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As in the previous thread don't feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly tips/trick/etc/ thread\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwm94g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559664939.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs in the previous thread don\\u0026#39;t feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwm94g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 19, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": true, \"url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559636139.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_661dm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A keyboard that changes as you type.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwlncu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 80, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 80, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559659632.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwlncu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jaccarmac\", \"num_crossposts\": 1, \"num_comments\": 25, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwlncu/a_keyboard_that_changes_as_you_type/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/shapr/markovkeyboard\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559630832.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"After set debug-on-error to t in order to make sure that there is no error inside my .emacs file then i got some error on startup.\\n\\n Debugger entered--Lisp error: (wrong-type-argument undo-tree nil)\\n signal(wrong-type-argument (undo-tree nil))\\n undo-tree-current(nil)\\n (undo-tree-node-previous (undo-tree-current buffer-undo-tree))\\n (and undo-tree-mode (not buffer-read-only) (not (eq t buffer-undo-list)) (undo-tree-node-previous (undo-tree-current buffer-undo-tree)))\\n redisplay_internal\\\\ \\\\(C\\\\ function\\\\)()\\n message(\\\"Loading %s (source)...\\\" \\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\")\\n load-with-code-conversion(\\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\" \\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\" nil nil)\\n #\\u003Csubr load\\u003E(\\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\" nil nil nil nil)\\n ad-Advice-load(#\\u003Csubr load\\u003E \\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n apply(ad-Advice-load #\\u003Csubr load\\u003E \\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n load(\\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n eval-buffer(#\\u003Cbuffer *load*\\u003E nil \\\"/home/yourpc/.emacs\\\" nil t) ; Reading at buffer position 29657\\n load-with-code-conversion(\\\"/home/yourpc/.emacs\\\" \\\"/home/yourpc/.emacs\\\" t t)\\n load(\\\"~/.emacs\\\" noerror nomessage)\\n startup--load-user-init-file(#f(compiled-function () #\\u003Cbytecode 0x1fd3c2958e75\\u003E) #f(compiled-function () #\\u003Cbytecode 0x1fd3c2958e03\\u003E) t)\\n command-line()\\n normal-top-level()\\n\\nAnyone could help me fix this? I just want an error free.\", \"author_fullname\": \"t2_3uh7inav\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Set debug-on-error to t then startup with undo-tree error.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwleyk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559657730.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter set debug-on-error to t in order to make sure that there is no error inside my .emacs file then i got some error on startup.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EDebugger entered--Lisp error: (wrong-type-argument undo-tree nil)\\n signal(wrong-type-argument (undo-tree nil))\\n undo-tree-current(nil)\\n (undo-tree-node-previous (undo-tree-current buffer-undo-tree))\\n (and undo-tree-mode (not buffer-read-only) (not (eq t buffer-undo-list)) (undo-tree-node-previous (undo-tree-current buffer-undo-tree)))\\n redisplay_internal\\\\ \\\\(C\\\\ function\\\\)()\\n message(\\u0026quot;Loading %s (source)...\\u0026quot; \\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot;)\\n load-with-code-conversion(\\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot; \\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot; nil nil)\\n #\\u0026lt;subr load\\u0026gt;(\\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot; nil nil nil nil)\\n ad-Advice-load(#\\u0026lt;subr load\\u0026gt; \\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n apply(ad-Advice-load #\\u0026lt;subr load\\u0026gt; \\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n load(\\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n eval-buffer(#\\u0026lt;buffer *load*\\u0026gt; nil \\u0026quot;/home/yourpc/.emacs\\u0026quot; nil t) ; Reading at buffer position 29657\\n load-with-code-conversion(\\u0026quot;/home/yourpc/.emacs\\u0026quot; \\u0026quot;/home/yourpc/.emacs\\u0026quot; t t)\\n load(\\u0026quot;~/.emacs\\u0026quot; noerror nomessage)\\n startup--load-user-init-file(#f(compiled-function () #\\u0026lt;bytecode 0x1fd3c2958e75\\u0026gt;) #f(compiled-function () #\\u0026lt;bytecode 0x1fd3c2958e03\\u0026gt;) t)\\n command-line()\\n normal-top-level()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnyone could help me fix this? I just want an error free.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwleyk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cuhabaho\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwleyk/set_debugonerror_to_t_then_startup_with_undotree/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwleyk/set_debugonerror_to_t_then_startup_with_undotree/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559628930.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Unfortunately, this is not a just a statement about the longevity of Emacs, it's an actual problem I'm having: when I try to exit Emacs (either by C -x-C-c or closing the window), I get this error message in the minibuffer: \\n\\n\\nWrong type argument: number-or-marker-p, (+ -8) \\n\\n\\nI have to force quit it to get out. When I start Emacs with -q, this doesn't happen, so I'm getting ready to go through my whole init file, but I was hoping someone else might have encountered this and could save me some time. Thanks!\", \"author_fullname\": \"t2_gu9ty\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs won't quit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwjenz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559643882.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnfortunately, this is not a just a statement about the longevity of Emacs, it\\u0026#39;s an actual problem I\\u0026#39;m having: when I try to exit Emacs (either by C -x-C-c or closing the window), I get this error message in the minibuffer: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWrong type argument: number-or-marker-p, (+ -8) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have to force quit it to get out. When I start Emacs with -q, this doesn\\u0026#39;t happen, so I\\u0026#39;m getting ready to go through my whole init file, but I was hoping someone else might have encountered this and could save me some time. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwjenz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"viscountslim\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559615082.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello All,\\n\\nI have a single org file with lots of entries. Each entry has a few tags. I would like to view full entries for a specific a tag.\\n\\nI tried org-occur: it seem to highlight matching tags but keeps all entries in view\\n\\nI came across this old thread: [https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines](https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines) \\n\\nBefore trying this I wanted to see if there is something already baked in.\", \"author_fullname\": \"t2_62u3sb0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-mode: Narrow org buffer to matching tag entries such that full entry is in view\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwjdry\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559643739.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello All,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a single org file with lots of entries. Each entry has a few tags. I would like to view full entries for a specific a tag.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried org-occur: it seem to highlight matching tags but keeps all entries in view\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI came across this old thread: \\u003Ca href=\\\"https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines\\\"\\u003Ehttps://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore trying this I wanted to see if there is something already baked in.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwjdry\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"manojm321\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwjdry/orgmode_narrow_org_buffer_to_matching_tag_entries/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwjdry/orgmode_narrow_org_buffer_to_matching_tag_entries/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559614939.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My use case is this, I usually have emacs split into three vertical frames (left, center, and right) and I prefer editing in the middle buffer while using the right for reference and the left for compilation, testing, etc. Is there a way to make it so that when I open a buffer (or switch to a buffer) in the middle frame and it is open in the right, it swaps the middle and right buffers? This would be very nice for me so that I don't have to go back to the right buffer to change it myself. Is there a package for this or a simple script to make it work?\", \"author_fullname\": \"t2_apgh2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to swap if buffer is open in other frame, swap frame buffers instead of having two frames with the same buffer.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwdztj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559614819.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy use case is this, I usually have emacs split into three vertical frames (left, center, and right) and I prefer editing in the middle buffer while using the right for reference and the left for compilation, testing, etc. Is there a way to make it so that when I open a buffer (or switch to a buffer) in the middle frame and it is open in the right, it swaps the middle and right buffers? This would be very nice for me so that I don\\u0026#39;t have to go back to the right buffer to change it myself. Is there a package for this or a simple script to make it work?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwdztj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Twosided13\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwdztj/is_there_a_way_to_swap_if_buffer_is_open_in_other/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwdztj/is_there_a_way_to_swap_if_buffer_is_open_in_other/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559586019.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have the following code in my `.emacs` file:\\n\\n````\\n(custom-set-faces\\n '(default ((t (:family \\\"Source Code Pro\\\" :foundry \\\"ADBO\\\" :slant normal :weight normal :height 160 :width normal)))))\\n(set-fontset-font \\\"fontset-default\\\"\\n\\t\\t 'arabic\\n\\t\\t (font-spec :family \\\"Kawkab Mono\\\" :size 14))\\n````\\n\\nSetting `Source Code Pro` is done successfully for English text. But `Kawkab Mono` doesn't get applied on Arabic text, I still need to put the point at the end of that section, press C-x C-e to execute it.\\n\\nStarting emacs with `--debug-init` doesn't show any error message.\", \"author_fullname\": \"t2_169z83\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doesn't Execute `set-fontset-font` code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwchvn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559607309.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have the following code in my \\u003Ccode\\u003E.emacs\\u003C/code\\u003E file:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(custom-set-faces\\n \\u0026#39;(default ((t (:family \\u0026quot;Source Code Pro\\u0026quot; :foundry \\u0026quot;ADBO\\u0026quot; :slant normal :weight normal :height 160 :width normal)))))\\n(set-fontset-font \\u0026quot;fontset-default\\u0026quot;\\n \\u0026#39;arabic\\n (font-spec :family \\u0026quot;Kawkab Mono\\u0026quot; :size 14))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESetting \\u003Ccode\\u003ESource Code Pro\\u003C/code\\u003E is done successfully for English text. But \\u003Ccode\\u003EKawkab Mono\\u003C/code\\u003E doesn\\u0026#39;t get applied on Arabic text, I still need to put the point at the end of that section, press C-x C-e to execute it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStarting emacs with \\u003Ccode\\u003E--debug-init\\u003C/code\\u003E doesn\\u0026#39;t show any error message.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwchvn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tareefdev\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwchvn/emacs_doesnt_execute_setfontsetfont_code/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwchvn/emacs_doesnt_execute_setfontsetfont_code/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559578509.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[https://github.com/abrochard/emacs-todoist](https://github.com/abrochard/emacs-todoist)\\n\\n\\u0026#x200B;\\n\\nI'm a big fan of [todoist.com](https://todoist.com) and it's so convenient to be able to just create a new task from a binding, or pull out the task list in an org-mode buffer.\", \"author_fullname\": \"t2_10q1g7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"emacs-todoist: interact with todoist.com for task management\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwc9lr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559606158.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/abrochard/emacs-todoist\\\"\\u003Ehttps://github.com/abrochard/emacs-todoist\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a big fan of \\u003Ca href=\\\"https://todoist.com\\\"\\u003Etodoist.com\\u003C/a\\u003E and it\\u0026#39;s so convenient to be able to just create a new task from a binding, or pull out the task list in an org-mode buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwc9lr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Metr0idFusi0n\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559577358.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[leaf.el](https://github.com/conao3/leaf.el)\\n\\n[feather.el](https://github.com/conao3/feather.el)\\n\\nBoth seem interesting, and I didn't see them in MELPA so I thought I'd give them exposure. :) Currently there's very few contributors, so maybe people here might be interested in contributing.\\n\\nI don't own these, just btw.\", \"author_fullname\": \"t2_md275\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Interesting Emacs packages: leaf.el and feather.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwbo9n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559603044.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/conao3/leaf.el\\\"\\u003Eleaf.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/conao3/feather.el\\\"\\u003Efeather.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth seem interesting, and I didn\\u0026#39;t see them in MELPA so I thought I\\u0026#39;d give them exposure. :) Currently there\\u0026#39;s very few contributors, so maybe people here might be interested in contributing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t own these, just btw.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbo9n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ProfessorSexyTime\", \"num_crossposts\": 0, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559574244.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_960gwtm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I wrote some elisp to insert pretty comments. Please code review! :)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwbmc3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559602783.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gist.github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbmc3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nsapte\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbmc3/i_wrote_some_elisp_to_insert_pretty_comments/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://gist.github.com/suvratapte/fc3f5bfbc9c9d649e3ef080ec66bf9d5\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559573983.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So when I try to change custom themes, the previous theme is overwriting the new theme in my init.el. When I change it, this is what I'm seeing in my custom-set-theme section.\\n\\n\\u0026#x200B;\\n\\n '(ansi-color-names-vector\\n [\\\"#1F1611\\\" \\\"#660000\\\" \\\"#144212\\\" \\\"#EFC232\\\" \\\"#5798AE\\\" \\\"#BE73FD\\\" \\\"#93C1BC\\\" \\\"#E6E1DC\\\"])\\n '(ansi-term-color-vector\\n [unspecified \\\"#1F1611\\\" \\\"#660000\\\" \\\"#144212\\\" \\\"#EFC232\\\" \\\"#5798AE\\\" \\\"#BE73FD\\\" \\\"#93C1BC\\\" \\\"#E6E1DC\\\"])\\n '(custom-safe-themes\\n (quote\\n (\\\"3e83abe75cebf5621e34ce1cbe6e12e4d80766bed0755033febed5794d0c69bf\\\" \\\"35b000995eb4a526249078664d91b056feab7e96e81b2f226a0d9cad7f0a416e\\\" \\\"4b19d61c560a93ef90767abe513c11f236caec2864617d718aa366618133704c\\\" default)))\\n '(fci-rule-character-color \\\"#452E2E\\\")\\n '(fci-rule-color \\\"#452E2E\\\")\\n\\n\\u0026#x200B;\\n\\nDeleting this doesn't do anything, it just adds it in next time.\\n\\nHere are some screenshots to clarify what it is I'm seeing.\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[https://i.redd.it/kr94yn9hm5231.png](https://i.redd.it/kr94yn9hm5231.png)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[https://i.redd.it/84g8yxfkm5231.png](https://i.redd.it/84g8yxfkm5231.png)\\n\\nThe custom theme is supposed to look like [this](https://peach-melpa.org/themes/birds-of-paradise-plus-theme). Uninstalling the autumn-light theme doesn't help, either.\\n\\nEDIT: Color v custom\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/anogyn56vq231.gif\", \"author_fullname\": \"t2_14xlbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I'm getting a strange color theme bug in 26.2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"anogyn56vq231\": {\"status\": \"valid\", \"e\": \"AnimatedImage\", \"s\": {\"y\": 534, \"gif\": \"https://i.redd.it/anogyn56vq231.gif\", \"mp4\": \"https://external-preview.redd.it/anogyn56vq231.gif?format=mp4\\u0026s=862f232535c436319569146e87e81869651931c2\", \"x\": 500}, \"m\": \"image/gif\", \"id\": \"anogyn56vq231\"}}, \"name\": \"t3_bwbizf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559830430.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559602269.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo when I try to change custom themes, the previous theme is overwriting the new theme in my init.el. When I change it, this is what I\\u0026#39;m seeing in my custom-set-theme section.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026#39;(ansi-color-names-vector\\n[\\u0026quot;#1F1611\\u0026quot; \\u0026quot;#660000\\u0026quot; \\u0026quot;#144212\\u0026quot; \\u0026quot;#EFC232\\u0026quot; \\u0026quot;#5798AE\\u0026quot; \\u0026quot;#BE73FD\\u0026quot; \\u0026quot;#93C1BC\\u0026quot; \\u0026quot;#E6E1DC\\u0026quot;])\\n\\u0026#39;(ansi-term-color-vector\\n[unspecified \\u0026quot;#1F1611\\u0026quot; \\u0026quot;#660000\\u0026quot; \\u0026quot;#144212\\u0026quot; \\u0026quot;#EFC232\\u0026quot; \\u0026quot;#5798AE\\u0026quot; \\u0026quot;#BE73FD\\u0026quot; \\u0026quot;#93C1BC\\u0026quot; \\u0026quot;#E6E1DC\\u0026quot;])\\n\\u0026#39;(custom-safe-themes\\n(quote\\n(\\u0026quot;3e83abe75cebf5621e34ce1cbe6e12e4d80766bed0755033febed5794d0c69bf\\u0026quot; \\u0026quot;35b000995eb4a526249078664d91b056feab7e96e81b2f226a0d9cad7f0a416e\\u0026quot; \\u0026quot;4b19d61c560a93ef90767abe513c11f236caec2864617d718aa366618133704c\\u0026quot; default)))\\n\\u0026#39;(fci-rule-character-color \\u0026quot;#452E2E\\u0026quot;)\\n\\u0026#39;(fci-rule-color \\u0026quot;#452E2E\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeleting this doesn\\u0026#39;t do anything, it just adds it in next time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are some screenshots to clarify what it is I\\u0026#39;m seeing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/kr94yn9hm5231.png\\\"\\u003Ehttps://i.redd.it/kr94yn9hm5231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/84g8yxfkm5231.png\\\"\\u003Ehttps://i.redd.it/84g8yxfkm5231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe custom theme is supposed to look like \\u003Ca href=\\\"https://peach-melpa.org/themes/birds-of-paradise-plus-theme\\\"\\u003Ethis\\u003C/a\\u003E. Uninstalling the autumn-light theme doesn\\u0026#39;t help, either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Color v custom\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/anogyn56vq231.gif\\\"\\u003Ehttps://i.redd.it/anogyn56vq231.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbizf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_wade\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559573469.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here's the story:\\n\\nOnce upon a time, I wanted to convert some videos into mp3 files. But why download some GUI program off the internet or write a script when you can open up Emacs, right?\\n\\nSo after messing around with some Elisp code for running ffmpeg as a subprocess, I stumbled on Eshell! Not only does it work amazingly with Evil (it's like a regular buffer and bash had a baby), but you can throw in all the other Emacs favourites like Helm for getting file paths, and Company for some auto-complete.\\n\\nHere are some (Evil) manoeuvres.\\n\\n`:eshell`\\n\\n`cd C-x C-f` choose a file `C-c i` insert file path.\\n\\nWant to copy past your cool Eshell script to Reddit?\\n\\n`ESC` to go back to normal mode (or `jk` if you're fancy) `yy` yank the line.\\n\\n`\\u003E\\u003E for f in *.mkv {ffmpeg -i $f -aq 3 output/$(file-name-sans-extension f).mp3}`\\n\\n`i` go back to insert mode, run your mini-script. Horrah! All files converted.\\n\\nWhat's `$(file-name-sans-extension f)` you ask? That's Elisp code. That's right, you can just throw in the entire power of Emacs Lisp into your one line script.\\n\\nThere is just one little issue I ran into and that's when typing $(file-name...) Company bugged out and wouldn't complete the function name so I had to type the whole thing out (the horror!).\\n\\n\\u003Cedit\\u003E Found some extra links, since the documentation for Eshell inside emacs is a bit sparse.\\n\\nhttps://www.emacswiki.org/emacs/CategoryEshell\\n\\nhttps://masteringemacs.org/article/complete-guide-mastering-eshell\", \"author_fullname\": \"t2_c4blft1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Did you know that the Eshell is awesome?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9yo7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 91, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 91, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559574338.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559592800.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s the story:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce upon a time, I wanted to convert some videos into mp3 files. But why download some GUI program off the internet or write a script when you can open up Emacs, right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo after messing around with some Elisp code for running ffmpeg as a subprocess, I stumbled on Eshell! Not only does it work amazingly with Evil (it\\u0026#39;s like a regular buffer and bash had a baby), but you can throw in all the other Emacs favourites like Helm for getting file paths, and Company for some auto-complete.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are some (Evil) manoeuvres.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:eshell\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ecd C-x C-f\\u003C/code\\u003E choose a file \\u003Ccode\\u003EC-c i\\u003C/code\\u003E insert file path.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWant to copy past your cool Eshell script to Reddit?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EESC\\u003C/code\\u003E to go back to normal mode (or \\u003Ccode\\u003Ejk\\u003C/code\\u003E if you\\u0026#39;re fancy) \\u003Ccode\\u003Eyy\\u003C/code\\u003E yank the line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026gt;\\u0026gt; for f in *.mkv {ffmpeg -i $f -aq 3 output/$(file-name-sans-extension f).mp3}\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ei\\u003C/code\\u003E go back to insert mode, run your mini-script. Horrah! All files converted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s \\u003Ccode\\u003E$(file-name-sans-extension f)\\u003C/code\\u003E you ask? That\\u0026#39;s Elisp code. That\\u0026#39;s right, you can just throw in the entire power of Emacs Lisp into your one line script.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is just one little issue I ran into and that\\u0026#39;s when typing $(file-name...) Company bugged out and wouldn\\u0026#39;t complete the function name so I had to type the whole thing out (the horror!).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;edit\\u0026gt; Found some extra links, since the documentation for Eshell inside emacs is a bit sparse.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/CategoryEshell\\\"\\u003Ehttps://www.emacswiki.org/emacs/CategoryEshell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://masteringemacs.org/article/complete-guide-mastering-eshell\\\"\\u003Ehttps://masteringemacs.org/article/complete-guide-mastering-eshell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9yo7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"202700000000\", \"num_crossposts\": 0, \"num_comments\": 25, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559564000.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_64sbo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9azu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559588032.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9azu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rainymood_XI\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/Rainymood/dotemacs\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559559232.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nAs above, I'm wanting to access OneDrive from my emacs init as I'm trying to use org-mode/agenda, and want to be able to use OneDrive to sync between locations, however emacs always says can't find the file regardless if I use:\\n\\n\\\\~/OneDrive...\\n\\n%userprofile%/OneDrive\\n\\n%systemdrive%%homepath%/OneDrive\\n\\nFrom here:\\n\\n[https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt](https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt)\\n\\n\\u0026#x200B;\\n\\nBasically want this:\\n\\nsetq org-agenda-files (list \\\"\\\\~/OneDrive/org/general.org\\\")\\n\\n\\u0026#x200B;\\n\\nSince I have different user names at work/home I can't use a full path, any ideas? Most of the comments about home on windows seem to be with moving the .emacs.d directory, which I'm fine keeping that where it is.\", \"author_fullname\": \"t2_5f5ma\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Accessing OneDrive from emacs init?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw8ejb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559580110.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs above, I\\u0026#39;m wanting to access OneDrive from my emacs init as I\\u0026#39;m trying to use org-mode/agenda, and want to be able to use OneDrive to sync between locations, however emacs always says can\\u0026#39;t find the file regardless if I use:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E~/OneDrive...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E%userprofile%/OneDrive\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E%systemdrive%%homepath%/OneDrive\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt\\\"\\u003Ehttps://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically want this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esetq org-agenda-files (list \\u0026quot;~/OneDrive/org/general.org\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince I have different user names at work/home I can\\u0026#39;t use a full path, any ideas? Most of the comments about home on windows seem to be with moving the .emacs.d directory, which I\\u0026#39;m fine keeping that where it is.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw8ejb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GeorgeStorm\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw8ejb/accessing_onedrive_from_emacs_init/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw8ejb/accessing_onedrive_from_emacs_init/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559551310.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi there,\\n\\nI couldn't find anything about this online (well, nothing I could really get a direct answer from). If I copy a table on an HTML page, is it possible to paste it into an org document as an org table? I tried with org-protocol, but it doesn't set up the |--| separators at all and it just ends up being a mess. Maybe I'm missing something?\\n\\nThanks for any help!\", \"author_fullname\": \"t2_dmarn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Copy HTML Table/Paste Org Mode Table?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw7qdy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559573914.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi there,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI couldn\\u0026#39;t find anything about this online (well, nothing I could really get a direct answer from). If I copy a table on an HTML page, is it possible to paste it into an org document as an org table? I tried with org-protocol, but it doesn\\u0026#39;t set up the |--| separators at all and it just ends up being a mess. Maybe I\\u0026#39;m missing something?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any help!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw7qdy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TyrionBean\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw7qdy/copy_html_tablepaste_org_mode_table/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw7qdy/copy_html_tablepaste_org_mode_table/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559545114.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When I export to HTML, the source blocks have labels which show what language they are, but they only appear on hover. Can they easily be set to always show?\", \"author_fullname\": \"t2_rrtp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Export src-block to HTML with labels always on\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw7ps7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559573777.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I export to HTML, the source blocks have labels which show what language they are, but they only appear on hover. Can they easily be set to always show?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw7ps7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nagora\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw7ps7/export_srcblock_to_html_with_labels_always_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw7ps7/export_srcblock_to_html_with_labels_always_on/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559544977.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I can't make this function work...\\n\\n (defun codemascot/phpcbf-standard-toggle ()\\n \\\"Toggle PHPCS default standard between WordPress-VIP and PSR2\\\"\\n (interactive)\\n (if (= phpcbf-standard \\\"PSR2\\\")\\n ((setq phpcbf-standard \\\"WordPress-VIP\\\")\\n (message \\\"WordPress-VIP standard activated\\\"))\\n ((setq phpcbf-standard \\\"PSR2\\\")\\n (message \\\"PSR2 standard activated\\\"))))\\n\\nWhat is wrong with it that Emacs 26.2(Spacemacs) is giving me `helm-M-x: Wrong type argument: number-or-marker-p` error?\\n\\n\\n\\nUpdate, Working Snippet :) :\\n\\n (defun codemascot/phpcbf-standard-toggle ()\\n \\\"Toggle PHPCS default standard between WordPress-VIP and PSR2\\\"\\n (interactive)\\n (if (string= phpcbf-standard \\\"PSR2\\\")\\n (progn\\n (setq phpcbf-standard \\\"WordPress-VIP\\\")\\n (message \\\"WordPress-VIP CS standard has set\\\"))\\n (progn\\n (setq phpcbf-standard \\\"PSR2\\\")\\n (message \\\"PSR2 CS standard has set\\\"))))\\n\\nActually I work with *WordPress* and *Laravel* mostly. So I need to switch between these WordPress-VIP and PSR2 coding standard frequently. Anyway, here I'm sharing my updated function code which is working for me pretty well. Hope this help you too.\", \"author_fullname\": \"t2_38mg40l9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Toggle a variable based on condition\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw6zcv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559630313.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559567789.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t make this function work...\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun codemascot/phpcbf-standard-toggle ()\\n \\u0026quot;Toggle PHPCS default standard between WordPress-VIP and PSR2\\u0026quot;\\n (interactive)\\n (if (= phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n ((setq phpcbf-standard \\u0026quot;WordPress-VIP\\u0026quot;)\\n (message \\u0026quot;WordPress-VIP standard activated\\u0026quot;))\\n ((setq phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (message \\u0026quot;PSR2 standard activated\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhat is wrong with it that Emacs 26.2(Spacemacs) is giving me \\u003Ccode\\u003Ehelm-M-x: Wrong type argument: number-or-marker-p\\u003C/code\\u003E error?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate, Working Snippet :) :\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun codemascot/phpcbf-standard-toggle ()\\n \\u0026quot;Toggle PHPCS default standard between WordPress-VIP and PSR2\\u0026quot;\\n (interactive)\\n (if (string= phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (progn\\n (setq phpcbf-standard \\u0026quot;WordPress-VIP\\u0026quot;)\\n (message \\u0026quot;WordPress-VIP CS standard has set\\u0026quot;))\\n (progn\\n (setq phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (message \\u0026quot;PSR2 CS standard has set\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EActually I work with \\u003Cem\\u003EWordPress\\u003C/em\\u003E and \\u003Cem\\u003ELaravel\\u003C/em\\u003E mostly. So I need to switch between these WordPress-VIP and PSR2 coding standard frequently. Anyway, here I\\u0026#39;m sharing my updated function code which is working for me pretty well. Hope this help you too.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw6zcv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"codemascot\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw6zcv/toggle_a_variable_based_on_condition/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw6zcv/toggle_a_variable_based_on_condition/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559538989.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"`C-c C-s` and `C-c C-d` don't add hours and time in the timestamp.\\n\\nI thought prefixing them with `C-u` gives you minutes and seconds, but that option seems to be for removing deadlines.\\n\\nDo hours and minutes have to be added manually?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to add hours and minutes to orgmode deadlines and schedules?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw5zw6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559560806.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003EC-c C-s\\u003C/code\\u003E and \\u003Ccode\\u003EC-c C-d\\u003C/code\\u003E don\\u0026#39;t add hours and time in the timestamp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought prefixing them with \\u003Ccode\\u003EC-u\\u003C/code\\u003E gives you minutes and seconds, but that option seems to be for removing deadlines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo hours and minutes have to be added manually?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw5zw6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw5zw6/how_to_add_hours_and_minutes_to_orgmode_deadlines/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw5zw6/how_to_add_hours_and_minutes_to_orgmode_deadlines/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559532006.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I love [Vimcasts](http://vimcasts.org/) for learning Vim. I was wondering if there is something equivalent for Emacs: screencasts showcasing the editor. Added bonus for tutorials that include Emacs Lisp tips/tricks.\", \"author_fullname\": \"t2_3u1io9ko\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Screencasts showcasing Emacs tips/tricks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw4ix7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 37, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 37, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559551482.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love \\u003Ca href=\\\"http://vimcasts.org/\\\"\\u003EVimcasts\\u003C/a\\u003E for learning Vim. I was wondering if there is something equivalent for Emacs: screencasts showcasing the editor. Added bonus for tutorials that include Emacs Lisp tips/tricks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw4ix7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"scbm-reddit\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw4ix7/screencasts_showcasing_emacs_tipstricks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw4ix7/screencasts_showcasing_emacs_tipstricks/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559522682.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi all, I'm still new to Emacs and I'm having some issues with company-mode, when showing suggestions they often show up misaligned, like in this image: [https://imgur.com/a/GSqfBLn](https://imgur.com/a/GSqfBLn) , I don't think this is caused by company, as it sometimes also happens on the lines (a particular line will show up some pixels to the left), my config is here: [https://github.com/martini97/.emacs.d](https://github.com/martini97/.emacs.d), I've already tried to switch themes, which didn't help, and there's nothing being logged on messages. Has anyone had similar issues, or know how to fix this?\", \"author_fullname\": \"t2_9eav0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help identifying what's causing this bug on company\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvy2sp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559515571.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I\\u0026#39;m still new to Emacs and I\\u0026#39;m having some issues with company-mode, when showing suggestions they often show up misaligned, like in this image: \\u003Ca href=\\\"https://imgur.com/a/GSqfBLn\\\"\\u003Ehttps://imgur.com/a/GSqfBLn\\u003C/a\\u003E , I don\\u0026#39;t think this is caused by company, as it sometimes also happens on the lines (a particular line will show up some pixels to the left), my config is here: \\u003Ca href=\\\"https://github.com/martini97/.emacs.d\\\"\\u003Ehttps://github.com/martini97/.emacs.d\\u003C/a\\u003E, I\\u0026#39;ve already tried to switch themes, which didn\\u0026#39;t help, and there\\u0026#39;s nothing being logged on messages. Has anyone had similar issues, or know how to fix this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvy2sp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_martini97\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvy2sp/help_identifying_whats_causing_this_bug_on_company/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvy2sp/help_identifying_whats_causing_this_bug_on_company/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559486771.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Before coming to EXWM I was a power-user of KDE. I used a 3x3 grid for my workspace and so could position all applications within a screen up, down, right, or left of me. I had shortcuts established to quickly move between desktops and to send things to-and-from them. Then I found exwm. Aside: I am almost always connected to two or three monitors, whether using exwm or KDE. It works nicely with both WM. \\n\\n\\u0026#x200B;\\n\\nI use a single-workspace setup with exwm and the two primary benefits were that, instead of the geometric model from my KDE, thing were all random-access. Second benefit was that I could use emacs keys everywhere. Those are sizable benefits that served me well up until now. Now I am on a project using Android Studio (IntelliJ), and even after I figured out how to get it to start correctly on exwm (that's another story) it is still very hard to manage there; in particular, it gets hard when I launch an AVD (Android Virtual Device), which spawns a new EXWM window showing the device (e.g. phone), another floating one for the phone interactions/controls (which floats as a narrow strip in the middle of the screen over the top of whatever is there), and still leaves a couple of old ones with the actual IntelliJ window and AVD manager screen. The trouble here is two-fold: first, there are a lot of windows (emacs: Frames) that really need to be all seen at once because they interact with eachother, and more aggravataingly, the new exwm frames for the device and its controls hijack my keys and make it very hard to maneuver my other exwm around them (e.g. switching buffers gets tough). \\n\\n\\u0026#x200B;\\n\\nFor now I'm defeatedly switching back to KDE for this project; does anyone have an exwm workflow with IntelliJ or Android Studio that would make this more do-able?\", \"author_fullname\": \"t2_gmmqi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In search of an exwm workflow for Android Studio\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvxehe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559511215.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBefore coming to EXWM I was a power-user of KDE. I used a 3x3 grid for my workspace and so could position all applications within a screen up, down, right, or left of me. I had shortcuts established to quickly move between desktops and to send things to-and-from them. Then I found exwm. Aside: I am almost always connected to two or three monitors, whether using exwm or KDE. It works nicely with both WM. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use a single-workspace setup with exwm and the two primary benefits were that, instead of the geometric model from my KDE, thing were all random-access. Second benefit was that I could use emacs keys everywhere. Those are sizable benefits that served me well up until now. Now I am on a project using Android Studio (IntelliJ), and even after I figured out how to get it to start correctly on exwm (that\\u0026#39;s another story) it is still very hard to manage there; in particular, it gets hard when I launch an AVD (Android Virtual Device), which spawns a new EXWM window showing the device (e.g. phone), another floating one for the phone interactions/controls (which floats as a narrow strip in the middle of the screen over the top of whatever is there), and still leaves a couple of old ones with the actual IntelliJ window and AVD manager screen. The trouble here is two-fold: first, there are a lot of windows (emacs: Frames) that really need to be all seen at once because they interact with eachother, and more aggravataingly, the new exwm frames for the device and its controls hijack my keys and make it very hard to maneuver my other exwm around them (e.g. switching buffers gets tough). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor now I\\u0026#39;m defeatedly switching back to KDE for this project; does anyone have an exwm workflow with IntelliJ or Android Studio that would make this more do-able?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvxehe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WorldsEndless\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvxehe/in_search_of_an_exwm_workflow_for_android_studio/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvxehe/in_search_of_an_exwm_workflow_for_android_studio/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559482415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here's the latest in my Year of Emacs series.\\n\\nI'm aiming for weekly updates to this (excluding weeks where I publish the current version of my emacs.org dotfile).\\n\\nNext week, I want to learn something new, so I'll be doing dired and either dired-x or dired-aux. I'm open to community suggestions for which of those two supplemental packages are recommended (I'm leaning toward dired-x).\\n\\n\\u0026#x200B;\\n\\n[https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/](https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/)\", \"author_fullname\": \"t2_jqpn4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Writing Academic Papers in Org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvweh8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 62, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 62, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559503503.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s the latest in my Year of Emacs series.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m aiming for weekly updates to this (excluding weeks where I publish the current version of my emacs.org dotfile).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext week, I want to learn something new, so I\\u0026#39;ll be doing dired and either dired-x or dired-aux. I\\u0026#39;m open to community suggestions for which of those two supplemental packages are recommended (I\\u0026#39;m leaning toward dired-x).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/\\\"\\u003Ehttps://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvweh8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doulos05\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559474703.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"For some reason when i use \\\"find\\\" from emacs(in particular in dired to search files) it doesn't show cyrillic letters properly and i can't open files that it finds.\\n\\nIn general cyrillic letters work fine, and from regular terminal they work in \\\"find\\\"\\n\\n[https://imgur.com/a/jIY8ba7](https://imgur.com/a/jIY8ba7)\\n\\nWhat can I do about it?\", \"author_fullname\": \"t2_9riom\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cyrillic letters don't work with \\\"find\\\" in emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvuv9q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559488341.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor some reason when i use \\u0026quot;find\\u0026quot; from emacs(in particular in dired to search files) it doesn\\u0026#39;t show cyrillic letters properly and i can\\u0026#39;t open files that it finds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn general cyrillic letters work fine, and from regular terminal they work in \\u0026quot;find\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/jIY8ba7\\\"\\u003Ehttps://imgur.com/a/jIY8ba7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat can I do about it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvuv9q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GrinDeg\", \"num_crossposts\": 0, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvuv9q/cyrillic_letters_dont_work_with_find_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvuv9q/cyrillic_letters_dont_work_with_find_in_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559459541.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"hi all,\\n\\ni have a trivial function (code below) that tries to compile a c/c++ buffer as follows:\\n\\n ;;\\n ;; find major mode of a buffer. if no name is specified, this returns\\n ;; major mode of current buffer\\n ;;\\n (defun utils/buffer-major-mode (\\u0026optional buffer-or-name)\\n \\\"Returns the major mode associated with a buffer.\\n If buffer-or-name is nil return current buffer's mode.\\\"\\n (interactive)\\n (buffer-local-value 'major-mode\\n (if buffer-or-name (get-buffer buffer-or-name) (current-buffer))))\\n\\n ;; \\n ;; this function is called to quickly compile single-file c/c++\\n ;; programs.\\n ;;\\n ;; it produces final executable in 'obj' directory of the buffer, and\\n ;; christens it with 'file-name' sans file extension. thus a source\\n ;; file called '\\u003Csome-path\\u003E/foo.cpp' will produce an executable called\\n ;; '\\u003Csome-path\\u003E/obj/foo'\\n ;;\\n (defun cc-quick-compile ()\\n (interactive)\\n \\n ;;\\n ;; how we build c/c++ sources are almost fixed\\n ;; -fdiagnostics-color=never ==\\u003E no ansii colorized output\\n ;;\\n (defconst qc-cmd-prefix:c \\\"gcc -fdiagnostics-color=never -std=c99 -g -O2 -Wall -o obj/\\\")\\n (defconst qc-cmd-prefix:cpp \\\"g++ -fdiagnostics-color=never -std=c++11 -g -O2 -Wall -o obj/\\\")\\n \\n ;; first setup the appropriate compilation command based on buffer\\n ;; major-mode\\n (set (make-local-variable 'qc-cmd-prefix:cc)\\n (if (string= (utils/buffer-major-mode) \\\"c-mode\\\")\\n qc-cmd-prefix:c\\n qc-cmd-prefix:cpp))\\n \\n ;;\\n ;; now we can setup the qc-cc-cmd to produce a final executable as\\n ;; described above...\\n ;;\\n (set (make-local-variable 'qc-cmd-str)\\n (let ((file (file-name-nondirectory buffer-file-name)))\\n (concat qc-cmd-prefix:cc (file-name-sans-extension file) \\\" \\\" file)))\\n \\n (compile qc-cmd-str))\\n \\n ;;\\n ;; this is the top-level function to compile c/c++ sources.\\n ;;\\n ;; when the local variable 'compile-command' is set to default we\\n ;; create a quick-compile-command, and use that. however, when it is\\n ;; set to non-default value, we use that.\\n ;;\\n (defun cc-quick-or-custom-compile ()\\n (interactive)\\n \\n (if (string= \\\"make -k \\\" compile-command)\\n (progn\\n (cc-quick-compile)\\n (setq compile-command \\\"make -k \\\"))\\n (compile compile-command)))\\n\\nfinally, 'cc-quick-or-custom-compile' is bound as follows\\n \\n (global-set-key '[C-return] 'cc-quick-or-custom-compile)\\n\\nthe above thing works, but given my elisp na\\u00efvet\\u00e9, i am *sure* it can be made much better. \\n\\ni was wondering, if you would take some time, and help me improve the above functions. i *suspect* creating a Makefile with appropriate rules might play nicer with emacs, but am not too keen on that at the moment.\\n\\n--\\nthank you kindly !\", \"author_fullname\": \"t2_pb2x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"help with trivial emacs lisp function\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvucsw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559454959.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559483467.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehi all,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei have a trivial function (code below) that tries to compile a c/c++ buffer as follows:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;;\\n;; find major mode of a buffer. if no name is specified, this returns\\n;; major mode of current buffer\\n;;\\n(defun utils/buffer-major-mode (\\u0026amp;optional buffer-or-name)\\n \\u0026quot;Returns the major mode associated with a buffer.\\nIf buffer-or-name is nil return current buffer\\u0026#39;s mode.\\u0026quot;\\n (interactive)\\n (buffer-local-value \\u0026#39;major-mode\\n (if buffer-or-name (get-buffer buffer-or-name) (current-buffer))))\\n\\n;; \\n;; this function is called to quickly compile single-file c/c++\\n;; programs.\\n;;\\n;; it produces final executable in \\u0026#39;obj\\u0026#39; directory of the buffer, and\\n;; christens it with \\u0026#39;file-name\\u0026#39; sans file extension. thus a source\\n;; file called \\u0026#39;\\u0026lt;some-path\\u0026gt;/foo.cpp\\u0026#39; will produce an executable called\\n;; \\u0026#39;\\u0026lt;some-path\\u0026gt;/obj/foo\\u0026#39;\\n;;\\n(defun cc-quick-compile ()\\n (interactive)\\n\\n ;;\\n ;; how we build c/c++ sources are almost fixed\\n ;; -fdiagnostics-color=never ==\\u0026gt; no ansii colorized output\\n ;;\\n (defconst qc-cmd-prefix:c \\u0026quot;gcc -fdiagnostics-color=never -std=c99 -g -O2 -Wall -o obj/\\u0026quot;)\\n (defconst qc-cmd-prefix:cpp \\u0026quot;g++ -fdiagnostics-color=never -std=c++11 -g -O2 -Wall -o obj/\\u0026quot;)\\n\\n ;; first setup the appropriate compilation command based on buffer\\n ;; major-mode\\n (set (make-local-variable \\u0026#39;qc-cmd-prefix:cc)\\n (if (string= (utils/buffer-major-mode) \\u0026quot;c-mode\\u0026quot;)\\n qc-cmd-prefix:c\\n qc-cmd-prefix:cpp))\\n\\n ;;\\n ;; now we can setup the qc-cc-cmd to produce a final executable as\\n ;; described above...\\n ;;\\n (set (make-local-variable \\u0026#39;qc-cmd-str)\\n (let ((file (file-name-nondirectory buffer-file-name)))\\n (concat qc-cmd-prefix:cc (file-name-sans-extension file) \\u0026quot; \\u0026quot; file)))\\n\\n (compile qc-cmd-str))\\n\\n;;\\n;; this is the top-level function to compile c/c++ sources.\\n;;\\n;; when the local variable \\u0026#39;compile-command\\u0026#39; is set to default we\\n;; create a quick-compile-command, and use that. however, when it is\\n;; set to non-default value, we use that.\\n;;\\n(defun cc-quick-or-custom-compile ()\\n (interactive)\\n\\n (if (string= \\u0026quot;make -k \\u0026quot; compile-command)\\n (progn\\n (cc-quick-compile)\\n (setq compile-command \\u0026quot;make -k \\u0026quot;))\\n (compile compile-command)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Efinally, \\u0026#39;cc-quick-or-custom-compile\\u0026#39; is bound as follows\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(global-set-key \\u0026#39;[C-return] \\u0026#39;cc-quick-or-custom-compile)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ethe above thing works, but given my elisp na\\u00efvet\\u00e9, i am \\u003Cem\\u003Esure\\u003C/em\\u003E it can be made much better. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei was wondering, if you would take some time, and help me improve the above functions. i \\u003Cem\\u003Esuspect\\u003C/em\\u003E creating a Makefile with appropriate rules might play nicer with emacs, but am not too keen on that at the moment.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003Ethank you kindly !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvucsw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"daddyc00l\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559454667.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When running this without Org-Babel I don't have a problem, but, fwiw, I did just recently get my Python 3 paths working properly so there could be an issue somewhere in there.\\n\\n\\u0026#x200B;\\n\\nWithout further ado, here's the source file: [http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1\\\\_practice.py](http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py), and the linter: [http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112\\\\_s17\\\\_linter.py](http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py).\\n\\n\\u0026#x200B;\\n\\nWhat I did was wrap the entire wk1\\\\_practice.py in a `#+BEGIN_SRC python ... #+END_SRC` block, then when running C-c C-c (org-babel-execute-src-block) the following error appeared:\\n\\n`Traceback (most recent call last):`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 333, in \\u003Cmodule\\u003E`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 331, in main`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 327, in main`\\n\\n`File \\\"/Users/Joe/org/cs112_s17_linter.py\\\", line 215, in lint`\\n\\n`_Linter(code=code, filename=filename, bannedTokens=bannedTokens).lint()`\\n\\n`File \\\"/Users/Joe/org/cs112_s17_linter.py\\\", line 148, in lint`\\n\\n`with open(self.filename, 'rt') as f:`\\n\\n`FileNotFoundError: [Errno 2] No such file or directory: '\\u003Cstdin\\u003E'`\\n\\n\\u0026#x200B;\\n\\nBecause I can run wk1\\\\_practice.py error free in run-python, and the bash shell outside of Emacs, I think it's Org-Babel that I'm misusing and that it has to do with the call to the linter. It's probably worth mentioning that Org-Babel seemingly works fine and as expected as long as I don't make this call to the linter.\\n\\n\\u0026#x200B;\\n\\n(sorry if it's a dumb question or appears ill researched, I spent about 1.5 hours trying to figure this out with various queries and expirements, but turned up no leads).\", \"author_fullname\": \"t2_3th1enuk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help Deciphering Error w/ Org-Babel, Python and a Linter\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvsj5o\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559470017.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen running this without Org-Babel I don\\u0026#39;t have a problem, but, fwiw, I did just recently get my Python 3 paths working properly so there could be an issue somewhere in there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithout further ado, here\\u0026#39;s the source file: \\u003Ca href=\\\"http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py\\\"\\u003Ehttp://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py\\u003C/a\\u003E, and the linter: \\u003Ca href=\\\"http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py\\\"\\u003Ehttp://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat I did was wrap the entire wk1_practice.py in a \\u003Ccode\\u003E#+BEGIN_SRC python ... #+END_SRC\\u003C/code\\u003E block, then when running C-c C-c (org-babel-execute-src-block) the following error appeared:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003ETraceback (most recent call last):\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 333, in \\u0026lt;module\\u0026gt;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 331, in main\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 327, in main\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;/Users/Joe/org/cs112_s17_linter.py\\u0026quot;, line 215, in lint\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E_Linter(code=code, filename=filename, bannedTokens=bannedTokens).lint()\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;/Users/Joe/org/cs112_s17_linter.py\\u0026quot;, line 148, in lint\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ewith open(self.filename, \\u0026#39;rt\\u0026#39;) as f:\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFileNotFoundError: [Errno 2] No such file or directory: \\u0026#39;\\u0026lt;stdin\\u0026gt;\\u0026#39;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause I can run wk1_practice.py error free in run-python, and the bash shell outside of Emacs, I think it\\u0026#39;s Org-Babel that I\\u0026#39;m misusing and that it has to do with the call to the linter. It\\u0026#39;s probably worth mentioning that Org-Babel seemingly works fine and as expected as long as I don\\u0026#39;t make this call to the linter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(sorry if it\\u0026#39;s a dumb question or appears ill researched, I spent about 1.5 hours trying to figure this out with various queries and expirements, but turned up no leads).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvsj5o\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"impendingLawsuit\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvsj5o/help_deciphering_error_w_orgbabel_python_and_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvsj5o/help_deciphering_error_w_orgbabel_python_and_a/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559441217.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Running a fresh Emacs session with `emacs -Q`, I evaluated the following:\\n\\n (setq org-agenda-files '(\\\"~/index.org\\\"))\\n (setq org-enforce-todo-dependencies t)\\n (setq org-agenda-dim-blocked-tasks 'invisible)\\n\\nwhere `~/index.org` simply contains:\\n\\n * Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO First subheading\\n ** TODO Second subheading\\n\\nWhen I call `(org-agenda nil \\\"t\\\")` to display the available TODOs, it correctly displays only \\\"First subheading.\\\" However, if I then export that buffer with `org-agenda-write`, then the resulting file contains both \\\"First subheading\\\" and \\\"Second subheading.\\\"\\n\\nWhat is going on here, and can it be fixed?\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvs6jo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559467712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERunning a fresh Emacs session with \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E, I evaluated the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files \\u0026#39;(\\u0026quot;~/index.org\\u0026quot;))\\n(setq org-enforce-todo-dependencies t)\\n(setq org-agenda-dim-blocked-tasks \\u0026#39;invisible)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E~/index.org\\u003C/code\\u003E simply contains:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO First subheading\\n** TODO Second subheading\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I call \\u003Ccode\\u003E(org-agenda nil \\u0026quot;t\\u0026quot;)\\u003C/code\\u003E to display the available TODOs, it correctly displays only \\u0026quot;First subheading.\\u0026quot; However, if I then export that buffer with \\u003Ccode\\u003Eorg-agenda-write\\u003C/code\\u003E, then the resulting file contains both \\u0026quot;First subheading\\u0026quot; and \\u0026quot;Second subheading.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is going on here, and can it be fixed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvs6jo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559438912.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have always wanted to use Emacs on my iPad without jailbreaking it. After almost giving up I stumbled onto a fairly new developer app called iSH - a Linux shell that runs a small version of Alpine Linux on an iOS device (iPad or iPhone) using an x86 emulator. Now, that in and of itself is really nice and opens up all kinds of new ways to use an iOS device. The icing on the cake, though, is that Emacs can then be installed from the command line using the Alpine Linux package manager, \\\"apk\\\".\\n\\niSH can't be found on the App Store, but fear not - it can be run using a developer tool called TestFlight, which *is* in the App Store. There's also a way to side load iSH directly onto an iOS device without TestFlight if you have access to a Mac with Xcode. \\n\\nInstalling iSH shell and Emacs using TestFlight:\\n\\n1. Install TestFlight from the [https://itunes.apple.com/us/app/testflight/id899247664?mt=8](https://itunes.apple.com/us/app/testflight/id899247664?mt=8) App Store.\\n2. Open a web browser on the iOS device and click here [https://testflight.apple.com/join/97i7KM8O](https://testflight.apple.com/join/97i7KM8O) to review/accept the terms and start testing iSH using TestFlight.\\n3. Click \\\"Install\\\" to install the iSH Shell application onto the iOS device.\\n4. You will now have the iSH app on your iOS device. Open this app to run the Alpine Linux shell. This command line environment has the normal complement of Linux commands (ls, cd, mkdir, touch, cat, etc.). iSH even has a dark mode. If you haven't already done so, pair up a real keyboard to your device and hold onto your socks for what's next.\\n5. Install Emacs with apk by simply entering the command \\\"apk add emacs\\\" in iSH. After emacs installs, you can then enter the command \\\"emacs\\\" from the command line to run emacs.\", \"author_fullname\": \"t2_4rrrx65\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs on an iPad without jailbreaking it - It can be done!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvrmsf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 18, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 18, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559464162.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have always wanted to use Emacs on my iPad without jailbreaking it. After almost giving up I stumbled onto a fairly new developer app called iSH - a Linux shell that runs a small version of Alpine Linux on an iOS device (iPad or iPhone) using an x86 emulator. Now, that in and of itself is really nice and opens up all kinds of new ways to use an iOS device. The icing on the cake, though, is that Emacs can then be installed from the command line using the Alpine Linux package manager, \\u0026quot;apk\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EiSH can\\u0026#39;t be found on the App Store, but fear not - it can be run using a developer tool called TestFlight, which \\u003Cem\\u003Eis\\u003C/em\\u003E in the App Store. There\\u0026#39;s also a way to side load iSH directly onto an iOS device without TestFlight if you have access to a Mac with Xcode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstalling iSH shell and Emacs using TestFlight:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EInstall TestFlight from the \\u003Ca href=\\\"https://itunes.apple.com/us/app/testflight/id899247664?mt=8\\\"\\u003Ehttps://itunes.apple.com/us/app/testflight/id899247664?mt=8\\u003C/a\\u003E App Store.\\u003C/li\\u003E\\n\\u003Cli\\u003EOpen a web browser on the iOS device and click here \\u003Ca href=\\\"https://testflight.apple.com/join/97i7KM8O\\\"\\u003Ehttps://testflight.apple.com/join/97i7KM8O\\u003C/a\\u003E to review/accept the terms and start testing iSH using TestFlight.\\u003C/li\\u003E\\n\\u003Cli\\u003EClick \\u0026quot;Install\\u0026quot; to install the iSH Shell application onto the iOS device.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou will now have the iSH app on your iOS device. Open this app to run the Alpine Linux shell. This command line environment has the normal complement of Linux commands (ls, cd, mkdir, touch, cat, etc.). iSH even has a dark mode. If you haven\\u0026#39;t already done so, pair up a real keyboard to your device and hold onto your socks for what\\u0026#39;s next.\\u003C/li\\u003E\\n\\u003Cli\\u003EInstall Emacs with apk by simply entering the command \\u0026quot;apk add emacs\\u0026quot; in iSH. After emacs installs, you can then enter the command \\u0026quot;emacs\\u0026quot; from the command line to run emacs.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvrmsf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Chilasta\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvrmsf/emacs_on_an_ipad_without_jailbreaking_it_it_can/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvrmsf/emacs_on_an_ipad_without_jailbreaking_it_it_can/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559435362.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi everyone!\\n\\n\\u0026#x200B;\\n\\nInspired by the great Juan Pedro Fisanotti and his wonderful [fisa-vim-config](https://github.com/fisadev/fisa-vim-config), I share my [Emacs](https://www.gnu.org/software/emacs/) config. This is my personal Emacs configuration, built according to my personal preferences, without any justification to think it's the best possible emacs configuration.\\n\\n\\u0026#x200B;\\n\\n[https://github.com/Abuelodelanada/pepe-emacs-config](https://github.com/Abuelodelanada/pepe-emacs-config)\\n\\n\\u0026#x200B;\\n\\nIt's mainly oriented to PHP software development, but many of its features are useful for other languages and editing tasks.\\n\\n\\u0026#x200B;\\n\\nHope you like it!\\n\\n\\u0026#x200B;\\n\\nJose\", \"author_fullname\": \"t2_1v9z01ve\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Pepe Emacs config\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvrbyc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559462253.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInspired by the great Juan Pedro Fisanotti and his wonderful \\u003Ca href=\\\"https://github.com/fisadev/fisa-vim-config\\\"\\u003Efisa-vim-config\\u003C/a\\u003E, I share my \\u003Ca href=\\\"https://www.gnu.org/software/emacs/\\\"\\u003EEmacs\\u003C/a\\u003E config. This is my personal Emacs configuration, built according to my personal preferences, without any justification to think it\\u0026#39;s the best possible emacs configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/Abuelodelanada/pepe-emacs-config\\\"\\u003Ehttps://github.com/Abuelodelanada/pepe-emacs-config\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s mainly oriented to PHP software development, but many of its features are useful for other languages and editing tasks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHope you like it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJose\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvrbyc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Abuelodelanada\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvrbyc/the_pepe_emacs_config/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvrbyc/the_pepe_emacs_config/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559433453.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_5i6ym4s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using CLI Commands in Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvqsb5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 37, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 37, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559458913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"hackeryarn.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvqsb5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hackeryarn\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvqsb5/using_cli_commands_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://hackeryarn.com/post/cli-in-emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559430113.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I can connect to [nethack.alt.org](https://nethack.alt.org) using putty and it has colors and everything lines up just right. Is there a way for me to use emacs instead? I did \\\"M-x telnet\\\" and it didn't show the colors and the formatting is all messed up. Kinda looks like it's missing CR/LFs.\\n\\n\\u0026#x200B;\\n\\nAs you can tell, I'm not well versed in this area.\", \"author_fullname\": \"t2_d79ff\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using Emacs for Nethack?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvmkvw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559435126.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can connect to \\u003Ca href=\\\"https://nethack.alt.org\\\"\\u003Enethack.alt.org\\u003C/a\\u003E using putty and it has colors and everything lines up just right. Is there a way for me to use emacs instead? I did \\u0026quot;M-x telnet\\u0026quot; and it didn\\u0026#39;t show the colors and the formatting is all messed up. Kinda looks like it\\u0026#39;s missing CR/LFs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs you can tell, I\\u0026#39;m not well versed in this area.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvmkvw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AlchemicRez\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvmkvw/using_emacs_for_nethack/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvmkvw/using_emacs_for_nethack/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559406326.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Does anyone knows of an Emacs package that shows your minibuffer as a floating window/frame in the middle of the screen, like on this video: [https://www.youtube.com/watch?v=GxMAPW9\\\\_LsA\\u0026t=2m30s](https://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026t=2m30s)?\\n\\nThe closest I've found is this StackExchange answer: [https://emacs.stackexchange.com/a/1078/23627](https://emacs.stackexchange.com/a/1078/23627). These are his dotfiles ([https://bitbucket.org/seanfarley/dotfiles](https://bitbucket.org/seanfarley/dotfiles)) but I'm pretty new at Emacs so I couldn't find anything.\\n\\nhttps://i.redd.it/dhvj5jtm6r131.png\", \"author_fullname\": \"t2_5t856\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs package to show the minibuffer in the middle of the screen\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"dhvj5jtm6r131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 768, \"x\": 1366, \"u\": \"https://i.redd.it/dhvj5jtm6r131.png\"}, \"m\": \"image/png\", \"id\": \"dhvj5jtm6r131\"}}, \"name\": \"t3_bvl94b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"2019-02-27: Emacs as a Python IDE - Sean Farley\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Emacs SF\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/GxMAPW9_LsA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCFk8kgNu_bqsRZewxMGqkzQ\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bvl94b\", \"height\": 338}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559427415.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone knows of an Emacs package that shows your minibuffer as a floating window/frame in the middle of the screen, like on this video: \\u003Ca href=\\\"https://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026amp;t=2m30s\\\"\\u003Ehttps://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026amp;t=2m30s\\u003C/a\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe closest I\\u0026#39;ve found is this StackExchange answer: \\u003Ca href=\\\"https://emacs.stackexchange.com/a/1078/23627\\\"\\u003Ehttps://emacs.stackexchange.com/a/1078/23627\\u003C/a\\u003E. These are his dotfiles (\\u003Ca href=\\\"https://bitbucket.org/seanfarley/dotfiles\\\"\\u003Ehttps://bitbucket.org/seanfarley/dotfiles\\u003C/a\\u003E) but I\\u0026#39;m pretty new at Emacs so I couldn\\u0026#39;t find anything.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/dhvj5jtm6r131.png\\\"\\u003Ehttps://i.redd.it/dhvj5jtm6r131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvl94b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"humpum\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvl94b/emacs_package_to_show_the_minibuffer_in_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvl94b/emacs_package_to_show_the_minibuffer_in_the/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559398615.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"2019-02-27: Emacs as a Python IDE - Sean Farley\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Emacs SF\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/GxMAPW9_LsA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCFk8kgNu_bqsRZewxMGqkzQ\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How to remove emacs's bottom window and have only editor always?\\n\\nOur Linux team setup emacs as the only editor now, and the useless bottom window blocks the half of my screen. \\n\\nI liked using gedit before, but now must work with emacs.\\n\\nI tried to decrease the size of the bottom window to the minimum, but as soon as I close the document, this setting is lost and the new document in emacs is opened with the same useless bottom window which blocks half of the screen.\", \"author_fullname\": \"t2_3vd5ee30\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to remove emacs's bottom window and have only editor always?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvkd1a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559421425.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow to remove emacs\\u0026#39;s bottom window and have only editor always?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur Linux team setup emacs as the only editor now, and the useless bottom window blocks the half of my screen. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI liked using gedit before, but now must work with emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to decrease the size of the bottom window to the minimum, but as soon as I close the document, this setting is lost and the new document in emacs is opened with the same useless bottom window which blocks half of the screen.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvkd1a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OVM2712\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvkd1a/how_to_remove_emacss_bottom_window_and_have_only/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvkd1a/how_to_remove_emacss_bottom_window_and_have_only/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559392625.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've noticed a peculiar behavior when using auto-fill-mode editing Python code. For example if I start typing the following (fill-column is set to 79),\\n\\n def some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2='foobar'):\\n \\\"\\\"\\\"\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\\n\\nand press Enter, it will look like this:\\n\\n def some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2='foobar'):\\n \\\"\\\"\\\"\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod\\n tempor incididunt ut labore et dolore magna aliqua.\\nIf the keyword arguments are all in one line, the docstring continues to be indented with 4 spaces as expected, but whenever it is extended across multiple lines, any line of the docstring after the first will match the indentation of the second line of the list of keyword arguments. Is there a good reason for this, or is this just a bug in auto-fill-mode?\", \"author_fullname\": \"t2_ch6my\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Python Documentation String Indentation In Auto-Fill Mode (Emacs 26.2)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvjzem\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559418423.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve noticed a peculiar behavior when using auto-fill-mode editing Python code. For example if I start typing the following (fill-column is set to 79),\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edef some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2=\\u0026#39;foobar\\u0026#39;):\\n \\u0026quot;\\u0026quot;\\u0026quot;\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eand press Enter, it will look like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edef some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2=\\u0026#39;foobar\\u0026#39;):\\n \\u0026quot;\\u0026quot;\\u0026quot;\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod\\n tempor incididunt ut labore et dolore magna aliqua.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf the keyword arguments are all in one line, the docstring continues to be indented with 4 spaces as expected, but whenever it is extended across multiple lines, any line of the docstring after the first will match the indentation of the second line of the list of keyword arguments. Is there a good reason for this, or is this just a bug in auto-fill-mode?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvjzem\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hexidon\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvjzem/python_documentation_string_indentation_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvjzem/python_documentation_string_indentation_in/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559389623.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello, I really like Emacs approach to text editing compared to vi, vim or joe (I love joe though, he's a trooper, but I like Emacs keybindings and logic). However Emacs is a little heavy and has many, many features that I will never use. Any tips on compiling it to bare-bones lite? Or is there an Emacs-lite fork out there? I'm currently using a custom compiled version called emacs-nox (no x11) on FreeBSD 12-stable. (I tried the nox flavor, and also removed gtk support and sound/image features, but it still renders a basic X widget. So I'm forced to alias emacs=\\\"emacs -nw\\\")\", \"author_fullname\": \"t2_3d6u59wh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New to emacs, couple of stupid questions.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvibhq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559403055.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I really like Emacs approach to text editing compared to vi, vim or joe (I love joe though, he\\u0026#39;s a trooper, but I like Emacs keybindings and logic). However Emacs is a little heavy and has many, many features that I will never use. Any tips on compiling it to bare-bones lite? Or is there an Emacs-lite fork out there? I\\u0026#39;m currently using a custom compiled version called emacs-nox (no x11) on FreeBSD 12-stable. (I tried the nox flavor, and also removed gtk support and sound/image features, but it still renders a basic X widget. So I\\u0026#39;m forced to alias emacs=\\u0026quot;emacs -nw\\u0026quot;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvibhq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cshurtsmybrain\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvibhq/new_to_emacs_couple_of_stupid_questions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvibhq/new_to_emacs_couple_of_stupid_questions/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559374255.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"This is my current ediff clause.\\n\\n (use-package ediff\\n :ensure nil\\n :commands (magit-status projectile-vc)\\n :config\\n (progn\\n (setq ediff-diff-options \\\"-w\\\"\\n ediff-split-window-function 'split-window-horizontally\\n ediff-window-setup-function 'ediff-setup-windows-plain)\\n ))\\n \\nI want to make it quit without prompting for yes or no when the `q` key is pressed using this [snippet from stackoverflow](https://emacs.stackexchange.com/questions/9322/how-can-i-quit-ediff-immediately-without-having-to-type-y/24602#24602):\\n\\n (defun disable-y-or-n-p (orig-fun \\u0026rest args)\\n (cl-letf (((symbol-function 'y-or-n-p) (lambda (prompt) t)))\\n (apply orig-fun args)))\\n \\n (advice-add 'ediff-quit :around #'disable-y-or-n-p)\\n\\nSince the `disable-y-or-n-p` function can be used elsewhere only the advice has to be add to the ediff clause. Does it have to go into a `:config` or an `:init` section?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is good way to make this change in use-package?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvi8yt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559402399.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is my current ediff clause.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package ediff\\n :ensure nil\\n :commands (magit-status projectile-vc)\\n :config\\n (progn\\n (setq ediff-diff-options \\u0026quot;-w\\u0026quot;\\n ediff-split-window-function \\u0026#39;split-window-horizontally\\n ediff-window-setup-function \\u0026#39;ediff-setup-windows-plain)\\n ))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI want to make it quit without prompting for yes or no when the \\u003Ccode\\u003Eq\\u003C/code\\u003E key is pressed using this \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/9322/how-can-i-quit-ediff-immediately-without-having-to-type-y/24602#24602\\\"\\u003Esnippet from stackoverflow\\u003C/a\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun disable-y-or-n-p (orig-fun \\u0026amp;rest args)\\n (cl-letf (((symbol-function \\u0026#39;y-or-n-p) (lambda (prompt) t)))\\n (apply orig-fun args)))\\n\\n(advice-add \\u0026#39;ediff-quit :around #\\u0026#39;disable-y-or-n-p)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESince the \\u003Ccode\\u003Edisable-y-or-n-p\\u003C/code\\u003E function can be used elsewhere only the advice has to be add to the ediff clause. Does it have to go into a \\u003Ccode\\u003E:config\\u003C/code\\u003E or an \\u003Ccode\\u003E:init\\u003C/code\\u003E section?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvi8yt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvi8yt/what_is_good_way_to_make_this_change_in_usepackage/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvi8yt/what_is_good_way_to_make_this_change_in_usepackage/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559373599.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want to write my first emacs function that depends on searching through the buffer and need some help examples and source code to begin.\\n\\nMy goal is to change the control `C-c C-z` key to log a note to the drawer containing the cursor, or the default LOGBOOK if it is not in a drawer.\\n\\nThis means:\\n\\n1. starting on the current line, scan backwards for a line starting with the drawer syntax ie `\\\\s*:[a-zA-Z][a-zA-Z0-9_]*:` which is not `:END:` for a set number of characters or discover the cursor is not in a drawer by arriving at a line which starts with a headline character `^\\\\*`. If you get to a header line, then the cursor is not in a drawer, so return the cursor to the starting point and run `org-add-note` as normal, most likely into the default LOGBOOK.\\n\\n2. If you find a drawer header, read the current value of `org-log-into-drawer` into a temporary variable. Set `org-log-into-drawer` to the drawer name you found and execute `org-add-log-note`, then revert `org-log-into-drawer` to its previous value.\\n\\nCan anyone provide me with a script that does it and documentation and examples with more knowledge on the process?\\n\\nPS. What is the conceptual difference between `org-add-note` and `org-add-log-note`?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I need some help sources and examples to buffer navigation for emacs script?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bve79d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559372890.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to write my first emacs function that depends on searching through the buffer and need some help examples and source code to begin.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy goal is to change the control \\u003Ccode\\u003EC-c C-z\\u003C/code\\u003E key to log a note to the drawer containing the cursor, or the default LOGBOOK if it is not in a drawer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis means:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Estarting on the current line, scan backwards for a line starting with the drawer syntax ie \\u003Ccode\\u003E\\\\s*:[a-zA-Z][a-zA-Z0-9_]*:\\u003C/code\\u003E which is not \\u003Ccode\\u003E:END:\\u003C/code\\u003E for a set number of characters or discover the cursor is not in a drawer by arriving at a line which starts with a headline character \\u003Ccode\\u003E^\\\\*\\u003C/code\\u003E. If you get to a header line, then the cursor is not in a drawer, so return the cursor to the starting point and run \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E as normal, most likely into the default LOGBOOK.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIf you find a drawer header, read the current value of \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E into a temporary variable. Set \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to the drawer name you found and execute \\u003Ccode\\u003Eorg-add-log-note\\u003C/code\\u003E, then revert \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to its previous value.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ECan anyone provide me with a script that does it and documentation and examples with more knowledge on the process?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS. What is the conceptual difference between \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-add-log-note\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bve79d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bve79d/i_need_some_help_sources_and_examples_to_buffer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bve79d/i_need_some_help_sources_and_examples_to_buffer/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559344090.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I like emacs in the terminal, but how do I get rid of that bottom bar? The grey one. [https://ibin.co/4j1egykIYYYk.png](https://ibin.co/4j1egykIYYYk.png)\\n\\nI thought it was the \\\"toolbar\\\", but `(tool-bar-mode -1)` is not working. Thanks in advance!\", \"author_fullname\": \"t2_3d6u59wh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \".emacs question\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvci93\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559363370.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like emacs in the terminal, but how do I get rid of that bottom bar? The grey one. \\u003Ca href=\\\"https://ibin.co/4j1egykIYYYk.png\\\"\\u003Ehttps://ibin.co/4j1egykIYYYk.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought it was the \\u0026quot;toolbar\\u0026quot;, but \\u003Ccode\\u003E(tool-bar-mode -1)\\u003C/code\\u003E is not working. Thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvci93\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cshurtsmybrain\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvci93/emacs_question/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvci93/emacs_question/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559334570.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"For example, Craigslist only sends the 25 most recent links in the rss export, so if I wake up in the morning after 10 hours of not refreshing my feed, I will see only the 25 most recent links for a given query, and miss a lot of stuff. It would also be nice to not feel pressured to refresh my feed every hour just so I don't miss something. FWIW, the only query I'm really having this problem with is the Craigslist \\\"free\\\" section. \\n\\n\\u0026#x200B;\\n\\nI'm sure this isn't specific to Elfeed, but I'm relatively new to RSS/Atom as well. I would like my feed to always refresh sufficiently so I don't have to worry about links escaping my view. I did look into \\\\`run-with-timer\\\\` but that feels dirty compared to built-in Elfeed feature I may be missing. Thansk for reading!\", \"author_fullname\": \"t2_3th1enuk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a simple way to get Elfeed to update / refresh it's feed every x minutes?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvbp92\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559359140.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor example, Craigslist only sends the 25 most recent links in the rss export, so if I wake up in the morning after 10 hours of not refreshing my feed, I will see only the 25 most recent links for a given query, and miss a lot of stuff. It would also be nice to not feel pressured to refresh my feed every hour just so I don\\u0026#39;t miss something. FWIW, the only query I\\u0026#39;m really having this problem with is the Craigslist \\u0026quot;free\\u0026quot; section. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sure this isn\\u0026#39;t specific to Elfeed, but I\\u0026#39;m relatively new to RSS/Atom as well. I would like my feed to always refresh sufficiently so I don\\u0026#39;t have to worry about links escaping my view. I did look into `run-with-timer` but that feels dirty compared to built-in Elfeed feature I may be missing. Thansk for reading!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvbp92\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"impendingLawsuit\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvbp92/is_there_a_simple_way_to_get_elfeed_to_update/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvbp92/is_there_a_simple_way_to_get_elfeed_to_update/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559330340.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying out an org init file. Got the idea from [here](https://cestlaz.github.io/posts/using-emacs-10-org-init/). It works perfectly on Ubuntu but for some reason, it won't work on mac. I think the issue might be with org-babel. It parses the majority of my packages but not all of them, in particular, the first 2 and my interface tweaks. Heres my files [github link](https://github.com/girvain/.emacs.d/tree/orgModeInit).\\n\\nAnyone else had a similar issue?\", \"author_fullname\": \"t2_lkmww7c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org init files won't parse on mac\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvb6ep\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559356424.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying out an org init file. Got the idea from \\u003Ca href=\\\"https://cestlaz.github.io/posts/using-emacs-10-org-init/\\\"\\u003Ehere\\u003C/a\\u003E. It works perfectly on Ubuntu but for some reason, it won\\u0026#39;t work on mac. I think the issue might be with org-babel. It parses the majority of my packages but not all of them, in particular, the first 2 and my interface tweaks. Heres my files \\u003Ca href=\\\"https://github.com/girvain/.emacs.d/tree/orgModeInit\\\"\\u003Egithub link\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone else had a similar issue?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvb6ep\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"girvain\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvb6ep/org_init_files_wont_parse_on_mac/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvb6ep/org_init_files_wont_parse_on_mac/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559327624.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a command to choose the drawer `org-add-note` saves the text in?\\n\\nI was thinking that with the cursor in a particular drawer `org-add-note` would enter the text into that drawer, but it always goes into the `LOGBOOK` drawer.\\n\\nFrom the documentation the logical thing to do would be to check the location of the cursor and if it is in drawer, change the `org-log-into-drawer` variable, add the note then revert `org-log-into-drawer` to what it was before, but that seems to be rather long-winded, or is it the only valid alternative?\\n\\nIs there builtin function for checking the current drawer?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to add a note to a specific drawer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvay1h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559355236.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a command to choose the drawer \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E saves the text in?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was thinking that with the cursor in a particular drawer \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E would enter the text into that drawer, but it always goes into the \\u003Ccode\\u003ELOGBOOK\\u003C/code\\u003E drawer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the documentation the logical thing to do would be to check the location of the cursor and if it is in drawer, change the \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E variable, add the note then revert \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to what it was before, but that seems to be rather long-winded, or is it the only valid alternative?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there builtin function for checking the current drawer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvay1h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvay1h/how_to_add_a_note_to_a_specific_drawer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvay1h/how_to_add_a_note_to_a_specific_drawer/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559326436.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I wonder if anyone using emacs on Windows notices a slight text flicker when scrolling up and down buffers or resizing the program. I experience this even when launching under \\\"emacs -Q\\\" and now that I've noticed it a couple times I can't unsee it.\\n\\nMainly want to know if there are any workarounds for this or plans to fix it in the future.\", \"author_fullname\": \"t2_1sukobfg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"text flicker on windows (emacs 26.2)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv9jgk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559348196.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI wonder if anyone using emacs on Windows notices a slight text flicker when scrolling up and down buffers or resizing the program. I experience this even when launching under \\u0026quot;emacs -Q\\u0026quot; and now that I\\u0026#39;ve noticed it a couple times I can\\u0026#39;t unsee it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMainly want to know if there are any workarounds for this or plans to fix it in the future.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv9jgk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DesperateSell\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv9jgk/text_flicker_on_windows_emacs_262/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv9jgk/text_flicker_on_windows_emacs_262/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559319396.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nFor all the awesomeness of org-mode in general, and its export engines in particular : I cannot make a particular thing work quite well. When an org file is exported, say, to HTML with a huge majority of the available CSS'es that I could find. Export to text is even worse. E.g. org file :\\n\\n\\u0026#x200B;\\n\\n\\u003E\\\\* Introduction \\n\\u003E \\n\\u003E\\\\* Features \\n\\u003E \\n\\u003E\\\\*\\\\* Cars \\n\\u003E \\n\\u003E\\\\*\\\\* Trucks \\n\\u003E \\n\\u003E... \\n\\u003E \\n\\u003E\\\\* Problems\\n\\n\\u0026#x200B;\\n\\nThis gets exported to something like :\\n\\n\\u003E1 Introduction \\n\\u003E \\n\\u003E2 Features \\n\\u003E \\n\\u003E2.1 Cars \\n\\u003E \\n\\u003E2.2 Trucks \\n\\u003E \\n\\u003E... \\n\\u003E \\n\\u003E3 Problems\\n\\n\\u0026#x200B;\\n\\nWithout anything to distinguish between \\\"1\\\" and \\\"Introduction\\\". Or \\\"2\\\" and \\\"Features\\\". Everyone who is not used to org mode exporting asks me that you have only 2 features and 3 problems ? BTW the Features section can be many pages long.\\n\\n\\u0026#x200B;\\n\\nI tried the CSSes from :\\n\\n1. [https://www.reddit.com/r/emacs/comments/3pvbag/is\\\\_there\\\\_a\\\\_collection\\\\_of\\\\_css\\\\_styles\\\\_for\\\\_org/](https://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/)\\n2. [https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html](https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html)\\n3. [http://diobla.info/doc/rtags](http://diobla.info/doc/rtags) : this has a different background for section numbers, but in simple renderers like email , the different background doesn't have any effect.\\n\\n\\u0026#x200B;\\n\\nSo my question : a simple \\\".\\\" , or \\\")\\\" between section numbering is extremely standard, and most people can make out the difference. How can I add such a separator ? It is also practically standard in HTML numbering that triple click on the line selects the whole content except the section number - which is also violated in all HTML CSSes that I could find.\\n\\n\\u0026#x200B;\\n\\nAnother question stemming from my frustration is also that how is everyone else living with this? The fact that table of contents in text and HTML export include a \\\".\\\" between section number and content means people in org also know this. But somehow this is ignored in the main content ?\", \"author_fullname\": \"t2_1zt5mges\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org mode export section numbering\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv8rli\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559344538.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor all the awesomeness of org-mode in general, and its export engines in particular : I cannot make a particular thing work quite well. When an org file is exported, say, to HTML with a huge majority of the available CSS\\u0026#39;es that I could find. Export to text is even worse. E.g. org file :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E* Introduction \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Features \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** Cars \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** Trucks \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Problems\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis gets exported to something like :\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E1 Introduction \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2 Features \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2.1 Cars \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2.2 Trucks \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E3 Problems\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithout anything to distinguish between \\u0026quot;1\\u0026quot; and \\u0026quot;Introduction\\u0026quot;. Or \\u0026quot;2\\u0026quot; and \\u0026quot;Features\\u0026quot;. Everyone who is not used to org mode exporting asks me that you have only 2 features and 3 problems ? BTW the Features section can be many pages long.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried the CSSes from :\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/\\\"\\u003Ehttps://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html\\\"\\u003Ehttps://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://diobla.info/doc/rtags\\\"\\u003Ehttp://diobla.info/doc/rtags\\u003C/a\\u003E : this has a different background for section numbers, but in simple renderers like email , the different background doesn\\u0026#39;t have any effect.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo my question : a simple \\u0026quot;.\\u0026quot; , or \\u0026quot;)\\u0026quot; between section numbering is extremely standard, and most people can make out the difference. How can I add such a separator ? It is also practically standard in HTML numbering that triple click on the line selects the whole content except the section number - which is also violated in all HTML CSSes that I could find.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother question stemming from my frustration is also that how is everyone else living with this? The fact that table of contents in text and HTML export include a \\u0026quot;.\\u0026quot; between section number and content means people in org also know this. But somehow this is ignored in the main content ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv8rli\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KrishnaKrGopal\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv8rli/org_mode_export_section_numbering/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv8rli/org_mode_export_section_numbering/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559315738.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I tried using ob-prolog, but it seems outdated and not working :'(\\n\\n\\u0026#x200B;\\n\\nLuckily with a bit of Lisp, I made a quick hack for quickly executing Prolog queries from the current buffer. I share it here in the hopes of attracting others to try Prolog with Emacs. \\n\\n ;; Don't judge me too harshly, this was quick and dirty; e.g., not enough `let`s!\\n \\n (local-set-key (kbd \\\"\\u003Cf6\\u003E\\\") (lambda () (interactive)\\n \\\"\\n org-babel-tangle the whole file, then execute the final query\\n in the current SRC block.\\n \\n If the query mentions the variable \\u2018X\\u2019, then show all possible solutions\\n followed by \\u2018false\\u2019. Usually one presses \\u2018;\\u2019 to see other solutions,\\n but in Emacs this only shows one futher solution then terminates.\\n We get around this by executing essentially\\n \\u201cforall(your-query-with-X, writeln(X)).\\u201d\\n This prints all solutions X to your query.\\n \\n If you want to use a variable but don't want to see all solutions,\\n then avoid using \\u2018X\\u2019; e.g., use \\u2018Y\\u2019 ^_^.\\n \\\"\\n (-let [kill-buffer-query-functions nil]\\n (ignore-errors\\n (switch-to-buffer \\\"*Prolog*\\\")\\n (kill-buffer \\\"*Prolog*\\\"))\\n \\n ;; Get final query in current source block\\n (search-forward \\\"#+END_SRC\\\")\\n (search-backward \\\"% ?-\\\")\\n ;; Copy line, without killing it.\\n (setq xx (thing-at-point 'line t))\\n \\n (async-shell-command (format \\\"swipl -s %s\\\" (car (org-babel-tangle))) \\\"*Prolog*\\\")\\n (other-window 1)\\n \\n ;; Paste the final query\\n (setq xx (s-chop-prefix \\\"% ?- \\\" xx))\\n (when (s-contains? \\\"X\\\" xx)\\n (setq xx (concat \\\"writeln(\\\\\\\"X =\\\\\\\"), forall(\\\" (s-replace \\\".\\\" \\\", writeln(X)).\\\" xx))))\\n \\n (insert xx)\\n (comint-send-input nil t) ;; Send it, i.e., \\u201cpress enter at prompt\\u201d.\\n \\n ;; Insert query again, but do not send, in case user wishes to change it.\\n (insert xx)\\n (previous-line) (end-of-line)\\n \\n )))\\n\\n\\u0026#x200B;\\n\\nThe [source repo](https://github.com/alhassy/PrologCheatSheet) also contains a Prolog Cheat Sheet that insipired this setup (\\u2022\\u0300\\u1d17\\u2022\\u0301)\\u0648\", \"author_fullname\": \"t2_1pko65xw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\u201cInteractive\\u201d Prolog Setup\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5hq7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559324539.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI tried using ob-prolog, but it seems outdated and not working :\\u0026#39;(\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuckily with a bit of Lisp, I made a quick hack for quickly executing Prolog queries from the current buffer. I share it here in the hopes of attracting others to try Prolog with Emacs. \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Don\\u0026#39;t judge me too harshly, this was quick and dirty; e.g., not enough `let`s!\\n\\n(local-set-key (kbd \\u0026quot;\\u0026lt;f6\\u0026gt;\\u0026quot;) (lambda () (interactive)\\n \\u0026quot;\\norg-babel-tangle the whole file, then execute the final query\\nin the current SRC block.\\n\\nIf the query mentions the variable \\u2018X\\u2019, then show all possible solutions\\nfollowed by \\u2018false\\u2019. Usually one presses \\u2018;\\u2019 to see other solutions,\\nbut in Emacs this only shows one futher solution then terminates.\\nWe get around this by executing essentially\\n\\u201cforall(your-query-with-X, writeln(X)).\\u201d\\nThis prints all solutions X to your query.\\n\\nIf you want to use a variable but don\\u0026#39;t want to see all solutions,\\nthen avoid using \\u2018X\\u2019; e.g., use \\u2018Y\\u2019 ^_^.\\n \\u0026quot;\\n (-let [kill-buffer-query-functions nil]\\n (ignore-errors\\n (switch-to-buffer \\u0026quot;*Prolog*\\u0026quot;)\\n (kill-buffer \\u0026quot;*Prolog*\\u0026quot;))\\n\\n ;; Get final query in current source block\\n (search-forward \\u0026quot;#+END_SRC\\u0026quot;)\\n (search-backward \\u0026quot;% ?-\\u0026quot;)\\n ;; Copy line, without killing it.\\n (setq xx (thing-at-point \\u0026#39;line t))\\n\\n (async-shell-command (format \\u0026quot;swipl -s %s\\u0026quot; (car (org-babel-tangle))) \\u0026quot;*Prolog*\\u0026quot;)\\n (other-window 1)\\n\\n ;; Paste the final query\\n (setq xx (s-chop-prefix \\u0026quot;% ?- \\u0026quot; xx))\\n (when (s-contains? \\u0026quot;X\\u0026quot; xx)\\n(setq xx (concat \\u0026quot;writeln(\\\\\\u0026quot;X =\\\\\\u0026quot;), forall(\\u0026quot; (s-replace \\u0026quot;.\\u0026quot; \\u0026quot;, writeln(X)).\\u0026quot; xx))))\\n\\n (insert xx)\\n (comint-send-input nil t) ;; Send it, i.e., \\u201cpress enter at prompt\\u201d.\\n\\n ;; Insert query again, but do not send, in case user wishes to change it.\\n (insert xx)\\n (previous-line) (end-of-line)\\n\\n)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe \\u003Ca href=\\\"https://github.com/alhassy/PrologCheatSheet\\\"\\u003Esource repo\\u003C/a\\u003E also contains a Prolog Cheat Sheet that insipired this setup (\\u2022\\u0300\\u1d17\\u2022\\u0301)\\u0648\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5hq7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moseswithhisbooks\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5hq7/interactive_prolog_setup/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5hq7/interactive_prolog_setup/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559295739.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I find it helpful to make cheatsheets whenever I'm learning stuff, the LaTeX was getting too much so I just hid it into Org-mode \\\\`#+latex:\\\\` invocations. The resulting mechanism ---[see here](https://github.com/alhassy/CheatSheet)\\\\--- works great: As a user, I essentially only see the usual org-mode interface, little to no LaTeX \\\\^\\\\_\\\\^ \\n\\n\\nHowever, even though I rarely consult it, the setup file is a bit akward, any suggestions for improvement would be welcome :-)\", \"author_fullname\": \"t2_1pko65xw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Easily Making CheatSheets with Org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5e7k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 74, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 74, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559323760.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find it helpful to make cheatsheets whenever I\\u0026#39;m learning stuff, the LaTeX was getting too much so I just hid it into Org-mode `#+latex:` invocations. The resulting mechanism ---\\u003Ca href=\\\"https://github.com/alhassy/CheatSheet\\\"\\u003Esee here\\u003C/a\\u003E--- works great: As a user, I essentially only see the usual org-mode interface, little to no LaTeX ^_^ \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, even though I rarely consult it, the setup file is a bit akward, any suggestions for improvement would be welcome :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5e7k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moseswithhisbooks\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5e7k/easily_making_cheatsheets_with_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5e7k/easily_making_cheatsheets_with_orgmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559294960.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hey, guys, been testing emacs on my new mbp and I ran into a rather inconvenient issue. When I put safari in full screen and switch back to emacs from safari, emacs is out of focus, i.e. I have to click on it to use it. Any ideas as to how to resolve this issue? My emacs version is emacs Mac port.\", \"author_fullname\": \"t2_2g0vvde9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Macos emacs focus issue\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5bes\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559323125.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, guys, been testing emacs on my new mbp and I ran into a rather inconvenient issue. When I put safari in full screen and switch back to emacs from safari, emacs is out of focus, i.e. I have to click on it to use it. Any ideas as to how to resolve this issue? My emacs version is emacs Mac port.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5bes\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"clafordvlawrence\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5bes/macos_emacs_focus_issue/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5bes/macos_emacs_focus_issue/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559294325.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_1s3m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Back in 2008, there were reports that Microsoft was working on Emacs.Net\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv2i7u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 43, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 43, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559301755.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"zdnet.com\", \"selftext_html\": null, \"likes\": true, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv2i7u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dharmatech\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv2i7u/back_in_2008_there_were_reports_that_microsoft/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.zdnet.com/article/microsoft-to-build-an-emacs-net-text-editor/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559272955.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a way to remap *TAB* in org-mode? I have looked into the source code and I cannot figure how to do this map.\", \"author_fullname\": \"t2_qw4yvca\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to remap TAB in org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv0ih3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559289935.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a way to remap \\u003Cem\\u003ETAB\\u003C/em\\u003E in org-mode? I have looked into the source code and I cannot figure how to do this map.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv0ih3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"machawinka\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv0ih3/how_to_remap_tab_in_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv0ih3/how_to_remap_tab_in_orgmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559261135.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"One thing that has been bugging me about using emacs for my email is when I use `message-insert-signature` it always puts my signature at the end of the email. Sometimes I leave the conversation tail after my reply, so I usually want to insert my signature at the point rather than at the end.\\n\\nIs there a way I can change this?\", \"author_fullname\": \"t2_9lkqk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Insert signature at point?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_butsst\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559255097.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOne thing that has been bugging me about using emacs for my email is when I use \\u003Ccode\\u003Emessage-insert-signature\\u003C/code\\u003E it always puts my signature at the end of the email. Sometimes I leave the conversation tail after my reply, so I usually want to insert my signature at the point rather than at the end.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way I can change this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"butsst\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lykwydchykyn\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/butsst/insert_signature_at_point/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/butsst/insert_signature_at_point/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559226297.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I using go language mode (Emacs 26.1 with Prelude). With longer lines, Emacs colors everyting beyond 80 characters in a different color.\\n\\nWhat variable(s) control this and how do I stop it from doing this?\\n\\nAppreciate your help.\\n\\nEDIT: Found it! Turning off whitespace-mode stopped this bahaviour.\", \"author_fullname\": \"t2_1a39v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I stop Emacs from coloring text beyond 80 columns differently.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_butal1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559225749.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559252400.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI using go language mode (Emacs 26.1 with Prelude). With longer lines, Emacs colors everyting beyond 80 characters in a different color.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat variable(s) control this and how do I stop it from doing this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAppreciate your help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Found it! Turning off whitespace-mode stopped this bahaviour.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"butal1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"reddit_clone\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/butal1/how_do_i_stop_emacs_from_coloring_text_beyond_80/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/butal1/how_do_i_stop_emacs_from_coloring_text_beyond_80/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559223600.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl5q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 72, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 72, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559241478.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl5q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burl5q/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559212678.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_14grtk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Brief summary of some Emacs features\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burg4w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559240415.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"old.reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burg4w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vurpius\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burg4w/brief_summary_of_some_emacs_features/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://old.reddit.com/r/linux/comments/btzzvp/unix_as_ide/ep5i1cy/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559211615.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"1. It is not super important but I'm curious if there's a way to improve EXWM startup time? After logging in and seeing Emacs briefly the window expands to fullscreen black and then it takes 10s or so before EXWM is ready. I'm curious it takes such a long time.\\n\\n2. Is there a build-in function to switch to the last used buffer quickly? Currently I'm using my own custom function because `(switch-to-buffer nil)` does not switch to hidden or system buffers. But it feels like overkill to use what I have written[1] (which I also use outside of EXWM).\\n\\n3. For changing the volume I'm using the current keybindings but on first use they have a significant delay and lock EXWM:\\n - `(lambda () (interactive) (start-process \\\"\\\" \\\"*proc-out-amixer*\\\" \\\"amixer\\\" \\\"set\\\" \\\"Master\\\" \\\"2%-\\\")))`\\n - `(lambda () (interactive) (start-process \\\"\\\" \\\"*proc-out-amixer*\\\" \\\"amixer\\\" \\\"set\\\" \\\"Master\\\" \\\"2%+\\\")))`\\n\\n[1]\\n\\n (defvar switch-to-last-buffer-hash-table (make-hash-table))\\n \\n (defun switch-to-last-buffer-store ()\\n (interactive)\\n (puthash (selected-window) (current-buffer)\\n switch-to-last-buffer-hash-table))\\n \\n ;; `(switch-to-buffer nil)` doesn't work because I also want to switch back to\\n ;; hidden or system buffers.\\n (defun switch-to-last-buffer ()\\n (interactive)\\n (let ((last-buffer (gethash (selected-window)\\n switch-to-last-buffer-hash-table)))\\n (when last-buffer\\n (switch-to-last-buffer-store)\\n (switch-to-buffer last-buffer))))\\n \\n ;; XXX What does /protected/ do?\\n (ad-add-advice #'switch-to-buffer '(switch-to-last-buffer-store nil t (lambda () (switch-to-last-buffer-store))) 'before 'first)\", \"author_fullname\": \"t2_3lmrs\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Some EXWM questions (startup time, keybindings)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bur9cm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559238876.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt is not super important but I\\u0026#39;m curious if there\\u0026#39;s a way to improve EXWM startup time? After logging in and seeing Emacs briefly the window expands to fullscreen black and then it takes 10s or so before EXWM is ready. I\\u0026#39;m curious it takes such a long time.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIs there a build-in function to switch to the last used buffer quickly? Currently I\\u0026#39;m using my own custom function because \\u003Ccode\\u003E(switch-to-buffer nil)\\u003C/code\\u003E does not switch to hidden or system buffers. But it feels like overkill to use what I have written[1] (which I also use outside of EXWM).\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor changing the volume I\\u0026#39;m using the current keybindings but on first use they have a significant delay and lock EXWM:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003E(lambda () (interactive) (start-process \\u0026quot;\\u0026quot; \\u0026quot;*proc-out-amixer*\\u0026quot; \\u0026quot;amixer\\u0026quot; \\u0026quot;set\\u0026quot; \\u0026quot;Master\\u0026quot; \\u0026quot;2%-\\u0026quot;)))\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003E(lambda () (interactive) (start-process \\u0026quot;\\u0026quot; \\u0026quot;*proc-out-amixer*\\u0026quot; \\u0026quot;amixer\\u0026quot; \\u0026quot;set\\u0026quot; \\u0026quot;Master\\u0026quot; \\u0026quot;2%+\\u0026quot;)))\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E[1]\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defvar switch-to-last-buffer-hash-table (make-hash-table))\\n\\n(defun switch-to-last-buffer-store ()\\n (interactive)\\n (puthash (selected-window) (current-buffer)\\n switch-to-last-buffer-hash-table))\\n\\n;; `(switch-to-buffer nil)` doesn\\u0026#39;t work because I also want to switch back to\\n;; hidden or system buffers.\\n(defun switch-to-last-buffer ()\\n (interactive)\\n (let ((last-buffer (gethash (selected-window)\\n switch-to-last-buffer-hash-table)))\\n (when last-buffer\\n (switch-to-last-buffer-store)\\n (switch-to-buffer last-buffer))))\\n\\n;; XXX What does /protected/ do?\\n(ad-add-advice #\\u0026#39;switch-to-buffer \\u0026#39;(switch-to-last-buffer-store nil t (lambda () (switch-to-last-buffer-store))) \\u0026#39;before \\u0026#39;first)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bur9cm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aerique\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bur9cm/some_exwm_questions_startup_time_keybindings/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bur9cm/some_exwm_questions_startup_time_keybindings/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559210076.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If that's easily available, please notice that I made it clear it was a silly question. I used to easily find this with a Google Search, but for some reason I haven't been able to find it for the last 48 hours. The mirror [only goes up to 26.2](http://mirror.sergal.org/gnu/emacs/). Where can I find versions development 27 and up?\\n\\n[I can only find pretest versions for Windows](https://alpha.gnu.org/gnu/emacs/pretest/windows/).\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A very silly question: cannot find Emacs 27.0.50 tarball for Linux anywhere!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bumr6p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559177553.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559206114.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf that\\u0026#39;s easily available, please notice that I made it clear it was a silly question. I used to easily find this with a Google Search, but for some reason I haven\\u0026#39;t been able to find it for the last 48 hours. The mirror \\u003Ca href=\\\"http://mirror.sergal.org/gnu/emacs/\\\"\\u003Eonly goes up to 26.2\\u003C/a\\u003E. Where can I find versions development 27 and up?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://alpha.gnu.org/gnu/emacs/pretest/windows/\\\"\\u003EI can only find pretest versions for Windows\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bumr6p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bumr6p/a_very_silly_question_cannot_find_emacs_27050/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bumr6p/a_very_silly_question_cannot_find_emacs_27050/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559177314.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"While me and some friends were discusing about which is the best text editor I said that it is emacs. Someone said that it is VS code because you can do things that in other editors you can't. I said you can do almost everything in emacs. Someone asked if ther is a way to use tinder from emacs. So that's the question, can you interact with other people via tinder with emacs?\\n\\nThanks.\", \"author_fullname\": \"t2_1gpw29so\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a tinder mode on emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buj4i2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 56, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 56, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559187513.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile me and some friends were discusing about which is the best text editor I said that it is emacs. Someone said that it is VS code because you can do things that in other editors you can\\u0026#39;t. I said you can do almost everything in emacs. Someone asked if ther is a way to use tinder from emacs. So that\\u0026#39;s the question, can you interact with other people via tinder with emacs?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buj4i2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"edoelas\", \"num_crossposts\": 0, \"num_comments\": 28, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buj4i2/is_there_a_tinder_mode_on_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buj4i2/is_there_a_tinder_mode_on_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559158713.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Lately I have realized that I don't have an efficient way of organizing my research and ideas. I simply bookmark different papers I have read and jot down my ideas in a notebook. I have looked into tools for this and Zotero seems to be like something I can use.\\n\\nI haven't really used org mode before, but I have heard good things about it. So if anyone uses org mode for the case I have described above (organizing research and ideas), I would love to hear about tips and hopefully links to some guides?\", \"author_fullname\": \"t2_gcwvdi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs org mode as a research/ideas journal ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buhux4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559181180.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELately I have realized that I don\\u0026#39;t have an efficient way of organizing my research and ideas. I simply bookmark different papers I have read and jot down my ideas in a notebook. I have looked into tools for this and Zotero seems to be like something I can use.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t really used org mode before, but I have heard good things about it. So if anyone uses org mode for the case I have described above (organizing research and ideas), I would love to hear about tips and hopefully links to some guides?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buhux4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vikigenius\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buhux4/emacs_org_mode_as_a_researchideas_journal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buhux4/emacs_org_mode_as_a_researchideas_journal/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559152380.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have adapted a function by Xah Lee to change the location backup files are saved, but it doesn't seem to work. Only things like the `recentf` and `idolast` are saved in it. Normal editing files are still backed up in their directories as usual.\\n\\nAre there some other functions and variables involved?\\n \\n ;; make backup to a designated dir, mirroring the full path\\n ;; adapted from xah-lee http://ergoemacs.org/emacs/emacs_set_backup_into_a_directory.html\\n \\n (defun vfc/set-backup-file-path (fpath)\\n \\\"Return a new file path of a given file path.\\n If the new path's directories does not exist, create them.\\\"\\n (let* (\\n (backupRootDir \\\"~/tmp/.emacs_backups/\\\")\\n (filePath (replace-regexp-in-string \\\"[A-Za-z]:\\\" \\\"\\\" fpath )) ; remove Windows driver letter in path, for example, \\u201cC:\\u201d\\n (backupFilePath (replace-regexp-in-string \\\"//\\\" \\\"/\\\" (concat backupRootDir filePath \\\"~\\\") ))\\n )\\n (make-directory (file-name-directory backupFilePath) (file-name-directory backupFilePath))\\n backupFilePath\\n )\\n )\\n \\n (setq make-backup-file-name-function 'vfc/set-backup-file-path)\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there another factor involved in backup file locations besides \\\"make-backup-file-name-function\\\"?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buf5od\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559167905.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have adapted a function by Xah Lee to change the location backup files are saved, but it doesn\\u0026#39;t seem to work. Only things like the \\u003Ccode\\u003Erecentf\\u003C/code\\u003E and \\u003Ccode\\u003Eidolast\\u003C/code\\u003E are saved in it. Normal editing files are still backed up in their directories as usual.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre there some other functions and variables involved?\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; make backup to a designated dir, mirroring the full path\\n;; adapted from xah-lee http://ergoemacs.org/emacs/emacs_set_backup_into_a_directory.html\\n\\n(defun vfc/set-backup-file-path (fpath)\\n \\u0026quot;Return a new file path of a given file path.\\nIf the new path\\u0026#39;s directories does not exist, create them.\\u0026quot;\\n (let* (\\n (backupRootDir \\u0026quot;~/tmp/.emacs_backups/\\u0026quot;)\\n (filePath (replace-regexp-in-string \\u0026quot;[A-Za-z]:\\u0026quot; \\u0026quot;\\u0026quot; fpath )) ; remove Windows driver letter in path, for example, \\u201cC:\\u201d\\n (backupFilePath (replace-regexp-in-string \\u0026quot;//\\u0026quot; \\u0026quot;/\\u0026quot; (concat backupRootDir filePath \\u0026quot;~\\u0026quot;) ))\\n )\\n (make-directory (file-name-directory backupFilePath) (file-name-directory backupFilePath))\\n backupFilePath\\n )\\n)\\n\\n(setq make-backup-file-name-function \\u0026#39;vfc/set-backup-file-path)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buf5od\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buf5od/is_there_another_factor_involved_in_backup_file/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buf5od/is_there_another_factor_involved_in_backup_file/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559139105.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm running Portacle (a LISP IDE).\\n\\nFor some reason I'm not able to use Ctrl+Shift+arrow keys to select text.\\n\\nDoes anyone know why? How can I enable this? In plain Emacs it works just fine.\", \"author_fullname\": \"t2_3nv0r2zn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can't Use Shift Keys for selecting text\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buepqn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559165474.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m running Portacle (a LISP IDE).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor some reason I\\u0026#39;m not able to use Ctrl+Shift+arrow keys to select text.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone know why? How can I enable this? In plain Emacs it works just fine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buepqn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gambledrum1\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buepqn/cant_use_shift_keys_for_selecting_text/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buepqn/cant_use_shift_keys_for_selecting_text/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559136674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I found there is web-mode, rjsx-mode, vue-mode, js-mode, js2-mode and so on. I am not sure if i should use web-mode for all of them or should i use a specific one for each extension like, rjsx for jsx, vue-mode for vue. I saw that most of the mode allows us to customize space, tab... like web-mode does so i could not differentiate between them. Please explain me the different and advice me what should I use and why?\", \"author_fullname\": \"t2_3q43d0xo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Should I use web-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budrzk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559160036.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I found there is web-mode, rjsx-mode, vue-mode, js-mode, js2-mode and so on. I am not sure if i should use web-mode for all of them or should i use a specific one for each extension like, rjsx for jsx, vue-mode for vue. I saw that most of the mode allows us to customize space, tab... like web-mode does so i could not differentiate between them. Please explain me the different and advice me what should I use and why?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budrzk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"onwake01\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budrzk/should_i_use_webmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budrzk/should_i_use_webmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559131236.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I really like emmet and activate it globally so that i can speed up my html code faster. But, because those files don't contain a pure html but also css and js, then emmet often interrupt rather than help because it always show completion and when i press space it just replace my typing. This is annoying when i am inside js block or css block but this interrupt me so much. \\n\\n\\u0026#x200B;\\n\\nMy question is, is it possible if i want emmet to show suggestion/completion inside a block of html code?\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n```\\n(use-package emmet-mode\\n :hook ((html-mode sgml-mode css-mode web-mode) . emmet-preview-mode)\\n :bind(\\\"C-j\\\" . emmet-expand-line)\\n :config\\n (add-hook 'rjsx-mode-hook\\n (lambda ()\\n (setq-local emmet-expand-jsx-className? t)))\\n )\\n;\\n```\", \"author_fullname\": \"t2_3q43d0xo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is it possible to activate emmet only inside HTML region or tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budods\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159433.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I really like emmet and activate it globally so that i can speed up my html code faster. But, because those files don\\u0026#39;t contain a pure html but also css and js, then emmet often interrupt rather than help because it always show completion and when i press space it just replace my typing. This is annoying when i am inside js block or css block but this interrupt me so much. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy question is, is it possible if i want emmet to show suggestion/completion inside a block of html code?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\n\\u003Ccode\\u003E\\n(use-package emmet-mode\\n :hook ((html-mode sgml-mode css-mode web-mode) . emmet-preview-mode)\\n :bind(\\u0026quot;C-j\\u0026quot; . emmet-expand-line)\\n :config\\n (add-hook \\u0026#39;rjsx-mode-hook\\n (lambda ()\\n (setq-local emmet-expand-jsx-className? t)))\\n )\\n;\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budods\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"onwake01\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budods/is_it_possible_to_activate_emmet_only_inside_html/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budods/is_it_possible_to_activate_emmet_only_inside_html/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559130633.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I work with emacs at work to organized incoming tickets. We open these tickets in an online application, essentially a web page for each ticket. I am looking for a way to get certain text strings (for example, the ticket number \\u0026 the user ID) into Emacs, and then into a capture template in org, which contains these as properties (:ticket: :userid:).\\n\\n\\u0026#x200B;\\n\\nWhat would be a way to look into it? I'm trying to find something online but it seems to be too vague to search thoroughly. Anyone here done something similar? I'm open to suggestions...\\n\\n\\u0026#x200B;\\n\\nThanks in advance!\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Extract certain text from browser to Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budmsh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159158.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI work with emacs at work to organized incoming tickets. We open these tickets in an online application, essentially a web page for each ticket. I am looking for a way to get certain text strings (for example, the ticket number \\u0026amp; the user ID) into Emacs, and then into a capture template in org, which contains these as properties (:ticket: :userid:).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat would be a way to look into it? I\\u0026#39;m trying to find something online but it seems to be too vague to search thoroughly. Anyone here done something similar? I\\u0026#39;m open to suggestions...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budmsh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budmsh/extract_certain_text_from_browser_to_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budmsh/extract_certain_text_from_browser_to_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559130358.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\\n\\nThe other things which get noted in LOGBOOK can remain, just `C-c C-z` to go into a separate drawer?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bud0x7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559155172.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe other things which get noted in LOGBOOK can remain, just \\u003Ccode\\u003EC-c C-z\\u003C/code\\u003E to go into a separate drawer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bud0x7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bud0x7/how_can_emacs_be_set_to_use_a_different_drawer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bud0x7/how_can_emacs_be_set_to_use_a_different_drawer/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559126372.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_8dk3r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bucul7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 33, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/AL1ypvJ5yAQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bucul7\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 33, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559153900.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bucul7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zaiste\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bucul7/emacs_doom_e04_buffers_windows_and_basic/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=AL1ypvJ5yAQ\\u0026feature=youtu.be\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559125100.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/AL1ypvJ5yAQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Any using emacs to track calories or any other diet related stuff?\", \"author_fullname\": \"t2_2ibchdac\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone using emacs to track calories?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buci89\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559151135.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny using emacs to track calories or any other diet related stuff?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buci89\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"the_sealed_tanker\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buci89/anyone_using_emacs_to_track_calories/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buci89/anyone_using_emacs_to_track_calories/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559122335.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm finally diving into the world of emacs. So i set a theme and all that in the GUI wich looks great. However, outside of emacs i'm using a transparant URvxt with a color scheme of it's own, before i customized the GUI version emacs -nw would be the same transparency and all the colors would match. Now however i get a full green screen with on which the letters are hardly readable. How can I apply the theme only to the GUI version and not the terminal version?\\n\\nThanks.\", \"author_fullname\": \"t2_3p8r6ax6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs -nw color scheme.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bubuv9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559145461.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m finally diving into the world of emacs. So i set a theme and all that in the GUI wich looks great. However, outside of emacs i\\u0026#39;m using a transparant URvxt with a color scheme of it\\u0026#39;s own, before i customized the GUI version emacs -nw would be the same transparency and all the colors would match. Now however i get a full green screen with on which the letters are hardly readable. How can I apply the theme only to the GUI version and not the terminal version?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bubuv9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"whoopar\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bubuv9/emacs_nw_color_scheme/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bubuv9/emacs_nw_color_scheme/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559116661.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"# Introduction\\n\\nGNU Hyperbole 7.0.3 is released and ready for action.\\n\\nHyperbole is an amazing hypertextual information management system that installs quickly and easily as an Emacs package. It is part of GNU Elpa, the Emacs Lisp Package Archive.\\n\\nHyperbole interlinks all your working information within Emacs for fast access and editing, not just within special modes. An hour invested exploring Hyperbole's built-in interactive DEMO file will save you hundreds of hours in your future work.\\n\\n7.0.3 is a significant release with a number of interesting improvements. What's new in this release is described here:\\n\\n[www.gnu.org/s/hyperbole/HY-NEWS](https://www.gnu.org/s/hyperbole/HY-NEWS.html)\\n\\nHyperbole is described here:\\n\\n[www.gnu.org/s/hyperbole](https://www.gnu.org/s/hyperbole)\\n\\nFor use cases, see:\\n\\n[www.gnu.org/s/hyperbole/HY-WHY.html](https://www.gnu.org/s/hyperbole/HY-WHY.html)\\n\\nFor what users think about Hyperbole, see:\\n\\n[https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes](https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes)\\n\\nHyperbole can supplement and extend Org-mode's capabilities. It adds many features not found elsewhere in Emacs, including Org mode, see:\\n\\n[www.emacswiki.org/emacs/Hyperbole](https://www.emacswiki.org/emacs/Hyperbole)\\n\\nHyperbole includes its own easy-to-use hypertextual buttons and links that can be created without the need for any markup language.\\n\\nHyperbole has an interactive demo to introduce you to its features as well as a detailed reference manual, as explained here:\\n\\n[https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc](https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc)\\n\\n# Quick Reasons to Try Hyperbole\\n\\nIt contains:\\n\\n* the most flexible and easy-to-use hyperbuttons available, including implicit buttons automatically recognized by context, e.g. stack trace source line references.\\n* the only Emacs outliner with full legal item numbering, e.g. [1.4.2.6](https://1.4.2.6), and automatic permanent hyperlink anchors for every item\\n* the only free-form contact manager with full-text search for Emacs\\n* rapid and precise window, frame and buffer placement on screen\\n* an extensive menu of typed web searches, e.g. dictionary, wikipedia and stackoverflow, plus convenient, fast file and line finding functions\\n* immediate execution of a series of key presses just by typing them out. For example, a M-RETURN press on: {C-x C-b C-s scratch RET C-a} will find the first buffer menu item that contains 'scratch'; then leave point at the beginning of its line. Build interactive tutorials with this.\\n* The Magic of Implicit Buttons and the Action Key\\n\\nFor near instant gratification, try Hyperbole's 'implicit button' capabilities (hyper-buttons that Hyperbole gives you for free by recognizing all types of references embedded within text such as pathnames or error message lines). Below are more complex examples to show the power; simpler ones can be found within the Hyperbole DEMO file.\\n\\nImplicit buttons are activated by pressing the Action Key, M\\\\*-RETURN\\\\*. Once Hyperbole is loaded in your Emacs, pressing *M-RETURN* on any of these examples \\\\*in virtually any buffer\\\\* will display the associated referent in a chosen window or frame, handling all variable substitution and full path resolution:\\n\\n \\\"find-func.el\\\" Find this file whether gzipped or not\\n in the Emacs Lisp load-path\\n \\n \\\"${hyperb:dir}/HY-NEWS\\\" Resolve variable, show Hyperbole news\\n \\n \\\"${PATH}/umask\\\" Display a script somewhere in multi-dir PATH\\n \\n \\\"${hyperb:dir}/DEMO#Hyperbole Menus\\\" Org mode outline, Markdown, and HTML # refs\\n \\n \\\"(hyperbole)Menus\\\" Texinfo and Info node links\\n \\n \\\"c:/Users\\\", \\\"c:\\\\Users\\\", \\\"/C/Users\\\", \\\"/c/Users\\\", and \\\"/mnt/c/Users\\\"\\n On Windows and Windows Subsystem for Linux,\\n Hyperbole recognizes all of these as the\\n same path and can translate between Windows\\n and POSIX path formats in both directions\\n \\n Git Links:\\n git#branches List branches in current repo/project\\n git#commits List and browse commits for current project\\n git#tags List tags in current project\\n \\n git#/hyperbole From any buffer, dired on the top\\n directory of the local hyperbole\\n project\\n \\n git#/hyperbole/55a1f0 or From any buffer, display hyperbole\\n git#hyperbole/55a1f0 local git commit diff\\n \\n \\n Github Links:\\n gh@rswgnu Display user's home page \\u0026 projects\\n \\n github#rswgnu/hyperbole Display user's project\\n gh#rswgnu/helm/global_mouse Display user project's branch\\n gh#rswgnu/hyperbole/55a1f0 Display user project's commit diff\\n \\n Gitlab Links:\\n gitlab@seriyalexandrov Display user's home page\\n gl#gitlab-org/gitlab-ce/activity Summarize user's project activity\\n gl#gitlab-org/gitlab-ce/analytics Display user project's cycle_analytics\\n gl#gitlab-org/gitlab-ce/boards Display user project's kanban-type issue boards\\n \\n Once you set the default user and project variables, you can leave them off any reference links:\\n \\n (setq hibtypes-gitlab-default-user \\\"gitlab-org\\\")\\n (setq hibtypes-gitlab-default-project \\\"gitlab-ce\\\")\\n \\n gl#issues or gl#list Display default project's issue list\\n gl#labels Display default project's issue categories\\n gl#members Display default project's staff list\\n gl#contributors Show contributor push frequency charts\\n gl#merge_requests or gl#pulls Display default project's pull requests\\n gl#milestones Display default project's milestones status\\n gl#pages Display default project's web pages\\n gl#snippets Project snippets, diffs and text with discussion\\n gl#groups List all available groups of projects\\n gl#projects List all available projects\\n \\n gl#milestone=38 Show a specific project milestone\\n gl#snippet/1689487 Show a specific project snippet\\n \\n Even useful social media links:\\n tw#travel or twitter#travel Display twitter hashtag matches\\n fb#technology Display facebook hashtag matches\\n \\n Hyperbole uses simple prefix characters with paths to make them executable:\\n \\\"!/bin/date\\\" Execute as a non-windowed program within a shell\\n \\\"\\u0026/opt/X11/bin/xeyes\\\" Execute as a windowed program;\\n \\\"-find-func.el\\\" Load/execute this Emacs Lisp library\\n \\n File \\\"/usr/lib/python3.7/ast.py\\\", line 37, in parse\\n Jump to error/stack trace source\\n \\n \\\"/ftp:anonymous@ftp.gnu.org:\\\" Tramp remote paths\\n\\n# Try It - Installs or Uninstalls in a Minute\\n\\nHyperbole lets you concentrate more on your work. Then as you grow with it across time, it helps speed your work across weeks and months. It installs in about a minute and can be uninstalled even faster if ever need be. Give it a try.\\n\\nHyperbole can boost your day-to-day productivity with Emacs and your ability to manage information stored across many different machines on the internet.\\n\\nHyperbole can be installed like any other package with the Emacs package manager:\\n\\n {M-x list-packages RET C-s hyperbole RET i x y}\\n\\nThen to invoke its menu:\\n\\n {C-h h} or {M-x hyperbole RET}\\n\\nThe best way to get a feel for many of its capabilities is to invoke the interactive DEMO and explore sections of interest:\\n\\n {C-h h d d}\\n\\n\\u0026#x200B;\\n\\nEnjoy,\\n\\nThe Hyperbole Team\", \"author_fullname\": \"t2_zxjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GNU Hyperbole 7.0.3 is released and ready for action\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bua5ex\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 90, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 90, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559271243.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559132304.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EIntroduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EGNU Hyperbole 7.0.3 is released and ready for action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole is an amazing hypertextual information management system that installs quickly and easily as an Emacs package. It is part of GNU Elpa, the Emacs Lisp Package Archive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole interlinks all your working information within Emacs for fast access and editing, not just within special modes. An hour invested exploring Hyperbole\\u0026#39;s built-in interactive DEMO file will save you hundreds of hours in your future work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E7.0.3 is a significant release with a number of interesting improvements. What\\u0026#39;s new in this release is described here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/HY-NEWS.html\\\"\\u003Ewww.gnu.org/s/hyperbole/HY-NEWS\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole is described here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole\\\"\\u003Ewww.gnu.org/s/hyperbole\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor use cases, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/HY-WHY.html\\\"\\u003Ewww.gnu.org/s/hyperbole/HY-WHY.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor what users think about Hyperbole, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes\\\"\\u003Ehttps://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can supplement and extend Org-mode\\u0026#39;s capabilities. It adds many features not found elsewhere in Emacs, including Org mode, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/Hyperbole\\\"\\u003Ewww.emacswiki.org/emacs/Hyperbole\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole includes its own easy-to-use hypertextual buttons and links that can be created without the need for any markup language.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole has an interactive demo to introduce you to its features as well as a detailed reference manual, as explained here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc\\\"\\u003Ehttps://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuick Reasons to Try Hyperbole\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EIt contains:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Ethe most flexible and easy-to-use hyperbuttons available, including implicit buttons automatically recognized by context, e.g. stack trace source line references.\\u003C/li\\u003E\\n\\u003Cli\\u003Ethe only Emacs outliner with full legal item numbering, e.g. \\u003Ca href=\\\"https://1.4.2.6\\\"\\u003E1.4.2.6\\u003C/a\\u003E, and automatic permanent hyperlink anchors for every item\\u003C/li\\u003E\\n\\u003Cli\\u003Ethe only free-form contact manager with full-text search for Emacs\\u003C/li\\u003E\\n\\u003Cli\\u003Erapid and precise window, frame and buffer placement on screen\\u003C/li\\u003E\\n\\u003Cli\\u003Ean extensive menu of typed web searches, e.g. dictionary, wikipedia and stackoverflow, plus convenient, fast file and line finding functions\\u003C/li\\u003E\\n\\u003Cli\\u003Eimmediate execution of a series of key presses just by typing them out. For example, a M-RETURN press on: {C-x C-b C-s scratch RET C-a} will find the first buffer menu item that contains \\u0026#39;scratch\\u0026#39;; then leave point at the beginning of its line. Build interactive tutorials with this.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Magic of Implicit Buttons and the Action Key\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EFor near instant gratification, try Hyperbole\\u0026#39;s \\u0026#39;implicit button\\u0026#39; capabilities (hyper-buttons that Hyperbole gives you for free by recognizing all types of references embedded within text such as pathnames or error message lines). Below are more complex examples to show the power; simpler ones can be found within the Hyperbole DEMO file.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EImplicit buttons are activated by pressing the Action Key, M*-RETURN*. Once Hyperbole is loaded in your Emacs, pressing \\u003Cem\\u003EM-RETURN\\u003C/em\\u003E on any of these examples *in virtually any buffer* will display the associated referent in a chosen window or frame, handling all variable substitution and full path resolution:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E \\u0026quot;find-func.el\\u0026quot; Find this file whether gzipped or not\\n in the Emacs Lisp load-path\\n\\n \\u0026quot;${hyperb:dir}/HY-NEWS\\u0026quot; Resolve variable, show Hyperbole news\\n\\n \\u0026quot;${PATH}/umask\\u0026quot; Display a script somewhere in multi-dir PATH\\n\\n \\u0026quot;${hyperb:dir}/DEMO#Hyperbole Menus\\u0026quot; Org mode outline, Markdown, and HTML # refs\\n\\n \\u0026quot;(hyperbole)Menus\\u0026quot; Texinfo and Info node links\\n\\n \\u0026quot;c:/Users\\u0026quot;, \\u0026quot;c:\\\\Users\\u0026quot;, \\u0026quot;/C/Users\\u0026quot;, \\u0026quot;/c/Users\\u0026quot;, and \\u0026quot;/mnt/c/Users\\u0026quot;\\n On Windows and Windows Subsystem for Linux,\\n Hyperbole recognizes all of these as the\\n same path and can translate between Windows\\n and POSIX path formats in both directions\\n\\nGit Links:\\n git#branches List branches in current repo/project\\n git#commits List and browse commits for current project\\n git#tags List tags in current project\\n\\n git#/hyperbole From any buffer, dired on the top\\n directory of the local hyperbole\\n project\\n\\n git#/hyperbole/55a1f0 or From any buffer, display hyperbole\\n git#hyperbole/55a1f0 local git commit diff\\n\\n\\nGithub Links:\\n gh@rswgnu Display user\\u0026#39;s home page \\u0026amp; projects\\n\\n github#rswgnu/hyperbole Display user\\u0026#39;s project\\n gh#rswgnu/helm/global_mouse Display user project\\u0026#39;s branch\\n gh#rswgnu/hyperbole/55a1f0 Display user project\\u0026#39;s commit diff\\n\\nGitlab Links:\\n gitlab@seriyalexandrov Display user\\u0026#39;s home page\\n gl#gitlab-org/gitlab-ce/activity Summarize user\\u0026#39;s project activity\\n gl#gitlab-org/gitlab-ce/analytics Display user project\\u0026#39;s cycle_analytics\\n gl#gitlab-org/gitlab-ce/boards Display user project\\u0026#39;s kanban-type issue boards\\n\\nOnce you set the default user and project variables, you can leave them off any reference links:\\n\\n (setq hibtypes-gitlab-default-user \\u0026quot;gitlab-org\\u0026quot;)\\n (setq hibtypes-gitlab-default-project \\u0026quot;gitlab-ce\\u0026quot;)\\n\\n gl#issues or gl#list Display default project\\u0026#39;s issue list\\n gl#labels Display default project\\u0026#39;s issue categories\\n gl#members Display default project\\u0026#39;s staff list\\n gl#contributors Show contributor push frequency charts\\n gl#merge_requests or gl#pulls Display default project\\u0026#39;s pull requests\\n gl#milestones Display default project\\u0026#39;s milestones status\\n gl#pages Display default project\\u0026#39;s web pages\\n gl#snippets Project snippets, diffs and text with discussion\\n gl#groups List all available groups of projects\\n gl#projects List all available projects\\n\\n gl#milestone=38 Show a specific project milestone\\n gl#snippet/1689487 Show a specific project snippet\\n\\nEven useful social media links:\\n tw#travel or twitter#travel Display twitter hashtag matches\\n fb#technology Display facebook hashtag matches\\n\\nHyperbole uses simple prefix characters with paths to make them executable:\\n \\u0026quot;!/bin/date\\u0026quot; Execute as a non-windowed program within a shell\\n \\u0026quot;\\u0026amp;/opt/X11/bin/xeyes\\u0026quot; Execute as a windowed program;\\n \\u0026quot;-find-func.el\\u0026quot; Load/execute this Emacs Lisp library\\n\\n File \\u0026quot;/usr/lib/python3.7/ast.py\\u0026quot;, line 37, in parse\\n Jump to error/stack trace source\\n\\n \\u0026quot;/ftp:anonymous@ftp.gnu.org:\\u0026quot; Tramp remote paths\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Ch1\\u003ETry It - Installs or Uninstalls in a Minute\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EHyperbole lets you concentrate more on your work. Then as you grow with it across time, it helps speed your work across weeks and months. It installs in about a minute and can be uninstalled even faster if ever need be. Give it a try.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can boost your day-to-day productivity with Emacs and your ability to manage information stored across many different machines on the internet.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can be installed like any other package with the Emacs package manager:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {M-x list-packages RET C-s hyperbole RET i x y}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThen to invoke its menu:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {C-h h} or {M-x hyperbole RET}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe best way to get a feel for many of its capabilities is to invoke the interactive DEMO and explore sections of interest:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {C-h h d d}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEnjoy,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Hyperbole Team\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bua5ex\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rswgnu\", \"num_crossposts\": 0, \"num_comments\": 35, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559103504.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here is the second post of my Year of Emacs series. This is the version of my init.el that I am currently using. Two posts in one week because a dotfile doesn't really explore a single mode, package, workflow so I don't feel like it counts.\\n\\nThis weekend, I'll be writing about how I used org-mode to write my Master's Thesis.\\n\\n[https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-\\\\~-may-2019/](https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-~-may-2019/)\", \"author_fullname\": \"t2_jqpn4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Year of Emacs: Starting init.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu99h0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559126798.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is the second post of my Year of Emacs series. This is the version of my init.el that I am currently using. Two posts in one week because a dotfile doesn\\u0026#39;t really explore a single mode, package, workflow so I don\\u0026#39;t feel like it counts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis weekend, I\\u0026#39;ll be writing about how I used org-mode to write my Master\\u0026#39;s Thesis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-%7E-may-2019/\\\"\\u003Ehttps://jonathanabennett.github.io/blog/2019/05/28/emacs.org-~-may-2019/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu99h0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doulos05\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu99h0/year_of_emacs_starting_initel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu99h0/year_of_emacs_starting_initel/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559097998.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm slowly working on eliminating my need for a shell by moving more and more functionality into Emacs. \\n\\nI am really interested in getting my feet wet with Emacs modules, but I don't really have any ideas for stuff to wrap/write?\\n\\nDoes anyone have any lower-level functionality that they've really wished they could have in Emacs but haven't been able to get yet?\\n\\nI'm also experimenting with dbus and Emacs, so if there are any ideas with that, I'd like to play around with that as well.\\n\\nEDIT: just a quick clarification. It seems that some people misunderstood what I mean by module. I was specifically referring to Emacs' [dynamic modules](https://www.gnu.org/software/emacs/manual/html_node/elisp/Dynamic-Modules.html), not mode or library.\\n\\nI'm definitely interested in doing anything I can to make the Emacs community better off, but I was specifically asking for ideas relating to dynamic modules or using Emacs' dbus wrapper.\", \"author_fullname\": \"t2_clfs9gn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Any interesting ideas for Emacs modules?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu83ku\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559165757.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559119874.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m slowly working on eliminating my need for a shell by moving more and more functionality into Emacs. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am really interested in getting my feet wet with Emacs modules, but I don\\u0026#39;t really have any ideas for stuff to wrap/write?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have any lower-level functionality that they\\u0026#39;ve really wished they could have in Emacs but haven\\u0026#39;t been able to get yet?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m also experimenting with dbus and Emacs, so if there are any ideas with that, I\\u0026#39;d like to play around with that as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: just a quick clarification. It seems that some people misunderstood what I mean by module. I was specifically referring to Emacs\\u0026#39; \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/elisp/Dynamic-Modules.html\\\"\\u003Edynamic modules\\u003C/a\\u003E, not mode or library.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m definitely interested in doing anything I can to make the Emacs community better off, but I was specifically asking for ideas relating to dynamic modules or using Emacs\\u0026#39; dbus wrapper.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu83ku\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"egregius313\", \"num_crossposts\": 0, \"num_comments\": 27, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu83ku/any_interesting_ideas_for_emacs_modules/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu83ku/any_interesting_ideas_for_emacs_modules/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559091074.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My idea is, displaying the scheduled agenda item at current time in the header modeline, is there any way to get it as a string?\\n\\nFor example I have this:\\n\\n * TODO Do something here\\n \\u003C2019-05-28 16:30-17:00\\u003E\\n\\nAnd now is 16:45, I want to get the string `TODO Do something here`.\", \"author_fullname\": \"t2_f7e7n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there anyway to get scheduled agenda item at current time?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu7hs4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559116512.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy idea is, displaying the scheduled agenda item at current time in the header modeline, is there any way to get it as a string?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example I have this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Do something here\\n \\u0026lt;2019-05-28 16:30-17:00\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnd now is 16:45, I want to get the string \\u003Ccode\\u003ETODO Do something here\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7hs4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"huydotnet\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu7hs4/is_there_anyway_to_get_scheduled_agenda_item_at/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu7hs4/is_there_anyway_to_get_scheduled_agenda_item_at/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559087712.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm using LISPBOX for Windows: [https://common-lisp.net/project/lispbox/](https://common-lisp.net/project/lispbox/)\\n\\nEverything works great, however when I create a new file (for creating lisps the editor is not indenting my parenthesis.\\n\\nIt indents just fine in the REPL, but not in the new file. The new file does parenthesis matching just fine. It also will compile to the REPL just fine.\\n\\nIt just won't indent!!!\\n\\nHow can I fix this?\", \"author_fullname\": \"t2_3nv0r2zn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SLIME not indenting...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu3uqy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559098225.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using LISPBOX for Windows: \\u003Ca href=\\\"https://common-lisp.net/project/lispbox/\\\"\\u003Ehttps://common-lisp.net/project/lispbox/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEverything works great, however when I create a new file (for creating lisps the editor is not indenting my parenthesis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt indents just fine in the REPL, but not in the new file. The new file does parenthesis matching just fine. It also will compile to the REPL just fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt just won\\u0026#39;t indent!!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I fix this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu3uqy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gambledrum1\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu3uqy/slime_not_indenting/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu3uqy/slime_not_indenting/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559069425.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've been working on my first bit of elisp, a minor mode to make writing ruby scripts a bit easier, but since I'm pretty new to this, I'm not sure of what the best practices are. Are there any naming conventions for variable/function names that I should adhere to or any pitfalls that I should be aware of? When I get it into a more finished state, should I submit it to melpa, and if so, how would I go about doing that?\\n\\nEdit: For future programmers, here are a few things I've learned:\\n\\n* Magic autoload cookies ***need*** to have three semicolons before them or the autoload file will not build correctly. I can't find anything documenting this behavior, which made debugging really frustrating.\\n\\n Like this:\\n ;;;###autoload\\n Not these:\\n ;###autoload\\n ;;###autoload\\n ;;;;###autoload\\n\\n* Docstrings should not be indented after the first line. This looks terrible in the code, but when the docstrings are opened up in help mode, they will look wonky if they are indented.\\n* `defcustom` should be used for variables, not `defvar`. This is so users can set custom values for the variables via the customization interface. Similarly, `defgroup` should be used to create a custom group so that the customizable variables for your mode can be easily accessed/discovered.\", \"author_fullname\": \"t2_28kz9s00\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Any tips for writing minor modes?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu3ql3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559233037.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559097649.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been working on my first bit of elisp, a minor mode to make writing ruby scripts a bit easier, but since I\\u0026#39;m pretty new to this, I\\u0026#39;m not sure of what the best practices are. Are there any naming conventions for variable/function names that I should adhere to or any pitfalls that I should be aware of? When I get it into a more finished state, should I submit it to melpa, and if so, how would I go about doing that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: For future programmers, here are a few things I\\u0026#39;ve learned:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EMagic autoload cookies \\u003Cstrong\\u003E\\u003Cem\\u003Eneed\\u003C/em\\u003E\\u003C/strong\\u003E to have three semicolons before them or the autoload file will not build correctly. I can\\u0026#39;t find anything documenting this behavior, which made debugging really frustrating.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ELike this:\\n ;;;###autoload\\nNot these:\\n ;###autoload\\n ;;###autoload\\n ;;;;###autoload\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDocstrings should not be indented after the first line. This looks terrible in the code, but when the docstrings are opened up in help mode, they will look wonky if they are indented.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Edefcustom\\u003C/code\\u003E should be used for variables, not \\u003Ccode\\u003Edefvar\\u003C/code\\u003E. This is so users can set custom values for the variables via the customization interface. Similarly, \\u003Ccode\\u003Edefgroup\\u003C/code\\u003E should be used to create a custom group so that the customizable variables for your mode can be easily accessed/discovered.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu3ql3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"samuel_first\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu3ql3/any_tips_for_writing_minor_modes/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu3ql3/any_tips_for_writing_minor_modes/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559068849.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bu3ql3\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["419643"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:12 GMT"], "x-ratelimit-remaining": ["596.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21922-LGA"], "x-ratelimit-used": ["4"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914092.825591,VS0,VE1034"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["109"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:28:12"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_bxtwfg"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:13 GMT"], "x-ratelimit-remaining": ["595.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21922-LGA"], "x-ratelimit-used": ["5"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914093.115219,VS0,VE113"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["107"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_bxtwfg"}, "recorded_at": "2019-06-07T13:28:13"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9nx63\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skouakskouek\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559913189.0, \"send_replies\": true, \"parent_id\": \"t3_bxu83g\", \"score\": 1, \"author_fullname\": \"t2_elo7h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hi, I'm not sure about what I should do to have syntax highlighting on my code block.\\n\\nI added this to my emacs file, to no success:\\n\\n (setq org-src-fontify-natively t\\n org-src-tab-acts-natively t\\n org-confirm-babel-evaluate nil\\n org-edit-src-content-indentation 0)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eq9nx63\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I\\u0026#39;m not sure about what I should do to have syntax highlighting on my code block.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI added this to my emacs file, to no success:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-src-fontify-natively t\\n org-src-tab-acts-natively t\\n org-confirm-babel-evaluate nil\\n org-edit-src-content-indentation 0)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/eq9nx63/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1559941989.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxooz7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g6db\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559905273.0, \"send_replies\": true, \"parent_id\": \"t3_bxooz7\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Try `(add-to-list 'org-src-lang-modes '(\\\"mathematica\\\" . wolfram)).`\", \"link_title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g6db\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETry \\u003Ccode\\u003E(add-to-list \\u0026#39;org-src-lang-modes \\u0026#39;(\\u0026quot;mathematica\\u0026quot; . wolfram)).\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/eq9g6db/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"created\": 1559934073.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7h9nd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559846733.0, \"send_replies\": true, \"parent_id\": \"t1_eq7e68j\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Oh my, TIL. Thanks for pointing me into the right direction! I even stumbled upon that variable but ignored it because of the *fold* in it's name. So, thank you again! :-)\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7h9nd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh my, TIL. Thanks for pointing me into the right direction! I even stumbled upon that variable but ignored it because of the \\u003Cem\\u003Efold\\u003C/em\\u003E in it\\u0026#39;s name. So, thank you again! :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7h9nd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559875533.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7h0nk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559846610.0, \"send_replies\": true, \"parent_id\": \"t1_eq6cg2w\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003Ean *all small caps* string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search\\n\\nSpot on, I didn't even notice that, thank you!\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7h0nk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ean \\u003Cem\\u003Eall small caps\\u003C/em\\u003E string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESpot on, I didn\\u0026#39;t even notice that, thank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7h0nk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559875410.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7e68j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559845225.0, \"send_replies\": true, \"parent_id\": \"t3_bxfd1r\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \" helm-case-fold-search is a variable defined in \\u2018helm.el\\u2019.\\n Its value is \\u2018smart\\u2019\\n\\n Documentation:\\n Adds \\u2019smart\\u2019 option to \\u2018case-fold-search\\u2019.\\n Smart option ignores case for searches as long as there are no\\n upper case characters in the pattern.\\n\\n Use nil or t to turn off smart behavior and use\\n \\u2018case-fold-search\\u2019 behavior.\\n\\n Default is smart.\\n\\n NOTE: Case fold search has no effect when searching asynchronous\\n sources, which rely on customized features implemented directly\\n into their execution process. See helm-grep.el for an example.\\n\\n You can customize this variable.\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7e68j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003Ehelm-case-fold-search is a variable defined in \\u2018helm.el\\u2019.\\nIts value is \\u2018smart\\u2019\\n\\nDocumentation:\\nAdds \\u2019smart\\u2019 option to \\u2018case-fold-search\\u2019.\\nSmart option ignores case for searches as long as there are no\\nupper case characters in the pattern.\\n\\nUse nil or t to turn off smart behavior and use\\n\\u2018case-fold-search\\u2019 behavior.\\n\\nDefault is smart.\\n\\nNOTE: Case fold search has no effect when searching asynchronous\\nsources, which rely on customized features implemented directly\\ninto their execution process. See helm-grep.el for an example.\\n\\nYou can customize this variable.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7e68j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559874025.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7dx8p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559845112.0, \"send_replies\": true, \"parent_id\": \"t1_eq6t46m\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Well, there is one potential solution I can think of: Write a function which can be used as advice to the appropriate function which would add the proper prefix to image paths when Org displays inline images, and activate the advice with `eval` in a buffer-local variable line in each Org file. (Using dir-locals would be even better, but I don't know if you can `eval` with that.)\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7dx8p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, there is one potential solution I can think of: Write a function which can be used as advice to the appropriate function which would add the proper prefix to image paths when Org displays inline images, and activate the advice with \\u003Ccode\\u003Eeval\\u003C/code\\u003E in a buffer-local variable line in each Org file. (Using dir-locals would be even better, but I don\\u0026#39;t know if you can \\u003Ccode\\u003Eeval\\u003C/code\\u003E with that.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq7dx8p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559873912.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq74izr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559840395.0, \"send_replies\": true, \"parent_id\": \"t1_eq0moy7\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I did something like that.\\n\\nIs yours text or gui?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq74izr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI did something like that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs yours text or gui?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq74izr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559869195.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq74am7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559840281.0, \"send_replies\": true, \"parent_id\": \"t1_epo4x0j\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \" \\u003E I'm curious as to what a \\\"stand-alone\\\" version of org mode would look like.\\n\\nInteresting question. To start off, please tell me what\\n\\n emacs -f org-mode my-big-org-mode-file.txt\\n\\nwould lack, as an implementation.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eq74am7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026gt; I\\u0026#39;m curious as to what a \\u0026quot;stand-alone\\u0026quot; version of org mode would look like.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EInteresting question. To start off, please tell me what\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eemacs -f org-mode my-big-org-mode-file.txt\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewould lack, as an implementation.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/eq74am7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559869081.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6t46m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559834955.0, \"send_replies\": true, \"parent_id\": \"t1_eq4m54v\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Usually, I prefer to define something once instead of copying it multiple times.\\n\\nThen, if I need to change the folder name, I just need to change on variable at the beginning of my org-mode file instead of having to do a search/replace thing.\\n\\nBut this is just personal preference.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6t46m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsually, I prefer to define something once instead of copying it multiple times.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen, if I need to change the folder name, I just need to change on variable at the beginning of my org-mode file instead of having to do a search/replace thing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut this is just personal preference.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq6t46m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559863755.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6cg2w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559826572.0, \"send_replies\": true, \"parent_id\": \"t3_bxfd1r\", \"score\": 4, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm not a helm user myself, but a frequent behaviour I meet around in regex searches are that an _all small caps_ string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search. So, if this is the same behaviour there, `\\\"Berlin/Todo\\\"` is case sensitive, whereas `\\\"berlin/todo\\\"` wouldn't be. (That's only a guess though...)\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq6cg2w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not a helm user myself, but a frequent behaviour I meet around in regex searches are that an \\u003Cem\\u003Eall small caps\\u003C/em\\u003E string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search. So, if this is the same behaviour there, \\u003Ccode\\u003E\\u0026quot;Berlin/Todo\\u0026quot;\\u003C/code\\u003E is case sensitive, whereas \\u003Ccode\\u003E\\u0026quot;berlin/todo\\u0026quot;\\u003C/code\\u003E wouldn\\u0026#39;t be. (That\\u0026#39;s only a guess though...)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq6cg2w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559855372.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq61yd0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559820069.0, \"send_replies\": true, \"parent_id\": \"t1_eq0mczn\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I can't reproduce this. I had to add (use-package dash) to your init.el file, but after that, ivy-contacts worked fine for me, and showed your two contacts. Maybe if you run M-x toggle-debug-on-error a more informative error message might be shown.\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_eq61yd0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t reproduce this. I had to add (use-package dash) to your init.el file, but after that, ivy-contacts worked fine for me, and showed your two contacts. Maybe if you run M-x toggle-debug-on-error a more informative error message might be shown.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/eq61yd0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559848869.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq4m54v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559779949.0, \"send_replies\": true, \"parent_id\": \"t1_eq499va\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Maybe I could use a snippet for that that automatically write the name of the figure folder (it's based on the note filename) but I don't really like that...\\n\\nWhy?\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq4m54v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EMaybe I could use a snippet for that that automatically write the name of the figure folder (it\\u0026#39;s based on the note filename) but I don\\u0026#39;t really like that...\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhy?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq4m54v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559808749.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq499va\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559772032.0, \"send_replies\": true, \"parent_id\": \"t1_eq3fu1x\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have a folder with all my notes on books or articles.\\nEach note has its own org file.\\nThen I have a figs folder and subfolders for each of my notes. I don't want to have one fog folder for all my notes as I have hundreds of figures.\\n\\nSo in the end, I have to manually put [[figs/verylongfilename/figurename]] which is quite boring. Maybe I could use a snippet for that that automatically write the name of the figure folder (it's based on the note filename) but I don't really like that...\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq499va\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a folder with all my notes on books or articles.\\nEach note has its own org file.\\nThen I have a figs folder and subfolders for each of my notes. I don\\u0026#39;t want to have one fog folder for all my notes as I have hundreds of figures.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo in the end, I have to manually put [[figs/verylongfilename/figurename]] which is quite boring. Maybe I could use a snippet for that that automatically write the name of the figure folder (it\\u0026#39;s based on the note filename) but I don\\u0026#39;t really like that...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq499va/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559800832.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq3fu1x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559755118.0, \"send_replies\": true, \"parent_id\": \"t1_epztbtv\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E The thing is that I have complicated folder names for my figures.\\n\\nThat's a key point that you didn't mention in your question. Without knowing that, it seems like you're trying to avoid typing `figs/`, which would be kind of silly. :)\\n\\nSo why don't you put all the figures in `figs/`?\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq3fu1x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe thing is that I have complicated folder names for my figures.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s a key point that you didn\\u0026#39;t mention in your question. Without knowing that, it seems like you\\u0026#39;re trying to avoid typing \\u003Ccode\\u003Efigs/\\u003C/code\\u003E, which would be kind of silly. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo why don\\u0026#39;t you put all the figures in \\u003Ccode\\u003Efigs/\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq3fu1x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559783918.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq2i8vy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dr_Schmoctor\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559737707.0, \"send_replies\": true, \"parent_id\": \"t1_eq2g6te\", \"score\": 1, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"What I'd like to see most is notifications being able to notify before the deadline. I make due by setting 'scheduled' some time before the 'deadline' so it notifies me beforehand, but it'd be nice to have an easier setting for it.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq2i8vy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat I\\u0026#39;d like to see most is notifications being able to notify before the deadline. I make due by setting \\u0026#39;scheduled\\u0026#39; some time before the \\u0026#39;deadline\\u0026#39; so it notifies me beforehand, but it\\u0026#39;d be nice to have an easier setting for it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq2i8vy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559766507.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq2g6te\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"enilkcals\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559736393.0, \"send_replies\": true, \"parent_id\": \"t1_eq29p8x\", \"score\": 1, \"author_fullname\": \"t2_91o9h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Nice, I'd somehow missed that will give it a whirl, thank you.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq2g6te\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice, I\\u0026#39;d somehow missed that will give it a whirl, thank you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq2g6te/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559765193.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq29p8x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dr_Schmoctor\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559731937.0, \"send_replies\": true, \"parent_id\": \"t1_eq1kjlt\", \"score\": 3, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003Ethe only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application \\n\\nI have the Auto-sync (experimental) option enabled and it syncs as you go.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq29p8x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ethe only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI have the Auto-sync (experimental) option enabled and it syncs as you go.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq29p8x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559760737.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwcmiw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq28lvx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gabrielelana\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559731176.0, \"send_replies\": true, \"parent_id\": \"t3_bwcmiw\", \"score\": 1, \"author_fullname\": \"t2_flffy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I was really disappointed by this unilateral and arbitrary change without a way to opt-out :-(\\n\\nAnyway I solved the issue with [this piece of code](https://github.com/gabrielelana/dotfiles/blob/master/emacs.d/local-packages/org-functions.el) in particular the function `cc/org-mode-buffer-force-uppercase-keywords`\", \"link_title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"author_flair_css_class\": null, \"name\": \"t1_eq28lvx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was really disappointed by this unilateral and arbitrary change without a way to opt-out :-(\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway I solved the issue with \\u003Ca href=\\\"https://github.com/gabrielelana/dotfiles/blob/master/emacs.d/local-packages/org-functions.el\\\"\\u003Ethis piece of code\\u003C/a\\u003E in particular the function \\u003Ccode\\u003Ecc/org-mode-buffer-force-uppercase-keywords\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/eq28lvx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"report_reasons\": null, \"link_author\": \"BOOF_GOBLIN_69\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"created\": 1559759976.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq1kjlt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"enilkcals\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559711909.0, \"send_replies\": true, \"parent_id\": \"t1_eq0o23a\", \"score\": 3, \"author_fullname\": \"t2_91o9h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Came to suggest exactly the same thing which is what I too do. Its a nice smooth experience, phone uses Syncthing to synchronise the files between internal SD and computer when connected to WiFi at home, the only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq1kjlt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECame to suggest exactly the same thing which is what I too do. Its a nice smooth experience, phone uses Syncthing to synchronise the files between internal SD and computer when connected to WiFi at home, the only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq1kjlt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559740709.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0qw8h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559691873.0, \"send_replies\": true, \"parent_id\": \"t1_eq0o23a\", \"score\": 2, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have heard of Orgzly and I would like to give it a try. It looks like it is a win in the ease of use category! Using full-blown emacs on a little phone screen (taken up primarily by the keyboard) is not easy! However, what this lacks in ease of use, it makes up in completeness; I have access to everything I can do with org mode on my laptop -- on my phone. It has all my capture templates, custom bindings, todo keywords. Everything!\\n\\nI'm not sure I would be able to do that with Orgzly, but I have not tried yet. What do you think?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0qw8h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have heard of Orgzly and I would like to give it a try. It looks like it is a win in the ease of use category! Using full-blown emacs on a little phone screen (taken up primarily by the keyboard) is not easy! However, what this lacks in ease of use, it makes up in completeness; I have access to everything I can do with org mode on my laptop -- on my phone. It has all my capture templates, custom bindings, todo keywords. Everything!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure I would be able to do that with Orgzly, but I have not tried yet. What do you think?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0qw8h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559720673.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0o23a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"Dr_Schmoctor\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559689650.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 8, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"[Orgzly](https://play.google.com/store/apps/details?id=com.orgzly\\u0026hl=en) is quite nice. \\n\\nI have it synced with my computer's .org files with Syncthing.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0o23a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://play.google.com/store/apps/details?id=com.orgzly\\u0026amp;hl=en\\\"\\u003EOrgzly\\u003C/a\\u003E is quite nice. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have it synced with my computer\\u0026#39;s .org files with Syncthing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0o23a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559718450.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0n3x7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559688909.0, \"send_replies\": true, \"parent_id\": \"t1_eq0l8hv\", \"score\": 2, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Will do!\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0n3x7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWill do!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0n3x7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559717709.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0moy7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559688592.0, \"send_replies\": true, \"parent_id\": \"t1_eq0dh59\", \"score\": 10, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I used Termux [https://termux.com/](https://termux.com/) to run linux on the pixel 2. I ran `apt install emacs` and `apt install git`. I installed \\\"Hacker Keyboard\\\" to make it easier to write commands within termux, and to use emacs.\\n\\nI cloned my dotfiles `git clone https://github.com/nackjicholson/dotfiles`.\\n\\nI used [https://syncthing.net/](https://syncthing.net/) to sync my org files at `~/Sync/org` between both my laptop and pixel 2.\\n\\nI had to enable \\\"storage\\\" in Termux to let it access my androids files.\\n\\nThen I had to do some symlinking.\\n\\n`ln -s \\\"$HOME/storage/shared/Sync\\\" \\\"$HOME/Sync\\\"`\\n\\n`ln -s \\\"$HOME/dotfiles/mac/emacs.d\\\" \\\"$HOME/.emacs.d\\\"`\\n\\n\\u0026#x200B;\\n\\nDoes this all work? Yes.\\n\\nDoes this all work really well? Not really.\\n\\nDid I do a lot of this on the bus to work today? Yup.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0moy7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used Termux \\u003Ca href=\\\"https://termux.com/\\\"\\u003Ehttps://termux.com/\\u003C/a\\u003E to run linux on the pixel 2. I ran \\u003Ccode\\u003Eapt install emacs\\u003C/code\\u003E and \\u003Ccode\\u003Eapt install git\\u003C/code\\u003E. I installed \\u0026quot;Hacker Keyboard\\u0026quot; to make it easier to write commands within termux, and to use emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cloned my dotfiles \\u003Ccode\\u003Egit clone https://github.com/nackjicholson/dotfiles\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used \\u003Ca href=\\\"https://syncthing.net/\\\"\\u003Ehttps://syncthing.net/\\u003C/a\\u003E to sync my org files at \\u003Ccode\\u003E~/Sync/org\\u003C/code\\u003E between both my laptop and pixel 2.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI had to enable \\u0026quot;storage\\u0026quot; in Termux to let it access my androids files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I had to do some symlinking.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eln -s \\u0026quot;$HOME/storage/shared/Sync\\u0026quot; \\u0026quot;$HOME/Sync\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eln -s \\u0026quot;$HOME/dotfiles/mac/emacs.d\\u0026quot; \\u0026quot;$HOME/.emacs.d\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes this all work? Yes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes this all work really well? Not really.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDid I do a lot of this on the bus to work today? Yup.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0moy7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559717392.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 10}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0mczn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"_martini97\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559688343.0, \"send_replies\": true, \"parent_id\": \"t1_epyu7qo\", \"score\": 1, \"author_fullname\": \"t2_9eav0az\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hey u/jkitchin I'm having some issues with the `contacts-update-cache` when trying to use `ivy-contacts`, it is throwing this error:\\n\\n Updating contacts cache for \\u003Cmy contacts file\\u003E\\n let*: Wrong type argument: consp, nil\\n\\nI created [this branch](https://github.com/martini97/.emacs.d/tree/scimax-contacts) that reproduces the issue with a minimal config.\\n\\nAny pointers?\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_eq0mczn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey \\u003Ca href=\\\"/u/jkitchin\\\"\\u003Eu/jkitchin\\u003C/a\\u003E I\\u0026#39;m having some issues with the \\u003Ccode\\u003Econtacts-update-cache\\u003C/code\\u003E when trying to use \\u003Ccode\\u003Eivy-contacts\\u003C/code\\u003E, it is throwing this error:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EUpdating contacts cache for \\u0026lt;my contacts file\\u0026gt;\\nlet*: Wrong type argument: consp, nil\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI created \\u003Ca href=\\\"https://github.com/martini97/.emacs.d/tree/scimax-contacts\\\"\\u003Ethis branch\\u003C/a\\u003E that reproduces the issue with a minimal config.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny pointers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/eq0mczn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559717143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0l8hv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hmlwilliams\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559687491.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 3, \"author_fullname\": \"t2_s1eux6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Couldn't help but notice your GTD Todos included a journal, make sure to give [org-journal](https://github.com/bastibe/org-journal) a look!\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0l8hv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECouldn\\u0026#39;t help but notice your GTD Todos included a journal, make sure to give \\u003Ca href=\\\"https://github.com/bastibe/org-journal\\\"\\u003Eorg-journal\\u003C/a\\u003E a look!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0l8hv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559716291.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0ivh2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ford_beeblebrox\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559685763.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 2, \"author_fullname\": \"t2_9hd4y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Termux rules ! \\n\\nEmacs , org , python , ssh \\u0026 mosh - fast to set things up, all only an apt-get away.\\n\\nCompiling apk's for the platform on the platform.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0ivh2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETermux rules ! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmacs , org , python , ssh \\u0026amp; mosh - fast to set things up, all only an apt-get away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECompiling apk\\u0026#39;s for the platform on the platform.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0ivh2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559714563.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0hbsy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Salpal673\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559684698.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 6, \"author_fullname\": \"t2_2drmw0wd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Using **Termux**, a Linux distribution for Android.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0hbsy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsing \\u003Cstrong\\u003ETermux\\u003C/strong\\u003E, a Linux distribution for Android.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0hbsy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559713498.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0gs1z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RoccoTech00\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559684420.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 2, \"author_fullname\": \"t2_88l5xwz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Android? How?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0gs1z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAndroid? How?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0gs1z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559713220.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0dh59\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"loskutak-the-ptak\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559682620.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 6, \"author_fullname\": \"t2_ke7apcf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"how?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0dh59\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehow?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0dh59/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559711420.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epztbtv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559672254.0, \"send_replies\": true, \"parent_id\": \"t1_epzrglx\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I know that, the point is that I don't want to have to type the folder each time.\\nThe thing is that I have complicated folder names for my figures.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_epztbtv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know that, the point is that I don\\u0026#39;t want to have to type the folder each time.\\nThe thing is that I have complicated folder names for my figures.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/epztbtv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559701054.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epzrglx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559671221.0, \"send_replies\": true, \"parent_id\": \"t3_bwmraz\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Use `[[figs/figurename.png]]`.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_epzrglx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUse \\u003Ccode\\u003E[[figs/figurename.png]]\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/epzrglx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559700021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epywsc9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"_martini97\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559653023.0, \"send_replies\": true, \"parent_id\": \"t1_epyu7qo\", \"score\": 1, \"author_fullname\": \"t2_9eav0az\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, I'm still getting to know elisp so I have a hard time doing things from scratch, I will test it tonight and let you know if it worked\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epywsc9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I\\u0026#39;m still getting to know elisp so I have a hard time doing things from scratch, I will test it tonight and let you know if it worked\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epywsc9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559681823.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw916a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyuk3k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559651343.0, \"send_replies\": true, \"parent_id\": \"t3_bw916a\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I don't think you can do this with C+u method. I think you have to manually edit the link after it is inserted.\\n\\nYou probably can do this though where you want the link:\\n\\nC-c C-l then, type cite: and select the kind of cite you want. You can then select which key to use. And finally you type the page numbers into the description.\", \"link_title\": \"How do you include page number in page number in org-ref with helm?\", \"author_flair_css_class\": null, \"name\": \"t1_epyuk3k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t think you can do this with C+u method. I think you have to manually edit the link after it is inserted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou probably can do this though where you want the link:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EC-c C-l then, type cite: and select the kind of cite you want. You can then select which key to use. And finally you type the page numbers into the description.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/epyuk3k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"report_reasons\": null, \"link_author\": \"kandidate\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"created\": 1559680143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyu7qo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559651075.0, \"send_replies\": true, \"parent_id\": \"t3_bwk33h\", \"score\": 2, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I do something like this in https://github.com/jkitchin/scimax/blob/master/contacts.el#L320 with ivy. There is also a helm version (https://github.com/jkitchin/scimax/blob/master/contacts.el#L518) that I don't use anymore (there is a note that it is slow).\\n\\nThis is roughly built on the format of org-contacts and should be compatible with it.\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epyu7qo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do something like this in \\u003Ca href=\\\"https://github.com/jkitchin/scimax/blob/master/contacts.el#L320\\\"\\u003Ehttps://github.com/jkitchin/scimax/blob/master/contacts.el#L320\\u003C/a\\u003E with ivy. There is also a helm version (\\u003Ca href=\\\"https://github.com/jkitchin/scimax/blob/master/contacts.el#L518\\\"\\u003Ehttps://github.com/jkitchin/scimax/blob/master/contacts.el#L518\\u003C/a\\u003E) that I don\\u0026#39;t use anymore (there is a note that it is slow).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is roughly built on the format of org-contacts and should be compatible with it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epyu7qo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559679875.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epylnd4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559642162.0, \"send_replies\": true, \"parent_id\": \"t3_bwk33h\", \"score\": 2, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"While I can't elispit myself, I'm sure you can use helm or ivy to open a list of contacts and -upon selection- insert directly a link to it...\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epylnd4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile I can\\u0026#39;t elispit myself, I\\u0026#39;m sure you can use helm or ivy to open a list of contacts and -upon selection- insert directly a link to it...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epylnd4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559670962.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwcmiw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epx8v9s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"marcowahl\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559594797.0, \"send_replies\": true, \"parent_id\": \"t3_bwcmiw\", \"score\": 1, \"author_fullname\": \"t2_it55tk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"As far as I can see there is no configuration switch for that. \\n\\nYou could ask for the switch on the Org mailing list.\", \"link_title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"author_flair_css_class\": null, \"name\": \"t1_epx8v9s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs far as I can see there is no configuration switch for that. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou could ask for the switch on the Org mailing list.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/epx8v9s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"report_reasons\": null, \"link_author\": \"BOOF_GOBLIN_69\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"created\": 1559623597.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epwq376\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559581984.0, \"send_replies\": true, \"parent_id\": \"t1_epvbmh0\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"`awhen` is from the `anaphora` package. Just search the package list for \\\"anaphoric\\\".\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epwq376\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Eawhen\\u003C/code\\u003E is from the \\u003Ccode\\u003Eanaphora\\u003C/code\\u003E package. Just search the package list for \\u0026quot;anaphoric\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epwq376/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559610784.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9eiq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw3g8q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cipharius\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559564392.0, \"send_replies\": true, \"parent_id\": \"t1_epw366x\", \"score\": 2, \"author_fullname\": \"t2_2hldsj4s\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I recommend checking out the Org mode manual with `info` command - it's not like I remember these things by heart myself, haha. \\n\\nUseful for both a quick reference and just reading to learn new ways of using Org mode.\", \"link_title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"author_flair_css_class\": null, \"name\": \"t1_epw3g8q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recommend checking out the Org mode manual with \\u003Ccode\\u003Einfo\\u003C/code\\u003E command - it\\u0026#39;s not like I remember these things by heart myself, haha. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUseful for both a quick reference and just reading to learn new ways of using Org mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/epw3g8q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"created\": 1559593192.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9eiq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw366x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gausby\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559564101.0, \"send_replies\": true, \"parent_id\": \"t1_epw2zfg\", \"score\": 1, \"author_fullname\": \"t2_5n9uk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you! Seems to work perfectly. Gotta learn that format\\u2014it is vary handy, but kinda obscure :)\", \"link_title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"author_flair_css_class\": null, \"name\": \"t1_epw366x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you! Seems to work perfectly. Gotta learn that format\\u2014it is vary handy, but kinda obscure :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/epw366x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"created\": 1559592901.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9eiq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw2zfg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cipharius\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559563901.0, \"send_replies\": true, \"parent_id\": \"t3_bw9eiq\", \"score\": 3, \"author_fullname\": \"t2_2hldsj4s\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You could use more specific formula reference. From a quick experiment, this seems to be an alright solution: `#+TBLFM: @\\u003C\\u003C$2..@\\u003E\\u003E$2=@+1$1-$1;U`\", \"link_title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"author_flair_css_class\": null, \"name\": \"t1_epw2zfg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou could use more specific formula reference. From a quick experiment, this seems to be an alright solution: \\u003Ccode\\u003E#+TBLFM: @\\u0026lt;\\u0026lt;$2..@\\u0026gt;\\u0026gt;$2=@+1$1-$1;U\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/epw2zfg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"created\": 1559592701.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559562994.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvz12r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw1z9b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"anotherRedditIdiot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559562801.0, \"send_replies\": true, \"parent_id\": \"t3_bvz12r\", \"score\": 2, \"author_fullname\": \"t2_138ymc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"How do you use this metadata once you have it? Org has hierarchical tags: https://orgmode.org/manual/Tag-hierarchy.html\\nand effort estimates (time based, not energy based): https://orgmode.org/manual/Effort-estimates.html\\n\\nAt first glance, I would implement the resources as a hierarchicy of tags. I'd also ditch the prefix notation and just spell out the full properties, e.g.:\\n\\n :Energy: (1 4)\", \"link_title\": \"Converting org-tags into properties (recursively)\", \"author_flair_css_class\": null, \"name\": \"t1_epw1z9b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow do you use this metadata once you have it? Org has hierarchical tags: \\u003Ca href=\\\"https://orgmode.org/manual/Tag-hierarchy.html\\\"\\u003Ehttps://orgmode.org/manual/Tag-hierarchy.html\\u003C/a\\u003E\\nand effort estimates (time based, not energy based): \\u003Ca href=\\\"https://orgmode.org/manual/Effort-estimates.html\\\"\\u003Ehttps://orgmode.org/manual/Effort-estimates.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt first glance, I would implement the resources as a hierarchicy of tags. I\\u0026#39;d also ditch the prefix notation and just spell out the full properties, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E:Energy: (1 4)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/epw1z9b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"created\": 1559591601.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epvbmh0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fisxoj\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559529328.0, \"send_replies\": true, \"parent_id\": \"t1_epv27o2\", \"score\": 2, \"author_fullname\": \"t2_7r7zc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm just passing through, but if awhen is the same one I'm used to, it's 'anaphoric' when and will bind the value of its condition to the variable 'it' automatically. Which, I hope, answers both your questions.\\n\\nThat said, I don't know what emacs package provides it.\\n\\nIt's equivalent to\\n\\n(let ((it (property \\\"composer\\\"))\\n (when it\\n (string-prefix \\\"C\\\" it)))\\n\\nIn this case.\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epvbmh0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m just passing through, but if awhen is the same one I\\u0026#39;m used to, it\\u0026#39;s \\u0026#39;anaphoric\\u0026#39; when and will bind the value of its condition to the variable \\u0026#39;it\\u0026#39; automatically. Which, I hope, answers both your questions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat said, I don\\u0026#39;t know what emacs package provides it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s equivalent to\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(let ((it (property \\u0026quot;composer\\u0026quot;))\\n (when it\\n (string-prefix \\u0026quot;C\\u0026quot; it)))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn this case.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epvbmh0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559558128.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epv27o2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eeg_bert\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559522318.0, \"send_replies\": true, \"parent_id\": \"t1_epuyu0b\", \"score\": 1, \"author_fullname\": \"t2_uhm4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Do you `when` instead of `awhen`? Also: I get `(void-variable it)` errors when evaluating this.\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epv27o2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDo you \\u003Ccode\\u003Ewhen\\u003C/code\\u003E instead of \\u003Ccode\\u003Eawhen\\u003C/code\\u003E? Also: I get \\u003Ccode\\u003E(void-variable it)\\u003C/code\\u003E errors when evaluating this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epv27o2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559551118.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559520154.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epuyu0b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559519729.0, \"send_replies\": true, \"parent_id\": \"t1_eputaup\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You are very mistaken. ;) For example, the readme shows this example:\\n\\n (org-ql \\\"~/org/music.org\\\"\\n (and (property \\\"genre\\\" \\\"classical\\\")\\n (property \\\"composer\\\" \\\"Chopin\\\")\\n (not (property \\\"key\\\"))))\\n\\nYou can also use arbitrary lisp code, like:\\n\\n (org-ql \\\"/tmp/music.org\\\"\\n (awhen (property \\\"composer\\\")\\n (string-prefix-p \\\"C\\\" it)))\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epuyu0b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou are very mistaken. ;) For example, the readme shows this example:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(org-ql \\u0026quot;~/org/music.org\\u0026quot;\\n (and (property \\u0026quot;genre\\u0026quot; \\u0026quot;classical\\u0026quot;)\\n (property \\u0026quot;composer\\u0026quot; \\u0026quot;Chopin\\u0026quot;)\\n (not (property \\u0026quot;key\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EYou can also use arbitrary lisp code, like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(org-ql \\u0026quot;/tmp/music.org\\u0026quot;\\n (awhen (property \\u0026quot;composer\\u0026quot;)\\n (string-prefix-p \\u0026quot;C\\u0026quot; it)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epuyu0b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559548529.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eputaup\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eeg_bert\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559515754.0, \"send_replies\": true, \"parent_id\": \"t1_epurujf\", \"score\": 1, \"author_fullname\": \"t2_uhm4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I checked out `org-ql`, and it doesn't look like it offers this AFAIK (instead it's just wrapper around regexp searching, unless I'm mistaken).\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_eputaup\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI checked out \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E, and it doesn\\u0026#39;t look like it offers this AFAIK (instead it\\u0026#39;s just wrapper around regexp searching, unless I\\u0026#39;m mistaken).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/eputaup/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559544554.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epurujf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559514832.0, \"send_replies\": true, \"parent_id\": \"t3_bw317n\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"See `org-map-entries` and `org-ql`.\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epurujf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESee \\u003Ccode\\u003Eorg-map-entries\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epurujf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559543632.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559484864.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_aeaq9d\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ept50p2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"frumious\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1559481805.0, \"send_replies\": true, \"parent_id\": \"t1_emwyyjr\", \"score\": 1, \"author_fullname\": \"t2_32juj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"The recent post about Linkz.org got me to revisit this problem and figured I might as well info dump here. \\n\\nI happen to notice that trying to capture on github.com shows an error in Firefox's Browser Console which doesn't show on pages that can be successfully captured.\\n\\n Content Security Policy: The page\\u2019s settings blocked the loading of a resource at inline (\\u201cscript-src\\u201d).\\n\\nSearches show that disabling `security.csp.enable` in `about:config` will \\\"fix\\\" the problem but is very insecure.\\n\\nKnowing what to search on, I see [Sacha](https://sachachua.com/blog/2015/11/capturing-links-quickly-with-emacsclient-org-protocol-and-chrome-shortcut-manager-on-microsoft-windows-8/) pointed out this problem with GitHub many years ago.\\n\\nOther results hinted at the FF add-ons I was using. Disabling them led to no change in results.\\n\\nI have the `org-protocol` send to a script so I can log the action. When a capture fails on `github.com` there is nothing the log. So, it's not even `org-protocol` that is the problem. This makes me suspect \\\"bookmarklets\\\" and lo, [I find this](https://geordgez.github.io/jots/2017/12/31/xss-csp-bookmarklet).\\n\\nIndeed, making a bookmarklet with just:\\n\\n javascript:alert('hello')\\n\\nfails on `github.com` and succeeds elsewhere.\\n\\nAt this point, I'm way over my head in web tech I don't understand but at least there is a new direction to pursue.\\n\\nEdit: more searching and it seems there's a world of hurt over \\\"CSP\\\".\\n\\nThis [bug report](https://bugzilla.mozilla.org/show_bug.cgi?id=866522) has much of the story including mention of [Bookmarklets context menu](https://addons.mozilla.org/en-US/firefox/addon/bookmarklets-context-menu/) add-on. I've tested with `security.csp.enabled` set to `true`. The \\\"hello\\\" test is okay but instead of running the capture bookmarklets properly it loads some \\\"page\\\"\\n\\n blob:https://github.com/014373a1-e732-4c7a-b9d4-3d17c9d00393\\n\\nMy conclusion: I'll disable CSP. This \\\"feature\\\" seems more like a stupid patch for web sites that can't generate HTML free of XSS and gives more control to the server at the expense of the client/user.\", \"link_title\": \"Anyone using Org mode as snippet manager\", \"author_flair_css_class\": null, \"name\": \"t1_ept50p2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe recent post about Linkz.org got me to revisit this problem and figured I might as well info dump here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI happen to notice that trying to capture on github.com shows an error in Firefox\\u0026#39;s Browser Console which doesn\\u0026#39;t show on pages that can be successfully captured.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EContent Security Policy: The page\\u2019s settings blocked the loading of a resource at inline (\\u201cscript-src\\u201d).\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESearches show that disabling \\u003Ccode\\u003Esecurity.csp.enable\\u003C/code\\u003E in \\u003Ccode\\u003Eabout:config\\u003C/code\\u003E will \\u0026quot;fix\\u0026quot; the problem but is very insecure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKnowing what to search on, I see \\u003Ca href=\\\"https://sachachua.com/blog/2015/11/capturing-links-quickly-with-emacsclient-org-protocol-and-chrome-shortcut-manager-on-microsoft-windows-8/\\\"\\u003ESacha\\u003C/a\\u003E pointed out this problem with GitHub many years ago.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOther results hinted at the FF add-ons I was using. Disabling them led to no change in results.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have the \\u003Ccode\\u003Eorg-protocol\\u003C/code\\u003E send to a script so I can log the action. When a capture fails on \\u003Ccode\\u003Egithub.com\\u003C/code\\u003E there is nothing the log. So, it\\u0026#39;s not even \\u003Ccode\\u003Eorg-protocol\\u003C/code\\u003E that is the problem. This makes me suspect \\u0026quot;bookmarklets\\u0026quot; and lo, \\u003Ca href=\\\"https://geordgez.github.io/jots/2017/12/31/xss-csp-bookmarklet\\\"\\u003EI find this\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIndeed, making a bookmarklet with just:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ejavascript:alert(\\u0026#39;hello\\u0026#39;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Efails on \\u003Ccode\\u003Egithub.com\\u003C/code\\u003E and succeeds elsewhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt this point, I\\u0026#39;m way over my head in web tech I don\\u0026#39;t understand but at least there is a new direction to pursue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: more searching and it seems there\\u0026#39;s a world of hurt over \\u0026quot;CSP\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis \\u003Ca href=\\\"https://bugzilla.mozilla.org/show_bug.cgi?id=866522\\\"\\u003Ebug report\\u003C/a\\u003E has much of the story including mention of \\u003Ca href=\\\"https://addons.mozilla.org/en-US/firefox/addon/bookmarklets-context-menu/\\\"\\u003EBookmarklets context menu\\u003C/a\\u003E add-on. I\\u0026#39;ve tested with \\u003Ccode\\u003Esecurity.csp.enabled\\u003C/code\\u003E set to \\u003Ccode\\u003Etrue\\u003C/code\\u003E. The \\u0026quot;hello\\u0026quot; test is okay but instead of running the capture bookmarklets properly it loads some \\u0026quot;page\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eblob:https://github.com/014373a1-e732-4c7a-b9d4-3d17c9d00393\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EMy conclusion: I\\u0026#39;ll disable CSP. This \\u0026quot;feature\\u0026quot; seems more like a stupid patch for web sites that can\\u0026#39;t generate HTML free of XSS and gives more control to the server at the expense of the client/user.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/aeaq9d/anyone_using_org_mode_as_snippet_manager/ept50p2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/aeaq9d/anyone_using_org_mode_as_snippet_manager/\", \"report_reasons\": null, \"link_author\": \"to1ne\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/aeaq9d/anyone_using_org_mode_as_snippet_manager/\", \"created\": 1559510605.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvqyqw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eprv8ip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559431510.0, \"send_replies\": true, \"parent_id\": \"t3_bvqyqw\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"There exists no code to do that. You will have to write it.\\n\\nIt will probably be easier if you use syntax like `E1 E3`, which can be parsed by splitting the value string on a space, or `(E1 E3)`, which can be parsed as a sexp.\", \"link_title\": \"Matching org tasks against an interval of values\", \"author_flair_css_class\": null, \"name\": \"t1_eprv8ip\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere exists no code to do that. You will have to write it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt will probably be easier if you use syntax like \\u003Ccode\\u003EE1 E3\\u003C/code\\u003E, which can be parsed by splitting the value string on a space, or \\u003Ccode\\u003E(E1 E3)\\u003C/code\\u003E, which can be parsed as a sexp.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/eprv8ip/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"created\": 1559460310.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559418889.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epr5ebh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559418621.0, \"send_replies\": true, \"parent_id\": \"t1_epneizy\", \"score\": 3, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'll take the Hersey approach ;)\\n\\nOrg-mode is customizeable because of Emacs and Lisp. You can take any part of it and play with it, and then you can go behind the scenes and build another part completely, if you want to. You can add your own packages into Emacs that integrate into Org, or don't. I can't imagine Org-mode without Emacs. \\n\\nFor me personally, Org-mode is a safe place. It's away from all the other bells and whistles of all the \\\"awesome GUI apps\\\" that my co-worker use. My mangers use [Evernote](https://evernote.com/). Our office has Office 365 that comes with its own tasks and outlook. Windows has numerous to-do apps, and if that not enough, we have our own spreadsheet-project placed in [Smartsheets](https://www.smartsheet.com/) (also now from Microsoft). We have Emails, we do our conference calls in MS Teams, and we work with customers using Zoom. Our ticketing system is yet on another app. \\n\\nIt's a freaking mess, that's what it is. A nightmare. A cacophony of information overload.\\n\\nI used Evernote for about three full years. I've used Google Keep, Todoist, Trello, Wunderlist, and these just the few I can remember. They all failed because they were limited, closed, costly, sell your data to whoever pays them (or threatens them) or who buys them, if they don't get eaten by a bigger company or disappear because they couldn't get bought by one. While this is not the conversation you originally started, is it is very much of a reason for me (and others) to stick to Org-mode and Emacs, which have been pretty much the same all these years. I'm not kidding when I say it's a safe place from all that nonsense.\\n\\nNow take all that I said, hopefully with patience and a grain of humor, and look at it from this way. At the end of the day, I want *my* trusty system that I own. A place that I know how it works, is modified to how I want to work with my data. Sure, my team doesn't speak \\\"org-mode,\\\" and to be honest, they think I'm nuts. My one manager looked at my Linux VM with disapproval, but he knows I'm effective and organized (guess why?) so he lets it slide, for now. I go through the pains of translating my Org universe to Smarthseets, Outlook email, support tickets, because it's worth it. I finally have *one place*, not a plethora of online accounts, where all my information is stored, personal and professional side by side, neat and organized, and I take whatever bits I need and fit it into their crazy buckets. \\n\\nMy tools are a VM with SUSE OS at work (stable, comes with Emacs out of the box, supported well by vmware), Syncthing (to sync everything without worrying about buying more space or [Dropbox sharing my personal journal files for research](https://hbr.org/2018/07/a-study-of-thousands-of-dropbox-projects-reveals-how-successful-teams-collaborate#comment-section)), and Orgzly (my workflow would be impossible without it) on the go. There are challenges, sure. Many times I just want a good picture and I can't have it, or I just need to send a quick checklist to my boss and it comes out with weird square brackets etc \\u0026#x2013; but I make it work. Frankly, I wouldn't be able to do what I do today without Org-mode. The impact on my life has been huge\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epr5ebh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ll take the Hersey approach ;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg-mode is customizeable because of Emacs and Lisp. You can take any part of it and play with it, and then you can go behind the scenes and build another part completely, if you want to. You can add your own packages into Emacs that integrate into Org, or don\\u0026#39;t. I can\\u0026#39;t imagine Org-mode without Emacs. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor me personally, Org-mode is a safe place. It\\u0026#39;s away from all the other bells and whistles of all the \\u0026quot;awesome GUI apps\\u0026quot; that my co-worker use. My mangers use \\u003Ca href=\\\"https://evernote.com/\\\"\\u003EEvernote\\u003C/a\\u003E. Our office has Office 365 that comes with its own tasks and outlook. Windows has numerous to-do apps, and if that not enough, we have our own spreadsheet-project placed in \\u003Ca href=\\\"https://www.smartsheet.com/\\\"\\u003ESmartsheets\\u003C/a\\u003E (also now from Microsoft). We have Emails, we do our conference calls in MS Teams, and we work with customers using Zoom. Our ticketing system is yet on another app. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a freaking mess, that\\u0026#39;s what it is. A nightmare. A cacophony of information overload.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used Evernote for about three full years. I\\u0026#39;ve used Google Keep, Todoist, Trello, Wunderlist, and these just the few I can remember. They all failed because they were limited, closed, costly, sell your data to whoever pays them (or threatens them) or who buys them, if they don\\u0026#39;t get eaten by a bigger company or disappear because they couldn\\u0026#39;t get bought by one. While this is not the conversation you originally started, is it is very much of a reason for me (and others) to stick to Org-mode and Emacs, which have been pretty much the same all these years. I\\u0026#39;m not kidding when I say it\\u0026#39;s a safe place from all that nonsense.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow take all that I said, hopefully with patience and a grain of humor, and look at it from this way. At the end of the day, I want \\u003Cem\\u003Emy\\u003C/em\\u003E trusty system that I own. A place that I know how it works, is modified to how I want to work with my data. Sure, my team doesn\\u0026#39;t speak \\u0026quot;org-mode,\\u0026quot; and to be honest, they think I\\u0026#39;m nuts. My one manager looked at my Linux VM with disapproval, but he knows I\\u0026#39;m effective and organized (guess why?) so he lets it slide, for now. I go through the pains of translating my Org universe to Smarthseets, Outlook email, support tickets, because it\\u0026#39;s worth it. I finally have \\u003Cem\\u003Eone place\\u003C/em\\u003E, not a plethora of online accounts, where all my information is stored, personal and professional side by side, neat and organized, and I take whatever bits I need and fit it into their crazy buckets. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy tools are a VM with SUSE OS at work (stable, comes with Emacs out of the box, supported well by vmware), Syncthing (to sync everything without worrying about buying more space or \\u003Ca href=\\\"https://hbr.org/2018/07/a-study-of-thousands-of-dropbox-projects-reveals-how-successful-teams-collaborate#comment-section\\\"\\u003EDropbox sharing my personal journal files for research\\u003C/a\\u003E), and Orgzly (my workflow would be impossible without it) on the go. There are challenges, sure. Many times I just want a good picture and I can\\u0026#39;t have it, or I just need to send a quick checklist to my boss and it comes out with weird square brackets etc \\u0026#x2013; but I make it work. Frankly, I wouldn\\u0026#39;t be able to do what I do today without Org-mode. The impact on my life has been huge\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/epr5ebh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559447421.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bd4ka9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epqpszq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"the_ocean\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559410198.0, \"send_replies\": true, \"parent_id\": \"t1_epqludy\", \"score\": 1, \"author_fullname\": \"t2_3ezlt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"That\\u2019s a good idea that hadn\\u2019t occurred to me - thanks!\", \"link_title\": \"Hierarchical Agendas?\", \"author_flair_css_class\": null, \"name\": \"t1_epqpszq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u2019s a good idea that hadn\\u2019t occurred to me - thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/epqpszq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"report_reasons\": null, \"link_author\": \"SmoothInternet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"created\": 1559438998.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epqot95\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559409722.0, \"send_replies\": true, \"parent_id\": \"t3_btzy6m\", \"score\": 1, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"what's the point?\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_epqot95\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewhat\\u0026#39;s the point?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/epqot95/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559438522.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bd4ka9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epqludy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559408133.0, \"send_replies\": true, \"parent_id\": \"t1_ekvtlyj\", \"score\": 1, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I find the 'CATEGORY' property more helpful for this, personally, as it displays to the left hand side of the agenda like it's own special agenda tag.\", \"link_title\": \"Hierarchical Agendas?\", \"author_flair_css_class\": null, \"name\": \"t1_epqludy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find the \\u0026#39;CATEGORY\\u0026#39; property more helpful for this, personally, as it displays to the left hand side of the agenda like it\\u0026#39;s own special agenda tag.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/epqludy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"report_reasons\": null, \"link_author\": \"SmoothInternet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"created\": 1559436933.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559407988.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bd4ka9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epql3ag\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559407719.0, \"send_replies\": true, \"parent_id\": \"t3_bd4ka9\", \"score\": 2, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"If I'm understanding your question correctly, it sounds like you just want TODO keywords and filters. And maybe org-edna. For example, for the 'sub-TODOs that need attention', perhaps a \\\"NEXT\\\" keyword would be fitting, so you could pull all \\\"NEXT\\\" headers into a view (I do this). And to omit 'blocked' TODOs, you can play with the variable org-agenda-todo-list-sublevels in conjunction with the above (I also filter redundant TODOs like this from my agenda views, including global search).\", \"link_title\": \"Hierarchical Agendas?\", \"author_flair_css_class\": null, \"name\": \"t1_epql3ag\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I\\u0026#39;m understanding your question correctly, it sounds like you just want TODO keywords and filters. And maybe org-edna. For example, for the \\u0026#39;sub-TODOs that need attention\\u0026#39;, perhaps a \\u0026quot;NEXT\\u0026quot; keyword would be fitting, so you could pull all \\u0026quot;NEXT\\u0026quot; headers into a view (I do this). And to omit \\u0026#39;blocked\\u0026#39; TODOs, you can play with the variable org-agenda-todo-list-sublevels in conjunction with the above (I also filter redundant TODOs like this from my agenda views, including global search).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/epql3ag/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"report_reasons\": null, \"link_author\": \"SmoothInternet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"created\": 1559436519.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eposeia\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"doulos05\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559352091.0, \"send_replies\": true, \"parent_id\": \"t1_epo4x0j\", \"score\": 1, \"author_fullname\": \"t2_jqpn4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Well, one major barrier is \\\"Why would I look for my todo list manager in the Text Editors list?\\\"\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eposeia\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, one major barrier is \\u0026quot;Why would I look for my todo list manager in the Text Editors list?\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/eposeia/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559380891.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epo4x0j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mexicorn\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559338461.0, \"send_replies\": true, \"parent_id\": \"t1_epneizy\", \"score\": 2, \"author_fullname\": \"t2_3xl2j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm curious as to what a \\\"stand-alone\\\" version of org mode would look like. One of the main strengths of org-mode is its nearly limitless customization, which is made possible by the underlying Lisp. I feel like anything that hopes to decouple from emacs but retain the same functionality \\u0026 customization would inevitably turn into an emacs clone project.\\n\\nPerhaps it's worth thinking of the opposite question: what overhead and adoption barriers are present in getting people into emacs that would not be present in some stand-alone org mode app?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epo4x0j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m curious as to what a \\u0026quot;stand-alone\\u0026quot; version of org mode would look like. One of the main strengths of org-mode is its nearly limitless customization, which is made possible by the underlying Lisp. I feel like anything that hopes to decouple from emacs but retain the same functionality \\u0026amp; customization would inevitably turn into an emacs clone project.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPerhaps it\\u0026#39;s worth thinking of the opposite question: what overhead and adoption barriers are present in getting people into emacs that would not be present in some stand-alone org mode app?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/epo4x0j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559367261.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epneizy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ManiacMcCree\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559326165.0, \"send_replies\": true, \"parent_id\": \"t3_bv747t\", \"score\": 4, \"author_fullname\": \"t2_130p93\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I feel like org-mode is hands down the best outlining and writing tool in existence. \\n\\nIn terms of task management and general note taking though, I always end up walking away from it due to the inability to work with teams, clunkiness of adding different kinds of media, and the weak mobile workflow. \\n\\nIs there a \\\"future\\\" of org-mode? Or do you think that the app is as mature as it's ever going to be? \\n\\nHonestly it is sad to me to see how well markdown has taken off when org is such a more powerful format. \\n\\nI'd personally like to see org uncoupled from emacs, as I think it's got more value moving into the future than emacs itself. Imagine a new generation of note-taking app (a-la joplin, notability etc.) but based on org-mode rather than markdown. \\n\\n(and yes, I know about orgzly etc. - it's okay, but doesn't address the big issues)\\n\\nHeresy? Good idea? LMK\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epneizy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI feel like org-mode is hands down the best outlining and writing tool in existence. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn terms of task management and general note taking though, I always end up walking away from it due to the inability to work with teams, clunkiness of adding different kinds of media, and the weak mobile workflow. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a \\u0026quot;future\\u0026quot; of org-mode? Or do you think that the app is as mature as it\\u0026#39;s ever going to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHonestly it is sad to me to see how well markdown has taken off when org is such a more powerful format. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d personally like to see org uncoupled from emacs, as I think it\\u0026#39;s got more value moving into the future than emacs itself. Imagine a new generation of note-taking app (a-la joplin, notability etc.) but based on org-mode rather than markdown. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(and yes, I know about orgzly etc. - it\\u0026#39;s okay, but doesn\\u0026#39;t address the big issues)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHeresy? Good idea? LMK\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/epneizy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559354965.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epnachi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"OverthrowDissent\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559324196.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": -1, \"author_fullname\": \"t2_37uew703\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Add the word \\\"TODO\\\" in a list item like:\\n\\n * TODO Item 1\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_epnachi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAdd the word \\u0026quot;TODO\\u0026quot; in a list item like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Item 1\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/epnachi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559352996.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplr2oq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559301731.0, \"send_replies\": true, \"parent_id\": \"t1_epjzbl6\", \"score\": 1, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hello Tsdwm52. \\n\\nWhile it's not exactly what I was searching for (the next comment points to it), it has some very interesting options that I will explore further. \\n\\nThanks a lot for your help... :)\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_eplr2oq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello Tsdwm52. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile it\\u0026#39;s not exactly what I was searching for (the next comment points to it), it has some very interesting options that I will explore further. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks a lot for your help... :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/eplr2oq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559330531.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplq73q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559301232.0, \"send_replies\": true, \"parent_id\": \"t1_epk2sub\", \"score\": 1, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hello Gusbrs. You found it, that was exactly wat I was searching for. \\n\\nThanks a lot, I sure others will benefit from your answer here too... :)\\n\\n\\u0026#x200B;\\n\\nBest regards.\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_eplq73q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello Gusbrs. You found it, that was exactly wat I was searching for. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks a lot, I sure others will benefit from your answer here too... :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBest regards.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/eplq73q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559330032.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epk2sub\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559266336.0, \"send_replies\": true, \"parent_id\": \"t3_buzxzp\", \"score\": 2, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"From the `memoir` docs:\\n\\n\\u003E The commands \\\\tableofcontents, \\\\listoffigures and \\\\listoftables typeset, repectively, the Table of Contents (ToC), List of Figures (LoF) and List of Tables (LoT). In memoir , unlike the standard classes, the unstarred versions add their respective titles to the ToC. The starred versions act like the standard classes\\u2019 unstarred versions as they don\\u2019t add their titles to the ToC.\\n\\nSo, if you add the command directly, you can simply use the starred version. If this is added by the Org exporter, you will have to find a way to convince it to do the same thing by tweaking your customizations.\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_epk2sub\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFrom the \\u003Ccode\\u003Ememoir\\u003C/code\\u003E docs:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe commands \\\\tableofcontents, \\\\listoffigures and \\\\listoftables typeset, repectively, the Table of Contents (ToC), List of Figures (LoF) and List of Tables (LoT). In memoir , unlike the standard classes, the unstarred versions add their respective titles to the ToC. The starred versions act like the standard classes\\u2019 unstarred versions as they don\\u2019t add their titles to the ToC.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESo, if you add the command directly, you can simply use the starred version. If this is added by the Org exporter, you will have to find a way to convince it to do the same thing by tweaking your customizations.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/epk2sub/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559295136.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epjzbl6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdwm52\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559263892.0, \"send_replies\": true, \"parent_id\": \"t3_buzxzp\", \"score\": 2, \"author_fullname\": \"t2_mj8i2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is a LaTeX question. The answers here will help: [https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc](https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc). The answers include a bit on Memoir-specific changes.\\n\\nYou'll probably want to make the changes in the Org mode file using #+LATEX\\\\_HEADER:\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_epjzbl6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is a LaTeX question. The answers here will help: \\u003Ca href=\\\"https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc\\\"\\u003Ehttps://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc\\u003C/a\\u003E. The answers include a bit on Memoir-specific changes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;ll probably want to make the changes in the Org mode file using #+LATEX_HEADER:\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/epjzbl6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559292692.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buopeh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eph5z4d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaiwen1\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559222771.0, \"send_replies\": true, \"parent_id\": \"t1_epf1oai\", \"score\": 2, \"author_fullname\": \"t2_6qzsr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This function does it:\\n\\n```\\n(defun org-hide-src-block-delimiters()\\n (interactive)\\n (save-excursion (goto-char (point-max))\\n (while (re-search-backward \\\"#\\\\\\\\+BEGIN_SRC\\\\\\\\|#\\\\\\\\+END_SRC\\\" nil t)\\n (let ((ov (make-overlay (line-beginning-position)\\n (1+ (line-end-position)))))\\n (overlay-put ov 'invisible t)))))\\n```\\n\\nThis would be better as a toggle but I haven't quite figured out how to do that yet.\", \"link_title\": \"How can I hide source block header and footer?\", \"author_flair_css_class\": null, \"name\": \"t1_eph5z4d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis function does it:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(defun org-hide-src-block-delimiters()\\n (interactive)\\n (save-excursion (goto-char (point-max))\\n (while (re-search-backward \\u0026quot;#\\\\\\\\+BEGIN_SRC\\\\\\\\|#\\\\\\\\+END_SRC\\u0026quot; nil t)\\n (let ((ov (make-overlay (line-beginning-position)\\n (1+ (line-end-position)))))\\n (overlay-put ov \\u0026#39;invisible t)))))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis would be better as a toggle but I haven\\u0026#39;t quite figured out how to do that yet.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/eph5z4d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"created\": 1559251571.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buopeh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epflcbr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"venomspinner\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559197849.0, \"send_replies\": true, \"parent_id\": \"t1_epf1oai\", \"score\": 1, \"author_fullname\": \"t2_ejpaa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"you can make its foreground same color as the background of your emacs theme.\", \"link_title\": \"How can I hide source block header and footer?\", \"author_flair_css_class\": null, \"name\": \"t1_epflcbr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyou can make its foreground same color as the background of your emacs theme.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/epflcbr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"created\": 1559226649.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buopeh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epf1oai\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaiwen1\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559189916.0, \"send_replies\": true, \"parent_id\": \"t3_buopeh\", \"score\": 1, \"author_fullname\": \"t2_6qzsr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Found this: [https://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters](https://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters).\\n\\nNot quite there, but close.\", \"link_title\": \"How can I hide source block header and footer?\", \"author_flair_css_class\": null, \"name\": \"t1_epf1oai\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFound this: \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters\\\"\\u003Ehttps://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot quite there, but close.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/epf1oai/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"created\": 1559218716.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdnqd3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559170003.0, \"send_replies\": true, \"parent_id\": \"t1_epdmeme\", \"score\": 1, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"No, the macros will work only if you export from Org. I export my master Org file to README.org for GitHub. \\n\\nIf you don't want to use `ox-org`, you'll have to expand those macros manually.\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epdnqd3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, the macros will work only if you export from Org. I export my master Org file to README.org for GitHub. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you don\\u0026#39;t want to use \\u003Ccode\\u003Eox-org\\u003C/code\\u003E, you\\u0026#39;ll have to expand those macros manually.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epdnqd3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559198803.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdmeme\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hardrived_\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559169203.0, \"send_replies\": true, \"parent_id\": \"t1_epdajfx\", \"score\": 1, \"author_fullname\": \"t2_ycu34\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm not exporting to another file format so would a Macro work? Github doesn't technically render Org file like it does Markdown. I tried this method and it didn't replace the text with the Macro.\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epdmeme\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not exporting to another file format so would a Macro work? Github doesn\\u0026#39;t technically render Org file like it does Markdown. I tried this method and it didn\\u0026#39;t replace the text with the Macro.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epdmeme/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559198003.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsgj6t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdlg9r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559168638.0, \"send_replies\": true, \"parent_id\": \"t3_bsgj6t\", \"score\": 1, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"finally synced w/ syncthing and termux on android. this lead to me wanting to consolidate my files a bit, so I'm running with [wiki.org](https://wiki.org), [archives.org](https://archives.org), [tasks.org](https://tasks.org), refile.org and \\\\~/emacs.d/configuration.org being my agenda files. previously I was just using agenda/ as my org-agenda directory, but I like this set up a lot more. I'm still not sure what merits a new file, and i think about it too much. having monolithic files is nice now that I useC-c / (sparse tree view), C-c C-j (jump to header) and C-x n s (narrow to subtree)\\n\\n\\u0026#x200B;\\n\\nalso, finally moved over to a literate configuration and it's been amazingly helpful and was painless to set up :-) this short article was a good guide: [https://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration](https://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 24, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epdlg9r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efinally synced w/ syncthing and termux on android. this lead to me wanting to consolidate my files a bit, so I\\u0026#39;m running with \\u003Ca href=\\\"https://wiki.org\\\"\\u003Ewiki.org\\u003C/a\\u003E, \\u003Ca href=\\\"https://archives.org\\\"\\u003Earchives.org\\u003C/a\\u003E, \\u003Ca href=\\\"https://tasks.org\\\"\\u003Etasks.org\\u003C/a\\u003E, refile.org and ~/emacs.d/configuration.org being my agenda files. previously I was just using agenda/ as my org-agenda directory, but I like this set up a lot more. I\\u0026#39;m still not sure what merits a new file, and i think about it too much. having monolithic files is nice now that I useC-c / (sparse tree view), C-c C-j (jump to header) and C-x n s (narrow to subtree)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealso, finally moved over to a literate configuration and it\\u0026#39;s been amazingly helpful and was painless to set up :-) this short article was a good guide: \\u003Ca href=\\\"https://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration\\\"\\u003Ehttps://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/epdlg9r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"created\": 1559197438.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdajfx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559163831.0, \"send_replies\": true, \"parent_id\": \"t3_buhsue\", \"score\": 3, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I use these:\\n\\n #+macro: travis [[https://travis-ci.org/kaushalmodi/ox-hugo][https://travis-ci.org/kaushalmodi/ox-hugo.svg?branch=master]]\\n #+macro: melpa [[https://melpa.org/#/ox-hugo][file:https://melpa.org/packages/ox-hugo-badge.svg]]\\n #+macro: GPLv3 [[https://www.gnu.org/licenses/gpl-3.0][https://img.shields.io/badge/License-GPL%20v3-blue.svg]]\\n\\n {{{travis}}} {{{melpa}}} {{{GPLv3}}}\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epdajfx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use these:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+macro: travis [[https://travis-ci.org/kaushalmodi/ox-hugo][https://travis-ci.org/kaushalmodi/ox-hugo.svg?branch=master]]\\n#+macro: melpa [[https://melpa.org/#/ox-hugo][file:https://melpa.org/packages/ox-hugo-badge.svg]]\\n#+macro: GPLv3 [[https://www.gnu.org/licenses/gpl-3.0][https://img.shields.io/badge/License-GPL%20v3-blue.svg]]\\n\\n{{{travis}}} {{{melpa}}} {{{GPLv3}}}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epdajfx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559192631.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epcozp9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hardrived_\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559156766.0, \"send_replies\": true, \"parent_id\": \"t1_epco8wc\", \"score\": 1, \"author_fullname\": \"t2_ycu34\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Funny enough this how I redid the markdown formatted badge into org format. But I can't believe I forgot that MELPA shows badge codes in HTML, Markdown, and Org lol\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epcozp9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFunny enough this how I redid the markdown formatted badge into org format. But I can\\u0026#39;t believe I forgot that MELPA shows badge codes in HTML, Markdown, and Org lol\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epcozp9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559185566.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epco8wc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"akirakom\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559156511.0, \"send_replies\": true, \"parent_id\": \"t3_buhsue\", \"score\": 2, \"author_fullname\": \"t2_ouz7ysa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"- An example of Circle CI badge in Org: `[[https://circleci.com/gh/akirak/emacs.d/tree/master][https://circleci.com/gh/akirak/emacs.d/tree/master.svg?style=svg]]`\\n- MELPA: `[[https://melpa.org/#/org-reverse-datetree][https://melpa.org/packages/org-reverse-datetree-badge.svg]]`\\n- Travis CI: `[[https://travis-ci.org/akirak/org-reverse-datetree][https://travis-ci.org/akirak/org-reverse-datetree.svg?branch=master]]`\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epco8wc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cul\\u003E\\n\\u003Cli\\u003EAn example of Circle CI badge in Org: \\u003Ccode\\u003E[[https://circleci.com/gh/akirak/emacs.d/tree/master][https://circleci.com/gh/akirak/emacs.d/tree/master.svg?style=svg]]\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMELPA: \\u003Ccode\\u003E[[https://melpa.org/#/org-reverse-datetree][https://melpa.org/packages/org-reverse-datetree-badge.svg]]\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETravis CI: \\u003Ccode\\u003E[[https://travis-ci.org/akirak/org-reverse-datetree][https://travis-ci.org/akirak/org-reverse-datetree.svg?branch=master]]\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epco8wc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559185311.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbd7gf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"doulos05\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559140998.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": 3, \"author_fullname\": \"t2_jqpn4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"There's an important design decision at work here.\\n\\nHeaders are where you organize your tasks, lists are where you itemize the steps to complete your tasks.\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_epbd7gf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s an important design decision at work here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHeaders are where you organize your tasks, lists are where you itemize the steps to complete your tasks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/epbd7gf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559169798.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eparx61\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jazzpecq\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559132539.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": 1, \"author_fullname\": \"t2_hv9nd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"TODO keywords and tags belong to headings only. For list items you have to use checkboxes.\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_eparx61\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETODO keywords and tags belong to headings only. For list items you have to use checkboxes.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/eparx61/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559161339.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eparjs7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ccharles\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559132378.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": 6, \"author_fullname\": \"t2_bhd0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Your best bet is probably to use [checkboxes][1]:\\n\\n - [ ] One\\n - [ ] Two\\n\\nYou can `C-c C-c` on an item to toggle it, and this will be reflected in headings if you have them, e.g.:\\n\\n * Some heading [1/2]\\n - [ ] One\\n - [X] Two\\n\\n[1]: https://orgmode.org/manual/Checkboxes.html#Checkboxes\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_eparjs7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYour best bet is probably to use \\u003Ca href=\\\"https://orgmode.org/manual/Checkboxes.html#Checkboxes\\\"\\u003Echeckboxes\\u003C/a\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E- [ ] One\\n- [ ] Two\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EYou can \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E on an item to toggle it, and this will be reflected in headings if you have them, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Some heading [1/2]\\n - [ ] One\\n - [X] Two\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/eparjs7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559161178.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ajngqj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep9vhci\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559116967.0, \"send_replies\": true, \"parent_id\": \"t3_ajngqj\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Update \\u003C2019-05-29\\u003E: Found a crude workaround I probably can live with: I just bound a function to `(search-forward \\\"[ ]\\\"))`.\", \"link_title\": \"Jump to the next unchecked checkbox in a list\", \"author_flair_css_class\": null, \"name\": \"t1_ep9vhci\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUpdate \\u0026lt;2019-05-29\\u0026gt;: Found a crude workaround I probably can live with: I just bound a function to \\u003Ccode\\u003E(search-forward \\u0026quot;[ ]\\u0026quot;))\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ajngqj/jump_to_the_next_unchecked_checkbox_in_a_list/ep9vhci/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ajngqj/jump_to_the_next_unchecked_checkbox_in_a_list/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ajngqj/jump_to_the_next_unchecked_checkbox_in_a_list/\", \"created\": 1559145767.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu1tby\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep701qj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vale_fallacia\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559075655.0, \"send_replies\": true, \"parent_id\": \"t1_ep6tih1\", \"score\": 2, \"author_fullname\": \"t2_2al88q3x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Perfect, thank you for answering. That was exactly it!\", \"link_title\": \"Possible confusion over ORDERED property\", \"author_flair_css_class\": null, \"name\": \"t1_ep701qj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPerfect, thank you for answering. That was exactly it!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/ep701qj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"created\": 1559104455.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu1tby\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep6tih1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"telap\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559073371.0, \"send_replies\": true, \"parent_id\": \"t3_bu1tby\", \"score\": 4, \"author_fullname\": \"t2_yr0wz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Check the value of the variable `org-enforce-todo-dependencies`.\\n\\n\\u0026#x200B;\\n\\nFrom documentation of the variable:\\n\\n\\u003ENon-nil means undone TODO entries will block switching the parent to DONE. \\n\\u003E \\n\\u003EAlso, if a parent has an :ORDERED: property, switching an entry to DONE will be blocked if any prior sibling is not yet done. \\n\\u003E \\n\\u003EFinally, if the parent is blocked because of ordered siblings of its own, the child will also be blocked.\", \"link_title\": \"Possible confusion over ORDERED property\", \"author_flair_css_class\": null, \"name\": \"t1_ep6tih1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECheck the value of the variable \\u003Ccode\\u003Eorg-enforce-todo-dependencies\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom documentation of the variable:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENon-nil means undone TODO entries will block switching the parent to DONE. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, if a parent has an :ORDERED: property, switching an entry to DONE will be blocked if any prior sibling is not yet done. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally, if the parent is blocked because of ordered siblings of its own, the child will also be blocked.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/ep6tih1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"created\": 1559102171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep5vaqx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"juustgowithit\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559061322.0, \"send_replies\": true, \"parent_id\": \"t1_ep53pu4\", \"score\": 2, \"author_fullname\": \"t2_dxeab\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I love reading this so much. I barely even use emacs but even that is thanks to the discussions on this sub\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep5vaqx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love reading this so much. I barely even use emacs but even that is thanks to the discussions on this sub\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep5vaqx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559090122.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep5p4a5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559059117.0, \"send_replies\": true, \"parent_id\": \"t1_ep56l9p\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Incidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on)\\n\\nFollow the instructions in the readme carefully and it will work.\\n\\n\\u003E Anyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\n\\nThey do different things. They are complementary.\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep5p4a5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIncidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on)\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFollow the instructions in the readme carefully and it will work.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAnyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey do different things. They are complementary.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep5p4a5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559087917.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_br2g1m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep5m7f3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"little_big_h\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559057968.0, \"send_replies\": true, \"parent_id\": \"t3_br2g1m\", \"score\": 1, \"author_fullname\": \"t2_11kij2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Your question is way to vague to be properly answered. Trying to anticipate your actual problem, here is a suggestion: You have to add \\n'mathematica to 'org-babel-Load-languages .\", \"link_title\": \"How do I use ob-mathematica.el?\", \"author_flair_css_class\": null, \"name\": \"t1_ep5m7f3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYour question is way to vague to be properly answered. Trying to anticipate your actual problem, here is a suggestion: You have to add \\n\\u0026#39;mathematica to \\u0026#39;org-babel-Load-languages .\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/ep5m7f3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"created\": 1559086768.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep56l9p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jackjackk0\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559051301.0, \"send_replies\": true, \"parent_id\": \"t1_ep53pu4\", \"score\": 2, \"author_fullname\": \"t2_q52rf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, I see, it's probably not as straightforward as originally thought. Maybe, an easier way could b: 1) when capturing an item, add automatically deadline based on parent one, and 2) when changing a deadline, change the deadline of subitems... but then not sure it is worth the time. Incidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on). probably I have some conflicting configuration. Anyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\n\\nedit: fix typo\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep56l9p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I see, it\\u0026#39;s probably not as straightforward as originally thought. Maybe, an easier way could b: 1) when capturing an item, add automatically deadline based on parent one, and 2) when changing a deadline, change the deadline of subitems... but then not sure it is worth the time. Incidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on). probably I have some conflicting configuration. Anyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eedit: fix typo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep56l9p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559080101.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep53pu4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559050086.0, \"send_replies\": true, \"parent_id\": \"t3_btzy6m\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I think the question is, inherit it in what context? I guess you mean in Org Agenda views--in which case I think the answer is, good luck, because a) the Org Agenda code is not generally well suited to modifying parts of its functionality, and b) the agenda code specifically searches for \\\"planning lines\\\" to build agenda views, which would preclude what you are wanting.\\n\\nMaybe you're wanting \\\"project\\\" functionality, which Org provides by other means. Refer to the documentation and Google searches for more info on that.\\n\\nYou might also find the `org-ql` package helpful in building an agenda-like view with certain items.\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep53pu4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think the question is, inherit it in what context? I guess you mean in Org Agenda views--in which case I think the answer is, good luck, because a) the Org Agenda code is not generally well suited to modifying parts of its functionality, and b) the agenda code specifically searches for \\u0026quot;planning lines\\u0026quot; to build agenda views, which would preclude what you are wanting.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaybe you\\u0026#39;re wanting \\u0026quot;project\\u0026quot; functionality, which Org provides by other means. Refer to the documentation and Google searches for more info on that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou might also find the \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E package helpful in building an agenda-like view with certain items.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep53pu4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559078886.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep4llp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559042069.0, \"send_replies\": true, \"parent_id\": \"t3_btdd9b\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You may also find this helpful: https://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_ep4llp8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou may also find this helpful: \\u003Ca href=\\\"https://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\\\"\\u003Ehttps://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/ep4llp8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1559070869.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btovhk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep38ai6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559019320.0, \"send_replies\": true, \"parent_id\": \"t1_ep1m1sg\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yeah, rather than setting a prefix, it would be easier to use `org-super-agenda` to put them in groups accordingly.\", \"link_title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"author_flair_css_class\": null, \"name\": \"t1_ep38ai6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, rather than setting a prefix, it would be easier to use \\u003Ccode\\u003Eorg-super-agenda\\u003C/code\\u003E to put them in groups accordingly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/ep38ai6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"report_reasons\": null, \"link_author\": \"werzor\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"created\": 1559048120.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boymdt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep34vwh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559017112.0, \"send_replies\": true, \"parent_id\": \"t1_eoyztpe\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Okay, but that doesn't help us find and fix any problem that may exist in Org 9.\", \"link_title\": \"Org-agenda and tags position\", \"author_flair_css_class\": null, \"name\": \"t1_ep34vwh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOkay, but that doesn\\u0026#39;t help us find and fix any problem that may exist in Org 9.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/ep34vwh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"report_reasons\": null, \"link_author\": \"cyberl3o\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"created\": 1559045912.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btovhk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep1m1sg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SmoothInternet\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558990945.0, \"send_replies\": true, \"parent_id\": \"t3_btovhk\", \"score\": 2, \"author_fullname\": \"t2_baw354f\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You might want to look for the org-super-agenda package. I think it simplifies what you want to do. It\\u2019s available on MELPA, but the complete docs are on Github.\", \"link_title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"author_flair_css_class\": null, \"name\": \"t1_ep1m1sg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou might want to look for the org-super-agenda package. I think it simplifies what you want to do. It\\u2019s available on MELPA, but the complete docs are on Github.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/ep1m1sg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"report_reasons\": null, \"link_author\": \"werzor\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"created\": 1559019745.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep0mauh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BeetleB\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1558977342.0, \"send_replies\": true, \"parent_id\": \"t1_eowkgw9\", \"score\": 1, \"author_fullname\": \"t2_1tduz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Actually, it's \\u003C\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_ep0mauh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EActually, it\\u0026#39;s \\u0026lt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/ep0mauh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1559006142.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boymdt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoyztpe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cyberl3o\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1558949639.0, \"send_replies\": true, \"parent_id\": \"t1_eoa9yk2\", \"score\": 1, \"author_fullname\": \"t2_3rz1w0lq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hi! Sorry for the delay. I downgrade to Org 8.2.10 and all work fine ;)\", \"link_title\": \"Org-agenda and tags position\", \"author_flair_css_class\": null, \"name\": \"t1_eoyztpe\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi! Sorry for the delay. I downgrade to Org 8.2.10 and all work fine ;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/eoyztpe/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"report_reasons\": null, \"link_author\": \"cyberl3o\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"created\": 1558978439.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eowlzq0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ralphbluecoat\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1558911652.0, \"send_replies\": true, \"parent_id\": \"t1_eowkgw9\", \"score\": 3, \"author_fullname\": \"t2_4hzm8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"That works. Thank you.\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_eowlzq0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat works. Thank you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/eowlzq0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1558940452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eowkgw9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zreeon\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1558911049.0, \"send_replies\": true, \"parent_id\": \"t3_btdd9b\", \"score\": 3, \"author_fullname\": \"t2_h5re9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is built into the agenda dispatcher. I think the default binding is \\u003E\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_eowkgw9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is built into the agenda dispatcher. I think the default binding is \\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/eowkgw9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1558939849.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bt9f5z\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eovu3rf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vale_fallacia\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558900706.0, \"send_replies\": true, \"parent_id\": \"t1_eovt3d0\", \"score\": 2, \"author_fullname\": \"t2_2al88q3x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Holy crap! **That's** the app I was thinking about when I began looking at org-mode! I couldn't remember its name, and I couldn't describe it well enough for Google to find it.\\n\\nYou've seriously cleared up a years long issue I had with not being able to find that application. Thank you so much!\", \"link_title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"author_flair_css_class\": null, \"name\": \"t1_eovu3rf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHoly crap! \\u003Cstrong\\u003EThat\\u0026#39;s\\u003C/strong\\u003E the app I was thinking about when I began looking at org-mode! I couldn\\u0026#39;t remember its name, and I couldn\\u0026#39;t describe it well enough for Google to find it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;ve seriously cleared up a years long issue I had with not being able to find that application. Thank you so much!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/eovu3rf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"created\": 1558929506.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bt9f5z\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eovt3d0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jwiegley\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558900276.0, \"send_replies\": true, \"parent_id\": \"t3_bt9f5z\", \"score\": 3, \"author_fullname\": \"t2_3sm69\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"In case anyone is interested, Org habits was implemented to imitate the behavior of [http://sciral.com/consistency/](http://sciral.com/consistency/)\", \"link_title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"author_flair_css_class\": null, \"name\": \"t1_eovt3d0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn case anyone is interested, Org habits was implemented to imitate the behavior of \\u003Ca href=\\\"http://sciral.com/consistency/\\\"\\u003Ehttp://sciral.com/consistency/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/eovt3d0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"created\": 1558929076.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsnq2u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eotsyx6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WalterGR\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558847848.0, \"send_replies\": true, \"parent_id\": \"t1_eop4wet\", \"score\": 1, \"author_fullname\": \"t2_3c1ug\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is only for macOS, right?\", \"link_title\": \"[Question] Paste with source format\", \"author_flair_css_class\": null, \"name\": \"t1_eotsyx6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is only for macOS, right?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bsnq2u/question_paste_with_source_format/eotsyx6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"report_reasons\": null, \"link_author\": \"GracefulToucan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"created\": 1558876648.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpjh7e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eorf0ei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sshaw_\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558805809.0, \"send_replies\": true, \"parent_id\": \"t1_eorel43\", \"score\": 1, \"author_fullname\": \"t2_h8sck\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hurmmm, I will have a 2nd look. Thanks for the info. \\n\\nWhat I ended up doing was using [org-clock-csv](https://github.com/atheriel/org-clock-csv) with custom export function and header. Works well since Toggl's spreadsheet import can detect rows it already imported but really, who wants to use the mouse :)\", \"link_title\": \"Anyone Use Org mode With Toggl\", \"author_flair_css_class\": null, \"name\": \"t1_eorf0ei\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHurmmm, I will have a 2nd look. Thanks for the info. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat I ended up doing was using \\u003Ca href=\\\"https://github.com/atheriel/org-clock-csv\\\"\\u003Eorg-clock-csv\\u003C/a\\u003E with custom export function and header. Works well since Toggl\\u0026#39;s spreadsheet import can detect rows it already imported but really, who wants to use the mouse :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/eorf0ei/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"report_reasons\": null, \"link_author\": \"sshaw_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"created\": 1558834609.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpjh7e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eorel43\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ssd198778\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558805532.0, \"send_replies\": true, \"parent_id\": \"t3_bpjh7e\", \"score\": 1, \"author_fullname\": \"t2_1yleajma\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks to this post, I tried Fuco1's org-toggle and it seems to work fine for me and it's able to sync current current clock-ins when doing org-clock-in. \\n\\norgversion: 9.1.6\\n\\nemacs : 25.2.2\", \"link_title\": \"Anyone Use Org mode With Toggl\", \"author_flair_css_class\": null, \"name\": \"t1_eorel43\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks to this post, I tried Fuco1\\u0026#39;s org-toggle and it seems to work fine for me and it\\u0026#39;s able to sync current current clock-ins when doing org-clock-in. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorgversion: 9.1.6\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eemacs : 25.2.2\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/eorel43/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"report_reasons\": null, \"link_author\": \"sshaw_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"created\": 1558834332.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqu8sp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoq5g5m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"OverthrowDissent\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1558785420.0, \"send_replies\": true, \"parent_id\": \"t1_eod0sqj\", \"score\": 1, \"author_fullname\": \"t2_37uew703\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you all for those that tried to help! This is the solution. You use the :tstart and :tend tags and place dates within. The start date is the day you want to look at, the end date is the day after. Then you add the step tag and step by day.\\n\\nExample:\\n\\u003E :tstart \\\"\\u003C2019-05-24 Fri\\u003E\\\" :tend \\\"\\u003C2019-05-25 Sat\\u003E\\\" :step day\\n\\nThis works. Nice!\", \"link_title\": \"View clock table entries by date?\", \"author_flair_css_class\": null, \"name\": \"t1_eoq5g5m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you all for those that tried to help! This is the solution. You use the :tstart and :tend tags and place dates within. The start date is the day you want to look at, the end date is the day after. Then you add the step tag and step by day.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E:tstart \\u0026quot;\\u0026lt;2019-05-24 Fri\\u0026gt;\\u0026quot; :tend \\u0026quot;\\u0026lt;2019-05-25 Sat\\u0026gt;\\u0026quot; :step day\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis works. Nice!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/eoq5g5m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"report_reasons\": null, \"link_author\": \"OverthrowDissent\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"created\": 1558814220.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsnq2u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eop4wet\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"peter-salazar\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558754900.0, \"send_replies\": true, \"parent_id\": \"t3_bsnq2u\", \"score\": 3, \"author_fullname\": \"t2_apwv8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"For pasting from the web to org-mode, I use this, which uses pandoc: \\n\\n(defun kdm/html2org-clipboard ()\\n \\\"Convert clipboard contents from HTML to Org and then paste (yank).\\\"\\n (interactive)\\n (setq cmd \\\"osascript -e 'the clipboard as \\\\\\\"HTML\\\\\\\"' | perl -ne 'print chr foreach unpack(\\\\\\\"C*\\\\\\\",pack(\\\\\\\"H*\\\\\\\",substr($_,11,-3)))' | pandoc -f html -t json | pandoc -f json -t org\\\")\\n (kill-new (shell-command-to-string cmd))\\n (yank))\", \"link_title\": \"[Question] Paste with source format\", \"author_flair_css_class\": null, \"name\": \"t1_eop4wet\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor pasting from the web to org-mode, I use this, which uses pandoc: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(defun kdm/html2org-clipboard ()\\n \\u0026quot;Convert clipboard contents from HTML to Org and then paste (yank).\\u0026quot;\\n (interactive)\\n (setq cmd \\u0026quot;osascript -e \\u0026#39;the clipboard as \\\\\\u0026quot;HTML\\\\\\u0026quot;\\u0026#39; | perl -ne \\u0026#39;print chr foreach unpack(\\\\\\u0026quot;C\\u003Cem\\u003E\\\\\\u0026quot;,pack(\\\\\\u0026quot;H\\u003C/em\\u003E\\\\\\u0026quot;,substr($_,11,-3)))\\u0026#39; | pandoc -f html -t json | pandoc -f json -t org\\u0026quot;)\\n (kill-new (shell-command-to-string cmd))\\n (yank))\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bsnq2u/question_paste_with_source_format/eop4wet/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"report_reasons\": null, \"link_author\": \"GracefulToucan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"created\": 1558783700.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bry1c2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eonqshk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Okesa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1558719246.0, \"send_replies\": true, \"parent_id\": \"t1_eonkd7o\", \"score\": 1, \"author_fullname\": \"t2_4utg0yv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I think the hardest part for me is deciding what is \\u2018important\\u2019. I try to set the bar high so that my agenda isn\\u2019t full of \\u2018important \\u2018 items. Anything else (not important, not urgent) I try to simply delete\\u2014or, if it seems interesting \\u2018someday\\u2019, I move to a file called \\u2018someday.org\\u2019, which I periodically review.\", \"link_title\": \"Using the Eisenhower Matrix in Emacs Org-Mode\", \"author_flair_css_class\": null, \"name\": \"t1_eonqshk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think the hardest part for me is deciding what is \\u2018important\\u2019. I try to set the bar high so that my agenda isn\\u2019t full of \\u2018important \\u2018 items. Anything else (not important, not urgent) I try to simply delete\\u2014or, if it seems interesting \\u2018someday\\u2019, I move to a file called \\u2018someday.org\\u2019, which I periodically review.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/eonqshk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/\", \"report_reasons\": null, \"link_author\": \"Okesa\", \"author_flair_text\": null, \"link_url\": \"https://www.tompurl.com/2015-12-29-emacs-eisenhower-matrix.html\", \"created\": 1558748046.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bry1c2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eonkd7o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"trae\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1558714665.0, \"send_replies\": true, \"parent_id\": \"t3_bry1c2\", \"score\": 2, \"author_fullname\": \"t2_1oqx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I didn't know about quick-tagging, thanks!\\n\\n\\u0026#x200B;\\n\\nI do something similar, but for urgent/important only. Everything else is by definitiion, not urgent, not important. I have a custom agenda for this:\\n\\n\\u0026#x200B;\\n\\n[https://imgur.com/a/Z9z8arO](https://imgur.com/a/Z9z8arO)\", \"link_title\": \"Using the Eisenhower Matrix in Emacs Org-Mode\", \"author_flair_css_class\": null, \"name\": \"t1_eonkd7o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI didn\\u0026#39;t know about quick-tagging, thanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI do something similar, but for urgent/important only. Everything else is by definitiion, not urgent, not important. I have a custom agenda for this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/Z9z8arO\\\"\\u003Ehttps://imgur.com/a/Z9z8arO\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/eonkd7o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/\", \"report_reasons\": null, \"link_author\": \"Okesa\", \"author_flair_text\": null, \"link_url\": \"https://www.tompurl.com/2015-12-29-emacs-eisenhower-matrix.html\", \"created\": 1558743465.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs1jef\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eon2s10\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"chuckfr\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1558702745.0, \"send_replies\": true, \"parent_id\": \"t1_eoinn4g\", \"score\": 1, \"author_fullname\": \"t2_100k2h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Just to be clear, the certificate is not self-signed, correct? If it is not, its probably not the issue. However, as I recall my setup, before getting anythihng to sync via webdav on phones/tablets I had to get a cert the device considered 'real' and not self-signed.\", \"link_title\": \"Has anyone set up beorg with nextcloud sucessfully?\", \"author_flair_css_class\": null, \"name\": \"t1_eon2s10\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust to be clear, the certificate is not self-signed, correct? If it is not, its probably not the issue. However, as I recall my setup, before getting anythihng to sync via webdav on phones/tablets I had to get a cert the device considered \\u0026#39;real\\u0026#39; and not self-signed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/eon2s10/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"report_reasons\": null, \"link_author\": \"CuriousQuasar\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"created\": 1558731545.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boyu8r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eomnffm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cottasteel\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1558692675.0, \"send_replies\": true, \"parent_id\": \"t1_eommezh\", \"score\": 1, \"author_fullname\": \"t2_7nfrv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yes you are right. I have a custom function that sorts checkboxes when new checkboxes are added or the checkbox state changes, and this variable is a flag that enables this behavior. I should remove the variable from the function and implement it for myself using function advice or something similar. Thanks!\", \"link_title\": \"function for DWIM insertion of new entries\", \"author_flair_css_class\": null, \"name\": \"t1_eomnffm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes you are right. I have a custom function that sorts checkboxes when new checkboxes are added or the checkbox state changes, and this variable is a flag that enables this behavior. I should remove the variable from the function and implement it for myself using function advice or something similar. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/eomnffm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"report_reasons\": null, \"link_author\": \"cottasteel\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"created\": 1558721475.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_eomnffm\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["254978"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:14 GMT"], "x-ratelimit-remaining": ["594.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21922-LGA"], "x-ratelimit-used": ["6"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914093.420266,VS0,VE781"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["107"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:28:14"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_eq9nx63"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:14 GMT"], "x-ratelimit-remaining": ["593.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21922-LGA"], "x-ratelimit-used": ["7"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914094.424642,VS0,VE103"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["106"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_eq9nx63"}, "recorded_at": "2019-06-07T13:28:14"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_bxu83g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559940568.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu83g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"parent_whitelist_status\": null, \"stickied\": true, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559911768.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have [ob-mathematica](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el) (which allows me to execute mathematica snippets via org-babel) combined with [wolfram-mode](https://github.com/kawabata/wolfram-mode) (which provides syntax highlighting).\\n\\nSo right now I have the conundrum that if I label an org-babel source block `mathematica`, then I can evaluate it via `C-c C-c` but without syntax highlighting. On the other hand, if I label the block `wolfram`, then I can no longer evaluate it, but I get source highlighting!\\n\\nHow do I combine these two to get the best of both worlds?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxooz7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559899393.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Eob-mathematica\\u003C/a\\u003E (which allows me to execute mathematica snippets via org-babel) combined with \\u003Ca href=\\\"https://github.com/kawabata/wolfram-mode\\\"\\u003Ewolfram-mode\\u003C/a\\u003E (which provides syntax highlighting).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo right now I have the conundrum that if I label an org-babel source block \\u003Ccode\\u003Emathematica\\u003C/code\\u003E, then I can evaluate it via \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E but without syntax highlighting. On the other hand, if I label the block \\u003Ccode\\u003Ewolfram\\u003C/code\\u003E, then I can no longer evaluate it, but I get source highlighting!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I combine these two to get the best of both worlds?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxooz7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559870593.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone. Has anyone some hints on how to make helm`(org-refile)` case insensitive? E.g. I want to refile the current headline below `RubyBerlin/ToDo` (note the capital `D`). Typing the correct `\\\"Berlin/ToDo\\\"` will work and offer the headline to refile below:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/6swhzzsmvp231.png\\n\\nBut typing the lower case version `\\\"Berlin/Todo\\\"` will only give results of headlines below the one I want to refile to:\\n\\n \\n\\nhttps://i.redd.it/9mlv6bxuvp231.png\\n\\nI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\", \"author_fullname\": \"t2_5cbr5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Case insensitive (org-refile)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"6swhzzsmvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 91, \"x\": 467, \"u\": \"https://i.redd.it/6swhzzsmvp231.png\"}, \"m\": \"image/png\", \"id\": \"6swhzzsmvp231\"}, \"9mlv6bxuvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 124, \"x\": 692, \"u\": \"https://i.redd.it/9mlv6bxuvp231.png\"}, \"m\": \"image/png\", \"id\": \"9mlv6bxuvp231\"}}, \"name\": \"t3_bxfd1r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"author_cakeday\": true, \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847398.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone. Has anyone some hints on how to make helm\\u003Ccode\\u003E(org-refile)\\u003C/code\\u003E case insensitive? E.g. I want to refile the current headline below \\u003Ccode\\u003ERubyBerlin/ToDo\\u003C/code\\u003E (note the capital \\u003Ccode\\u003ED\\u003C/code\\u003E). Typing the correct \\u003Ccode\\u003E\\u0026quot;Berlin/ToDo\\u0026quot;\\u003C/code\\u003E will work and offer the headline to refile below:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/6swhzzsmvp231.png\\\"\\u003Ehttps://i.redd.it/6swhzzsmvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut typing the lower case version \\u003Ccode\\u003E\\u0026quot;Berlin/Todo\\u0026quot;\\u003C/code\\u003E will only give results of headlines below the one I want to refile to:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/9mlv6bxuvp231.png\\\"\\u003Ehttps://i.redd.it/9mlv6bxuvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfd1r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bascht\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559818598.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_j2fhy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwtuob\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 28, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 28, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559710022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwtuob\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thenackjicholson\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/fldtyuwije231.png\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559681222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi guys,\\n\\nI would like to be able to preview inline images in Org-Mode without specifying its folder.\\n\\nFor instance, I would like to have `[[figurename.png]]` even tough the figure is in a folder named `figs`.\\n\\n\\u0026#x200B;\\n\\nRight now, I am using `#+LATEX_HEADER: \\\\graphicspath{{./figs/}}` and it is working good for LaTeX exports, but I don't have the nice preview in orgmode. Any idea how I could do that?\\n\\nThanks!\", \"author_fullname\": \"t2_6nzpkw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Default directory for inline images?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmraz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559669671.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to be able to preview inline images in Org-Mode without specifying its folder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor instance, I would like to have \\u003Ccode\\u003E[[figurename.png]]\\u003C/code\\u003E even tough the figure is in a folder named \\u003Ccode\\u003Efigs\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now, I am using \\u003Ccode\\u003E#+LATEX_HEADER: \\\\graphicspath{{./figs/}}\\u003C/code\\u003E and it is working good for LaTeX exports, but I don\\u0026#39;t have the nice preview in orgmode. Any idea how I could do that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmraz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tdehaeze\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559640871.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdoe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559637338.0, \"media\": null, \"is_video\": false}], \"created\": 1559666163.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdoe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bwmdlj\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmdoe/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559637363.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi all, I'm trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is: \\n1. Find the contact (M-x org-contacts)\\n\\n2. Create link (C-c l)\\n\\n3. Go to task\\n\\n4. Insert link\\n\\nThis is not very good, I would like to know if there's a way to have my contacts links permanently stored on emacs, and if there's a easier way to insert a contact in a task.\\n\\nFor more information, the reason I want this is because sometimes I create tasks as: **Ping John about foo**, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\n\\nThanks for the help.\\n\\nPS: This is my config if it helps: [https://github.com/martini97/.emacs.d](https://github.com/martini97/.emacs.d)\", \"author_fullname\": \"t2_9eav0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Linking contacts to tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwk33h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559648146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I\\u0026#39;m trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is:\\u003Cbr/\\u003E\\n1. Find the contact (M-x org-contacts)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECreate link (C-c l)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGo to task\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EInsert link\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is not very good, I would like to know if there\\u0026#39;s a way to have my contacts links permanently stored on emacs, and if there\\u0026#39;s a easier way to insert a contact in a task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more information, the reason I want this is because sometimes I create tasks as: \\u003Cstrong\\u003EPing John about foo\\u003C/strong\\u003E, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for the help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: This is my config if it helps: \\u003Ca href=\\\"https://github.com/martini97/.emacs.d\\\"\\u003Ehttps://github.com/martini97/.emacs.d\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwk33h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_martini97\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559619346.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Came across this function/variable while improving my agenda views and thought it'd be interesting ... except it doesn't seem to work for me! If I activate this in an agenda view where I know I archived a task that's now DONE, nothing shows up.\\n\\nMy archive files are located in a different directory than my main org files:\\n\\n (setq org-archive-location (concat archive-dir (format-time-string \\\"%Y\\\" (current-time)) \\\".org_archive::datetree/\\\"))\\n\\nThese YYYY.org_archive files are not part of my `org-agenda-files` either.\\n\\nDoes archives mode only work if the `:ARCHIVED:` headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How is org-agenda-archives-mode supposed to work?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwi4qu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559636288.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECame across this function/variable while improving my agenda views and thought it\\u0026#39;d be interesting ... except it doesn\\u0026#39;t seem to work for me! If I activate this in an agenda view where I know I archived a task that\\u0026#39;s now DONE, nothing shows up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy archive files are located in a different directory than my main org files:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-archive-location (concat archive-dir (format-time-string \\u0026quot;%Y\\u0026quot; (current-time)) \\u0026quot;.org_archive::datetree/\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThese YYYY.org_archive files are not part of my \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes archives mode only work if the \\u003Ccode\\u003E:ARCHIVED:\\u003C/code\\u003E headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwi4qu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559607488.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"how do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwcmiw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559607953.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehow do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwcmiw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559579153.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a time table like so with the following table format formula.\\n\\n |-------+----------+--------------|\\n | Start | Duration | Title |\\n |-------+----------+--------------|\\n | 9:00 | 00:15 | Introduction |\\n | 9:15 | 00:45 | Basics |\\n | 10:00 | 00:30 | Break |\\n | 10:30 | 01:30 | Intermediate |\\n | 12:00 | 01:00 | Lunch Break |\\n | 13:00 | 02:00 | Advanced |\\n | 15:00 | 00:30 | Break |\\n | 15:30 | 01:30 | Party |\\n | 17:00 | | End |\\n |-------+----------+--------------|\\n #+TBLFM: $2=@+1$1-$1;U\\n\\nMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\n\\n\\u003E user-error: Row descriptor +1 leads outside table\\n\\nIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\n\\nUpdate: `#+TBLFM: @\\u003C\\u003C$2..@\\u003E\\u003E$2=@+1$1-$1;U` seems to do the trick, thanks cipharius !\", \"author_fullname\": \"t2_5n9uk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9eiq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559564152.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559588764.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a time table like so with the following table format formula.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E|-------+----------+--------------|\\n| Start | Duration | Title |\\n|-------+----------+--------------|\\n| 9:00 | 00:15 | Introduction |\\n| 9:15 | 00:45 | Basics |\\n| 10:00 | 00:30 | Break |\\n| 10:30 | 01:30 | Intermediate |\\n| 12:00 | 01:00 | Lunch Break |\\n| 13:00 | 02:00 | Advanced |\\n| 15:00 | 00:30 | Break |\\n| 15:30 | 01:30 | Party |\\n| 17:00 | | End |\\n|-------+----------+--------------|\\n#+TBLFM: $2=@+1$1-$1;U\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Euser-error: Row descriptor +1 leads outside table\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate: \\u003Ccode\\u003E#+TBLFM: @\\u0026lt;\\u0026lt;$2..@\\u0026gt;\\u0026gt;$2=@+1$1-$1;U\\u003C/code\\u003E seems to do the trick, thanks cipharius !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9eiq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gausby\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559559964.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I found this post: [https://www.reddit.com/r/orgmode/comments/90sk11/how\\\\_do\\\\_you\\\\_cite\\\\_pages\\\\_for\\\\_quotes\\\\_with\\\\_orgref/](https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/), which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\", \"author_fullname\": \"t2_js9by\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you include page number in page number in org-ref with helm?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw916a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559585779.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI found this post: \\u003Ca href=\\\"https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\\"\\u003Ehttps://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\u003C/a\\u003E, which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw916a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kandidate\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559556979.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The function `org-tags-view` allows you to build up semi-complex searches for tags using regexp:\\n\\n```\\n(org-tags-view t \\\"+PROP1={value}\\u0026+PROP2={[1-2]}\\\")\\n```\\n\\nHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header's properties, do some computations on them, and returns `t` or `nil` depending upon whether the computation matches in the way I specify?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Searching for org-tags programmatically (without regexp)?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw317n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559542522.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe function \\u003Ccode\\u003Eorg-tags-view\\u003C/code\\u003E allows you to build up semi-complex searches for tags using regexp:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(org-tags-view t \\u0026quot;+PROP1={value}\\u0026amp;+PROP2={[1-2]}\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header\\u0026#39;s properties, do some computations on them, and returns \\u003Ccode\\u003Et\\u003C/code\\u003E or \\u003Ccode\\u003Enil\\u003C/code\\u003E depending upon whether the computation matches in the way I specify?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw317n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559513722.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"# Context\\n\\nI have a very strange org-mode workflow, and I don't know how better to ask this question without first explaining it. So bear with me :)\\n\\nEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\n\\n1. **Resources.** Resources are things like `Rcomputer`, `Rnone` (for pure \\\"thinking\\\" tasks), and combinatory resources like `RDevice` (defined as `Rphone` OR `Rcomputer`). They should ultimately be placed in a bracket notation such as `[Rnone]` or `[Rcomputer, Rphone]`.\\n2. **Energy.** Energy can be thought of as a real number between `E1` and `E10` (i.e., `E10` might making a hard emotional decision, while an `E1` task takes almost no effort). Energy should also ultimately be placed in brackets like `[E5]` (single value) or `[E2, E6]` (a range of energy).\\n3. **Tags.** Tags are high-level wrappers for the previous two categories. For example, `@Thinking` could convert to `E4` and `Rnone`, while `@Reading` might convert to `E3` and `RDevice`.\\n\\n# Problem\\n\\n**What I don't know how best to do:** programatically convert (3) into (1) and (2) in a sensible way. So, for example, I'd like to have a function which can convert\\n\\n * An org-mode thinking task. :@Thinking:\\n\\nto this:\\n\\n * An org-mode thinking task. :@Thinking:\\n :PROPERTIES:\\n :R: [Rnone]\\n :E: [E4]\\n :END:\\n\\nor more complicatedly, convert a task with two tags:\\n\\n * An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n :PROPERTIES:\\n :R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u003E [Rnone], while @Reading -\\u003E [RDevice] -\\u003E [Rcompter, Rphone]\\n :E: [E3, E4] ; @Thinking -\\u003E E3; @Reading -\\u003E E4\\n :END:\\n\\nHow best to encode all of this in elisp?\\n\\n# Attempt\\n\\nFirst we have high level resources:\\n\\n``` elisp\\n(setq high-level-resources (\\n (\\\"RDevice\\\" . '(\\\"Rcomputer\\\" \\\"Rphone\\\")) ;; Notice that \\\"high-level\\\" resources are capitalized while \\\"low-level\\\" resource are non-capitalized\\n ;; ..\\n )\\n```\\n\\nthen we have high-level tags (which define both a resource and an energy component):\\n\\n``` elisp\\n(setq tags ( \\n (\\\"@Reading\\\" . '((\\\"E\\\" . \\\"E3\\\") (\\\"R\\\" . \\\"RDevice\\\")))\\n (\\\"@Thinking\\\" . '((\\\"E\\\" . \\\"E2\\\") (\\\"R\\\" . \\\"Rnone\\\")))\\n ;; ..\\n )\\n```\\n\\nThen we need a function which converts tags to their resources/energy:\\n\\n``` elisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n```\\n\\nHow can we implement `convert-tags-to-resources-and-energy`?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Converting org-tags into properties (recursively)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvz12r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559520969.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EContext\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI have a very strange org-mode workflow, and I don\\u0026#39;t know how better to ask this question without first explaining it. So bear with me :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EResources.\\u003C/strong\\u003E Resources are things like \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E, \\u003Ccode\\u003ERnone\\u003C/code\\u003E (for pure \\u0026quot;thinking\\u0026quot; tasks), and combinatory resources like \\u003Ccode\\u003ERDevice\\u003C/code\\u003E (defined as \\u003Ccode\\u003ERphone\\u003C/code\\u003E OR \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E). They should ultimately be placed in a bracket notation such as \\u003Ccode\\u003E[Rnone]\\u003C/code\\u003E or \\u003Ccode\\u003E[Rcomputer, Rphone]\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EEnergy.\\u003C/strong\\u003E Energy can be thought of as a real number between \\u003Ccode\\u003EE1\\u003C/code\\u003E and \\u003Ccode\\u003EE10\\u003C/code\\u003E (i.e., \\u003Ccode\\u003EE10\\u003C/code\\u003E might making a hard emotional decision, while an \\u003Ccode\\u003EE1\\u003C/code\\u003E task takes almost no effort). Energy should also ultimately be placed in brackets like \\u003Ccode\\u003E[E5]\\u003C/code\\u003E (single value) or \\u003Ccode\\u003E[E2, E6]\\u003C/code\\u003E (a range of energy).\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003ETags.\\u003C/strong\\u003E Tags are high-level wrappers for the previous two categories. For example, \\u003Ccode\\u003E@Thinking\\u003C/code\\u003E could convert to \\u003Ccode\\u003EE4\\u003C/code\\u003E and \\u003Ccode\\u003ERnone\\u003C/code\\u003E, while \\u003Ccode\\u003E@Reading\\u003C/code\\u003E might convert to \\u003Ccode\\u003EE3\\u003C/code\\u003E and \\u003Ccode\\u003ERDevice\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Ch1\\u003EProblem\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat I don\\u0026#39;t know how best to do:\\u003C/strong\\u003E programatically convert (3) into (1) and (2) in a sensible way. So, for example, I\\u0026#39;d like to have a function which can convert\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eto this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n:PROPERTIES:\\n:R: [Rnone]\\n:E: [E4]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eor more complicatedly, convert a task with two tags:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n:PROPERTIES:\\n:R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u0026gt; [Rnone], while @Reading -\\u0026gt; [RDevice] -\\u0026gt; [Rcompter, Rphone]\\n:E: [E3, E4] ; @Thinking -\\u0026gt; E3; @Reading -\\u0026gt; E4\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHow best to encode all of this in elisp?\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EAttempt\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFirst we have high level resources:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq high-level-resources (\\n (\\u0026quot;RDevice\\u0026quot; . \\u0026#39;(\\u0026quot;Rcomputer\\u0026quot; \\u0026quot;Rphone\\u0026quot;)) ;; Notice that \\u0026quot;high-level\\u0026quot; resources are capitalized while \\u0026quot;low-level\\u0026quot; resource are non-capitalized\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethen we have high-level tags (which define both a resource and an energy component):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq tags ( \\n (\\u0026quot;@Reading\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E3\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;RDevice\\u0026quot;)))\\n (\\u0026quot;@Thinking\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E2\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;Rnone\\u0026quot;)))\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen we need a function which converts tags to their resources/energy:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can we implement \\u003Ccode\\u003Econvert-tags-to-resources-and-energy\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvz12r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559492169.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvsa9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Running a fresh Emacs session with `emacs -Q`, I evaluated the following:\\n\\n (setq org-agenda-files '(\\\"~/index.org\\\"))\\n (setq org-enforce-todo-dependencies t)\\n (setq org-agenda-dim-blocked-tasks 'invisible)\\n\\nwhere `~/index.org` simply contains:\\n\\n * Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO First subheading\\n ** TODO Second subheading\\n\\nWhen I call `(org-agenda nil \\\"t\\\")` to display the available TODOs, it correctly displays only \\\"First subheading.\\\" However, if I then export that buffer with `org-agenda-write`, then the resulting file contains both \\\"First subheading\\\" and \\\"Second subheading.\\\"\\n\\nWhat is going on here, and can it be fixed?\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvs6jo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559467712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERunning a fresh Emacs session with \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E, I evaluated the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files \\u0026#39;(\\u0026quot;~/index.org\\u0026quot;))\\n(setq org-enforce-todo-dependencies t)\\n(setq org-agenda-dim-blocked-tasks \\u0026#39;invisible)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E~/index.org\\u003C/code\\u003E simply contains:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO First subheading\\n** TODO Second subheading\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I call \\u003Ccode\\u003E(org-agenda nil \\u0026quot;t\\u0026quot;)\\u003C/code\\u003E to display the available TODOs, it correctly displays only \\u0026quot;First subheading.\\u0026quot; However, if I then export that buffer with \\u003Ccode\\u003Eorg-agenda-write\\u003C/code\\u003E, then the resulting file contains both \\u0026quot;First subheading\\u0026quot; and \\u0026quot;Second subheading.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is going on here, and can it be fixed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvs6jo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559438912.0, \"media\": null, \"is_video\": false}], \"created\": 1559468360.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvsa9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bvs6jo\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvsa9b/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559439560.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"In a list of `files` I have org tasks with the property `E` such that each `E` is marked with an interval range.\\n\\n * Some task1\\n :PROPERTIES:\\n :E: [E1, E3]\\n :END:\\n\\n * Some task2\\n :PROPERTIES:\\n :E: [E4, E7]\\n :END:\\n\\n...and so forth.\\n\\n**Question:** How can I `search` through `files` and obtain an agenda view of all tasks that intersect within a range `min` to `max`?\\n\\nSo for example `(search files 3 7)` should display tasks that have, i,e., `[E2, E4]`, `[E4, E5]` or `[E6, E8]` but *not* display tasks have `[E1, E2]` or `[E8, E9]`.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Matching org tasks against an interval of values\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvqyqw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559459994.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn a list of \\u003Ccode\\u003Efiles\\u003C/code\\u003E I have org tasks with the property \\u003Ccode\\u003EE\\u003C/code\\u003E such that each \\u003Ccode\\u003EE\\u003C/code\\u003E is marked with an interval range.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Some task1\\n:PROPERTIES:\\n:E: [E1, E3]\\n:END:\\n\\n* Some task2\\n:PROPERTIES:\\n:E: [E4, E7]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E...and so forth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion:\\u003C/strong\\u003E How can I \\u003Ccode\\u003Esearch\\u003C/code\\u003E through \\u003Ccode\\u003Efiles\\u003C/code\\u003E and obtain an agenda view of all tasks that intersect within a range \\u003Ccode\\u003Emin\\u003C/code\\u003E to \\u003Ccode\\u003Emax\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for example \\u003Ccode\\u003E(search files 3 7)\\u003C/code\\u003E should display tasks that have, i,e., \\u003Ccode\\u003E[E2, E4]\\u003C/code\\u003E, \\u003Ccode\\u003E[E4, E5]\\u003C/code\\u003E or \\u003Ccode\\u003E[E6, E8]\\u003C/code\\u003E but \\u003Cem\\u003Enot\\u003C/em\\u003E display tasks have \\u003Ccode\\u003E[E1, E2]\\u003C/code\\u003E or \\u003Ccode\\u003E[E8, E9]\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvqyqw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559431194.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-src-window-setup not behaving as expected with multi-term-dedicated opened? (more info in comments) (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvavuq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559354935.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvavuq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvavuq/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvai3u/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559326135.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv747t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559335751.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv747t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559306951.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi Everyone, \\n\\nI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\n\\n\\u0026#x200B;\\n\\n (cond ((eq system-type 'windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list 'exec-path \\\"c:/cygwin64/bin/\\\")\\n (setenv \\\"PATH\\\"\\n (concat\\n \\\"c:/cygwin64/bin/aspell.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/zip.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/unzip.exe\\\" \\\";\\\"\\n (getenv \\\"PATH\\\")\\n )\\n )\\n (setq ispell-program-name \\\"aspell.exe\\\")\\n )\\n )\\n\\nThis is my \\\\*Only Windows\\\\* Configuration Part as I cant include it to the Windows PATH Variable.\\n\\nNow (org-odt-export-to-odt) has the following problem. \\n\\n\\u0026#x200B;\\n\\n OpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\n sh: unzip: command not found\\n test of Configuration.odt FAILED\\n \\n zip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n )\\n\\nAny ideas?\\n\\nJust Message me if there is more Info needed\\n\\n\\u0026#x200B;\\n\\nThanks in advance\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Win10 Org Odt Export Unzip Problem\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv54oy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559321590.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi Everyone, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(cond ((eq system-type \\u0026#39;windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list \\u0026#39;exec-path \\u0026quot;c:/cygwin64/bin/\\u0026quot;)\\n (setenv \\u0026quot;PATH\\u0026quot;\\n (concat\\n \\u0026quot;c:/cygwin64/bin/aspell.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/zip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/unzip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n (getenv \\u0026quot;PATH\\u0026quot;)\\n )\\n )\\n (setq ispell-program-name \\u0026quot;aspell.exe\\u0026quot;)\\n )\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis is my *Only Windows* Configuration Part as I cant include it to the Windows PATH Variable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow (org-odt-export-to-odt) has the following problem. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EOpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\nsh: unzip: command not found\\ntest of Configuration.odt FAILED\\n\\nzip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust Message me if there is more Info needed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv54oy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559292790.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Dear Orgers...\\n\\nI'm exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\\"Contents\\\"). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\n\\nhttps://i.redd.it/71ml0g0ikf131.png\\n\\nHow can I prevent this from happening?\\n\\nI see here 2 possibilities:\\n\\n1. the ToC title exists, but doesn't appears in the ToC itself.\\n2. There is no ToC title!\\n\\nI'm obviously searching with the wrong keywords since I'm not finding a solution to this...\\n\\nIn every case, thanks a lot for your help. :)\", \"author_fullname\": \"t2_dyrlf6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Avoid ToC entry in ToC export to pdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"71ml0g0ikf131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1210, \"x\": 918, \"u\": \"https://i.redd.it/71ml0g0ikf131.png\"}, \"m\": \"image/png\", \"id\": \"71ml0g0ikf131\"}}, \"name\": \"t3_buzxzp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559286714.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDear Orgers...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\u0026quot;Contents\\u0026quot;). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/71ml0g0ikf131.png\\\"\\u003Ehttps://i.redd.it/71ml0g0ikf131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I prevent this from happening?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI see here 2 possibilities:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Ethe ToC title exists, but doesn\\u0026#39;t appears in the ToC itself.\\u003C/li\\u003E\\n\\u003Cli\\u003EThere is no ToC title!\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m obviously searching with the wrong keywords since I\\u0026#39;m not finding a solution to this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn every case, thanks a lot for your help. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buzxzp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"edumerco\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559257914.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a `calendar.org` buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\n\\nIs this possible? Where can I start looking at this?\\n\\nThanks!\", \"author_fullname\": \"t2_3tdxdj82\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly agenda view: not show past items from certain buffers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burp9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559242335.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a \\u003Ccode\\u003Ecalendar.org\\u003C/code\\u003E buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this possible? Where can I start looking at this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burp9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mirenbe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559213535.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl9k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl5q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 71, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 71, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559241478.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl5q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burl5q/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559212678.0, \"media\": null, \"is_video\": false}], \"created\": 1559241501.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl9k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_burl5q\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burl9k/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559212701.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Any way to hide these headers/footers? It's a bit distracting with lots of small code examples.\\n\\n #+begin_src haskell\\n ...\\n #+end_src\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I hide source block header and footer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buopeh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559218136.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny way to hide these headers/footers? It\\u0026#39;s a bit distracting with lots of small code examples.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+begin_src haskell\\n...\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buopeh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559189336.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\n\\nI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\n\\nI'm pretty sure I'm overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\", \"author_fullname\": \"t2_ycu34\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Handling Github Badges in Org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buhsue\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559180889.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m pretty sure I\\u0026#39;m overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buhsue\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hardrived_\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559152089.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I add TODO to list items instead of just headers?\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Add todo to list item?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budm5j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159049.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I add TODO to list items instead of just headers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budm5j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559130249.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello!\\n\\nI'd like to use the ORDERED property but it doesn't seem to be working in the way I'd expect, so I wanted to check that my expectation is correct.\\n\\n * TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO Check contents of disks\\n ** TODO Securely wipe disks\\n ** TODO Take disks to recycling center\\n\\nWith the ORDERED property set, I figured that I wouldn't be able to mark \\\"Securely wipe disks\\\" as DONE before I had completed \\\"Check contents of disks\\\". However I can mark these items as DONE in any order I like.\\n\\nDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Possible confusion over ORDERED property\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu1tby\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559088369.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to use the ORDERED property but it doesn\\u0026#39;t seem to be working in the way I\\u0026#39;d expect, so I wanted to check that my expectation is correct.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO Check contents of disks\\n** TODO Securely wipe disks\\n** TODO Take disks to recycling center\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith the ORDERED property set, I figured that I wouldn\\u0026#39;t be able to mark \\u0026quot;Securely wipe disks\\u0026quot; as DONE before I had completed \\u0026quot;Check contents of disks\\u0026quot;. However I can mark these items as DONE in any order I like.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu1tby\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559059569.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I was wondering how one could make one entry inherit the DEADLINE of the parent. I know about `org-use-property-inheritance` but it doesn't seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\", \"author_fullname\": \"t2_q52rf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inherit DEADLINE from parent\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btzy6m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559078444.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering how one could make one entry inherit the DEADLINE of the parent. I know about \\u003Ccode\\u003Eorg-use-property-inheritance\\u003C/code\\u003E but it doesn\\u0026#39;t seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btzy6m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackjackk0\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559049644.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi y'all, this is probably a simple question for some of you, but I can't quite figure it out on my own.\\n\\nI'm trying to edit my `org-agenda-prefix-format` for an agenda view, such that:\\n\\n* If the entry has a scheduled or deadline timestamp, show the standard \\\"Deadline:\\\" / \\\"In N d.:\\\" / \\\"Scheduled:\\\" / \\\"Sched. 10 d.:\\\" strings.\\n* Otherwise, show the category\\n\\n**Example**: Agenda view\\n\\n Sunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\nIs there a way to display a conditional prefix like this?\\n\\nThe code I was tinkering with before posting looked like:\\n\\n (defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\\"sched (%s), dead (%s)\\\" is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\\" %-12s%-12t \\\"\\n \\\" %-12:c%-12t \\\")))\\n\\n ; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n (org-agenda-custom-prefix (test/custom-prefix))\\n\\nNot exactly the same as above, but it was a WIP, and the problem was that `is-scheduled` and `is-deadlined` were always both `nil` for some reason, despite the tasks having a scheduled / deadline timestamp.\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btovhk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559007583.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi y\\u0026#39;all, this is probably a simple question for some of you, but I can\\u0026#39;t quite figure it out on my own.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to edit my \\u003Ccode\\u003Eorg-agenda-prefix-format\\u003C/code\\u003E for an agenda view, such that:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf the entry has a scheduled or deadline timestamp, show the standard \\u0026quot;Deadline:\\u0026quot; / \\u0026quot;In N d.:\\u0026quot; / \\u0026quot;Scheduled:\\u0026quot; / \\u0026quot;Sched. 10 d.:\\u0026quot; strings.\\u003C/li\\u003E\\n\\u003Cli\\u003EOtherwise, show the category\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EExample\\u003C/strong\\u003E: Agenda view\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ESunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs there a way to display a conditional prefix like this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code I was tinkering with before posting looked like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\u0026quot;sched (%s), dead (%s)\\u0026quot; is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\u0026quot; %-12s%-12t \\u0026quot;\\n \\u0026quot; %-12:c%-12t \\u0026quot;)))\\n\\n; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n(org-agenda-custom-prefix (test/custom-prefix))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENot exactly the same as above, but it was a WIP, and the problem was that \\u003Ccode\\u003Eis-scheduled\\u003C/code\\u003E and \\u003Ccode\\u003Eis-deadlined\\u003C/code\\u003E were always both \\u003Ccode\\u003Enil\\u003C/code\\u003E for some reason, despite the tasks having a scheduled / deadline timestamp.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btovhk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558978783.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Not exactly sure how to phrase this question, so I'll do my best to explain what I'd like to do and why...\\n\\nI've been writing quite a few projects using literate programming via org-mode. Lately, I've been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\n\\nI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\n\\nThanks!\", \"author_fullname\": \"t2_4hzm8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using org-agenda on individual files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btdd9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558934196.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot exactly sure how to phrase this question, so I\\u0026#39;ll do my best to explain what I\\u0026#39;d like to do and why...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been writing quite a few projects using literate programming via org-mode. Lately, I\\u0026#39;ve been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btdd9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ralphbluecoat\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558905396.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I insert a string into an org file and change its appearance by using `(put-text-property start end 'font-lock-face 'my-face my-string)`, the face assignment doesn't persist after the file is saved and re-opened.\\n\\n\\u0026#x200B;\\n\\nIt also appears that I cannot use `(put-text-property start end 'face 'my-face)` in an org buffer (but it does work when the file is in fundamental mode).\\n\\n\\u0026#x200B;\\n\\nHow can I assign a persistent face to a section of an org buffer?\\n\\n\\u0026#x200B;\\n\\n(Edit: posted before I finished writing, typos.)\", \"author_fullname\": \"t2_3gjjtpnq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Persistent font changes in an org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btasp7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558892947.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558921535.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I insert a string into an org file and change its appearance by using \\u003Ccode\\u003E(put-text-property start end \\u0026#39;font-lock-face \\u0026#39;my-face my-string)\\u003C/code\\u003E, the face assignment doesn\\u0026#39;t persist after the file is saved and re-opened.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt also appears that I cannot use \\u003Ccode\\u003E(put-text-property start end \\u0026#39;face \\u0026#39;my-face)\\u003C/code\\u003E in an org buffer (but it does work when the file is in fundamental mode).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I assign a persistent face to a section of an org buffer?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Edit: posted before I finished writing, typos.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btasp7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itistheblurstoftimes\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558892735.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9f5z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'd like to better show \\\"Today\\\" in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\n\\nFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\n\\nThanks!\\n\\nMy current habit-related settings are:\\n\\n (setq org-habit-show-habits-only-for-today nil)\\n (setq org-habit-graph-column 60)\\n (setq org-habit-following-days 3)\\n\\nAlthough I don't think that they change anything to do with this question.\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9atw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558913913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d like to better show \\u0026quot;Today\\u0026quot; in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current habit-related settings are:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-habit-show-habits-only-for-today nil)\\n(setq org-habit-graph-column 60)\\n(setq org-habit-following-days 3)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAlthough I don\\u0026#39;t think that they change anything to do with this question.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9atw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1558885113.0, \"media\": null, \"is_video\": false}], \"created\": 1558914521.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9f5z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bt9atw\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558885721.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Many times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\", \"author_fullname\": \"t2_38v6e72q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Question] Paste with source format\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsnq2u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558768415.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMany times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsnq2u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GracefulToucan\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558739615.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 24, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsgj6t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558730956.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsgj6t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558702156.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"doing kanban in org mode? (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs8w8p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558677597.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs8w8p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs8w8p/doing_kanban_in_org_mode_xpost_remacs/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bs8rpm/doing_kanban_in_org_mode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558648797.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\n\\nDoes anyone of you have the same set up with a working configuration?\", \"author_fullname\": \"t2_3tjqi9un\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Has anyone set up beorg with nextcloud sucessfully?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs1jef\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558638131.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone of you have the same set up with a working configuration?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs1jef\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CuriousQuasar\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558609331.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_4utg0yv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using the Eisenhower Matrix in Emacs Org-Mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bry1c2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 18, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 18, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558609281.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"tompurl.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bry1c2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Okesa\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.tompurl.com/2015-12-29-emacs-eisenhower-matrix.html\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558580481.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The following renders with `org-toggle-latex-fragment`:\\n\\n$$\\n2+2 = 4\\n$$\\n\\nbut the following doesn't\\n\\n#+begin_latex\\n2+2 = 4\\n#+end_latex\\n\\nHow do I get the bottom to render as well?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Rendering inside \\\"#+begin_latex ... #+end_latex\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brs51i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558577715.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe following renders with \\u003Ccode\\u003Eorg-toggle-latex-fragment\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E$$\\n2+2 = 4\\n$$\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut the following doesn\\u0026#39;t\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+begin_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E2+2 = 4\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+end_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EHow do I get the bottom to render as well?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brs51i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558548915.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"When I export to pdf from org, the font is a bitmap font.\\n\\nHow can I change the export such that vector fonts will be used?\\n\\nThanks!\", \"author_fullname\": \"t2_q43ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org export to pdf: vector font instead of bitmap font\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brkczh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558528248.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I export to pdf from org, the font is a bitmap font.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I change the export such that vector fonts will be used?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brkczh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HumanBrainMapper\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558499448.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I had posted this some months ago here: https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\n\\nI've updated and added some new features to it!\\n\\nIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\n\\nIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\n\\nThe new features are: It auto generates indexes, has support for tags, header, and footer! \\n\\nRight now the main missing feature is generating the RSS.\\n\\nHere is a working example: https://ivanaf.com/org-export-head/index.html, and the source is here: https://github.com/itf/org-export-head\", \"author_fullname\": \"t2_21clngjz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Single file Blog in org mode - update\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br5iur\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558438826.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI had posted this some months ago here: \\u003Ca href=\\\"https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\\"\\u003Ehttps://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve updated and added some new features to it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe new features are: It auto generates indexes, has support for tags, header, and footer! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now the main missing feature is generating the RSS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is a working example: \\u003Ca href=\\\"https://ivanaf.com/org-export-head/index.html\\\"\\u003Ehttps://ivanaf.com/org-export-head/index.html\\u003C/a\\u003E, and the source is here: \\u003Ca href=\\\"https://github.com/itf/org-export-head\\\"\\u003Ehttps://github.com/itf/org-export-head\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br5iur\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itadeufa\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558410026.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm using spacemacs and am trying to figure out how to use the following package: [here](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el).\\n\\nIt's supposed to add mathematica support to org-babel snippets.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I use ob-mathematica.el?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br2g1m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558420778.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using spacemacs and am trying to figure out how to use the following package: \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s supposed to add mathematica support to org-babel snippets.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br2g1m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558391978.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\n\\nWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\n\\nThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\n\\n2019-05-12 \\nTask A : 3h 20m \\nTask B : 2h 5m\\n\\n2019-05-13 \\nTask A : 2h 10m \\nTask B : 1h 20m\\n\\nI've read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\", \"author_fullname\": \"t2_37uew703\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"View clock table entries by date?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bqu8sp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558379941.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-12\\u003Cbr/\\u003E\\nTask A : 3h 20m\\u003Cbr/\\u003E\\nTask B : 2h 5m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-13\\u003Cbr/\\u003E\\nTask A : 2h 10m\\u003Cbr/\\u003E\\nTask B : 1h 20m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqu8sp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OverthrowDissent\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558351141.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Have some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\n\\nbeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\n\\n\\u0026#x200B;\\n\\nBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\n\\n\\u0026#x200B;\\n\\n(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\n\\nand then format all the returns, into a working log entry I can put notes into along with some screenshots\\n\\n\\u0026#x200B;\\n\\nAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\n\\nAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\n\\n\\u0026#x200B;\\n\\nThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\n\\n\\u0026#x200B;\\n\\nadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\n\\n\\u0026#x200B;\\n\\nYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\", \"author_fullname\": \"t2_nb9r4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode / LISP Mentor or Tutor?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq9kxd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558246612.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand then format all the returns, into a working log entry I can put notes into along with some screenshots\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq9kxd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"psychocoonass\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558217812.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I'm on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\n\\nI have a lot of files in Deft that I would rather access through org-capture.\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to make the capture template selection list window (\\\"Org Select\\\") scrollable so that when you have a large number of capture templates (e.g.\\u003E 26), the display is not truncated?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq8ohl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558241466.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I\\u0026#39;m on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a lot of files in Deft that I would rather access through org-capture.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq8ohl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558212666.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 17, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpquo9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558126152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpquo9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558097352.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I see two packages: \\n\\n* https://github.com/mattduck/org-toggl-py\\n* https://github.com/mmagnus/emacs-toggl\\n\\nBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having `toggl` installed and connect to their service on task start.\\n\\nI want to log my time and send whenever I'm ready _in emacs_ using the name of the item associated with my clock entries with the ability to override/change this via properties. \\n\\norg-toggl-py has some property support, but requires exporting with external command. \\n\\nReally maybe external command is okay but wanted to see what others are using.\\n\\n\\n**Update 1**: Found https://github.com/mbork/org-toggl. Investigating...\\n\\n**Update 2**: Timer on org-toggle cannot be stopped see PR [#6](https://github.com/mbork/org-toggl/pull/6) and [#3](https://github.com/mbork/org-toggl/pull/3) \\u2013which are from 2018. Also **does not** seem to integrate with Org mode as advertised.\\n\\n**Update 3**: Tried [Fuco1's fork](https://github.com/Fuco1/org-toggl) which fixes [#6](https://github.com/mbork/org-toggl/pull/6) but Org mode integration still is not working. Went to org-toggle-py [but couldn't get it to work](https://github.com/mattduck/org-toggl-py/issues/1)\\n\\n\\nSeems like best approach is to call `toggl-start-time-entry`/`toggl-stop-time-entry ` around `org-clock-in`/`org-clock-out` and then write some export function using these. \\n\\nNot sure if it's possible to check if an export is new or requires updating. Will have to investigate Toggl's API.\", \"author_fullname\": \"t2_h8sck\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone Use Org mode With Toggl\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpjh7e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558056916.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558076490.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see two packages: \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py\\\"\\u003Ehttps://github.com/mattduck/org-toggl-py\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mmagnus/emacs-toggl\\\"\\u003Ehttps://github.com/mmagnus/emacs-toggl\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having \\u003Ccode\\u003Etoggl\\u003C/code\\u003E installed and connect to their service on task start.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to log my time and send whenever I\\u0026#39;m ready \\u003Cem\\u003Ein emacs\\u003C/em\\u003E using the name of the item associated with my clock entries with the ability to override/change this via properties. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorg-toggl-py has some property support, but requires exporting with external command. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReally maybe external command is okay but wanted to see what others are using.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 1\\u003C/strong\\u003E: Found \\u003Ca href=\\\"https://github.com/mbork/org-toggl\\\"\\u003Ehttps://github.com/mbork/org-toggl\\u003C/a\\u003E. Investigating...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 2\\u003C/strong\\u003E: Timer on org-toggle cannot be stopped see PR \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E and \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/3\\\"\\u003E#3\\u003C/a\\u003E \\u2013which are from 2018. Also \\u003Cstrong\\u003Edoes not\\u003C/strong\\u003E seem to integrate with Org mode as advertised.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 3\\u003C/strong\\u003E: Tried \\u003Ca href=\\\"https://github.com/Fuco1/org-toggl\\\"\\u003EFuco1\\u0026#39;s fork\\u003C/a\\u003E which fixes \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E but Org mode integration still is not working. Went to org-toggle-py \\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py/issues/1\\\"\\u003Ebut couldn\\u0026#39;t get it to work\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESeems like best approach is to call \\u003Ccode\\u003Etoggl-start-time-entry\\u003C/code\\u003E/\\u003Ccode\\u003Etoggl-stop-time-entry\\u003C/code\\u003E around \\u003Ccode\\u003Eorg-clock-in\\u003C/code\\u003E/\\u003Ccode\\u003Eorg-clock-out\\u003C/code\\u003E and then write some export function using these. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot sure if it\\u0026#39;s possible to check if an export is new or requires updating. Will have to investigate Toggl\\u0026#39;s API.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpjh7e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sshaw_\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558047690.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to find an note taking website that I can used to stay organized on computers that don't have emacs.\\n\\nAll of the online note taking apps I have found like SimpleNote or \\\"Tutrl\\\" can only understand markdown.\\n\\nIs there any note taking web service that can understand and edit org files like markdown.\\n\\n\\n\\nI have my own server so I can host my own app if necessary.\", \"author_fullname\": \"t2_gm7cp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Looking for a Evernote-like note taking web app that can understand org-files\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bp8uw7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558013986.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to find an note taking website that I can used to stay organized on computers that don\\u0026#39;t have emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll of the online note taking apps I have found like SimpleNote or \\u0026quot;Tutrl\\u0026quot; can only understand markdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any note taking web service that can understand and edit org files like markdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have my own server so I can host my own app if necessary.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bp8uw7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CeamoreCash\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bp8uw7/looking_for_a_evernotelike_note_taking_web_app/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bp8uw7/looking_for_a_evernotelike_note_taking_web_app/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557985186.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have made a function which \\\"intelligently\\\" inserts a new heading, TODO, list item, or checkbox based on the the type of the current entry at the point. I find it quite useful, so I thought would share it here.\\n\\nWhen inserting new headings/items into an org subtree, I don't like having to remember which command to use based on whether the current entry is a heading (`C-RET`), a TODO (`C-S-RET`), a list item (`M-x org-insert-item`), or a checkbox (`C-u M-x org-insert-item`). I also don't like that the behavior changes depending on whether the point is at the beginning of the line. \\n\\nBased on these requirements, I made the function `sbr-org-insert-dwim` listed below. It is highly opinionated based on my use preferences:\\n\\n* Lines are never split (for the duration of the command, `org-M-RET-may-split-line` is set to nil). If I really need to split the line, I can either do `C-k sbr-org-insert-dwim C-y` or use the built in `M-RET` or `M-S-RET`\\n* The behavior of `sbr-org-insert-dwim` is the same regardless of where the point is on the current line, on the asterisks/dash, at the beginning/middle/end of the entry, or even if the point is after ellipses (i.e. the subtree of the current entry is hidden). The builtin commands `org-insert-heading` and `org-insert-item` have unspecified behavior when used after ellipses.\\n* By default, the new entry in inserted below the current subtree/item. With the prefix `C-u`, the entry is inserted before the current entry and the end of previous subtree (similar to `C-u C-u org-insert-heading`). The inserted entry never breaks up a subtree, which in my opinion, would break the abstraction of the subtree hierarchy. In order to break up and edit subtree structure, I use the `M-\\u003Carrow\\u003E` commands.\\n* If the point is above the first heading, simply insert a level-1 heading. When used above the first heading, `C-RET` (`org-insert-heading-respect-content`) confusingly converts:\\n\\n\\u0026#8203;\\n\\n \\u003E \\u003C\\n * First Heading \\n Something Something\\n Something Something\\n\\ninto:\\n\\n \\n * \\u003E*\\u003C First Heading \\n Something Something\\n Something Something\\n\\nwhere `\\u003E \\u003C` is the point.\\n\\nSince `S-RET` is bound to `org-table-copy-down`, which only works in a table, I made a function `sbr-org-shift-return` that enables me to use `sbr-org-insert-dwim` outside of tables, while preserving the default behavior.\\n\\nThe code is listed below. It's a little more complicated then I would like in order for it to handle all the edge cases (e.g., point after ellipses or before the first heading), and also because the org insert functions don't behave uniformly. For example `org-insert-todo-heading` inserts a checkbox if the point is on a list item, but `org-insert-heading` doesn't similarly insert a list item when the point is on a list item (even though its documentation claims that it does). Any suggestions for streamlining this code are welcome!\\n\\n (defun sbr-org-insert-dwim (\\u0026optional arg)\\n \\\"Insert another entry of the same type as the current\\n entry. For example, if the point is on a list item, then add\\n another list item of the same type, and if the point is on a\\n checkbox list item, then add an empty checkbox item. If instead\\n the point is in a heading, then add another heading. If the point \\n is in a TODO heading, then add another TODO heading (set to the \\n TODO state). \\n \\n By default, the new entry is inserted below the current\\n subtree/item. With a 'C-u' prefix, insert the entry above the\\n current heading/item instead.\\\"\\n (interactive \\\"P\\\")\\n (when (eq major-mode 'org-mode)\\n (let ((org-special-ctrl-a/e t)\\n (below? (unless (equal arg '(4)) '(4))))\\n ;; hack to ensure that the point is not after ellipses because\\n ;; that would mess up org-at-item-p etc.\\n (org-beginning-of-line)\\n (cond ((org-at-item-p) ;; at list item or checkbox\\n (let ((org-M-RET-may-split-line nil)\\n (org-enable-sort-checkbox nil))\\n ;; hack to make item be inserted after the current one\\n ;; doesn't work if we are on an empty item line\\n (when below?\\n (org-end-of-line)) \\n (org-insert-item (org-at-item-checkbox-p))))\\n ((org-before-first-heading-p) ;; above first heading\\n (org-insert-heading))\\n (t ;; in some kind of heading\\n (org-back-to-heading)\\n (if (org-get-todo-state)\\n ;; at TODO heading\\n (org-insert-todo-heading t below?)\\n ;; at non-TODO heading \\n (org-insert-heading below?)))))))\\n \\n (defun sbr-org-shift-return (\\u0026optional arg)\\n \\\"If point is at a table, copy the table cell downward (i.e.,\\n the usual effect of typing S-RET). Otherwise, insert the same\\n kind of heading or item as the current entry containing the\\n point. \\\"\\n (interactive \\\"P\\\")\\n (if (org-at-table-p)\\n (org-table-copy-down (prefix-numeric-value arg))\\n (sbr-org-insert-dwim arg)))\\n \\n (bind-keys :map org-mode-map (\\\"\\u003CS-return\\u003E\\\" . sbr-org-insert-dwim))\", \"author_fullname\": \"t2_7nfrv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"function for DWIM insertion of new entries\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_boyu8r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557960504.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have made a function which \\u0026quot;intelligently\\u0026quot; inserts a new heading, TODO, list item, or checkbox based on the the type of the current entry at the point. I find it quite useful, so I thought would share it here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen inserting new headings/items into an org subtree, I don\\u0026#39;t like having to remember which command to use based on whether the current entry is a heading (\\u003Ccode\\u003EC-RET\\u003C/code\\u003E), a TODO (\\u003Ccode\\u003EC-S-RET\\u003C/code\\u003E), a list item (\\u003Ccode\\u003EM-x org-insert-item\\u003C/code\\u003E), or a checkbox (\\u003Ccode\\u003EC-u M-x org-insert-item\\u003C/code\\u003E). I also don\\u0026#39;t like that the behavior changes depending on whether the point is at the beginning of the line. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBased on these requirements, I made the function \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E listed below. It is highly opinionated based on my use preferences:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ELines are never split (for the duration of the command, \\u003Ccode\\u003Eorg-M-RET-may-split-line\\u003C/code\\u003E is set to nil). If I really need to split the line, I can either do \\u003Ccode\\u003EC-k sbr-org-insert-dwim C-y\\u003C/code\\u003E or use the built in \\u003Ccode\\u003EM-RET\\u003C/code\\u003E or \\u003Ccode\\u003EM-S-RET\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EThe behavior of \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E is the same regardless of where the point is on the current line, on the asterisks/dash, at the beginning/middle/end of the entry, or even if the point is after ellipses (i.e. the subtree of the current entry is hidden). The builtin commands \\u003Ccode\\u003Eorg-insert-heading\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-insert-item\\u003C/code\\u003E have unspecified behavior when used after ellipses.\\u003C/li\\u003E\\n\\u003Cli\\u003EBy default, the new entry in inserted below the current subtree/item. With the prefix \\u003Ccode\\u003EC-u\\u003C/code\\u003E, the entry is inserted before the current entry and the end of previous subtree (similar to \\u003Ccode\\u003EC-u C-u org-insert-heading\\u003C/code\\u003E). The inserted entry never breaks up a subtree, which in my opinion, would break the abstraction of the subtree hierarchy. In order to break up and edit subtree structure, I use the \\u003Ccode\\u003EM-\\u0026lt;arrow\\u0026gt;\\u003C/code\\u003E commands.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf the point is above the first heading, simply insert a level-1 heading. When used above the first heading, \\u003Ccode\\u003EC-RET\\u003C/code\\u003E (\\u003Ccode\\u003Eorg-insert-heading-respect-content\\u003C/code\\u003E) confusingly converts:\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#8203;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E \\u0026gt; \\u0026lt;\\n* First Heading \\nSomething Something\\nSomething Something\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Einto:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* \\u0026gt;*\\u0026lt; First Heading \\nSomething Something\\nSomething Something\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E\\u0026gt; \\u0026lt;\\u003C/code\\u003E is the point.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince \\u003Ccode\\u003ES-RET\\u003C/code\\u003E is bound to \\u003Ccode\\u003Eorg-table-copy-down\\u003C/code\\u003E, which only works in a table, I made a function \\u003Ccode\\u003Esbr-org-shift-return\\u003C/code\\u003E that enables me to use \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E outside of tables, while preserving the default behavior.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code is listed below. It\\u0026#39;s a little more complicated then I would like in order for it to handle all the edge cases (e.g., point after ellipses or before the first heading), and also because the org insert functions don\\u0026#39;t behave uniformly. For example \\u003Ccode\\u003Eorg-insert-todo-heading\\u003C/code\\u003E inserts a checkbox if the point is on a list item, but \\u003Ccode\\u003Eorg-insert-heading\\u003C/code\\u003E doesn\\u0026#39;t similarly insert a list item when the point is on a list item (even though its documentation claims that it does). Any suggestions for streamlining this code are welcome!\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun sbr-org-insert-dwim (\\u0026amp;optional arg)\\n \\u0026quot;Insert another entry of the same type as the current\\nentry. For example, if the point is on a list item, then add\\nanother list item of the same type, and if the point is on a\\ncheckbox list item, then add an empty checkbox item. If instead\\nthe point is in a heading, then add another heading. If the point \\nis in a TODO heading, then add another TODO heading (set to the \\nTODO state). \\n\\nBy default, the new entry is inserted below the current\\nsubtree/item. With a \\u0026#39;C-u\\u0026#39; prefix, insert the entry above the\\ncurrent heading/item instead.\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (when (eq major-mode \\u0026#39;org-mode)\\n (let ((org-special-ctrl-a/e t)\\n (below? (unless (equal arg \\u0026#39;(4)) \\u0026#39;(4))))\\n ;; hack to ensure that the point is not after ellipses because\\n ;; that would mess up org-at-item-p etc.\\n (org-beginning-of-line)\\n (cond ((org-at-item-p) ;; at list item or checkbox\\n (let ((org-M-RET-may-split-line nil)\\n (org-enable-sort-checkbox nil))\\n ;; hack to make item be inserted after the current one\\n ;; doesn\\u0026#39;t work if we are on an empty item line\\n (when below?\\n (org-end-of-line)) \\n (org-insert-item (org-at-item-checkbox-p))))\\n ((org-before-first-heading-p) ;; above first heading\\n (org-insert-heading))\\n (t ;; in some kind of heading\\n (org-back-to-heading)\\n (if (org-get-todo-state)\\n ;; at TODO heading\\n (org-insert-todo-heading t below?)\\n ;; at non-TODO heading \\n (org-insert-heading below?)))))))\\n\\n(defun sbr-org-shift-return (\\u0026amp;optional arg)\\n \\u0026quot;If point is at a table, copy the table cell downward (i.e.,\\nthe usual effect of typing S-RET). Otherwise, insert the same\\nkind of heading or item as the current entry containing the\\npoint. \\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (if (org-at-table-p)\\n (org-table-copy-down (prefix-numeric-value arg))\\n (sbr-org-insert-dwim arg)))\\n\\n(bind-keys :map org-mode-map (\\u0026quot;\\u0026lt;S-return\\u0026gt;\\u0026quot; . sbr-org-insert-dwim))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"boyu8r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cottasteel\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557931704.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello! I have a question regarding org-agenda. I just updated org-mode 9.2.3 on Emacs 26.1 and I have a problem with the location of the org-agenda tags. First (before the upgrade) I had them on the right, now automatically they always appear on a new line (in all agenda views). Do you know how I can go back to having tags on the right?\", \"author_fullname\": \"t2_3rz1w0lq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-agenda and tags position\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_boymdt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557959366.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello! I have a question regarding org-agenda. I just updated org-mode 9.2.3 on Emacs 26.1 and I have a problem with the location of the org-agenda tags. First (before the upgrade) I had them on the right, now automatically they always appear on a new line (in all agenda views). Do you know how I can go back to having tags on the right?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"boymdt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cyberl3o\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557930566.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 03 Hyperlinks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5yvk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 28, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 28, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 03 Hyperlinks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5wkl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 40, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 40, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557794720.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5wkl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bo5wkl/orgmode_hidden_gems_03_hyperlinks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt3/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1557765920.0, \"media\": null, \"is_video\": false}], \"created\": 1557795022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5yvk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bo5wkl\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo5yvk/orgmode_hidden_gems_03_hyperlinks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt3/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557766222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a main directory of all my org-files. I want to be able to export any part of an org-file to markdown in a a separate `/exports` folder (rather than cluttering up my main directory). \\n\\nI know I can constantly set my export file name property, but that becomes cumbersome. I'd like to be able to just set this up once and be done with it. \\n\\nMost of the guides out there on publishing are about setting up a full blogging system with jeckyll or something similar and it's giving me way more information than I need. \\n\\nI think the main thing I need to do is set up the projects alist? What would that look like for a simple scenario like this? Thanks for any help.\", \"author_fullname\": \"t2_130p93\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help Setting Up a Simple Export Folder\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5ly1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557793341.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a main directory of all my org-files. I want to be able to export any part of an org-file to markdown in a a separate \\u003Ccode\\u003E/exports\\u003C/code\\u003E folder (rather than cluttering up my main directory). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know I can constantly set my export file name property, but that becomes cumbersome. I\\u0026#39;d like to be able to just set this up once and be done with it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMost of the guides out there on publishing are about setting up a full blogging system with jeckyll or something similar and it\\u0026#39;s giving me way more information than I need. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think the main thing I need to do is set up the projects alist? What would that look like for a simple scenario like this? Thanks for any help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5ly1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ManiacMcCree\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo5ly1/help_setting_up_a_simple_export_folder/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bo5ly1/help_setting_up_a_simple_export_folder/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557764541.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI would like to link to my emails from Orgmode, but it seems like I'm missing something.\\n\\nI followed the tutorial here:\\n\\n[https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts](https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts)\\n\\n\\u0026#x200B;\\n\\nAnd added this to my .emacs file:\\n\\n\\u0026#x200B;\\n\\n (require 'org)\\n \\n (org-add-link-type \\\"thunderlink\\\" 'org-thunderlink-open)\\n (defun org-thunderlink-open (path)\\n \\\"Opens a specified email in Thunderbird with the help of the add-on\\n ThunderLink.\\\"\\n (start-process \\\"myname\\\" nil \\\"thunderbird\\\" \\\"-thunderlink\\\" (concat\\n \\\"thunderlink:\\\" path)))\\n \\n (provide 'org-thunderlink)\\n\\n\\u0026#x200B;\\n\\nBut it does not seems to work. When I click on a link I have an error message: \\\"No match-create this as a new heading\\\"\\n\\n\\u0026#x200B;\\n\\nDoes anyone managed to get it to work?\\n\\nMany thanks in advance\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Link to email in Thunderbird from orgmode with Thunderlink extension\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo13sc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1557739179.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557767182.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to link to my emails from Orgmode, but it seems like I\\u0026#39;m missing something.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI followed the tutorial here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts\\\"\\u003Ehttps://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd added this to my .emacs file:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;org)\\n\\n(org-add-link-type \\u0026quot;thunderlink\\u0026quot; \\u0026#39;org-thunderlink-open)\\n(defun org-thunderlink-open (path)\\n\\u0026quot;Opens a specified email in Thunderbird with the help of the add-on\\nThunderLink.\\u0026quot;\\n(start-process \\u0026quot;myname\\u0026quot; nil \\u0026quot;thunderbird\\u0026quot; \\u0026quot;-thunderlink\\u0026quot; (concat\\n\\u0026quot;thunderlink:\\u0026quot; path)))\\n\\n(provide \\u0026#39;org-thunderlink)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut it does not seems to work. When I click on a link I have an error message: \\u0026quot;No match-create this as a new heading\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone managed to get it to work?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo13sc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo13sc/link_to_email_in_thunderbird_from_orgmode_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bo13sc/link_to_email_in_thunderbird_from_orgmode_with/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557738382.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I create an elisp function that refiles the current header at point (and all of its children) to the ID `id`, but such that instead of just placing the header directly under `id`, it places it under its subheading of name `subheading` (whether or not `subheading` exists yet)?\\n\\nSo for example if I have\\n\\n```org-mode\\n* A heading\\n```\\n\\nhow can I refile this to\\n\\n```org-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n```\\n\\n\\nso that the end result will look like\\n\\n```org-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n** subheading\\n*** A heading\\n```\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Refiling header to a new sub-header?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bni3ll\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557643814.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I create an elisp function that refiles the current header at point (and all of its children) to the ID \\u003Ccode\\u003Eid\\u003C/code\\u003E, but such that instead of just placing the header directly under \\u003Ccode\\u003Eid\\u003C/code\\u003E, it places it under its subheading of name \\u003Ccode\\u003Esubheading\\u003C/code\\u003E (whether or not \\u003Ccode\\u003Esubheading\\u003C/code\\u003E exists yet)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for example if I have\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* A heading\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ehow can I refile this to\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eso that the end result will look like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n** subheading\\n*** A heading\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bni3ll\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bni3ll/refiling_header_to_a_new_subheader/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bni3ll/refiling_header_to_a_new_subheader/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557615014.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"**Question:** How can I retrieve, over a set of files `S` (in particular: over my agenda files + their archive files) the total time clocked (as the return value of an elisp function; not as a clock table)? So for example, if I have:\\n\\n```org-mode\\n* SATISFICED Header1\\n CLOSED: [2019-05-01 Wed 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-01 Sat 18:10]--[2019-05-01 Sat 18:30] =\\u003E 0:20\\n :END:\\n\\n# File2\\n* SATISFICED Header2\\n CLOSED: [2019-05-11 Sat 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:11] =\\u003E 0:01\\n :END:\\n* SATISFICED Header3\\n CLOSED: [2019-05-11 Sat 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:20] =\\u003E 0:10\\n :END:\\n```\\n\\nI'd like to run a function like `(sum--all-time-from \\\"[2019-05-10]\\\" \\\"[2019-05-12]\\\")` to get as answer ~0:11~.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Retrieve the total time CLOCKED over a given interval\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnhu7v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557642259.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion:\\u003C/strong\\u003E How can I retrieve, over a set of files \\u003Ccode\\u003ES\\u003C/code\\u003E (in particular: over my agenda files + their archive files) the total time clocked (as the return value of an elisp function; not as a clock table)? So for example, if I have:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```org-mode\\n* SATISFICED Header1\\n CLOSED: [2019-05-01 Wed 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-01 Sat 18:10]--[2019-05-01 Sat 18:30] =\\u0026gt; 0:20\\n :END:\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EFile2\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESATISFICED Header2\\nCLOSED: [2019-05-11 Sat 18:13]\\n:LOGBOOK:\\nCLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:11] =\\u0026gt; 0:01\\n:END:\\u003C/li\\u003E\\n\\u003Cli\\u003ESATISFICED Header3\\nCLOSED: [2019-05-11 Sat 18:13]\\n:LOGBOOK:\\nCLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:20] =\\u0026gt; 0:10\\n:END:\\n```\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to run a function like \\u003Ccode\\u003E(sum--all-time-from \\u0026quot;[2019-05-10]\\u0026quot; \\u0026quot;[2019-05-12]\\u0026quot;)\\u003C/code\\u003E to get as answer ~0:11~.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnhu7v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bnhu7v/retrieve_the_total_time_clocked_over_a_given/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bnhu7v/retrieve_the_total_time_clocked_over_a_given/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557613459.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems 2 - Tables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnbtfg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 24, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 24, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems 2 - Tables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnbdye\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 86, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 86, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557605382.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnbdye\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 24, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bnbdye/orgmode_hidden_gems_2_tables/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1557576582.0, \"media\": null, \"is_video\": false}], \"created\": 1557608502.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnbtfg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bnbdye\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bnbtfg/orgmode_hidden_gems_2_tables/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557579702.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to get started with ox-beamer.\\n\\nI use the basic config:\\n\\n (require 'ox-latex)\\n (add-to-list 'org-latex-classes\\n '(\\\"beamer\\\"\\n \\\"\\\\\\\\documentclass\\\\[presentation\\\\]\\\\{beamer\\\\}\\\"\\n (\\\"\\\\\\\\section\\\\{%s\\\\}\\\" . \\\"\\\\\\\\section*\\\\{%s\\\\}\\\")\\n (\\\"\\\\\\\\subsection\\\\{%s\\\\}\\\" . \\\"\\\\\\\\subsection*\\\\{%s\\\\}\\\")\\n (\\\"\\\\\\\\subsubsection\\\\{%s\\\\}\\\" . \\\"\\\\\\\\subsubsection*\\\\{%s\\\\}\\\")))\\n\\n\\u0026#x200B;\\n\\nFirst, I want to reproduce [https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org](https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org)\\n\\nBut even on this basic example, I fail to get the correct sectioning into frames.\\n\\n[https://www.scribd.com/document/409442757/Beamer-Example](https://www.scribd.com/document/409442757/Beamer-Example)\\n\\n\\u0026#x200B;\\n\\nAny idea what's wrong?\", \"author_fullname\": \"t2_2b6wlz4w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Issue with ox-beamer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmy4qe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557522795.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to get started with ox-beamer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use the basic config:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;ox-latex)\\n(add-to-list \\u0026#39;org-latex-classes\\n \\u0026#39;(\\u0026quot;beamer\\u0026quot;\\n \\u0026quot;\\\\\\\\documentclass\\\\[presentation\\\\]\\\\{beamer\\\\}\\u0026quot;\\n (\\u0026quot;\\\\\\\\section\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\section*\\\\{%s\\\\}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsection\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\subsection*\\\\{%s\\\\}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsubsection\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\subsubsection*\\\\{%s\\\\}\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, I want to reproduce \\u003Ca href=\\\"https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org\\\"\\u003Ehttps://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut even on this basic example, I fail to get the correct sectioning into frames.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.scribd.com/document/409442757/Beamer-Example\\\"\\u003Ehttps://www.scribd.com/document/409442757/Beamer-Example\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny idea what\\u0026#39;s wrong?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmy4qe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hagetarou\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmy4qe/issue_with_oxbeamer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bmy4qe/issue_with_oxbeamer/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557493995.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 10, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmxvlv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557521353.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmxvlv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmxvlv/weekly_rorgmode_open_discussion_may_10_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bmxvlv/weekly_rorgmode_open_discussion_may_10_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557492553.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmxv6e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 45, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 45, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmwec1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 139, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 139, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {\"gid_1\": 1}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557511141.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Silver Award\", \"coin_reward\": 0, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/silver_512.png\", \"days_of_premium\": 0, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 100, \"id\": \"gid_1\", \"name\": \"Silver\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmwec1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 21, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bmwec1/orgmode_hidden_gems/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt1/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1557482341.0, \"media\": null, \"is_video\": false}], \"created\": 1557521280.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmxv6e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bmwec1\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmxv6e/orgmode_hidden_gems/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt1/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557492480.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\n\\u0026#x200B;\\n\\nI have an org-file with several code blocks. Is there any way to run all of them at once instead of having to access each one individually and run c-c to make them execute?\", \"author_fullname\": \"t2_cc87w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Execute all code blocks at once\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bm856i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557365469.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have an org-file with several code blocks. Is there any way to run all of them at once instead of having to access each one individually and run c-c to make them execute?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bm856i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eljuman\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bm856i/execute_all_code_blocks_at_once/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bm856i/execute_all_code_blocks_at_once/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557336669.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I've been using org mode for task management for several months. I'm trying to transition into using it for note taking but I've found a recurrent error with the tables in org mode.\\n\\nIf I have a table with a column set to a short width, and then increase the size of the column to a width that is still shorter than the content of the longest cell in the column I get an error as shown below.\\n\\n\\u0026#x200B;\\n\\nI'm using Windows 10; GNU Emacs 26.1 (build 1, x86\\\\_64-w64-mingw32) of 2018-05-30; and Org mode version 9.1.9 (release\\\\_9.1.9-65-g5e4542 @ c:/Users/mccombsp/emacs/share/emacs/26.1/lisp/org/)\\n\\n\\u0026#x200B;\\n\\nEDIT:\\n\\nI duplicated the error on MacOs 10.14.4; GNU Emacs 26.1 (build 1, x86\\\\_64-apple-darwin14.5.0, NS appkit-1348.17 Version 10.10.5 (Build 14F2511)) of 2018-05-30; and Org mode version 9.1.9 (release\\\\_9.1.9-65-g5e4542 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)\\n\\n\\u0026#x200B;\\n\\n | short | short | long text that goes on and on and on and on |\\n | short | short | not so long text that only goes on |\\n | short | short | short |\\n | | | \\u003C5\\u003E |\\n \\n The above table works fine.\\n \\n | short | short | long text that goes on and on and on and on |\\n | short | short | not so long text that only goes on |\\n | short | short | short |\\n | | | \\u003C10\\u003E |\\n \\n The above table will work but only if I remove the width entirely first.\\n\\nEither table above table works fine. But if I change the the last cell from \\u003C5\\u003E to \\u003C10\\u003E I get the following emacs lisp error, and it doesn't adjust the table.\\n\\n org-table-next-field: Args out of range: #(\\\"long text that goes on and on and on and on\\\" 0 3 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 3 4 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 4 5 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 5 9 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 9 14 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 14 19 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 19 22 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 22 26 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 26 29 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 29 33 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 33 36 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 36 40 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 40 43 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth)), 0, 44\", \"author_fullname\": \"t2_3kfzu0nx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Error on increasing width of table columns\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_blz7uj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1557279529.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557308015.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been using org mode for task management for several months. I\\u0026#39;m trying to transition into using it for note taking but I\\u0026#39;ve found a recurrent error with the tables in org mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I have a table with a column set to a short width, and then increase the size of the column to a width that is still shorter than the content of the longest cell in the column I get an error as shown below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using Windows 10; GNU Emacs 26.1 (build 1, x86_64-w64-mingw32) of 2018-05-30; and Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ c:/Users/mccombsp/emacs/share/emacs/26.1/lisp/org/)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI duplicated the error on MacOs 10.14.4; GNU Emacs 26.1 (build 1, x86_64-apple-darwin14.5.0, NS appkit-1348.17 Version 10.10.5 (Build 14F2511)) of 2018-05-30; and Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E| short | short | long text that goes on and on and on and on |\\n| short | short | not so long text that only goes on |\\n| short | short | short |\\n| | | \\u0026lt;5\\u0026gt; |\\n\\nThe above table works fine.\\n\\n| short | short | long text that goes on and on and on and on |\\n| short | short | not so long text that only goes on |\\n| short | short | short |\\n| | | \\u0026lt;10\\u0026gt; |\\n\\nThe above table will work but only if I remove the width entirely first.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EEither table above table works fine. But if I change the the last cell from \\u0026lt;5\\u0026gt; to \\u0026lt;10\\u0026gt; I get the following emacs lisp error, and it doesn\\u0026#39;t adjust the table.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eorg-table-next-field: Args out of range: #(\\u0026quot;long text that goes on and on and on and on\\u0026quot; 0 3 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 3 4 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 4 5 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 5 9 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 9 14 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 14 19 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 19 22 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 22 26 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 26 29 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 29 33 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 33 36 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 36 40 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 40 43 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth)), 0, 44\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blz7uj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paulmccombs\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/blz7uj/error_on_increasing_width_of_table_columns/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/blz7uj/error_on_increasing_width_of_table_columns/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557279215.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3m2tic11\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Run C-c C-c fixups everywhere in a file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_blvp48\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557289465.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blvp48\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"telotortium\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/blvp48/run_cc_cc_fixups_everywhere_in_a_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/blvk82/run_cc_cc_fixups_everywhere_in_a_file/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557260665.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"https://gitlab.com/kisaragi-hiu/org-msr\\n\\nWhile trying to remember vocabulary words using Org, I thought it would be interesting if I use todo keywords and add schedules based on them to implement spaced repetition.\\n\\nI haven't used it for too long^[1] , but I made it its own package since there's too much to just stuff in my init. If this approach works, I hope this can serve as some sort of reference on how this can be done as well.\\n\\nThe package provides a function to update schedule based on the todo keyword, according to an alist (`org-msr-keyword-frequency-alist`). It also provides a minor mode that runs the function after `org-todo`).\\n\\nPlease check it out!\\n\\n[1]\\\\: The aforementioned org file is 6 days old currently (2019-05-05).\", \"author_fullname\": \"t2_10cocd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-msr: Minimal Spaced Repetition with todo keywords\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkxsd1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"elisp library\", \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557092245.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://gitlab.com/kisaragi-hiu/org-msr\\\"\\u003Ehttps://gitlab.com/kisaragi-hiu/org-msr\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile trying to remember vocabulary words using Org, I thought it would be interesting if I use todo keywords and add schedules based on them to implement spaced repetition.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t used it for too long\\u003Csup\\u003E[1]\\u003C/sup\\u003E , but I made it its own package since there\\u0026#39;s too much to just stuff in my init. If this approach works, I hope this can serve as some sort of reference on how this can be done as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe package provides a function to update schedule based on the todo keyword, according to an alist (\\u003Ccode\\u003Eorg-msr-keyword-frequency-alist\\u003C/code\\u003E). It also provides a minor mode that runs the function after \\u003Ccode\\u003Eorg-todo\\u003C/code\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease check it out!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[1]: The aforementioned org file is 6 days old currently (2019-05-05).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"698f39e4-c2ff-11e8-9e96-0e341354a6a2\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkxsd1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"flyin1501\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bkxsd1/orgmsr_minimal_spaced_repetition_with_todo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bkxsd1/orgmsr_minimal_spaced_repetition_with_todo/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557063445.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode with Spacemacs: The Absolute Minimum\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkfckb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"article\", \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode with Spacemacs: The Absolute Minimum\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkfare\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 53, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Org mode and Spacemacs: The Absolute Minimum you need to know\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Jack of Some\", \"thumbnail_height\": 360, \"thumbnail_url\": \"https://i.ytimg.com/vi/S4f-GUxu3CY/hqdefault.jpg\", \"type\": \"video\", \"provider_name\": \"YouTube\", \"author_url\": \"https://www.youtube.com/channel/UCe6ABcJkH_Gso9HJOt4x9fg\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bkfare\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 53, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556957136.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkfare\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jack-of-some\", \"num_crossposts\": 4, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bkfare/org_mode_with_spacemacs_the_absolute_minimum/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/S4f-GUxu3CY\", \"subreddit_subscribers\": 29865, \"created_utc\": 1556928336.0, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Org mode and Spacemacs: The Absolute Minimum you need to know\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Jack of Some\", \"thumbnail_height\": 360, \"thumbnail_url\": \"https://i.ytimg.com/vi/S4f-GUxu3CY/hqdefault.jpg\", \"type\": \"video\", \"provider_name\": \"YouTube\", \"author_url\": \"https://www.youtube.com/channel/UCe6ABcJkH_Gso9HJOt4x9fg\"}, \"type\": \"youtube.com\"}, \"is_video\": false}], \"created\": 1556957464.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c5c6b84c-c2fd-11e8-a9b1-0ea723e3b826\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkfckb\", \"is_robot_indexable\": true, \"stickied\": false, \"author\": \"jack-of-some\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bkfare\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bkfckb/org_mode_with_spacemacs_the_absolute_minimum/\", \"parent_whitelist_status\": null, \"report_reasons\": null, \"url\": \"https://youtu.be/S4f-GUxu3CY\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556928664.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 03, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bk83wf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556916567.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bk83wf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bk83wf/weekly_rorgmode_open_discussion_may_03_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bk83wf/weekly_rorgmode_open_discussion_may_03_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556887767.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Does anyone have experience trying to share Emacs/org-mode with outsiders? \\n\\nI do realize how easily it is for me to sound like an evangelist when it comes to expressing my thoughts about the utility of a \\\"second brain\\\" on your computer, but I have been wondering on what aspects of the org-mode experience are most appealing to people who have mild interests in becoming more productive.\\n\\nPersonally, I tend to default to the \\\"don't ask don't tell\\\" approach when it comes to my deeper interests, but there seems to be something about this integration with technology that I wish I was taught about in school and thus, I feel a need to inform others. \\n\\nAll of this is not to forget that certain systems aren't suitable for all people, but I'm curious to know if anyone has a practiced \\\"elevator pitch\\\" for Emacs and org-mode? How do you go about sharing this, if you even do it at all? \\n\\nThanks\", \"author_fullname\": \"t2_w32dym0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sharing org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjyhvh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556851291.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone have experience trying to share Emacs/org-mode with outsiders? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI do realize how easily it is for me to sound like an evangelist when it comes to expressing my thoughts about the utility of a \\u0026quot;second brain\\u0026quot; on your computer, but I have been wondering on what aspects of the org-mode experience are most appealing to people who have mild interests in becoming more productive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPersonally, I tend to default to the \\u0026quot;don\\u0026#39;t ask don\\u0026#39;t tell\\u0026quot; approach when it comes to my deeper interests, but there seems to be something about this integration with technology that I wish I was taught about in school and thus, I feel a need to inform others. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll of this is not to forget that certain systems aren\\u0026#39;t suitable for all people, but I\\u0026#39;m curious to know if anyone has a practiced \\u0026quot;elevator pitch\\u0026quot; for Emacs and org-mode? How do you go about sharing this, if you even do it at all? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjyhvh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"swarmalator\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjyhvh/sharing_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjyhvh/sharing_orgmode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556822491.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, \\n\\n\\u0026#x200B;\\n\\nI'm using orgmode + komascript to generate pdf from org-mode. It seems very handy.\\n\\nHowever, I would like to be able to store some \\\"profiles\\\" and then include it in my letter.\\n\\nExample: \\nA profile for personal letters which would include my personal address\\n\\nA profile for professional letters, which would include my office address\\n\\nIt seems like it is possible with LCO files but the documentation is not very clear about that.\\n\\n\\u0026#x200B;\\n\\nDoes anyone have experience with that?\\n\\nMany thanks in advance\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Managing different letter Template with Org mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjv50e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556833647.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using orgmode + komascript to generate pdf from org-mode. It seems very handy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I would like to be able to store some \\u0026quot;profiles\\u0026quot; and then include it in my letter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample:\\u003Cbr/\\u003E\\nA profile for personal letters which would include my personal address\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA profile for professional letters, which would include my office address\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems like it is possible with LCO files but the documentation is not very clear about that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have experience with that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjv50e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjv50e/managing_different_letter_template_with_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjv50e/managing_different_letter_template_with_org_mode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556804847.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Inspired by this [StackExchange post](https://superuser.com/questions/567916/org-mode-command-to-create-new-file-from-subtree/568300#568300), I made a function that exports the current subtree to a file and replaces it with a link to that file. More specifically it does the following:\\n\\n1. Copy the subtree to a file whose filename is the subtree title\\n2. Replace the subtree with a link to the newly created file\\n3. In the file, promote all direct children of the subtree node to be level-1 headings\\n4. In the file, convert the original subtree title to be a `#+TITLE` parameter\\n\\nFor my work, I use a date-tree file to store my work notes. I use this function to move large subtrees of notes to their own dedicated file in order to keep the work notes file from growing too large. It seems to work well enough, but I feel that the code I have written is overly complicated. In particular, the mechanism I use to delete everything but the subtree headline is very similar to the mechanism I use to promote of the subtree children. Is there a simpler, more streamlined way to implement this function? The code is listed below:\\n\\n (defun sbr-org-file-from-subtree (\\u0026optional name)\\n \\\"Take the current subtree and create a new file from\\n it. Replace the current subtree with its main heading (i.e.,\\n delete all of its childen), and make the heading into a link\\n to the newly created file,\\n \\n In the new file, promote all direct children of the original\\n subtree to be level 1-headings, and transform the original\\n heading into the '#+TITLE' parameter.\\n \\n If called with the universal argument, prompt for new filename,\\n otherwise use the subtree title.\\\"\\n (interactive \\\"P\\\")\\n (org-back-to-heading)\\n (let ((filename (cond\\n (current-prefix-arg\\n (expand-file-name\\n (read-file-name \\\"New file name: \\\")))\\n (t\\n (concat\\n (expand-file-name\\n (org-element-property :title\\n (org-element-at-point))\\n default-directory)\\n \\\".org\\\")))))\\n ;; Copy current subtree into clipboard \\n (org-copy-subtree)\\n \\n ;; Delete everything but the headline\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (call-interactively 'delete-region)\\n (org-previous-visible-heading 1)\\n \\n ;; Mark the current headline text\\n (org-end-of-line)\\n (call-interactively 'set-mark-command)\\n (org-beginning-of-line)\\n \\n ;; Convert headline to a link of the to-be-created file\\n (org-insert-link nil filename)\\n \\n ;; Create file for subtree\\n (with-temp-file filename\\n ;; Paste in the subtree\\n (org-mode)\\n (org-paste-subtree)\\n ;; Promote all children, original headline is at level \\\"zero\\\"\\n (sbr-org-promote-subtree-to-zero)\\n (insert \\\"#+TITLE: \\\"))))\\n \\n (defun sbr-org-promote-subtree-to-zero ()\\n \\\"Promote the entire subtree. If the root heading is at level 1,\\n 'promote' it to level 0 by removing the heading.\\\"\\n (interactive)\\n (if (= (org-current-level) 1)\\n (progn\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (org-do-promote)\\n (org-previous-visible-heading 1)\\n (org-mark-subtree)\\n (org-toggle-heading))\\n (org-promote-subtree)))\", \"author_fullname\": \"t2_7nfrv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cleaner way to export subtree to file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjulhb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556830403.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EInspired by this \\u003Ca href=\\\"https://superuser.com/questions/567916/org-mode-command-to-create-new-file-from-subtree/568300#568300\\\"\\u003EStackExchange post\\u003C/a\\u003E, I made a function that exports the current subtree to a file and replaces it with a link to that file. More specifically it does the following:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECopy the subtree to a file whose filename is the subtree title\\u003C/li\\u003E\\n\\u003Cli\\u003EReplace the subtree with a link to the newly created file\\u003C/li\\u003E\\n\\u003Cli\\u003EIn the file, promote all direct children of the subtree node to be level-1 headings\\u003C/li\\u003E\\n\\u003Cli\\u003EIn the file, convert the original subtree title to be a \\u003Ccode\\u003E#+TITLE\\u003C/code\\u003E parameter\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EFor my work, I use a date-tree file to store my work notes. I use this function to move large subtrees of notes to their own dedicated file in order to keep the work notes file from growing too large. It seems to work well enough, but I feel that the code I have written is overly complicated. In particular, the mechanism I use to delete everything but the subtree headline is very similar to the mechanism I use to promote of the subtree children. Is there a simpler, more streamlined way to implement this function? The code is listed below:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun sbr-org-file-from-subtree (\\u0026amp;optional name)\\n \\u0026quot;Take the current subtree and create a new file from\\n it. Replace the current subtree with its main heading (i.e.,\\n delete all of its childen), and make the heading into a link\\n to the newly created file,\\n\\nIn the new file, promote all direct children of the original\\n subtree to be level 1-headings, and transform the original\\n heading into the \\u0026#39;#+TITLE\\u0026#39; parameter.\\n\\nIf called with the universal argument, prompt for new filename,\\notherwise use the subtree title.\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (org-back-to-heading)\\n (let ((filename (cond\\n (current-prefix-arg\\n (expand-file-name\\n (read-file-name \\u0026quot;New file name: \\u0026quot;)))\\n (t\\n (concat\\n (expand-file-name\\n (org-element-property :title\\n (org-element-at-point))\\n default-directory)\\n \\u0026quot;.org\\u0026quot;)))))\\n ;; Copy current subtree into clipboard \\n (org-copy-subtree)\\n\\n ;; Delete everything but the headline\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (call-interactively \\u0026#39;delete-region)\\n (org-previous-visible-heading 1)\\n\\n ;; Mark the current headline text\\n (org-end-of-line)\\n (call-interactively \\u0026#39;set-mark-command)\\n (org-beginning-of-line)\\n\\n ;; Convert headline to a link of the to-be-created file\\n (org-insert-link nil filename)\\n\\n ;; Create file for subtree\\n (with-temp-file filename\\n ;; Paste in the subtree\\n (org-mode)\\n (org-paste-subtree)\\n ;; Promote all children, original headline is at level \\u0026quot;zero\\u0026quot;\\n (sbr-org-promote-subtree-to-zero)\\n (insert \\u0026quot;#+TITLE: \\u0026quot;))))\\n\\n(defun sbr-org-promote-subtree-to-zero ()\\n \\u0026quot;Promote the entire subtree. If the root heading is at level 1,\\n\\u0026#39;promote\\u0026#39; it to level 0 by removing the heading.\\u0026quot;\\n (interactive)\\n (if (= (org-current-level) 1)\\n (progn\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (org-do-promote)\\n (org-previous-visible-heading 1)\\n (org-mark-subtree)\\n (org-toggle-heading))\\n (org-promote-subtree)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjulhb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cottasteel\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjulhb/cleaner_way_to_export_subtree_to_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjulhb/cleaner_way_to_export_subtree_to_file/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556801603.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_esdtt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to jump to a heading in a date tree\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjb692\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556700958.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"emacs.stackexchange.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjb692\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"plotnick\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjb692/how_to_jump_to_a_heading_in_a_date_tree/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://emacs.stackexchange.com/questions/50253/how-to-jump-to-a-heading-in-a-date-tree\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556672158.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How to export code blocks so that they will be side-by-side in exported HTML (like in table)? \\n\\nFor example:\\n\\n\\u0026#x200B;\\n\\n[Something like this](https://i.redd.it/g2njbopc0cv21.png)\", \"author_fullname\": \"t2_11whf3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Export code block side by side\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"g2njbopc0cv21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 73, \"x\": 250, \"u\": \"https://i.redd.it/g2njbopc0cv21.png\"}, \"m\": \"image/png\", \"id\": \"g2njbopc0cv21\"}}, \"name\": \"t3_bizbk6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556628452.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow to export code blocks so that they will be side-by-side in exported HTML (like in table)? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/g2njbopc0cv21.png\\\"\\u003ESomething like this\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bizbk6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lkmokadam\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bizbk6/export_code_block_side_by_side/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bizbk6/export_code_block_side_by_side/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556599652.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \" Create a file called issue tracker.org\\n\\nPut these in-buffer settings at the top of the file:\\n\\n #+AUTHOR: Your Name\\n #+STARTUP:indent\\n #+OPTIONS: num:nil toc:nil\\n #+TODO: ONCE(o) EPISODIC ONGOING POTENTIAL | RESOLVED IMPROVED UNRESOLVABLE TOLERATED INACTIVE\\n #+TODO: MALFUNCTION DAMAGE | REPAIRED REPLACED DISCARDED\\n #+TITLE:ISSUE TRACKER\\n \\n\\nAdd a capture template to your .emacs, e.g.:\\n\\n (\\\"i\\\" \\\"issue\\\" entry\\n (file+olp+datetree \\\"~ /org/issue tracker.org\\\")\\n \\\"* ONCE %?\\\" :time-prompt t)\\n\\n\\u0026#x200B;\\n\\nOutput appears in a datetree. Track issue statuses using TODO states. Use a sparse tree if you want to filter the log by status, date, or text string.\\n\\nExample output:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/fowvur8ow7v21.png\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using org-mode as a quick-and-dirty issue tracker.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"fowvur8ow7v21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 492, \"x\": 968, \"u\": \"https://i.redd.it/fowvur8ow7v21.png\"}, \"m\": \"image/png\", \"id\": \"fowvur8ow7v21\"}}, \"name\": \"t3_biqhjc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556578999.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECreate a file called issue tracker.org\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPut these in-buffer settings at the top of the file:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+AUTHOR: Your Name\\n#+STARTUP:indent\\n#+OPTIONS: num:nil toc:nil\\n#+TODO: ONCE(o) EPISODIC ONGOING POTENTIAL | RESOLVED IMPROVED UNRESOLVABLE TOLERATED INACTIVE\\n#+TODO: MALFUNCTION DAMAGE | REPAIRED REPLACED DISCARDED\\n#+TITLE:ISSUE TRACKER\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAdd a capture template to your .emacs, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;i\\u0026quot; \\u0026quot;issue\\u0026quot; entry\\n (file+olp+datetree \\u0026quot;~ /org/issue tracker.org\\u0026quot;)\\n \\u0026quot;* ONCE %?\\u0026quot; :time-prompt t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOutput appears in a datetree. Track issue statuses using TODO states. Use a sparse tree if you want to filter the log by status, date, or text string.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample output:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/fowvur8ow7v21.png\\\"\\u003Ehttps://i.redd.it/fowvur8ow7v21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"biqhjc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/biqhjc/using_orgmode_as_a_quickanddirty_issue_tracker/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/biqhjc/using_orgmode_as_a_quickanddirty_issue_tracker/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556550199.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I recently came across org-journal. Seems pretty sweet, but I'm overall more happy with using org-capture to log to a datetree. But, one thing I really liked about org-journal was that it was easy to set each entry to have a HH:MM timestamp as its headline title on creation.\\n\\nI've got something like\\n\\n (\\\"l\\\" \\\"Log\\\" entry (file+datetree \\\"log.org\\\") \\\"* %?\\n \\n %i\\\" :empty-lines 1 :clock-resume t)\\n\\nas my capture template. I'd love to have it the headline part be like \\\\`:\\\\* %H:%M %?\\\\`. But that doesn't work.\\n\\nIs there any way to get what I am after?\", \"author_fullname\": \"t2_mfiiw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"timestamp in capture template?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bim468\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556546700.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recently came across org-journal. Seems pretty sweet, but I\\u0026#39;m overall more happy with using org-capture to log to a datetree. But, one thing I really liked about org-journal was that it was easy to set each entry to have a HH:MM timestamp as its headline title on creation.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve got something like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;l\\u0026quot; \\u0026quot;Log\\u0026quot; entry (file+datetree \\u0026quot;log.org\\u0026quot;) \\u0026quot;* %?\\n\\n %i\\u0026quot; :empty-lines 1 :clock-resume t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eas my capture template. I\\u0026#39;d love to have it the headline part be like `:* %H:%M %?`. But that doesn\\u0026#39;t work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way to get what I am after?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bim468\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PhilosopherAboutTown\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bim468/timestamp_in_capture_template/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bim468/timestamp_in_capture_template/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556517900.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi I'm considering going to emacs org mode for work and school. One pretty critical question for me is: \\nI use Anki for studying. I take my notes and put them on Anki and I can walk around and get some studying done. Is there any similar thing with org-drill? So that I could sync flash cards to phone and study at any convenient time? Thanks\", \"author_fullname\": \"t2_21immxp8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Mobile drill\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bi3va7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556429497.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi I\\u0026#39;m considering going to emacs org mode for work and school. One pretty critical question for me is:\\u003Cbr/\\u003E\\nI use Anki for studying. I take my notes and put them on Anki and I can walk around and get some studying done. Is there any similar thing with org-drill? So that I could sync flash cards to phone and study at any convenient time? Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bi3va7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"a_person_anon\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bi3va7/mobile_drill/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bi3va7/mobile_drill/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556400697.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi. Is it possible to define a project as:\\n\\n1. a headline that is not a todo item, and\\n2. that has at least one direct child todo item (one level below)\\n\\nThis would allow nested projects. I want to add this to `org-agenda-custom-commands`, but am lacking the necessary elisp skills. I want to avoid having to use a `PROJECT` todo keyword for readability, nor a `PROJECT` tag, which demands diligence.\\n\\nBonus question: is it possible to additionally display a the direct parent project of sub-projects in the agenda view?\", \"author_fullname\": \"t2_tihct\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Project as a Headline that has direct Todo Item Children\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhwy7b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556381209.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi. Is it possible to define a project as:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Ea headline that is not a todo item, and\\u003C/li\\u003E\\n\\u003Cli\\u003Ethat has at least one direct child todo item (one level below)\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis would allow nested projects. I want to add this to \\u003Ccode\\u003Eorg-agenda-custom-commands\\u003C/code\\u003E, but am lacking the necessary elisp skills. I want to avoid having to use a \\u003Ccode\\u003EPROJECT\\u003C/code\\u003E todo keyword for readability, nor a \\u003Ccode\\u003EPROJECT\\u003C/code\\u003E tag, which demands diligence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBonus question: is it possible to additionally display a the direct parent project of sub-projects in the agenda view?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhwy7b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nopedoesntwork\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhwy7b/project_as_a_headline_that_has_direct_todo_item/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhwy7b/project_as_a_headline_that_has_direct_todo_item/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556352409.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 26, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhlvza\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556311753.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhlvza\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhlvza/weekly_rorgmode_open_discussion_april_26_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhlvza/weekly_rorgmode_open_discussion_april_26_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556282953.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to recreate the functionality of an old Mac app I saw over a decade ago that had the concept of \\\"variable time repeating tasks\\\".\\n\\nIn other words, do \\\"water the plants\\\" every 4 to 8 days. It looks like I can sort of do this with:\\n\\n EDIT: \\u003C2019-04-26 Fri .+8d -4d\\u003E\\n\\nBut does anyone know of a better way to accomplish this?\\n\\nIdeally I'd be able to see how often I watered the plants last month, showing a timeline with marks every time I complete the task. So:\\n\\n March: 1st, 5th, 12th, 20th, 24th, 29th\\n\\nTo see how lax I was, or if I was doing something too frequently.\\n\\nSorry, weird problem/request, and I'm pretty terrible at describing it.\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Repeating tasks, do X every a to b days?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhczz6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1556222407.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556250552.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to recreate the functionality of an old Mac app I saw over a decade ago that had the concept of \\u0026quot;variable time repeating tasks\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn other words, do \\u0026quot;water the plants\\u0026quot; every 4 to 8 days. It looks like I can sort of do this with:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EEDIT: \\u0026lt;2019-04-26 Fri .+8d -4d\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBut does anyone know of a better way to accomplish this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIdeally I\\u0026#39;d be able to see how often I watered the plants last month, showing a timeline with marks every time I complete the task. So:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EMarch: 1st, 5th, 12th, 20th, 24th, 29th\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ETo see how lax I was, or if I was doing something too frequently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESorry, weird problem/request, and I\\u0026#39;m pretty terrible at describing it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhczz6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhczz6/repeating_tasks_do_x_every_a_to_b_days/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhczz6/repeating_tasks_do_x_every_a_to_b_days/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556221752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_64sbo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Unexpected behavior in org-mode when dealing with paragraphs, for example \\\"vip\\\" (visual inner paragraph) and [ and ] don't work as they should. Help?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bh9imi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1728, \"scrubber_media_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_96\", \"dash_url\": \"https://v.redd.it/kj55kbq3bfu21/DASHPlaylist.mpd\", \"duration\": 27, \"hls_url\": \"https://v.redd.it/kj55kbq3bfu21/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556232582.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bh9imi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rainymood_XI\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bh9imi/unexpected_behavior_in_orgmode_when_dealing_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/kj55kbq3bfu21\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556203782.0, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1728, \"scrubber_media_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_96\", \"dash_url\": \"https://v.redd.it/kj55kbq3bfu21/DASHPlaylist.mpd\", \"duration\": 27, \"hls_url\": \"https://v.redd.it/kj55kbq3bfu21/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI want to filter the current agenda using elisp commands mapped to a shortcut. I know that I could create separate agenda for different filters but this time, I'd prefer to have an arbitrary agenda and filter it.\\n\\nIn my case, I'd like to show only higest priority tasks: `[#A]`\\n\\nI could not find a specific command for filtering according to priority. However, interactively this can be achieved using `org-agenda-filter-by-regexp` (mapped to `=`) and then entering the regular expression `.*\\\\[#A\\\\].*`.\\n\\nI tried to debug `org-agenda-filter-by-regexp` and then `org-agenda-filter-apply` in order to find out how the elisp command including the parameters has to look like when I want to use it in a DIY-function.\\n\\nWhen I apply `(org-agenda-filter-apply \\\"+.*\\\\\\\\[#A\\\\\\\\].*\\\" \\\"+\\\" nil)` in the agenda (via `M-:`), I only get `nil` and nothing is changed. This clearly is wrong somehow.\\n\\nWhen debugging my elisp command and comparing to the interactive invocation, the regex as well as the second parameter do not match. This is where my elisp knowledge ends so far.\\n\\nAre you able to help me finding out what the magic spell is to *activate* the filter via an elisp command?\\n\\nThanks!\\n\\nPS: What I could find out myself is the command to disable the filter: `(org-agenda-filter-show-all-re)` \\u2026 hooray.\", \"author_fullname\": \"t2_dp04z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Elisp command to filter the agenda to show only [#A] prio tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgzod3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556167047.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to filter the current agenda using elisp commands mapped to a shortcut. I know that I could create separate agenda for different filters but this time, I\\u0026#39;d prefer to have an arbitrary agenda and filter it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my case, I\\u0026#39;d like to show only higest priority tasks: \\u003Ccode\\u003E[#A]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI could not find a specific command for filtering according to priority. However, interactively this can be achieved using \\u003Ccode\\u003Eorg-agenda-filter-by-regexp\\u003C/code\\u003E (mapped to \\u003Ccode\\u003E=\\u003C/code\\u003E) and then entering the regular expression \\u003Ccode\\u003E.*\\\\[#A\\\\].*\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to debug \\u003Ccode\\u003Eorg-agenda-filter-by-regexp\\u003C/code\\u003E and then \\u003Ccode\\u003Eorg-agenda-filter-apply\\u003C/code\\u003E in order to find out how the elisp command including the parameters has to look like when I want to use it in a DIY-function.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I apply \\u003Ccode\\u003E(org-agenda-filter-apply \\u0026quot;+.*\\\\\\\\[#A\\\\\\\\].*\\u0026quot; \\u0026quot;+\\u0026quot; nil)\\u003C/code\\u003E in the agenda (via \\u003Ccode\\u003EM-:\\u003C/code\\u003E), I only get \\u003Ccode\\u003Enil\\u003C/code\\u003E and nothing is changed. This clearly is wrong somehow.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen debugging my elisp command and comparing to the interactive invocation, the regex as well as the second parameter do not match. This is where my elisp knowledge ends so far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre you able to help me finding out what the magic spell is to \\u003Cem\\u003Eactivate\\u003C/em\\u003E the filter via an elisp command?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: What I could find out myself is the command to disable the filter: \\u003Ccode\\u003E(org-agenda-filter-show-all-re)\\u003C/code\\u003E \\u2026 hooray.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgzod3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"murdsdrum\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgzod3/elisp_command_to_filter_the_agenda_to_show_only_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgzod3/elisp_command_to_filter_the_agenda_to_show_only_a/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556138247.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is there anyway to automate refiling according to tag? For example, let's say that I have a bunch of todos and notes in [inbox.org](https://inbox.org) captured by a template.\\n\\n\\u0026#x200B;\\n\\n* `TODO Finish task :project1:`\\n* `Reference for emacs theme :emacs:`\\n* `TODO Email Robert :project2:`\\n\\n\\u0026#x200B;\\n\\nCould all headings in [inbox.org](https://inbox.org) tagged :project1: be automatically refiled to [project1.org](https://project1.org); those tagged with :project2: refiled to [project2.org](https://project2.org); and those tagged :emacs: be refiled to [emacs.org](https://emacs.org)? maybe tied to a key binding, or through a cron job?\\n\\n\\u0026#x200B;\\n\\nMany thanks in advance!\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Automate refiling according to tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgy3v6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556159094.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there anyway to automate refiling according to tag? For example, let\\u0026#39;s say that I have a bunch of todos and notes in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E captured by a template.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003ETODO Finish task :project1:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EReference for emacs theme :emacs:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003ETODO Email Robert :project2:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECould all headings in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E tagged :project1: be automatically refiled to \\u003Ca href=\\\"https://project1.org\\\"\\u003Eproject1.org\\u003C/a\\u003E; those tagged with :project2: refiled to \\u003Ca href=\\\"https://project2.org\\\"\\u003Eproject2.org\\u003C/a\\u003E; and those tagged :emacs: be refiled to \\u003Ca href=\\\"https://emacs.org\\\"\\u003Eemacs.org\\u003C/a\\u003E? maybe tied to a key binding, or through a cron job?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgy3v6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556130294.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"On org-agenda, a new window is opened with the agenda. How can I open org-agenda in the current window and not have it open a new one?\", \"author_fullname\": \"t2_q43ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Open org-agenda in current window\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgpycx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556106434.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn org-agenda, a new window is opened with the agenda. How can I open org-agenda in the current window and not have it open a new one?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgpycx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HumanBrainMapper\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgpycx/open_orgagenda_in_current_window/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgpycx/open_orgagenda_in_current_window/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556077634.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I can't seem to get the variable to expand into src block\\n\\n #+BEGIN_SRC conf :tangle ~/.config/mine.conf :var argument=abcde\\n setting1 1234\\n setting2 argument\\n #+END_SRC\\n\\nWhen I export the file for tangling (C-c C-v t), the \\\"argument\\\" keyword is not expanded into \\\"abcde\\\". \\n\\nI realise this is because I am not evaluatiing the block but exporting it. \\n\\nHow do I achieve my desired output in the tangled file?\", \"author_fullname\": \"t2_xup40\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Passing variable into a org babel code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgdr5m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556035419.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t seem to get the variable to expand into src block\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+BEGIN_SRC conf :tangle ~/.config/mine.conf :var argument=abcde\\nsetting1 1234\\nsetting2 argument\\n#+END_SRC\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I export the file for tangling (C-c C-v t), the \\u0026quot;argument\\u0026quot; keyword is not expanded into \\u0026quot;abcde\\u0026quot;. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI realise this is because I am not evaluatiing the block but exporting it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I achieve my desired output in the tangled file?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgdr5m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tomatoaway\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgdr5m/passing_variable_into_a_org_babel_code/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgdr5m/passing_variable_into_a_org_babel_code/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556006619.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a custom clocktable as a dynamic block that I'd like to export alongside an agenda view to a file. \\n\\nIs it possible to either create a dynamic block with a custom agenda view (i.e. have this as two dynamic blocks)? Or is it possible to have an agenda execute/display a custom dynamic block (add the dyn block to the org agenda and export via the agenda?)\", \"author_fullname\": \"t2_1mhaum0e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Execute agenda command as a dynamic block? Or add a dynamic block to block agenda?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bg1vh6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555967071.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a custom clocktable as a dynamic block that I\\u0026#39;d like to export alongside an agenda view to a file. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs it possible to either create a dynamic block with a custom agenda view (i.e. have this as two dynamic blocks)? Or is it possible to have an agenda execute/display a custom dynamic block (add the dyn block to the org agenda and export via the agenda?)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bg1vh6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jethro_spackle\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bg1vh6/execute_agenda_command_as_a_dynamic_block_or_add/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bg1vh6/execute_agenda_command_as_a_dynamic_block_or_add/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555938271.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a narrowing function I use which I detail in [this post.](https://www.reddit.com/r/emacs/comments/b8jqor/making_orgmode_narrowing_as_intuitive_as_workflow/) However, is there a way that I can take the heading I narrowed into and turn into the title of the newly created indirect buffer? So for example:\\n\\nTake this:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/l7quj7b7ult21.png\\n\\nand transform into this:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/tvm0qqueult21.png\\n\\nBonus points if changing the title of the indirect buffer also updates the heading in the parent buffer.\", \"author_fullname\": \"t2_39gpz9p3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make parent heading of subtree of indirect buffer appear as title\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"tvm0qqueult21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 116, \"x\": 266, \"u\": \"https://i.redd.it/tvm0qqueult21.png\"}, \"m\": \"image/png\", \"id\": \"tvm0qqueult21\"}, \"l7quj7b7ult21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 154, \"x\": 193, \"u\": \"https://i.redd.it/l7quj7b7ult21.png\"}, \"m\": \"image/png\", \"id\": \"l7quj7b7ult21\"}}, \"name\": \"t3_bfnzqd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555875949.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a narrowing function I use which I detail in \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/b8jqor/making_orgmode_narrowing_as_intuitive_as_workflow/\\\"\\u003Ethis post.\\u003C/a\\u003E However, is there a way that I can take the heading I narrowed into and turn into the title of the newly created indirect buffer? So for example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/l7quj7b7ult21.png\\\"\\u003Ehttps://i.redd.it/l7quj7b7ult21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand transform into this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/tvm0qqueult21.png\\\"\\u003Ehttps://i.redd.it/tvm0qqueult21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBonus points if changing the title of the indirect buffer also updates the heading in the parent buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bfnzqd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ykhurshid\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bfnzqd/make_parent_heading_of_subtree_of_indirect_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bfnzqd/make_parent_heading_of_subtree_of_indirect_buffer/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555847149.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"That's all (stick it in your .emacs of course, and M-x load-file RET .emacs)! I find it handy and use it to outline my day away from the agenda view, to take notes, or to keep a live tree of info for current tasks and it allows me to easily refile any text in said buffer should I decide to keep it later.\", \"author_fullname\": \"t2_3kdg6g4t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tip: Set *scratch* buffer default mode to Org: (setq initial-major-mode 'org-mode)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bf3xw3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1555739479.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555734699.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s all (stick it in your .emacs of course, and M-x load-file RET .emacs)! I find it handy and use it to outline my day away from the agenda view, to take notes, or to keep a live tree of info for current tasks and it allows me to easily refile any text in said buffer should I decide to keep it later.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bf3xw3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PeanutButterGuru\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bf3xw3/tip_set_scratch_buffer_default_mode_to_org_setq/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bf3xw3/tip_set_scratch_buffer_default_mode_to_org_setq/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555705899.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 19, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_beyq0w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555706949.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"beyq0w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/beyq0w/weekly_rorgmode_open_discussion_april_19_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/beyq0w/weekly_rorgmode_open_discussion_april_19_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555678149.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Anyone use org-caldav? Do you know how to don't display the \\\"org caldav sync result\\\" buffer after sync?\", \"author_fullname\": \"t2_14ghl9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Don't show me \\\"org caldav sync result\\\" !\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bexsu1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555700116.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnyone use org-caldav? Do you know how to don\\u0026#39;t display the \\u0026quot;org caldav sync result\\u0026quot; buffer after sync?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bexsu1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"floZx\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bexsu1/dont_show_me_org_caldav_sync_result/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bexsu1/dont_show_me_org_caldav_sync_result/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555671316.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_2lebcxk6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"is it possible to rename the :ARCHIVE: tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bemm49\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555628701.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bemm49\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"grouchy_otter\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bemm49/is_it_possible_to_rename_the_archive_tag/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bemm49/is_it_possible_to_rename_the_archive_tag/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555599901.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a plain shopping list which I reuse. When I need an item I put a tick mark by it, and when I purchase it I marked it as ticked.\\n\\nPreparing a shopping list simply means frequenting the same list and reticking the things I need if they are unticked and usually means this type of syntax\\n\\n - [X] Item 1\\n - [ ] Item 2\\n\\nI am trying out orgzly with this syntax and backspacing in small touchkeyboard to edit lines like this is rather clunky.\\n\\nIs there another syntax that makes it easier to type on a mobile phone keyboard?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is the simplest way of express a shopping list in org?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_beaxfo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555552869.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a plain shopping list which I reuse. When I need an item I put a tick mark by it, and when I purchase it I marked it as ticked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPreparing a shopping list simply means frequenting the same list and reticking the things I need if they are unticked and usually means this type of syntax\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E- [X] Item 1\\n- [ ] Item 2\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI am trying out orgzly with this syntax and backspacing in small touchkeyboard to edit lines like this is rather clunky.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there another syntax that makes it easier to type on a mobile phone keyboard?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"beaxfo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/beaxfo/what_is_the_simplest_way_of_express_a_shopping/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/beaxfo/what_is_the_simplest_way_of_express_a_shopping/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555524069.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey folks. In the past I used Orgmode quite a lot, both for organizing my everyday life and for organizing my research. But then I grew tired of its text-heavy style. I wanted something more visual, more two dimensional. I tried Zim and even though it is a decent software, it was not as capable as the good Org. So I have a dilemma. Short of writing my own software, Org seems to be the only game in town for me.\\n\\n\\u0026#x200B;\\n\\nSo, is there any way to make Org more visual, more 2-dimensional? Or are there any such variants of it (or software inspired by it)? By more visual I mean the ability to have different font sizes (or headers), colors, etc. In short, basic HTML formatting capabilities. When I'm working on an Org file it's like I'm writing source code.\", \"author_fullname\": \"t2_15qtbm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Good old Orgmode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_be8m4x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1555514167.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555541001.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey folks. In the past I used Orgmode quite a lot, both for organizing my everyday life and for organizing my research. But then I grew tired of its text-heavy style. I wanted something more visual, more two dimensional. I tried Zim and even though it is a decent software, it was not as capable as the good Org. So I have a dilemma. Short of writing my own software, Org seems to be the only game in town for me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, is there any way to make Org more visual, more 2-dimensional? Or are there any such variants of it (or software inspired by it)? By more visual I mean the ability to have different font sizes (or headers), colors, etc. In short, basic HTML formatting capabilities. When I\\u0026#39;m working on an Org file it\\u0026#39;s like I\\u0026#39;m writing source code.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"be8m4x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"badmanbrown\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/be8m4x/good_old_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/be8m4x/good_old_orgmode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555512201.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Some of you may know the Don't break the Chain Method to gain good habits. \\n\\nI plan to organize this with a simple org table (Better suggestions are welcome).\\n\\nnow i Insert a Timestamp with `C-c .` how can I now generate like 1 month of lines in this table.\\n\\nOr how can I fill a table with consequtive Dates. \\n\\n\\u0026#x200B;\\n\\n[Table View](https://i.redd.it/wvee4lu9mls21.png)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[Wanted functionality](https://i.redd.it/gtvwmilkmls21.png)\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Don't Break the Chain with Org Mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"wvee4lu9mls21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 90, \"x\": 522, \"u\": \"https://i.redd.it/wvee4lu9mls21.png\"}, \"m\": \"image/png\", \"id\": \"wvee4lu9mls21\"}, \"gtvwmilkmls21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 294, \"x\": 495, \"u\": \"https://i.redd.it/gtvwmilkmls21.png\"}, \"m\": \"image/png\", \"id\": \"gtvwmilkmls21\"}}, \"name\": \"t3_bds2qx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555437328.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESome of you may know the Don\\u0026#39;t break the Chain Method to gain good habits. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI plan to organize this with a simple org table (Better suggestions are welcome).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Enow i Insert a Timestamp with \\u003Ccode\\u003EC-c .\\u003C/code\\u003E how can I now generate like 1 month of lines in this table.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr how can I fill a table with consequtive Dates. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/wvee4lu9mls21.png\\\"\\u003ETable View\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/gtvwmilkmls21.png\\\"\\u003EWanted functionality\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bds2qx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bds2qx/dont_break_the_chain_with_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bds2qx/dont_break_the_chain_with_org_mode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555408528.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone I've got a problem with my org agenda while using global linum mode. \\n\\nI have a function that generates a window layout with left an agenda and right another file \\n\\n\\nIf i use global linum mode the tags are always shifted to the right, so you cant read everything. \\n\\n \\n\\n\\n[with linum mode](https://i.redd.it/d6rhurfqpks21.png)\\n\\n\\u0026#x200B;\\n\\n[without linum mode](https://i.redd.it/l98vvqtvpks21.png)\\n\\n\\u0026#x200B;\\n\\nHow can I solve this problem\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Split Agenda Buffer Tag visability Error (linum mode)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"d6rhurfqpks21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 457, \"x\": 954, \"u\": \"https://i.redd.it/d6rhurfqpks21.png\"}, \"m\": \"image/png\", \"id\": \"d6rhurfqpks21\"}, \"l98vvqtvpks21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 450, \"x\": 977, \"u\": \"https://i.redd.it/l98vvqtvpks21.png\"}, \"m\": \"image/png\", \"id\": \"l98vvqtvpks21\"}}, \"name\": \"t3_bdqsi1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555426345.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone I\\u0026#39;ve got a problem with my org agenda while using global linum mode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a function that generates a window layout with left an agenda and right another file \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf i use global linum mode the tags are always shifted to the right, so you cant read everything. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/d6rhurfqpks21.png\\\"\\u003Ewith linum mode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/l98vvqtvpks21.png\\\"\\u003Ewithout linum mode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I solve this problem\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bdqsi1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bdqsi1/split_agenda_buffer_tag_visability_error_linum/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bdqsi1/split_agenda_buffer_tag_visability_error_linum/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555397545.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I define a timestamp that:\\n\\n\\u0026#x200B;\\n\\n* takes place on multiple consecutive days (date range)\\n* at a fixed time interval each day (e.g. 9am-5pm)\\n\\n\\u0026#x200B;\\n\\nI'm trying:\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E--\\u003C2019-04-30 Tue 09:00-21:00\\u003E\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E--\\u003C2019-04-30 Tue\\u003E\\n\\n\\u0026#x200B;\\n\\nBut only the first day show's a time, the rest is shown as a whole day event.\\n\\n\\u0026#x200B;\\n\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E\\n \\u003C2019-04-24 Wed 09:00-21:00\\u003E\\n \\u003C2019-04-25 Thu 09:00-21:00\\u003E\\n \\u003C2019-04-26 Fri 09:00-21:00\\u003E\\n \\u003C2019-04-27 Sat 09:00-21:00\\u003E\\n \\u003C2019-04-28 Sun 09:00-21:00\\u003E\\n \\u003C2019-04-28 Sun 09:00-21:00\\u003E\\n \\u003C2019-04-30 Tue 09:00-21:00\\u003E\\n\\nSeems to work, but is seriously broken =)\", \"author_fullname\": \"t2_dcfnv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Define a date range with time interval for each day?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bdekci\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555354229.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I define a timestamp that:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Etakes place on multiple consecutive days (date range)\\u003C/li\\u003E\\n\\u003Cli\\u003Eat a fixed time interval each day (e.g. 9am-5pm)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;--\\u0026lt;2019-04-30 Tue 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;--\\u0026lt;2019-04-30 Tue\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut only the first day show\\u0026#39;s a time, the rest is shown as a whole day event.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-24 Wed 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-25 Thu 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-26 Fri 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-27 Sat 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-28 Sun 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-28 Sun 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-30 Tue 09:00-21:00\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESeems to work, but is seriously broken =)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bdekci\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"poiu-\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bdekci/define_a_date_range_with_time_interval_for_each/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bdekci/define_a_date_range_with_time_interval_for_each/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555325429.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly reports from org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd9prf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm starting to use more advanced features of org and am loving it!\\n\\nI'd like to be able to export a weekly report from org, based on TODOs I've either marked done or TODOs that have a timestamped note underneath them within the week previous to the current day. For example, if today is Thursday and I finished TODO A on Tuesday and made notes to TODO B on Friday and Wednesday but did not update TODO C at all, I'd like the export to contain TODOS A and B, along with any notes made under them in the past week.\\n\\nI imagine someone has implemented something like this before. Is there a module or package that does it, or an org agenda export config that would do it?\\n\\nThank you!\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly reports from org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd7asx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555303180.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m starting to use more advanced features of org and am loving it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to be able to export a weekly report from org, based on TODOs I\\u0026#39;ve either marked done or TODOs that have a timestamped note underneath them within the week previous to the current day. For example, if today is Thursday and I finished TODO A on Tuesday and made notes to TODO B on Friday and Wednesday but did not update TODO C at all, I\\u0026#39;d like the export to contain TODOS A and B, along with any notes made under them in the past week.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI imagine someone has implemented something like this before. Is there a module or package that does it, or an org agenda export config that would do it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd7asx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1555274380.0, \"media\": null, \"is_video\": false}], \"created\": 1555317009.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd9prf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bd7asx\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bd9prf/weekly_reports_from_org/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555288209.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"In Org, you arrange projects as a TODO with sub-TODOs (and so on). These TODOs may be ordered such that the first TODO in a project must be finished before the next TODO can start. I have two questions:\\n\\n1. Can you create an agenda that shows TODOs hierarchically? That is, an agenda that shows all the projects with sub-TODOs that need attention?\\n\\n2. Can an agenda be made to not show TODOs that are blocked by TODOs that still have to be done?\", \"author_fullname\": \"t2_baw354f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hierarchical Agendas?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd4ka9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555288456.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn Org, you arrange projects as a TODO with sub-TODOs (and so on). These TODOs may be ordered such that the first TODO in a project must be finished before the next TODO can start. I have two questions:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECan you create an agenda that shows TODOs hierarchically? That is, an agenda that shows all the projects with sub-TODOs that need attention?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECan an agenda be made to not show TODOs that are blocked by TODOs that still have to be done?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd4ka9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SmoothInternet\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555259656.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I try something like this:\\n\\n * Hello\\n ** World\\n Some *notes* /here/. \\n ** Foo\\n #+begin_src org\\n *Hello* +world+ /sailor/. =Emacs=.\\n #+end_src\\n \\nthe text inside the org src block does not get proper font-locking/syntax-highlighting for Org mode (e.g. `*Hello*` is not shown in bold; `+world+` is not struck-through, etc.). (If I open the src block in a new buffer with `C-c '` the proper font-locking applies in the new buffer.)\\n\\nLikewise, when the point is inside the org src block, the echo area displays `eldoc error: (error Variable binding depth exceeds max-specpdl-size)`.\\n\\nIs there any way around these issues with Org-in-Org? Or is this a limitation on embedded Org blocks in Org?\", \"author_fullname\": \"t2_8a43c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Getting proper font-locking/syntax-highlighting in embedded org src blocks in Org mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bct1in\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555206091.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I try something like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Hello\\n** World\\n Some *notes* /here/. \\n** Foo\\n#+begin_src org\\n*Hello* +world+ /sailor/. =Emacs=.\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ethe text inside the org src block does not get proper font-locking/syntax-highlighting for Org mode (e.g. \\u003Ccode\\u003E*Hello*\\u003C/code\\u003E is not shown in bold; \\u003Ccode\\u003E+world+\\u003C/code\\u003E is not struck-through, etc.). (If I open the src block in a new buffer with \\u003Ccode\\u003EC-c \\u0026#39;\\u003C/code\\u003E the proper font-locking applies in the new buffer.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELikewise, when the point is inside the org src block, the echo area displays \\u003Ccode\\u003Eeldoc error: (error Variable binding depth exceeds max-specpdl-size)\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way around these issues with Org-in-Org? Or is this a limitation on embedded Org blocks in Org?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bct1in\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"emacsomancer\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bct1in/getting_proper_fontlockingsyntaxhighlighting_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bct1in/getting_proper_fontlockingsyntaxhighlighting_in/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555177291.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is it possible to set (setq org-agenda-files) files as all .org files in a directory that contain \\\"project\\\" somewhere in their filename? I've been playing around with both (find-lisp-find-files) and also (file-expand-wildcards) but cannot make it work. Much documentation re \\\\*.org but not \\\\*project\\\\*.org. Many thanks in advance!\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Possible to set agenda files to files in a directory that match partial filename?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcnamp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555161639.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to set (setq org-agenda-files) files as all .org files in a directory that contain \\u0026quot;project\\u0026quot; somewhere in their filename? I\\u0026#39;ve been playing around with both (find-lisp-find-files) and also (file-expand-wildcards) but cannot make it work. Much documentation re *.org but not *project*.org. Many thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcnamp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcnamp/possible_to_set_agenda_files_to_files_in_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcnamp/possible_to_set_agenda_files_to_files_in_a/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555132839.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I recently update my `org` to the version `9.2`\\n(to be precise: `Org mode version 9.2.3 (9.2.3-4-g6ec402-elpaplus @ /home/nanounanue/.emacs.d/elpa/org-plus-contrib-20190408/`)\\n\\nI did it because I replaced the `ob-ipython` with `emacs-jupyter` (more stable, more features and now I am very happy)\\n\\nNow, I am experimenting the following hiccups:\\n\\n(a) When I try to insert a code block using the new keybinding `C-c C-,` I got:\\n\\n```\\nWarning (org):\\nPlease update the entries of `org-structure-template-alist'.\\n\\nIn Org 9.2 the format was changed from something like\\n\\n(\\\"s\\\" \\\"#+BEGIN_SRC ?\\\\n#+END_SRC\\\")\\n\\nto something like\\n\\n(\\\"s\\\" . \\\"src\\\")\\n\\nPlease refer to the documentation of `org-structure-template-alist'.\\n\\nThe following entries must be updated:\\n\\n((\\\"n\\\" \\\"#+BEGIN_NOTES\\\\n?\\\\n#+END_NOTES\\\")\\n(\\\"Q\\\" \\\"#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\\" \\\"#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\\"))\\n```\\n\\nI searched in my =.emacs= and I don't find those lines, actually my templates are:\\n\\n```\\n(add-to-list 'org-structure-template-alist\\n'(\\\"el\\\" . \\\"src emacs-lisp\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"sh\\\" . \\\"src shell\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"Q\\\" . \\\"src sql\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"py\\\" . \\\"src jupyter-python\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"md\\\" . \\\"src markdown\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"sr\\\" . \\\"src R\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"l\\\" . \\\"src lisp\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"cl\\\" . \\\"src clojure\\\"))\\n```\\n\\nSo, I am kind of lost here.\\n\\n\\n(b) My `sql` babel blocks now throw the following error everytime that the cursor enters the block\\n\\n```\\nDebugger entered--Lisp error: (wrong-type-argument stringp 5434)\\n#f(compiled-function (elem) #\\u003Cbytecode 0x1563983c7e95\\u003E)((:dbport . 5434))\\nmapconcat(#f(compiled-function (elem) #\\u003Cbytecode 0x1563983c7e95\\u003E) ((:results . \\\"drawer table replace\\\") (:exports . \\\"both\\\") (:cmdline . \\\"-q\\\") (:eval . \\\"no-export\\\") (:database . \\\"food\\\") (:dbpassword . \\\"some_password\\\") (:dbuser . \\\"food_user\\\") (:dbport . 5434) (:dbhost . \\\"0.0.0.0\\\") (:engine . \\\"postgresql\\\") (:tangle . \\\"no\\\") (:hlines . \\\"no\\\") (:noweb . \\\"no\\\") (:cache . \\\"no\\\") (:session . \\\"none\\\")) \\\" \\\")\\norg-eldoc-get-src-header()\\norg-eldoc-documentation-function()\\neldoc-print-current-symbol-info()\\n#f(compiled-function () #\\u003Cbytecode 0x1feb98d89639\\u003E)()\\napply(#f(compiled-function () #\\u003Cbytecode 0x1feb98d89639\\u003E) nil)\\ntimer-event-handler([t 0 0 100000 t #f(compiled-function () #\\u003Cbytecode 0x1feb98d89639\\u003E) nil idle 0])\\n```\\n\\n(c) If I try to refresh the headers of an org-mode buffer using `C-c C-c` I got the following error:\\n\\n```\\nDebugger entered--Lisp error: (void-function org-outline-overlay-data)\\norg-outline-overlay-data(use-markers)\\norg-ctrl-c-ctrl-c(nil)\\nfuncall-interactively(org-ctrl-c-ctrl-c nil)\\ncall-interactively(org-ctrl-c-ctrl-c nil nil)\\n#f(compiled-function (cmd \\u0026optional record-flag keys special) \\\"Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the `commandp' predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable `command-history'.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don't clear it.\\\" #\\u003Cbytecode 0x1feb98d60d25\\u003E)(org-ctrl-c-ctrl-c nil nil nil)\\nad-Advice-command-execute(#f(compiled-function (cmd \\u0026optional record-flag keys special) \\\"Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the `commandp' predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable `command-history'.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don't clear it.\\\" #\\u003Cbytecode 0x1feb98d60d25\\u003E) org-ctrl-c-ctrl-c)\\napply(ad-Advice-command-execute #f(compiled-function (cmd \\u0026optional record-flag keys special) \\\"Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the `commandp' predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable `command-history'.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don't clear it.\\\" #\\u003Cbytecode 0x1feb98d60d25\\u003E) org-ctrl-c-ctrl-c)\\ncommand-execute(org-ctrl-c-ctrl-c)\\n````\\n\\nAll these behaviour showed up with the upgrade to `org 9.2`. Could someone give me pointers or help?\\n\\nThanks in advance\", \"author_fullname\": \"t2_5q2ns\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help, can't find the errors!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcjl8u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555136152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recently update my \\u003Ccode\\u003Eorg\\u003C/code\\u003E to the version \\u003Ccode\\u003E9.2\\u003C/code\\u003E\\n(to be precise: \\u003Ccode\\u003EOrg mode version 9.2.3 (9.2.3-4-g6ec402-elpaplus @ /home/nanounanue/.emacs.d/elpa/org-plus-contrib-20190408/\\u003C/code\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did it because I replaced the \\u003Ccode\\u003Eob-ipython\\u003C/code\\u003E with \\u003Ccode\\u003Eemacs-jupyter\\u003C/code\\u003E (more stable, more features and now I am very happy)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, I am experimenting the following hiccups:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(a) When I try to insert a code block using the new keybinding \\u003Ccode\\u003EC-c C-,\\u003C/code\\u003E I got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E``\\u003Ccode\\u003E\\nWarning (org):\\nPlease update the entries of\\u003C/code\\u003Eorg-structure-template-alist\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Org 9.2 the format was changed from something like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u0026quot;s\\u0026quot; \\u0026quot;#+BEGIN_SRC ?\\\\n#+END_SRC\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eto something like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u0026quot;s\\u0026quot; . \\u0026quot;src\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease refer to the documentation of `org-structure-template-alist\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe following entries must be updated:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E((\\u0026quot;n\\u0026quot; \\u0026quot;#+BEGIN_NOTES\\\\n?\\\\n#+END_NOTES\\u0026quot;)\\n(\\u0026quot;Q\\u0026quot; \\u0026quot;#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\u0026quot; \\u0026quot;#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\u0026quot;))\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI searched in my =.emacs= and I don\\u0026#39;t find those lines, actually my templates are:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\n(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;el\\u0026quot; . \\u0026quot;src emacs-lisp\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;sh\\u0026quot; . \\u0026quot;src shell\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;Q\\u0026quot; . \\u0026quot;src sql\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;py\\u0026quot; . \\u0026quot;src jupyter-python\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;md\\u0026quot; . \\u0026quot;src markdown\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;sr\\u0026quot; . \\u0026quot;src R\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;l\\u0026quot; . \\u0026quot;src lisp\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;cl\\u0026quot; . \\u0026quot;src clojure\\u0026quot;))\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, I am kind of lost here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(b) My \\u003Ccode\\u003Esql\\u003C/code\\u003E babel blocks now throw the following error everytime that the cursor enters the block\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\nDebugger entered--Lisp error: (wrong-type-argument stringp 5434)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Ef(compiled-function (elem) #\\u0026lt;bytecode 0x1563983c7e95\\u0026gt;)((:dbport . 5434))\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003Emapconcat(#f(compiled-function (elem) #\\u0026lt;bytecode 0x1563983c7e95\\u0026gt;) ((:results . \\u0026quot;drawer table replace\\u0026quot;) (:exports . \\u0026quot;both\\u0026quot;) (:cmdline . \\u0026quot;-q\\u0026quot;) (:eval . \\u0026quot;no-export\\u0026quot;) (:database . \\u0026quot;food\\u0026quot;) (:dbpassword . \\u0026quot;some_password\\u0026quot;) (:dbuser . \\u0026quot;food_user\\u0026quot;) (:dbport . 5434) (:dbhost . \\u0026quot;0.0.0.0\\u0026quot;) (:engine . \\u0026quot;postgresql\\u0026quot;) (:tangle . \\u0026quot;no\\u0026quot;) (:hlines . \\u0026quot;no\\u0026quot;) (:noweb . \\u0026quot;no\\u0026quot;) (:cache . \\u0026quot;no\\u0026quot;) (:session . \\u0026quot;none\\u0026quot;)) \\u0026quot; \\u0026quot;)\\norg-eldoc-get-src-header()\\norg-eldoc-documentation-function()\\neldoc-print-current-symbol-info()\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Ef(compiled-function () #\\u0026lt;bytecode 0x1feb98d89639\\u0026gt;)()\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003Eapply(#f(compiled-function () #\\u0026lt;bytecode 0x1feb98d89639\\u0026gt;) nil)\\ntimer-event-handler([t 0 0 100000 t #f(compiled-function () #\\u0026lt;bytecode 0x1feb98d89639\\u0026gt;) nil idle 0])\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(c) If I try to refresh the headers of an org-mode buffer using \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E I got the following error:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\nDebugger entered--Lisp error: (void-function org-outline-overlay-data)\\norg-outline-overlay-data(use-markers)\\norg-ctrl-c-ctrl-c(nil)\\nfuncall-interactively(org-ctrl-c-ctrl-c nil)\\ncall-interactively(org-ctrl-c-ctrl-c nil nil)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Ef(compiled-function (cmd \\u0026amp;optional record-flag keys special) \\u0026quot;Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the \\u003Ccode\\u003Ecommandp\\u0026#39; predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable\\u003C/code\\u003Ecommand-history\\u0026#39;.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don\\u0026#39;t clear it.\\u0026quot; #\\u0026lt;bytecode 0x1feb98d60d25\\u0026gt;)(org-ctrl-c-ctrl-c nil nil nil)\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003Ead-Advice-command-execute(#f(compiled-function (cmd \\u0026amp;optional record-flag keys special) \\u0026quot;Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the \\u003Ccode\\u003Ecommandp\\u0026#39; predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable\\u003C/code\\u003Ecommand-history\\u0026#39;.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don\\u0026#39;t clear it.\\u0026quot; #\\u0026lt;bytecode 0x1feb98d60d25\\u0026gt;) org-ctrl-c-ctrl-c)\\napply(ad-Advice-command-execute #f(compiled-function (cmd \\u0026amp;optional record-flag keys special) \\u0026quot;Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the \\u003Ccode\\u003Ecommandp\\u0026#39; predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable\\u003C/code\\u003Ecommand-history\\u0026#39;.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don\\u0026#39;t clear it.\\u0026quot; #\\u0026lt;bytecode 0x1feb98d60d25\\u0026gt;) org-ctrl-c-ctrl-c)\\ncommand-execute(org-ctrl-c-ctrl-c)\\n````\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll these behaviour showed up with the upgrade to \\u003Ccode\\u003Eorg 9.2\\u003C/code\\u003E. Could someone give me pointers or help?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcjl8u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nanounanue\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcjl8u/help_cant_find_the_errors/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcjl8u/help_cant_find_the_errors/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555107352.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Can Org-mode clone items such as outline entries or list items? I saw this behavior in an editor called \\\"LEO\\\" (https://leoeditor.com/tutorial-pim.html#clones). It allows you to create an item in one area of an outline, then create references to it from other areas. Changes made to any instance are propagated to all other instances.\\n\\nI am new to Emacs \\u0026 Org-mode and am documenting an upcoming trip to get familiar with these new tools. (Using Spacemacs to ease the transition from Vim to Emacs.) \\n\\nIf possible, I would like to clone some of the items such as flight data and local attractions so that they can be re-used in different places (itinerary, budget, etc.) without copying and pasting or otherwise duplicating the information.\", \"author_fullname\": \"t2_xhn00\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Clones in org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bch97g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555123663.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan Org-mode clone items such as outline entries or list items? I saw this behavior in an editor called \\u0026quot;LEO\\u0026quot; (\\u003Ca href=\\\"https://leoeditor.com/tutorial-pim.html#clones\\\"\\u003Ehttps://leoeditor.com/tutorial-pim.html#clones\\u003C/a\\u003E). It allows you to create an item in one area of an outline, then create references to it from other areas. Changes made to any instance are propagated to all other instances.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am new to Emacs \\u0026amp; Org-mode and am documenting an upcoming trip to get familiar with these new tools. (Using Spacemacs to ease the transition from Vim to Emacs.) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf possible, I would like to clone some of the items such as flight data and local attractions so that they can be re-used in different places (itinerary, budget, etc.) without copying and pasting or otherwise duplicating the information.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bch97g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NineMinuteNap\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bch97g/clones_in_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bch97g/clones_in_orgmode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555094863.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 12, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcd6an\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555102149.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcd6an\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcd6an/weekly_rorgmode_open_discussion_april_12_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcd6an/weekly_rorgmode_open_discussion_april_12_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555073349.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello all, \\n\\nit's been a while since I posted something org-mode related. More recently I tried the Org-Gcal package and, after getting it to work, realized why it doesn't work. That is, on a style level, for me. \\n\\n\\u0026#x200B;\\n\\nThis post is less about the tool itself and more about how I use org-mode and why (in my opinion) you can't just straight-\\\"translate\\\" one to the other. It boils down to the one-line agenda item with all the information I need vs the more detailed \\\"list\\\" of Google Calendar which works much better on a smart phone then on a computer. This is a matter of opinion, and I'd love to hear yours.\\n\\n\\u0026#x200B;\\n\\nHere it is: [https://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/](https://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/)\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"About the difference between Org-mode and Google calendar\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcczk3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555100968.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello all, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eit\\u0026#39;s been a while since I posted something org-mode related. More recently I tried the Org-Gcal package and, after getting it to work, realized why it doesn\\u0026#39;t work. That is, on a style level, for me. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis post is less about the tool itself and more about how I use org-mode and why (in my opinion) you can\\u0026#39;t just straight-\\u0026quot;translate\\u0026quot; one to the other. It boils down to the one-line agenda item with all the information I need vs the more detailed \\u0026quot;list\\u0026quot; of Google Calendar which works much better on a smart phone then on a computer. This is a matter of opinion, and I\\u0026#39;d love to hear yours.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere it is: \\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/\\\"\\u003Ehttps://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcczk3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcczk3/about_the_difference_between_orgmode_and_google/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcczk3/about_the_difference_between_orgmode_and_google/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555072168.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Can I set a header argument to tangle blocks to another directory?\\n\\nI currently use this to tangle my files:\\n\\n #+PROPERTY: header-args :tangle yes\\n\\nSo I my blocks can be simpler:\\n\\n #+BEGIN_SRC emacs-lisp\\n (defun some-function ()\\n (interactive)\\n (message \\\"example\\\"))\\n #+END_SRC\\n\\nWhich is fine, but the files are created in the same directory. I wonder if I can do something like this instead:\\n\\n #+PROPERTY: header-args :tangle /path/to/some-other-directory\\n\\nSo, if was tangling a file called `example.org`, it would write to\\n\\n /path/to/some-other-directory/example.file\\n\\nI could use\\n\\n #+PROPERTY: header-args :tangle /path/to/some-other-directory/example.el\\n\\nbut I have a lot of files and a declaration that works for all of them would make it simpler to maintain them, as well as making alterations in my folders structure.\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can I set a header argument to tangle blocks to another directory?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_b9zzug\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1554548008.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan I set a header argument to tangle blocks to another directory?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI currently use this to tangle my files:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+PROPERTY: header-args :tangle yes\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo I my blocks can be simpler:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+BEGIN_SRC emacs-lisp\\n(defun some-function ()\\n(interactive)\\n(message \\u0026quot;example\\u0026quot;))\\n#+END_SRC\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhich is fine, but the files are created in the same directory. I wonder if I can do something like this instead:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+PROPERTY: header-args :tangle /path/to/some-other-directory\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo, if was tangling a file called \\u003Ccode\\u003Eexample.org\\u003C/code\\u003E, it would write to\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E/path/to/some-other-directory/example.file\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI could use\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+PROPERTY: header-args :tangle /path/to/some-other-directory/example.el\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ebut I have a lot of files and a declaration that works for all of them would make it simpler to maintain them, as well as making alterations in my folders structure.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"b9zzug\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/b9zzug/can_i_set_a_header_argument_to_tangle_blocks_to/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/b9zzug/can_i_set_a_header_argument_to_tangle_blocks_to/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1554519208.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\n\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 05, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_b9qspb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1554497365.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"b9qspb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/b9qspb/weekly_rorgmode_open_discussion_april_05_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/b9qspb/weekly_rorgmode_open_discussion_april_05_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1554468565.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"(Xposting from r/spacemacs since this could also be an org problem.)\\n\\nI'm at my wits end trying to figure this out. I've reinstalled Spacemacs and all packages again and again, and I'm on the latest commit on the develop branch as of today.\\n\\n**Background:**\\n\\nI've configured `org-todo-keyword-faces` like so:\\n\\n ;; Define todo states\\n (setq org-todo-keywords\\n '((sequence \\\"NEXT(n)\\\" \\\"ACTION(a)\\\" \\\"WAIT(w)\\\" \\\"EVENT(e)\\\"\\n \\\"PROJECT(p)\\\" \\\"SCOPE(s)\\\" \\\"|\\\" \\\"DONE(d)\\\")))\\n \\n ;; Set todo keyword colors\\n (setq org-todo-keyword-faces\\n '((\\\"NEXT\\\" :background \\\"medium sea green\\\" :foreground \\\"white\\\" :weight bold)\\n (\\\"ACTION\\\" :foreground \\\"medium sea green\\\" :weight bold)\\n (\\\"WAIT\\\" :background \\\"yellow\\\" :foreground \\\"purple\\\" :weight bold)\\n (\\\"EVENT\\\" :background \\\"gray25\\\" :foreground \\\"white\\\" :weight bold)\\n (\\\"PROJECT\\\" :background \\\"firebrick\\\" :foreground \\\"white\\\" :weight bold)\\n (\\\"SCOPE\\\" :background \\\"dodger blue\\\" :foreground \\\"white\\\" :weight bold)\\n (\\\"DONE\\\" :background \\\"white\\\" :foreground \\\"black\\\" :weight bold)))\\n\\n**Problem:**\\n\\n[Here's what my buffers look like.](https://imgur.com/55SSWnz)\\n\\nThe faces seem to apply just fine, *except* for the NEXT and DONE states. In the above image, you can see that NEXT and DONE faces do not match what I've configured, while every other todo face works fine. Oddly enough, the faces are applied correctly when shown in the Org Todo buffer.\\n\\nNo matter what values I set in my config, those two will not change.\\n\\nEven if I *remove* the NEXT keyword from `org-todo-keywords` and restart, it will still highlight the keyword!\\n\\n**What I've tried:**\\n\\n* Reinstalled and upgraded to the latest Emacs and Spacemacs on the develop branch, including packages.\\n * At one point yesterday, the NEXT and DONE faces were correctly applied in-buffer, but somehow they've reverted back again.\\n * I was playing with themes, so could a theme perhaps have modified `org-done` and `org-todo` faces permanently?\\n* Deleting .emacs.d/.cache (I thought maybe the faces were somehow being cached)\\n* Disabling `font-lock-mode`\\n\\nThere might a bug *somewhere*, so I'd appreciate it if anyone could lend a hand in helping me figure this out!\\n\\n\\u0026#x200B;\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Customized org faces being overridden in buffer, but fine in Org todo buffer? [Spacemacs]\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_b9qrau\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1554497125.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E(Xposting from \\u003Ca href=\\\"/r/spacemacs\\\"\\u003Er/spacemacs\\u003C/a\\u003E since this could also be an org problem.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m at my wits end trying to figure this out. I\\u0026#39;ve reinstalled Spacemacs and all packages again and again, and I\\u0026#39;m on the latest commit on the develop branch as of today.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBackground:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve configured \\u003Ccode\\u003Eorg-todo-keyword-faces\\u003C/code\\u003E like so:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Define todo states\\n(setq org-todo-keywords\\n \\u0026#39;((sequence \\u0026quot;NEXT(n)\\u0026quot; \\u0026quot;ACTION(a)\\u0026quot; \\u0026quot;WAIT(w)\\u0026quot; \\u0026quot;EVENT(e)\\u0026quot;\\n \\u0026quot;PROJECT(p)\\u0026quot; \\u0026quot;SCOPE(s)\\u0026quot; \\u0026quot;|\\u0026quot; \\u0026quot;DONE(d)\\u0026quot;)))\\n\\n;; Set todo keyword colors\\n(setq org-todo-keyword-faces\\n \\u0026#39;((\\u0026quot;NEXT\\u0026quot; :background \\u0026quot;medium sea green\\u0026quot; :foreground \\u0026quot;white\\u0026quot; :weight bold)\\n (\\u0026quot;ACTION\\u0026quot; :foreground \\u0026quot;medium sea green\\u0026quot; :weight bold)\\n (\\u0026quot;WAIT\\u0026quot; :background \\u0026quot;yellow\\u0026quot; :foreground \\u0026quot;purple\\u0026quot; :weight bold)\\n (\\u0026quot;EVENT\\u0026quot; :background \\u0026quot;gray25\\u0026quot; :foreground \\u0026quot;white\\u0026quot; :weight bold)\\n (\\u0026quot;PROJECT\\u0026quot; :background \\u0026quot;firebrick\\u0026quot; :foreground \\u0026quot;white\\u0026quot; :weight bold)\\n (\\u0026quot;SCOPE\\u0026quot; :background \\u0026quot;dodger blue\\u0026quot; :foreground \\u0026quot;white\\u0026quot; :weight bold)\\n (\\u0026quot;DONE\\u0026quot; :background \\u0026quot;white\\u0026quot; :foreground \\u0026quot;black\\u0026quot; :weight bold)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProblem:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/55SSWnz\\\"\\u003EHere\\u0026#39;s what my buffers look like.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe faces seem to apply just fine, \\u003Cem\\u003Eexcept\\u003C/em\\u003E for the NEXT and DONE states. In the above image, you can see that NEXT and DONE faces do not match what I\\u0026#39;ve configured, while every other todo face works fine. Oddly enough, the faces are applied correctly when shown in the Org Todo buffer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo matter what values I set in my config, those two will not change.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEven if I \\u003Cem\\u003Eremove\\u003C/em\\u003E the NEXT keyword from \\u003Ccode\\u003Eorg-todo-keywords\\u003C/code\\u003E and restart, it will still highlight the keyword!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat I\\u0026#39;ve tried:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EReinstalled and upgraded to the latest Emacs and Spacemacs on the develop branch, including packages.\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAt one point yesterday, the NEXT and DONE faces were correctly applied in-buffer, but somehow they\\u0026#39;ve reverted back again.\\u003C/li\\u003E\\n\\u003Cli\\u003EI was playing with themes, so could a theme perhaps have modified \\u003Ccode\\u003Eorg-done\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-todo\\u003C/code\\u003E faces permanently?\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDeleting .emacs.d/.cache (I thought maybe the faces were somehow being cached)\\u003C/li\\u003E\\n\\u003Cli\\u003EDisabling \\u003Ccode\\u003Efont-lock-mode\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThere might a bug \\u003Cem\\u003Esomewhere\\u003C/em\\u003E, so I\\u0026#39;d appreciate it if anyone could lend a hand in helping me figure this out!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"b9qrau\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/b9qrau/customized_org_faces_being_overridden_in_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/b9qrau/customized_org_faces_being_overridden_in_buffer/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1554468325.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_b9qrau\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["433979"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:15 GMT"], "x-ratelimit-remaining": ["592.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21922-LGA"], "x-ratelimit-used": ["8"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914095.719905,VS0,VE1074"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["106"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:28:15"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_bxu83g"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:16 GMT"], "x-ratelimit-remaining": ["591.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21922-LGA"], "x-ratelimit-used": ["9"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914096.039292,VS0,VE92"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["104"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_bxu83g"}, "recorded_at": "2019-06-07T13:28:16"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsgv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cbr7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Heroquetarro10\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559899469.0, \"send_replies\": true, \"parent_id\": \"t3_bxsgv0\", \"score\": 1, \"author_fullname\": \"t2_288py4gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003Etest test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test\\n\\nYes\", \"link_title\": \"Text\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cbr7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etest test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYes\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/eq9cbr7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"report_reasons\": null, \"link_author\": \"Heroquetarro10\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"created\": 1559928269.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsgv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9c8db\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Heroquetarro10\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559899311.0, \"send_replies\": true, \"parent_id\": \"t3_bxsgv0\", \"score\": 1, \"author_fullname\": \"t2_288py4gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E test\", \"link_title\": \"Text\", \"author_flair_css_class\": null, \"name\": \"t1_eq9c8db\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/eq9c8db/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"report_reasons\": null, \"link_author\": \"Heroquetarro10\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"created\": 1559928111.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwsi3l\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq4tbku\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"testforcal\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559785341.0, \"send_replies\": true, \"parent_id\": \"t3_bwsi3l\", \"score\": 1, \"author_fullname\": \"t2_3wac7yjb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"test!\", \"link_title\": \"I CAN GO 15 SECONDS WITH ANYTHING. Howard looks like he is going to make doodie in his pants when GB hijacks his mic. Would GB walk away from this encounter if he bullied Howard in 2019? T O P L E S S\", \"author_flair_css_class\": null, \"name\": \"t1_eq4tbku\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/eq4tbku/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/\", \"report_reasons\": null, \"link_author\": \"Gooforme\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\\u0026t=2s\", \"created\": 1559814141.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwme1e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyizc2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"InsiderMemeBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559637515.0, \"send_replies\": true, \"parent_id\": \"t3_bwme1e\", \"score\": 1, \"author_fullname\": \"t2_2sm6difp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Template](/r/InsiderMemeTrading/comments/bwmd74/test/)\", \"link_title\": \"Image test\", \"author_flair_css_class\": null, \"name\": \"t1_epyizc2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/InsiderMemeTrading/comments/bwmd74/test/\\\"\\u003ETemplate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwme1e/image_test/epyizc2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwme1e/image_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/xju3qepdxa231.jpg\", \"created\": 1559666315.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwme78\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyiz7w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Crywren\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559637509.0, \"send_replies\": true, \"parent_id\": \"t3_bwme78\", \"score\": 1, \"author_fullname\": \"t2_18vy1b\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif](https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif)\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_epyiz7w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif\\\"\\u003Ehttps://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwme78/test/epyiz7w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwme78/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/vzxqgtbhxa231.png\", \"created\": 1559666309.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmads\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyih18\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"InsiderMemeBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559636627.0, \"send_replies\": true, \"parent_id\": \"t3_bwmads\", \"score\": 1, \"author_fullname\": \"t2_2sm6difp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Template](/r/InsiderMemeTrading/comments/bwmajp/cap_pointing/)\", \"link_title\": \"yeet\", \"author_flair_css_class\": null, \"name\": \"t1_epyih18\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/InsiderMemeTrading/comments/bwmajp/cap_pointing/\\\"\\u003ETemplate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwmads/yeet/epyih18/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwmads/yeet/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/b0ad3b9gua231.jpg\", \"created\": 1559665427.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw86r0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epwwjmw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erebusmaster\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559586407.0, \"send_replies\": true, \"parent_id\": \"t3_bw86r0\", \"score\": 1, \"author_fullname\": \"t2_gbhji\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"success!\", \"link_title\": \"testagain3\", \"author_flair_css_class\": null, \"name\": \"t1_epwwjmw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Esuccess!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bw86r0/testagain3/epwwjmw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"report_reasons\": null, \"link_author\": \"erebusmaster\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"created\": 1559615207.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epn2c0q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Brewsterion\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559320247.0, \"send_replies\": true, \"parent_id\": \"t1_epn250f\", \"score\": 1, \"author_fullname\": \"t2_118qqr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"A few days usually, just send it to the mods to get it approved. They\\u2019ll give some more feedback if it\\u2019s needed.\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_epn2c0q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA few days usually, just send it to the mods to get it approved. They\\u2019ll give some more feedback if it\\u2019s needed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/epn2c0q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559349047.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epn250f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SYwaves\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559320172.0, \"send_replies\": true, \"parent_id\": \"t1_eplphoy\", \"score\": 2, \"author_fullname\": \"t2_2j4j6rg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks man. I\\u2019m still thinking of making more edits, but 3790 makes taking the declass to any solid conclusion difficult:P\\n\\nAs a side note, how long does it usually take to get approved?\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_epn250f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks man. I\\u2019m still thinking of making more edits, but 3790 makes taking the declass to any solid conclusion difficult:P\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a side note, how long does it usually take to get approved?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/epn250f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559348972.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv7huc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epm852r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"binjajer\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559309424.0, \"send_replies\": false, \"parent_id\": \"t3_bv7huc\", \"score\": 1, \"author_fullname\": \"t2_3g10qxu5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Tired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens? \\n\\n\\nCheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.) \\n\\n\\n[https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/](https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/) \\n\\n\\nSquadron discord details will be disbursed upon application. \\n\\n\\n Fly bigly, commanders!\", \"link_title\": \"Make the Galaxy Great Again!\", \"author_flair_css_class\": null, \"name\": \"t1_epm852r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\\"\\u003Ehttps://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESquadron discord details will be disbursed upon application. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFly bigly, commanders!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/epm852r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"report_reasons\": null, \"link_author\": \"binjajer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"created\": 1559338224.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplphoy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Brewsterion\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559300826.0, \"send_replies\": true, \"parent_id\": \"t3_bv2mv5\", \"score\": 1, \"author_fullname\": \"t2_118qqr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"As a frequent poster to SCPD, I like what you\\u2019ve done here with explaining all the references and the main theme of the article. Good luck on getting it approved by mods.\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_eplphoy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a frequent poster to SCPD, I like what you\\u2019ve done here with explaining all the references and the main theme of the article. Good luck on getting it approved by mods.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/eplphoy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559329626.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buz6bd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epjgsbw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dwolfj\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559253716.0, \"send_replies\": true, \"parent_id\": \"t3_buz6bd\", \"score\": 1, \"author_fullname\": \"t2_2awf2pwl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" ............................................________ \\n ....................................,.-'\\\"...................``~., \\n .............................,.-\\\"...................................\\\"-., \\n .........................,/...............................................\\\":, \\n .....................,?......................................................, \\n .................../...........................................................,} \\n ................./......................................................,:`^`..} \\n .............../...................................................,:\\\"........./ \\n ..............?.....__.........................................:`.........../ \\n ............./__.(.....\\\"~-,_..............................,:`........../ \\n .........../(_....\\\"~,_........\\\"~,_....................,:`........_/ \\n ..........{.._$;_......\\\"=,_.......\\\"-,_.......,.-~-,},.~\\\";/....} \\n ...........((.....*~_.......\\\"=-._......\\\";,,./`..../\\\"............../ \\n ...,,,___.`~,......\\\"~.,....................`.....}............../ \\n ............(....`=-,,.......`........................(......;_,,-\\\" \\n ............/.`~,......`-...................................../ \\n .............`~.*-,.....................................|,./.....,__ \\n ,,_..........}.\\u003E-._...................................|..............`=~-, \\n .....`=~-,__......`,................................. \\n ...................`=~-,,.,............................... \\n ................................`:,,...........................`..............__ \\n .....................................`=-,...................,%`\\u003E--==`` \\n ........................................_..........._,-%.......` \\n ...................................,\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_epjgsbw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E............................................________ \\n....................................,.-\\u0026#39;\\u0026quot;...................``~., \\n.............................,.-\\u0026quot;...................................\\u0026quot;-., \\n.........................,/...............................................\\u0026quot;:, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\u0026quot;........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\u0026quot;~-,_..............................,:`........../ \\n.........../(_....\\u0026quot;~,_........\\u0026quot;~,_....................,:`........_/ \\n..........{.._$;_......\\u0026quot;=,_.......\\u0026quot;-,_.......,.-~-,},.~\\u0026quot;;/....} \\n...........((.....*~_.......\\u0026quot;=-._......\\u0026quot;;,,./`..../\\u0026quot;............../ \\n...,,,___.`~,......\\u0026quot;~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\u0026quot; \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u0026gt;-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u0026gt;--==`` \\n........................................_..........._,-%.......` \\n...................................,\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/buz6bd/test/epjgsbw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"report_reasons\": null, \"link_author\": \"dwolfj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"created\": 1559282516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbhff3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559142650.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts\\n**1 Correct Seed:** 15pts\\n**2 Correct Seeds:** +30pts(45 total)\\n**(S)emi(F)inalist:** 180pts\\n**(F)inalist:** 380pts\\n**(W)inners:** 780pts\\n**Score in favor of your winner:** 190pts\\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | |\\n | | | | | | |\\n Group A| | | | | | |\\nNRG|QF |1 |SF |F |W |4-3 | |\\nINTZ|QF |2 | | | | | |\\nPSG| | | | | | | WC |\\n | | | | | | |\\nGroup B | | | | | | | \\nRV | | | | | | | |\\nG2 |QF |1 |SF |F | | | |\\nOOO |QF |2 | | | | | |\\n | | | | | | |\\nGroup C | | | | | | |\\nRNG |QF |1 |SF | | | | |\\nFCB |QF |2 |SF | | | | |\\nRGE | | | | | | | |\\n | | | | | | |\\nGroup D | | | | | | |\\nLKE |QF |2 | | | | | |\\nC9 | | | | | | | WC |\\nTT |QF |1 | | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbhff3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts\\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15pts\\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30pts(45 total)\\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180pts\\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380pts\\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780pts\\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190pts\\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | |\\n | | | | | | |\\n Group A| | | | | | |\\nNRG|QF |1 |SF |F |W |4-3 | |\\nINTZ|QF |2 | | | | | |\\nPSG| | | | | | | WC |\\n | | | | | | |\\nGroup B | | | | | | | \\nRV | | | | | | | |\\nG2 |QF |1 |SF |F | | | |\\nOOO |QF |2 | | | | | |\\n | | | | | | |\\nGroup C | | | | | | |\\nRNG |QF |1 |SF | | | | |\\nFCB |QF |2 |SF | | | | |\\nRGE | | | | | | | |\\n | | | | | | |\\nGroup D | | | | | | |\\nLKE |QF |2 | | | | | |\\nC9 | | | | | | | WC |\\nTT |QF |1 | | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbhff3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559171450.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbfzp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559142036.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n(Q)uarter(F)inalist: 100 pts 1 Correct Seed: 15 pts 2 Correct Seeds: +30 pts(45 total) (S)emi(F)inalist: 180 pts (F)inalist: 380 pts (W)inners: 780 pts Score in favor of your winner: 190 pts Score in favor of your winner AND you guessed the other Finalist: +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\nWhat predictions would look like is this...\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n| | | | | | | | | | | | \\nGroup A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 | \\nINTZ|QF |2 | | | | | \\nPSG| | | | | | | \\nWC | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | | \\nOOO |QF |2 | | | | | | | | | | | \\nGroup C | | | | | | \\nRNG |QF |1 |SF | | | | \\nFCB |QF |2 |SF | | | | \\nRGE | | | | | | | | | | | | | \\nGroup D | | | | | | \\nLKE |QF |2 | | | | | \\nC9 | | | | | | | WC \\nTT |QF |1 | | | | |\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\nAdvice: Take the teams\\n\\nA1 v B2 D1 v C2\\n\\nB1 v A2 C1 v D2\\n\\nAnd substitute them with your predictions to keep track:\\n\\nNRG v OOO TT v FCB\\n\\nG2 v INTZ RNG v LKE\\n\\n Disclaimer: I\\u2019ll post this about every week and a couple days before LAN.\\n\\nRules and Guidelines:\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game. Please submit your predictions as unedited comments or Dms to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\nQuestions\\n\\nWhy am I not doing Dreamhack? I haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\nWill I do this for other tournaments in the future? For majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\nWill there be analysis on my part? Likely, but not guaranteed. I may try to get someone else on board.\\n\\nWhen and where will results be posted? Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n\\nNOTES:\\n\\nI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\nTwo Questions From Me:\\n\\nHow would you like the Wildcard picks to work? I\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n\\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be?\\n\\nThe table format will be in the comments.\\n\\nOne with a blank sheet. The other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbfzp8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Q)uarter(F)inalist: 100 pts 1 Correct Seed: 15 pts 2 Correct Seeds: +30 pts(45 total) (S)emi(F)inalist: 180 pts (F)inalist: 380 pts (W)inners: 780 pts Score in favor of your winner: 190 pts Score in favor of your winner AND you guessed the other Finalist: +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n| | | | | | | | | | | | \\nGroup A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 | \\nINTZ|QF |2 | | | | | \\nPSG| | | | | | | \\nWC | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | | \\nOOO |QF |2 | | | | | | | | | | | \\nGroup C | | | | | | \\nRNG |QF |1 |SF | | | | \\nFCB |QF |2 |SF | | | | \\nRGE | | | | | | | | | | | | | \\nGroup D | | | | | | \\nLKE |QF |2 | | | | | \\nC9 | | | | | | | WC \\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2 D1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2 C1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO TT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ RNG v LKE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERules and Guidelines:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game. Please submit your predictions as unedited comments or Dms to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuestions\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy am I not doing Dreamhack? I haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWill I do this for other tournaments in the future? For majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWill there be analysis on my part? Likely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen and where will results be posted? Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENOTES:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETwo Questions From Me:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work? I\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet. The other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbfzp8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170836.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbekt2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559141502.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts \\n**1 Correct Seed:** 15 pts \\n**2 Correct Seeds:** +30 pts(45 total) \\n**(S)emi(F)inalist:** 180 pts \\n**(F)inalist:** 380 pts \\n**(W)inners:** 780 pts \\n**Score in favor of your winner:** 190 pts \\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total) \\n \\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbekt2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts \\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15 pts \\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30 pts(45 total) \\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180 pts \\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380 pts \\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780 pts \\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190 pts \\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbekt2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170302.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbe3h9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559141322.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Why won\\u2019t the table work\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbe3h9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy won\\u2019t the table work\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbe3h9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170122.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559109977.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu790e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep9gim2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"elcocotero\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559109744.0, \"send_replies\": true, \"parent_id\": \"t3_bu790e\", \"score\": 1, \"author_fullname\": \"t2_ps7sm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"That would be [Danza Kuduro by puerto rican reggeaton artist Don Omar](https://www.youtube.com/watch?v=7zp1TbLFPp8).\\n\\n Now i'm not a big reggaeton fan but this guy's one of the best. \\\"Sali\\u00f3 el sol\\\" is amazing. Also \\\"Diva Virtual\\\".\", \"link_title\": \"Upcoming Tile Based Strategy Game: \\\"Claim Game\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ep9gim2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat would be \\u003Ca href=\\\"https://www.youtube.com/watch?v=7zp1TbLFPp8\\\"\\u003EDanza Kuduro by puerto rican reggeaton artist Don Omar\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow i\\u0026#39;m not a big reggaeton fan but this guy\\u0026#39;s one of the best. \\u0026quot;Sali\\u00f3 el sol\\u0026quot; is amazing. Also \\u0026quot;Diva Virtual\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/ep9gim2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/\", \"created\": 1559138544.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu8y26\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep8kbww\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dekarde\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559096074.0, \"send_replies\": true, \"parent_id\": \"t3_bu8y26\", \"score\": 1, \"author_fullname\": \"t2_jb0ym\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"field 1\", \"link_title\": \"up-test\", \"author_flair_css_class\": null, \"name\": \"t1_ep8kbww\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efield 1\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bu8y26/uptest/ep8kbww/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"report_reasons\": null, \"link_author\": \"Dekarde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"created\": 1559124874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bt0w6n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eosnfxq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"User09060657542\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558826026.0, \"send_replies\": true, \"parent_id\": \"t3_bt0w6n\", \"score\": 1, \"author_fullname\": \"t2_f4ra2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"..\", \"link_title\": \"testing 123\", \"author_flair_css_class\": null, \"name\": \"t1_eosnfxq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bt0w6n/testing_123/eosnfxq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"report_reasons\": null, \"link_author\": \"User09060657542\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"created\": 1558854826.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsyl0k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoruj65\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"T-8-0-0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558813105.0, \"send_replies\": true, \"parent_id\": \"t3_bsyl0k\", \"score\": 1, \"author_fullname\": \"t2_2zkr00l4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003Cblockquote class=\\\"imgur-embed-pub\\\" lang=\\\"en\\\" data-id=\\\"a/MWQxuVC\\\"\\u003E\\u003Ca href=\\\"[//imgur.com/MWQxuVC](//imgur.com/MWQxuVC)\\\"\\u003EBvS\\u003C/a\\u003E\\u003C/blockquote\\u003E\\u003Cscript async src=\\\"[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\", \"link_title\": \"BvS\", \"author_flair_css_class\": null, \"name\": \"t1_eoruj65\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;blockquote class=\\u0026quot;imgur-embed-pub\\u0026quot; lang=\\u0026quot;en\\u0026quot; data-id=\\u0026quot;a/MWQxuVC\\u0026quot;\\u0026gt;\\u0026lt;a href=\\u0026quot;[//imgur.com/MWQxuVC](//imgur.com/MWQxuVC)\\u0026quot;\\u0026gt;BvS\\u0026lt;/a\\u0026gt;\\u0026lt;/blockquote\\u0026gt;\\u0026lt;script async src=\\u0026quot;[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\u0026quot; charset=\\u0026quot;utf-8\\u0026quot;\\u0026gt;\\u0026lt;/script\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bsyl0k/bvs/eoruj65/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"report_reasons\": null, \"link_author\": \"T-8-0-0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"created\": 1558841905.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsveoo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoqtetr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"YOUREABOT\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558796617.0, \"send_replies\": true, \"parent_id\": \"t3_bsveoo\", \"score\": 1, \"author_fullname\": \"t2_3b1gaoke\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"dang, i never noticed the sound of kane cocking the gun.\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eoqtetr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edang, i never noticed the sound of kane cocking the gun.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bsveoo/test/eoqtetr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bsveoo/test/\", \"report_reasons\": null, \"link_author\": \"Ihuarraquax__\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=goQiwNZzoVA\", \"created\": 1558825417.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bskwuj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoo6l31\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558730695.0, \"send_replies\": true, \"parent_id\": \"t3_bskwuj\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"who who what what\", \"link_title\": \"Pokecube II\", \"author_flair_css_class\": null, \"name\": \"t1_eoo6l31\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewho who what what\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bskwuj/pokecube_ii/eoo6l31/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"report_reasons\": null, \"link_author\": \"vandergus\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"created\": 1558759495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs053g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eonr18y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"IncendiaryGames\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558719419.0, \"send_replies\": true, \"parent_id\": \"t1_eon0nk4\", \"score\": 1, \"author_fullname\": \"t2_kz0h4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks Ed! I just realized I accidentally linked you to my post preview post and not the one on /r/hometheater. Here is that link if you want to repost your comment there: \\nhttps://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eonr18y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks Ed! I just realized I accidentally linked you to my post preview post and not the one on \\u003Ca href=\\\"/r/hometheater\\\"\\u003E/r/hometheater\\u003C/a\\u003E. Here is that link if you want to repost your comment there: \\n\\u003Ca href=\\\"https://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\\\"\\u003Ehttps://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs053g/test/eonr18y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"report_reasons\": null, \"link_author\": \"IncendiaryGames\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"created\": 1558748219.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs053g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eon0nk4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"svsound\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558700754.0, \"send_replies\": true, \"parent_id\": \"t3_bs053g\", \"score\": 1, \"author_fullname\": \"t2_i0b8n\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Considering you're not going to be moving for 5+ years, I would size the subwoofer to your current system/loudspeakers and an apartment setting where you listen at -15 to -10. \\n\\nAn SB-4000 would be a good fit for your application, providing tight, accurate, punchy bass with excellent deep extension. You'll have plenty of SPL for the current playback level of -15 to -10. \\n\\nAfter running Audyssey XT32 in the Denon, make sure all speakers are set to Small and the crossovers should be fronts 60 Hz, center 80 Hz, surrounds 80 Hz and overheads 100-120 Hz (unless Audyssey sets them higher). \\n\\nUnder Bass the subwoofer mode should be LFE and the LPF/LFE should be 120 Hz. \\n\\nXT32 will have you level match the subwoofer to 75 dB as part of the initial set-up. This will likely result in the subwoofer volume set to somewhere in the -20 to -15 range (which is fine). The Denon will probably trim-out the subwoofer channel somewhere in the low negative range (which is also fine). \\n\\nIf you want to run the subwoofer channel hotter than the Audyssey level match, then increase the sub channel in the Denon by a few dB.\\n\\nEd M - SVS\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eon0nk4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EConsidering you\\u0026#39;re not going to be moving for 5+ years, I would size the subwoofer to your current system/loudspeakers and an apartment setting where you listen at -15 to -10. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn SB-4000 would be a good fit for your application, providing tight, accurate, punchy bass with excellent deep extension. You\\u0026#39;ll have plenty of SPL for the current playback level of -15 to -10. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter running Audyssey XT32 in the Denon, make sure all speakers are set to Small and the crossovers should be fronts 60 Hz, center 80 Hz, surrounds 80 Hz and overheads 100-120 Hz (unless Audyssey sets them higher). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnder Bass the subwoofer mode should be LFE and the LPF/LFE should be 120 Hz. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EXT32 will have you level match the subwoofer to 75 dB as part of the initial set-up. This will likely result in the subwoofer volume set to somewhere in the -20 to -15 range (which is fine). The Denon will probably trim-out the subwoofer channel somewhere in the low negative range (which is also fine). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you want to run the subwoofer channel hotter than the Audyssey level match, then increase the sub channel in the Denon by a few dB.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEd M - SVS\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs053g/test/eon0nk4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"report_reasons\": null, \"link_author\": \"IncendiaryGames\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"created\": 1558729554.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs5jg4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoj2zwz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558632235.0, \"send_replies\": true, \"parent_id\": \"t3_bs5jg4\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"care bears\", \"link_title\": \"my lil pony\", \"author_flair_css_class\": null, \"name\": \"t1_eoj2zwz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ecare bears\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs5jg4/my_lil_pony/eoj2zwz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs5jg4/my_lil_pony/\", \"report_reasons\": null, \"link_author\": \"fragglestickcar0\", \"author_flair_text\": null, \"link_url\": \"http://www.youtube.com/watch?v=21ix1OwPoY8\", \"created\": 1558661035.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs4zeb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoiznnd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"emackn\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558630564.0, \"send_replies\": true, \"parent_id\": \"t3_bs4zeb\", \"score\": 1, \"author_fullname\": \"t2_9gu2i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Build details:**\\n\\n* ***Aero Precision M4E1 Upper***\\n * Aero Precision 15\\\" Enhanced M-LOK handguard, gen 2\\n * Columbia River Arms 16\\\" 1:7 barrel in FDE\\n * VG6 Gamma 556 compensator\\n * spikes tactical gas tube\\n * superlative arms gas block\\n * Vortex Strikefire II red dot\\n* ***Aero Precision M4E1 Lower (stripped, PEW edition)***\\n * BCM BCG in FDE\\n * BAD mag release\\n * BAD ambi saftey\\n * Geissele 2 stage trigger\\n * Geissele buffer tube with super 42 spring\\n * Geissele Maritime Bolt Catch\\n\\n* ***Magpul furniture***\\n * MOE-K2 Grip\\n * CTR carbine stock\\n * Pmag\\n * handstop\\n * BUIS\\n\\n\\n**Other Images:**\\n\\n * [side fire select](https://i.postimg.cc/85FMMngJ/AR15-pew-2.jpg)\\n * [view of FDE barrel](https://i.postimg.cc/zB9WjSqd/AR15-pew-3.jpg)\\n\\n\\u0026nbsp;\\n\\n\\u0026nbsp;\\n\\nNext up is 10.5 300BLK in OD Green\", \"link_title\": \"First AR Build Friday\", \"author_flair_css_class\": null, \"name\": \"t1_eoiznnd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBuild details:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAero Precision M4E1 Upper\\u003C/em\\u003E\\u003C/strong\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAero Precision 15\\u0026quot; Enhanced M-LOK handguard, gen 2\\u003C/li\\u003E\\n\\u003Cli\\u003EColumbia River Arms 16\\u0026quot; 1:7 barrel in FDE\\u003C/li\\u003E\\n\\u003Cli\\u003EVG6 Gamma 556 compensator\\u003C/li\\u003E\\n\\u003Cli\\u003Espikes tactical gas tube\\u003C/li\\u003E\\n\\u003Cli\\u003Esuperlative arms gas block\\u003C/li\\u003E\\n\\u003Cli\\u003EVortex Strikefire II red dot\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAero Precision M4E1 Lower (stripped, PEW edition)\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBCM BCG in FDE\\u003C/li\\u003E\\n\\u003Cli\\u003EBAD mag release\\u003C/li\\u003E\\n\\u003Cli\\u003EBAD ambi saftey\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele 2 stage trigger\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele buffer tube with super 42 spring\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele Maritime Bolt Catch\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EMagpul furniture\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EMOE-K2 Grip\\u003C/li\\u003E\\n\\u003Cli\\u003ECTR carbine stock\\u003C/li\\u003E\\n\\u003Cli\\u003EPmag\\u003C/li\\u003E\\n\\u003Cli\\u003Ehandstop\\u003C/li\\u003E\\n\\u003Cli\\u003EBUIS\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EOther Images:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://i.postimg.cc/85FMMngJ/AR15-pew-2.jpg\\\"\\u003Eside fire select\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://i.postimg.cc/zB9WjSqd/AR15-pew-3.jpg\\\"\\u003Eview of FDE barrel\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext up is 10.5 300BLK in OD Green\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs4zeb/first_ar_build_friday/eoiznnd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs4zeb/first_ar_build_friday/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/if35r70kjzz21.jpg\", \"created\": 1558659364.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bq9bgb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoid65v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558616951.0, \"send_replies\": true, \"parent_id\": \"t3_bq9bgb\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\\nbugaboo\", \"link_title\": \"we\", \"author_flair_css_class\": null, \"name\": \"t1_eoid65v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\nbugaboo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bq9bgb/we/eoid65v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bq9bgb/we/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bq9bgb/we/\", \"created\": 1558645751.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_brgcyy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoibl85\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558615819.0, \"send_replies\": true, \"parent_id\": \"t3_brgcyy\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"HGCE Freedom Gundam Album\", \"author_flair_css_class\": null, \"name\": \"t1_eoibl85\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/eoibl85/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/\", \"report_reasons\": null, \"link_author\": \"NeonRunner\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/EKjeyR4\", \"created\": 1558644619.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_b892bv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoibfr4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558615716.0, \"send_replies\": true, \"parent_id\": \"t1_ejwhbla\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eoibfr4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/b892bv/test/eoibfr4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/b892bv/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/OFkJjXL\", \"created\": 1558644516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bay8r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoi61fx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558611465.0, \"send_replies\": true, \"parent_id\": \"t1_ekgl4mf\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eoi61fx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bay8r2/test/eoi61fx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bay8r2/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bay8r2/test/\", \"created\": 1558640265.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqs0lm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoah4bg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NamiPickles\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558417762.0, \"send_replies\": true, \"parent_id\": \"t1_eo84uif\", \"score\": 2, \"author_fullname\": \"t2_cp3cb3l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"thanks my dude\", \"link_title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"author_flair_css_class\": null, \"name\": \"t1_eoah4bg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks my dude\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/eoah4bg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"report_reasons\": null, \"link_author\": \"NamiPickles\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/VmalKIuFimk\", \"created\": 1558446562.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqs0lm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo84uif\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Flying-Croissant\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558357381.0, \"send_replies\": true, \"parent_id\": \"t3_bqs0lm\", \"score\": 1, \"author_fullname\": \"t2_1d8oz7i8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Good shit\", \"link_title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"author_flair_css_class\": null, \"name\": \"t1_eo84uif\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood shit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/eo84uif/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"report_reasons\": null, \"link_author\": \"NamiPickles\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/VmalKIuFimk\", \"created\": 1558386181.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqofzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo67e75\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imperatorz\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558313245.0, \"send_replies\": true, \"parent_id\": \"t3_bqofzt\", \"score\": 1, \"author_fullname\": \"t2_3s7t8gxj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hi folks,\\n\\nFirst of all, thanks for all the quality posts here, i created an account just for this community !\\nI'm a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\n\\nD1 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD2 : Squat (55)- OHP (35)\\nD3 : Rest\\nD4 : Squat (55)- OHP (35)\\nD5 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD6 : Squat (55)- OHP (35) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\nD7 : Rest\\n\\nI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP\\n\\nFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7\\n\\nMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\n\\nThanks for all you're doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_eo67e75\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\nI\\u0026#39;m a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD2 : Squat (55)- OHP (35)\\nD3 : Rest\\nD4 : Squat (55)- OHP (35)\\nD5 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD6 : Squat (55)- OHP (35) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\nD7 : Rest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/eo67e75/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"report_reasons\": null, \"link_author\": \"imperatorz\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"created\": 1558342045.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqofzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo67cm7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imperatorz\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558313217.0, \"send_replies\": true, \"parent_id\": \"t3_bqofzt\", \"score\": 1, \"author_fullname\": \"t2_3s7t8gxj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hi folks,\\n\\nFirst of all, thanks for all the quality posts here, i created an account just for this community ! \\nI'm a 20 yo male who recently got back into lifting. \\nSince the end of march I have been training consistently 4-5 times a week with the following program : \\n\\nD1 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5) \\nD2 : Squat (5*5)- OHP (3*5) \\nD3 : Rest \\nD4 : Squat (5*5)- OHP (3*5) \\nD5 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5) \\nD6 : Squat (5*5)- OHP (3*5) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\nD7 : Rest \\n \\nI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP \\n \\nFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7 \\n\\nMy questions are, in a perspective of continuing fat loss : \\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ? \\n\\u2022 Should I start cardio/HIIT to eliminate more fat ? \\n\\u2022 Have you got any recommendation altogether ? All advices appreciated. \\n \\nThanks for all you're doing in here and sorry for broken english, \\nAn over-Atlantic enthusiast\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_eo67cm7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\u003Cbr/\\u003E\\nI\\u0026#39;m a 20 yo male who recently got back into lifting.\\u003Cbr/\\u003E\\nSince the end of march I have been training consistently 4-5 times a week with the following program : \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD2 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD3 : Rest\\u003Cbr/\\u003E\\nD4 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD5 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD6 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\u003Cbr/\\u003E\\nD7 : Rest \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\u003Cbr/\\u003E\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\u003Cbr/\\u003E\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\u003Cbr/\\u003E\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\u003Cbr/\\u003E\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/eo67cm7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"report_reasons\": null, \"link_author\": \"imperatorz\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"created\": 1558342017.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ens8t9m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558025712.0, \"send_replies\": true, \"parent_id\": \"t1_ens8roy\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Omg it works!!\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_ens8t9m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOmg it works!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/ens8t9m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1558054512.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ens8roy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558025695.0, \"send_replies\": true, \"parent_id\": \"t3_bpezwp\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E testing testing one two three\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_ens8roy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etesting testing one two three\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/ens8roy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1558054495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpdae9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enrm2j5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558017205.0, \"send_replies\": true, \"parent_id\": \"t3_bpdae9\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"As good as it gets - MASSIVE 60ft Nazare\", \"author_flair_css_class\": null, \"name\": \"t1_enrm2j5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpdae9/as_good_as_it_gets_massive_60ft_nazare/enrm2j5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpdae9/as_good_as_it_gets_massive_60ft_nazare/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1558046005.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh7bm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931730.0, \"send_replies\": true, \"parent_id\": \"t3_boytzt\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"https://youtu.be/yTob1CPeL6I\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh7bm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh7bm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960530.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh4ms\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931703.0, \"send_replies\": true, \"parent_id\": \"t1_enmh2vx\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh4ms\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh4ms/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960503.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh2vx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931685.0, \"send_replies\": true, \"parent_id\": \"t3_boytzt\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh2vx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh2vx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960485.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bowuds\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enlndge\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GameInfusionTC\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557920346.0, \"send_replies\": true, \"parent_id\": \"t3_bowuds\", \"score\": 1, \"author_fullname\": \"t2_18i8688m\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"y^ikes\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_enlndge\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ey\\u003Csup\\u003Eikes\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bowuds/test/enlndge/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"created\": 1557949146.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bowuds\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enlnbx5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GameInfusionTC\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557920327.0, \"send_replies\": true, \"parent_id\": \"t3_bowuds\", \"score\": 1, \"author_fullname\": \"t2_18i8688m\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u2013\\u2013strikethrough\\u2013\\u2013\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_enlnbx5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u2013\\u2013strikethrough\\u2013\\u2013\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bowuds/test/enlnbx5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"created\": 1557949127.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bogbq5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enfx5gc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheB333\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557824074.0, \"send_replies\": true, \"parent_id\": \"t3_bogbq5\", \"score\": 1, \"author_fullname\": \"t2_10snnt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Last week there was a post considering a weekly theory crafting thread. I kind of liked the idea. People discussed when and how that post and the formatting should be made.\\n\\n\\u0026#x200B;\\n\\nI may not be up to date with this idea, since i couldnt follow the reddit in the last week due to my working shedule. But i want to give it a shot.\\n\\n\\u0026#x200B;\\n\\nAs the Esther hype fades, i want to dedicate this post to our beloved queen of damage dealers. \\n\\n\\\\##Let us gather and share all possible and crazy ideas, that come to your mind.\\n\\n\\u0026#x200B;\\n\\nEsther is such an easy charackter, yet i bet that there are strategies that i cannot even imagine in my boldest dreams. There are a few reasons for this: She has innitiate evade, can work as AoE tank, absorbs lightning damage, has chaining counters, just to list a few important features.\\n\\n\\u0026#x200B;\\n\\nHow do i Imagine the struckture of this thread:\\n\\nHere\\\\`s an example on how you could make the formatting of your comment:\\n\\n\\u0026#x200B;\\n\\n\\\\# \\\\*\\\\*Title/Trial/Strategy\\\\*\\\\* #\\n\\nDescription\\n\\n\\u0026#x200B;\\n\\n\\\\* \\\\*\\\\*Difficulty/Equipment needed:\\\\*\\\\*/Beginner-Casual-Whale\\n\\n\\\\* \\\\*\\\\*Team Comp:\\\\*\\\\* (with eqipment, best would be FFBE equip link)\\n\\n\\\\* \\\\*\\\\*Turn rotation:\\\\*\\\\*\\n\\n\\\\* \\\\*\\\\*Useful tips:\\\\*\\\\*\\n\\n\\\\* \\\\*\\\\*Friend Code:\\\\*\\\\* (for Carry)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n\\\\##I would really love to heaer some strategies with her. Can she solo Ramuh? What ist the potential of 6 evade Esthers (with phoenix) ? In wich trails does she shine? What are the best unit synergies? \\n\\n\\u0026#x200B;\\n\\nI will try to give it a start:\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n\\\\# \\\\*\\\\*0TK Alexander 3\\\\* entrust LB kill\\\\*\\\\* #\\n\\nBasically you use two low level \\\\[units with entrust\\\\]([https://exvius.gamepedia.com/Entrust](https://exvius.gamepedia.com/Entrust)) that you fill their LB with either Aileen or Nyx in first turn. Then you imbue both your Esthers with water so you get the benefit of the 300% imperil. Use two chaining LB first turn -\\u003E finish. It's not all achievements but it saved me a lot of nerves. \\n\\n\\u0026#x200B;\\n\\n\\\\* \\\\*\\\\*Difficulty/Equipment needed:\\\\*\\\\*Casual-Dolphin\\n\\n\\\\* \\\\*\\\\*Requirements:\\\\*\\\\* \\\\[Build\\\\]([http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4](http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4)), Basically you need 2x low level entrusters, Aileen or Nxy, CG Nichol or SS Nichol, 2x Esthers with as much Machine Killer you can find.\\n\\n\\\\* \\\\*\\\\*Turn rotation:\\\\*\\\\* Turn 1: Aileen/Nyx is using LB fill, 2x entrust to both Esthers, dualcast water imbue on Esthers and then kill Alexander 3\\\\* with 2x limit chain Esther\\n\\n\\\\* \\\\*\\\\*Useful tips:\\\\*\\\\* Make sure to give Esther all the machine killer that you have and LB damage boosting eqipment. NOTE: If you use Aileen, make sure that the LB of the entrust units get filled! You can just let them be on lv 1 to make sure of this.\\n\\n\\\\* \\\\*\\\\*Friend Code:\\\\*\\\\* not carrying right now since im at work, sorry guys!\\n\\n\\u0026#x200B;\\n\\nI know that this strategy may not only be possible with Esther but Zeno or many more too! Feel free to comment and incite some nice discussions/comparisons/replacements.\\n\\n\\u0026#x200B;\\n\\nPS. Sorry if theres any problems with formatting.\", \"link_title\": \"y\", \"author_flair_css_class\": null, \"name\": \"t1_enfx5gc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELast week there was a post considering a weekly theory crafting thread. I kind of liked the idea. People discussed when and how that post and the formatting should be made.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI may not be up to date with this idea, since i couldnt follow the reddit in the last week due to my working shedule. But i want to give it a shot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the Esther hype fades, i want to dedicate this post to our beloved queen of damage dealers. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##Let us gather and share all possible and crazy ideas, that come to your mind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEsther is such an easy charackter, yet i bet that there are strategies that i cannot even imagine in my boldest dreams. There are a few reasons for this: She has innitiate evade, can work as AoE tank, absorbs lightning damage, has chaining counters, just to list a few important features.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do i Imagine the struckture of this thread:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere`s an example on how you could make the formatting of your comment:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# **Title/Trial/Strategy** #\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Difficulty/Equipment needed:**/Beginner-Casual-Whale\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Team Comp:** (with eqipment, best would be FFBE equip link)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Turn rotation:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Useful tips:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Friend Code:** (for Carry)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##I would really love to heaer some strategies with her. Can she solo Ramuh? What ist the potential of 6 evade Esthers (with phoenix) ? In wich trails does she shine? What are the best unit synergies? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI will try to give it a start:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# **0TK Alexander 3* entrust LB kill** #\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically you use two low level [units with entrust](\\u003Ca href=\\\"https://exvius.gamepedia.com/Entrust\\\"\\u003Ehttps://exvius.gamepedia.com/Entrust\\u003C/a\\u003E) that you fill their LB with either Aileen or Nyx in first turn. Then you imbue both your Esthers with water so you get the benefit of the 300% imperil. Use two chaining LB first turn -\\u0026gt; finish. It\\u0026#39;s not all achievements but it saved me a lot of nerves. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Difficulty/Equipment needed:**Casual-Dolphin\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Requirements:** [Build](\\u003Ca href=\\\"http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4\\\"\\u003Ehttp://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4\\u003C/a\\u003E), Basically you need 2x low level entrusters, Aileen or Nxy, CG Nichol or SS Nichol, 2x Esthers with as much Machine Killer you can find.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Turn rotation:** Turn 1: Aileen/Nyx is using LB fill, 2x entrust to both Esthers, dualcast water imbue on Esthers and then kill Alexander 3* with 2x limit chain Esther\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Useful tips:** Make sure to give Esther all the machine killer that you have and LB damage boosting eqipment. NOTE: If you use Aileen, make sure that the LB of the entrust units get filled! You can just let them be on lv 1 to make sure of this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Friend Code:** not carrying right now since im at work, sorry guys!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know that this strategy may not only be possible with Esther but Zeno or many more too! Feel free to comment and incite some nice discussions/comparisons/replacements.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS. Sorry if theres any problems with formatting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bogbq5/y/enfx5gc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bogbq5/y/\", \"report_reasons\": null, \"link_author\": \"TheB333\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bogbq5/y/\", \"created\": 1557852874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo84dx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"endic87\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DrHandyman\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557783117.0, \"send_replies\": true, \"parent_id\": \"t3_bo84dx\", \"score\": 0, \"author_fullname\": \"t2_2wbf73p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"`|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|`\\n\\n`:-:|:-:|:-:|:-:|:-:|:-:|`\\n\\n`|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|`\\n\\n`|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|`\\n\\n`|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|`\\n\\n`|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|`\\n\\n`|Blanton's|$14.00|$99.99|$224.00|$124.01|124.02%|`\\n\\n`|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|`\\n\\n`|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|`\\n\\n`|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|`\\n\\n`|Basil Hayden's|$10.00|$39.99|$160.00|$120.01|300.10%|`\\n\\n`|Noah's Mill|$15.00|$49.99|$240.00|$190.01|380.10%|`\\n\\n`|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|`\\n\\n`|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|`\\n\\n`|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|`\\n\\n`|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|`\", \"link_title\": \"Table Test\", \"author_flair_css_class\": null, \"name\": \"t1_endic87\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003E|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:-:|:-:|:-:|:-:|:-:|:-:|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Blanton\\u0026#39;s|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Basil Hayden\\u0026#39;s|$10.00|$39.99|$160.00|$120.01|300.10%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Noah\\u0026#39;s Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo84dx/table_test/endic87/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"report_reasons\": null, \"link_author\": \"Rammzie\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"created\": 1557811917.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo84dx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"endib3d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DrHandyman\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557783105.0, \"send_replies\": true, \"parent_id\": \"t3_bo84dx\", \"score\": 0, \"author_fullname\": \"t2_2wbf73p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"|\\\\*\\\\*Name\\\\*\\\\*|\\\\*\\\\*ACME Price Per 1.5oz\\\\*\\\\*|\\\\*\\\\*Bottle Street Price\\\\*\\\\*|\\\\*\\\\*Revenue Per Bottle (16 pours) \\\\*\\\\*|\\\\*\\\\*Profit Per Bottle\\\\*\\\\*|\\\\*\\\\*Profit Percentage\\\\*\\\\*|\\n\\n:-:|:-:|:-:|:-:|:-:|:-:|\\n\\n|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\n\\n|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\n\\n|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\n\\n|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\n\\n|Blanton's|$14.00|$99.99|$224.00|$124.01|124.02%|\\n\\n|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\n\\n|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\n\\n|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\n\\n|Basil Hayden's|$10.00|$39.99|$160.00|$120.01|300.10%|\\n\\n|Noah's Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\n\\n|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\n\\n|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\n\\n|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\n\\n|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\", \"link_title\": \"Table Test\", \"author_flair_css_class\": null, \"name\": \"t1_endib3d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:-:|:-:|:-:|:-:|:-:|:-:|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Blanton\\u0026#39;s|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Basil Hayden\\u0026#39;s|$10.00|$39.99|$160.00|$120.01|300.10%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Noah\\u0026#39;s Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo84dx/table_test/endib3d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"report_reasons\": null, \"link_author\": \"Rammzie\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"created\": 1557811905.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbsgh6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557754397.0, \"send_replies\": true, \"parent_id\": \"t3_bo3eog\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbsgh6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbsgh6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557783197.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbsf7d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557754377.0, \"send_replies\": true, \"parent_id\": \"t1_enbrfwi\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbsf7d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbsf7d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557783177.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbrfwi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557753791.0, \"send_replies\": true, \"parent_id\": \"t1_enbrecx\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbrfwi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbrfwi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557782591.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbrecx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557753764.0, \"send_replies\": true, \"parent_id\": \"t3_bo3eog\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbrecx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbrecx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557782564.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnh87u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5kn7c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DefNotPolonius\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557609950.0, \"send_replies\": true, \"parent_id\": \"t3_bnh87u\", \"score\": 1, \"author_fullname\": \"t2_3r6vjfb1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Looks legit to me!\", \"link_title\": \"A recent study suggests rates of step-siblings getting married is increasing exponentially\", \"author_flair_css_class\": null, \"name\": \"t1_en5kn7c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks legit to me!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnh87u/a_recent_study_suggests_rates_of_stepsiblings/en5kn7c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnh87u/a_recent_study_suggests_rates_of_stepsiblings/\", \"report_reasons\": null, \"link_author\": \"PraisetheKing1\", \"author_flair_text\": null, \"link_url\": \"https://www.theatlantic.com/entertainment/archive/2019/05/state-of-the-union-sundance-tv-review/589117/\", \"created\": 1557638750.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnh3at\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5j7r9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DefNotPolonius\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557609148.0, \"send_replies\": true, \"parent_id\": \"t3_bnh3at\", \"score\": 1, \"author_fullname\": \"t2_3r6vjfb1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Murderous indeed\", \"link_title\": \"Classic Murderous Hamlet\", \"author_flair_css_class\": null, \"name\": \"t1_en5j7r9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMurderous indeed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnh3at/classic_murderous_hamlet/en5j7r9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnh3at/classic_murderous_hamlet/\", \"report_reasons\": null, \"link_author\": \"PraisetheKing1\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/wqo9b9e3enx21.jpg\", \"created\": 1557637948.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bngumb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5h7hv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bummy_mans\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557608063.0, \"send_replies\": true, \"parent_id\": \"t3_bngumb\", \"score\": 1, \"author_fullname\": \"t2_15oya7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Murderous Indeed\", \"link_title\": \"Classic Murderous Hamlet\", \"author_flair_css_class\": null, \"name\": \"t1_en5h7hv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMurderous Indeed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bngumb/classic_murderous_hamlet/en5h7hv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bngumb/classic_murderous_hamlet/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/v4u3ua21anx21.jpg\", \"created\": 1557636863.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bndgzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4lk6i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fear_from_ignorance\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557590014.0, \"send_replies\": true, \"parent_id\": \"t3_bndgzp\", \"score\": 1, \"author_fullname\": \"t2_116zo5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#Countries that Shooting people in last 12 months\\n\\n|Country | Total Shooting \\n|:-----------|------------:|\\n| France| 14+(without yellow vest|\\n| Germany| 14+|\\n| U.K|3+| \\n\\nGreat good holy countries, only E.U \\n##We can not put a nobleman to death! :)\", \"link_title\": \"t\", \"author_flair_css_class\": null, \"name\": \"t1_en4lk6i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECountries that Shooting people in last 12 months\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ECountry\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ETotal Shooting\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFrance\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14+(without yellow vest\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGermany\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14+\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU.K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3+\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EGreat good holy countries, only E.U \\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EWe can not put a nobleman to death! :)\\u003C/h2\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bndgzp/t/en4lk6i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"report_reasons\": null, \"link_author\": \"fear_from_ignorance\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"created\": 1557618814.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bndgzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4lilt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fear_from_ignorance\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557589986.0, \"send_replies\": true, \"parent_id\": \"t3_bndgzp\", \"score\": 1, \"author_fullname\": \"t2_116zo5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\#Countries that Shooting people in last 12 months\\n\\n\\u0026#x200B;\\n\\n|Country | Total Shooting \\n\\n|:-----------|------------:|\\n\\n| France| 14+(without yellow vest|\\n\\n| Germany| 14+|\\n\\n| U.K|3+| \\n\\n\\u0026#x200B;\\n\\nGreat good holy countries, only E.U \\n\\n\\\\##We can not put a nobleman to death! :)\", \"link_title\": \"t\", \"author_flair_css_class\": null, \"name\": \"t1_en4lilt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#Countries that Shooting people in last 12 months\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Country | Total Shooting \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|:-----------|------------:|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| France| 14+(without yellow vest|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| Germany| 14+|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| U.K|3+| \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreat good holy countries, only E.U \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##We can not put a nobleman to death! :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bndgzp/t/en4lilt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"report_reasons\": null, \"link_author\": \"fear_from_ignorance\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"created\": 1557618786.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnddi4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4km0v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bacalado\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557589379.0, \"send_replies\": true, \"parent_id\": \"t3_bnddi4\", \"score\": 1, \"author_fullname\": \"t2_zs6we\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Test pot\", \"link_title\": \"Test post\", \"author_flair_css_class\": null, \"name\": \"t1_en4km0v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest pot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnddi4/test_post/en4km0v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnddi4/test_post/\", \"report_reasons\": null, \"link_author\": \"KindlyPangolin\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bnddi4/test_post/\", \"created\": 1557618179.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgvc57\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2j37y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533822.0, \"send_replies\": true, \"parent_id\": \"t3_bgvc57\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"What does this do\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_en2j37y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat does this do\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgvc57/test/en2j37y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgvc57/test/\", \"report_reasons\": null, \"link_author\": \"harison86\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgvc57/test/\", \"created\": 1557562622.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgz2ru\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2j1b8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533788.0, \"send_replies\": true, \"parent_id\": \"t3_bgz2ru\", \"score\": 0, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"We want shaggy\", \"link_title\": \"Settra the Imperishable, the Majestic Emperor of the Shifting Sands, Great Hawk Of The Heavens, King of Kings, Monarch of the Sky, High King of Nehekhara and many, many more, invades Outworld during the events of Mortal Kombat X. Can he claim it?\", \"author_flair_css_class\": null, \"name\": \"t1_en2j1b8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe want shaggy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/en2j1b8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/\", \"report_reasons\": null, \"link_author\": \"TitanBrass\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/\", \"created\": 1557562588.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bjy4q1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2iyjr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533739.0, \"send_replies\": true, \"parent_id\": \"t3_bjy4q1\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Neat\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_en2iyjr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENeat\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bjy4q1/test/en2iyjr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bjy4q1/test/\", \"report_reasons\": null, \"link_author\": \"Toemism\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/vSa7WcG\", \"created\": 1557562539.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk5dk7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2ix0e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533713.0, \"send_replies\": true, \"parent_id\": \"t3_bk5dk7\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Reddit doesn't work like that\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_en2ix0e\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EReddit doesn\\u0026#39;t work like that\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk5dk7/test/en2ix0e/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk5dk7/test/\", \"report_reasons\": null, \"link_author\": \"lucasade7\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk5dk7/test/\", \"created\": 1557562513.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2iq27\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557533589.0, \"send_replies\": true, \"parent_id\": \"t3_blxuys\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Just uses you're magic to convince him\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_en2iq27\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust uses you\\u0026#39;re magic to convince him\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/en2iq27/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557562389.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1557490423.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bmfbja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en0e11l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rew01f\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557490240.0, \"send_replies\": true, \"parent_id\": \"t3_bmfbja\", \"score\": 1, \"author_fullname\": \"t2_3mmzhxol\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\ud83d\\udf8eTest\\n\\n\\ud83d\\udf8e Test\\n\\n\\ud83d\\udf8e Testing as ordered\", \"link_title\": \"testy\", \"author_flair_css_class\": null, \"name\": \"t1_en0e11l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\ud83d\\udf8eTest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\ud83d\\udf8e Test\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\ud83d\\udf8e Testing as ordered\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bmfbja/testy/en0e11l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bmfbja/testy/\", \"report_reasons\": null, \"link_author\": \"Sleepchao\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bmfbja/testy/\", \"created\": 1557519040.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bme57y\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emvxrme\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TotesMessenger\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557368561.0, \"send_replies\": true, \"parent_id\": \"t3_bme57y\", \"score\": 1, \"author_fullname\": \"t2_kq14w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I'm a bot, *bleep*, *bloop*. Someone has linked to this thread from another place on reddit:\\n\\n- [/r/porsche] [First time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!](https://www.reddit.com/r/Porsche/comments/bme8ym/first_time_porsche_owner_takes_immediate_cayman/)\\n\\n\\u0026nbsp;*^(If you follow any of the above links, please respect the rules of reddit and don't vote in the other threads.) ^\\\\([Info](/r/TotesMessenger) ^/ ^[Contact](/message/compose?to=/r/TotesMessenger))*\", \"link_title\": \"First time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!\", \"author_flair_css_class\": null, \"name\": \"t1_emvxrme\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a bot, \\u003Cem\\u003Ebleep\\u003C/em\\u003E, \\u003Cem\\u003Ebloop\\u003C/em\\u003E. Someone has linked to this thread from another place on reddit:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E[\\u003Ca href=\\\"/r/porsche\\\"\\u003E/r/porsche\\u003C/a\\u003E] \\u003Ca href=\\\"https://www.reddit.com/r/Porsche/comments/bme8ym/first_time_porsche_owner_takes_immediate_cayman/\\\"\\u003EFirst time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003Cem\\u003E\\u003Csup\\u003EIf you follow any of the above links, please respect the rules of reddit and don\\u0026#39;t vote in the other threads.\\u003C/sup\\u003E \\u003Csup\\u003E(\\u003Ca href=\\\"/r/TotesMessenger\\\"\\u003EInfo\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E/\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"/message/compose?to=/r/TotesMessenger\\\"\\u003EContact\\u003C/a\\u003E)\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/emvxrme/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/\", \"report_reasons\": null, \"link_author\": \"Null-P\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/\", \"created\": 1557397361.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ems8494\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DoingSchoolProject2\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557271693.0, \"send_replies\": true, \"parent_id\": \"t1_ems7zov\", \"score\": 2, \"author_fullname\": \"t2_3q15i8tn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Growing well\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_ems8494\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGrowing well\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/ems8494/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557300493.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ems7zov\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DoingSchoolProject\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557271609.0, \"send_replies\": true, \"parent_id\": \"t3_blxuys\", \"score\": 2, \"author_fullname\": \"t2_3otlbacn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hey Elizabeth, hows the baby doing\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_ems7zov\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey Elizabeth, hows the baby doing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/ems7zov/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557300409.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkze3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257480.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Future Features People Want (Compiled from Blizzard forums)\\n#### *Disclaimer* These very wildly in implementation time. They also aren't too specific. That's for another thread.\\n\\n#### Ease of Coding\\n- [Text-based Editor/IDE/Ability to Import File](#s \\\"Anything for more coding speed\\\")\\n- Conditionals\\n- Functions\\n- Hotkey Saves/Auto Saves\\n- Hotkey Undo\\n- Events/Statuses for every [possible thing](#s \\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\")\\n- [Classes/Object Types/Enums](#s \\\"Bad class objects hurt\\\")\\n- [Multiple-Script Compilation](#s \\\"I make a piece, you make a piece, we compile the codes together\\\")\\n- Disable/Enable Rule options\\n- Custom Strings/Variable Names\\n\\t\\n####Importation of art assets\\n- Custom Skins\\n- Custom Emotes\\n- Custom Hero Models\\n- Custom Animations\\n\\t\\n#### Bigger Creations\\n- Rule Limit Increase\\n- Effect Increase\\n- More Presets Saves\\n- More Variables\\n\\n#### Recognition of Good Modes\\n- Best-of-Workshop Arcade Mode\\n- Popularity contests between [similar game-modes](#s \\\"See which gun game people like best\\\")\\n\\t\\n#### Map Editor\\n- Ability to create gameplay zones\\n- Change Lighting\\n- Custom Maps\\n\\t\\n#### Hero Editor\\n- Being able to give [one hero's ability to another hero](#s \\\"Tracer with Piledriver\\\")\\n- More Control over [Effects](#s \\\"On-destruct, custom IDs, etc\\\")\\n- Control over [hero-specific variables](#s \\\"Number of Symmetra Turrets, headshot dmg, passives\\\")\\n- Being able to use Arcade Enemies/All Models\\n- Custom Cooldowns/Modify Cooldowns\\n- Control over animations\\n- Control over fire/POTG worthy actions\\n\\t\\t\\n#### Object Editor\\n- Deployables\\n- Weapon Qualities\\n- Collisions\\n- Objectives/Payloads\\n- Access to Old Assets/Abilities\\n- Custom Effect Durations\\n- Custom Conditions\\n- Custom Physics Engine\\n\\t\\n#### AI Editor\\n- PVE Mode Access\\n- Ease of Making Bots\\n- Bots in any Mode\\n\\t\\t\\n#### Gameplay Editor\\n- Change Spawn Points\\n- Switch Teams\\n- Change Team Size\\n\\t\\n####Hosting Games\\n- Being able to host Workshop Games locally\\n\\t\\n#### Workshop-Specific Assets\\n- Extra Animations\\n- More effects\\n- [Non-Graphics intensive testing map](#s \\\"Just a White Room\\\")\\n- [Arena map](#s \\\"Just a square\\\")\\n\\n#### More Recognition of Dan and Keith\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkze3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFuture Features People Want (Compiled from Blizzard forums)\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003E\\u003Cem\\u003EDisclaimer\\u003C/em\\u003E These very wildly in implementation time. They also aren\\u0026#39;t too specific. That\\u0026#39;s for another thread.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EEase of Coding\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Anything for more coding speed\\\"\\u003EText-based Editor/IDE/Ability to Import File\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EConditionals\\u003C/li\\u003E\\n\\u003Cli\\u003EFunctions\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Saves/Auto Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Undo\\u003C/li\\u003E\\n\\u003Cli\\u003EEvents/Statuses for every \\u003Ca href=\\\"#s\\\" title=\\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\"\\u003Epossible thing\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Bad class objects hurt\\\"\\u003EClasses/Object Types/Enums\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"I make a piece, you make a piece, we compile the codes together\\\"\\u003EMultiple-Script Compilation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDisable/Enable Rule options\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Strings/Variable Names\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EImportation of art assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECustom Skins\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Emotes\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Hero Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Animations\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EBigger Creations\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERule Limit Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EEffect Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Presets Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Variables\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ERecognition of Good Modes\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBest-of-Workshop Arcade Mode\\u003C/li\\u003E\\n\\u003Cli\\u003EPopularity contests between \\u003Ca href=\\\"#s\\\" title=\\\"See which gun game people like best\\\"\\u003Esimilar game-modes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMap Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAbility to create gameplay zones\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Lighting\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Maps\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHero Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to give \\u003Ca href=\\\"#s\\\" title=\\\"Tracer with Piledriver\\\"\\u003Eone hero\\u0026#39;s ability to another hero\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Control over \\u003Ca href=\\\"#s\\\" title=\\\"On-destruct, custom IDs, etc\\\"\\u003EEffects\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over \\u003Ca href=\\\"#s\\\" title=\\\"Number of Symmetra Turrets, headshot dmg, passives\\\"\\u003Ehero-specific variables\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBeing able to use Arcade Enemies/All Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Cooldowns/Modify Cooldowns\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over animations\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over fire/POTG worthy actions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EObject Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDeployables\\u003C/li\\u003E\\n\\u003Cli\\u003EWeapon Qualities\\u003C/li\\u003E\\n\\u003Cli\\u003ECollisions\\u003C/li\\u003E\\n\\u003Cli\\u003EObjectives/Payloads\\u003C/li\\u003E\\n\\u003Cli\\u003EAccess to Old Assets/Abilities\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Effect Durations\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Conditions\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Physics Engine\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EAI Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPVE Mode Access\\u003C/li\\u003E\\n\\u003Cli\\u003EEase of Making Bots\\u003C/li\\u003E\\n\\u003Cli\\u003EBots in any Mode\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EGameplay Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EChange Spawn Points\\u003C/li\\u003E\\n\\u003Cli\\u003ESwitch Teams\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Team Size\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHosting Games\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to host Workshop Games locally\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWorkshop-Specific Assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EExtra Animations\\u003C/li\\u003E\\n\\u003Cli\\u003EMore effects\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a White Room\\\"\\u003ENon-Graphics intensive testing map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a square\\\"\\u003EArena map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMore Recognition of Dan and Keith\\u003C/h4\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkze3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286280.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkqzg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257336.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#One-Stop Workshop\\n## Workshop FAQ\\n### What is Overwatch Workshop?\\n- In layman's terms, its just [additional](#s \\\"Many, many additional\\\") features for designing custom games, using more drop-down menus.\\n\\n### What is the One-Stop Workshop?\\n- \\tThis is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\n-\\tI call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\n\\n### What is an FAQ?\\n-\\tFrantically Answering Questions!\\n\\n### How to access the Workshop?\\n-\\tMake sure you have the PTR installed.\\n- \\tPlay \\u003E Game Browser \\u003E Create \\u003E Settings \\u003E Workshop\\n\\n### What resources does Workshop give us?\\n-\\tCreation of Effects\\n-\\tConditional Changes to Rules\\n-\\tAdding HUD elements\\n-\\tAnd More\\n\\n### Can you test heroes with workshop?\\n- \\tYesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\n- \\tHowever, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\n-\\tBut, don't fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\n\\n### Is it a map editor?\\n- \\tNo. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\n\\n### Do I need to know how to code to use it? Can normal people use it?\\n- \\tNo and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\n\\n### What presets does it have for me to build off of?\\n- \\tMolten Floor - You set on fire while touching the floor.\\n- \\tOne Ultimate - Elimination mode where you start with your Ultimate, but can't get Ultimate charge.\\n- \\tHide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\n- \\tDouble Jump - Everyone can double jump.\\n- \\tFire Dome - A dome slowly shrinks, limiting the play space. (*Cough* Battle Royale *Cough*)\\n- \\tBalanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\n- \\tMirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\n- \\tZombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\n- \\tHero Gauntlet - Gun Game\\n\\n### Is it on Console?\\n-\\tNot yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\n\\n### Who built this?\\n-\\tKeith and Dan, our two buddy devs, in their free time. They have now been labeled [Hero 31 and Hero 32](#s \\\"Dan is 31, fight me\\\") by the reddit community.\\n\\n### Is this going to get updates?\\n- It has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\n\\n### Is there a limit to sizes of script/number of objects.\\n- Yes. 64 icons/effects, and some limit to the size of the script. \\n- However, the devs are working to increase these numbers.\\n\\n### Is this Overwatch getting a bunch of people to be their unpaid interns?\\n- Sadly, it doesn't seem to be. Plenty of people would love to design stuff for Blizzard for free. Instead, you can just make fun modes for people to enjoy. \\n\\n### Do I have control over my modes? Can I link/post other peoples content?\\n#### The Bad\\n- You do not have ownership over your creations\\n- Your code could be overriden at any time\\n- Other people can use your mode by just clicking on it and copying your 5-character code\\n- Currently, there are numerous bugs that can delete your work, if you have a slow connection, too much code, or are just plain unlucky\\n\\n#### The Good\\n- You can check out any code you find interesting and get ideas\\n- You don't have to worry about someone else running their server. With the 5-character code, you can start one yourself\\n- Your code will carry over to the Live version and the Console version, as the actual data is stored in the cloud\\n- The Devs are fixing all work-deleting bugs\\n- The Devs will (almost certainly) add enough characters to the codes to prevent your code from being overriden\\n- You can store the info for your mode on this page if you want people to know that a mode was originally created by you\\n\\n#### The Neutral\\n- Being polite and asking for permission is the correct thing to do if you want to repost their work, modify their work, or look at their rules\\n\\n#### The Time Saving\\n- I propose that if you create a mode that you want anyone to be able to modify or use, while crediting you, you write \\\"Free Use\\\" on it somewhere, so that those who want to use it won't [constantly bug you](#s \\\"Sorry all people I bugged about adding your stuff to this post\\\")\\n- I propose that if you create a mode and don't care about being credited, you write \\\"Free Game\\\", and people can use your mode without crediting you, but shouldn't act like they invented it whole-sale\\n- I propose that the community shares any useful tricks, codes, or ideas somewhere. This post works as well as any other place.\\n\\n### Why does the Workshop Community need to be organized?\\n- For [Casual Players](#s \\\"Filthy Casuals\\\"): An organized community will make it easier to find good, fun, game modes.\\n\\n- For [Ranked Players](#s \\\"Sports Nuts\\\"): With a few changes, I personally think that Workshop can allow for [more frequent patch testing.](#s \\\"More Powerful Workshop = Give out Patch Codes instead of Downloads\\\") An organized community could help the workshop get to that state sooner.\\n\\n- For [Creators](#s \\\"Over-Dedicated Fans\\\"): An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\n\\n- For [Devs](#s \\\"All-Mighty Deities\\\"): An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\n\\n##Useful Links\\n### Mode Lists\\nhttps://dutchdemons.com - u/Marinosbitter\\n\\nhttps://overwatchcustom.games - u/Thriver\\n\\nhttps://overwatchmodding.com/ - u/xSailboats\\n\\nhttps://workshop.elohell.gg/ - EloHell Discord\\n\\nhttps://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA - u/alloriginalnamesused\\n\\n[Lier1's Code List]()\\n\\n### Discord Channels\\n[OW Scripting](https://discord.gg/9pc4yyE)\\n\\n[Overwatch Workshop](https://discord.gg/qa9vR94)\\n\\n[Elo Hell Workshops](https://discord.gg/U5ARg2Fs)\\n\\n### Youtube Channels\\n#### Mode Creation Help:\\n[SamstaTV](https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g)\\n\\n[RunicOW](https://www.youtube.com/channel/UCB1j7mXXRgCRBBri6E5Ch2A)\\n\\n#### Creation Showcases:\\n[Master Ian Gamer](https://www.youtube.com/channel/UCh7qwd3VnN1AGqlqec8K8Zw)\\n\\n### Miscellaneous Sites/Posts\\n[List of Flat Areas with few Obstacles](https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/) - u/Zezombye\\n\\n[Workshop Syntax \\u0026 Script Database](https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92) - WyomingMyst\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkqzg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EOne-Stop Workshop\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EWorkshop FAQ\\u003C/h2\\u003E\\n\\n\\u003Ch3\\u003EWhat is Overwatch Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E In layman\\u0026#39;s terms, its just \\u003Ca href=\\\"#s\\\" title=\\\"Many, many additional\\\"\\u003Eadditional\\u003C/a\\u003E features for designing custom games, using more drop-down menus.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat is the One-Stop Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E This is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\u003C/li\\u003E\\n\\u003Cli\\u003E I call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat is an FAQ?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Frantically Answering Questions!\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EHow to access the Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Make sure you have the PTR installed.\\u003C/li\\u003E\\n\\u003Cli\\u003E Play \\u0026gt; Game Browser \\u0026gt; Create \\u0026gt; Settings \\u0026gt; Workshop\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat resources does Workshop give us?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Creation of Effects\\u003C/li\\u003E\\n\\u003Cli\\u003E Conditional Changes to Rules\\u003C/li\\u003E\\n\\u003Cli\\u003E Adding HUD elements\\u003C/li\\u003E\\n\\u003Cli\\u003E And More\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003ECan you test heroes with workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Yesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\u003C/li\\u003E\\n\\u003Cli\\u003E However, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\u003C/li\\u003E\\n\\u003Cli\\u003E But, don\\u0026#39;t fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs it a map editor?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EDo I need to know how to code to use it? Can normal people use it?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat presets does it have for me to build off of?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Molten Floor - You set on fire while touching the floor.\\u003C/li\\u003E\\n\\u003Cli\\u003E One Ultimate - Elimination mode where you start with your Ultimate, but can\\u0026#39;t get Ultimate charge.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\u003C/li\\u003E\\n\\u003Cli\\u003E Double Jump - Everyone can double jump.\\u003C/li\\u003E\\n\\u003Cli\\u003E Fire Dome - A dome slowly shrinks, limiting the play space. (\\u003Cem\\u003ECough\\u003C/em\\u003E Battle Royale \\u003Cem\\u003ECough\\u003C/em\\u003E)\\u003C/li\\u003E\\n\\u003Cli\\u003E Balanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\u003C/li\\u003E\\n\\u003Cli\\u003E Mirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\u003C/li\\u003E\\n\\u003Cli\\u003E Zombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hero Gauntlet - Gun Game\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs it on Console?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Not yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWho built this?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Keith and Dan, our two buddy devs, in their free time. They have now been labeled \\u003Ca href=\\\"#s\\\" title=\\\"Dan is 31, fight me\\\"\\u003EHero 31 and Hero 32\\u003C/a\\u003E by the reddit community.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs this going to get updates?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs there a limit to sizes of script/number of objects.\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYes. 64 icons/effects, and some limit to the size of the script. \\u003C/li\\u003E\\n\\u003Cli\\u003EHowever, the devs are working to increase these numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs this Overwatch getting a bunch of people to be their unpaid interns?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESadly, it doesn\\u0026#39;t seem to be. Plenty of people would love to design stuff for Blizzard for free. Instead, you can just make fun modes for people to enjoy. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EDo I have control over my modes? Can I link/post other peoples content?\\u003C/h3\\u003E\\n\\n\\u003Ch4\\u003EThe Bad\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou do not have ownership over your creations\\u003C/li\\u003E\\n\\u003Cli\\u003EYour code could be overriden at any time\\u003C/li\\u003E\\n\\u003Cli\\u003EOther people can use your mode by just clicking on it and copying your 5-character code\\u003C/li\\u003E\\n\\u003Cli\\u003ECurrently, there are numerous bugs that can delete your work, if you have a slow connection, too much code, or are just plain unlucky\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Good\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou can check out any code you find interesting and get ideas\\u003C/li\\u003E\\n\\u003Cli\\u003EYou don\\u0026#39;t have to worry about someone else running their server. With the 5-character code, you can start one yourself\\u003C/li\\u003E\\n\\u003Cli\\u003EYour code will carry over to the Live version and the Console version, as the actual data is stored in the cloud\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Devs are fixing all work-deleting bugs\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Devs will (almost certainly) add enough characters to the codes to prevent your code from being overriden\\u003C/li\\u003E\\n\\u003Cli\\u003EYou can store the info for your mode on this page if you want people to know that a mode was originally created by you\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Neutral\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing polite and asking for permission is the correct thing to do if you want to repost their work, modify their work, or look at their rules\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Time Saving\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EI propose that if you create a mode that you want anyone to be able to modify or use, while crediting you, you write \\u0026quot;Free Use\\u0026quot; on it somewhere, so that those who want to use it won\\u0026#39;t \\u003Ca href=\\\"#s\\\" title=\\\"Sorry all people I bugged about adding your stuff to this post\\\"\\u003Econstantly bug you\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EI propose that if you create a mode and don\\u0026#39;t care about being credited, you write \\u0026quot;Free Game\\u0026quot;, and people can use your mode without crediting you, but shouldn\\u0026#39;t act like they invented it whole-sale\\u003C/li\\u003E\\n\\u003Cli\\u003EI propose that the community shares any useful tricks, codes, or ideas somewhere. This post works as well as any other place.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhy does the Workshop Community need to be organized?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Filthy Casuals\\\"\\u003ECasual Players\\u003C/a\\u003E: An organized community will make it easier to find good, fun, game modes.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Sports Nuts\\\"\\u003ERanked Players\\u003C/a\\u003E: With a few changes, I personally think that Workshop can allow for \\u003Ca href=\\\"#s\\\" title=\\\"More Powerful Workshop = Give out Patch Codes instead of Downloads\\\"\\u003Emore frequent patch testing.\\u003C/a\\u003E An organized community could help the workshop get to that state sooner.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Over-Dedicated Fans\\\"\\u003ECreators\\u003C/a\\u003E: An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"All-Mighty Deities\\\"\\u003EDevs\\u003C/a\\u003E: An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EUseful Links\\u003C/h2\\u003E\\n\\n\\u003Ch3\\u003EMode Lists\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://dutchdemons.com\\\"\\u003Ehttps://dutchdemons.com\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Marinosbitter\\\"\\u003Eu/Marinosbitter\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchcustom.games\\\"\\u003Ehttps://overwatchcustom.games\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Thriver\\\"\\u003Eu/Thriver\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchmodding.com/\\\"\\u003Ehttps://overwatchmodding.com/\\u003C/a\\u003E - \\u003Ca href=\\\"/u/xSailboats\\\"\\u003Eu/xSailboats\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://workshop.elohell.gg/\\\"\\u003Ehttps://workshop.elohell.gg/\\u003C/a\\u003E - EloHell Discord\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA\\\"\\u003Ehttps://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA\\u003C/a\\u003E - \\u003Ca href=\\\"/u/alloriginalnamesused\\\"\\u003Eu/alloriginalnamesused\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Lier1\\u0026#39;s Code List]()\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EDiscord Channels\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/9pc4yyE\\\"\\u003EOW Scripting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/qa9vR94\\\"\\u003EOverwatch Workshop\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/U5ARg2Fs\\\"\\u003EElo Hell Workshops\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EYoutube Channels\\u003C/h3\\u003E\\n\\n\\u003Ch4\\u003EMode Creation Help:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g\\\"\\u003ESamstaTV\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UCB1j7mXXRgCRBBri6E5Ch2A\\\"\\u003ERunicOW\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch4\\u003ECreation Showcases:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UCh7qwd3VnN1AGqlqec8K8Zw\\\"\\u003EMaster Ian Gamer\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EMiscellaneous Sites/Posts\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/\\\"\\u003EList of Flat Areas with few Obstacles\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92\\\"\\u003EWorkshop Syntax \\u0026amp; Script Database\\u003C/a\\u003E - WyomingMyst\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkqzg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286136.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkof9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257292.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"# Custom Content\\n\\n### Disclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\n\\n### Names with u/ are from reddit. Names without are from the Overwatch Forum unless labeled otherwise.\\n\\n### If you like a mode, go to the original post and like or comment. Let them know you appreciate it. I'll add links directly to each post once I figure out if Reddit allows that and I get around to it.\\n\\n### If you want to add a mode to the list, just PM me and I'll add it eventually.\\n\\n## Fun Modes\\n- K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n- 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n- RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n- EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n- N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n- 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n- M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n- T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n- NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n- R4DWM - BloodBorne in Overwatch - u/Elodeona\\n- EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n- FHQZ4 - Bridgette Pong - u/AJ_Black\\n- KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n- 53J3R - Shooters Vs Stabbers - Lilsis\\n- BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n- BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n- 5KCP4 - Dva Eject into Random Ult - u/qbbftw - ORIGINAL IDEA FROM: u/Woolin\\n- YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n- 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n- 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n- MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n- SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n- VJCT2 - Chase the Snowmen - u/andygmb\\n- 6PC67 - Take Hero of Kills - u/CrenderMutant\\n- 9J42E - Mcree Hot Potato - u/olipoulihot\\n- 85J46 - TF2 the Return - u/Greg266\\n- 7792M - Ninja Sword Fight - u/zhpete\\n- VQ5W8 - Turn Based 3v3 Deathmatch - u/nodas9990\\n- 56XNH - Reinhardt's Completely Stoned Bumper Car Emporeum v14 - u/TheRedstoneBlaze\\n- R68FF - Lucio Ball - u/Telefrag_Ent\\n- V5NKR - Volleybomb - u/Telefrag_Ent\\n- GB9PM - Instagib Railgun : Ashe Team Deathmatch - u/Telefrag_Ent\\n- PGF9P - 1 v 1 High Noon Duel - u/Zenmill\\n- ZKQVG - One in the Chamber: 3 Lives - u/iejb\\n- QT7TQ - Torbjorn Golfing - u/officialraider\\n-\\n- 0D2W5 - Hampster Chase - u/Woolin\\n- 6E3Z5 - Lucio Tag - u/Woolin\\n-\\n- 4J6KW - Screencheat - u/PotsNPans\\n- MN787 - Screencheat - u/microcosm_ow\\n-\\n- PTTNK - Weeping Angels (Zen Mcree) - u/Semproser\\n- X2HH9 - Weeping Angels (Mercy Mei) - u/Hogrid125\\n-\\n- NJGZ4 - Deathmatch Rivals - u/Hypno--Toad\\n- A6736 - Rival System - u/Hypno--Toad\\n-\\n- JWY47 - Hammond Racing - @DanielFedder (Twitter)\\n- D9RND - Hamster Ball Racing - u/qwook\\n-\\n- SH9XN - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n- 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray\\n-\\n- RGH0D - High Speed: FFA - u/rbnsky\\n- SF1R2 - High Speed Gun Game - u/rbnsky\\n-\\n- E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n- QH5SP - PVE Horde Mode - u/Jechto\\n- 52Y5Y - PvE RPG - u/ES_Curse\\n\\n## Training Modes\\n- RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n- 2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n- QKAAM - Placeable Cameras - u/ItsDeltin\\n- CQ00S - Elemental Aspects - u/poststakhanovist\\n- 179QN - Slot Machine - u/Cowboy_Jimmy\\n- 6WXRW - Navi - u/andygmb - u/Lymbow\\n- P9DC5 - Custom Bouncing Projectiles - u/JayTheYggdrasil\\n- FM3WR - Retaliation Damage - u/bacondev\\n-\\n- NK1YF - 2-D Sidescroller - u/HaxD3\\n- D8ZQC - 3rd Person View - u/Jiggy_Jigsaw\\n- 4V8NC - Top Down Shooter - u/microcosm_ow\\n-\\n- ZW1PY - Scoreboard - u/Paf13\\n- 9EKZB - Scoreboard - u/caldoran2\\n-\\n- QESP4 - Walls - u/Zezombye\\n- TZYK6 - Walls - u/Gecktendo\\n- RFJ4G - Walls - u/Gecktendo\\n-\\n- P4Y50 - Bunny Hopping - u/microcosm_ow\\n- WV5HH - Bunny Hop - u/TyzoneLyraNature\\n\\n## Hero Ideas\\n- XJZB1 - Orisa AoE Push - AlexEptit\\n- H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n- RNKKJ - All Heroes Hover Jet - u/microcosm_ow\\n- 8H2DN - Sym Gravity Gun (Half-life) - u/IFIsc\\n- XGAPQ - Genji as Maeve (Paladins) - u/jprosk\\n- BE2J7 - Portal Gun - u/Lymbow - u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkof9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECustom Content\\u003C/h1\\u003E\\n\\n\\u003Ch3\\u003EDisclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003ENames with u/ are from reddit. Names without are from the Overwatch Forum unless labeled otherwise.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003EIf you like a mode, go to the original post and like or comment. Let them know you appreciate it. I\\u0026#39;ll add links directly to each post once I figure out if Reddit allows that and I get around to it.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003EIf you want to add a mode to the list, just PM me and I\\u0026#39;ll add it eventually.\\u003C/h3\\u003E\\n\\n\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9J42E - Mcree Hot Potato - \\u003Ca href=\\\"/u/olipoulihot\\\"\\u003Eu/olipoulihot\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E85J46 - TF2 the Return - \\u003Ca href=\\\"/u/Greg266\\\"\\u003Eu/Greg266\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E7792M - Ninja Sword Fight - \\u003Ca href=\\\"/u/zhpete\\\"\\u003Eu/zhpete\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVQ5W8 - Turn Based 3v3 Deathmatch - \\u003Ca href=\\\"/u/nodas9990\\\"\\u003Eu/nodas9990\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E56XNH - Reinhardt\\u0026#39;s Completely Stoned Bumper Car Emporeum v14 - \\u003Ca href=\\\"/u/TheRedstoneBlaze\\\"\\u003Eu/TheRedstoneBlaze\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER68FF - Lucio Ball - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EV5NKR - Volleybomb - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGB9PM - Instagib Railgun : Ashe Team Deathmatch - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EPGF9P - 1 v 1 High Noon Duel - \\u003Ca href=\\\"/u/Zenmill\\\"\\u003Eu/Zenmill\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZKQVG - One in the Chamber: 3 Lives - \\u003Ca href=\\\"/u/iejb\\\"\\u003Eu/iejb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- QT7TQ - Torbjorn Golfing - \\u003Ca href=\\\"/u/officialraider\\\"\\u003Eu/officialraider\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E0D2W5 - Hampster Chase - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 6E3Z5 - Lucio Tag - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E4J6KW - Screencheat - \\u003Ca href=\\\"/u/PotsNPans\\\"\\u003Eu/PotsNPans\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- MN787 - Screencheat - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPTTNK - Weeping Angels (Zen Mcree) - \\u003Ca href=\\\"/u/Semproser\\\"\\u003Eu/Semproser\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- X2HH9 - Weeping Angels (Mercy Mei) - \\u003Ca href=\\\"/u/Hogrid125\\\"\\u003Eu/Hogrid125\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENJGZ4 - Deathmatch Rivals - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- A6736 - Rival System - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EJWY47 - Hammond Racing - @DanielFedder (Twitter)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- D9RND - Hamster Ball Racing - \\u003Ca href=\\\"/u/qwook\\\"\\u003Eu/qwook\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESH9XN - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- SF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E52Y5Y - PvE RPG - \\u003Ca href=\\\"/u/ES_Curse\\\"\\u003Eu/ES_Curse\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E179QN - Slot Machine - \\u003Ca href=\\\"/u/Cowboy_Jimmy\\\"\\u003Eu/Cowboy_Jimmy\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EP9DC5 - Custom Bouncing Projectiles - \\u003Ca href=\\\"/u/JayTheYggdrasil\\\"\\u003Eu/JayTheYggdrasil\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- FM3WR - Retaliation Damage - \\u003Ca href=\\\"/u/bacondev\\\"\\u003Eu/bacondev\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENK1YF - 2-D Sidescroller - \\u003Ca href=\\\"/u/HaxD3\\\"\\u003Eu/HaxD3\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ED8ZQC - 3rd Person View - \\u003Ca href=\\\"/u/Jiggy_Jigsaw\\\"\\u003Eu/Jiggy_Jigsaw\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 4V8NC - Top Down Shooter - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETZYK6 - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- RFJ4G - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EP4Y50 - Bunny Hopping - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERNKKJ - All Heroes Hover Jet - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8H2DN - Sym Gravity Gun (Half-life) - \\u003Ca href=\\\"/u/IFIsc\\\"\\u003Eu/IFIsc\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EXGAPQ - Genji as Maeve (Paladins) - \\u003Ca href=\\\"/u/jprosk\\\"\\u003Eu/jprosk\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkof9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286092.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkm0q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257251.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#Reddit Post Organization\\n\\n####If posts are organized in a readable manner, it will help people to:\\n\\n- [Locate modes they like](#s \\\"Or hate\\\")\\n\\n- [Easily lend assistance](#s \\\"Hardly\\\")\\n\\n- [Not have to deal with ugly things](#s \\\"Except walking Zenyattas and wall-climbing Torbs\\\")\\n\\n##Post Example Layout\\n\\n- [Descriptive Title](#s \\\"Flaired Appropriately\\\")\\n\\n- Post Body\\n - Picture/Video [(Optional)](#s \\\"Follow this subs rules\\\")\\n - Code\\n - [Brief Summary](#s \\\"Or why your code is the awesomest ever\\\")\\n - Detailed Description (Optional)\\n - [Future Improvements](#s \\\"Unnecessary as your creation is perfect\\\") (Optional)\\n - [Credits](#s \\\"Those whose stuff you stole\\\")\\n\\n##General Posting Tips\\n\\n\\n\\n- Title\\tTips\\n\\n - Do use this phrasing: _[MyThing](#s \\\"What you made\\\") from [OtherMedia](#s \\\"What you stole the idea from\\\")_\\n\\n - Do be very specific. _Alphabetic Gun Game_ is better than simply _Gun Game_.\\n\\n - Good Example: _Alphabetic Gun Game from [CS:S:HTMLGO](#s \\\"CS Major\\\")_\\n\\n- Post Body Tips\\n\\n - Do use a visual if possible. [Video \\u003E Picture \\u003E Text](#s \\\"\\u003E Lier1\\\")\\n\\n - Do use formatting, titles, or at the very least, [paragraph breaks](#s \\\"Hit enter twice, not once\\\")\\n\\n - Do keep updated modes organized, either with new posts commented in the original post, or with update codes added with [edits](#s \\\"v3.1 Never mind\\\")\\n\\n - Do put things you are unsure how to do under [Future Improvements](#s \\\"As you will somehow be smarter in the future\\\")\\n\\n - Do [credit](#s \\\"I'll talk about using others work later\\\") other users in your post. It's only polite\\n\\n - Do your [research.](#s \\\"See that other people have posted working code before\\\") It will save you time and effort\\n\\n - Don't go into the [nitty gritty.](#s \\\"I used this rule with this condition\\\") Explain how it works in game, not in code\\n\\n\\n\\n---\\n\\n\\n\\n#Reddit Comment Organization\\n\\n#### If comments are organized in a helpful manner, it will help people to:\\n\\n- Get useful feedback\\n\\n- Raise their self-esteem\\n\\n\\n\\n\\n\\n\\n\\n##Comment Example Layout\\n\\n- [Notice the Good](#s \\\"It does exists, its just hiding\\\")\\n\\n- Harsh reality (Optional)\\n\\n- [Useful feedback](#s \\\"Unnecessary\\\")\\n\\n\\n\\n\\n\\n##General Tips\\n\\n\\n\\n- Do always be positive. There is [no need nor reason for negativity.](#s \\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\")\\n\\n- Do mention similar ideas. Link to them so the poster can get some ideas.\\n\\n- Do give actual information/feedback.\\n\\n- Do keep comments to the post at hand.\\n\\n- Don't simply comment [\\\"Great job\\\"](#s \\\"Great Job, finding this hover text\\\"). That's what liking is usually for.\\n\\n- Don't assume that the [posters vision matches yours.](#s \\\"My vision isn't 20-20, you see\\\")\\n\\n- Good Example: \\\"Me and a few friends played this mode, because we love it from Halloo 4. It's a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There's some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\\"\\n\\n---\\n\\n# Reddit Mode Specific\\n\\n\\n##Game Mode Post\\n\\n- Do label the specific [play mode](#s \\\"FFA, 5CP, Domination\\\") used in the code if it is unclear\\n\\n\\n\\n---\\n\\n\\n\\n##Game Mode Comment\\n\\n- Do play and share your experiences\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Post\\n\\n\\n\\n####Hero Description Example Layout\\n\\n- Health\\n\\n- Passives\\n\\n- Triggered Abilities\\n\\n - Stats\\n\\n - Other Features\\n\\n\\n\\n- ###Brief Summary Tips\\n\\n - Do mention what [role](#s \\\"Flanker, Tank, Monkey, etc.\\\") your hero should fill\\n\\n - Don't talk about how your hero will [destroy the meta](#s \\\"It won't\\\")\\n\\n\\n\\n- ### Triggered Ability Tips\\n\\n - Do use numbers to describe hero [DPS](#s \\\"Deaths per Second\\\") and [HPS](#s \\\"i need Healing per Second\\\") if you want balance advice\\n\\n - Do keep any numbers used checked against [actual heroes](#s \\\"No supports firing 20 rounds of 15 dmg a second\\\")\\n\\n - Do check sources such as this _linked_ [Overwatch GamePedia](https://overwatch.gamepedia.com/Overwatch_Wiki) page for how to describe abilities\\n\\n\\n\\n- ### General Tips\\n\\n - Do follow precedent for most parts of your character. They don't need a new leveling system, 50 HP, and a different [control scheme](#s \\\"Command Line\\\")\\n\\n - Do make heroes both fun to play and [fun to play against](#s \\\"mostly the second\\\")\\n\\n - Don't make a character with [lots of exceptions](#s \\\"Blocks all CC except Doomfist Punch\\\")\\n\\n - Don't step on too many [toes](#s \\\"*Cough* Pre-nerf Bridgette *Cough*\\\")\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Comment\\n\\n- Do keep balance comparisons within Overwatch. Comparing to Bastion is [OK](#s \\\"If dangerous\\\"). Comparing to Demo is less [helpful](#s \\\"Unless they are making TF2 accurate Demo\\\")\\n\\n- Do think of the character as a [whole](#s \\\"They can't attack while their shield is up? Useless\\\")\\n\\n- Do be kind. Not all posters are secretly [Blizzard Devs testing new heroes](#s \\\"But some are, right?\\\")\\n\\n- Don't talk balance unless the poster [wants to.](#s \\\"The hero will be horribly underpowered their first time. Let that go.\\\") They may just be creating for fun\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Post\\n\\n- Do try to keep the code as [simple and self-contained](#s \\\"Minimize Dependencies\\\") as possible\\n\\n- Do mention what variables you use\\n\\n- Do explain how you accomplished your [goal](#s \\\"Magic is an acceptable response\\\")\\n\\n- Do explain [bugs and edge cases](#s \\\"Or treat them as just part of the experience\\\")\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Comment\\n\\n- Do mention what cool game-modes you can imagine using with it\\n\\n- Do mention alternate ideas for how to implement it\\n\\n- Do post links to other [implementations](#s \\\"With permission\\\")\\n\\n- Do be amazed at what they managed to do\\n\\n---\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkm0q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EReddit Post Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf posts are organized in a readable manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or hate\\\"\\u003ELocate modes they like\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Hardly\\\"\\u003EEasily lend assistance\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Except walking Zenyattas and wall-climbing Torbs\\\"\\u003ENot have to deal with ugly things\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EPost Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Flaired Appropriately\\\"\\u003EDescriptive Title\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPicture/Video \\u003Ca href=\\\"#s\\\" title=\\\"Follow this subs rules\\\"\\u003E(Optional)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECode\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or why your code is the awesomest ever\\\"\\u003EBrief Summary\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDetailed Description (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary as your creation is perfect\\\"\\u003EFuture Improvements\\u003C/a\\u003E (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Those whose stuff you stole\\\"\\u003ECredits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Posting Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETitle Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use this phrasing: \\u003Cem\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What you made\\\"\\u003EMyThing\\u003C/a\\u003E from \\u003Ca href=\\\"#s\\\" title=\\\"What you stole the idea from\\\"\\u003EOtherMedia\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo be very specific. \\u003Cem\\u003EAlphabetic Gun Game\\u003C/em\\u003E is better than simply \\u003Cem\\u003EGun Game\\u003C/em\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003EGood Example: \\u003Cem\\u003EAlphabetic Gun Game from \\u003Ca href=\\\"#s\\\" title=\\\"CS Major\\\"\\u003ECS:S:HTMLGO\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use a visual if possible. \\u003Ca href=\\\"#s\\\" title=\\\"\\u0026gt; Lier1\\\"\\u003EVideo \\u0026gt; Picture \\u0026gt; Text\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo use formatting, titles, or at the very least, \\u003Ca href=\\\"#s\\\" title=\\\"Hit enter twice, not once\\\"\\u003Eparagraph breaks\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep updated modes organized, either with new posts commented in the original post, or with update codes added with \\u003Ca href=\\\"#s\\\" title=\\\"v3.1 Never mind\\\"\\u003Eedits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo put things you are unsure how to do under \\u003Ca href=\\\"#s\\\" title=\\\"As you will somehow be smarter in the future\\\"\\u003EFuture Improvements\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo \\u003Ca href=\\\"#s\\\" title=\\\"I\\u0026#39;ll talk about using others work later\\\"\\u003Ecredit\\u003C/a\\u003E other users in your post. It\\u0026#39;s only polite\\u003C/li\\u003E\\n\\u003Cli\\u003EDo your \\u003Ca href=\\\"#s\\\" title=\\\"See that other people have posted working code before\\\"\\u003Eresearch.\\u003C/a\\u003E It will save you time and effort\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t go into the \\u003Ca href=\\\"#s\\\" title=\\\"I used this rule with this condition\\\"\\u003Enitty gritty.\\u003C/a\\u003E Explain how it works in game, not in code\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Comment Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf comments are organized in a helpful manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGet useful feedback\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERaise their self-esteem\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EComment Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"It does exists, its just hiding\\\"\\u003ENotice the Good\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHarsh reality (Optional)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary\\\"\\u003EUseful feedback\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo always be positive. There is \\u003Ca href=\\\"#s\\\" title=\\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\"\\u003Eno need nor reason for negativity.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention similar ideas. Link to them so the poster can get some ideas.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo give actual information/feedback.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep comments to the post at hand.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t simply comment \\u003Ca href=\\\"#s\\\" title=\\\"Great Job, finding this hover text\\\"\\u003E\\u0026quot;Great job\\u0026quot;\\u003C/a\\u003E. That\\u0026#39;s what liking is usually for.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t assume that the \\u003Ca href=\\\"#s\\\" title=\\\"My vision isn\\u0026#39;t 20-20, you see\\\"\\u003Eposters vision matches yours.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGood Example: \\u0026quot;Me and a few friends played this mode, because we love it from Halloo 4. It\\u0026#39;s a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There\\u0026#39;s some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\u0026quot;\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Mode Specific\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo label the specific \\u003Ca href=\\\"#s\\\" title=\\\"FFA, 5CP, Domination\\\"\\u003Eplay mode\\u003C/a\\u003E used in the code if it is unclear\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo play and share your experiences\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Post\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EHero Description Example Layout\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHealth\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPassives\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETriggered Abilities\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EStats\\u003C/li\\u003E\\n\\u003Cli\\u003EOther Features\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EBrief Summary Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo mention what \\u003Ca href=\\\"#s\\\" title=\\\"Flanker, Tank, Monkey, etc.\\\"\\u003Erole\\u003C/a\\u003E your hero should fill\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t talk about how your hero will \\u003Ca href=\\\"#s\\\" title=\\\"It won\\u0026#39;t\\\"\\u003Edestroy the meta\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003ETriggered Ability Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use numbers to describe hero \\u003Ca href=\\\"#s\\\" title=\\\"Deaths per Second\\\"\\u003EDPS\\u003C/a\\u003E and \\u003Ca href=\\\"#s\\\" title=\\\"i need Healing per Second\\\"\\u003EHPS\\u003C/a\\u003E if you want balance advice\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep any numbers used checked against \\u003Ca href=\\\"#s\\\" title=\\\"No supports firing 20 rounds of 15 dmg a second\\\"\\u003Eactual heroes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo check sources such as this \\u003Cem\\u003Elinked\\u003C/em\\u003E \\u003Ca href=\\\"https://overwatch.gamepedia.com/Overwatch_Wiki\\\"\\u003EOverwatch GamePedia\\u003C/a\\u003E page for how to describe abilities\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EGeneral Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo follow precedent for most parts of your character. They don\\u0026#39;t need a new leveling system, 50 HP, and a different \\u003Ca href=\\\"#s\\\" title=\\\"Command Line\\\"\\u003Econtrol scheme\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo make heroes both fun to play and \\u003Ca href=\\\"#s\\\" title=\\\"mostly the second\\\"\\u003Efun to play against\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t make a character with \\u003Ca href=\\\"#s\\\" title=\\\"Blocks all CC except Doomfist Punch\\\"\\u003Elots of exceptions\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t step on too many \\u003Ca href=\\\"#s\\\" title=\\\"*Cough* Pre-nerf Bridgette *Cough*\\\"\\u003Etoes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep balance comparisons within Overwatch. Comparing to Bastion is \\u003Ca href=\\\"#s\\\" title=\\\"If dangerous\\\"\\u003EOK\\u003C/a\\u003E. Comparing to Demo is less \\u003Ca href=\\\"#s\\\" title=\\\"Unless they are making TF2 accurate Demo\\\"\\u003Ehelpful\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo think of the character as a \\u003Ca href=\\\"#s\\\" title=\\\"They can\\u0026#39;t attack while their shield is up? Useless\\\"\\u003Ewhole\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be kind. Not all posters are secretly \\u003Ca href=\\\"#s\\\" title=\\\"But some are, right?\\\"\\u003EBlizzard Devs testing new heroes\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t talk balance unless the poster \\u003Ca href=\\\"#s\\\" title=\\\"The hero will be horribly underpowered their first time. Let that go.\\\"\\u003Ewants to.\\u003C/a\\u003E They may just be creating for fun\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo try to keep the code as \\u003Ca href=\\\"#s\\\" title=\\\"Minimize Dependencies\\\"\\u003Esimple and self-contained\\u003C/a\\u003E as possible\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what variables you use\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain how you accomplished your \\u003Ca href=\\\"#s\\\" title=\\\"Magic is an acceptable response\\\"\\u003Egoal\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain \\u003Ca href=\\\"#s\\\" title=\\\"Or treat them as just part of the experience\\\"\\u003Ebugs and edge cases\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what cool game-modes you can imagine using with it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention alternate ideas for how to implement it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo post links to other \\u003Ca href=\\\"#s\\\" title=\\\"With permission\\\"\\u003Eimplementations\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be amazed at what they managed to do\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkm0q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286051.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkcxj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257095.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**[TLDR:](#s \\\"Too Logical, Died Reading\\\")** I think that the Overwatch Workshop Community should get organized, and have some [ideas on doing so.](#s \\\"Not good ideas, mind you\\\")\\n\\n**Brief disclaimer:**\\n\\n- I by no means think these are the best ideas, I'm just trying to get a discussion started.\\n\\n- Please comment with better ideas, or parts I'm wrong about, or just because you feel like it.\\n\\n- A lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\n\\n- Also, liberal hover tags abound, and [none](#s \\\"some are funny, however\\\") are useful. The only things you can click on are specifically called out as links.\\n\\n- This got really big, really fast. I've split it into a few seperate posts. If the organization seems off, please tell me how to [fix it.](#s \\\"Because I don't know how to.\\\")\\n\\n---\\n\\n# Table of Contents\\n\\n##[Reddit Organization](#s \\\"How to do better than this post\\\") A.K.A Proposals\\n\\n- #### Posts\\n\\n- #### Comments\\n\\n- #### Mode Specific Tips\\n\\n- #### Ownership Discussion\\n\\n##[One-Stop Assistance](#s \\\"More like None-Start\\\") A.K.A Resources\\n\\n- #### [Workshop FAQ](#s \\\"What is an FAQ?\\\")\\n\\n- #### [Useful Links](#s \\\"May be copywrite infringing\\\")\\n - ###### Discord Channels\\n - ###### Youtube Channels\\n - ###### Dev Updates\\n - ###### Mode/Code Lists\\n\\n## [Workshop Improvement Ideas](#s \\\"Nonexistent\\\")\\n\\n## [Future](#s \\\"Implying they will get done\\\") Projects\\n\\n## Random [Asides](#s \\\"Also B-sides\\\")\\n - #### [TLDR](#s \\\"You look for the TLDR in the Table of Contents?\\\")\\n---\\n\\n[Reddit Organization Post Link]()\\n\\n[One Stop Assistance Post Link]()\\n\\n[My Code List Link]()\\n\\n[Workshop Improvement Ideas Link]()\\n\\n## Future Projects\\n#### I'll probably see what I can do to organize a large-scale modding project once we get enough space on the workshop for it.\\n#### I'll be updating and correcting this post with all the information you commentors give me, and the actual game-modes I've been collection. Maybe I'll add more hover-text jokes.\\n#### I'm planning on adding a section with advice on creating a new mode or character, instead of just how to post one.\\n\\n## Random Asides\\n#### About Me: I'm Lier1. I'm a filthy casual, I make lots of jokes, and I [main DPS.](#s \\\"The worst sort of main, I know\\\") However, I don't wish to offend, and hope to improve this resource, so feel free to comment and ask questions, fix my mistakes, or add more resources.\\n#### TLDR: I have some ideas for organizing the reddit posts and comments, the feedback we give the devs, an FAQ for answering your questions, and a One-Stop Workshop for leading you to resources.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkcxj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Too Logical, Died Reading\\\"\\u003ETLDR:\\u003C/a\\u003E\\u003C/strong\\u003E I think that the Overwatch Workshop Community should get organized, and have some \\u003Ca href=\\\"#s\\\" title=\\\"Not good ideas, mind you\\\"\\u003Eideas on doing so.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBrief disclaimer:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI by no means think these are the best ideas, I\\u0026#39;m just trying to get a discussion started.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPlease comment with better ideas, or parts I\\u0026#39;m wrong about, or just because you feel like it.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EA lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EAlso, liberal hover tags abound, and \\u003Ca href=\\\"#s\\\" title=\\\"some are funny, however\\\"\\u003Enone\\u003C/a\\u003E are useful. The only things you can click on are specifically called out as links.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EThis got really big, really fast. I\\u0026#39;ve split it into a few seperate posts. If the organization seems off, please tell me how to \\u003Ca href=\\\"#s\\\" title=\\\"Because I don\\u0026#39;t know how to.\\\"\\u003Efix it.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ETable of Contents\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"How to do better than this post\\\"\\u003EReddit Organization\\u003C/a\\u003E A.K.A Proposals\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EPosts\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EComments\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EMode Specific Tips\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EOwnership Discussion\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"More like None-Start\\\"\\u003EOne-Stop Assistance\\u003C/a\\u003E A.K.A Resources\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What is an FAQ?\\\"\\u003EWorkshop FAQ\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"May be copywrite infringing\\\"\\u003EUseful Links\\u003C/a\\u003E\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E###### Discord Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Youtube Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Dev Updates\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Mode/Code Lists\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Nonexistent\\\"\\u003EWorkshop Improvement Ideas\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Implying they will get done\\\"\\u003EFuture\\u003C/a\\u003E Projects\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ERandom \\u003Ca href=\\\"#s\\\" title=\\\"Also B-sides\\\"\\u003EAsides\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003E - #### \\u003Ca href=\\\"#s\\\" title=\\\"You look for the TLDR in the Table of Contents?\\\"\\u003ETLDR\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E[Reddit Organization Post Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[One Stop Assistance Post Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[My Code List Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Workshop Improvement Ideas Link]()\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EFuture Projects\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;ll probably see what I can do to organize a large-scale modding project once we get enough space on the workshop for it.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;ll be updating and correcting this post with all the information you commentors give me, and the actual game-modes I\\u0026#39;ve been collection. Maybe I\\u0026#39;ll add more hover-text jokes.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;m planning on adding a section with advice on creating a new mode or character, instead of just how to post one.\\u003C/h4\\u003E\\n\\n\\u003Ch2\\u003ERandom Asides\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EAbout Me: I\\u0026#39;m Lier1. I\\u0026#39;m a filthy casual, I make lots of jokes, and I \\u003Ca href=\\\"#s\\\" title=\\\"The worst sort of main, I know\\\"\\u003Emain DPS.\\u003C/a\\u003E However, I don\\u0026#39;t wish to offend, and hope to improve this resource, so feel free to comment and ask questions, fix my mistakes, or add more resources.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003ETLDR: I have some ideas for organizing the reddit posts and comments, the feedback we give the devs, an FAQ for answering your questions, and a One-Stop Workshop for leading you to resources.\\u003C/h4\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkcxj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557285895.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emo4wbj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557169931.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Fun Modes\\n\\n* K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n* 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n* RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n* EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n* N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n* 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n* M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n* T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n* NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n* R4DWM - BloodBorne in Overwatch - u/Elodeona\\n* EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n* FHQZ4 - Bridgette Pong - u/AJ_Black\\n* KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n* 53J3R - Shooters Vs Stabbers - Lilsis\\n* BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n* BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n* 5KCP4 - Dva Eject into Random Ult - u/qbbftw \\\\- ORIGINAL IDEA FROM: u/Woolin\\n* YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n* 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n* 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n* MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n* SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n* VJCT2 - Chase the Snowmen - u/andygmb\\n* 6PC67 - Take Hero of Kills - u/CrenderMutant\\n* 9J42E - Mcree Hot Potato - u/olipoulihot\\n* 85J46 - TF2 the Return - u/Greg266\\n* 7792M - Ninja Sword Fight - u/zhpete\\n* VQ5W8 - Turn Based 3v3 Deathmatch - u/nodas9990\\n* 56XNH - Reinhardt's Completely Stoned Bumper Car Emporeum v14 - u/TheRedstoneBlaze\\n* R68FF - Lucio Ball - u/Telefrag_Ent\\n* V5NKR - Volleybomb - u/Telefrag_Ent\\n* GB9PM - Instagib Railgun : Ashe Team Deathmatch - u/Telefrag_Ent\\n* PGF9P - 1 v 1 High Noon Duel - u/Zenmill\\n* ZKQVG - One in the Chamber: 3 Lives - u/iejb\\n* \\u00a0\\n* 0D2W5 - Hampster Chase - u/Woolin\\n* 6E3Z5 - Lucio Tag - u/Woolin \\u00a0\\n*\\n* 4J6KW - Screencheat - u/PotsNPans\\n* MN787 - Screencheat - u/microcosm_ow \\u00a0\\n*\\n* PTTNK - Weeping Angels (Zen Mcree) - u/Semproser\\n* X2HH9 - Weeping Angels (Mercy Mei) - u/Hogrid125 \\u00a0\\n*\\n* NJGZ4 - Deathmatch Rivals - u/Hypno--Toad\\n* A6736 - Rival System - u/Hypno--Toad \\u00a0\\n*\\n* JWY47 - Hammond Racing - @DanielFedder (Twitter)\\n* D9RND - Hamster Ball Racing - u/qwook \\u00a0\\n*\\n* SH9XN - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n* 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray \\u00a0\\n*\\n* RGH0D - High Speed: FFA - u/rbnsky\\n* SF1R2 - High Speed Gun Game - u/rbnsky \\u00a0\\n*\\n* E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n* QH5SP - PVE Horde Mode - u/Jechto\\n\\n## Training Modes\\n\\n* RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n* 2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n\\n* QKAAM - Placeable Cameras - u/ItsDeltin\\n* CQ00S - Elemental Aspects - u/poststakhanovist\\n* 179QN - Slot Machine - u/Cowboy_Jimmy\\n* 6WXRW - Navi - u/andygmb \\\\- u/Lymbow \\u00a0\\n*\\n* NK1YF - 2-D Sidescroller - u/HaxD3\\n* 4V8NC - Top Down Shooter - u/microcosm_ow \\u00a0\\n*\\n* ZW1PY - Scoreboard - u/Paf13\\n* 9EKZB - Scoreboard - u/caldoran2 \\u00a0\\n*\\n* QESP4 - Walls - u/Zezombye\\n* TZYK6 - Walls - u/Gecktendo\\n* RFJ4G - Walls - u/Gecktendo \\u00a0\\n*\\n* P4Y50 - Bunny Hopping - u/microcosm_ow\\n* WV5HH - Bunny Hop - u/TyzoneLyraNature\\n\\n## Hero Ideas\\n\\n* XJZB1 - Orisa AoE Push - AlexEptit\\n* H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n* RNKKJ - All Heroes Hover Jet - u/microcosm_ow\\n* 8H2DN - Sym Gravity Gun (Half-life) - u/IFIsc\\n* XGAPQ - Genji as Maeve (Paladins) - u/jprosk\\n* BE2J7 - Portal Gun - u/Lymbow \\\\- u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emo4wbj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9J42E - Mcree Hot Potato - \\u003Ca href=\\\"/u/olipoulihot\\\"\\u003Eu/olipoulihot\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E85J46 - TF2 the Return - \\u003Ca href=\\\"/u/Greg266\\\"\\u003Eu/Greg266\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E7792M - Ninja Sword Fight - \\u003Ca href=\\\"/u/zhpete\\\"\\u003Eu/zhpete\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVQ5W8 - Turn Based 3v3 Deathmatch - \\u003Ca href=\\\"/u/nodas9990\\\"\\u003Eu/nodas9990\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E56XNH - Reinhardt\\u0026#39;s Completely Stoned Bumper Car Emporeum v14 - \\u003Ca href=\\\"/u/TheRedstoneBlaze\\\"\\u003Eu/TheRedstoneBlaze\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER68FF - Lucio Ball - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EV5NKR - Volleybomb - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGB9PM - Instagib Railgun : Ashe Team Deathmatch - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EPGF9P - 1 v 1 High Noon Duel - \\u003Ca href=\\\"/u/Zenmill\\\"\\u003Eu/Zenmill\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZKQVG - One in the Chamber: 3 Lives - \\u003Ca href=\\\"/u/iejb\\\"\\u003Eu/iejb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u00a0\\u003C/li\\u003E\\n\\u003Cli\\u003E0D2W5 - Hampster Chase - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6E3Z5 - Lucio Tag - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003E4J6KW - Screencheat - \\u003Ca href=\\\"/u/PotsNPans\\\"\\u003Eu/PotsNPans\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMN787 - Screencheat - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EPTTNK - Weeping Angels (Zen Mcree) - \\u003Ca href=\\\"/u/Semproser\\\"\\u003Eu/Semproser\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EX2HH9 - Weeping Angels (Mercy Mei) - \\u003Ca href=\\\"/u/Hogrid125\\\"\\u003Eu/Hogrid125\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ENJGZ4 - Deathmatch Rivals - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EA6736 - Rival System - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EJWY47 - Hammond Racing - @DanielFedder (Twitter)\\u003C/li\\u003E\\n\\u003Cli\\u003ED9RND - Hamster Ball Racing - \\u003Ca href=\\\"/u/qwook\\\"\\u003Eu/qwook\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ESH9XN - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E179QN - Slot Machine - \\u003Ca href=\\\"/u/Cowboy_Jimmy\\\"\\u003Eu/Cowboy_Jimmy\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ENK1YF - 2-D Sidescroller - \\u003Ca href=\\\"/u/HaxD3\\\"\\u003Eu/HaxD3\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E4V8NC - Top Down Shooter - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETZYK6 - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERFJ4G - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EP4Y50 - Bunny Hopping - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERNKKJ - All Heroes Hover Jet - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8H2DN - Sym Gravity Gun (Half-life) - \\u003Ca href=\\\"/u/IFIsc\\\"\\u003Eu/IFIsc\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EXGAPQ - Genji as Maeve (Paladins) - \\u003Ca href=\\\"/u/jprosk\\\"\\u003Eu/jprosk\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emo4wbj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557198731.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emny9vc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MeddyEvalNight\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557166074.0, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Image was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u003Cimg/\\u003E . It looks like an inline rendered image needs to be uploaded\\n\\n\\u0026#x200B;\\n\\n[Video link](https://www.youtube.com/watch?v=yd98RGxad0U)\", \"link_title\": \"Testing inline image links. Is it a url link or an inline image render?\", \"author_flair_css_class\": null, \"name\": \"t1_emny9vc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EImage was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u0026lt;img/\\u0026gt; . It looks like an inline rendered image needs to be uploaded\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=yd98RGxad0U\\\"\\u003EVideo link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emny9vc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"report_reasons\": null, \"link_author\": \"MeddyEvalNight\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"created\": 1557194874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emnwgbf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MeddyEvalNight\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557165020.0, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Not what I wanted... next test.\", \"link_title\": \"Testing inline image links. Is it a url link or an inline image render?\", \"author_flair_css_class\": null, \"name\": \"t1_emnwgbf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot what I wanted... next test.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emnwgbf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"report_reasons\": null, \"link_author\": \"MeddyEvalNight\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"created\": 1557193820.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmzbbw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gpngc\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557143134.0, \"send_replies\": true, \"parent_id\": \"t3_blb203\", \"score\": 1, \"author_fullname\": \"t2_6fxy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n**1.** **Chargers \\u2013 Jerry Tillery \\u2013 4** \\n\\nI loved this Chargers draft. They got the No. 11 and 12 players on my Big Board. \\n\\nTillery has bust risk after an uneven college career, but I think his pro traits translate in a big way. He absolutely wrecked the Stanford game with 4 sacks, so perhaps my evaluation wouldn\\u2019t be as rosy if I watched his entire career. Still, traits. He has a strong club, pushes the pocket, and is stout against the run. Just watch Stanford. His issues with consistency come down to technique and stupid things like not exploding off the ball for some reason. He\\u2019s really good right now and with some coaching can be great. The Chargers might have the best defense in the league next year. \\n\\nNasir Adderly was my favorite player in the entire draft. My prediction is a 5. Copied and pasted from my notes: wowowowowowoowowwowoow. It doesn\\u2019t take a professional scout to see that he\\u2019s playing at a different speed than everyone else on the field at the FCS level. Against NDSU, I saw him at 206 pounds push back a 300-pound OL and knock down an outside WR. He\\u2019s a missile downhill and has the ball skills and range of a top safety. The only question I have is how he\\u2019ll respond to the jump in competition. When scouting FCS players, you want to see them dominate exactly as he did. STOP whatever you\\u2019re doing and watch this right now: [https://www.youtube.com/watch?v=0dwOuc8K4ik](https://www.youtube.com/watch?v=0dwOuc8K4ik) He gives a new meaning to the term \\u201cstop and start\\u201d, makes some spectacular catches down the field, and misses a tackle on punt coverage\\u2026 \\u2026then Ben Watsons his mistake in unbelievable fashion. Seriously, just watch this right now: [https://www.youtube.com/watch?v=0dwOuc8K4ik](https://www.youtube.com/watch?v=0dwOuc8K4ik) \\n\\nThe Chargers might have the best safety duo in the league soon. \\n\\n**2.** **Seahawks \\u2013 L.J. Collier \\u2013 1** \\n\\nI\\u2019m a Seahawks fan and I\\u2019m just about done with GM John Schneider. I\\u2019ll forever love him for building a SB Champion, but enough is enough, and they\\u2019re wasting Russ\\u2019 prime. After the all-time draft class in 2012, Schneider has done very little good and a ton bad with Seahawks draft capital. Besides Tyler Lockett, Frank Clark, Jarran Reed, and Chris Carson, there hasn\\u2019t been much to show for despite hoarding draft picks and trading down every year. Just look at how he\\u2019s handled the first round since 2013: \\n\\n2013: Traded for Percy Harvin. While he may have sealed one SB, he fractured the locker room. \\n\\n2014: Traded into the 2nd and took Paul Richardson. Meh. \\n\\n2015: Traded for Jimmy Graham. Eh. \\n\\n2016: Selected Germain Ifedi. LOL. \\n\\n2017: Traded into the the 2nd and took Malik McDowell who never played a snap for them. \\n\\n2018: Traded down to No. 27 to take a RB, who, even if he\\u2019s good, is still a RB. \\n\\nAnd it\\u2019s not like he\\u2019s been nailing the later rounds either. \\n\\nHis drafts since 2013 are a fireable offense. He\\u2019ll probably never be separated from Carroll, and he\\u2019ll always have 2012 to shield him, but he\\u2019s been objectively awful for years. Sorry to spit the truth fellow 12s. \\n\\nThe Seahawks take pride in doing off-the-wall things and have missed out on so much talent because of it. I don\\u2019t believe in the term \\u201creach\\u201d, but the guys the media says they reached for don\\u2019t ever pan out (besides 2012), sooooo\\u2026. They also love trading down to hoard draft picks, but they just end up on missing on all the picks they get! It\\u2019s frustrating as a fan to see guys like Calvin Ridley, Sweat, Tillery, and Marquise Brown get taken in between their original slot and trade-down slot. They take pride in their unconventional ways, and their ways have been thoroughly ineffective since 2012. This year JS was quoted as saying something along the lines of \\u2018the draft was going the way it was expected to, and we didn\\u2019t like that.\\u2019 The media and draftniks have gotten wiser and straying so far off EVERYONE\\u2019S Big Boards usually doesn\\u2019t work anymore. \\n\\nOn to Collier, he\\u2019s a decent 24-year-old power edge guy, who\\u2019s profile is that of a clear capped-upside second-rounder. The only thing he has going for him that I can\\u2019t really speak on is his supposedly dominant Senior Bowl week. There are some nice things on film, and he can be a solid run defender, but a lot of his pressures and sacks won\\u2019t translate. He\\u2019s not going to bull-rush and get instant sacks against NFL tackles. His horrid 7.71 3cone confirms his lack of bend off the edge. He started one year at TCU and had so-so film. The pick just doesn\\u2019t make sense. \\n\\nI did a YouTube video ([https://www.youtube.com/watch?v=VsRjqfOao\\\\_0](https://www.youtube.com/watch?v=VsRjqfOao_0)) on D.K. Metcalf (2) right after he blew up the combine and called him a 3rd-round pick. He has every trait of a bust risk but went to the best situation possible. Russ makes everyone around him better and D.K. won\\u2019t have to run many advanced routes for the best deep-ball passer in the game. He\\u2019ll also be thrust right away into playing time, and the culture at Seattle sets their players up for success, especially at WR. If he was a developmental project in a different program, stuck behind better receivers or with a bad QB, I could see him falling out of relevance and not building any confidence. \\n\\nAs a deep threat, he\\u2019s not bad. However, there are a ton of concerns on tape. He\\u2019s all straight-linish with no agility, and his athletic testing comparisons to Tom Brady are evident on film. He lacks a release plan to gain separation. He will body catch when he doesn\\u2019t have to and I can\\u2019t tell if his hands are just average or below average, probably because there simply weren\\u2019t many catches on film. Some of his proponents cited \\u201cbad coaching\\u201d as the reason he didn\\u2019t produce. I understand he plays a different position, but A.J. Brown produced huge numbers in the same offense. Metcalf isn\\u2019t a bad prospect by any means. He flashed as a deep threat (which fits Seattle) and has functional (and photogenic) strength as a blocker and fall-forward-after-catch guy. But concerns with rawness and route-running make him developmental with question marks. I would have preferred to stay away and I can\\u2019t endorse the pick. But in the late-second, I suppose they could have done worse. \\n\\nHere\\u2019s a hot take: Gary Jennings Jr. (3) Will be a better pro than D.K. He popped on film while scouting Grier. He can\\u2019t run a route to save his life but he has literally everything else you want from a pro WR including outstanding ball skills.\\n\\n3. Giants \\u2013 See Pick 6 \\n\\n4. Falcons \\u2013 See Pick 14 \\n\\n**5.** **Patriots \\u2013 N\\u2019Keal Harry \\u2013 2** \\n\\nThe ghost of Chad Jackson has haunted Gillette for years. Read the book \\u201cWar Room\\u201d about Belichick and the Patriots drafts. With a glaring need at WR, the Pats finally spent a first on one, and Harry has a chance to start right away. \\n\\nHarry was one of the most unique WR prospects I\\u2019ve ever scouted. Nothing about his game is conventional, starting with his awkward upright stance and weird rolling release. His running-after-the-catch transitions are awkward as he\\u2019ll weirdly high-step or foot-fire for one full second before somehow gliding forward without being an easy target for a tackler. His arms pump down to his knees when he runs. Good coaches let players be themselves, and Harry\\u2019s unconventional ways do lead to success on film. He\\u2019s sudden down the field on second-level releases and catches the ball well for the most part, using his bigger body to his advantage. His confidence on film is evident, but the Oregon game makes me reluctant to pick a star. He had a couple of drops and generally struggled. Predicting the careers of draft picks is really ridiculous. I wouldn\\u2019t be shocked with any outcome, including a full-blown implosion or budding superstar. My initial instinct was that he was just OK. 3. Wait. He really won\\u2019t be a 3. He\\u2019s either going to be the guy or not work out. 2. \\n\\n**46. Browns \\u2013 Greedy Wiliams \\u2013 3** \\n\\nI don\\u2019t know why Greedy fell and Dorsey made a good move trading up to get him. Everyone knows what he is as a long press corner but a second look at his tape revealed one issue. He is very inconsistent locating the football and getting his head around in press. Teams are going to play the percentages and abuse him if he doesn\\u2019t learn how to consistently turn his head. Still, the traits are there and he\\u2019s really good. I don\\u2019t care about his run defense in a man-heavy scheme.\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmzbbw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E1.\\u003C/strong\\u003E \\u003Cstrong\\u003EChargers \\u2013 Jerry Tillery \\u2013 4\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI loved this Chargers draft. They got the No. 11 and 12 players on my Big Board. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETillery has bust risk after an uneven college career, but I think his pro traits translate in a big way. He absolutely wrecked the Stanford game with 4 sacks, so perhaps my evaluation wouldn\\u2019t be as rosy if I watched his entire career. Still, traits. He has a strong club, pushes the pocket, and is stout against the run. Just watch Stanford. His issues with consistency come down to technique and stupid things like not exploding off the ball for some reason. He\\u2019s really good right now and with some coaching can be great. The Chargers might have the best defense in the league next year. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENasir Adderly was my favorite player in the entire draft. My prediction is a 5. Copied and pasted from my notes: wowowowowowoowowwowoow. It doesn\\u2019t take a professional scout to see that he\\u2019s playing at a different speed than everyone else on the field at the FCS level. Against NDSU, I saw him at 206 pounds push back a 300-pound OL and knock down an outside WR. He\\u2019s a missile downhill and has the ball skills and range of a top safety. The only question I have is how he\\u2019ll respond to the jump in competition. When scouting FCS players, you want to see them dominate exactly as he did. STOP whatever you\\u2019re doing and watch this right now: \\u003Ca href=\\\"https://www.youtube.com/watch?v=0dwOuc8K4ik\\\"\\u003Ehttps://www.youtube.com/watch?v=0dwOuc8K4ik\\u003C/a\\u003E He gives a new meaning to the term \\u201cstop and start\\u201d, makes some spectacular catches down the field, and misses a tackle on punt coverage\\u2026 \\u2026then Ben Watsons his mistake in unbelievable fashion. Seriously, just watch this right now: \\u003Ca href=\\\"https://www.youtube.com/watch?v=0dwOuc8K4ik\\\"\\u003Ehttps://www.youtube.com/watch?v=0dwOuc8K4ik\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Chargers might have the best safety duo in the league soon. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E2.\\u003C/strong\\u003E \\u003Cstrong\\u003ESeahawks \\u2013 L.J. Collier \\u2013 1\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m a Seahawks fan and I\\u2019m just about done with GM John Schneider. I\\u2019ll forever love him for building a SB Champion, but enough is enough, and they\\u2019re wasting Russ\\u2019 prime. After the all-time draft class in 2012, Schneider has done very little good and a ton bad with Seahawks draft capital. Besides Tyler Lockett, Frank Clark, Jarran Reed, and Chris Carson, there hasn\\u2019t been much to show for despite hoarding draft picks and trading down every year. Just look at how he\\u2019s handled the first round since 2013: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2013: Traded for Percy Harvin. While he may have sealed one SB, he fractured the locker room. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2014: Traded into the 2nd and took Paul Richardson. Meh. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2015: Traded for Jimmy Graham. Eh. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2016: Selected Germain Ifedi. LOL. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2017: Traded into the the 2nd and took Malik McDowell who never played a snap for them. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2018: Traded down to No. 27 to take a RB, who, even if he\\u2019s good, is still a RB. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd it\\u2019s not like he\\u2019s been nailing the later rounds either. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHis drafts since 2013 are a fireable offense. He\\u2019ll probably never be separated from Carroll, and he\\u2019ll always have 2012 to shield him, but he\\u2019s been objectively awful for years. Sorry to spit the truth fellow 12s. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Seahawks take pride in doing off-the-wall things and have missed out on so much talent because of it. I don\\u2019t believe in the term \\u201creach\\u201d, but the guys the media says they reached for don\\u2019t ever pan out (besides 2012), sooooo\\u2026. They also love trading down to hoard draft picks, but they just end up on missing on all the picks they get! It\\u2019s frustrating as a fan to see guys like Calvin Ridley, Sweat, Tillery, and Marquise Brown get taken in between their original slot and trade-down slot. They take pride in their unconventional ways, and their ways have been thoroughly ineffective since 2012. This year JS was quoted as saying something along the lines of \\u2018the draft was going the way it was expected to, and we didn\\u2019t like that.\\u2019 The media and draftniks have gotten wiser and straying so far off EVERYONE\\u2019S Big Boards usually doesn\\u2019t work anymore. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn to Collier, he\\u2019s a decent 24-year-old power edge guy, who\\u2019s profile is that of a clear capped-upside second-rounder. The only thing he has going for him that I can\\u2019t really speak on is his supposedly dominant Senior Bowl week. There are some nice things on film, and he can be a solid run defender, but a lot of his pressures and sacks won\\u2019t translate. He\\u2019s not going to bull-rush and get instant sacks against NFL tackles. His horrid 7.71 3cone confirms his lack of bend off the edge. He started one year at TCU and had so-so film. The pick just doesn\\u2019t make sense. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did a YouTube video (\\u003Ca href=\\\"https://www.youtube.com/watch?v=VsRjqfOao_0\\\"\\u003Ehttps://www.youtube.com/watch?v=VsRjqfOao_0\\u003C/a\\u003E) on D.K. Metcalf (2) right after he blew up the combine and called him a 3rd-round pick. He has every trait of a bust risk but went to the best situation possible. Russ makes everyone around him better and D.K. won\\u2019t have to run many advanced routes for the best deep-ball passer in the game. He\\u2019ll also be thrust right away into playing time, and the culture at Seattle sets their players up for success, especially at WR. If he was a developmental project in a different program, stuck behind better receivers or with a bad QB, I could see him falling out of relevance and not building any confidence. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a deep threat, he\\u2019s not bad. However, there are a ton of concerns on tape. He\\u2019s all straight-linish with no agility, and his athletic testing comparisons to Tom Brady are evident on film. He lacks a release plan to gain separation. He will body catch when he doesn\\u2019t have to and I can\\u2019t tell if his hands are just average or below average, probably because there simply weren\\u2019t many catches on film. Some of his proponents cited \\u201cbad coaching\\u201d as the reason he didn\\u2019t produce. I understand he plays a different position, but A.J. Brown produced huge numbers in the same offense. Metcalf isn\\u2019t a bad prospect by any means. He flashed as a deep threat (which fits Seattle) and has functional (and photogenic) strength as a blocker and fall-forward-after-catch guy. But concerns with rawness and route-running make him developmental with question marks. I would have preferred to stay away and I can\\u2019t endorse the pick. But in the late-second, I suppose they could have done worse. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u2019s a hot take: Gary Jennings Jr. (3) Will be a better pro than D.K. He popped on film while scouting Grier. He can\\u2019t run a route to save his life but he has literally everything else you want from a pro WR including outstanding ball skills.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGiants \\u2013 See Pick 6 \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFalcons \\u2013 See Pick 14 \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E5.\\u003C/strong\\u003E \\u003Cstrong\\u003EPatriots \\u2013 N\\u2019Keal Harry \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe ghost of Chad Jackson has haunted Gillette for years. Read the book \\u201cWar Room\\u201d about Belichick and the Patriots drafts. With a glaring need at WR, the Pats finally spent a first on one, and Harry has a chance to start right away. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHarry was one of the most unique WR prospects I\\u2019ve ever scouted. Nothing about his game is conventional, starting with his awkward upright stance and weird rolling release. His running-after-the-catch transitions are awkward as he\\u2019ll weirdly high-step or foot-fire for one full second before somehow gliding forward without being an easy target for a tackler. His arms pump down to his knees when he runs. Good coaches let players be themselves, and Harry\\u2019s unconventional ways do lead to success on film. He\\u2019s sudden down the field on second-level releases and catches the ball well for the most part, using his bigger body to his advantage. His confidence on film is evident, but the Oregon game makes me reluctant to pick a star. He had a couple of drops and generally struggled. Predicting the careers of draft picks is really ridiculous. I wouldn\\u2019t be shocked with any outcome, including a full-blown implosion or budding superstar. My initial instinct was that he was just OK. 3. Wait. He really won\\u2019t be a 3. He\\u2019s either going to be the guy or not work out. 2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E46. Browns \\u2013 Greedy Wiliams \\u2013 3\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u2019t know why Greedy fell and Dorsey made a good move trading up to get him. Everyone knows what he is as a long press corner but a second look at his tape revealed one issue. He is very inconsistent locating the football and getting his head around in press. Teams are going to play the percentages and abuse him if he doesn\\u2019t learn how to consistently turn his head. Still, the traits are there and he\\u2019s really good. I don\\u2019t care about his run defense in a man-heavy scheme.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmzbbw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171934.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmz810\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"converter-bot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557143052.0, \"send_replies\": true, \"parent_id\": \"t1_emmz7qr\", \"score\": 1, \"author_fullname\": \"t2_zds627j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"7 yards is 6.4 meters\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmz810\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E7 yards is 6.4 meters\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmz810/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171852.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmz7qr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gpngc\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557143045.0, \"send_replies\": true, \"parent_id\": \"t3_blb203\", \"score\": 1, \"author_fullname\": \"t2_6fxy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n**1.** **Vikings \\u2013 Garrett Bradbury \\u2013 2** \\n\\nI don\\u2019t like picking this many 2s in the teens, but these were the guys I was down on a bit and all of them have fairly high floors so I\\u2019m reluctant to pick 1s. It\\u2019s simply very rare than interior OL is drafted in the teens and doesn\\u2019t end up at least being solid. Still, I had Bradbury ranked 49th on my Big Board. His tape was that of an average college OL. He struggled to get movement in the run game. He was fine in pass protection. Against Michigan, he was bench pressed and pushed back multiple times by LB #35. It was jarring. Even in a zone scheme, getting moved back at center against LBs is a red flag for me. If I\\u2019m taking a center in the first round I want Travis Frederick or Ryan Kelly \\u2013 technicians who also have the power to move people. Bradbury was a fine college player in an offense with a lot of quick game reps, especially against Clemson, but I see his lack of strength at the POA as a major flaw. And it\\u2019s not like he\\u2019s Ryan Kelly in terms of technique. Athleticism and intelligence are great qualities, but if you\\u2019re spending the 18th overall pick on a center, he better have more than that. Bradbury doesn\\u2019t. \\n\\n**2.** **Titans \\u2013 Jeffrey Simmons \\u2013 3** \\n\\nI have no idea why ESPN handled the Simmons pick the way they did. It was one of the most bizarre NFL Draft segments I\\u2019ve ever seen. And the worst part is I don\\u2019t think they showed ONE SECOND of him playing football. So odd. \\n\\nI don\\u2019t think Simmons\\u2019 film showed the best player in the draft as some said. He was the 23rd ranked player on my board before I knew about his character questions. Injuries factored in slightly for me. He\\u2019s got everything you want in a dominant DL, but there were some really bad stretches on film. He struggled vs double teams against Florida, on one rep stopping his feet and getting driven back literally 7 yards before flailing his arm in a feeble tackle attempt. He\\u2019ll lean too much and get caught out of position. He\\u2019ll stand straight up. There were flashes of brilliance, and if he can make some technique changes to mix with his strength, he can be a factor inside in the NFL. He\\u2019s tough to reach in the run game and makes plays. Really good college player who needs to work that much harder to up his game for the next level.\\n\\n**3.** **Broncos \\u2013 Noah Fant \\u2013 3** \\n\\nThere is one glaring takeaway from Fant\\u2019s film, and I\\u2019m surprised I haven\\u2019t read it anywhere: He doesn\\u2019t break ANY tackles. Breaking tackles isn\\u2019t exactly a hugely important skill for TEs in the NFL, but it speaks to a lack of dominance over his level of competition. As a possession receiver, Fant is fine. He can stretch the field, was money on deep crosses, and is a red zone threat. His skills fall somewhere in the middle on the Ricky Seals-Jones-to-Jordan Reed spectrum. He\\u2019s not a good blocker and I saw him jump for no reason on one catch and drop another in three games. In a passing league, he\\u2019s a valuable TE but he might be one-dimensional. He\\u2019ll be a good to great TE in fantasy by his second year with his ceiling decided by his QB. \\n\\nI didn\\u2019t love Drew Lock (1) on film. He\\u2019s athletic with good size and a great arm, and played pretty well in the SEC. However, he sees ghosts, makes too many fade-away throws, and is slow to process information. I can see the delay of games in his future. Although he is pretty accurate which is my No. 1 most important trait for QBs. Hmmm.\\n\\n4. Packers \\u2013 See Pick 12 \\n\\n**5.** **Eagles \\u2013 Andre Dillard \\u2013 2** \\n\\nPredicting Andre Dillard\\u2019s career comes down to one question: Can finesse-first work in the NFL? Dillard is smart with great feet. He just may not be physical or nasty enough to be a franchise LT. It\\u2019s also important to remember that while skill positions have to make a tough transition from Air Raid offenses, OL must basically re-learn everything as well. He got whooped at the Senior Bowl by the Texas DE. He has the tools to make the jump but there are more questions than answers here. Jumping over Houston to get Wentz\\u2019s next blindside protector might actually bite the Eagles because Tytus Howard is actually better. \\n\\n**6.** **Texans \\u2013 Tytus Howard - 4** \\n\\nScouting Howard is very simple. He kick-slides well, moves well, and needs to get stronger. He can handle speed. Some OL have quirks where they play better on one side, so I hope that\\u2019s not the case with Howard, because he played RT at Alabama State and the Senior Bowl. He gets into stalemates too much in the run game but he handled everything Auburn threw at him in terms of speed and power rushers and his game translates to the pros in a big way. I think he has more upside than Dillard. \\n\\nCoincidentally, their 5th-rounder, Texas DE Charles Omenihu (3) whooped Andre Dillard at the Senior Bowl and has all the tools of a steal. \\n\\n7. Raiders \\u2013 See Pick 4 \\n\\n**8.** **Ravens \\u2013 Marquise Brown \\u2013 4** \\n\\nBrown to the Ravens is very interesting. On one hand, he was the No. 8 player on my Big Board. On the other hand, using a first on a WR in an offense that wants to throw less than 20 times a game is head-scratching. I loved Lamar Jackson as a prospect last year, but he\\u2019ll have to make gigantic, unprecedented strides as a passer for Brown to reach his potential. \\n\\nOne of the keys to route-running is avoiding contact while still executing your assignment. This is obvious in the form of press coverage at the LOS, and it\\u2019s very easy to evaluate effective press releases. The average football fan might not notice what happens mid-route on secondary releases, which is the move or plan a receiver executes to get off a collision by a defender. The fact that Brown doesn\\u2019t get touched on his secondary or LOS releases epitomizes why I love this player\\u2019s game. Advanced scouting term: he\\u2019s fast. Also, he\\u2019s quick. His deep threat prowess has contributed to two QBs going first overall. He\\u2019s terrific after the catch. He\\u2019s smooth in and out of his breaks and comes downhill on his post curls beautifully. There are two concerns. 1) He gets literally tossed around like a rag doll. And 2) He had three drops against Texas. Evaluating college performance, the three drops were bad and his position coach should grade him negatively. But if you watch the three drops closely, and all of his catches, his hand positioning and coordination is pretty much perfect \\u2013 the CB on Texas made a couple of nice plays and on the deep post, his small hands just couldn\\u2019t squeeze it over his opposite shoulder. His hands were still positioned correctly, which is a pro trait that translates. DeSean Jackson has shown us that thin speedsters can stay healthy, but Brown already struggling with injuries is concerning. If he stays healthy, he\\u2019ll be a star and have a T.Y./DJax career. When a prospect\\u2019s only issue is size, I always take him (Tarik Cohen!).\\n\\n9. Skins \\u2013 See Pick 15 \\n\\n10. Raiders \\u2013 I told you before, go to 4\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmz7qr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E1.\\u003C/strong\\u003E \\u003Cstrong\\u003EVikings \\u2013 Garrett Bradbury \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u2019t like picking this many 2s in the teens, but these were the guys I was down on a bit and all of them have fairly high floors so I\\u2019m reluctant to pick 1s. It\\u2019s simply very rare than interior OL is drafted in the teens and doesn\\u2019t end up at least being solid. Still, I had Bradbury ranked 49th on my Big Board. His tape was that of an average college OL. He struggled to get movement in the run game. He was fine in pass protection. Against Michigan, he was bench pressed and pushed back multiple times by LB #35. It was jarring. Even in a zone scheme, getting moved back at center against LBs is a red flag for me. If I\\u2019m taking a center in the first round I want Travis Frederick or Ryan Kelly \\u2013 technicians who also have the power to move people. Bradbury was a fine college player in an offense with a lot of quick game reps, especially against Clemson, but I see his lack of strength at the POA as a major flaw. And it\\u2019s not like he\\u2019s Ryan Kelly in terms of technique. Athleticism and intelligence are great qualities, but if you\\u2019re spending the 18th overall pick on a center, he better have more than that. Bradbury doesn\\u2019t. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E2.\\u003C/strong\\u003E \\u003Cstrong\\u003ETitans \\u2013 Jeffrey Simmons \\u2013 3\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have no idea why ESPN handled the Simmons pick the way they did. It was one of the most bizarre NFL Draft segments I\\u2019ve ever seen. And the worst part is I don\\u2019t think they showed ONE SECOND of him playing football. So odd. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u2019t think Simmons\\u2019 film showed the best player in the draft as some said. He was the 23rd ranked player on my board before I knew about his character questions. Injuries factored in slightly for me. He\\u2019s got everything you want in a dominant DL, but there were some really bad stretches on film. He struggled vs double teams against Florida, on one rep stopping his feet and getting driven back literally 7 yards before flailing his arm in a feeble tackle attempt. He\\u2019ll lean too much and get caught out of position. He\\u2019ll stand straight up. There were flashes of brilliance, and if he can make some technique changes to mix with his strength, he can be a factor inside in the NFL. He\\u2019s tough to reach in the run game and makes plays. Really good college player who needs to work that much harder to up his game for the next level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E3.\\u003C/strong\\u003E \\u003Cstrong\\u003EBroncos \\u2013 Noah Fant \\u2013 3\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is one glaring takeaway from Fant\\u2019s film, and I\\u2019m surprised I haven\\u2019t read it anywhere: He doesn\\u2019t break ANY tackles. Breaking tackles isn\\u2019t exactly a hugely important skill for TEs in the NFL, but it speaks to a lack of dominance over his level of competition. As a possession receiver, Fant is fine. He can stretch the field, was money on deep crosses, and is a red zone threat. His skills fall somewhere in the middle on the Ricky Seals-Jones-to-Jordan Reed spectrum. He\\u2019s not a good blocker and I saw him jump for no reason on one catch and drop another in three games. In a passing league, he\\u2019s a valuable TE but he might be one-dimensional. He\\u2019ll be a good to great TE in fantasy by his second year with his ceiling decided by his QB. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI didn\\u2019t love Drew Lock (1) on film. He\\u2019s athletic with good size and a great arm, and played pretty well in the SEC. However, he sees ghosts, makes too many fade-away throws, and is slow to process information. I can see the delay of games in his future. Although he is pretty accurate which is my No. 1 most important trait for QBs. Hmmm.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EPackers \\u2013 See Pick 12 \\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E5.\\u003C/strong\\u003E \\u003Cstrong\\u003EEagles \\u2013 Andre Dillard \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPredicting Andre Dillard\\u2019s career comes down to one question: Can finesse-first work in the NFL? Dillard is smart with great feet. He just may not be physical or nasty enough to be a franchise LT. It\\u2019s also important to remember that while skill positions have to make a tough transition from Air Raid offenses, OL must basically re-learn everything as well. He got whooped at the Senior Bowl by the Texas DE. He has the tools to make the jump but there are more questions than answers here. Jumping over Houston to get Wentz\\u2019s next blindside protector might actually bite the Eagles because Tytus Howard is actually better. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E6.\\u003C/strong\\u003E \\u003Cstrong\\u003ETexans \\u2013 Tytus Howard - 4\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScouting Howard is very simple. He kick-slides well, moves well, and needs to get stronger. He can handle speed. Some OL have quirks where they play better on one side, so I hope that\\u2019s not the case with Howard, because he played RT at Alabama State and the Senior Bowl. He gets into stalemates too much in the run game but he handled everything Auburn threw at him in terms of speed and power rushers and his game translates to the pros in a big way. I think he has more upside than Dillard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECoincidentally, their 5th-rounder, Texas DE Charles Omenihu (3) whooped Andre Dillard at the Senior Bowl and has all the tools of a steal. \\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ERaiders \\u2013 See Pick 4\\u003Cbr/\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E8.\\u003C/strong\\u003E \\u003Cstrong\\u003ERavens \\u2013 Marquise Brown \\u2013 4\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBrown to the Ravens is very interesting. On one hand, he was the No. 8 player on my Big Board. On the other hand, using a first on a WR in an offense that wants to throw less than 20 times a game is head-scratching. I loved Lamar Jackson as a prospect last year, but he\\u2019ll have to make gigantic, unprecedented strides as a passer for Brown to reach his potential. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of the keys to route-running is avoiding contact while still executing your assignment. This is obvious in the form of press coverage at the LOS, and it\\u2019s very easy to evaluate effective press releases. The average football fan might not notice what happens mid-route on secondary releases, which is the move or plan a receiver executes to get off a collision by a defender. The fact that Brown doesn\\u2019t get touched on his secondary or LOS releases epitomizes why I love this player\\u2019s game. Advanced scouting term: he\\u2019s fast. Also, he\\u2019s quick. His deep threat prowess has contributed to two QBs going first overall. He\\u2019s terrific after the catch. He\\u2019s smooth in and out of his breaks and comes downhill on his post curls beautifully. There are two concerns. 1) He gets literally tossed around like a rag doll. And 2) He had three drops against Texas. Evaluating college performance, the three drops were bad and his position coach should grade him negatively. But if you watch the three drops closely, and all of his catches, his hand positioning and coordination is pretty much perfect \\u2013 the CB on Texas made a couple of nice plays and on the deep post, his small hands just couldn\\u2019t squeeze it over his opposite shoulder. His hands were still positioned correctly, which is a pro trait that translates. DeSean Jackson has shown us that thin speedsters can stay healthy, but Brown already struggling with injuries is concerning. If he stays healthy, he\\u2019ll be a star and have a T.Y./DJax career. When a prospect\\u2019s only issue is size, I always take him (Tarik Cohen!).\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ESkins \\u2013 See Pick 15 \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERaiders \\u2013 I told you before, go to 4\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmz7qr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171845.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmz2hg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gpngc\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557142917.0, \"send_replies\": true, \"parent_id\": \"t3_blb203\", \"score\": 1, \"author_fullname\": \"t2_6fxy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pt. 2\\n\\n\\u0026#x200B;\\n\\n**13.** **Dolphins \\u2013 Christian Wilkins \\u2013 2** \\n\\nChristian Wilkins is another example of evaluating pro traits translating rather than college performance. A storied college winner who inspired on and off the field, Wilkins is a tremendous young man with a bright future. However, I think his character and intelligence inflated his stock a little too much. Against Mississippi State he was mostly a ghost, and in other games had long stretches of invisible or even just bad film, with the occasional splash play. He\\u2019s the poster child for my Reverse Planet Theory, which cautions against the allure of quick, penetrating, 3-techs. There are plays on film where his short arms leave him exposed, struggling to post against double teams and getting reached on zone runs. When he has the quickness advantage against low-skilled ACC guards, he looks great as a penetrator, and to be fair his quicks are terrific. But leverage and quicks can only take a short-armed, decently talented 3-Tech so far in the pros. I don\\u2019t think he lives up to his draft slot.\\n\\n \\n\\nAs for the Rosen trade, it wasn\\u2019t awful because they gave up a late 2 to take a shot on talent, but as a vocal Rosen detractor I don\\u2019t think it will help them. Without much talent on the roster, there is a legitimate chance they end up taking a top-5 QB next year and Rosen gets dealt again. There has been a weird fascination with Rosen since last offseason, but I never liked him much as a prospect and gave him a 2 last year. My reasons can be found in last year\\u2019s review. \\n\\n**14.** **Falcons \\u2013 Chris Lindstrom \\u2013 2** \\n\\nThe Falcons had one of the worst defenses in the NFL last year and decided to spend their first two picks on OL. While they\\u2019ll get Keanu Neal and Deion Jones back from injury, it\\u2019s still head-scratching to not address the D early. I understand building the OL BEFORE it becomes an issue, but I don\\u2019t think they made the right pick at No. 14. \\n\\nAfter watching his film, I ranked Lindstrom 44th on my Big Board and noted that he was an athletic guard who didn\\u2019t have enough power to play in anything other than a zone-heavy scheme. He\\u2019ll be fine getting to the second level and staying in front of penetrating 3-techs, and clearly I\\u2019m missing something with him going this high. Staying true to my eval, I expect him to get pushed back routinely by bigger DL in both the run and pass game. I can see inside pressure now. He takes the initial contact at the POA too much. With the right S\\u0026C regimen (he benched 25 reps, not bad), he could get stronger. They did need a guard. I want to trust the Falcons, but with Dexter Lawrence and others on the board I think they made a mistake. \\n\\nI scouted McGary (3) after the draft and I liked his game on film. He did some impressive things in the run game on double-teams against Ohio State. I think he fits better in a gap scheme where he can use his size and power, which makes the Lindstrom pick more head-scratching. We all know his value will be determined mainly by how he holds up against speed rushers at RT. Short arms, limited lateral quickness, and some bad beats by pure speed on film give me pause. I like him better than Lindstrom but he projects as a plus run blocker with struggles vs speed rushers in the passing game. He has the demeanor of a starting NFL OL so I\\u2019ll go with a 3.\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmz2hg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPt. 2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E13.\\u003C/strong\\u003E \\u003Cstrong\\u003EDolphins \\u2013 Christian Wilkins \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChristian Wilkins is another example of evaluating pro traits translating rather than college performance. A storied college winner who inspired on and off the field, Wilkins is a tremendous young man with a bright future. However, I think his character and intelligence inflated his stock a little too much. Against Mississippi State he was mostly a ghost, and in other games had long stretches of invisible or even just bad film, with the occasional splash play. He\\u2019s the poster child for my Reverse Planet Theory, which cautions against the allure of quick, penetrating, 3-techs. There are plays on film where his short arms leave him exposed, struggling to post against double teams and getting reached on zone runs. When he has the quickness advantage against low-skilled ACC guards, he looks great as a penetrator, and to be fair his quicks are terrific. But leverage and quicks can only take a short-armed, decently talented 3-Tech so far in the pros. I don\\u2019t think he lives up to his draft slot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for the Rosen trade, it wasn\\u2019t awful because they gave up a late 2 to take a shot on talent, but as a vocal Rosen detractor I don\\u2019t think it will help them. Without much talent on the roster, there is a legitimate chance they end up taking a top-5 QB next year and Rosen gets dealt again. There has been a weird fascination with Rosen since last offseason, but I never liked him much as a prospect and gave him a 2 last year. My reasons can be found in last year\\u2019s review. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E14.\\u003C/strong\\u003E \\u003Cstrong\\u003EFalcons \\u2013 Chris Lindstrom \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Falcons had one of the worst defenses in the NFL last year and decided to spend their first two picks on OL. While they\\u2019ll get Keanu Neal and Deion Jones back from injury, it\\u2019s still head-scratching to not address the D early. I understand building the OL BEFORE it becomes an issue, but I don\\u2019t think they made the right pick at No. 14. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter watching his film, I ranked Lindstrom 44th on my Big Board and noted that he was an athletic guard who didn\\u2019t have enough power to play in anything other than a zone-heavy scheme. He\\u2019ll be fine getting to the second level and staying in front of penetrating 3-techs, and clearly I\\u2019m missing something with him going this high. Staying true to my eval, I expect him to get pushed back routinely by bigger DL in both the run and pass game. I can see inside pressure now. He takes the initial contact at the POA too much. With the right S\\u0026amp;C regimen (he benched 25 reps, not bad), he could get stronger. They did need a guard. I want to trust the Falcons, but with Dexter Lawrence and others on the board I think they made a mistake. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI scouted McGary (3) after the draft and I liked his game on film. He did some impressive things in the run game on double-teams against Ohio State. I think he fits better in a gap scheme where he can use his size and power, which makes the Lindstrom pick more head-scratching. We all know his value will be determined mainly by how he holds up against speed rushers at RT. Short arms, limited lateral quickness, and some bad beats by pure speed on film give me pause. I like him better than Lindstrom but he projects as a plus run blocker with struggles vs speed rushers in the passing game. He has the demeanor of a starting NFL OL so I\\u2019ll go with a 3.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmz2hg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171717.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bl9iu1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmpp7m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"XARFIGHTER\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557132732.0, \"send_replies\": true, \"parent_id\": \"t3_bl9iu1\", \"score\": 1, \"author_fullname\": \"t2_9515o\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Am I missing something here? \\n\\n\\u0026#x200B;\\n\\nBy simply removing this box =\\n\\n**Advanced** remains at 1 input from {X/A} to {start}\\n\\n**Edit lineup** goes from 2 inputs {down\\u003EX/A} to no input {already there}\\n\\nAnd **Go back** goes from 3 inputs {down\\u003Edown\\u003EX/A} to 1 input {O/B}\\n\\n\\u0026#x200B;\\n\\nI can't attribute any functional value to this box besides either just unnecessarily delaying the player, or the potential psychological effect it has by prompting the player and essentially saying \\\"come at me brah?\\\" to tilted players. Maybe that's a stretch but surely there must be a point to having this menu? \\n\\n\\u0026#x200B;\\n\\nI'm simply curious as to why developers are paid to spend time on things like this that seem to detract from user experience over simple additions like comprehensive search filters or logical and straightforward menus - something that would likely save thousands of collective hours currently wasted scrolling and tapping.\", \"link_title\": \"test1234\", \"author_flair_css_class\": null, \"name\": \"t1_emmpp7m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAm I missing something here? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy simply removing this box =\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAdvanced\\u003C/strong\\u003E remains at 1 input from {X/A} to {start}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit lineup\\u003C/strong\\u003E goes from 2 inputs {down\\u0026gt;X/A} to no input {already there}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd \\u003Cstrong\\u003EGo back\\u003C/strong\\u003E goes from 3 inputs {down\\u0026gt;down\\u0026gt;X/A} to 1 input {O/B}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can\\u0026#39;t attribute any functional value to this box besides either just unnecessarily delaying the player, or the potential psychological effect it has by prompting the player and essentially saying \\u0026quot;come at me brah?\\u0026quot; to tilted players. Maybe that\\u0026#39;s a stretch but surely there must be a point to having this menu? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m simply curious as to why developers are paid to spend time on things like this that seem to detract from user experience over simple additions like comprehensive search filters or logical and straightforward menus - something that would likely save thousands of collective hours currently wasted scrolling and tapping.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bl9iu1/test1234/emmpp7m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bl9iu1/test1234/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/pzt3f8hqyjw21.png\", \"created\": 1557161532.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emjwxrc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557053695.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"# Custom Content\\n\\n## Disclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\n\\n## Names with u/ are from reddit. Names without are probably from the overwatch forum.\\n\\n## If you like a mode, go to the original post and like or comment. Let them know you appreciate it.\\n\\n## If you want to add a mode to the list, just PM me and I'll add it eventually.\\n\\n## Fun Modes\\n\\n* RGH0D - High Speed: FFA - u/rbnsky\\n* SF1R2 - High Speed Gun Game - u/rbnsky\\n* K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n* 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n* RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n* EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n* N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n* 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n* M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n* T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n* NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n* R4DWM - BloodBorne in Overwatch - u/Elodeona\\n* EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n* E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n* FHQZ4 - Bridgette Pong - u/AJ_Black\\n* KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n* 53J3R - Shooters Vs Stabbers - Lilsis\\n* FQ5N8 - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n* RY95K - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray\\n* BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n* BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n* QH5SP - PVE Horde Mode - u/Jechto\\n* 5KCP4 - Dva Eject into Random Ult - u/qbbftw \\\\- ORIGINAL IDEA FROM: u/Woolin\\n* YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n* 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n* 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n* MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n* SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n* VJCT2 - Chase the Snowmen - u/andygmb\\n* 6PC67 - Take Hero of Kills - u/CrenderMutant\\n\\n## Training Modes\\n\\n* RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n* CPFKM - Advanced Training Mode - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n\\n* QKAAM - Placeable Cameras - u/ItsDeltin\\n* ZW1PY - Scoreboard - u/Paf13\\n* 9EKZB - Scoreboard - u/caldoran2\\n* 6WXRW - Navi - u/andygmb \\\\- u/Lymbow\\n* WV5HH - Bunny Hop - u/TyzoneLyraNature\\n* QESP4 - Walls - u/Zezombye\\n* CQ00S - Elemental Aspects - u/poststakhanovist\\n\\n## Hero Ideas\\n\\n* XJZB1 - Orisa AoE Push - AlexEptit\\n* H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n* BE2J7 - Portal Gun - u/Lymbow \\\\- u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emjwxrc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECustom Content\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EDisclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ENames with u/ are from reddit. Names without are probably from the overwatch forum.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EIf you like a mode, go to the original post and like or comment. Let them know you appreciate it.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EIf you want to add a mode to the list, just PM me and I\\u0026#39;ll add it eventually.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EFQ5N8 - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERY95K - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECPFKM - Advanced Training Mode - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emjwxrc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557082495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1556967649.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emh4ksb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556965703.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## My Take on Workshop Improvements\\n\\n## Coding Improvements need to happen\\n\\n## Before adding all sorts of new methods and helpful features, it is probably best if the Workshop becomes easier to use.\\n\\n* If it is a power-user tool, give power-user style tools.\\n* If it is for the general public, have better error-handling and bug commenting.\\n* If it is for both, give all the above. Please.\\n\\n## [Easy](#s) Coding fixes:\\n\\n* Quick saving - Just not having to go to a seperate screen to save the project\\n* Backing-up files while saving - Preventing loss of data\\n* Adding else statements\\n* Displaying error logs - Such as, your code is too big, remove some rules before saving\\n\\n## Hard but [Worthwhile](#s) Coding fixes:\\n\\n* Adding the ability to upload json/xml or some sort of file into the editor and have the rules generated there - This would allow fans to create tools to generate this json/xml, meaning you won't need to make an IDE, fans will probably make their own\\n* Adding Functions\\n\\n### A New Game entirely should probably be next\\n##### This sounds crazy, but hear me out. \\n##### Imagine OverWorkshop, a seperate game that is just Overwatch Workshop with extended mechanics\\n- If a separate game, they can optimize with the engine to make it work better for custom projects without worrying about messing with qp and comp. \\n- If a separate game, they can monetize differently. They could work directly with creators, ask people to pay for access to this new game, use a monthly subscription, etc.\\n- If monetized differently, Blizzard has an incentive to help the fanbase as much as possible. Currently, Workshop will not directly make Blizzard money. Sure, people may come back to the game, but how many of those people buy loot boxes? Or how many new people will buy the game?\\n- If a separate game, they could build the game with lots of storage for custom rule-sets.\\n- If a separate game, they can add limited time access skins/emotes/maps without directly affecting their core audience who are following the normal Overwatch Loot Box monetization method. \\n- If a separate game, they can design from the ground up, instead of extending original functionality. This gives a lot more flexibility.\\n- If a separate game, they can draw in a wider market. Currently, only people who like Overwatch and like Content Creation will use Workshop. With enough of a spin, Blizzard could get way more customers with: OverWorkshop, build your own games using Overwatches mechanics as a basis.\\n- If a separate game, they can release the source code to be modded. At least, if they design it right.\\n##### What I'm saying is: If a separate game, they can create a better experience, and they can earn more money. Win-win. We get something awesome, they get money.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emh4ksb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EMy Take on Workshop Improvements\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ECoding Improvements need to happen\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EBefore adding all sorts of new methods and helpful features, it is probably best if the Workshop becomes easier to use.\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf it is a power-user tool, give power-user style tools.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf it is for the general public, have better error-handling and bug commenting.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf it is for both, give all the above. Please.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\"\\u003EEasy\\u003C/a\\u003E Coding fixes:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQuick saving - Just not having to go to a seperate screen to save the project\\u003C/li\\u003E\\n\\u003Cli\\u003EBacking-up files while saving - Preventing loss of data\\u003C/li\\u003E\\n\\u003Cli\\u003EAdding else statements\\u003C/li\\u003E\\n\\u003Cli\\u003EDisplaying error logs - Such as, your code is too big, remove some rules before saving\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHard but \\u003Ca href=\\\"#s\\\"\\u003EWorthwhile\\u003C/a\\u003E Coding fixes:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAdding the ability to upload json/xml or some sort of file into the editor and have the rules generated there - This would allow fans to create tools to generate this json/xml, meaning you won\\u0026#39;t need to make an IDE, fans will probably make their own\\u003C/li\\u003E\\n\\u003Cli\\u003EAdding Functions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EA New Game entirely should probably be next\\u003C/h3\\u003E\\n\\n\\u003Ch5\\u003EThis sounds crazy, but hear me out.\\u003C/h5\\u003E\\n\\n\\u003Ch5\\u003EImagine OverWorkshop, a seperate game that is just Overwatch Workshop with extended mechanics\\u003C/h5\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf a separate game, they can optimize with the engine to make it work better for custom projects without worrying about messing with qp and comp. \\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can monetize differently. They could work directly with creators, ask people to pay for access to this new game, use a monthly subscription, etc.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf monetized differently, Blizzard has an incentive to help the fanbase as much as possible. Currently, Workshop will not directly make Blizzard money. Sure, people may come back to the game, but how many of those people buy loot boxes? Or how many new people will buy the game?\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they could build the game with lots of storage for custom rule-sets.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can add limited time access skins/emotes/maps without directly affecting their core audience who are following the normal Overwatch Loot Box monetization method. \\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can design from the ground up, instead of extending original functionality. This gives a lot more flexibility.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can draw in a wider market. Currently, only people who like Overwatch and like Content Creation will use Workshop. With enough of a spin, Blizzard could get way more customers with: OverWorkshop, build your own games using Overwatches mechanics as a basis.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can release the source code to be modded. At least, if they design it right.\\n##### What I\\u0026#39;m saying is: If a separate game, they can create a better experience, and they can earn more money. Win-win. We get something awesome, they get money.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emh4ksb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556994503.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emh0mkm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556958465.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Future Features People Want (Compiled from Blizzard forums)\\n#### Ease of Coding\\n- [Text-based Editor/IDE/Ability to Import File](#s \\\"Anything for more coding speed\\\")\\n- Conditionals\\n- Functions\\n- Hotkey Saves/Auto Saves\\n- Hotkey Undo\\n- Events/Statuses for every [possible thing](#s \\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\")\\n- [Classes/Object Types/Enums](#s \\\"Bad class objects hurt\\\")\\n- [Multiple-Script Compilation](#s \\\"I make a piece, you make a piece, we compile the codes together\\\")\\n- Disable/Enable Rule options\\n- Custom Strings/Variable Names\\n- Debugger with Game Running\\n\\t\\n####Importation of art assets\\n- Custom Skins\\n- Custom Emotes\\n- Custom Hero Models\\n- Custom Animations\\n\\t\\n#### Bigger Creations\\n- Rule Limit Increase\\n- Effect Increase\\n- More Presets Saves\\n\\n#### Recognition of Good Modes\\n- Best-of-Workshop Arcade Mode\\n- Popularity contests between [similar game-modes](#s \\\"See which gun game people like best\\\")\\n\\t\\n#### Map Editor\\n- Ability to create gameplay zones\\n- Change Lighting\\n- Custom Maps\\n\\t\\n#### Hero Editor\\n- Being able to give [one hero's ability to another hero](#s \\\"Tracer with Piledriver\\\")\\n- More Control over [Effects](#s \\\"On-destruct, custom IDs, etc\\\")\\n- Control over [hero-specific variables](#s \\\"Number of Symmetra Turrets, headshot dmg, passives\\\")\\n- Being able to use Arcade Enemies/All Models\\n- Custom Cooldowns/Modify Cooldowns\\n- Control over animations\\n- Control over fire/POTG worthy actions\\n\\t\\t\\n#### Object Editor\\n- Deployables\\n- Weapon Qualities\\n- Collisions\\n- Objectives/Payloads\\n- Access to Old Assets/Abilities\\n- Custom Effect Durations\\n- Custom Conditions\\n- Custom Physics Engine\\n\\t\\n#### AI Editor\\n- PVE Mode Access\\n- Ease of Making Bots\\n- Bots in any Mode\\n\\t\\t\\n#### Gameplay Editor\\n- Spawn Points\\n- Switch Teams\\n- Team Size\\n\\t\\n####Hosting Games\\n- Being able to host Workshop Games locally\\n\\t\\n#### Workshop-Specific Assets\\n- Extra Animations\\n- More effects\\n- [Non-Graphics intensive testing map](#s \\\"White Room\\\")\\n- [Arena map](#s \\\"Just a square\\\")\\n\\t\\t\\n#### More Recognition of Dan and Keith\\n\\t\\n## Common Complaints\\n#### It's not a Map Editor.\\n- No, it isn't. \\n\\t\\n#### It's not a Ranked Fix.\\n- No, it isn't.\\n\\t\\t\\n#### Lier1, you made me sound stupid in the complaint section.\\n- Correct.\\n\\t\\n#### Lier1, you don't care about my complaints because I'm not a filthy casual.\\n- Correct.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emh0mkm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFuture Features People Want (Compiled from Blizzard forums)\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EEase of Coding\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Anything for more coding speed\\\"\\u003EText-based Editor/IDE/Ability to Import File\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EConditionals\\u003C/li\\u003E\\n\\u003Cli\\u003EFunctions\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Saves/Auto Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Undo\\u003C/li\\u003E\\n\\u003Cli\\u003EEvents/Statuses for every \\u003Ca href=\\\"#s\\\" title=\\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\"\\u003Epossible thing\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Bad class objects hurt\\\"\\u003EClasses/Object Types/Enums\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"I make a piece, you make a piece, we compile the codes together\\\"\\u003EMultiple-Script Compilation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDisable/Enable Rule options\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Strings/Variable Names\\u003C/li\\u003E\\n\\u003Cli\\u003EDebugger with Game Running\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EImportation of art assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECustom Skins\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Emotes\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Hero Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Animations\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EBigger Creations\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERule Limit Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EEffect Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Presets Saves\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ERecognition of Good Modes\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBest-of-Workshop Arcade Mode\\u003C/li\\u003E\\n\\u003Cli\\u003EPopularity contests between \\u003Ca href=\\\"#s\\\" title=\\\"See which gun game people like best\\\"\\u003Esimilar game-modes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMap Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAbility to create gameplay zones\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Lighting\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Maps\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHero Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to give \\u003Ca href=\\\"#s\\\" title=\\\"Tracer with Piledriver\\\"\\u003Eone hero\\u0026#39;s ability to another hero\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Control over \\u003Ca href=\\\"#s\\\" title=\\\"On-destruct, custom IDs, etc\\\"\\u003EEffects\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over \\u003Ca href=\\\"#s\\\" title=\\\"Number of Symmetra Turrets, headshot dmg, passives\\\"\\u003Ehero-specific variables\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBeing able to use Arcade Enemies/All Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Cooldowns/Modify Cooldowns\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over animations\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over fire/POTG worthy actions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EObject Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDeployables\\u003C/li\\u003E\\n\\u003Cli\\u003EWeapon Qualities\\u003C/li\\u003E\\n\\u003Cli\\u003ECollisions\\u003C/li\\u003E\\n\\u003Cli\\u003EObjectives/Payloads\\u003C/li\\u003E\\n\\u003Cli\\u003EAccess to Old Assets/Abilities\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Effect Durations\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Conditions\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Physics Engine\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EAI Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPVE Mode Access\\u003C/li\\u003E\\n\\u003Cli\\u003EEase of Making Bots\\u003C/li\\u003E\\n\\u003Cli\\u003EBots in any Mode\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EGameplay Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESpawn Points\\u003C/li\\u003E\\n\\u003Cli\\u003ESwitch Teams\\u003C/li\\u003E\\n\\u003Cli\\u003ETeam Size\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHosting Games\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to host Workshop Games locally\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWorkshop-Specific Assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EExtra Animations\\u003C/li\\u003E\\n\\u003Cli\\u003EMore effects\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"White Room\\\"\\u003ENon-Graphics intensive testing map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a square\\\"\\u003EArena map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMore Recognition of Dan and Keith\\u003C/h4\\u003E\\n\\n\\u003Ch2\\u003ECommon Complaints\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Map Editor.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Ranked Fix.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you made me sound stupid in the complaint section.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you don\\u0026#39;t care about my complaints because I\\u0026#39;m not a filthy casual.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emh0mkm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556987265.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emgwjcc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556951769.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Future Features People Want (Compiled from Blizzard forums)\\n####*Disclaimer*: This isn't everything, but it's a good high-level sampling. I think. Comment with more.\\n\\tEase of Coding\\n\\t\\t[Text-based Editor/IDE/Ability to Import File](#s \\\"Anything for more coding speed\\\")\\n\\t\\tConditionals\\n\\t\\tFunctions\\n\\t\\tHotkey Saves/Auto Saves\\n\\t\\tHotkey Undo\\n\\t\\tEvents/Statuses for every [possible thing](#s \\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\")\\n\\t\\t[Classes/Object Types/Enums](#s \\\"Bad class objects hurt\\\")\\n\\t\\t[Multiple-Script Compilation](#s \\\"I make a piece, you make a piece, we compile the codes together\\\")\\n\\t\\tDisable/Enable Rule options\\n\\t\\tCustom Strings/Variable Names\\n\\t\\tDebugger with Game Running\\n\\t\\n\\tImporting art assets\\n\\t\\tCustom Skins\\n\\t\\tCustom Emotes\\n\\t\\tCustom Hero Models\\n\\t\\tCustom Animations\\n\\t\\n\\tBigger Creations\\n\\t\\tRule Limit Increase\\n\\t\\tEffect Increase\\n\\t\\tMore Presets Saves\\n\\t\\n\\tRecognition of Good Modes\\n\\t\\tBest-of-Workshop Arcade Mode\\n\\t\\tPopularity contests between [similar game-modes](#s \\\"See which gun game people like best\\\")\\n\\t\\n\\tMap Editor\\n\\t\\tAbility to create gameplay zones\\n\\t\\tChange Lighting\\n\\t\\tCustom Maps\\n\\t\\n\\tHero Editor\\n\\t\\tBeing able to give [one hero's ability to another hero](#s \\\"Tracer with Piledriver\\\")\\n\\t\\tMore Control over [Effects](#s \\\"On-destruct, custom IDs, etc\\\")\\n\\t\\tControl over [hero-specific variables](#s \\\"Number of Symmetra Turrets, headshot dmg, passives\\\")\\n\\t\\tBeing able to use Arcade Enemies/All Models\\n\\t\\tCustom Cooldowns/Modify Cooldowns\\n\\t\\tControl over animations\\n\\t\\tControl over fire/POTG worthy actions\\n\\t\\t\\n\\tObject Editor\\n\\t\\tDeployables\\n\\t\\tWeapon Qualities\\n\\t\\tCollisions\\n\\t\\tObjectives/Payloads\\n\\t\\tAccess to Old Assets/Abilities\\n\\t\\tCustom Effect Durations\\n\\t\\tCustom Conditions\\n\\t\\tCustom Physics Engine\\n\\t\\n\\tAI Editor\\n\\t\\tPVE Mode Access\\n\\t\\tEase of Making Bots\\n\\t\\tBots in any Mode\\n\\t\\t\\n\\tGameplay Editor\\n\\t\\tSpawn Points\\n\\t\\tSwitch Teams\\n\\t\\tTeam Size\\n\\t\\n\\tHosting Games\\n\\t\\tBeing able to host Workshop Games locally\\n\\t\\n\\tWorkshop-Specific Assets\\n\\t\\tExtra Animations\\n\\t\\tMore effects\\n\\t\\t[Non-Graphics intensive testing map](#s \\\"White Room\\\")\\n\\t\\t[Arena map](#s \\\"Just a square\\\")\\n\\t\\t\\n\\tMore Recognition of Dan and Keith\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emgwjcc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFuture Features People Want (Compiled from Blizzard forums)\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003E\\u003Cem\\u003EDisclaimer\\u003C/em\\u003E: This isn\\u0026#39;t everything, but it\\u0026#39;s a good high-level sampling. I think. Comment with more.\\u003C/h4\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EEase of Coding\\n [Text-based Editor/IDE/Ability to Import File](#s \\u0026quot;Anything for more coding speed\\u0026quot;)\\n Conditionals\\n Functions\\n Hotkey Saves/Auto Saves\\n Hotkey Undo\\n Events/Statuses for every [possible thing](#s \\u0026quot;Melee kills, dva in/out of mech, on hollywood map, etc.\\u0026quot;)\\n [Classes/Object Types/Enums](#s \\u0026quot;Bad class objects hurt\\u0026quot;)\\n [Multiple-Script Compilation](#s \\u0026quot;I make a piece, you make a piece, we compile the codes together\\u0026quot;)\\n Disable/Enable Rule options\\n Custom Strings/Variable Names\\n Debugger with Game Running\\n\\nImporting art assets\\n Custom Skins\\n Custom Emotes\\n Custom Hero Models\\n Custom Animations\\n\\nBigger Creations\\n Rule Limit Increase\\n Effect Increase\\n More Presets Saves\\n\\nRecognition of Good Modes\\n Best-of-Workshop Arcade Mode\\n Popularity contests between [similar game-modes](#s \\u0026quot;See which gun game people like best\\u0026quot;)\\n\\nMap Editor\\n Ability to create gameplay zones\\n Change Lighting\\n Custom Maps\\n\\nHero Editor\\n Being able to give [one hero\\u0026#39;s ability to another hero](#s \\u0026quot;Tracer with Piledriver\\u0026quot;)\\n More Control over [Effects](#s \\u0026quot;On-destruct, custom IDs, etc\\u0026quot;)\\n Control over [hero-specific variables](#s \\u0026quot;Number of Symmetra Turrets, headshot dmg, passives\\u0026quot;)\\n Being able to use Arcade Enemies/All Models\\n Custom Cooldowns/Modify Cooldowns\\n Control over animations\\n Control over fire/POTG worthy actions\\n\\nObject Editor\\n Deployables\\n Weapon Qualities\\n Collisions\\n Objectives/Payloads\\n Access to Old Assets/Abilities\\n Custom Effect Durations\\n Custom Conditions\\n Custom Physics Engine\\n\\nAI Editor\\n PVE Mode Access\\n Ease of Making Bots\\n Bots in any Mode\\n\\nGameplay Editor\\n Spawn Points\\n Switch Teams\\n Team Size\\n\\nHosting Games\\n Being able to host Workshop Games locally\\n\\nWorkshop-Specific Assets\\n Extra Animations\\n More effects\\n [Non-Graphics intensive testing map](#s \\u0026quot;White Room\\u0026quot;)\\n [Arena map](#s \\u0026quot;Just a square\\u0026quot;)\\n\\nMore Recognition of Dan and Keith\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emgwjcc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556980569.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emgwhbf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556951688.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Common Complaints\\n#### It's not a Map Editor.\\n- No, it isn't. \\n\\t\\n#### It's not a Ranked Fix.\\n- No, it isn't.\\n\\t\\t\\n#### Lier1, you made me sound stupid in the complaint section.\\n- Correct.\\n\\t\\n#### Lier1, you don't care about my complaints because I'm not a filthy casual.\\n- Correct.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emgwhbf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003ECommon Complaints\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Map Editor.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Ranked Fix.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you made me sound stupid in the complaint section.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you don\\u0026#39;t care about my complaints because I\\u0026#39;m not a filthy casual.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emgwhbf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556980488.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1556951205.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emgv059\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556949805.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#One-Stop Workshop\\n\\n## Workshop FAQ\\n#### What is Overwatch Workshop?\\n- In layman's terms, its just [additional](#s \\\"Many, many additional\\\") features for designing custom games, using more drop-down menus.\\n\\n#### What is the One-Stop Workshop?\\n- \\tThis is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\n-\\tI call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\n\\n#### What is an FAQ?\\n-\\tFrantically Answering Questions!\\n\\n#### How to access the Workshop?\\n-\\tMake sure you have the PTR installed.\\n- \\tPlay \\u003E Game Browser \\u003E Create \\u003E Settings \\u003E Workshop\\n\\n#### What resources does Workshop give us?\\n-\\tCreation of Effects\\n-\\tConditional Changes to Rules\\n-\\tAdding HUD elements\\n-\\tAnd More\\n\\n#### Can you test heroes with workshop?\\n- \\tYesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\n- \\tHowever, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\n-\\tBut, don't fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\n\\n#### Is it a map editor?\\n- \\tNo. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\n\\n#### Do I need to know how to code to use it? Can normal people use it?\\n- \\tNo and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\n\\n#### What presets does it have for me to build off of?\\n- \\tMolten Floor - You set on fire while touching the floor.\\n- \\tOne Ultimate - Elimination mode where you start with your Ultimate, but can't get Ultimate charge.\\n- \\tHide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\n- \\tDouble Jump - Everyone can double jump.\\n- \\tFire Dome - A dome slowly shrinks, limiting the play space. (*Cough* Battle Royale *Cough*)\\n- \\tBalanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\n- \\tMirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\n- \\tZombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\n- \\tHero Gauntlet - Gun Game\\n\\n#### Is it on Console?\\n-\\tNot yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\n-\\tConsole access is part of why there are drop-down menus as the scripting language.\\n\\n#### Who built this?\\n-\\tKeith and Dan, our two buddy devs, in their free time. They have now been labeled [Hero 31 and Hero 32](#s \\\"Dan is 31, fight me\\\") by the reddit community.\\n\\n#### Is this going to get updates?\\n- It has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\n\\n#### Is there a limit to sizes of script/number of objects.\\n- Yes. 64 icons/effects, and some limit to the size of the script. \\n- However, the devs are working to increase these numbers.\\n\\t\\n#Useful Links\\n## Code Storage Sites\\nhttps://dutchdemons.com - u/Marinosbitter\\n\\nhttps://overwatchcustom.games - u/Thriver\\n\\nhttps://overwatchmodding.com/ - u/xSailboats\\n\\t\\n## Discord Channels\\n[OW Scripting](https://discord.gg/9pc4yyE)\\n\\n[Overwatch Workshop](https://discord.gg/qa9vR94)\\n\\n[Elo Hell Workshops](https://discord.gg/U5ARg2Fs)\\n\\n## Youtube Channels\\n#### Mode Creation Help:\\n[SamstaTV](https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g)\\n\\n## Miscellaneous Sites/Posts\\n[List of Flat Areas with few Obstacles](https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/) - u/Zezombye\\n\\n[Workshop Syntax \\u0026 Script Database](https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92) - WyomingMyst\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emgv059\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EOne-Stop Workshop\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EWorkshop FAQ\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EWhat is Overwatch Workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E In layman\\u0026#39;s terms, its just \\u003Ca href=\\\"#s\\\" title=\\\"Many, many additional\\\"\\u003Eadditional\\u003C/a\\u003E features for designing custom games, using more drop-down menus.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat is the One-Stop Workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E This is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\u003C/li\\u003E\\n\\u003Cli\\u003E I call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat is an FAQ?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Frantically Answering Questions!\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHow to access the Workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Make sure you have the PTR installed.\\u003C/li\\u003E\\n\\u003Cli\\u003E Play \\u0026gt; Game Browser \\u0026gt; Create \\u0026gt; Settings \\u0026gt; Workshop\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat resources does Workshop give us?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Creation of Effects\\u003C/li\\u003E\\n\\u003Cli\\u003E Conditional Changes to Rules\\u003C/li\\u003E\\n\\u003Cli\\u003E Adding HUD elements\\u003C/li\\u003E\\n\\u003Cli\\u003E And More\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ECan you test heroes with workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Yesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\u003C/li\\u003E\\n\\u003Cli\\u003E However, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\u003C/li\\u003E\\n\\u003Cli\\u003E But, don\\u0026#39;t fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs it a map editor?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EDo I need to know how to code to use it? Can normal people use it?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat presets does it have for me to build off of?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Molten Floor - You set on fire while touching the floor.\\u003C/li\\u003E\\n\\u003Cli\\u003E One Ultimate - Elimination mode where you start with your Ultimate, but can\\u0026#39;t get Ultimate charge.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\u003C/li\\u003E\\n\\u003Cli\\u003E Double Jump - Everyone can double jump.\\u003C/li\\u003E\\n\\u003Cli\\u003E Fire Dome - A dome slowly shrinks, limiting the play space. (\\u003Cem\\u003ECough\\u003C/em\\u003E Battle Royale \\u003Cem\\u003ECough\\u003C/em\\u003E)\\u003C/li\\u003E\\n\\u003Cli\\u003E Balanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\u003C/li\\u003E\\n\\u003Cli\\u003E Mirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\u003C/li\\u003E\\n\\u003Cli\\u003E Zombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hero Gauntlet - Gun Game\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs it on Console?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Not yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\u003C/li\\u003E\\n\\u003Cli\\u003E Console access is part of why there are drop-down menus as the scripting language.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWho built this?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Keith and Dan, our two buddy devs, in their free time. They have now been labeled \\u003Ca href=\\\"#s\\\" title=\\\"Dan is 31, fight me\\\"\\u003EHero 31 and Hero 32\\u003C/a\\u003E by the reddit community.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs this going to get updates?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs there a limit to sizes of script/number of objects.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYes. 64 icons/effects, and some limit to the size of the script. \\u003C/li\\u003E\\n\\u003Cli\\u003EHowever, the devs are working to increase these numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EUseful Links\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003ECode Storage Sites\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://dutchdemons.com\\\"\\u003Ehttps://dutchdemons.com\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Marinosbitter\\\"\\u003Eu/Marinosbitter\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchcustom.games\\\"\\u003Ehttps://overwatchcustom.games\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Thriver\\\"\\u003Eu/Thriver\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchmodding.com/\\\"\\u003Ehttps://overwatchmodding.com/\\u003C/a\\u003E - \\u003Ca href=\\\"/u/xSailboats\\\"\\u003Eu/xSailboats\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EDiscord Channels\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/9pc4yyE\\\"\\u003EOW Scripting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/qa9vR94\\\"\\u003EOverwatch Workshop\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/U5ARg2Fs\\\"\\u003EElo Hell Workshops\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EYoutube Channels\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EMode Creation Help:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g\\\"\\u003ESamstaTV\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EMiscellaneous Sites/Posts\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/\\\"\\u003EList of Flat Areas with few Obstacles\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92\\\"\\u003EWorkshop Syntax \\u0026amp; Script Database\\u003C/a\\u003E - WyomingMyst\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emgv059/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556978605.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkb0kl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emg7uhl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MineSweeper2048\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556927588.0, \"send_replies\": true, \"parent_id\": \"t3_bkb0kl\", \"score\": 1, \"author_fullname\": \"t2_1a5b92pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"It's a really cool game, see if you can add in different attacks or improve the punch\", \"link_title\": \"My first attempt at making a game in Godot! feedback appreciated and link to the game below.\", \"author_flair_css_class\": null, \"name\": \"t1_emg7uhl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s a really cool game, see if you can add in different attacks or improve the punch\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/emg7uhl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/\", \"report_reasons\": null, \"link_author\": \"raikkhan\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/6wliprr531w21\", \"created\": 1556956388.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkdn1j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emfvztp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Interlake_Olympia\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1556918417.0, \"send_replies\": true, \"parent_id\": \"t3_bkdn1j\", \"score\": 1, \"author_fullname\": \"t2_9gwmh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"# Spurs 2019-2020 Salaries\\n\\n|*Player*|*Position*|*Salary*|*Age*|\\n|:-|:-|:-|:-|\\n|DeMar DeRozan|G|$27,739,975|30|\\n|LaMarcus Aldridge|F|$26,000,000|34|\\n|Patty Mills|G|$12,428,571|31|\\n|Davis Bertans|F|$7,000,000|26|\\n|Marco Belinelli|G|$5,846,154|33|\\n|Jakob Poeltl|C|$3,754,886|23|\\n|Bryn Forbes|G|$2,875,000|26|\\n|Lonnie Walker IV|G|$2,760,480|20|\\n|Dejounte Murray|G|$2,321,735|23|\\n|Derrick White|G|$1,948,080|25|\\n|Chimezie Metu|F|$1,416,852|22|\\n|**TOTAL:**||**$94,091,733**||\\n\\n# Dead Cap\\n\\n|*Player*|*Salary*|\\n|:-|:-|\\n|Pau Gasol|$5,075,000|\\n|**TOTAL:**|**$5,075,000**|\\n\\n# Cap Holds\\n\\n|*Player*|*Age*|*Amount*|*Rights*|\\n|:-|:-|:-|:-|\\n|Rudy Gay|33|$13,113,360|Early Bird (max raise of 175% over 2019 salary)|\\n|Dante Cunningham|32|$2,984,400|Non Bird (max raise of 120% over 2019 salary)|\\n|Quincy Pondexter|31|$1,618,486|Non Bird (max raise of 120% over 2019 salary)|\\n|Donatas Motiejunas|29|$1,618,486|Non Bird (max raise of 120% over 2019 salary)|\\n|\\\\*19th Overall Pick, 2019 Draft|$2,238,700|Rookie Deal||\\n|\\\\*29th Overall Pick, 2019 Draft|$1,623,300|Rookie Deal||\\n|**TOTAL:**||**$23,196,732**||\\n\\n# 2019 First Round Picks\\n\\n|*Pick*|*100% Rookie Scale Amount*|\\n|:-|:-|\\n|19th Overall Pick|$2,238,700|\\n|29th Overall Pick|$1,623,300|\\n|**TOTAL:**|**$3,862,000**|\\n\\n# Totals\\n\\n|Description|Amount|\\n|:-|:-|\\n|NBA Luxury Tax Threshold|$132,000,000|\\n|NBA Salary Cap|$109,000,000|\\n|Spurs Total Taxable Salaries (Team Salary+Dead Cap)|$99,166,733|\\n|Spurs Total Cap Allocations (Team Salary+Dead Cap+Cap Holds)|$122,363,465|\\n|Spurs Actual Cap Space|\\\\-$14,220,608|\\n|Spurs Max Possible Cap Space (No Draft Picks, Renounce Cap Holds)|$8,976,124|\\n|**Spurs Likely Cap Space (Including Draft Picks, Renounce Cap Holds)**|**$5,971,267**|\", \"link_title\": \"Spurs 2019-20 Salary Cap Outlook\", \"author_flair_css_class\": null, \"name\": \"t1_emfvztp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ESpurs 2019-2020 Salaries\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPlayer\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPosition\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003ESalary\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EAge\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDeMar DeRozan\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$27,739,975\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ELaMarcus Aldridge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$26,000,000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E34\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPatty Mills\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$12,428,571\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E31\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDavis Bertans\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$7,000,000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMarco Belinelli\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$5,846,154\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E33\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJakob Poeltl\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$3,754,886\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBryn Forbes\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,875,000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ELonnie Walker IV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,760,480\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDejounte Murray\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,321,735\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDerrick White\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,948,080\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EChimezie Metu\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,416,852\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E22\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$94,091,733\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EDead Cap\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPlayer\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003ESalary\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPau Gasol\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$5,075,000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$5,075,000\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ECap Holds\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPlayer\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EAge\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EAmount\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003ERights\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERudy Gay\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$13,113,360\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEarly Bird (max raise of 175% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDante Cunningham\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,984,400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon Bird (max raise of 120% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EQuincy Pondexter\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,618,486\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon Bird (max raise of 120% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDonatas Motiejunas\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,618,486\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon Bird (max raise of 120% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E*19th Overall Pick, 2019 Draft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,238,700\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERookie Deal\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E*29th Overall Pick, 2019 Draft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,623,300\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERookie Deal\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$23,196,732\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003E2019 First Round Picks\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPick\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003E100% Rookie Scale Amount\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19th Overall Pick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,238,700\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E29th Overall Pick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,623,300\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$3,862,000\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ETotals\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAmount\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENBA Luxury Tax Threshold\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$132,000,000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENBA Salary Cap\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$109,000,000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Total Taxable Salaries (Team Salary+Dead Cap)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$99,166,733\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Total Cap Allocations (Team Salary+Dead Cap+Cap Holds)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$122,363,465\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Actual Cap Space\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-$14,220,608\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Max Possible Cap Space (No Draft Picks, Renounce Cap Holds)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$8,976,124\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ESpurs Likely Cap Space (Including Draft Picks, Renounce Cap Holds)\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$5,971,267\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkdn1j/spurs_201920_salary_cap_outlook/emfvztp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkdn1j/spurs_201920_salary_cap_outlook/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bkdn1j/spurs_201920_salary_cap_outlook/\", \"created\": 1556947217.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkb0kl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emfbqr2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"raikkhan\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556904863.0, \"send_replies\": true, \"parent_id\": \"t3_bkb0kl\", \"score\": 2, \"author_fullname\": \"t2_11ekhc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"ghvhgv\", \"link_title\": \"My first attempt at making a game in Godot! feedback appreciated and link to the game below.\", \"author_flair_css_class\": null, \"name\": \"t1_emfbqr2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eghvhgv\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/emfbqr2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/\", \"report_reasons\": null, \"link_author\": \"raikkhan\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/6wliprr531w21\", \"created\": 1556933663.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1556951066.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emcwx0i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556836326.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**[TLDR:](#s \\\"Too Logical, Died Reading\\\")** I think that the Overwatch Workshop Community should get organized, and have some [ideas on doing so.](#s \\\"Not good ideas, mind you\\\")\\n\\n\\n\\n**Brief disclaimer:**\\n\\n\\n\\n- I by no means think these are the best ideas, I'm just trying to get a discussion started.\\n\\n\\n\\n- Please comment with better ideas, or parts I'm wrong about, or just because you feel like it.\\n\\n- A lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\n\\n- Also, liberal hover tags abound, and [none](#s \\\"some are funny, however\\\") are useful. The only things you can click on are specifically called out as links.\\n\\n\\n\\n---\\n\\n\\n\\n####First, an explanation on why organization helps players, creators, and devs alike.\\n\\n\\n\\n- [Casual Players](#s \\\"Filthy Casuals\\\"): An organized community will make it easier to find good, fun, game modes.\\n\\n\\n\\n- [Ranked Players](#s \\\"Sports Nuts\\\"): With a few changes, I personally think that Workshop can allow for [more frequent patch testing.](#s \\\"More on that later.\\\") An organized community could help the workshop get to that state sooner.\\n\\n\\n\\n- [Creators](#s \\\"Over-Dedicated Fans\\\"): An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\n\\n\\n\\n- [Devs](#s \\\"All-Mighty Deities\\\"): An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\n\\n\\n\\n---\\n\\n# Table of Contents\\n\\n##[Reddit Organization](#s \\\"How to do better than this post\\\")\\n\\n- #### Posts\\n\\n- #### Comments\\n\\n- #### Mode Specific Tips\\n\\n\\n\\n##[One-Stop Assistance](#s \\\"More like None-Start\\\")\\n\\n- #### [Workshop FAQ](#s \\\"What is an FAQ?\\\")\\n\\n- #### [Fun Modes](#s \\\"For Casuals\\\")\\n\\n- #### [Good Mechanics](#s \\\"For Creators\\\")\\n\\n- #### [Hero Ideas](#s \\\"For Devs?\\\")\\n\\n- #### [Useful Links](#s \\\"May be copywrite infringing\\\")\\n - ###### Discord Channels\\n - ###### Youtube Channels\\n - ###### Dev Updates\\n - ###### Storage Sites\\n\\n- ### [Ideas for Workshop Improvement](#s \\\"Nonexistent\\\")\\n\\n\\n\\n---\\n\\n#Reddit Post Organization\\n\\n\\n\\n####If posts are organized in a readable manner, it will help people to:\\n\\n- [Locate modes they like](#s \\\"Or hate\\\")\\n\\n- [Easily lend assistance](#s \\\"Hardly\\\")\\n\\n- [Not have to deal with ugly things](#s \\\"Except walking Zenyattas and wall-climbing Torbs\\\")\\n\\n\\n\\n\\n\\n##Post Example Layout\\n\\n\\n\\n- [Descriptive Title](#s \\\"Flaired Appropriately\\\")\\n\\n- Post Body\\n - Picture/Video [(Optional)](#s \\\"Follow this subs rules\\\")\\n - Code\\n - [Brief Summary](#s \\\"Or why your code is the awesomest ever\\\")\\n - Detailed Description (Optional)\\n - [Future Improvements](#s \\\"Unnecessary as your creation is perfect\\\") (Optional)\\n - [Credits](#s \\\"Those whose stuff you stole\\\")\\n\\n\\n\\n\\n##General Posting Tips\\n\\n\\n\\n- Title\\tTips\\n\\n - Do use this phrasing: _[MyThing](#s \\\"What you made\\\") from [OtherMedia](#s \\\"What you stole the idea from\\\")_\\n\\n\\n\\n - Do be very specific. _Alphabetic Gun Game_ is better than simply _Gun Game_.\\n\\n - Good Example: _Alphabetic Gun Game from [CS:S:HTMLGO](#s \\\"CS Major\\\")_\\n\\n- Post Body Tips\\n\\n - Do use a visual if possible. [Video \\u003E Picture \\u003E Text](#s \\\"\\u003E Lier1\\\")\\n\\n - Do use formatting, titles, or at the very least, [paragraph breaks](#s \\\"Hit enter twice, not once\\\")\\n\\n - Do keep updated modes organized, either with new posts commented in the original post, or with update codes added with [edits](#s \\\"v3.1 Never mind\\\")\\n\\n - Do put things you are unsure how to do under [Future Improvements](#s \\\"As you will somehow be smarter in the future\\\")\\n\\n - Do [credit](#s \\\"I'll talk about using others work later\\\") other users in your post. It's only polite\\n\\n - Do your [research.](#s \\\"See that other people have posted working code before\\\") It will save you time and effort\\n\\n - Don't go into the [nitty gritty.](#s \\\"I used this rule with this condition\\\") Explain how it works in game, not in code\\n\\n\\n\\n---\\n\\n\\n\\n#Reddit Comment Organization\\n\\n#### If comments are organized in a helpful manner, it will help people to:\\n\\n- Get useful feedback\\n\\n- Raise their self-esteem\\n\\n\\n\\n\\n\\n\\n\\n##Comment Example Layout\\n\\n- [Notice the Good](#s \\\"It does exists, its just hiding\\\")\\n\\n- Harsh reality (Optional)\\n\\n- [Useful feedback](#s \\\"Unnecessary\\\")\\n\\n\\n\\n\\n\\n##General Tips\\n\\n\\n\\n- Do always be positive. There is [no need nor reason for negativity.](#s \\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\")\\n\\n- Do mention similar ideas. Link to them so the poster can get some ideas.\\n\\n- Do give actual information/feedback.\\n\\n- Do keep comments to the post at hand.\\n\\n- Don't simply comment [\\\"Great job\\\"](#s \\\"Great Job, finding this hover text\\\"). That's what liking is usually for.\\n\\n- Don't assume that the [posters vision matches yours.](#s \\\"My vision isn't 20-20, you see\\\")\\n\\n- Good Example: \\\"Me and a few friends played this mode, because we love it from Halloo 4. It's a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There's some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\\"\\n\\n---\\n\\n# Reddit Mode Specific\\n\\n\\n##Game Mode Post\\n\\n- Do label the specific [play mode](#s \\\"FFA, 5CP, Domination\\\") used in the code if it is unclear\\n\\n\\n\\n---\\n\\n\\n\\n##Game Mode Comment\\n\\n- Do play and share your experiences\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Post\\n\\n\\n\\n####Hero Description Example Layout\\n\\n- Health\\n\\n- Passives\\n\\n- Triggered Abilities\\n\\n - Stats\\n\\n - Other Features\\n\\n\\n\\n- ###Brief Summary Tips\\n\\n - Do mention what [role](#s \\\"Flanker, Tank, Monkey, etc.\\\") your hero should fill\\n\\n - Don't talk about how your hero will [destroy the meta](#s \\\"It won't\\\")\\n\\n\\n\\n- ### Triggered Ability Tips\\n\\n - Do use numbers to describe hero [DPS](#s \\\"Deaths per Second\\\") and [HPS](#s \\\"i need Healing per Second\\\") if you want balance advice\\n\\n - Do keep any numbers used checked against [actual heroes](#s \\\"No supports firing 20 rounds of 15 dmg a second\\\")\\n\\n - Do check sources such as this _linked_ [Overwatch GamePedia](https://overwatch.gamepedia.com/Overwatch_Wiki) page for how to describe abilities\\n\\n\\n\\n- ### General Tips\\n\\n - Do follow precedent for most parts of your character. They don't need a new leveling system, 50 HP, and a different [control scheme](#s \\\"Command Line\\\")\\n\\n - Do make heroes both fun to play and [fun to play against](#s \\\"mostly the second\\\")\\n\\n - Don't make a character with [lots of exceptions](#s \\\"Blocks all CC except Doomfist Punch\\\")\\n\\n - Don't step on too many [toes](#s \\\"*Cough* Pre-nerf Bridgette *Cough*\\\")\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Comment\\n\\n- Do keep balance comparisons within Overwatch. Comparing to Bastion is [OK](#s \\\"If dangerous\\\"). Comparing to Demo is less [helpful](#s \\\"Unless they are making TF2 accurate Demo\\\")\\n\\n- Do think of the character as a [whole](#s \\\"They can't attack while their shield is up? Useless\\\")\\n\\n- Do be kind. Not all posters are secretly [Blizzard Devs testing new heroes](#s \\\"But some are, right?\\\")\\n\\n- Don't talk balance unless the poster [wants to.](#s \\\"The hero will be horribly underpowered their first time. Let that go.\\\") They may just be creating for fun\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Post\\n\\n- Do try to keep the code as [simple and self-contained](#s \\\"Minimize Dependencies\\\") as possible\\n\\n- Do mention what variables you use\\n\\n- Do explain how you accomplished your [goal](#s \\\"Magic is an acceptable response\\\")\\n\\n- Do explain [bugs and edge cases](#s \\\"Or treat them as just part of the experience\\\")\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Comment\\n\\n- Do mention what cool game-modes you can imagine using with it\\n\\n- Do mention alternate ideas for how to implement it\\n\\n- Do post links to other [implementations](#s \\\"With permission\\\")\\n\\n- Do be amazed at what they managed to do\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emcwx0i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Too Logical, Died Reading\\\"\\u003ETLDR:\\u003C/a\\u003E\\u003C/strong\\u003E I think that the Overwatch Workshop Community should get organized, and have some \\u003Ca href=\\\"#s\\\" title=\\\"Not good ideas, mind you\\\"\\u003Eideas on doing so.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBrief disclaimer:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI by no means think these are the best ideas, I\\u0026#39;m just trying to get a discussion started.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPlease comment with better ideas, or parts I\\u0026#39;m wrong about, or just because you feel like it.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EA lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EAlso, liberal hover tags abound, and \\u003Ca href=\\\"#s\\\" title=\\\"some are funny, however\\\"\\u003Enone\\u003C/a\\u003E are useful. The only things you can click on are specifically called out as links.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EFirst, an explanation on why organization helps players, creators, and devs alike.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Filthy Casuals\\\"\\u003ECasual Players\\u003C/a\\u003E: An organized community will make it easier to find good, fun, game modes.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Sports Nuts\\\"\\u003ERanked Players\\u003C/a\\u003E: With a few changes, I personally think that Workshop can allow for \\u003Ca href=\\\"#s\\\" title=\\\"More on that later.\\\"\\u003Emore frequent patch testing.\\u003C/a\\u003E An organized community could help the workshop get to that state sooner.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Over-Dedicated Fans\\\"\\u003ECreators\\u003C/a\\u003E: An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"All-Mighty Deities\\\"\\u003EDevs\\u003C/a\\u003E: An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ETable of Contents\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"How to do better than this post\\\"\\u003EReddit Organization\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EPosts\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EComments\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EMode Specific Tips\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"More like None-Start\\\"\\u003EOne-Stop Assistance\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What is an FAQ?\\\"\\u003EWorkshop FAQ\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"For Casuals\\\"\\u003EFun Modes\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"For Creators\\\"\\u003EGood Mechanics\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"For Devs?\\\"\\u003EHero Ideas\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"May be copywrite infringing\\\"\\u003EUseful Links\\u003C/a\\u003E\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E###### Discord Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Youtube Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Dev Updates\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Storage Sites\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Nonexistent\\\"\\u003EIdeas for Workshop Improvement\\u003C/a\\u003E\\u003C/h3\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Post Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf posts are organized in a readable manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or hate\\\"\\u003ELocate modes they like\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Hardly\\\"\\u003EEasily lend assistance\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Except walking Zenyattas and wall-climbing Torbs\\\"\\u003ENot have to deal with ugly things\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EPost Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Flaired Appropriately\\\"\\u003EDescriptive Title\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPicture/Video \\u003Ca href=\\\"#s\\\" title=\\\"Follow this subs rules\\\"\\u003E(Optional)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECode\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or why your code is the awesomest ever\\\"\\u003EBrief Summary\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDetailed Description (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary as your creation is perfect\\\"\\u003EFuture Improvements\\u003C/a\\u003E (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Those whose stuff you stole\\\"\\u003ECredits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Posting Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETitle Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use this phrasing: \\u003Cem\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What you made\\\"\\u003EMyThing\\u003C/a\\u003E from \\u003Ca href=\\\"#s\\\" title=\\\"What you stole the idea from\\\"\\u003EOtherMedia\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo be very specific. \\u003Cem\\u003EAlphabetic Gun Game\\u003C/em\\u003E is better than simply \\u003Cem\\u003EGun Game\\u003C/em\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003EGood Example: \\u003Cem\\u003EAlphabetic Gun Game from \\u003Ca href=\\\"#s\\\" title=\\\"CS Major\\\"\\u003ECS:S:HTMLGO\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use a visual if possible. \\u003Ca href=\\\"#s\\\" title=\\\"\\u0026gt; Lier1\\\"\\u003EVideo \\u0026gt; Picture \\u0026gt; Text\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo use formatting, titles, or at the very least, \\u003Ca href=\\\"#s\\\" title=\\\"Hit enter twice, not once\\\"\\u003Eparagraph breaks\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep updated modes organized, either with new posts commented in the original post, or with update codes added with \\u003Ca href=\\\"#s\\\" title=\\\"v3.1 Never mind\\\"\\u003Eedits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo put things you are unsure how to do under \\u003Ca href=\\\"#s\\\" title=\\\"As you will somehow be smarter in the future\\\"\\u003EFuture Improvements\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo \\u003Ca href=\\\"#s\\\" title=\\\"I\\u0026#39;ll talk about using others work later\\\"\\u003Ecredit\\u003C/a\\u003E other users in your post. It\\u0026#39;s only polite\\u003C/li\\u003E\\n\\u003Cli\\u003EDo your \\u003Ca href=\\\"#s\\\" title=\\\"See that other people have posted working code before\\\"\\u003Eresearch.\\u003C/a\\u003E It will save you time and effort\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t go into the \\u003Ca href=\\\"#s\\\" title=\\\"I used this rule with this condition\\\"\\u003Enitty gritty.\\u003C/a\\u003E Explain how it works in game, not in code\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Comment Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf comments are organized in a helpful manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGet useful feedback\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERaise their self-esteem\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EComment Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"It does exists, its just hiding\\\"\\u003ENotice the Good\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHarsh reality (Optional)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary\\\"\\u003EUseful feedback\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo always be positive. There is \\u003Ca href=\\\"#s\\\" title=\\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\"\\u003Eno need nor reason for negativity.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention similar ideas. Link to them so the poster can get some ideas.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo give actual information/feedback.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep comments to the post at hand.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t simply comment \\u003Ca href=\\\"#s\\\" title=\\\"Great Job, finding this hover text\\\"\\u003E\\u0026quot;Great job\\u0026quot;\\u003C/a\\u003E. That\\u0026#39;s what liking is usually for.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t assume that the \\u003Ca href=\\\"#s\\\" title=\\\"My vision isn\\u0026#39;t 20-20, you see\\\"\\u003Eposters vision matches yours.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGood Example: \\u0026quot;Me and a few friends played this mode, because we love it from Halloo 4. It\\u0026#39;s a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There\\u0026#39;s some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\u0026quot;\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Mode Specific\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo label the specific \\u003Ca href=\\\"#s\\\" title=\\\"FFA, 5CP, Domination\\\"\\u003Eplay mode\\u003C/a\\u003E used in the code if it is unclear\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo play and share your experiences\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Post\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EHero Description Example Layout\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHealth\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPassives\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETriggered Abilities\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EStats\\u003C/li\\u003E\\n\\u003Cli\\u003EOther Features\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EBrief Summary Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo mention what \\u003Ca href=\\\"#s\\\" title=\\\"Flanker, Tank, Monkey, etc.\\\"\\u003Erole\\u003C/a\\u003E your hero should fill\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t talk about how your hero will \\u003Ca href=\\\"#s\\\" title=\\\"It won\\u0026#39;t\\\"\\u003Edestroy the meta\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003ETriggered Ability Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use numbers to describe hero \\u003Ca href=\\\"#s\\\" title=\\\"Deaths per Second\\\"\\u003EDPS\\u003C/a\\u003E and \\u003Ca href=\\\"#s\\\" title=\\\"i need Healing per Second\\\"\\u003EHPS\\u003C/a\\u003E if you want balance advice\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep any numbers used checked against \\u003Ca href=\\\"#s\\\" title=\\\"No supports firing 20 rounds of 15 dmg a second\\\"\\u003Eactual heroes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo check sources such as this \\u003Cem\\u003Elinked\\u003C/em\\u003E \\u003Ca href=\\\"https://overwatch.gamepedia.com/Overwatch_Wiki\\\"\\u003EOverwatch GamePedia\\u003C/a\\u003E page for how to describe abilities\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EGeneral Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo follow precedent for most parts of your character. They don\\u0026#39;t need a new leveling system, 50 HP, and a different \\u003Ca href=\\\"#s\\\" title=\\\"Command Line\\\"\\u003Econtrol scheme\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo make heroes both fun to play and \\u003Ca href=\\\"#s\\\" title=\\\"mostly the second\\\"\\u003Efun to play against\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t make a character with \\u003Ca href=\\\"#s\\\" title=\\\"Blocks all CC except Doomfist Punch\\\"\\u003Elots of exceptions\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t step on too many \\u003Ca href=\\\"#s\\\" title=\\\"*Cough* Pre-nerf Bridgette *Cough*\\\"\\u003Etoes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep balance comparisons within Overwatch. Comparing to Bastion is \\u003Ca href=\\\"#s\\\" title=\\\"If dangerous\\\"\\u003EOK\\u003C/a\\u003E. Comparing to Demo is less \\u003Ca href=\\\"#s\\\" title=\\\"Unless they are making TF2 accurate Demo\\\"\\u003Ehelpful\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo think of the character as a \\u003Ca href=\\\"#s\\\" title=\\\"They can\\u0026#39;t attack while their shield is up? Useless\\\"\\u003Ewhole\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be kind. Not all posters are secretly \\u003Ca href=\\\"#s\\\" title=\\\"But some are, right?\\\"\\u003EBlizzard Devs testing new heroes\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t talk balance unless the poster \\u003Ca href=\\\"#s\\\" title=\\\"The hero will be horribly underpowered their first time. Let that go.\\\"\\u003Ewants to.\\u003C/a\\u003E They may just be creating for fun\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo try to keep the code as \\u003Ca href=\\\"#s\\\" title=\\\"Minimize Dependencies\\\"\\u003Esimple and self-contained\\u003C/a\\u003E as possible\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what variables you use\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain how you accomplished your \\u003Ca href=\\\"#s\\\" title=\\\"Magic is an acceptable response\\\"\\u003Egoal\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain \\u003Ca href=\\\"#s\\\" title=\\\"Or treat them as just part of the experience\\\"\\u003Ebugs and edge cases\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what cool game-modes you can imagine using with it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention alternate ideas for how to implement it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo post links to other \\u003Ca href=\\\"#s\\\" title=\\\"With permission\\\"\\u003Eimplementations\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be amazed at what they managed to do\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emcwx0i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556865126.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bix03h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"em3phyw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"userleansbot\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556584797.0, \"send_replies\": true, \"parent_id\": \"t1_em3ph6v\", \"score\": 1, \"author_fullname\": \"t2_3a4fedhv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Author: /u/userleansbot\\n___\\nAnalysis of /u/roddypiper534's activity in political subreddits over the past 1000 comments and submissions.\\n\\nAccount Created: 3 years, 1 months, 0 days ago\\n\\nSummary: **This user does not have enough activity in political subs for analysis or has no clear leanings, they might be one of those weirdo moderate types. I don't trust them.**\\n\\n Subreddit|Lean|No. of comments|Total comment karma|No. of posts|Total post karma\\n :--|:--|:--|:--|:--|:--|:--|:--\\n[/r/politics](https://redditsearch.io/?term=\\u0026dataviz=true\\u0026aggs=true\\u0026subreddits=politics\\u0026searchtype=posts,comments,aggs,stats,dataviz\\u0026search=true\\u0026start=0\\u0026size=1000\\u0026authors=roddypiper534)|left|2|74|0|0\\n\\n***\\n ^(Bleep, bloop, I'm a bot trying to help inform political discussions on Reddit.) ^| [^About](https://www.reddit.com/user/userleansbot/comments/au1pva/faq_about_userleansbot/)\\n ___\", \"link_title\": \"Dog face\", \"author_flair_css_class\": null, \"name\": \"t1_em3phyw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAuthor: \\u003Ca href=\\\"/u/userleansbot\\\"\\u003E/u/userleansbot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EAnalysis of \\u003Ca href=\\\"/u/roddypiper534\\\"\\u003E/u/roddypiper534\\u003C/a\\u003E\\u0026#39;s activity in political subreddits over the past 1000 comments and submissions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAccount Created: 3 years, 1 months, 0 days ago\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESummary: \\u003Cstrong\\u003EThis user does not have enough activity in political subs for analysis or has no clear leanings, they might be one of those weirdo moderate types. I don\\u0026#39;t trust them.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ESubreddit\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ELean\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ENo. of comments\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETotal comment karma\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ENo. of posts\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETotal post karma\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://redditsearch.io/?term=\\u0026amp;dataviz=true\\u0026amp;aggs=true\\u0026amp;subreddits=politics\\u0026amp;searchtype=posts,comments,aggs,stats,dataviz\\u0026amp;search=true\\u0026amp;start=0\\u0026amp;size=1000\\u0026amp;authors=roddypiper534\\\"\\u003E/r/politics\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eleft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EBleep, bloop, I\\u0026#39;m a bot trying to help inform political discussions on Reddit.\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Ca href=\\\"https://www.reddit.com/user/userleansbot/comments/au1pva/faq_about_userleansbot/\\\"\\u003E\\u003Csup\\u003EAbout\\u003C/sup\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bix03h/dog_face/em3phyw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bix03h/dog_face/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=Mgv88ZLi6LY\", \"created\": 1556613597.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bix03h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"em3ph6v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"roddypiper534\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556584782.0, \"send_replies\": true, \"parent_id\": \"t3_bix03h\", \"score\": 1, \"author_fullname\": \"t2_wqliu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"/u/userleansbot\", \"link_title\": \"Dog face\", \"author_flair_css_class\": null, \"name\": \"t1_em3ph6v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/userleansbot\\\"\\u003E/u/userleansbot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bix03h/dog_face/em3ph6v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bix03h/dog_face/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=Mgv88ZLi6LY\", \"created\": 1556613582.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bhoqrx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elugkmp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LitteulCevenn\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1556298399.0, \"send_replies\": true, \"parent_id\": \"t3_bhoqrx\", \"score\": 1, \"author_fullname\": \"t2_17k23q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E!Oh it works!\\u003C\", \"link_title\": \"Spoiler test mobile\", \"author_flair_css_class\": null, \"name\": \"t1_elugkmp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003EOh it works\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bhoqrx/spoiler_test_mobile/elugkmp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bhoqrx/spoiler_test_mobile/\", \"report_reasons\": null, \"link_author\": \"LitteulCevenn\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bhoqrx/spoiler_test_mobile/\", \"created\": 1556327199.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eltdv4s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mcsquizzy\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556264587.0, \"send_replies\": true, \"parent_id\": \"t1_elrja1i\", \"score\": 1, \"author_fullname\": \"t2_8xjhh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"lmao\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_eltdv4s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Elmao\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": \"moderator\", \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/eltdv4s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556293387.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrk49b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Devstackr\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556216258.0, \"send_replies\": true, \"parent_id\": \"t1_elrja1i\", \"score\": 2, \"author_fullname\": \"t2_2m0kgx4w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"haha :D\\n\\nI posted it here to see what the image would look like before posting on /r/Frontend :P\\n\\nthanks again for the feedback :D\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrk49b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehaha :D\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI posted it here to see what the image would look like before posting on \\u003Ca href=\\\"/r/Frontend\\\"\\u003E/r/Frontend\\u003C/a\\u003E :P\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethanks again for the feedback :D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrk49b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556245058.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrk0nk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Devstackr\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556216195.0, \"send_replies\": true, \"parent_id\": \"t1_elrj823\", \"score\": 2, \"author_fullname\": \"t2_2m0kgx4w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"thanks for the feedback, I really appreciate it! :D\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrk0nk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks for the feedback, I really appreciate it! :D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrk0nk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556244995.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrja1i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MadcapTangent\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556215730.0, \"send_replies\": true, \"parent_id\": \"t1_elrj823\", \"score\": 3, \"author_fullname\": \"t2_q5gho\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"well just saw what sub this was. Excuse me while I jump into oncoming traffic....\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrja1i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewell just saw what sub this was. Excuse me while I jump into oncoming traffic....\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrja1i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556244530.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrj823\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MadcapTangent\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556215696.0, \"send_replies\": true, \"parent_id\": \"t3_bh7hrl\", \"score\": 2, \"author_fullname\": \"t2_q5gho\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"If this is primarily accessed through phones and tablets the bottom one. If on PC, the top one. Keep the spatial symmetry in mind when deciding on these things.\\n\\nThey are both fantastic though, visually speaking.\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrj823\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf this is primarily accessed through phones and tablets the bottom one. If on PC, the top one. Keep the spatial symmetry in mind when deciding on these things.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThey are both fantastic though, visually speaking.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrj823/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556244496.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgvjfl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elnsm1i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"CrBr\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1556117505.0, \"send_replies\": true, \"parent_id\": \"t3_bgvjfl\", \"score\": 1, \"author_fullname\": \"t2_sujjc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"and in the comments\\n\\n\\u0026#x200B;\\n\\n \\u003C!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--\\u003ETask | Goal | Checkin 1 10:30 | Checkin 2 | Checkin 3:-- | :- | :-- | :-- | :--Check in here | 0.50 | 0.50 | | housework | 0.50 | | | Meditate | 0.50 | | | my lesson | 1.50 | | | drive k2 2x | 1.25 | | | paper mail | 0.50 | | | accounting | 2.00 | | | shorthand | 0.50 | | | Mosquitoes | 0.50 | | | Craft | 0.50 | | | Total | 8.25 | 0.50 | 0.00 | 0.00\", \"link_title\": \"test table\", \"author_flair_css_class\": null, \"name\": \"t1_elnsm1i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eand in the comments\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--\\u0026gt;Task | Goal | Checkin 1 10:30 | Checkin 2 | Checkin 3:-- | :- | :-- | :-- | :--Check in here | 0.50 | 0.50 | | housework | 0.50 | | | Meditate | 0.50 | | | my lesson | 1.50 | | | drive k2 2x | 1.25 | | | paper mail | 0.50 | | | accounting | 2.00 | | | shorthand | 0.50 | | | Mosquitoes | 0.50 | | | Craft | 0.50 | | | Total | 8.25 | 0.50 | 0.00 | 0.00\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgvjfl/test_table/elnsm1i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgvjfl/test_table/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgvjfl/test_table/\", \"created\": 1556146305.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1555883686.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfu16t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elgaylo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"danielthetemp\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1555883030.0, \"send_replies\": true, \"parent_id\": \"t3_bfu16t\", \"score\": 1, \"author_fullname\": \"t2_14hd4t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E***PRICES (Open to Offers)***\\n\\n\\u003E- **If An Octopus Could Palm** - $119.99\\n\\n\\u003E- **Brown Bee Wynn** - $37.99\\n\\n\\u003E- **2012 Magic Con** - $37.99 - 2x\\n\\n\\u003E- **Absolut Vodka** - $34.99 - 2x\\n\\n\\u003E- **Carrot Fontaine** - $31.99 - 8x\\n\\n\\u003E- **Smoke \\u0026 Mirrors v5** - $28.99\\n\\n\\u003E- **Smoke \\u0026 Mirrors v6** - $26.99/$25.99 - 2x\\n\\n\\u003E- **A1 Black Logo** - $26.99 - 5x\\n\\n\\u003E- **Gold Rarebit** - $21.99\\n\\n\\u003E- **Black USPCC Logo \\u201cTech Art\\u201d** - $60.99\\n\\n\\u003E- **Watermelon Fontaine** - $52.99\\n\\n\\u003E- **A1/DND Smoke \\u0026 Mirrors** - $33.99 - 3x\\n\\n\\u003E- **A1 Headlong Into Eternity** - $27.99\\n\\n\\u003E- **Lot of Opened Decks (DND Private Reserve, Blue Fontaine, Absolut Vodka, S\\u0026M v4)** - $99.99\\n\\n\\u003E- **Lot of Opened Bee Wynns (1x Brown, 1x Violet \\u201cTech Art,\\u201d 1x Violet \\u201cStandard Index\\u201d)** - $72.99\\n\\n\\u003E- **Lot of Opened Golden Nuggets (1x Green, 1x Black)** - $37.99\\n\\n\\u003E- **Green Ace Fulton\\u2019s** - $18.99 - 15x\\n\\n***CONDITION OF DAMAGED/OPEN DECKS***\\n\\n- **If An Octopus Could Palm**: Multiple dents and creases to the box.\\n- **Brown Wynn**: Loose cellophane on top, taped cello on one side.\\n- **2012 Magic Con**: Dents to one corner of both decks.\\n- **Smoke \\u0026 Mirrors v5**: Dents to two corners.\\n- **Smoke \\u0026 Mirrors v6**: Dent to one corner of one deck.\\n- **1st Lot**: All decks in unused condition. All Jokers/ad cards included, except with S\\u0026M v4\\n- **2nd Lot**: Brown Wynn (52 std + 4 Jokers/ad cards) in great condition, but Queen of Spades has a defect to one corner. Violet \\u201cTech Art\\u201d (52 std + no Jokers/ad cards) in great condition. Violet \\u201cStandard Index\\u201d (52 std + 4 Jokers/ad cards) in great condition, though they don\\u2019t fan well due to standard pips.\\n- **3rd Lot**: Black Golden Nugget (52 standard + 2 Joker cards) in good but lightly worn condition, fanning and spreading w/ noticeable clumping. Green Golden Nugget (52 standard + no Jokers/ad cards) in very good condition, but don\\u2019t fan/spread due to finish.\\n\\n***SHIPPING***\\n\\n***Free U.S. shipping (insured depending on order value).***\\n\\n***Calculated Worldwide shipping (insured depending on buyer\\u2019s preference).***\", \"link_title\": \"TEST\", \"author_flair_css_class\": null, \"name\": \"t1_elgaylo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EPRICES (Open to Offers)\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EIf An Octopus Could Palm\\u003C/strong\\u003E - $119.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBrown Bee Wynn\\u003C/strong\\u003E - $37.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E2012 Magic Con\\u003C/strong\\u003E - $37.99 - 2x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAbsolut Vodka\\u003C/strong\\u003E - $34.99 - 2x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ECarrot Fontaine\\u003C/strong\\u003E - $31.99 - 8x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v5\\u003C/strong\\u003E - $28.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v6\\u003C/strong\\u003E - $26.99/$25.99 - 2x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EA1 Black Logo\\u003C/strong\\u003E - $26.99 - 5x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EGold Rarebit\\u003C/strong\\u003E - $21.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBlack USPCC Logo \\u201cTech Art\\u201d\\u003C/strong\\u003E - $60.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWatermelon Fontaine\\u003C/strong\\u003E - $52.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EA1/DND Smoke \\u0026amp; Mirrors\\u003C/strong\\u003E - $33.99 - 3x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EA1 Headlong Into Eternity\\u003C/strong\\u003E - $27.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELot of Opened Decks (DND Private Reserve, Blue Fontaine, Absolut Vodka, S\\u0026amp;M v4)\\u003C/strong\\u003E - $99.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELot of Opened Bee Wynns (1x Brown, 1x Violet \\u201cTech Art,\\u201d 1x Violet \\u201cStandard Index\\u201d)\\u003C/strong\\u003E - $72.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELot of Opened Golden Nuggets (1x Green, 1x Black)\\u003C/strong\\u003E - $37.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EGreen Ace Fulton\\u2019s\\u003C/strong\\u003E - $18.99 - 15x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ECONDITION OF DAMAGED/OPEN DECKS\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EIf An Octopus Could Palm\\u003C/strong\\u003E: Multiple dents and creases to the box.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBrown Wynn\\u003C/strong\\u003E: Loose cellophane on top, taped cello on one side.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E2012 Magic Con\\u003C/strong\\u003E: Dents to one corner of both decks.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v5\\u003C/strong\\u003E: Dents to two corners.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v6\\u003C/strong\\u003E: Dent to one corner of one deck.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E1st Lot\\u003C/strong\\u003E: All decks in unused condition. All Jokers/ad cards included, except with S\\u0026amp;M v4\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E2nd Lot\\u003C/strong\\u003E: Brown Wynn (52 std + 4 Jokers/ad cards) in great condition, but Queen of Spades has a defect to one corner. Violet \\u201cTech Art\\u201d (52 std + no Jokers/ad cards) in great condition. Violet \\u201cStandard Index\\u201d (52 std + 4 Jokers/ad cards) in great condition, though they don\\u2019t fan well due to standard pips.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E3rd Lot\\u003C/strong\\u003E: Black Golden Nugget (52 standard + 2 Joker cards) in good but lightly worn condition, fanning and spreading w/ noticeable clumping. Green Golden Nugget (52 standard + no Jokers/ad cards) in very good condition, but don\\u2019t fan/spread due to finish.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESHIPPING\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EFree U.S. shipping (insured depending on order value).\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ECalculated Worldwide shipping (insured depending on buyer\\u2019s preference).\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfu16t/test/elgaylo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfu16t/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfu16t/test/\", \"created\": 1555911830.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfsmkt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elg60jw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"peacegang\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1555879268.0, \"send_replies\": true, \"parent_id\": \"t1_elg5k7o\", \"score\": 1, \"author_fullname\": \"t2_30chc41y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks for the tip \\ud83d\\udc4d\", \"link_title\": \"Test for posting my music (anxiety check)\", \"author_flair_css_class\": null, \"name\": \"t1_elg60jw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for the tip \\ud83d\\udc4d\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/elg60jw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"report_reasons\": null, \"link_author\": \"peacegang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"created\": 1555908068.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfsmkt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elg5k7o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thanksgames\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1555878932.0, \"send_replies\": true, \"parent_id\": \"t1_elg0fz0\", \"score\": 2, \"author_fullname\": \"t2_haj2j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I also use https://redditpreview.com then here.\", \"link_title\": \"Test for posting my music (anxiety check)\", \"author_flair_css_class\": null, \"name\": \"t1_elg5k7o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI also use \\u003Ca href=\\\"https://redditpreview.com\\\"\\u003Ehttps://redditpreview.com\\u003C/a\\u003E then here.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/elg5k7o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"report_reasons\": null, \"link_author\": \"peacegang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"created\": 1555907732.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfsmkt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elg0l70\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"peacegang\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1555875286.0, \"send_replies\": true, \"parent_id\": \"t3_bfsmkt\", \"score\": 1, \"author_fullname\": \"t2_30chc41y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[SALEM - Jennifer's Rush (Unreleased)](https://soundcloud.com/peacegang/everyone-dies)\\n\\n\\n[Amnesia Scanner - AS Crust](https://soundcloud.com/peacegang/psfd)\\n\\n\\n[Balam Acab - Dream Out](https://soundcloud.com/peacegang/permo)\\n\\n\\n[CRIM3S - Pansy](https://soundcloud.com/peacegang/pansy-ruff)\\n\\n\\n[Wolfgang Tillmans - Make It Up As You Go Along (SALEM Remix)](https://soundcloud.com/peacegang/odt)\", \"link_title\": \"Test for posting my music (anxiety check)\", \"author_flair_css_class\": null, \"name\": \"t1_elg0l70\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/everyone-dies\\\"\\u003ESALEM - Jennifer\\u0026#39;s Rush (Unreleased)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/psfd\\\"\\u003EAmnesia Scanner - AS Crust\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/permo\\\"\\u003EBalam Acab - Dream Out\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/pansy-ruff\\\"\\u003ECRIM3S - Pansy\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/odt\\\"\\u003EWolfgang Tillmans - Make It Up As You Go Along (SALEM Remix)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/elg0l70/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"report_reasons\": null, \"link_author\": \"peacegang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"created\": 1555904086.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_elg0l70\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["467008"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:16 GMT"], "x-ratelimit-remaining": ["590.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21922-LGA"], "x-ratelimit-used": ["10"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914096.314916,VS0,VE650"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["104"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:28:17"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_eq9cbr7"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:17 GMT"], "x-ratelimit-remaining": ["589.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21922-LGA"], "x-ratelimit-used": ["11"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914097.211024,VS0,VE79"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["103"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_eq9cbr7"}, "recorded_at": "2019-06-07T13:28:17"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_x9hgy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Orleans Funk and Soul Comp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_bxu0h7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/HZGF8jwxJvb-kmQ0VHxmPmJwsj7cME_lUiJh0tMOdyA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559939195.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?auto=webp\\u0026s=63435ce5b9021c26f3f3361832bee85120b95da7\", \"width\": 2997, \"height\": 3000}, \"resolutions\": [{\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4f2d78539e84109eff8c55ef3881fc5cd9895610\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=36b248b4534ebb7224b313476f08bfaeac231423\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d14878565506f79f9a565575c94dd15cb87b126f\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b8599670803f247e3567c308259e0e008d6ade54\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5f099f6836672fd6e14fc584d919502251a20062\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=80dc7ae6be61b47e33fb9efb8e6396ee20665a72\", \"width\": 1080, \"height\": 1081}], \"variants\": {}, \"id\": \"oOKJ7WqkVkUAvpB0GW3QoNctvySrbQLkpEE891MLydk\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu0h7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"branch_immersion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxu0h7/new_orleans_funk_and_soul_comp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/st657dn4fx231.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559910395.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Very sad news about the passing of Dr John. I took out a couple of his records this lunchtime and gave them a spin. \\n\\n\\u0026#x200B;\\n\\nI also dug out a copy of this compilation Saturday Night Fish Fry (New Orleans Funk And Soul). There was a post earlier this week about Betty Harris and the drums on her record. And I think generally, within this subreddit and elsewhere, there is a huge appetite for the New Orleans funk and blues. Some people may even correct me that sometimes the genre is referred to in more granular terms as fonk, I don't know. In his autobiography Dr. John put this distinct musical signature down to the unique geographic location of the City to absorb and conjoin different artistic ideas from America and the Caribbean. \\n\\n\\u0026#x200B;\\n\\nThis double lp is a collection of New Orleans funk and really gets my groove on. If you want to find out more about this City's musical heritage you could do a lot worse than get an overview from this selection.\", \"author_fullname\": \"t2_x9hgy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Orleans Funk and Soul Comp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_bxtvoq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559938349.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVery sad news about the passing of Dr John. I took out a couple of his records this lunchtime and gave them a spin. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also dug out a copy of this compilation Saturday Night Fish Fry (New Orleans Funk And Soul). There was a post earlier this week about Betty Harris and the drums on her record. And I think generally, within this subreddit and elsewhere, there is a huge appetite for the New Orleans funk and blues. Some people may even correct me that sometimes the genre is referred to in more granular terms as fonk, I don\\u0026#39;t know. In his autobiography Dr. John put this distinct musical signature down to the unique geographic location of the City to absorb and conjoin different artistic ideas from America and the Caribbean. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis double lp is a collection of New Orleans funk and really gets my groove on. If you want to find out more about this City\\u0026#39;s musical heritage you could do a lot worse than get an overview from this selection.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxtvoq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"branch_immersion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxtvoq/new_orleans_funk_and_soul_comp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxtvoq/new_orleans_funk_and_soul_comp/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559909549.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_288py4gj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Text\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxsgv0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559928038.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsgv0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Heroquetarro10\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559899238.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Text Area \\\\_\\\\_\\\\_ 1234567890\", \"author_fullname\": \"t2_3l1yc231\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing format of post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxqfkz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559910553.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EText Area ___ 1234567890\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxqfkz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"denHting\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxqfkz/testing_format_of_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxqfkz/testing_format_of_post/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559881753.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_3um52nx7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"get get get out\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxprj4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559906146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": true, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"rte_mode\": \"markdown\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxprj4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxprj4/get_get_get_out/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxprj4/get_get_get_out/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559877346.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Our story begins five years after the events of our last movie. In the time since Jean Grey and her fellow X-Men escaped from a US government base, battled the Sentinels, and survived a confrontation with the Mutant terrorist Magneto, America has slowly become a hotbed of political unrest. As the debate over Mutant rights rages on, young Mutants are still regularly arrested and detained without trial when their powers manifest, Mutant rights protests regularly erupt into riots in major cities, and lurid stories about wanted Mutant fugitives regularly make the evening news. \\n\\nAmid this tense backdrop, the terrorist Magneto launches attacks on police stations and military bases without warning, always leaving a trail of dead bodies in his wake. But in his stately Westchester mansion, political activist Professor Charles Xavier does his best to weather the storm as he peacefully fights for his people's freedom while training his Mutant pupils to use their powers for good. But as the years wear on, the teenage X-Men\\u2014now young adults\\u2014face plenty of changes in their private lives.\\n\\nFirst, young **Warren Worthington** (\\\"**Angel**\\\") chooses to leave the Xavier Institute to care for his terminally ill father. Then **Hank McCoy** (\\\"**Beast**\\\") chooses to leave to pursue his doctoral studies, planning to devote his life to science. Finally, **Bobby Drake** (\\\"**Iceman**\\\"), who just wants a normal life, decides to settle down with his girlfriend **Lorna**. Only **Scott Summers** (\\\"**Cyclops**\\\") can't envision a life outside of the X-Men; ever since losing his family in a mysterious plane crash at the age of 10, the Xavier Institute has been Scott's only home, and the X-Men are the only family that he has left. And as his relationship with **Jean Grey** develops into a passionate love affair, Jean is torn between her devotion to Scott and her desire to move forward with her life; though she longs to conceal her powerful psychic abilities and live as an ordinary human, she knows that Scott could never leave the Institute, and she feels compelled to stay by his side. This leaves Scott and Jean as the last remaining members of the original X-Men. But that may change soon.\\n\\nAs Professor Xavier turns his eyes to the world at large, it soon becomes clear that the struggle for Mutant rights is no longer solely an American problem; all over the world, innocent Mutants are being arrested and detained by paranoid government forces, and some are choosing to fight back. Over time, rumors spread of an underground network of Mutant rebels, who supposedly work to shelter and protect fugitive Mutants. Some call them terrorists, and others call them freedom fighters\\u2014but Professor Xavier sees them as potential new recruits.\\n\\nOn a quiet day in Moscow, Russia, a pair of uniformed FSB agents knock on the door of a secluded apartment, flanked by a squad of armed soldiers. When a young blonde woman answer the door, she stares defiantly at the agents.\\n\\n*\\\"There's no use playing the fool, Ms. Rasputin,\\\"* the lead agent says. *\\\"We know that you're sheltering a Mutant here. And you know the penalty for refusing to hand him over.\\\"*\\n\\nThe woman\\u2014**Ilyana Rasputin**\\u2014stares back at them, maintaining her cold composure.\\n\\n*\\\"I would never give my brother to mongrels like you,\\\"* she hisses. *\\\"He's a Mutant, but he's still my brother.\\\"*\\n\\nA tall, dark-haired man appears behind Ilyana and places a comforting hand upon her shoulder.\\n\\n*\\\"It's alright, Ilyana,\\\"* **Piotr Rasputin** says. *\\\"I'll go quietly. But always remember: your quarrel is with me, and me alone. My family is not to be harmed.\\\"*\\n\\nWith that, the agents cuff Piotr's wrists, and the soldiers escort him from the building at gunpoint. Standing at the window of her apartment with tear-streaked eyes, Ilyana can only watch helplessly as her beloved brother is marched into an armored van, softly whispering *\\\"Goodbye\\\"* as they close the doors. But unbeknownst to her, he's being watched from afar...\\n\\nIt turns out that three members of the mysterious **Mutant Freedom Network** have come to Moscow, and they know that a Mutant is about to be imprisoned by government forces. And this time, they've sworn to do something about it.\\n\\nWe meet three of them:\\n\\n* **Sean Cassidy** (callsign: \\\"**Banshee**\\\"), a grizzled ex-cop from Dublin who was thrown out of Interpol after he was outed as a Mutant. He possesses a powerful sonic scream that's strong enough to shatter glass, allowing him to fly for limited distances.\\n* **Ororo Munroe** (callsign: \\\"**Storm**\\\"), a young Kenyan-born woman who spent years as a petty thief on the streets of Nairobi, but became accepted as a priestess by a group of Bantu farmers, who realized that she possessed a supernatural ability to control the weather.\\n* **Kurt Wagner** (callsign: \\\"**Nightcrawler**\\\"), a fun-loving young German man of Romani heritage, who grew up as an acrobatic performer in a traveling circus. Possessing the power to vanish and teleport in a puff of smoke, his Mutant abilities give him a bizarre demonic appearance; his body is covered with blue fur, and he has fangs and a prehensile tail.\\n\\nAs Banshee, Storm and Nightcrawler watch the armored van pull into a convoy, a squad of black helicopters appears in the sky, watching the FSB agents from above as they drive Piotr away. At Banshee's command, they bust into action.\\n\\nFirst, Nightcrawler uses his teleporting abilities to jump into the front seat of the armored van, where he kicks the driver into the street and takes the wheel. As he hijacks the truck and drives away with Piotr in the back, Storm lashes out with a bolt of lightning and fries the other vans in the convoy before they can drive off after him. Moments later, Banshee tears through the sky and brings down a helicopter with his sonic scream.\\n\\n*\\\"Who the hell are you people?\\\"* Piotr demands. *\\\"And where are you taking me?!\\\"*\\n\\n*\\\"Relax, mein freund,\\\"* Nightcrawler says. *\\\"We're the good guys! And we're taking you where they can't hurt you. After that, you can go where you wish.\\\"*\\n\\nNightcrawler high-tails it to the highway with Storm riding on top of the stolen van, and Banshee follows them from the sky. As the FSB calls for backup, a frantic car chase ensues, and Ororo uses her powers to hold off a squad of pursuing cars while Banshee fights off the helicopters from above. At first, all seems well\\u2014but the escape takes a bad turn when Banshee catches a stray bullet and falls to his death. Pushing their powers to their limit, Nightcrawler and Storm fight for their lives against the pursuing soldiers. After breaking free of his cuffs, Piotr helps them out as he reveals his own Mutant ability: he can transform his body into near-indestructible steel, giving him superhuman strength and invulnerability.\\n\\nAfter Piotr uses his powers to punch his way through a police barricade and clear a path for the others, they all drive off into the distance in the stolen van. But before long, they receive a radio message from a familiar voice.\\n\\n*\\\"Stay calm,\\\"* Scott Summers says. *\\\"We're right on top of you!\\\"*\\n\\nA shadow appears on the highway as the frantic chase continues. It's **the Blackbird**! Scott is sitting in the cockpit, and Jean is next to him.\\n\\n*\\\"You've gotta jump!\\\"* Jean calls. *\\\"Don't worry, we'll catch you!\\\"*\\n\\nFrom the cockpit of the Blackbird, Jean uses her telekinesis to take control of the van's steering wheel, allowing the trio to clamber onto the roof of the van as it speeds along. As the van drives off the side of a cliff\\u2014where the Blackbird is waiting to pick them up\\u2014they just barely manage to jump into the cargo hold before the van falls and crashes on the ground below. Safe inside the jet, Storm, Nightcrawler and Piotr meet Scott and Jean personally.\\n\\n*\\\"Who are you people, exactly?\\\"* Storm asks.\\n\\n*\\\"We're the X-Men,\\\"* Scott says proudly. *\\\"And if you want to join us...then so are you.\\\"*\\n\\nIt turns out that Professor Xavier has been in touch with the three Mutant freedom fighters for weeks, and offered them a place in the Xavier Institute weeks ago. They accepted, but refused to leave for America before finishing one last rescue. Though the group is saddened by the loss of Banshee, Piotr agrees to join the X-Men along with Storm and Nightcrawler, believing that he has a duty to pay them back for rescuing him. Scott and Jean welcome him to the group with open arms, dubbing him \\\"**Colossus**\\\".\\n\\nBut the X-Men's elation is suddenly cut short when the Blackbird mysteriously stops in mid-air. Alarm sirens blare as some mysterious force grips the jet from the outside, and its navigation computers instantly go haywire. As they rush to the cockpit to figure out what's going on, their blood runs cold as they look out the window and see a familiar figure: ***Magneto****!* Showing off the full extent of his powers, he effortlessly hovers in mid-air in a bubble of magnetic energy; with one hand outstretched, he holds the Blackbird in the grip of a magnetic field.\\n\\nIt seems that Magneto has followed Scott and Jean to Russia, eager for a rematch with them. In the five years since Magneto murdered the scientist **Bolivar Trask**, he has had numerous confrontations with the X-Men\\u2014and each time, the X-Men have narrowly escaped with their lives.\\n\\nThinking fast, Scott and Jean clamber onto the roof of the Blackbird and engage Magneto, but he taunts them as he deflects Scott's optic blasts and shrugs off Jean's telepathic attacks\\u2014but the three new X-Men spring into action to aid them. Though Magneto easily subdues Colossus with his magnetic powers, Storm manages to weaken his shield by summoning a massive lightning storm, and Nightcrawler uses his teleportation abilities to land a crushing kick to his midsection. Taking advantage of the distraction, Scott blasts Magneto with his optic blasts, weakening him enough to free the Blackbird from his magnetic field. Seizing their window of opportunity, the X-Men pile into the jet and strap themselves in, and they make their escape.\\n\\nBack in Westchester, Professor Xavier happily welcomes his three new recruits to the Xavier Institute with open arms, and he gives them all a rousing speech as they gather in the mansion.\\n\\nIs the Professor turning them into an *army?*\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxk7dz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559862102.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559874781.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOur story begins five years after the events of our last movie. In the time since Jean Grey and her fellow X-Men escaped from a US government base, battled the Sentinels, and survived a confrontation with the Mutant terrorist Magneto, America has slowly become a hotbed of political unrest. As the debate over Mutant rights rages on, young Mutants are still regularly arrested and detained without trial when their powers manifest, Mutant rights protests regularly erupt into riots in major cities, and lurid stories about wanted Mutant fugitives regularly make the evening news. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAmid this tense backdrop, the terrorist Magneto launches attacks on police stations and military bases without warning, always leaving a trail of dead bodies in his wake. But in his stately Westchester mansion, political activist Professor Charles Xavier does his best to weather the storm as he peacefully fights for his people\\u0026#39;s freedom while training his Mutant pupils to use their powers for good. But as the years wear on, the teenage X-Men\\u2014now young adults\\u2014face plenty of changes in their private lives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, young \\u003Cstrong\\u003EWarren Worthington\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EAngel\\u003C/strong\\u003E\\u0026quot;) chooses to leave the Xavier Institute to care for his terminally ill father. Then \\u003Cstrong\\u003EHank McCoy\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EBeast\\u003C/strong\\u003E\\u0026quot;) chooses to leave to pursue his doctoral studies, planning to devote his life to science. Finally, \\u003Cstrong\\u003EBobby Drake\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EIceman\\u003C/strong\\u003E\\u0026quot;), who just wants a normal life, decides to settle down with his girlfriend \\u003Cstrong\\u003ELorna\\u003C/strong\\u003E. Only \\u003Cstrong\\u003EScott Summers\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003ECyclops\\u003C/strong\\u003E\\u0026quot;) can\\u0026#39;t envision a life outside of the X-Men; ever since losing his family in a mysterious plane crash at the age of 10, the Xavier Institute has been Scott\\u0026#39;s only home, and the X-Men are the only family that he has left. And as his relationship with \\u003Cstrong\\u003EJean Grey\\u003C/strong\\u003E develops into a passionate love affair, Jean is torn between her devotion to Scott and her desire to move forward with her life; though she longs to conceal her powerful psychic abilities and live as an ordinary human, she knows that Scott could never leave the Institute, and she feels compelled to stay by his side. This leaves Scott and Jean as the last remaining members of the original X-Men. But that may change soon.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Professor Xavier turns his eyes to the world at large, it soon becomes clear that the struggle for Mutant rights is no longer solely an American problem; all over the world, innocent Mutants are being arrested and detained by paranoid government forces, and some are choosing to fight back. Over time, rumors spread of an underground network of Mutant rebels, who supposedly work to shelter and protect fugitive Mutants. Some call them terrorists, and others call them freedom fighters\\u2014but Professor Xavier sees them as potential new recruits.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn a quiet day in Moscow, Russia, a pair of uniformed FSB agents knock on the door of a secluded apartment, flanked by a squad of armed soldiers. When a young blonde woman answer the door, she stares defiantly at the agents.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;There\\u0026#39;s no use playing the fool, Ms. Rasputin,\\u0026quot;\\u003C/em\\u003E the lead agent says. \\u003Cem\\u003E\\u0026quot;We know that you\\u0026#39;re sheltering a Mutant here. And you know the penalty for refusing to hand him over.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe woman\\u2014\\u003Cstrong\\u003EIlyana Rasputin\\u003C/strong\\u003E\\u2014stares back at them, maintaining her cold composure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I would never give my brother to mongrels like you,\\u0026quot;\\u003C/em\\u003E she hisses. \\u003Cem\\u003E\\u0026quot;He\\u0026#39;s a Mutant, but he\\u0026#39;s still my brother.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA tall, dark-haired man appears behind Ilyana and places a comforting hand upon her shoulder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;It\\u0026#39;s alright, Ilyana,\\u0026quot;\\u003C/em\\u003E \\u003Cstrong\\u003EPiotr Rasputin\\u003C/strong\\u003E says. \\u003Cem\\u003E\\u0026quot;I\\u0026#39;ll go quietly. But always remember: your quarrel is with me, and me alone. My family is not to be harmed.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith that, the agents cuff Piotr\\u0026#39;s wrists, and the soldiers escort him from the building at gunpoint. Standing at the window of her apartment with tear-streaked eyes, Ilyana can only watch helplessly as her beloved brother is marched into an armored van, softly whispering \\u003Cem\\u003E\\u0026quot;Goodbye\\u0026quot;\\u003C/em\\u003E as they close the doors. But unbeknownst to her, he\\u0026#39;s being watched from afar...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt turns out that three members of the mysterious \\u003Cstrong\\u003EMutant Freedom Network\\u003C/strong\\u003E have come to Moscow, and they know that a Mutant is about to be imprisoned by government forces. And this time, they\\u0026#39;ve sworn to do something about it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe meet three of them:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESean Cassidy\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003EBanshee\\u003C/strong\\u003E\\u0026quot;), a grizzled ex-cop from Dublin who was thrown out of Interpol after he was outed as a Mutant. He possesses a powerful sonic scream that\\u0026#39;s strong enough to shatter glass, allowing him to fly for limited distances.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EOroro Munroe\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003EStorm\\u003C/strong\\u003E\\u0026quot;), a young Kenyan-born woman who spent years as a petty thief on the streets of Nairobi, but became accepted as a priestess by a group of Bantu farmers, who realized that she possessed a supernatural ability to control the weather.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EKurt Wagner\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003ENightcrawler\\u003C/strong\\u003E\\u0026quot;), a fun-loving young German man of Romani heritage, who grew up as an acrobatic performer in a traveling circus. Possessing the power to vanish and teleport in a puff of smoke, his Mutant abilities give him a bizarre demonic appearance; his body is covered with blue fur, and he has fangs and a prehensile tail.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAs Banshee, Storm and Nightcrawler watch the armored van pull into a convoy, a squad of black helicopters appears in the sky, watching the FSB agents from above as they drive Piotr away. At Banshee\\u0026#39;s command, they bust into action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, Nightcrawler uses his teleporting abilities to jump into the front seat of the armored van, where he kicks the driver into the street and takes the wheel. As he hijacks the truck and drives away with Piotr in the back, Storm lashes out with a bolt of lightning and fries the other vans in the convoy before they can drive off after him. Moments later, Banshee tears through the sky and brings down a helicopter with his sonic scream.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who the hell are you people?\\u0026quot;\\u003C/em\\u003E Piotr demands. \\u003Cem\\u003E\\u0026quot;And where are you taking me?!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Relax, mein freund,\\u0026quot;\\u003C/em\\u003E Nightcrawler says. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;re the good guys! And we\\u0026#39;re taking you where they can\\u0026#39;t hurt you. After that, you can go where you wish.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENightcrawler high-tails it to the highway with Storm riding on top of the stolen van, and Banshee follows them from the sky. As the FSB calls for backup, a frantic car chase ensues, and Ororo uses her powers to hold off a squad of pursuing cars while Banshee fights off the helicopters from above. At first, all seems well\\u2014but the escape takes a bad turn when Banshee catches a stray bullet and falls to his death. Pushing their powers to their limit, Nightcrawler and Storm fight for their lives against the pursuing soldiers. After breaking free of his cuffs, Piotr helps them out as he reveals his own Mutant ability: he can transform his body into near-indestructible steel, giving him superhuman strength and invulnerability.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter Piotr uses his powers to punch his way through a police barricade and clear a path for the others, they all drive off into the distance in the stolen van. But before long, they receive a radio message from a familiar voice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Stay calm,\\u0026quot;\\u003C/em\\u003E Scott Summers says. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;re right on top of you!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA shadow appears on the highway as the frantic chase continues. It\\u0026#39;s \\u003Cstrong\\u003Ethe Blackbird\\u003C/strong\\u003E! Scott is sitting in the cockpit, and Jean is next to him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;ve gotta jump!\\u0026quot;\\u003C/em\\u003E Jean calls. \\u003Cem\\u003E\\u0026quot;Don\\u0026#39;t worry, we\\u0026#39;ll catch you!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the cockpit of the Blackbird, Jean uses her telekinesis to take control of the van\\u0026#39;s steering wheel, allowing the trio to clamber onto the roof of the van as it speeds along. As the van drives off the side of a cliff\\u2014where the Blackbird is waiting to pick them up\\u2014they just barely manage to jump into the cargo hold before the van falls and crashes on the ground below. Safe inside the jet, Storm, Nightcrawler and Piotr meet Scott and Jean personally.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who are you people, exactly?\\u0026quot;\\u003C/em\\u003E Storm asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;re the X-Men,\\u0026quot;\\u003C/em\\u003E Scott says proudly. \\u003Cem\\u003E\\u0026quot;And if you want to join us...then so are you.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt turns out that Professor Xavier has been in touch with the three Mutant freedom fighters for weeks, and offered them a place in the Xavier Institute weeks ago. They accepted, but refused to leave for America before finishing one last rescue. Though the group is saddened by the loss of Banshee, Piotr agrees to join the X-Men along with Storm and Nightcrawler, believing that he has a duty to pay them back for rescuing him. Scott and Jean welcome him to the group with open arms, dubbing him \\u0026quot;\\u003Cstrong\\u003EColossus\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut the X-Men\\u0026#39;s elation is suddenly cut short when the Blackbird mysteriously stops in mid-air. Alarm sirens blare as some mysterious force grips the jet from the outside, and its navigation computers instantly go haywire. As they rush to the cockpit to figure out what\\u0026#39;s going on, their blood runs cold as they look out the window and see a familiar figure: \\u003Cstrong\\u003E\\u003Cem\\u003EMagneto\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E!\\u003C/em\\u003E Showing off the full extent of his powers, he effortlessly hovers in mid-air in a bubble of magnetic energy; with one hand outstretched, he holds the Blackbird in the grip of a magnetic field.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems that Magneto has followed Scott and Jean to Russia, eager for a rematch with them. In the five years since Magneto murdered the scientist \\u003Cstrong\\u003EBolivar Trask\\u003C/strong\\u003E, he has had numerous confrontations with the X-Men\\u2014and each time, the X-Men have narrowly escaped with their lives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThinking fast, Scott and Jean clamber onto the roof of the Blackbird and engage Magneto, but he taunts them as he deflects Scott\\u0026#39;s optic blasts and shrugs off Jean\\u0026#39;s telepathic attacks\\u2014but the three new X-Men spring into action to aid them. Though Magneto easily subdues Colossus with his magnetic powers, Storm manages to weaken his shield by summoning a massive lightning storm, and Nightcrawler uses his teleportation abilities to land a crushing kick to his midsection. Taking advantage of the distraction, Scott blasts Magneto with his optic blasts, weakening him enough to free the Blackbird from his magnetic field. Seizing their window of opportunity, the X-Men pile into the jet and strap themselves in, and they make their escape.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in Westchester, Professor Xavier happily welcomes his three new recruits to the Xavier Institute with open arms, and he gives them all a rousing speech as they gather in the mansion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs the Professor turning them into an \\u003Cem\\u003Earmy?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxk7dz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxk7dz/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxk7dz/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559845981.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_5ijtn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 12, \"hide_score\": false, \"name\": \"t3_bxfqen\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ZMjeoipMxQ3bRu7Gbso5AMjI0QnyRUvbys50zzeSRHg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559850058.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?auto=webp\\u0026s=6d88313f2c01fb65fd4dfac7f372dd58761154d8\", \"width\": 1985, \"height\": 184}, \"resolutions\": [{\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ef14c58b5359e5cee2e44484a1445c24cbcb6c74\", \"width\": 108, \"height\": 10}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5c10e0ab3c5c459950fd8b2b53afc9550ada288e\", \"width\": 216, \"height\": 20}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=04da7a02871577f68e7b8f226ace537039186d1f\", \"width\": 320, \"height\": 29}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5798b9ac875f896439e407b4be792746ac5af021\", \"width\": 640, \"height\": 59}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2a6b88d3275179016bbc16a31c84fab844a21611\", \"width\": 960, \"height\": 88}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ac41548df3abfb57153e76f1acf77aad1ea06881\", \"width\": 1080, \"height\": 100}], \"variants\": {}, \"id\": \"37BQwgGDDek1wnbE0TCNlewSvltCJFOhbRB1kfNUMhA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfqen\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"killroy200\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxfqen/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/ol16qrsw3q231.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1559821258.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_j843ij2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"David baldeon\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bxetqt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/m3rUKYfsSdlyGoaGh5wvUvrM1c4STiyplCNdlfpQRhk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559843173.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"pbs.twimg.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?auto=webp\\u0026s=43c066330a06d2d8d5bca251a8a4811882c33423\", \"width\": 1840, \"height\": 2048}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0bdafd5b0f83d3ec2b33853ea6562f883e0397c2\", \"width\": 108, \"height\": 120}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1f2a430d8f9d494b3d60dab91709ae43cece167f\", \"width\": 216, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=0fe60b0fa60898cc650a2d809feb39a7d2ce2591\", \"width\": 320, \"height\": 356}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=77a93a8b1083aa79c8639a40bb83dd9872e1788e\", \"width\": 640, \"height\": 712}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=03aa15e18e660b2763ea2a3b471f9d19e083dd9b\", \"width\": 960, \"height\": 1068}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c7767c724137a83b643d47906adb4f9165dce0b0\", \"width\": 1080, \"height\": 1202}], \"variants\": {}, \"id\": \"5Tr0M7lNan8uCLe6JLeIcnoU05eiHN8ApgBANUjkHug\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxetqt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mothman232\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxetqt/david_baldeon/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://pbs.twimg.com/media/D7lJtTCXkAI0O3E.jpg:large\", \"subreddit_subscribers\": 703, \"created_utc\": 1559814373.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I CAN GO 15 SECONDS WITH ANYTHING. Howard looks like he is going to make doodie in his pants when GB hijacks his mic. Would GB walk away from this encounter if he bullied Howard in 2019? T O P L E S S\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bwsi3l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwsi3l\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Vkisu9g-VZo3thxeoTEh7_sHe6pgucV1XMkDjc08RY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559703482.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?auto=webp\\u0026s=3e2a10eb30c9a5b77b30a241735e3e8b8e1cfccc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a22b052dedffebf783ba26dae6003cd3c55a250\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcf039e2e79b58782dfd536386b50fa8b338f1d2\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=77375886fab998dde88f536da5c4503437f4c152\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"bdEz7hRKzTsVVn3Vyr7qozX0OUrbARsbBsUoqJKdw7M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwsi3l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\\u0026t=2s\", \"subreddit_subscribers\": 703, \"created_utc\": 1559674682.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_11r26z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Image test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bwl0fm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/kksd_8fx216qsy4gL0wzul47ods9QoCbZqBfN9_5nP8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559654591.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?auto=webp\\u0026s=ec79ffaf9e22e32c6e41f6946737e14d55a3b940\", \"width\": 2896, \"height\": 2896}, \"resolutions\": [{\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c3c8dfece59ca2a351d51df624d7beaabb02863c\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1b1a7dac32dd046927c2c8fc65bb58d81ac0c932\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3e8cd8af164b2b78530a4168875c3ab407422677\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=bf806ec58298e63494dd4d00966bde0c369f6c7a\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e8fc39dbf7e1348397f5a9836f13473aeff79ad1\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=86615f13d9764a381a194c798b715a78a43db6b6\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"xjLAgIF4juxLsEPnfXluO5CqMIQxaAYzHRiXsdAzPMg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwl0fm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Syclowave\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwl0fm/image_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/8mrszs4py9231.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559625791.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[France](#bar-10-blue) , via u/BuzzBuzz01\\n\\n#[](#icon-info-big) About\\n\\n - **Nickname(s)**: Les Bleues\\n\\n - **Women's World Cup Appearances**: 4\\n\\n - **Best Finish**: 4th (2001)\\n\\n - **FIFA Ranking**: 4 (3rd in Europe)\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nFrance has been building it's women's football for years on years on years. With parallels to men's team (which are addressed in the P.O.D) combined with being the hosts, is expected to at the very least contest in the final. After building up from the ground up year on year on year, this seems the exact right for them to be hosting the World Cup. They're excellent in every department, with strong centrebacks who can both play out the back, proven and experienced goal scorers up top, technical midfielders, and creative wingers. France has 12 wins in the last 13 matches since the SheBelievesCup (including 3-1 against Brazil, the USA and Japan and 4-0 against Denmark + one defeat against Germany 0-1). Is this the year that France finally puts it all together to become the first ever country to hold both the men's and women's World Cups?\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager:** Corinne Diacre (France)\\n\\n**Goalkeepers:** Sarah BOUHADDI (Olympique Lyonnais), Sol\\u00e8ne DURAND (EA Guingamp), Pauline PEYRAUD-MAGNIN (Arsenal)\\n\\n**Defenders:** Julie DEBEVER (EA Guingamp), Sakina KARCHAOUI (Montpellier HSC), Amel MAJRI (Olympique Lyonnais), Griedge MBOCK (Olympique Lyonnais), \\u00c8ve P\\u00c9RISSET (Paris Saint-Germain), Wendie RENARD (Olympique Lyonnais), Marion TORRENT (Montpellier HSC), A\\u00efssatou TOUNKARA (Atl\\u00e9tico Madrid)\\n\\n**Midfielders:** Charlotte BILBAULT (Paris FC), \\u00c9lise BUSSAGLIA (Dijon FCO), Ma\\u00e9va CLEMARON (FC Fleury 91), Grace GEYORO (Paris Saint-Germain), Amandine HENRY (Olympique Lyonnais), Ga\\u00ebtane THINEY (Paris FC)\\n\\n**Forwards:** Viviane ASSEYI (Girondins de Bordeaux), Delphine CASCARINO (Olympique Lyonnais), Kadidiatou DIANI (Paris Saint-Germain), Val\\u00e9rie GAUVIN (Montpellier HSC), Emelyne LAURENT (EA Guingamp), Eug\\u00e9nie LE SOMMER (Olympique Lyonnais)\\n\\n#[](#icon-whistle-big) [Potential Starting 11](https://imgur.com/a/hMH9Gy8)\\n\\n Bouhaddi\\n\\n Torrent Renard Mbock Bathy Majri\\n\\n Bussaglia Henry (C)\\n\\n Cascarino Thiney Diani\\n\\n Le Sommer\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n[Eug\\u00e9nie Le Sommer (ST):](https://cdn-media.rtl.fr/cache/YFtm3Fv-bsG7aM6_D8KqTw/880v587-0/online/image/2018/1228/7796070733_l-attaquante-francaise-eugenie-le-sommer-le-1er-septembre-2018.jpg)\\n\\nLe Sommer usually plays up top as the out and out striker and is without a doubt the star attacking player. With 74 goals in 159 caps, Le Sommer is only 7 goals off of being the country's all time top goal scorer. Le Sommer is not simply just some poacher and can score in a multitude of ways, whether with her fox-in-the-box instincts (either her feet or her head), ability to get past defenders with her adept dribbling, or just absolutely lacing one from outside the box, Le Sommer has it all.\\n\\n[Here is a short highlight video of hers](https://www.youtube.com/watch?v=CCC4eK4aEdA)\\n\\n\\n[Amandine Henry (DM)](https://c.static-nike.com/a/images/w_960,c_limit,f_auto/x7ycyrbgveskryrkkpyy/athlete-stories-amandine-henry.jpg)\\n\\nThe 29 year old captain has 83 appearances and 11 goals for the national team. With the ability to launch a belter outside the box, Henry is the calm metronome in midfield for France. If you were to compare her to a player it would have to be a prime Sergio Busquets. A very one-touch oriented style of play, Henry uses her calmness and series of fakes and feints to swivel and alleviate pressure with ease. And if she does somehow manage to lose the ball, she's quick and strong to recover and win it back.\\n\\n[Here is a featurette on Henry done by France's official YouTube channel](https://www.youtube.com/watch?v=YMUzaTan7mM)\\n\\n[Here is a Henry highlight video in France's 3-1 win over the USA in January](https://www.youtube.com/watch?v=ry4Ed25fCu8)\\n\\nQuite literally the heart of the midfielder and always in the right spot, Henry will play a key role for France. If they do happen to match up against the USA in the quarterfinal if all goes accepted, her matchup against Julie Ertz should definitely be one to watch out for.\\n\\n\\n[Wendie Renard (CB)](https://i.pinimg.com/originals/51/75/7f/51757f3bb7e30e196793fcf928a1e884.jpg)\\n\\nThe former captain, Renard is without a doubt one of the best defenders in the world. At 6'2\\\" (188 cm), Renard is one of the biggest and tallest players at the tournament, which makes a particular threat on set pieces in defence and attack, seen with her 12 goals in 26 matches across the league and Champions League with the oh so dominant Lyon. Though don't be fooled, Renard is not just a French Gareth McAuley, she also provides an excellent Plan B with her pinpoint long balls from the back. If a team happens to be pressuring France extensively, just get to Renard and she'll knock one into the channels or over the top with Bonnucci/van Dijk levels of precision.\\n\\n#[](#icon-discuss-big) Points of Discussion\\n\\n - **The Seeming Parallels to the Men's Team**\\nLet's look back at the discussion points surrounding the men's team. \\nManaged by a former player, Didier Deschamps for the men's and Corinne Diacre for the women, the latter of which became the first woman to manage a men's professional football match, when she took charge of Clermont Foot.\\nAbsolutely loaded with talent. experience plus up and coming stars\\nLeft some talent at home to try and fit together players who fit the system, in the case of the men's it was Lacazette and with the women's it's with Division 1 F\\u00e9minine's top goalscorer Marie-Antoinette Katoto, who had 22 goals in 22 games at only 20 years old\\nHaven't made nearly as far as they should have in previous tournaments and have lots of pressure to turn that around this time around, with the women having more pressure being the hosts\\n\\n\\n - **Lyon Dominant**\\nIf they trot out with the expected XI, seven of their starting XI are a part of the Champions League winning Lyon, who are blessed with stars from across the planet. Since Lyon put money into women's football quite early on, they've seemed to reap the benefits immensely. Lyon have won 13 straight league titles and 4 straight Champions League's. They scored 89 goals and allowed only 6 in 22 matches this season, going 20-2-0 and 62 points, and PSG were still hot on their tail with 57. With a core of players playing with one another week in week out, this is a definite positive heading into the tournament\\n\\n\\n- **Their Style of Play**\\nFrance are no one-dimensional team, being able to attack in a number of ways, with a particular emphasis on attacking the wings and overloading one side to make space in the middle to get to their goal scorers. The left overload is one to be particularly terrified of, as Henry drifts out to the channels to support an overlapping Majri, who is one of the most technically gifted defenders at the tournament, coupled with Diani and Thiney, a combination of very high skilled players that teams will be forced to double up with, leaving the deadly Le Sommer room to manuever in and around the box\\n\\nOther players to look out for include Amel Majri (LB) , a converted midfielder turned fullback, and with her technical ability making her one of if not the best in her position, Delphine Cascarino (RW) a typical young tricky winger who loves a little stepover or two, and the experienced 33 year old Ga\\u00ebtane Thiney (AM), who has 155 caps and 58 goals for Les Blues\\n\\n---\\n\\n[South Korea](#bar-10-red) , via u/loser0001\\n\\n#[](#icon-info-big) About\\n\\n- **Nickname(s)**: Taegeuk Ladies\\n\\n- **Appearances**: 2\\n\\n- **Best Finish**: Round of 16 (2015)\\n\\n- **FIFA Ranking**: 14\\n\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nSouth Korea women's team played their first international in 1990, when they were unsurprisingly hammered by Japan in what remains their heaviest-ever defeat. Thankfully things have improved since then. In more recent history, they finished runners-up in their group at the 2015 World Cup, behind Brazil but ahead of Costa Rica and Spain; in the Round of 16 they were knocked out by future 2019 opponents France.\\n\\n**Route to the 2019 World Cup**\\n\\nTL;DR: North South Korea best Korea\\n\\nI'm sure there are a few stories in this World Cup of teams qualifying against the odds, but South Korea's may be up there, amid unusual circumstances.\\n\\nFor background, the Asian Football Confederation (AFC) has 5 spots for the World Cup. Qualification is done via the AFC's regional tournament - the Asian Cup - held every four years, in the year before the World Cup. That makes qualification for the Asian Cup doubly important - miss out on qualifying for the Asian Cup, and you absolutely won't be going to the World Cup.\\n\\nIn the 2017 Asian Cup qualifying, South Korea were the top seeds ahead of the group draw (Japan, Australia, and China were the 1-2-3 of the previous Asian Cup and so did not participate in qualifying). Rather than the standard home and away fixtures, all group games are played in a selected 'host nation' with just 2 or 3 days rest in between games. Only the group winner qualifies for the Asian Cup proper.\\n\\nSouth Korea were drawn in a group with North Korea, then ranked #10 in the world, 7 places above them in the FIFA rankings. To make matters worse, North Korea were the selected host nation and would be playing all games on home soil. Unlucky to say the least, but how did this happen if South Korea were the top seeds?\\nFollowing the North Korean doping scandal in 2011, North Korea were banned from participating in the 2015 World Cup, and the 2014 Asian Cup (and qualifying). Because they hadn't taken part in the previous Asian Cup at all, they had the lowest seeding, being drawn from pot 5.\\n\\nBoth North and South Korea won their early group games comfortably. For the probable group-deciding match against each other, I could find exactly two highlights videos, corresponding to the respective North and South Korean broadcasts of the match. The South Korean source has an interesting camera angle but I recommend watching just the start to see the atmosphere created by a few tens of thousand of well-co-ordinated North Korean fans (attendance was reported to be 42,500). The North Korean source is in some ways much better - it has replays, alternate angles, and commentary - but the video quality makes it look like it's from a broadcast in the 90's. If you want to watch this one, the goals are at 29:00 and 51:20. There's also a penalty given and saved starting from 6:00. The match finished 1-1.\\n\\nThose were the only goals that either Korea would concede, and in the end it was South Korea that topped the group with a goal difference of +20 to North Korea's +17.\\n\\nIn the 2018 Asian Cup South Korea were once again slightly unlucky with their group draw, finding themselves with both Australia and Japan. They drew against both and finished level on points with both, but found themselves in 3rd place based on goal difference and goals scored. Thankfully this was enough to get them to a play-off against Phillipines for that last World Cup spot, whom they dispatched 5-0.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\nThe majority of the national team play their club football in the domestic WK League, with two playing in England's WSL and one in Japan. Incheon Red Angels are the dominant force in Korea, having won the past 6 league titles and are on course to make that 7 this season.\\n\\nThe team has a handful of players who were part of the U-17 World Cup winning squad from 2010.\\n\\n**Manager**: Yoon Deok-yeo (South Korea)\\n\\n**Goalkeepers:** Kang Ga-ae (Gumi), Jung Bo-ram (Hwacheon), \\tKim Min-jeong (Incheon)\\n\\n**Defenders:** Kim Hye-ri (Incheon), Shin Dam-yeong (Incheon), Lim Seon-joo (Incheon), Lee Eun-mi (Suwon), Kim Do-yeon (Incheon), Jang Sel-gi (Incheon), Jeong Yeong-a (Gyeonju), Hwang Bo-ram (Hwacheon)\\n\\n**Midfielders:** Lee Young-ju (Incheon), Kang Yu-mi (Hwacheon), Lee So-dam (Incheon), Moon Mi-ra (Suwon), Cho So-hyun (West Ham), Lee Min-a (INAC Kobe), Kang Chae-rim (Incheon)\\n\\n**Forwards:** Jung Seol-bin (Incheon), Ji So-yun (Chelsea), Lee Geum-min (Gyeonju), Yeo Min-ji (Suwon), Son Hwa-yeon (Changnyeon)\\n\\n#[](#icon-whistle-big) [Potential Starting 11](https://i.imgur.com/ejiZpWV.jpg)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**[Ji So-yun](http://photo.hankooki.com/newsphoto/v001/2019/04/09/holic20190409183756_P_02_C_1.jpg)**: Korean prodigy - youngest senior national team debut and goal, both at the age of 15, and highest ever goal scorer (54 in 116 appearances). Unusual in that she did not start her senior club career in Korea, being signed early by INAC Kobe Leonessa. In her 3 years in Japan she won three League titles, and just before leaving for Chelsea she managed to score against them in the final of the International Women's Club Championship (Japan's attempt to get a Club World Cup going). Since moving to England with Chelsea, she has added another few titles to the collection, and is a regular nominee and occasional winner for PFA player of the year. Has excellent dead ball skills and is just generally a class above. Is hugely important to the team - more so than Son Heung-min is to the men's team.\\n\\n**[Cho So-hyun](https://img.sbs.co.kr/newimg/news/20181229/201266238_1280.jpg)**: Korea's captain and most capped player ever with 121 appearances. Spent the majority of her career with Incheon in the WK League, but in the past few years has played in Japan, Norway, and signed for West Ham at the start of 2019. Usually plays as DM between the defensive and midfield lines. The coach has sometimes started her in a CB position for extra reliability, but midfield is her natural position.\\n\\n---\\n\\n\\n#[](#icon-discuss-big) Points of Discussion\\n\\n - **Norway**\\n\\nThe main point of discussion is trying to work out how good this South Korean team really is. They didn't actually lose a single game during qualifying, drawing with teams who on paper were much better - North Korea, Australia, and Japan. This has seen their FIFA ranking steadily rise, and I'm not sure if it has settled on its 'true' value yet. Progressing to the group stage again is the target for this team, and to do that, picking up points against Norway is probably required. To get a win against Norway and take the 2nd spot (barring any other upsets in the group) would be enough to label this World Cup a success.\\n\\nThe focus on Norway is evident in their pre-tournament friendlies, as they arranged two matches against Iceland and two against Sweden under the assumption that the Northern European teams will have a similar physicality to their game. In the first game against Iceland, Korea were dominant, and yet lost 3-2 as Iceland scored with their only 3 attempts on goal (to Korea's 22 shots), leading the coach to rather publicly bemoan the state of his goalkeepers and defence. At least in the goalkeeper department, his hand has been forced as veteran keeper Kim Jung-mi suffered an Achilles tendon injury in training.\\n\\n - **Future retirements?**\\n\\n\\nThis is now just my personal speculation, but the two current stars Ji So-yun and Cho So-hyun are now 28 and 30 respectively, and while they may still play in another World Cup, they also may not. With these two being so important to the team, could this be the peak of this generation of players? A lot of the current core of players are hovering around 26/27 years old, standout fullback Jang Sel-gi (KFA player of the year 2018) is 25. If South Korea won't be fielding a team of 30-year-olds in 4 years time, the team will look very different, and it's not clear who the young rising stars are now.\\n\\n---\\n\\n[Norway](#bar-10-red) , via u/Crusarius28\\n\\n#[](#icon-info-big) About\\n\\n- **Appearances**: 7 (All Editions)\\n\\n- **Best Finish**: Champions (1995)\\n\\n- **FIFA Ranking**: 12\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nFormer World and Olympic Champions Norway have fallen from power in the past decade. The team comes to France with big expectations after having qualified for another World Cup in dramatic fashion. The Norwegians left it all to the last match-day and had to earn a hard fought victory over EURO Champions Netherlands to earn automatic qualification.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager**: Martin Sjogren (Sweden)\\n\\n**Goalkeepers:** Ingrid Hjelmseth (Stabaek), Cecilie Fiskerstrand (LSK), Oda Bogstad (Arna-Bjomar)\\n\\n**Defenders:** Ingrid Wold (LSK), Maria Thorisdottir (Chelsea), Stine Hovland (Sandviken), Maren Mjelde (Chelsea), Cecilie Kvamme (Sandviken)\\n\\n**Midfielders:** Synne Hansen (LSK), Vilde Boe Risa (Kopparbergs), Caroline Hansen (Wolfsburg/Barca), Ingrid Engen (LSK), Guro Reiten (LSK), Kristine Minde (Wolfsburg), Frida Maanum (Linkoping), Karina Saevik (Kolbotn)\\n\\n**Forwards:** Elise Thorsnes (LSK), Isabell Herlovsen (Kotbotn), Lisa-Marie Utland (Rosengard), Therese Asland (LSK), amalie Eikeland (Sandviken), Emilie Haavi (LSK), Emilie Nautnes (Arna-Bjonar)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**Caroline Graham Hansen:** Completing a move to Barcelona just weeks before appearing in her first World Cup, Hansen will be Noway's most important player. The 24 yr old is the full midfield package that can control games, deliver pin point passes and score whenever needed. Ruled out of the 2015 World Cup due to a knee injury, she's back and stronger than ever. Forming a team around this future superstar was one of the headaches Coach Sjogren had this year, but it's a good headache to have.\\n\\n**Isabell Herlovsen:** 30 yr old Herlovsen is a constant goal threat. The brunt of all goals scored will be on Herlovsen's shoulders this summer. Her uncanny sense to be at the right place at the right time has paid dividends, including scoring the winner in the decider against the Netherlands. Her finishing skills will be a major key for Norway's progression.\\n\\n---\\n\\n#[](#icon-discuss) Points of Discussion\\n\\n**Turning Experience into Results**\\n\\nNorway are no strangers to winning and a realistic goal this year will be to get a medal. High expectations come from a storied past but following in the footsteps of legends proves no easy task. In terms of quality, Norway aren't able to best the top teams, but are certainly best of the rest and managing to utilize all their experience and hunger to put together performances early on versus Nigeria and France in the toughest qualifying group will be important to building momentum for Norway.\\n\\n**Defense**\\n\\nDefense wins championships, and true to the old adage, Norway's defense will be key. Chelsea duo Mjelde and Thorisd\\u00f3ttir are important in the back but Thorisdottir has missed half the season due to injury and may not be fully fit. Mjelde's responsibilities will extend to organizing the midfield during transitions, even more importantly as she herself likes to get forward and score goals. She's scored 19 goals for Norway from the fullback position thus far.\\n\\n**Ada Hedgerberg**\\n\\nThe world's best female player Ada Hedgerberg has refused to play for Norway since 2017 (think Messi refusing to play for Argentina), and the current team has done well to step up in her absence. While Hedgerberg has taken headlines this summer due to her stance on the treatment of women's footballers in Norway, the team has to continue doing what they've been doing for the past two years and not let any of the new found media attention affect their performances.\\n\\n---\\n[Nigeria](#bar-10-green) , via u/Crusarius28\\n\\n#[](#icon-info-big) About\\n\\n- **Appearances**: 7 (All Editions)\\n\\n- **Best Finish**: Quarter Finals (1999)\\n\\n- **FIFA Ranking**: 38\\n\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nNigeria have dominated Africa with 9 out of 11 Women's African Cup of Nations. But turning continental results into intercontinental ones proves tough, they haven't progressed past the group stages since 1999. Their search for more will be toughened by the hardest group in the World Cup with games versus France, Nigeria and Norway proving a major hurdle.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager**: Thoms Dennerby (Sweden)\\n\\n**Goalkeepers:** Tochukwu Oluehi (Rivers Angels), Chiamaka Nnadozie (Rivers Angels), Alaba Jonathan (Bayelsa Queens)\\n\\n**Defenders:** Osinachi Ohale (Vaxjo), Ngozi Ebere (Arna-Bjomar), Onome Ebi (Henan Huishang), Faith Michael (Pitea), Chidinma Okeke (Robo Queens)\\n\\n**Midfielders:** Amarachi Okoronkwo (Nasarawa Amazons), Evelyn Nwabuoku (Rivers Angels), Rita Chikwelu (Kristianstads), Ngozi Okobi-Okeoghene (Eskilstuna Utd), Halimatu Ayinde (Eskilstuna Utd), oganna Chukwudi (Djurgarden)\\n\\n**Forwards:** Anam Imo (Rosengard), Asisat Oshoala (Barcelona), Desire oparanozie (Guingamp), Chinaza Uchendu (Braga), Uchenna Kanu (Southeastern Fire), Rasheedat Ajibade (Avaldsnes), Francisca Ordega (Shangai), Chinwendu Ihezuo (Henan Huishang), Alice Ogebe (Rivers Angels)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**Asisat Oshoala:** \\u201cSuperzee\\u201d has added Women's African Footballer of the Year award to her title. Three time Women's African Footballer of the year in fact. Her clinical ability in front of goal, raw pace and power put her on the map back in 2014 and now she's leading the line at Barcelona and helping them to their first ever Women's Champions League Final in history.\\n\\n**Onome Ebi:** Playing in China hasn't hampered the 36yr old Nigerian. Her game reading and anticipation makes her a striker's nightmare. Add that to her supreme strength and you have a player that can shut down all but the fastest forwards in the game. Ebi will be representing the Super Eagles for the 5th time this summer.\\n\\n---\\n\\n#[](#icon-discuss) Points of Discussion\\n\\n**Preparation for Tournaments**\\n\\nThe Ladies of Nigeria have been underfunded and their tournament preparations have always been the absolute minimum if non existent. They went 2 full years without playing a game from May 2016 to April 2018, months before the next major tournament. They've fixed that issue this time around and have participated in several tournaments, friendlies and training camps that hopefully give them the push they need to defeat the group stage this time around.\\n\\n**Set Pieces and Defensive Gaps**\\n\\nThe Nigerians play a high defensive line and leave gaps but yet they only conceded 1 goal the entire AFCON tournament in 2018. Plugging those holes are important but recent friendlies and showings at the Algarve Cup exposed a weakness to set pieces as well. Ebi is 36 yrs old and even though her mind is quick, her feet are not and it will be the responsibility of the midfield to plug the gaps and not allow teams to get the ball to their forwards looking to make run behind.\\n\\n**Quick Transitions**\\n\\nThe midfield not only has to cover for gaps but quickly move the ball forward during transitions to the forwards. Nigeria's strengths and speed comes from their star strikers and they'll get the ball at every opportunity. Their top heavy system works when the ball is constantly up the pitch to the final third where their creative offense can shine.\", \"author_fullname\": \"t2_pasw0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"2019 Women's World Cup Group A Profile: France, South Korea, Norway, Nigeria\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwkei5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559621947.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559650215.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-blue\\\"\\u003EFrance\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/BuzzBuzz01\\\"\\u003Eu/BuzzBuzz01\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ENickname(s)\\u003C/strong\\u003E: Les Bleues\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWomen\\u0026#39;s World Cup Appearances\\u003C/strong\\u003E: 4\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: 4th (2001)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 4 (3rd in Europe)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFrance has been building it\\u0026#39;s women\\u0026#39;s football for years on years on years. With parallels to men\\u0026#39;s team (which are addressed in the P.O.D) combined with being the hosts, is expected to at the very least contest in the final. After building up from the ground up year on year on year, this seems the exact right for them to be hosting the World Cup. They\\u0026#39;re excellent in every department, with strong centrebacks who can both play out the back, proven and experienced goal scorers up top, technical midfielders, and creative wingers. France has 12 wins in the last 13 matches since the SheBelievesCup (including 3-1 against Brazil, the USA and Japan and 4-0 against Denmark + one defeat against Germany 0-1). Is this the year that France finally puts it all together to become the first ever country to hold both the men\\u0026#39;s and women\\u0026#39;s World Cups?\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager:\\u003C/strong\\u003E Corinne Diacre (France)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Sarah BOUHADDI (Olympique Lyonnais), Sol\\u00e8ne DURAND (EA Guingamp), Pauline PEYRAUD-MAGNIN (Arsenal)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Julie DEBEVER (EA Guingamp), Sakina KARCHAOUI (Montpellier HSC), Amel MAJRI (Olympique Lyonnais), Griedge MBOCK (Olympique Lyonnais), \\u00c8ve P\\u00c9RISSET (Paris Saint-Germain), Wendie RENARD (Olympique Lyonnais), Marion TORRENT (Montpellier HSC), A\\u00efssatou TOUNKARA (Atl\\u00e9tico Madrid)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Charlotte BILBAULT (Paris FC), \\u00c9lise BUSSAGLIA (Dijon FCO), Ma\\u00e9va CLEMARON (FC Fleury 91), Grace GEYORO (Paris Saint-Germain), Amandine HENRY (Olympique Lyonnais), Ga\\u00ebtane THINEY (Paris FC)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Viviane ASSEYI (Girondins de Bordeaux), Delphine CASCARINO (Olympique Lyonnais), Kadidiatou DIANI (Paris Saint-Germain), Val\\u00e9rie GAUVIN (Montpellier HSC), Emelyne LAURENT (EA Guingamp), Eug\\u00e9nie LE SOMMER (Olympique Lyonnais)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-whistle-big\\\"\\u003E\\u003C/a\\u003E \\u003Ca href=\\\"https://imgur.com/a/hMH9Gy8\\\"\\u003EPotential Starting 11\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Bouhaddi\\n\\n Torrent Renard Mbock Bathy Majri\\n\\n Bussaglia Henry (C)\\n\\n Cascarino Thiney Diani\\n\\n Le Sommer\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cdn-media.rtl.fr/cache/YFtm3Fv-bsG7aM6_D8KqTw/880v587-0/online/image/2018/1228/7796070733_l-attaquante-francaise-eugenie-le-sommer-le-1er-septembre-2018.jpg\\\"\\u003EEug\\u00e9nie Le Sommer (ST):\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELe Sommer usually plays up top as the out and out striker and is without a doubt the star attacking player. With 74 goals in 159 caps, Le Sommer is only 7 goals off of being the country\\u0026#39;s all time top goal scorer. Le Sommer is not simply just some poacher and can score in a multitude of ways, whether with her fox-in-the-box instincts (either her feet or her head), ability to get past defenders with her adept dribbling, or just absolutely lacing one from outside the box, Le Sommer has it all.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=CCC4eK4aEdA\\\"\\u003EHere is a short highlight video of hers\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://c.static-nike.com/a/images/w_960,c_limit,f_auto/x7ycyrbgveskryrkkpyy/athlete-stories-amandine-henry.jpg\\\"\\u003EAmandine Henry (DM)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe 29 year old captain has 83 appearances and 11 goals for the national team. With the ability to launch a belter outside the box, Henry is the calm metronome in midfield for France. If you were to compare her to a player it would have to be a prime Sergio Busquets. A very one-touch oriented style of play, Henry uses her calmness and series of fakes and feints to swivel and alleviate pressure with ease. And if she does somehow manage to lose the ball, she\\u0026#39;s quick and strong to recover and win it back.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=YMUzaTan7mM\\\"\\u003EHere is a featurette on Henry done by France\\u0026#39;s official YouTube channel\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=ry4Ed25fCu8\\\"\\u003EHere is a Henry highlight video in France\\u0026#39;s 3-1 win over the USA in January\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuite literally the heart of the midfielder and always in the right spot, Henry will play a key role for France. If they do happen to match up against the USA in the quarterfinal if all goes accepted, her matchup against Julie Ertz should definitely be one to watch out for.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.pinimg.com/originals/51/75/7f/51757f3bb7e30e196793fcf928a1e884.jpg\\\"\\u003EWendie Renard (CB)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe former captain, Renard is without a doubt one of the best defenders in the world. At 6\\u0026#39;2\\u0026quot; (188 cm), Renard is one of the biggest and tallest players at the tournament, which makes a particular threat on set pieces in defence and attack, seen with her 12 goals in 26 matches across the league and Champions League with the oh so dominant Lyon. Though don\\u0026#39;t be fooled, Renard is not just a French Gareth McAuley, she also provides an excellent Plan B with her pinpoint long balls from the back. If a team happens to be pressuring France extensively, just get to Renard and she\\u0026#39;ll knock one into the channels or over the top with Bonnucci/van Dijk levels of precision.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss-big\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EThe Seeming Parallels to the Men\\u0026#39;s Team\\u003C/strong\\u003E\\nLet\\u0026#39;s look back at the discussion points surrounding the men\\u0026#39;s team. \\nManaged by a former player, Didier Deschamps for the men\\u0026#39;s and Corinne Diacre for the women, the latter of which became the first woman to manage a men\\u0026#39;s professional football match, when she took charge of Clermont Foot.\\nAbsolutely loaded with talent. experience plus up and coming stars\\nLeft some talent at home to try and fit together players who fit the system, in the case of the men\\u0026#39;s it was Lacazette and with the women\\u0026#39;s it\\u0026#39;s with Division 1 F\\u00e9minine\\u0026#39;s top goalscorer Marie-Antoinette Katoto, who had 22 goals in 22 games at only 20 years old\\nHaven\\u0026#39;t made nearly as far as they should have in previous tournaments and have lots of pressure to turn that around this time around, with the women having more pressure being the hosts\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELyon Dominant\\u003C/strong\\u003E\\nIf they trot out with the expected XI, seven of their starting XI are a part of the Champions League winning Lyon, who are blessed with stars from across the planet. Since Lyon put money into women\\u0026#39;s football quite early on, they\\u0026#39;ve seemed to reap the benefits immensely. Lyon have won 13 straight league titles and 4 straight Champions League\\u0026#39;s. They scored 89 goals and allowed only 6 in 22 matches this season, going 20-2-0 and 62 points, and PSG were still hot on their tail with 57. With a core of players playing with one another week in week out, this is a definite positive heading into the tournament\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ETheir Style of Play\\u003C/strong\\u003E\\nFrance are no one-dimensional team, being able to attack in a number of ways, with a particular emphasis on attacking the wings and overloading one side to make space in the middle to get to their goal scorers. The left overload is one to be particularly terrified of, as Henry drifts out to the channels to support an overlapping Majri, who is one of the most technically gifted defenders at the tournament, coupled with Diani and Thiney, a combination of very high skilled players that teams will be forced to double up with, leaving the deadly Le Sommer room to manuever in and around the box\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EOther players to look out for include Amel Majri (LB) , a converted midfielder turned fullback, and with her technical ability making her one of if not the best in her position, Delphine Cascarino (RW) a typical young tricky winger who loves a little stepover or two, and the experienced 33 year old Ga\\u00ebtane Thiney (AM), who has 155 caps and 58 goals for Les Blues\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-red\\\"\\u003ESouth Korea\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/loser0001\\\"\\u003Eu/loser0001\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ENickname(s)\\u003C/strong\\u003E: Taegeuk Ladies\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 2\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Round of 16 (2015)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 14\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ESouth Korea women\\u0026#39;s team played their first international in 1990, when they were unsurprisingly hammered by Japan in what remains their heaviest-ever defeat. Thankfully things have improved since then. In more recent history, they finished runners-up in their group at the 2015 World Cup, behind Brazil but ahead of Costa Rica and Spain; in the Round of 16 they were knocked out by future 2019 opponents France.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERoute to the 2019 World Cup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETL;DR: North South Korea best Korea\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sure there are a few stories in this World Cup of teams qualifying against the odds, but South Korea\\u0026#39;s may be up there, amid unusual circumstances.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor background, the Asian Football Confederation (AFC) has 5 spots for the World Cup. Qualification is done via the AFC\\u0026#39;s regional tournament - the Asian Cup - held every four years, in the year before the World Cup. That makes qualification for the Asian Cup doubly important - miss out on qualifying for the Asian Cup, and you absolutely won\\u0026#39;t be going to the World Cup.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the 2017 Asian Cup qualifying, South Korea were the top seeds ahead of the group draw (Japan, Australia, and China were the 1-2-3 of the previous Asian Cup and so did not participate in qualifying). Rather than the standard home and away fixtures, all group games are played in a selected \\u0026#39;host nation\\u0026#39; with just 2 or 3 days rest in between games. Only the group winner qualifies for the Asian Cup proper.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESouth Korea were drawn in a group with North Korea, then ranked #10 in the world, 7 places above them in the FIFA rankings. To make matters worse, North Korea were the selected host nation and would be playing all games on home soil. Unlucky to say the least, but how did this happen if South Korea were the top seeds?\\nFollowing the North Korean doping scandal in 2011, North Korea were banned from participating in the 2015 World Cup, and the 2014 Asian Cup (and qualifying). Because they hadn\\u0026#39;t taken part in the previous Asian Cup at all, they had the lowest seeding, being drawn from pot 5.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth North and South Korea won their early group games comfortably. For the probable group-deciding match against each other, I could find exactly two highlights videos, corresponding to the respective North and South Korean broadcasts of the match. The South Korean source has an interesting camera angle but I recommend watching just the start to see the atmosphere created by a few tens of thousand of well-co-ordinated North Korean fans (attendance was reported to be 42,500). The North Korean source is in some ways much better - it has replays, alternate angles, and commentary - but the video quality makes it look like it\\u0026#39;s from a broadcast in the 90\\u0026#39;s. If you want to watch this one, the goals are at 29:00 and 51:20. There\\u0026#39;s also a penalty given and saved starting from 6:00. The match finished 1-1.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThose were the only goals that either Korea would concede, and in the end it was South Korea that topped the group with a goal difference of +20 to North Korea\\u0026#39;s +17.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the 2018 Asian Cup South Korea were once again slightly unlucky with their group draw, finding themselves with both Australia and Japan. They drew against both and finished level on points with both, but found themselves in 3rd place based on goal difference and goals scored. Thankfully this was enough to get them to a play-off against Phillipines for that last World Cup spot, whom they dispatched 5-0.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EThe majority of the national team play their club football in the domestic WK League, with two playing in England\\u0026#39;s WSL and one in Japan. Incheon Red Angels are the dominant force in Korea, having won the past 6 league titles and are on course to make that 7 this season.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe team has a handful of players who were part of the U-17 World Cup winning squad from 2010.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Yoon Deok-yeo (South Korea)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Kang Ga-ae (Gumi), Jung Bo-ram (Hwacheon), Kim Min-jeong (Incheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Kim Hye-ri (Incheon), Shin Dam-yeong (Incheon), Lim Seon-joo (Incheon), Lee Eun-mi (Suwon), Kim Do-yeon (Incheon), Jang Sel-gi (Incheon), Jeong Yeong-a (Gyeonju), Hwang Bo-ram (Hwacheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Lee Young-ju (Incheon), Kang Yu-mi (Hwacheon), Lee So-dam (Incheon), Moon Mi-ra (Suwon), Cho So-hyun (West Ham), Lee Min-a (INAC Kobe), Kang Chae-rim (Incheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Jung Seol-bin (Incheon), Ji So-yun (Chelsea), Lee Geum-min (Gyeonju), Yeo Min-ji (Suwon), Son Hwa-yeon (Changnyeon)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-whistle-big\\\"\\u003E\\u003C/a\\u003E \\u003Ca href=\\\"https://i.imgur.com/ejiZpWV.jpg\\\"\\u003EPotential Starting 11\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"http://photo.hankooki.com/newsphoto/v001/2019/04/09/holic20190409183756_P_02_C_1.jpg\\\"\\u003EJi So-yun\\u003C/a\\u003E\\u003C/strong\\u003E: Korean prodigy - youngest senior national team debut and goal, both at the age of 15, and highest ever goal scorer (54 in 116 appearances). Unusual in that she did not start her senior club career in Korea, being signed early by INAC Kobe Leonessa. In her 3 years in Japan she won three League titles, and just before leaving for Chelsea she managed to score against them in the final of the International Women\\u0026#39;s Club Championship (Japan\\u0026#39;s attempt to get a Club World Cup going). Since moving to England with Chelsea, she has added another few titles to the collection, and is a regular nominee and occasional winner for PFA player of the year. Has excellent dead ball skills and is just generally a class above. Is hugely important to the team - more so than Son Heung-min is to the men\\u0026#39;s team.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"https://img.sbs.co.kr/newimg/news/20181229/201266238_1280.jpg\\\"\\u003ECho So-hyun\\u003C/a\\u003E\\u003C/strong\\u003E: Korea\\u0026#39;s captain and most capped player ever with 121 appearances. Spent the majority of her career with Incheon in the WK League, but in the past few years has played in Japan, Norway, and signed for West Ham at the start of 2019. Usually plays as DM between the defensive and midfield lines. The coach has sometimes started her in a CB position for extra reliability, but midfield is her natural position.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss-big\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ENorway\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThe main point of discussion is trying to work out how good this South Korean team really is. They didn\\u0026#39;t actually lose a single game during qualifying, drawing with teams who on paper were much better - North Korea, Australia, and Japan. This has seen their FIFA ranking steadily rise, and I\\u0026#39;m not sure if it has settled on its \\u0026#39;true\\u0026#39; value yet. Progressing to the group stage again is the target for this team, and to do that, picking up points against Norway is probably required. To get a win against Norway and take the 2nd spot (barring any other upsets in the group) would be enough to label this World Cup a success.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe focus on Norway is evident in their pre-tournament friendlies, as they arranged two matches against Iceland and two against Sweden under the assumption that the Northern European teams will have a similar physicality to their game. In the first game against Iceland, Korea were dominant, and yet lost 3-2 as Iceland scored with their only 3 attempts on goal (to Korea\\u0026#39;s 22 shots), leading the coach to rather publicly bemoan the state of his goalkeepers and defence. At least in the goalkeeper department, his hand has been forced as veteran keeper Kim Jung-mi suffered an Achilles tendon injury in training.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFuture retirements?\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThis is now just my personal speculation, but the two current stars Ji So-yun and Cho So-hyun are now 28 and 30 respectively, and while they may still play in another World Cup, they also may not. With these two being so important to the team, could this be the peak of this generation of players? A lot of the current core of players are hovering around 26/27 years old, standout fullback Jang Sel-gi (KFA player of the year 2018) is 25. If South Korea won\\u0026#39;t be fielding a team of 30-year-olds in 4 years time, the team will look very different, and it\\u0026#39;s not clear who the young rising stars are now.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-red\\\"\\u003ENorway\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/Crusarius28\\\"\\u003Eu/Crusarius28\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 7 (All Editions)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Champions (1995)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 12\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFormer World and Olympic Champions Norway have fallen from power in the past decade. The team comes to France with big expectations after having qualified for another World Cup in dramatic fashion. The Norwegians left it all to the last match-day and had to earn a hard fought victory over EURO Champions Netherlands to earn automatic qualification.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Martin Sjogren (Sweden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Ingrid Hjelmseth (Stabaek), Cecilie Fiskerstrand (LSK), Oda Bogstad (Arna-Bjomar)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Ingrid Wold (LSK), Maria Thorisdottir (Chelsea), Stine Hovland (Sandviken), Maren Mjelde (Chelsea), Cecilie Kvamme (Sandviken)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Synne Hansen (LSK), Vilde Boe Risa (Kopparbergs), Caroline Hansen (Wolfsburg/Barca), Ingrid Engen (LSK), Guro Reiten (LSK), Kristine Minde (Wolfsburg), Frida Maanum (Linkoping), Karina Saevik (Kolbotn)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Elise Thorsnes (LSK), Isabell Herlovsen (Kotbotn), Lisa-Marie Utland (Rosengard), Therese Asland (LSK), amalie Eikeland (Sandviken), Emilie Haavi (LSK), Emilie Nautnes (Arna-Bjonar)\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECaroline Graham Hansen:\\u003C/strong\\u003E Completing a move to Barcelona just weeks before appearing in her first World Cup, Hansen will be Noway\\u0026#39;s most important player. The 24 yr old is the full midfield package that can control games, deliver pin point passes and score whenever needed. Ruled out of the 2015 World Cup due to a knee injury, she\\u0026#39;s back and stronger than ever. Forming a team around this future superstar was one of the headaches Coach Sjogren had this year, but it\\u0026#39;s a good headache to have.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EIsabell Herlovsen:\\u003C/strong\\u003E 30 yr old Herlovsen is a constant goal threat. The brunt of all goals scored will be on Herlovsen\\u0026#39;s shoulders this summer. Her uncanny sense to be at the right place at the right time has paid dividends, including scoring the winner in the decider against the Netherlands. Her finishing skills will be a major key for Norway\\u0026#39;s progression.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETurning Experience into Results\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENorway are no strangers to winning and a realistic goal this year will be to get a medal. High expectations come from a storied past but following in the footsteps of legends proves no easy task. In terms of quality, Norway aren\\u0026#39;t able to best the top teams, but are certainly best of the rest and managing to utilize all their experience and hunger to put together performances early on versus Nigeria and France in the toughest qualifying group will be important to building momentum for Norway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefense\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDefense wins championships, and true to the old adage, Norway\\u0026#39;s defense will be key. Chelsea duo Mjelde and Thorisd\\u00f3ttir are important in the back but Thorisdottir has missed half the season due to injury and may not be fully fit. Mjelde\\u0026#39;s responsibilities will extend to organizing the midfield during transitions, even more importantly as she herself likes to get forward and score goals. She\\u0026#39;s scored 19 goals for Norway from the fullback position thus far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAda Hedgerberg\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe world\\u0026#39;s best female player Ada Hedgerberg has refused to play for Norway since 2017 (think Messi refusing to play for Argentina), and the current team has done well to step up in her absence. While Hedgerberg has taken headlines this summer due to her stance on the treatment of women\\u0026#39;s footballers in Norway, the team has to continue doing what they\\u0026#39;ve been doing for the past two years and not let any of the new found media attention affect their performances.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-green\\\"\\u003ENigeria\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/Crusarius28\\\"\\u003Eu/Crusarius28\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 7 (All Editions)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Quarter Finals (1999)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 38\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ENigeria have dominated Africa with 9 out of 11 Women\\u0026#39;s African Cup of Nations. But turning continental results into intercontinental ones proves tough, they haven\\u0026#39;t progressed past the group stages since 1999. Their search for more will be toughened by the hardest group in the World Cup with games versus France, Nigeria and Norway proving a major hurdle.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Thoms Dennerby (Sweden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Tochukwu Oluehi (Rivers Angels), Chiamaka Nnadozie (Rivers Angels), Alaba Jonathan (Bayelsa Queens)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Osinachi Ohale (Vaxjo), Ngozi Ebere (Arna-Bjomar), Onome Ebi (Henan Huishang), Faith Michael (Pitea), Chidinma Okeke (Robo Queens)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Amarachi Okoronkwo (Nasarawa Amazons), Evelyn Nwabuoku (Rivers Angels), Rita Chikwelu (Kristianstads), Ngozi Okobi-Okeoghene (Eskilstuna Utd), Halimatu Ayinde (Eskilstuna Utd), oganna Chukwudi (Djurgarden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Anam Imo (Rosengard), Asisat Oshoala (Barcelona), Desire oparanozie (Guingamp), Chinaza Uchendu (Braga), Uchenna Kanu (Southeastern Fire), Rasheedat Ajibade (Avaldsnes), Francisca Ordega (Shangai), Chinwendu Ihezuo (Henan Huishang), Alice Ogebe (Rivers Angels)\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAsisat Oshoala:\\u003C/strong\\u003E \\u201cSuperzee\\u201d has added Women\\u0026#39;s African Footballer of the Year award to her title. Three time Women\\u0026#39;s African Footballer of the year in fact. Her clinical ability in front of goal, raw pace and power put her on the map back in 2014 and now she\\u0026#39;s leading the line at Barcelona and helping them to their first ever Women\\u0026#39;s Champions League Final in history.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EOnome Ebi:\\u003C/strong\\u003E Playing in China hasn\\u0026#39;t hampered the 36yr old Nigerian. Her game reading and anticipation makes her a striker\\u0026#39;s nightmare. Add that to her supreme strength and you have a player that can shut down all but the fastest forwards in the game. Ebi will be representing the Super Eagles for the 5th time this summer.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPreparation for Tournaments\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Ladies of Nigeria have been underfunded and their tournament preparations have always been the absolute minimum if non existent. They went 2 full years without playing a game from May 2016 to April 2018, months before the next major tournament. They\\u0026#39;ve fixed that issue this time around and have participated in several tournaments, friendlies and training camps that hopefully give them the push they need to defeat the group stage this time around.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESet Pieces and Defensive Gaps\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Nigerians play a high defensive line and leave gaps but yet they only conceded 1 goal the entire AFCON tournament in 2018. Plugging those holes are important but recent friendlies and showings at the Algarve Cup exposed a weakness to set pieces as well. Ebi is 36 yrs old and even though her mind is quick, her feet are not and it will be the responsibility of the midfield to plug the gaps and not allow teams to get the ball to their forwards looking to make run behind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick Transitions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe midfield not only has to cover for gaps but quickly move the ball forward during transitions to the forwards. Nigeria\\u0026#39;s strengths and speed comes from their star strikers and they\\u0026#39;ll get the ball at every opportunity. Their top heavy system works when the ball is constantly up the pitch to the final third where their creative offense can shine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?auto=webp\\u0026s=8536a1bab8642c35f8f8ce6ff0d2c225f742f0df\", \"width\": 431, \"height\": 536}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5222659d4531a310385f7ad45a6a1bee0807dcf5\", \"width\": 108, \"height\": 134}, {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b0a822a359f7492a7b1263a92b9767518ec53b66\", \"width\": 216, \"height\": 268}, {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c3be09db027cef0fcc3a3b228935acf88e5d6893\", \"width\": 320, \"height\": 397}], \"variants\": {}, \"id\": \"dYE-hpAiNCPKZeSNCQxv6JlVTRpt6ovh8CLxMWBANYM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwkei5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"riskyrofl\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwkei5/2019_womens_world_cup_group_a_profile_france/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwkei5/2019_womens_world_cup_group_a_profile_france/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559621415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TEST TELATT ITEAT - DOSEA ALRJ AR A A ER A REEE ARE A? AERE?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bwhpb9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwhpb9\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Vkisu9g-VZo3thxeoTEh7_sHe6pgucV1XMkDjc08RY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559633760.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?auto=webp\\u0026s=3e2a10eb30c9a5b77b30a241735e3e8b8e1cfccc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a22b052dedffebf783ba26dae6003cd3c55a250\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcf039e2e79b58782dfd536386b50fa8b338f1d2\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=77375886fab998dde88f536da5c4503437f4c152\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"bdEz7hRKzTsVVn3Vyr7qozX0OUrbARsbBsUoqJKdw7M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwhpb9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwhpb9/test_telatt_iteat_dosea_alrj_ar_a_a_er_a_reee_are/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\", \"subreddit_subscribers\": 703, \"created_utc\": 1559604960.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://i.redd.it/n6wnbnoq68231.png\\n\\nWelcome to Eternal Aegis! We are a close-knit clan dedicated to keeping a casual, fun, and welcoming atmosphere. We strive to give our members the best clan experience Warframe has to offer. If you are interested in joining, please leave a comment below or message one of us in game!\\u00a0Here is our official Warframe clan group which you can join now:\\u00a0[https://forums.warframe.com/clubs/1730-eternal-aegis/](https://forums.warframe.com/clubs/1730-eternal-aegis/)\\n\\n# What We Offer\\n\\n* A very active, friendly, and helpful community\\n* An international community with members from all over the world. Most of our players are based in North America and Western Europe\\n* Large and well-designed dojo\\u00a0[Photos of our Dojo](https://imgur.com/a/h04Gk3N)\\n* 100% Completed Clan research\\n* Casually Competitive - we do well on leaderboards, and have no minimum quota for our members.\\u00a0[http://content.warframe.com/dynamic/hostileMergers.php](http://content.warframe.com/dynamic/hostileMergers.php)\\n* Eidolon hunting, Arbitrations, and other types of content are regularly hosted\\n* We are a Moon clan with over 980+ members at any time\\n* An organized discord server with alerts, guides, announcements, and more!\\n* We frequently host clan events, contests, and giveaways\\n* We are a member of the Moonlapse Alliance, a close-knit alliance with friendly clans.\\n\\n# Our Rules\\n\\n* Be polite and respect each other. Harassment, sexism, racism, bullying, and excessive profanity will not be tolerated.\\n* No Sexual, political, or obscene discussions in clan chat or discord.\\n* Our inactivity policy is 10\\u00a0days (members gone for longer can contact a mod).\\n* Currently, we require new recruits to be MR12+ (But friends of clanmates are only required to be MR8+).\\n\\n# Join Now!\\n\\nWe will need interested Tenno to comment below with the following information:\\n\\n1. Your in-game name\\n2. Your Mastery Rank (Note: Mastery Rank MR12+ is required but friends can join at MR 8+)\\n3. Your Region\\u00a0\\n4. The length of time you have been playing the game for\\n5. What you are looking for in a clan\\n6. How often are you able to play during a typical week\\n7. Have you been in a clan before? If so, which ones and why did you choose to leave?\\n\\nWe will respond as soon as possible! Reminder:\\u00a0Make sure you exit your clan before leaving a comment.\\n\\n# Contact List:\\n\\n\\\\--Aegis--Dandy\\u00a0| Nightressa | --Aegis--Paikoo | -OatGod- | Bhesus | --Aegis--Excalibur64 | Myzhari |\\u00a0Valkor | --Aegis--Dragunova2018 | Komi |\\u00a0Sebas\\\\_Sal12| --Aegis--Tetsuni | JohnSaint | ChaoticJiggles | Renzashi\\ufeff\", \"author_fullname\": \"t2_1gb0jvk5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[INT][PC][Clan] Eternal Aegis | 100% Research | 990+ Members | 10 Day Inactivity | MR12+ Req. | Complete Dojo | Active Discord | Organized Clan Events | Moonlapse Alliance\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"n6wnbnoq68231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 98, \"x\": 600, \"u\": \"https://i.redd.it/n6wnbnoq68231.png\"}, \"m\": \"image/png\", \"id\": \"n6wnbnoq68231\"}}, \"name\": \"t3_bwhl33\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/AdMg7EUd91sNRMaEDemva54vXtcz7xPbLvAxLgMqUVg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559633092.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/n6wnbnoq68231.png\\\"\\u003Ehttps://i.redd.it/n6wnbnoq68231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWelcome to Eternal Aegis! We are a close-knit clan dedicated to keeping a casual, fun, and welcoming atmosphere. We strive to give our members the best clan experience Warframe has to offer. If you are interested in joining, please leave a comment below or message one of us in game!\\u00a0Here is our official Warframe clan group which you can join now:\\u00a0\\u003Ca href=\\\"https://forums.warframe.com/clubs/1730-eternal-aegis/\\\"\\u003Ehttps://forums.warframe.com/clubs/1730-eternal-aegis/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EWhat We Offer\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EA very active, friendly, and helpful community\\u003C/li\\u003E\\n\\u003Cli\\u003EAn international community with members from all over the world. Most of our players are based in North America and Western Europe\\u003C/li\\u003E\\n\\u003Cli\\u003ELarge and well-designed dojo\\u00a0\\u003Ca href=\\\"https://imgur.com/a/h04Gk3N\\\"\\u003EPhotos of our Dojo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E100% Completed Clan research\\u003C/li\\u003E\\n\\u003Cli\\u003ECasually Competitive - we do well on leaderboards, and have no minimum quota for our members.\\u00a0\\u003Ca href=\\\"http://content.warframe.com/dynamic/hostileMergers.php\\\"\\u003Ehttp://content.warframe.com/dynamic/hostileMergers.php\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEidolon hunting, Arbitrations, and other types of content are regularly hosted\\u003C/li\\u003E\\n\\u003Cli\\u003EWe are a Moon clan with over 980+ members at any time\\u003C/li\\u003E\\n\\u003Cli\\u003EAn organized discord server with alerts, guides, announcements, and more!\\u003C/li\\u003E\\n\\u003Cli\\u003EWe frequently host clan events, contests, and giveaways\\u003C/li\\u003E\\n\\u003Cli\\u003EWe are a member of the Moonlapse Alliance, a close-knit alliance with friendly clans.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EOur Rules\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBe polite and respect each other. Harassment, sexism, racism, bullying, and excessive profanity will not be tolerated.\\u003C/li\\u003E\\n\\u003Cli\\u003ENo Sexual, political, or obscene discussions in clan chat or discord.\\u003C/li\\u003E\\n\\u003Cli\\u003EOur inactivity policy is 10\\u00a0days (members gone for longer can contact a mod).\\u003C/li\\u003E\\n\\u003Cli\\u003ECurrently, we require new recruits to be MR12+ (But friends of clanmates are only required to be MR8+).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EJoin Now!\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EWe will need interested Tenno to comment below with the following information:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EYour in-game name\\u003C/li\\u003E\\n\\u003Cli\\u003EYour Mastery Rank (Note: Mastery Rank MR12+ is required but friends can join at MR 8+)\\u003C/li\\u003E\\n\\u003Cli\\u003EYour Region\\u00a0\\u003C/li\\u003E\\n\\u003Cli\\u003EThe length of time you have been playing the game for\\u003C/li\\u003E\\n\\u003Cli\\u003EWhat you are looking for in a clan\\u003C/li\\u003E\\n\\u003Cli\\u003EHow often are you able to play during a typical week\\u003C/li\\u003E\\n\\u003Cli\\u003EHave you been in a clan before? If so, which ones and why did you choose to leave?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWe will respond as soon as possible! Reminder:\\u00a0Make sure you exit your clan before leaving a comment.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EContact List:\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E--Aegis--Dandy\\u00a0| Nightressa | --Aegis--Paikoo | -OatGod- | Bhesus | --Aegis--Excalibur64 | Myzhari |\\u00a0Valkor | --Aegis--Dragunova2018 | Komi |\\u00a0Sebas_Sal12| --Aegis--Tetsuni | JohnSaint | ChaoticJiggles | Renzashi\\ufeff\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?auto=webp\\u0026s=e98d685d9fcf12f7f7392b525e415ac027917600\", \"width\": 2560, \"height\": 1440}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=59342af73454d35034c3c2d4f475ac9a0769342f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=33b993e87781a7e2cc16124014a2db665ad1dcf3\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=067ceadbbab70f2e7568b6194ddd308d85bf70f3\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d65ab11bab91d92431c27e891c04d4f39dd66a19\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=92623901f6db2b25568baf6fcaf5db221626276e\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=32b5ff6ab01a5aae5c9bd70cb394bfe77ac67e3b\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"O2SqmsxqqImr7fOGU_I228obe-zxqR6BfpRXHbSRU7s\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwhl33\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"EternalAegisWarframe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwhl33/intpcclan_eternal_aegis_100_research_990_members/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwhl33/intpcclan_eternal_aegis_100_research_990_members/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559604292.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Item #: SCP-4260**\\n\\n**Object Class: Euclid**\\n\\n**Author: Nagiros**\\n\\n\\\"*And with strange aeons even death may die.\\\"*\\n\\nHello SCPDeclassified, Brewsterion here. Today, I wanted to cover [SCP-4260](http://www.scp-wiki.net/scp-4260) at the request of the author and a few users who talked to me about it. So, let's get into it.\\n\\nWe can't get into containment procedures yet, however, as there's something very important at the top of the page.\\n\\n\\u003EThis document has been significantly edited in order to obfuscate the identity of SCP-4260; several addenda have been omitted, and are only available with **Level 5/4260 Clearance**.\\n\\nWell, this is interesting. You would think the omitting of the identity makes it an infohazard, but that's not one of the tags so we can rule that out. What it does tell us is that this thing is extremely important to the Foundation, since basically only the O5s have Level 5 clearance. Let's see what we can tell from this version, though.\\n\\n**Special Containment Procedures**\\n\\nThe first paragraph of the containment procedures isn't too weird, but some sentences do stick out. Area-03 is located 2 kilometers beneath Hong Kong, specifically to contain 4260.\\n\\n\\u003EThe containment chamber housing SCP-4260 has been augmented with a Strayer Density Matrix designed to coalesce and bind its disparate elements.\\n\\nThis is a device we haven't seen before. Disparate elements would imply an anomaly of multiple parts, however we don't seen mentions of components here. Rather this line means that whatever 4260 is, it's greatly spread out over a very large area, similar to SCP-3125, and the Foundation needs a condensed form to contain it.\\n\\n\\u003EMaintenance of the Strayer Density Matrix is integral to SCP-4260's containment and requires a specialized team of technicians and speculative ultraphysicalists.\\n\\nOh boy, new concepts. There's a footnote here that says that ultraphysicalists deal with a science of entities that produce an effect on the universe by simply existing. How this differs from normal reality benders will be explained later, but for now let's say that these things don't try to produce an effect, they just do.\\n\\nThe next sentence explains that there is a Procedure 8917 associated with 4260, and it requires joint operation of three separate MTFs. Gamma-8 uses the Density Matrices to summon 4260. Xi-2 apparently terminates 4260, but don't worry, that will be explained shortly. Tau-900 locates and terminates civilians affected by a successful termination of 4260, and remove evidence Procedure 8917 ever happened. Apparently, terminating 4260 affects people in a specific way. Not to give much away, but Tau-900's nickname is \\\"Deliverance\\\". Just wait and see.\\n\\nIt then goes on to say that Procedure 8917 is considered complete when the following steps have been met:\\n\\n1. SCP-4260 has been successfully terminated.2. The Strayer Density Matrix is fully operational.3. All affected civilians have been located and terminated.4. All evidence of Procedure 8917 has been removed.5. SCP-4260 has been resurrected.\\n\\nWell that's straightforward, if not simple. From what this tells us, between the time 4260 is terminated and brought back, civilians are affected in some way. We don't know how, or what conditions for being affected are, but we'll find out soon. More emphasis is also placed on the Density Matrix, reinforcing that the Foundation needs this, and it once again mentions removing evidence of Procedure 8917 ever happening. Basically, terminating this thing is useful for the Foundation, but it can't stay dead for long, as it has side effects. Alright.\\n\\nThe last line before the description says that the unclassified version is gonna be filled with omissions to hide the identity of 4260. As if we couldn't tell.\\n\\n**Description**\\n\\n\\u003ESCP-4260 refers to the consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. The effect of SCP-4260's existence has been well documented by almost every sapient culture. Termination of SCP-4260 has resulted in the neutralization of its primary anomalous effect until its resurrection during Procedure 8917.\\n\\nAlright, so 4260 refers to the consciousness of an entity that is present throughout the entire universe. The effect of it's existence has been documented by every sapient culture. It's kind of implied this includes aliens, which narrows it down. It's not some sort of emotional construct, it's something that effects everything, like time or gravity. Terminating it neutralizes the effect until resurrection.\\n\\nThat's it. That's the entire description. Yeah, omissions is a bit of an understatement. But there's another addendum here.\\n\\n**Addendum.4260.1**\\n\\nIt's a list of all activations of Procedure 8917. Let's try to get some answers.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 1999 \\n\\u003E \\n\\u003EMethod: Fatal puncture wounds and blood loss, administered by MTF Xi-2. \\n\\u003E \\n\\u003EReason: A massive containment failure at [Site-62C](http://www.scp-wiki.net/scp-579). \\n\\u003E \\n\\u003EDuration:110 seconds \\n\\u003E \\n\\u003EAffected: 3 civilians \\n\\u003E \\n\\u003EStatus: Recontained\\n\\nA crosslink to SCP-579, an old article where the description is literally \\\\[DATA EXPUNGED\\\\]. Not truly linked to this article, but it tells us that 4260 was killed because of a breach of some terrifyingly dangerous entity.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2003 \\n\\u003E \\n\\u003EMethod: Blunt force trauma by a member of MTF Xi-2. \\n\\u003E \\n\\u003EReason: The nuclear bombardment of Site-001. \\n\\u003E \\n\\u003EDuration: 25 seconds \\n\\u003E \\n\\u003EAffected: 1 civilian \\n\\u003E \\n\\u003EStatus: Recontained. SCP-4260's consciousness replicated and reproduced as *Tantalus.aic*.\\n\\nXi-2 bashed this thing's head in as a rush job while Site-001 was getting nuked, and resurrected them as soon as they could. Interestingly, Tantalus is a Greek mythological figure most famous for his punishment after death. Remember that.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2008 \\n\\u003E \\n\\u003EMethod: Destruction of SCP-4260's hard drive, completed by MTF Xi-2. \\n\\u003E \\n\\u003EReason: An imminent [ZK-Class (\\\"End-of-Reality\\\") Scenario](http://www.scp-wiki.net/scp-2975). \\n\\u003E \\n\\u003EDuration: Indeterminate \\n\\u003E \\n\\u003EAffected: 7,213,426,000 individuals, termination unnecessary. \\n\\u003E \\n\\u003EStatus: Recontained. A copy of *Tantalus.aic* uploaded into an appropriated [Peregrine Series Humanoid Utility Droid](http://www.scp-wiki.net/scp-1360).\\n\\nA crosslink to both SCP-2975, an interactive article meant to represent after-action report of various CK shifts and an almost ZK end of reality, and SCP-1360, one of the earlier Anderson Robotics articles. This one gives us something very vital; this procedure was activated to save the planet from destruction. This gives us as close to an answer as to what Procedure 8917 is for: saving people's asses and letting them skip through destruction easily. The next one is just the same idea with something about O5-6, but the final one is interesting.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2016 \\n\\u003E \\n\\u003EMethod: Incineration, committed by MTF Xi-2 during Experimental Operation \\u201cMany-Crowned Serpent\\u201d. \\n\\u003E \\n\\u003EReason: The insufficiency of SCP-4260's containment procedures. \\n\\u003E \\n\\u003EDuration: 415 seconds \\n\\u003E \\n\\u003EAffected: 10 civilians \\n\\u003E \\n\\u003EStatus: *N/A*\\n\\nUhhh....shit.\\n\\nApparently, they didn't bring 4260 back after this one for this Operation Many-Crowned Serpent. This opens a whole new load of questions. What is Many-Crowned Serpent? Why is 4260 staying dead? Why were the containment procedures insufficient? This iteration doesn't answer them, because it ends here.\\n\\nYou'd assume we're in trouble, but there's a prompt at the bottom of the page. Apparently, we're O5-9, and Iteration Beta of the file, the Level 5 version, is available to us to read. Now, I get if you're confused on why I just went through all of that if it's not the real version. The answer is that some of the information here, such as the times it was used and the purposes of the MTFs, are not present in Iteration Beta. And we needed to know those things before we went into Iteration Beta, as well as know how classified among the Foundation this was. Anyways, let's get into Iteration Beta.\\n\\nI'm gonna skip the containment procedures for this one, as all they tell us is just that Iteration Alpha's containment procedures, the first ones we read, were insufficient and that Operation Many-Crowned Serpent was executed to fix that. As such, this version's technically outdated too, as it doesn't reflect the changes that Operation Many-Crowned Serpent caused to 4260, but we can still use it.\\n\\n**Description 2: Electric Boogaloo**\\n\\n\\u003ESCP-4260 is the collective consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. SCP-4260's existence has resulted in the universally entropic decline of sentient organisms and is the direct cause of any organism's cessation of life functions. \\n\\u003E \\n\\u003E**Note:** \\\"Entropic decline\\\" refers to an organism\\u2019s eventual abatement into infirmity when it achieves an advanced age for its species.\\n\\nIt's Death. Well, really more Entropy than Death, but 4260 is literally Death. We could have probably inferred it from Iteration Alpha, but that document served a different purpose, and it was kind of obvious we were dealing with Death near the end and from the quote I put.\\n\\n\\u003ESCP-4260 itself is subject to its own entropy, and its anomalous influence on the universe has notably diminished in the preceding millennia. It is projected that SCP-4260 will expire by achieving an ultraphysical null-state at approximately 2017 CE. The former containment procedures of SCP-4260 proved both incapable of halting this effect and its primary anomalous trait, although complete physical containment was achieved.\\n\\n*Oh shit.*\\n\\nNow the quote at the top of this declass makes a little more sense, doesn't it? The entropy and decay 4260 inflicts upon the universe hurts itself as well, and death is inescapable. It says that by 2017, 4260's gonna be dead, but if you recall from the Procedure 8917 logs, Operation Many-Crowned Serpent was executed in 2016. Now you see why we looked through those logs.\\n\\nThe next line says that our earlier assumption about Procedure 8917 was correct in it's purpose of saving people. By temporarily killing 4260, they create an Omega-K End Of Death Scenario for long enough to save Foundation personnel or prevent global extinction, both of which we saw in the logs. This also explains why civilians are affected, as they need to take care of people that should have died but didn't during the duration of the Omega-K. ^(Hey didn't you just declass something from End of Death?) This isn't part of the central canon, it's just a reference, so don't worry about the EoD storyline.\\n\\n**Addenda 4260-1 and 4260-2**\\n\\nI'm going to group these two addenda together since they're very closely related. Addendum 1 is just a recovery log of 4260 first being recovered by the Foundation, but it's a bit odd. 4260 willingly manifested itself as a young woman at Site-76 and asked to be contained and medically treated. This is further elaborated in Addendum 2, where we also learn some more about ultraphysical entities, or Intrinsics, as the nickname goes. The Foundation doesn't know much about them, but 4260 has told them a few things, namely that they're not omnipotent, because 4260 came to them to help save it, and that they have no personality traits or goals beyond self-preservation. This desire for self-preservation extends to trying to escape it's own effect, and how this actually ended up letting life exist as a whole. The addendum ends with the statement that Death's dying is both the best and worst news humanity could have.\\n\\nOkay, so basically, Death itself is starting to fade into nothingness while the Foundation keeps killing and resurrecting them to save high-ranking personnel. This seems to be both good and bad news for the Foundation, for obvious reasons. Oh, but what's this? ANOTHER iteration? This one, Iteration Gamma, is apparently pending approval and reflects the changes caused by Operation Many-Crowned Serpent to 4260. Let's check it out and see if we finally get an answer for what Operation Many-Crowned Serpent is. \\n\\n**Special Containment Procedures 3: The Securing**\\n\\nThese containment procedures are similar to the ones from Iteration Alpha, but much stricter. This version of 4260 is locked up in a massive nuclear bunker made to withstand every K-Class Scenario the Foundation knows of, with seven Strayer Density Matrices all around the chamber and as few people as possible staffing the place. If it gets out, O5-1, O5-7, and O5-13 are to be alerted as soon as possible. This thing is even more dangerous that the prior version of 4260, and they don't seem to be planning on using Procedure 8917 on it anytime soon. It also seems to be much stronger than previous 4260, as this version needs seven Density Matrices as opposed to only one being needed for Iteration Alpha. Time to see if the description matches this guess. \\n\\n**Description 3: Describe Harder**\\n\\n\\u003E SCP-4260 is Foundation Administrator Ethan Horowitz, who has undergone considerable physical augmentation as a result of Operation \\\"Many-Crowned Serpent\\\". \\n\\nWell I know the Administrator is often seen as anomalous himself but this is very new. Apparently Operation Many-Crowned Serpent involved doing weird stuff to the Administrator. Collapsibles that follow state that this new 4260 has a large amount of limbs, stands 130 meters tall, can manipulate it's physical form as well, and apparently has the ultraphysical abilities from the old 4260. It's also mentioned that it's more resistant to the Density Matrices, and that if five out of seven Matrices fail, we'll be enjoying a Chi-K Class \\\"Crowning Of Death\\\" scenario, which I'll try to elaborate more on after the upcoming quote. \\n\\n\\u003E The ultraphysical entity previously cataloged as SCP-4260, prior to its neutralization in Operation \\\"Many-Crowned Serpent\\\", exhibited several of these anomalous traits to a more limited degree. After its termination, Foundation Administrator Ethan Horowitz elected to transfer its anomalous properties onto his own person, in accordance with the contractual and ritualistic nature of Operation \\\"Many-Crowned Serpent\\\". \\n\\nFinally, an answer to what Operation Many-Crowned Serpent is. After the old 4260 was finally terminated, their properties were transferred to Horowitz so that we don't have to worry about Death dying anymore. That Chi-K scenario is likely the threat of Death's strength returning to what it was at the beginning of the universe, causing all living beings to die. This fits the name, as crowning implies something good happening to them. Well, good is relative in these circumstances. \\n\\nThere's one final addendum to the article, and I promise it's the last addendum. Let's get through it. \\n\\n**Addendum 4260-1: The Finale**\\n\\nThis addendum, written by Horowitz himself before Operation Many-Crowned Serpent was executed, opens with a restatement of the Foundation's Prime Directives; lock up anomalies, keep them secret, make sure they don't return, and prioritize everything except reality itself below the preservation of life. Things get interesting very quickly after that, though. \\n\\n\\u003E**This is the Subdirective of the Foundation:** to terminate the primary anomalous phenomenon which has plagued life since life\\u2019s conception, or to facilitate the termination thereof. \\n\\u003E \\n\\u003E**This is the prime anomaly:** Death.\\n\\nTitle drop. They just said they hold almost everything above life, and this is proof of that. \\n\\n\\u003E The Subdirective was never meant to be feasible, at least not in the day and age of our founding. We cannot hope to mitigate the disasters that this would result in: overpopulation, species stagnation, and susceptibility to cataclysmic extra-dimensional forces which can only be contained via euthanization of those affected. \\n\\u003E \\n\\u003E Now, over a century later, we could achieve the Subdirective at any moment with only a missive sent to the lead of Amalgamate Force Omicron-45. I suppose it would be marvelous to see: a world without death and infirmity, each person freed from the dread of uncertainty and peril. Maybe, one day, we will find a way to make that world. \\n\\u003E \\n\\u003EUntil such a time, we must secure the perpetual containment of Death. This is the nature of Operation \\u201cMany-Crowned Serpent\\u201d: to fulfill the first steps of the Foundation\\u2019s subdirective. \\n\\u003E \\n\\u003EAs it stands now, Death is a hostile entity intent on its own self-preservation at any cost. We spoke, once, and I began to realize that if it could feel anything at all, it would feel the same fear we must face under its tyranny. We could not save Death from itself; as far as our science has elevated us, there is still so much we do not understand. I told this to SCP-4260, and it smiled. \\\"Administrator,\\\" it said, \\\"How can I die when I will live on through you?\\\" \\n\\u003E \\n\\u003EDeath has struck a deal with us. In all its arcane knowledge, it knows a way to live on after its death: it has chosen me to be its heir. It is a choice between the eternal agony of humanity and a pain suffered only until we know enough to repair our tired species. It is not a choice at all. \\n\\u003E \\n\\u003EOn this day, I will become Death. This last evil I must allow us all to suffer patiently. Be bold, for one day soon, we will have won the battle waged by both us and our ancestors emerging from the primordial soup: the struggle for Life Everlasting.\\n\\nThis gives some more answers. Everything that the Foundation's done and is doing is all for the purpose of facilitating this Subdirective, the end of the threat of Death to all living beings, freeing the world from fear and uncertainty. But then why aren't they just doing that now? \\n\\nWell, have you ever read any tales from the [End Of Death canon?](http://www.scp-wiki.net/end-of-death-hub) There's your answer. When humans are faced with immortality, there's a whole lot of complications. Aging, decay, population, all the other lifeforms not dying. If humans were to all become immortal tomorrow, it wouldn't end well. That's why the Foundation's delaying the Subdirective. They need to find answers to the questions posed by immortality, making sure that when Death is no more, it will be a true paradise, not one with catches and people left out, suffering as the few enjoy true immortality. They're waiting until they have the technology, and then they'll terminate 4260 for good, kicking in an Omega-K that hopefully won't be an issue. Do they like waiting? No. The Subdirective is in their grasp. But they know they have to. \\n\\nAnd thus ends SCP-4260, a tale of the Foundation's ultimate goal and the means to get there. I hope this helped you understand this SCP better. Thank you all for reading, and memento mori.\", \"author_fullname\": \"t2_118qqr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SCP-4260, \\\"The Subdirective\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwfesx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559621697.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EItem #: SCP-4260\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class: Euclid\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor: Nagiros\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Cem\\u003EAnd with strange aeons even death may die.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello SCPDeclassified, Brewsterion here. Today, I wanted to cover \\u003Ca href=\\\"http://www.scp-wiki.net/scp-4260\\\"\\u003ESCP-4260\\u003C/a\\u003E at the request of the author and a few users who talked to me about it. So, let\\u0026#39;s get into it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe can\\u0026#39;t get into containment procedures yet, however, as there\\u0026#39;s something very important at the top of the page.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThis document has been significantly edited in order to obfuscate the identity of SCP-4260; several addenda have been omitted, and are only available with \\u003Cstrong\\u003ELevel 5/4260 Clearance\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell, this is interesting. You would think the omitting of the identity makes it an infohazard, but that\\u0026#39;s not one of the tags so we can rule that out. What it does tell us is that this thing is extremely important to the Foundation, since basically only the O5s have Level 5 clearance. Let\\u0026#39;s see what we can tell from this version, though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first paragraph of the containment procedures isn\\u0026#39;t too weird, but some sentences do stick out. Area-03 is located 2 kilometers beneath Hong Kong, specifically to contain 4260.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe containment chamber housing SCP-4260 has been augmented with a Strayer Density Matrix designed to coalesce and bind its disparate elements.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is a device we haven\\u0026#39;t seen before. Disparate elements would imply an anomaly of multiple parts, however we don\\u0026#39;t seen mentions of components here. Rather this line means that whatever 4260 is, it\\u0026#39;s greatly spread out over a very large area, similar to SCP-3125, and the Foundation needs a condensed form to contain it.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EMaintenance of the Strayer Density Matrix is integral to SCP-4260\\u0026#39;s containment and requires a specialized team of technicians and speculative ultraphysicalists.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOh boy, new concepts. There\\u0026#39;s a footnote here that says that ultraphysicalists deal with a science of entities that produce an effect on the universe by simply existing. How this differs from normal reality benders will be explained later, but for now let\\u0026#39;s say that these things don\\u0026#39;t try to produce an effect, they just do.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next sentence explains that there is a Procedure 8917 associated with 4260, and it requires joint operation of three separate MTFs. Gamma-8 uses the Density Matrices to summon 4260. Xi-2 apparently terminates 4260, but don\\u0026#39;t worry, that will be explained shortly. Tau-900 locates and terminates civilians affected by a successful termination of 4260, and remove evidence Procedure 8917 ever happened. Apparently, terminating 4260 affects people in a specific way. Not to give much away, but Tau-900\\u0026#39;s nickname is \\u0026quot;Deliverance\\u0026quot;. Just wait and see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt then goes on to say that Procedure 8917 is considered complete when the following steps have been met:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ESCP-4260 has been successfully terminated.2. The Strayer Density Matrix is fully operational.3. All affected civilians have been located and terminated.4. All evidence of Procedure 8917 has been removed.5. SCP-4260 has been resurrected.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWell that\\u0026#39;s straightforward, if not simple. From what this tells us, between the time 4260 is terminated and brought back, civilians are affected in some way. We don\\u0026#39;t know how, or what conditions for being affected are, but we\\u0026#39;ll find out soon. More emphasis is also placed on the Density Matrix, reinforcing that the Foundation needs this, and it once again mentions removing evidence of Procedure 8917 ever happening. Basically, terminating this thing is useful for the Foundation, but it can\\u0026#39;t stay dead for long, as it has side effects. Alright.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last line before the description says that the unclassified version is gonna be filled with omissions to hide the identity of 4260. As if we couldn\\u0026#39;t tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 refers to the consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. The effect of SCP-4260\\u0026#39;s existence has been well documented by almost every sapient culture. Termination of SCP-4260 has resulted in the neutralization of its primary anomalous effect until its resurrection during Procedure 8917.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAlright, so 4260 refers to the consciousness of an entity that is present throughout the entire universe. The effect of it\\u0026#39;s existence has been documented by every sapient culture. It\\u0026#39;s kind of implied this includes aliens, which narrows it down. It\\u0026#39;s not some sort of emotional construct, it\\u0026#39;s something that effects everything, like time or gravity. Terminating it neutralizes the effect until resurrection.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s it. That\\u0026#39;s the entire description. Yeah, omissions is a bit of an understatement. But there\\u0026#39;s another addendum here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum.4260.1\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a list of all activations of Procedure 8917. Let\\u0026#39;s try to get some answers.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 1999 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Fatal puncture wounds and blood loss, administered by MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: A massive containment failure at \\u003Ca href=\\\"http://www.scp-wiki.net/scp-579\\\"\\u003ESite-62C\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration:110 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 3 civilians \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EA crosslink to SCP-579, an old article where the description is literally [DATA EXPUNGED]. Not truly linked to this article, but it tells us that 4260 was killed because of a breach of some terrifyingly dangerous entity.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2003 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Blunt force trauma by a member of MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: The nuclear bombardment of Site-001. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: 25 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 1 civilian \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained. SCP-4260\\u0026#39;s consciousness replicated and reproduced as \\u003Cem\\u003ETantalus.aic\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EXi-2 bashed this thing\\u0026#39;s head in as a rush job while Site-001 was getting nuked, and resurrected them as soon as they could. Interestingly, Tantalus is a Greek mythological figure most famous for his punishment after death. Remember that.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2008 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Destruction of SCP-4260\\u0026#39;s hard drive, completed by MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: An imminent \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2975\\\"\\u003EZK-Class (\\u0026quot;End-of-Reality\\u0026quot;) Scenario\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: Indeterminate \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 7,213,426,000 individuals, termination unnecessary. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained. A copy of \\u003Cem\\u003ETantalus.aic\\u003C/em\\u003E uploaded into an appropriated \\u003Ca href=\\\"http://www.scp-wiki.net/scp-1360\\\"\\u003EPeregrine Series Humanoid Utility Droid\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EA crosslink to both SCP-2975, an interactive article meant to represent after-action report of various CK shifts and an almost ZK end of reality, and SCP-1360, one of the earlier Anderson Robotics articles. This one gives us something very vital; this procedure was activated to save the planet from destruction. This gives us as close to an answer as to what Procedure 8917 is for: saving people\\u0026#39;s asses and letting them skip through destruction easily. The next one is just the same idea with something about O5-6, but the final one is interesting.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2016 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Incineration, committed by MTF Xi-2 during Experimental Operation \\u201cMany-Crowned Serpent\\u201d. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: The insufficiency of SCP-4260\\u0026#39;s containment procedures. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: 415 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 10 civilians \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: \\u003Cem\\u003EN/A\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EUhhh....shit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EApparently, they didn\\u0026#39;t bring 4260 back after this one for this Operation Many-Crowned Serpent. This opens a whole new load of questions. What is Many-Crowned Serpent? Why is 4260 staying dead? Why were the containment procedures insufficient? This iteration doesn\\u0026#39;t answer them, because it ends here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;d assume we\\u0026#39;re in trouble, but there\\u0026#39;s a prompt at the bottom of the page. Apparently, we\\u0026#39;re O5-9, and Iteration Beta of the file, the Level 5 version, is available to us to read. Now, I get if you\\u0026#39;re confused on why I just went through all of that if it\\u0026#39;s not the real version. The answer is that some of the information here, such as the times it was used and the purposes of the MTFs, are not present in Iteration Beta. And we needed to know those things before we went into Iteration Beta, as well as know how classified among the Foundation this was. Anyways, let\\u0026#39;s get into Iteration Beta.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m gonna skip the containment procedures for this one, as all they tell us is just that Iteration Alpha\\u0026#39;s containment procedures, the first ones we read, were insufficient and that Operation Many-Crowned Serpent was executed to fix that. As such, this version\\u0026#39;s technically outdated too, as it doesn\\u0026#39;t reflect the changes that Operation Many-Crowned Serpent caused to 4260, but we can still use it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription 2: Electric Boogaloo\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 is the collective consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. SCP-4260\\u0026#39;s existence has resulted in the universally entropic decline of sentient organisms and is the direct cause of any organism\\u0026#39;s cessation of life functions. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E \\u0026quot;Entropic decline\\u0026quot; refers to an organism\\u2019s eventual abatement into infirmity when it achieves an advanced age for its species.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s Death. Well, really more Entropy than Death, but 4260 is literally Death. We could have probably inferred it from Iteration Alpha, but that document served a different purpose, and it was kind of obvious we were dealing with Death near the end and from the quote I put.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 itself is subject to its own entropy, and its anomalous influence on the universe has notably diminished in the preceding millennia. It is projected that SCP-4260 will expire by achieving an ultraphysical null-state at approximately 2017 CE. The former containment procedures of SCP-4260 proved both incapable of halting this effect and its primary anomalous trait, although complete physical containment was achieved.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EOh shit.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow the quote at the top of this declass makes a little more sense, doesn\\u0026#39;t it? The entropy and decay 4260 inflicts upon the universe hurts itself as well, and death is inescapable. It says that by 2017, 4260\\u0026#39;s gonna be dead, but if you recall from the Procedure 8917 logs, Operation Many-Crowned Serpent was executed in 2016. Now you see why we looked through those logs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next line says that our earlier assumption about Procedure 8917 was correct in it\\u0026#39;s purpose of saving people. By temporarily killing 4260, they create an Omega-K End Of Death Scenario for long enough to save Foundation personnel or prevent global extinction, both of which we saw in the logs. This also explains why civilians are affected, as they need to take care of people that should have died but didn\\u0026#39;t during the duration of the Omega-K. \\u003Csup\\u003EHey didn\\u0026#39;t you just declass something from End of Death?\\u003C/sup\\u003E This isn\\u0026#39;t part of the central canon, it\\u0026#39;s just a reference, so don\\u0026#39;t worry about the EoD storyline.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddenda 4260-1 and 4260-2\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m going to group these two addenda together since they\\u0026#39;re very closely related. Addendum 1 is just a recovery log of 4260 first being recovered by the Foundation, but it\\u0026#39;s a bit odd. 4260 willingly manifested itself as a young woman at Site-76 and asked to be contained and medically treated. This is further elaborated in Addendum 2, where we also learn some more about ultraphysical entities, or Intrinsics, as the nickname goes. The Foundation doesn\\u0026#39;t know much about them, but 4260 has told them a few things, namely that they\\u0026#39;re not omnipotent, because 4260 came to them to help save it, and that they have no personality traits or goals beyond self-preservation. This desire for self-preservation extends to trying to escape it\\u0026#39;s own effect, and how this actually ended up letting life exist as a whole. The addendum ends with the statement that Death\\u0026#39;s dying is both the best and worst news humanity could have.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOkay, so basically, Death itself is starting to fade into nothingness while the Foundation keeps killing and resurrecting them to save high-ranking personnel. This seems to be both good and bad news for the Foundation, for obvious reasons. Oh, but what\\u0026#39;s this? ANOTHER iteration? This one, Iteration Gamma, is apparently pending approval and reflects the changes caused by Operation Many-Crowned Serpent to 4260. Let\\u0026#39;s check it out and see if we finally get an answer for what Operation Many-Crowned Serpent is. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures 3: The Securing\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThese containment procedures are similar to the ones from Iteration Alpha, but much stricter. This version of 4260 is locked up in a massive nuclear bunker made to withstand every K-Class Scenario the Foundation knows of, with seven Strayer Density Matrices all around the chamber and as few people as possible staffing the place. If it gets out, O5-1, O5-7, and O5-13 are to be alerted as soon as possible. This thing is even more dangerous that the prior version of 4260, and they don\\u0026#39;t seem to be planning on using Procedure 8917 on it anytime soon. It also seems to be much stronger than previous 4260, as this version needs seven Density Matrices as opposed to only one being needed for Iteration Alpha. Time to see if the description matches this guess. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription 3: Describe Harder\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 is Foundation Administrator Ethan Horowitz, who has undergone considerable physical augmentation as a result of Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell I know the Administrator is often seen as anomalous himself but this is very new. Apparently Operation Many-Crowned Serpent involved doing weird stuff to the Administrator. Collapsibles that follow state that this new 4260 has a large amount of limbs, stands 130 meters tall, can manipulate it\\u0026#39;s physical form as well, and apparently has the ultraphysical abilities from the old 4260. It\\u0026#39;s also mentioned that it\\u0026#39;s more resistant to the Density Matrices, and that if five out of seven Matrices fail, we\\u0026#39;ll be enjoying a Chi-K Class \\u0026quot;Crowning Of Death\\u0026quot; scenario, which I\\u0026#39;ll try to elaborate more on after the upcoming quote. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe ultraphysical entity previously cataloged as SCP-4260, prior to its neutralization in Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;, exhibited several of these anomalous traits to a more limited degree. After its termination, Foundation Administrator Ethan Horowitz elected to transfer its anomalous properties onto his own person, in accordance with the contractual and ritualistic nature of Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFinally, an answer to what Operation Many-Crowned Serpent is. After the old 4260 was finally terminated, their properties were transferred to Horowitz so that we don\\u0026#39;t have to worry about Death dying anymore. That Chi-K scenario is likely the threat of Death\\u0026#39;s strength returning to what it was at the beginning of the universe, causing all living beings to die. This fits the name, as crowning implies something good happening to them. Well, good is relative in these circumstances. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere\\u0026#39;s one final addendum to the article, and I promise it\\u0026#39;s the last addendum. Let\\u0026#39;s get through it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4260-1: The Finale\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis addendum, written by Horowitz himself before Operation Many-Crowned Serpent was executed, opens with a restatement of the Foundation\\u0026#39;s Prime Directives; lock up anomalies, keep them secret, make sure they don\\u0026#39;t return, and prioritize everything except reality itself below the preservation of life. Things get interesting very quickly after that, though. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis is the Subdirective of the Foundation:\\u003C/strong\\u003E to terminate the primary anomalous phenomenon which has plagued life since life\\u2019s conception, or to facilitate the termination thereof. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis is the prime anomaly:\\u003C/strong\\u003E Death.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETitle drop. They just said they hold almost everything above life, and this is proof of that. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Subdirective was never meant to be feasible, at least not in the day and age of our founding. We cannot hope to mitigate the disasters that this would result in: overpopulation, species stagnation, and susceptibility to cataclysmic extra-dimensional forces which can only be contained via euthanization of those affected. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, over a century later, we could achieve the Subdirective at any moment with only a missive sent to the lead of Amalgamate Force Omicron-45. I suppose it would be marvelous to see: a world without death and infirmity, each person freed from the dread of uncertainty and peril. Maybe, one day, we will find a way to make that world. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUntil such a time, we must secure the perpetual containment of Death. This is the nature of Operation \\u201cMany-Crowned Serpent\\u201d: to fulfill the first steps of the Foundation\\u2019s subdirective. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it stands now, Death is a hostile entity intent on its own self-preservation at any cost. We spoke, once, and I began to realize that if it could feel anything at all, it would feel the same fear we must face under its tyranny. We could not save Death from itself; as far as our science has elevated us, there is still so much we do not understand. I told this to SCP-4260, and it smiled. \\u0026quot;Administrator,\\u0026quot; it said, \\u0026quot;How can I die when I will live on through you?\\u0026quot; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeath has struck a deal with us. In all its arcane knowledge, it knows a way to live on after its death: it has chosen me to be its heir. It is a choice between the eternal agony of humanity and a pain suffered only until we know enough to repair our tired species. It is not a choice at all. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn this day, I will become Death. This last evil I must allow us all to suffer patiently. Be bold, for one day soon, we will have won the battle waged by both us and our ancestors emerging from the primordial soup: the struggle for Life Everlasting.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis gives some more answers. Everything that the Foundation\\u0026#39;s done and is doing is all for the purpose of facilitating this Subdirective, the end of the threat of Death to all living beings, freeing the world from fear and uncertainty. But then why aren\\u0026#39;t they just doing that now? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, have you ever read any tales from the \\u003Ca href=\\\"http://www.scp-wiki.net/end-of-death-hub\\\"\\u003EEnd Of Death canon?\\u003C/a\\u003E There\\u0026#39;s your answer. When humans are faced with immortality, there\\u0026#39;s a whole lot of complications. Aging, decay, population, all the other lifeforms not dying. If humans were to all become immortal tomorrow, it wouldn\\u0026#39;t end well. That\\u0026#39;s why the Foundation\\u0026#39;s delaying the Subdirective. They need to find answers to the questions posed by immortality, making sure that when Death is no more, it will be a true paradise, not one with catches and people left out, suffering as the few enjoy true immortality. They\\u0026#39;re waiting until they have the technology, and then they\\u0026#39;ll terminate 4260 for good, kicking in an Omega-K that hopefully won\\u0026#39;t be an issue. Do they like waiting? No. The Subdirective is in their grasp. But they know they have to. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd thus ends SCP-4260, a tale of the Foundation\\u0026#39;s ultimate goal and the means to get there. I hope this helped you understand this SCP better. Thank you all for reading, and memento mori.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?auto=webp\\u0026s=eb7e84b6777b9441cff986b491b9c844d2574ddb\", \"width\": 500, \"height\": 364}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bcae4878a092d9b918d961b1622fd9666b9ca968\", \"width\": 108, \"height\": 78}, {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=68c2ffe78e81071d4f95d8923cdb4f9e7a55c182\", \"width\": 216, \"height\": 157}, {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a9ffa511f3dab1524f43720275a5f4e58c725258\", \"width\": 320, \"height\": 232}], \"variants\": {}, \"id\": \"wqpxqRTyCw4m0-4ES2XLY4f4UxAxlhBTybhU-CTz2uo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwfesx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Brewsterion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwfesx/scp4260_the_subdirective/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwfesx/scp4260_the_subdirective/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559592897.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello everyone,\\n\\n\\u0026#x200B;\\n\\nI wanted to talk a bit about the rift between the performance of Beams and Cannons that is getting bigger and bigger.\\n\\n\\u0026#x200B;\\n\\nAs some who have longer played the game will remember, when the game was lunched it quickly got the nickname Cannons Online. Later on we had the Beam and Plasma Console Meta and now we are back to Cannons.\\n\\n\\u0026#x200B;\\n\\nIf we compare the average setup of today, an Epic Beam Array and an Epic Dual Cannon (both Phasers and the same Mods CrtD/Dm\\\\] \\\\[Dmg\\\\]x4) we can see a difference of 951 or generously rounded 1K DPS.\\n\\n\\u0026#x200B;\\n\\n(**Note:** I used Beam Arrays to show the difference because we still don't have enough variants of Omni-Dicretional Beams of every Energy type to be able to equip a 4x4 ship and have an efficient Dual Beam Bank Setup.)\\n\\n\\u0026#x200B;\\n\\nIn the past we argued that the difference was due to the ease of using Beams and to be fair a Beam Boat is easier to fly, but how to learn to use cannons is also no mystery.\\n\\n\\u0026#x200B;\\n\\nWhat has changed however are the Traits that support Beams vs. Cannons and the Cannon Traits have become severely better not to mention that the Boff ability of Beam Fire at Will with it's duration of 10 seconds and 20 seconds global cooldown is worse than the one for Rapid Fire or Scatter Volley with the same duration of 10 seconds but only a global cooldown of 15 seconds.\\n\\n\\u0026#x200B;\\n\\nIf we now look at the Traits we have for Cannons \\\"Go for the Kill\\\", \\\"Preferential Targeting\\\", \\\"Withering Barrage\\\", and for Beams \\\"Redirecting Arrays\\\" and \\\"Entwined Tactical Matrices\\\".\\n\\n\\u0026#x200B;\\n\\nSo for once we have a fantastic combo for Rapid Fire, with Go for the Kill and Preferential Targeting and the same is true for Scatter Volley with Withering Barrage both extends the duration of Rapid Fire (indefinitely by causing critical hits) and Scatter Volley (for four seconds).\\n\\n\\u0026#x200B;\\n\\n(**Note:** I know that Go for the Kill is super expensive and most players will never get it, but Withering Barrage is not and since it is an AOE attack it is most of the time the preferred Trait for cannons and you can buy the ships that have it in the C-Store.)\\n\\n\\u0026#x200B;\\n\\nOn the other side for Beams we have Redirecting Arrays which extends the duration of Beam Fire at Will by a Max of 15 seconds if you take constant damage, the problem however is that targets are dying so quickly that you basically never can take advantage of the duration increase.\\n\\n\\u0026#x200B;\\n\\nEntwined Tactical Matrices is an interesting Trait but I would only use it if I had none of the other Traits for Beams and Cannons but it really shines for Torp Builds allowing you to rain Torp Spreads on your target.\\n\\n\\u0026#x200B;\\n\\nSo why is it important to buff Beams, so for once there are a lot of ships that can only use Beams, and other ships that could potentially use cannons are so sluggish they simply can't move/turn fast enough to keep up and second it's not that great of an experience when you enter a STF and everything is dead in seconds.\\n\\nI have been on both sides nuke everything with my cannons before the rest of the team had a chance to do anything and I have seen the other side being the 5th wheel on the car.\\n\\n\\u0026#x200B;\\n\\n**At this point what can be done:**\\n\\nIncrease the base damage of Beams\\n\\nReduce the global cooldown of FAW to 15 seconds\\n\\nAlter Redirecting Arrays so the duration increase is reduced by maybe 50% but is not depending on taking constant damage.\\n\\n(I know this is very unlikely)\", \"author_fullname\": \"t2_gfwd5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The growing gab between Beams and Cannons\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwbfv6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559601797.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wanted to talk a bit about the rift between the performance of Beams and Cannons that is getting bigger and bigger.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs some who have longer played the game will remember, when the game was lunched it quickly got the nickname Cannons Online. Later on we had the Beam and Plasma Console Meta and now we are back to Cannons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf we compare the average setup of today, an Epic Beam Array and an Epic Dual Cannon (both Phasers and the same Mods CrtD/Dm] [Dmg]x4) we can see a difference of 951 or generously rounded 1K DPS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E I used Beam Arrays to show the difference because we still don\\u0026#39;t have enough variants of Omni-Dicretional Beams of every Energy type to be able to equip a 4x4 ship and have an efficient Dual Beam Bank Setup.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the past we argued that the difference was due to the ease of using Beams and to be fair a Beam Boat is easier to fly, but how to learn to use cannons is also no mystery.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat has changed however are the Traits that support Beams vs. Cannons and the Cannon Traits have become severely better not to mention that the Boff ability of Beam Fire at Will with it\\u0026#39;s duration of 10 seconds and 20 seconds global cooldown is worse than the one for Rapid Fire or Scatter Volley with the same duration of 10 seconds but only a global cooldown of 15 seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf we now look at the Traits we have for Cannons \\u0026quot;Go for the Kill\\u0026quot;, \\u0026quot;Preferential Targeting\\u0026quot;, \\u0026quot;Withering Barrage\\u0026quot;, and for Beams \\u0026quot;Redirecting Arrays\\u0026quot; and \\u0026quot;Entwined Tactical Matrices\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for once we have a fantastic combo for Rapid Fire, with Go for the Kill and Preferential Targeting and the same is true for Scatter Volley with Withering Barrage both extends the duration of Rapid Fire (indefinitely by causing critical hits) and Scatter Volley (for four seconds).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E I know that Go for the Kill is super expensive and most players will never get it, but Withering Barrage is not and since it is an AOE attack it is most of the time the preferred Trait for cannons and you can buy the ships that have it in the C-Store.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the other side for Beams we have Redirecting Arrays which extends the duration of Beam Fire at Will by a Max of 15 seconds if you take constant damage, the problem however is that targets are dying so quickly that you basically never can take advantage of the duration increase.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEntwined Tactical Matrices is an interesting Trait but I would only use it if I had none of the other Traits for Beams and Cannons but it really shines for Torp Builds allowing you to rain Torp Spreads on your target.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo why is it important to buff Beams, so for once there are a lot of ships that can only use Beams, and other ships that could potentially use cannons are so sluggish they simply can\\u0026#39;t move/turn fast enough to keep up and second it\\u0026#39;s not that great of an experience when you enter a STF and everything is dead in seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been on both sides nuke everything with my cannons before the rest of the team had a chance to do anything and I have seen the other side being the 5th wheel on the car.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAt this point what can be done:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIncrease the base damage of Beams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReduce the global cooldown of FAW to 15 seconds\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlter Redirecting Arrays so the duration increase is reduced by maybe 50% but is not depending on taking constant damage.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(I know this is very unlikely)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbfv6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bridgern\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwbfv6/the_growing_gab_between_beams_and_cannons/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwbfv6/the_growing_gab_between_beams_and_cannons/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559572997.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test avoid 401\", \"author_fullname\": \"t2_gbhji\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testagain3\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bw86r0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559578081.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest avoid 401\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw86r0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"erebusmaster\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bw86r0/testagain3/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559549281.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_teik0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"X5xjg5755\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 77, \"hide_score\": false, \"name\": \"t3_bw5s73\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_240?source=fallback\", \"height\": 234, \"width\": 426, \"scrubber_media_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_96\", \"dash_url\": \"https://v.redd.it/s7j0qhnb32231/DASHPlaylist.mpd\", \"duration\": 19, \"hls_url\": \"https://v.redd.it/s7j0qhnb32231/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UgBdgvQL7CGZ0x20Wf7IMOnF3wkO1xtpNXL1W4skdSE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559559448.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?format=pjpg\\u0026auto=webp\\u0026s=8f3632625940d92614b86de3baa00b4e513e4ca1\", \"width\": 640, \"height\": 352}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=9cd6401c64efd76cdecb4102c7eb0c424fe3dc67\", \"width\": 108, \"height\": 59}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=ecbb4c746658195f9309c3633bf1afb403d5f8d0\", \"width\": 216, \"height\": 118}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=e8f6509d25875f11e236b6291f30fb78f2650b85\", \"width\": 320, \"height\": 176}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=640\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=22a48248e037066d331290b3d7364be1a7615e04\", \"width\": 640, \"height\": 352}], \"variants\": {}, \"id\": \"-8_XkWX0CM_gb4MCXRpMpYFxNStsuDQsz1Bh8NYJiD0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw5s73\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ShiftyRider\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bw5s73/x5xjg5755/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/s7j0qhnb32231\", \"subreddit_subscribers\": 703, \"created_utc\": 1559530648.0, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_240?source=fallback\", \"height\": 234, \"width\": 426, \"scrubber_media_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_96\", \"dash_url\": \"https://v.redd.it/s7j0qhnb32231/DASHPlaylist.mpd\", \"duration\": 19, \"hls_url\": \"https://v.redd.it/s7j0qhnb32231/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_rpmhm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"whoaaa does the link work\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bvzhmk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/iTnjKpbA4mac1jgFlLry3EAicfoVm_TDGlxj83mJerc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559523455.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gifyourgame.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?auto=webp\\u0026s=11f7e16039a632def2a5529d21aa1417c31b3b23\", \"width\": 448, \"height\": 252}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8f2b73431c3a3affc064af6e24a3b5b2f276f220\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d32ebeb37a2315a6fd90ca7d96bfd47b34bd4dfb\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3b6b217ff52246acb0e9a98b30d81afaa91d415b\", \"width\": 320, \"height\": 180}], \"variants\": {}, \"id\": \"Yl6MCedx3BkJMCf4V29laFNcXVd7gNJz8-4LknIKiZg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvzhmk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"snowguy13\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvzhmk/whoaaa_does_the_link_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.gifyourgame.com/ComposedBalmyQuale\", \"subreddit_subscribers\": 703, \"created_utc\": 1559494655.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Defesa do Botafogo\\n\\n\\u003EA defesa do Botafogo apresentou imagens de v\\u00eddeo ao Tribunal que comprovariam que o \\u00e1rbitro autorizou o rein\\u00edcio da partida antes de ser chamado pelo VAR para mudar sua decis\\u00e3o. E por j\\u00e1 ter reiniciado o jogo, ele n\\u00e3o poderia mais voltar atr\\u00e1s e marcar o p\\u00eanalti contra o Botafogo.\\n\\nDefesa da CBF\\n\\n\\u003EAs imagens mostram que o \\u00e1rbitro pode sim ter induzido o rein\\u00edcio ao abaixar o bra\\u00e7o que indicava tiro livre indireto e ao correr na dire\\u00e7\\u00e3o do meio campo.\\n\\n\\u003EO problema \\u00e9 que as regras do jogo, as mesmas que o Botafogo cita para sustentar sua den\\u00fancia, estabelecem que o uso do apito \\u00e9 necess\\u00e1rio para reiniciar o jogo ap\\u00f3s um cart\\u00e3o amarelo ou vermelho.\", \"author_fullname\": \"t2_itdhw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvz153\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559520978.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDefesa do Botafogo\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA defesa do Botafogo apresentou imagens de v\\u00eddeo ao Tribunal que comprovariam que o \\u00e1rbitro autorizou o rein\\u00edcio da partida antes de ser chamado pelo VAR para mudar sua decis\\u00e3o. E por j\\u00e1 ter reiniciado o jogo, ele n\\u00e3o poderia mais voltar atr\\u00e1s e marcar o p\\u00eanalti contra o Botafogo.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EDefesa da CBF\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAs imagens mostram que o \\u00e1rbitro pode sim ter induzido o rein\\u00edcio ao abaixar o bra\\u00e7o que indicava tiro livre indireto e ao correr na dire\\u00e7\\u00e3o do meio campo.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EO problema \\u00e9 que as regras do jogo, as mesmas que o Botafogo cita para sustentar sua den\\u00fancia, estabelecem que o uso do apito \\u00e9 necess\\u00e1rio para reiniciar o jogo ap\\u00f3s um cart\\u00e3o amarelo ou vermelho.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvz153\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"heronb\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvz153/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvz153/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559492178.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\[test.\\\\]\\\\[[https://www.youtube.com/watch?v=bV87CcSYqdY](https://www.youtube.com/watch?v=bV87CcSYqdY)\\\\]\", \"author_fullname\": \"t2_biesn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvks18\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559424409.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[test.][\\u003Ca href=\\\"https://www.youtube.com/watch?v=bV87CcSYqdY\\\"\\u003Ehttps://www.youtube.com/watch?v=bV87CcSYqdY\\u003C/a\\u003E]\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?auto=webp\\u0026s=4fcf18ab1d69228f991ceb9d9f5606e2386868fb\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3bb1140dbbc2d30590d93de9a8b7230bd25bf14a\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5eb48232b460293d9b5be807983a1aea3f5d2918\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ab14b38064578527c909effc6801637092d4e28f\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"qgPzrYjBE0VHRhxPsGYR8V92NeWVLuVmSZC7vhukjek\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvks18\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dramaticablacka\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvks18/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvks18/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559395609.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"My Ryzentosh is currently very stable, with the only 'non-workers' being iMessage, Siri, FaceTime and sort of Handoff (only works one way).\\n\\n\\u0026#x200B;\\n\\nAnyhow, regarding the issue I described the title, two settings in System Preferences, namely:\\n\\n\\u0026#x200B;\\n\\n1. **Find my Mac** under the iCloud tab\\n2. **Allow guest user to use this computer** under the Users \\u0026 Groups tab\\n\\n\\u0026#x200B;\\n\\nalways get reset to their defaults after a restart, or powering up after a full shutdown. The 'Find my Mac' option always gets unchecked and 'Allow guest user to use this computer' gets checked.\\n\\n\\u0026#x200B;\\n\\nI would like to keep the Find my Mac setting permanently on and to keep the guest account permanently off. Is there a way I can achieve this?\\n\\n\\u0026#x200B;\\n\\nAny help is appreciated, specs are summed up in the table below. \\ud83d\\udda5\\ud83d\\udda5\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n|**CPU**|AMD Ryzen 1800x|\\n|:-:|:-:|\\n|**Motherboard**|ASUS Crosshair VI Hero|\\n|**GPU**|Zotac Nvidia gtx 1070 (reference cooler)|\\n|**Memory**|16gb - 2x Corsair dominator platinum 8gb 3200mhz|\\n|**OS install drive**|Crucial MX500 250gb SSD|\\n|**Wifi \\u0026 Bluetooth**|iMac A1419BCM94360CD card with PCI-e adapter|\", \"author_fullname\": \"t2_ttqmp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Settings under System Preferences get rest after shutdown \\u0026 restarts\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvk747\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559391772.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559420174.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy Ryzentosh is currently very stable, with the only \\u0026#39;non-workers\\u0026#39; being iMessage, Siri, FaceTime and sort of Handoff (only works one way).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyhow, regarding the issue I described the title, two settings in System Preferences, namely:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFind my Mac\\u003C/strong\\u003E under the iCloud tab\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EAllow guest user to use this computer\\u003C/strong\\u003E under the Users \\u0026amp; Groups tab\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealways get reset to their defaults after a restart, or powering up after a full shutdown. The \\u0026#39;Find my Mac\\u0026#39; option always gets unchecked and \\u0026#39;Allow guest user to use this computer\\u0026#39; gets checked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to keep the Find my Mac setting permanently on and to keep the guest account permanently off. Is there a way I can achieve this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help is appreciated, specs are summed up in the table below. \\ud83d\\udda5\\ud83d\\udda5\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAMD Ryzen 1800x\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EASUS Crosshair VI Hero\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EGPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EZotac Nvidia gtx 1070 (reference cooler)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16gb - 2x Corsair dominator platinum 8gb 3200mhz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EOS install drive\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECrucial MX500 250gb SSD\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EWifi \\u0026amp; Bluetooth\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EiMac A1419BCM94360CD card with PCI-e adapter\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvk747\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Pepi28t-50\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvk747/settings_under_system_preferences_get_rest_after/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvk747/settings_under_system_preferences_get_rest_after/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559391374.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1141dc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Graphic found in a 2015 Terra Prime preview is the same as the ones around Area 18\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bvf8q3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit) GIF by @robotdude on Gfycat. Discover more starcitizen GIFs on Gfycat\", \"title\": \"Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit)\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ActualRightColt-size_restricted.gif\", \"thumbnail_height\": 250}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bvf8q3\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/c9_Wg6yf03hoBaNzKW8V4C6c3LjGbX6dNXDj3mUHy7c.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559379402.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gfycat.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?format=png8\\u0026s=c0569ed9f587376e57d01e8ef5ba86d518df8771\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=3ccb8ac692e06a59918fb1799b6990e338172f5f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=16d097c9fe9c24465632bcd6e014f66b8b1bd2fa\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=d46c61ee71e7f625e6f8ca58551a1b74847abe98\", \"width\": 320, \"height\": 179}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?s=634e3b5adfe3dcaef794e3b30a8b35216951ab36\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026crop=smart\\u0026s=c163952d7527278194216f9845477ed70ede7fca\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026crop=smart\\u0026s=f3ef9b10b9219bffbead65215e7f8a4949f67aba\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026crop=smart\\u0026s=04ce94a6ab48fe49f6b9265bc3583d2f18cbe921\", \"width\": 320, \"height\": 179}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?format=mp4\\u0026s=7a2fa61a333d02e104ffc485e595b9f04824ea67\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026format=mp4\\u0026s=b008d417dc5bc1f2f9203612293cd38c9f98dade\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026format=mp4\\u0026s=2d9f8c04c8ab09d0abdc59a8ea407b593d82ad82\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026format=mp4\\u0026s=2ac9548358af384cf7bf04397f61fea396a9bda5\", \"width\": 320, \"height\": 179}]}}, \"id\": \"OA1SrhwRQdwHUJgo4zOwQTEZegw59-SLQj-ZypHdhoM\"}], \"reddit_video_preview\": {\"fallback_url\": \"https://v.redd.it/oc4537uf8n131/DASH_360\", \"height\": 360, \"width\": 640, \"scrubber_media_url\": \"https://v.redd.it/oc4537uf8n131/DASH_96\", \"dash_url\": \"https://v.redd.it/oc4537uf8n131/DASHPlaylist.mpd\", \"duration\": 9, \"hls_url\": \"https://v.redd.it/oc4537uf8n131/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvf8q3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ehriqhck\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvf8q3/graphic_found_in_a_2015_terra_prime_preview_is/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://gfycat.com/actualrightcolt\", \"subreddit_subscribers\": 703, \"created_utc\": 1559350602.0, \"media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit) GIF by @robotdude on Gfycat. Discover more starcitizen GIFs on Gfycat\", \"title\": \"Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit)\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ActualRightColt-size_restricted.gif\", \"thumbnail_height\": 250}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Title** \\nText\\n\\n\\u0026nbsp;\\n\\n**Title** \\nText\", \"author_fullname\": \"t2_16lvip\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvd605\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559366978.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ETitle\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nText\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETitle\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nText\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvd605\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CT-24601\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvd605/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvd605/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559338178.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"So I've noticed that when I pressed TAB to view the teams, it also says a lot about the MMR of the players in the match. There are a couple of rules though, before figuring out who has the lowest and highest MMR. The positioning of the portrait is based on MMR, far left being the lowest rated and far right being highest rated.\\n\\n---\\n\\n# Rule #1: You are always at the bottom left.\\n\\nThis one is pretty simple. No matter what, you will always be on the bottom left when you press TAB to view the teams. [I drew it out for you, in case you want to see my beautiful art.](https://i.imgur.com/IETyq6l.jpg) Because of this, you cannot tell whether you are the lowest or highest MMR on your team.\\n\\n---\\n\\n# Rule #2: Groups are to the right, and ordered alphabetically.\\n\\nSpeaks for itself, but groups of any sizes are placed to the far right and are organized alphabetically. The smaller the group, the easier it is for you to determine who has the lowest/highest MMR on that team. [Here's my drawing as an example for a duo queue.](https://i.imgur.com/PU1X5G4.jpg)\\n\\nAlso I should clarify that it's very possible that one of the players in the duo can have the highest or lowest MMR, but since groups are always to the right and alphabetically, it's impossible to tell if which group member has a higher or lower MMR.\\n\\n\\u0026nbsp;\\n\\n[In this screenshot, you can see the enemy team is a 6-group and is organized alphabetically.](https://i.imgur.com/p7nTqmK.png) You cannot determine who has the highest or lowest MMR from this 6-stack.\\n\\n---\\n\\n#### All solo queue.\\n\\nIf there are no groups, then seeing who has the highest rated MMR on both teams is easier. Simply look left to right to see from lowest to highest MMR on a team. Do keep in mind that since you are always positioned bottom left, you cannot tell what MMR you are, only your teammates. However, you can find out by asking the highest rated MMR player on your team where you are positioned on their screen, and that will help you figure out if where you stand in your team. [Another drawing.](https://i.imgur.com/bMIQr7D.jpg)\\n\\n---\\n\\n#### Decayed Accounts\\n\\nThe positioning of the portraits does not take into account the SR of the person, but the MMR. For instance, you can have a player that is around 4.4k MMR, but decayed to Masters. In a 4.1k average game, it will position this \\\"Masters\\\" player above GM's.\\n\\n\\nAn example of this is [this screenshot.](https://i.imgur.com/c4yrmNB.jpg) The player Valentine had decayed but is still positioned higher due to having a higher MMR. I only have [this clip](https://clips.twitch.tv/SoftDoubtfulFriseePrimeMe) that he explains that he hasn't played in a while (which would hint at him being decayed). If any of you can find any extra examples of decayed accounts and their portraits positioning, then share it please! I know it's a thing but I don't have much to show.\\n\\n---\\n\\nAlso, if you leave and rejoin a competitive match, the positioning of all portraits gets messed up for some reason. Not sure why, but that's a thing.\\n\\n---\\n\\n[Last example](https://i.imgur.com/NZJQQgo.jpg) On the enemy team, you can see that groups ignore MMR and are placed to the right and are alphabetically organized. It would appear that Pigeon would have the highest MMR on the enemy team (I'm taking a guess that the duo isn't decayed.)\\n\\n\\nOn the friendly team, the Masters players are on the left and it's safe to say that those aren't decayed accounts either. Neziwi is positioned to have a higher MMR out of the three and they are Grandmaster. Then of course the duo ignored the MMR rule and is set far right, however it would be safe to say that Zerg would be the highest rated MMR. If you are Dino in this scenario, you'd have to ask other teammates where you're positioned when they press TAB to figure out where you stand on your team.\\n\\n---\\n\\nHope this wasn't confusing, I suck at explaining things and well I always wanted to share this.\", \"author_fullname\": \"t2_3v8bc9yn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"title\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvbjmw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559358317.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I\\u0026#39;ve noticed that when I pressed TAB to view the teams, it also says a lot about the MMR of the players in the match. There are a couple of rules though, before figuring out who has the lowest and highest MMR. The positioning of the portrait is based on MMR, far left being the lowest rated and far right being highest rated.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ERule #1: You are always at the bottom left.\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EThis one is pretty simple. No matter what, you will always be on the bottom left when you press TAB to view the teams. \\u003Ca href=\\\"https://i.imgur.com/IETyq6l.jpg\\\"\\u003EI drew it out for you, in case you want to see my beautiful art.\\u003C/a\\u003E Because of this, you cannot tell whether you are the lowest or highest MMR on your team.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ERule #2: Groups are to the right, and ordered alphabetically.\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ESpeaks for itself, but groups of any sizes are placed to the far right and are organized alphabetically. The smaller the group, the easier it is for you to determine who has the lowest/highest MMR on that team. \\u003Ca href=\\\"https://i.imgur.com/PU1X5G4.jpg\\\"\\u003EHere\\u0026#39;s my drawing as an example for a duo queue.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso I should clarify that it\\u0026#39;s very possible that one of the players in the duo can have the highest or lowest MMR, but since groups are always to the right and alphabetically, it\\u0026#39;s impossible to tell if which group member has a higher or lower MMR.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/p7nTqmK.png\\\"\\u003EIn this screenshot, you can see the enemy team is a 6-group and is organized alphabetically.\\u003C/a\\u003E You cannot determine who has the highest or lowest MMR from this 6-stack.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EAll solo queue.\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003EIf there are no groups, then seeing who has the highest rated MMR on both teams is easier. Simply look left to right to see from lowest to highest MMR on a team. Do keep in mind that since you are always positioned bottom left, you cannot tell what MMR you are, only your teammates. However, you can find out by asking the highest rated MMR player on your team where you are positioned on their screen, and that will help you figure out if where you stand in your team. \\u003Ca href=\\\"https://i.imgur.com/bMIQr7D.jpg\\\"\\u003EAnother drawing.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EDecayed Accounts\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003EThe positioning of the portraits does not take into account the SR of the person, but the MMR. For instance, you can have a player that is around 4.4k MMR, but decayed to Masters. In a 4.1k average game, it will position this \\u0026quot;Masters\\u0026quot; player above GM\\u0026#39;s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn example of this is \\u003Ca href=\\\"https://i.imgur.com/c4yrmNB.jpg\\\"\\u003Ethis screenshot.\\u003C/a\\u003E The player Valentine had decayed but is still positioned higher due to having a higher MMR. I only have \\u003Ca href=\\\"https://clips.twitch.tv/SoftDoubtfulFriseePrimeMe\\\"\\u003Ethis clip\\u003C/a\\u003E that he explains that he hasn\\u0026#39;t played in a while (which would hint at him being decayed). If any of you can find any extra examples of decayed accounts and their portraits positioning, then share it please! I know it\\u0026#39;s a thing but I don\\u0026#39;t have much to show.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EAlso, if you leave and rejoin a competitive match, the positioning of all portraits gets messed up for some reason. Not sure why, but that\\u0026#39;s a thing.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/NZJQQgo.jpg\\\"\\u003ELast example\\u003C/a\\u003E On the enemy team, you can see that groups ignore MMR and are placed to the right and are alphabetically organized. It would appear that Pigeon would have the highest MMR on the enemy team (I\\u0026#39;m taking a guess that the duo isn\\u0026#39;t decayed.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the friendly team, the Masters players are on the left and it\\u0026#39;s safe to say that those aren\\u0026#39;t decayed accounts either. Neziwi is positioned to have a higher MMR out of the three and they are Grandmaster. Then of course the duo ignored the MMR rule and is set far right, however it would be safe to say that Zerg would be the highest rated MMR. If you are Dino in this scenario, you\\u0026#39;d have to ask other teammates where you\\u0026#39;re positioned when they press TAB to figure out where you stand on your team.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EHope this wasn\\u0026#39;t confusing, I suck at explaining things and well I always wanted to share this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?auto=webp\\u0026s=b55948b8997a97d3a4d66b2c1107e618805eefb3\", \"width\": 1368, \"height\": 672}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bd56a360da0819da36aa8dbb90b7c0c1e0bef366\", \"width\": 108, \"height\": 53}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=af8d8a88bfb68ba72a21b510ad22ecdabdcb39f8\", \"width\": 216, \"height\": 106}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=301a2df728199828321008fe18ecc7ff7a66e9cf\", \"width\": 320, \"height\": 157}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d043fabb01f80aafb92f35a196b837f4bec18e6c\", \"width\": 640, \"height\": 314}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=c5b40409bf6a7dbf0368810654efb27d971fbfa4\", \"width\": 960, \"height\": 471}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9103804bad1528f461cb8a9ffca3352914282dd3\", \"width\": 1080, \"height\": 530}], \"variants\": {}, \"id\": \"ZROe6eIaHJYbMLtqMVopuCGne3uCW67NGQzR28nxfLg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvbjmw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ieatwatermelon3\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvbjmw/title/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvbjmw/title/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559329517.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3g10qxu5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make The Galaxy Great again\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bv7m33\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/dVpFA5GDGB82WiRJ2E5_reqsaTqO4eVbprgMcAheTVo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559338611.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?auto=webp\\u0026s=5032fcfcb8c9b8b4d3d0c91db5ea099c39ccbde2\", \"width\": 720, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bf753c7677d1de410675298b0a57dec27f54ef64\", \"width\": 108, \"height\": 162}, {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3c3ae5535af89163e046ea2262caea94b92e0e29\", \"width\": 216, \"height\": 324}, {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c32e901c934b5a250c6e71296710aca7d16554d9\", \"width\": 320, \"height\": 480}, {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a8bc03446597a0d715fd15b68e9fb4fe6d59268b\", \"width\": 640, \"height\": 960}], \"variants\": {}, \"id\": \"hNbbNAjQxsHCybW2rgZJTQKwTBfWIs3zP9KEP7GFxCg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv7m33\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"binjajer\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv7m33/make_the_galaxy_great_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/gcdb8g62vj131.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559309811.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\n[Join the Cause!](https://i.redd.it/56dsp8netj131.jpg)\\n\\n\\u0026#x200B;\\n\\nTired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens?\\n\\nCheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.)\\n\\n[https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/](https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/)\\n\\nSquadron discord details will be disbursed upon application.\\n\\nFly bigly, commanders!\\n\\n[Make the Galaxy Great Again!](https://i.redd.it/se3vvpg3tj131.jpg)\", \"author_fullname\": \"t2_3g10qxu5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make the Galaxy Great Again!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"56dsp8netj131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 720, \"x\": 1280, \"u\": \"https://i.redd.it/56dsp8netj131.jpg\"}, \"m\": \"image/jpg\", \"id\": \"56dsp8netj131\"}, \"se3vvpg3tj131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1080, \"x\": 720, \"u\": \"https://i.redd.it/se3vvpg3tj131.jpg\"}, \"m\": \"image/jpg\", \"id\": \"se3vvpg3tj131\"}}, \"name\": \"t3_bv7huc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/4IFvYtwaO9I4-fDj96eb2Tl7zjVyhI5H9gPpozkKK08.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559337944.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/56dsp8netj131.jpg\\\"\\u003EJoin the Cause!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\\"\\u003Ehttps://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESquadron discord details will be disbursed upon application.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFly bigly, commanders!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/se3vvpg3tj131.jpg\\\"\\u003EMake the Galaxy Great Again!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv7huc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"binjajer\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559309144.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#Stats Report\\n\\nAll activity was compiled from the last 1 days of data\\n\\n***\\n##Upcoming Cookie Days\\n\\n|**user**|**cookie day**|\\n|:-:|:-:|\\n|Engvar|2017-6-26|\\n|bioszombie|2017-7-3|\\n|BrentIsAbel|2018-7-6|\\n\\n\\n\\n\\n***\\n##r/edefined\\n\\n|**mean age**|**median age**|**users kicked**|**users w/o siblings**|**kicked per week**|**kicked user of the month**|**position history graph**|**kick history graph**|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|1.04|0.9|2328|43|20%|jiggs_|[# graph](http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.pdf)|[kick graph](http://intotheskies.com/edef/stats/2019-05-30/poshistory_all_graph.pdf)|\\n\\n\\n\\n\\n***\\n##[Users](http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.png)\\n\\n|**#**|**+/-**|**user**|**#'s moved**|**#'s / botrun**|**age**|**# by add day**|**biggest jump**|**botruns survived**|**botruns moved**|**siblings**|**buddy of the month**|**# history graph**|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|1|+0|CaptainPedge|35|1.94|2.61|#1|15|117|5|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Vic_the_Dick|[graph](http://intotheskies.com/edef/stats/2019-05-30/CaptainPedge_poshistory_graph.pdf)|\\n|2|+0|LukeWarmCage|38|0.51|2.22|#2|18|112|12|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|ticktockalock|[graph](http://intotheskies.com/edef/stats/2019-05-30/LukeWarmCage_poshistory_graph.pdf)|\\n|3|+0|boomheadshot7|37|0.5|2.21|#3|16|111|13|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|BrentIsAbel|[graph](http://intotheskies.com/edef/stats/2019-05-30/boomheadshot7_poshistory_graph.pdf)|\\n|4|+0|hornplayerKC|51|0.69|2.21|#4|23|111|13|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|doncicismydaddy|[graph](http://intotheskies.com/edef/stats/2019-05-30/hornplayerKC_poshistory_graph.pdf)|\\n|5|+0|Kinighos|53|0.73|2.19|#5|23|110|15|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|And_So_It_Goess|[graph](http://intotheskies.com/edef/stats/2019-05-30/Kinighos_poshistory_graph.pdf)|\\n|6|+0|Lizzibabe|81|1.11|2.19|#6|38|110|16|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|DogfoodEnforcer|[graph](http://intotheskies.com/edef/stats/2019-05-30/Lizzibabe_poshistory_graph.pdf)|\\n|7|+0|Ravenwald|74|1.03|2.18|#7|38|109|16|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|moreawkwardthenyou|[graph](http://intotheskies.com/edef/stats/2019-05-30/Ravenwald_poshistory_graph.pdf)|\\n|8|+0|emrickgj|81|1.14|2.16|#8|27|108|19|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|fartfacepooper|[graph](http://intotheskies.com/edef/stats/2019-05-30/emrickgj_poshistory_graph.pdf)|\\n|9|+0|choontang|71|1.04|2.1|#9|32|105|21|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Hippo_Singularity|[graph](http://intotheskies.com/edef/stats/2019-05-30/choontang_poshistory_graph.pdf)|\\n|10|+0|PM-YOUR-PMS|48|0.72|2.08|#10|11|104|20|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Phaethonas|[graph](http://intotheskies.com/edef/stats/2019-05-30/PM-YOUR-PMS_poshistory_graph.pdf)|\\n|11|+0|Engvar|82|0.89|1.94|#15|30|96|28|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Error404NoUserFound|[graph](http://intotheskies.com/edef/stats/2019-05-30/Engvar_poshistory_graph.pdf)|\\n|12|+0|bioszombie|83|0.91|1.93|#16|29|95|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|1wrx2subarus|[graph](http://intotheskies.com/edef/stats/2019-05-30/bioszombie_poshistory_graph.pdf)|\\n|13|+0|draftstone|55|0.61|1.91|#17|8|94|28|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|tiffanydisasterxoxo|[graph](http://intotheskies.com/edef/stats/2019-05-30/draftstone_poshistory_graph.pdf)|\\n|14|+0|hitch21|64|0.71|1.91|#18|10|94|28|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|EarlNeonCog|[graph](http://intotheskies.com/edef/stats/2019-05-30/hitch21_poshistory_graph.pdf)|\\n|15|+0|booziwan|56|0.64|1.87|#19|9|92|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Kusmariini|[graph](http://intotheskies.com/edef/stats/2019-05-30/booziwan_poshistory_graph.pdf)|\\n|16|+0|MinagiV|59|0.67|1.87|#20|12|92|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|FerniWrites|[graph](http://intotheskies.com/edef/stats/2019-05-30/MinagiV_poshistory_graph.pdf)|\\n|17|+0|eliporter877|65|0.76|1.83|#21|16|90|28|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|DaOrkiestSalamander|[graph](http://intotheskies.com/edef/stats/2019-05-30/eliporter877_poshistory_graph.pdf)|\\n|18|+0|And_So_It_Goess|65|0.78|2.04|#13|20|87|28|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Kinighos|[graph](http://intotheskies.com/edef/stats/2019-05-30/And_So_It_Goess_poshistory_graph.pdf)|\\n|19|+0|JorgeAmVF|90|1.06|1.81|#22|34|89|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|AcePhoenixGamer|[graph](http://intotheskies.com/edef/stats/2019-05-30/JorgeAmVF_poshistory_graph.pdf)|\\n|20|+0|opticalshadow|103|1.21|1.81|#23|41|89|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|GreatDane666|[graph](http://intotheskies.com/edef/stats/2019-05-30/opticalshadow_poshistory_graph.pdf)|\\n|21|+0|moreawkwardthenyou|66|0.82|1.72|#24|18|84|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Ravenwald|[graph](http://intotheskies.com/edef/stats/2019-05-30/moreawkwardthenyou_poshistory_graph.pdf)|\\n|22|+0|1wrx2subarus|87|1.09|1.72|#25|33|84|32|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|bioszombie|[graph](http://intotheskies.com/edef/stats/2019-05-30/1wrx2subarus_poshistory_graph.pdf)|\\n|23|+0|Phaethonas|72|0.91|1.7|#26|19|83|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|PM-YOUR-PMS|[graph](http://intotheskies.com/edef/stats/2019-05-30/Phaethonas_poshistory_graph.pdf)|\\n|24|+0|xTMT|80|1.01|1.7|#27|26|83|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Cowbeller|[graph](http://intotheskies.com/edef/stats/2019-05-30/xTMT_poshistory_graph.pdf)|\\n|25|+0|medes24|69|0.91|1.64|#28|19|80|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|TheFern33|[graph](http://intotheskies.com/edef/stats/2019-05-30/medes24_poshistory_graph.pdf)|\\n|26|+0|fartfacepooper|55|0.74|1.61|#30|8|78|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|emrickgj|[graph](http://intotheskies.com/edef/stats/2019-05-30/fartfacepooper_poshistory_graph.pdf)|\\n|27|+0|YourAmishNeighbor|67|0.92|1.59|#31|13|77|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Henchman29|[graph](http://intotheskies.com/edef/stats/2019-05-30/YourAmishNeighbor_poshistory_graph.pdf)|\\n|28|+0|SJC-Caron|49|0.69|1.55|#32|9|75|27|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|dishonorable|[graph](http://intotheskies.com/edef/stats/2019-05-30/SJC-Caron_poshistory_graph.pdf)|\\n|29|+0|CNNsPrimarySource|46|0.66|1.53|#33|8|74|27|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|n3gd0|[graph](http://intotheskies.com/edef/stats/2019-05-30/CNNsPrimarySource_poshistory_graph.pdf)|\\n|30|+0|TheFern33|56|0.88|1.42|#34|12|68|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|medes24|[graph](http://intotheskies.com/edef/stats/2019-05-30/TheFern33_poshistory_graph.pdf)|\\n|31|+0|n3gd0|53|0.84|1.4|#35|8|67|30|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|CNNsPrimarySource|[graph](http://intotheskies.com/edef/stats/2019-05-30/n3gd0_poshistory_graph.pdf)|\\n|32|+0|tecrogue|55|0.87|1.4|#36|9|67|30|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|fighterace00|[graph](http://intotheskies.com/edef/stats/2019-05-30/tecrogue_poshistory_graph.pdf)|\\n|33|+0|Rougefarie|58|0.92|1.4|#37|11|67|30|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|GotZeroFucks2Give|[graph](http://intotheskies.com/edef/stats/2019-05-30/Rougefarie_poshistory_graph.pdf)|\\n|34|+0|Eurotriangle|54|0.87|1.38|#38|10|66|30|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|esoper1976|[graph](http://intotheskies.com/edef/stats/2019-05-30/Eurotriangle_poshistory_graph.pdf)|\\n|35|+0|biffpower3|52|0.95|1.24|#39|6|59|29|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|the_dank_666|[graph](http://intotheskies.com/edef/stats/2019-05-30/biffpower3_poshistory_graph.pdf)|\\n|36|+0|MrNorc|58|1.05|1.24|#40|9|59|29|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|p5yk0t1km1r4ge|[graph](http://intotheskies.com/edef/stats/2019-05-30/MrNorc_poshistory_graph.pdf)|\\n|37|+0|Hippo_Singularity|63|1.21|1.16|#41|14|56|31|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|choontang|[graph](http://intotheskies.com/edef/stats/2019-05-30/Hippo_Singularity_poshistory_graph.pdf)|\\n|38|+0|Vic_the_Dick|55|1.08|1.15|#42|6|55|30|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|CaptainPedge|[graph](http://intotheskies.com/edef/stats/2019-05-30/Vic_the_Dick_poshistory_graph.pdf)|\\n|39|+0|the_dank_666|60|1.18|1.15|#43|8|55|30|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|biffpower3|[graph](http://intotheskies.com/edef/stats/2019-05-30/the_dank_666_poshistory_graph.pdf)|\\n|40|+0|glorious_albus|58|1.21|1.07|#44|8|52|28|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|fuel126|[graph](http://intotheskies.com/edef/stats/2019-05-30/glorious_albus_poshistory_graph.pdf)|\\n|41|+0|Lorddragonfang|51|1.09|1.05|#45|8|51|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|kurtn0tk1rk|[graph](http://intotheskies.com/edef/stats/2019-05-30/Lorddragonfang_poshistory_graph.pdf)|\\n|42|+0|Sicarius_Tacet|51|1.09|1.05|#46|8|51|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|chaosdemonhu|[graph](http://intotheskies.com/edef/stats/2019-05-30/Sicarius_Tacet_poshistory_graph.pdf)|\\n|43|+0|Maxiscoolerthanyou|50|1.09|1.03|#47|7|50|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|schludy|[graph](http://intotheskies.com/edef/stats/2019-05-30/Maxiscoolerthanyou_poshistory_graph.pdf)|\\n|44|+0|Kusmariini|48|1.07|1.01|#48|7|49|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|booziwan|[graph](http://intotheskies.com/edef/stats/2019-05-30/Kusmariini_poshistory_graph.pdf)|\\n|45|+0|BrentIsAbel|53|1.29|0.92|#49|13|45|24|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|boomheadshot7|[graph](http://intotheskies.com/edef/stats/2019-05-30/BrentIsAbel_poshistory_graph.pdf)|\\n|46|+0|misterpyrrhuloxia|71|1.77|0.9|#50|26|44|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|TastyTacoN1nja|[graph](http://intotheskies.com/edef/stats/2019-05-30/misterpyrrhuloxia_poshistory_graph.pdf)|\\n|47|+0|Sickened_but_curious|77|1.93|0.9|#51|30|44|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Willowx|[graph](http://intotheskies.com/edef/stats/2019-05-30/Sickened_but_curious_poshistory_graph.pdf)|\\n|48|+0|fighterace00|85|2.12|0.9|#52|34|44|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|tecrogue|[graph](http://intotheskies.com/edef/stats/2019-05-30/fighterace00_poshistory_graph.pdf)|\\n|49|+0|Dystopian_Dreamer|62|1.59|0.88|#53|19|43|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|ClogsInBronteland|[graph](http://intotheskies.com/edef/stats/2019-05-30/Dystopian_Dreamer_poshistory_graph.pdf)|\\n|50|+0|Willowx|63|1.62|0.88|#54|20|43|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Sickened_but_curious|[graph](http://intotheskies.com/edef/stats/2019-05-30/Willowx_poshistory_graph.pdf)|\\n|51|+0|p5yk0t1km1r4ge|76|1.95|0.88|#55|29|43|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|MrNorc|[graph](http://intotheskies.com/edef/stats/2019-05-30/p5yk0t1km1r4ge_poshistory_graph.pdf)|\\n|52|+0|ClogsInBronteland|53|1.39|0.85|#56|13|42|24|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Dystopian_Dreamer|[graph](http://intotheskies.com/edef/stats/2019-05-30/ClogsInBronteland_poshistory_graph.pdf)|\\n|53|+0|Henchman29|72|1.89|0.85|#57|25|42|24|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|YourAmishNeighbor|[graph](http://intotheskies.com/edef/stats/2019-05-30/Henchman29_poshistory_graph.pdf)|\\n|54|+0|yoctometric|28|0.29|2.04|#14|27|99|57|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|MaxNobody|[graph](http://intotheskies.com/edef/stats/2019-05-30/yoctometric_poshistory_graph.pdf)|\\n|55|+0|svenguillotien|58|1.53|0.82|#59|12|40|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Ana_S_Gram|[graph](http://intotheskies.com/edef/stats/2019-05-30/svenguillotien_poshistory_graph.pdf)|\\n|56|+0|baildodger|44|1.22|0.78|#60|10|38|24|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Seven65|[graph](http://intotheskies.com/edef/stats/2019-05-30/baildodger_poshistory_graph.pdf)|\\n|57|+0|A_lot_of_arachnids|30|0.97|0.69|#62|4|33|22|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Theradead|[graph](http://intotheskies.com/edef/stats/2019-05-30/A_lot_of_arachnids_poshistory_graph.pdf)|\\n|58|+0|EarlNeonCog|36|1.2|0.67|#63|9|32|22|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|hitch21|[graph](http://intotheskies.com/edef/stats/2019-05-30/EarlNeonCog_poshistory_graph.pdf)|\\n|59|+0|madbubers|35|1.21|0.65|#64|8|31|21|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Tigernos|[graph](http://intotheskies.com/edef/stats/2019-05-30/madbubers_poshistory_graph.pdf)|\\n|60|+0|Upper_Canada_Pango|34|1.21|0.63|#65|8|30|20|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|solarSpring|[graph](http://intotheskies.com/edef/stats/2019-05-30/Upper_Canada_Pango_poshistory_graph.pdf)|\\n|61|+0|ticktockalock|39|1.39|0.63|#66|9|30|20|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|LukeWarmCage|[graph](http://intotheskies.com/edef/stats/2019-05-30/ticktockalock_poshistory_graph.pdf)|\\n|62|+0|topaz_b|24|0.92|0.59|#67|3|28|18|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|allyourbase51|[graph](http://intotheskies.com/edef/stats/2019-05-30/topaz_b_poshistory_graph.pdf)|\\n|63|+0|_Dia_|24|0.92|0.59|#68|3|28|18|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|This_Explains_It_All|[graph](http://intotheskies.com/edef/stats/2019-05-30/_Dia__poshistory_graph.pdf)|\\n|64|+0|MaxNobody|36|1.44|0.57|#69|12|27|17|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|yoctometric|[graph](http://intotheskies.com/edef/stats/2019-05-30/MaxNobody_poshistory_graph.pdf)|\\n|65|+0|kurtn0tk1rk|27|1.17|0.53|#70|7|25|16|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Lorddragonfang|[graph](http://intotheskies.com/edef/stats/2019-05-30/kurtn0tk1rk_poshistory_graph.pdf)|\\n|66|+0|Ana_S_Gram|23|0.23|2.06|#12|20|102|64|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|svenguillotien|[graph](http://intotheskies.com/edef/stats/2019-05-30/Ana_S_Gram_poshistory_graph.pdf)|\\n|67|+0|TastyTacoN1nja|24|1.09|0.51|#71|4|24|17|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|misterpyrrhuloxia|[graph](http://intotheskies.com/edef/stats/2019-05-30/TastyTacoN1nja_poshistory_graph.pdf)|\\n|68|+0|doncicismydaddy|24|1.09|0.51|#72|4|24|17|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|hornplayerKC|[graph](http://intotheskies.com/edef/stats/2019-05-30/doncicismydaddy_poshistory_graph.pdf)|\\n|69|+0|dishonorable|27|1.29|0.5|#74|4|23|17|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|SJC-Caron|[graph](http://intotheskies.com/edef/stats/2019-05-30/dishonorable_poshistory_graph.pdf)|\\n|70|+0|tiffanydisasterxoxo|12|0.12|2.08|#11|27|100|62|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|draftstone|[graph](http://intotheskies.com/edef/stats/2019-05-30/tiffanydisasterxoxo_poshistory_graph.pdf)|\\n|71|+0|solarSpring|28|1.47|0.46|#75|4|21|16|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Upper_Canada_Pango|[graph](http://intotheskies.com/edef/stats/2019-05-30/solarSpring_poshistory_graph.pdf)|\\n|72|+0|rahuldottech|28|1.56|0.44|#76|5|20|15|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|BatteredAggie19|[graph](http://intotheskies.com/edef/stats/2019-05-30/rahuldottech_poshistory_graph.pdf)|\\n|73|+0|Tigernos|27|1.93|0.32|#77|5|16|12|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|madbubers|[graph](http://intotheskies.com/edef/stats/2019-05-30/Tigernos_poshistory_graph.pdf)|\\n|74|+0|chaosdemonhu|23|1.77|0.3|#78|6|15|11|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Sicarius_Tacet|[graph](http://intotheskies.com/edef/stats/2019-05-30/chaosdemonhu_poshistory_graph.pdf)|\\n|75|+0|tlenze|22|2.0|0.27|#79|6|13|10|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|OhAces|[graph](http://intotheskies.com/edef/stats/2019-05-30/tlenze_poshistory_graph.pdf)|\\n|76|+0|AcePhoenixGamer|38|1.09|0.84|#58|17|37|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|JorgeAmVF|[graph](http://intotheskies.com/edef/stats/2019-05-30/AcePhoenixGamer_poshistory_graph.pdf)|\\n|77|+0|karmatic89|22|1.05|0.51|#73|7|23|16|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|F0000r|[graph](http://intotheskies.com/edef/stats/2019-05-30/karmatic89_poshistory_graph.pdf)|\\n|78|+0|F0000r|21|2.62|0.2|#80|5|10|7|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|karmatic89|[graph](http://intotheskies.com/edef/stats/2019-05-30/F0000r_poshistory_graph.pdf)|\\n|79|+0|Seven65|19|3.17|0.17|#81|6|8|6|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|baildodger|[graph](http://intotheskies.com/edef/stats/2019-05-30/Seven65_poshistory_graph.pdf)|\\n|80|+0|FerniWrites|21|4.2|0.15|#82|8|7|5|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|MinagiV|[graph](http://intotheskies.com/edef/stats/2019-05-30/FerniWrites_poshistory_graph.pdf)|\\n|81|+0|Error404NoUserFound|13|3.25|0.13|#83|4|6|4|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Engvar|[graph](http://intotheskies.com/edef/stats/2019-05-30/Error404NoUserFound_poshistory_graph.pdf)|\\n|82|+0|esoper1976|13|3.25|0.13|#84|4|6|4|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Eurotriangle|[graph](http://intotheskies.com/edef/stats/2019-05-30/esoper1976_poshistory_graph.pdf)|\\n|83|+0|DaOrkiestSalamander|19|0.59|0.76|#61|8|35|25|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|eliporter877|[graph](http://intotheskies.com/edef/stats/2019-05-30/DaOrkiestSalamander_poshistory_graph.pdf)|\\n|84|+0|GreatDane666|8|0.11|1.63|#29|14|76|31|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|opticalshadow|[graph](http://intotheskies.com/edef/stats/2019-05-30/GreatDane666_poshistory_graph.pdf)|\\n|85|+0|Theradead|12|4.0|0.11|#85|5|5|3|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|A_lot_of_arachnids|[graph](http://intotheskies.com/edef/stats/2019-05-30/Theradead_poshistory_graph.pdf)|\\n|86|+0|LaquaciousMute|14|4.67|0.11|#86|6|5|3|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|WhiteStripesWS6|[graph](http://intotheskies.com/edef/stats/2019-05-30/LaquaciousMute_poshistory_graph.pdf)|\\n|87|+0|allyourbase51|11|-|0.09|#87|8|4|2|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|topaz_b|[graph](http://intotheskies.com/edef/stats/2019-05-30/allyourbase51_poshistory_graph.pdf)|\\n|88|+1|Cowbeller|9|-|0.07|#88|8|3|2|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|xTMT|[graph](http://intotheskies.com/edef/stats/2019-05-30/Cowbeller_poshistory_graph.pdf)|\\n|89|+1|WhiteStripesWS6|2|-|0.05|#89|1|2|2|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|LaquaciousMute|[graph](http://intotheskies.com/edef/stats/2019-05-30/WhiteStripesWS6_poshistory_graph.pdf)|\\n|90|+1|GotZeroFucks2Give|1|-|0.04|#90|1|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Rougefarie|[graph](http://intotheskies.com/edef/stats/2019-05-30/GotZeroFucks2Give_poshistory_graph.pdf)|\\n|91|+1|bees1280|1|-|0.04|#91|1|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|UnbiasedSportsExpert|[graph](http://intotheskies.com/edef/stats/2019-05-30/bees1280_poshistory_graph.pdf)|\\n|92|+1|Gooberflagm2|1|-|0.04|#92|1|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|LMY723|[graph](http://intotheskies.com/edef/stats/2019-05-30/Gooberflagm2_poshistory_graph.pdf)|\\n|93|+2|BatteredAggie19|2|-|0.04|#93|2|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|rahuldottech|[graph](http://intotheskies.com/edef/stats/2019-05-30/BatteredAggie19_poshistory_graph.pdf)|\\n|94|+2|This_Explains_It_All|2|-|0.04|#94|2|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|_Dia_|[graph](http://intotheskies.com/edef/stats/2019-05-30/This_Explains_It_All_poshistory_graph.pdf)|\\n|95|+3|OhAces|3|-|0.04|#95|3|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|tlenze|[graph](http://intotheskies.com/edef/stats/2019-05-30/OhAces_poshistory_graph.pdf)|\\n|96|+3|LMY723|3|-|0.04|#96|3|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Gooberflagm2|[graph](http://intotheskies.com/edef/stats/2019-05-30/LMY723_poshistory_graph.pdf)|\\n|97|blue|UnbiasedSportsExpert|0|-|0.02|#97|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|bees1280|[graph](http://intotheskies.com/edef/stats/2019-05-30/UnbiasedSportsExpert_poshistory_graph.pdf)|\\n|98|blue|fuel126|0|-|0.02|#98|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|glorious_albus|[graph](http://intotheskies.com/edef/stats/2019-05-30/fuel126_poshistory_graph.pdf)|\\n|99|blue|schludy|0|-|0.02|#99|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Maxiscoolerthanyou|[graph](http://intotheskies.com/edef/stats/2019-05-30/schludy_poshistory_graph.pdf)|\\n|100|blue|DogfoodEnforcer|0|-|0.02|#100|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Lizzibabe|[graph](http://intotheskies.com/edef/stats/2019-05-30/DogfoodEnforcer_poshistory_graph.pdf)|\\n\\n\\n\\n\\n***\\n##Activity\\n(last 1 days)\\n\\n|**users active daily**|**posts**|**comments**|**avg posts / user / day**|**avg comments / user / day**|**random post of the month**|**activity graph**|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|51%|13|201|0.13|2.01|dev|[bar graph](http://intotheskies.com/edef/stats/2019-05-30/memberactivity_bar.pdf)|\\n\\n\\n\\n\\n***\\n##Our Favorite Subs\\n(last 1 days)\\n\\n|**by comment count**|**by user count**|\\n|:-:|:-:|\\n|d|d|\\n|e|e|\\n|v|v|\\n\\n\\n\\n\\n***\\n##Fallen Heroes\\n(5 longest surviving of top 20 kicked)\\n\\n|**hero**|**age at death**|\\n|:-:|:-:|\\n|RaggedFountain5|1.91|\\n|2068857539|1.91|\\n|Undoer|1.47|\\n|GeckoEidechse|1.11|\\n|OldManPhill|1.09|\\n\\n\\n\\n\\n***\\n##Recently Departed\\n(5 highest ranked of last 1 days)\\n\\n|**user**|**#**|**age at death**|**departure**|\\n|:-:|:-:|:-:|:-:|\\n|LyndyDM|54|0.78|2019-05-10|\\n|Fredstien850|77|0.15|2019-05-10|\\n|n00f|81|0.1|2019-05-10|\\n|576875|88|0.06|2019-05-24|\\n|schnapster31|90|0.0|2019-05-17|\\n\\n\\n\\n\\n***\\n##[Siblings](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)\\n(largest cookie group)\\n\\n|**cookie day**|**user**|\\n|:-:|:-:|\\n|2018-1-12|n3gd0|\\n|2018-1-12|tecrogue|\\n|2018-1-12|Rougefarie|\\n|2018-7-13|misterpyrrhuloxia|\\n|2018-7-13|Sickened_but_curious|\\n|2018-7-13|fighterace00|\\n|2018-7-20|Dystopian_Dreamer|\\n|2018-7-20|Willowx|\\n|2018-7-20|p5yk0t1km1r4ge|\\n|2018-12-1|TastyTacoN1nja|\\n|2018-12-1|doncicismydaddy|\\n|2018-12-1|karmatic89|\\n\\n\\n\\n\\n***\\n##Longest Neighbors\\n(top 2)\\n\\n|**botruns together**|**users**|\\n|:-:|:-:|\\n|108|boomheadshot7 and hornplayerKC|\\n|108|LukeWarmCage and boomheadshot7|\\n\\n\\n\\n\\n***\\nKicked users with similar usernames:\\n\\n d, e, v, \\n\\n***\\n\\n*I am not a bot, this post was performed manually by u/fighterace00\", \"author_fullname\": \"t2_j01kt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"table test2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv5tfz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559774614.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559327046.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EStats Report\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll activity was compiled from the last 1 days of data\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EUpcoming Cookie Days\\u003C/h2\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ecookie day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEngvar\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2017-6-26\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebioszombie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2017-7-3\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrentIsAbel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-6\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"/r/edefined\\\"\\u003Er/edefined\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Emean age\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Emedian age\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers kicked\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers w/o siblings\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ekicked per week\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ekicked user of the month\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eposition history graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ekick history graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2328\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ejiggs_\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.pdf\\\"\\u003E# graph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/poshistory_all_graph.pdf\\\"\\u003Ekick graph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.png\\\"\\u003EUsers\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E+/-\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u0026#39;s moved\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u0026#39;s / botrun\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eage\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E# by add day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebiggest jump\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebotruns survived\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebotruns moved\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Esiblings\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebuddy of the month\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E# history graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECaptainPedge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E117\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EVic_the_Dick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/CaptainPedge_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELukeWarmCage\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E112\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eticktockalock\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/LukeWarmCage_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eboomheadshot7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E111\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrentIsAbel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/boomheadshot7_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EhornplayerKC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E111\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edoncicismydaddy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/hornplayerKC_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKinighos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.73\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E110\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAnd_So_It_Goess\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Kinighos_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELizzibabe\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E110\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDogfoodEnforcer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Lizzibabe_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERavenwald\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.03\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E109\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emoreawkwardthenyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Ravenwald_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eemrickgj\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efartfacepooper\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/emrickgj_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echoontang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E105\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHippo_Singularity\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/choontang_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPM-YOUR-PMS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.08\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E104\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPhaethonas\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/PM-YOUR-PMS_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEngvar\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EError404NoUserFound\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Engvar_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebioszombie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1wrx2subarus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/bioszombie_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edraftstone\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etiffanydisasterxoxo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/draftstone_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ehitch21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEarlNeonCog\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/hitch21_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebooziwan\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKusmariini\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/booziwan_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMinagiV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EFerniWrites\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/MinagiV_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eeliporter877\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDaOrkiestSalamander\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/eliporter877_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAnd_So_It_Goess\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKinighos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/And_So_It_Goess_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJorgeAmVF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.06\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAcePhoenixGamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/JorgeAmVF_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eopticalshadow\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E103\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGreatDane666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/opticalshadow_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emoreawkwardthenyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERavenwald\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/moreawkwardthenyou_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1wrx2subarus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebioszombie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/1wrx2subarus_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPhaethonas\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPM-YOUR-PMS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Phaethonas_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ExTMT\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.01\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECowbeller\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/xTMT_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emedes24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheFern33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/medes24_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efartfacepooper\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eemrickgj\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/fartfacepooper_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EYourAmishNeighbor\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHenchman29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/YourAmishNeighbor_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESJC-Caron\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edishonorable\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/SJC-Caron_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECNNsPrimarySource\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En3gd0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/CNNsPrimarySource_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheFern33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emedes24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/TheFern33_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En3gd0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECNNsPrimarySource\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/n3gd0_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etecrogue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efighterace00\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/tecrogue_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERougefarie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGotZeroFucks2Give\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Rougefarie_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEurotriangle\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eesoper1976\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Eurotriangle_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebiffpower3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ethe_dank_666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/biffpower3_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMrNorc\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ep5yk0t1km1r4ge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/MrNorc_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHippo_Singularity\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echoontang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Hippo_Singularity_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EVic_the_Dick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.08\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECaptainPedge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Vic_the_Dick_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ethe_dank_666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebiffpower3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/the_dank_666_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eglorious_albus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.07\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efuel126\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/glorious_albus_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELorddragonfang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekurtn0tk1rk\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Lorddragonfang_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESicarius_Tacet\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echaosdemonhu\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Sicarius_Tacet_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxiscoolerthanyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.03\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eschludy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Maxiscoolerthanyou_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKusmariini\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.07\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.01\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebooziwan\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Kusmariini_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrentIsAbel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eboomheadshot7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/BrentIsAbel_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emisterpyrrhuloxia\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETastyTacoN1nja\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/misterpyrrhuloxia_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESickened_but_curious\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWillowx\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Sickened_but_curious_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efighterace00\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etecrogue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/fighterace00_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDystopian_Dreamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EClogsInBronteland\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Dystopian_Dreamer_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWillowx\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESickened_but_curious\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Willowx_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ep5yk0t1km1r4ge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMrNorc\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/p5yk0t1km1r4ge_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EClogsInBronteland\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDystopian_Dreamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/ClogsInBronteland_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHenchman29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EYourAmishNeighbor\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Henchman29_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eyoctometric\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E99\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxNobody\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/yoctometric_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Esvenguillotien\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAna_S_Gram\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/svenguillotien_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebaildodger\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESeven65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/baildodger_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA_lot_of_arachnids\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheradead\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/A_lot_of_arachnids_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEarlNeonCog\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ehitch21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/EarlNeonCog_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emadbubers\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETigernos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/madbubers_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUpper_Canada_Pango\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EsolarSpring\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Upper_Canada_Pango_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eticktockalock\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELukeWarmCage\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/ticktockalock_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etopaz_b\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eallyourbase51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/topaz_b_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cem\\u003EDia\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EThis_Explains_It_All\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/_Dia__poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxNobody\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eyoctometric\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/MaxNobody_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekurtn0tk1rk\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELorddragonfang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/kurtn0tk1rk_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAna_S_Gram\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.06\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E102\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Esvenguillotien\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Ana_S_Gram_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETastyTacoN1nja\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emisterpyrrhuloxia\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/TastyTacoN1nja_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edoncicismydaddy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EhornplayerKC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/doncicismydaddy_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edishonorable\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESJC-Caron\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/dishonorable_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etiffanydisasterxoxo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.08\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edraftstone\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/tiffanydisasterxoxo_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EsolarSpring\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUpper_Canada_Pango\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/solarSpring_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Erahuldottech\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBatteredAggie19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/rahuldottech_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E73\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETigernos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emadbubers\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Tigernos_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echaosdemonhu\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESicarius_Tacet\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/chaosdemonhu_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etlenze\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#79\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EOhAces\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/tlenze_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAcePhoenixGamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJorgeAmVF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/AcePhoenixGamer_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekarmatic89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#73\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EF0000r\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/karmatic89_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EF0000r\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekarmatic89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/F0000r_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E79\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESeven65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebaildodger\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Seven65_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EFerniWrites\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMinagiV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/FerniWrites_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EError404NoUserFound\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEngvar\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Error404NoUserFound_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eesoper1976\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEurotriangle\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/esoper1976_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDaOrkiestSalamander\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eeliporter877\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/DaOrkiestSalamander_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGreatDane666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eopticalshadow\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/GreatDane666_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheradead\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA_lot_of_arachnids\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Theradead_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E86\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELaquaciousMute\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#86\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWhiteStripesWS6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/LaquaciousMute_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eallyourbase51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etopaz_b\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/allyourbase51_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECowbeller\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.07\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ExTMT\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Cowbeller_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWhiteStripesWS6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELaquaciousMute\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/WhiteStripesWS6_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGotZeroFucks2Give\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERougefarie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/GotZeroFucks2Give_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebees1280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUnbiasedSportsExpert\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/bees1280_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGooberflagm2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELMY723\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Gooberflagm2_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBatteredAggie19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Erahuldottech\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/BatteredAggie19_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EThis_Explains_It_All\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cem\\u003EDia\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/This_Explains_It_All_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EOhAces\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etlenze\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/OhAces_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELMY723\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGooberflagm2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/LMY723_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUnbiasedSportsExpert\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebees1280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/UnbiasedSportsExpert_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efuel126\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eglorious_albus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/fuel126_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E99\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eschludy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#99\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxiscoolerthanyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/schludy_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDogfoodEnforcer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELizzibabe\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/DogfoodEnforcer_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EActivity\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(last 1 days)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers active daily\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eposts\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ecomments\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eavg posts / user / day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eavg comments / user / day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Erandom post of the month\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eactivity graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E201\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.01\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edev\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/memberactivity_bar.pdf\\\"\\u003Ebar graph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EOur Favorite Subs\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(last 1 days)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eby comment count\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eby user count\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ed\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ed\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ee\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ee\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ev\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ev\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EFallen Heroes\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(5 longest surviving of top 20 kicked)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ehero\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eage at death\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERaggedFountain5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2068857539\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUndoer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.47\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGeckoEidechse\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.11\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EOldManPhill\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003ERecently Departed\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(5 highest ranked of last 1 days)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eage at death\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Edeparture\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELyndyDM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EFredstien850\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En00f\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E576875\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.06\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-24\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eschnapster31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-17\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003ESiblings\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(largest cookie group)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ecookie day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-1-12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En3gd0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-1-12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etecrogue\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-1-12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERougefarie\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emisterpyrrhuloxia\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESickened_but_curious\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efighterace00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDystopian_Dreamer\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWillowx\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ep5yk0t1km1r4ge\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-12-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETastyTacoN1nja\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-12-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edoncicismydaddy\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-12-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekarmatic89\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003ELongest Neighbors\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(top 2)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebotruns together\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eboomheadshot7 and hornplayerKC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELukeWarmCage and boomheadshot7\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EKicked users with similar usernames:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ed, e, v, \\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E*I am not a bot, this post was performed manually by \\u003Ca href=\\\"/u/fighterace00\\\"\\u003Eu/fighterace00\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?auto=webp\\u0026s=cc205237bea6714c06337b455f14f778fb6d485c\", \"width\": 645, \"height\": 468}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4ad85fc0456064b525d9efedefa663385278e26b\", \"width\": 108, \"height\": 78}, {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5fa2e2e5127faa889b483cc9eb1906571a111978\", \"width\": 216, \"height\": 156}, {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=91d8338561c77d952059cba248c255c4dd3db9ab\", \"width\": 320, \"height\": 232}, {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b21ccfef6e9f53b61906d7d041d77650b9c84dab\", \"width\": 640, \"height\": 464}], \"variants\": {}, \"id\": \"syJpnjA2y2EOuPguxrqZbt8mYL90TIX_CcVnha3-Yxs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5tfz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fighterace00\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv5tfz/table_test2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv5tfz/table_test2/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559298246.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"1.\\\\*\\\\***Strategy name**: Putting this dog on Ice\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n2. \\\\*\\\\***Boss**: Ugallu D350\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n3. \\\\*\\\\***Describe your Strategy**:\\\\*\\\\* \\\\`Ice Team\\\\` / \\\\`Off-Realm\\\\`\\n\\n\\u0026#x200B;\\n\\n4. \\\\*\\\\*\\\\***Insight!**:\\\\*\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\* Laguna provides Imperils and Chain. W-MCH + LMR sets Sora up for the beatdown. 6 stack Imperil + Snow USB2 = 19999 SSS + 10kish Blitzes, capped Icy Offerings and Icicle Rushes, even with 3 off realmers.\\n\\n\\u0026#x200B;\\n\\n\\\\* Sora does Sora things\\n\\n\\u0026#x200B;\\n\\n\\\\* Elarra dances all of his buffs away and USBs to counter poison for Snow's BSB.\\n\\n\\u0026#x200B;\\n\\n\\\\* Snow USB2s then BSBs for Last Stand. Could've used USB1 for Radiant shield in hindsight since Regenga helped mitigate deaths. Icicle Rush in between for chain.\\n\\n\\u0026#x200B;\\n\\n\\\\* Vanille Protectgas then BSBs. LMR1 buffs her heals while LMR2 debuffs doge.\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***Holy Trinity casts**:\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\* **Wal**l: 1\\n\\n\\u0026#x200B;\\n\\n\\\\* **Medica**: Lots\\n\\n\\u0026#x200B;\\n\\n\\\\* **Hastega**: 1\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***S/L count / Medals lost**: 0\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***Time**: 29.32\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n|Hero, dive|Ability 1||Ability 2|RM+LMR|SB(-)|\\n\\n|:-|:-|:-|:-|:-|\\n\\n|Snow, 5, 100|Banishing Strike R3|Icicle Rush R4|DMT, LMR1, LM1|USB2(1), BSB(1)|\\n\\n|Laguna, 5, 103|Icy Offering R3|Frost Offering R4|Ace Striker, LM2, LMR|Chain(1), SSB(1)|\\n\\n|Sora, 5, 110|Snowspell Strike R4|Snowspell Strike R3|Orphaned Cub, LMR, LM2(Ice)|AASB(1), AOSB(1)|\\n\\n|Vanille, 4, 10|Curaja R4|Protectga R3|MM, LMR1, LMR2|BSB(2)|\\n\\n|Elarra, 5, 120|Multi Break R2|Enfeebling Jitterbug R4|Battleforged, LM2, LM1|USB(3+)|\\n\\n\\u0026#x200B;\\n\\n|main|sub1|sub2|sub3|sub4|\\n|:-|:-|:-|:-|:-|\\n|Mateus|Famfrit|Manticore|Madeen|Madeen|\\n|Damp Air10+Def15|BWard8+HPBoon8|Ice+15x2|ATK20x2|BWard8+SWard8|\\n\\n\\\\*\\\\*\\\\*\", \"author_fullname\": \"t2_xltvv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv4dok\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559287428.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559315081.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E1.**\\u003Cstrong\\u003EStrategy name\\u003C/strong\\u003E: Putting this dog on Ice**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E**\\u003Cstrong\\u003EBoss\\u003C/strong\\u003E: Ugallu D350**\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E**\\u003Cstrong\\u003EDescribe your Strategy\\u003C/strong\\u003E:** `Ice Team` / `Off-Realm`\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E***\\u003Cstrong\\u003EInsight!\\u003C/strong\\u003E:***\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Laguna provides Imperils and Chain. W-MCH + LMR sets Sora up for the beatdown. 6 stack Imperil + Snow USB2 = 19999 SSS + 10kish Blitzes, capped Icy Offerings and Icicle Rushes, even with 3 off realmers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Sora does Sora things\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Elarra dances all of his buffs away and USBs to counter poison for Snow\\u0026#39;s BSB.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Snow USB2s then BSBs for Last Stand. Could\\u0026#39;ve used USB1 for Radiant shield in hindsight since Regenga helped mitigate deaths. Icicle Rush in between for chain.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Vanille Protectgas then BSBs. LMR1 buffs her heals while LMR2 debuffs doge.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003EHoly Trinity casts\\u003C/strong\\u003E:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EWal\\u003C/strong\\u003El: 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EMedica\\u003C/strong\\u003E: Lots\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EHastega\\u003C/strong\\u003E: 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003ES/L count / Medals lost\\u003C/strong\\u003E: 0**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003ETime\\u003C/strong\\u003E: 29.32**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Hero, dive|Ability 1||Ability 2|RM+LMR|SB(-)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|:-|:-|:-|:-|:-|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Snow, 5, 100|Banishing Strike R3|Icicle Rush R4|DMT, LMR1, LM1|USB2(1), BSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Laguna, 5, 103|Icy Offering R3|Frost Offering R4|Ace Striker, LM2, LMR|Chain(1), SSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Sora, 5, 110|Snowspell Strike R4|Snowspell Strike R3|Orphaned Cub, LMR, LM2(Ice)|AASB(1), AOSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Vanille, 4, 10|Curaja R4|Protectga R3|MM, LMR1, LMR2|BSB(2)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Elarra, 5, 120|Multi Break R2|Enfeebling Jitterbug R4|Battleforged, LM2, LM1|USB(3+)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Emain\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub1\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub2\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub3\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub4\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMateus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFamfrit\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EManticore\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMadeen\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMadeen\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDamp Air10+Def15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBWard8+HPBoon8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EIce+15x2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EATK20x2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBWard8+SWard8\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv4dok\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tenryou\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv4dok/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv4dok/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559286281.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test2\\n\\n\\u0026#x200B;\\n\\n[test2](https://i.redd.it/gbjaof51mh131.jpg)\", \"author_fullname\": \"t2_mjiuof2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test1\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 92, \"hide_score\": false, \"media_metadata\": {\"gbjaof51mh131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1848, \"x\": 2784, \"u\": \"https://i.redd.it/gbjaof51mh131.jpg\"}, \"m\": \"image/jpg\", \"id\": \"gbjaof51mh131\"}}, \"name\": \"t3_bv3wh8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/G-x_-fkvlWPBquR_7ko3ewYcPtnUtxr0oHTB-1c3rZs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559311347.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/gbjaof51mh131.jpg\\\"\\u003Etest2\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv3wh8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hanzeedent69\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv3wh8/test1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv3wh8/test1/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559282547.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[SCP-3790](http://www.scp-wiki.net/scp-3790) - Department of Abnormalities\\n\\nAUTHOR: Croquembouche, djkaktus\\n\\n***\\n\\n3790 is a fascinating scip, ostensibly a minimalistic Series 1 entry wrapped in the modernity of a Series 4 one, ending in an absolute masterclass of an atmospheric piece that tells a story of hidden secrets, but never truly gives us its conclusion.\\n\\nAnyway, let's get on with this.\\n\\n***\\n**PART 1 - OVERVIEW**\\n\\n\\u003EObject Class: Safe\\n\\nThis tell us that this SCP is easy to contain, just put a lock on it and leave it alone. *wink wink*\\n\\u003ESpecial Containment Procedures: The door into the stairwell leading to SCP-3790 is to be padlocked at all times, and a single guard is to be posted nearby to ensure no individuals enter SCP-3790.\\n\\n\\u003EBy order of the Overseer Council, entry into SCP-3790 is forbidden.\\n\\nForbidden entry, huh? That just makes all the more enticing, you know.\\n\\u003EDescription: SCP-3790 is a structure located beneath the abandoned Port Superior Canning Company warehouse in London, United Kingdom. The only access to this space is down a narrow stairwell that ends in a short black door. The door is free of identifying markings save for a small metal placard just above the door handle that reads \\\"SCP Foundation Department of Abnormalities\\\".\\n\\nSCP Foundation Department of Abnormalities? Implying that it\\u2019s a branch that specifically deal with abnormalities alone? Isn\\u2019t that what the whole of the SCP Foundation\\u2019s job? Hmm\\u2026\\n\\nWell, there are two distinct possibilities I can think of:\\n\\n1. It\\u2019s an outdated relic of a younger, less experienced Foundation whose duty didn\\u2019t concern anomalies only, and has since been lost to time, or\\n\\n2. It\\u2019s a hidden department operation in secret, not unlike the Antimemetics Department, which deals with things so far outside the norm that not even the main Foundation can deal with.\\n\\nEither or. Perhaps both.\\n\\nThe rest of the file has been locked away by the Overseer Council. Being locked away seems to be a recurring theme, among other things. Let\\u2019s see what the Council has to hide.\\n\\n\\u003E While there is evidence of prior human activity within SCP-3790, the structure appears to have been abandoned for a considerable amount of time.\\n\\n\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists. No information regarding the structure has been located.\\n\\nBeen abandoned, or sealed off and forgotten? More questions, but no answer.\\n\\n**PART 2 - THE RUNDOWN**\\n\\n*Disclaimer: From this point onwards, I may not be able to concretely point out any real connections, nor can I ensure the ones I do are correct. Proceed with skepticism.*\\n\\nLet\\u2019s start with **Level One**:\\n\\u003ERoom One\\n\\n\\n\\u003EPlacard Name: Vivaldi\\n\\n\\u003EDescription: Chamber is empty aside from a violin propped in the far corner of the room. The bow is broken on the ground in front of it.\\n\\nAppears to be Antonio Vivaldi\\u2019s violin. Mr. Vivaldi was a famous composer, but his compositions became outmoded later in life, Vivaldi eventually came into impoverishment and died in relative obscurity.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: No placard\\n\\n\\u003EDescription: Chamber is empty.\\n\\nCould be a nod to [SCP-3930](http://www.scp-wiki.net/scp-3930), the one that doesn\\u2019t exist and if you enter, you don\\u2019t exist either. (Might also be a reference to [SCP-1935](http://www.scp-wiki.net/scp-1935) \\u201cAn Empty Chamber, but that\\u2019s shaky at best.)\\n\\n**Level Two**:\\n\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: The Crying Boy\\n\\n\\u003EDescription: A canvas is set up in the room. A sheet is draped over it.\\n\\nThe Crying Boy is famed as a cursed painting usually found undamaged amidst the ruins of burned houses. Later, more scientific analysis revealed the explanation behind this mystery, and this myth fell out of vogue.\\n\\n**Level Three**:\\n\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: The Infinite Cold\\n\\n\\u003EDescription: The floor of the chamber is covered with a thin layer of water. The interior of the room seems to be considerably larger than its exterior physical dimensions would allow.\\n\\nSeems to be a reference to [SCP-3799](http://www.scp-wiki.net/scp-3799), in which the event in question was basically retconned to no longer happen, the water implying that it melted. In another, more meta sense, it might refer to the ex-SCP-2318 \\u201cAwake in the Infinite Cold\\u201d, which the author djkaktus himself deleted out of existence.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: World Without Man\\n\\n\\u003EDescription: Chamber is empty.\\n\\n[SCP-804](http://www.scp-wiki.net/scp-804), the object that wants to delete all of humanity. The chamber being empty is interesting, though.\\n\\n**Level Four**:\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: The Morning Star\\n\\n\\u003EDescription: A rusted sword hangs on a rack in the back of the room. The door to the chamber feels warm.\\n\\nAppears to be Lucifer\\u2019s blazing sword from djkaktus\\u2019s Proposal III. Considering the story behind it, the O5 Council and the Administrator, this being a secret that they want to lock away probably belongs here.\\n\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: Wormwood\\n\\n\\u003EDescription: Viewport is obscured.\\n\\n[SCP-4008](http://www.scp-wiki.net/scp-4008) \\u201cWormwood\\u201d \\u2013 Seeds that makes people forget.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: Harmonia's Necklace\\n\\n\\u003EDescription: A simple golden necklace hangs on a post in the back of the room, which is lit by a single tall candle. The chamber does not appear to have a floor.\\n\\nThe mythical Necklace of Harmonia that grants woman eternal youth. Not sure how it ended up here.\\n\\n\\u003ERoom Four\\n\\n\\u003EPlacard Name: No placard\\n\\n\\u003EDescription: Chamber is unlit. Individuals who look into this room feel a lingering sense of dread afterward.\\n\\n[SCP-2740](http://www.scp-wiki.net/scp-2740). The unlit attic that you can\\u2019t never truly seems to grasp, and has a habit of retconning people out of existence.\\n\\n**Level Five**:\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: Tool marks indicate that placard has been pried off. The word \\\"hello\\\" is scratched into the metal where the placard should be.\\n\\n\\u003EDescription: Sliding panel is welded shut.\\n\\nSounds like [SCP-3935](http://www.scp-wiki.net/scp-3935). There\\u2019s already an excellent declass of it here, but I\\u2019ll quote this: \\u201cthe spiral of dark secrets *only goes deeper and deeper, hidden underground, buried to be forgotten*, with all the suffering still present, like the endless schools going deeper and deeper.\\\"\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: Channel 55\\n\\n\\u003EDescription: A small, CRT television sits in the center of the room. Something is playing on the screen, but a dark cloth has been draped over the top of it.\\n\\nMight be a reference to SCP-055 and SCP-2998? [SCP-2998](http://www.scp-wiki.net/scp-2998) is about an anomalous (TV) signal that contained alien which eventually took over the world. To reset it, SCP-055 and SCP-579 were used (as per Roget's Proposal) to reverse everything, and all knowledge of SCP-2998\\u2019s full extent were purged to prevent another repeat.\\n\\n**Level Six**:\\n\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: Mr. Silence\\n\\n\\u003EDescription: A tall, black, wooden box rests against the back wall. It is bound in chains and locks. A bright purple \\\"W\\\" is emblazoned on its front in gold trim.\\n\\n[A tale.] (http://www.scp-wiki.net/to-never-again-see-the-light-of-day)\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: \\u00d6tzi\\n\\n\\u003EDescription: A layer of ice covers the viewport and obscures visibility. A dark shape can be seen in the middle of the room, although no details can be distinguished.\\n\\nCould be referring to [SCP-2521](http://www.scp-wiki.net/scp-2521), if only because the description matches its image. An entity whose information cannot be spoken, and those who do are gone from this world.\\n\\n\\u003ERoom Four\\n\\n\\u003EPlacard Name: Apollyon's Crown\\n\\n\\u003EDescription: A silver lockbox rests on a table in the middle of the room. Notably, the exterior of the door is covered in scratch marks, as if by something trying to get into the chamber.\\n\\n[SCP-2317](http://www.scp-wiki.net/scp-2998). All its containment procedures boil down to 'stick their had in the sand, and hope for the best'. The O5 council made sure to keep virtually everyone in the dark about this thing, and the true SCP-2317 file remain secret to everyone but the topmost level.\\nCould also be referring to Tufto's Proposal, in which the foundation decides that the Scarlet King is no longer a threat, and ignore the underlying problem.\\n\\nAnd finally, **Level Seve**-\\n\\n\\u003E Although the opening to the seventh level is visible through the grated floor of the elevator, the lift mechanism appears to have been modified and can no longer access that floor.\\n\\nWell, ain\\u2019t that ominous.\\n\\n**PART 3 - HOW ABNORMAL**\\n\\nAs a personal observation, the chambers contain things that seems to share a general idea: They are that which we have forgotten or ignored, be it willfully, because we no longer find it fascinating, because we were made to forget, or because it no longer exist. Strangely enough, the Department of Abnormalities itself fits this criteria as well, considering:\\n\\n\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists.\\n\\nReading through SCP-3790, signs seems to point toward this being a coverup: No exploration log, no attempt to gain access to Level Seven, not even a cursory attempt to study whatever's being contained in here. \\n\\nFor something so blatantly called \\\"SCP Foundation Department of Abnormalities\\\", the Council sure seems eager to do the bare minimum of documenting it. Heck, I'm surprised thy even let us read this file at al-\\n\\n...Huh.\\n\\n**PART 4 - SECRETKEEPING**\\n\\nWhy do they let us read this file? Why not just restrict the whole thing to Clearance Level 5? Why go through the trouble of locking the rest of it but let someone know there exists an \\\"SCP Foundation Department of Abnormalities\\\" in the first place?\\n\\n*Because it's a hook.*\\n\\nIf the council deemed this thing dangerous this thing dangerous enough to lock away knowledge of its content, telling us its title seems almost counterproductive, and this file doesn't seem to classified either. In fact...\\n\\n\\u003ELock Overridden\\n\\nWe overrode the lock to gain access to the meat of 3790. Our curiosity got the better of us, and now we're exploring this abnormality of an article.\\n\\nRemember when I said \\\"More questions, but no answer.\\\"? This is what SCP-3790 is about. It's a place where secrets are put to rest, so far down that virtually no one knows what it is anymore. And that makes us ask questions, draws connections, grasping for answers that was made to never supposed to be discovered.\\n\\nUltimately, what this thing contains doesn't matter too much in the grand scheme of things. They're there as a bait to keep us digging for more, and by god, we *took* it.\\n\\n**CONCLUSION**\\n\\nI can not praise Croquembouche and djkaktus enough for writing an absolute masterclass of an article in such a way that draws everyone in, yet leaving a hole in the shape of closure, making the curious minds, both in-universe and out-, clamoring for answers.\\n\\nWhat is the Department of Abnormalities, and what resides on Level Seven? Only time can tell.\\n\\nAnd when that time comes, perhaps we will finally learn there\\u2019s a price to be paid for unearthing secrets that should never see the light of day again.\", \"author_fullname\": \"t2_2j4j6rg7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test dc\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv2mv5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559302648.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-3790\\\"\\u003ESCP-3790\\u003C/a\\u003E - Department of Abnormalities\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAUTHOR: Croquembouche, djkaktus\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E3790 is a fascinating scip, ostensibly a minimalistic Series 1 entry wrapped in the modernity of a Series 4 one, ending in an absolute masterclass of an atmospheric piece that tells a story of hidden secrets, but never truly gives us its conclusion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway, let\\u0026#39;s get on with this.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 1 - OVERVIEW\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EObject Class: Safe\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis tell us that this SCP is easy to contain, just put a lock on it and leave it alone. \\u003Cem\\u003Ewink wink\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESpecial Containment Procedures: The door into the stairwell leading to SCP-3790 is to be padlocked at all times, and a single guard is to be posted nearby to ensure no individuals enter SCP-3790.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy order of the Overseer Council, entry into SCP-3790 is forbidden.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EForbidden entry, huh? That just makes all the more enticing, you know.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDescription: SCP-3790 is a structure located beneath the abandoned Port Superior Canning Company warehouse in London, United Kingdom. The only access to this space is down a narrow stairwell that ends in a short black door. The door is free of identifying markings save for a small metal placard just above the door handle that reads \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESCP Foundation Department of Abnormalities? Implying that it\\u2019s a branch that specifically deal with abnormalities alone? Isn\\u2019t that what the whole of the SCP Foundation\\u2019s job? Hmm\\u2026\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, there are two distinct possibilities I can think of:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt\\u2019s an outdated relic of a younger, less experienced Foundation whose duty didn\\u2019t concern anomalies only, and has since been lost to time, or\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt\\u2019s a hidden department operation in secret, not unlike the Antimemetics Department, which deals with things so far outside the norm that not even the main Foundation can deal with.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EEither or. Perhaps both.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe rest of the file has been locked away by the Overseer Council. Being locked away seems to be a recurring theme, among other things. Let\\u2019s see what the Council has to hide.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWhile there is evidence of prior human activity within SCP-3790, the structure appears to have been abandoned for a considerable amount of time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists. No information regarding the structure has been located.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EBeen abandoned, or sealed off and forgotten? More questions, but no answer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 2 - THE RUNDOWN\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EDisclaimer: From this point onwards, I may not be able to concretely point out any real connections, nor can I ensure the ones I do are correct. Proceed with skepticism.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet\\u2019s start with \\u003Cstrong\\u003ELevel One\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Vivaldi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty aside from a violin propped in the far corner of the room. The bow is broken on the ground in front of it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAppears to be Antonio Vivaldi\\u2019s violin. Mr. Vivaldi was a famous composer, but his compositions became outmoded later in life, Vivaldi eventually came into impoverishment and died in relative obscurity.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: No placard\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECould be a nod to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3930\\\"\\u003ESCP-3930\\u003C/a\\u003E, the one that doesn\\u2019t exist and if you enter, you don\\u2019t exist either. (Might also be a reference to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-1935\\\"\\u003ESCP-1935\\u003C/a\\u003E \\u201cAn Empty Chamber, but that\\u2019s shaky at best.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Two\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Crying Boy\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A canvas is set up in the room. A sheet is draped over it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Crying Boy is famed as a cursed painting usually found undamaged amidst the ruins of burned houses. Later, more scientific analysis revealed the explanation behind this mystery, and this myth fell out of vogue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Three\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Infinite Cold\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: The floor of the chamber is covered with a thin layer of water. The interior of the room seems to be considerably larger than its exterior physical dimensions would allow.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESeems to be a reference to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3799\\\"\\u003ESCP-3799\\u003C/a\\u003E, in which the event in question was basically retconned to no longer happen, the water implying that it melted. In another, more meta sense, it might refer to the ex-SCP-2318 \\u201cAwake in the Infinite Cold\\u201d, which the author djkaktus himself deleted out of existence.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: World Without Man\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-804\\\"\\u003ESCP-804\\u003C/a\\u003E, the object that wants to delete all of humanity. The chamber being empty is interesting, though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Four\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Morning Star\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A rusted sword hangs on a rack in the back of the room. The door to the chamber feels warm.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAppears to be Lucifer\\u2019s blazing sword from djkaktus\\u2019s Proposal III. Considering the story behind it, the O5 Council and the Administrator, this being a secret that they want to lock away probably belongs here.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Wormwood\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Viewport is obscured.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-4008\\\"\\u003ESCP-4008\\u003C/a\\u003E \\u201cWormwood\\u201d \\u2013 Seeds that makes people forget.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Harmonia\\u0026#39;s Necklace\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A simple golden necklace hangs on a post in the back of the room, which is lit by a single tall candle. The chamber does not appear to have a floor.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe mythical Necklace of Harmonia that grants woman eternal youth. Not sure how it ended up here.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Four\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: No placard\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is unlit. Individuals who look into this room feel a lingering sense of dread afterward.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-2740\\\"\\u003ESCP-2740\\u003C/a\\u003E. The unlit attic that you can\\u2019t never truly seems to grasp, and has a habit of retconning people out of existence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Five\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Tool marks indicate that placard has been pried off. The word \\u0026quot;hello\\u0026quot; is scratched into the metal where the placard should be.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Sliding panel is welded shut.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESounds like \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3935\\\"\\u003ESCP-3935\\u003C/a\\u003E. There\\u2019s already an excellent declass of it here, but I\\u2019ll quote this: \\u201cthe spiral of dark secrets \\u003Cem\\u003Eonly goes deeper and deeper, hidden underground, buried to be forgotten\\u003C/em\\u003E, with all the suffering still present, like the endless schools going deeper and deeper.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Channel 55\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A small, CRT television sits in the center of the room. Something is playing on the screen, but a dark cloth has been draped over the top of it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMight be a reference to SCP-055 and SCP-2998? \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2998\\\"\\u003ESCP-2998\\u003C/a\\u003E is about an anomalous (TV) signal that contained alien which eventually took over the world. To reset it, SCP-055 and SCP-579 were used (as per Roget\\u0026#39;s Proposal) to reverse everything, and all knowledge of SCP-2998\\u2019s full extent were purged to prevent another repeat.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Six\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Mr. Silence\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A tall, black, wooden box rests against the back wall. It is bound in chains and locks. A bright purple \\u0026quot;W\\u0026quot; is emblazoned on its front in gold trim.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/to-never-again-see-the-light-of-day\\\"\\u003EA tale.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: \\u00d6tzi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A layer of ice covers the viewport and obscures visibility. A dark shape can be seen in the middle of the room, although no details can be distinguished.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECould be referring to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2521\\\"\\u003ESCP-2521\\u003C/a\\u003E, if only because the description matches its image. An entity whose information cannot be spoken, and those who do are gone from this world.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Four\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Apollyon\\u0026#39;s Crown\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A silver lockbox rests on a table in the middle of the room. Notably, the exterior of the door is covered in scratch marks, as if by something trying to get into the chamber.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-2998\\\"\\u003ESCP-2317\\u003C/a\\u003E. All its containment procedures boil down to \\u0026#39;stick their had in the sand, and hope for the best\\u0026#39;. The O5 council made sure to keep virtually everyone in the dark about this thing, and the true SCP-2317 file remain secret to everyone but the topmost level.\\nCould also be referring to Tufto\\u0026#39;s Proposal, in which the foundation decides that the Scarlet King is no longer a threat, and ignore the underlying problem.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd finally, \\u003Cstrong\\u003ELevel Seve\\u003C/strong\\u003E-\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAlthough the opening to the seventh level is visible through the grated floor of the elevator, the lift mechanism appears to have been modified and can no longer access that floor.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell, ain\\u2019t that ominous.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 3 - HOW ABNORMAL\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a personal observation, the chambers contain things that seems to share a general idea: They are that which we have forgotten or ignored, be it willfully, because we no longer find it fascinating, because we were made to forget, or because it no longer exist. Strangely enough, the Department of Abnormalities itself fits this criteria as well, considering:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EReading through SCP-3790, signs seems to point toward this being a coverup: No exploration log, no attempt to gain access to Level Seven, not even a cursory attempt to study whatever\\u0026#39;s being contained in here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor something so blatantly called \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot;, the Council sure seems eager to do the bare minimum of documenting it. Heck, I\\u0026#39;m surprised thy even let us read this file at al-\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...Huh.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 4 - SECRETKEEPING\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy do they let us read this file? Why not just restrict the whole thing to Clearance Level 5? Why go through the trouble of locking the rest of it but let someone know there exists an \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot; in the first place?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EBecause it\\u0026#39;s a hook.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the council deemed this thing dangerous this thing dangerous enough to lock away knowledge of its content, telling us its title seems almost counterproductive, and this file doesn\\u0026#39;t seem to classified either. In fact...\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ELock Overridden\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWe overrode the lock to gain access to the meat of 3790. Our curiosity got the better of us, and now we\\u0026#39;re exploring this abnormality of an article.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERemember when I said \\u0026quot;More questions, but no answer.\\u0026quot;? This is what SCP-3790 is about. It\\u0026#39;s a place where secrets are put to rest, so far down that virtually no one knows what it is anymore. And that makes us ask questions, draws connections, grasping for answers that was made to never supposed to be discovered.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUltimately, what this thing contains doesn\\u0026#39;t matter too much in the grand scheme of things. They\\u0026#39;re there as a bait to keep us digging for more, and by god, we \\u003Cem\\u003Etook\\u003C/em\\u003E it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECONCLUSION\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can not praise Croquembouche and djkaktus enough for writing an absolute masterclass of an article in such a way that draws everyone in, yet leaving a hole in the shape of closure, making the curious minds, both in-universe and out-, clamoring for answers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is the Department of Abnormalities, and what resides on Level Seven? Only time can tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd when that time comes, perhaps we will finally learn there\\u2019s a price to be paid for unearthing secrets that should never see the light of day again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?auto=webp\\u0026s=c819c19d942b726d0a2ff50cb74acbfff1e08a06\", \"width\": 1880, \"height\": 1253}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c2e24f32402052f314732b2536e0cc47089dcee3\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fbcce917a4186d2c4b6e3d9a8e33c2bd7a3a738f\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=61c8f923e42459533533af8ca93d4df3ee37b5e4\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f7154363e4a980a8daf17a79782c71f42a65b417\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e813d5635e53ece285115c875dd756c0acc4318b\", \"width\": 960, \"height\": 639}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d29b4e3ea4db162608c93db1eaf9d11936fdc172\", \"width\": 1080, \"height\": 719}], \"variants\": {}, \"id\": \"Qjpf9RWeib9EvmI2MPm7-BmVBDzqrMOowRjqJjf6c4g\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv2mv5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SYwaves\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559273848.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#Captain Details \\nCaptain Name\\u0026nbsp; | Dr. Jannick Carter\\u0026nbsp; | \\u0026nbsp; \\n--|--|-- \\nCaptain Career\\u0026nbsp; | Science\\u0026nbsp; | \\u0026nbsp; \\nCaptain Faction\\u0026nbsp; | Federation\\u0026nbsp; | \\u0026nbsp; \\nCaptain Race\\u0026nbsp; | Human\\u0026nbsp; | \\u0026nbsp; \\nPrimary Specialization\\u0026nbsp; | Temporal\\u0026nbsp; | \\u0026nbsp; \\nSecondary Specialization\\u0026nbsp; | Strategist\\u0026nbsp; | \\u0026nbsp; \\n#Space Skill Tree \\nRank\\u0026nbsp; | Engineering\\u0026nbsp; | \\u0026nbsp; | Science\\u0026nbsp; | \\u0026nbsp; | Tactical\\u0026nbsp; | \\u0026nbsp; | \\n--|--|--|--|--|--|-- \\nLieutenant\\u0026nbsp; | Improved Hull Restoration\\u0026nbsp; | Improved Hull Capacity\\u0026nbsp; | Improved Shield Restoration\\u0026nbsp; | Improved Shield Capacity\\u0026nbsp; | Improved Energy Weapon Training\\u0026nbsp; | Advanced Projectile Weapon Training\\u0026nbsp; \\nLt. Commander\\u0026nbsp; | Electro-Plasma System Flow\\u0026nbsp; | Advanced Impulse Expertise\\u0026nbsp; | Improved Control Expertise\\u0026nbsp; | Improved Drain Expertise\\u0026nbsp; | Targeting Expertise\\u0026nbsp; | Defensive Maneuvering\\u0026nbsp; \\n\\u0026nbsp; | Full Impulse Energy Shunt\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nCommander\\u0026nbsp; | Hull Plating\\u0026nbsp; | \\u0026nbsp; | Shield Regeneration\\u0026nbsp; | Shield Hardness\\u0026nbsp; | Improved Weapon Amplification\\u0026nbsp; | Improved Weapon Specialization\\u0026nbsp; \\nCaptain\\u0026nbsp; | Defensive Subsystem Tuning\\u0026nbsp; | Offensive Subsystem Tuning\\u0026nbsp; | Advanced Exotic Particle Generator\\u0026nbsp; | Advanced Long Range Targeting Sensors\\u0026nbsp; | Improved Hull Penetration\\u0026nbsp; | Improved Shield Weakening\\u0026nbsp; \\nAdmiral\\u0026nbsp; | Warp Core Potential\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | Warp Core Efficiency\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n1 Points Left\\u0026nbsp; | 14\\u0026nbsp; | \\u0026nbsp; | 16\\u0026nbsp; | \\u0026nbsp; | 15\\u0026nbsp; | \\u0026nbsp; \\n \\n#Space Skill Unlocks \\nPurchases\\u0026nbsp; | Engineering\\u0026nbsp; | Science\\u0026nbsp; | Tactical\\u0026nbsp; \\n--|--|--|-- \\n2\\u0026nbsp; | Hazard Emitters III\\u0026nbsp; | Science Team III\\u0026nbsp; | Tachyon Beam III\\u0026nbsp; \\n5\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n7\\u0026nbsp; | Feedback Pulse III\\u0026nbsp; | Photonic Shockwave III\\u0026nbsp; | Jam Sensors III\\u0026nbsp; \\n10\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n12\\u0026nbsp; | Polarize Hull III\\u0026nbsp; | Gravity Well III\\u0026nbsp; | Tractor Beam III\\u0026nbsp; \\n15\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n#Ship Loadout: *Fleet Advanced Research Vessel (T6)* \\nSlot\\u0026nbsp; | Item\\u0026nbsp; | Notes\\u0026nbsp; \\n--|--|-- \\nFore Weapon 1\\u0026nbsp; | Advanced Piezo- Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nFore Weapon 2\\u0026nbsp; | Gravimetric Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nFore Weapon 3\\u0026nbsp; | Terran Task Force Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 1\\u0026nbsp; | Cutting Kinetic Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 2\\u0026nbsp; | Dyson Proton Turret Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 3\\u0026nbsp; | Chronometric Polaron Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nDeflector\\u0026nbsp; | [Counter-Command Deflector Array](http://sto.gamepedia.com/Counter-Command_Deflector_Array) Mk XII Very Rare\\u0026nbsp; | 2nd - Deteriorating Secondary Deflector Mk XIV [EPG/ShdHeal]\\u0026nbsp; \\nImpulse Engines\\u0026nbsp; | [Adapted M.A.C.O. Combat Impulse Engines](http://sto.gamepedia.com/Adapted_M.A.C.O._Combat_Impulse_Engines) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nWarp Core\\u0026nbsp; | [Temporal Defense Initiative Overcharged Warp Core](http://sto.gamepedia.com/Temporal_Defense_Initiative_Overcharged_Warp_Core) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nShields\\u0026nbsp; | [Adapted M.A.C.O. Covariant Shield Array](http://sto.gamepedia.com/Adapted_M.A.C.O._Covariant_Shield_Array) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n4 Engineering Consoles\\u0026nbsp; | [Proton Particle Stabilizer](http://sto.gamepedia.com/Console_-_Universal_-_Proton_Particle_Stabilizer) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Ferrofluid Hydraulic Assembly](http://sto.gamepedia.com/Console_-_Universal_-_Ferrofluid_Hydraulic_Assembly) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Conductive RCS Accelerator [EPG]](http://sto.gamepedia.com/Console_-_Engineering_-_Conductive_RCS_Accelerator_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Delphic Tear Generator](http://sto.gamepedia.com/Console_-_Universal_-_Delphic_Tear_Generator) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n5 Science Consoles\\u0026nbsp; | [Restorative Particle Focuser [EPG] [CtrlX]](http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Restorative Particle Focuser [EPG] [CtrlX]](http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Temporal Disentanglement Suite](http://sto.gamepedia.com/Console_-_Science_-_Temporal_Disentanglement_Suite) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Plasma-Generating Weapon Signature Amplifier [EPG]](http://sto.gamepedia.com/Console_-_Science_-_Plasma-Generating_Weapon_Signature_Amplifier_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Exotic Particle Field Exciter [EPG]](http://sto.gamepedia.com/Console_-_Science_-_Exotic_Particle_Field_Exciter_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n2 Tactical Consoles\\u0026nbsp; | [Chronometric Capacitor](http://sto.gamepedia.com/Console_-_Tactical_-_Chronometric_Capacitor) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Piezo-Electric Focuser](http://sto.gamepedia.com/Console_-_Universal_-_Piezo-Electric_Focuser) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n \\n#Officer Details\\nBridge Officers\\u0026nbsp; | Power\\u0026nbsp; \\n--|-- \\nCommander Science\\u0026nbsp; | [Subspace Vortex I](http://sto.gamepedia.com/Ability:_Subspace_Vortex) \\u0026nbsp; \\n\\u0026nbsp; | [Hazard Emitters II](http://sto.gamepedia.com/Ability:_Hazard_Emitters) \\u0026nbsp; \\n\\u0026nbsp; | [Destabilizing Resonance Beam II](http://sto.gamepedia.com/Ability:_Destabilizing_Resonance_Beam) \\u0026nbsp; \\n\\u0026nbsp; | [Gravity Well III](http://sto.gamepedia.com/Ability:_Gravity_Well) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nLt. Commander Engineering-Temporal\\u0026nbsp; | [Entropic Redistribution I](http://sto.gamepedia.com/Ability:_Entropic_Redistribution) \\u0026nbsp; \\n\\u0026nbsp; | [Chronometric Inversion Field I](http://sto.gamepedia.com/Ability:_Chronometric_Inversion_Field) \\u0026nbsp; \\n\\u0026nbsp; | [Entropic Cascade II](http://sto.gamepedia.com/Ability:_Entropic_Cascade) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nLieutenant Tactical\\u0026nbsp; | [Tactical Team I](http://sto.gamepedia.com/Ability:_Tactical_Team) \\u0026nbsp; \\n\\u0026nbsp; | [Torpedo: Spread II](http://sto.gamepedia.com/Ability:_Torpedo:_Spread) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nEnsign Science\\u0026nbsp; | [Tachyon Beam I](http://sto.gamepedia.com/Ability:_Tachyon_Beam) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\n \\n#Traits \\u0026 Duty Officers \\nTrait\\u0026nbsp; | Name\\u0026nbsp; | Description\\u0026nbsp; \\n--|--|-- \\nPersonal Traits\\u0026nbsp; | Ablative Shell\\u0026nbsp; | After receiving a total of 10,000 Damage (pre-resist), trigger Ablative Shell: +X Hit Points every 0.5 sec for 3 sec, +33 All Damage Resistance Rating for 3 sec, May only trigger once per 30 sec\\u0026nbsp; \\n\\u0026nbsp; | Context is for Kings\\u0026nbsp; | Each second while in combat, if you did not take damage in the past second, you gain a damage bonus. Otherwise, you gain a boost to your Damage Resistence Rating. Each second while in combat: If you did take damage in the past second: +3 All Damage Resistence Rating for 10 sec If you did not take damage in the past second: +1% Bonus All Damage for 10 sec\\u0026nbsp; \\n\\u0026nbsp; | Fleet Coordinator\\u0026nbsp; | +2% All Damage per Team member (Self included), up to 10%\\u0026nbsp; \\n\\u0026nbsp; | Repair Crews\\u0026nbsp; | While in combat, gain 1 stack of Repair Crews every 5 sec (up to 5 max). Per Stack: +5 All Damage Resistance Rating +5% Hull Repair Rate\\u0026nbsp; \\n\\u0026nbsp; | Inspirational Leader\\u0026nbsp; | 10% chance: Activating any Bridge Officer Ability grants +10 to Most Starship Skills for 15 seconds (may stack up to 3 times).\\u0026nbsp; \\n\\u0026nbsp; | Particle Manipulator\\u0026nbsp; | Gain .2% Critical Chance and .1% Critical Severity for Exotic Damage abilities, per point you have in the Starship Exotic Particle Generator skill. The Critical Chance bonus gained from this Trait is capped at +50% (attained by having 250 Particle Generators skill), but there is no cap on the Critical Severity bonus. +__% Critical Hit Chance for Exotic Damage Abilities +__% Critical Hit Severity for Exotic Damage Abilities\\u0026nbsp; \\n\\u0026nbsp; | Projectile Training\\u0026nbsp; | +5% Projectile Weapon Damage\\u0026nbsp; \\n\\u0026nbsp; | Self-Modulating Fire\\u0026nbsp; | On outgoing Critical Hits, your energy weapons and projectiles gain +50% Shield Penetration for 10 sec (Can trigger once every 45 sec)\\u0026nbsp; \\n\\u0026nbsp; | Duelist's Fervor\\u0026nbsp; | You or your teammates getting kills will grant you a short-duration damage and accuracy rating boost. Whenever you or a teammate kills something: +5% All Damage for 10 sec +5 Accuracy Rating for 10 sec (Effect stack up to 3 times)\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nStarship Traits\\u0026nbsp; | Desperate Repairs\\u0026nbsp; | When critically hit: Grant 1 Desperation counter for 120 sec. At 3 counters: To self: +5,000 Shield Regeneration. To self: +25,000 Hit Points. Prevents gaining Desperation counters for 60 sec.\\u0026nbsp; \\n\\u0026nbsp; | Emitter Synergy\\u0026nbsp; | When using Tac or Intel Bridge Office Ability: To self: +7.5% Exotic Damage for 15 sec (Stacks up to 3 times) To self: +7.5% Shield Heals for 15 sec (Stacks up to 3 times)\\u0026nbsp; \\n\\u0026nbsp; | Reactive Repair Nanites\\u0026nbsp; | Using a hull heal ability will also heal your hangar pets within 5km of your target for a portion of the healing dealt.\\u0026nbsp; \\n\\u0026nbsp; | Tachyon Dispersal\\u0026nbsp; | While this trait is slotted, Tachyon Beam will significantly reduce the target's shield hardness while channeled. In addition, if Tachyon Beam reaches its full duration it will release a large burst of Tachyon energy that will inflict shield damage over time and reduce the hardness of affected targets within its radius.\\u0026nbsp; \\n\\u0026nbsp; | Highly Specialized\\u0026nbsp; | Each time one of their abilities is activated, it will cause all other specialist bridge officer abilities to recharge more quickly, allowing them all to be used more frequently. In addition, you will gain a boost to Starship Hull Repair, Starship Weapon Specialization and Starship Particle Generators skills. This skill buff stacks up to 5 times.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nSpace Reputation Traits\\u0026nbsp; | Advanced Targeting Systems\\u0026nbsp; | Slightly increases critical severity in space combat\\u0026nbsp; \\n\\u0026nbsp; | Torpedo Pre-Fire Sequence\\u0026nbsp; | Torpedo Damage and Destructible Torpedo Flight Speed\\u0026nbsp; \\n\\u0026nbsp; | Auxiliary Power Configuration - Offense\\u0026nbsp; | In space combat you gain a damage and accuracy boost based on your Auxiliary Power Level\\u0026nbsp; \\n\\u0026nbsp; | Omega Kinetic Shearing\\u0026nbsp; | Torpedoes and Mines deal an additional 40% of their outgoing kinetic damage as a shield-penetrating DoT over 6 seconds.\\u0026nbsp; \\n\\u0026nbsp; | Precision\\u0026nbsp; | Increases your Critical Hit Chance in space combat.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nActive Reputation Traits\\u0026nbsp; | Bio-Molecular Shield Generator\\u0026nbsp; | Bio-Molecular Shield Generator creates a fixed position shield generator, in space combat, that regenerates starship shields and reduces the damage taken by starship shields for allies in the immediate area.\\u0026nbsp; \\n\\u0026nbsp; | Deploy Sensor Interference Platform\\u0026nbsp; | Deploy a Sensor Interference Platform which redirects most weapons fire to itself. The platform generates an inhibiting feedback pulse around nearby allied vessels, reducing the damage of enemies who attack targets other than the platform.\\u0026nbsp; \\n\\u0026nbsp; | Quantum Singularity Manipulation\\u0026nbsp; | Drastically increases all space Science Stats for a short time. After a few seconds, your ship will also be cloaked for the remaining duration of the power. You may fire your weapons and use abilities normally without breaking the cloak. This cloak does not bring your shields offline.\\u0026nbsp; \\n\\u0026nbsp; | Refracting Tetryon Cascade\\u0026nbsp; | Releases a cascading burst of Tetryon energy from your Deflector Dish at foes within 3km. The Tetryon Cascade will refract from initial targets to other nearby targets, dealing less damage with each jump. The Refracting Tetryon Cascade can jump to 2 additional targets. The charge can only jump 5km to the next target. WARNING: If the target's sensors are scrambled or otherwise confused when it is hit with the Tetryon Cascade, the charge may bounce back to you or your allies.\\u0026nbsp; \\n\\u0026nbsp; | Anti-Time Entanglement Singularity\\u0026nbsp; | Anti-Time Entanglement Singularity creates an Anti-Time anomaly in the target's immediate vicinity. The singularity causes severe Physical damage to foes caught within while slowing and potentially locking them in place as normal space-time violently interacts with the anomaly. This singularity rapidly shrinks in size until it fully dissipates.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nDuty Officers\\u0026nbsp; | Projectile Weapons Officer\\u0026nbsp; | Chance to increase Kinetic Damage from torpedoes\\u0026nbsp; \\n\\u0026nbsp; | Projectile Weapons Officer\\u0026nbsp; | Chance for stacking Crit Severity buff on firing Projectiles\\u0026nbsp; \\n\\u0026nbsp; | Conn Officer\\u0026nbsp; | Recharges Evasive Maneuvers when Emergency Power to Engines is activated\\u0026nbsp; \\n\\u0026nbsp; | Deflector Officer\\u0026nbsp; | Chance to reduce the recharge time for Deflector abilities\\u0026nbsp; \\n\\u0026nbsp; | Deflector Officer\\u0026nbsp; | Chance to reduce the recharge time for Deflector abilities\\u0026nbsp; \\n\\u0026nbsp; | Gravimetric Scientist\\u0026nbsp; | Chance to create an aftershock Gravity Well\\u0026nbsp;\", \"author_fullname\": \"t2_k7vp5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv0dwk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559289215.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECaptain Details\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ECaptain Name\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EDr. Jannick Carter\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Career\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EScience\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Faction\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFederation\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Race\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHuman\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPrimary Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETemporal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESecondary Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EStrategist\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ESpace Skill Tree\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ERank\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EEngineering\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EScience\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ETactical\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELieutenant\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Restoration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Capacity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Restoration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Capacity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Energy Weapon Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Projectile Weapon Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELt. Commander\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EElectro-Plasma System Flow\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Impulse Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Control Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Drain Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETargeting Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDefensive Maneuvering\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFull Impulse Energy Shunt\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECommander\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHull Plating\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EShield Regeneration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EShield Hardness\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Weapon Amplification\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Weapon Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDefensive Subsystem Tuning\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOffensive Subsystem Tuning\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Exotic Particle Generator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Long Range Targeting Sensors\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Penetration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Weakening\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAdmiral\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWarp Core Potential\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWarp Core Efficiency\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E1 Points Left\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E14\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E16\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E15\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ESpace Skill Unlocks\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EPurchases\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EEngineering\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EScience\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ETactical\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHazard Emitters III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EScience Team III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETachyon Beam III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E5\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E7\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFeedback Pulse III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPhotonic Shockwave III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EJam Sensors III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E10\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E12\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPolarize Hull III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravity Well III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETractor Beam III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E15\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EShip Loadout: \\u003Cem\\u003EFleet Advanced Research Vessel (T6)\\u003C/em\\u003E\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ESlot\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EItem\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ENotes\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 1\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Piezo- Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravimetric Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 3\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETerran Task Force Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 1\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ECutting Kinetic Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDyson Proton Turret Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 3\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChronometric Polaron Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EDeflector\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Counter-Command_Deflector_Array\\\"\\u003ECounter-Command Deflector Array\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E2nd - Deteriorating Secondary Deflector Mk XIV [EPG/ShdHeal]\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EImpulse Engines\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Adapted_M.A.C.O._Combat_Impulse_Engines\\\"\\u003EAdapted M.A.C.O. Combat Impulse Engines\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EWarp Core\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Temporal_Defense_Initiative_Overcharged_Warp_Core\\\"\\u003ETemporal Defense Initiative Overcharged Warp Core\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EShields\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Adapted_M.A.C.O._Covariant_Shield_Array\\\"\\u003EAdapted M.A.C.O. Covariant Shield Array\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E4 Engineering Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Proton_Particle_Stabilizer\\\"\\u003EProton Particle Stabilizer\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Ferrofluid_Hydraulic_Assembly\\\"\\u003EFerrofluid Hydraulic Assembly\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Engineering_-_Conductive_RCS_Accelerator_\\\"\\u003EConductive RCS Accelerator [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Delphic_Tear_Generator\\\"\\u003EDelphic Tear Generator\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E5 Science Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_\\\"\\u003ERestorative Particle Focuser [EPG] [CtrlX]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_\\\"\\u003ERestorative Particle Focuser [EPG] [CtrlX]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Temporal_Disentanglement_Suite\\\"\\u003ETemporal Disentanglement Suite\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Plasma-Generating_Weapon_Signature_Amplifier_\\\"\\u003EPlasma-Generating Weapon Signature Amplifier [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Exotic_Particle_Field_Exciter_\\\"\\u003EExotic Particle Field Exciter [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E2 Tactical Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Tactical_-_Chronometric_Capacitor\\\"\\u003EChronometric Capacitor\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Piezo-Electric_Focuser\\\"\\u003EPiezo-Electric Focuser\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EOfficer Details\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EBridge Officers\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EPower\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECommander Science\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Subspace_Vortex\\\"\\u003ESubspace Vortex I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Hazard_Emitters\\\"\\u003EHazard Emitters II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Destabilizing_Resonance_Beam\\\"\\u003EDestabilizing Resonance Beam II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Gravity_Well\\\"\\u003EGravity Well III\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELt. Commander Engineering-Temporal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Entropic_Redistribution\\\"\\u003EEntropic Redistribution I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Chronometric_Inversion_Field\\\"\\u003EChronometric Inversion Field I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Entropic_Cascade\\\"\\u003EEntropic Cascade II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELieutenant Tactical\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Tactical_Team\\\"\\u003ETactical Team I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Torpedo:_Spread\\\"\\u003ETorpedo: Spread II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EEnsign Science\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Tachyon_Beam\\\"\\u003ETachyon Beam I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ETraits \\u0026amp; Duty Officers\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ETrait\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EName\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EDescription\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPersonal Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAblative Shell\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAfter receiving a total of 10,000 Damage (pre-resist), trigger Ablative Shell: +X Hit Points every 0.5 sec for 3 sec, +33 All Damage Resistance Rating for 3 sec, May only trigger once per 30 sec\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EContext is for Kings\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEach second while in combat, if you did not take damage in the past second, you gain a damage bonus. Otherwise, you gain a boost to your Damage Resistence Rating. Each second while in combat: If you did take damage in the past second: +3 All Damage Resistence Rating for 10 sec If you did not take damage in the past second: +1% Bonus All Damage for 10 sec\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFleet Coordinator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E+2% All Damage per Team member (Self included), up to 10%\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERepair Crews\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhile in combat, gain 1 stack of Repair Crews every 5 sec (up to 5 max). Per Stack: +5 All Damage Resistance Rating +5% Hull Repair Rate\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EInspirational Leader\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E10% chance: Activating any Bridge Officer Ability grants +10 to Most Starship Skills for 15 seconds (may stack up to 3 times).\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EParticle Manipulator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGain .2% Critical Chance and .1% Critical Severity for Exotic Damage abilities, per point you have in the Starship Exotic Particle Generator skill. The Critical Chance bonus gained from this Trait is capped at +50% (attained by having 250 Particle Generators skill), but there is no cap on the Critical Severity bonus. +\\u003Cstrong\\u003E% Critical Hit Chance for Exotic Damage Abilities +\\u003C/strong\\u003E% Critical Hit Severity for Exotic Damage Abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E+5% Projectile Weapon Damage\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ESelf-Modulating Fire\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOn outgoing Critical Hits, your energy weapons and projectiles gain +50% Shield Penetration for 10 sec (Can trigger once every 45 sec)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDuelist\\u0026#39;s Fervor\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EYou or your teammates getting kills will grant you a short-duration damage and accuracy rating boost. Whenever you or a teammate kills something: +5% All Damage for 10 sec +5 Accuracy Rating for 10 sec (Effect stack up to 3 times)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStarship Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDesperate Repairs\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhen critically hit: Grant 1 Desperation counter for 120 sec. At 3 counters: To self: +5,000 Shield Regeneration. To self: +25,000 Hit Points. Prevents gaining Desperation counters for 60 sec.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEmitter Synergy\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhen using Tac or Intel Bridge Office Ability: To self: +7.5% Exotic Damage for 15 sec (Stacks up to 3 times) To self: +7.5% Shield Heals for 15 sec (Stacks up to 3 times)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EReactive Repair Nanites\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EUsing a hull heal ability will also heal your hangar pets within 5km of your target for a portion of the healing dealt.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETachyon Dispersal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhile this trait is slotted, Tachyon Beam will significantly reduce the target\\u0026#39;s shield hardness while channeled. In addition, if Tachyon Beam reaches its full duration it will release a large burst of Tachyon energy that will inflict shield damage over time and reduce the hardness of affected targets within its radius.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHighly Specialized\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEach time one of their abilities is activated, it will cause all other specialist bridge officer abilities to recharge more quickly, allowing them all to be used more frequently. In addition, you will gain a boost to Starship Hull Repair, Starship Weapon Specialization and Starship Particle Generators skills. This skill buff stacks up to 5 times.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESpace Reputation Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Targeting Systems\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ESlightly increases critical severity in space combat\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedo Pre-Fire Sequence\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedo Damage and Destructible Torpedo Flight Speed\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAuxiliary Power Configuration - Offense\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EIn space combat you gain a damage and accuracy boost based on your Auxiliary Power Level\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOmega Kinetic Shearing\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedoes and Mines deal an additional 40% of their outgoing kinetic damage as a shield-penetrating DoT over 6 seconds.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPrecision\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EIncreases your Critical Hit Chance in space combat.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EActive Reputation Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EBio-Molecular Shield Generator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EBio-Molecular Shield Generator creates a fixed position shield generator, in space combat, that regenerates starship shields and reduces the damage taken by starship shields for allies in the immediate area.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeploy Sensor Interference Platform\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeploy a Sensor Interference Platform which redirects most weapons fire to itself. The platform generates an inhibiting feedback pulse around nearby allied vessels, reducing the damage of enemies who attack targets other than the platform.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EQuantum Singularity Manipulation\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDrastically increases all space Science Stats for a short time. After a few seconds, your ship will also be cloaked for the remaining duration of the power. You may fire your weapons and use abilities normally without breaking the cloak. This cloak does not bring your shields offline.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERefracting Tetryon Cascade\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EReleases a cascading burst of Tetryon energy from your Deflector Dish at foes within 3km. The Tetryon Cascade will refract from initial targets to other nearby targets, dealing less damage with each jump. The Refracting Tetryon Cascade can jump to 2 additional targets. The charge can only jump 5km to the next target. WARNING: If the target\\u0026#39;s sensors are scrambled or otherwise confused when it is hit with the Tetryon Cascade, the charge may bounce back to you or your allies.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAnti-Time Entanglement Singularity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAnti-Time Entanglement Singularity creates an Anti-Time anomaly in the target\\u0026#39;s immediate vicinity. The singularity causes severe Physical damage to foes caught within while slowing and potentially locking them in place as normal space-time violently interacts with the anomaly. This singularity rapidly shrinks in size until it fully dissipates.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EDuty Officers\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Weapons Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to increase Kinetic Damage from torpedoes\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Weapons Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance for stacking Crit Severity buff on firing Projectiles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EConn Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERecharges Evasive Maneuvers when Emergency Power to Engines is activated\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeflector Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to reduce the recharge time for Deflector abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeflector Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to reduce the recharge time for Deflector abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravimetric Scientist\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to create an aftershock Gravity Well\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?auto=webp\\u0026s=1b86bccaf167b2d5123de5174f8e10d449263d48\", \"width\": 290, \"height\": 80}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=69311b30c71d5588ef2476413ab46e99ccd63a63\", \"width\": 108, \"height\": 29}, {\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0f8e5d419be15a063d995bcf551bcc86c9348be3\", \"width\": 216, \"height\": 59}], \"variants\": {}, \"id\": \"8pVmilrUZuM4Y3Z8IjHjdTYNdYCe6e2y_bUeDCZKUg4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv0dwk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wooyoo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv0dwk/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv0dwk/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559260415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"............................................________ \\n....................................,.-'\\\"...................``~., \\n.............................,.-\\\"...................................\\\"-., \\n.........................,/...............................................\\\":, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\\"........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\\"~-,_..............................,:`........../ \\n.........../(_....\\\"~,_........\\\"~,_....................,:`........_/ \\n..........{.._$;_......\\\"=,_.......\\\"-,_.......,.-~-,},.~\\\";/....} \\n...........((.....*~_.......\\\"=-._......\\\";,,./`..../\\\"............../ \\n...,,,___.`~,......\\\"~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\\" \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u003E-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u003E--==`` \\n........................................_..........._,-%.......` \\n...................................,\", \"author_fullname\": \"t2_2awf2pwl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buz6bd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559282431.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E............................................________ \\n....................................,.-\\u0026#39;\\u0026quot;...................\\u003Ccode\\u003E~., \\n.............................,.-\\u0026quot;...................................\\u0026quot;-., \\n.........................,/...............................................\\u0026quot;:, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\u0026quot;........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\u0026quot;~-,_..............................,:`........../ \\n.........../(_....\\u0026quot;~,_........\\u0026quot;~,_....................,:`........_/ \\n..........{.._$;_......\\u0026quot;=,_.......\\u0026quot;-,_.......,.-~-,},.~\\u0026quot;;/....} \\n...........((.....*~_.......\\u0026quot;=-._......\\u0026quot;;,,./`..../\\u0026quot;............../ \\n...,,,___.`~,......\\u0026quot;~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\u0026quot; \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u0026gt;-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u0026gt;--==\\u003C/code\\u003E \\n........................................\\u003Cem\\u003E...........\\u003C/em\\u003E,-%.......` \\n...................................,\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buz6bd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dwolfj\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buz6bd/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559253631.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1u17f7xq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Excalibur] Darkness\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 76, \"hide_score\": false, \"name\": \"t3_buyfh6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/rQRkNUFVzJBfU0NKRterlAHy9b6lCEqixFHKQBoz6LM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559278533.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?auto=webp\\u0026s=f909102a292f8e034817ecba780a3335b97cd05a\", \"width\": 1280, \"height\": 699}, \"resolutions\": [{\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8b1f21db35f534c67e58cad03be2796677f047fb\", \"width\": 108, \"height\": 58}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=dc78a564e15d9728dda51215a38d3ac3ac354af9\", \"width\": 216, \"height\": 117}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=66018766b3c398c0c7c1f434d4805330b75a3ddb\", \"width\": 320, \"height\": 174}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1676c512c45c5c31f6b597ec4e1f263c11973593\", \"width\": 640, \"height\": 349}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5cfbc3635f1655a01d8f70f8b7772efba886c379\", \"width\": 960, \"height\": 524}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e4cbbe7cb9746362a029aeea72037dd8c8316a46\", \"width\": 1080, \"height\": 589}], \"variants\": {}, \"id\": \"hz42riBu_Nv54z_i96b8_OFwO7HaAcgdWq6FDP77RJs\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buyfh6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CephalonSoural\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buyfh6/excalibur_darkness/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/z1p9l2vgwe131.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559249733.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*This is a proposal for the complete overhaul of the skills modding system, which was inspired by the many suggestions calling for changes to the current system.*\\n\\n*My main objective was to create an engaging experience with clear and rewarding progression goals. I also wanted to create more flexible and convenient skills modding options than the current system could ever provide. At the end of the progression, I wanted skill power players to feel proud of their achievement.*\\n\\n*Consequently, I was able to eliminate the seemingly impossible task of obtaining exactly the mods we need, as well as the frustration associated with managing hundreds of skill mods. In a few words, the current system is daunting and unproductive.*\\n\\n*In contrast, the proposed system is filled with incentives meant to keep us playing, not only because our dedication is continually rewarded, but also because we can make progress every day.*\\n\\n\\u0026#x200B;\\n\\n**This modding system is composed of 5 parts:**\\n\\n1. Tech Proficiency Progression\\n2. Skill Mod Strength Levels\\n3. Skill Power Budgeting\\n4. Tech Proficiency Awards\\n5. Skills Maintenance\\n\\n\\u0026#x200B;\\n\\n**TECH PROFICIENCY PROGRESSION**\\n\\nEach skill variant has its own proficiency progression, which starts at level 0 and ends at level 4. Players may start a progression for their favorite skills after reaching character level 15. The final proficiency level is reserved for World Tier 5. If you're already at world tier 5, you'll simply complete the proficiency progressions you choose without interruptions.\\n\\nTech points are earned by completing activities and objectives while using your preferred skill variant. Each time your proficiency level increases, small skill power boosts are awarded for that variant, as well as other benefits mentioned later.\\n\\n***Edit:*** *How soon you can finish depends on how much you play, but it shouldn't take more than 2-3 weeks to complete the progression for all skill variants. You also don't need to start the progression for skills you're not interested in using. It's all up to you. Proficiency progressions are pretty much automatic because they work just like when you're ranking your character. That is, there is no traveling to the Quartermaster to upgrade anything. It just happens as you play.*\\n\\n\\u0026#x200B;\\n\\n**SKILL MOD STRENGTH LEVELS**\\n\\nSkill mods don\\u2019t have a percentage value. Instead, skill variants have a unique set of mods, and each set has five different strength levels that match your proficiency with the variant. Mod strength levels allow you to reach higher modding percentage values in combination with sufficient skill power. This means that it\\u2019s okay to run a low skill power build using stronger mods.\\n\\nCharacter level and world tier don't define the strength of the mods that will drop for you, but skill mods do begin to drop at character level 15. If you're already at world tier 5, there's no need to start a new character. Just start farming for mods.\\n\\nSkill mods can be obtained from the same sources we have right now (there are many), but strength levels must be collected in numerical order. This means that you must first obtain a set\\u2019s strength level 1 mod before strength 2 can drop for you, and so on.\\n\\nSkill mods won\\u2019t need inventory space because they\\u2019re stored just like weapon mods. The difference is that skill mods of greater strengths will upgrade what you\\u2019ve already collected. It\\u2019s possible to find a mod with a strength level that is higher than your proficiency level. In this case, the upgrade is saved for later use and will be automatically applied when the mod matches your proficiency level.\\n\\n***Edit:*** *You can target mod types by equipping the skill variants for which you want to find mods. So, if you want mods for your Scanner pulse and the Oxidizer chem launcher, just equip them and go play the game.*\\n\\n*Your proficiency level with a variant doesn't determine which mod strength will drop; proficiency only determines which mods you can use, and how much of a skill power boost you'll be getting.*\\n\\n*Like the proficiency progression, mod upgrades occur automatically. You just pick up the mod and the system does the rest. There's no need to unequip a weaker mod to equip a stronger mod, and there's no need to travel to the Quartermaster or a specific bench somewhere. The upgrades just happen automatically.*\\n\\n\\u0026#x200B;\\n\\n**SKILL POWER BUDGETING**\\n\\nMods unlock the slider bars you\\u2019ll use to budget your skill power, as long as the mod\\u2019s strength isn\\u2019t higher than your proficiency level.\\n\\nBudgeting skill power is an easy concept to explain. Essentially, when you increase the slider bar for a specific mod, less skill power is available for the remaining mods associated with the skill variant.\\n\\nThe budgeting method let\\u2019s you distribute custom amounts of your skill power to improve all active mods at the same time, or you can use all of your skill power to improve a single mod. The choice is yours.\\n\\nBalance is important! Skill power will affect skill mods differently, so not all slider bars begin at 0% and end at 100% improvement.\\n\\n\\u0026#x200B;\\n\\n**TECH PROFICIENCY AWARDS**\\n\\nProficiency awards can be earned for reaching maximum proficiency with a skill platform. So, if you achieve maximum proficiency with the Scanner, Remote, and Jammer Pulse, you\\u2019ll earn special rewards.\\n\\nThe best rewards are additional slots that let you save and manage modding configurations separately from loadouts, all without affecting your build.\\n\\nOther proficiency awards could include patches and cosmetics, as well as tech-oriented accessories, such as that tactical flashlight these guys keep asking for.\\n\\n\\u0026#x200B;\\n\\n**SKILLS MAINTENANCE**\\n\\nThis system also introduces the concept of skill maintenance, for which you\\u2019ll need special currency. Failure to properly maintain the equipment could have consequences, such as very long skill cooldowns.\\n\\nThe maintenance concept creates a cycle that continues even after every proficiency level has been achieved and every mod strength has been collected. *This is what could replace the seemingly impossible hunt for the correct skill mods we\\u2019re dealing with today.*\\n\\nMaintenance tasks should never create a burden for players. Maintenance should be quick and simple, *and obtaining the necessary currency or materials should result from just playing the game.* This means no lengthy animations, no complicated requirements, and no overly scarce resources.\\n\\n***Edit:*** *Which skills need maintenance depends on which skills you use. I use the Reinforcer Chem Launcher and the Assault Turret all the time. This means that I'll need to maintain only these variants. If and when I do, all I have to do is hold down the \\\"maintenance\\\" button down for 3-5 seconds and I'm done. I just need to make sure that I have enough special currency to perform the task. But how is the special currency obtained? By just playing the game.*\\n\\n\\u0026#x200B;\\n\\n***Note:*** *The skill power budgeting concept was posted on this sub, but I\\u2019m unable to find the post to give the guy credit.*\\n\\n\\u0026#x200B;\\n\\n\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\n\\n**Edit: There seems to be some confusion regarding the length of progressions and how much work really needs to be done here. I expanded some points and included clarifications in** ***italics.*** \\n\\n\\u0026#x200B;\\n\\n**Here are answers to some important questions:**\\n\\n\\u0026#x200B;\\n\\n**Why such a complicated system?**\\n\\nThe system is not complicated at all. It just takes a lot of words to explain everything. All you have to do is play the game using your favorite skills. Everything else just happens automatically, except for skills maintenance. Becoming the ultimate skill power player is meant to happen much faster than the description might make you think.\\n\\n\\u0026#x200B;\\n\\n**Why do we need a new system?**\\n\\nBecause the current system is designed to throttle progress. It could seriously take many months to years to min/max various builds. I play about 6 hours a day and I haven't min/maxed a single build. That's fine and all, but getting to a place where I can comfortably mod my skills will take way too long, plus it is frustrating to manage all those mods.\\n\\nAnother reason is that the game is boring for some people right now. To put it simply, variety and flexibility are hogtied by RNG and a huge loot pool. That's not even mentioning how skills themselves need to be worked on.\\n\\n\\u0026#x200B;\\n\\n**Why not go back to how things were in Division 1?**\\n\\nI don't think that's what they want for this game. The Division 1 made it easy to put together a skill build and boost any skill to the max. They expect effort and dedication to result in the most powerful skills, but I think they're going about it all wrong. Remember, we want skills to be powerful and modding to be convenient and flexible, but at what cost? Months and months of farming? We don't even have enough inventory space to hold all the skill mods!\\n\\n\\u0026#x200B;\\n\\n**Why a proficiency progression?**\\n\\nThe proficiency progression is a compromise that gives us something to strive for. We can't really expect to just stack skill power and collect a few mods like we did in the first game, because that's not what they seem to want. Direct evidence of what what they want is the very low probability of obtaining a single item with the correct attributes and talents. If you don't know, there is a very, very low chance of finding exactly what you need. I just don't think this very low probability should apply to modding skills. At the same time, I don't think it should be a breeze. And it should definitely not be boring.\\n\\nIt's important to also look at the big picture: the way mods are programmed to drop (randomly and with a percentage range) doesn't let us target which skills we want to improve, how well we can improve them, or even how fast we can accomplish that. Overall, the control we have is so small that it's discouraging.\\n\\nIn contrast, the system I'm proposing keeps us engaged because we're always making notable progress, we're always working toward something that is well within range. This system is also rewarding from start to finish (see Tech Proficiency Awards).\\n\\nThink about it -- the progression speed is in your hands. You choose which skills you want to work on and when. You would almost have complete control, if it weren't for the limited number of mods you need to collect. And that's a fair trade off. If skill modding is not your thing, then just let the progression and mods collection happen naturally. \\n\\nAll this convenience and bonuses in exchange for what? Two weeks to max out all skill platforms and collect a limited number of mods (that don't even have to be managed or stored). Then, there's some easy skills maintenance task that, if ignored, only affects the efficiency of the skills you use the most.\", \"author_fullname\": \"t2_3syb9zh4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buy2m9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559334132.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559276681.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EThis is a proposal for the complete overhaul of the skills modding system, which was inspired by the many suggestions calling for changes to the current system.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EMy main objective was to create an engaging experience with clear and rewarding progression goals. I also wanted to create more flexible and convenient skills modding options than the current system could ever provide. At the end of the progression, I wanted skill power players to feel proud of their achievement.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EConsequently, I was able to eliminate the seemingly impossible task of obtaining exactly the mods we need, as well as the frustration associated with managing hundreds of skill mods. In a few words, the current system is daunting and unproductive.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EIn contrast, the proposed system is filled with incentives meant to keep us playing, not only because our dedication is continually rewarded, but also because we can make progress every day.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis modding system is composed of 5 parts:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ETech Proficiency Progression\\u003C/li\\u003E\\n\\u003Cli\\u003ESkill Mod Strength Levels\\u003C/li\\u003E\\n\\u003Cli\\u003ESkill Power Budgeting\\u003C/li\\u003E\\n\\u003Cli\\u003ETech Proficiency Awards\\u003C/li\\u003E\\n\\u003Cli\\u003ESkills Maintenance\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETECH PROFICIENCY PROGRESSION\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEach skill variant has its own proficiency progression, which starts at level 0 and ends at level 4. Players may start a progression for their favorite skills after reaching character level 15. The final proficiency level is reserved for World Tier 5. If you\\u0026#39;re already at world tier 5, you\\u0026#39;ll simply complete the proficiency progressions you choose without interruptions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETech points are earned by completing activities and objectives while using your preferred skill variant. Each time your proficiency level increases, small skill power boosts are awarded for that variant, as well as other benefits mentioned later.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EHow soon you can finish depends on how much you play, but it shouldn\\u0026#39;t take more than 2-3 weeks to complete the progression for all skill variants. You also don\\u0026#39;t need to start the progression for skills you\\u0026#39;re not interested in using. It\\u0026#39;s all up to you. Proficiency progressions are pretty much automatic because they work just like when you\\u0026#39;re ranking your character. That is, there is no traveling to the Quartermaster to upgrade anything. It just happens as you play.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILL MOD STRENGTH LEVELS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods don\\u2019t have a percentage value. Instead, skill variants have a unique set of mods, and each set has five different strength levels that match your proficiency with the variant. Mod strength levels allow you to reach higher modding percentage values in combination with sufficient skill power. This means that it\\u2019s okay to run a low skill power build using stronger mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECharacter level and world tier don\\u0026#39;t define the strength of the mods that will drop for you, but skill mods do begin to drop at character level 15. If you\\u0026#39;re already at world tier 5, there\\u0026#39;s no need to start a new character. Just start farming for mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods can be obtained from the same sources we have right now (there are many), but strength levels must be collected in numerical order. This means that you must first obtain a set\\u2019s strength level 1 mod before strength 2 can drop for you, and so on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods won\\u2019t need inventory space because they\\u2019re stored just like weapon mods. The difference is that skill mods of greater strengths will upgrade what you\\u2019ve already collected. It\\u2019s possible to find a mod with a strength level that is higher than your proficiency level. In this case, the upgrade is saved for later use and will be automatically applied when the mod matches your proficiency level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EYou can target mod types by equipping the skill variants for which you want to find mods. So, if you want mods for your Scanner pulse and the Oxidizer chem launcher, just equip them and go play the game.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EYour proficiency level with a variant doesn\\u0026#39;t determine which mod strength will drop; proficiency only determines which mods you can use, and how much of a skill power boost you\\u0026#39;ll be getting.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ELike the proficiency progression, mod upgrades occur automatically. You just pick up the mod and the system does the rest. There\\u0026#39;s no need to unequip a weaker mod to equip a stronger mod, and there\\u0026#39;s no need to travel to the Quartermaster or a specific bench somewhere. The upgrades just happen automatically.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILL POWER BUDGETING\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMods unlock the slider bars you\\u2019ll use to budget your skill power, as long as the mod\\u2019s strength isn\\u2019t higher than your proficiency level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBudgeting skill power is an easy concept to explain. Essentially, when you increase the slider bar for a specific mod, less skill power is available for the remaining mods associated with the skill variant.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe budgeting method let\\u2019s you distribute custom amounts of your skill power to improve all active mods at the same time, or you can use all of your skill power to improve a single mod. The choice is yours.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBalance is important! Skill power will affect skill mods differently, so not all slider bars begin at 0% and end at 100% improvement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETECH PROFICIENCY AWARDS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EProficiency awards can be earned for reaching maximum proficiency with a skill platform. So, if you achieve maximum proficiency with the Scanner, Remote, and Jammer Pulse, you\\u2019ll earn special rewards.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe best rewards are additional slots that let you save and manage modding configurations separately from loadouts, all without affecting your build.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOther proficiency awards could include patches and cosmetics, as well as tech-oriented accessories, such as that tactical flashlight these guys keep asking for.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILLS MAINTENANCE\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis system also introduces the concept of skill maintenance, for which you\\u2019ll need special currency. Failure to properly maintain the equipment could have consequences, such as very long skill cooldowns.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe maintenance concept creates a cycle that continues even after every proficiency level has been achieved and every mod strength has been collected. \\u003Cem\\u003EThis is what could replace the seemingly impossible hunt for the correct skill mods we\\u2019re dealing with today.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaintenance tasks should never create a burden for players. Maintenance should be quick and simple, \\u003Cem\\u003Eand obtaining the necessary currency or materials should result from just playing the game.\\u003C/em\\u003E This means no lengthy animations, no complicated requirements, and no overly scarce resources.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EWhich skills need maintenance depends on which skills you use. I use the Reinforcer Chem Launcher and the Assault Turret all the time. This means that I\\u0026#39;ll need to maintain only these variants. If and when I do, all I have to do is hold down the \\u0026quot;maintenance\\u0026quot; button down for 3-5 seconds and I\\u0026#39;m done. I just need to make sure that I have enough special currency to perform the task. But how is the special currency obtained? By just playing the game.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENote:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EThe skill power budgeting concept was posted on this sub, but I\\u2019m unable to find the post to give the guy credit.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E__________________________________________________________________\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit: There seems to be some confusion regarding the length of progressions and how much work really needs to be done here. I expanded some points and included clarifications in\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003Eitalics.\\u003C/em\\u003E\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHere are answers to some important questions:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy such a complicated system?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe system is not complicated at all. It just takes a lot of words to explain everything. All you have to do is play the game using your favorite skills. Everything else just happens automatically, except for skills maintenance. Becoming the ultimate skill power player is meant to happen much faster than the description might make you think.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy do we need a new system?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause the current system is designed to throttle progress. It could seriously take many months to years to min/max various builds. I play about 6 hours a day and I haven\\u0026#39;t min/maxed a single build. That\\u0026#39;s fine and all, but getting to a place where I can comfortably mod my skills will take way too long, plus it is frustrating to manage all those mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother reason is that the game is boring for some people right now. To put it simply, variety and flexibility are hogtied by RNG and a huge loot pool. That\\u0026#39;s not even mentioning how skills themselves need to be worked on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy not go back to how things were in Division 1?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t think that\\u0026#39;s what they want for this game. The Division 1 made it easy to put together a skill build and boost any skill to the max. They expect effort and dedication to result in the most powerful skills, but I think they\\u0026#39;re going about it all wrong. Remember, we want skills to be powerful and modding to be convenient and flexible, but at what cost? Months and months of farming? We don\\u0026#39;t even have enough inventory space to hold all the skill mods!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy a proficiency progression?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe proficiency progression is a compromise that gives us something to strive for. We can\\u0026#39;t really expect to just stack skill power and collect a few mods like we did in the first game, because that\\u0026#39;s not what they seem to want. Direct evidence of what what they want is the very low probability of obtaining a single item with the correct attributes and talents. If you don\\u0026#39;t know, there is a very, very low chance of finding exactly what you need. I just don\\u0026#39;t think this very low probability should apply to modding skills. At the same time, I don\\u0026#39;t think it should be a breeze. And it should definitely not be boring.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s important to also look at the big picture: the way mods are programmed to drop (randomly and with a percentage range) doesn\\u0026#39;t let us target which skills we want to improve, how well we can improve them, or even how fast we can accomplish that. Overall, the control we have is so small that it\\u0026#39;s discouraging.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn contrast, the system I\\u0026#39;m proposing keeps us engaged because we\\u0026#39;re always making notable progress, we\\u0026#39;re always working toward something that is well within range. This system is also rewarding from start to finish (see Tech Proficiency Awards).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThink about it -- the progression speed is in your hands. You choose which skills you want to work on and when. You would almost have complete control, if it weren\\u0026#39;t for the limited number of mods you need to collect. And that\\u0026#39;s a fair trade off. If skill modding is not your thing, then just let the progression and mods collection happen naturally. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll this convenience and bonuses in exchange for what? Two weeks to max out all skill platforms and collect a limited number of mods (that don\\u0026#39;t even have to be managed or stored). Then, there\\u0026#39;s some easy skills maintenance task that, if ignored, only affects the efficiency of the skills you use the most.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buy2m9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KelpieCyanide\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buy2m9/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buy2m9/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559247881.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" line 1\\n \\n line 2\\n \\n line 3\\n\\nnormal text\", \"author_fullname\": \"t2_6k6mm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buvucz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559265507.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003Eline 1\\n\\nline 2\\n\\nline 3\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Enormal text\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buvucz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Wongehchuu\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buvucz/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buvucz/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559236707.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"```lua\\nlocal ffi = require(\\\"ffi\\\")\\n\\nffi.cdef[[\\nvoid Sleep(unsigned int seconds); \\n]]\\n```\", \"author_fullname\": \"t2_391wfwow\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buu8cl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559257370.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E```lua\\nlocal ffi = require(\\u0026quot;ffi\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Effi.cdef[[\\nvoid Sleep(unsigned int seconds); \\n]]\\n```\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buu8cl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Anxious_Theory\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buu8cl/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buu8cl/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559228570.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I would like to draw comparison between the 2 incidents.\\n\\n|Date|Ceb|Date|Kuku|\\n|:-|:-|:-|:-|\\n|23/05/2019 Pt1|[Ceb made a crude remark in an EU pub](https://www.removeddit.com/r/DotA2/comments/bs2l9m/ogceb_new_lvl_tilting/) [First reported by u/LVR322 but retracted after Ceb contacted him](https://ibb.co/sgpM4bF)|2/11/2018|[Kuku made the crude remark in a Sea pub](https://www.reddit.com/r/DotA2/comments/9tippm/just_after_col_drama_tnc_kuku_did_it_again_at/)[Initial chinese reaction](https://twitter.com/GodBlessMali/status/1058326847321202688)|2/11/2018|[Kuku apologised on facebook](https://www.facebook.com/pogingkuku/posts/2190153977864424)|\\n|23/05/2019 Pt2|[Another player from same game makes the same complaint](https://www.reddit.com/r/DotA2/comments/bs9ero/ogceb/) [Ceb initial apology](https://www.reddit.com/r/DotA2/comments/bsahbl/ogcebs\\\\_first\\\\_reply\\\\_for\\\\_people\\\\_who\\\\_are\\\\_too\\\\_lazy\\\\_to/)|3/11/2018|[Mender of his Weibo account created an excuse for the remark and was exposed](https://old.reddit.com/r/DotA2/comments/9trn4s/kuku\\\\_apologized\\\\_with\\\\_a\\\\_plot\\\\_twist)\\n|24/05/2019|[Solo take personal action to avoid Epicenter unless Valve make clear of their rules openly](https://www.reddit.com/r/DotA2/comments/bsgsbp/vp\\\\_solo\\\\_wont\\\\_participate\\\\_at\\\\_epicenter\\\\_unless)|3/11/2018|[Mender of his Weibo account created an excuse for the remark and was exposed](https://old.reddit.com/r/DotA2/comments/9trn4s/kuku\\\\_apologized\\\\_with\\\\_a\\\\_plot\\\\_twist)|\\n|25/05/2019|[Pasha also voices his displeasure with valve inconsistencies](https://www.reddit.com/r/DotA2/comments/bsxs9o/vp9pasha\\\\_people\\\\_want\\\\_to\\\\_see\\\\_the\\\\_rules\\\\_so\\\\_that) [Ceb second apology](https://www.reddit.com/r/DotA2/comments/bsuu97/one\\\\_day\\\\_wiser\\\\_twitlonger\\\\_by\\\\_ceb/)|11/11/2018|[Valve initial reaction to let things sort itself out](https://www.reddit.com/r/DotA2/comments/9w1547/the\\\\_major\\\\_and\\\\_professional\\\\_dota\\\\_players/)|\\n|25/05/2019|[Ceb interview with u/LVR322 on the issue](https://www.reddit.com/r/DotA2/comments/bsrtg6/cebs\\\\_first\\\\_thread\\\\_op\\\\_ceb\\\\_told\\\\_me\\\\_that\\\\_he\\\\_might/)|13/11/2018|[TNC manager admit to his mistake](https://www.reddit.com/r/DotA2/comments/9wrkhi/tncs\\\\_manager\\\\_confesses\\\\_that\\\\_he\\\\_was\\\\_the\\\\_one\\\\_who/)|\\n|26/05/2019|[Valve now working with all stakeholders for a long term solution](https://www.reddit.com/r/DotA2/comments/bt6lhw/solo\\\\_valve\\\\_and\\\\_seb\\\\_are\\\\_working\\\\_on\\\\_a\\\\_longterm/) |24/11/2018| [Cyborgmatt first mention of the ban of Kuku and Skem from the CQ major](https://www.reddit.com/r/DotA2/comments/9zxa5q/cyborgmatt\\\\_confirms\\\\_kuku\\\\_and\\\\_skem\\\\_are\\\\_banned/) [Immediate reaction from reddit](https://old.reddit.com/r/DotA2/comments/9zxbyv/valve\\\\_if\\\\_you\\\\_let\\\\_kuku\\\\_and\\\\_skem\\\\_and\\\\_be\\\\_banned\\\\_from) [Ceb reaction](https://www.reddit.com/r/DotA2/comments/9zyhh6/i\\\\_believe\\\\_in\\\\_talk\\\\_no\\\\_jutsu\\\\_and\\\\_i\\\\_hope\\\\_others\\\\_will/)\\n|||25/11/2018|[TNC punishment to Kuku and the manager for their actions](https://old.reddit.com/r/DotA2/comments/a05u22/tnc\\\\_on\\\\_the\\\\_responsibility\\\\_being\\\\_taken\\\\_for\\\\_kuku/)|\\n|||27/11/2018|[TNC qualifies for CQ major](https://www.reddit.com/r/DotA2/comments/a0vobe/congratulations\\\\_to\\\\_the\\\\_2nd\\\\_sea\\\\_team\\\\_to\\\\_qualify/)|\\n|||2/12/2018|[Grantgrant putting himself on the line for Kuku](https://old.reddit.com/r/DotA2/comments/a2agjg/grant\\\\_putting\\\\_his\\\\_casting\\\\_career\\\\_on\\\\_the\\\\_line\\\\_for/) [Action taken by other casters](https://old.reddit.com/r/DotA2/comments/a2fc30/chongqing\\\\_major\\\\_updates\\\\_megathread/) [CQ Org correspondence with TNC](https://www.reddit.com/r/DotA2/comments/a2bt4r/tncs\\\\_new\\\\_statement\\\\_about\\\\_the\\\\_issue/) [IMBATV refusal to contact TNC](https://www.facebook.com/840515722697409/posts/2043073252441644/)|\\n|||3/12/2018|[Valve outright banning kuku after being unsatified with TNC handling](https://www.reddit.com/r/DotA2/comments/a2uary/tnc\\\\_and\\\\_the\\\\_chongqing\\\\_major/) [People calling out valve for their inconsistencies](https://old.reddit.com/r/DotA2/comments/a2umx5/valve\\\\_this\\\\_is\\\\_the\\\\_most\\\\_disappointed\\\\_i\\\\_have\\\\_ever) [2](https://www.reddit.com/r/DotA2/comments/a2ulv2/valves\\\\_statement\\\\_doesnt\\\\_make\\\\_sense/) [3](https://www.reddit.com/r/DotA2/comments/a3b62g/the\\\\_problem\\\\_with\\\\_valves\\\\_statement\\\\_is\\\\_part\\\\_of/) [4](https://old.reddit.com/r/DotA2/comments/a2yp85/since\\\\_valve\\\\_already\\\\_punished\\\\_kuku\\\\_and\\\\_tnc\\\\_should/)||\\n|||11/2/2019|[Kuku banned from attending WESG also held in CQ](https://www.reddit.com/r/DotA2/comments/apfsgy/kuku\\\\_is\\\\_not\\\\_allowed\\\\_to\\\\_enter\\\\_chongqing\\\\_for\\\\_the/) [Valve response](https://www.reddit.com/r/DotA2/comments/aplzur/danielj\\\\_valve\\\\_responds\\\\_regarding\\\\_kuku\\\\_and/) [reddit's reaction](https://www.reddit.com/r/DotA2/comments/apgsen/valve\\\\_straight\\\\_out\\\\_lied\\\\_about\\\\_the\\\\_kuku\\\\_issue\\\\_just/)|\\n|||||\\n\\nI have added additional link labelled in numbers for some reference and context.\\n\\n\\u0026#x200B;\\n\\nWe can safely say that Solo's want for consistency and transparency on valve part have not been realised. Their latest update to work on a long term solution is not openly released to the public and we are not informed if Solo has changed his stance on avoiding Epicenter. Valve are still buying time to make their rules and we are already at the tail end of the DPC.\\n\\n\\u0026#x200B;\\n\\nFrom the interview, Ceb has personally said he will be willing to take the same punishment as Kuku for precedence sake and that he probably would not go to EPICENTER himself, because he started receiving messages with threats. I respect that he is will to hold himself to that punishment.\\n\\n\\u0026#x200B;\\n\\nNow that TI invites are on the line, the docking of TNC points in the DPC could make or brake the chances TNC have for a TI invite as they are one of the team hotly in contention.\\n\\n\\u0026#x200B;\\n\\nValve reluctance to make clear rules for their game makes it very difficult for us audience observe the DPC as objective. I hope they release the schematics of their rules at least before the start of the next minor.\", \"author_fullname\": \"t2_27i74989\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bupc9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559199157.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559222693.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to draw comparison between the 2 incidents.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ECeb\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EKuku\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23/05/2019 Pt1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.removeddit.com/r/DotA2/comments/bs2l9m/ogceb_new_lvl_tilting/\\\"\\u003ECeb made a crude remark in an EU pub\\u003C/a\\u003E \\u003Ca href=\\\"https://ibb.co/sgpM4bF\\\"\\u003EFirst reported by u/LVR322 but retracted after Ceb contacted him\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9tippm/just_after_col_drama_tnc_kuku_did_it_again_at/\\\"\\u003EKuku made the crude remark in a Sea pub\\u003C/a\\u003E\\u003Ca href=\\\"https://twitter.com/GodBlessMali/status/1058326847321202688\\\"\\u003EInitial chinese reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23/05/2019 Pt2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bs9ero/ogceb/\\\"\\u003EAnother player from same game makes the same complaint\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsahbl/ogcebs_first_reply_for_people_who_are_too_lazy_to/\\\"\\u003ECeb initial apology\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9trn4s/kuku_apologized_with_a_plot_twist\\\"\\u003EMender of his Weibo account created an excuse for the remark and was exposed\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E24/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsgsbp/vp_solo_wont_participate_at_epicenter_unless\\\"\\u003ESolo take personal action to avoid Epicenter unless Valve make clear of their rules openly\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9trn4s/kuku_apologized_with_a_plot_twist\\\"\\u003EMender of his Weibo account created an excuse for the remark and was exposed\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsxs9o/vp9pasha_people_want_to_see_the_rules_so_that\\\"\\u003EPasha also voices his displeasure with valve inconsistencies\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsuu97/one_day_wiser_twitlonger_by_ceb/\\\"\\u003ECeb second apology\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9w1547/the_major_and_professional_dota_players/\\\"\\u003EValve initial reaction to let things sort itself out\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsrtg6/cebs_first_thread_op_ceb_told_me_that_he_might/\\\"\\u003ECeb interview with u/LVR322 on the issue\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9wrkhi/tncs_manager_confesses_that_he_was_the_one_who/\\\"\\u003ETNC manager admit to his mistake\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bt6lhw/solo_valve_and_seb_are_working_on_a_longterm/\\\"\\u003EValve now working with all stakeholders for a long term solution\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E24/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9zxa5q/cyborgmatt_confirms_kuku_and_skem_are_banned/\\\"\\u003ECyborgmatt first mention of the ban of Kuku and Skem from the CQ major\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9zxbyv/valve_if_you_let_kuku_and_skem_and_be_banned_from\\\"\\u003EImmediate reaction from reddit\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9zyhh6/i_believe_in_talk_no_jutsu_and_i_hope_others_will/\\\"\\u003ECeb reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a05u22/tnc_on_the_responsibility_being_taken_for_kuku/\\\"\\u003ETNC punishment to Kuku and the manager for their actions\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E27/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a0vobe/congratulations_to_the_2nd_sea_team_to_qualify/\\\"\\u003ETNC qualifies for CQ major\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2/12/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2agjg/grant_putting_his_casting_career_on_the_line_for/\\\"\\u003EGrantgrant putting himself on the line for Kuku\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2fc30/chongqing_major_updates_megathread/\\\"\\u003EAction taken by other casters\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2bt4r/tncs_new_statement_about_the_issue/\\\"\\u003ECQ Org correspondence with TNC\\u003C/a\\u003E \\u003Ca href=\\\"https://www.facebook.com/840515722697409/posts/2043073252441644/\\\"\\u003EIMBATV refusal to contact TNC\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/12/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2uary/tnc_and_the_chongqing_major/\\\"\\u003EValve outright banning kuku after being unsatified with TNC handling\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2umx5/valve_this_is_the_most_disappointed_i_have_ever\\\"\\u003EPeople calling out valve for their inconsistencies\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2ulv2/valves_statement_doesnt_make_sense/\\\"\\u003E2\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a3b62g/the_problem_with_valves_statement_is_part_of/\\\"\\u003E3\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2yp85/since_valve_already_punished_kuku_and_tnc_should/\\\"\\u003E4\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11/2/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/apfsgy/kuku_is_not_allowed_to_enter_chongqing_for_the/\\\"\\u003EKuku banned from attending WESG also held in CQ\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/aplzur/danielj_valve_responds_regarding_kuku_and/\\\"\\u003EValve response\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/apgsen/valve_straight_out_lied_about_the_kuku_issue_just/\\\"\\u003Ereddit\\u0026#39;s reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EI have added additional link labelled in numbers for some reference and context.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe can safely say that Solo\\u0026#39;s want for consistency and transparency on valve part have not been realised. Their latest update to work on a long term solution is not openly released to the public and we are not informed if Solo has changed his stance on avoiding Epicenter. Valve are still buying time to make their rules and we are already at the tail end of the DPC.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the interview, Ceb has personally said he will be willing to take the same punishment as Kuku for precedence sake and that he probably would not go to EPICENTER himself, because he started receiving messages with threats. I respect that he is will to hold himself to that punishment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow that TI invites are on the line, the docking of TNC points in the DPC could make or brake the chances TNC have for a TI invite as they are one of the team hotly in contention.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EValve reluctance to make clear rules for their game makes it very difficult for us audience observe the DPC as objective. I hope they release the schematics of their rules at least before the start of the next minor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bupc9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Achuapy\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bupc9u/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bupc9u/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559193893.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\", \"author_fullname\": \"t2_j01kt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"table test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bum3x6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559173943.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559202526.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bum3x6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fighterace00\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bum3x6/table_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bum3x6/table_test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559173726.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"TL;DR: No tl;dr\\n\\nI refuse to use an absolute tierlist to make my decisions on what should I be choosing upon level-up. I'd rather base my ability choices on the weapon I'm using as well as previously selected abilities.\\n\\n#Scythe\\n\\n##Traits:\\n\\n* It boasts high damage per hit, so I like to aim for a Nuking-one-by-one build.\\n* It boasts high knockback per hit, so I like to keep that in mind, it makes ASPD not as desirable because you could be knocking back a flying enemy through a wall and then your next shots won't hit it.\\n\\n##Core Ability Choices:\\n\\n* **Multi-shot** firing an extra layer of arrows in every direction you fire is awesome, even if they only deal a portion of your original DPH, specially helpful if you're going in point-blank range, *get as many of this as you can!*\\n* **Rage**, it is an absolute must-pick, it can greatly increase your offensive capabilities when you're in a pinch (and Offense is the best defense when your defense is failing you), I find it satisfying to land a crit almost 2x as strong as usual because I'm under 100hp.\\n * You lose HP, you gain power INSTANTLY.\\n * You gain HP, you lose power but have more breathing room.\\n* **Wingman**, is another absolute must-pick, your spirits can help you survive by fully blocking shots, and this only gets better and better as enemies fire more often and their projectile trajectories are less-predictable each World.\\n* **ATK** increases damage based off your Base DPS (Damage per shot), so, the higher your base DPS is, makes this ability more desirable for this weapon and Scythe has the highest DPS.\\n* **Diagonal** is in the eyes of some is reliant on having **Bouncy-Wall**, and yeah *stray that could or could not hit an enemy* are good, they are not the only saving grace for this ability. Keep in mind that:\\n * Each diagonal scythe you fire from this ablity, deals 100% of your hit damage, so by getting it you're pouring out 3x as much damage out in the wind as opposed to only firing a frontal scythe.\\n * Some enemies like to get up close and personal with you, and geting 3 nukes to their face can quickly get you out of this pit, including boss monters.\\n * If you get multiple **ATK**/**CRIT** upgrades and **Rage**, this is an instant synergy.\\n * You can add **Invincible** for even more time to go nuts on butchering bosses from the inside out (The first time I cleared the Chapter 3 Dragon, I just walked under its face and stood there for 3-4 seconds before it died).\\n * Multiple hits means multiple chances to crit, and the only thing you like more than landing muliple nukes instantly every time you fire a shot, is some of them critting the boss to oblivion.\\n * If you're good enough you can get to point-blank distance without touching the enemy and sucessfully firing 3 nukes in their face, this makes it much more desirable than **Side**/**Rear** (which only really work for this strat when you're firing from inside the enemy hitbox).\\n* **Blood-thirst** Healing off every kill can really add up, specially if you're quickly nuking enemies without giving them a chance to damage you at all, it pairs up incredibly well with **Rage**.\\n* **Extra-arrow** Having an extra chance to crit is nice, but it only applies in front of you, all the previous upgrades sound better than this. The one saving grace for extra-arrow is how good it is as a first/second upgrade, don't get a third arrow unless none of the above upgrades are available.\\n\\n##After Core \\n\\nPick those after you're satisfied with your DPS or when nothing in the core is available, thing of these as \\\"Nice to have, but not necessary\\\":\\n\\n* **Energy Shield** shots getting blocked can be a very good thing, but these run in a constant circular motion that you can't control, if you have **Wingman**, this would be a skip since you can just run behind your spirit while trying to dodge and the nice guy will block the shot for you.\\n* **Invincible** Going invincible a couple seconds is great on tight spots, but given how fast fights are, this can be rather situational, prioritize the core abilities. \\n* **Freeze**, making your enemies stand still allows you to hit them more easily. Just keep in mind that when building freeze you don't really want to go **Bouncy+Pierce+Ricochet**, because it could really make your game more hazardous when you unintentionally mess with an enemy's firing pattern by freezing them in an enemy-crowded screen.\\n* **CRIT** increases both crit chance and crit damage. Albeit RNG-reliant, CRIT is a solid pickup option at this point, thie higher your atk and if you have rage, the more effective crit will be, this is multiplicative, so don't ever prioritize **CRIT** over **ATK**/**Rage**.\\n* **ASPD** is detrimental for your early game, but it can be very good when you're really getting stacked on core offensive abilities. This is not crucial because we want to prioritize our DPS.\\n\\n##Situational Choices\\n\\nThese depend on other factors that don't necessarily heighten the strengths of the Scythe, they could work, but wouldn't necessarily be as effective as with a *Knife/Boomerang*:\\n\\n* **Ricochet**, it is in paper a very good pick: Having every hit you land automatically directed to the closest enemy really helps you make the most of every shot. However, a noticeable caveat is when fighting small enemies, enemies will be constantly knocked all over the screen, possibly bringing enemies closer than you would like them to be. Of course, if you're nuking enemies in 2-3 shots, it becomes less hazardous. And the knockback is much smaller (or none) for bosses.\\n* **Bouncy-wall**, simply having BW allows you to hit an enemy multiple times with the same projectile as long as you're firing it at a perpendicular-ish direction from a wall, or when they are located in corners. This isn't the case if you have the scythe ricochet to a different enemy. You can try and go for **Bouncy-Wall+Pierce/Ricochet+Diagonal/Rear/Side** and go ham, but none of these abilities actually increase your DPS, which is what you should be aiming to increase when building for nukes. Besides, flooding your screen with your own projectiles can make you miss enemy projectiles aimed at you.\\n* **Pierce**, I like to think of it as poor-man's **Ricochet**, the main difference being the projectile keeps going forward if there are no enemies close to ricochet towards, you could make a case for **Pierce**+**Bouncy-Wall** when fighting immobile/Gigantic bosses, or you could go this way and hope for one or two **Diagonal** to drop along so you can go bonkers, but I already covered that on Bouncy-Wall.\\n* **Side**/**Rear**, I like to think of it as poor-man's **Diagonal**, you can point-blank with it when you're eating a boss from the inside-out, but other than that it doesn't add as much value as **Diagonal**.\\n* **Walk through water**/**Walk through walls**, these could be nice depending on what World you're going through, pick them at discretion (Usually they'll cost you Max HP from a devil deal).\\n\\nDon't even think about it:\\n\\n* **Fire**/**Bolt**/**Poison**/**Holy**, it scales off your *Attack* and not off your *DPS*, making every fire tick for the same amount through the entire game, it doesn't really synergize with a strong, low fire-rate weapon.\\n* **Headshot**, you don't fire many times with a Scythe, so the there are less chances for this to proc, this is counter-synergy.\\n* **Fire orbs/swords**/**Bolt orbs/swords**/**Poison orbs/swords** , even if you're point-blanking, the effects granted by these abilities just don't really add much to your performance.\\n* **Summon one-eyed bat**/**Summon Shadow-clone** I just don't like these abilities, they mess with your drops, you can confuse the shadows for enemies and be distracted from projectiles and it's pretty much useless against most boss monsters. Just DON'T.\\n* **Slow Projectile**, See... enemies move, and the slower your projectile travels, the less likely it is your hit will land. It doesn't really add much to what a Scythe offers, from my experience, I just stray away from it as much as I can, usually there are more desirable abilities to choose from.\\n* **Pet CRIT/ASPD/ATK**, you don't really control these guys, and I don't really like to have to rely on their attack patterns to clear content.\\n\\nWhen built right, the scythe tends to get stupid strong, but I believe this is the case for most weapons, as long as you're playing them right.\\n\\nAny abilities I might have missed are either because they are irrelevant or I haven't unlocked them yet (I'm sitting at stage 4, feel free to laugh and point at me while I have a lot of fun nuking mobs).\", \"author_fullname\": \"t2_h9397\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ability recommendations (Not a tierlist)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buicsw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559159476.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559183584.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETL;DR: No tl;dr\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI refuse to use an absolute tierlist to make my decisions on what should I be choosing upon level-up. I\\u0026#39;d rather base my ability choices on the weapon I\\u0026#39;m using as well as previously selected abilities.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EScythe\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003ETraits:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt boasts high damage per hit, so I like to aim for a Nuking-one-by-one build.\\u003C/li\\u003E\\n\\u003Cli\\u003EIt boasts high knockback per hit, so I like to keep that in mind, it makes ASPD not as desirable because you could be knocking back a flying enemy through a wall and then your next shots won\\u0026#39;t hit it.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ECore Ability Choices:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EMulti-shot\\u003C/strong\\u003E firing an extra layer of arrows in every direction you fire is awesome, even if they only deal a portion of your original DPH, specially helpful if you\\u0026#39;re going in point-blank range, \\u003Cem\\u003Eget as many of this as you can!\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERage\\u003C/strong\\u003E, it is an absolute must-pick, it can greatly increase your offensive capabilities when you\\u0026#39;re in a pinch (and Offense is the best defense when your defense is failing you), I find it satisfying to land a crit almost 2x as strong as usual because I\\u0026#39;m under 100hp.\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou lose HP, you gain power INSTANTLY.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou gain HP, you lose power but have more breathing room.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EWingman\\u003C/strong\\u003E, is another absolute must-pick, your spirits can help you survive by fully blocking shots, and this only gets better and better as enemies fire more often and their projectile trajectories are less-predictable each World.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EATK\\u003C/strong\\u003E increases damage based off your Base DPS (Damage per shot), so, the higher your base DPS is, makes this ability more desirable for this weapon and Scythe has the highest DPS.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E is in the eyes of some is reliant on having \\u003Cstrong\\u003EBouncy-Wall\\u003C/strong\\u003E, and yeah \\u003Cem\\u003Estray that could or could not hit an enemy\\u003C/em\\u003E are good, they are not the only saving grace for this ability. Keep in mind that:\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EEach diagonal scythe you fire from this ablity, deals 100% of your hit damage, so by getting it you\\u0026#39;re pouring out 3x as much damage out in the wind as opposed to only firing a frontal scythe.\\u003C/li\\u003E\\n\\u003Cli\\u003ESome enemies like to get up close and personal with you, and geting 3 nukes to their face can quickly get you out of this pit, including boss monters.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf you get multiple \\u003Cstrong\\u003EATK\\u003C/strong\\u003E/\\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E upgrades and \\u003Cstrong\\u003ERage\\u003C/strong\\u003E, this is an instant synergy.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou can add \\u003Cstrong\\u003EInvincible\\u003C/strong\\u003E for even more time to go nuts on butchering bosses from the inside out (The first time I cleared the Chapter 3 Dragon, I just walked under its face and stood there for 3-4 seconds before it died).\\u003C/li\\u003E\\n\\u003Cli\\u003EMultiple hits means multiple chances to crit, and the only thing you like more than landing muliple nukes instantly every time you fire a shot, is some of them critting the boss to oblivion.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf you\\u0026#39;re good enough you can get to point-blank distance without touching the enemy and sucessfully firing 3 nukes in their face, this makes it much more desirable than \\u003Cstrong\\u003ESide\\u003C/strong\\u003E/\\u003Cstrong\\u003ERear\\u003C/strong\\u003E (which only really work for this strat when you\\u0026#39;re firing from inside the enemy hitbox).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBlood-thirst\\u003C/strong\\u003E Healing off every kill can really add up, specially if you\\u0026#39;re quickly nuking enemies without giving them a chance to damage you at all, it pairs up incredibly well with \\u003Cstrong\\u003ERage\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EExtra-arrow\\u003C/strong\\u003E Having an extra chance to crit is nice, but it only applies in front of you, all the previous upgrades sound better than this. The one saving grace for extra-arrow is how good it is as a first/second upgrade, don\\u0026#39;t get a third arrow unless none of the above upgrades are available.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EAfter Core\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003EPick those after you\\u0026#39;re satisfied with your DPS or when nothing in the core is available, thing of these as \\u0026quot;Nice to have, but not necessary\\u0026quot;:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EEnergy Shield\\u003C/strong\\u003E shots getting blocked can be a very good thing, but these run in a constant circular motion that you can\\u0026#39;t control, if you have \\u003Cstrong\\u003EWingman\\u003C/strong\\u003E, this would be a skip since you can just run behind your spirit while trying to dodge and the nice guy will block the shot for you.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EInvincible\\u003C/strong\\u003E Going invincible a couple seconds is great on tight spots, but given how fast fights are, this can be rather situational, prioritize the core abilities. \\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFreeze\\u003C/strong\\u003E, making your enemies stand still allows you to hit them more easily. Just keep in mind that when building freeze you don\\u0026#39;t really want to go \\u003Cstrong\\u003EBouncy+Pierce+Ricochet\\u003C/strong\\u003E, because it could really make your game more hazardous when you unintentionally mess with an enemy\\u0026#39;s firing pattern by freezing them in an enemy-crowded screen.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E increases both crit chance and crit damage. Albeit RNG-reliant, CRIT is a solid pickup option at this point, thie higher your atk and if you have rage, the more effective crit will be, this is multiplicative, so don\\u0026#39;t ever prioritize \\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E over \\u003Cstrong\\u003EATK\\u003C/strong\\u003E/\\u003Cstrong\\u003ERage\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EASPD\\u003C/strong\\u003E is detrimental for your early game, but it can be very good when you\\u0026#39;re really getting stacked on core offensive abilities. This is not crucial because we want to prioritize our DPS.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ESituational Choices\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003EThese depend on other factors that don\\u0026#39;t necessarily heighten the strengths of the Scythe, they could work, but wouldn\\u0026#39;t necessarily be as effective as with a \\u003Cem\\u003EKnife/Boomerang\\u003C/em\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERicochet\\u003C/strong\\u003E, it is in paper a very good pick: Having every hit you land automatically directed to the closest enemy really helps you make the most of every shot. However, a noticeable caveat is when fighting small enemies, enemies will be constantly knocked all over the screen, possibly bringing enemies closer than you would like them to be. Of course, if you\\u0026#39;re nuking enemies in 2-3 shots, it becomes less hazardous. And the knockback is much smaller (or none) for bosses.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBouncy-wall\\u003C/strong\\u003E, simply having BW allows you to hit an enemy multiple times with the same projectile as long as you\\u0026#39;re firing it at a perpendicular-ish direction from a wall, or when they are located in corners. This isn\\u0026#39;t the case if you have the scythe ricochet to a different enemy. You can try and go for \\u003Cstrong\\u003EBouncy-Wall+Pierce/Ricochet+Diagonal/Rear/Side\\u003C/strong\\u003E and go ham, but none of these abilities actually increase your DPS, which is what you should be aiming to increase when building for nukes. Besides, flooding your screen with your own projectiles can make you miss enemy projectiles aimed at you.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPierce\\u003C/strong\\u003E, I like to think of it as poor-man\\u0026#39;s \\u003Cstrong\\u003ERicochet\\u003C/strong\\u003E, the main difference being the projectile keeps going forward if there are no enemies close to ricochet towards, you could make a case for \\u003Cstrong\\u003EPierce\\u003C/strong\\u003E+\\u003Cstrong\\u003EBouncy-Wall\\u003C/strong\\u003E when fighting immobile/Gigantic bosses, or you could go this way and hope for one or two \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E to drop along so you can go bonkers, but I already covered that on Bouncy-Wall.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESide\\u003C/strong\\u003E/\\u003Cstrong\\u003ERear\\u003C/strong\\u003E, I like to think of it as poor-man\\u0026#39;s \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E, you can point-blank with it when you\\u0026#39;re eating a boss from the inside-out, but other than that it doesn\\u0026#39;t add as much value as \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EWalk through water\\u003C/strong\\u003E/\\u003Cstrong\\u003EWalk through walls\\u003C/strong\\u003E, these could be nice depending on what World you\\u0026#39;re going through, pick them at discretion (Usually they\\u0026#39;ll cost you Max HP from a devil deal).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EDon\\u0026#39;t even think about it:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFire\\u003C/strong\\u003E/\\u003Cstrong\\u003EBolt\\u003C/strong\\u003E/\\u003Cstrong\\u003EPoison\\u003C/strong\\u003E/\\u003Cstrong\\u003EHoly\\u003C/strong\\u003E, it scales off your \\u003Cem\\u003EAttack\\u003C/em\\u003E and not off your \\u003Cem\\u003EDPS\\u003C/em\\u003E, making every fire tick for the same amount through the entire game, it doesn\\u0026#39;t really synergize with a strong, low fire-rate weapon.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EHeadshot\\u003C/strong\\u003E, you don\\u0026#39;t fire many times with a Scythe, so the there are less chances for this to proc, this is counter-synergy.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFire orbs/swords\\u003C/strong\\u003E/\\u003Cstrong\\u003EBolt orbs/swords\\u003C/strong\\u003E/\\u003Cstrong\\u003EPoison orbs/swords\\u003C/strong\\u003E , even if you\\u0026#39;re point-blanking, the effects granted by these abilities just don\\u0026#39;t really add much to your performance.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESummon one-eyed bat\\u003C/strong\\u003E/\\u003Cstrong\\u003ESummon Shadow-clone\\u003C/strong\\u003E I just don\\u0026#39;t like these abilities, they mess with your drops, you can confuse the shadows for enemies and be distracted from projectiles and it\\u0026#39;s pretty much useless against most boss monsters. Just DON\\u0026#39;T.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESlow Projectile\\u003C/strong\\u003E, See... enemies move, and the slower your projectile travels, the less likely it is your hit will land. It doesn\\u0026#39;t really add much to what a Scythe offers, from my experience, I just stray away from it as much as I can, usually there are more desirable abilities to choose from.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPet CRIT/ASPD/ATK\\u003C/strong\\u003E, you don\\u0026#39;t really control these guys, and I don\\u0026#39;t really like to have to rely on their attack patterns to clear content.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhen built right, the scythe tends to get stupid strong, but I believe this is the case for most weapons, as long as you\\u0026#39;re playing them right.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny abilities I might have missed are either because they are irrelevant or I haven\\u0026#39;t unlocked them yet (I\\u0026#39;m sitting at stage 4, feel free to laugh and point at me while I have a lot of fun nuking mobs).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buicsw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"snivs\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buicsw/ability_recommendations_not_a_tierlist/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buicsw/ability_recommendations_not_a_tierlist/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559154784.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts\\n**1 Correct Seed:** 15pts\\n**2 Correct Seeds:** +30pts(45 total)\\n**(S)emi(F)inalist:** 180pts\\n**(F)inalist:** 380pts\\n**(W)inners:** 780pts\\n**Score in favor of your winner:** 190pts\\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"author_fullname\": \"t2_ze11d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"RLCS Season 7 LAN Bracket Prediction\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bufkvu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559170095.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts\\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15pts\\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30pts(45 total)\\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180pts\\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380pts\\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780pts\\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190pts\\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bufkvu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"RyanDaLegendary\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559141295.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test 1\", \"author_fullname\": \"t2_jb0ym\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"up-test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bu8y26\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559124859.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest 1\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu8y26\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dekarde\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu8y26/uptest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559096059.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"https://i.redd.it/n748pckqj1131.png\\n\\nHere is our game\", \"author_fullname\": \"t2_143lgq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"n748pckqj1131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1080, \"x\": 1920, \"u\": \"https://i.redd.it/n748pckqj1131.png\"}, \"m\": \"image/png\", \"id\": \"n748pckqj1131\"}}, \"name\": \"t3_bu7uio\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/sr9ge0kfsgNx8x4rIDjOnKDSVCL18SDnkOraCwBHop8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559118474.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/n748pckqj1131.png\\\"\\u003Ehttps://i.redd.it/n748pckqj1131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is our game\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7uio\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vivid_Mauve\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu7uio/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu7uio/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559089674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test test\", \"author_fullname\": \"t2_143lgq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Claim Game\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bu7jss\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559116818.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7jss\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vivid_Mauve\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu7jss/claim_game/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu7jss/claim_game/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559088018.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_nlpmjd2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I HATE THE FUCKING NlG8GERS, THEY SMELL DAAAWG. LIKE I DONT EVEN KNOW WHY, I THINK ITS BECAUSE OF THEIR DIRT MONKEY SKIN OR SOME SHIT LIKE THAT\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bu3xsz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ArScYM5Q48TrtDof4ST-2EeyNmmkxsGz6QkPcuHwYmI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559098637.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?auto=webp\\u0026s=82354c537d30bbf07eb9b7e3191e3834a8af2ce6\", \"width\": 640, \"height\": 838}, \"resolutions\": [{\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=75ec4f00b631f497c0aafdef0e0a758953e48a3a\", \"width\": 108, \"height\": 141}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c0e25d181ba2cb381ec414e0ac76752eb45b11f6\", \"width\": 216, \"height\": 282}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8eff642156f04ce1ad2e42bc2fb782b11b88d271\", \"width\": 320, \"height\": 419}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f6fb42bc9a8b65f8be8afac2b6190130b5463160\", \"width\": 640, \"height\": 838}], \"variants\": {}, \"id\": \"950GL9F_ZaUbbJK3rJxkM1RLCMb6VYKACygOpjTiR4s\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu3xsz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KFC_MANAGER_TRIHARD\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu3xsz/i_hate_the_fucking_nlg8gers_they_smell_daaawg/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/y5uqepxj10131.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559069837.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_kvp37q4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_btnd7z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Onn2p7TcF2NuasNIGcR0CfMWDLEDmV12cjySeav5UGM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559000072.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?auto=webp\\u0026s=090d65871b6a42fa951e66396dce697552b174c1\", \"width\": 1600, \"height\": 1600}, \"resolutions\": [{\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=15a7e193fed161120c580133451cc0809b4e3257\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=005721458dcadca85be7d27fd446e30eff44415b\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3eb3e6fba97d72e1efc6f464dae29c2de85ec963\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=3a3eeba7579458cb8713415f60484fa0d23f402f\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=150168de16c3811111564cb92578ec189608ea9d\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=3df90efe0f287fa027b51ea347ba65096d893233\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"FqP4WYIjTnkAX8xVjzbzRRdIW6207vOaOhoPRV5_-Xg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btnd7z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"agasitko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btnd7z/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/4mvy2odfwr031.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558971272.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Just migrated the unit tests for one of our projects from Boost.Test to Doctest and decided to share the time measurements while I still have the two branches at hand. You can see the number of the test cases in the run-time output below.\\n\\nThe tests were done on virtual machine with 4 cores and 8 GB of RAM.\\n\\nThe build was done with GCC 7.3 with `-std='c++17' -O2 -Wall -Wextra -Werror -Winvalid-pch` and 4 threads for parallel building. The setup with Doctest has two additional flags:\\n\\n`-DDOCTEST_CONFIG_SUPER_FAST_ASSERTS -DDOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION`.\\n\\nThe Boost version that I'm using is 1.69 and the Doctest version is 2.3.2.\\n\\nFor the run-time tests, I ran them 3 times each and picked the slower ones. The timings for each version was in the same ballpark anyway.\\n\\nFull rebuild, including the precompiled header, with Boost.Test\\n\\n real \\u00a0 \\u00a01m5.710s \\n user \\u00a0 \\u00a03m42.350s \\n sys \\u00a0 \\u00a0 0m5.751s\\n\\nFull rebuild, including the precompiled header, with Doctest\\n\\n real \\u00a0 \\u00a00m52.567s \\n user \\u00a0 \\u00a02m40.018s \\n sys \\u00a0 \\u00a0 0m4.993s \\n\\nRebuild, without the precompiled header, with Boost.Test\\n\\n real \\u00a0 \\u00a01m2.391s \\n user \\u00a0 \\u00a03m40.168s \\n sys \\u00a0 \\u00a0 0m5.532s \\n\\nRebuild, without the precompiled header, with Doctest\\n\\n real \\u00a0 \\u00a00m46.351s \\n user \\u00a0 \\u00a02m38.131s \\n sys \\u00a0 \\u00a0 0m4.029s \\n\\nRun-time with Boost.Test\\n\\n time ./tests.bin -r short \\n Running 149 test cases... \\n \\n Test module \\\"p3_tests\\\" has passed with: \\n \\u00a0 149 test cases out of 149 passed \\n \\u00a0 1166 assertions out of 1166 passed \\n \\n real \\u00a0 \\u00a00m0.056s \\n user \\u00a0 \\u00a00m0.025s \\n sys \\u00a0 \\u00a0 0m0.031s \\n\\nRun-time with Doctest\\n\\n time ./tests.bin \\n [doctest] doctest version is \\\"2.3.2\\\" \\n [doctest] run with \\\"--help\\\" for options \\n =============================================================================== \\n [doctest] test cases: \\u00a0 \\u00a0149 | \\u00a0 \\u00a0149 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\u00a0 \\u00a0 \\u00a00 skipped \\n [doctest] assertions: \\u00a0 1167 | \\u00a0 1167 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\n [doctest] Status: SUCCESS! \\n \\n real \\u00a0 \\u00a00m0.042s \\n user \\u00a0 \\u00a00m0.021s \\n sys \\u00a0 \\u00a0 0m0.021s\", \"author_fullname\": \"t2_tk6dd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Timing Boost.Test and Doctest\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btkt4w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558984671.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust migrated the unit tests for one of our projects from Boost.Test to Doctest and decided to share the time measurements while I still have the two branches at hand. You can see the number of the test cases in the run-time output below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe tests were done on virtual machine with 4 cores and 8 GB of RAM.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe build was done with GCC 7.3 with \\u003Ccode\\u003E-std=\\u0026#39;c++17\\u0026#39; -O2 -Wall -Wextra -Werror -Winvalid-pch\\u003C/code\\u003E and 4 threads for parallel building. The setup with Doctest has two additional flags:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E-DDOCTEST_CONFIG_SUPER_FAST_ASSERTS -DDOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Boost version that I\\u0026#39;m using is 1.69 and the Doctest version is 2.3.2.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the run-time tests, I ran them 3 times each and picked the slower ones. The timings for each version was in the same ballpark anyway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFull rebuild, including the precompiled header, with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a01m5.710s \\nuser \\u00a0 \\u00a03m42.350s \\nsys \\u00a0 \\u00a0 0m5.751s\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EFull rebuild, including the precompiled header, with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a00m52.567s \\nuser \\u00a0 \\u00a02m40.018s \\nsys \\u00a0 \\u00a0 0m4.993s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERebuild, without the precompiled header, with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a01m2.391s \\nuser \\u00a0 \\u00a03m40.168s \\nsys \\u00a0 \\u00a0 0m5.532s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERebuild, without the precompiled header, with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a00m46.351s \\nuser \\u00a0 \\u00a02m38.131s \\nsys \\u00a0 \\u00a0 0m4.029s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERun-time with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Etime ./tests.bin -r short \\nRunning 149 test cases... \\n\\nTest module \\u0026quot;p3_tests\\u0026quot; has passed with: \\n\\u00a0 149 test cases out of 149 passed \\n\\u00a0 1166 assertions out of 1166 passed \\n\\nreal \\u00a0 \\u00a00m0.056s \\nuser \\u00a0 \\u00a00m0.025s \\nsys \\u00a0 \\u00a0 0m0.031s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERun-time with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Etime ./tests.bin \\n[doctest] doctest version is \\u0026quot;2.3.2\\u0026quot; \\n[doctest] run with \\u0026quot;--help\\u0026quot; for options \\n=============================================================================== \\n[doctest] test cases: \\u00a0 \\u00a0149 | \\u00a0 \\u00a0149 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\u00a0 \\u00a0 \\u00a00 skipped \\n[doctest] assertions: \\u00a0 1167 | \\u00a0 1167 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\n[doctest] Status: SUCCESS! \\n\\nreal \\u00a0 \\u00a00m0.042s \\nuser \\u00a0 \\u00a00m0.021s \\nsys \\u00a0 \\u00a0 0m0.021s\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btkt4w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pavel_v\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btkt4w/timing_boosttest_and_doctest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btkt4w/timing_boosttest_and_doctest/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558955871.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_znwfd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 109, \"hide_score\": false, \"name\": \"t3_btgu09\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/G7me3nXuT4WiSJ_5w66HsnXsLrt6szjE7w7XGClSb8Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558954744.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?auto=webp\\u0026s=393cdc6165f09e5e16b544fb51e88087b027c5c0\", \"width\": 499, \"height\": 389}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fa7f679c4a6c8b1c74b7d9df06e2157d168876e6\", \"width\": 108, \"height\": 84}, {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c96d97f5ca9370651816f1391b1a55a33cce980a\", \"width\": 216, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d436b0e54126c4dc606260434294b6064c053d07\", \"width\": 320, \"height\": 249}], \"variants\": {}, \"id\": \"E-YB0z8GJjScZr1sRZLjjEz-pdps6apmJB4z1z2yzLA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btgu09\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Conan_JP\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btgu09/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.imgur.com/5CLcQGP.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558925944.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\nJust comment before pm\\n\\nLocal: 79401\\n\\n[Timestamps](https://imgur.com/a/qfjjjRx)\\n\\n|Item|Local + shipping|Description|\\n|:-|:-|:-|\\n|ASUS Prime X470-Pro AMD Ryzen|$100 shipped|Have original box, SLI adapter, and screws|\\n|2x G.Skill TridentZ RGB Series 8GB|$105 shipped|running at 3200 MHz|\\n|EVGA Supernova 750 G2, 80+ Gold 750W|$80 shipped|Fully Modular, EVGA ECO Mode|\\n|ANNE PRO 2 RGB|$75shipped|Missing Y Key replaced w/ colored key cap|\\n|SteelSeries Arcits 5 RGB ( Headset)|$40 shipped|Works perfectly although there is a small scuff|\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"E2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btdfqu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558934579.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust comment before pm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELocal: 79401\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/qfjjjRx\\\"\\u003ETimestamps\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ELocal + shipping\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EASUS Prime X470-Pro AMD Ryzen\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$100 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHave original box, SLI adapter, and screws\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2x G.Skill TridentZ RGB Series 8GB\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$105 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Erunning at 3200 MHz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEVGA Supernova 750 G2, 80+ Gold 750W\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$80 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFully Modular, EVGA ECO Mode\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EANNE PRO 2 RGB\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$75shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMissing Y Key replaced w/ colored key cap\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESteelSeries Arcits 5 RGB ( Headset)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EWorks perfectly although there is a small scuff\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?auto=webp\\u0026s=e3cd8025431b8d4e4a001c163dff8247a6d332fa\", \"width\": 2048, \"height\": 1536}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5ee5cf7d1be3464420cac8148fb7776b3db5ce4e\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=36cf5d02c9cf110ea13a4a1805bdd615aeb871a8\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9fb11c2092ec2a4287ec4cc436ab14659175ce6b\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=4a74f9cb14b1f7a893dc86ed40c19d0e773ba8f6\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=740f8d332c2129b8abead72eef7968317d5cde8d\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c46ac181d7dd9625a47805f6b36077275271ad4f\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"3O1ITl-5hWXF7luK9SXQMRkyhjwvYMhGJEuuQC-l1i4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btdfqu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/PostPreview/comments/btdfqu/e2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btdfqu/e2/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558905779.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"So for starters, please comment before PM'ing me. None of the listings include shipping, I can give you a quote if you tell me what you want and give me your zip code. Anything that can fit in a small priority mail box will be a $7.20 flat fee. Everything else will vary. I have some trades on here as well as excellent feedback on ebay so if you would like to see that let me know.\\n\\n\\u0026#x200B;\\n\\n|Item|Description|Price|\\n|:-|:-|:-|\\n|Black Realforce 87u|Great working condition. No keycaps included, but it has been converted to mini USB and jtk mx sliders|$115|\\n|IBM Model M |THIS IS NOT WORKING, IT IS FOR PARTS ONLY. | $10|\\n|Battlestation io Wrist Rest |Purple Heart Color, made for a 60% keyboard|$30|\\n|HKP Gas Mask |Green Poison black eyes|$14|\\n|Keyforge Osiris|Chlorium Color|$40|\\n|girldc Stormtrooper|Black Stormtrooper (Looks dark grey)|$30|\\n|JTK Sliders|Jtk purple sliders installed once and removed shortly after|$15|\\n|Alps Keyset|Full keyset I pulled off of a vintage board. Let me know if you want more pictures|$10|\\n|Tektronix F\\u0026F|Foam and Foil board, i'm not totally sure if it works. Chassis is made out of metal and VERY heavy|$25|\\n\\n\\u0026#x200B;\\n\\nAs for the trade, I don't want to pay anything extra, if you find stuff you like and you want to trade for a black HHKB stock or modded, just let me know.\", \"author_fullname\": \"t2_xrrbz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[US-NJ][H]Realforce 87u, Keyboards, Artisans, Battlestation 10 wrist rest [W]Paypal, Black HHKB\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btb4ye\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558895507.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558923254.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo for starters, please comment before PM\\u0026#39;ing me. None of the listings include shipping, I can give you a quote if you tell me what you want and give me your zip code. Anything that can fit in a small priority mail box will be a $7.20 flat fee. Everything else will vary. I have some trades on here as well as excellent feedback on ebay so if you would like to see that let me know.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlack Realforce 87u\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGreat working condition. No keycaps included, but it has been converted to mini USB and jtk mx sliders\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$115\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EIBM Model M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETHIS IS NOT WORKING, IT IS FOR PARTS ONLY.\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBattlestation io Wrist Rest\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurple Heart Color, made for a 60% keyboard\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHKP Gas Mask\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGreen Poison black eyes\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$14\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EKeyforge Osiris\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EChlorium Color\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Egirldc Stormtrooper\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlack Stormtrooper (Looks dark grey)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJTK Sliders\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJtk purple sliders installed once and removed shortly after\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$15\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EAlps Keyset\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFull keyset I pulled off of a vintage board. Let me know if you want more pictures\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETektronix F\\u0026amp;F\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFoam and Foil board, i\\u0026#39;m not totally sure if it works. Chassis is made out of metal and VERY heavy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$25\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for the trade, I don\\u0026#39;t want to pay anything extra, if you find stuff you like and you want to trade for a black HHKB stock or modded, just let me know.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btb4ye\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"blackriver35\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btb4ye/usnjhrealforce_87u_keyboards_artisans/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btb4ye/usnjhrealforce_87u_keyboards_artisans/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558894454.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Test\\n\\nhttps://i.redd.it/43djennmkj031.jpg\\n\\nhttps://i.redd.it/bjdfsn4pkj031.jpg\\n\\nanother test\", \"author_fullname\": \"t2_11gzbx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"blub\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 56, \"hide_score\": false, \"media_metadata\": {\"43djennmkj031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 775, \"x\": 1920, \"u\": \"https://i.redd.it/43djennmkj031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"43djennmkj031\"}, \"bjdfsn4pkj031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 775, \"x\": 1920, \"u\": \"https://i.redd.it/bjdfsn4pkj031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"bjdfsn4pkj031\"}}, \"name\": \"t3_bt6wuy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/0UAaA8XpjYLxWwuXJiyi-R4dMzJm8wGf2wmAH_mbjlY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558899273.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/43djennmkj031.jpg\\\"\\u003Ehttps://i.redd.it/43djennmkj031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/bjdfsn4pkj031.jpg\\\"\\u003Ehttps://i.redd.it/bjdfsn4pkj031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eanother test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt6wuy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AnotherDayOfLife\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt6wuy/blub/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt6wuy/blub/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558870473.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\#opioid #statistics #pandemic #emergency #drugs\\n\\nhttps://i.redd.it/od006dfy9j031.png\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Crisis - By the Numbers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"od006dfy9j031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1008, \"x\": 1800, \"u\": \"https://i.redd.it/od006dfy9j031.png\"}, \"m\": \"image/png\", \"id\": \"od006dfy9j031\"}}, \"name\": \"t3_bt6gq0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ULg29n5F6KbOENW5WKQV8hVHUaCSmwUV2Pvi7lAzTnw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558895647.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#opioid #statistics #pandemic #emergency #drugs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/od006dfy9j031.png\\\"\\u003Ehttps://i.redd.it/od006dfy9j031.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt6gq0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt6gq0/the_opioid_crisis_by_the_numbers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt6gq0/the_opioid_crisis_by_the_numbers/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558866847.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Crisis - By the Numbers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bt570v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/J57kjqkqWulPTF0F2CGsfdOw-ZHKtDF8-vmDnuC1ZrA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558884640.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?auto=webp\\u0026s=883d696a42fd4b489a2443ac7948425234dead06\", \"width\": 1800, \"height\": 1008}, \"resolutions\": [{\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b2271e2b6a77c996f1b68d98c2f21282f5fc64af\", \"width\": 108, \"height\": 60}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a735587be8be935850d72f92104abbd7524f7989\", \"width\": 216, \"height\": 120}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f2b57eb686d7a9cae234ef30d0929508d82f9b0c\", \"width\": 320, \"height\": 179}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=0b51cbc6ab0ed7c1b0603fa9bc60be8a314cfd00\", \"width\": 640, \"height\": 358}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=b6d4f46ac0317e4d199b1a2314dca58d625149f3\", \"width\": 960, \"height\": 537}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=a90b09a8c6c8fb24697eac10c348ab894bbc8a62\", \"width\": 1080, \"height\": 604}], \"variants\": {}, \"id\": \"i4RH5BnT_PvxAameb4XpCaX1qIqRrxlNsTuO6tn_QXU\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt570v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt570v/the_opioid_crisis_by_the_numbers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/bgwlznx4di031.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558855840.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2hmmk43f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Falcon view...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bt1azs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5yIb3YjCt03EmRM3zlVIMsQhCs43pA7wbEqktH19Cfc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558856981.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?auto=webp\\u0026s=3c1bb6209fd60cd5f0a5f7df4bb35496e2fa1589\", \"width\": 1440, \"height\": 2560}, \"resolutions\": [{\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0ef05f2642c8199aa57f21c0d54b9c69b5f71d5f\", \"width\": 108, \"height\": 192}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=df094af1b4ddd4fc3447cf0656ec22e7f7c02e78\", \"width\": 216, \"height\": 384}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6a092c4d9a07e3789a75ce521d34e21d29b86f4a\", \"width\": 320, \"height\": 568}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=474632e119d567afa4d85306584e47fb276ac835\", \"width\": 640, \"height\": 1137}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=db7e4fc3eaa4d78682a1f9bf880fc8414d69059f\", \"width\": 960, \"height\": 1706}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d6be90f315a480dc381dc3ec39f55f2a6c961fd2\", \"width\": 1080, \"height\": 1920}], \"variants\": {}, \"id\": \"ARZyk4zeMGPtRhvZx49MKXfvtDuF1hkTmnswophEGiA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt1azs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aantoniss\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt1azs/falcon_view/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/jx5956qz2g031.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1558828181.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_35aabssu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bt13kk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/bUwI22Oy5hk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bt13kk\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Tn0uh2-gqGg07MFL1mh36xt2XVPaD43KQ-yyrgULlgw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558855680.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?auto=webp\\u0026s=9ae2a3720570e28a4271afd504fe7644c5ae6af5\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e891ae8f3829df0995f789d716b42297d899791d\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e9528bd0e8d23e42b9a583446d121186f9dd3e0a\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=57b456dd9a2dd298987a841d98226090b702f41b\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"GFq8VRTcX1rYutnbOlEzIndyVsutsicYznT49lCUJ_c\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt13kk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Goldymires\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt13kk/ultimate_skyrim_room_filled_with_magelight_balls/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=bUwI22Oy5hk\\u0026feature=youtu.be\", \"subreddit_subscribers\": 703, \"created_utc\": 1558826880.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/bUwI22Oy5hk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"tested\", \"author_fullname\": \"t2_f4ra2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing 123\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bt0w6n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558829283.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558854391.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etested\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt0w6n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"User09060657542\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt0w6n/testing_123/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558825591.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://imgur.com/register/thirdparty/google](https://imgur.com/register/thirdparty/google)\", \"author_fullname\": \"t2_2zkr00l4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"BvS\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsyl0k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558841880.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/register/thirdparty/google\\\"\\u003Ehttps://imgur.com/register/thirdparty/google\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?auto=webp\\u0026s=d94e7feac682dd559e4a8b3fbbdd38d08adf1d44\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=de5d021977c520c60b9fe96c226154cceb44ec68\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=733ff487f388d32420b5247b49f7728a869fafba\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=69eeff9db988ab6c60ccca380e0cb106af7d12f6\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=dcacd413d3fad44ec5470093a98420843adb1dbb\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=58c767d070db90d652c921e75dd04d2e5bf260b1\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9b4e777c321d825eb745725cb99d589cb8fc7df8\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"nHmB3tUVKrCUK7BucSpK1ZRAoN-XyaQHrTTqr75VHnw\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsyl0k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"T-8-0-0\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsyl0k/bvs/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558813080.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"In the 1990's, opioids became available to the general public with reassurance from pharmaceutical companies that patients would not become addicted to them. Fast forward 25 years and now we have a global epidemic. The widespread misuse of opioids can be related to the greater rates of prescription of opioids. According to the World Health Organisation roughly 118,000 people lost their lives due to opioid use disorders and an estimated 27 million people suffer from opioid use disorders.\\n\\n\\\\#opioid #opioidabuse #addiction #crisis #publichealth\\n\\n\\u0026#x200B;\\n\\nFor more information visit: [https://wp.deakin.edu.au/deakinsso\\\\_242366117/2019/04/10/the-painkillers-are-killing-us/](https://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/)\\n\\nhttps://i.redd.it/60b8yo4o5e031.jpg\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Epidemic\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"media_metadata\": {\"60b8yo4o5e031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1375, \"x\": 2500, \"u\": \"https://i.redd.it/60b8yo4o5e031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"60b8yo4o5e031\"}}, \"name\": \"t3_bsx5gx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/XQozoeoqb6ku7BcrTRAau0oUH_lExeTt6WxLONr8RpY.jpg\", \"edited\": 1558866228.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558834399.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn the 1990\\u0026#39;s, opioids became available to the general public with reassurance from pharmaceutical companies that patients would not become addicted to them. Fast forward 25 years and now we have a global epidemic. The widespread misuse of opioids can be related to the greater rates of prescription of opioids. According to the World Health Organisation roughly 118,000 people lost their lives due to opioid use disorders and an estimated 27 million people suffer from opioid use disorders.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#opioid #opioidabuse #addiction #crisis #publichealth\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more information visit: \\u003Ca href=\\\"https://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/\\\"\\u003Ehttps://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/60b8yo4o5e031.jpg\\\"\\u003Ehttps://i.redd.it/60b8yo4o5e031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?auto=webp\\u0026s=7cdb1bbd0e34ff3d8c3f0ec52de03f8436d374f3\", \"width\": 1024, \"height\": 687}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5ec6842c7828c02fe7f3fde357f0a4ab2ee61791\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4e3991a079067adb7748d2dcb08fe5b9b6a9dc35\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c94c9b8c0a597eb5e84d847bb1e25c757b1cb520\", \"width\": 320, \"height\": 214}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b596c3cfff0267b17a13844f43c079a3f66e6494\", \"width\": 640, \"height\": 429}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=fbf7168e509bdd47347b08ba83c83d38fdd8821d\", \"width\": 960, \"height\": 644}], \"variants\": {}, \"id\": \"Oezj5KFHw35YTNV7f2ysRbVTt0E7sP5x-007SvngELE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx5gx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx5gx/the_opioid_epidemic/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsx5gx/the_opioid_epidemic/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558805599.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3rko2hk2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Season 8. Expectation VS Reality - Coub\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 76, \"hide_score\": false, \"name\": \"t3_bsx4cw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 329}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"coub.com\", \"oembed\": {\"provider_url\": \"https://coub.com/\", \"description\": \"Season 8. Expectation VS Reality - Coub - The Biggest Video Meme Platform by \\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"title\": \"Season 8. Expectation VS Reality\", \"url\": \"https://coub.com/view/1uqk30\", \"type\": \"video\", \"author_name\": \"\\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"height\": 329, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 1280, \"version\": \"1.0\", \"provider_name\": \"Coub\", \"thumbnail_url\": \"https://coubsecure-s.akamaihd.net/get/b189/p/coub/simple/cw_image/fc2f77efef2/92fbfabd438d77bc688f2/big_1558602182_00030.jpg\", \"thumbnail_height\": 700}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bsx4cw\", \"height\": 329}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/yYWmiAtN3NIBqz36GFAuzE1Gm9bfyBqWIvr-NLCrdiE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558834230.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"coub.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?auto=webp\\u0026s=2c537c6f4db6a7134e41a1fed83f527a9205a6fc\", \"width\": 1280, \"height\": 700}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8379e056ce44d98ba8cabcedc3e57a5179eb8077\", \"width\": 108, \"height\": 59}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=8546634eedbc00136050661223afe85fa0df9af7\", \"width\": 216, \"height\": 118}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=716bea022cac586a80f5e0d8a91506edd0d83528\", \"width\": 320, \"height\": 175}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d3048a26334e43b4c90357ee44fcdcc546b50f00\", \"width\": 640, \"height\": 350}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=3210c1f30af3c93e6c4667634d00863669de17f4\", \"width\": 960, \"height\": 525}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b15926a8817d038edddebbea83e70e9b359050e6\", \"width\": 1080, \"height\": 590}], \"variants\": {}, \"id\": \"2zfAfglMEQHb1kq47IlSy9xMsGT3DskaBFmGCWHMJm4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx4cw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hunsorgelargen\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx4cw/season_8_expectation_vs_reality_coub/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://coub.com/view/1uqk30\", \"subreddit_subscribers\": 703, \"created_utc\": 1558805430.0, \"media\": {\"type\": \"coub.com\", \"oembed\": {\"provider_url\": \"https://coub.com/\", \"description\": \"Season 8. Expectation VS Reality - Coub - The Biggest Video Meme Platform by \\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"title\": \"Season 8. Expectation VS Reality\", \"url\": \"https://coub.com/view/1uqk30\", \"type\": \"video\", \"author_name\": \"\\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"height\": 329, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 1280, \"version\": \"1.0\", \"provider_name\": \"Coub\", \"thumbnail_url\": \"https://coubsecure-s.akamaihd.net/get/b189/p/coub/simple/cw_image/fc2f77efef2/92fbfabd438d77bc688f2/big_1558602182_00030.jpg\", \"thumbnail_height\": 700}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Epidemic\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 77, \"hide_score\": false, \"name\": \"t3_bsx03j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/QMgLgBWZo2J6BvtEUhCtq1puxq_1nXJklQluEpY1eVc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558833593.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?auto=webp\\u0026s=112c158959edb120ed7a4b2c6af8005b24adfae3\", \"width\": 2500, \"height\": 1375}, \"resolutions\": [{\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=58286f10819d029635929b919b885efe84113bc1\", \"width\": 108, \"height\": 59}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5b950ddd484fbbbf695b9d78f249484dd503ca34\", \"width\": 216, \"height\": 118}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b1627f91c9c141adc0907618e1104fb76265822e\", \"width\": 320, \"height\": 176}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b6a7d4e67ba17921827b1fc20be649529936fbf2\", \"width\": 640, \"height\": 352}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=51b4a2ca46ae9a14de2d1526ea16ee912fc2d5fb\", \"width\": 960, \"height\": 528}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=97c530e4986d9fb9ad52ce225a3776d6b21d34db\", \"width\": 1080, \"height\": 594}], \"variants\": {}, \"id\": \"r0QQSeXyt6cpVPwloW0dlXs4ghmbkHS-vOX8K4sT4o8\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx03j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx03j/the_opioid_epidemic/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/hjkw4r1g5e031.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1558804793.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_225ztxy6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bsveoo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Kane disposes of Seth\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"heiamll\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/goQiwNZzoVA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/heiamll\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bsveoo\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/a3QmR3Wv2LyuxQEMuRGkWJMyV3qVSzueTO5c6mQqVbU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558825096.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?auto=webp\\u0026s=7d0ecdb5c17f93a12cd53f87a9c8d41e27f6731f\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2e2b3e97b45ce73dcddf4449e6cbfc56ff39fc3f\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e84cf3f890c1d24edfefc7d96ef383b5bc317490\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2c1318b4441b4e7015d9d1f514c83f6f5afbafd6\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"JI-LuN1c02BWSJpGlnUncuUUM9PwrbfPwhq5sYuo_jU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsveoo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ihuarraquax__\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsveoo/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=goQiwNZzoVA\", \"subreddit_subscribers\": 703, \"created_utc\": 1558796296.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Kane disposes of Seth\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"heiamll\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/goQiwNZzoVA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/heiamll\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"B\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\\nThay v\\u00ec th\\u1ed1ng nh\\u1ea5t c\\u01a1 quan h\\u00e0nh ch\\u00ednh c\\u1ea3 n\\u01b0\\u1edbc c\\u00f9ng gi\\u1edd l\\u00e0m vi\\u1ec7c, \\u0111\\u1ec1 xu\\u1ea5t m\\u1edbi cho ph\\u00e9p c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng quy \\u0111\\u1ecbnh gi\\u1edd linh ho\\u1ea1t. \\n\\nB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1eeb 8h30\\nSau g\\u1ea7n 20 ng\\u00e0y c\\u00f4ng b\\u1ed1 t\\u1edd tr\\u00ecnh d\\u1ef1 th\\u1ea3o s\\u1eeda \\u0111\\u1ed5i B\\u1ed9 Lu\\u1eadt Lao \\u0111\\u1ed9ng n\\u0103m 2012, ng\\u00e0y 16/5, B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u00e3 \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i n\\u1ed9i dung \\u0111\\u1ec1 xu\\u1ea5t v\\u1ec1 gi\\u1edd l\\u00e0m vi\\u1ec7c.\\n\\n\\u00d4ng Nguy\\u1ec5n V\\u0103n B\\u00ecnh, Ph\\u00f3 v\\u1ee5 tr\\u01b0\\u1edfng V\\u1ee5 ph\\u00e1p ch\\u1ebf (B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 x\\u00e3 h\\u1ed9i), cho hay v\\u1eeba qua B\\u1ed9 nh\\u1eadn \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u \\u00fd ki\\u1ebfn \\u0111\\u00f3ng g\\u00f3p c\\u1ee7a ng\\u01b0\\u1eddi d\\u00e2n v\\u00e0 c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng n\\u00ean \\u0111\\u00e3 ti\\u1ebfp thu, \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1ea1i c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng \\u0111\\u1ec3 linh ho\\u1ea1t, ph\\u00f9 h\\u1ee3p v\\u1edbi \\u0111i\\u1ec1u ki\\u1ec7n kh\\u00ed h\\u1eadu m\\u1ed7i v\\u00f9ng mi\\u1ec1n. \\n\\nC\\u1ee5 th\\u1ec3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c s\\u1eeda l\\u1ea1i nh\\u01b0 sau: \\\"Giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\\". \\n\\n\\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc c\\u1ea5p trung \\u01b0\\u01a1ng v\\u00e0 c\\u00e1c \\u0111\\u00f4 th\\u1ecb l\\u1edbn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat (tr\\u1eeb nh\\u1eefng \\u0111\\u01a1n v\\u1ecb ho\\u1eb7c b\\u1ed9 ph\\u1eadn ph\\u1ea3i th\\u01b0\\u1eddng tr\\u1ef1c 24/24 gi\\u1edd \\u0111\\u1ec3 \\u0111\\u1ea3m b\\u1ea3o li\\u00ean th\\u00f4ng c\\u00f4ng vi\\u1ec7c ho\\u1eb7c tr\\u1ef1c ti\\u1ebfp gi\\u1ea3i quy\\u1ebft c\\u00f4ng vi\\u1ec7c v\\u1edbi ng\\u01b0\\u1eddi d\\u00e2n). \\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc \\u1edf \\u0111\\u1ecba ph\\u01b0\\u01a1ng th\\u00ec th\\u1ed1ng nh\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c m\\u00f9a h\\u00e8 v\\u00e0 m\\u00f9a \\u0111\\u00f4ng theo \\u0111i\\u1ec1u ki\\u1ec7n \\u0111\\u1ecba l\\u00fd.\\n\\nPh\\u01b0\\u01a1ng \\u00e1n 2 c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c gi\\u1eef nh\\u01b0 hi\\u1ec7n h\\u00e0nh. Theo \\u0111\\u00f3, th\\u1eddi gian l\\u00e0m vi\\u1ec7c kh\\u00f4ng quy \\u0111\\u1ecbnh trong B\\u1ed9 lu\\u1eadt Lao \\u0111\\u1ed9ng m\\u00e0 n\\u00eau t\\u1ea1i c\\u00e1c v\\u0103n b\\u1ea3n h\\u00e0nh ch\\u00ednh; \\u0111\\u1ed1i v\\u1edbi c\\u00e1c B\\u1ed9 do Th\\u1ee7 t\\u01b0\\u1edbng quy\\u1ebft \\u0111\\u1ecbnh; \\u0111\\u1ed1i v\\u1edbi UBND v\\u00e0 c\\u00e1c c\\u01a1 quan chuy\\u00ean m\\u00f4n do Ch\\u1ee7 t\\u1ecbch t\\u1ec9nh quy\\u1ebft.\\n\\u003Cimg src=\\\"https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\\" alt=\\\"Markdown Monster icon\\\"/\\u003E\\n[Ng\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. ](https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg)\\n\\n![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png)\\n\\nNg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\n\\nTr\\u01b0\\u1edbc \\u0111\\u00f3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t trong phi\\u00ean b\\u1ea3n c\\u0169 c\\u1ee7a d\\u1ef1 th\\u1ea3o t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c c\\u00f4ng b\\u1ed1 h\\u00f4m 28/4 n\\u00eau, \\\"giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\\". Th\\u1eddi gian l\\u00e0m vi\\u1ec7c d\\u1ef1 ki\\u1ebfn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat.\", \"author_fullname\": \"t2_3nwxz2cj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"B\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsqqvo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558760411.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558788601.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\\nThay v\\u00ec th\\u1ed1ng nh\\u1ea5t c\\u01a1 quan h\\u00e0nh ch\\u00ednh c\\u1ea3 n\\u01b0\\u1edbc c\\u00f9ng gi\\u1edd l\\u00e0m vi\\u1ec7c, \\u0111\\u1ec1 xu\\u1ea5t m\\u1edbi cho ph\\u00e9p c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng quy \\u0111\\u1ecbnh gi\\u1edd linh ho\\u1ea1t. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1eeb 8h30\\nSau g\\u1ea7n 20 ng\\u00e0y c\\u00f4ng b\\u1ed1 t\\u1edd tr\\u00ecnh d\\u1ef1 th\\u1ea3o s\\u1eeda \\u0111\\u1ed5i B\\u1ed9 Lu\\u1eadt Lao \\u0111\\u1ed9ng n\\u0103m 2012, ng\\u00e0y 16/5, B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u00e3 \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i n\\u1ed9i dung \\u0111\\u1ec1 xu\\u1ea5t v\\u1ec1 gi\\u1edd l\\u00e0m vi\\u1ec7c.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00d4ng Nguy\\u1ec5n V\\u0103n B\\u00ecnh, Ph\\u00f3 v\\u1ee5 tr\\u01b0\\u1edfng V\\u1ee5 ph\\u00e1p ch\\u1ebf (B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 x\\u00e3 h\\u1ed9i), cho hay v\\u1eeba qua B\\u1ed9 nh\\u1eadn \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u \\u00fd ki\\u1ebfn \\u0111\\u00f3ng g\\u00f3p c\\u1ee7a ng\\u01b0\\u1eddi d\\u00e2n v\\u00e0 c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng n\\u00ean \\u0111\\u00e3 ti\\u1ebfp thu, \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1ea1i c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng \\u0111\\u1ec3 linh ho\\u1ea1t, ph\\u00f9 h\\u1ee3p v\\u1edbi \\u0111i\\u1ec1u ki\\u1ec7n kh\\u00ed h\\u1eadu m\\u1ed7i v\\u00f9ng mi\\u1ec1n. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EC\\u1ee5 th\\u1ec3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c s\\u1eeda l\\u1ea1i nh\\u01b0 sau: \\u0026quot;Giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\u0026quot;. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc c\\u1ea5p trung \\u01b0\\u01a1ng v\\u00e0 c\\u00e1c \\u0111\\u00f4 th\\u1ecb l\\u1edbn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat (tr\\u1eeb nh\\u1eefng \\u0111\\u01a1n v\\u1ecb ho\\u1eb7c b\\u1ed9 ph\\u1eadn ph\\u1ea3i th\\u01b0\\u1eddng tr\\u1ef1c 24/24 gi\\u1edd \\u0111\\u1ec3 \\u0111\\u1ea3m b\\u1ea3o li\\u00ean th\\u00f4ng c\\u00f4ng vi\\u1ec7c ho\\u1eb7c tr\\u1ef1c ti\\u1ebfp gi\\u1ea3i quy\\u1ebft c\\u00f4ng vi\\u1ec7c v\\u1edbi ng\\u01b0\\u1eddi d\\u00e2n). \\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc \\u1edf \\u0111\\u1ecba ph\\u01b0\\u01a1ng th\\u00ec th\\u1ed1ng nh\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c m\\u00f9a h\\u00e8 v\\u00e0 m\\u00f9a \\u0111\\u00f4ng theo \\u0111i\\u1ec1u ki\\u1ec7n \\u0111\\u1ecba l\\u00fd.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPh\\u01b0\\u01a1ng \\u00e1n 2 c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c gi\\u1eef nh\\u01b0 hi\\u1ec7n h\\u00e0nh. Theo \\u0111\\u00f3, th\\u1eddi gian l\\u00e0m vi\\u1ec7c kh\\u00f4ng quy \\u0111\\u1ecbnh trong B\\u1ed9 lu\\u1eadt Lao \\u0111\\u1ed9ng m\\u00e0 n\\u00eau t\\u1ea1i c\\u00e1c v\\u0103n b\\u1ea3n h\\u00e0nh ch\\u00ednh; \\u0111\\u1ed1i v\\u1edbi c\\u00e1c B\\u1ed9 do Th\\u1ee7 t\\u01b0\\u1edbng quy\\u1ebft \\u0111\\u1ecbnh; \\u0111\\u1ed1i v\\u1edbi UBND v\\u00e0 c\\u00e1c c\\u01a1 quan chuy\\u00ean m\\u00f4n do Ch\\u1ee7 t\\u1ecbch t\\u1ec9nh quy\\u1ebft.\\n\\u0026lt;img src=\\u0026quot;https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\u0026quot; alt=\\u0026quot;Markdown Monster icon\\u0026quot;/\\u0026gt;\\n\\u003Ca href=\\\"https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\\"\\u003ENg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E![Image of Yaktocat](\\u003Ca href=\\\"https://octodex.github.com/images/yaktocat.png\\\"\\u003Ehttps://octodex.github.com/images/yaktocat.png\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETr\\u01b0\\u1edbc \\u0111\\u00f3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t trong phi\\u00ean b\\u1ea3n c\\u0169 c\\u1ee7a d\\u1ef1 th\\u1ea3o t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c c\\u00f4ng b\\u1ed1 h\\u00f4m 28/4 n\\u00eau, \\u0026quot;giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\u0026quot;. Th\\u1eddi gian l\\u00e0m vi\\u1ec7c d\\u1ef1 ki\\u1ebfn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsqqvo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Fortuner2022\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsqqvo/b\\u1ed9_lao_\\u0111\\u1ed9ng_th\\u01b0\\u01a1ng_binh_v\\u00e0_x\\u00e3_h\\u1ed9i_\\u0111i\\u1ec1u_ch\\u1ec9nh_\\u0111\\u1ec1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsqqvo/b\\u1ed9_lao_\\u0111\\u1ed9ng_th\\u01b0\\u01a1ng_binh_v\\u00e0_x\\u00e3_h\\u1ed9i_\\u0111i\\u1ec1u_ch\\u1ec9nh_\\u0111\\u1ec1/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558759801.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Now the sad part. I don't actually have anyone to play my cube with at the moment. Why would someone put all the effort into building a cube that they can't actually play? Well, I started playing on ptcgo so I don't have a physical play group and from ptcgo I got into collecting some physical cards. I eventually heard about pokemon cubes and thought it sounded like a fun thing to do with all of the cards I was collecting. Some people collect Charizards or secret rares or Yuka Morii art. I collected a cube. That's another reason I went with all the bling, to add some longevity to the project.\\n\\nThe long term plan is to play it with my kids (I have three boys). They're interested in pokemon and I've given them some beater cards to start \\\"collecting\\\" but they're still a year or two away from actually playing the game. In the mean time, I've been playing and testing the cube on my own. You may have seen my post a couple months ago about my [draft interface](https://www.reddit.com/r/pkmntcg/comments/a1i5p1/i_made_a_drafting_interface_for_testing_your_cube/). I use that to build decks then play a few games against myself to get a feel for the power level, consistency and balance. Even with just self-testing, I've been able to learn quite a bit about how the cube plays. Here are some of my observations/musings.\\n\\n##Drafting\\n\\n**Table Draft** (4-6 players, 60 card decks, 6 prize games)\\n\\n1. Create packs\\n * 4 players: 36 packs of 10 cards\\n * 5 players: 45 packs of 10 cards\\n * 6 players: 48 packs of 10 cards\\n2. Each player opens a pack, picks 1 card and passes it to the player on their right.\\n3. Each player continues picking 1 card from the pack that is passed to them until all the cards in the packs are drafted.\\n4. Each player opens a new pack, picks 1 card and passes it to the player on their left.\\n5. Continue until all of the packs have been drafted.\\n\\nThis is the most common draft format and probably what most people have in mind for playing cube. The most challenging part of this format is figuring out what you need to pick early in a pack versus what you think you can leave behind and pick up later. Mid-way through a draft, you might open a pack with a [Strong Energy](https://pkmncards.com/card/strong-energy-fates-collide-fco-115/ \\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\") and a [Nest Ball](https://pkmncards.com/card/nest-ball-sun-moon-sum-123/ \\\"Search your deck for a Basic Pok\\u00e9mon and put it onto your Bench. Then, shuffle your deck.\\\") and be faced with a tough choice. Strong Energy would be incredible in your Fighting deck, probably better than Nest Ball, and not many other people at the table will want the Strong Energy. The Nest Ball, on the other hand, will be in high demand. There's almost no chance that it will still be in the pack when it comes back to you. So do you take the consistency boosting Nest Ball and try to wheel the Strong Energy or do you take the damage boost to guarantee some extra power in your deck. Or maybe you're passed a Salandit that you really want for your [Roast Reveal Salazzle](https://pkmncards.com/card/salazzle-unbroken-bonds-unb-31/ \\\"Ability: Roast Reveal\\nOnce during your turn (before your attack), you may discard a [R] Energy card from your hand. If you do, draw 3 cards.\\\"). Will it come back around or will a Grass deck take it to support a [Hot Poison](https://pkmncards.com/card/salazzle-guardians-rising-gri-16/ \\\"Ability: Hot Poison\\nWhen you play this Pok\\u00e9mon from your hand to evolve 1 of your Pok\\u00e9mon during your turn, you may leave your opponent\\u2019s Active Pok\\u00e9mon Burned and Poisoned.\\\"). Interesting choices!\\n\\nI also like how the pick priorities change throughout the draft. Early on you're mostly looking for big spicy cards to build around. Magnezone, Greninja, Victreebel, etc. If there's nothing like that in the pack, you take a nice consistency card like Sycamore or Ultra Ball that still leaves you open to lots of decks. Further into the draft, you're first picking a lot of the high quality trainer cards cause everyone wants them, but also balancing that with powerful support cards that your deck needs to function. At the tail end, you're trying to fill in any holes that your deck still has. You may find yourself picking a [Brock's Grit](https://pkmncards.com/card/brocks-grit-evolutions-evo-107/ \\\"Shuffle 6 in any combination of Pok\\u00e9mon and basic Energy cards from your discard pile into your deck.\\\") over a [Cynthia](https://pkmncards.com/card/cynthia-ultra-prism-upr-148/ \\\"Shuffle your hand into your deck. Then, draw 6 cards.\\\") simply because you don't have any energy or pokemon recovery yet. While some cards come really close to insta-picks, most of a cards' worth is highly dependent on the deck you're trying to build the stage of the draft you're in, which I really like.\\n\\nRegarding the number of packs to draft, it's tempting to simply draft the entire cube every time. But, especially with four players, it leads to predictable and somewhat boring drafts. Each player gets into their own archetype and there is very little competition for cards other than trainers. If someone first picks a Magnezone, you might as well hand them the rest of the Lightning cards in the cube. If you limit the number of packs, players are not guaranteed to see all of their support cards during the draft. They will have to explore other options within an archetype or at least a way to supplement their preferred deck with other cards. This is an important source of innovation and variety in cube drafting. It's what keeps each new draft form being just like the previous one. Of course, this has to be balanced against giving players enough cards to build a functioning deck. To few cards and you'll end up with a bunch of weak attackers and no real synergy between cards. I feel like around 80-90 cards in your final card pool (not including basic energies) is about right. This may sound like a ton of cards if you are coming from a background of drafting Magic: the Gathering but, proportionally, it's not too far off. In a Magic draft, you have 24 packs of 14 cards and each player ends up with 42 non-land cards. Your 40 card deck will typically have 23 non-land cards so you draft nearly twice as many cards as you end up using. In a 60 card pokemon deck you will have around 45-48 non-energy cards in your final deck and 80-90 is roughly double that. It's enough cards to present you with meaningful choices during deck building rather than just including anything that is remotely playable. Do I try to splash that off-color attacker to cover weakness or do I include more basic energy for consistency? How much energy fixing did I draft? That kind of stuff.\\n\\n**Grid Draft** (2 players, 60 card decks, 6 prize games)\\n\\n1. Create 34 packs of 9 cards. \\n2. Layout one pack in a 3 X 3 grid face up.\\n3. The first player chooses either a row or a column and takes all three of the cards in the row/column.\\n4. The second player chooses another row or column and takes those cards\\n5. Alternated who chooses first with each pack.\\n\\nGrid drafting is a really good place to start if you are playing with someone who's never drafted before. With all the cards laid out for everyone to see, you can easily give hints and guidance without breaking any of the rules of the draft (i.e. \\\"show me your pack\\\"). Drafting an entire deck from a cube involves *a lot* of decisions, and it can be overwhelming for people that aren't familiar with your cube and all of the card interactions. Providing some gentle guidance when they get stuck removes some of that burden and keep things fun. Grid drafting also goes a little bit faster than some of the other forms because you are picking 2-3 cards at a time.\\n\\nUnfortunately, I don't think grid drafting is a very good format for pokemon cubes. After doing several grid drafts in my simulator, I kept ending up with decks that were missing key cards like pre-evolutions even though I was drafting *a lot* of extra cards. During a table draft, you can easily pick up your pre-evolutions later in a pack because no one else is interested in them. But in grid drafting, it's not uncommon to have your pre-evolutions accidentally hate drafted by the other player because they just happened to be in a row with something else they wanted. And if you prioritize pre-evolutions too heavily, you are often giving up high quality consistency cards like draw supporters or poke search. Basically, grid drafting does not give you the precise control over picks necessary to build proper pokemon decks.\\n\\n**Pancake Draft** (2 players)\\n\\n1. Create 30 packs of 12 cards.\\n2. Each player takes a pack, picks 1 card and passes it to the other player.\\n3. Each player picks 2 cards then removes 2 cards and puts them in a discard pile. Pass the pack again.\\n4. Each player picks 2 cards and discards the remaining 5 cards.\\n5. Repeat 2-3 until all packs have been drafted.\\n\\nThis is essentially the traditional table draft adapted for two players. \\n\\n**Sealed** (2-4 players, 60 card decks, 6 prize games)\\n\\n1. Remove pre-evolutions from the pool of cards (142 cards).\\n2. Create sealed pools of 80 cards for each player.\\n3. Build decks adding basic energy and the necessary pre-evolutions as needed.\\n\\nSealed is pretty dicey for the same reasons that grid drafting is. You need to make a lot of intentional picks while drafting to make sure that your evolution lines work. You can't do that in sealed. There's no way you can reliably get enough complete evolution lines in a reasonably sized sealed pool. However, removing the pre-evolutions from the pool helps a ton. Now you're just looking for enough strong attackers that share a type or a strategy to mash together into a deck. After you build you deck, you simply add whatever pre-evolutions you need, similar to how basic energy is handled.\\n\\nSealed decks, across various card games, generally rely less on card synergy and more on individually strong cards. Don't expect the decks to be as intricate or as fun as draft decks. It's not the way I prefer to play cube but it's a decent option if you don't have time for a lengthy draft. It's also a good way to introduce new players to your cube. Having to read every card in a pack 40 times over is exhausting and without a mental short list of what cards they should be considering, inexperienced players can quickly become overwhelmed. With a static sealed pool, a player unfamiliar with the cards can focus on what they have and make the best of it. Consider 40 card decks with 4 prize games if you are playing with new folks, as well.\\n\\n##Gameplay\\n\\n* **Pace of play**: As you might expect, games are quite a bit slower than competitive constructed decks. You don't have the draw engines that give you complete turn 1 setups and let you see half your deck by turn 3. You don't have fully powered up attackers every turn taking knockouts. Instead, cube decks play at around the same speed as theme decks. You spend a few turns setting up, then start taking knock-outs semi-regularly. There will still be occasional dead draws and slow starts but part of the strategy is learning how to mitigate the damage of these situations. Is there a pokemon I can [Flick Poison](https://pkmncards.com/card/carnivine-shining-legends-slg-6/ \\\"[G] Flick Poison\\nSwitch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. The new Active Pok\\u00e9mon is now Poisoned.\\\") and stall while I draw out of this? There are also a fair number of catch-up mechanics available in the cube so getting a slower start than your opponent is not an automatic game loss.\\n\\nWhere cube decks exceed theme decks is in their available lines of play. Theme decks execute basically the same game plan every time because they have only a couple good attackers and maybe one or two tricks. Cube decks have completely unique attackers and each will be strongest in different situations. Sequencing and setting up the right attacker for the right response KO becomes very important. The number of tricks available in cube decks is also much higher than theme decks, leading to lots of fun and unexpected plays throughout the game. \\n\\n* **Consistency**: Consistency is a trick. On one hand, you want your decks to be doing cool, powerful, and interesting things. But doing those things usually means getting several specific cards in your hand and into play. Unfortunately, cube doesn't have strong enough draw engines to support intricate setups, and decks that rely heavily on them are going to be wildly inconsistent. On the other hand, if decks are very simple (play basic pokemon, attach energy, declare attack) they will be very consistent, but also very boring. So decks need a little bit of both. They need some meat and potatoes, basic attacks with low energy costs, as well as some spice, splashy evolution pokemon with unique attacks or abilities. The same is true with trainers, where you want your [Colresses](https://pkmncards.com/card/colress-plasma-storm-pls-135/ \\\"Shuffle your hand into your deck. Then, draw a number of cards equal to the number of Benched Pok\\u00e9mon (both your and your opponent\\u2019s).\\\") along side your [Nanus](https://pkmncards.com/card/nanu-team-up-teu-179/ \\\"Choose a Basic [D] Pok\\u00e9mon in your discard pile. Switch it with 1 of your Pok\\u00e9mon in play. Any attached cards, damage counters, Special Conditions, turns in play, and any other effects remain of the new Pok\\u00e9mon.\\\"). The decks that seem to work best are ones with solid basic attackers that can function on their own, but kick into another gear when they get the stage 2 support online. In Lightning decks, [Zekrom](https://pkmncards.com/card/zekrom-shining-legends-slg-35/ \\\"[C][C] Outrage: 20+\\nThis attack does 10 more damage for each damage counter on this Pok\\u00e9mon.\\n[L][L][C] Storm Blade: 130\\nDiscard 2 Energy from this Pok\\u00e9mon.\\\") or [Zeraora](https://pkmncards.com/card/zeraora-unbroken-bonds-unb-60/ \\\"[L] Crushing Claw: 20\\nDiscard a Special Energy from your opponent\\u2019s Active Pok\\u00e9mon.\\n[L][C][C] Discharge: 50\\u00d7\\nDiscard all [L] Energy from this Pok\\u00e9mon. This attack does 50 damage for each card you discarded in this way.\\\") can chip away for a few turns until [Magnezone](https://pkmncards.com/card/magnezone-forbidden-light-fli-36/ \\\"Ability: Magnetic Circuit\\nAs often as you like during your turn (before your attack), you may attach a [L] Energy card from your hand to 1 of your Pok\\u00e9mon.\\\") begins accelerating energy and you start chewing through attackers. In Psychic decks, [Hoopa](https://pkmncards.com/card/hoopa-steam-siege-sts-51/ \\\"[C] Hyperspace Punch\\nThis attack does 20 damage to 2 of your opponent\\u2019s Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][P][P] Portal Strike: 130\\nThis Pok\\u00e9mon can\\u2019t use Portal Strike during your next turn.\\\") and [Latios](https://pkmncards.com/card/latios-shining-legends-slg-41/ \\\"[C][C] Break Through: 30\\nThis attack does 30 damage to 1 of your opponent\\u2019s Benched Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][C][C] Lagoon Flight: 70 \\\") can load up the board with damage allowing [Chandelure](https://pkmncards.com/card/chandelure-lost-thunder-lot-103/ \\\"[P][P] Vortex of Pain: 20\\u00d7\\nThis attack does 20 damage for each damage counter on all of your opponent\\u2019s Pok\\u00e9mon.\\\") to come in later and Vortex for huge numbers.\\n\\nIn general, people tend to err on the cool and splashy side when building their cube. We're much more likely to imagine Magical Christmas Land in our heads when we envision how all the cards are going to work together. \\\"Of course I'm going to draw [Regirock](https://pkmncards.com/card/regirock-celestial-storm-ces-80/ \\\"[F] Enhanced Stomp: 20+\\nIf this Pok\\u00e9mon has a Pok\\u00e9mon Tool card attached to it, this attack does 20 more damage.\\\"), [Muscle Band](https://pkmncards.com/card/muscle-band-xy-121/ \\\"The attacks of the Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon (before applying Weakness and Resistance).\\\"), [Strong Energy](https://pkmncards.com/card/strong-energy-fates-collide-fco-115/ \\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\") and Rare Candy [Fighting Fury Machamp](https://pkmncards.com/card/machamp-furious-fists-ffi-46/ \\\"Ability: Fighting Fury\\nEach of your [F] Pok\\u00e9mon\\u2019s attacks do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon .\\\") on turn 2. 100 Damage for 1 energy! Might even be too good for cube.\\\" I try to avoid cards that do actual nothing if some previous setup isn't there. I want whatever I draw to be useful in some way. What makes Regirock good is that you only need *one* of those pieces for it to be hitting above average numbers, but the more you have, the better it gets. One example of borderline do-nothings in my cube are the [Reactive Poison](https://pkmncards.com/card/ariados-celestial-storm-ces-6/ \\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\\") attacks, since you really need access to status conditions for them to do anything. Fortunately, [Victreebel](https://pkmncards.com/card/victreebel-unbroken-bonds-unb-15/ \\\"[G] Reactive Poison: 10+\\nThis attack does 60 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G][C][C] Gastro Acid: 90\\nThe Defending Pok\\u00e9mon has no Abilities until the end of your next turn.\\\") and [Ariados](https://pkmncards.com/card/ariados-celestial-storm-ces-6/ \\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G] Spider Trap\\nYou may switch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. Your opponent\\u2019s Active Pok\\u00e9mon is now Asleep and Poisoned..\\\") have decent backup attacks making them somewhat more flexible if the setup isn't there.\\n\\nSo what are the best types of cards to include to support the spice? What are the meat and potatoes?\\n\\n* **Attack draw/search**: Standard games are usually too fast to waste your attack drawing cards, but with the slower pace of play in cube, attack based setup is very valuable. Cards like [Alolan Vulpix](https://pkmncards.com/card/alolan-vulpix-guardians-rising-gri-21/ \\\"[-] Beacon\\nSearch your deck for up to 2 Pok\\u00e9mon, reveal them, and put them into your hand. Then, shuffle your deck.\\\") and [Dunsparce](https://pkmncards.com/card/dunsparce-celestial-storm-ces-110/ \\\"[C] Strike and Run\\nSearch your deck for up to 3 Basic Pok\\u00e9mon and put them onto your Bench. Then, shuffle your deck. If you put any Pok\\u00e9mon onto your Bench in this way, you may switch this Pok\\u00e9mon with 1 of your Benched Pok\\u00e9mon.\\\") are pretty good for setting up your board but can be hard to reliably get out on the first turn and aren't that useful later on. [Espeon](https://pkmncards.com/card/espeon-plasma-freeze-plf-48/ \\\"[C] Psy Alert: 20\\nDraw cards until you have 6 cards in your hand.\\n[P] Shadow Ball\\nThis attack does 40 damage to 1 of your opponent\\u2019s Pok\\u00e9mon. Also apply Weakness and Resistance for Benched Pok\\u00e9mon.\\\") and [Zoroark](https://pkmncards.com/card/zoroark-black-white-blw-71/ \\\"[D] Nasty Plot\\nSearch your deck for a card and put it into your hand. Shuffle your deck afterward.\\n[C][C] Foul Play\\nChoose 1 of the Defending Pok\\u00e9mon\\u2019s attacks and use it as this attack.\\\") can dish out damage in addition to drawing cards, but are stage 1 and require some setup themselves before they are useful. My favorite kinds of cards are pokemon like [Shaymin](https://pkmncards.com/card/shaymin-shining-legends-slg-7/ \\\"[G] Flippity Flap\\nShuffle your hand into your deck. Then, draw 6 cards.\\n[G][C] Rally Back: 30+\\nIf any of your Pok\\u00e9mon were Knocked Out by damage from an opponent\\u2019s attack during their last turn, this attack does 90 more damage.\\\") and [Mimikyu](https://pkmncards.com/card/mimikyu-guardians-rising-gri-58/ \\\"[C] Filch\\nDraw 2 cards.\\n[P][C] Copycat\\nIf your opponent\\u2019s Pok\\u00e9mon used an attack that isn\\u2019t a GX attack during their last turn, use it as this attack.\\\"). The efficient card draw helps with early game setup and mid-game dead draws while their situational attacks keep them relevant to the last prize. They may not be super flavorful additions to their respective archetypes, but they are crucial to a well functioning decks. When things aren't going as planned, you still need cards that get out there and do *something* to help move the game along. Basic attackers, single energy card draw, efficient damage; these pokemon are the glue that hold all fun stuff together.\", \"author_fullname\": \"t2_i1ikl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Pokecube II\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bskwuj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558753845.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENow the sad part. I don\\u0026#39;t actually have anyone to play my cube with at the moment. Why would someone put all the effort into building a cube that they can\\u0026#39;t actually play? Well, I started playing on ptcgo so I don\\u0026#39;t have a physical play group and from ptcgo I got into collecting some physical cards. I eventually heard about pokemon cubes and thought it sounded like a fun thing to do with all of the cards I was collecting. Some people collect Charizards or secret rares or Yuka Morii art. I collected a cube. That\\u0026#39;s another reason I went with all the bling, to add some longevity to the project.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe long term plan is to play it with my kids (I have three boys). They\\u0026#39;re interested in pokemon and I\\u0026#39;ve given them some beater cards to start \\u0026quot;collecting\\u0026quot; but they\\u0026#39;re still a year or two away from actually playing the game. In the mean time, I\\u0026#39;ve been playing and testing the cube on my own. You may have seen my post a couple months ago about my \\u003Ca href=\\\"https://www.reddit.com/r/pkmntcg/comments/a1i5p1/i_made_a_drafting_interface_for_testing_your_cube/\\\"\\u003Edraft interface\\u003C/a\\u003E. I use that to build decks then play a few games against myself to get a feel for the power level, consistency and balance. Even with just self-testing, I\\u0026#39;ve been able to learn quite a bit about how the cube plays. Here are some of my observations/musings.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EDrafting\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETable Draft\\u003C/strong\\u003E (4-6 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate packs\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E4 players: 36 packs of 10 cards\\u003C/li\\u003E\\n\\u003Cli\\u003E5 players: 45 packs of 10 cards\\u003C/li\\u003E\\n\\u003Cli\\u003E6 players: 48 packs of 10 cards\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player opens a pack, picks 1 card and passes it to the player on their right.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player continues picking 1 card from the pack that is passed to them until all the cards in the packs are drafted.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player opens a new pack, picks 1 card and passes it to the player on their left.\\u003C/li\\u003E\\n\\u003Cli\\u003EContinue until all of the packs have been drafted.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is the most common draft format and probably what most people have in mind for playing cube. The most challenging part of this format is figuring out what you need to pick early in a pack versus what you think you can leave behind and pick up later. Mid-way through a draft, you might open a pack with a \\u003Ca href=\\\"https://pkmncards.com/card/strong-energy-fates-collide-fco-115/\\\" title=\\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EStrong Energy\\u003C/a\\u003E and a \\u003Ca href=\\\"https://pkmncards.com/card/nest-ball-sun-moon-sum-123/\\\" title=\\\"Search your deck for a Basic Pok\\u00e9mon and put it onto your Bench. Then, shuffle your deck.\\\"\\u003ENest Ball\\u003C/a\\u003E and be faced with a tough choice. Strong Energy would be incredible in your Fighting deck, probably better than Nest Ball, and not many other people at the table will want the Strong Energy. The Nest Ball, on the other hand, will be in high demand. There\\u0026#39;s almost no chance that it will still be in the pack when it comes back to you. So do you take the consistency boosting Nest Ball and try to wheel the Strong Energy or do you take the damage boost to guarantee some extra power in your deck. Or maybe you\\u0026#39;re passed a Salandit that you really want for your \\u003Ca href=\\\"https://pkmncards.com/card/salazzle-unbroken-bonds-unb-31/\\\" title=\\\"Ability: Roast Reveal\\nOnce during your turn (before your attack), you may discard a [R] Energy card from your hand. If you do, draw 3 cards.\\\"\\u003ERoast Reveal Salazzle\\u003C/a\\u003E. Will it come back around or will a Grass deck take it to support a \\u003Ca href=\\\"https://pkmncards.com/card/salazzle-guardians-rising-gri-16/\\\" title=\\\"Ability: Hot Poison\\nWhen you play this Pok\\u00e9mon from your hand to evolve 1 of your Pok\\u00e9mon during your turn, you may leave your opponent\\u2019s Active Pok\\u00e9mon Burned and Poisoned.\\\"\\u003EHot Poison\\u003C/a\\u003E. Interesting choices!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also like how the pick priorities change throughout the draft. Early on you\\u0026#39;re mostly looking for big spicy cards to build around. Magnezone, Greninja, Victreebel, etc. If there\\u0026#39;s nothing like that in the pack, you take a nice consistency card like Sycamore or Ultra Ball that still leaves you open to lots of decks. Further into the draft, you\\u0026#39;re first picking a lot of the high quality trainer cards cause everyone wants them, but also balancing that with powerful support cards that your deck needs to function. At the tail end, you\\u0026#39;re trying to fill in any holes that your deck still has. You may find yourself picking a \\u003Ca href=\\\"https://pkmncards.com/card/brocks-grit-evolutions-evo-107/\\\" title=\\\"Shuffle 6 in any combination of Pok\\u00e9mon and basic Energy cards from your discard pile into your deck.\\\"\\u003EBrock\\u0026#39;s Grit\\u003C/a\\u003E over a \\u003Ca href=\\\"https://pkmncards.com/card/cynthia-ultra-prism-upr-148/\\\" title=\\\"Shuffle your hand into your deck. Then, draw 6 cards.\\\"\\u003ECynthia\\u003C/a\\u003E simply because you don\\u0026#39;t have any energy or pokemon recovery yet. While some cards come really close to insta-picks, most of a cards\\u0026#39; worth is highly dependent on the deck you\\u0026#39;re trying to build the stage of the draft you\\u0026#39;re in, which I really like.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding the number of packs to draft, it\\u0026#39;s tempting to simply draft the entire cube every time. But, especially with four players, it leads to predictable and somewhat boring drafts. Each player gets into their own archetype and there is very little competition for cards other than trainers. If someone first picks a Magnezone, you might as well hand them the rest of the Lightning cards in the cube. If you limit the number of packs, players are not guaranteed to see all of their support cards during the draft. They will have to explore other options within an archetype or at least a way to supplement their preferred deck with other cards. This is an important source of innovation and variety in cube drafting. It\\u0026#39;s what keeps each new draft form being just like the previous one. Of course, this has to be balanced against giving players enough cards to build a functioning deck. To few cards and you\\u0026#39;ll end up with a bunch of weak attackers and no real synergy between cards. I feel like around 80-90 cards in your final card pool (not including basic energies) is about right. This may sound like a ton of cards if you are coming from a background of drafting Magic: the Gathering but, proportionally, it\\u0026#39;s not too far off. In a Magic draft, you have 24 packs of 14 cards and each player ends up with 42 non-land cards. Your 40 card deck will typically have 23 non-land cards so you draft nearly twice as many cards as you end up using. In a 60 card pokemon deck you will have around 45-48 non-energy cards in your final deck and 80-90 is roughly double that. It\\u0026#39;s enough cards to present you with meaningful choices during deck building rather than just including anything that is remotely playable. Do I try to splash that off-color attacker to cover weakness or do I include more basic energy for consistency? How much energy fixing did I draft? That kind of stuff.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGrid Draft\\u003C/strong\\u003E (2 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate 34 packs of 9 cards. \\u003C/li\\u003E\\n\\u003Cli\\u003ELayout one pack in a 3 X 3 grid face up.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe first player chooses either a row or a column and takes all three of the cards in the row/column.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe second player chooses another row or column and takes those cards\\u003C/li\\u003E\\n\\u003Cli\\u003EAlternated who chooses first with each pack.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EGrid drafting is a really good place to start if you are playing with someone who\\u0026#39;s never drafted before. With all the cards laid out for everyone to see, you can easily give hints and guidance without breaking any of the rules of the draft (i.e. \\u0026quot;show me your pack\\u0026quot;). Drafting an entire deck from a cube involves \\u003Cem\\u003Ea lot\\u003C/em\\u003E of decisions, and it can be overwhelming for people that aren\\u0026#39;t familiar with your cube and all of the card interactions. Providing some gentle guidance when they get stuck removes some of that burden and keep things fun. Grid drafting also goes a little bit faster than some of the other forms because you are picking 2-3 cards at a time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnfortunately, I don\\u0026#39;t think grid drafting is a very good format for pokemon cubes. After doing several grid drafts in my simulator, I kept ending up with decks that were missing key cards like pre-evolutions even though I was drafting \\u003Cem\\u003Ea lot\\u003C/em\\u003E of extra cards. During a table draft, you can easily pick up your pre-evolutions later in a pack because no one else is interested in them. But in grid drafting, it\\u0026#39;s not uncommon to have your pre-evolutions accidentally hate drafted by the other player because they just happened to be in a row with something else they wanted. And if you prioritize pre-evolutions too heavily, you are often giving up high quality consistency cards like draw supporters or poke search. Basically, grid drafting does not give you the precise control over picks necessary to build proper pokemon decks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPancake Draft\\u003C/strong\\u003E (2 players)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate 30 packs of 12 cards.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player takes a pack, picks 1 card and passes it to the other player.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player picks 2 cards then removes 2 cards and puts them in a discard pile. Pass the pack again.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player picks 2 cards and discards the remaining 5 cards.\\u003C/li\\u003E\\n\\u003Cli\\u003ERepeat 2-3 until all packs have been drafted.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is essentially the traditional table draft adapted for two players. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESealed\\u003C/strong\\u003E (2-4 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ERemove pre-evolutions from the pool of cards (142 cards).\\u003C/li\\u003E\\n\\u003Cli\\u003ECreate sealed pools of 80 cards for each player.\\u003C/li\\u003E\\n\\u003Cli\\u003EBuild decks adding basic energy and the necessary pre-evolutions as needed.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ESealed is pretty dicey for the same reasons that grid drafting is. You need to make a lot of intentional picks while drafting to make sure that your evolution lines work. You can\\u0026#39;t do that in sealed. There\\u0026#39;s no way you can reliably get enough complete evolution lines in a reasonably sized sealed pool. However, removing the pre-evolutions from the pool helps a ton. Now you\\u0026#39;re just looking for enough strong attackers that share a type or a strategy to mash together into a deck. After you build you deck, you simply add whatever pre-evolutions you need, similar to how basic energy is handled.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESealed decks, across various card games, generally rely less on card synergy and more on individually strong cards. Don\\u0026#39;t expect the decks to be as intricate or as fun as draft decks. It\\u0026#39;s not the way I prefer to play cube but it\\u0026#39;s a decent option if you don\\u0026#39;t have time for a lengthy draft. It\\u0026#39;s also a good way to introduce new players to your cube. Having to read every card in a pack 40 times over is exhausting and without a mental short list of what cards they should be considering, inexperienced players can quickly become overwhelmed. With a static sealed pool, a player unfamiliar with the cards can focus on what they have and make the best of it. Consider 40 card decks with 4 prize games if you are playing with new folks, as well.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EGameplay\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPace of play\\u003C/strong\\u003E: As you might expect, games are quite a bit slower than competitive constructed decks. You don\\u0026#39;t have the draw engines that give you complete turn 1 setups and let you see half your deck by turn 3. You don\\u0026#39;t have fully powered up attackers every turn taking knockouts. Instead, cube decks play at around the same speed as theme decks. You spend a few turns setting up, then start taking knock-outs semi-regularly. There will still be occasional dead draws and slow starts but part of the strategy is learning how to mitigate the damage of these situations. Is there a pokemon I can \\u003Ca href=\\\"https://pkmncards.com/card/carnivine-shining-legends-slg-6/\\\" title=\\\"[G] Flick Poison\\nSwitch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. The new Active Pok\\u00e9mon is now Poisoned.\\\"\\u003EFlick Poison\\u003C/a\\u003E and stall while I draw out of this? There are also a fair number of catch-up mechanics available in the cube so getting a slower start than your opponent is not an automatic game loss.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhere cube decks exceed theme decks is in their available lines of play. Theme decks execute basically the same game plan every time because they have only a couple good attackers and maybe one or two tricks. Cube decks have completely unique attackers and each will be strongest in different situations. Sequencing and setting up the right attacker for the right response KO becomes very important. The number of tricks available in cube decks is also much higher than theme decks, leading to lots of fun and unexpected plays throughout the game. \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EConsistency\\u003C/strong\\u003E: Consistency is a trick. On one hand, you want your decks to be doing cool, powerful, and interesting things. But doing those things usually means getting several specific cards in your hand and into play. Unfortunately, cube doesn\\u0026#39;t have strong enough draw engines to support intricate setups, and decks that rely heavily on them are going to be wildly inconsistent. On the other hand, if decks are very simple (play basic pokemon, attach energy, declare attack) they will be very consistent, but also very boring. So decks need a little bit of both. They need some meat and potatoes, basic attacks with low energy costs, as well as some spice, splashy evolution pokemon with unique attacks or abilities. The same is true with trainers, where you want your \\u003Ca href=\\\"https://pkmncards.com/card/colress-plasma-storm-pls-135/\\\" title=\\\"Shuffle your hand into your deck. Then, draw a number of cards equal to the number of Benched Pok\\u00e9mon (both your and your opponent\\u2019s).\\\"\\u003EColresses\\u003C/a\\u003E along side your \\u003Ca href=\\\"https://pkmncards.com/card/nanu-team-up-teu-179/\\\" title=\\\"Choose a Basic [D] Pok\\u00e9mon in your discard pile. Switch it with 1 of your Pok\\u00e9mon in play. Any attached cards, damage counters, Special Conditions, turns in play, and any other effects remain of the new Pok\\u00e9mon.\\\"\\u003ENanus\\u003C/a\\u003E. The decks that seem to work best are ones with solid basic attackers that can function on their own, but kick into another gear when they get the stage 2 support online. In Lightning decks, \\u003Ca href=\\\"https://pkmncards.com/card/zekrom-shining-legends-slg-35/\\\" title=\\\"[C][C] Outrage: 20+\\nThis attack does 10 more damage for each damage counter on this Pok\\u00e9mon.\\n[L][L][C] Storm Blade: 130\\nDiscard 2 Energy from this Pok\\u00e9mon.\\\"\\u003EZekrom\\u003C/a\\u003E or \\u003Ca href=\\\"https://pkmncards.com/card/zeraora-unbroken-bonds-unb-60/\\\" title=\\\"[L] Crushing Claw: 20\\nDiscard a Special Energy from your opponent\\u2019s Active Pok\\u00e9mon.\\n[L][C][C] Discharge: 50\\u00d7\\nDiscard all [L] Energy from this Pok\\u00e9mon. This attack does 50 damage for each card you discarded in this way.\\\"\\u003EZeraora\\u003C/a\\u003E can chip away for a few turns until \\u003Ca href=\\\"https://pkmncards.com/card/magnezone-forbidden-light-fli-36/\\\" title=\\\"Ability: Magnetic Circuit\\nAs often as you like during your turn (before your attack), you may attach a [L] Energy card from your hand to 1 of your Pok\\u00e9mon.\\\"\\u003EMagnezone\\u003C/a\\u003E begins accelerating energy and you start chewing through attackers. In Psychic decks, \\u003Ca href=\\\"https://pkmncards.com/card/hoopa-steam-siege-sts-51/\\\" title=\\\"[C] Hyperspace Punch\\nThis attack does 20 damage to 2 of your opponent\\u2019s Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][P][P] Portal Strike: 130\\nThis Pok\\u00e9mon can\\u2019t use Portal Strike during your next turn.\\\"\\u003EHoopa\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/latios-shining-legends-slg-41/\\\" title=\\\"[C][C] Break Through: 30\\nThis attack does 30 damage to 1 of your opponent\\u2019s Benched Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][C][C] Lagoon Flight: 70 \\\"\\u003ELatios\\u003C/a\\u003E can load up the board with damage allowing \\u003Ca href=\\\"https://pkmncards.com/card/chandelure-lost-thunder-lot-103/\\\" title=\\\"[P][P] Vortex of Pain: 20\\u00d7\\nThis attack does 20 damage for each damage counter on all of your opponent\\u2019s Pok\\u00e9mon.\\\"\\u003EChandelure\\u003C/a\\u003E to come in later and Vortex for huge numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EIn general, people tend to err on the cool and splashy side when building their cube. We\\u0026#39;re much more likely to imagine Magical Christmas Land in our heads when we envision how all the cards are going to work together. \\u0026quot;Of course I\\u0026#39;m going to draw \\u003Ca href=\\\"https://pkmncards.com/card/regirock-celestial-storm-ces-80/\\\" title=\\\"[F] Enhanced Stomp: 20+\\nIf this Pok\\u00e9mon has a Pok\\u00e9mon Tool card attached to it, this attack does 20 more damage.\\\"\\u003ERegirock\\u003C/a\\u003E, \\u003Ca href=\\\"https://pkmncards.com/card/muscle-band-xy-121/\\\" title=\\\"The attacks of the Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon (before applying Weakness and Resistance).\\\"\\u003EMuscle Band\\u003C/a\\u003E, \\u003Ca href=\\\"https://pkmncards.com/card/strong-energy-fates-collide-fco-115/\\\" title=\\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EStrong Energy\\u003C/a\\u003E and Rare Candy \\u003Ca href=\\\"https://pkmncards.com/card/machamp-furious-fists-ffi-46/\\\" title=\\\"Ability: Fighting Fury\\nEach of your [F] Pok\\u00e9mon\\u2019s attacks do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon .\\\"\\u003EFighting Fury Machamp\\u003C/a\\u003E on turn 2. 100 Damage for 1 energy! Might even be too good for cube.\\u0026quot; I try to avoid cards that do actual nothing if some previous setup isn\\u0026#39;t there. I want whatever I draw to be useful in some way. What makes Regirock good is that you only need \\u003Cem\\u003Eone\\u003C/em\\u003E of those pieces for it to be hitting above average numbers, but the more you have, the better it gets. One example of borderline do-nothings in my cube are the \\u003Ca href=\\\"https://pkmncards.com/card/ariados-celestial-storm-ces-6/\\\" title=\\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EReactive Poison\\u003C/a\\u003E attacks, since you really need access to status conditions for them to do anything. Fortunately, \\u003Ca href=\\\"https://pkmncards.com/card/victreebel-unbroken-bonds-unb-15/\\\" title=\\\"[G] Reactive Poison: 10+\\nThis attack does 60 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G][C][C] Gastro Acid: 90\\nThe Defending Pok\\u00e9mon has no Abilities until the end of your next turn.\\\"\\u003EVictreebel\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/ariados-celestial-storm-ces-6/\\\" title=\\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G] Spider Trap\\nYou may switch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. Your opponent\\u2019s Active Pok\\u00e9mon is now Asleep and Poisoned..\\\"\\u003EAriados\\u003C/a\\u003E have decent backup attacks making them somewhat more flexible if the setup isn\\u0026#39;t there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo what are the best types of cards to include to support the spice? What are the meat and potatoes?\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EAttack draw/search\\u003C/strong\\u003E: Standard games are usually too fast to waste your attack drawing cards, but with the slower pace of play in cube, attack based setup is very valuable. Cards like \\u003Ca href=\\\"https://pkmncards.com/card/alolan-vulpix-guardians-rising-gri-21/\\\" title=\\\"[-] Beacon\\nSearch your deck for up to 2 Pok\\u00e9mon, reveal them, and put them into your hand. Then, shuffle your deck.\\\"\\u003EAlolan Vulpix\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/dunsparce-celestial-storm-ces-110/\\\" title=\\\"[C] Strike and Run\\nSearch your deck for up to 3 Basic Pok\\u00e9mon and put them onto your Bench. Then, shuffle your deck. If you put any Pok\\u00e9mon onto your Bench in this way, you may switch this Pok\\u00e9mon with 1 of your Benched Pok\\u00e9mon.\\\"\\u003EDunsparce\\u003C/a\\u003E are pretty good for setting up your board but can be hard to reliably get out on the first turn and aren\\u0026#39;t that useful later on. \\u003Ca href=\\\"https://pkmncards.com/card/espeon-plasma-freeze-plf-48/\\\" title=\\\"[C] Psy Alert: 20\\nDraw cards until you have 6 cards in your hand.\\n[P] Shadow Ball\\nThis attack does 40 damage to 1 of your opponent\\u2019s Pok\\u00e9mon. Also apply Weakness and Resistance for Benched Pok\\u00e9mon.\\\"\\u003EEspeon\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/zoroark-black-white-blw-71/\\\" title=\\\"[D] Nasty Plot\\nSearch your deck for a card and put it into your hand. Shuffle your deck afterward.\\n[C][C] Foul Play\\nChoose 1 of the Defending Pok\\u00e9mon\\u2019s attacks and use it as this attack.\\\"\\u003EZoroark\\u003C/a\\u003E can dish out damage in addition to drawing cards, but are stage 1 and require some setup themselves before they are useful. My favorite kinds of cards are pokemon like \\u003Ca href=\\\"https://pkmncards.com/card/shaymin-shining-legends-slg-7/\\\" title=\\\"[G] Flippity Flap\\nShuffle your hand into your deck. Then, draw 6 cards.\\n[G][C] Rally Back: 30+\\nIf any of your Pok\\u00e9mon were Knocked Out by damage from an opponent\\u2019s attack during their last turn, this attack does 90 more damage.\\\"\\u003EShaymin\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/mimikyu-guardians-rising-gri-58/\\\" title=\\\"[C] Filch\\nDraw 2 cards.\\n[P][C] Copycat\\nIf your opponent\\u2019s Pok\\u00e9mon used an attack that isn\\u2019t a GX attack during their last turn, use it as this attack.\\\"\\u003EMimikyu\\u003C/a\\u003E. The efficient card draw helps with early game setup and mid-game dead draws while their situational attacks keep them relevant to the last prize. They may not be super flavorful additions to their respective archetypes, but they are crucial to a well functioning decks. When things aren\\u0026#39;t going as planned, you still need cards that get out there and do \\u003Cem\\u003Esomething\\u003C/em\\u003E to help move the game along. Basic attackers, single energy card draw, efficient damage; these pokemon are the glue that hold all fun stuff together.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?auto=webp\\u0026s=e600eb5ec36578972c9dcb042117f9d7e73eaf67\", \"width\": 700, \"height\": 990}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fbc3f54435181448357a2436160e1dfb3519b084\", \"width\": 108, \"height\": 152}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a5f63fcfa2a6c9d8c07906f31aa033efa31e74b8\", \"width\": 216, \"height\": 305}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cfed664ed03f019883ba79e3a787368deb119107\", \"width\": 320, \"height\": 452}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=32513d92d08fcbec7db49d5f29ef8e082ddf5716\", \"width\": 640, \"height\": 905}], \"variants\": {}, \"id\": \"fHDRdxaTIumi8RmF5w1gT1sw9aM-jH8wqoT5OXhhUUQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bskwuj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vandergus\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558725045.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**TL;DR I will make separate comments for each type of post below and users can volunteer and coordinate amongst yourselves as to who will make the posts to avoid duplicate posts on the same subject**\\n\\nHello fellow Formula 1.5 enthusiasts! We'd love to see some volunteers to make various race-weekend and other posts on a regular basis. There is a comprehensive list in this post but feel free to point out any others that you think should be a regular feature!\\n\\n**Regular threads for race weekends:**\\n\\n*For practice, qualifying and race / immediately post-racesessions, please join the threads on r/formula1*\\n\\n**We would like to ask for volunteers to make the following regular posts:**\\n\\n\\nPoll for DOTD\\n\\nRace report \\n\\nThe race report post will also act as a race-debrief thread (day or two after the race) - this will be more heavily moderated to remove memes, circlejerks and low effort comments.\\n\\n\\nPractice 1, 2 and 3 classification and timesheets (in the same style as official ones)\\n\\nQualifying classification and timesheets (in the same style as official ones)\\n\\nFinal race classification and timesheet (in the same style as official ones)\\n\\nPicture of podium finishers [example](https://twitter.com/F1/status/1127586568703754240?s=20)\\n\\nDOTD announcement [example](https://twitter.com/F1/status/1127587969437765632?s=20)\\n\\nFastest Lap announcement [example](https://twitter.com/F1/status/1127600146374635526?s=20)\\n\\nFastest pit stop announcement [example](https://twitter.com/F1/status/1127682358327402497?s=20)\\n\\nWDC standings after the race [example](https://twitter.com/F1/status/1127597818590519297?s=20)\\n\\nWCC standings after the race (similar style to above)\\n\\nOf course, other OC is always welcome, you may like to consider that you will likely get more visibility in r/formula1 at the moment as it is just a far bigger subreddit.\", \"author_fullname\": \"t2_6yp2341\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Formula 1.5 | Call for volunteers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsfs29\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558726259.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ETL;DR I will make separate comments for each type of post below and users can volunteer and coordinate amongst yourselves as to who will make the posts to avoid duplicate posts on the same subject\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello fellow Formula 1.5 enthusiasts! We\\u0026#39;d love to see some volunteers to make various race-weekend and other posts on a regular basis. There is a comprehensive list in this post but feel free to point out any others that you think should be a regular feature!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERegular threads for race weekends:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EFor practice, qualifying and race / immediately post-racesessions, please join the threads on \\u003Ca href=\\\"/r/formula1\\\"\\u003Er/formula1\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWe would like to ask for volunteers to make the following regular posts:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPoll for DOTD\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERace report \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe race report post will also act as a race-debrief thread (day or two after the race) - this will be more heavily moderated to remove memes, circlejerks and low effort comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPractice 1, 2 and 3 classification and timesheets (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQualifying classification and timesheets (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinal race classification and timesheet (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPicture of podium finishers \\u003Ca href=\\\"https://twitter.com/F1/status/1127586568703754240?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDOTD announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127587969437765632?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFastest Lap announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127600146374635526?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFastest pit stop announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127682358327402497?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWDC standings after the race \\u003Ca href=\\\"https://twitter.com/F1/status/1127597818590519297?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWCC standings after the race (similar style to above)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, other OC is always welcome, you may like to consider that you will likely get more visibility in \\u003Ca href=\\\"/r/formula1\\\"\\u003Er/formula1\\u003C/a\\u003E at the moment as it is just a far bigger subreddit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?auto=webp\\u0026s=531b435f194ee4f9748862ea1f91c2b67808c9f7\", \"width\": 1080, \"height\": 916}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d5452d83fbe31e607852fdcf1fde109bd7f3a4cc\", \"width\": 108, \"height\": 91}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=16e1e705a2cac15745660eedc341cd51707cf99c\", \"width\": 216, \"height\": 183}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=aa9d5874c0919292a0aca1ef10c92decc7a31d14\", \"width\": 320, \"height\": 271}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f9c5c8bf7d52b467b305e24ee5efcd517d3c171d\", \"width\": 640, \"height\": 542}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e1b62c400be0002c41001bf986fd3216bdc25147\", \"width\": 960, \"height\": 814}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=2f1df5035b62f8945614ca65e4c8656ca6760a0a\", \"width\": 1080, \"height\": 916}], \"variants\": {}, \"id\": \"MiHDcikgOe3mM0vjxRgbnrY-GqdMjGqvxB79Gt7ozgk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsfs29\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"elusive_username\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsfs29/formula_15_call_for_volunteers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsfs29/formula_15_call_for_volunteers/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558697459.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_e9a3z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"More test code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 110, \"hide_score\": false, \"name\": \"t3_bsdcgq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/o1Wz3EYwj9GW7Qr_bmSIsLld3Kz5O6AcX7oCXbFhvEY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558706660.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?auto=webp\\u0026s=c58d56e9df9af072d5a095e6817d45ee9c561df5\", \"width\": 328, \"height\": 258}, \"resolutions\": [{\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0973c520828e38195d066689c8fe9a8d2c35c77f\", \"width\": 108, \"height\": 84}, {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a7f5f8811cd4fd4214888c2037f3f8df8509f8eb\", \"width\": 216, \"height\": 169}, {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=53978780d7a0aebc1491cc0ac3acfb7d5e4b6c71\", \"width\": 320, \"height\": 251}], \"variants\": {}, \"id\": \"TZlQzMgacJjOUSE2BlGji8NTN8-C9hPqq8kMNAqpWso\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsdcgq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kyrieru\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsdcgq/more_test_code/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/su3ly0osl3031.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558677860.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"And example of this\\nhttps://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\", \"author_fullname\": \"t2_e9a3z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Code stuff\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsd8yc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558705892.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd example of this\\n\\u003Ca href=\\\"https://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\\\"\\u003Ehttps://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?auto=webp\\u0026s=5b993446d3d76df08f0c0371951333128f74c769\", \"width\": 328, \"height\": 258}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ea056c4c9fee2d83218d84b8aa6ed581e2eabf7c\", \"width\": 108, \"height\": 84}, {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=eecea5ccbbd73effaa403a85d0605bd8746c5752\", \"width\": 216, \"height\": 169}, {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=28f18ef2ebc9f593b6dff7e583b7ff1d0fdae743\", \"width\": 320, \"height\": 251}], \"variants\": {}, \"id\": \"0xh4SkoN-_7L19axx7iX9dkL1P45YCt3cq7ntix-vAA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsd8yc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kyrieru\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsd8yc/code_stuff/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsd8yc/code_stuff/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558677092.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"hula hula\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs5rrg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558661342.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs5rrg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs5rrg/hula_hula/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs5rrg/hula_hula/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558632542.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"my lil pony\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bs5jg4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Snail Mail: NPR Music Tiny Desk Concert\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"NPR Music\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/21ix1OwPoY8/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/nprmusic\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bs5jg4\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/NQre-JqAcR4bl9-yMXUx4RaT5Ub5-xLn2eE0he_B5rI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558660165.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?auto=webp\\u0026s=dd82178336835b0d9ade4b238edb5e9800334ae3\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=89e1bcb2c1784115389b14cc50ee747c908e766c\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=050bb5c4afcac9bd34deca76be313bc6b31e682e\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=44e665a96892d7afd4b824ebf0e674b6b9b81dc3\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"mhwh-bo9dmEuYO_PMyd1-wSh93Ge-4baH0jdQnIlCRU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs5jg4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs5jg4/my_lil_pony/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"http://www.youtube.com/watch?v=21ix1OwPoY8\", \"subreddit_subscribers\": 703, \"created_utc\": 1558631365.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Snail Mail: NPR Music Tiny Desk Concert\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"NPR Music\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/21ix1OwPoY8/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/nprmusic\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project **Chronicles of Osira**! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\n***\\n###Our Purpose \\u0026 Goals:\\n\\nOur vision is to be the most popular multiplayer survival RPG \\u0026 minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\n***\\n###Survival RPG World (Osira):\\n\\nIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\n***\\n###Main Features:\\n\\n######Terrain Regen Mod\\n\\nOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\n\\n######NPC Mod\\n\\nThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\n\\n######Kingdom System\\n\\nThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\n***\\n###Server Status: \\n\\n**Various Positions Open**! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\n***\\n###Social Media: \\n\\n* Twitter: [Twitter](https://twitter.com/OsiraChronicles)\\n* Discord: [Discord](https://discord.gg/rzfNq8p)\\n* SubReddit: Coming Soon\\n* Starter Website: Coming Soon (finishing up development)\\n* Youtube: Coming Soon\\n* Email: chroniclesofosira@gmail.com\", \"author_fullname\": \"t2_3tl8crp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs4e7x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558654467.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch4\\u003EHey everyone, we\\u2019re super excited today to publicly announce the development of our server project \\u003Cstrong\\u003EChronicles of Osira\\u003C/strong\\u003E! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\u003C/h4\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EOur Purpose \\u0026amp; Goals:\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EOur vision is to be the most popular multiplayer survival RPG \\u0026amp; minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003ESurvival RPG World (Osira):\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EMain Features:\\u003C/h3\\u003E\\n\\n\\u003Ch6\\u003ETerrain Regen Mod\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\u003C/p\\u003E\\n\\n\\u003Ch6\\u003ENPC Mod\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\u003C/p\\u003E\\n\\n\\u003Ch6\\u003EKingdom System\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EServer Status:\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EVarious Positions Open\\u003C/strong\\u003E! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003ESocial Media:\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ETwitter: \\u003Ca href=\\\"https://twitter.com/OsiraChronicles\\\"\\u003ETwitter\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDiscord: \\u003Ca href=\\\"https://discord.gg/rzfNq8p\\\"\\u003EDiscord\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESubReddit: Coming Soon\\u003C/li\\u003E\\n\\u003Cli\\u003EStarter Website: Coming Soon (finishing up development)\\u003C/li\\u003E\\n\\u003Cli\\u003EYoutube: Coming Soon\\u003C/li\\u003E\\n\\u003Cli\\u003EEmail: \\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?auto=webp\\u0026s=4175bc2acf207428f5a243476ba4485bd153bda3\", \"width\": 400, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8caf7c066e7a5bab8d9fe3a872adba0b01b74464\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f7a0a268911ad5c4f4709811f2f98acf4cab9411\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=72c8baed8a1f8b67b30b4cf626fa1514a1fb81f4\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"bTS-23LsPy3BUIV0fTZfuz80MZ1bVJqHdkOLkoUzRLY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs4e7x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OsiraDevTeam\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs4e7x/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs4e7x/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558625667.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project \\\\*\\\\*Chronicles of Osira\\\\*\\\\*! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Our Purpose \\u0026 Goals:\\n\\n\\u0026#x200B;\\n\\nOur vision is to be the most popular multiplayer survival RPG \\u0026 minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Survival RPG World (Osira):\\n\\n\\u0026#x200B;\\n\\nIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Main Features:\\n\\n\\u0026#x200B;\\n\\n\\\\######Terrain Regen Mod\\n\\n\\u0026#x200B;\\n\\nOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\n\\n\\u0026#x200B;\\n\\n\\\\######NPC Mod\\n\\n\\u0026#x200B;\\n\\nThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\n\\n\\u0026#x200B;\\n\\n\\\\######Kingdom System\\n\\n\\u0026#x200B;\\n\\nThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Server Status:\\n\\n\\u0026#x200B;\\n\\n**Various Positions Open**! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\n\\n\\\\*\\\\*\\\\*\\n\\n# ###Social Media:\\n\\nTwitter: \\\\[Twitter\\\\]([https://twitter.com/OsiraChronicles](https://twitter.com/OsiraChronicles))\\n\\nDiscord: \\\\[Discord\\\\]([https://discord.gg/rzfNq8p](https://discord.gg/rzfNq8p))\\n\\nSubReddit: Coming Soon\\n\\nStarter Website: Coming Soon (finishing up development)\\n\\nYoutube: Coming Soon\\n\\nEmail: [chroniclesofosira@gmail.com](mailto:chroniclesofosira@gmail.com)\", \"author_fullname\": \"t2_3tl8crp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"CoO\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs48eu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558625101.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558653631.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project **Chronicles of Osira**! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Our Purpose \\u0026amp; Goals:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur vision is to be the most popular multiplayer survival RPG \\u0026amp; minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Survival RPG World (Osira):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Main Features:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######Terrain Regen Mod\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######NPC Mod\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######Kingdom System\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Server Status:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EVarious Positions Open\\u003C/strong\\u003E! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E###Social Media:\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ETwitter: [Twitter](\\u003Ca href=\\\"https://twitter.com/OsiraChronicles\\\"\\u003Ehttps://twitter.com/OsiraChronicles\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDiscord: [Discord](\\u003Ca href=\\\"https://discord.gg/rzfNq8p\\\"\\u003Ehttps://discord.gg/rzfNq8p\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESubReddit: Coming Soon\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStarter Website: Coming Soon (finishing up development)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYoutube: Coming Soon\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmail: [\\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E](mailto:\\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?auto=webp\\u0026s=4175bc2acf207428f5a243476ba4485bd153bda3\", \"width\": 400, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8caf7c066e7a5bab8d9fe3a872adba0b01b74464\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f7a0a268911ad5c4f4709811f2f98acf4cab9411\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=72c8baed8a1f8b67b30b4cf626fa1514a1fb81f4\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"bTS-23LsPy3BUIV0fTZfuz80MZ1bVJqHdkOLkoUzRLY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs48eu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OsiraDevTeam\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs48eu/coo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs48eu/coo/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558624831.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"my testes\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testual\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs2x6p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558646741.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emy testes\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs2x6p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs2x6p/testual/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs2x6p/testual/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558617941.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Should I upgrade my subwoofer and if so, what subwoofers do you recommend? Also just got a new 77\\\" LG C8 OLED TV (pics.)\\n\\n[Layout \\u0026 Picture Album](https://imgur.com/a/GhlqXQo) \\n\\nI'm doing a complete home theater overhaul. I just upgraded to a LG C8 77\\\" OLED TV. Please excuse the mess - I have lots of boxes from new goodies for this. =D I'm upgrading to a Dolby Atmos 5.1.4 (5.2.4) surround sound system with ceiling mounted speakers. I just picked up a Denon AVR-X4400h. I'm planning on getting 4x [Boston Acoustics SoundWare](https://www.accessories4less.com/make-a-store/item/bossoundwareblka/boston-acoustics-soundware-4.5-speaker-atmos-dts-x-on-wall-speaker-black-each/1.html) ceiling mounted speakers. I still have acoustic room treatment to do and that's part of my whole budget too. I'm also considering upgrading my subwoofer. \\n\\nMy current 5.1 surround sound system (satellites temporarily removed for the TV install) is a [Jamo S 606 HCS 3 system.](https://www.jamo.com/products/s606hcs3) I also have one sealed [Jamo D 6 SUB.](https://www.jamo.com/products/d6sub)\\n\\nWould it be worthwhile to upgrade my subwoofer and get two subs? I notice a lot of bass loudness variability from each seating position due to standing waves in my current apartment and running two subwoofers will help mitigate it. Of course you need two matching subwoofers for this but my jamo is discontinued and can't find any more on eBay. \\n\\nThen my jamo really doesn't hit low enough frequencies these days for new movie content. Online the specs advertise down to 28 hz, but listening to test tones it seems like there is a lot of dropoff starting to occur at 35-40 hz. I'm really desiring a subwoofer that doesn't start to drop off until 20-16 hz. I definitely would like to feel the low bass more and feel infrasonic frequencies (say down to 10hz) in movies. Of course there may be realistic limits in an apartment as that may disrupt others vs say 35hz playback. \\n\\nI'm in an apartment. I generally listen at -10 db to -15 db below reference level and haven't gotten any complaints. The walls seem thick but I definitely don't want to go past reference level currently. I do plan on getting my own home in 5~ years so I do want to save some future capability to comfortably listen at reference level. I'm also really desiring quality bass delivery and not just high SPL.\\n\\n**Usage:** \\n80% Netflix streaming/bd movies/tv shows, 10% music, possibly 10% or more gaming when new consoles come out (I'm mostly a pc gamer). \\n\\n**Room Specs:** \\nSee above diagram. Inner wall dimensions are 18'x14' for the living room, 10.5' x 10.0' for my dining room, and 5.5' x 8.5' for the kitchen area. So total room size is roughly 3,600 ft ^ 3 counting dining area/kitchen. Distance to main listening position is roughly 9' to my ears (8' 6\\\" to tv). \\n\\n**Budget:** \\nI'm pretty flexible as I want the best experience. I don't mind spending a bit for future headroom for when I don't have shared walls, but I don't want to drastically overspend. My hard limit is $2.5k/subwoofer (so $5k for dual subs.) I'm really leaning more towards the $1k sub price point. \\n\\n**Requirements:** \\n \\n* Dual subwoofer setup. \\n* Needs to hit max loudness THX reference SPL level playback at a 9' main listening position for all frequencies above 20hz, allowing for room gain to contribute to it (and ideally down to 16 hz). (So hitting 115dB peaks.) This is for two subwoofers in use. That will be enough future proofing for my situation.\\n* No more than $4k - $5k total for two subs. \\n* Ideally less than $2k ($1k per sub) for the subs if possible. \\n* Very flat frequency response.\\n* A great listening experience. \\n* Accurate and precise bass - not boomy.\\n* I care greatly about quality over raw loudness - as long as it can hit reference levels. \\n* No homebuilt. I don't have the time, skills, room, or equipment to build my own sub. \\n\\n**Bonuses:**\\n\\n* Great infrasonic experience.\\n* Able to be picked up by one person (under 100 lbs.)\\n* Calibration options that my receiver may not be able to support.\\n\\n**Subs I've looked at:** \\nSVS SB-2000 / PB-2000 \\nSVS SB-3000 / PB-3000 \\nSVS SB-4000 / PB-4000 \\nSVS SB16-Ultra / PB16-Ultra \\nHSU VTF-15H MK2 \\n\\n**Things I'm still trying to decide:** \\nSealed vs ported subs. It's really hard for me to decide this. I know SVS's tune frequencies are very low. I like that SVS's response curve seems to be much flatter for their ported subs above the tune frequency and also seems to have more power than the sealed subwoofers. But then below the tune frequency I think I really like the roll-off graph of their sealed subwoofers more when say hitting 10hz, as it appears pretty flat when you account for room gain. Then since I'm running two subwoofers that will add some gain.\\n\\n**Things I've ruled out:** \\nThe SVS SB-1000/PB-1000 - I don't think it will be able to hit reference level movie bass at a 9' listening position. I'm sure it's a great sub but it seems a bit under-powered to what I have according to CEA 2010 test results. \\n\\nI'm leaning towards at least the SB-3000 (or ported version) as it seems to have newer drivers/tech than the SB-2000. It also doesn't seem ungodly heavy unlike the higher end subwoofers. I'm also likewise leaning towards the sealed sub for greater infrasonic extension but that's not firm at all. I'm concerned that the sealed SVS SB-4000 doesn't hit near 115 db in CEA 2010 testing until 40hz, while the ported version gets near there at 20hz. Running with one port open (extended mode) seems to be the best of both worlds - lower sealed like extension and flatter ported like curve. Is that truly the case?\\n\\n**Questions:** \\n \\n* If I get a SVS ported sub and plug up all three ports is it very close to the sealed version? Or is there a huge difference between the dedicated sealed version? \\n* Ported or sealed subwoofer?\\n* If ported, how many ports open?\\n* What is the cheapest subwoofer that meets my SPL requirements and is at least equal to quality as the SVS subs? \\n* Is the DSP calibration tools SVS provides just a marketing gimick? Can my Denon AVR-X4400H EQ the subs just fine? Or is that sort of feature worthwhile? \\n* What crossover should I set with two of these subwoofers? Go past 80hz and into 100-200 hz? \\n* What other subwoofers should I seriously consider?\\n* Should I consider revisiting my towers/surrounds or are they still really good? They sound great to me and I have no complaints, but then I don't know if I'm missing out on improvements here. \\n\\nThanks!\", \"author_fullname\": \"t2_kz0h4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs053g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558657807.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558626664.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShould I upgrade my subwoofer and if so, what subwoofers do you recommend? Also just got a new 77\\u0026quot; LG C8 OLED TV (pics.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/GhlqXQo\\\"\\u003ELayout \\u0026amp; Picture Album\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m doing a complete home theater overhaul. I just upgraded to a LG C8 77\\u0026quot; OLED TV. Please excuse the mess - I have lots of boxes from new goodies for this. =D I\\u0026#39;m upgrading to a Dolby Atmos 5.1.4 (5.2.4) surround sound system with ceiling mounted speakers. I just picked up a Denon AVR-X4400h. I\\u0026#39;m planning on getting 4x \\u003Ca href=\\\"https://www.accessories4less.com/make-a-store/item/bossoundwareblka/boston-acoustics-soundware-4.5-speaker-atmos-dts-x-on-wall-speaker-black-each/1.html\\\"\\u003EBoston Acoustics SoundWare\\u003C/a\\u003E ceiling mounted speakers. I still have acoustic room treatment to do and that\\u0026#39;s part of my whole budget too. I\\u0026#39;m also considering upgrading my subwoofer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current 5.1 surround sound system (satellites temporarily removed for the TV install) is a \\u003Ca href=\\\"https://www.jamo.com/products/s606hcs3\\\"\\u003EJamo S 606 HCS 3 system.\\u003C/a\\u003E I also have one sealed \\u003Ca href=\\\"https://www.jamo.com/products/d6sub\\\"\\u003EJamo D 6 SUB.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWould it be worthwhile to upgrade my subwoofer and get two subs? I notice a lot of bass loudness variability from each seating position due to standing waves in my current apartment and running two subwoofers will help mitigate it. Of course you need two matching subwoofers for this but my jamo is discontinued and can\\u0026#39;t find any more on eBay. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen my jamo really doesn\\u0026#39;t hit low enough frequencies these days for new movie content. Online the specs advertise down to 28 hz, but listening to test tones it seems like there is a lot of dropoff starting to occur at 35-40 hz. I\\u0026#39;m really desiring a subwoofer that doesn\\u0026#39;t start to drop off until 20-16 hz. I definitely would like to feel the low bass more and feel infrasonic frequencies (say down to 10hz) in movies. Of course there may be realistic limits in an apartment as that may disrupt others vs say 35hz playback. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m in an apartment. I generally listen at -10 db to -15 db below reference level and haven\\u0026#39;t gotten any complaints. The walls seem thick but I definitely don\\u0026#39;t want to go past reference level currently. I do plan on getting my own home in 5~ years so I do want to save some future capability to comfortably listen at reference level. I\\u0026#39;m also really desiring quality bass delivery and not just high SPL.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUsage:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\n80% Netflix streaming/bd movies/tv shows, 10% music, possibly 10% or more gaming when new consoles come out (I\\u0026#39;m mostly a pc gamer). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERoom Specs:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSee above diagram. Inner wall dimensions are 18\\u0026#39;x14\\u0026#39; for the living room, 10.5\\u0026#39; x 10.0\\u0026#39; for my dining room, and 5.5\\u0026#39; x 8.5\\u0026#39; for the kitchen area. So total room size is roughly 3,600 ft ^ 3 counting dining area/kitchen. Distance to main listening position is roughly 9\\u0026#39; to my ears (8\\u0026#39; 6\\u0026quot; to tv). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBudget:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nI\\u0026#39;m pretty flexible as I want the best experience. I don\\u0026#39;t mind spending a bit for future headroom for when I don\\u0026#39;t have shared walls, but I don\\u0026#39;t want to drastically overspend. My hard limit is $2.5k/subwoofer (so $5k for dual subs.) I\\u0026#39;m really leaning more towards the $1k sub price point. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERequirements:\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDual subwoofer setup.\\u003Cbr/\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENeeds to hit max loudness THX reference SPL level playback at a 9\\u0026#39; main listening position for all frequencies above 20hz, allowing for room gain to contribute to it (and ideally down to 16 hz). (So hitting 115dB peaks.) This is for two subwoofers in use. That will be enough future proofing for my situation.\\u003C/li\\u003E\\n\\u003Cli\\u003ENo more than $4k - $5k total for two subs. \\u003C/li\\u003E\\n\\u003Cli\\u003EIdeally less than $2k ($1k per sub) for the subs if possible. \\u003C/li\\u003E\\n\\u003Cli\\u003EVery flat frequency response.\\u003C/li\\u003E\\n\\u003Cli\\u003EA great listening experience. \\u003C/li\\u003E\\n\\u003Cli\\u003EAccurate and precise bass - not boomy.\\u003C/li\\u003E\\n\\u003Cli\\u003EI care greatly about quality over raw loudness - as long as it can hit reference levels. \\u003C/li\\u003E\\n\\u003Cli\\u003ENo homebuilt. I don\\u0026#39;t have the time, skills, room, or equipment to build my own sub. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBonuses:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EGreat infrasonic experience.\\u003C/li\\u003E\\n\\u003Cli\\u003EAble to be picked up by one person (under 100 lbs.)\\u003C/li\\u003E\\n\\u003Cli\\u003ECalibration options that my receiver may not be able to support.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESubs I\\u0026#39;ve looked at:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSVS SB-2000 / PB-2000\\u003Cbr/\\u003E\\nSVS SB-3000 / PB-3000\\u003Cbr/\\u003E\\nSVS SB-4000 / PB-4000\\u003Cbr/\\u003E\\nSVS SB16-Ultra / PB16-Ultra\\u003Cbr/\\u003E\\nHSU VTF-15H MK2 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThings I\\u0026#39;m still trying to decide:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSealed vs ported subs. It\\u0026#39;s really hard for me to decide this. I know SVS\\u0026#39;s tune frequencies are very low. I like that SVS\\u0026#39;s response curve seems to be much flatter for their ported subs above the tune frequency and also seems to have more power than the sealed subwoofers. But then below the tune frequency I think I really like the roll-off graph of their sealed subwoofers more when say hitting 10hz, as it appears pretty flat when you account for room gain. Then since I\\u0026#39;m running two subwoofers that will add some gain.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThings I\\u0026#39;ve ruled out:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nThe SVS SB-1000/PB-1000 - I don\\u0026#39;t think it will be able to hit reference level movie bass at a 9\\u0026#39; listening position. I\\u0026#39;m sure it\\u0026#39;s a great sub but it seems a bit under-powered to what I have according to CEA 2010 test results. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m leaning towards at least the SB-3000 (or ported version) as it seems to have newer drivers/tech than the SB-2000. It also doesn\\u0026#39;t seem ungodly heavy unlike the higher end subwoofers. I\\u0026#39;m also likewise leaning towards the sealed sub for greater infrasonic extension but that\\u0026#39;s not firm at all. I\\u0026#39;m concerned that the sealed SVS SB-4000 doesn\\u0026#39;t hit near 115 db in CEA 2010 testing until 40hz, while the ported version gets near there at 20hz. Running with one port open (extended mode) seems to be the best of both worlds - lower sealed like extension and flatter ported like curve. Is that truly the case?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuestions:\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf I get a SVS ported sub and plug up all three ports is it very close to the sealed version? Or is there a huge difference between the dedicated sealed version? \\u003C/li\\u003E\\n\\u003Cli\\u003EPorted or sealed subwoofer?\\u003C/li\\u003E\\n\\u003Cli\\u003EIf ported, how many ports open?\\u003C/li\\u003E\\n\\u003Cli\\u003EWhat is the cheapest subwoofer that meets my SPL requirements and is at least equal to quality as the SVS subs? \\u003C/li\\u003E\\n\\u003Cli\\u003EIs the DSP calibration tools SVS provides just a marketing gimick? Can my Denon AVR-X4400H EQ the subs just fine? Or is that sort of feature worthwhile? \\u003C/li\\u003E\\n\\u003Cli\\u003EWhat crossover should I set with two of these subwoofers? Go past 80hz and into 100-200 hz? \\u003C/li\\u003E\\n\\u003Cli\\u003EWhat other subwoofers should I seriously consider?\\u003C/li\\u003E\\n\\u003Cli\\u003EShould I consider revisiting my towers/surrounds or are they still really good? They sound great to me and I have no complaints, but then I don\\u0026#39;t know if I\\u0026#39;m missing out on improvements here. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?auto=webp\\u0026s=59339d4b2ebfbe18b61c9a86e365f8321531d124\", \"width\": 657, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c18fe46880e5ca72d70aecab4f79a4f265755b32\", \"width\": 108, \"height\": 197}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=eb476b372546cf2d51c8d9f6f6b3181ea39b4c69\", \"width\": 216, \"height\": 394}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=628e28ecbb59a23550dade2a9b91fed61c296c81\", \"width\": 320, \"height\": 584}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d2a0c12ad208ef2add9bca3b8ec39909bf6404e5\", \"width\": 640, \"height\": 1168}], \"variants\": {}, \"id\": \"g_mPvQ05DaozAfugMZjnsIvHh9OD3XMO1-AgGxxaLwQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs053g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"IncendiaryGames\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs053g/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558597864.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Ru Paul's Drag Race Episode ???\\n\\n(Queens entering the Werkroom holding hands and laughing together)\\n\\n\\\"Yeah I hate all these bitches and I'm here to win!\\\"\\n\\n\\u003EEditors use a shot of said queen hugging everyone. Everyone gathers around the table\\n\\n\\\"So who you think the challenge is going to be?\\n\\n\\u003ENeedless drama happens. Everyone bickers. \\n\\u003ERu enters\\n\\n\\\"AAHHHHHH!\\\"\\n\\nRu: \\\"Your next challenge is gonna be (insert Ru's favorite activity) which is a tribute of (Whatever Ru is really interested in) All set to (Whatever new track Ru is selling on I-Tunes)\\n\\n\\u003EQueens show polite interest\\n\\nRu:\\\"Tonight's runway is judged by (insert name of celebrity/media person that you kinda like but don't super love)\\n\\nQueens: \\\"AHHHHHH!\\\"\\n\\n\\u003EInterview Segment\\n\\n\\\"OMG I am the biggest fan of (insert name of celebrity/media person that you kinda like but don't super love)! They are my idol! I can't fuck this up.\\n\\n\\u003ERu walks the Werkroom and gives Boomer tier advice like \\\"Be yourself\\\", \\\"Make it funny\\\" and something about your inner sabatoor.\\n\\n\\u003ERehearsal segment that plays similar to everyone. Be mindful of the Queen that looks really bad as they usually will win or do better than the edit makes them appear to be. \\n\\u003EChallenge starts\\n\\n\\u003EQueen says joke that you are unsure if it is good or bad until you see the camera pan, in silence, the sound of a woodblock being struck and another queen going \\\"Say what?!\\\"\\n\\n\\u003ERu walks out wearing one of her five prepackaged looks.\\n\\u003ERunway segment\\n\\u003EUnsure of what the judges think as everyone is making dad jokes \\n\\u003ERu picks the bottom two queens\\n\\nQueen A: \\\"I can't go home now, Queen B is fierce but I have so much to show. I gotta turn it out!\\\"\\n\\nQueen B: I have so much to show, I can't go home now. Queen A is fierce and I gotta turn it out!\\\"\\n\\n\\u003EQuestionable lipsynch that reddit will debate who won endlessly\\n\\u003EWinner is chosen\\n\\u003EOther queen goes home, its sad. They later write a message on the mirror where they pour their heart out only for it to be read once and instantly wiped away.\\n\\nTO TO TO DA MOON!\", \"author_fullname\": \"t2_mic9d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brvh14\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558594377.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERu Paul\\u0026#39;s Drag Race Episode ???\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Queens entering the Werkroom holding hands and laughing together)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;Yeah I hate all these bitches and I\\u0026#39;m here to win!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EEditors use a shot of said queen hugging everyone. Everyone gathers around the table\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;So who you think the challenge is going to be?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENeedless drama happens. Everyone bickers. \\nRu enters\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;AAHHHHHH!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERu: \\u0026quot;Your next challenge is gonna be (insert Ru\\u0026#39;s favorite activity) which is a tribute of (Whatever Ru is really interested in) All set to (Whatever new track Ru is selling on I-Tunes)\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EQueens show polite interest\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ERu:\\u0026quot;Tonight\\u0026#39;s runway is judged by (insert name of celebrity/media person that you kinda like but don\\u0026#39;t super love)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQueens: \\u0026quot;AHHHHHH!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EInterview Segment\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;OMG I am the biggest fan of (insert name of celebrity/media person that you kinda like but don\\u0026#39;t super love)! They are my idol! I can\\u0026#39;t fuck this up.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERu walks the Werkroom and gives Boomer tier advice like \\u0026quot;Be yourself\\u0026quot;, \\u0026quot;Make it funny\\u0026quot; and something about your inner sabatoor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERehearsal segment that plays similar to everyone. Be mindful of the Queen that looks really bad as they usually will win or do better than the edit makes them appear to be. \\nChallenge starts\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQueen says joke that you are unsure if it is good or bad until you see the camera pan, in silence, the sound of a woodblock being struck and another queen going \\u0026quot;Say what?!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERu walks out wearing one of her five prepackaged looks.\\nRunway segment\\nUnsure of what the judges think as everyone is making dad jokes \\nRu picks the bottom two queens\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EQueen A: \\u0026quot;I can\\u0026#39;t go home now, Queen B is fierce but I have so much to show. I gotta turn it out!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQueen B: I have so much to show, I can\\u0026#39;t go home now. Queen A is fierce and I gotta turn it out!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EQuestionable lipsynch that reddit will debate who won endlessly\\nWinner is chosen\\nOther queen goes home, its sad. They later write a message on the mirror where they pour their heart out only for it to be read once and instantly wiped away.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETO TO TO DA MOON!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brvh14\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bearality\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brvh14/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brvh14/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558565577.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"***War of the Monsters*** *(2028)*\\n\\n*Setting: Various places, 1963*\\n\\nIn our final story, we rejoin **Eve**, **Lester Talbot**, and **Jacob Van Helsing** twenty-five years after we first met them.\\n\\nThe year is 1963. At home, America is still reeling from the horror of **President John F. Kennedy**'s assassination, which has provoked a fresh wave of social unrest as rumors spread of international conspiracies. Abroad, the Cold War with the Soviet Union rages on as American soldiers in South Vietnam brace for a looming skirmish with Communist forces. After more than two decades of adventure, Eve\\u2014who doesn't age\\u2014is still just as youthful as she was in 1938, but Lester and Jacob are both showing their age, and both men are contemplating retirement. As the 20th century rolls forward, monsters are becoming progressively rare, to the point that Eve and Lester wonder if they're the last of a dying breed. And while an aging Jacob still feels an obligation to uphold the legacy of his grandfather **Abraham Van Helsing**, he knows that there is no need for monster hunters in a world without monsters.\\n\\nBut after twenty-five years of searching, the trio *still* haven't been able to find **Dr. Hans Niemann**. And although the years have been hard on Jacob and Lester, they know that they won't be able to rest until they finally bring the sinister ex-Nazi to justice.\\n\\nBut all of that changes when they stumble upon a stolen KGB dossier.\\n\\nWhile trying to bust a voodoo cult in New Orleans, Eve accidentally comes into possession of a dossier that one of their members stole from a KGB spy hiding out in America. The file contains detailed information about the activities of **Directorate M**, a secret KGB task force that was assembled in the 1940s to research and weaponize vampire DNA. As she learns, the leader of the group was determined to track down a certain vampire living in a remote village in Romania, believing that his bloodline held special powers. But when Jacob and Lester read over the dossier with her, they soon learn that the Romanian vampire (a man called \\\"**Vladislav**\\\", or just \\\"**Vlad**\\\") was believed to be the biological son of **Dracula** himself! Not only that, Vladislav has been missing since 1948, when he escaped from Directorate M's headquarters in Moscow and fled Russia. And while the KGB never found him, they believe that he fled across the Atlantic sometime in the 1950s.\\n\\nThe son of Dracula is still alive, and he may be hiding in America! As soon as Jacob realizes this, he knows that he has to find Vlad and kill him, since it's the only way to finish what his grandfather started. Armed with a grainy photo of Vlad contained in the dossier, Jacob begins pressing his contacts in the underworld for information about the fugitive vampire. But unbeknownst to him, he and Vlad have a common enemy: Hans Niemann.\\n\\nFifteen years ago, Niemann murdered Vlad's mother **Marieta** after ordering the Red Army to raze his village tp the ground. On that horrible day, the doctor narrowly slipped through Vlad's fingers when he tried to take his revenge, and defected to the United States shortly thereafter. Ever since, Vlad has been determined to track him down and hold him accountable for his crimes\\u2014but Niemann is still elusive as ever. So for fifteen long years, Vlad has lived underground in America, making odd money as a freelance spy and mercenary as he searches for clues on the Niemann's whereabouts.\\n\\nWhen our story begins, Vlad is living a quiet life in Miami under a long succession of aliases, like \\\"**Victor Whitby**\\\", \\\"**Michael Alucard**\\\", and \\\"**Vladislav Sear\\u0103**\\\". There, as he walks into a seaside bar for a clandestine meeting with the Jamaican-born sailor **Oliver \\\"Twisty\\\" O'Rear**, he finally stumbles upon a clue that might lead him to Niemann. It seems that Twisty is the sole survivor of a submarine voyage to the deep Pacific ocean, where Niemann captained his vessel. While he hasn't seen Niemann since that fateful voyage, he has long suspected that the doctor's mind was affected by an encounter with a **psychic alien being** near the Marianas Trench. Since that day, he has heard rumors that the doctor has gone rogue and fled to the Caribbean, and he believes that he may be planning a new experiment.\\n\\nThough nobody knows *exactly* where Niemann has fled, Twisty tells Vlad that one of his recent voyages in the Caribbean took him near an infamous island known as \\\"**Isla de los Perdidos**\\\", or \\\"**The Isle of the Lost**\\\". While passing by Isla de los Perdidos, the entire crew suffered from a series of strange visions and bizarre nightmares, which left them so shaken that they vowed never to return to the island again. But while the rest of the crew dismissed the experience as merely the result of \\\"bad vibes\\\", Twisty recognized it for what it truly was. He experienced similar nightmares and visions during his ill-fated voyage with the crew of the *Ammonite*, where he and Niemann had their minds psychically invaded by **the Creature**. Further, he remembers that Niemann managed to force his way into the Creature's downed spacecraft\\u2014which was packed with alien embryos. Though it's only a hunch, he believes that Niemann might be hiding on Isla de los Perdidos, and he may have found some way to harness the Creature's psychic abilities.\\n\\nBut as Vlad tries to leave the bar, he's ambushed by a small gang of armed men dressed in civilian clothes, who pull him into an unmarked van and drive him away. Unbeknownst to the armed men, Jacob is watching them from a nearby street corner, with Eve and Lester by his side. Furious at seeing their target captured by someone else, they resolve to track down the van.\\n\\nInside the unmarked van, Vlad learns that his assailants are undercover CIA operatives. It seems that the CIA has *also* learned about the mysterious Directorate M, and they recognize Vlad as a high-priority KGB target who escaped from Moscow Centre fifteen years previously. Suspecting him of being a Soviet agent, they plan to take him back to their nearest base to interrogate him. Vlad futilely protests that it's all a misunderstanding, and the KGB are his enemies\\u2014but the agents refuse to listen.\\n\\nSuddenly, the van is driven off the road as Lester\\u2014assuming his lupine form\\u2014charges the vehicle from the side and manages to flip it over. As Vlad struggles with the agents in the back seat, Eve takes aim with a crossbow and dispatches the agent in the driver's seat, but she loses track of Vlad as he leaps from the van and runs into the distance. But as Vlad attempts to flee the scene, he runs right into Jacob.\\n\\nA tense standoff ensues as Vlad and Jacob\\u2014the son of Dracula and the grandson of Abraham Van Helsing\\u2014stare each other down, and Jacob draws his gun. Despite Jacob's advancing age, Vlad recognizes him as a professional monster hunter, and he knows that he's been trained to kill vampires. \\n\\n\\\"*Shoot me if you can, old man,\\\"* Vlad snarls. *\\\"But I promise you, I've only got a quarrel with one mortal man:* ***Hans Niemann****.\\\"*\\n\\nAs \\n______________\\n\\n***The Case:*** In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\\"The Gemini Killer\\\" to justice. In a twist, it's revealed that Hank's full name is \\\"Henry Jekyll\\\", and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium's secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\n\\n***The Creature:*** Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they're aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they're slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures' drowned spaceship to kill the monster, and manages to steal one of the monster's embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\\n\\n***War of the Monsters:*** In 1963, Vlad's search for ex-Nazi scientist Dr. Hans Niemann leads him to cross paths with Eve, who is still traveling the world with an aging Jacob Van Helsing and Lester Talbot. As Vlad, Eve, Jacob and Lester unite to finally bring Niemann to justice, they discover Niemann's plot to use a psychic alien's brain to unleash nuclear armageddon with the help of an army of vampires, werewolves and ichthyoids. As they journey to the Caribbean for a final showdown with Niemann on his island base, Jacob and Lester ultimately sacrifice their lives to stop the doctor's plot, but Eve and Vlad defeat him together. In the end, Eve and Vlad become lovers, and they settle down together in a remote Caribbean island to enjoy a peaceful retirement.\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brusoo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558590802.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EWar of the Monsters\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003E(2028)\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESetting: Various places, 1963\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our final story, we rejoin \\u003Cstrong\\u003EEve\\u003C/strong\\u003E, \\u003Cstrong\\u003ELester Talbot\\u003C/strong\\u003E, and \\u003Cstrong\\u003EJacob Van Helsing\\u003C/strong\\u003E twenty-five years after we first met them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe year is 1963. At home, America is still reeling from the horror of \\u003Cstrong\\u003EPresident John F. Kennedy\\u003C/strong\\u003E\\u0026#39;s assassination, which has provoked a fresh wave of social unrest as rumors spread of international conspiracies. Abroad, the Cold War with the Soviet Union rages on as American soldiers in South Vietnam brace for a looming skirmish with Communist forces. After more than two decades of adventure, Eve\\u2014who doesn\\u0026#39;t age\\u2014is still just as youthful as she was in 1938, but Lester and Jacob are both showing their age, and both men are contemplating retirement. As the 20th century rolls forward, monsters are becoming progressively rare, to the point that Eve and Lester wonder if they\\u0026#39;re the last of a dying breed. And while an aging Jacob still feels an obligation to uphold the legacy of his grandfather \\u003Cstrong\\u003EAbraham Van Helsing\\u003C/strong\\u003E, he knows that there is no need for monster hunters in a world without monsters.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut after twenty-five years of searching, the trio \\u003Cem\\u003Estill\\u003C/em\\u003E haven\\u0026#39;t been able to find \\u003Cstrong\\u003EDr. Hans Niemann\\u003C/strong\\u003E. And although the years have been hard on Jacob and Lester, they know that they won\\u0026#39;t be able to rest until they finally bring the sinister ex-Nazi to justice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut all of that changes when they stumble upon a stolen KGB dossier.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile trying to bust a voodoo cult in New Orleans, Eve accidentally comes into possession of a dossier that one of their members stole from a KGB spy hiding out in America. The file contains detailed information about the activities of \\u003Cstrong\\u003EDirectorate M\\u003C/strong\\u003E, a secret KGB task force that was assembled in the 1940s to research and weaponize vampire DNA. As she learns, the leader of the group was determined to track down a certain vampire living in a remote village in Romania, believing that his bloodline held special powers. But when Jacob and Lester read over the dossier with her, they soon learn that the Romanian vampire (a man called \\u0026quot;\\u003Cstrong\\u003EVladislav\\u003C/strong\\u003E\\u0026quot;, or just \\u0026quot;\\u003Cstrong\\u003EVlad\\u003C/strong\\u003E\\u0026quot;) was believed to be the biological son of \\u003Cstrong\\u003EDracula\\u003C/strong\\u003E himself! Not only that, Vladislav has been missing since 1948, when he escaped from Directorate M\\u0026#39;s headquarters in Moscow and fled Russia. And while the KGB never found him, they believe that he fled across the Atlantic sometime in the 1950s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe son of Dracula is still alive, and he may be hiding in America! As soon as Jacob realizes this, he knows that he has to find Vlad and kill him, since it\\u0026#39;s the only way to finish what his grandfather started. Armed with a grainy photo of Vlad contained in the dossier, Jacob begins pressing his contacts in the underworld for information about the fugitive vampire. But unbeknownst to him, he and Vlad have a common enemy: Hans Niemann.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFifteen years ago, Niemann murdered Vlad\\u0026#39;s mother \\u003Cstrong\\u003EMarieta\\u003C/strong\\u003E after ordering the Red Army to raze his village tp the ground. On that horrible day, the doctor narrowly slipped through Vlad\\u0026#39;s fingers when he tried to take his revenge, and defected to the United States shortly thereafter. Ever since, Vlad has been determined to track him down and hold him accountable for his crimes\\u2014but Niemann is still elusive as ever. So for fifteen long years, Vlad has lived underground in America, making odd money as a freelance spy and mercenary as he searches for clues on the Niemann\\u0026#39;s whereabouts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen our story begins, Vlad is living a quiet life in Miami under a long succession of aliases, like \\u0026quot;\\u003Cstrong\\u003EVictor Whitby\\u003C/strong\\u003E\\u0026quot;, \\u0026quot;\\u003Cstrong\\u003EMichael Alucard\\u003C/strong\\u003E\\u0026quot;, and \\u0026quot;\\u003Cstrong\\u003EVladislav Sear\\u0103\\u003C/strong\\u003E\\u0026quot;. There, as he walks into a seaside bar for a clandestine meeting with the Jamaican-born sailor \\u003Cstrong\\u003EOliver \\u0026quot;Twisty\\u0026quot; O\\u0026#39;Rear\\u003C/strong\\u003E, he finally stumbles upon a clue that might lead him to Niemann. It seems that Twisty is the sole survivor of a submarine voyage to the deep Pacific ocean, where Niemann captained his vessel. While he hasn\\u0026#39;t seen Niemann since that fateful voyage, he has long suspected that the doctor\\u0026#39;s mind was affected by an encounter with a \\u003Cstrong\\u003Epsychic alien being\\u003C/strong\\u003E near the Marianas Trench. Since that day, he has heard rumors that the doctor has gone rogue and fled to the Caribbean, and he believes that he may be planning a new experiment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThough nobody knows \\u003Cem\\u003Eexactly\\u003C/em\\u003E where Niemann has fled, Twisty tells Vlad that one of his recent voyages in the Caribbean took him near an infamous island known as \\u0026quot;\\u003Cstrong\\u003EIsla de los Perdidos\\u003C/strong\\u003E\\u0026quot;, or \\u0026quot;\\u003Cstrong\\u003EThe Isle of the Lost\\u003C/strong\\u003E\\u0026quot;. While passing by Isla de los Perdidos, the entire crew suffered from a series of strange visions and bizarre nightmares, which left them so shaken that they vowed never to return to the island again. But while the rest of the crew dismissed the experience as merely the result of \\u0026quot;bad vibes\\u0026quot;, Twisty recognized it for what it truly was. He experienced similar nightmares and visions during his ill-fated voyage with the crew of the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E, where he and Niemann had their minds psychically invaded by \\u003Cstrong\\u003Ethe Creature\\u003C/strong\\u003E. Further, he remembers that Niemann managed to force his way into the Creature\\u0026#39;s downed spacecraft\\u2014which was packed with alien embryos. Though it\\u0026#39;s only a hunch, he believes that Niemann might be hiding on Isla de los Perdidos, and he may have found some way to harness the Creature\\u0026#39;s psychic abilities.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut as Vlad tries to leave the bar, he\\u0026#39;s ambushed by a small gang of armed men dressed in civilian clothes, who pull him into an unmarked van and drive him away. Unbeknownst to the armed men, Jacob is watching them from a nearby street corner, with Eve and Lester by his side. Furious at seeing their target captured by someone else, they resolve to track down the van.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInside the unmarked van, Vlad learns that his assailants are undercover CIA operatives. It seems that the CIA has \\u003Cem\\u003Ealso\\u003C/em\\u003E learned about the mysterious Directorate M, and they recognize Vlad as a high-priority KGB target who escaped from Moscow Centre fifteen years previously. Suspecting him of being a Soviet agent, they plan to take him back to their nearest base to interrogate him. Vlad futilely protests that it\\u0026#39;s all a misunderstanding, and the KGB are his enemies\\u2014but the agents refuse to listen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESuddenly, the van is driven off the road as Lester\\u2014assuming his lupine form\\u2014charges the vehicle from the side and manages to flip it over. As Vlad struggles with the agents in the back seat, Eve takes aim with a crossbow and dispatches the agent in the driver\\u0026#39;s seat, but she loses track of Vlad as he leaps from the van and runs into the distance. But as Vlad attempts to flee the scene, he runs right into Jacob.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA tense standoff ensues as Vlad and Jacob\\u2014the son of Dracula and the grandson of Abraham Van Helsing\\u2014stare each other down, and Jacob draws his gun. Despite Jacob\\u0026#39;s advancing age, Vlad recognizes him as a professional monster hunter, and he knows that he\\u0026#39;s been trained to kill vampires. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Cem\\u003EShoot me if you can, old man,\\u0026quot;\\u003C/em\\u003E Vlad snarls. \\u003Cem\\u003E\\u0026quot;But I promise you, I\\u0026#39;ve only got a quarrel with one mortal man:\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EHans Niemann\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs \\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Case:\\u003C/em\\u003E\\u003C/strong\\u003E In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\u0026quot;The Gemini Killer\\u0026quot; to justice. In a twist, it\\u0026#39;s revealed that Hank\\u0026#39;s full name is \\u0026quot;Henry Jekyll\\u0026quot;, and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium\\u0026#39;s secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Creature:\\u003C/em\\u003E\\u003C/strong\\u003E Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they\\u0026#39;re aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they\\u0026#39;re slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures\\u0026#39; drowned spaceship to kill the monster, and manages to steal one of the monster\\u0026#39;s embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EWar of the Monsters:\\u003C/em\\u003E\\u003C/strong\\u003E In 1963, Vlad\\u0026#39;s search for ex-Nazi scientist Dr. Hans Niemann leads him to cross paths with Eve, who is still traveling the world with an aging Jacob Van Helsing and Lester Talbot. As Vlad, Eve, Jacob and Lester unite to finally bring Niemann to justice, they discover Niemann\\u0026#39;s plot to use a psychic alien\\u0026#39;s brain to unleash nuclear armageddon with the help of an army of vampires, werewolves and ichthyoids. As they journey to the Caribbean for a final showdown with Niemann on his island base, Jacob and Lester ultimately sacrifice their lives to stop the doctor\\u0026#39;s plot, but Eve and Vlad defeat him together. In the end, Eve and Vlad become lovers, and they settle down together in a remote Caribbean island to enjoy a peaceful retirement.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brusoo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brusoo/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brusoo/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558562002.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Re: test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brqdyy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558568873.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brqdyy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brqdyy/re_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brqdyy/re_test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558540073.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1fshia0q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HGCE Freedom Gundam Album\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_brgcyy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/vW0UdiH9e624y4qys50Me5h6qGoo_e8CES7MGnJZPxo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558503867.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?auto=webp\\u0026s=b28b0884c28818078b55da9d1ef4ba90c026b0a7\", \"width\": 4608, \"height\": 3456}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3ee43ed883b609843a35a6ce3b8fa00b9a232224\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4be0a0f262272a1c71cfcc67a81e124447a0be1e\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=dfcf219052c23b175b96366209cd00bbfb5111a4\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=66a6cc36d3f09d8915d6217e11670e6a6c4e4399\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2c618a1384bb98f133c9da345381c1d60d4b924c\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8e6a4ecccf64e0032d26ca44cba778d7d2e8c5e5\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"l8RMDATpIekeXve7O9NIY9G1sZuopNbytbJIHSfuRYs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brgcyy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NeonRunner\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/EKjeyR4\", \"subreddit_subscribers\": 703, \"created_utc\": 1558475067.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\n\\nNEW EPSIODE IS LIVE!\\nEP#: Title\\n\\nOur weekly show w/ United analysis\\n\\n:dart:#USOC2019 v @PhxRisingFC Recap\\n:mount_fuji: #KoTM v @SwitchbacksFC Recap\\n:microphone: Post-Match with Coach Lesesne\\n:ox: Match Preview v Austin Bold FC\\n\\nWe Are Seek \\u0026 Strike Podcast Subscription Links\\n\\n[Spotify](https://open.spotify.com/show/6XkXWcO6bz5apNm3ZinE8C?si=tq3LBfKMQgKsn7GI5evPIA)\\n\\n[Apple Podcasts](https://itunes.apple.com/us/podcast/we-are-seek-strike-podcast/id1463144252?mt=2)\\n\\nSubscribe and review on iTunes and Spotify!\", \"author_fullname\": \"t2_th7e2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brel0b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558495011.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENEW EPSIODE IS LIVE!\\nEP#: Title\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur weekly show w/ United analysis\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:dart:#USOC2019 v @PhxRisingFC Recap\\n:mount_fuji: #KoTM v @SwitchbacksFC Recap\\n:microphone: Post-Match with Coach Lesesne\\n:ox: Match Preview v Austin Bold FC\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe Are Seek \\u0026amp; Strike Podcast Subscription Links\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://open.spotify.com/show/6XkXWcO6bz5apNm3ZinE8C?si=tq3LBfKMQgKsn7GI5evPIA\\\"\\u003ESpotify\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://itunes.apple.com/us/podcast/we-are-seek-strike-podcast/id1463144252?mt=2\\\"\\u003EApple Podcasts\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESubscribe and review on iTunes and Spotify!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?auto=webp\\u0026s=7b498390c4a1298299ac305cfdb0b3e1f3abca3e\", \"width\": 640, \"height\": 640}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a44d019cf4521ff2a71dc87c059f38f3033f64d9\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b8bdfaa18569ff71e3a6d659e58d7180229d8250\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=725225366c28b39c204a9296a01ca811b507e941\", \"width\": 320, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=339d0a115de48e0238ab3052a0a24855bc6b9527\", \"width\": 640, \"height\": 640}], \"variants\": {}, \"id\": \"H9VuA66GqaorRc34m5mtaix9iln8b_QAJWcmu-qc748\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brel0b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"IlatzimepAho\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brel0b/test_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brel0b/test_post/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558466211.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Item #: SCP-4935**\\n\\n**Object Class: Euclid**\\n\\n**Author: djKaktus**\\n\\nHello SCPDeclassified, Brewsterion here. Today, I wanted to declassify SCP-4935, by djKaktus, or that guy that wrote a novel for an 001. This one's a longer one, so let's get into it.\\n\\nRight off the bat, we notice a link to the End Of Death canon hub. This is a canon where an Omega-K End Of Death Scenario occurred, forcing immortality upon all life. A such, there's likely going to be a lot of talk about souls and death. Let's see the containment procedures.\\n\\n**Special Containment Procedures**\\n\\n\\u003EThe access point to SCP-4935 is to be sealed and guarded when not in use. Access to SCP-4935 is forbidden unless authorized. Authorization is to be given only by the Site-77 Director of Containment, and only for the purposes of continued research into the nature of SCP-4935.\\n\\nIt's some sort of location, that much is clear. They don't want people walking in and out of it freely, so it's likely dangerous in some way. But they don't fully get it for some reason, otherwise they wouldn't care for research. But next to the procedures there's an image of a single tree in a desert and a...giant, black, inverted pyramid hovering above it.\\n\\nYou know what, let's just see the description.\\n\\n**Description**\\n\\n\\u003ESCP-4935 is the group designation for two phenomena. The first, identified as SCP-4935-\\u03b1, is a temporal anomaly existing within the Sankuru Nature Preserve in the Democratic Republic of the Congo. The anomaly can be identified visually, as light further away from the anomaly appears to red-shift as the observer draws closer to it. Inversely, the anomaly and the area directly around it appear blue-shifted to outside observers, who will see anything approaching the anomaly appear to blue-shift towards an indeterminate point in the center of the anomaly and disappear. The same is true in reverse for anything exiting the anomaly, as returning subjects will appear red-shifted until they match pace with the standard flow of spacetime.\\n\\nIt's a temporal anomaly, situated in the middle of the Congo in Africa. There's a visible effect as people get closer to it, meaning they can tell when something's going in or out. It's not some secret doorway, it's big and obvious.\\n\\n\\u003ESCP-4935-\\u03b1-PRIME (hereafter identified simply as SCP-4935) is the point in time beyond the SCP-4935-\\u03b1 anomaly. Analysis of the stars visible in the sky within SCP-4935 has determined that SCP-4935 is the planet Earth, roughly 130,000 years in the future from the present day. Due to changes in the planet\\u2019s atmospheric composition, the air within SCP-4935 contains significantly more oxygen than present day, leading to an abundance of megaflora. The area directly around SCP-4935-\\u03b1 within SCP-4935 is a grove of trees, many of which are in excess of 200m in height.\\n\\nThat's a loooong way from now.\\n\\n\\u003ESCP-4935 is seemingly devoid of intelligent life, with two significant exceptions. The first is a race of secretive and highly advanced pseudo-humanoid entities who self identify, phonetically, as the Akot. These entities inhabit the dark, canopied forests of the planet in small numbers, often in underground vaults or other similarly protected structures. They appear generally similar to modern humans, with elongated skulls, larger, deep set eyes, reduced mouths and noses, less robust chests and abdomens and longer, leaner arms and legs.\\n\\nThey're basically just humans if you messed with their settings a bit. There's a footnote that says their name actually means gravedigger in their tongue, which will make sense very shortly.\\n\\n\\u003EThe Akot describe themselves as protectors and guardians of a massive, levitating black cube situated above a similarly massive machine complex near the center of the African continent. This cube, composed primarily of silica and carbon with trace organic compounds throughout, is called the \\u201cHereafter\\u201d, and is a site of significant religious importance to the Akot.\\n\\nNow we know what the cube from the image is, it's this 20-kilometer by 20-kilometer thing called the Hereafter. There's also a footnote that says since the Akot aren't technically anomalous, they don't get a designation and are just referred to as the Akot.\\n\\n\\u003EAccording to the Akot, the Hereafter was constructed as resting place for the some ninety-three billion persons who lived on the Earth at the time of its construction, all of whom had lost the biological ability to die. As time passed and the age of these peoples grew unceasingly long, several major wars broke out and the species, as a whole, descended into madness. The Hereafter was designed as a way for the peoples of the Earth to enter a suspended state, until such time that the ability to die could be restored to the species. The Akot were those entrusted to maintain the Hereafter and continue researching the nature of the biological alteration the planet had experienced. This event was likely a hypothesized \\u03a9K-Class (\\\"End-of-Death\\\") Scenario, though the biological triggers for such an event are still unknown.\\n\\nThis is where the End Of Death connection comes in. It's the future of humanity, once the Omega-K kicks in. They give up, so they create the Akot to figure out how to die and then go chill in the Hereafter until they're successful. It also explains the Akot's name: their entire purpose in life is to dig a grave for humanity, one that they'll jump into willingly. Additionally, this paragraph establishes that the present world hasn't undergone the Omega-K, as it's still \\\"hypothesized.\\\"\\n\\n\\u003EThe Akot universally suffer from a debilitating genetic disorder that causes their bodies to deteriorate over time. To offset this, these entities often augment their bodies with technology designed to enhance their reduced functions. However, the most significant consequence of the genetic disorder is that the Akot have a tenuous connection to three-dimensional space. \\n\\u003E \\n\\u003EDue to an event sometime in their past, the Akot exist within two spatial dimensions simultaneously. Through the use of highly advanced technology they have been able to \\u201canchor\\u201d themselves in the baseline dimension, though the condition still puts a considerable strain on their bodies and they are still subject to violent and painful dimensional shifts if the anchors fail. The Akot call this alternate dimension the \\u201cHigh Horror\\u201d, and discussion of the dimension is strictly taboo.\\n\\nThe Akot suffer from a wasting disease that also causes them to slowly fall into another spacial dimension, the High Horror.\\n\\n\\u003EThe second exception is a massive, scorpioid entity (SCP-4935-\\u03b2) that is currently intertwined with and attempting to pierce the exterior of the Hereafter. SCP-4935-\\u03b2, which is biological in nature, is called the \\u201cCorpse-Father\\u201d by the Akot, and has been on the planet for roughly six-hundred years. The origin of this entity is unknown. This entity is capable of spawning larval incarnations of itself through its chitinous flesh in large swarms. These larval entities are aggressive and dangerous in large numbers, but have short life-spans.\\n\\n\\u0026#x200B;\\n\\nIt is organic and biological, but the things it spawns do indeed have the ability to die, unlike the humans in the Hereafter and the Akot. It also seems to be significant to the Akot, since they've named it.\\n\\n\\u003EThe Akot have claimed that SCP-4935-\\u03b1 exists due to a series of experiments testing machines designed to collapse the linear flow of time in a controlled area, as they as a species no longer have the physical capability or technological advantage needed to combat the SCP-4935-\\u03b2 entity.\\n\\nThey made the temporal anomaly after trying to kill the Beta entity and having an experiment backfire.\\n\\n\\u003ETo date, it is believed that these experiments have been ~~unsuccessful~~ \\\\[NOTE: SEE ADDENDUM 4935.6 FOR MORE INFORMATION\\\\]\\n\\nOr not. We should hurry down there.\\n\\n**Addendum 4935-1**\\n\\nThis addendum is a memo on 4935 written by the first doctor to contact the Akot. It describes what the Akot say happened before humans got dumped into the Hereafter: very close to modern day, the Omega-K kicked in, people got happy and made big tech, some even going into space-but they don't know what happened to them-until they ran out of stuff to build rockets from. Resources dried up, and people started fighting. But after these wars end is where we get new information. The cube isn't from Earth, it's extraterrestrial, and the Foundation moved all the humans into it. The cube would keep them in stasis until they could die again, but the Akot couldn't enter due to having biology very different from humans. The issue was, the Akot were slowly petering out due to slow reproductiona nd the tech anchoring them to this dimension failing. They were stuck in this slowly failing state, until the Beta entity showed up. Let's check out the next part of the article, an exploration log.\\n\\n\\u0026#x200B;\\n\\n**Addendum 4931-2**\\n\\nMTF Epsilon-45, Base Jumpers, is sent in on an exploration job. Guess Zeta-9 was too busy being killed off. They enter the anomaly and start heading for the Hereafter. They don't find anything until they encounter an Akot half-stuck in the wall.\\n\\n\\u003E**Unknown Akot:** They will act in desperation now. I know it. I have dreamed of it, for so many years. A day when they would expend their last efforts and we might be saved, in one way or another. (*Pauses*) I want to die. I want to die. Why can't I die? Why has this simple mercy eluded us? \\n\\u003E \\n\\u003E**E-45 Murphy:** This machine - does it have a control area? How is it operated? \\n\\u003E \\n\\u003E**Unknown Akot:** The center - Gerryon's Ark. It is there. But - the Ark cannot be tasked any longer. It has expended itself. There is no more use for it. There is no salvation here.\\n\\nThe Akot have another plan, one that will end up causing them to die. And this machine, Gerryon's Ark, is probably what caused the temporal anomaly. The team continues to the big machine in the center, finding the bottom corner of the cube, and a hologram appears in front of them.\\n\\n\\u003E**Projection:** Greetings, travelers. My name is Gerryon, engineer of the forsaken peoples of this world. You have arrived at our final resting place - we were cursed by an uncaring creator with a tormented existence that would not end, but by the grace of this machine we were delivered unto restful death. Tread lightly on these hallowed grounds. \\n\\u003E \\n\\u003E**E-45 Santos:** Think it can hear us? \\n\\u003E \\n\\u003E**Projection:** (*To E-45 Santos*) Of course. This database was created to answer and respond to the inquiries of all those who may come across our burial place.\\n\\nExcellent, a big database that answers questions. Time to get some answers.\\n\\n\\u003E**E-45 Murphy:** What was this machine designed to do? \\n\\u003E \\n\\u003E**Projection:** Long before I was born, my species collectively decided that we would prefer death over the continued torment of an existence without end. We tried - and failed - to reach that end, by any means. This machine is the culmination of our efforts; a device that, when activated, will rend our souls from our bodies and sever the threads that can be said to be keeping us alive.\\n\\nThe Ark was made to rip souls from bodies, and effectively kill all humans. But then why are the Akot still here?\\n\\n\\u003E**E-45 Murphy:** When was this device activated? \\n\\u003E \\n\\u003E**Projection:** The device has not been activated. \\n\\u003E \\n\\u003E**E-45 Ailes:** What? \\n\\u003E \\n\\u003E**E-45 Murphy:** How does this device determine if it was activated? \\n\\u003E \\n\\u003E**Projection:** There are still living human beings on this planet. Due to this, it is impossible that the device has been activated.\\n\\nThe Ark hasn't been activated yet, is the answer.\\n\\n\\u003E**E-45 Murphy:** (*Pauses*) How did Gerryon know how to create this machine? \\n\\u003E \\n\\u003E**Projection:** Gerryon was the product of the greatest minds of several generations. His birth was conceived by the most advanced sciences of the day, and the stimulation of his mind followed. When he awoke into being he was given access to the greatest compendium of knowledge this world had to offer. \\n\\u003E \\n\\u003E**E-45 Murphy:** Where did he get that knowledge? \\n\\u003E \\n\\u003E**Projection:** The SCP Foundation had collected a massive archive of- (*pauses*) I'm sorry, it appears any additional information has been expunged.\\n\\nMild surprise. Gerryon was born in a lab and raised for the exact purpose of building the Ark and killing off humanity, his knowledge enhanced by the Foundation's information. We don't know what information, though, but it was probably relating to death.\\n\\n\\u003E**E-45 Murphy:** Now **that's** something. (*Pauses*) One more thing. Can this machine be activated? \\n\\u003E \\n\\u003E**Projection:** The Ark is no longer functional to its intended purpose in its current state. It has been modified by a third-party to perform a different task. \\n\\u003E \\n\\u003E**E-45 Murphy:** What task is that? \\n\\u003E \\n\\u003E**Projection:** I'm sorry, that information is not available.\\n\\nThe Ark's been tweaked by somebody to fulfill a different purpose, likely the Akot. We don't know what it was tweaked for, though. The database can't tell.\\n\\nThe team leaves, and they find out there's a slight time dilation present where time passes slower inside the anomaly than outside it. Odd, but not too worrying.\\n\\n\\u0026#x200B;\\n\\n**Addendum 4935-3**\\n\\nAnother doctor wrote a report on the Akot, and it tells us what we mostly knew, pretty much. The Akot were part of a experiment to try and die by rending the soul from the body, but it backfired and began sending them into the High Horror instead. Jump cut to now, their tech's slowly breaking, they're not reproducing enough, and the Beta entity is making things worse. So, to fulfill their self-acknowledged purpose as gravediggers for humanity, they made the temporal anomaly to try and get Foundation help.\\n\\nAt least, that's what they've said so far.\\n\\n**Addendum 4935-4**\\n\\nA third doctor wrote a report on the Beta entity, immediately comparing the scorpioid nature to SCP-4812-K, with the implication it's that entity in the future. They say it crawled out of the sea 600 years ago, which contradicts what the Akot from the exploration said, but they were surprised because apparently everything in the oceans died a long time ago. They also say that when the Beta entity eats something, it adds it's face and by extension it's consciousness to it's own.This discovery split the Akot into two groups, one that was terrified of it, and another group, the Corpse-Children, thought that being eaten would obliterate their soul. So, they chucked themselves at it.\\n\\nThen their heads came out and started screaming to be saved.\\n\\nNeedless to say, it didn't end well. The remaining Akot dumped every single weapon they had onto the Beta entity, from nukes to plasma rods, but it just didn't die. It got to the Hereafter, and began chewing and clawing it's way into it, with the Akot helpless to watch as they failed their one true duty.So, basically, the Akot are screwed. But they still don't know why they made the temporal anomaly. First they said it was them trying to get help from the Foundation, then they said it was an experiment gone wrong, but they don't know why they lied in the first place.\\n\\n\\u003EWe\\u2019ve found out why. Dr. Regal, I believe, has that in her report.\\n\\nSomething big must have happened in Addendum 6. Let's hurry up.\\n\\nIn our way is a small addendum about how the time dilation is rapidly picking up in effect, going from 7 minutes off to 215 minutes off in two weeks. If it wasn't clear something's happening on the other side, it is now.\\n\\n**Addendum 6**\\n\\nThis is Dr. Regal's report, the thing that holds most of the answers from earlier in the article. Let's check it out.\\n\\n\\u003EA few days ago, one of our engineering teams produced some troubling findings. Exploratory teams on the far side of SCP-4935-\\u03b1 were no longer experiencing the 1-to-1 forward progression through time they had previously. The most recent team reported spending the allotted 180 minutes on the other side of SCP-4935-\\u03b1, whereas our teams on our side reported they were gone for 277 minutes. In other words, the forward progression on the far side of the anomaly appears to be slowing considerably relative to our own. \\n\\u003E \\n\\u003EAfter putting together our findings, we approached the Akot about it. They were surprisingly frank about it - SCP-4935-\\u03b1 wasn\\u2019t the result of them trying to reach us for help, or some sort of weapons test. It was an open valve.\\n\\nThey were intentionally messing with time, to mess up time. But why?\\n\\n\\u003E**Archivist:** Death is a long lost dream. For the gravediggers, and for those Sleepers in the graves, all that can be accomplished is an end of suffering. Time expounds our agony. It was decided, a short time ago, that there is no end to the sorrow of the Corpse-Father that does not also follow the end of time.\\n\\nThey've given up on trying to die. They can't end all of it without ending time itself.\\n\\n\\u003E**Ti-8:** Is this why we\\u2019ve seen alterations in our relative experience of the forward progression of linear time? \\n\\u003E \\n\\u003E**Archivist:** It is Gerryon\\u2019s last gift. We cannot escape agony. We cannot escape torment. We cannot escape the Corpse-Father, and we cannot abandon the Sleepers. Time brings us closer to the moment of our final defeat, and stopping that progression is our last chance. Gerryon\\u2019s Ark will interrupt the flow of time, and with it will pause our suffering forever.\\n\\nThat's their endgame. They're going to break the flow of time so that they can all stop existing.\\n\\n\\u003E**Ti-8:** To be clear, this is the same machine that caused your people to become disconnected from three-dimensional space, correct? \\n\\u003E \\n\\u003E**Archivist:** It is. We do not fault Gerryon, no more than we would fault the sun rising or the wind blowing. Gerryon was nature, a mind conceived by the blessings of the Earth. Those who first laid hands on his Ark and could not conceive his vision turned the machine against us. It has been many long millenia since then, and we have grown and learned. We have peered into the heart of Gerryon\\u2019s design and seen its majesty.\\n\\nThe Ark's first activation cause the Akot to suffer from their wasting disease and disconnect from reality. This was the activation that opened the portal in the first place.\\n\\n\\u003E**Archivist:** We feared that we would have to turn Gerryon's Ark upon ourselves, and I will admit that this frightened us more than nearly anything. But Gerryon blessed us with a reprieve. The Ark is not for us, forefather. The Ark is for you. You have not yet been touched by the long dread finger of a life everlasting. We will collapse your timeline, and you will not have to suffer. We will not be born into suffering.\\n\\nThey're going to collapse the timeline so humanity ends before the Omega-K hits and the Akot are created. The gravediggers are trying to bury their ancestors so they don't have to dig at all.\\n\\n\\u003E**Ti-8:** This would mean our destruction, you understand that? \\n\\u003E \\n\\u003E**Archivist:** No. Not destruction. Can't you see? Salvation. Salvation for us both.\\n\\nIt is, in a sense, truly their salvation. Death is their rapture.\\n\\n**Addendum 4395-8 and 4395-9**\\n\\nBoth of these are pretty short, so I'll lump them together. The Ethics Committee gets together in Addendum 8 and decides that while violence is not the Foundation's preferred option, in the case of 4395, the Akot are threatening all of humanity, and they find it \\\" ethically allowable to take actions that may result in the collapse of the primary SCP-4935 anomaly, as well as any damaging effects this may have on the inhabitants of the anomaly.\\\" They vote 7-2, in favor of taking this thing out.\\n\\nOn January 31, 2019, they forced the temporal anomaly shut, and blew up the Ark as well. They don't want this thing open in any way now that they know how dangerous it is.\\n\\nThe Akot tried to claw their way out of the anomaly, make it back into our world so that they could at least try to end us and fix it without the Ark. They couldn't make it out of 4935 before it collapsed, though The time dilation was set back to zero, and the anomaly itself is gone. It's still listed as Euclid though, since the Foundation knows the Akot could try again with their tech.\\n\\nAlright, so, there were a lot of double-bluffs and lies in that article, so let's have a TL;DR Version: Omega-K occurs, and humanity prospers at first but then everything falls apart into a big war. This war ends, and the Akot are created for unknown reasons. The Foundation contributes information to a project to create Gerryon, a lab-made genius, who then builds his Ark in an attempt to split souls from bodies and try to die. It doesn't work and actually ends up causing the Akot to be disconnected from this dimension,, and the humans go into sleep in the Hereafter until the Akot can try to figure out a way to die. They can't, though, and the unkillable Corpse-Father shows up and begins trying to break in to the Hereafter. The Akot, out of weapons and options, modify the Ark to go back in time and collapse the timeline before the Omega-K occurs, therefore never existing in the first place. The Foundation doesn't like this, and decides to destroy the Ark and shut down the temporal anomaly to survive.\\n\\nAnd so, after that, thus ends the story of SCP-4935 for now, a tale of gravediggers and salvation in death. I hope this helped you understand this SCP better. Thank you all for reading, and leave the corpses be.\", \"author_fullname\": \"t2_118qqr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SCP-4935, \\\"Hereafter\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bref1f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558494182.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EItem #: SCP-4935\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class: Euclid\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor: djKaktus\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello SCPDeclassified, Brewsterion here. Today, I wanted to declassify SCP-4935, by djKaktus, or that guy that wrote a novel for an 001. This one\\u0026#39;s a longer one, so let\\u0026#39;s get into it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight off the bat, we notice a link to the End Of Death canon hub. This is a canon where an Omega-K End Of Death Scenario occurred, forcing immortality upon all life. A such, there\\u0026#39;s likely going to be a lot of talk about souls and death. Let\\u0026#39;s see the containment procedures.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe access point to SCP-4935 is to be sealed and guarded when not in use. Access to SCP-4935 is forbidden unless authorized. Authorization is to be given only by the Site-77 Director of Containment, and only for the purposes of continued research into the nature of SCP-4935.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s some sort of location, that much is clear. They don\\u0026#39;t want people walking in and out of it freely, so it\\u0026#39;s likely dangerous in some way. But they don\\u0026#39;t fully get it for some reason, otherwise they wouldn\\u0026#39;t care for research. But next to the procedures there\\u0026#39;s an image of a single tree in a desert and a...giant, black, inverted pyramid hovering above it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou know what, let\\u0026#39;s just see the description.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4935 is the group designation for two phenomena. The first, identified as SCP-4935-\\u03b1, is a temporal anomaly existing within the Sankuru Nature Preserve in the Democratic Republic of the Congo. The anomaly can be identified visually, as light further away from the anomaly appears to red-shift as the observer draws closer to it. Inversely, the anomaly and the area directly around it appear blue-shifted to outside observers, who will see anything approaching the anomaly appear to blue-shift towards an indeterminate point in the center of the anomaly and disappear. The same is true in reverse for anything exiting the anomaly, as returning subjects will appear red-shifted until they match pace with the standard flow of spacetime.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a temporal anomaly, situated in the middle of the Congo in Africa. There\\u0026#39;s a visible effect as people get closer to it, meaning they can tell when something\\u0026#39;s going in or out. It\\u0026#39;s not some secret doorway, it\\u0026#39;s big and obvious.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4935-\\u03b1-PRIME (hereafter identified simply as SCP-4935) is the point in time beyond the SCP-4935-\\u03b1 anomaly. Analysis of the stars visible in the sky within SCP-4935 has determined that SCP-4935 is the planet Earth, roughly 130,000 years in the future from the present day. Due to changes in the planet\\u2019s atmospheric composition, the air within SCP-4935 contains significantly more oxygen than present day, leading to an abundance of megaflora. The area directly around SCP-4935-\\u03b1 within SCP-4935 is a grove of trees, many of which are in excess of 200m in height.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s a loooong way from now.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4935 is seemingly devoid of intelligent life, with two significant exceptions. The first is a race of secretive and highly advanced pseudo-humanoid entities who self identify, phonetically, as the Akot. These entities inhabit the dark, canopied forests of the planet in small numbers, often in underground vaults or other similarly protected structures. They appear generally similar to modern humans, with elongated skulls, larger, deep set eyes, reduced mouths and noses, less robust chests and abdomens and longer, leaner arms and legs.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey\\u0026#39;re basically just humans if you messed with their settings a bit. There\\u0026#39;s a footnote that says their name actually means gravedigger in their tongue, which will make sense very shortly.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Akot describe themselves as protectors and guardians of a massive, levitating black cube situated above a similarly massive machine complex near the center of the African continent. This cube, composed primarily of silica and carbon with trace organic compounds throughout, is called the \\u201cHereafter\\u201d, and is a site of significant religious importance to the Akot.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ENow we know what the cube from the image is, it\\u0026#39;s this 20-kilometer by 20-kilometer thing called the Hereafter. There\\u0026#39;s also a footnote that says since the Akot aren\\u0026#39;t technically anomalous, they don\\u0026#39;t get a designation and are just referred to as the Akot.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAccording to the Akot, the Hereafter was constructed as resting place for the some ninety-three billion persons who lived on the Earth at the time of its construction, all of whom had lost the biological ability to die. As time passed and the age of these peoples grew unceasingly long, several major wars broke out and the species, as a whole, descended into madness. The Hereafter was designed as a way for the peoples of the Earth to enter a suspended state, until such time that the ability to die could be restored to the species. The Akot were those entrusted to maintain the Hereafter and continue researching the nature of the biological alteration the planet had experienced. This event was likely a hypothesized \\u03a9K-Class (\\u0026quot;End-of-Death\\u0026quot;) Scenario, though the biological triggers for such an event are still unknown.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is where the End Of Death connection comes in. It\\u0026#39;s the future of humanity, once the Omega-K kicks in. They give up, so they create the Akot to figure out how to die and then go chill in the Hereafter until they\\u0026#39;re successful. It also explains the Akot\\u0026#39;s name: their entire purpose in life is to dig a grave for humanity, one that they\\u0026#39;ll jump into willingly. Additionally, this paragraph establishes that the present world hasn\\u0026#39;t undergone the Omega-K, as it\\u0026#39;s still \\u0026quot;hypothesized.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Akot universally suffer from a debilitating genetic disorder that causes their bodies to deteriorate over time. To offset this, these entities often augment their bodies with technology designed to enhance their reduced functions. However, the most significant consequence of the genetic disorder is that the Akot have a tenuous connection to three-dimensional space. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDue to an event sometime in their past, the Akot exist within two spatial dimensions simultaneously. Through the use of highly advanced technology they have been able to \\u201canchor\\u201d themselves in the baseline dimension, though the condition still puts a considerable strain on their bodies and they are still subject to violent and painful dimensional shifts if the anchors fail. The Akot call this alternate dimension the \\u201cHigh Horror\\u201d, and discussion of the dimension is strictly taboo.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Akot suffer from a wasting disease that also causes them to slowly fall into another spacial dimension, the High Horror.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe second exception is a massive, scorpioid entity (SCP-4935-\\u03b2) that is currently intertwined with and attempting to pierce the exterior of the Hereafter. SCP-4935-\\u03b2, which is biological in nature, is called the \\u201cCorpse-Father\\u201d by the Akot, and has been on the planet for roughly six-hundred years. The origin of this entity is unknown. This entity is capable of spawning larval incarnations of itself through its chitinous flesh in large swarms. These larval entities are aggressive and dangerous in large numbers, but have short life-spans.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is organic and biological, but the things it spawns do indeed have the ability to die, unlike the humans in the Hereafter and the Akot. It also seems to be significant to the Akot, since they\\u0026#39;ve named it.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Akot have claimed that SCP-4935-\\u03b1 exists due to a series of experiments testing machines designed to collapse the linear flow of time in a controlled area, as they as a species no longer have the physical capability or technological advantage needed to combat the SCP-4935-\\u03b2 entity.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey made the temporal anomaly after trying to kill the Beta entity and having an experiment backfire.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ETo date, it is believed that these experiments have been \\u003Cdel\\u003Eunsuccessful\\u003C/del\\u003E [NOTE: SEE ADDENDUM 4935.6 FOR MORE INFORMATION]\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOr not. We should hurry down there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4935-1\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis addendum is a memo on 4935 written by the first doctor to contact the Akot. It describes what the Akot say happened before humans got dumped into the Hereafter: very close to modern day, the Omega-K kicked in, people got happy and made big tech, some even going into space-but they don\\u0026#39;t know what happened to them-until they ran out of stuff to build rockets from. Resources dried up, and people started fighting. But after these wars end is where we get new information. The cube isn\\u0026#39;t from Earth, it\\u0026#39;s extraterrestrial, and the Foundation moved all the humans into it. The cube would keep them in stasis until they could die again, but the Akot couldn\\u0026#39;t enter due to having biology very different from humans. The issue was, the Akot were slowly petering out due to slow reproductiona nd the tech anchoring them to this dimension failing. They were stuck in this slowly failing state, until the Beta entity showed up. Let\\u0026#39;s check out the next part of the article, an exploration log.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4931-2\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMTF Epsilon-45, Base Jumpers, is sent in on an exploration job. Guess Zeta-9 was too busy being killed off. They enter the anomaly and start heading for the Hereafter. They don\\u0026#39;t find anything until they encounter an Akot half-stuck in the wall.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUnknown Akot:\\u003C/strong\\u003E They will act in desperation now. I know it. I have dreamed of it, for so many years. A day when they would expend their last efforts and we might be saved, in one way or another. (\\u003Cem\\u003EPauses\\u003C/em\\u003E) I want to die. I want to die. Why can\\u0026#39;t I die? Why has this simple mercy eluded us? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E This machine - does it have a control area? How is it operated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUnknown Akot:\\u003C/strong\\u003E The center - Gerryon\\u0026#39;s Ark. It is there. But - the Ark cannot be tasked any longer. It has expended itself. There is no more use for it. There is no salvation here.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Akot have another plan, one that will end up causing them to die. And this machine, Gerryon\\u0026#39;s Ark, is probably what caused the temporal anomaly. The team continues to the big machine in the center, finding the bottom corner of the cube, and a hologram appears in front of them.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E Greetings, travelers. My name is Gerryon, engineer of the forsaken peoples of this world. You have arrived at our final resting place - we were cursed by an uncaring creator with a tormented existence that would not end, but by the grace of this machine we were delivered unto restful death. Tread lightly on these hallowed grounds. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Santos:\\u003C/strong\\u003E Think it can hear us? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E (\\u003Cem\\u003ETo E-45 Santos\\u003C/em\\u003E) Of course. This database was created to answer and respond to the inquiries of all those who may come across our burial place.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EExcellent, a big database that answers questions. Time to get some answers.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E What was this machine designed to do? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E Long before I was born, my species collectively decided that we would prefer death over the continued torment of an existence without end. We tried - and failed - to reach that end, by any means. This machine is the culmination of our efforts; a device that, when activated, will rend our souls from our bodies and sever the threads that can be said to be keeping us alive.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark was made to rip souls from bodies, and effectively kill all humans. But then why are the Akot still here?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E When was this device activated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E The device has not been activated. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Ailes:\\u003C/strong\\u003E What? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E How does this device determine if it was activated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E There are still living human beings on this planet. Due to this, it is impossible that the device has been activated.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark hasn\\u0026#39;t been activated yet, is the answer.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E (\\u003Cem\\u003EPauses\\u003C/em\\u003E) How did Gerryon know how to create this machine? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E Gerryon was the product of the greatest minds of several generations. His birth was conceived by the most advanced sciences of the day, and the stimulation of his mind followed. When he awoke into being he was given access to the greatest compendium of knowledge this world had to offer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E Where did he get that knowledge? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E The SCP Foundation had collected a massive archive of- (\\u003Cem\\u003Epauses\\u003C/em\\u003E) I\\u0026#39;m sorry, it appears any additional information has been expunged.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMild surprise. Gerryon was born in a lab and raised for the exact purpose of building the Ark and killing off humanity, his knowledge enhanced by the Foundation\\u0026#39;s information. We don\\u0026#39;t know what information, though, but it was probably relating to death.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E Now \\u003Cstrong\\u003Ethat\\u0026#39;s\\u003C/strong\\u003E something. (\\u003Cem\\u003EPauses\\u003C/em\\u003E) One more thing. Can this machine be activated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E The Ark is no longer functional to its intended purpose in its current state. It has been modified by a third-party to perform a different task. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E What task is that? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E I\\u0026#39;m sorry, that information is not available.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark\\u0026#39;s been tweaked by somebody to fulfill a different purpose, likely the Akot. We don\\u0026#39;t know what it was tweaked for, though. The database can\\u0026#39;t tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe team leaves, and they find out there\\u0026#39;s a slight time dilation present where time passes slower inside the anomaly than outside it. Odd, but not too worrying.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4935-3\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother doctor wrote a report on the Akot, and it tells us what we mostly knew, pretty much. The Akot were part of a experiment to try and die by rending the soul from the body, but it backfired and began sending them into the High Horror instead. Jump cut to now, their tech\\u0026#39;s slowly breaking, they\\u0026#39;re not reproducing enough, and the Beta entity is making things worse. So, to fulfill their self-acknowledged purpose as gravediggers for humanity, they made the temporal anomaly to try and get Foundation help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt least, that\\u0026#39;s what they\\u0026#39;ve said so far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4935-4\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA third doctor wrote a report on the Beta entity, immediately comparing the scorpioid nature to SCP-4812-K, with the implication it\\u0026#39;s that entity in the future. They say it crawled out of the sea 600 years ago, which contradicts what the Akot from the exploration said, but they were surprised because apparently everything in the oceans died a long time ago. They also say that when the Beta entity eats something, it adds it\\u0026#39;s face and by extension it\\u0026#39;s consciousness to it\\u0026#39;s own.This discovery split the Akot into two groups, one that was terrified of it, and another group, the Corpse-Children, thought that being eaten would obliterate their soul. So, they chucked themselves at it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen their heads came out and started screaming to be saved.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENeedless to say, it didn\\u0026#39;t end well. The remaining Akot dumped every single weapon they had onto the Beta entity, from nukes to plasma rods, but it just didn\\u0026#39;t die. It got to the Hereafter, and began chewing and clawing it\\u0026#39;s way into it, with the Akot helpless to watch as they failed their one true duty.So, basically, the Akot are screwed. But they still don\\u0026#39;t know why they made the temporal anomaly. First they said it was them trying to get help from the Foundation, then they said it was an experiment gone wrong, but they don\\u0026#39;t know why they lied in the first place.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWe\\u2019ve found out why. Dr. Regal, I believe, has that in her report.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESomething big must have happened in Addendum 6. Let\\u0026#39;s hurry up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our way is a small addendum about how the time dilation is rapidly picking up in effect, going from 7 minutes off to 215 minutes off in two weeks. If it wasn\\u0026#39;t clear something\\u0026#39;s happening on the other side, it is now.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 6\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is Dr. Regal\\u0026#39;s report, the thing that holds most of the answers from earlier in the article. Let\\u0026#39;s check it out.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA few days ago, one of our engineering teams produced some troubling findings. Exploratory teams on the far side of SCP-4935-\\u03b1 were no longer experiencing the 1-to-1 forward progression through time they had previously. The most recent team reported spending the allotted 180 minutes on the other side of SCP-4935-\\u03b1, whereas our teams on our side reported they were gone for 277 minutes. In other words, the forward progression on the far side of the anomaly appears to be slowing considerably relative to our own. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter putting together our findings, we approached the Akot about it. They were surprisingly frank about it - SCP-4935-\\u03b1 wasn\\u2019t the result of them trying to reach us for help, or some sort of weapons test. It was an open valve.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey were intentionally messing with time, to mess up time. But why?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E Death is a long lost dream. For the gravediggers, and for those Sleepers in the graves, all that can be accomplished is an end of suffering. Time expounds our agony. It was decided, a short time ago, that there is no end to the sorrow of the Corpse-Father that does not also follow the end of time.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey\\u0026#39;ve given up on trying to die. They can\\u0026#39;t end all of it without ending time itself.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETi-8:\\u003C/strong\\u003E Is this why we\\u2019ve seen alterations in our relative experience of the forward progression of linear time? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E It is Gerryon\\u2019s last gift. We cannot escape agony. We cannot escape torment. We cannot escape the Corpse-Father, and we cannot abandon the Sleepers. Time brings us closer to the moment of our final defeat, and stopping that progression is our last chance. Gerryon\\u2019s Ark will interrupt the flow of time, and with it will pause our suffering forever.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s their endgame. They\\u0026#39;re going to break the flow of time so that they can all stop existing.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETi-8:\\u003C/strong\\u003E To be clear, this is the same machine that caused your people to become disconnected from three-dimensional space, correct? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E It is. We do not fault Gerryon, no more than we would fault the sun rising or the wind blowing. Gerryon was nature, a mind conceived by the blessings of the Earth. Those who first laid hands on his Ark and could not conceive his vision turned the machine against us. It has been many long millenia since then, and we have grown and learned. We have peered into the heart of Gerryon\\u2019s design and seen its majesty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark\\u0026#39;s first activation cause the Akot to suffer from their wasting disease and disconnect from reality. This was the activation that opened the portal in the first place.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E We feared that we would have to turn Gerryon\\u0026#39;s Ark upon ourselves, and I will admit that this frightened us more than nearly anything. But Gerryon blessed us with a reprieve. The Ark is not for us, forefather. The Ark is for you. You have not yet been touched by the long dread finger of a life everlasting. We will collapse your timeline, and you will not have to suffer. We will not be born into suffering.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey\\u0026#39;re going to collapse the timeline so humanity ends before the Omega-K hits and the Akot are created. The gravediggers are trying to bury their ancestors so they don\\u0026#39;t have to dig at all.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETi-8:\\u003C/strong\\u003E This would mean our destruction, you understand that? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E No. Not destruction. Can\\u0026#39;t you see? Salvation. Salvation for us both.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt is, in a sense, truly their salvation. Death is their rapture.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4395-8 and 4395-9\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth of these are pretty short, so I\\u0026#39;ll lump them together. The Ethics Committee gets together in Addendum 8 and decides that while violence is not the Foundation\\u0026#39;s preferred option, in the case of 4395, the Akot are threatening all of humanity, and they find it \\u0026quot; ethically allowable to take actions that may result in the collapse of the primary SCP-4935 anomaly, as well as any damaging effects this may have on the inhabitants of the anomaly.\\u0026quot; They vote 7-2, in favor of taking this thing out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn January 31, 2019, they forced the temporal anomaly shut, and blew up the Ark as well. They don\\u0026#39;t want this thing open in any way now that they know how dangerous it is.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Akot tried to claw their way out of the anomaly, make it back into our world so that they could at least try to end us and fix it without the Ark. They couldn\\u0026#39;t make it out of 4935 before it collapsed, though The time dilation was set back to zero, and the anomaly itself is gone. It\\u0026#39;s still listed as Euclid though, since the Foundation knows the Akot could try again with their tech.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlright, so, there were a lot of double-bluffs and lies in that article, so let\\u0026#39;s have a TL;DR Version: Omega-K occurs, and humanity prospers at first but then everything falls apart into a big war. This war ends, and the Akot are created for unknown reasons. The Foundation contributes information to a project to create Gerryon, a lab-made genius, who then builds his Ark in an attempt to split souls from bodies and try to die. It doesn\\u0026#39;t work and actually ends up causing the Akot to be disconnected from this dimension,, and the humans go into sleep in the Hereafter until the Akot can try to figure out a way to die. They can\\u0026#39;t, though, and the unkillable Corpse-Father shows up and begins trying to break in to the Hereafter. The Akot, out of weapons and options, modify the Ark to go back in time and collapse the timeline before the Omega-K occurs, therefore never existing in the first place. The Foundation doesn\\u0026#39;t like this, and decides to destroy the Ark and shut down the temporal anomaly to survive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd so, after that, thus ends the story of SCP-4935 for now, a tale of gravediggers and salvation in death. I hope this helped you understand this SCP better. Thank you all for reading, and leave the corpses be.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bref1f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Brewsterion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bref1f/scp4935_hereafter/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bref1f/scp4935_hereafter/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558465382.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_c07be\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Our very own Corgi\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bre064\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 840}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views. Katsu's First Day\", \"title\": \"Katsu's First Day\", \"url\": \"https://imgur.com/a/5cyGTUa\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 840, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bre064\", \"height\": 840}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/hr15FLCYpTX2Hdi4-D8pN3xuaS1BKV7LPeUwNa-0-L4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558492189.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?auto=webp\\u0026s=e6f394089edaed813a20b2ae9be80355a675683e\", \"width\": 3024, \"height\": 4032}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4bc71fbc22a8432bde208e9819500caa06db35a1\", \"width\": 108, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=03926630d81a5f2fbc46f44c708bdb32ab7e88d9\", \"width\": 216, \"height\": 288}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f48497dd96015f9566dc130b3e1751d073899910\", \"width\": 320, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=7759525928d560f0a8aacdc90d485b446254f8cc\", \"width\": 640, \"height\": 853}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f80fe2af55a75b053a0265b2431b1aed4f3b258d\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8733d7299d16dd7616aac8eb7c2ac447d52cf5c4\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"HwI1x-pgTiu90wXPmNvBjY8Bkyx0pec088I80HtvAjQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bre064\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MisterOinky\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bre064/our_very_own_corgi/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/5cyGTUa#jKzFTOe\", \"subreddit_subscribers\": 703, \"created_utc\": 1558463389.0, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views. Katsu's First Day\", \"title\": \"Katsu's First Day\", \"url\": \"https://imgur.com/a/5cyGTUa\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 840, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_35aabssu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Supreme Commander: Forged Alliance Let's Play #1 - LOUD Project Mod\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bray7j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Supreme Commander: Forged Alliance Let's Play #1 - LOUD Project Mod\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VgRH8yaTrqo/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bray7j\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/HXJCjqB_CJRS5YgZ8wZJZ-_SCvrAgIAGuYLWnKvT96Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558477033.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?auto=webp\\u0026s=25269a95e8684f288ca8ae522c1b5c32ba168c2d\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=deabb18f7148a5ab4428400866150e03cbb42eff\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1134ea9c6ea0b98aa411c769d29f440530e99e56\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a027329c4dca2e554026595a710fb986ff0b6e4a\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"rbuCAFhCCm7VEnvfC5M52nsZjhIsSKarkhjDgzW_PlE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bray7j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Goldymires\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bray7j/supreme_commander_forged_alliance_lets_play_1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=VgRH8yaTrqo\", \"subreddit_subscribers\": 703, \"created_utc\": 1558448233.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Supreme Commander: Forged Alliance Let's Play #1 - LOUD Project Mod\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VgRH8yaTrqo/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Testing\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brafrm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558474186.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETesting\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brafrm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brafrm/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brafrm/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558445386.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1fshia0q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HGCE Freedom Gundam\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_br1w5r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/PEW4xg4iL6liP5ICAzjaLSS2OJvua4tErk1XnW7A22Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558417917.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"1drv.ms\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?auto=webp\\u0026s=fa17f0c4923b59e84d3ea0b8a17b02985711ba0d\", \"width\": 1600, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=645d3c23f10d589991e05c595e6c1dbe242708f2\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e759becc18d475d837daebb261e20113df3c3db1\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=23e34cb0917a07cf068c8965a4f677962c01f7c5\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1e584518f947ef50b73a3e3b21ca9228adec1db4\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f6631b04e07f0a54b36c11f0799b2a3005c9fbaa\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=593b6d7db7fd1e3277e864df7056eee5c6787bbb\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"O2ToZVz84eHwlQwXHWwsacHs3Ogulvoo-0Swmp6_wd4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br1w5r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NeonRunner\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/br1w5r/hgce_freedom_gundam/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://1drv.ms/f/s!Ak86GWNk26yEgSsd2-gvcl-B53yF\", \"subreddit_subscribers\": 703, \"created_utc\": 1558389117.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_hl2m5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Eyes Wide Open - The Disheartened Song (Official Lyric Video)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bqz81d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Eyes Wide Open - The Disheartened Song (Official Lyric Video)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"EyesWideOpenOfficial\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/jegzxxv6T-I/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/EyesWideOpenOfficial\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bqz81d\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/nQ91ba0Ip2KUxaaBlMGoOlB8ijhVnAGscQf0jkN0HOU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558405282.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?auto=webp\\u0026s=c0fdb565fe87811d2731f3f929a9075d0b63423f\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=89134035e8dd80a06ebd481d63e30e1db6711a3d\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=755cd4f0857ce89207d07f6b6535d1fcbbf12846\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d8dd2d537f88cd623d15f66828c9c25a3c6c291a\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"sqLuOqp9DV-i9vOHLKbhyIp7LgH5b6M7Oc6TMh34K-8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqz81d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sunfire230\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqz81d/eyes_wide_open_the_disheartened_song_official/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=jegzxxv6T-I\", \"subreddit_subscribers\": 703, \"created_utc\": 1558376482.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Eyes Wide Open - The Disheartened Song (Official Lyric Video)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"EyesWideOpenOfficial\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/jegzxxv6T-I/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/EyesWideOpenOfficial\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"As the title says: I've been lurking here to learn how avoid any foibles of writing female characters from my male perspective. You have all been an amazing help, so thanks for that! I figured it's only right that I show my work on the female protagonist from my novel, so that you can see what I've learned, and just in case I've still missed something.\\n\\nSetting: Charlie (male protag) is a lonely UPS man who gets pulled into a mystery after he delivers a package which turns out to be something very many people want very badly. This is the scene of that delivery, which introduces our female protag, Anabelle Must. To wit: \\n\\nShe looked like sex, sauntering towards him on legs long enough hang power lines and a body as slick as European butter. Her nipples rose and fell with each step, offering a howdy-there-soldier-salute each time they bounced up to meet his eyes. They were staring at him. Staring into his very soul... \\n\\n\\u201cHi,\\u201d she said, in a voice which sounded like sex, her pink tongue tying an invisible cherry stem around the single syllable.\\n\\nCharlie did not answer. He could not breathe. He could not think. His pupils were fixed upon her second pair of eyes, those erect, desperate nipples which still bounced though she stood still. \\n\\n\\u201cIs that for me?\\u201d she wondered, reaching for the package with five fingers which were shaped like sex \\u2013 lithe little submarines which might soon dive into the skin of his oceanic bum. Down. Down. Down. \\n\\n\\u201cYe\\u2014Yeah\\u2026\\u201d sputtered Charlie, hoisting his package into the air. \\u201cJust go-gonna need a signature, mam\\u2026\\u201d\\n\\nShe reached into her pocket, though she was entirely naked, and produced a pen which looked like sex, its pleading tip dripping a moist, musty ink onto the floor.\\n\\n\\u201cSure,\\u201d she smiled, spilling that blue sex-juice onto his rattling clipboard. \\u201cAnything else?\\u201d\\n\\nCharlie retreated onto the porch, thinking that the mere aura of the woman might soon stop his heart. \\u201cN\\u2014No, mam,\\u201d he whispered, grabbing urgently at the front of his pants, fearful that they might soon launch a rocket. \\n\\nThe door fell shut against his face. He fell to his knees, feeling a sudden pain in his chest. His heart had given out. The mere sight of her had killed him. *Cardiac arrest* they called it. It felt like sex\\u2026\", \"author_fullname\": \"t2_n0kou\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"po\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqtosh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558376118.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs the title says: I\\u0026#39;ve been lurking here to learn how avoid any foibles of writing female characters from my male perspective. You have all been an amazing help, so thanks for that! I figured it\\u0026#39;s only right that I show my work on the female protagonist from my novel, so that you can see what I\\u0026#39;ve learned, and just in case I\\u0026#39;ve still missed something.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESetting: Charlie (male protag) is a lonely UPS man who gets pulled into a mystery after he delivers a package which turns out to be something very many people want very badly. This is the scene of that delivery, which introduces our female protag, Anabelle Must. To wit: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe looked like sex, sauntering towards him on legs long enough hang power lines and a body as slick as European butter. Her nipples rose and fell with each step, offering a howdy-there-soldier-salute each time they bounced up to meet his eyes. They were staring at him. Staring into his very soul... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cHi,\\u201d she said, in a voice which sounded like sex, her pink tongue tying an invisible cherry stem around the single syllable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECharlie did not answer. He could not breathe. He could not think. His pupils were fixed upon her second pair of eyes, those erect, desperate nipples which still bounced though she stood still. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cIs that for me?\\u201d she wondered, reaching for the package with five fingers which were shaped like sex \\u2013 lithe little submarines which might soon dive into the skin of his oceanic bum. Down. Down. Down. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cYe\\u2014Yeah\\u2026\\u201d sputtered Charlie, hoisting his package into the air. \\u201cJust go-gonna need a signature, mam\\u2026\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe reached into her pocket, though she was entirely naked, and produced a pen which looked like sex, its pleading tip dripping a moist, musty ink onto the floor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cSure,\\u201d she smiled, spilling that blue sex-juice onto his rattling clipboard. \\u201cAnything else?\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECharlie retreated onto the porch, thinking that the mere aura of the woman might soon stop his heart. \\u201cN\\u2014No, mam,\\u201d he whispered, grabbing urgently at the front of his pants, fearful that they might soon launch a rocket. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe door fell shut against his face. He fell to his knees, feeling a sudden pain in his chest. His heart had given out. The mere sight of her had killed him. \\u003Cem\\u003ECardiac arrest\\u003C/em\\u003E they called it. It felt like sex\\u2026\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqtosh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BaronVonButternickle\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqtosh/po/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqtosh/po/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558347318.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_cp3cb3l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bqs0lm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"WoW Fishing: Stormsong Valley (Ambience/ASMR)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Sweetbun\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VmalKIuFimk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCrRoBf9CFTXErdj-Z1W-LaA\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bqs0lm\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Ai1RT718z01rsfPlWCCGgZEIIg8JoQowRbOaIZq5oiA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558363115.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?auto=webp\\u0026s=2c73ce6751ae262f5ac06b60c4b214664596662c\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d72d4d25cf69aa2946fa665f119b3c3a20ac800f\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6a124dc14e04c3a16da0302ebba5414a82c235b0\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3ecc5919b56a452b9f8f01472555a2a15af60127\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"4uEgYAelHlW11bf8oWKYoOFFJb_IvtDGBFSpL_owSYI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqs0lm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NamiPickles\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://youtu.be/VmalKIuFimk\", \"subreddit_subscribers\": 703, \"created_utc\": 1558334315.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"WoW Fishing: Stormsong Valley (Ambience/ASMR)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Sweetbun\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VmalKIuFimk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCrRoBf9CFTXErdj-Z1W-LaA\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Text\", \"author_fullname\": \"t2_cp3cb3l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqrx73\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558362459.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EText\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqrx73\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NamiPickles\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqrx73/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqrx73/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558333659.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hi folks,\\n\\n First of all, thanks for all the quality posts here, i created an account just for this community !\\n\\n I'm a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\n\\n D1 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5)\\n D2 : Squat (5*5)- OHP (3*5) \\n D3 : Rest\\n D4 : Squat (5*5)- OHP (3*5)\\n D5 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5)\\n D6 : Squat (5*5)- OHP (3*5) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\n D7 : Rest\\n\\n I think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP\\n\\n For these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7\\n\\nMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\n\\nThanks for all you're doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\", \"author_fullname\": \"t2_3s7t8gxj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"sdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqofzt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558341883.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\n D2 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) \\n D3 : Rest\\n D4 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\n D5 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\n D6 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\n D7 : Rest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?auto=webp\\u0026s=b59cadc793d0be52f56b3fe70bd7bd442a7b404e\", \"width\": 681, \"height\": 279}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=41e4d61a71c4994fe6d65cd5f5e5117101a8c177\", \"width\": 108, \"height\": 44}, {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f54ed93edb582388d2be8048d9b2ce14e17339e2\", \"width\": 216, \"height\": 88}, {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=197cdcd689260137ffeb3630d6ce6c8591f0123f\", \"width\": 320, \"height\": 131}, {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=48803a69899fb1896652c3f22a84062c59105e8f\", \"width\": 640, \"height\": 262}], \"variants\": {}, \"id\": \"qtTefy3j-6oGIh5mtKWiXy7kht_Oew60BsrcQCPqFhM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqofzt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"imperatorz\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558313083.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hey y'all, been a while away thanks to university, and it kinda sucked the wind out of me writing stuff about F1 for a while. But never mind that, I'm back.\\n\\nThis will be the start of a little series of mine, where I focus on F1 drivers that *should* be recognised for their stories behind their career, yet for some reason, are barely footnotes in history. You all know the story of Ascari and Fangio, of Lauda and Hunt, of Prost and Senna, of Schumacher and Hakkinen and so on. However, there are many more stories of drivers that don't receive the attention they deserve. Whether stories of success or failure, glory or ignominy, tragedy or happiness, these stories are worthy of remembering and retelling. This little series of posts are not Random Driver Highlights, given how they're not...y'know, random. But instead, they'll each have their own post, cause they deserve it.\\n\\nThe first driver I want to spotlight is an Italian driver for Ferrari in the 1950's. His story isn't *that* unknown, but compared to his contemporaries, it's very, very hidden unless you search for his name. He was F1's youngest polesitter at the time, with that record lasting for 13 years. He is directly involved with the death of a legend of a sport. He dated a rather famous Italian celebrity that got them on gossip pages. And he was very, **very** handsome. Like, ridiculously handsome.\\n\\nThis is the story of Eugenio Castellotti.\\n\\n*****\\n# [Eugenio Castellotti](https://www.classicdriver.com/sites/default/files/styles/article_full/public/183477804a.jpg?itok=mIrjs49d) #\\n\\n**STATISTICS**\\n\\n**Nationality:** Italian\\n\\n**Years in F1:** 1955-57\\n\\n**Teams Raced For:** Lancia, Ferrari\\n\\n**Entries:** 14\\n\\n**Starts:** 14\\n\\n**Podium Finishes:** 3\\n\\n**Pole Positions:** 1 (*1955 Belgian Grand Prix*)\\n\\n**Points:** 19.5\\n\\n**Highest Finish:** 2nd (*Twice -- 1955 Monaco and 1956 French Grands Prix*)\\n\\n**Good looks:** On a scale from 1-10, [*he was a goddamn 17*](http://formula-fan.ru/assets/images/drivers/Castellotti_Eugenio.jpg).\\n\\n*****\\n\\n### Part 1: Baby You're a Rich Kid ###\\n\\nEvery report on how Castellotti began his career states that it was due to his wealth, being able to buy a Ferrari sportscar at the young age of 20. Most 20 year-olds would be worrying about paying off their university fees, but here was Eugenio, buying himself a Ferrari. So, naturally, the narrative was that he had a mollycoddled childhood by two rich, wealthy parents and was able to buy his way into motorsport. Right?\\n\\nWell...not quite. I think. His mother, Angela, according to some accounts, was unmarried and *only sixteen* when she gave birth to Eugenio. Not to mention that his father, a very, *very* wealthy lawyer, reportedly first met Eugenio at the age 9. Most other sources just hook onto the fact that his family was wealthy, but if the above is true, that his dad impregnated someone at 16 and didn't bother taking care of their child until nine years later, life may not have been *that* rosy for young Eugenio as some sources claim.\\n\\nEugenio, however, quickly gained a fascination for cars, and supposedly learned how to drive through the Castellotti's family driver. As he grew up, he even tried to fake his age to obtain a driving license. Despite the probable family tensions between his mom and his dad for, well, **that** situation, there was one thing that both his parents agreed on: that Castellotti *should not race*. They became increasingly restrictive with Castellotti's passion, but that probably drove young Eugenio further into getting a racing career.\\n\\nThis was until his dad died when Eugenio was either 12 or 19. I don't know this for sure as sources are picky, but more sources point towards 19. Because, when his dad died, he left a massive, and I mean **massive**, inheritance to Eugenio. I don't know how much, but damn if it didn't look like Loadsamoney. From there, Eugenio went into a manic shopping spree, often fancying finely-tailored suits here and there. However, still against his mother's wishes, Eugenio used his money to explore his passion, motor racing.\\n\\nAnd that's how Eugenio Castellotti bought his first Ferrari, a 166MM sportscar, at the young age of 20. But, unlike most ridiculously rich youth of the generation, he didn't buy the 166MM to stare at it in his garage every once in a while. He was going to **race it**.\\n\\nHowever, Castellotti figured that the best way to start off racing wouldn't be a few simple club races, oh no. His first race was the gruelling 1,080-kilometre Tour of Sicily, where he unsurprisingly failed to finish. Not to be perturbed by this little blip, Castellotti opted to enter the frikin' **Mille Miglia**, or 1000 Miles in Italian, probably one of the grandest road races ever. There, he actually finished a credible 6th in class and 50th in an overall field of *322 starters*. As inexperienced as he was, Castellotti proved he wasn't just a regular rich kid who bought his way into racing. His first two races were only two of the toughest sportscar races, and by golly did he do well.\\n\\nInto 1952, and Castellotti's form in sportscars just got better and better over time, leading to his first win in the Gold Cup at Pescara. Buoyed by all this success, he felt it was about time he entered the grandest event of all, the Monaco Grand Prix. However, it wouldn't be his first Formula One start. The Monaco Grand Prix was going through some financial difficulties, and with radical changes in rules in the World Driver's Championship, the organisers played a *safe bet* and hosted the 1952 Grand Prix for sports cars instead.\\n\\nThat's not to say the field was any weaker, though. A number of British up-and-comers like Stirling Moss and Peter Collins entered, not to mention crafty French veterans in Robert Manzon and Louis Rosier. Entering a Grand Prix of such prestige so early in his career, Castellotti would have his work cut out for him.\\n\\nHowever, Castellotti showed an oddly cool head when everyone lost theirs, especially when Stirling Moss and other drivers ploughed into Reg Parnell's broken down Aston Martin. Following the pile-up it would be Castellotti who would inherit the lead from Vittorio Marzotto. However, the heat would take its both drivers and cars, and both had to make a mandatory pit stop to attend to both the cars and drivers.\\n\\nAccording to urban legend, when Castellotti stopped, he also requested for a **bottle of Coke**. Apparently, this slowed Castellotti's stop significantly, maybe because Coke was hard to source in Monaco, or Castellotti just had to sip Coke leisurely, I don't know. Whatever the case, this was enough to hand the lead back to Marzotto, who went on to win the Monaco Grand Prix. \\n\\nCastellotti's performance, where he lost the Monaco Grand Prix to a bottle of Coke, didn't go unnoticed, though, and despite a lucky escape in Vila Real where marshals carried him out of the way from an oncoming pileup, through the next two years, including a win at the Portuguese Grand Prix in 1952 and the Messina 10 hours in 1953.\\n\\nHis shot at the big time, though, was just on the horizon. And it would come from none other than the *reigning champion of Formula 1*, Alberto Ascari.\\n*****\\n\\n### Part 2: Lancia's Lancer ###\\n\\nIn his career so far, Castellotti had just been entering races as a privateer, mainly entering with Ferrari's purchased from his father's inheritance. Being a relatively youthful driver in the sport, he was seen as one of Italy's brightest young talents to carry Italy's motorsport image into the future, so he was probably in high demand. It would probably be just a matter of time before he got snapped up.\\n\\nThen he met Alberto Ascari. Holder of the record for most consecutive victories in F1 at the time (*and all the way until 2013*) and had secured his second consecutive World Driver's Championship by the time of the Italian Grand Prix, when he met the young Castellotti. Despite his service for Ferrari, pay disputes and other issues led the current reigning champion to leave the Prancing Horse and join, out of all teams, Lancia, who were all set to make their leap into Formula One.\\n\\nAnd, out of all people, Ascari hand-picked both his mentor, Luigi Villoresi, and his now-protege, **Eugenio Castellotti**, to join him in Lancia. Yep, he was handpicked by probably the best driver in the world to not only be his teammate for the upcoming season, but also taken under his wing as his *protege*. \\n\\nLancia had doubts over his drive, though, after a dismal showing at the Nurburgring 1000km, but those doubts were cast aside after a brilliant third place in the Carrera Panamericana. Heck, sources say him and teammate Piero Taruffi could have actually contested for the win, but received orders from above to hold station behind leader Fangio to play it safe, already having a massive lead to the rest of the field and to keep a 1-2-3 finish for Lancia.\\n\\nHowever, for 1954, Lancia's F1 project encountered delay after delay. Not quite as delayed as \\\"The Thief and the Cobbler\\\", but still, delayed by a lot. So much so that they let Ascari and Villoresi race for other teams while they continued to toil over their chassis.\\n\\nCastellotti, meanwhile, didn't follow down their path. He remained loyal to Lancia and, as their 'junior driver', was given the opportunity to race in a multitude of sportscar events. However, instead of anticipated success, Eugenio recorded DNF after DNF after DNF in many sportscar races, from the Sebring 12 hours to Mille Miglia to Targa Florio, poor Castellotti didn't have **anything** going right for him in 1954, save for winning his second Italian Mountain Championship on the trot in hillclimbing. And when Lancia were *finally* able to enter their long-awaited D50 in the season-closing race at Spain, they only had enough for Ascari and Villoresi, leaving Castellotti by the sidelines once again.\\n\\n1955 came around, and finally Lancia were ready with their D50 project. It took a while, but come the Argentine Grand Prix, Eugenio was all ready to step foot into the big leagues, Formula One. However, as most people who know their F1 history, the 1955 Argentine Grand Prix was probably the **worst race possible** to take your first steps in F1. The heat was held in mind-melting temperatures reaching *40 degrees Celsius*.\\n\\nNot only was it mind-melting, but also car-melting. This proved to be the case when Villoresi's Lancia gave up on lap **2**. As shared drives were essentially part-and-parcel with Formula One at the time, Castellotti was relieved by Villoresi on lap 20 to cut his first Formula One start short. Probably mercifully, too, as Villoresi wrecked the Lancia just 15 laps later.\\n\\nThe next race for him at Monaco, though, finally showed off what Castellotti was capable of. He qualified a stellar *fourth* in just his second race for Lancia, and in his first lap, moved up the field with a great start and this [*downright bonkers overtake for 1955 standards*](https://youtu.be/XSqH-uf1-xQ?t=108) on Stirling Moss at the station hairpin to take second on lap one. After a crazy battle with Moss early on, Moss's Mercedes dominance won out and Castellotti settled into a battle for third with teammate Ascari and Jean Behra.\\n\\nIn that battle, though, Castellotti cut a tyre after driving too aggressively and mounting several kerbs on the streets of Monaco, forcing a pitstop that dropped him to ninth, essentially being a precursor to the crazed, balls-out driving style that Castellotti would go on to develop with time in future Formula One starts. However, the dashing youngster here was only in his second race, and yet, thanks to some retirements and some seriously impressive driving, Castellotti came in **second place** in just his second Grand Prix start, a result that undoubtedly would've been a victory had it not been for the tyre trouble mentioned earlier.\\n\\nOne of those retirements, though, was his mentor and teammate, Ascari, as he ploughed through barriers and past bollards into the Monaco harbour in one of F1's most famous crashes never filmed, primarily because all the focus was on Stirling Moss' smoking Mercedes just ahead in the pitlane. Despite the frightening looking crash and the aftermath, Ascari mercifully left the accident scene with nothing more than a broken nose.\\n\\nThis was bad for Castellotti, as just the week after that, he and Ascari were teaming up to drive a Ferrari 750 Monza for the Supercortemaggiore in Monza. On the 26th of May, 1955, Castellotti and Villoresi were ready to test the unpainted, newly developed car before the race, and had invited Ascari to spectate, probably to give advice to young Eugenio like he always had, or just to see how the car handled before their upcoming event. Impulsively, during a break in action before lunch, Ascari elected to drive the car for a few laps. Some say it was to test the car he was due to race in a couple of days, others say it was to test his psyche and get back on track after his mammoth crash in Monaco.\\n\\nDressed in a suit and tie, he didn't have any racing gear on him, especially his lucky blue helmet, still under repair from his accident in Monaco. So, without thinking, he borrowed Castellotti's helmet and set out for a few laps. On the third lap, at Curva Vialone, Ascari spun out, either due to ill-effects from Monaco, distractions from his flapping tie, or someone or something crossing the track ahead of him. The car proceeded to somersault, killing the two-time champion.\\n\\nCastellotti was distraught. He was one of the first at the scene and saw his close friend and mentor pass in front of his very eyes. He lent Ascari his helmet that allowed him to test the car in the first place. Emotionally, he was probably a mess. Yet, at the same time, he was probably more driven than ever.\\n\\nWhich was why it came to be a shock when Lancia announced their immediate withdrawal from Formula One. It was partially due to the loss of their stalwart, but financial problems had also been piling on the Italian outfit, which was the main reason for their withdrawal. Unperturbed, though, Castellotti begged them to participate in the upcoming Belgian Grand Prix. Lancia couldn't send their team to Belgium, though, so they just lent Castellotti two of their D50s to enter as a privateer.\\n\\nFull of emotion, Eugenio arrived at Spa with a fire lit under him. The Mercedes team were clearly the team to beat, and with the revolutionary W196, looked near unstoppable through the season. Castellotti hadn't even been to Spa before today. And yet, on the first day of practice, his lap times were falling rapidly on the near nine-mile circuit. As the day came to a close, Castellotti had already run a *full-race distance* in practice. But on one of his last laps, the time he set was a purely incredible 4:18.1. Half a second better than Fangio, a full second ahead of Moss. And, luckily for Castellotti, the second day was completely rained out.\\n\\nAll this meant that Eugenio Castellotti, in just his **third** Grand Prix, following the recent death of his mentor and close friend, after the withdrawal of his team and entering the race *all by himself*, had just beaten the near-unbeatable Mercedes to become the **youngest polesitter in Formula One history**.\\n\\nAlthough his Lancia was eventually outpaced on race day by the Mercs and retired from a still-impressive third place with transmission issues, there was almost no doubt in many people's minds, that he truly was the next Ascari.\\n\\nWell, one of *two* potential future Ascaris.\\n*****\\n\\n### Part 3: Ferrari's Future ###\\n\\nAfter the closure of Lancia, Ferrari had snapped up most of their assets, and this included Castellotti, the Prancing Horse having been impressed by the promise shown by their young countryman. Indeed, it was out with the old, in with the new at Ferrari, as Nino Farina was forced to scale back his racing commitments due to persistent injuries, and so in stepped Castellotti for the next race at the Netherlands.\\n\\nThe next two results weren't exactly the greatest for Eugenio, salvaging a 5th in a troublesome Ferrari in Zandvoort and transmission issues plaguing him all weekend in Aintree, retiring from his main entry, and substituting Mike Hawthorn late in the race only guaranteed them a then sixth place finish, which scored them *nul points* back in the 50's.\\n\\nThe season-ending Italian Grand Prix, though, was his first real great race for Ferrari. Having acquired the Lancia D50's, Ferrari elected to race them for the Italian Grand Prix, seeing them as much faster than the Ferrari 625s and 555s they had with them. However, throughout practice, both D50's suffered intense tyre wear with the Ferrari-contracted Englebert tyres on the oval banking as opposed to the Pirelli tyres it was designed for. So, after qualifying 4th, Castellotti switched to the supposedly lesser-competitive 555 for the race. For the opening portions of the race, he surprised everyone by sticking with the four dominant Mercedes machines, giving the tifosi something to cheer about. However, ragged Eugenio slowly fell off the pace. And up stepped his rival.\\n\\nLuigi Musso was born into nobility in Rome in 1924. Being a few years Castellotti's senior, he had an earlier start into racing than him, and had impressed for the Maserati in most of his starts, including a podium in the Spanish Grand Prix and a couple of wins in non-championship Grand Prix. And him being a Roman driving for Maserati, he simply couldn't let a Milanese driving for Ferrari beat him in their home Grand Prix. So, for a good twenty-odd laps, the two battled hard, being separated by a matter of *inches* at some point in the Grand Prix. \\n\\nEventually, Castellotti won out as Musso's Maserati petered out after the intense battle. And with that battle won and the retirement of a few Mercedes machines, Eugenio salvaged a podium for Ferrari in their home race, ending the season with 12 total points. With other drivers like Farina and Hans Herrmann unable to complete a full season due to injury, and the inconsistency of others like Trintignant and Musso in such a short season, these 12 points were enough for Castellotti to finish **third** in the World Driver's Championship, best of the rest behind the Mercedes duo of Fangio and Moss. This was the best championship finish for a debutant in F1, a record that would be equalled, but never beaten for **41 years** before Jacques Villeneuve finished 2nd in the 1996 championship, a record equalled by Lewis Hamilton in 2007.\\n\\nEnzo Ferrari kept his services for 1956, where they'd be using the D50, now badged as a 'Lancia-Ferrari', that Castellotti had used to good effect the previous season. However, Castellotti wasn't going to spearhead the team, as with Mercedes' withdrawal from motorsport following the Le Mans disaster, Fangio made waves by signing for Ferrari. Also signing for Ferrari was Luigi Musso, setting the scene for a potential rivalry between the two rising Italian stars. Among the two, though, Ferrari seemed to prefer Castellotti, being selected to pair with Fangio for major endurance races that year, while Musso was stuck with Schell.\\n\\nIn Formula One, though, Musso got the early upper hand when a shared drive with Fangio led to victory for the pair of them, though that only really came to pass when multiple drivers, including Castellotti, had all sorts of mechanical issues. \\n\\nIf you recall from earlier, Castellotti had developed a reputation as being a wild driver, often blasting off straight from the gate before wearing out as the race goes on. However, given all that I've seen from nearly every source about Castellotti's wild driving style, it's all the more puzzling that his greatest triumphs in 1956 came in *endurance racing*, out of all things. The first of such victories came in the 12 hours of Sebring, where he and Fangio fought off the challenge of the Jaguar squad in the fastest Sebring 12 hours at the time. His second victory, however, was more impressive.\\n\\nBack in the previous year's Mille Miglia, Castellotti was embarrassingly dominated by Moss and Denis Jenkinson before his retirement with tyre issues. He would find out later that Moss and Jenkinson were using a navigation system, which would later turn out to be a prototype for pace notes now commonly used in rallying events. Upon Jenkinson letting him know of the news, Eugenio simply shook his head, saying he couldn't possibly drive with such a navigation system.\\n\\nBesides, come 1956, Castellotti would enter the Mille Miglia *by himself*, so there was no navigator for him to follow. If that wasn't so much of a disadvantage for him, it was made worse as the weather conditions started to turn especially nasty. Normally, drivers as manic as him would fall victim to the conditions. Indeed, another young, manic driver attempting to make a name for himself that race was Wolfgang von Trips, who, while chasing the leading driver, *tripped* over the tricky conditions. (*I swear I'm a natural comedian guys*).\\n\\nBut that leading driver von Trips was chasing was none other than Castellotti himself. In rain that essentially blinded the roads ahead and ferocious winds, Castellotti wasn't even fazed. He never put a foot wrong. And apart from a short stint where he had to refuel, through each control point on the course, Castellotti **never lost the lead** for the full 1000 miles.\\n\\nYes, you heard right. **Never. Lost. The. Lead.**\\n\\nDenis Jenkinson, co-driver to Moss, would comment on the event: [\\\"We were not racing against Musso, Castellotti or Fangio; it seemed that we were fighting for the mere right to go on living.\\\"](https://www.motorsportmagazine.com/archive/article/june-1956/26/another-mille-miglia-moss). And yet, in this battle for survival, Castellotti turned it into a driving masterclass. And, despite the undeniable truth that having a navigator in a thousand-mile road race would certainly help, Castellotti pulled this off all by himself. What an absolute legend.\\n\\nBack to Formula One, though, his performances weren't so legendary. One thing he was very good at was qualifying, as evidenced when [StatsF1 placed him **13th** all-time in best average qualifying performances (min. 10 GP starts)](https://www.statsf1.com/en/statistiques/pilote/divers/grille-moyenne.aspx). On race-day, his starts would be fantastic, but more often than not, a whole bevy of mechanical problems would drop him down the grid. This was the case for most of 1956, retiring from 3rd in Argentina, 5th in Monaco and 4th in Belgium despite having promising starts in all these races.\\n\\nIn France, he got a similarly fantastic start, and actually led for a few early laps before seceding the lead to Fangio. However, once Fangio retired, Castellotti was all but in the clear and seemed to be destined to win his first ever Grand Prix and the spearhead in a Ferrari 1-2. However, teammate Peter Collins was competing for the title, and so the order was given through the pit-board for Collins to pass Castellotti for the win. One of the earliest examples of team-orders lost Castellotti his chance for an F1 victory, but he still trailed Peter Collins right on his bumper, being separated by just *0.3 seconds* at the line.\\n\\nAfter these performances, though, the wild side of Eugenio came back to form, having probably the worst race of his F1 career to date in Silverstone, dicing with many local entries and spinning out on the opening lap at the Nurburgring. Teammate and rival Musso had also had a rough season, with a crash in a sportscar event sidelining him for a couple events, not to mention every other race since his shared win in Argentina has ended with him failing to finish. With just one event left in the calendar, their home race in Monza, both Castellotti and Musso were determined to make the race their highlight of 1956. And neither wanted to give way.\\n\\nTheir team leader, Fangio, was well aware of their competition, despite being in a championship hunt at the time. He also remembered how the D50s ripped every tyre to shreds in the last Italian Grand Prix, so he gave Eugenio and Musso sage advice. He'd lead the way so Castellotti and Musso could pace their laps without destroying any tyres. With ten laps, he'd pull over and let Castellotti and Musso duke it out for the finish, *keirin style.*\\n\\n*Measured and steady* was the advice from Fangio to the young drivers. But they didn't listen.\\n\\nInstead, Musso and Castellotti went for a ***BALLS OUT, FLAT-OUT, BAT OUT OF HELL, NO FUCKS GIVEN, MY DICK IS BIGGER THAN YOURS, TRADIN' PAINT*** scrapheap for the lead the *moment* the green flag dropped. Castellotti was the leader for the majority of this intense battle, but Musso was nowhere near giving up. It was the battle the tifosi wanted, the two Italian drivers for the Prancing Horse, battling for supremacy on hallowed racing ground.\\n\\nOf course, this battle couldn't last forever. Fangio's advice was right. The tyres on both Musso's and Castellotti's cars didn't last the whole race. They didn't even last for half distance. Heck, not even *quarter-distance*.\\n\\nBoth of their tyres completely wore out their threads by **lap 4**. You heard me. Lap. FOUR.\\n\\nWorse for Castellotti, his stop was a measure longer than Musso's and was left playing the catch-up game. Paying no heed to his earlier lesson or Fangio's prior advice, he continued the ***PEDAL TO THE METAL, I DON'T GIVE A DAMN, DON'T LIFT OR YOU'RE A PUSSY*** strategy to catch up to Musso. And by lap *nine*, his tyre punctured yet again and sent him spinning onto the main straight, ending his race.\\n\\nBy all accounts, his 1956 season, results wise, wasn't the best. Just the two points finishes left him sixth in the championship, though to be fair his pace was *far, far greater* than those results indicate. In fact, over on GP Rejects, I ran an alternative championship where points were scored after just three laps. And, spoilers, [CASTELLOTTI FREAKIN' WON](https://gprejects.com/forum/viewtopic.php?f=12\\u0026t=7589#p350138) (though admittedly thanks to dropped scores, but **still**).\\n\\nWhat's more, he had plenty of things to smile about that year outside of F1. Securing his seat at Ferrari. Sharing the win with *El Maestro* at the Sebring 12 Hours. And finally **dominating the field** at the Mille Miglia. And it's not just racing achievements Castellotti had to smile about as well.\\n*****\\n\\n### Part 4: Il Bello ###\\n\\nMost drivers from the 50's had cool-ass nicknames. Fangio was El Maestro, also known as *'The Master'*. Jose Froilan Gonzalez was known as *The Pampas Bull*. Luigi Fagioli was known as the goddamn *ABRUZZI ROBBER*. Seriously, if you were a racing driver in the 50's, it was almost part and parcel that you'd get a dope-ass nickname as a reward.\\n\\nSo, when Castellotti got his nickname, there was only one obvious choice: *Il Bello*. Put simply, **The Beautiful**.\\n\\nAnd goddamn, he was [*beautiful*](https://cdn-8.latimages.com/images/mgl/ZnzlQo/s4/1017237256-LAT-19550716-315_29.jpg). So. Damn. Beautiful. That perfect chin, the neat at hell hairstyle, those pecs...\\n\\n...wait, where was I? Right. Ahem. Yeah, he was called Il Bello, and for good reason. Castellotti was *ridiculously vain*. He wore the finest of suits and shirts tailored exactly to how he wanted it. He kept his hair in perfect shape. He was even self-conscious about his lack of height, so much so that he often wore lifts in his shoes. He didn't earn the nickname Il Bello for nothing. And likewise, he didn't put the nickname to waste either.\\n\\nPartly because of his vanity, Castellotti was definitely a ladies man. He had many short flings throughout his racing career, all of which was followed relentlessly through gossip magazines. But, in 1956, he finally found someone to settle down with. And it couldn't have come with someone more high-profile.\\n\\nDelia Scala was one of Italy's leading actresses at the time, and through 1956 and 1957, was beginning the transition to the silver screen to become one of Italy's pioneering television personalities. In the summer of 1956, she met Castellotti at a restaurant, and started talking to him simply because the pale blue colour of his trousers matched the car. Eventually, conversations about matching colours became a date, and then a relationship. A relationship that apparently newspaper reporters **could not get enough of**. Italy's future legend in motor racing pairs up with leading young actress, both of whom were ridiculously hot. A gossip writer's wet dream.\\n\\nThis was two people's nightmare, though. First was Castellotti's mother, who upon meeting Scala for the first time, took her by the hand and said \\\"*You look like a waitress, the kitchen is over there*\\\". Good going, Mrs. Castellotti.\\n\\nSecond, and maybe more importantly, was Enzo Ferrari. He hated it when his drivers would get all caught up in intense romance, furthermore if it affected them emotionally, and *even more so* if it said relationship was spread over nearly every damn newspaper in Italy. He thought it'd affect their race pace and their drive to continue. And, for a while, it seemed Enzo was right.\\n\\nCastellotti and Scala proposed and planned to get married in April. However, between the two, there was an intense discussion that turned into a disagreement. Scala wanted Castellotti to give up driving, fearing that it was getting too dangerous for him. However, Castellotti told Scala that *she* should give up acting as it would cost them time together when he wasn't racing elsewhere. I don't know where the two stood on the compromise, but it was certain that Castellotti would probably have to focus less on racing should he wish to remain with Scala.\\n\\nHowever, on track, results were still going pretty well for Castellotti in 1957, claiming *both* first and third in his respective driver lineups in the 1000 km of Buenos Aires. Additionally, in the Argentine Grand Prix for 1957, he took an early lead and was launching a serious challenge to the now-dominant Maseratis, but his Ferrari, like all the other Ferraris, gave up the ghost while running in third.\\n\\nAs was tradition in those days, the Argentine Grand Prix and other events in South America was run in their January summer, then Formula One would take a break until May to restart that season in Monaco. With marriage around the corner, Castellotti took the time to take a nice vacation in Florence with his bride-to-be Scala, who was booked for a play there for the time being. Call it a pre-marriage honeymoon, if you will.\\n\\nA pre-marriage honeymoon that got rudely interrupted by none other than *Enzo Ferrari*. He rang up Castellotti in a huff and instructed him to go to Modena the next day to test the Ferrari. But this was more than just some last-minute test set up by Ferrari or a call for Castellotti to deputize for another driver.\\n\\nAs it turns out, Jean Behra and Maserati were testing at Modena that day, and Enzo found out that they had beaten Ferrari's ultimate lap record around the Autodrome. According to some people, most notably Luigi Villoresi, Enzo Ferrari had placed a lunchtime wager on the lap record, so when he saw it got beaten, he called the first person he could find - that being Eugenio - to come down to Modena to *take that record back*.\\n\\nCastellotti was undoubtedly fuming, having had precious time with his fianc\\u00e9e interrupted for a stupid lap record. But he had to listen to Enzo. Nobody dared to oppose him. On March 14th, he left Florence at 4 a.m. to make the long drive to Modena, to get suited up and get ready for practice.\\n\\nOn just his second or third flying lap, Castellotti lost control in the esses at the start of the lap, and the car overturned through a fence and into a (*mercifully empty*) grandstand. Castellotti was thrown out. The local parish priest, Don Sergio Mantovani, was present to read him the last rites as he laid dying on the track. He was only 26 years old. His wedding with Scala was just twenty-five days away.\\n\\nThe reason for the crash has been disputed. Jean Behra, present at the track having set the aforementioned lap record, insisted there was a problem with the gearbox, having heard it shift to neutral just before the crash. Other sources feel it was just a mistake in downshifting. Most attribute this error to the fact that Castellotti was robbed of a holiday with Scala for the pettiest of reasons, thus the claim that his mind was not in the right place. This theory was exacerbated by the fact he had to wake up extremely early and drive a considerable distance to reach Modena in the first place. The *true cause* of his death was still unknown. Multiple sources claim that Enzo Ferrari, upon hearing news of the crash, said something to the tune of, \\\"Castellotti? Dead? What a pity. *How's the car?*\\\"\\n\\nWhatever it was, a petty debate over a trivial lap record robbed Formula One of a rising star in his prime. One who could've done so much more. **And yet,** despite this, his story in motor racing is extremely colourful. \\n\\nHe scored a podium in just his second start in F1. He was the protege to Alberto Ascari, and also heavily involved in the scene of his death. Impacted by this, he convinced a major manufacturer shutting up shop to loan him a chassis, with which he would become the *youngest ever polesitter* in F1 at the time. He would finish his rookie season third, a feat that remained unbeaten for 41 years. He won the Mille Miglia *all by himself* in downright atrocious conditions. He had a fiery rivalry with a fellow compatriot to see who would be their country's next future star. He married one of Italy's most famous celebrities at the time. And he died because of a wager set over lunch.\\n\\nThat is the story of '*Il Bello*', Eugenio Castellotti.\\n\\n*****\\n\\nSources:\\n\\n[**The Limit: Life and Death in Formula One's Most Dangerous Era** by Michael Cannell](https://books.google.com.sg/books?id=4UjKS5w8udcC\\u0026pg=PT100\\u0026dq=castellotti+delia+scala\\u0026hl=en\\u0026sa=X\\u0026ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEILzAB#v=onepage\\u0026q=castellotti%20delia%20scala\\u0026f=false)\\n\\n[**Enzo Ferrari: A Life** by Richard Williams](https://books.google.com.sg/books?id=BfFHSYJwOUwC\\u0026pg=PA187\\u0026dq=castellotti+delia+scala\\u0026hl=en\\u0026sa=X\\u0026ved=0ahUKEwiEitDM_ZfiAhV363MBHVmOCgkQ6AEIKTAA#v=onepage\\u0026q=castellotti%20delia%20scala\\u0026f=false)\\n\\n[**Too Fast A Life** by Martin Shepherd](https://books.google.com.sg/books?id=gEFLDwAAQBAJ\\u0026pg=PT126\\u0026dq=castellotti+delia+scala\\u0026hl=en\\u0026sa=X\\u0026ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEINTAC#v=onepage\\u0026q=castellotti%20delia%20scala\\u0026f=false)\\n\\n[Motorsport Magazine (This plus many of their contemporary race reports)](https://www.motorsportmagazine.com/archive/article/february-1998/65/young-bloods) -- [8W @ Forix](http://forix.autosport.com/8w/castellotti.html) -- [Motorsport Memorial](http://www.motorsportmemorial.org/focus.php?db=ct\\u0026n=63) -- [Ferrari Owner's Club](http://archive-focgb.co.uk/happenings/2001/january/castellotti.html) -- [Scuderia Ferrari Legends](http://www.scuderia-legends.it/eugenio.htm)\\n\\n[F1 Racing (via PressReader)](https://www.pressreader.com/uk/f1-racing-uk/20180501/281655370651027) -- [Veloce Today](https://www.velocetoday.com/eugenio-castellotti-by-graham-gauld/) -- [Racing Sportscars](https://www.racingsportscars.com/driver/results/Eugenio-Castellotti-I.html) -- [StatsF1](https://www.statsf1.com/en/eugenio-castellotti.aspx) -- [Revs Institute](https://revsinstitute.org/the-collection/1955-lancia-d50/)\", \"author_fullname\": \"t2_go65n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testellotti\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqi80q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558280545.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558308654.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey y\\u0026#39;all, been a while away thanks to university, and it kinda sucked the wind out of me writing stuff about F1 for a while. But never mind that, I\\u0026#39;m back.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis will be the start of a little series of mine, where I focus on F1 drivers that \\u003Cem\\u003Eshould\\u003C/em\\u003E be recognised for their stories behind their career, yet for some reason, are barely footnotes in history. You all know the story of Ascari and Fangio, of Lauda and Hunt, of Prost and Senna, of Schumacher and Hakkinen and so on. However, there are many more stories of drivers that don\\u0026#39;t receive the attention they deserve. Whether stories of success or failure, glory or ignominy, tragedy or happiness, these stories are worthy of remembering and retelling. This little series of posts are not Random Driver Highlights, given how they\\u0026#39;re not...y\\u0026#39;know, random. But instead, they\\u0026#39;ll each have their own post, cause they deserve it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first driver I want to spotlight is an Italian driver for Ferrari in the 1950\\u0026#39;s. His story isn\\u0026#39;t \\u003Cem\\u003Ethat\\u003C/em\\u003E unknown, but compared to his contemporaries, it\\u0026#39;s very, very hidden unless you search for his name. He was F1\\u0026#39;s youngest polesitter at the time, with that record lasting for 13 years. He is directly involved with the death of a legend of a sport. He dated a rather famous Italian celebrity that got them on gossip pages. And he was very, \\u003Cstrong\\u003Every\\u003C/strong\\u003E handsome. Like, ridiculously handsome.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the story of Eugenio Castellotti.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"https://www.classicdriver.com/sites/default/files/styles/article_full/public/183477804a.jpg?itok=mIrjs49d\\\"\\u003EEugenio Castellotti\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESTATISTICS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENationality:\\u003C/strong\\u003E Italian\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EYears in F1:\\u003C/strong\\u003E 1955-57\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETeams Raced For:\\u003C/strong\\u003E Lancia, Ferrari\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEntries:\\u003C/strong\\u003E 14\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EStarts:\\u003C/strong\\u003E 14\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPodium Finishes:\\u003C/strong\\u003E 3\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPole Positions:\\u003C/strong\\u003E 1 (\\u003Cem\\u003E1955 Belgian Grand Prix\\u003C/em\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPoints:\\u003C/strong\\u003E 19.5\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHighest Finish:\\u003C/strong\\u003E 2nd (\\u003Cem\\u003ETwice -- 1955 Monaco and 1956 French Grands Prix\\u003C/em\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGood looks:\\u003C/strong\\u003E On a scale from 1-10, \\u003Ca href=\\\"http://formula-fan.ru/assets/images/drivers/Castellotti_Eugenio.jpg\\\"\\u003E\\u003Cem\\u003Ehe was a goddamn 17\\u003C/em\\u003E\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 1: Baby You\\u0026#39;re a Rich Kid\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EEvery report on how Castellotti began his career states that it was due to his wealth, being able to buy a Ferrari sportscar at the young age of 20. Most 20 year-olds would be worrying about paying off their university fees, but here was Eugenio, buying himself a Ferrari. So, naturally, the narrative was that he had a mollycoddled childhood by two rich, wealthy parents and was able to buy his way into motorsport. Right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell...not quite. I think. His mother, Angela, according to some accounts, was unmarried and \\u003Cem\\u003Eonly sixteen\\u003C/em\\u003E when she gave birth to Eugenio. Not to mention that his father, a very, \\u003Cem\\u003Every\\u003C/em\\u003E wealthy lawyer, reportedly first met Eugenio at the age 9. Most other sources just hook onto the fact that his family was wealthy, but if the above is true, that his dad impregnated someone at 16 and didn\\u0026#39;t bother taking care of their child until nine years later, life may not have been \\u003Cem\\u003Ethat\\u003C/em\\u003E rosy for young Eugenio as some sources claim.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEugenio, however, quickly gained a fascination for cars, and supposedly learned how to drive through the Castellotti\\u0026#39;s family driver. As he grew up, he even tried to fake his age to obtain a driving license. Despite the probable family tensions between his mom and his dad for, well, \\u003Cstrong\\u003Ethat\\u003C/strong\\u003E situation, there was one thing that both his parents agreed on: that Castellotti \\u003Cem\\u003Eshould not race\\u003C/em\\u003E. They became increasingly restrictive with Castellotti\\u0026#39;s passion, but that probably drove young Eugenio further into getting a racing career.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis was until his dad died when Eugenio was either 12 or 19. I don\\u0026#39;t know this for sure as sources are picky, but more sources point towards 19. Because, when his dad died, he left a massive, and I mean \\u003Cstrong\\u003Emassive\\u003C/strong\\u003E, inheritance to Eugenio. I don\\u0026#39;t know how much, but damn if it didn\\u0026#39;t look like Loadsamoney. From there, Eugenio went into a manic shopping spree, often fancying finely-tailored suits here and there. However, still against his mother\\u0026#39;s wishes, Eugenio used his money to explore his passion, motor racing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd that\\u0026#39;s how Eugenio Castellotti bought his first Ferrari, a 166MM sportscar, at the young age of 20. But, unlike most ridiculously rich youth of the generation, he didn\\u0026#39;t buy the 166MM to stare at it in his garage every once in a while. He was going to \\u003Cstrong\\u003Erace it\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, Castellotti figured that the best way to start off racing wouldn\\u0026#39;t be a few simple club races, oh no. His first race was the gruelling 1,080-kilometre Tour of Sicily, where he unsurprisingly failed to finish. Not to be perturbed by this little blip, Castellotti opted to enter the frikin\\u0026#39; \\u003Cstrong\\u003EMille Miglia\\u003C/strong\\u003E, or 1000 Miles in Italian, probably one of the grandest road races ever. There, he actually finished a credible 6th in class and 50th in an overall field of \\u003Cem\\u003E322 starters\\u003C/em\\u003E. As inexperienced as he was, Castellotti proved he wasn\\u0026#39;t just a regular rich kid who bought his way into racing. His first two races were only two of the toughest sportscar races, and by golly did he do well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInto 1952, and Castellotti\\u0026#39;s form in sportscars just got better and better over time, leading to his first win in the Gold Cup at Pescara. Buoyed by all this success, he felt it was about time he entered the grandest event of all, the Monaco Grand Prix. However, it wouldn\\u0026#39;t be his first Formula One start. The Monaco Grand Prix was going through some financial difficulties, and with radical changes in rules in the World Driver\\u0026#39;s Championship, the organisers played a \\u003Cem\\u003Esafe bet\\u003C/em\\u003E and hosted the 1952 Grand Prix for sports cars instead.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s not to say the field was any weaker, though. A number of British up-and-comers like Stirling Moss and Peter Collins entered, not to mention crafty French veterans in Robert Manzon and Louis Rosier. Entering a Grand Prix of such prestige so early in his career, Castellotti would have his work cut out for him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, Castellotti showed an oddly cool head when everyone lost theirs, especially when Stirling Moss and other drivers ploughed into Reg Parnell\\u0026#39;s broken down Aston Martin. Following the pile-up it would be Castellotti who would inherit the lead from Vittorio Marzotto. However, the heat would take its both drivers and cars, and both had to make a mandatory pit stop to attend to both the cars and drivers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAccording to urban legend, when Castellotti stopped, he also requested for a \\u003Cstrong\\u003Ebottle of Coke\\u003C/strong\\u003E. Apparently, this slowed Castellotti\\u0026#39;s stop significantly, maybe because Coke was hard to source in Monaco, or Castellotti just had to sip Coke leisurely, I don\\u0026#39;t know. Whatever the case, this was enough to hand the lead back to Marzotto, who went on to win the Monaco Grand Prix. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti\\u0026#39;s performance, where he lost the Monaco Grand Prix to a bottle of Coke, didn\\u0026#39;t go unnoticed, though, and despite a lucky escape in Vila Real where marshals carried him out of the way from an oncoming pileup, through the next two years, including a win at the Portuguese Grand Prix in 1952 and the Messina 10 hours in 1953.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHis shot at the big time, though, was just on the horizon. And it would come from none other than the \\u003Cem\\u003Ereigning champion of Formula 1\\u003C/em\\u003E, Alberto Ascari.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 2: Lancia\\u0026#39;s Lancer\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EIn his career so far, Castellotti had just been entering races as a privateer, mainly entering with Ferrari\\u0026#39;s purchased from his father\\u0026#39;s inheritance. Being a relatively youthful driver in the sport, he was seen as one of Italy\\u0026#39;s brightest young talents to carry Italy\\u0026#39;s motorsport image into the future, so he was probably in high demand. It would probably be just a matter of time before he got snapped up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen he met Alberto Ascari. Holder of the record for most consecutive victories in F1 at the time (\\u003Cem\\u003Eand all the way until 2013\\u003C/em\\u003E) and had secured his second consecutive World Driver\\u0026#39;s Championship by the time of the Italian Grand Prix, when he met the young Castellotti. Despite his service for Ferrari, pay disputes and other issues led the current reigning champion to leave the Prancing Horse and join, out of all teams, Lancia, who were all set to make their leap into Formula One.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd, out of all people, Ascari hand-picked both his mentor, Luigi Villoresi, and his now-protege, \\u003Cstrong\\u003EEugenio Castellotti\\u003C/strong\\u003E, to join him in Lancia. Yep, he was handpicked by probably the best driver in the world to not only be his teammate for the upcoming season, but also taken under his wing as his \\u003Cem\\u003Eprotege\\u003C/em\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELancia had doubts over his drive, though, after a dismal showing at the Nurburgring 1000km, but those doubts were cast aside after a brilliant third place in the Carrera Panamericana. Heck, sources say him and teammate Piero Taruffi could have actually contested for the win, but received orders from above to hold station behind leader Fangio to play it safe, already having a massive lead to the rest of the field and to keep a 1-2-3 finish for Lancia.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, for 1954, Lancia\\u0026#39;s F1 project encountered delay after delay. Not quite as delayed as \\u0026quot;The Thief and the Cobbler\\u0026quot;, but still, delayed by a lot. So much so that they let Ascari and Villoresi race for other teams while they continued to toil over their chassis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti, meanwhile, didn\\u0026#39;t follow down their path. He remained loyal to Lancia and, as their \\u0026#39;junior driver\\u0026#39;, was given the opportunity to race in a multitude of sportscar events. However, instead of anticipated success, Eugenio recorded DNF after DNF after DNF in many sportscar races, from the Sebring 12 hours to Mille Miglia to Targa Florio, poor Castellotti didn\\u0026#39;t have \\u003Cstrong\\u003Eanything\\u003C/strong\\u003E going right for him in 1954, save for winning his second Italian Mountain Championship on the trot in hillclimbing. And when Lancia were \\u003Cem\\u003Efinally\\u003C/em\\u003E able to enter their long-awaited D50 in the season-closing race at Spain, they only had enough for Ascari and Villoresi, leaving Castellotti by the sidelines once again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E1955 came around, and finally Lancia were ready with their D50 project. It took a while, but come the Argentine Grand Prix, Eugenio was all ready to step foot into the big leagues, Formula One. However, as most people who know their F1 history, the 1955 Argentine Grand Prix was probably the \\u003Cstrong\\u003Eworst race possible\\u003C/strong\\u003E to take your first steps in F1. The heat was held in mind-melting temperatures reaching \\u003Cem\\u003E40 degrees Celsius\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot only was it mind-melting, but also car-melting. This proved to be the case when Villoresi\\u0026#39;s Lancia gave up on lap \\u003Cstrong\\u003E2\\u003C/strong\\u003E. As shared drives were essentially part-and-parcel with Formula One at the time, Castellotti was relieved by Villoresi on lap 20 to cut his first Formula One start short. Probably mercifully, too, as Villoresi wrecked the Lancia just 15 laps later.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next race for him at Monaco, though, finally showed off what Castellotti was capable of. He qualified a stellar \\u003Cem\\u003Efourth\\u003C/em\\u003E in just his second race for Lancia, and in his first lap, moved up the field with a great start and this \\u003Ca href=\\\"https://youtu.be/XSqH-uf1-xQ?t=108\\\"\\u003E\\u003Cem\\u003Edownright bonkers overtake for 1955 standards\\u003C/em\\u003E\\u003C/a\\u003E on Stirling Moss at the station hairpin to take second on lap one. After a crazy battle with Moss early on, Moss\\u0026#39;s Mercedes dominance won out and Castellotti settled into a battle for third with teammate Ascari and Jean Behra.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn that battle, though, Castellotti cut a tyre after driving too aggressively and mounting several kerbs on the streets of Monaco, forcing a pitstop that dropped him to ninth, essentially being a precursor to the crazed, balls-out driving style that Castellotti would go on to develop with time in future Formula One starts. However, the dashing youngster here was only in his second race, and yet, thanks to some retirements and some seriously impressive driving, Castellotti came in \\u003Cstrong\\u003Esecond place\\u003C/strong\\u003E in just his second Grand Prix start, a result that undoubtedly would\\u0026#39;ve been a victory had it not been for the tyre trouble mentioned earlier.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of those retirements, though, was his mentor and teammate, Ascari, as he ploughed through barriers and past bollards into the Monaco harbour in one of F1\\u0026#39;s most famous crashes never filmed, primarily because all the focus was on Stirling Moss\\u0026#39; smoking Mercedes just ahead in the pitlane. Despite the frightening looking crash and the aftermath, Ascari mercifully left the accident scene with nothing more than a broken nose.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis was bad for Castellotti, as just the week after that, he and Ascari were teaming up to drive a Ferrari 750 Monza for the Supercortemaggiore in Monza. On the 26th of May, 1955, Castellotti and Villoresi were ready to test the unpainted, newly developed car before the race, and had invited Ascari to spectate, probably to give advice to young Eugenio like he always had, or just to see how the car handled before their upcoming event. Impulsively, during a break in action before lunch, Ascari elected to drive the car for a few laps. Some say it was to test the car he was due to race in a couple of days, others say it was to test his psyche and get back on track after his mammoth crash in Monaco.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDressed in a suit and tie, he didn\\u0026#39;t have any racing gear on him, especially his lucky blue helmet, still under repair from his accident in Monaco. So, without thinking, he borrowed Castellotti\\u0026#39;s helmet and set out for a few laps. On the third lap, at Curva Vialone, Ascari spun out, either due to ill-effects from Monaco, distractions from his flapping tie, or someone or something crossing the track ahead of him. The car proceeded to somersault, killing the two-time champion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti was distraught. He was one of the first at the scene and saw his close friend and mentor pass in front of his very eyes. He lent Ascari his helmet that allowed him to test the car in the first place. Emotionally, he was probably a mess. Yet, at the same time, he was probably more driven than ever.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhich was why it came to be a shock when Lancia announced their immediate withdrawal from Formula One. It was partially due to the loss of their stalwart, but financial problems had also been piling on the Italian outfit, which was the main reason for their withdrawal. Unperturbed, though, Castellotti begged them to participate in the upcoming Belgian Grand Prix. Lancia couldn\\u0026#39;t send their team to Belgium, though, so they just lent Castellotti two of their D50s to enter as a privateer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFull of emotion, Eugenio arrived at Spa with a fire lit under him. The Mercedes team were clearly the team to beat, and with the revolutionary W196, looked near unstoppable through the season. Castellotti hadn\\u0026#39;t even been to Spa before today. And yet, on the first day of practice, his lap times were falling rapidly on the near nine-mile circuit. As the day came to a close, Castellotti had already run a \\u003Cem\\u003Efull-race distance\\u003C/em\\u003E in practice. But on one of his last laps, the time he set was a purely incredible 4:18.1. Half a second better than Fangio, a full second ahead of Moss. And, luckily for Castellotti, the second day was completely rained out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll this meant that Eugenio Castellotti, in just his \\u003Cstrong\\u003Ethird\\u003C/strong\\u003E Grand Prix, following the recent death of his mentor and close friend, after the withdrawal of his team and entering the race \\u003Cem\\u003Eall by himself\\u003C/em\\u003E, had just beaten the near-unbeatable Mercedes to become the \\u003Cstrong\\u003Eyoungest polesitter in Formula One history\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlthough his Lancia was eventually outpaced on race day by the Mercs and retired from a still-impressive third place with transmission issues, there was almost no doubt in many people\\u0026#39;s minds, that he truly was the next Ascari.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, one of \\u003Cem\\u003Etwo\\u003C/em\\u003E potential future Ascaris.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 3: Ferrari\\u0026#39;s Future\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EAfter the closure of Lancia, Ferrari had snapped up most of their assets, and this included Castellotti, the Prancing Horse having been impressed by the promise shown by their young countryman. Indeed, it was out with the old, in with the new at Ferrari, as Nino Farina was forced to scale back his racing commitments due to persistent injuries, and so in stepped Castellotti for the next race at the Netherlands.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next two results weren\\u0026#39;t exactly the greatest for Eugenio, salvaging a 5th in a troublesome Ferrari in Zandvoort and transmission issues plaguing him all weekend in Aintree, retiring from his main entry, and substituting Mike Hawthorn late in the race only guaranteed them a then sixth place finish, which scored them \\u003Cem\\u003Enul points\\u003C/em\\u003E back in the 50\\u0026#39;s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe season-ending Italian Grand Prix, though, was his first real great race for Ferrari. Having acquired the Lancia D50\\u0026#39;s, Ferrari elected to race them for the Italian Grand Prix, seeing them as much faster than the Ferrari 625s and 555s they had with them. However, throughout practice, both D50\\u0026#39;s suffered intense tyre wear with the Ferrari-contracted Englebert tyres on the oval banking as opposed to the Pirelli tyres it was designed for. So, after qualifying 4th, Castellotti switched to the supposedly lesser-competitive 555 for the race. For the opening portions of the race, he surprised everyone by sticking with the four dominant Mercedes machines, giving the tifosi something to cheer about. However, ragged Eugenio slowly fell off the pace. And up stepped his rival.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuigi Musso was born into nobility in Rome in 1924. Being a few years Castellotti\\u0026#39;s senior, he had an earlier start into racing than him, and had impressed for the Maserati in most of his starts, including a podium in the Spanish Grand Prix and a couple of wins in non-championship Grand Prix. And him being a Roman driving for Maserati, he simply couldn\\u0026#39;t let a Milanese driving for Ferrari beat him in their home Grand Prix. So, for a good twenty-odd laps, the two battled hard, being separated by a matter of \\u003Cem\\u003Einches\\u003C/em\\u003E at some point in the Grand Prix. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEventually, Castellotti won out as Musso\\u0026#39;s Maserati petered out after the intense battle. And with that battle won and the retirement of a few Mercedes machines, Eugenio salvaged a podium for Ferrari in their home race, ending the season with 12 total points. With other drivers like Farina and Hans Herrmann unable to complete a full season due to injury, and the inconsistency of others like Trintignant and Musso in such a short season, these 12 points were enough for Castellotti to finish \\u003Cstrong\\u003Ethird\\u003C/strong\\u003E in the World Driver\\u0026#39;s Championship, best of the rest behind the Mercedes duo of Fangio and Moss. This was the best championship finish for a debutant in F1, a record that would be equalled, but never beaten for \\u003Cstrong\\u003E41 years\\u003C/strong\\u003E before Jacques Villeneuve finished 2nd in the 1996 championship, a record equalled by Lewis Hamilton in 2007.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEnzo Ferrari kept his services for 1956, where they\\u0026#39;d be using the D50, now badged as a \\u0026#39;Lancia-Ferrari\\u0026#39;, that Castellotti had used to good effect the previous season. However, Castellotti wasn\\u0026#39;t going to spearhead the team, as with Mercedes\\u0026#39; withdrawal from motorsport following the Le Mans disaster, Fangio made waves by signing for Ferrari. Also signing for Ferrari was Luigi Musso, setting the scene for a potential rivalry between the two rising Italian stars. Among the two, though, Ferrari seemed to prefer Castellotti, being selected to pair with Fangio for major endurance races that year, while Musso was stuck with Schell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Formula One, though, Musso got the early upper hand when a shared drive with Fangio led to victory for the pair of them, though that only really came to pass when multiple drivers, including Castellotti, had all sorts of mechanical issues. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you recall from earlier, Castellotti had developed a reputation as being a wild driver, often blasting off straight from the gate before wearing out as the race goes on. However, given all that I\\u0026#39;ve seen from nearly every source about Castellotti\\u0026#39;s wild driving style, it\\u0026#39;s all the more puzzling that his greatest triumphs in 1956 came in \\u003Cem\\u003Eendurance racing\\u003C/em\\u003E, out of all things. The first of such victories came in the 12 hours of Sebring, where he and Fangio fought off the challenge of the Jaguar squad in the fastest Sebring 12 hours at the time. His second victory, however, was more impressive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in the previous year\\u0026#39;s Mille Miglia, Castellotti was embarrassingly dominated by Moss and Denis Jenkinson before his retirement with tyre issues. He would find out later that Moss and Jenkinson were using a navigation system, which would later turn out to be a prototype for pace notes now commonly used in rallying events. Upon Jenkinson letting him know of the news, Eugenio simply shook his head, saying he couldn\\u0026#39;t possibly drive with such a navigation system.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBesides, come 1956, Castellotti would enter the Mille Miglia \\u003Cem\\u003Eby himself\\u003C/em\\u003E, so there was no navigator for him to follow. If that wasn\\u0026#39;t so much of a disadvantage for him, it was made worse as the weather conditions started to turn especially nasty. Normally, drivers as manic as him would fall victim to the conditions. Indeed, another young, manic driver attempting to make a name for himself that race was Wolfgang von Trips, who, while chasing the leading driver, \\u003Cem\\u003Etripped\\u003C/em\\u003E over the tricky conditions. (\\u003Cem\\u003EI swear I\\u0026#39;m a natural comedian guys\\u003C/em\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut that leading driver von Trips was chasing was none other than Castellotti himself. In rain that essentially blinded the roads ahead and ferocious winds, Castellotti wasn\\u0026#39;t even fazed. He never put a foot wrong. And apart from a short stint where he had to refuel, through each control point on the course, Castellotti \\u003Cstrong\\u003Enever lost the lead\\u003C/strong\\u003E for the full 1000 miles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes, you heard right. \\u003Cstrong\\u003ENever. Lost. The. Lead.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDenis Jenkinson, co-driver to Moss, would comment on the event: \\u003Ca href=\\\"https://www.motorsportmagazine.com/archive/article/june-1956/26/another-mille-miglia-moss\\\"\\u003E\\u0026quot;We were not racing against Musso, Castellotti or Fangio; it seemed that we were fighting for the mere right to go on living.\\u0026quot;\\u003C/a\\u003E. And yet, in this battle for survival, Castellotti turned it into a driving masterclass. And, despite the undeniable truth that having a navigator in a thousand-mile road race would certainly help, Castellotti pulled this off all by himself. What an absolute legend.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack to Formula One, though, his performances weren\\u0026#39;t so legendary. One thing he was very good at was qualifying, as evidenced when \\u003Ca href=\\\"https://www.statsf1.com/en/statistiques/pilote/divers/grille-moyenne.aspx\\\"\\u003EStatsF1 placed him \\u003Cstrong\\u003E13th\\u003C/strong\\u003E all-time in best average qualifying performances (min. 10 GP starts)\\u003C/a\\u003E. On race-day, his starts would be fantastic, but more often than not, a whole bevy of mechanical problems would drop him down the grid. This was the case for most of 1956, retiring from 3rd in Argentina, 5th in Monaco and 4th in Belgium despite having promising starts in all these races.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn France, he got a similarly fantastic start, and actually led for a few early laps before seceding the lead to Fangio. However, once Fangio retired, Castellotti was all but in the clear and seemed to be destined to win his first ever Grand Prix and the spearhead in a Ferrari 1-2. However, teammate Peter Collins was competing for the title, and so the order was given through the pit-board for Collins to pass Castellotti for the win. One of the earliest examples of team-orders lost Castellotti his chance for an F1 victory, but he still trailed Peter Collins right on his bumper, being separated by just \\u003Cem\\u003E0.3 seconds\\u003C/em\\u003E at the line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter these performances, though, the wild side of Eugenio came back to form, having probably the worst race of his F1 career to date in Silverstone, dicing with many local entries and spinning out on the opening lap at the Nurburgring. Teammate and rival Musso had also had a rough season, with a crash in a sportscar event sidelining him for a couple events, not to mention every other race since his shared win in Argentina has ended with him failing to finish. With just one event left in the calendar, their home race in Monza, both Castellotti and Musso were determined to make the race their highlight of 1956. And neither wanted to give way.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETheir team leader, Fangio, was well aware of their competition, despite being in a championship hunt at the time. He also remembered how the D50s ripped every tyre to shreds in the last Italian Grand Prix, so he gave Eugenio and Musso sage advice. He\\u0026#39;d lead the way so Castellotti and Musso could pace their laps without destroying any tyres. With ten laps, he\\u0026#39;d pull over and let Castellotti and Musso duke it out for the finish, \\u003Cem\\u003Ekeirin style.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EMeasured and steady\\u003C/em\\u003E was the advice from Fangio to the young drivers. But they didn\\u0026#39;t listen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstead, Musso and Castellotti went for a \\u003Cstrong\\u003E\\u003Cem\\u003EBALLS OUT, FLAT-OUT, BAT OUT OF HELL, NO FUCKS GIVEN, MY DICK IS BIGGER THAN YOURS, TRADIN\\u0026#39; PAINT\\u003C/em\\u003E\\u003C/strong\\u003E scrapheap for the lead the \\u003Cem\\u003Emoment\\u003C/em\\u003E the green flag dropped. Castellotti was the leader for the majority of this intense battle, but Musso was nowhere near giving up. It was the battle the tifosi wanted, the two Italian drivers for the Prancing Horse, battling for supremacy on hallowed racing ground.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, this battle couldn\\u0026#39;t last forever. Fangio\\u0026#39;s advice was right. The tyres on both Musso\\u0026#39;s and Castellotti\\u0026#39;s cars didn\\u0026#39;t last the whole race. They didn\\u0026#39;t even last for half distance. Heck, not even \\u003Cem\\u003Equarter-distance\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth of their tyres completely wore out their threads by \\u003Cstrong\\u003Elap 4\\u003C/strong\\u003E. You heard me. Lap. FOUR.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWorse for Castellotti, his stop was a measure longer than Musso\\u0026#39;s and was left playing the catch-up game. Paying no heed to his earlier lesson or Fangio\\u0026#39;s prior advice, he continued the \\u003Cstrong\\u003E\\u003Cem\\u003EPEDAL TO THE METAL, I DON\\u0026#39;T GIVE A DAMN, DON\\u0026#39;T LIFT OR YOU\\u0026#39;RE A PUSSY\\u003C/em\\u003E\\u003C/strong\\u003E strategy to catch up to Musso. And by lap \\u003Cem\\u003Enine\\u003C/em\\u003E, his tyre punctured yet again and sent him spinning onto the main straight, ending his race.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy all accounts, his 1956 season, results wise, wasn\\u0026#39;t the best. Just the two points finishes left him sixth in the championship, though to be fair his pace was \\u003Cem\\u003Efar, far greater\\u003C/em\\u003E than those results indicate. In fact, over on GP Rejects, I ran an alternative championship where points were scored after just three laps. And, spoilers, \\u003Ca href=\\\"https://gprejects.com/forum/viewtopic.php?f=12\\u0026amp;t=7589#p350138\\\"\\u003ECASTELLOTTI FREAKIN\\u0026#39; WON\\u003C/a\\u003E (though admittedly thanks to dropped scores, but \\u003Cstrong\\u003Estill\\u003C/strong\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s more, he had plenty of things to smile about that year outside of F1. Securing his seat at Ferrari. Sharing the win with \\u003Cem\\u003EEl Maestro\\u003C/em\\u003E at the Sebring 12 Hours. And finally \\u003Cstrong\\u003Edominating the field\\u003C/strong\\u003E at the Mille Miglia. And it\\u0026#39;s not just racing achievements Castellotti had to smile about as well.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 4: Il Bello\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EMost drivers from the 50\\u0026#39;s had cool-ass nicknames. Fangio was El Maestro, also known as \\u003Cem\\u003E\\u0026#39;The Master\\u0026#39;\\u003C/em\\u003E. Jose Froilan Gonzalez was known as \\u003Cem\\u003EThe Pampas Bull\\u003C/em\\u003E. Luigi Fagioli was known as the goddamn \\u003Cem\\u003EABRUZZI ROBBER\\u003C/em\\u003E. Seriously, if you were a racing driver in the 50\\u0026#39;s, it was almost part and parcel that you\\u0026#39;d get a dope-ass nickname as a reward.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, when Castellotti got his nickname, there was only one obvious choice: \\u003Cem\\u003EIl Bello\\u003C/em\\u003E. Put simply, \\u003Cstrong\\u003EThe Beautiful\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd goddamn, he was \\u003Ca href=\\\"https://cdn-8.latimages.com/images/mgl/ZnzlQo/s4/1017237256-LAT-19550716-315_29.jpg\\\"\\u003E\\u003Cem\\u003Ebeautiful\\u003C/em\\u003E\\u003C/a\\u003E. So. Damn. Beautiful. That perfect chin, the neat at hell hairstyle, those pecs...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...wait, where was I? Right. Ahem. Yeah, he was called Il Bello, and for good reason. Castellotti was \\u003Cem\\u003Eridiculously vain\\u003C/em\\u003E. He wore the finest of suits and shirts tailored exactly to how he wanted it. He kept his hair in perfect shape. He was even self-conscious about his lack of height, so much so that he often wore lifts in his shoes. He didn\\u0026#39;t earn the nickname Il Bello for nothing. And likewise, he didn\\u0026#39;t put the nickname to waste either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPartly because of his vanity, Castellotti was definitely a ladies man. He had many short flings throughout his racing career, all of which was followed relentlessly through gossip magazines. But, in 1956, he finally found someone to settle down with. And it couldn\\u0026#39;t have come with someone more high-profile.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDelia Scala was one of Italy\\u0026#39;s leading actresses at the time, and through 1956 and 1957, was beginning the transition to the silver screen to become one of Italy\\u0026#39;s pioneering television personalities. In the summer of 1956, she met Castellotti at a restaurant, and started talking to him simply because the pale blue colour of his trousers matched the car. Eventually, conversations about matching colours became a date, and then a relationship. A relationship that apparently newspaper reporters \\u003Cstrong\\u003Ecould not get enough of\\u003C/strong\\u003E. Italy\\u0026#39;s future legend in motor racing pairs up with leading young actress, both of whom were ridiculously hot. A gossip writer\\u0026#39;s wet dream.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis was two people\\u0026#39;s nightmare, though. First was Castellotti\\u0026#39;s mother, who upon meeting Scala for the first time, took her by the hand and said \\u0026quot;\\u003Cem\\u003EYou look like a waitress, the kitchen is over there\\u003C/em\\u003E\\u0026quot;. Good going, Mrs. Castellotti.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESecond, and maybe more importantly, was Enzo Ferrari. He hated it when his drivers would get all caught up in intense romance, furthermore if it affected them emotionally, and \\u003Cem\\u003Eeven more so\\u003C/em\\u003E if it said relationship was spread over nearly every damn newspaper in Italy. He thought it\\u0026#39;d affect their race pace and their drive to continue. And, for a while, it seemed Enzo was right.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti and Scala proposed and planned to get married in April. However, between the two, there was an intense discussion that turned into a disagreement. Scala wanted Castellotti to give up driving, fearing that it was getting too dangerous for him. However, Castellotti told Scala that \\u003Cem\\u003Eshe\\u003C/em\\u003E should give up acting as it would cost them time together when he wasn\\u0026#39;t racing elsewhere. I don\\u0026#39;t know where the two stood on the compromise, but it was certain that Castellotti would probably have to focus less on racing should he wish to remain with Scala.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, on track, results were still going pretty well for Castellotti in 1957, claiming \\u003Cem\\u003Eboth\\u003C/em\\u003E first and third in his respective driver lineups in the 1000 km of Buenos Aires. Additionally, in the Argentine Grand Prix for 1957, he took an early lead and was launching a serious challenge to the now-dominant Maseratis, but his Ferrari, like all the other Ferraris, gave up the ghost while running in third.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs was tradition in those days, the Argentine Grand Prix and other events in South America was run in their January summer, then Formula One would take a break until May to restart that season in Monaco. With marriage around the corner, Castellotti took the time to take a nice vacation in Florence with his bride-to-be Scala, who was booked for a play there for the time being. Call it a pre-marriage honeymoon, if you will.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA pre-marriage honeymoon that got rudely interrupted by none other than \\u003Cem\\u003EEnzo Ferrari\\u003C/em\\u003E. He rang up Castellotti in a huff and instructed him to go to Modena the next day to test the Ferrari. But this was more than just some last-minute test set up by Ferrari or a call for Castellotti to deputize for another driver.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it turns out, Jean Behra and Maserati were testing at Modena that day, and Enzo found out that they had beaten Ferrari\\u0026#39;s ultimate lap record around the Autodrome. According to some people, most notably Luigi Villoresi, Enzo Ferrari had placed a lunchtime wager on the lap record, so when he saw it got beaten, he called the first person he could find - that being Eugenio - to come down to Modena to \\u003Cem\\u003Etake that record back\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti was undoubtedly fuming, having had precious time with his fianc\\u00e9e interrupted for a stupid lap record. But he had to listen to Enzo. Nobody dared to oppose him. On March 14th, he left Florence at 4 a.m. to make the long drive to Modena, to get suited up and get ready for practice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn just his second or third flying lap, Castellotti lost control in the esses at the start of the lap, and the car overturned through a fence and into a (\\u003Cem\\u003Emercifully empty\\u003C/em\\u003E) grandstand. Castellotti was thrown out. The local parish priest, Don Sergio Mantovani, was present to read him the last rites as he laid dying on the track. He was only 26 years old. His wedding with Scala was just twenty-five days away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe reason for the crash has been disputed. Jean Behra, present at the track having set the aforementioned lap record, insisted there was a problem with the gearbox, having heard it shift to neutral just before the crash. Other sources feel it was just a mistake in downshifting. Most attribute this error to the fact that Castellotti was robbed of a holiday with Scala for the pettiest of reasons, thus the claim that his mind was not in the right place. This theory was exacerbated by the fact he had to wake up extremely early and drive a considerable distance to reach Modena in the first place. The \\u003Cem\\u003Etrue cause\\u003C/em\\u003E of his death was still unknown. Multiple sources claim that Enzo Ferrari, upon hearing news of the crash, said something to the tune of, \\u0026quot;Castellotti? Dead? What a pity. \\u003Cem\\u003EHow\\u0026#39;s the car?\\u003C/em\\u003E\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhatever it was, a petty debate over a trivial lap record robbed Formula One of a rising star in his prime. One who could\\u0026#39;ve done so much more. \\u003Cstrong\\u003EAnd yet,\\u003C/strong\\u003E despite this, his story in motor racing is extremely colourful. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe scored a podium in just his second start in F1. He was the protege to Alberto Ascari, and also heavily involved in the scene of his death. Impacted by this, he convinced a major manufacturer shutting up shop to loan him a chassis, with which he would become the \\u003Cem\\u003Eyoungest ever polesitter\\u003C/em\\u003E in F1 at the time. He would finish his rookie season third, a feat that remained unbeaten for 41 years. He won the Mille Miglia \\u003Cem\\u003Eall by himself\\u003C/em\\u003E in downright atrocious conditions. He had a fiery rivalry with a fellow compatriot to see who would be their country\\u0026#39;s next future star. He married one of Italy\\u0026#39;s most famous celebrities at the time. And he died because of a wager set over lunch.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat is the story of \\u0026#39;\\u003Cem\\u003EIl Bello\\u003C/em\\u003E\\u0026#39;, Eugenio Castellotti.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003ESources:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://books.google.com.sg/books?id=4UjKS5w8udcC\\u0026amp;pg=PT100\\u0026amp;dq=castellotti+delia+scala\\u0026amp;hl=en\\u0026amp;sa=X\\u0026amp;ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEILzAB#v=onepage\\u0026amp;q=castellotti%20delia%20scala\\u0026amp;f=false\\\"\\u003E\\u003Cstrong\\u003EThe Limit: Life and Death in Formula One\\u0026#39;s Most Dangerous Era\\u003C/strong\\u003E by Michael Cannell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://books.google.com.sg/books?id=BfFHSYJwOUwC\\u0026amp;pg=PA187\\u0026amp;dq=castellotti+delia+scala\\u0026amp;hl=en\\u0026amp;sa=X\\u0026amp;ved=0ahUKEwiEitDM_ZfiAhV363MBHVmOCgkQ6AEIKTAA#v=onepage\\u0026amp;q=castellotti%20delia%20scala\\u0026amp;f=false\\\"\\u003E\\u003Cstrong\\u003EEnzo Ferrari: A Life\\u003C/strong\\u003E by Richard Williams\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://books.google.com.sg/books?id=gEFLDwAAQBAJ\\u0026amp;pg=PT126\\u0026amp;dq=castellotti+delia+scala\\u0026amp;hl=en\\u0026amp;sa=X\\u0026amp;ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEINTAC#v=onepage\\u0026amp;q=castellotti%20delia%20scala\\u0026amp;f=false\\\"\\u003E\\u003Cstrong\\u003EToo Fast A Life\\u003C/strong\\u003E by Martin Shepherd\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.motorsportmagazine.com/archive/article/february-1998/65/young-bloods\\\"\\u003EMotorsport Magazine (This plus many of their contemporary race reports)\\u003C/a\\u003E -- \\u003Ca href=\\\"http://forix.autosport.com/8w/castellotti.html\\\"\\u003E8W @ Forix\\u003C/a\\u003E -- \\u003Ca href=\\\"http://www.motorsportmemorial.org/focus.php?db=ct\\u0026amp;n=63\\\"\\u003EMotorsport Memorial\\u003C/a\\u003E -- \\u003Ca href=\\\"http://archive-focgb.co.uk/happenings/2001/january/castellotti.html\\\"\\u003EFerrari Owner\\u0026#39;s Club\\u003C/a\\u003E -- \\u003Ca href=\\\"http://www.scuderia-legends.it/eugenio.htm\\\"\\u003EScuderia Ferrari Legends\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.pressreader.com/uk/f1-racing-uk/20180501/281655370651027\\\"\\u003EF1 Racing (via PressReader)\\u003C/a\\u003E -- \\u003Ca href=\\\"https://www.velocetoday.com/eugenio-castellotti-by-graham-gauld/\\\"\\u003EVeloce Today\\u003C/a\\u003E -- \\u003Ca href=\\\"https://www.racingsportscars.com/driver/results/Eugenio-Castellotti-I.html\\\"\\u003ERacing Sportscars\\u003C/a\\u003E -- \\u003Ca href=\\\"https://www.statsf1.com/en/eugenio-castellotti.aspx\\\"\\u003EStatsF1\\u003C/a\\u003E -- \\u003Ca href=\\\"https://revsinstitute.org/the-collection/1955-lancia-d50/\\\"\\u003ERevs Institute\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?auto=webp\\u0026s=49e05353005d1b94e69a503a85c8a023e6303b84\", \"width\": 690, \"height\": 678}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=199f563207acf9ddadb5280494f3037749885229\", \"width\": 108, \"height\": 106}, {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=388d0360b9d007780fefa48f131e3de8f90625b3\", \"width\": 216, \"height\": 212}, {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5138e05b08a0b9317c9c7fffb1201a571deaa029\", \"width\": 320, \"height\": 314}, {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=655e6ce878d37b26d6ae41f9e926b75cb8953af0\", \"width\": 640, \"height\": 628}], \"variants\": {}, \"id\": \"z-B0Vwn1GWLa5hHNK1-IIAjbQL_clQ3v3Ld6xsYOkL8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqi80q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TheStateOfIt\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqi80q/testellotti/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqi80q/testellotti/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558279854.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello everyone! Hopefully this is the right place to ask. I've dabbled in avatar making before, I've got a modicum of experience with working in Blender, converting models and then using them, but the biggest issue that I come across when I go to produce another avatar, is just finding parts. I was wondering if anyone had an idea where one could find clothing that is very similar to this?\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/a4tjy6oto2z21.png\\n\\nI'm a quiet guy and I like to wander around various worlds, to explore them. It's one of the things I find most fascinating about VRChat. I wanted to make an avatar to reflect that, but I'm getting to the point, where I might have to ask for a commission and money is not necessarily something I have ease of access to.\", \"author_fullname\": \"t2_5359pua\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Help] Trying to Find Some Model Parts, or Something Similar\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"media_metadata\": {\"a4tjy6oto2z21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 616, \"x\": 313, \"u\": \"https://i.redd.it/a4tjy6oto2z21.png\"}, \"m\": \"image/png\", \"id\": \"a4tjy6oto2z21\"}}, \"name\": \"t3_bqbir8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/TYDybMYKUihHAT5Qhg6-uM4OFWE_sz9TR8FIyBc8-D0.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558258876.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone! Hopefully this is the right place to ask. I\\u0026#39;ve dabbled in avatar making before, I\\u0026#39;ve got a modicum of experience with working in Blender, converting models and then using them, but the biggest issue that I come across when I go to produce another avatar, is just finding parts. I was wondering if anyone had an idea where one could find clothing that is very similar to this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/a4tjy6oto2z21.png\\\"\\u003Ehttps://i.redd.it/a4tjy6oto2z21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a quiet guy and I like to wander around various worlds, to explore them. It\\u0026#39;s one of the things I find most fascinating about VRChat. I wanted to make an avatar to reflect that, but I\\u0026#39;m getting to the point, where I might have to ask for a commission and money is not necessarily something I have ease of access to.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqbir8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Waffles201\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqbir8/help_trying_to_find_some_model_parts_or_something/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqbir8/help_trying_to_find_some_model_parts_or_something/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558230076.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_yx7zk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bqajgx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/KAEJI8CROhTd4dEecJUSL4Sccsn1gckIhloYaCKqA5w.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558252580.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?auto=webp\\u0026s=98250712b387129fe2909c112cebbd5ef07bd2f8\", \"width\": 1012, \"height\": 12706}, \"resolutions\": [{\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b441ad75b21dd7b318f000cd51059c7ac61748bc\", \"width\": 108, \"height\": 216}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=7ba834ef921e153c8ae41067b4dde6649ba0ad97\", \"width\": 216, \"height\": 432}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b891c40743e978c65f3ece392865ac1182735a00\", \"width\": 320, \"height\": 640}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=68c0725e883e5fbbdcaed1d9043174d38c4479f9\", \"width\": 640, \"height\": 1280}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=110343f6ab10679ed4f991391e5db61c9fa0833d\", \"width\": 960, \"height\": 1920}], \"variants\": {}, \"id\": \"nXm5UpK4-609PglxuqFbC0mo-uwmk_YJ7IUSV04c04g\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqajgx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cvardy1998\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqajgx/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/cgc1m25a52z21.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558223780.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Button Input| Command|\\n-|-|\\nPrimary Fire- Enemy| Fire and Fly at, then explode near, enemy|\\nPrimary Fire- Ground| Station Drone there|\\nSecondary Fire| Swap consciousness to selected Drone|\\n\\nHP Remaining| Hydra Stage| Hydra Effect(Damage)| Hydra Effect(Healing)| \\n-|-|-|-|\\n250+| Stage 1| 100%| 100%|\\n249-200| Stage 2| 110%| 105%|\\n199-150| Stage 3| 120% | 110%|\\n149-100| Stage 4| 130% | 115%|\\n99-50| Stage 5| 140%| 120%|\\n49-1| Stage 6| 150%| 125%|\\n\\n(Combat Mode): \\n\\nHydra Stage| Damage Per Second (DPS)\\n-|-|\\nStage 1| 50|\\nStage 2| 58|\\nStage 3| 65|\", \"author_fullname\": \"t2_1v6f2bm3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Table test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bq56as\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558194765.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558222045.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EButton Input\\u003C/th\\u003E\\n\\u003Cth\\u003ECommand\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPrimary Fire- Enemy\\u003C/td\\u003E\\n\\u003Ctd\\u003EFire and Fly at, then explode near, enemy\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPrimary Fire- Ground\\u003C/td\\u003E\\n\\u003Ctd\\u003EStation Drone there\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESecondary Fire\\u003C/td\\u003E\\n\\u003Ctd\\u003ESwap consciousness to selected Drone\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EHP Remaining\\u003C/th\\u003E\\n\\u003Cth\\u003EHydra Stage\\u003C/th\\u003E\\n\\u003Cth\\u003EHydra Effect(Damage)\\u003C/th\\u003E\\n\\u003Cth\\u003EHydra Effect(Healing)\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E250+\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 1\\u003C/td\\u003E\\n\\u003Ctd\\u003E100%\\u003C/td\\u003E\\n\\u003Ctd\\u003E100%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E249-200\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 2\\u003C/td\\u003E\\n\\u003Ctd\\u003E110%\\u003C/td\\u003E\\n\\u003Ctd\\u003E105%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E199-150\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 3\\u003C/td\\u003E\\n\\u003Ctd\\u003E120%\\u003C/td\\u003E\\n\\u003Ctd\\u003E110%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E149-100\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 4\\u003C/td\\u003E\\n\\u003Ctd\\u003E130%\\u003C/td\\u003E\\n\\u003Ctd\\u003E115%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E99-50\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 5\\u003C/td\\u003E\\n\\u003Ctd\\u003E140%\\u003C/td\\u003E\\n\\u003Ctd\\u003E120%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E49-1\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 6\\u003C/td\\u003E\\n\\u003Ctd\\u003E150%\\u003C/td\\u003E\\n\\u003Ctd\\u003E125%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E(Combat Mode): \\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EHydra Stage\\u003C/th\\u003E\\n\\u003Cth\\u003EDamage Per Second (DPS)\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStage 1\\u003C/td\\u003E\\n\\u003Ctd\\u003E50\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStage 2\\u003C/td\\u003E\\n\\u003Ctd\\u003E58\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStage 3\\u003C/td\\u003E\\n\\u003Ctd\\u003E65\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq56as\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"W-eye\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bq56as/table_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bq56as/table_test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558193245.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#Bloo\\n\\n####Blee\\n\\n\\u2014-\\n\\n\\nHello\", \"author_fullname\": \"t2_1v6f2bm3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bq4c8b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558217124.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EBloo\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EBlee\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u2014-\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq4c8b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"W-eye\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bq4c8b/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bq4c8b/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558188324.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Metroidvanias,\\n\\nThere are a few important sub updates that I would like to share. Pls read.\\n\\n---\\n\\n1 - **Pencil2Paper is stepping down as moderator**\\n\\nAfter having been this sub's primary moderator for 2 years, P2P has decided that it is time for him to step down, in order to focus on career-related endeavours. He will remain an honorary moderator on our Discord server for as long as he sees fit. This is a great opportunity for me to thank P2P for his efforts in growing the sub, for his friendship, and for the memes. We wouldn't be where we are today without you. ily no homo\\n\\nLuckily, the trusty /u/AAM2RF, a fine addition to the team, will continue to co-moderate the sub.\\n\\n---\\n\\n2 - **Stricter self-promotion policy**\\n\\nWe, as a moderation team, have always felt strongly about self-promotion in this community. In particular, YouTubers posting links to their Let's Plays and similar types of videos are removed immediately. Other forms of content blur the lines to an extent, but we always use the notion of a post having to benefit the reader more so than the poster. As an example of shameless self-promotion, at some point we saw a surge of posts about shirt designs with a user \\\"coincidentally\\\" having a link to the online shop in the comments. Another trend we're seeing are minor development updates that, while popular, ultimately count as self-promotion. The moderation team went back and forth on whether or not we thought these posts were okay, but the bottom line is that **r/metroidvania is not an advertisement space**, and we are going to uphold that ideal effective immediately. This means that:\\n\\n**Minor development updates are no longer permitted on this sub**. Appropriate types of posts pertaining to your own games include: 1) Official Announcements / Teasers and Trailers, and 2) Significant Updates, such as a new demo being available, or a launch post. If in doubt, contact the moderators.\\n\\nEverything already posted will be allowed to remain on the sub, but future posts violating this rule will be removed without warning.\\n\\nIf you are a developer and want to share minor development updates, we have a dedicated channel for that in our Discord server.\\n\\n---\\n\\n3 - **Sneaky Spam Filter**\\n\\nIt has recently come to light that a significant number of posts have been caught in reddit's spam filter. This is unfortunate, and has to do with how reddit tries to handle automatic filtering - by attaching \\\"smart\\\", machine-learned rules to the filter. For a relatively small sub like ours, the default spam filter setting is way too ambitious. We changed some settings which should alleviate the issue. We apologize for this inconvenience, and **we encourage you to re-submit any posts that were caught in the spam filter**.\\n\\n---\\n\\nThank you for reading, stay awesome.\", \"author_fullname\": \"t2_enb87\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"thingamajig\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bq1zjs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558286956.0, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558200815.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMetroidvanias,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere are a few important sub updates that I would like to share. Pls read.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E1 - \\u003Cstrong\\u003EPencil2Paper is stepping down as moderator\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter having been this sub\\u0026#39;s primary moderator for 2 years, P2P has decided that it is time for him to step down, in order to focus on career-related endeavours. He will remain an honorary moderator on our Discord server for as long as he sees fit. This is a great opportunity for me to thank P2P for his efforts in growing the sub, for his friendship, and for the memes. We wouldn\\u0026#39;t be where we are today without you. ily no homo\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuckily, the trusty \\u003Ca href=\\\"/u/AAM2RF\\\"\\u003E/u/AAM2RF\\u003C/a\\u003E, a fine addition to the team, will continue to co-moderate the sub.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E2 - \\u003Cstrong\\u003EStricter self-promotion policy\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe, as a moderation team, have always felt strongly about self-promotion in this community. In particular, YouTubers posting links to their Let\\u0026#39;s Plays and similar types of videos are removed immediately. Other forms of content blur the lines to an extent, but we always use the notion of a post having to benefit the reader more so than the poster. As an example of shameless self-promotion, at some point we saw a surge of posts about shirt designs with a user \\u0026quot;coincidentally\\u0026quot; having a link to the online shop in the comments. Another trend we\\u0026#39;re seeing are minor development updates that, while popular, ultimately count as self-promotion. The moderation team went back and forth on whether or not we thought these posts were okay, but the bottom line is that \\u003Cstrong\\u003E\\u003Ca href=\\\"/r/metroidvania\\\"\\u003Er/metroidvania\\u003C/a\\u003E is not an advertisement space\\u003C/strong\\u003E, and we are going to uphold that ideal effective immediately. This means that:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMinor development updates are no longer permitted on this sub\\u003C/strong\\u003E. Appropriate types of posts pertaining to your own games include: 1) Official Announcements / Teasers and Trailers, and 2) Significant Updates, such as a new demo being available, or a launch post. If in doubt, contact the moderators.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEverything already posted will be allowed to remain on the sub, but future posts violating this rule will be removed without warning.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you are a developer and want to share minor development updates, we have a dedicated channel for that in our Discord server.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E3 - \\u003Cstrong\\u003ESneaky Spam Filter\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt has recently come to light that a significant number of posts have been caught in reddit\\u0026#39;s spam filter. This is unfortunate, and has to do with how reddit tries to handle automatic filtering - by attaching \\u0026quot;smart\\u0026quot;, machine-learned rules to the filter. For a relatively small sub like ours, the default spam filter setting is way too ambitious. We changed some settings which should alleviate the issue. We apologize for this inconvenience, and \\u003Cstrong\\u003Ewe encourage you to re-submit any posts that were caught in the spam filter\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EThank you for reading, stay awesome.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Alpha Tester\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq1zjs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Fazermint\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/PostPreview/comments/bq1zjs/thingamajig/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bq1zjs/thingamajig/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558172015.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I am starting an open source R package for actuaries if anybody is interested in trying to learn R. I have version 0.0.1 on CRAN and github.\\n\\nHere is a vignette describing how to use it.\\n\\n[http://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies\\\\_intro.html](http://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies_intro.html)\\n\\nThe package is on CRAN, you can download the package using:\\n\\n\\tinstall.packages(\\\"expstudies\\\", type = \\\"source\\\")\\n\\n\\tlibrary(expstudies)\\n\\n\\tvignette(\\\"expstudies\\\\_intro\\\")\\n\\nThe code is on github: [https://github.com/ActuarialAnalyst/expstudies](https://github.com/ActuarialAnalyst/expstudies)\\n\\nThere is a note called Next Steps.txt on my github that is describing functionality I think would be useful if anybody wants to find stuff to build.\", \"author_fullname\": \"t2_3qls0vfv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"expstudies: An R package for Life Experience Studies (ongoing project)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpzmrt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558144296.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558172875.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am starting an open source R package for actuaries if anybody is interested in trying to learn R. I have version 0.0.1 on CRAN and github.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is a vignette describing how to use it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies_intro.html\\\"\\u003Ehttp://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies_intro.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe package is on CRAN, you can download the package using:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Einstall.packages(\\u0026quot;expstudies\\u0026quot;, type = \\u0026quot;source\\u0026quot;)\\n\\nlibrary(expstudies)\\n\\nvignette(\\u0026quot;expstudies\\\\_intro\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe code is on github: \\u003Ca href=\\\"https://github.com/ActuarialAnalyst/expstudies\\\"\\u003Ehttps://github.com/ActuarialAnalyst/expstudies\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is a note called Next Steps.txt on my github that is describing functionality I think would be useful if anybody wants to find stuff to build.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpzmrt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ActuarialAnalyst\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpzmrt/expstudies_an_r_package_for_life_experience/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpzmrt/expstudies_an_r_package_for_life_experience/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558144075.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3seiaklv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Podstew - Episode 1 - True Crime Mutton by sirpumpalot\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bptihg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 500, \"scrolling\": false, \"height\": 500}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"soundcloud.com\", \"oembed\": {\"provider_url\": \"http://soundcloud.com\", \"description\": \"Podstew curates the the best clips from the best episodes from the best podcasts creators in one place. Episode 1 is some of the clips from some of the best True Crime podcasts including My Favorite Murder, True Crime Garage, Sword \\u0026 Scale, Criminal and Serial.\", \"title\": \"Podstew - Episode 1 - True Crime Mutton by sirpumpalot\", \"type\": \"rich\", \"author_name\": \"sirpumpalot\", \"height\": 500, \"width\": 500, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 500, \"version\": \"1.0\", \"provider_name\": \"SoundCloud\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 500, \"author_url\": \"https://soundcloud.com/louis-lapat\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 500, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bptihg\", \"height\": 500}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/W5r7wav0m4kbzcFKjClk33izFMqQKDmYlK2yntvvJhs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558139769.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"soundcloud.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?auto=webp\\u0026s=ec06b343b294a64f58001c4c51f064403f858151\", \"width\": 500, \"height\": 500}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=abcb666730f7125ebcff761d2ae934b64bb2207b\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=125f4a4501a4ddd76e1af4c7f77df9bb3b9f1670\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2ad8caa62cbd486282cffc09b33654eb2c9cf08f\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"FnUOCtppeFRE35cTgB5gTlp5Ta11SzQ2wR8YQypipx4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bptihg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"throwaway--0039\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bptihg/podstew_episode_1_true_crime_mutton_by_sirpumpalot/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://soundcloud.com/louis-lapat/podstew-episode-1-true-crime-mutton\", \"subreddit_subscribers\": 703, \"created_utc\": 1558110969.0, \"media\": {\"type\": \"soundcloud.com\", \"oembed\": {\"provider_url\": \"http://soundcloud.com\", \"description\": \"Podstew curates the the best clips from the best episodes from the best podcasts creators in one place. Episode 1 is some of the clips from some of the best True Crime podcasts including My Favorite Murder, True Crime Garage, Sword \\u0026 Scale, Criminal and Serial.\", \"title\": \"Podstew - Episode 1 - True Crime Mutton by sirpumpalot\", \"type\": \"rich\", \"author_name\": \"sirpumpalot\", \"height\": 500, \"width\": 500, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 500, \"version\": \"1.0\", \"provider_name\": \"SoundCloud\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 500, \"author_url\": \"https://soundcloud.com/louis-lapat\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**SCP-4107:** [Dead](https://www.scp-wiki.net/scp-4107)\\n \\n**Object Class:** Euclid\\n \\n**Author:** PeppersGhost\\n \\n***\\n \\nWhat's up, it's me, dyqz. I decided to tackle 4107 after Peppers enlightened us about it on the SCPD discord, and after Brewster gave up on it.\\n \\nLet me just preface this by saying 4107 is up there with 4012, 3999 and [everything](http://www.scp-wiki.net/scp-3188) [Kalinin](https://www.scp-wiki.net/kalinins-proposal) [has](https://www.scp-wiki.net/scp-3084) [written](http://www.scp-wiki.net/scp-2003) in terms of sheer fuckery. If you haven't read 4107 already, I thoroughly encourage you to.\\n \\nAnyways, on with the declass.\\n \\n***\\n \\n**Brief Summary**\\n \\n4107 is a collection of the same woman's corpse. Around 311 of the corpses have been found, with the same DNA, wounds, basically the same corpse. Over and over again. No one knows what she is, no one knows why her corpse keeps reappearing. No one knows anything, apart from her injuries, which are... fucking wack. Here they are.\\n \\n* A big long gash down her forearm. Scratches found on the bones, made by a human finger. Presumably her own fingers.\\n* All teeth have been cut off\\n* Her milk teeth found in her stomach\\n* Fingernails and toenails ripped off, the skin at the base of the fingers peeled\\n* The head's hair has been threaded into the upper back\\n \\n...Nice.\\n \\nThe Foundation ruled the cause of death as blood loss. There's also these confusing lines.\\n \\n\\u003EAll injuries are believed to have been inflicted antemortem. In all cases, evidence has indicated that the victim changed clothes between the time most of the injuries were inflicted and the moment of death. Other traces of the victim's actions before death, such as footprints and unfinished meals, are also occasionally found in the vicinity.\\n \\nFor your information, antemortem means 'before death'. So she had to have lived through all the head stitching and the teeth ripping and the toenail pulling. Yikes.\\n \\nThat's not all, because of course it's not. 4107 can't be mentioned with *a specific action*. No matter what you try to do, what sneaky tricks you try to pull, you can't mention *this action* while talking about 4107.\\n \\n***\\n \\n**Meta**\\n \\nNow, while you read my summary, I hope you went through the same sense of confusion everyone else did while they were reading the article. Just the strangest, weirdest injuries happening to this girl over and over again, with no clear link between any of them. And what is *this goddamned action?*\\n \\nThis might be disappointing to you, but I have no answers. I don't know what happened to the girl. I don't know what the action is. Maybe you can read up on the Discussion page, some interesting theories are present there. I do know something of use, however. And to learn of that, we'll need to learn more about the article itself.\\n \\nThe article was written as part of a draft swap between two authors, Peppers and Othello. [Here's the original article by Othello, for anybody curious.](http://topia.wikidot.com/the-draft-othello-be-offering-for-draft-swap) The main gist of the article is that it's a woman who committed suicide, with the anomalous effect that anyone who sees her corpse believe she was murdered, and try to go on a crazy witch hunt to learn more about her 'murder'.\\n \\nSo, what is 4107? On a meta level, it is a replication of that effect in real life. The article has all of these weird symptoms that happened to this girl that are seemingly unconnected, and the reason for that is to get you thinking. What happened? What really happened to this girl, why are there so many injuries? But that's not the REAL point of the article. The real point of the article, [in Peppers' own words,](https://imgur.com/a/6FZgiye) it is the simulation of an infohazard. If you don't remember what an infohazard is, here's a short explanation.\\n \\n\\u003EAn *infohazard*, as coined by Sorts, is something that is triggered if you simply know about it. It is similar to but distinct from a *memetic* agent because a *memetic* agent is pure information whereas an *infohazard* is generally an object. [SCP-426](http://www.scp-wiki.net/scp-426) (I Am A Toaster) is a perfect example of this.\\n \\nRecall Othello's article, about how people kept trying to explain her suicide as murder. This article makes you those people. You know about this girl, with these weird wounds, and you're inclined to try to explain everything away. You're creating backstories for it that fit 4107's effects best. That, in a nutshell, is what 4107 is. Trying to force you to explain the unexplainable.\\n \\nThat answer might be unsatisfying. Honestly, it is. It's REALLY unsatisfying. I wanna know what happened to this girl too. But the fact of the matter is that the unsolvability of the article is key to making it effective. Would it really be effective if, say, there was a nice explanation to everything? No. Because then you wouldn't keep thinking about it, you wouldn't keep trying to theorize about it, and you'd certainly forget about it sooner or later. It'd just be another mundane, somewhat weird article.\\n \\nIn Peppers' own words,\\n \\n\\u003ESo while there is an answer for the textual level mystery, the actual purpose of the article is the meta level. The whole point of the textual level is that it can be filled in with all sorts of different interpretations, and the fact that one *may be* the *one true* interpretation is what creates the meta compulsion.\\n \\nAlso,\\n \\n\\u003EThere is more to the mystery, but the answer only exists to be something that's sought.\\n \\n***\\n \\n**Theories**\\n \\nI originally had a separate part of this article that was meant to explain the textual mystery, because as Peppers said:\\n \\n\\u003EFwiw in regards to the actual original mystery in the article, I'll go ahead and say that at least one person's theory that I've heard pretty much correctly guessed about 80% of the backstory I had in mind. So it's basically solvable\\n \\nSo let's go through some theories then! What could this even be? Honestly the declass wouldn't be complete without some attempt at explaining what's going on here.\\n \\nWe'll start off by figuring out what the _aforementioned action_ is. There are two answers I (ripped off of the Discussions tab) think have some merit.\\n \\nA theory is that the _aforementioned action_ is the act of suicide. The slit wrists certainly point to that, alongside the scratches on the bone itself. Those don't seem like murder marks, rather suicide marks. You'd think a thorough, scientific article on this woman would make some passing mentions to the possibility of suicide, but that's not present in the article. ctrl+f \\\"suicide\\\" doesn't pull anything up.\\n \\nBut that can't possibly be true - there's no way that she stitched her hairs to her back herself, that's not humanly possible. Rather, let's think. Why would she purposely be censoring some thoughts, or rather, some theories about her death?\\n \\nBecause those theories aren't true. By preventing people from talking about suicide about her in any way, she's reinforcing the idea that it's NOT suicide. Her killer's out there.\\n \\nNow, to explain the injuries.\\n \\nIf you scroll down and look at the tags, there's a tag that stands out. \\\"loop\\\". \\\"loop\\\" is certainly an interesting tag, and it gives me a perfect segue into this next bit:\\n \\nHer murderer is either her past self or her future self trying to kill her, and you've heard the grandfather paradox - the one where killing your grandfather in the past leads to Temporal Fuckery - her trying to kill her past self led to Temporal Fuckery. That's why her body keeps reanimating, that's why her old teeth are in her stomach and her new teeth gone. It's all a part of the Temporal Fuckery. How'd she get the means to go to the past to kill herself?\\n \\nHow she got the past means to kill herself, I'm not sure. Not everything really needs to have an origin, and there's not much in the article about her origin anyway. That's not important. She can also censor things about _a certain action that is probably suicide_, so clearly we're dealing with someone weird here, most likely a reality bender. That's not the important parts of the article.\\n \\n_Wait,_ you think. _I thought it wasn't suicide?_ _You just said it wasn't like, two paragraphs ago._\\n \\nHey fuck you I'm not done yet. Her killer is some Temporally Fucked version of herself that's still out there on the run, and TECHNICALLY it's not suicide (this is a stretch I know) so just hear me out.\\n \\nOk I think that's all I have, that's my main theory. In summary, her past self (or future self) went back in time (or forward in time) to kill herself but then that created some Temporal Fuckery which resulted in 4107.\\n \\nI'm not claiming that this is true. I could be completely off base, but the important thing is that - the theories aren't the main issue here. That's not the REAL meat of the article, the real meat of the article is the act of theorizing. Because when you do that, you are fulfilling the article's purpose. Recall that it's a simulation of an infohazard. Theorizing about it, thinking about it, trying to fill in some gaps, that's what 4107 is about. I encourage you to think of some theories of your own, maybe even share them in the comments if you'd like. We can compare and think of the correct answer - it's out there, Peppers said it.\\n \\n***\\n \\nThis is an interesting article in many ways. It's well written, with good execution and a really fucking interesting mystery. It's a brilliant new idea that I haven't seen before on the site, even with all of the meta articles out there. So go read it and upvote. It recently cracked +100, maybe you can help it crack +200.\\n \\nThat's all I have for you today. Thanks for reading.\", \"author_fullname\": \"t2_2qewmtrw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"scp 4107 - dead\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpssmd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558200511.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558136263.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ESCP-4107:\\u003C/strong\\u003E \\u003Ca href=\\\"https://www.scp-wiki.net/scp-4107\\\"\\u003EDead\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class:\\u003C/strong\\u003E Euclid\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor:\\u003C/strong\\u003E PeppersGhost\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s up, it\\u0026#39;s me, dyqz. I decided to tackle 4107 after Peppers enlightened us about it on the SCPD discord, and after Brewster gave up on it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet me just preface this by saying 4107 is up there with 4012, 3999 and \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3188\\\"\\u003Eeverything\\u003C/a\\u003E \\u003Ca href=\\\"https://www.scp-wiki.net/kalinins-proposal\\\"\\u003EKalinin\\u003C/a\\u003E \\u003Ca href=\\\"https://www.scp-wiki.net/scp-3084\\\"\\u003Ehas\\u003C/a\\u003E \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2003\\\"\\u003Ewritten\\u003C/a\\u003E in terms of sheer fuckery. If you haven\\u0026#39;t read 4107 already, I thoroughly encourage you to.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyways, on with the declass.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBrief Summary\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E4107 is a collection of the same woman\\u0026#39;s corpse. Around 311 of the corpses have been found, with the same DNA, wounds, basically the same corpse. Over and over again. No one knows what she is, no one knows why her corpse keeps reappearing. No one knows anything, apart from her injuries, which are... fucking wack. Here they are.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EA big long gash down her forearm. Scratches found on the bones, made by a human finger. Presumably her own fingers.\\u003C/li\\u003E\\n\\u003Cli\\u003EAll teeth have been cut off\\u003C/li\\u003E\\n\\u003Cli\\u003EHer milk teeth found in her stomach\\u003C/li\\u003E\\n\\u003Cli\\u003EFingernails and toenails ripped off, the skin at the base of the fingers peeled\\u003C/li\\u003E\\n\\u003Cli\\u003EThe head\\u0026#39;s hair has been threaded into the upper back\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E...Nice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Foundation ruled the cause of death as blood loss. There\\u0026#39;s also these confusing lines.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAll injuries are believed to have been inflicted antemortem. In all cases, evidence has indicated that the victim changed clothes between the time most of the injuries were inflicted and the moment of death. Other traces of the victim\\u0026#39;s actions before death, such as footprints and unfinished meals, are also occasionally found in the vicinity.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFor your information, antemortem means \\u0026#39;before death\\u0026#39;. So she had to have lived through all the head stitching and the teeth ripping and the toenail pulling. Yikes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s not all, because of course it\\u0026#39;s not. 4107 can\\u0026#39;t be mentioned with \\u003Cem\\u003Ea specific action\\u003C/em\\u003E. No matter what you try to do, what sneaky tricks you try to pull, you can\\u0026#39;t mention \\u003Cem\\u003Ethis action\\u003C/em\\u003E while talking about 4107.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMeta\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, while you read my summary, I hope you went through the same sense of confusion everyone else did while they were reading the article. Just the strangest, weirdest injuries happening to this girl over and over again, with no clear link between any of them. And what is \\u003Cem\\u003Ethis goddamned action?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis might be disappointing to you, but I have no answers. I don\\u0026#39;t know what happened to the girl. I don\\u0026#39;t know what the action is. Maybe you can read up on the Discussion page, some interesting theories are present there. I do know something of use, however. And to learn of that, we\\u0026#39;ll need to learn more about the article itself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe article was written as part of a draft swap between two authors, Peppers and Othello. \\u003Ca href=\\\"http://topia.wikidot.com/the-draft-othello-be-offering-for-draft-swap\\\"\\u003EHere\\u0026#39;s the original article by Othello, for anybody curious.\\u003C/a\\u003E The main gist of the article is that it\\u0026#39;s a woman who committed suicide, with the anomalous effect that anyone who sees her corpse believe she was murdered, and try to go on a crazy witch hunt to learn more about her \\u0026#39;murder\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, what is 4107? On a meta level, it is a replication of that effect in real life. The article has all of these weird symptoms that happened to this girl that are seemingly unconnected, and the reason for that is to get you thinking. What happened? What really happened to this girl, why are there so many injuries? But that\\u0026#39;s not the REAL point of the article. The real point of the article, \\u003Ca href=\\\"https://imgur.com/a/6FZgiye\\\"\\u003Ein Peppers\\u0026#39; own words,\\u003C/a\\u003E it is the simulation of an infohazard. If you don\\u0026#39;t remember what an infohazard is, here\\u0026#39;s a short explanation.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAn \\u003Cem\\u003Einfohazard\\u003C/em\\u003E, as coined by Sorts, is something that is triggered if you simply know about it. It is similar to but distinct from a \\u003Cem\\u003Ememetic\\u003C/em\\u003E agent because a \\u003Cem\\u003Ememetic\\u003C/em\\u003E agent is pure information whereas an \\u003Cem\\u003Einfohazard\\u003C/em\\u003E is generally an object. \\u003Ca href=\\\"http://www.scp-wiki.net/scp-426\\\"\\u003ESCP-426\\u003C/a\\u003E (I Am A Toaster) is a perfect example of this.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ERecall Othello\\u0026#39;s article, about how people kept trying to explain her suicide as murder. This article makes you those people. You know about this girl, with these weird wounds, and you\\u0026#39;re inclined to try to explain everything away. You\\u0026#39;re creating backstories for it that fit 4107\\u0026#39;s effects best. That, in a nutshell, is what 4107 is. Trying to force you to explain the unexplainable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat answer might be unsatisfying. Honestly, it is. It\\u0026#39;s REALLY unsatisfying. I wanna know what happened to this girl too. But the fact of the matter is that the unsolvability of the article is key to making it effective. Would it really be effective if, say, there was a nice explanation to everything? No. Because then you wouldn\\u0026#39;t keep thinking about it, you wouldn\\u0026#39;t keep trying to theorize about it, and you\\u0026#39;d certainly forget about it sooner or later. It\\u0026#39;d just be another mundane, somewhat weird article.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Peppers\\u0026#39; own words,\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESo while there is an answer for the textual level mystery, the actual purpose of the article is the meta level. The whole point of the textual level is that it can be filled in with all sorts of different interpretations, and the fact that one \\u003Cem\\u003Emay be\\u003C/em\\u003E the \\u003Cem\\u003Eone true\\u003C/em\\u003E interpretation is what creates the meta compulsion.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAlso,\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThere is more to the mystery, but the answer only exists to be something that\\u0026#39;s sought.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETheories\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI originally had a separate part of this article that was meant to explain the textual mystery, because as Peppers said:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EFwiw in regards to the actual original mystery in the article, I\\u0026#39;ll go ahead and say that at least one person\\u0026#39;s theory that I\\u0026#39;ve heard pretty much correctly guessed about 80% of the backstory I had in mind. So it\\u0026#39;s basically solvable\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESo let\\u0026#39;s go through some theories then! What could this even be? Honestly the declass wouldn\\u0026#39;t be complete without some attempt at explaining what\\u0026#39;s going on here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe\\u0026#39;ll start off by figuring out what the \\u003Cem\\u003Eaforementioned action\\u003C/em\\u003E is. There are two answers I (ripped off of the Discussions tab) think have some merit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA theory is that the \\u003Cem\\u003Eaforementioned action\\u003C/em\\u003E is the act of suicide. The slit wrists certainly point to that, alongside the scratches on the bone itself. Those don\\u0026#39;t seem like murder marks, rather suicide marks. You\\u0026#39;d think a thorough, scientific article on this woman would make some passing mentions to the possibility of suicide, but that\\u0026#39;s not present in the article. ctrl+f \\u0026quot;suicide\\u0026quot; doesn\\u0026#39;t pull anything up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut that can\\u0026#39;t possibly be true - there\\u0026#39;s no way that she stitched her hairs to her back herself, that\\u0026#39;s not humanly possible. Rather, let\\u0026#39;s think. Why would she purposely be censoring some thoughts, or rather, some theories about her death?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause those theories aren\\u0026#39;t true. By preventing people from talking about suicide about her in any way, she\\u0026#39;s reinforcing the idea that it\\u0026#39;s NOT suicide. Her killer\\u0026#39;s out there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, to explain the injuries.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you scroll down and look at the tags, there\\u0026#39;s a tag that stands out. \\u0026quot;loop\\u0026quot;. \\u0026quot;loop\\u0026quot; is certainly an interesting tag, and it gives me a perfect segue into this next bit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHer murderer is either her past self or her future self trying to kill her, and you\\u0026#39;ve heard the grandfather paradox - the one where killing your grandfather in the past leads to Temporal Fuckery - her trying to kill her past self led to Temporal Fuckery. That\\u0026#39;s why her body keeps reanimating, that\\u0026#39;s why her old teeth are in her stomach and her new teeth gone. It\\u0026#39;s all a part of the Temporal Fuckery. How\\u0026#39;d she get the means to go to the past to kill herself?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow she got the past means to kill herself, I\\u0026#39;m not sure. Not everything really needs to have an origin, and there\\u0026#39;s not much in the article about her origin anyway. That\\u0026#39;s not important. She can also censor things about \\u003Cem\\u003Ea certain action that is probably suicide\\u003C/em\\u003E, so clearly we\\u0026#39;re dealing with someone weird here, most likely a reality bender. That\\u0026#39;s not the important parts of the article.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EWait,\\u003C/em\\u003E you think. \\u003Cem\\u003EI thought it wasn\\u0026#39;t suicide?\\u003C/em\\u003E \\u003Cem\\u003EYou just said it wasn\\u0026#39;t like, two paragraphs ago.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHey fuck you I\\u0026#39;m not done yet. Her killer is some Temporally Fucked version of herself that\\u0026#39;s still out there on the run, and TECHNICALLY it\\u0026#39;s not suicide (this is a stretch I know) so just hear me out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOk I think that\\u0026#39;s all I have, that\\u0026#39;s my main theory. In summary, her past self (or future self) went back in time (or forward in time) to kill herself but then that created some Temporal Fuckery which resulted in 4107.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not claiming that this is true. I could be completely off base, but the important thing is that - the theories aren\\u0026#39;t the main issue here. That\\u0026#39;s not the REAL meat of the article, the real meat of the article is the act of theorizing. Because when you do that, you are fulfilling the article\\u0026#39;s purpose. Recall that it\\u0026#39;s a simulation of an infohazard. Theorizing about it, thinking about it, trying to fill in some gaps, that\\u0026#39;s what 4107 is about. I encourage you to think of some theories of your own, maybe even share them in the comments if you\\u0026#39;d like. We can compare and think of the correct answer - it\\u0026#39;s out there, Peppers said it.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EThis is an interesting article in many ways. It\\u0026#39;s well written, with good execution and a really fucking interesting mystery. It\\u0026#39;s a brilliant new idea that I haven\\u0026#39;t seen before on the site, even with all of the meta articles out there. So go read it and upvote. It recently cracked +100, maybe you can help it crack +200.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s all I have for you today. Thanks for reading.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?auto=webp\\u0026s=1553a87c5e9cc9a77446c6201895fe3e249eb1a0\", \"width\": 835, \"height\": 340}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0d7497f34f16a9edfdc923c233c6b5e3110e1d46\", \"width\": 108, \"height\": 43}, {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=2a2ce22bd1794280aa8ac8690f1a65e0cc54ce8a\", \"width\": 216, \"height\": 87}, {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5b2a5cbcc715d7dd08e742f6350327555b98d40a\", \"width\": 320, \"height\": 130}, {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a38702857c8dc996beed473e395c484b90c0c10d\", \"width\": 640, \"height\": 260}], \"variants\": {}, \"id\": \"GNqlwzMFaNw_8CcLzPq1qR2pANG92KVPHLXd7RKU3PI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpssmd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dyqz\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpssmd/scp_4107_dead/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpssmd/scp_4107_dead/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558107463.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_14ln8v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bpqdnn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UNqhsOUJmWQ2t4sHX0UOTnzheok0G9SVqpRL6ffKMuU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558123374.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgflip.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?auto=webp\\u0026s=fddbe8a9b179ed977621edcd7999d89a6c1fdcec\", \"width\": 360, \"height\": 202}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2ff40466a56ae465ba222ff2c92d17a9ea5f4bca\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d7b9d6edfe19f3d744b036f76950800e2e9e8bb3\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=548b4b887e3fefb2504b5554475d4b30f7d44a63\", \"width\": 320, \"height\": 179}], \"variants\": {}, \"id\": \"NSuoweBBRwM2msxx3gGpw9BRiUbbSHHOamy4surpy3U\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpqdnn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kilroy83\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpqdnn/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgflip.com/gif/2wm2zx\", \"subreddit_subscribers\": 703, \"created_utc\": 1558094574.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://www.youtube.com/watch?time\\\\_continue=123\\u0026v=6xItQ-cWgK0](https://www.youtube.com/watch?time_continue=123\\u0026v=6xItQ-cWgK0)\", \"author_fullname\": \"t2_1gk7l8fh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inauguration of the Montreal Paddock\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpk55p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558080308.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?time_continue=123\\u0026amp;v=6xItQ-cWgK0\\\"\\u003Ehttps://www.youtube.com/watch?time_continue=123\\u0026amp;v=6xItQ-cWgK0\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?auto=webp\\u0026s=053c40f1229c86afac6ab313fb6ddd103c166f15\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fe7f90a1f704ce581f914fa65344ff85ddff6298\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d2a2b15e83f83b69d39ef9cede0f14e8ab336eaf\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=54828e7e42bdab5059c348f799314cec96477c21\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"5YD429GR93M7FILAKNtTqyWyiOeA_fEXsM79eqTgh0w\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpk55p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"canisra\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpk55p/inauguration_of_the_montreal_paddock/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpk55p/inauguration_of_the_montreal_paddock/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558051508.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*Part 1 is [HERE](https://www.reddit.com/r/fixingmovies/comments/ak8qt1/my_take_on_fixing_the_dark_universe/), and Part 2 is [HERE](https://www.reddit.com/r/fixingmovies/comments/bomg7i/my_take_on_fixing_the_dark_universe_part_2/)*.\\n\\n*I promise, I'll only post one more of these before I call it quits. Real talk: I wanted to include my big grand finale in this post, but it got a little too long.*\\n\\n*Thanks to everyone who's followed along so far! I appreciate all of the comments!*\\n_____________________\\n\\n***The Case*** *(2026)*\\n\\n*Setting: New York, 1948*\\n\\nJust as the events of *The Vampire* are unfolding in Moscow in 1948, *another* story transpires on the other side of the Atlantic.\\n\\nThree years after the end of World War II, as thousands of battle-scarred American veterans adjust to peacetime, we meet a New York private detective named **Hank**. Not too long ago, Hank was a crack operator in the American **OSS**, and ran numerous daring missions against the Nazi war machine. As he attempts to put his military service behind him, he now runs a small-time private investigation firm out of a cramped office in Brooklyn, where he spends his days solving problems for desperate New Yorkers too afraid to turn to the police. When not pounding the pavement in search of clues, he enjoys the occasional romantic liaison with **Mary**\\u2014a pretty young reporter from a local tabloid newspaper, who occasionally hits him up for story leads.\\n\\nTo most casual observers, Hank is your typical square-jawed, street-smart private eye\\u2014but when people get to know him, they gradually notice a few odd details about him. He refuses to speak about his experiences in the war, but occasionally makes vague references to \\\"**The London Assignment**\\\", a dangerous OSS mission that went wrong. He regularly meets with an old contact from his OSS days, who supplies him with **unlabeled bottles of pills**, which he takes on a regular basis. Most strangely, there isn't a single mirror in his apartment, and he habitually avoids reflective surfaces, as if he's afraid of his own reflection.\\n\\nAs our story begins, the tabloid rags of New York are abuzz with stories about a new public menace:\\n\\\"**The Gemini Killer**\\\", a malevolent serial murderer who maims his victims by gruesomely ***removing half of their faces***. While the NYPD launches a manhunt for the elusive killer, Hank takes to the streets to launch his own investigation, convinced that he can find him before the police do. While he's ordinarily content to stay out of law enforcement's way, this case is distinctly personal for Hank, since the Gemini Killer's latest victim was his partner, a man named **Gabe**. Though he does his best to maintain a stoic facade, Hank can't help but feel a twinge of survivor's guilt, as he knows that *he* easily could have fallen prey to the killer instead.\\n\\nIn the first scene, Hank turns up at the scene of the Gemini Killer's latest murder, where the police are scouring the scene for clues. **Detective Enfield**, the cop in charge of the NYPD's manhunt, attempts to shoo him away from the crime scene, but he sticks around long enough to pick up one crucial clue: the newest murder victim was found with a distinctive tattoo along his arm, which Hank instantly recognizes as the work of a well-known Brooklyn tattoo artist with a devoted clientele. \\n\\nArmed with that useful nugget of information, Hank heads to the tattoo shop to interview the tattoo artist about his client, and he learns that the murder victim\\u2014a man named \\\"**Poole**\\\"\\u2014had a reputation for paranoia, and he was convinced that someone near his home in **the Bowery** was stalking him. Too late, the tattoo artist realizes that Poole's suspicions were true. Determined to help Hank avenge him, he gives him as much information as he can about Poole's personal life, hoping that Hank might be able to find his killer by retracing the steps in his daily routine.\\n\\nAs Hank searches the Bowery for further clues, his search window narrows considerably when he tracks down a craftsman who makes specialty knives, and the craftsman lets it slip\\u2014after an intense round of questioning\\u2014that he sold a vast collection of **surgical blades** to a mysterious man with a frightening appearance. As his search continues, Hank finally manages to track down a secluded apartment building in a crime-ridden neighborhood that the police avoid, and he realizes that he's struck gold when the landlord admits that he has a reclusive tenant in **Apartment 86** who he's never seen in person.\\n\\nUnder cover of darkness, Hank scales the building's fire escape and stealthily sneaks through the window of Apartment 86, finding it empty. As he lights a lamp to investigate, he recoils in horror at what he sees inside:\\n\\nThe room is filled with a vast collection of plaster casts of human heads, and each one is covered with grotesque \\\"masks\\\" stitched together from ***human skin***. Each one is perfectly split down the middle and stitched together from two different human specimens\\u2014and Hank soon realizes that they're crafted from the severed faces of the Gemini Killer's victims!\\n\\nAs he creeps through the apartment, Hank is unable to find any information that might allow him to identify the Gemini Killer, but he discovers\\u2014much to his surprise\\u2014that the mirror in the apartment's bathroom has been removed from the wall. Sufficiently shaken, he slips out of the apartment before anyone can catch him snooping, and he returns to his office as quickly as he can.\\n\\nBack at his office, Hank has a chance encounter with Mary, who's looking for a few juicy quotes about the search for the Gemini Killer. He declines to tell her anything about the case, but he invites her inside for a steamy night of lovemaking. As Hank closes his office door and locks it behind him, the camera closes on the door's glass panel, and\\u2014for the first time\\u2014we see the inscription written on the door.\\n\\nClear as day, it reads **\\\"Henry Jekyll, Licensed Private Investigator\\\"**.\\n\\n***SURPRISE!***\\n\\nOur story was actually an adaptation of *The Strange Case of Dr. Jekyll and Mr. Hyde* all along. \\\"Hank\\\" is **Henry Jekyll**, his partner \\\"Gabe\\\" was **Gabriel Utterson**, and his lover \\\"Mary\\\" is **Mary Reilly**. And now that you know that, you can probably guess the identity of the sinister Gemini Killer.\\n\\nHours later, Hank suddenly finds himself in a dark alleyway with his hands covered in blood. As he realizes what's happening, he realizes\\u2014much to his shock\\u2014that Mary is lying at his feet, stone dead. In his pocket, Hank finds a razor-sharp surgical knife, still soaked with Mary's fresh flesh blood. Worse still: when he reaches down to close her eyelids, he finds that half of her face has been removed.\\n\\nFinally piecing together the many strange details about the case, Hank realizes that *he* was the Gemini Killer all along\\u2014but for some reason, he can't seem to recall any of the many murders that he committed. It's as if someone else has been living inside his mind, leaving lengthy blank spaces in his memory whenever they take over.\\n\\nShaken to the core, Hank flees to a nearby dive bar, where he locks himself in the nearest bathroom. As he attempts to collect himself, he looks into the mirror above the sink, and sees his reflection staring back with a wicked grin on its face. From the depths of the mirror, the Gemini Killer\\u2014whose calls himself \\\"**Eddie Hyde**\\\"\\u2014mockingly congratulates Hank on finally solving the case of a lifetime.\\n\\nMoments later, Enfield kicks in the front door, and a squad of armed NYPD officers storm the bar with guns drawn. It seems that the police have found Mary's corpse, and eyewitness reports have led them to the bar. Hank sees that his clothes are soaked with blood, and he realizes that Enfield will arrest him as soon as he sees him. As he begins to panic, Hyde takes the opportunity to seize control of Hank's body again\\u2014and as he exits the bathroom to face the police, he reveals his trusty blades.\\n\\nIn a gruesome battle scene, Hyde mercilessly slaughters the police one by one, and finally kills Enfield with a well-placed headshot from a stolen service revolver. Too late, Hank regains control of his body and flees into the streets, leaving the blood-soaked bar behind him.\\n\\nAs the police flood the streets of New York looking for him, Hank narrowly manages to track down his old contact in the OSS, hoping that he might have some answers. Against his better judgment, his old contact (\\\"**The Major**\\\") agrees to provide what little help he can. Though the Major is initially reluctant to help a wanted fugitive, Hank insists that he's innocent.\\n\\nThe Major confirms that the fallout from \\\"The London Assignment\\\" affected Hank in strange ways, and he has never truly recovered from the events that transpired that day. The mysterious pills, which the Major still gives Hank without complaint, were intended to suppress his \\\"condition\\\". While they once worked perfectly, they're beginning to lose their effectiveness as the murderous Eddie Hyde becomes stronger. But try as he might, Hank still can't remember what happened in London.\\n\\nThe Major agrees to give Hank the dossier containing all known files on the London Assignment, which he secretly took from OSS headquarters after the agency was disbanded after the war. Inside the file, the Major tells Hank that he'll find everything that he needs to know about the mission\\u2014including the address of the building in London where everything went wrong. Determined to finally solve the mystery of his past, Hank leaves with the file, planning to book a flight to London with the help of a bootlegger pilot who owes him a favor.\\n\\nBefore he leaves, the Major gives Hank a final word of advice:\\n\\n*\\\"Watch yourself, son. If those cops find me, I'll insist you were never here. But if they find* ***you****, you're on your own.\\\"*\\n\\nAfter stealing a car and making his way upstate, Hank manages to make it to **the bootlegger**'s secret airstrip, where his plane is primed and ready for takeoff. After some tense negotiations, he agrees to fly Hank to London\\u2014but he insists that it's a one-way trip. Before they leave, he assures Hank that a wanted fugitive *isn't* the most dangerous cargo that he's ever smuggled. As they take off, Hank requests\\u2014to the bootlegger's befuddlement\\u2014that he handcuff him to his seat's armrest until they land.\\n\\nAs the plane rises into the air and soars over the Atlantic, Hank closes his eyes and drifts off to sleep. As he does, he finally remembers what happened in London...\\n\\nAt the height of the war, the OSS assigned Hank to track down and capture the infamous Nazi scientist **Dr. Hans Niemann**, who was rumored to be the mind behind the Third Reich's deadliest military projects. For years, Hank stalked the mad doctor across Europe as the war raged on\\u2014but Niemann was always one step ahead of him, and he never found him. But he *did* stumble upon evidence that the doctor was involved with a shady organization known as \\\"**Prodigium**\\\". As the OSS investigated Prodigium for clues about Niemann's whereabouts, they eventually discovered that the group had a base of operations in the heart of London itself, and they managed to uncover a plot to smuggle a mysterious chemical formula across the English Channel. Suspecting that the group was trafficking chemical weapons, the OSS deployed Hank to London to track down the formula and steal it.\\n\\nWorking fast, Hank managed to assassinate the Prodigium operative who was entrusted with carrying the formula, and he managed to escape with the leather briefcase containing the chemical vials. But his luck ran out when he tried to drive to the airport to rendezvous with his handlers, and discovered\\u2014just moments too late\\u2014that Prodigium had planted a bomb in his car. Hank bailed out of the car as the engine exploded, and he narrowly managed to survive the blast with minor burns and a concussion\\u2014but the case was destroyed in the explosion, and Hank was doused with chemicals as the glass vials shattered.\\n\\nAs he stumbled to his feet\\u2014half-blind, disoriented, and struggling to speak\\u2014he felt the chemicals seeping through his skin, transforming him in ways that he couldn't explain. Without warning, he found himself seized by the dark urge to kill, maim, and torture, and he felt a malevolent presence clawing its way into his heart. Worst of all, he found that he *couldn't remember his own name!* But as his vision cleared, he found himself staring right at the iron sign for **Hyde Park**. In that moment, Eddie Hyde was born.\\n\\nHank wakes as the plane touches down in a remote airfield on the outskirts of London. With his gun loaded and ready, he sets out in search of the address listed in the Major's files, which is allegedly the location of Prodigium's London headquarters. After a long walk across the bombed-out face of London, he finds a stately Victorian mansion at the address, and a well-dressed butler arrives at the door and invites him inside\\u2014as if he was expecting him.\\n\\nHank walks through the door of the mansion, where he's greeted by a room full of well-dressed men and women wearing masquerade masks, who gather around a circle of candles surrounding a mirror. In a scene eerily mirroring **Victor Frankenstein**'s first encounter with Prodigium at **Ingolstadt University** over a century earlier, the assembled members of the cult begin chanting an obscene prayer to \\\"**The Dark One**\\\". As Hank contemplates his reflection in the mirror, he sees the Dark One place a hand on his shoulder, causing half of his face to rot and wither away.\\n\\nAs Hank shrinks back in fear, a pair of armed guards force him to his feet and confiscate his gun, and an **elderly man** steps forward to greet him. In his gnarled hands, he carries an ornate silver dish with a golden chalice balanced atop it. The chalice is filled to the brim with green liquid\\u2014which Hank recognizes as the mysterious chemical agent from the London Assignment.\\n\\nThe elderly man introduces himself as the new leader of Prodigium, and\\u2014at long last\\u2014he explains the full story behind the mysterious formula.\\n\\nFor years, Prodigium's scholars and alchemists have believed that it might be possible to unlock the repressed dark side of the human psyche through chemistry, allowing ordinary people to unlock the darkness within their souls. Ever since his incident in London accidentally exposed him to the formula, the dark side of Hank's personality has been fighting for complete control of his soul, manifesting as his *alter ego* Hyde. But if he were to voluntarily ingest a full dose of the formula, Prodigium believes that his soul would be entirely consumed by darkness, allowing him to serve as the Dark One's living emissary on Earth.\\n\\nThe leader of Prodigium offers Hank a choice: he can willingly drink from the golden chalice, allowing Hyde to take full control of his mind, in exchange for his life; if he refuses to drink the potion, Prodigium will kill him\\u2014but he'll die with his free will fully intact.\\n\\nTorn between two impossible choices, Hank tries to push the chalice away, but Hyde seizes control of his body just in time to stop him. Although Hank tries his best to regain control, Hyde grabs the chalice and eagerly gulps the potion down, and the assembled members of Prodigium applaud as his eyes glaze over. Moments later, Hank smiles maliciously\\u2014and it's instantly clear that he has become Hyde permanently.\\n\\nThen all hell breaks loose.\\n\\nAs the elderly leader of Prodigium congratulates Hyde and welcomes him into the fold, Hyde grabs him by the throat and *breaks his neck* with his bare hands, then pulls a hidden blade from his boot and brutally murders three Prodigium members by slashing their jugulars. The guards draw their guns and try to shoot him, but Hyde manages to steal a guard's pistol, and a massive shootout ensues as he fires back at them. Once again, Hyde tears through the helpless crowd with ease, killing everyone he sees. As dozens of Prodigium members fall to the ground bleeding out, he throws his head back and cackles maliciously.\\n\\n***\\\"I'M NOBODY'S SLAVE!\\\"*** he screams. ***\\\"NO ONE CONTROLS EDDIE HYDE\\u2014GOD OR MORTAL!\\\"***\\n\\nThe shootout rages on, and the assembled guards try to surround Hyde\\u2014but he mows down everyone that dares to take a shot at him. Finally, as reinforcements arrive from another room, the guards manage to force Hyde into the basement of the mansion. As bullets fly, Hyde forces his way into the **boiler room**, where he takes a shot at the antique brass boiler. As the boiler explodes, half of the mansion suddenly erupts in flames, and most of the surviving Prodigium members burn to death as they're consumed in the blaze. The few remaining members futilely try to make a run for it; some of them pass out from smoke inhalation, and others are crushed by falling debris as the roof begins to collapse.\\n\\nAs the fire spreads through the mansion, Hyde defiantly shoots everyone he sees. When he finally runs out of bullets, he realizes that every last member of Prodigium is dead. The Dark One's cult failed in their mission, but Eddie Hyde got exactly what he wanted: Hank Jekyll lost the battle for his soul, and Hyde won.\\n\\n...Or *did* he?\\n\\nAs an exhausted Hyde drops his empty pistol and slumps against the wall, he looks into a nearby mirror. But it's not Hank that stares back from the mirror\\u2014it's *Hyde*.\\n\\nAgainst all odds, Hank has managed to summon the strength to fight Hyde, giving him control of his body for a few precious minutes. And for those few minutes, Hank chooses to stay in the basement as the mansion collapses around him.\\n\\nStaring out at him from the depths of the mirror, Hyde finally loses his cocky composure as he begs Hank to run to safety, warning him that he'll die if he doesn't.\\n\\n*\\\"That's the idea, Eddie old pal,\\\"* Hank says smirking. *\\\"Don't worry about me. My soul's in order, and I don't have any regrets. If this is what I've gotta do to bring you down, I consider it an honest trade. As for you... You've only got a few minutes left. Don't waste them in anger.*\\\"\\n\\nHyde screams at Hank as the fire envelops the basement. But as the mirror melts, and Hyde's face vanishes, his voice is finally silent. With that, the screen fades to black.\\n\\nA few hours later, three figures approach the ruins of the mansion as the London police pick their way through the ashes and rubble. As the camera swings around, we see their faces: it's **Eve**, **Lester Talbot**, and **Jacob Van Helsing**. \\n\\nTen years after their first meeting in Paris, the trio are now an inseparable team, and a decade of adventure has turned them into close friends. But as they survey Prodigium's ruined headquarters, they can only stare at the site of the massacre in befuddlement.\\n\\n*\\\"What the hell happened here?\\\"* Eve wonders aloud.\\n\\n*\\\"Perhaps divine justice,\\\"* Jacob says. *\\\"Or perhaps something else.\\\"*\\n\\n*\\\"We'll probably never know,\\\"* Lester says. *\\\"And for once, I think I'm alright with that...\\\"*\\n______________\\n\\n***The Creature*** *(2027)* \\n\\n*Setting: The Pacific, 1958*\\n\\nOur story begins with a flashback.\\n\\nSometime in the 19th century, a few promising young students gather in a cramped classroom at **Ingolstadt University** to hear a lecture from the eccentric old oceanographer **Professor Pierre Arronax**, who tells them an unlikely story about a perilous undersea voyage that he took with a mad sea captain called \\\"*Nemo*\\\". The students\\u2014including a few familiar faces like **Victor Frankenstein**, **Igor Waldman**, **Jack Griffin**, and a young **Abraham Van Helsing**\\u2014listen with bated breath as Arronax tells them about all of the strange things that he saw in the dark depths of the ocean. He tells them about his battles with giant squids, his brief sojourn to the ruins of Atlantis, and his time in the icy waters of the North Pole. But they're truly enraptured when he tells them about his strangest adventure of all: an encounter with a bizarre race of human-fish hybrids who dwell in the deepest depths of the oceans.\\n\\nThough some of the students initially doubt Arronax's story about the bizarre \\\"**ichthyoids**\\\", they change their tune when the Professor shows them a faded daguerrotype photo that he snapped of the creatures from the porthole of Nemo's submarine. As they stare at the grainy photo in awe, Arronax fondly reminisces about his adventure in the deep ocean, but he sadly admits that he's never been able to convince his scientific colleagues that the ichthyoids are real. But if *another* scientist managed to prove the creatures' existence by capturing an ichthyoid specimen and bringing it to the surface, that scientist's name would be enshrined forever in the annals of history. For in the depths of the ocean, he tells them, there are always mysteries waiting to be discovered...\\n\\nThe scenes fades out, and we return to the present day, where we see a familiar figure reading an antique leather diary packed with old photographs. As we zoom in on the diary, we see that it's the personal journal of Abraham Van Helsing\\u2014and one of the pictures is Arronax's photograph of the ichthyoids. And the figure reading the journal is none other than ***Dr. Hans Niemann***.\\n\\nThe year is 1958, and it's been 10 years since Niemann fled Russia and defected to the United States. Ever since that day, he has been hard at work designing weapons of war for the US military, and his handlers in the CIA have been all too happy to conceal his Nazi past. In years past, he played a key role in developing the hydrogen bomb for the Army; more recently, he designed the nuclear submarine **USS** ***Nautilus*** (named after Nemo's legendary submarine) for the US Navy, and helped plan **Project Mercury** for the fledgling space agency **NASA**. In time, his inventions may even put men on the Moon!\\n\\nBut after a decade of loyally working for the US government, Niemann now has a more personal project in mind: with the US Navy's blessing, he wants to lead an experimental submarine voyage to the uncharted depths of the Pacific Ocean, hoping to *finally* prove the existence of the mysterious ichthyoids. To do it, he has his sights set on one location: the shadowy **Marianas Trench**.\\n\\nOn a pristine Summer day, Niemann leaves the coast of **San Francisco** and sets off on a long ocean voyage to a remote naval base off the coast of Japan, where the US Navy has recently completed work on his experimental deep-ocean submersible **USS** ***Ammonite***. As he boards the *Ammonite* and prepares to dive, he recruits a motley crew of \\\"assistants\\\" to aid him in the journey. Hawaiian fisherman **Keoni Kamaka**, a decorated Navy veteran who saw action at Pearl Harbor, signs on as navigator; bookish young Japanese scientist **Ishiro Nakamura**, who devoted his life to science after losing his parents in the bombing of Hiroshima, agrees to be Niemann's research assistant; grizzled Australian sailor **John Allerdyce** (\\\"**Johnny Dice**\\\" to his friends) enlists as First Mate; and Jamaican-born engineer **Oliver \\\"Twisty\\\" O'Rear\\\"** joins the crew as a radio operator.\\n\\nAlthough they all sign on to crew the *Ammonite*, Niemann chooses not to tell them the true purpose of the mission\\u2014believing that they wouldn't have agreed to help him if they knew what he was really after. As far as they know, they're only crewing the vessel on its experimental test run.\\n\\nAs the *Ammonite* dives, tension soon erupts among the crew as Niemann admits that they'll be at sea for much longer than he led them to believe. Niemann knows that the Navy likely won't give him another chance to research the ichthyoids, so he refuses to return to port until he's found what he's looking for. Later, tensions escalate when the crew presses him on the true purpose of his mission, and Niemann admits that he's looking for a deep-ocean life-form that's never been proven to exist. Seeing Niemann as a delusional madman, Twisty and Kamaka tell him that his mission is a fool's errand, and they encourage him to call off the mission before he gets them all killed\\u2014though Ishiro is intrigued by the possibility of researching the ichthyoids.\\n\\nOn the second day of the voyage, another argument erupts among the crew when Johnny Dice questions Niemann about his past. Knowing of the doctor's German heritage, he comes to suspect (rightly) that he's one of the Nazi researchers who defected to the Allies to save himself after World War II. Still remembering his time spent fighting in the Pacific, he's repulsed by the idea of working for a Nazi. But Niemann, who has always worked hard to keep his past a secret, becomes enraged by Johnny's unrelenting questions\\u2014and he ultimately loses his temper and strikes him. As a fight ensues, Twisty is forced to intercede and separate the two, and they agree to keep their distance for the remainder of the voyage. But that night, tragedy strikes...\\n\\nAs he attempts to sleep, Niemann is plagued by a series of disturbing dreams about scaly figures lurking in the shadows of the Pacific. Before he wakes\\u2014shaking and drenched in sweat\\u2014he sees powerful tentacles reaching out to grab him. When he turns on his lamp, Niemann sees Johnny Dice standing over his bed with a knife in his hand, his eyes blank and glazed over. In a trance, Johnny lunges at Niemann and tries to stab him, and Niemann fights back. As a fight ensues, Johnny and Niemann struggle over the knife, and Johnny begins murmuring two words over and over again:\\n\\n*\\\"Go back... Go back... Go back...\\\"*\\n\\nAs Niemann tries to wrestle the knife from Johnny's hand, he accidentally stabs him in the chest with it, and calls the rest of the crew to help him stop the bleeding. When the others arrive, they become even *more* suspicious of Niemann when they see him standing over Johnny with a knife lodged in his chest. Remembering Niemann's violent argument with Johnny earlier in the day, they're reluctant to believe Niemann when he insists that Johnny attacked him. Try as they might, they're unable to stop the bleeding, and Johnny soon bleeds to death.\\n\\nRattled by Johnny's sudden death, the crew becomes even more terrified when the *Ammonite* suddenly stops moving, and they realize that the propeller has inexplicably become *jammed*. As they convene to discuss repairs, Ishiro suddenly recoils in fear when he sees a grotesque scaly face staring at him through the porthole; when he ties to get a closer look at it, the face vanishes into the darkness.\\n\\nAs the crew tries to convince Niemann to return to the surface, Kamaka agrees to don a diving suit and exit the airlock to repair the propeller from outside. In a tense scene, he feels his way along the exterior of the *Ammonite* while using a flashlight to light his way. When he finally reaches the propeller, he realizes that it isn't jammed, but it's somehow been *dismantled* with great care and precision. Working fast, he manages to reassemble the propeller\\u2014but as soon as he does, he's *grabbed* by powerful webbed hands, which drag him from the sub and pull him into the darkness. As the rest of the crew attempt to stay in touch with him via radio, they hear Kamaka's terrified screams as he dies.\\n\\nDespite their suspicions of Niemann, Twisty and Ishiro agree to cooperate with him until they can return to the surface\\u2014and with Kamaka's death, they suddenly realize that the ichthyoids are very real. Still, Niemann convinces them to remain below the surface for one more day, if only to ensure that Johnny and Kamaka didn't die in vain. Hours later, though, tragedy strikes again.\\n\\nWhen Niemann pays a visit to Ishiro's bunk to go over some research with him, he discovers that Ishiro has *committed suicide* by slashing his throat with a knife\\u2014and before dying, he daubed the words *\\\"GO BACK\\\"* on the bulkhead in his own blood. When Twisty finds him, he finally begins to believe Niemann's story about Johnny's mysterious trance. *Something* in the depths seems to be manipulating the crew's minds, driving them into madness in an effort to stop their voyage from uncovering too much. As they discuss recent events, Niemann tells Twisty about his bizarre dreams, theorizing that he had psychic images projected into his mind while he slept. His suspicions are confirmed when Twisty admits that he has also been having bizarre nightmares since the voyage began\\u2014and he *also* saw an image of a massive tentacled creature in his dreams.\\n\\nAt first, Twisty theorizes that the ichthyoids are responsible for the crew's madness, but Niemann persuades him that there's a more powerful force at work. After all, it would take an incredibly powerful brain to project such strong images directly into another creature's mind, and the ichthyoids are too small to possess such power. But since the ichthyoids always appear to act in perfect synchronicity with one another, perhaps they're *also* being psychically controlled. Perhaps they're just *drones*, and a more powerful creature is acting as their Queen.\\n\\nIn a desperate effort to avenge the other crew-members, Twisty agrees to help Niemann find the mysterious being that drove them to their deaths, knowing that he won't be able to live with himself if he passes up a chance to kill it. Pushing the *Ammonite*'s sonar array to its limits, he soon detects a massive structure on a nearby underwater plateau, and decides to check it out.\\n\\nIn the climax, Niemann and Twisty both don diving suits and venture onto the plateau, where\\u2014to their shock and horror\\u2014they discover a massive metallic structure perched atop the oceanic ridge, guarded by a massive swarm of ichthyoids. As Niemann approaches the metal structure, he realizes that it's actually a ***spaceship***, and he finds his mind swimming with bizarre voices and images whenever he moves closer to it.\\n\\nAt long last, Niemann realizes the truth about the ichthyoids: they're aquatic *aliens* who've been hiding in Earth's ocean ever since their spacecraft crashed in the Pacific. Judging by the amount of coral covering the drowned spacecraft, Niemann realizes that the ship must have crashed more than two centuries ago, long before any humans would have been able to find it.\\n\\nArmed with knives, harpoons and explosives, Twisty and Niemann drive off the ichthyoids in a massive underwater battle, and Niemann narrowly manages to force his way into the heart of the ruined spaceship\\u2014where a **massive tentacled beast** is waiting at the center of a glass enclosure. **The Creature**'s body resembles a massive swollen *brain*, explaining how its psychic abilities were so powerful. But despite the long reach of its tentacles, its body is far too massive to move; instead, it uses its psychic abilities to force enslaved ichthyoids to do its bidding, and they loyally bring it food and safeguard its larval offspring. In the glass enclosure where the Creature sits, the walls are lined with countess rows of transparent jars filled with murky amniotic fluid; inside each one, we can clearly see a miniature embryo with a brain-like body and slender tentacles.\\n\\nIn a climactic showdown, the Creature bombards Niemann with psychic energy and swipes at him with its massive tentacles. Niemann nearly passes out as the beast invades his mind, but he manages to land a good shot with a harpoon gun tipped with explosives, and he successfully wounds the Creature's massive brain. As it dies, the ichthyoids fall into disarray, and Niemann finally relaxes as the Creature's psychic attacks stop. With that, he and Twisty return to the *Ammonite* and make their way back to the surface, where they go their separate ways\\u2014agreeing *never* to tell anyone what they saw in the depths of the Pacific.\\n\\nIn the final scene, Niemann returns to his old lab in a remote military base on the California coast, where he resumes his old research. But when his handlers are out of earshot, he opens a locked cabinet and retrieves a small glass object. It's *one of the Creature's embryos*, which he secretly took from the Creature's drowned spaceship. As he lays the cylindrical glass jar on his table and strokes the glass fondly, the embryo's small tentacles begin to twitch.\\n\\n*\\\"Come, little one...\\\"* he says. *\\\"Together, I think you and I are going to accomplish wonders...\\\"*\\n\\nJust outside the base, where the Pacific Ocean laps at the stony shore, a scaly green head pokes out of the water. Moments later, an ichthyoid crawls out of the ocean and walks onto the beach, with six more behind it. Inside the lab, Niemann waves his hand\\u2014and in an instant, the scaly creatures are still.\\n\\nNiemann smiles, and the screen fades to black...\\n______________\\n\\n***The Case:*** In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\\"The Gemini Killer\\\" to justice. In a twist, it's revealed that Hank's full name is \\\"Henry Jekyll\\\", and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium's secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\n\\n***The Creature:*** Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they're aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they're slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures' drowned spaceship to kill the monster, and manages to steal one of the monster's embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpiv79\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558565104.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558073240.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EPart 1 is \\u003Ca href=\\\"https://www.reddit.com/r/fixingmovies/comments/ak8qt1/my_take_on_fixing_the_dark_universe/\\\"\\u003EHERE\\u003C/a\\u003E, and Part 2 is \\u003Ca href=\\\"https://www.reddit.com/r/fixingmovies/comments/bomg7i/my_take_on_fixing_the_dark_universe_part_2/\\\"\\u003EHERE\\u003C/a\\u003E\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EI promise, I\\u0026#39;ll only post one more of these before I call it quits. Real talk: I wanted to include my big grand finale in this post, but it got a little too long.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EThanks to everyone who\\u0026#39;s followed along so far! I appreciate all of the comments!\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Case\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003E(2026)\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESetting: New York, 1948\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust as the events of \\u003Cem\\u003EThe Vampire\\u003C/em\\u003E are unfolding in Moscow in 1948, \\u003Cem\\u003Eanother\\u003C/em\\u003E story transpires on the other side of the Atlantic.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThree years after the end of World War II, as thousands of battle-scarred American veterans adjust to peacetime, we meet a New York private detective named \\u003Cstrong\\u003EHank\\u003C/strong\\u003E. Not too long ago, Hank was a crack operator in the American \\u003Cstrong\\u003EOSS\\u003C/strong\\u003E, and ran numerous daring missions against the Nazi war machine. As he attempts to put his military service behind him, he now runs a small-time private investigation firm out of a cramped office in Brooklyn, where he spends his days solving problems for desperate New Yorkers too afraid to turn to the police. When not pounding the pavement in search of clues, he enjoys the occasional romantic liaison with \\u003Cstrong\\u003EMary\\u003C/strong\\u003E\\u2014a pretty young reporter from a local tabloid newspaper, who occasionally hits him up for story leads.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo most casual observers, Hank is your typical square-jawed, street-smart private eye\\u2014but when people get to know him, they gradually notice a few odd details about him. He refuses to speak about his experiences in the war, but occasionally makes vague references to \\u0026quot;\\u003Cstrong\\u003EThe London Assignment\\u003C/strong\\u003E\\u0026quot;, a dangerous OSS mission that went wrong. He regularly meets with an old contact from his OSS days, who supplies him with \\u003Cstrong\\u003Eunlabeled bottles of pills\\u003C/strong\\u003E, which he takes on a regular basis. Most strangely, there isn\\u0026#39;t a single mirror in his apartment, and he habitually avoids reflective surfaces, as if he\\u0026#39;s afraid of his own reflection.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs our story begins, the tabloid rags of New York are abuzz with stories about a new public menace:\\n\\u0026quot;\\u003Cstrong\\u003EThe Gemini Killer\\u003C/strong\\u003E\\u0026quot;, a malevolent serial murderer who maims his victims by gruesomely \\u003Cstrong\\u003E\\u003Cem\\u003Eremoving half of their faces\\u003C/em\\u003E\\u003C/strong\\u003E. While the NYPD launches a manhunt for the elusive killer, Hank takes to the streets to launch his own investigation, convinced that he can find him before the police do. While he\\u0026#39;s ordinarily content to stay out of law enforcement\\u0026#39;s way, this case is distinctly personal for Hank, since the Gemini Killer\\u0026#39;s latest victim was his partner, a man named \\u003Cstrong\\u003EGabe\\u003C/strong\\u003E. Though he does his best to maintain a stoic facade, Hank can\\u0026#39;t help but feel a twinge of survivor\\u0026#39;s guilt, as he knows that \\u003Cem\\u003Ehe\\u003C/em\\u003E easily could have fallen prey to the killer instead.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the first scene, Hank turns up at the scene of the Gemini Killer\\u0026#39;s latest murder, where the police are scouring the scene for clues. \\u003Cstrong\\u003EDetective Enfield\\u003C/strong\\u003E, the cop in charge of the NYPD\\u0026#39;s manhunt, attempts to shoo him away from the crime scene, but he sticks around long enough to pick up one crucial clue: the newest murder victim was found with a distinctive tattoo along his arm, which Hank instantly recognizes as the work of a well-known Brooklyn tattoo artist with a devoted clientele. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EArmed with that useful nugget of information, Hank heads to the tattoo shop to interview the tattoo artist about his client, and he learns that the murder victim\\u2014a man named \\u0026quot;\\u003Cstrong\\u003EPoole\\u003C/strong\\u003E\\u0026quot;\\u2014had a reputation for paranoia, and he was convinced that someone near his home in \\u003Cstrong\\u003Ethe Bowery\\u003C/strong\\u003E was stalking him. Too late, the tattoo artist realizes that Poole\\u0026#39;s suspicions were true. Determined to help Hank avenge him, he gives him as much information as he can about Poole\\u0026#39;s personal life, hoping that Hank might be able to find his killer by retracing the steps in his daily routine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Hank searches the Bowery for further clues, his search window narrows considerably when he tracks down a craftsman who makes specialty knives, and the craftsman lets it slip\\u2014after an intense round of questioning\\u2014that he sold a vast collection of \\u003Cstrong\\u003Esurgical blades\\u003C/strong\\u003E to a mysterious man with a frightening appearance. As his search continues, Hank finally manages to track down a secluded apartment building in a crime-ridden neighborhood that the police avoid, and he realizes that he\\u0026#39;s struck gold when the landlord admits that he has a reclusive tenant in \\u003Cstrong\\u003EApartment 86\\u003C/strong\\u003E who he\\u0026#39;s never seen in person.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnder cover of darkness, Hank scales the building\\u0026#39;s fire escape and stealthily sneaks through the window of Apartment 86, finding it empty. As he lights a lamp to investigate, he recoils in horror at what he sees inside:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe room is filled with a vast collection of plaster casts of human heads, and each one is covered with grotesque \\u0026quot;masks\\u0026quot; stitched together from \\u003Cstrong\\u003E\\u003Cem\\u003Ehuman skin\\u003C/em\\u003E\\u003C/strong\\u003E. Each one is perfectly split down the middle and stitched together from two different human specimens\\u2014and Hank soon realizes that they\\u0026#39;re crafted from the severed faces of the Gemini Killer\\u0026#39;s victims!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he creeps through the apartment, Hank is unable to find any information that might allow him to identify the Gemini Killer, but he discovers\\u2014much to his surprise\\u2014that the mirror in the apartment\\u0026#39;s bathroom has been removed from the wall. Sufficiently shaken, he slips out of the apartment before anyone can catch him snooping, and he returns to his office as quickly as he can.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack at his office, Hank has a chance encounter with Mary, who\\u0026#39;s looking for a few juicy quotes about the search for the Gemini Killer. He declines to tell her anything about the case, but he invites her inside for a steamy night of lovemaking. As Hank closes his office door and locks it behind him, the camera closes on the door\\u0026#39;s glass panel, and\\u2014for the first time\\u2014we see the inscription written on the door.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EClear as day, it reads \\u003Cstrong\\u003E\\u0026quot;Henry Jekyll, Licensed Private Investigator\\u0026quot;\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESURPRISE!\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur story was actually an adaptation of \\u003Cem\\u003EThe Strange Case of Dr. Jekyll and Mr. Hyde\\u003C/em\\u003E all along. \\u0026quot;Hank\\u0026quot; is \\u003Cstrong\\u003EHenry Jekyll\\u003C/strong\\u003E, his partner \\u0026quot;Gabe\\u0026quot; was \\u003Cstrong\\u003EGabriel Utterson\\u003C/strong\\u003E, and his lover \\u0026quot;Mary\\u0026quot; is \\u003Cstrong\\u003EMary Reilly\\u003C/strong\\u003E. And now that you know that, you can probably guess the identity of the sinister Gemini Killer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHours later, Hank suddenly finds himself in a dark alleyway with his hands covered in blood. As he realizes what\\u0026#39;s happening, he realizes\\u2014much to his shock\\u2014that Mary is lying at his feet, stone dead. In his pocket, Hank finds a razor-sharp surgical knife, still soaked with Mary\\u0026#39;s fresh flesh blood. Worse still: when he reaches down to close her eyelids, he finds that half of her face has been removed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally piecing together the many strange details about the case, Hank realizes that \\u003Cem\\u003Ehe\\u003C/em\\u003E was the Gemini Killer all along\\u2014but for some reason, he can\\u0026#39;t seem to recall any of the many murders that he committed. It\\u0026#39;s as if someone else has been living inside his mind, leaving lengthy blank spaces in his memory whenever they take over.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShaken to the core, Hank flees to a nearby dive bar, where he locks himself in the nearest bathroom. As he attempts to collect himself, he looks into the mirror above the sink, and sees his reflection staring back with a wicked grin on its face. From the depths of the mirror, the Gemini Killer\\u2014whose calls himself \\u0026quot;\\u003Cstrong\\u003EEddie Hyde\\u003C/strong\\u003E\\u0026quot;\\u2014mockingly congratulates Hank on finally solving the case of a lifetime.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoments later, Enfield kicks in the front door, and a squad of armed NYPD officers storm the bar with guns drawn. It seems that the police have found Mary\\u0026#39;s corpse, and eyewitness reports have led them to the bar. Hank sees that his clothes are soaked with blood, and he realizes that Enfield will arrest him as soon as he sees him. As he begins to panic, Hyde takes the opportunity to seize control of Hank\\u0026#39;s body again\\u2014and as he exits the bathroom to face the police, he reveals his trusty blades.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a gruesome battle scene, Hyde mercilessly slaughters the police one by one, and finally kills Enfield with a well-placed headshot from a stolen service revolver. Too late, Hank regains control of his body and flees into the streets, leaving the blood-soaked bar behind him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the police flood the streets of New York looking for him, Hank narrowly manages to track down his old contact in the OSS, hoping that he might have some answers. Against his better judgment, his old contact (\\u0026quot;\\u003Cstrong\\u003EThe Major\\u003C/strong\\u003E\\u0026quot;) agrees to provide what little help he can. Though the Major is initially reluctant to help a wanted fugitive, Hank insists that he\\u0026#39;s innocent.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Major confirms that the fallout from \\u0026quot;The London Assignment\\u0026quot; affected Hank in strange ways, and he has never truly recovered from the events that transpired that day. The mysterious pills, which the Major still gives Hank without complaint, were intended to suppress his \\u0026quot;condition\\u0026quot;. While they once worked perfectly, they\\u0026#39;re beginning to lose their effectiveness as the murderous Eddie Hyde becomes stronger. But try as he might, Hank still can\\u0026#39;t remember what happened in London.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Major agrees to give Hank the dossier containing all known files on the London Assignment, which he secretly took from OSS headquarters after the agency was disbanded after the war. Inside the file, the Major tells Hank that he\\u0026#39;ll find everything that he needs to know about the mission\\u2014including the address of the building in London where everything went wrong. Determined to finally solve the mystery of his past, Hank leaves with the file, planning to book a flight to London with the help of a bootlegger pilot who owes him a favor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore he leaves, the Major gives Hank a final word of advice:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Watch yourself, son. If those cops find me, I\\u0026#39;ll insist you were never here. But if they find\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003Eyou\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E, you\\u0026#39;re on your own.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter stealing a car and making his way upstate, Hank manages to make it to \\u003Cstrong\\u003Ethe bootlegger\\u003C/strong\\u003E\\u0026#39;s secret airstrip, where his plane is primed and ready for takeoff. After some tense negotiations, he agrees to fly Hank to London\\u2014but he insists that it\\u0026#39;s a one-way trip. Before they leave, he assures Hank that a wanted fugitive \\u003Cem\\u003Eisn\\u0026#39;t\\u003C/em\\u003E the most dangerous cargo that he\\u0026#39;s ever smuggled. As they take off, Hank requests\\u2014to the bootlegger\\u0026#39;s befuddlement\\u2014that he handcuff him to his seat\\u0026#39;s armrest until they land.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the plane rises into the air and soars over the Atlantic, Hank closes his eyes and drifts off to sleep. As he does, he finally remembers what happened in London...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the height of the war, the OSS assigned Hank to track down and capture the infamous Nazi scientist \\u003Cstrong\\u003EDr. Hans Niemann\\u003C/strong\\u003E, who was rumored to be the mind behind the Third Reich\\u0026#39;s deadliest military projects. For years, Hank stalked the mad doctor across Europe as the war raged on\\u2014but Niemann was always one step ahead of him, and he never found him. But he \\u003Cem\\u003Edid\\u003C/em\\u003E stumble upon evidence that the doctor was involved with a shady organization known as \\u0026quot;\\u003Cstrong\\u003EProdigium\\u003C/strong\\u003E\\u0026quot;. As the OSS investigated Prodigium for clues about Niemann\\u0026#39;s whereabouts, they eventually discovered that the group had a base of operations in the heart of London itself, and they managed to uncover a plot to smuggle a mysterious chemical formula across the English Channel. Suspecting that the group was trafficking chemical weapons, the OSS deployed Hank to London to track down the formula and steal it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWorking fast, Hank managed to assassinate the Prodigium operative who was entrusted with carrying the formula, and he managed to escape with the leather briefcase containing the chemical vials. But his luck ran out when he tried to drive to the airport to rendezvous with his handlers, and discovered\\u2014just moments too late\\u2014that Prodigium had planted a bomb in his car. Hank bailed out of the car as the engine exploded, and he narrowly managed to survive the blast with minor burns and a concussion\\u2014but the case was destroyed in the explosion, and Hank was doused with chemicals as the glass vials shattered.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he stumbled to his feet\\u2014half-blind, disoriented, and struggling to speak\\u2014he felt the chemicals seeping through his skin, transforming him in ways that he couldn\\u0026#39;t explain. Without warning, he found himself seized by the dark urge to kill, maim, and torture, and he felt a malevolent presence clawing its way into his heart. Worst of all, he found that he \\u003Cem\\u003Ecouldn\\u0026#39;t remember his own name!\\u003C/em\\u003E But as his vision cleared, he found himself staring right at the iron sign for \\u003Cstrong\\u003EHyde Park\\u003C/strong\\u003E. In that moment, Eddie Hyde was born.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHank wakes as the plane touches down in a remote airfield on the outskirts of London. With his gun loaded and ready, he sets out in search of the address listed in the Major\\u0026#39;s files, which is allegedly the location of Prodigium\\u0026#39;s London headquarters. After a long walk across the bombed-out face of London, he finds a stately Victorian mansion at the address, and a well-dressed butler arrives at the door and invites him inside\\u2014as if he was expecting him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHank walks through the door of the mansion, where he\\u0026#39;s greeted by a room full of well-dressed men and women wearing masquerade masks, who gather around a circle of candles surrounding a mirror. In a scene eerily mirroring \\u003Cstrong\\u003EVictor Frankenstein\\u003C/strong\\u003E\\u0026#39;s first encounter with Prodigium at \\u003Cstrong\\u003EIngolstadt University\\u003C/strong\\u003E over a century earlier, the assembled members of the cult begin chanting an obscene prayer to \\u0026quot;\\u003Cstrong\\u003EThe Dark One\\u003C/strong\\u003E\\u0026quot;. As Hank contemplates his reflection in the mirror, he sees the Dark One place a hand on his shoulder, causing half of his face to rot and wither away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Hank shrinks back in fear, a pair of armed guards force him to his feet and confiscate his gun, and an \\u003Cstrong\\u003Eelderly man\\u003C/strong\\u003E steps forward to greet him. In his gnarled hands, he carries an ornate silver dish with a golden chalice balanced atop it. The chalice is filled to the brim with green liquid\\u2014which Hank recognizes as the mysterious chemical agent from the London Assignment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe elderly man introduces himself as the new leader of Prodigium, and\\u2014at long last\\u2014he explains the full story behind the mysterious formula.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor years, Prodigium\\u0026#39;s scholars and alchemists have believed that it might be possible to unlock the repressed dark side of the human psyche through chemistry, allowing ordinary people to unlock the darkness within their souls. Ever since his incident in London accidentally exposed him to the formula, the dark side of Hank\\u0026#39;s personality has been fighting for complete control of his soul, manifesting as his \\u003Cem\\u003Ealter ego\\u003C/em\\u003E Hyde. But if he were to voluntarily ingest a full dose of the formula, Prodigium believes that his soul would be entirely consumed by darkness, allowing him to serve as the Dark One\\u0026#39;s living emissary on Earth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe leader of Prodigium offers Hank a choice: he can willingly drink from the golden chalice, allowing Hyde to take full control of his mind, in exchange for his life; if he refuses to drink the potion, Prodigium will kill him\\u2014but he\\u0026#39;ll die with his free will fully intact.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETorn between two impossible choices, Hank tries to push the chalice away, but Hyde seizes control of his body just in time to stop him. Although Hank tries his best to regain control, Hyde grabs the chalice and eagerly gulps the potion down, and the assembled members of Prodigium applaud as his eyes glaze over. Moments later, Hank smiles maliciously\\u2014and it\\u0026#39;s instantly clear that he has become Hyde permanently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen all hell breaks loose.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the elderly leader of Prodigium congratulates Hyde and welcomes him into the fold, Hyde grabs him by the throat and \\u003Cem\\u003Ebreaks his neck\\u003C/em\\u003E with his bare hands, then pulls a hidden blade from his boot and brutally murders three Prodigium members by slashing their jugulars. The guards draw their guns and try to shoot him, but Hyde manages to steal a guard\\u0026#39;s pistol, and a massive shootout ensues as he fires back at them. Once again, Hyde tears through the helpless crowd with ease, killing everyone he sees. As dozens of Prodigium members fall to the ground bleeding out, he throws his head back and cackles maliciously.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;M NOBODY\\u0026#39;S SLAVE!\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E he screams. \\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;NO ONE CONTROLS EDDIE HYDE\\u2014GOD OR MORTAL!\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe shootout rages on, and the assembled guards try to surround Hyde\\u2014but he mows down everyone that dares to take a shot at him. Finally, as reinforcements arrive from another room, the guards manage to force Hyde into the basement of the mansion. As bullets fly, Hyde forces his way into the \\u003Cstrong\\u003Eboiler room\\u003C/strong\\u003E, where he takes a shot at the antique brass boiler. As the boiler explodes, half of the mansion suddenly erupts in flames, and most of the surviving Prodigium members burn to death as they\\u0026#39;re consumed in the blaze. The few remaining members futilely try to make a run for it; some of them pass out from smoke inhalation, and others are crushed by falling debris as the roof begins to collapse.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the fire spreads through the mansion, Hyde defiantly shoots everyone he sees. When he finally runs out of bullets, he realizes that every last member of Prodigium is dead. The Dark One\\u0026#39;s cult failed in their mission, but Eddie Hyde got exactly what he wanted: Hank Jekyll lost the battle for his soul, and Hyde won.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...Or \\u003Cem\\u003Edid\\u003C/em\\u003E he?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs an exhausted Hyde drops his empty pistol and slumps against the wall, he looks into a nearby mirror. But it\\u0026#39;s not Hank that stares back from the mirror\\u2014it\\u0026#39;s \\u003Cem\\u003EHyde\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAgainst all odds, Hank has managed to summon the strength to fight Hyde, giving him control of his body for a few precious minutes. And for those few minutes, Hank chooses to stay in the basement as the mansion collapses around him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStaring out at him from the depths of the mirror, Hyde finally loses his cocky composure as he begs Hank to run to safety, warning him that he\\u0026#39;ll die if he doesn\\u0026#39;t.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;That\\u0026#39;s the idea, Eddie old pal,\\u0026quot;\\u003C/em\\u003E Hank says smirking. \\u003Cem\\u003E\\u0026quot;Don\\u0026#39;t worry about me. My soul\\u0026#39;s in order, and I don\\u0026#39;t have any regrets. If this is what I\\u0026#39;ve gotta do to bring you down, I consider it an honest trade. As for you... You\\u0026#39;ve only got a few minutes left. Don\\u0026#39;t waste them in anger.\\u003C/em\\u003E\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyde screams at Hank as the fire envelops the basement. But as the mirror melts, and Hyde\\u0026#39;s face vanishes, his voice is finally silent. With that, the screen fades to black.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA few hours later, three figures approach the ruins of the mansion as the London police pick their way through the ashes and rubble. As the camera swings around, we see their faces: it\\u0026#39;s \\u003Cstrong\\u003EEve\\u003C/strong\\u003E, \\u003Cstrong\\u003ELester Talbot\\u003C/strong\\u003E, and \\u003Cstrong\\u003EJacob Van Helsing\\u003C/strong\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETen years after their first meeting in Paris, the trio are now an inseparable team, and a decade of adventure has turned them into close friends. But as they survey Prodigium\\u0026#39;s ruined headquarters, they can only stare at the site of the massacre in befuddlement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;What the hell happened here?\\u0026quot;\\u003C/em\\u003E Eve wonders aloud.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Perhaps divine justice,\\u0026quot;\\u003C/em\\u003E Jacob says. \\u003Cem\\u003E\\u0026quot;Or perhaps something else.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;ll probably never know,\\u0026quot;\\u003C/em\\u003E Lester says. \\u003Cem\\u003E\\u0026quot;And for once, I think I\\u0026#39;m alright with that...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Creature\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003E(2027)\\u003C/em\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESetting: The Pacific, 1958\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur story begins with a flashback.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESometime in the 19th century, a few promising young students gather in a cramped classroom at \\u003Cstrong\\u003EIngolstadt University\\u003C/strong\\u003E to hear a lecture from the eccentric old oceanographer \\u003Cstrong\\u003EProfessor Pierre Arronax\\u003C/strong\\u003E, who tells them an unlikely story about a perilous undersea voyage that he took with a mad sea captain called \\u0026quot;\\u003Cem\\u003ENemo\\u003C/em\\u003E\\u0026quot;. The students\\u2014including a few familiar faces like \\u003Cstrong\\u003EVictor Frankenstein\\u003C/strong\\u003E, \\u003Cstrong\\u003EIgor Waldman\\u003C/strong\\u003E, \\u003Cstrong\\u003EJack Griffin\\u003C/strong\\u003E, and a young \\u003Cstrong\\u003EAbraham Van Helsing\\u003C/strong\\u003E\\u2014listen with bated breath as Arronax tells them about all of the strange things that he saw in the dark depths of the ocean. He tells them about his battles with giant squids, his brief sojourn to the ruins of Atlantis, and his time in the icy waters of the North Pole. But they\\u0026#39;re truly enraptured when he tells them about his strangest adventure of all: an encounter with a bizarre race of human-fish hybrids who dwell in the deepest depths of the oceans.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThough some of the students initially doubt Arronax\\u0026#39;s story about the bizarre \\u0026quot;\\u003Cstrong\\u003Eichthyoids\\u003C/strong\\u003E\\u0026quot;, they change their tune when the Professor shows them a faded daguerrotype photo that he snapped of the creatures from the porthole of Nemo\\u0026#39;s submarine. As they stare at the grainy photo in awe, Arronax fondly reminisces about his adventure in the deep ocean, but he sadly admits that he\\u0026#39;s never been able to convince his scientific colleagues that the ichthyoids are real. But if \\u003Cem\\u003Eanother\\u003C/em\\u003E scientist managed to prove the creatures\\u0026#39; existence by capturing an ichthyoid specimen and bringing it to the surface, that scientist\\u0026#39;s name would be enshrined forever in the annals of history. For in the depths of the ocean, he tells them, there are always mysteries waiting to be discovered...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe scenes fades out, and we return to the present day, where we see a familiar figure reading an antique leather diary packed with old photographs. As we zoom in on the diary, we see that it\\u0026#39;s the personal journal of Abraham Van Helsing\\u2014and one of the pictures is Arronax\\u0026#39;s photograph of the ichthyoids. And the figure reading the journal is none other than \\u003Cstrong\\u003E\\u003Cem\\u003EDr. Hans Niemann\\u003C/em\\u003E\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe year is 1958, and it\\u0026#39;s been 10 years since Niemann fled Russia and defected to the United States. Ever since that day, he has been hard at work designing weapons of war for the US military, and his handlers in the CIA have been all too happy to conceal his Nazi past. In years past, he played a key role in developing the hydrogen bomb for the Army; more recently, he designed the nuclear submarine \\u003Cstrong\\u003EUSS\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003ENautilus\\u003C/em\\u003E\\u003C/strong\\u003E (named after Nemo\\u0026#39;s legendary submarine) for the US Navy, and helped plan \\u003Cstrong\\u003EProject Mercury\\u003C/strong\\u003E for the fledgling space agency \\u003Cstrong\\u003ENASA\\u003C/strong\\u003E. In time, his inventions may even put men on the Moon!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut after a decade of loyally working for the US government, Niemann now has a more personal project in mind: with the US Navy\\u0026#39;s blessing, he wants to lead an experimental submarine voyage to the uncharted depths of the Pacific Ocean, hoping to \\u003Cem\\u003Efinally\\u003C/em\\u003E prove the existence of the mysterious ichthyoids. To do it, he has his sights set on one location: the shadowy \\u003Cstrong\\u003EMarianas Trench\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn a pristine Summer day, Niemann leaves the coast of \\u003Cstrong\\u003ESan Francisco\\u003C/strong\\u003E and sets off on a long ocean voyage to a remote naval base off the coast of Japan, where the US Navy has recently completed work on his experimental deep-ocean submersible \\u003Cstrong\\u003EUSS\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EAmmonite\\u003C/em\\u003E\\u003C/strong\\u003E. As he boards the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E and prepares to dive, he recruits a motley crew of \\u0026quot;assistants\\u0026quot; to aid him in the journey. Hawaiian fisherman \\u003Cstrong\\u003EKeoni Kamaka\\u003C/strong\\u003E, a decorated Navy veteran who saw action at Pearl Harbor, signs on as navigator; bookish young Japanese scientist \\u003Cstrong\\u003EIshiro Nakamura\\u003C/strong\\u003E, who devoted his life to science after losing his parents in the bombing of Hiroshima, agrees to be Niemann\\u0026#39;s research assistant; grizzled Australian sailor \\u003Cstrong\\u003EJohn Allerdyce\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EJohnny Dice\\u003C/strong\\u003E\\u0026quot; to his friends) enlists as First Mate; and Jamaican-born engineer \\u003Cstrong\\u003EOliver \\u0026quot;Twisty\\u0026quot; O\\u0026#39;Rear\\u0026quot;\\u003C/strong\\u003E joins the crew as a radio operator.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlthough they all sign on to crew the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E, Niemann chooses not to tell them the true purpose of the mission\\u2014believing that they wouldn\\u0026#39;t have agreed to help him if they knew what he was really after. As far as they know, they\\u0026#39;re only crewing the vessel on its experimental test run.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E dives, tension soon erupts among the crew as Niemann admits that they\\u0026#39;ll be at sea for much longer than he led them to believe. Niemann knows that the Navy likely won\\u0026#39;t give him another chance to research the ichthyoids, so he refuses to return to port until he\\u0026#39;s found what he\\u0026#39;s looking for. Later, tensions escalate when the crew presses him on the true purpose of his mission, and Niemann admits that he\\u0026#39;s looking for a deep-ocean life-form that\\u0026#39;s never been proven to exist. Seeing Niemann as a delusional madman, Twisty and Kamaka tell him that his mission is a fool\\u0026#39;s errand, and they encourage him to call off the mission before he gets them all killed\\u2014though Ishiro is intrigued by the possibility of researching the ichthyoids.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the second day of the voyage, another argument erupts among the crew when Johnny Dice questions Niemann about his past. Knowing of the doctor\\u0026#39;s German heritage, he comes to suspect (rightly) that he\\u0026#39;s one of the Nazi researchers who defected to the Allies to save himself after World War II. Still remembering his time spent fighting in the Pacific, he\\u0026#39;s repulsed by the idea of working for a Nazi. But Niemann, who has always worked hard to keep his past a secret, becomes enraged by Johnny\\u0026#39;s unrelenting questions\\u2014and he ultimately loses his temper and strikes him. As a fight ensues, Twisty is forced to intercede and separate the two, and they agree to keep their distance for the remainder of the voyage. But that night, tragedy strikes...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he attempts to sleep, Niemann is plagued by a series of disturbing dreams about scaly figures lurking in the shadows of the Pacific. Before he wakes\\u2014shaking and drenched in sweat\\u2014he sees powerful tentacles reaching out to grab him. When he turns on his lamp, Niemann sees Johnny Dice standing over his bed with a knife in his hand, his eyes blank and glazed over. In a trance, Johnny lunges at Niemann and tries to stab him, and Niemann fights back. As a fight ensues, Johnny and Niemann struggle over the knife, and Johnny begins murmuring two words over and over again:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Go back... Go back... Go back...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Niemann tries to wrestle the knife from Johnny\\u0026#39;s hand, he accidentally stabs him in the chest with it, and calls the rest of the crew to help him stop the bleeding. When the others arrive, they become even \\u003Cem\\u003Emore\\u003C/em\\u003E suspicious of Niemann when they see him standing over Johnny with a knife lodged in his chest. Remembering Niemann\\u0026#39;s violent argument with Johnny earlier in the day, they\\u0026#39;re reluctant to believe Niemann when he insists that Johnny attacked him. Try as they might, they\\u0026#39;re unable to stop the bleeding, and Johnny soon bleeds to death.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERattled by Johnny\\u0026#39;s sudden death, the crew becomes even more terrified when the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E suddenly stops moving, and they realize that the propeller has inexplicably become \\u003Cem\\u003Ejammed\\u003C/em\\u003E. As they convene to discuss repairs, Ishiro suddenly recoils in fear when he sees a grotesque scaly face staring at him through the porthole; when he ties to get a closer look at it, the face vanishes into the darkness.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the crew tries to convince Niemann to return to the surface, Kamaka agrees to don a diving suit and exit the airlock to repair the propeller from outside. In a tense scene, he feels his way along the exterior of the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E while using a flashlight to light his way. When he finally reaches the propeller, he realizes that it isn\\u0026#39;t jammed, but it\\u0026#39;s somehow been \\u003Cem\\u003Edismantled\\u003C/em\\u003E with great care and precision. Working fast, he manages to reassemble the propeller\\u2014but as soon as he does, he\\u0026#39;s \\u003Cem\\u003Egrabbed\\u003C/em\\u003E by powerful webbed hands, which drag him from the sub and pull him into the darkness. As the rest of the crew attempt to stay in touch with him via radio, they hear Kamaka\\u0026#39;s terrified screams as he dies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDespite their suspicions of Niemann, Twisty and Ishiro agree to cooperate with him until they can return to the surface\\u2014and with Kamaka\\u0026#39;s death, they suddenly realize that the ichthyoids are very real. Still, Niemann convinces them to remain below the surface for one more day, if only to ensure that Johnny and Kamaka didn\\u0026#39;t die in vain. Hours later, though, tragedy strikes again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen Niemann pays a visit to Ishiro\\u0026#39;s bunk to go over some research with him, he discovers that Ishiro has \\u003Cem\\u003Ecommitted suicide\\u003C/em\\u003E by slashing his throat with a knife\\u2014and before dying, he daubed the words \\u003Cem\\u003E\\u0026quot;GO BACK\\u0026quot;\\u003C/em\\u003E on the bulkhead in his own blood. When Twisty finds him, he finally begins to believe Niemann\\u0026#39;s story about Johnny\\u0026#39;s mysterious trance. \\u003Cem\\u003ESomething\\u003C/em\\u003E in the depths seems to be manipulating the crew\\u0026#39;s minds, driving them into madness in an effort to stop their voyage from uncovering too much. As they discuss recent events, Niemann tells Twisty about his bizarre dreams, theorizing that he had psychic images projected into his mind while he slept. His suspicions are confirmed when Twisty admits that he has also been having bizarre nightmares since the voyage began\\u2014and he \\u003Cem\\u003Ealso\\u003C/em\\u003E saw an image of a massive tentacled creature in his dreams.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt first, Twisty theorizes that the ichthyoids are responsible for the crew\\u0026#39;s madness, but Niemann persuades him that there\\u0026#39;s a more powerful force at work. After all, it would take an incredibly powerful brain to project such strong images directly into another creature\\u0026#39;s mind, and the ichthyoids are too small to possess such power. But since the ichthyoids always appear to act in perfect synchronicity with one another, perhaps they\\u0026#39;re \\u003Cem\\u003Ealso\\u003C/em\\u003E being psychically controlled. Perhaps they\\u0026#39;re just \\u003Cem\\u003Edrones\\u003C/em\\u003E, and a more powerful creature is acting as their Queen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a desperate effort to avenge the other crew-members, Twisty agrees to help Niemann find the mysterious being that drove them to their deaths, knowing that he won\\u0026#39;t be able to live with himself if he passes up a chance to kill it. Pushing the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E\\u0026#39;s sonar array to its limits, he soon detects a massive structure on a nearby underwater plateau, and decides to check it out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the climax, Niemann and Twisty both don diving suits and venture onto the plateau, where\\u2014to their shock and horror\\u2014they discover a massive metallic structure perched atop the oceanic ridge, guarded by a massive swarm of ichthyoids. As Niemann approaches the metal structure, he realizes that it\\u0026#39;s actually a \\u003Cstrong\\u003E\\u003Cem\\u003Espaceship\\u003C/em\\u003E\\u003C/strong\\u003E, and he finds his mind swimming with bizarre voices and images whenever he moves closer to it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt long last, Niemann realizes the truth about the ichthyoids: they\\u0026#39;re aquatic \\u003Cem\\u003Ealiens\\u003C/em\\u003E who\\u0026#39;ve been hiding in Earth\\u0026#39;s ocean ever since their spacecraft crashed in the Pacific. Judging by the amount of coral covering the drowned spacecraft, Niemann realizes that the ship must have crashed more than two centuries ago, long before any humans would have been able to find it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EArmed with knives, harpoons and explosives, Twisty and Niemann drive off the ichthyoids in a massive underwater battle, and Niemann narrowly manages to force his way into the heart of the ruined spaceship\\u2014where a \\u003Cstrong\\u003Emassive tentacled beast\\u003C/strong\\u003E is waiting at the center of a glass enclosure. \\u003Cstrong\\u003EThe Creature\\u003C/strong\\u003E\\u0026#39;s body resembles a massive swollen \\u003Cem\\u003Ebrain\\u003C/em\\u003E, explaining how its psychic abilities were so powerful. But despite the long reach of its tentacles, its body is far too massive to move; instead, it uses its psychic abilities to force enslaved ichthyoids to do its bidding, and they loyally bring it food and safeguard its larval offspring. In the glass enclosure where the Creature sits, the walls are lined with countess rows of transparent jars filled with murky amniotic fluid; inside each one, we can clearly see a miniature embryo with a brain-like body and slender tentacles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a climactic showdown, the Creature bombards Niemann with psychic energy and swipes at him with its massive tentacles. Niemann nearly passes out as the beast invades his mind, but he manages to land a good shot with a harpoon gun tipped with explosives, and he successfully wounds the Creature\\u0026#39;s massive brain. As it dies, the ichthyoids fall into disarray, and Niemann finally relaxes as the Creature\\u0026#39;s psychic attacks stop. With that, he and Twisty return to the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E and make their way back to the surface, where they go their separate ways\\u2014agreeing \\u003Cem\\u003Enever\\u003C/em\\u003E to tell anyone what they saw in the depths of the Pacific.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the final scene, Niemann returns to his old lab in a remote military base on the California coast, where he resumes his old research. But when his handlers are out of earshot, he opens a locked cabinet and retrieves a small glass object. It\\u0026#39;s \\u003Cem\\u003Eone of the Creature\\u0026#39;s embryos\\u003C/em\\u003E, which he secretly took from the Creature\\u0026#39;s drowned spaceship. As he lays the cylindrical glass jar on his table and strokes the glass fondly, the embryo\\u0026#39;s small tentacles begin to twitch.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Come, little one...\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;Together, I think you and I are going to accomplish wonders...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust outside the base, where the Pacific Ocean laps at the stony shore, a scaly green head pokes out of the water. Moments later, an ichthyoid crawls out of the ocean and walks onto the beach, with six more behind it. Inside the lab, Niemann waves his hand\\u2014and in an instant, the scaly creatures are still.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENiemann smiles, and the screen fades to black...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Case:\\u003C/em\\u003E\\u003C/strong\\u003E In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\u0026quot;The Gemini Killer\\u0026quot; to justice. In a twist, it\\u0026#39;s revealed that Hank\\u0026#39;s full name is \\u0026quot;Henry Jekyll\\u0026quot;, and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium\\u0026#39;s secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Creature:\\u003C/em\\u003E\\u003C/strong\\u003E Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they\\u0026#39;re aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they\\u0026#39;re slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures\\u0026#39; drowned spaceship to kill the monster, and manages to steal one of the monster\\u0026#39;s embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpiv79\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpiv79/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpiv79/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558044440.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Watch: [Facebook Live](https://www.facebook.com/pg/concacafcom/videos/?ref=page_internal) (United States)/[CONCACAF GO](https://www.concacafgo.com/concacafgo) (Mexico and rest of world)\", \"author_fullname\": \"t2_figd8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing to ensure correct formatting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpik4w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558071621.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWatch: \\u003Ca href=\\\"https://www.facebook.com/pg/concacafcom/videos/?ref=page_internal\\\"\\u003EFacebook Live\\u003C/a\\u003E (United States)/\\u003Ca href=\\\"https://www.concacafgo.com/concacafgo\\\"\\u003ECONCACAF GO\\u003C/a\\u003E (Mexico and rest of world)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/BPVY-99lxG0GPWb0vHMM6NmhhdXQPqhhimCawKs8y74.jpg?auto=webp\\u0026s=7b4adc605b413117f63d41966e6306e3fcf81652\", \"width\": 200, \"height\": 200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/BPVY-99lxG0GPWb0vHMM6NmhhdXQPqhhimCawKs8y74.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=96a134d110e3e628c13f08e5e3d7175e73bce8c8\", \"width\": 108, \"height\": 108}], \"variants\": {}, \"id\": \"uD7ZV9Ek0zNalP6vV36i4DSAtQlvisM9WJxEPbVt61A\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpik4w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rspenmoll\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpik4w/testing_to_ensure_correct_formatting/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpik4w/testing_to_ensure_correct_formatting/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558042821.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_hs1my81\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I do quotes?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpezwp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558054466.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpezwp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"1LordOfAwesome\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558025666.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bpezwp\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["1566278"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:18 GMT"], "x-ratelimit-remaining": ["588.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21922-LGA"], "x-ratelimit-used": ["12"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914097.476814,VS0,VE1395"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["103"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:28:19"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_bxu0h7"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:28:19 GMT"], "x-ratelimit-remaining": ["587.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21922-LGA"], "x-ratelimit-used": ["13"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914099.230272,VS0,VE91"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["101"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_bxu0h7"}, "recorded_at": "2019-06-07T13:28:19"}], "recorded_with": "betamax/0.8.1"} \ No newline at end of file diff --git a/tests/cassettes/scan.json b/tests/cassettes/scan.json new file mode 100644 index 0000000..97b6e7e --- /dev/null +++ b/tests/cassettes/scan.json @@ -0,0 +1 @@ +{"http_interactions": [{"request": {"body": {"string": "grant_type=refresh_token&refresh_token=**********", "encoding": "utf-8"}, "headers": {"Content-Length": ["79"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["**********"]}, "method": "POST", "uri": "https://www.reddit.com/api/v1/access_token"}, "response": {"body": {"string": "{\"access_token\": \"**********\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"edit history identity mysubreddits privatemessages read report save submit subscribe vote\"}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["206"], "x-xss-protection": ["1; mode=block"], "X-Cache": ["MISS"], "x-content-type-options": ["nosniff"], "Set-Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS; Domain=reddit.com; Max-Age=63071999; Path=/; secure"], "Accept-Ranges": ["bytes"], "X-Timer": ["S1559914342.104799,VS0,VE44"], "X-Served-By": ["cache-lga21929-LGA"], "X-Moose": ["majestic"], "Connection": ["keep-alive"], "Via": ["1.1 varnish"], "X-Cache-Hits": ["0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "cache-control": ["max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:22 GMT"], "x-frame-options": ["SAMEORIGIN"], "Server": ["snooserv"], "Content-Type": ["application/json; charset=UTF-8"]}, "status": {"message": "OK", "code": 200}, "url": "https://www.reddit.com/api/v1/access_token"}, "recorded_at": "2019-06-07T13:32:22"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 3, \"children\": [{\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"emacs\", \"header_img\": \"https://f.thumbs.redditmedia.com/1CBmBnoqVxNCXdVS.png\", \"title\": \"M-x emacs-reddit\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/emacs\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 29865, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2qhwu\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"The extensible, customizable, self-documenting real-time display editor.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA sub-reddit for the timeless and infinitely powerful editor. \\u003Ca href=\\\"http://emacsrocks.com/\\\"\\u003EWant to see what Emacs is capable of?!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGet Emacs\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://ftp.gnu.org/gnu/emacs/windows/\\\"\\u003EWindows\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://emacsformacosx.com/\\\"\\u003EMac OS X\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGNU/Linux and BSD (Just get it from your distribution\\u0026#39;s package manager)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.gnu.org/software/emacs/#Obtaining\\\"\\u003EBuild it from source\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Resources\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/\\\"\\u003EEmacs Wiki\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://wikemacs.org/\\\"\\u003EWikEmacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://emacs.zeef.com/ehartc\\\"\\u003EEmacs Reference\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://shop.oreilly.com/product/9780596006488.do\\\"\\u003ELearning GNU Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf\\\"\\u003EEmacs Reference Card\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026amp;restrict_sr=on\\u0026amp;sort=new\\u0026amp;t=all\\\"\\u003EWeekly tips/tricks/etc threads\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Tutorials\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/\\\"\\u003EBeginner\\u2019s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/\\\"\\u003EAbsolute Beginner\\u0026#39;s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/\\\"\\u003EHow to Learn Emacs: A Hand-drawn One-pager for Beginners\\n\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERelated Subreddits\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/orgmode\\\"\\u003Er/orgmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/evilmode\\\"\\u003Er/evilmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/spacemacs\\\"\\u003Er/spacemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/planetemacs\\\"\\u003Er/planetemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUseful Emacs configuration files and distributions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/technomancy/better-defaults\\\"\\u003EBetter Defaults\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick pain-saver tip\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/emacs/MovingTheCtrlKey\\\"\\u003EPut the Caps Lock key to better use!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": [152, 50], \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1210079411.0, \"wls\": 6, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe extensible, customizable, self-documenting real-time display editor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2qhwu\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"A sub-reddit for the timeless and infinitely powerful editor. [Want to see what Emacs is capable of?!](http://emacsrocks.com/)\\n\\n**Get Emacs**\\n\\n* [Windows](http://ftp.gnu.org/gnu/emacs/windows/)\\n* [Mac OS X](http://emacsformacosx.com/)\\n* GNU/Linux and BSD (Just get it from your distribution's package manager)\\n* [Build it from source] (http://www.gnu.org/software/emacs/#Obtaining)\\n\\n**Emacs Resources**\\n\\n* [Emacs Wiki](http://www.emacswiki.org/)\\n* [WikEmacs](http://wikemacs.org/)\\n* [Emacs Reference](https://emacs.zeef.com/ehartc)\\n* [Learning GNU Emacs](http://shop.oreilly.com/product/9780596006488.do)\\n* [Emacs Reference Card](https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf)\\n* [Weekly tips/tricks/etc threads](/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026restrict_sr=on\\u0026sort=new\\u0026t=all)\\n\\n**Emacs Tutorials**\\n\\n* [Beginner\\u2019s Guide to Emacs](http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/)\\n* [Absolute Beginner's Guide to Emacs](http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/)\\n* [How to Learn Emacs: A Hand-drawn One-pager for Beginners\\n](http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/)\\n\\n**Related Subreddits**\\n\\n* r/orgmode\\n* r/evilmode\\n* r/spacemacs\\n* r/planetemacs\\n\\n**Useful Emacs configuration files and distributions**\\n\\n* [Better Defaults](https://github.com/technomancy/better-defaults)\\n\\n**Quick pain-saver tip**\\n\\n* [Put the Caps Lock key to better use!](http://www.emacswiki.org/emacs/MovingTheCtrlKey)\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": \"all_ads\", \"url\": \"/r/emacs/\", \"created_utc\": 1210050611.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": true, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"orgmode\", \"header_img\": null, \"title\": \"Org-mode\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/orgmode\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 4790, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2s5ak\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"[Org-mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EAbout Org mode\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EResources\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://orgmode.org/#docs\\\"\\u003EOfficial Documentation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/worg/\\\"\\u003ECommunity Documentation (Worg)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/guide/\\\"\\u003ECompact Org-mode Guide\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://lists.gnu.org/archive/html/emacs-orgmode/\\\"\\u003EOfficial Mailing list\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EIRC Channel: #org-mode on \\u003Ca href=\\\"http://freenode.net/\\\"\\u003EFreenode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMatrix: \\u003Ca href=\\\"https://matrix.to/#/#org-mode:matrix.org\\\"\\u003E#org-mode:matrix.org\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003ERelated Subreddits\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1287182517.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg-mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2s5ak\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"# About Org mode\\n\\n[Org mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\n\\n# Resources\\n\\n* [Official Documentation](http://orgmode.org/#docs)\\n* [Community Documentation (Worg)](https://orgmode.org/worg/)\\n* [Compact Org-mode Guide](https://orgmode.org/guide/)\\n* [Official Mailing list](http://lists.gnu.org/archive/html/emacs-orgmode/)\\n* IRC Channel: #org-mode on [Freenode](http://freenode.net/)\\n* Matrix: [#org-mode:matrix.org](https://matrix.to/#/#org-mode:matrix.org)\\n\\n# Related Subreddits\\n\\n* /r/emacs\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/orgmode/\", \"created_utc\": 1287153717.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"PostPreview\", \"header_img\": null, \"title\": \"Preview your Reddit posts\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/PostPreview\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 703, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2waml\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"A place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWhat this is\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAllowed posts\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYou can post whatever and however much you\\u0026#39;d like here, \\u003Cstrong\\u003Eas long as it conforms to \\u003Ca href=\\\"http://www.reddit.com/rules\\\"\\u003Ereddiquette\\u003C/a\\u003E\\u003C/strong\\u003E (eg. NO personal info, no alt accounts, etc). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPlease\\u003C/strong\\u003E utilize the Report button for content you feel breaks these rules, we can\\u0026#39;t sift through EVERYTHING, so your help is greatly appreciated.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpam filter\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESome posts/comments may be auto-rejected by Reddit\\u0026#39;s spam filter, despite the threshold set to \\u0026quot;Minimal\\u0026quot; here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you don\\u0026#39;t see you post show up, it\\u0026#39;s likely it got rejected. Message the mod mail and we can override it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHave fun previewing!\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"#24a0ed\", \"can_assign_user_flair\": true, \"created\": 1360563027.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": \"Try a text post!\", \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": \"confidence\", \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": true, \"id\": \"2waml\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"**What this is** \\n\\u003E A place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\n \\n**Allowed posts**\\n\\u003E You can post whatever and however much you'd like here, **as long as it conforms to [reddiquette](http://www.reddit.com/rules)** (eg. NO personal info, no alt accounts, etc). \\n\\u003E \\n\\u003E **Please** utilize the Report button for content you feel breaks these rules, we can't sift through EVERYTHING, so your help is greatly appreciated.\\n \\n**Spam filter** \\n\\u003E Some posts/comments may be auto-rejected by Reddit's spam filter, despite the threshold set to \\\"Minimal\\\" here. \\n\\u003E \\n\\u003E If you don't see you post show up, it's likely it got rejected. Message the mod mail and we can override it.\\n\\n**Have fun previewing!**\\n\\n \\n \", \"submit_link_label\": \"Test out a link!\", \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/PostPreview/\", \"created_utc\": 1360534227.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["18143"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:22 GMT"], "x-ratelimit-remaining": ["577.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["23"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914342.222776,VS0,VE117"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["458"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:32:22"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9omn4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559913776.0, \"send_replies\": true, \"parent_id\": \"t1_eq9lk8u\", \"score\": 1, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Take also look at Helm or Ivy.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9omn4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETake also look at Helm or Ivy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9omn4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942576.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9oiqt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559913688.0, \"send_replies\": true, \"parent_id\": \"t3_bxtwfg\", \"score\": 1, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003Ethat's not the case for Windows. I'm not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\n\\nWhile it is true that Windows does not ship with either grep or find, there are myriad of grep and find ports and versions available on Windows, so I don't see how is that a practical problem. Implementing efficient and fast search is not a trivial task, so I personally believe it is better to leave that to external utility such as [ag (silversearcher),](https://github.com/ggreer/the_silver_searcher) [ripgrep](https://github.com/BurntSushi/ripgrep) or maybe latest kid on the block, [hyperscan](https://github.com/intel/hyperscan).\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9oiqt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ethat\\u0026#39;s not the case for Windows. I\\u0026#39;m not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhile it is true that Windows does not ship with either grep or find, there are myriad of grep and find ports and versions available on Windows, so I don\\u0026#39;t see how is that a practical problem. Implementing efficient and fast search is not a trivial task, so I personally believe it is better to leave that to external utility such as \\u003Ca href=\\\"https://github.com/ggreer/the_silver_searcher\\\"\\u003Eag (silversearcher),\\u003C/a\\u003E \\u003Ca href=\\\"https://github.com/BurntSushi/ripgrep\\\"\\u003Eripgrep\\u003C/a\\u003E or maybe latest kid on the block, \\u003Ca href=\\\"https://github.com/intel/hyperscan\\\"\\u003Ehyperscan\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9oiqt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942488.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ob92\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559913518.0, \"send_replies\": true, \"parent_id\": \"t1_eq9lk8u\", \"score\": 1, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There is also `find-lisp-find-dired` which might be of help.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9ob92\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is also \\u003Ccode\\u003Efind-lisp-find-dired\\u003C/code\\u003E which might be of help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9ob92/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942318.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9mn9c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559912075.0, \"send_replies\": true, \"parent_id\": \"t1_eq8psyw\", \"score\": 1, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I think this fits my need. Thank you for the pointer.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq9mn9c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think this fits my need. Thank you for the pointer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq9mn9c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559940875.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9m7eg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BruceConnor\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559911680.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 1, \"author_fullname\": \"t2_ccvfk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"http://endlessparentheses.com/exclude-directories-from-grep.html\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9m7eg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://endlessparentheses.com/exclude-directories-from-grep.html\\\"\\u003Ehttp://endlessparentheses.com/exclude-directories-from-grep.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9m7eg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559940480.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559911855.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9lk8u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"andreyorst\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559911085.0, \"send_replies\": true, \"parent_id\": \"t1_eq9kr70\", \"score\": 1, \"author_fullname\": \"t2_w7w9e32\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks, I wasn't aware of any of these. This is about using imitating `grep`, but what about `find` - I guess `project-find-file` is what I'm looking for?\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9lk8u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I wasn\\u0026#39;t aware of any of these. This is about using imitating \\u003Ccode\\u003Egrep\\u003C/code\\u003E, but what about \\u003Ccode\\u003Efind\\u003C/code\\u003E - I guess \\u003Ccode\\u003Eproject-find-file\\u003C/code\\u003E is what I\\u0026#39;m looking for?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9lk8u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559939885.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9kr70\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559910307.0, \"send_replies\": true, \"parent_id\": \"t3_bxtwfg\", \"score\": 2, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There is `multi-occur`, `multi-isearch` and `project-find-regexp`.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9kr70\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is \\u003Ccode\\u003Emulti-occur\\u003C/code\\u003E, \\u003Ccode\\u003Emulti-isearch\\u003C/code\\u003E and \\u003Ccode\\u003Eproject-find-regexp\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9kr70/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559939107.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsyyo9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9k2zg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"user_was_not_found\", \"num_comments\": 22, \"can_mod_post\": false, \"created_utc\": 1559909649.0, \"send_replies\": true, \"parent_id\": \"t3_bsyyo9\", \"score\": 1, \"author_fullname\": \"t2_h1nda\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I take out my notebook and pencil. Open it up. Write notes. Put notebook away.\", \"link_title\": \"What is your note-taking workflow?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9k2zg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI take out my notebook and pencil. Open it up. Write notes. Put notebook away.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/eq9k2zg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/\", \"report_reasons\": null, \"link_author\": \"the_sealed_tanker\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/\", \"created\": 1559938449.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9jwip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"5heikki\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559909470.0, \"send_replies\": true, \"parent_id\": \"t1_eq9hme8\", \"score\": 3, \"author_fullname\": \"t2_h43er\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"No, the zero is great, very easy to tell apart from O. Hack is the best :)\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9jwip\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, the zero is great, very easy to tell apart from O. Hack is the best :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9jwip/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs shill\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559938270.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9azu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9jk7q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"user_was_not_found\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559909120.0, \"send_replies\": true, \"parent_id\": \"t3_bw9azu\", \"score\": 1, \"author_fullname\": \"t2_h1nda\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[mine](https://raw.githubusercontent.com/ryanolsonx/.emacs.d/master/init.el)\\n\\nI've been really going minimalist lately and this suffices.\", \"link_title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"author_flair_css_class\": null, \"name\": \"t1_eq9jk7q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://raw.githubusercontent.com/ryanolsonx/.emacs.d/master/init.el\\\"\\u003Emine\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been really going minimalist lately and this suffices.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/eq9jk7q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"report_reasons\": null, \"link_author\": \"Rainymood_XI\", \"author_flair_text\": null, \"link_url\": \"https://github.com/Rainymood/dotemacs\", \"created\": 1559937920.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9i5r5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"__i_forgot_my_name__\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559907625.0, \"send_replies\": true, \"parent_id\": \"t1_eq5k72d\", \"score\": 1, \"author_fullname\": \"t2_3agebbhs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"In Firefox I literally removed the tab bar. I feel tabs are just not useful. I don't typically need to see all the tabs, and if I want to go back to a previous or next tab, then I really don't need to see it do I? If I want to switch back to a tab I remember then I just go ahead and search it, otherwise I just maintain one tab and that's typically fine.\\n\\nI used to use tabs as a todo list and that's just not great in practice, I end up with far too many tabs, because I would never close anything. If I want something very close by, I'll typically open another window now, and from that I can actually cross reference, and with tabs out of the way, I can stack them one on top of the other.\\n\\nI never realized how much I could do just from the URL bar in Firefox, but you can switch tabs, search for partial URLs, search history, search bookmarks, create search queries with keywords much like DDG tags, there's just so much I never realized I could do, because I would just heavily depends on tabs, and keeping things in view.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9i5r5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn Firefox I literally removed the tab bar. I feel tabs are just not useful. I don\\u0026#39;t typically need to see all the tabs, and if I want to go back to a previous or next tab, then I really don\\u0026#39;t need to see it do I? If I want to switch back to a tab I remember then I just go ahead and search it, otherwise I just maintain one tab and that\\u0026#39;s typically fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used to use tabs as a todo list and that\\u0026#39;s just not great in practice, I end up with far too many tabs, because I would never close anything. If I want something very close by, I\\u0026#39;ll typically open another window now, and from that I can actually cross reference, and with tabs out of the way, I can stack them one on top of the other.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI never realized how much I could do just from the URL bar in Firefox, but you can switch tabs, search for partial URLs, search history, search bookmarks, create search queries with keywords much like DDG tags, there\\u0026#39;s just so much I never realized I could do, because I would just heavily depends on tabs, and keeping things in view.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq9i5r5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559936425.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hwei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559907338.0, \"send_replies\": true, \"parent_id\": \"t1_eq9hdw0\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks!!\\n\\nIn normal mode, \\u2018p\\u2019 is enough to save the game, in reverse mode, \\u2018p RET\\u2019 is needed. Since RET is ignored in normal mode, I decided to show the same intructions on the header line for both modes, but I should probably change that. I couldn\\u2019t find a way of making \\u2018p\\u2019 cancel the prompt when using completing-read (when playing reverse mode), so RET is also needed to read it in.\\n\\nI like the idea of showing the other correct keys!I\\u2019ll add it to my todo list.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hwei\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn normal mode, \\u2018p\\u2019 is enough to save the game, in reverse mode, \\u2018p RET\\u2019 is needed. Since RET is ignored in normal mode, I decided to show the same intructions on the header line for both modes, but I should probably change that. I couldn\\u2019t find a way of making \\u2018p\\u2019 cancel the prompt when using completing-read (when playing reverse mode), so RET is also needed to read it in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI like the idea of showing the other correct keys!I\\u2019ll add it to my todo list.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9hwei/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559936138.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hme8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jackjackk0\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559907026.0, \"send_replies\": true, \"parent_id\": \"t1_eq9f4zn\", \"score\": 1, \"author_fullname\": \"t2_q52rf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"thanks, just tried it and it looks pleasant. Maybe only the zero is a bit weird!\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hme8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks, just tried it and it looks pleasant. Maybe only the zero is a bit weird!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9hme8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559935826.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hdw0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rekIfdyt2\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559906750.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 2, \"author_fullname\": \"t2_7jmd3dk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is amazingly cool and educationally quite valuable!\\n\\nRegarding pausing the quiz \\u2014 isn't just `p` (not `p RET`) sufficient?\\n\\nOne suggestion (no pressure to implement it, just in case you're looking for ideas): when there's more than one possible answer and the user guesses correctly, display the remaining possible answers.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hdw0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is amazingly cool and educationally quite valuable!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding pausing the quiz \\u2014 isn\\u0026#39;t just \\u003Ccode\\u003Ep\\u003C/code\\u003E (not \\u003Ccode\\u003Ep RET\\u003C/code\\u003E) sufficient?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne suggestion (no pressure to implement it, just in case you\\u0026#39;re looking for ideas): when there\\u0026#39;s more than one possible answer and the user guesses correctly, display the remaining possible answers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9hdw0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559935550.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9h5sl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eugenemah\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559906488.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 1, \"author_fullname\": \"t2_6urz5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\+1 for Hack\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9h5sl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E+1 for Hack\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9h5sl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559935288.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9h2zl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"loskutak-the-ptak\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559906394.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_ke7apcf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Don't miss https://github.com/alf/ob-restclient.el ! With that you can use restclient in org source code blocks.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq9h2zl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDon\\u0026#39;t miss \\u003Ca href=\\\"https://github.com/alf/ob-restclient.el\\\"\\u003Ehttps://github.com/alf/ob-restclient.el\\u003C/a\\u003E ! With that you can use restclient in org source code blocks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq9h2zl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559935194.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g32m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Asteridae\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559905158.0, \"send_replies\": true, \"parent_id\": \"t1_eq9ez1l\", \"score\": 1, \"author_fullname\": \"t2_o2f0w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have a similar setup: I don't store anything in the `.emacs.d` folder, instead I have a minimalistic `.emacs` that loads the `init.el` located in my `~/git/config/emacs` folder.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g32m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a similar setup: I don\\u0026#39;t store anything in the \\u003Ccode\\u003E.emacs.d\\u003C/code\\u003E folder, instead I have a minimalistic \\u003Ccode\\u003E.emacs\\u003C/code\\u003E that loads the \\u003Ccode\\u003Einit.el\\u003C/code\\u003E located in my \\u003Ccode\\u003E~/git/config/emacs\\u003C/code\\u003E folder.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9g32m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559933958.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g1sf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559905111.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Like many others already said, I usually don't bother about many buffers, too. However, one thing which did bother me was Magit's (good and consistent) buffer naming which results in worse buffer name completion because they are so similar. Especially, I frequently do one-shot changes to different repositories and then kill the Magit status buffer which left all auxiliary Magit buffers (process, diffs, log, etc.) alive.\\n\\n\\u0026#x200B;\\n\\nThen I learned that you actually kill Magit buffers with `C-u q` instead of `C-x k` and added that a double-prefix argument (`C-u C-u q`) now kills the current Magit status buffer and all related Magit buffers of the current project. That's at least in the current MELPA version of Magit.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g1sf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELike many others already said, I usually don\\u0026#39;t bother about many buffers, too. However, one thing which did bother me was Magit\\u0026#39;s (good and consistent) buffer naming which results in worse buffer name completion because they are so similar. Especially, I frequently do one-shot changes to different repositories and then kill the Magit status buffer which left all auxiliary Magit buffers (process, diffs, log, etc.) alive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I learned that you actually kill Magit buffers with \\u003Ccode\\u003EC-u q\\u003C/code\\u003E instead of \\u003Ccode\\u003EC-x k\\u003C/code\\u003E and added that a double-prefix argument (\\u003Ccode\\u003EC-u C-u q\\u003C/code\\u003E) now kills the current Magit status buffer and all related Magit buffers of the current project. That\\u0026#39;s at least in the current MELPA version of Magit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq9g1sf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559933911.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559904943.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9fmu4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Asteridae\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559904560.0, \"send_replies\": true, \"parent_id\": \"t1_eq9ex29\", \"score\": 1, \"author_fullname\": \"t2_o2f0w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is exactly what I do! I store the Emacs packages and my config in the same Git repository, when searching my config I use `projectile-grep` to prevent searching in my `packages` folder.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9fmu4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is exactly what I do! I store the Emacs packages and my config in the same Git repository, when searching my config I use \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E to prevent searching in my \\u003Ccode\\u003Epackages\\u003C/code\\u003E folder.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9fmu4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559933360.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9f4zn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"irmanp\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559903880.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 5, \"author_fullname\": \"t2_30ctkuyb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I like to use Hack:\\nhttps://sourcefoundry.org/hack/\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9f4zn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like to use Hack:\\n\\u003Ca href=\\\"https://sourcefoundry.org/hack/\\\"\\u003Ehttps://sourcefoundry.org/hack/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9f4zn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559932680.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ez1l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559903646.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 2, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I use symlinks and keep all my code \\u0026 scripts in their own directory.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9ez1l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use symlinks and keep all my code \\u0026amp; scripts in their own directory.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9ez1l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559932446.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ex29\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"flexibeast\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559903567.0, \"send_replies\": true, \"parent_id\": \"t1_eq9eb42\", \"score\": 2, \"author_fullname\": \"t2_3tmsj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Ah, fair enough. Well, unless someone else knows of existing functionality to do this, you could write a wrapper function around (in the specific case you mentioned) `projectile-grep` which asks the user for values for the variables `projectile-ignored-directories` and `projectile-ignored-files`, then calls `projectile-grep`, after which it resets those variables to their old values.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq9ex29\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAh, fair enough. Well, unless someone else knows of existing functionality to do this, you could write a wrapper function around (in the specific case you mentioned) \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E which asks the user for values for the variables \\u003Ccode\\u003Eprojectile-ignored-directories\\u003C/code\\u003E and \\u003Ccode\\u003Eprojectile-ignored-files\\u003C/code\\u003E, then calls \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E, after which it resets those variables to their old values.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9ex29/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"org-vcard pulseaudio-control ewmctrl\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559932367.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9escc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SlowValue\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559903371.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_1rke6ck4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I understood your question the following way: \\nYou want a function `switch-to-buffer-dwim`, which is working in following order (name completion aside):\\n\\n 1. switch to buffer, if buffer with given name is available\\n 2. when no buffer with that name exists, then open a file with this name in current directory\\n 3. if both is wrong, what next?\\n\\nLast point is important! What should be done next? Should be searched for a file with that name recursively? Should a file be created (and where should the file be created)? Should a buffer without file be created? If a file gets created, how do you create new buffers (and vice versa)? \\n\\n\\nIs this, what you are searching for?\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9escc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI understood your question the following way:\\u003Cbr/\\u003E\\nYou want a function \\u003Ccode\\u003Eswitch-to-buffer-dwim\\u003C/code\\u003E, which is working in following order (name completion aside):\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Eswitch to buffer, if buffer with given name is available\\u003C/li\\u003E\\n\\u003Cli\\u003Ewhen no buffer with that name exists, then open a file with this name in current directory\\u003C/li\\u003E\\n\\u003Cli\\u003Eif both is wrong, what next?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ELast point is important! What should be done next? Should be searched for a file with that name recursively? Should a file be created (and where should the file be created)? Should a buffer without file be created? If a file gets created, how do you create new buffers (and vice versa)? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this, what you are searching for?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq9escc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559932171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ekt0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559903055.0, \"send_replies\": true, \"parent_id\": \"t1_eq96zwx\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It uses both the default keys and your customizations. By default, the key/command list is read from a buffer set to Fundamental Mode.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9ekt0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt uses both the default keys and your customizations. By default, the key/command list is read from a buffer set to Fundamental Mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9ekt0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559931855.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ejbn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559902995.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 2, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Absolutely! really good idea.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9ejbn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAbsolutely! really good idea.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq9ejbn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559931795.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9edsg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559902767.0, \"send_replies\": true, \"parent_id\": \"t1_eq97l5i\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks!\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9edsg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9edsg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559931567.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9eb42\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vfclists\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559902659.0, \"send_replies\": true, \"parent_id\": \"t1_eq99y5z\", \"score\": 1, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Actually I prefer something that will enable me to do it on the fly, ie with a dialog for that particular instance\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9eb42\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EActually I prefer something that will enable me to do it on the fly, ie with a dialog for that particular instance\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9eb42/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559931459.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrwro\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cg2j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"acheronuk\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559899671.0, \"send_replies\": true, \"parent_id\": \"t3_bxrwro\", \"score\": 2, \"author_fullname\": \"t2_11hs72\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It appears that .info files are supplied in a separate package/source **emacs-common-non-dfsg**.\\n\\nFile list: https://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\n\\nIf installing that does not help, then you can install the build depends for emacs on K/Ubuntu by going to Muon and doing \\u003E Settings \\u003E Configure software sources \\u003E Then tick the source code box. Then in a terminal do:\\n\\n sudo apt build-dep emacs\\n\\nThat will get all the direct build dependencies for emacs. It will also get you tools to build .deb packages, which you won't need, but do no harm.\", \"link_title\": \"Roadblock when installing Emacs 26.2 on kubuntu 19.04\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cg2j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt appears that .info files are supplied in a separate package/source \\u003Cstrong\\u003Eemacs-common-non-dfsg\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile list: \\u003Ca href=\\\"https://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\\"\\u003Ehttps://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf installing that does not help, then you can install the build depends for emacs on K/Ubuntu by going to Muon and doing \\u0026gt; Settings \\u0026gt; Configure software sources \\u0026gt; Then tick the source code box. Then in a terminal do:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Esudo apt build-dep emacs\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThat will get all the direct build dependencies for emacs. It will also get you tools to build .deb packages, which you won\\u0026#39;t need, but do no harm.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/eq9cg2j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"report_reasons\": null, \"link_author\": \"granti128\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"created\": 1559928471.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cfwr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ballfresno\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559899664.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_2b5qxk6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I do all of my writing in org. The majority is targeting PDF export, either as articles for publication or for presentations. I almost always make extensive use of org-babel within these documents. All graphics will be done this way, including using gnuplot, plantuml, ditaa, etc. Depending on the topic, the results might also be generated from org-babel src blocks in a number of different languages including octave, Julia, R, as well as text processing using shell or awk blocks.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cfwr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do all of my writing in org. The majority is targeting PDF export, either as articles for publication or for presentations. I almost always make extensive use of org-babel within these documents. All graphics will be done this way, including using gnuplot, plantuml, ditaa, etc. Depending on the topic, the results might also be generated from org-babel src blocks in a number of different languages including octave, Julia, R, as well as text processing using shell or awk blocks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq9cfwr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559928464.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx54uk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9bgm9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559898010.0, \"send_replies\": true, \"parent_id\": \"t1_eq73rjt\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\\\u003EUse-package forms an abstraction upon which it's hard to debug\\n\\n\\u0026#x200B;\\n\\nM-x pp-macroexpand-last-sexp at you service\", \"link_title\": \"Even Better 'Better Defaults'\", \"author_flair_css_class\": null, \"name\": \"t1_eq9bgm9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;Use-package forms an abstraction upon which it\\u0026#39;s hard to debug\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EM-x pp-macroexpand-last-sexp at you service\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/eq9bgm9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://github.com/ianpan870102/.emacs.d\", \"created\": 1559926810.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9a23n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ibizaman\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559895652.0, \"send_replies\": true, \"parent_id\": \"t1_eq7g89b\", \"score\": 1, \"author_fullname\": \"t2_sxb1k\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"With org-mode you get org-babel. So say you have a code example, you could actually run it from the org file, get the result and insert both in the LaTeX export.\\n\\nOrg-mode understands tables too. You can have formulas in tables referencing other cells. The whole table is dynamic \\n\\nAlso, emacs have a symbolic calculator. Very neat when combined with tables.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq9a23n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith org-mode you get org-babel. So say you have a code example, you could actually run it from the org file, get the result and insert both in the LaTeX export.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg-mode understands tables too. You can have formulas in tables referencing other cells. The whole table is dynamic \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, emacs have a symbolic calculator. Very neat when combined with tables.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq9a23n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559924452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq99y5z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"flexibeast\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559895474.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 2, \"author_fullname\": \"t2_3tmsj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Assuming that a package uses `defcustom` to define variables intended to be user-customisable, you can do `M-x customize-group` and specify that package's customize-group to browse for any such variables.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq99y5z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAssuming that a package uses \\u003Ccode\\u003Edefcustom\\u003C/code\\u003E to define variables intended to be user-customisable, you can do \\u003Ccode\\u003EM-x customize-group\\u003C/code\\u003E and specify that package\\u0026#39;s customize-group to browse for any such variables.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq99y5z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"org-vcard pulseaudio-control ewmctrl\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559924274.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq99y5p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ibizaman\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559895474.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 1, \"author_fullname\": \"t2_sxb1k\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Recent versions of grep support `--exclude-dir` so it must be possible.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq99y5p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERecent versions of grep support \\u003Ccode\\u003E--exclude-dir\\u003C/code\\u003E so it must be possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq99y5p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559924274.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq97l5i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grimscythe_\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559891747.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 3, \"author_fullname\": \"t2_17fhdh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Great work!\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq97l5i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreat work!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq97l5i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559920547.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq97j20\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"vfclists\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559891659.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 7, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sad to hear of his passing.\\n\\nI remember him from this thread - [Request: The Future of PHP Mode (TL;DR Near Bottom) : emacs](https://old.reddit.com/r/emacs/comments/6pchsm/request_the_future_of_php_mode_tldr_near_bottom/)\\n\\nIt led me to write a whole blog post on open source funding issues.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": null, \"name\": \"t1_eq97j20\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESad to hear of his passing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI remember him from this thread - \\u003Ca href=\\\"https://old.reddit.com/r/emacs/comments/6pchsm/request_the_future_of_php_mode_tldr_near_bottom/\\\"\\u003ERequest: The Future of PHP Mode (TL;DR Near Bottom) : emacs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt led me to write a whole blog post on open source funding issues.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq97j20/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559920459.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq96zwx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"FLMatt\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559890860.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 3, \"author_fullname\": \"t2_14rw8c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Does it use the default keys or does it take into consideration your customizations?\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq96zwx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes it use the default keys or does it take into consideration your customizations?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq96zwx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559919660.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_brp26g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq96tmb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xtifr\", \"num_comments\": 69, \"can_mod_post\": false, \"created_utc\": 1559890596.0, \"send_replies\": true, \"parent_id\": \"t1_eoo2rr0\", \"score\": 1, \"author_fullname\": \"t2_3bi8nddx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"With tramp, commands like M-x grep and M-x compile run on the remote host, which is a whole lot faster, and, in the case of compiles, may actually mean the difference between working and not working. :)\\n\\n\\u0026#x200B;\\n\\n(Which is not to say that sshfs isn't quite handy...)\", \"link_title\": \"What advantages does Emacs have over Neovim + Tmux?\", \"author_flair_css_class\": null, \"name\": \"t1_eq96tmb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith tramp, commands like M-x grep and M-x compile run on the remote host, which is a whole lot faster, and, in the case of compiles, may actually mean the difference between working and not working. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Which is not to say that sshfs isn\\u0026#39;t quite handy...)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/eq96tmb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/\", \"report_reasons\": null, \"link_author\": \"seagoj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/\", \"created\": 1559919396.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq93rtr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vitorqb23\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559884982.0, \"send_replies\": true, \"parent_id\": \"t1_eq91pn4\", \"score\": 1, \"author_fullname\": \"t2_2nkdd29t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"So far I can not tell the difference.\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq93rtr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo far I can not tell the difference.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq93rtr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559913782.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq92lak\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559883630.0, \"send_replies\": true, \"parent_id\": \"t1_eq92kbd\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Oh, and apparently PlantUML, if that's your thing\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq92lak\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh, and apparently PlantUML, if that\\u0026#39;s your thing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq92lak/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559912430.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq92kbd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559883600.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gal6\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You got it, that part is all LaTeX, but the org exporter recognizes it if you use \\\\\\\\begin{} and you don't even need a source block. Also very nice Beamer integration.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq92kbd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou got it, that part is all LaTeX, but the org exporter recognizes it if you use \\\\begin{} and you don\\u0026#39;t even need a source block. Also very nice Beamer integration.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq92kbd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559912400.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq91pn4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Michaelmrose\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559882652.0, \"send_replies\": true, \"parent_id\": \"t1_eq6btfk\", \"score\": 1, \"author_fullname\": \"t2_8yohe\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Is lucid snappier than gtk?\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq91pn4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs lucid snappier than gtk?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq91pn4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559911452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9049n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"ibillius\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559880936.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 8, \"author_fullname\": \"t2_8no13\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not aware of anything like that but that's a lovely idea. I'm sorry to hear about his passing. PHP mode was very useful to me in my last job and I even briefly corresponded with Eric on Reddit about Emacs.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9049n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not aware of anything like that but that\\u0026#39;s a lovely idea. I\\u0026#39;m sorry to hear about his passing. PHP mode was very useful to me in my last job and I even briefly corresponded with Eric on Reddit about Emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq9049n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559909736.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8qohc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"KrishnaKrGopal\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559872674.0, \"send_replies\": true, \"parent_id\": \"t1_eq4t18o\", \"score\": 1, \"author_fullname\": \"t2_1zt5mges\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes, I use this method too. Emacs is not so heavy weight for today's hardware that a few instances hurt.\\n\\nTo add to it, I have a few server names that are dedicated : org-mode has its own Emacs server : used by commands to capture via org-protocol. For coding, each project has its own server : named after the main Git branch. And there is a default server : for misc usage.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8qohc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, I use this method too. Emacs is not so heavy weight for today\\u0026#39;s hardware that a few instances hurt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo add to it, I have a few server names that are dedicated : org-mode has its own Emacs server : used by commands to capture via org-protocol. For coding, each project has its own server : named after the main Git branch. And there is a default server : for misc usage.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq8qohc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559901474.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bn3qax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8qhil\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"im_not_juicing\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1559872512.0, \"send_replies\": true, \"parent_id\": \"t1_eq87ssp\", \"score\": 1, \"author_fullname\": \"t2_22kx841q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \":D\", \"link_title\": \"where, might you say, is the most \\\"super\\\" of a \\\"super cua\\\" package?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8qhil\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E:D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/eq8qhil/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"created\": 1559901312.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8psyw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"reddit_uname\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871929.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gboh\", \"score\": 2, \"author_fullname\": \"t2_byz78\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This might be what you're looking for: [https://www.gnu.org/software/emacs/manual/html\\\\_mono/autotype.html#Autoinserting](https://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting)\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8psyw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis might be what you\\u0026#39;re looking for: \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting\\\"\\u003Ehttps://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8psyw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559900729.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8p65z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sugarbridalsentry\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871395.0, \"send_replies\": true, \"parent_id\": \"t1_eq09l4k\", \"score\": 1, \"author_fullname\": \"t2_i9gakgq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hey neat! It's simple, and does the job -- way better better than I could have written. \\n\\nI was the one asking about it last week -- someone recommended `iy-go-to-char`, which I've been using. Lets you repeat the search by hitting the character again, and works backwards to. A+, would `'require` again.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8p65z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey neat! It\\u0026#39;s simple, and does the job -- way better better than I could have written. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was the one asking about it last week -- someone recommended \\u003Ccode\\u003Eiy-go-to-char\\u003C/code\\u003E, which I\\u0026#39;ve been using. Lets you repeat the search by hitting the character again, and works backwards to. A+, would \\u003Ccode\\u003E\\u0026#39;require\\u003C/code\\u003E again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8p65z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559900195.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvweh8\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8ov1a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grettke\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559871136.0, \"send_replies\": true, \"parent_id\": \"t1_eq2n87o\", \"score\": 1, \"author_fullname\": \"t2_3fcko\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thank you for sharing that thoughtful advice.\\n\\nWhile I don't have restrictions on my writing style, I do use [WriteGood](https://github.com/bnbeckwith/writegood-mode), [Langtool](https://github.com/mhayashi1120/Emacs-langtool), and [Proselint](https://proselint.com/) liberally.\\n\\nThe call outs on adverbs and adjectives are helpful!\", \"link_title\": \"Writing Academic Papers in Org-mode\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq8ov1a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for sharing that thoughtful advice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile I don\\u0026#39;t have restrictions on my writing style, I do use \\u003Ca href=\\\"https://github.com/bnbeckwith/writegood-mode\\\"\\u003EWriteGood\\u003C/a\\u003E, \\u003Ca href=\\\"https://github.com/mhayashi1120/Emacs-langtool\\\"\\u003ELangtool\\u003C/a\\u003E, and \\u003Ca href=\\\"https://proselint.com/\\\"\\u003EProselint\\u003C/a\\u003E liberally.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe call outs on adverbs and adjectives are helpful!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/eq8ov1a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"doulos05\", \"author_flair_text\": \"Org2Blog Maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"created\": 1559899936.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8outf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sugarbridalsentry\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871131.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gboh\", \"score\": 1, \"author_fullname\": \"t2_i9gakgq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I've used a function like this one to create a buffer for a blog -- it makes a new buffer with header information. To get the different elements to show up on different lines, you just add the newline `\\\\n`\\n\\n ;; Pop a blog buffer\\n (defun blog-buffer ()\\n \\\"Creates a new buffer with the basic title/date header needed by `org-static-blog`\\\"\\n (interactive)\\n (let (($buf (generate-new-buffer \\\"untitled\\\")))\\n (switch-to-buffer $buf)\\n (insert (format-time-string\\n \\\"#+TITLE:\\\\n#+DATE: \\u003C%Y-%m-%d %T %A\\u003E\\\"))\\n (funcall 'org-mode)\\n (setq buffer-offer-save t)))\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8outf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve used a function like this one to create a buffer for a blog -- it makes a new buffer with header information. To get the different elements to show up on different lines, you just add the newline \\u003Ccode\\u003E\\\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Pop a blog buffer\\n(defun blog-buffer ()\\n \\u0026quot;Creates a new buffer with the basic title/date header needed by `org-static-blog`\\u0026quot;\\n (interactive)\\n (let (($buf (generate-new-buffer \\u0026quot;untitled\\u0026quot;)))\\n (switch-to-buffer $buf)\\n (insert (format-time-string\\n \\u0026quot;#+TITLE:\\\\n#+DATE: \\u0026lt;%Y-%m-%d %T %A\\u0026gt;\\u0026quot;))\\n (funcall \\u0026#39;org-mode)\\n (setq buffer-offer-save t)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8outf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559899931.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8ofb1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grettke\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559870776.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_3fcko\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"From my perspective Org is an information management system that includes publishing, LaTeX is a publishing solution and not more than that, so it isn't Org versus LaTeX, it is Org and LaTeX. Is that how you are seeing them? Or what aspects do you see them as competing against each other on?\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq8ofb1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFrom my perspective Org is an information management system that includes publishing, LaTeX is a publishing solution and not more than that, so it isn\\u0026#39;t Org versus LaTeX, it is Org and LaTeX. Is that how you are seeing them? Or what aspects do you see them as competing against each other on?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq8ofb1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": \"Org2Blog Maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559899576.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8nzic\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559870405.0, \"send_replies\": true, \"parent_id\": \"t1_eq8kyv3\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"My take on not even having to look is that I'd rather a menu I don't need to look at didn't appear at all. :)\\n\\nThe particular thing, and perhaps it's customizable, that bugged me about Ivy's key bindings is that I had to use a special keystroke when I actually wanted the thing I typed, to not be given the best match instead. Magic tilde got me quite a few times before I turned it off too. With Helm, it was the tab thing of course. I like Ivy a bit better than Helm, but really I don't want a menu until I need a menu, at which point I'll take a nice big two-column *Completions* buffer.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8nzic\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy take on not even having to look is that I\\u0026#39;d rather a menu I don\\u0026#39;t need to look at didn\\u0026#39;t appear at all. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe particular thing, and perhaps it\\u0026#39;s customizable, that bugged me about Ivy\\u0026#39;s key bindings is that I had to use a special keystroke when I actually wanted the thing I typed, to not be given the best match instead. Magic tilde got me quite a few times before I turned it off too. With Helm, it was the tab thing of course. I like Ivy a bit better than Helm, but really I don\\u0026#39;t want a menu until I need a menu, at which point I\\u0026#39;ll take a nice big two-column \\u003Cem\\u003ECompletions\\u003C/em\\u003E buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8nzic/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559899205.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8kyv3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bump_bump_bump\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559867889.0, \"send_replies\": true, \"parent_id\": \"t1_eq8flnq\", \"score\": 2, \"author_fullname\": \"t2_33ybbkqd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E I'd really rather manually tab complete than have the flashing menus and weird keystrokes\\n\\nSorry, I didn't read that closely enough. \\n\\nI can't imagine doing without fuzzy matching myself, but I can appreciate disliking the rapidly changing matches. \\n\\nMy usage mode is usually to just type off a few fragments that I know will work and *only then* pay attention to the results. Often I don't even have to look, as I know the few keystrokes that get me the exact match I want. e.g. I know the function `projectile-browse-dirty-projects` is useful - and `M-x dirt RET` does it.\\n\\nI don't know about weird keystrokes though - in ivy tab works as you'd expect (unlike helm), and if you set the height to fixed (`ivy-fixed-height-minibuffer`) it won't jump around. The very thing that draws people to ivy over helm is that it's relatively unobtrusive.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8kyv3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI\\u0026#39;d really rather manually tab complete than have the flashing menus and weird keystrokes\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESorry, I didn\\u0026#39;t read that closely enough. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can\\u0026#39;t imagine doing without fuzzy matching myself, but I can appreciate disliking the rapidly changing matches. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy usage mode is usually to just type off a few fragments that I know will work and \\u003Cem\\u003Eonly then\\u003C/em\\u003E pay attention to the results. Often I don\\u0026#39;t even have to look, as I know the few keystrokes that get me the exact match I want. e.g. I know the function \\u003Ccode\\u003Eprojectile-browse-dirty-projects\\u003C/code\\u003E is useful - and \\u003Ccode\\u003EM-x dirt RET\\u003C/code\\u003E does it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t know about weird keystrokes though - in ivy tab works as you\\u0026#39;d expect (unlike helm), and if you set the height to fixed (\\u003Ccode\\u003Eivy-fixed-height-minibuffer\\u003C/code\\u003E) it won\\u0026#39;t jump around. The very thing that draws people to ivy over helm is that it\\u0026#39;s relatively unobtrusive.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8kyv3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559896689.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8jia3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559866675.0, \"send_replies\": true, \"parent_id\": \"t1_eq8gjie\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sounds worth checking out UI-wise anyway. Thanks for the tip!\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8jia3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESounds worth checking out UI-wise anyway. Thanks for the tip!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8jia3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559895475.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559865162.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8gjie\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"00-11\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559864960.0, \"send_replies\": true, \"parent_id\": \"t1_eq8flnq\", \"score\": 1, \"author_fullname\": \"t2_3upsyt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[Icicles](https://www.emacswiki.org/emacs/Icicles) (just like Helm, Ivy, etc. but a decade earlier ;-)) lets you include recent files during buffer-name completion. \\n\\nAnd by default there is no flashing, automatic completion etc. - you hit `TAB` (or `S-TAB`) to complete on demand, just as you usually do with any buffer-completion command.\\n\\nInclusion of recent files during buffer-name completion is controlled by option `icicle-buffer-include-recent-files-nflag`:\\n\\n\\u003E `icicle-buffer-include-recent-files-nflag` is a variable defined in `icicles-opt.el`.\\n\\n\\u003E Its value is -2305843009213693951\\n\\n\\u003E Documentation:\\n\\n\\u003E An integer \\u003E 0 means include recent files during buffer-name completion.\\nThis means file names managed by `recentf-mode` - see (emacs) `File\\nConveniences`. An integer \\u003C 0 means do not include them.\\n\\n\\u003E When they are included, the value is the maximum number of such\\ncandidates to include.\\n\\n\\u003E You can toggle this option (between + and -) using `C-x R` in the\\nminibuffer during buffer-name completion.\\n\\nSee [Icicles - Buffer-Name Input](https://www.emacswiki.org/emacs/Icicles_-_Buffer-Name_Input).\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8gjie\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/Icicles\\\"\\u003EIcicles\\u003C/a\\u003E (just like Helm, Ivy, etc. but a decade earlier ;-)) lets you include recent files during buffer-name completion. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd by default there is no flashing, automatic completion etc. - you hit \\u003Ccode\\u003ETAB\\u003C/code\\u003E (or \\u003Ccode\\u003ES-TAB\\u003C/code\\u003E) to complete on demand, just as you usually do with any buffer-completion command.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInclusion of recent files during buffer-name completion is controlled by option \\u003Ccode\\u003Eicicle-buffer-include-recent-files-nflag\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Ccode\\u003Eicicle-buffer-include-recent-files-nflag\\u003C/code\\u003E is a variable defined in \\u003Ccode\\u003Eicicles-opt.el\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIts value is -2305843009213693951\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDocumentation:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn integer \\u0026gt; 0 means include recent files during buffer-name completion.\\nThis means file names managed by \\u003Ccode\\u003Erecentf-mode\\u003C/code\\u003E - see (emacs) \\u003Ccode\\u003EFile\\nConveniences\\u003C/code\\u003E. An integer \\u0026lt; 0 means do not include them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen they are included, the value is the maximum number of such\\ncandidates to include.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can toggle this option (between + and -) using \\u003Ccode\\u003EC-x R\\u003C/code\\u003E in the\\nminibuffer during buffer-name completion.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESee \\u003Ca href=\\\"https://www.emacswiki.org/emacs/Icicles_-_Buffer-Name_Input\\\"\\u003EIcicles - Buffer-Name Input\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8gjie/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559893760.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8flnq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559864457.0, \"send_replies\": true, \"parent_id\": \"t1_eq89p5p\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yeah, I've tried Ivy for a while at least, and fooled with others. I wasn't sure how to say it but that kind of thing is what I meant by \\\"do-everything completion system\\\". I'd really rather manually tab complete than have the flashing menus and weird keystrokes, and with what these packages want to provide, neither is avoidable. I like switch-to-buffer and find-file, I just don't like remembering which to use.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8flnq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, I\\u0026#39;ve tried Ivy for a while at least, and fooled with others. I wasn\\u0026#39;t sure how to say it but that kind of thing is what I meant by \\u0026quot;do-everything completion system\\u0026quot;. I\\u0026#39;d really rather manually tab complete than have the flashing menus and weird keystrokes, and with what these packages want to provide, neither is avoidable. I like switch-to-buffer and find-file, I just don\\u0026#39;t like remembering which to use.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8flnq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559893257.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559866729.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8cmxs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559862918.0, \"send_replies\": true, \"parent_id\": \"t1_eq894nu\", \"score\": 0, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not really sold on using recent files for this... I can see how it would mostly work, but simply trying to switch buffers often works too. It seems like less hassle in the long run to write a command that does something like trying to complete a buffer name, then searching the current directory for completion, then trying locate. I'm just seeing if that command is out there, before I really think about working on it.\\n\\nEDIT: And of course the recent files list may contain deleted files.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8cmxs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not really sold on using recent files for this... I can see how it would mostly work, but simply trying to switch buffers often works too. It seems like less hassle in the long run to write a command that does something like trying to complete a buffer name, then searching the current directory for completion, then trying locate. I\\u0026#39;m just seeing if that command is out there, before I really think about working on it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: And of course the recent files list may contain deleted files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8cmxs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559891718.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8bumi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559862516.0, \"send_replies\": true, \"parent_id\": \"t1_eq43s1i\", \"score\": 2, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There's also the `browse-at-remote` package, which includes the `browse-at-remote-kill` command.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq8bumi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s also the \\u003Ccode\\u003Ebrowse-at-remote\\u003C/code\\u003E package, which includes the \\u003Ccode\\u003Ebrowse-at-remote-kill\\u003C/code\\u003E command.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8bumi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559891316.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq89p5p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"bump_bump_bump\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559861399.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 5, \"author_fullname\": \"t2_33ybbkqd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Are you familiar with `recentf`? Both `helm` and `ivy`, and probably `ido`, can include recent files in your buffer switching completions.\\n\\nApologies if you already know this. It's not clear from your question what you're already familiar with. But you mention tab completion, which makes me think of the built-in completion, which is much cruder than the fuzzy matching with the above packages.\\n\\nBetween my use of `counsel-projectile-find-file`, `counsel-file-jump`, and `ivy-switch-buffer`, I can't really see a hole that would be filled by what you're talking about.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq89p5p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAre you familiar with \\u003Ccode\\u003Erecentf\\u003C/code\\u003E? Both \\u003Ccode\\u003Ehelm\\u003C/code\\u003E and \\u003Ccode\\u003Eivy\\u003C/code\\u003E, and probably \\u003Ccode\\u003Eido\\u003C/code\\u003E, can include recent files in your buffer switching completions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EApologies if you already know this. It\\u0026#39;s not clear from your question what you\\u0026#39;re already familiar with. But you mention tab completion, which makes me think of the built-in completion, which is much cruder than the fuzzy matching with the above packages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBetween my use of \\u003Ccode\\u003Ecounsel-projectile-find-file\\u003C/code\\u003E, \\u003Ccode\\u003Ecounsel-file-jump\\u003C/code\\u003E, and \\u003Ccode\\u003Eivy-switch-buffer\\u003C/code\\u003E, I can\\u0026#39;t really see a hole that would be filled by what you\\u0026#39;re talking about.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq89p5p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559890199.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq894nu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559861122.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 3, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Some \\\"switch-to-buffer\\\" functions like those provided by ivy and ido have the idea of \\\"virtual buffers\\\", which allows you to switch to buffers of previously-opened files even if you don't have them open currently. In practice, combined with a large `recentf` history of filenames, I think you'll find this does what you want.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq894nu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESome \\u0026quot;switch-to-buffer\\u0026quot; functions like those provided by ivy and ido have the idea of \\u0026quot;virtual buffers\\u0026quot;, which allows you to switch to buffers of previously-opened files even if you don\\u0026#39;t have them open currently. In practice, combined with a large \\u003Ccode\\u003Erecentf\\u003C/code\\u003E history of filenames, I think you\\u0026#39;ll find this does what you want.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq894nu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559889922.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2swo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq88wik\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559861001.0, \"send_replies\": true, \"parent_id\": \"t1_eq7rd66\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Request.el is a solid library, and it's what I always direct people towards\\n\\nGiven its age and lack of maintainership, it's held up respectably, but it's\\nby no means \\\"solid\\\" at the current time. There are well documented bugs, and\\nI don't particularly trust `url-retrieve` backend (the other backend is curl).\", \"link_title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"author_flair_css_class\": null, \"name\": \"t1_eq88wik\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERequest.el is a solid library, and it\\u0026#39;s what I always direct people towards\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EGiven its age and lack of maintainership, it\\u0026#39;s held up respectably, but it\\u0026#39;s\\nby no means \\u0026quot;solid\\u0026quot; at the current time. There are well documented bugs, and\\nI don\\u0026#39;t particularly trust \\u003Ccode\\u003Eurl-retrieve\\u003C/code\\u003E backend (the other backend is curl).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/eq88wik/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"report_reasons\": null, \"link_author\": \"andreas-marschke\", \"author_flair_text\": null, \"link_url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"created\": 1559889801.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq88h6h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"poiu-\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559860787.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_dcfnv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I would like to have this as a helm source (should be easy?)\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq88h6h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to have this as a helm source (should be easy?)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq88h6h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559889587.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bn3qax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq87ssp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rgrau\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1559860391.0, \"send_replies\": true, \"parent_id\": \"t1_eq2yn8z\", \"score\": 1, \"author_fullname\": \"t2_7p0zo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"it's better than Awesome :)\", \"link_title\": \"where, might you say, is the most \\\"super\\\" of a \\\"super cua\\\" package?\", \"author_flair_css_class\": null, \"name\": \"t1_eq87ssp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eit\\u0026#39;s better than Awesome :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/eq87ssp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"created\": 1559889191.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq810id\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erickgnavar\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559856701.0, \"send_replies\": true, \"parent_id\": \"t1_eq7ywee\", \"score\": 1, \"author_fullname\": \"t2_ndbm5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I\\u2019ve used it with https with no problem maybe there is something wrong outside emacs, a system package maybe\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq810id\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u2019ve used it with https with no problem maybe there is something wrong outside emacs, a system package maybe\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq810id/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559885501.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ywee\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"politza\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559855652.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_j63jw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Last time I tried it, it couldn't handle https connections and it did not handle http errors. Which means you don't know what's going on if something goes wrong. So, I had to use something else.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ywee\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELast time I tried it, it couldn\\u0026#39;t handle https connections and it did not handle http errors. Which means you don\\u0026#39;t know what\\u0026#39;s going on if something goes wrong. So, I had to use something else.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq7ywee/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559884452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7vhja\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jhelberg\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559853941.0, \"send_replies\": true, \"parent_id\": \"t3_bx7m7a\", \"score\": 1, \"author_fullname\": \"t2_kf8fe\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"one book, one file I'd say. only long lines slow things down, one file makes searching easy.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7vhja\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eone book, one file I\\u0026#39;d say. only long lines slow things down, one file makes searching easy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq7vhja/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559882741.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvucsw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7uu9d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559853615.0, \"send_replies\": true, \"parent_id\": \"t1_eq1rf8b\", \"score\": 1, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E why is '(defconst qc-cmd-prefx:{c, cpp} ...)' moved out of the defun ? coming from a c'ish background, it seems more appropriate to have function-local-const values indicating readers that this 'foo' has a specified value, and cannot be changed (though not so sure about whether elisp guarantees that i.e. constness of the value held by 'foo').\\n\\n`defconst` doesn't introduce a local var. Use `let` for that. `defconst` always defines a global binding.\\n\\nAlso note that on Emacs 24.3+, ie any reasonable Emacs version, you can use `setq-local` instead of the `set` + `make-local-variable` combo.\", \"link_title\": \"help with trivial emacs lisp function\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq7uu9d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ewhy is \\u0026#39;(defconst qc-cmd-prefx:{c, cpp} ...)\\u0026#39; moved out of the defun ? coming from a c\\u0026#39;ish background, it seems more appropriate to have function-local-const values indicating readers that this \\u0026#39;foo\\u0026#39; has a specified value, and cannot be changed (though not so sure about whether elisp guarantees that i.e. constness of the value held by \\u0026#39;foo\\u0026#39;).\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Edefconst\\u003C/code\\u003E doesn\\u0026#39;t introduce a local var. Use \\u003Ccode\\u003Elet\\u003C/code\\u003E for that. \\u003Ccode\\u003Edefconst\\u003C/code\\u003E always defines a global binding.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso note that on Emacs 24.3+, ie any reasonable Emacs version, you can use \\u003Ccode\\u003Esetq-local\\u003C/code\\u003E instead of the \\u003Ccode\\u003Eset\\u003C/code\\u003E + \\u003Ccode\\u003Emake-local-variable\\u003C/code\\u003E combo.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/eq7uu9d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"report_reasons\": null, \"link_author\": \"daddyc00l\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"created\": 1559882415.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2swo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7rd66\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skeeto\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559851876.0, \"send_replies\": true, \"parent_id\": \"t1_eq5t16p\", \"score\": 1, \"author_fullname\": \"t2_3em9l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Request.el is a solid library, and it's what I always direct people\\ntowards when they're interested in reusing the URL request library built\\ninto Elfeed. So that's fine.\\n\\nHowever, that's only part of the equation, right? You'd need to also\\nparse and crawl the pages you download?\", \"link_title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"author_flair_css_class\": null, \"name\": \"t1_eq7rd66\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERequest.el is a solid library, and it\\u0026#39;s what I always direct people\\ntowards when they\\u0026#39;re interested in reusing the URL request library built\\ninto Elfeed. So that\\u0026#39;s fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, that\\u0026#39;s only part of the equation, right? You\\u0026#39;d need to also\\nparse and crawl the pages you download?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/eq7rd66/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"report_reasons\": null, \"link_author\": \"andreas-marschke\", \"author_flair_text\": null, \"link_url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"created\": 1559880676.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2cy9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7plfn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ConfidentGarbage9\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559850978.0, \"send_replies\": true, \"parent_id\": \"t1_eq7mpvi\", \"score\": 1, \"author_fullname\": \"t2_3bwix9h6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"No defun, defparameter, defmacro ect. should remain the same color\", \"link_title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"author_flair_css_class\": null, \"name\": \"t1_eq7plfn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo defun, defparameter, defmacro ect. should remain the same color\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/eq7plfn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"report_reasons\": null, \"link_author\": \"ConfidentGarbage9\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"created\": 1559879778.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ofgr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559850423.0, \"send_replies\": true, \"parent_id\": \"t1_eq7noav\", \"score\": 1, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Both checking and setting can be done using the customize interface, see https://www.gnu.org/software/emacs/manual/html_node/emacs/Easy-Customization.html.\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ofgr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBoth checking and setting can be done using the customize interface, see \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/emacs/Easy-Customization.html\\\"\\u003Ehttps://www.gnu.org/software/emacs/manual/html_node/emacs/Easy-Customization.html\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7ofgr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559879223.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7noav\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rpgwaiter\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559850054.0, \"send_replies\": true, \"parent_id\": \"t1_eq7kx00\", \"score\": 1, \"author_fullname\": \"t2_eim28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not sure how to check the current value, but I did change it to utf-8 from whatever it was and it looks fine now. The change doesn't persist when I close the terminal and reload emacs. How do I make the changes persist?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7noav\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not sure how to check the current value, but I did change it to utf-8 from whatever it was and it looks fine now. The change doesn\\u0026#39;t persist when I close the terminal and reload emacs. How do I make the changes persist?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7noav/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559878854.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2cy9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7mpvi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bodertz\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559849546.0, \"send_replies\": true, \"parent_id\": \"t1_eq357aa\", \"score\": 1, \"author_fullname\": \"t2_9c5ij\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Would `defun` also be blue?\", \"link_title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"author_flair_css_class\": null, \"name\": \"t1_eq7mpvi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWould \\u003Ccode\\u003Edefun\\u003C/code\\u003E also be blue?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/eq7mpvi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"report_reasons\": null, \"link_author\": \"ConfidentGarbage9\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"created\": 1559878346.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7kx00\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559848539.0, \"send_replies\": true, \"parent_id\": \"t1_eq7ka7f\", \"score\": 3, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"As Eli said: check your \\\\`terminal-coding-system\\\\`. What's its value?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7kx00\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs Eli said: check your `terminal-coding-system`. What\\u0026#39;s its value?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7kx00/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559877339.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ka7f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rpgwaiter\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559848206.0, \"send_replies\": true, \"parent_id\": \"t1_eq7jho8\", \"score\": 1, \"author_fullname\": \"t2_eim28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Gotcha.. So how should I go about fixing it?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ka7f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGotcha.. So how should I go about fixing it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7ka7f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559877006.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7jho8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559847827.0, \"send_replies\": true, \"parent_id\": \"t1_eq7es87\", \"score\": 2, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's the point of -Q.\\n\\nIf the font was the problem, you wouldn't see \\\\\\\\-escape sequences but boxes. What you see indicates an encoding issue.\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7jho8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s the point of -Q.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the font was the problem, you wouldn\\u0026#39;t see \\\\-escape sequences but boxes. What you see indicates an encoding issue.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7jho8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559876627.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7gboh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559846287.0, \"send_replies\": true, \"parent_id\": \"t3_bwm94g\", \"score\": 2, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Can you guide me to something that addresses my need to have a new buffer made ready from an existing template when i open a new file. Example, If I want to open a new file named lecture2.org, i want the new buffer to have the `#+TITLE: #+AUTHOR: #+Latex_Class:` already typed in. What should I be searching for on my internet searches?\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq7gboh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan you guide me to something that addresses my need to have a new buffer made ready from an existing template when i open a new file. Example, If I want to open a new file named lecture2.org, i want the new buffer to have the \\u003Ccode\\u003E#+TITLE: #+AUTHOR: #+Latex_Class:\\u003C/code\\u003E already typed in. What should I be searching for on my internet searches?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq7gboh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559875087.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7gal6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"-dag-\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559846274.0, \"send_replies\": true, \"parent_id\": \"t1_eq7a4uh\", \"score\": 1, \"author_fullname\": \"t2_ds1dyo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's interesting. How does it integrate with TikZ? Do you still write embedded latex for that?\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7gal6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s interesting. How does it integrate with TikZ? Do you still write embedded latex for that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7gal6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559875074.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7g89b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"-dag-\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559846242.0, \"send_replies\": true, \"parent_id\": \"t1_eq7dgei\", \"score\": 1, \"author_fullname\": \"t2_ds1dyo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yep, I get the literate programming aspect. I'm asking about \\\"pure\\\" documentation. This is a paper to be read by others. The only code would be example snippets. org-babel could be useful for writing the snippets and generating the output automatically. I'm curious what other advantages org-babel has over just writing a paper in latex. \\n\\n\\nI'll have to look into org's support for diagrams and equations. Thanks!\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7g89b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYep, I get the literate programming aspect. I\\u0026#39;m asking about \\u0026quot;pure\\u0026quot; documentation. This is a paper to be read by others. The only code would be example snippets. org-babel could be useful for writing the snippets and generating the output automatically. I\\u0026#39;m curious what other advantages org-babel has over just writing a paper in latex. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ll have to look into org\\u0026#39;s support for diagrams and equations. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7g89b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559875042.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7es87\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rpgwaiter\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559845521.0, \"send_replies\": true, \"parent_id\": \"t1_eq7eaon\", \"score\": 1, \"author_fullname\": \"t2_eim28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes I'm running in a text terminal. No issue when running with -Q, although none of my configuration seems to be loaded with that option.\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7es87\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes I\\u0026#39;m running in a text terminal. No issue when running with -Q, although none of my configuration seems to be loaded with that option.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7es87/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559874321.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7eaon\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eli-zaretskii\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559845287.0, \"send_replies\": true, \"parent_id\": \"t3_bxjr2h\", \"score\": 2, \"author_fullname\": \"t2_13cvre\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You are running Emacs on a text terminal, right? Then I think the problem might be `terminal-coding-system`. Does this happen in `emacs -Q` as well?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq7eaon\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou are running Emacs on a text terminal, right? Then I think the problem might be \\u003Ccode\\u003Eterminal-coding-system\\u003C/code\\u003E. Does this happen in \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E as well?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7eaon/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": \"GNU Emacs maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559874087.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7dgei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559844887.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"org-babel allows literate programming in regular org files. Regular org files can be exported to pdf using latex. Regular org files already allow math equations, diagrams and code. org-babel can execute the code and provide the output (in different formats as you please).\\n\\nThe advantage is that you can have your program / code and your document in the same file.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7dgei\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eorg-babel allows literate programming in regular org files. Regular org files can be exported to pdf using latex. Regular org files already allow math equations, diagrams and code. org-babel can execute the code and provide the output (in different formats as you please).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe advantage is that you can have your program / code and your document in the same file.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7dgei/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559873687.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ca4a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Tatrics\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559844312.0, \"send_replies\": true, \"parent_id\": \"t1_eq7088x\", \"score\": 1, \"author_fullname\": \"t2_tpfed\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is handy! Thanks!\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ca4a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is handy! Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq7ca4a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559873112.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7a4uh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559843222.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm a big fan actually. Even with latex mode shortcuts it's a lot faster to use org, once you get it set up. I use it with TikZ and Beamer...\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7a4uh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a big fan actually. Even with latex mode shortcuts it\\u0026#39;s a lot faster to use org, once you get it set up. I use it with TikZ and Beamer...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7a4uh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559872022.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9yo7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7a260\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dzecniv\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1559843184.0, \"send_replies\": true, \"parent_id\": \"t3_bw9yo7\", \"score\": 1, \"author_fullname\": \"t2_j6dwn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I completed a bit https://wikemacs.org/wiki/Eshell, more additions welcome ! cheers\", \"link_title\": \"Did you know that the Eshell is awesome?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7a260\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI completed a bit \\u003Ca href=\\\"https://wikemacs.org/wiki/Eshell\\\"\\u003Ehttps://wikemacs.org/wiki/Eshell\\u003C/a\\u003E, more additions welcome ! cheers\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/eq7a260/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"report_reasons\": null, \"link_author\": \"202700000000\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"created\": 1559871984.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559902737.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx54uk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq73rjt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yep808\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559840023.0, \"send_replies\": true, \"parent_id\": \"t1_eq5r6wd\", \"score\": 1, \"author_fullname\": \"t2_3kgkql01\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes I'm aware of it, but I prefer to require the packages with native Elisp. Use-package forms an abstraction upon which is hard to debug\", \"link_title\": \"Even Better 'Better Defaults'\", \"author_flair_css_class\": null, \"name\": \"t1_eq73rjt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes I\\u0026#39;m aware of it, but I prefer to require the packages with native Elisp. Use-package forms an abstraction upon which is hard to debug\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/eq73rjt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://github.com/ianpan870102/.emacs.d\", \"created\": 1559868823.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq70hsc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559838492.0, \"send_replies\": true, \"parent_id\": \"t1_eq4kvcb\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"In my experience, that has happened. But that doesn't mean it happens to everyone.\\n\\nA good for instance is Control-v . Out of the box, that key is to scroll up (that is, page down). Then I added the cua.el package that maps Control-v to the yank (or insert from clipboard) action.\\n\\nThat caused problems until I redefined Shift-Control-v to do the scrolling thing.\\n\\n (define-key global-map [(shift control ?v)] 'scroll-up)\\n\\nI did the reverse with Control-a . The cua package wanted that to Select Whole Buffer. BUt I was too used to Control-a being beginning-of-line.\\n\\nYes, I did wind up with a LOT of conflicts in the keymap. So in my dot-emacs file, I have a big area towards the end in which I reconfigure lots and lots of keys at once.\\n\\nBecause, doing it in each package easily leads to one package wiping out another package's keys.\\n\\nIt is not so much a problem these days, because packages have the option of defining their own prefix key if they like. Then they can assign their own keymap to that prefix.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq70hsc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn my experience, that has happened. But that doesn\\u0026#39;t mean it happens to everyone.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA good for instance is Control-v . Out of the box, that key is to scroll up (that is, page down). Then I added the cua.el package that maps Control-v to the yank (or insert from clipboard) action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat caused problems until I redefined Shift-Control-v to do the scrolling thing.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(define-key global-map [(shift control ?v)] \\u0026#39;scroll-up)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI did the reverse with Control-a . The cua package wanted that to Select Whole Buffer. BUt I was too used to Control-a being beginning-of-line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes, I did wind up with a LOT of conflicts in the keymap. So in my dot-emacs file, I have a big area towards the end in which I reconfigure lots and lots of keys at once.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause, doing it in each package easily leads to one package wiping out another package\\u0026#39;s keys.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is not so much a problem these days, because packages have the option of defining their own prefix key if they like. Then they can assign their own keymap to that prefix.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq70hsc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559867292.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7088x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erickgnavar\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559838371.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 2, \"author_fullname\": \"t2_ndbm5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"A nice thing I use in combination with restclient.el is `json-mode-beautify`(from `json-mode` package) this way you can format json payload easily. I have it binded to `C-c C-f` for more quickly access.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq7088x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA nice thing I use in combination with restclient.el is \\u003Ccode\\u003Ejson-mode-beautify\\u003C/code\\u003E(from \\u003Ccode\\u003Ejson-mode\\u003C/code\\u003E package) this way you can format json payload easily. I have it binded to \\u003Ccode\\u003EC-c C-f\\u003C/code\\u003E for more quickly access.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq7088x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559867171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6xou0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vitorqb23\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559837175.0, \"send_replies\": true, \"parent_id\": \"t1_eq6ooiv\", \"score\": 1, \"author_fullname\": \"t2_2nkdd29t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hey! \\n\\n\\nSo my \\\"remote\\\" server actually lives on our LAN, so I'm guessing that is a very different scenario than having a really remote server. \\n\\n\\nAnyway, even when the server is on our local network the delay is \\\\*still\\\\* a problem for low response-time features like completion, etc. So I feel your pain.\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6xou0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo my \\u0026quot;remote\\u0026quot; server actually lives on our LAN, so I\\u0026#39;m guessing that is a very different scenario than having a really remote server. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway, even when the server is on our local network the delay is *still* a problem for low response-time features like completion, etc. So I feel your pain.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq6xou0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559865975.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6wy35\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559836799.0, \"send_replies\": true, \"parent_id\": \"t1_eq6685h\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Nope, only EXWM + EXWM-x and few single-key bindings:\\n - F1 switch-to-last-buffer\\n - F2 delete-other-windows\\n - F3 other-window\\n - F4 split-window-below\\n - F5 split-window-right\\n - F6 notmuch / S-F6 notmuch-mua-new-mail / C-F6 call-process-shell-command to a script that wrap RSS2Email\\n....\\n - F9 aweshell-toggle\\n....\\n\\nWith \\\"printed\\\" (actually a stickers) keycaps so it's super-easy to operate.\\n\\nsshot: https://transfer.sh/10A2hA/sshot.png\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6wy35\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENope, only EXWM + EXWM-x and few single-key bindings:\\n - F1 switch-to-last-buffer\\n - F2 delete-other-windows\\n - F3 other-window\\n - F4 split-window-below\\n - F5 split-window-right\\n - F6 notmuch / S-F6 notmuch-mua-new-mail / C-F6 call-process-shell-command to a script that wrap RSS2Email\\n....\\n - F9 aweshell-toggle\\n....\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith \\u0026quot;printed\\u0026quot; (actually a stickers) keycaps so it\\u0026#39;s super-easy to operate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esshot: \\u003Ca href=\\\"https://transfer.sh/10A2hA/sshot.png\\\"\\u003Ehttps://transfer.sh/10A2hA/sshot.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6wy35/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559865599.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6w95t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"egregius313\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559836472.0, \"send_replies\": true, \"parent_id\": \"t1_eq4dw7d\", \"score\": 2, \"author_fullname\": \"t2_clfs9gn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"If you use `M-x switch-to-buffer` or even ido, having a lot of buffers open makes the autocomplete a lot less helpful.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6w95t\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you use \\u003Ccode\\u003EM-x switch-to-buffer\\u003C/code\\u003E or even ido, having a lot of buffers open makes the autocomplete a lot less helpful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6w95t/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559865272.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6tq5v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eli-zaretskii\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559835257.0, \"send_replies\": true, \"parent_id\": \"t1_eq65bol\", \"score\": 3, \"author_fullname\": \"t2_13cvre\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"If it means anything, I never kill any buffers in my sessions, even though these go on for many weeks.\\n\\nBut if you are bothered by that, someone else pointed out that the bundled package midnight.el will kill unused buffer for you so look it up.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq6tq5v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf it means anything, I never kill any buffers in my sessions, even though these go on for many weeks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut if you are bothered by that, someone else pointed out that the bundled package midnight.el will kill unused buffer for you so look it up.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6tq5v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": \"GNU Emacs maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559864057.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6sx3k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bnzmnzhnz\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559834863.0, \"send_replies\": true, \"parent_id\": \"t3_bx7m7a\", \"score\": 1, \"author_fullname\": \"t2_ek4av\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I find projectile with ivy and ivy-rich is a good pattern for bouncing between projects and keeping track of which buffers belong to each.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6sx3k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find projectile with ivy and ivy-rich is a good pattern for bouncing between projects and keeping track of which buffers belong to each.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6sx3k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559863663.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxhod6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6rm65\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"C0untLizzi\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559834237.0, \"send_replies\": true, \"parent_id\": \"t3_bxhod6\", \"score\": 3, \"author_fullname\": \"t2_1235w2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I think you need to require dap-python for it to be registered, something like\\n\\n (require 'dap-mode)\\n (require 'dap-ui)\\n (require 'dap-python)\\n (dap-mode 1)\\n (dap-ui-mode 1)\\n\\nworks for me.\", \"link_title\": \"Where do I find templates for dap-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6rm65\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think you need to require dap-python for it to be registered, something like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;dap-mode)\\n(require \\u0026#39;dap-ui)\\n(require \\u0026#39;dap-python)\\n(dap-mode 1)\\n(dap-ui-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eworks for me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/eq6rm65/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"report_reasons\": null, \"link_author\": \"billy_wade\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"created\": 1559863037.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6ooiv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rufusthedogwoof\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559832823.0, \"send_replies\": true, \"parent_id\": \"t3_bxfdd1\", \"score\": 1, \"author_fullname\": \"t2_10s2l8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm happy you have found a fix with --with-x-toolkit=lucid.\\n\\nquick question, how much latency are you finding with this? I tried it awhile back, and with my vpn connect -\\u003E my servers it was just unbearably slow.. and then i went down the rabbit hole of trying to get a better emacs experience with cygwin, w32 native, and WSL...\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6ooiv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m happy you have found a fix with --with-x-toolkit=lucid.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Equick question, how much latency are you finding with this? I tried it awhile back, and with my vpn connect -\\u0026gt; my servers it was just unbearably slow.. and then i went down the rabbit hole of trying to get a better emacs experience with cygwin, w32 native, and WSL...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq6ooiv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559861623.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6nvuu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dzecniv\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559832429.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_j6dwn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Contributions on its wikemacs page are welcome ! https://wikemacs.org/wiki/Restclient cheers\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq6nvuu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EContributions on its wikemacs page are welcome ! \\u003Ca href=\\\"https://wikemacs.org/wiki/Restclient\\\"\\u003Ehttps://wikemacs.org/wiki/Restclient\\u003C/a\\u003E cheers\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq6nvuu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559861229.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx82j3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6kuko\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559830945.0, \"send_replies\": true, \"parent_id\": \"t3_bx82j3\", \"score\": 1, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have been experiencing the exact same thing, but never thought much about it.. Looks like it's time to switch back to the default Emacs undo system.\", \"link_title\": \"Somehow my undo history is truncated... what did I inadvertently change?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq6kuko\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have been experiencing the exact same thing, but never thought much about it.. Looks like it\\u0026#39;s time to switch back to the default Emacs undo system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/eq6kuko/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"report_reasons\": null, \"link_author\": \"moxxon\", \"author_flair_text\": \"default bindings, org, magit, ox-hugo\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"created\": 1559859745.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9azu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6kou5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559830867.0, \"send_replies\": true, \"parent_id\": \"t1_eq6295p\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\\\u003EWhat would you say are the most significant determining factors for init time?\\n\\n\\u0026#x200B;\\n\\nI meant that the same code snippet could affect loading time completely different depending on the rest of the configuration.\\n\\n\\u0026#x200B;\\n\\n\\\\\\u003ECorrect. It's also not Atom or VS Code. That doesn't preclude comparison.\\n\\n\\u0026#x200B;\\n\\nI meant Emacs is not a text editor like all these.\", \"link_title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"author_flair_css_class\": null, \"name\": \"t1_eq6kou5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;What would you say are the most significant determining factors for init time?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI meant that the same code snippet could affect loading time completely different depending on the rest of the configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026gt;Correct. It\\u0026#39;s also not Atom or VS Code. That doesn\\u0026#39;t preclude comparison.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI meant Emacs is not a text editor like all these.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/eq6kou5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"report_reasons\": null, \"link_author\": \"Rainymood_XI\", \"author_flair_text\": null, \"link_url\": \"https://github.com/Rainymood/dotemacs\", \"created\": 1559859667.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwbizf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6iqjv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"billy_wade\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559829882.0, \"send_replies\": true, \"parent_id\": \"t1_epyenr4\", \"score\": 1, \"author_fullname\": \"t2_14xlbd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Okay, it should be up now, after I upload the gif.\", \"link_title\": \"I'm getting a strange color theme bug in 26.2\", \"author_flair_css_class\": null, \"name\": \"t1_eq6iqjv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOkay, it should be up now, after I upload the gif.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/eq6iqjv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"report_reasons\": null, \"link_author\": \"billy_wade\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"created\": 1559858682.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6hswy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"localhorst\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559829397.0, \"send_replies\": true, \"parent_id\": \"t3_bx7m7a\", \"score\": 1, \"author_fullname\": \"t2_1l9g7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"For me just\\n\\n (setq ido-default-buffer-method 'selected-window)\\n (ido-mode 1)\\n\\nis good enough and I rarely close buffers\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6hswy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor me just\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq ido-default-buffer-method \\u0026#39;selected-window)\\n(ido-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eis good enough and I rarely close buffers\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6hswy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559858197.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6heyr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"danielszm\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559829196.0, \"send_replies\": true, \"parent_id\": \"t1_eq5k72d\", \"score\": 2, \"author_fullname\": \"t2_9jyp6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I second that which has been seconded. A memoir begs to be written with the title: How I Learned to Stop Worrying and Love Open Buffers.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6heyr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI second that which has been seconded. A memoir begs to be written with the title: How I Learned to Stop Worrying and Love Open Buffers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6heyr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559857996.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6h8b4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kcin\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559829099.0, \"send_replies\": true, \"parent_id\": \"t1_eq5gail\", \"score\": 1, \"author_fullname\": \"t2_2z9w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Frequent tasks should be made more accessible and easier than infrequent tasks. C-x b is an awful sequence and it's astounding that it's used for such a highest-frequency task.\\n\\nAgreed, but I go further than you and assign buffer switching to a single key, because it's a such a frequent task, that it deserves its own key.\\n\\nI don't use the right windows key on my keyboard, so it's a good choice for that (other candidates are the right control, right shift, etc. which can be assigned as single keys to frequent tasks).\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6h8b4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EFrequent tasks should be made more accessible and easier than infrequent tasks. C-x b is an awful sequence and it\\u0026#39;s astounding that it\\u0026#39;s used for such a highest-frequency task.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAgreed, but I go further than you and assign buffer switching to a single key, because it\\u0026#39;s a such a frequent task, that it deserves its own key.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t use the right windows key on my keyboard, so it\\u0026#39;s a good choice for that (other candidates are the right control, right shift, etc. which can be assigned as single keys to frequent tasks).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6h8b4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559857899.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6gspy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kcin\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559828878.0, \"send_replies\": true, \"parent_id\": \"t1_eq65bol\", \"score\": 1, \"author_fullname\": \"t2_2z9w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"My laptop's last reboot was back in the first days of March, and I never close buffers. I run midnight-mode, though, to clear out buffers which haven't been touched in a week.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6gspy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy laptop\\u0026#39;s last reboot was back in the first days of March, and I never close buffers. I run midnight-mode, though, to clear out buffers which haven\\u0026#39;t been touched in a week.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6gspy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559857678.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_eq6gspy\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["242300"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:23 GMT"], "x-ratelimit-remaining": ["576.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["24"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914343.158172,VS0,VE691"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["457"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:32:23"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_eq9omn4"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:24 GMT"], "x-ratelimit-remaining": ["575.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["25"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914345.684292,VS0,VE89"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["456"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_eq9omn4"}, "recorded_at": "2019-06-07T13:32:24"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So Emacs is pretty old, and it has `grep.el` and `find-dired` that allow to use external tools to search for files and in files. But that can cause difficulties when those tools are not available. Sure, `grep` and `find` are available on every *nix environment (ahem, BSD and GNU actually differ, ahem), but that's not the case for Windows. I'm not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\n\\nI'm aware of [xah-find](https://github.com/xahlee/xah-find), which declares these features:\\n\\n\\u003E\\u2022 Pure emacs lisp. No dependencies on unix/linux grep/sed/find. Especially useful on Windows.\\n\\u003E\\n\\u003E\\u2022 Output is highlighted and clickable for jumping to occurence.\\n\\u003E\\n\\u003E\\u2022 Using emacs regex, not bash/perl etc regex.\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that\\u2019s multiple lines.\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that contains lots Unicode characters. See [unix uniq unicode bug](http://xahlee.info/comp/unix_uniq_unicode_bug.html) and [emacs calling unix grep problem](http://ergoemacs.org/emacs/emacs_grep_problem.html)\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that contains lots escape slashes or backslashes. For example, Find/Replace string that\\u2019s regex in source code.\\n\\nAnd it's seem to be nice solution for searching within file contents when `grep` or alternatives aren't available, but it's not in the default Emacs, you have to use googlefu in order to find it. And also it features output format that is quite different from what `grep` produces.\\n\\nAs for file search, I know that [Projectile](https://github.com/bbatsov/projectile) provides a [native](https://docs.projectile.mx/en/latest/configuration/#project-indexing-method) way of searching for files written in elisp, but again, it's not in the core, for obvious reasons.\\n\\nI wonder why there's no builtin commands to do arbitrary file search and contents search from Emacs like in, say, VSCode, Sublime Text, and Atom, which have cross-platform methods to search for and in files, which make sense to me, since I will get similar results across platforms, and will not be worried if my system features GNU grep or BSD grep, and GNU find or BSD find, which can be an issue on Linux and MacOS, and will require setting up GNU utilities on Windows.\\n\\nSo are there any historical or technical reasons for that? I know that elisp can be pretty slow for such task, but it seems that `xah-find` performs pretty good on my machine, and `native` method in projectile works acceptable as well.\", \"author_fullname\": \"t2_w7w9e32\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"grep and find but in pure Emacs LISP?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_bxtwfg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559938474.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo Emacs is pretty old, and it has \\u003Ccode\\u003Egrep.el\\u003C/code\\u003E and \\u003Ccode\\u003Efind-dired\\u003C/code\\u003E that allow to use external tools to search for files and in files. But that can cause difficulties when those tools are not available. Sure, \\u003Ccode\\u003Egrep\\u003C/code\\u003E and \\u003Ccode\\u003Efind\\u003C/code\\u003E are available on every *nix environment (ahem, BSD and GNU actually differ, ahem), but that\\u0026#39;s not the case for Windows. I\\u0026#39;m not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m aware of \\u003Ca href=\\\"https://github.com/xahlee/xah-find\\\"\\u003Exah-find\\u003C/a\\u003E, which declares these features:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u2022 Pure emacs lisp. No dependencies on unix/linux grep/sed/find. Especially useful on Windows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Output is highlighted and clickable for jumping to occurence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Using emacs regex, not bash/perl etc regex.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that\\u2019s multiple lines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that contains lots Unicode characters. See \\u003Ca href=\\\"http://xahlee.info/comp/unix_uniq_unicode_bug.html\\\"\\u003Eunix uniq unicode bug\\u003C/a\\u003E and \\u003Ca href=\\\"http://ergoemacs.org/emacs/emacs_grep_problem.html\\\"\\u003Eemacs calling unix grep problem\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that contains lots escape slashes or backslashes. For example, Find/Replace string that\\u2019s regex in source code.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAnd it\\u0026#39;s seem to be nice solution for searching within file contents when \\u003Ccode\\u003Egrep\\u003C/code\\u003E or alternatives aren\\u0026#39;t available, but it\\u0026#39;s not in the default Emacs, you have to use googlefu in order to find it. And also it features output format that is quite different from what \\u003Ccode\\u003Egrep\\u003C/code\\u003E produces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for file search, I know that \\u003Ca href=\\\"https://github.com/bbatsov/projectile\\\"\\u003EProjectile\\u003C/a\\u003E provides a \\u003Ca href=\\\"https://docs.projectile.mx/en/latest/configuration/#project-indexing-method\\\"\\u003Enative\\u003C/a\\u003E way of searching for files written in elisp, but again, it\\u0026#39;s not in the core, for obvious reasons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wonder why there\\u0026#39;s no builtin commands to do arbitrary file search and contents search from Emacs like in, say, VSCode, Sublime Text, and Atom, which have cross-platform methods to search for and in files, which make sense to me, since I will get similar results across platforms, and will not be worried if my system features GNU grep or BSD grep, and GNU find or BSD find, which can be an issue on Linux and MacOS, and will require setting up GNU utilities on Windows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo are there any historical or technical reasons for that? I know that elisp can be pretty slow for such task, but it seems that \\u003Ccode\\u003Exah-find\\u003C/code\\u003E performs pretty good on my machine, and \\u003Ccode\\u003Enative\\u003C/code\\u003E method in projectile works acceptable as well.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxtwfg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andreyorst\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559909674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"There was a post recently about why people quit using helm and I said that the TAB key usage was just too jarring (by default). I said that I gave up but prompted to change them I tried, but I didn't like any of my options that I could find. So I write my own. This will make the tab:\\n\\n* If there's more than one candidate flash the mode-line. This is a close enough approximation of the default `find-file` behavior that expands the candidates\\n* If there's one or less candidates do whatever the default persistent action is.\\n\\nNow helm doesn't really conflict with two decades of `find-file` or `execute-extended-command` usage(\\\\*):\\n\\nSo the flasher ([source](https://www.emacswiki.org/emacs/AlarmBell)):\\n\\n defun double-flash-mode-line ()\\n \\\"Flash the modeline\\\"\\n (let ((flash-sec (/ 1.0 20)))\\n (invert-face 'mode-line)\\n (run-with-timer flash-sec nil #'invert-face 'mode-line)\\n (run-with-timer (* 2 flash-sec) nil #'invert-face 'mode-line)\\n (run-with-timer (* 3 flash-sec) nil #'invert-face 'mode-line)))\\n\\nThe action:\\n\\n (defun helm-execute-if-single-persistent-action (\\u0026optional attr split-onewindow)\\n \\\"Execute persistent action if the candidate list is less than 2\\\"\\n (interactive)\\n (with-helm-alive-p\\n (if (\\u003E (helm-get-candidate-number) 2)\\n (double-flash-mode-line)\\n (helm-execute-persistent-action)\\n )))\\n\\nSo here's my helm-related configuration in it's entirety for now. I'm probably still missing a lot of gems to get the most out of it but still:\\n\\n (use-package helm\\n :demand t\\n :bind* (:map helm-map \\n ([tab] . helm-execute-if-single-persistent-action)\\n (\\\"C-i\\\" . helm-execute-persistent-action)\\n ))\\n \\n (use-package helm-files\\n :bind (:map helm-find-files-map\\n (\\\"\\u003CC-backspace\\u003E\\\" . helm-find-files-up-one-level)\\n )\\n )\\n \\n (require 'helm-config)\\n (global-set-key (kbd \\\"M-x\\\") 'helm-M-x)\\n (global-set-key (kbd \\\"C-x b\\\") 'helm-buffers-list)\\n (global-set-key (kbd \\\"C-x C-f\\\") 'helm-find-files)\\n (helm-mode 1)\\n\\nSimple enough and now helm can get off my lawn and back to my emacs.\\n\\n\\u0026#x200B;\\n\\n(\\\\*) I still make mistakes when I want a new file and there's a close candidate, but I can live with that.\", \"author_fullname\": \"t2_z7asf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Helm and the Tab key\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxt0cz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559932255.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere was a post recently about why people quit using helm and I said that the TAB key usage was just too jarring (by default). I said that I gave up but prompted to change them I tried, but I didn\\u0026#39;t like any of my options that I could find. So I write my own. This will make the tab:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf there\\u0026#39;s more than one candidate flash the mode-line. This is a close enough approximation of the default \\u003Ccode\\u003Efind-file\\u003C/code\\u003E behavior that expands the candidates\\u003C/li\\u003E\\n\\u003Cli\\u003EIf there\\u0026#39;s one or less candidates do whatever the default persistent action is.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ENow helm doesn\\u0026#39;t really conflict with two decades of \\u003Ccode\\u003Efind-file\\u003C/code\\u003E or \\u003Ccode\\u003Eexecute-extended-command\\u003C/code\\u003E usage(*):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo the flasher (\\u003Ca href=\\\"https://www.emacswiki.org/emacs/AlarmBell\\\"\\u003Esource\\u003C/a\\u003E):\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edefun double-flash-mode-line ()\\n \\u0026quot;Flash the modeline\\u0026quot;\\n (let ((flash-sec (/ 1.0 20)))\\n (invert-face \\u0026#39;mode-line)\\n (run-with-timer flash-sec nil #\\u0026#39;invert-face \\u0026#39;mode-line)\\n (run-with-timer (* 2 flash-sec) nil #\\u0026#39;invert-face \\u0026#39;mode-line)\\n (run-with-timer (* 3 flash-sec) nil #\\u0026#39;invert-face \\u0026#39;mode-line)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe action:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun helm-execute-if-single-persistent-action (\\u0026amp;optional attr split-onewindow)\\n \\u0026quot;Execute persistent action if the candidate list is less than 2\\u0026quot;\\n (interactive)\\n (with-helm-alive-p\\n (if (\\u0026gt; (helm-get-candidate-number) 2)\\n (double-flash-mode-line)\\n (helm-execute-persistent-action)\\n )))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo here\\u0026#39;s my helm-related configuration in it\\u0026#39;s entirety for now. I\\u0026#39;m probably still missing a lot of gems to get the most out of it but still:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package helm\\n :demand t\\n :bind* (:map helm-map \\n ([tab] . helm-execute-if-single-persistent-action)\\n (\\u0026quot;C-i\\u0026quot; . helm-execute-persistent-action)\\n ))\\n\\n(use-package helm-files\\n :bind (:map helm-find-files-map\\n (\\u0026quot;\\u0026lt;C-backspace\\u0026gt;\\u0026quot; . helm-find-files-up-one-level)\\n )\\n )\\n\\n(require \\u0026#39;helm-config)\\n(global-set-key (kbd \\u0026quot;M-x\\u0026quot;) \\u0026#39;helm-M-x)\\n(global-set-key (kbd \\u0026quot;C-x b\\u0026quot;) \\u0026#39;helm-buffers-list)\\n(global-set-key (kbd \\u0026quot;C-x C-f\\u0026quot;) \\u0026#39;helm-find-files)\\n(helm-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESimple enough and now helm can get off my lawn and back to my emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(*) I still make mistakes when I want a new file and there\\u0026#39;s a close candidate, but I can live with that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxt0cz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TTRation\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxt0cz/helm_and_the_tab_key/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxt0cz/helm_and_the_tab_key/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559903455.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm currently using\\n\\n```\\n(defvar default-font \\\"DejaVu Sans Mono-11.0:antialias=natural\\\")\\n(add-to-list 'default-frame-alist `(font . ,default-font))\\n```\\n\\nbut I'm wondering whether there is sth better out there.\", \"author_fullname\": \"t2_q52rf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What font settings would you recommend?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxsydi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559931829.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m currently using\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(defvar default-font \\u0026quot;DejaVu Sans Mono-11.0:antialias=natural\\u0026quot;)\\n(add-to-list \\u0026#39;default-frame-alist `(font . ,default-font))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut I\\u0026#39;m wondering whether there is sth better out there.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsydi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackjackk0\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559903029.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have install the MELPA stable packages for pandoc, mark-down-mode and pandoc-mode. Can export, compile etc fine with mark-down mode but I cannot get the pandoc-mode exporting to work as the error is 'Searching for program: No such file or directory, pandoc'\\n\\n\\u0026#x200B;\\n\\nIn my .emacs file I have (setq markdown-command \\\"/usr/local/bin/pandoc\\\")\\n\\n\\u0026#x200B;\\n\\nGoing through finder, I do have a 50.9MB pandoc file (with no extension though) in /usr/local/bin\\n\\n\\u0026#x200B;\\n\\nAny ideas?\", \"author_fullname\": \"t2_5034r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help installing pandoc, markdown-mode, pandoc-mode. OSX\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxsvnc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559931249.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have install the MELPA stable packages for pandoc, mark-down-mode and pandoc-mode. Can export, compile etc fine with mark-down mode but I cannot get the pandoc-mode exporting to work as the error is \\u0026#39;Searching for program: No such file or directory, pandoc\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my .emacs file I have (setq markdown-command \\u0026quot;/usr/local/bin/pandoc\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoing through finder, I do have a 50.9MB pandoc file (with no extension though) in /usr/local/bin\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsvnc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"richardsplash\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559902449.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Because the `elpa` directory is in the `emacs.d` directory when I try to search for some strings in own `init.el` it shows results from the `elpa` directory which I don't need.\\n\\nDo some of the grepping packages (projectile-grep for instance) have options to restrict or exclude some directories from the search?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to configure a grep command not to search some directories?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxrxm0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559923409.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause the \\u003Ccode\\u003Eelpa\\u003C/code\\u003E directory is in the \\u003Ccode\\u003Eemacs.d\\u003C/code\\u003E directory when I try to search for some strings in own \\u003Ccode\\u003Einit.el\\u003C/code\\u003E it shows results from the \\u003Ccode\\u003Eelpa\\u003C/code\\u003E directory which I don\\u0026#39;t need.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo some of the grepping packages (projectile-grep for instance) have options to restrict or exclude some directories from the search?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxrxm0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559894609.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I don't know why I hadn't done this sooner, but today I installed kubuntu on a memory stick and am now running that on my otherwise Windows 10 laptop.\\n\\nOf course, the first thing I did after installing 106 kubuntu updates was to install Emacs, which happens to be version 26.1. I noticed, however, that the kubuntu repository doesn't include any of the `.info` files!\\n\\nSo I uninstalled, downloaded 26.2 from [GNU Land](https://www.gnu.org/software/emacs/download.html) and read through the installation instructions. I got as far as running `./configure` and came up with this message:\\n\\n configure: error: You seem to be running X, but no X development libraries\\n were found. You should install the relevant development files for X\\n and for the toolkit you want, such as Gtk+ or Motif. Also make\\n sure you have development files for image handling, i.e.\\n tiff, gif, jpeg, png and xpm.\\n If you are sure you want Emacs compiled without X window support, pass\\n --without-x\\n to configure.\\n\\nI went into the Muon package manager, typed in `x window development library`, and found these two lovelies:\\n\\n- libclxclient-dev (X Window System C++ access library)\\n- libdri2-dev (library for the DRI2 extension to the X Window System)\\n\\nWhich means very little to me :-( I haven't even looked at Gtk+ or Motif, as well as the development files for image handling.\\n\\nI've Googled, and most of what I've found is at least 2 years old. Hoping someone would offer some guidance here, please.\", \"author_fullname\": \"t2_3n4c5vdo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Roadblock when installing Emacs 26.2 on kubuntu 19.04\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxrwro\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559923220.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t know why I hadn\\u0026#39;t done this sooner, but today I installed kubuntu on a memory stick and am now running that on my otherwise Windows 10 laptop.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, the first thing I did after installing 106 kubuntu updates was to install Emacs, which happens to be version 26.1. I noticed, however, that the kubuntu repository doesn\\u0026#39;t include any of the \\u003Ccode\\u003E.info\\u003C/code\\u003E files!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I uninstalled, downloaded 26.2 from \\u003Ca href=\\\"https://www.gnu.org/software/emacs/download.html\\\"\\u003EGNU Land\\u003C/a\\u003E and read through the installation instructions. I got as far as running \\u003Ccode\\u003E./configure\\u003C/code\\u003E and came up with this message:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Econfigure: error: You seem to be running X, but no X development libraries\\nwere found. You should install the relevant development files for X\\nand for the toolkit you want, such as Gtk+ or Motif. Also make\\nsure you have development files for image handling, i.e.\\ntiff, gif, jpeg, png and xpm.\\nIf you are sure you want Emacs compiled without X window support, pass\\n --without-x\\nto configure.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI went into the Muon package manager, typed in \\u003Ccode\\u003Ex window development library\\u003C/code\\u003E, and found these two lovelies:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Elibclxclient-dev (X Window System C++ access library)\\u003C/li\\u003E\\n\\u003Cli\\u003Elibdri2-dev (library for the DRI2 extension to the X Window System)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhich means very little to me :-( I haven\\u0026#39;t even looked at Gtk+ or Motif, as well as the development files for image handling.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve Googled, and most of what I\\u0026#39;ve found is at least 2 years old. Hoping someone would offer some guidance here, please.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxrwro\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"granti128\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559894420.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello r/emacs\\n\\nI would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz.[1](https://www.floydmortuary.com/obituaries/Eric-Ritz/) I didn't know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his `php-mode`.\\n\\nI'm not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\", \"author_fullname\": \"t2_gilh3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[meta] An \\\"in memoriam\\\" page?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxq3a0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 48, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 48, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559908284.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/emacs\\\"\\u003Er/emacs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz.\\u003Ca href=\\\"https://www.floydmortuary.com/obituaries/Eric-Ritz/\\\"\\u003E1\\u003C/a\\u003E I didn\\u0026#39;t know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his \\u003Ccode\\u003Ephp-mode\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"export EDITOR=emacs\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxq3a0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paxperscientiam\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559879484.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_6b5tg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxmyy8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 27, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 27, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559889098.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxmyy8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"LiterallyCarlSagan\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/federicotdn/key-quiz\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559860298.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a package that will let me forget which files I've already opened? Not so much a project exploration package or a do-everything completion system, just a slight twist on switch-to-buffer which would look for files if tab-completing to an existing buffer has failed. Kind of like how finding a file that's already open just switches to its buffer. Ideally as similar to switch-to-buffer's UI as possible.\", \"author_fullname\": \"t2_ajc92\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Package to switch to buffer or file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxm847\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559885167.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a package that will let me forget which files I\\u0026#39;ve already opened? Not so much a project exploration package or a do-everything completion system, just a slight twist on switch-to-buffer which would look for files if tab-completing to an existing buffer has failed. Kind of like how finding a file that\\u0026#39;s already open just switches to its buffer. Ideally as similar to switch-to-buffer\\u0026#39;s UI as possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxm847\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"phalp\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559856367.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm pretty new to emacs, I just installed spacemacs on my arch machine. In the terminal, the interface is near-unreadable. I just see \\\\u6969 all over the place where arrows and other unicode characters would be. Is there a font package I'm missing or something?\", \"author_fullname\": \"t2_eim28\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs showing unicode sequences in the terminal\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxjr2h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559872476.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m pretty new to emacs, I just installed spacemacs on my arch machine. In the terminal, the interface is near-unreadable. I just see \\\\u6969 all over the place where arrows and other unicode characters would be. Is there a font package I\\u0026#39;m missing or something?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxjr2h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rpgwaiter\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559843676.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If I'm writing a document to be published via latex, what, if any, advantages are there to author it in org-babel vs. pure latex? Does the answer change if the document includes things like mathematical equations, technical diagrams and/or code examples?\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-babel for latex\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxiz6w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559868561.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I\\u0026#39;m writing a document to be published via latex, what, if any, advantages are there to author it in org-babel vs. pure latex? Does the answer change if the document includes things like mathematical equations, technical diagrams and/or code examples?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxiz6w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559839761.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to debug python, but when it asks for a template and I type in \\\"python,\\\" nothing comes up. Where do I get a template?\", \"author_fullname\": \"t2_14xlbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Where do I find templates for dap-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxhod6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559861885.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to debug python, but when it asks for a template and I type in \\u0026quot;python,\\u0026quot; nothing comes up. Where do I get a template?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxhod6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_wade\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559833085.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have a setup where I'm forced to work on a Windows machine and connect to a remote linux server.\\n\\nMy initial idea was to start a emacs in daemon mode with `emacs --daemon` and having it persistently running on the server. Then, from windows and using putty (with X-forwarding) + vcxsrv (X Server for Windows), I could call `emacsclient -c` and have a client to this persistent session every time I need in a dedicated window in my Windows pc.\\n\\n\\nThis setup for me would be great because my sessions would survive connection instabilities. Even if my putty session dropped (which happens sometimes), I could just start another emacsclient and resume the work from where I left, including long-running `compile` commands.\\n\\n\\nHowever what happens is that after my connection drops for the first time (or I close a emacsclient) is that the next call to `emacsclient` fails. The system simply hangs and nothing happens. This happened with `emacsclient foo`, `emacsclient -c`, `emacsclient -e nil`, `emacsclient -t`, etc. It hangs (saying \\\"Waiting for Emacs\\\" if the -n flag is passed) as usual, but it never really opens a new emacs frame. \\n\\n\\nRestarting the server solves the issue, but of course I lose all my work.\\n\\n\\nAny ideas?\\n\\n\\n```\\nThis is GNU Emacs 25.1.1 (x86\\\\_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-15, modified by Debian\\n```\", \"author_fullname\": \"t2_2nkdd29t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxfdd1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847473.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a setup where I\\u0026#39;m forced to work on a Windows machine and connect to a remote linux server.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy initial idea was to start a emacs in daemon mode with \\u003Ccode\\u003Eemacs --daemon\\u003C/code\\u003E and having it persistently running on the server. Then, from windows and using putty (with X-forwarding) + vcxsrv (X Server for Windows), I could call \\u003Ccode\\u003Eemacsclient -c\\u003C/code\\u003E and have a client to this persistent session every time I need in a dedicated window in my Windows pc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis setup for me would be great because my sessions would survive connection instabilities. Even if my putty session dropped (which happens sometimes), I could just start another emacsclient and resume the work from where I left, including long-running \\u003Ccode\\u003Ecompile\\u003C/code\\u003E commands.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever what happens is that after my connection drops for the first time (or I close a emacsclient) is that the next call to \\u003Ccode\\u003Eemacsclient\\u003C/code\\u003E fails. The system simply hangs and nothing happens. This happened with \\u003Ccode\\u003Eemacsclient foo\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -c\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -e nil\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -t\\u003C/code\\u003E, etc. It hangs (saying \\u0026quot;Waiting for Emacs\\u0026quot; if the -n flag is passed) as usual, but it never really opens a new emacs frame. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERestarting the server solves the issue, but of course I lose all my work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\nThis is GNU Emacs 25.1.1 (x86\\\\_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-15, modified by Debian\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfdd1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vitorqb23\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559818673.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I used to get a longer undo history, I would frequently use visualize-undo-tree to navigate through my undo states... suddenly my tree is always a single path. \\n\\nAnyone have any idea what I might have changed?\", \"author_fullname\": \"t2_krp1j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Somehow my undo history is truncated... what did I inadvertently change?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx82j3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559798322.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used to get a longer undo history, I would frequently use visualize-undo-tree to navigate through my undo states... suddenly my tree is always a single path. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone have any idea what I might have changed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx82j3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moxxon\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559769522.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"well, recently i am using emacs to manage agenda, to write academic docs, to write some scripts for programming contest and so on until sudendly i find myself unproductive and crazy closing all buffer related to magit, org-mode, eshell, etc.... so i want to know how do you deal with all buffers?, how do you find and change to a buffer quickly?....\\n\\nany ideas is well received... thanks you!!\", \"author_fullname\": \"t2_rpq4n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"how to deal with a lot of buffers in emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx7m7a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 50, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 50, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559796022.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewell, recently i am using emacs to manage agenda, to write academic docs, to write some scripts for programming contest and so on until sudendly i find myself unproductive and crazy closing all buffer related to magit, org-mode, eshell, etc.... so i want to know how do you deal with all buffers?, how do you find and change to a buffer quickly?....\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eany ideas is well received... thanks you!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx7m7a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ch0ff\", \"num_crossposts\": 0, \"num_comments\": 54, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559767222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Even Better 'Better Defaults'\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx54uk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559783750.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx54uk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/ianpan870102/.emacs.d\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559754950.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've made an example [restclient file](https://github.com/TatriX/realworld-rust-rocket/blob/master/tests/dev.http) for my [realworld](https://github.com/TatriX/realworld-rust-rocket) implementation in Rust.\\n\\n[Restclient](https://github.com/pashky/restclient.el) is useful for http testing. So if you never tried it I encourage you to do so!\\n\\nhttps://i.redd.it/lfmdm6x2mj231.png\", \"author_fullname\": \"t2_tpfed\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Restclient example\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"lfmdm6x2mj231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1810, \"x\": 1915, \"u\": \"https://i.redd.it/lfmdm6x2mj231.png\"}, \"m\": \"image/png\", \"id\": \"lfmdm6x2mj231\"}}, \"name\": \"t3_bx2t14\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559771552.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve made an example \\u003Ca href=\\\"https://github.com/TatriX/realworld-rust-rocket/blob/master/tests/dev.http\\\"\\u003Erestclient file\\u003C/a\\u003E for my \\u003Ca href=\\\"https://github.com/TatriX/realworld-rust-rocket\\\"\\u003Erealworld\\u003C/a\\u003E implementation in Rust.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/pashky/restclient.el\\\"\\u003ERestclient\\u003C/a\\u003E is useful for http testing. So if you never tried it I encourage you to do so!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/lfmdm6x2mj231.png\\\"\\u003Ehttps://i.redd.it/lfmdm6x2mj231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2t14\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tatrics\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559742752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_eqgha\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx2swo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559771533.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2swo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andreas-marschke\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559742733.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want to make it so that all variable and function calls are highlighted in the same way they are in definitions but I cannot work out how to properly do so.\\n\\n[Image](https://imgur.com/t9sIhUs) of my current highlighting.\", \"author_fullname\": \"t2_3bwix9h6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx2cy9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559768909.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to make it so that all variable and function calls are highlighted in the same way they are in definitions but I cannot work out how to properly do so.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/t9sIhUs\\\"\\u003EImage\\u003C/a\\u003E of my current highlighting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2cy9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ConfidentGarbage9\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559740109.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to get into writing backends for Gnus, and I'm having a hard time wrapping my head around it coneptwise, essentialwise and otherwise.\\n\\n\\u0026#x200B;\\n\\nI think I've seen a blog-post or somesuch years ago walking through the basics, but all my attempts at finding it have evaluated to nil.\\n\\n\\u0026#x200B;\\n\\nWould I be so lucky that one of you might be able provide any pointers?\", \"author_fullname\": \"t2_mdzdbt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The woes of writing Gnus backends\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx25j5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559767624.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to get into writing backends for Gnus, and I\\u0026#39;m having a hard time wrapping my head around it coneptwise, essentialwise and otherwise.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I\\u0026#39;ve seen a blog-post or somesuch years ago walking through the basics, but all my attempts at finding it have evaluated to nil.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWould I be so lucky that one of you might be able provide any pointers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx25j5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"StoffePro\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx25j5/the_woes_of_writing_gnus_backends/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx25j5/the_woes_of_writing_gnus_backends/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559738824.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have some interesting agenda entries dating back to 2017 that I want to use in my current org files and I have set the TODO values to TODO2017, but there is too much to see when I am working on current items.\\n\\nIs there a way to filter the editing page to hide the TODO2017 or any other items?\\n\\nI think I can filter them out in the agenda view, but in this case I need them filtered when viewing or editing the page.\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can some org TODOs filtered out from normal working view?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx0bp9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559752893.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have some interesting agenda entries dating back to 2017 that I want to use in my current org files and I have set the TODO values to TODO2017, but there is too much to see when I am working on current items.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way to filter the editing page to hide the TODO2017 or any other items?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I can filter them out in the agenda view, but in this case I need them filtered when viewing or editing the page.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx0bp9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx0bp9/how_can_some_org_todos_filtered_out_from_normal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx0bp9/how_can_some_org_todos_filtered_out_from_normal/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559724093.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I saw [an earlier thread](https://www.reddit.com/r/emacs/comments/8e24t9/writing_reactjsx_in_2018_what_addons_do_you_all/) asking about users\\u2019 setups for JSX. Since I can\\u2019t respond to that thread, I thought I\\u2019d make a new one / an announcement.\\n\\nSince Emacs 25, js-jsx-mode was added to provide some indentation support for JSX \\u2014 however, the indentation code had many bugs and limitations. Not everyone knew about js-jsx-mode either.\\n\\nI decided to return to the Emacs core and fix the indentation code. I also added highlighting for JSX. I even made it so that JSX could be detected and used in normal JavaScript buffers, without the user needing to know about js-jsx-mode.\\n\\n[JSX code highlighted in Emacs 27](https://i.redd.it/hh8uds9elh231.png)\\n\\nAll these features are now available on the Emacs master branch, and eventually will be released in Emacs 27. I invite JS devs to take my improvements for a spin. Hopefully they will be pleasant for you to use!\\n\\nMy goal was to do most of the same things that the combination of js2-mode+rjsx-mode would achieve, without needing to install and configure extra modes, and hopefully with better performance.\", \"author_fullname\": \"t2_3w4fpd4t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"Improved JSX support now available in js-mode on Emacs master\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"hh8uds9elh231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 684, \"x\": 816, \"u\": \"https://i.redd.it/hh8uds9elh231.png\"}, \"m\": \"image/png\", \"id\": \"hh8uds9elh231\"}}, \"name\": \"t3_bwzpw0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 107, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 107, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559747224.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI saw \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/8e24t9/writing_reactjsx_in_2018_what_addons_do_you_all/\\\"\\u003Ean earlier thread\\u003C/a\\u003E asking about users\\u2019 setups for JSX. Since I can\\u2019t respond to that thread, I thought I\\u2019d make a new one / an announcement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince Emacs 25, js-jsx-mode was added to provide some indentation support for JSX \\u2014 however, the indentation code had many bugs and limitations. Not everyone knew about js-jsx-mode either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI decided to return to the Emacs core and fix the indentation code. I also added highlighting for JSX. I even made it so that JSX could be detected and used in normal JavaScript buffers, without the user needing to know about js-jsx-mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/hh8uds9elh231.png\\\"\\u003EJSX code highlighted in Emacs 27\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll these features are now available on the Emacs master branch, and eventually will be released in Emacs 27. I invite JS devs to take my improvements for a spin. Hopefully they will be pleasant for you to use!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy goal was to do most of the same things that the combination of js2-mode+rjsx-mode would achieve, without needing to install and configure extra modes, and hopefully with better performance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwzpw0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jacksonrayhamilton\", \"num_crossposts\": 0, \"num_comments\": 23, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559718424.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"It is kind of annoying to have to use capital letters to get a complete suggestion in many cases. So I was wondering if it possible to make company-lsp non-case-sensitive.\\n\\n\\u0026#x200B;\\n\\nThanks.\", \"author_fullname\": \"t2_3d69xp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make company-lsp non-case-sensitive?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwt79w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559706779.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt is kind of annoying to have to use capital letters to get a complete suggestion in many cases. So I was wondering if it possible to make company-lsp non-case-sensitive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwt79w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ram535\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwt79w/how_to_make_companylsp_noncasesensitive/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwt79w/how_to_make_companylsp_noncasesensitive/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559677979.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm a long-time vim user who's been intrigued for a while by what emacs has to offer. I recently made the plunge and have been been using emacs for my workflow with C/C++ development mostly. One issue that I'm running into is that I can't seem to get autoindent to behave nicely, or at least to behave like it does in vim.\\n\\nIn my .vimrc, I have two lines:\\n\\n set tabstop=4\\n set shiftwidth=4\\n\\nThere is a third option, set notabexpand, which is on by default and keeps tabs as tabs, instead of substituting spaces.\\n\\nThis is the behavior that I'm trying to create in emacs. The tab character is displayed as 4 spaces wide, but is actually saved as a tab character in the file instead of four spaces. Autoindentation also inserts tabs, which are displayed as 4 spaces wide.\\n\\nHow do I reproduce this in emacs? I've gone through half a dozen guides, each recommending something different, and all of them have had funky results. Currently I've got:\\n\\n (setq-default tab-width 4)\\n (setq tap-stop-list (number-sequence 4 80 4))\\n\\nAutoindents give me a tab two characters wide. I'm not sure if it's a tab being displayed as two spaces, or two actual spaces.\\n\\nI tried adding: \\n\\n (setq c-default-style \\\"linux\\\" tab-width 4)\\n\\nWhen I did this, tabs were indeed displayed as 4 characters wide, but each level of indention was giving me 2 tabs for a total of 8 characters of indentation per level.\\n\\nWhat am I missing here? I feel like I *must* be making this way harder than it is because such basic functionality can't be hidden behind 10 lines of configuration.\\n\\n\\nEdit:\\n\\nI did a little bit more tinkering, and I seem to have found a combination of settings that (mostly) gets the correct behavior.\\n\\nBasically, I got rid of everything in my .emacs that mentioned indentation and added the following:\\n\\n (setq-default c-basic-offset 4\\n tab-width 4\\n indent-tabs-mode t)\\n\\nWith that change, everything *seems* to be working correctly. c-basic-offset is how many spaces emacs will indent a level of code, tab width is how many spaces the tab character is equal to, and indent-tabs-mode is a boolean variable that determines if tabs are used (t) or spaces (f). At least that's what I'm gathering.\", \"author_fullname\": \"t2_ge28w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I get my tabs and auto-indent to behave nicely?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bws522\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559712779.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559701657.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a long-time vim user who\\u0026#39;s been intrigued for a while by what emacs has to offer. I recently made the plunge and have been been using emacs for my workflow with C/C++ development mostly. One issue that I\\u0026#39;m running into is that I can\\u0026#39;t seem to get autoindent to behave nicely, or at least to behave like it does in vim.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my .vimrc, I have two lines:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eset tabstop=4\\nset shiftwidth=4\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThere is a third option, set notabexpand, which is on by default and keeps tabs as tabs, instead of substituting spaces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the behavior that I\\u0026#39;m trying to create in emacs. The tab character is displayed as 4 spaces wide, but is actually saved as a tab character in the file instead of four spaces. Autoindentation also inserts tabs, which are displayed as 4 spaces wide.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I reproduce this in emacs? I\\u0026#39;ve gone through half a dozen guides, each recommending something different, and all of them have had funky results. Currently I\\u0026#39;ve got:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq-default tab-width 4)\\n(setq tap-stop-list (number-sequence 4 80 4))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAutoindents give me a tab two characters wide. I\\u0026#39;m not sure if it\\u0026#39;s a tab being displayed as two spaces, or two actual spaces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried adding: \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq c-default-style \\u0026quot;linux\\u0026quot; tab-width 4)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I did this, tabs were indeed displayed as 4 characters wide, but each level of indention was giving me 2 tabs for a total of 8 characters of indentation per level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat am I missing here? I feel like I \\u003Cem\\u003Emust\\u003C/em\\u003E be making this way harder than it is because such basic functionality can\\u0026#39;t be hidden behind 10 lines of configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did a little bit more tinkering, and I seem to have found a combination of settings that (mostly) gets the correct behavior.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically, I got rid of everything in my .emacs that mentioned indentation and added the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq-default c-basic-offset 4\\n tab-width 4\\n indent-tabs-mode t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith that change, everything \\u003Cem\\u003Eseems\\u003C/em\\u003E to be working correctly. c-basic-offset is how many spaces emacs will indent a level of code, tab width is how many spaces the tab character is equal to, and indent-tabs-mode is a boolean variable that determines if tabs are used (t) or spaces (f). At least that\\u0026#39;s what I\\u0026#39;m gathering.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bws522\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"morganmachine91\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bws522/how_do_i_get_my_tabs_and_autoindent_to_behave/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bws522/how_do_i_get_my_tabs_and_autoindent_to_behave/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559672857.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_r6lg7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Will this Debian buster (testing) bug of Emacs related to a 16 year old upstream gtk+ bug affect those waiting for buster?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwrhq4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559698416.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"bugs.debian.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwrhq4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jumpUpHigh\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwrhq4/will_this_debian_buster_testing_bug_of_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://bugs.debian.org/cgi-bin/bugreport.cgi?archive=no\\u0026bug=929567\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559669616.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello everyone,\\n\\nI have been wanting to customize emacs to my needs for a long time but except for org-mode haven't quite done anything. Figured now would be a good time to start.\\n\\nThe first thing that I want is I create a lot of buffers on emacs but sometimes when my work laptop decides to restart I loose all those buffers (since they aren't associated with any file).\\n\\nHow do I get emacs to auto save my buffers\\\\*\\\\* to a particular location? \\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\* When I say buffer I basically mean \\\\`C-x b\\\\` type in a new name and start working on it.\", \"author_fullname\": \"t2_u6flf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make emacs automatically save buffers to a location\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwqw72\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"3a5e1042-1094-11e7-bb00-0e3b6c7befce\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559695385.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been wanting to customize emacs to my needs for a long time but except for org-mode haven\\u0026#39;t quite done anything. Figured now would be a good time to start.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first thing that I want is I create a lot of buffers on emacs but sometimes when my work laptop decides to restart I loose all those buffers (since they aren\\u0026#39;t associated with any file).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I get emacs to auto save my buffers** to a particular location? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** When I say buffer I basically mean `C-x b` type in a new name and start working on it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwqw72\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"abhixec\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/bwqw72/how_to_make_emacs_automatically_save_buffers_to_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwqw72/how_to_make_emacs_automatically_save_buffers_to_a/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559666585.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am trying to create a package manager for emacs which doesn't rely on package.el, is very minimalistic, and does all of its operations in the background. I have done some basic operations using shell scripts, Maybe I will use elisp code instead at some point. Any feedbacks or comments are very much appreciated.\\n\\nhttps://github.com/SidharthArya/emacsit\", \"author_fullname\": \"t2_3tn7pcdr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A simple package manager for emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwptua\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559661450.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559689923.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to create a package manager for emacs which doesn\\u0026#39;t rely on package.el, is very minimalistic, and does all of its operations in the background. I have done some basic operations using shell scripts, Maybe I will use elisp code instead at some point. Any feedbacks or comments are very much appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/SidharthArya/emacsit\\\"\\u003Ehttps://github.com/SidharthArya/emacsit\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwptua\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SidharthArya-\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwptua/a_simple_package_manager_for_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwptua/a_simple_package_manager_for_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559661123.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cr743\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"dianyou 0.0.3 is out (Gnus tool to search/analyze mails)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwohf8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559682405.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"blog.binchen.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwohf8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"redguardtoo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwohf8/dianyou_003_is_out_gnus_tool_to_searchanalyze/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://blog.binchen.org/posts/dianyou-0-0-3-is-out.html\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559653605.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I know that `emacs` is not multi-threaded, but I'd hope to be able to spawn a child process from `eshell`. Running `M-x shell` and then `yes \\u003E /dev/null` results in a process `yes` being spawned and it is occupying one core's 100%, it does not block `emacs`, all is good.\\n\\nHowever, when running `M-x eshell` and then `yes \\u003E /dev/null` results in the `emacs` process chugging 100% cpu, therefore `eshell` spawns a process as a child `emacs` process? Do I get this right?\\n\\nSo the question is: Can `eshell` spawn a process that is detached from `emacs`, just like `M-x shell` does?\", \"author_fullname\": \"t2_17fhdh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Eshell don't blocks Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwn89f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559673594.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know that \\u003Ccode\\u003Eemacs\\u003C/code\\u003E is not multi-threaded, but I\\u0026#39;d hope to be able to spawn a child process from \\u003Ccode\\u003Eeshell\\u003C/code\\u003E. Running \\u003Ccode\\u003EM-x shell\\u003C/code\\u003E and then \\u003Ccode\\u003Eyes \\u0026gt; /dev/null\\u003C/code\\u003E results in a process \\u003Ccode\\u003Eyes\\u003C/code\\u003E being spawned and it is occupying one core\\u0026#39;s 100%, it does not block \\u003Ccode\\u003Eemacs\\u003C/code\\u003E, all is good.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, when running \\u003Ccode\\u003EM-x eshell\\u003C/code\\u003E and then \\u003Ccode\\u003Eyes \\u0026gt; /dev/null\\u003C/code\\u003E results in the \\u003Ccode\\u003Eemacs\\u003C/code\\u003E process chugging 100% cpu, therefore \\u003Ccode\\u003Eeshell\\u003C/code\\u003E spawns a process as a child \\u003Ccode\\u003Eemacs\\u003C/code\\u003E process? Do I get this right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo the question is: Can \\u003Ccode\\u003Eeshell\\u003C/code\\u003E spawn a process that is detached from \\u003Ccode\\u003Eemacs\\u003C/code\\u003E, just like \\u003Ccode\\u003EM-x shell\\u003C/code\\u003E does?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwn89f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"grimscythe_\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwn89f/eshell_dont_blocks_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwn89f/eshell_dont_blocks_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559644794.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559637338.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As in the previous thread don't feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly tips/trick/etc/ thread\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwm94g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559664939.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs in the previous thread don\\u0026#39;t feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwm94g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 19, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": true, \"url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559636139.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_661dm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A keyboard that changes as you type.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwlncu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 80, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 80, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559659632.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwlncu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jaccarmac\", \"num_crossposts\": 1, \"num_comments\": 25, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwlncu/a_keyboard_that_changes_as_you_type/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/shapr/markovkeyboard\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559630832.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"After set debug-on-error to t in order to make sure that there is no error inside my .emacs file then i got some error on startup.\\n\\n Debugger entered--Lisp error: (wrong-type-argument undo-tree nil)\\n signal(wrong-type-argument (undo-tree nil))\\n undo-tree-current(nil)\\n (undo-tree-node-previous (undo-tree-current buffer-undo-tree))\\n (and undo-tree-mode (not buffer-read-only) (not (eq t buffer-undo-list)) (undo-tree-node-previous (undo-tree-current buffer-undo-tree)))\\n redisplay_internal\\\\ \\\\(C\\\\ function\\\\)()\\n message(\\\"Loading %s (source)...\\\" \\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\")\\n load-with-code-conversion(\\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\" \\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\" nil nil)\\n #\\u003Csubr load\\u003E(\\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\" nil nil nil nil)\\n ad-Advice-load(#\\u003Csubr load\\u003E \\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n apply(ad-Advice-load #\\u003Csubr load\\u003E \\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n load(\\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n eval-buffer(#\\u003Cbuffer *load*\\u003E nil \\\"/home/yourpc/.emacs\\\" nil t) ; Reading at buffer position 29657\\n load-with-code-conversion(\\\"/home/yourpc/.emacs\\\" \\\"/home/yourpc/.emacs\\\" t t)\\n load(\\\"~/.emacs\\\" noerror nomessage)\\n startup--load-user-init-file(#f(compiled-function () #\\u003Cbytecode 0x1fd3c2958e75\\u003E) #f(compiled-function () #\\u003Cbytecode 0x1fd3c2958e03\\u003E) t)\\n command-line()\\n normal-top-level()\\n\\nAnyone could help me fix this? I just want an error free.\", \"author_fullname\": \"t2_3uh7inav\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Set debug-on-error to t then startup with undo-tree error.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwleyk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559657730.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter set debug-on-error to t in order to make sure that there is no error inside my .emacs file then i got some error on startup.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EDebugger entered--Lisp error: (wrong-type-argument undo-tree nil)\\n signal(wrong-type-argument (undo-tree nil))\\n undo-tree-current(nil)\\n (undo-tree-node-previous (undo-tree-current buffer-undo-tree))\\n (and undo-tree-mode (not buffer-read-only) (not (eq t buffer-undo-list)) (undo-tree-node-previous (undo-tree-current buffer-undo-tree)))\\n redisplay_internal\\\\ \\\\(C\\\\ function\\\\)()\\n message(\\u0026quot;Loading %s (source)...\\u0026quot; \\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot;)\\n load-with-code-conversion(\\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot; \\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot; nil nil)\\n #\\u0026lt;subr load\\u0026gt;(\\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot; nil nil nil nil)\\n ad-Advice-load(#\\u0026lt;subr load\\u0026gt; \\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n apply(ad-Advice-load #\\u0026lt;subr load\\u0026gt; \\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n load(\\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n eval-buffer(#\\u0026lt;buffer *load*\\u0026gt; nil \\u0026quot;/home/yourpc/.emacs\\u0026quot; nil t) ; Reading at buffer position 29657\\n load-with-code-conversion(\\u0026quot;/home/yourpc/.emacs\\u0026quot; \\u0026quot;/home/yourpc/.emacs\\u0026quot; t t)\\n load(\\u0026quot;~/.emacs\\u0026quot; noerror nomessage)\\n startup--load-user-init-file(#f(compiled-function () #\\u0026lt;bytecode 0x1fd3c2958e75\\u0026gt;) #f(compiled-function () #\\u0026lt;bytecode 0x1fd3c2958e03\\u0026gt;) t)\\n command-line()\\n normal-top-level()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnyone could help me fix this? I just want an error free.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwleyk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cuhabaho\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwleyk/set_debugonerror_to_t_then_startup_with_undotree/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwleyk/set_debugonerror_to_t_then_startup_with_undotree/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559628930.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Unfortunately, this is not a just a statement about the longevity of Emacs, it's an actual problem I'm having: when I try to exit Emacs (either by C -x-C-c or closing the window), I get this error message in the minibuffer: \\n\\n\\nWrong type argument: number-or-marker-p, (+ -8) \\n\\n\\nI have to force quit it to get out. When I start Emacs with -q, this doesn't happen, so I'm getting ready to go through my whole init file, but I was hoping someone else might have encountered this and could save me some time. Thanks!\", \"author_fullname\": \"t2_gu9ty\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs won't quit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwjenz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559643882.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnfortunately, this is not a just a statement about the longevity of Emacs, it\\u0026#39;s an actual problem I\\u0026#39;m having: when I try to exit Emacs (either by C -x-C-c or closing the window), I get this error message in the minibuffer: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWrong type argument: number-or-marker-p, (+ -8) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have to force quit it to get out. When I start Emacs with -q, this doesn\\u0026#39;t happen, so I\\u0026#39;m getting ready to go through my whole init file, but I was hoping someone else might have encountered this and could save me some time. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwjenz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"viscountslim\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559615082.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello All,\\n\\nI have a single org file with lots of entries. Each entry has a few tags. I would like to view full entries for a specific a tag.\\n\\nI tried org-occur: it seem to highlight matching tags but keeps all entries in view\\n\\nI came across this old thread: [https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines](https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines) \\n\\nBefore trying this I wanted to see if there is something already baked in.\", \"author_fullname\": \"t2_62u3sb0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-mode: Narrow org buffer to matching tag entries such that full entry is in view\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwjdry\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559643739.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello All,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a single org file with lots of entries. Each entry has a few tags. I would like to view full entries for a specific a tag.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried org-occur: it seem to highlight matching tags but keeps all entries in view\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI came across this old thread: \\u003Ca href=\\\"https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines\\\"\\u003Ehttps://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore trying this I wanted to see if there is something already baked in.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwjdry\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"manojm321\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwjdry/orgmode_narrow_org_buffer_to_matching_tag_entries/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwjdry/orgmode_narrow_org_buffer_to_matching_tag_entries/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559614939.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My use case is this, I usually have emacs split into three vertical frames (left, center, and right) and I prefer editing in the middle buffer while using the right for reference and the left for compilation, testing, etc. Is there a way to make it so that when I open a buffer (or switch to a buffer) in the middle frame and it is open in the right, it swaps the middle and right buffers? This would be very nice for me so that I don't have to go back to the right buffer to change it myself. Is there a package for this or a simple script to make it work?\", \"author_fullname\": \"t2_apgh2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to swap if buffer is open in other frame, swap frame buffers instead of having two frames with the same buffer.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwdztj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559614819.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy use case is this, I usually have emacs split into three vertical frames (left, center, and right) and I prefer editing in the middle buffer while using the right for reference and the left for compilation, testing, etc. Is there a way to make it so that when I open a buffer (or switch to a buffer) in the middle frame and it is open in the right, it swaps the middle and right buffers? This would be very nice for me so that I don\\u0026#39;t have to go back to the right buffer to change it myself. Is there a package for this or a simple script to make it work?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwdztj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Twosided13\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwdztj/is_there_a_way_to_swap_if_buffer_is_open_in_other/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwdztj/is_there_a_way_to_swap_if_buffer_is_open_in_other/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559586019.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have the following code in my `.emacs` file:\\n\\n````\\n(custom-set-faces\\n '(default ((t (:family \\\"Source Code Pro\\\" :foundry \\\"ADBO\\\" :slant normal :weight normal :height 160 :width normal)))))\\n(set-fontset-font \\\"fontset-default\\\"\\n\\t\\t 'arabic\\n\\t\\t (font-spec :family \\\"Kawkab Mono\\\" :size 14))\\n````\\n\\nSetting `Source Code Pro` is done successfully for English text. But `Kawkab Mono` doesn't get applied on Arabic text, I still need to put the point at the end of that section, press C-x C-e to execute it.\\n\\nStarting emacs with `--debug-init` doesn't show any error message.\", \"author_fullname\": \"t2_169z83\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doesn't Execute `set-fontset-font` code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwchvn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559607309.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have the following code in my \\u003Ccode\\u003E.emacs\\u003C/code\\u003E file:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(custom-set-faces\\n \\u0026#39;(default ((t (:family \\u0026quot;Source Code Pro\\u0026quot; :foundry \\u0026quot;ADBO\\u0026quot; :slant normal :weight normal :height 160 :width normal)))))\\n(set-fontset-font \\u0026quot;fontset-default\\u0026quot;\\n \\u0026#39;arabic\\n (font-spec :family \\u0026quot;Kawkab Mono\\u0026quot; :size 14))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESetting \\u003Ccode\\u003ESource Code Pro\\u003C/code\\u003E is done successfully for English text. But \\u003Ccode\\u003EKawkab Mono\\u003C/code\\u003E doesn\\u0026#39;t get applied on Arabic text, I still need to put the point at the end of that section, press C-x C-e to execute it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStarting emacs with \\u003Ccode\\u003E--debug-init\\u003C/code\\u003E doesn\\u0026#39;t show any error message.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwchvn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tareefdev\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwchvn/emacs_doesnt_execute_setfontsetfont_code/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwchvn/emacs_doesnt_execute_setfontsetfont_code/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559578509.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[https://github.com/abrochard/emacs-todoist](https://github.com/abrochard/emacs-todoist)\\n\\n\\u0026#x200B;\\n\\nI'm a big fan of [todoist.com](https://todoist.com) and it's so convenient to be able to just create a new task from a binding, or pull out the task list in an org-mode buffer.\", \"author_fullname\": \"t2_10q1g7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"emacs-todoist: interact with todoist.com for task management\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwc9lr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559606158.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/abrochard/emacs-todoist\\\"\\u003Ehttps://github.com/abrochard/emacs-todoist\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a big fan of \\u003Ca href=\\\"https://todoist.com\\\"\\u003Etodoist.com\\u003C/a\\u003E and it\\u0026#39;s so convenient to be able to just create a new task from a binding, or pull out the task list in an org-mode buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwc9lr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Metr0idFusi0n\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559577358.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[leaf.el](https://github.com/conao3/leaf.el)\\n\\n[feather.el](https://github.com/conao3/feather.el)\\n\\nBoth seem interesting, and I didn't see them in MELPA so I thought I'd give them exposure. :) Currently there's very few contributors, so maybe people here might be interested in contributing.\\n\\nI don't own these, just btw.\", \"author_fullname\": \"t2_md275\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Interesting Emacs packages: leaf.el and feather.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwbo9n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559603044.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/conao3/leaf.el\\\"\\u003Eleaf.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/conao3/feather.el\\\"\\u003Efeather.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth seem interesting, and I didn\\u0026#39;t see them in MELPA so I thought I\\u0026#39;d give them exposure. :) Currently there\\u0026#39;s very few contributors, so maybe people here might be interested in contributing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t own these, just btw.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbo9n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ProfessorSexyTime\", \"num_crossposts\": 0, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559574244.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_960gwtm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I wrote some elisp to insert pretty comments. Please code review! :)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwbmc3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559602783.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gist.github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbmc3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nsapte\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbmc3/i_wrote_some_elisp_to_insert_pretty_comments/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://gist.github.com/suvratapte/fc3f5bfbc9c9d649e3ef080ec66bf9d5\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559573983.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So when I try to change custom themes, the previous theme is overwriting the new theme in my init.el. When I change it, this is what I'm seeing in my custom-set-theme section.\\n\\n\\u0026#x200B;\\n\\n '(ansi-color-names-vector\\n [\\\"#1F1611\\\" \\\"#660000\\\" \\\"#144212\\\" \\\"#EFC232\\\" \\\"#5798AE\\\" \\\"#BE73FD\\\" \\\"#93C1BC\\\" \\\"#E6E1DC\\\"])\\n '(ansi-term-color-vector\\n [unspecified \\\"#1F1611\\\" \\\"#660000\\\" \\\"#144212\\\" \\\"#EFC232\\\" \\\"#5798AE\\\" \\\"#BE73FD\\\" \\\"#93C1BC\\\" \\\"#E6E1DC\\\"])\\n '(custom-safe-themes\\n (quote\\n (\\\"3e83abe75cebf5621e34ce1cbe6e12e4d80766bed0755033febed5794d0c69bf\\\" \\\"35b000995eb4a526249078664d91b056feab7e96e81b2f226a0d9cad7f0a416e\\\" \\\"4b19d61c560a93ef90767abe513c11f236caec2864617d718aa366618133704c\\\" default)))\\n '(fci-rule-character-color \\\"#452E2E\\\")\\n '(fci-rule-color \\\"#452E2E\\\")\\n\\n\\u0026#x200B;\\n\\nDeleting this doesn't do anything, it just adds it in next time.\\n\\nHere are some screenshots to clarify what it is I'm seeing.\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[https://i.redd.it/kr94yn9hm5231.png](https://i.redd.it/kr94yn9hm5231.png)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[https://i.redd.it/84g8yxfkm5231.png](https://i.redd.it/84g8yxfkm5231.png)\\n\\nThe custom theme is supposed to look like [this](https://peach-melpa.org/themes/birds-of-paradise-plus-theme). Uninstalling the autumn-light theme doesn't help, either.\\n\\nEDIT: Color v custom\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/anogyn56vq231.gif\", \"author_fullname\": \"t2_14xlbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I'm getting a strange color theme bug in 26.2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"anogyn56vq231\": {\"status\": \"valid\", \"e\": \"AnimatedImage\", \"s\": {\"y\": 534, \"gif\": \"https://i.redd.it/anogyn56vq231.gif\", \"mp4\": \"https://external-preview.redd.it/anogyn56vq231.gif?format=mp4\\u0026s=862f232535c436319569146e87e81869651931c2\", \"x\": 500}, \"m\": \"image/gif\", \"id\": \"anogyn56vq231\"}}, \"name\": \"t3_bwbizf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559830430.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559602269.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo when I try to change custom themes, the previous theme is overwriting the new theme in my init.el. When I change it, this is what I\\u0026#39;m seeing in my custom-set-theme section.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026#39;(ansi-color-names-vector\\n[\\u0026quot;#1F1611\\u0026quot; \\u0026quot;#660000\\u0026quot; \\u0026quot;#144212\\u0026quot; \\u0026quot;#EFC232\\u0026quot; \\u0026quot;#5798AE\\u0026quot; \\u0026quot;#BE73FD\\u0026quot; \\u0026quot;#93C1BC\\u0026quot; \\u0026quot;#E6E1DC\\u0026quot;])\\n\\u0026#39;(ansi-term-color-vector\\n[unspecified \\u0026quot;#1F1611\\u0026quot; \\u0026quot;#660000\\u0026quot; \\u0026quot;#144212\\u0026quot; \\u0026quot;#EFC232\\u0026quot; \\u0026quot;#5798AE\\u0026quot; \\u0026quot;#BE73FD\\u0026quot; \\u0026quot;#93C1BC\\u0026quot; \\u0026quot;#E6E1DC\\u0026quot;])\\n\\u0026#39;(custom-safe-themes\\n(quote\\n(\\u0026quot;3e83abe75cebf5621e34ce1cbe6e12e4d80766bed0755033febed5794d0c69bf\\u0026quot; \\u0026quot;35b000995eb4a526249078664d91b056feab7e96e81b2f226a0d9cad7f0a416e\\u0026quot; \\u0026quot;4b19d61c560a93ef90767abe513c11f236caec2864617d718aa366618133704c\\u0026quot; default)))\\n\\u0026#39;(fci-rule-character-color \\u0026quot;#452E2E\\u0026quot;)\\n\\u0026#39;(fci-rule-color \\u0026quot;#452E2E\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeleting this doesn\\u0026#39;t do anything, it just adds it in next time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are some screenshots to clarify what it is I\\u0026#39;m seeing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/kr94yn9hm5231.png\\\"\\u003Ehttps://i.redd.it/kr94yn9hm5231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/84g8yxfkm5231.png\\\"\\u003Ehttps://i.redd.it/84g8yxfkm5231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe custom theme is supposed to look like \\u003Ca href=\\\"https://peach-melpa.org/themes/birds-of-paradise-plus-theme\\\"\\u003Ethis\\u003C/a\\u003E. Uninstalling the autumn-light theme doesn\\u0026#39;t help, either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Color v custom\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/anogyn56vq231.gif\\\"\\u003Ehttps://i.redd.it/anogyn56vq231.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbizf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_wade\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559573469.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here's the story:\\n\\nOnce upon a time, I wanted to convert some videos into mp3 files. But why download some GUI program off the internet or write a script when you can open up Emacs, right?\\n\\nSo after messing around with some Elisp code for running ffmpeg as a subprocess, I stumbled on Eshell! Not only does it work amazingly with Evil (it's like a regular buffer and bash had a baby), but you can throw in all the other Emacs favourites like Helm for getting file paths, and Company for some auto-complete.\\n\\nHere are some (Evil) manoeuvres.\\n\\n`:eshell`\\n\\n`cd C-x C-f` choose a file `C-c i` insert file path.\\n\\nWant to copy past your cool Eshell script to Reddit?\\n\\n`ESC` to go back to normal mode (or `jk` if you're fancy) `yy` yank the line.\\n\\n`\\u003E\\u003E for f in *.mkv {ffmpeg -i $f -aq 3 output/$(file-name-sans-extension f).mp3}`\\n\\n`i` go back to insert mode, run your mini-script. Horrah! All files converted.\\n\\nWhat's `$(file-name-sans-extension f)` you ask? That's Elisp code. That's right, you can just throw in the entire power of Emacs Lisp into your one line script.\\n\\nThere is just one little issue I ran into and that's when typing $(file-name...) Company bugged out and wouldn't complete the function name so I had to type the whole thing out (the horror!).\\n\\n\\u003Cedit\\u003E Found some extra links, since the documentation for Eshell inside emacs is a bit sparse.\\n\\nhttps://www.emacswiki.org/emacs/CategoryEshell\\n\\nhttps://masteringemacs.org/article/complete-guide-mastering-eshell\", \"author_fullname\": \"t2_c4blft1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Did you know that the Eshell is awesome?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9yo7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 87, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 87, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559574338.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559592800.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s the story:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce upon a time, I wanted to convert some videos into mp3 files. But why download some GUI program off the internet or write a script when you can open up Emacs, right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo after messing around with some Elisp code for running ffmpeg as a subprocess, I stumbled on Eshell! Not only does it work amazingly with Evil (it\\u0026#39;s like a regular buffer and bash had a baby), but you can throw in all the other Emacs favourites like Helm for getting file paths, and Company for some auto-complete.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are some (Evil) manoeuvres.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:eshell\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ecd C-x C-f\\u003C/code\\u003E choose a file \\u003Ccode\\u003EC-c i\\u003C/code\\u003E insert file path.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWant to copy past your cool Eshell script to Reddit?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EESC\\u003C/code\\u003E to go back to normal mode (or \\u003Ccode\\u003Ejk\\u003C/code\\u003E if you\\u0026#39;re fancy) \\u003Ccode\\u003Eyy\\u003C/code\\u003E yank the line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026gt;\\u0026gt; for f in *.mkv {ffmpeg -i $f -aq 3 output/$(file-name-sans-extension f).mp3}\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ei\\u003C/code\\u003E go back to insert mode, run your mini-script. Horrah! All files converted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s \\u003Ccode\\u003E$(file-name-sans-extension f)\\u003C/code\\u003E you ask? That\\u0026#39;s Elisp code. That\\u0026#39;s right, you can just throw in the entire power of Emacs Lisp into your one line script.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is just one little issue I ran into and that\\u0026#39;s when typing $(file-name...) Company bugged out and wouldn\\u0026#39;t complete the function name so I had to type the whole thing out (the horror!).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;edit\\u0026gt; Found some extra links, since the documentation for Eshell inside emacs is a bit sparse.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/CategoryEshell\\\"\\u003Ehttps://www.emacswiki.org/emacs/CategoryEshell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://masteringemacs.org/article/complete-guide-mastering-eshell\\\"\\u003Ehttps://masteringemacs.org/article/complete-guide-mastering-eshell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9yo7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"202700000000\", \"num_crossposts\": 0, \"num_comments\": 25, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559564000.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_64sbo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9azu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559588032.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9azu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rainymood_XI\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/Rainymood/dotemacs\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559559232.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nAs above, I'm wanting to access OneDrive from my emacs init as I'm trying to use org-mode/agenda, and want to be able to use OneDrive to sync between locations, however emacs always says can't find the file regardless if I use:\\n\\n\\\\~/OneDrive...\\n\\n%userprofile%/OneDrive\\n\\n%systemdrive%%homepath%/OneDrive\\n\\nFrom here:\\n\\n[https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt](https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt)\\n\\n\\u0026#x200B;\\n\\nBasically want this:\\n\\nsetq org-agenda-files (list \\\"\\\\~/OneDrive/org/general.org\\\")\\n\\n\\u0026#x200B;\\n\\nSince I have different user names at work/home I can't use a full path, any ideas? Most of the comments about home on windows seem to be with moving the .emacs.d directory, which I'm fine keeping that where it is.\", \"author_fullname\": \"t2_5f5ma\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Accessing OneDrive from emacs init?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw8ejb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559580110.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs above, I\\u0026#39;m wanting to access OneDrive from my emacs init as I\\u0026#39;m trying to use org-mode/agenda, and want to be able to use OneDrive to sync between locations, however emacs always says can\\u0026#39;t find the file regardless if I use:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E~/OneDrive...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E%userprofile%/OneDrive\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E%systemdrive%%homepath%/OneDrive\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt\\\"\\u003Ehttps://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically want this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esetq org-agenda-files (list \\u0026quot;~/OneDrive/org/general.org\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince I have different user names at work/home I can\\u0026#39;t use a full path, any ideas? Most of the comments about home on windows seem to be with moving the .emacs.d directory, which I\\u0026#39;m fine keeping that where it is.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw8ejb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GeorgeStorm\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw8ejb/accessing_onedrive_from_emacs_init/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw8ejb/accessing_onedrive_from_emacs_init/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559551310.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi there,\\n\\nI couldn't find anything about this online (well, nothing I could really get a direct answer from). If I copy a table on an HTML page, is it possible to paste it into an org document as an org table? I tried with org-protocol, but it doesn't set up the |--| separators at all and it just ends up being a mess. Maybe I'm missing something?\\n\\nThanks for any help!\", \"author_fullname\": \"t2_dmarn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Copy HTML Table/Paste Org Mode Table?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw7qdy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559573914.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi there,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI couldn\\u0026#39;t find anything about this online (well, nothing I could really get a direct answer from). If I copy a table on an HTML page, is it possible to paste it into an org document as an org table? I tried with org-protocol, but it doesn\\u0026#39;t set up the |--| separators at all and it just ends up being a mess. Maybe I\\u0026#39;m missing something?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any help!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw7qdy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TyrionBean\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw7qdy/copy_html_tablepaste_org_mode_table/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw7qdy/copy_html_tablepaste_org_mode_table/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559545114.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When I export to HTML, the source blocks have labels which show what language they are, but they only appear on hover. Can they easily be set to always show?\", \"author_fullname\": \"t2_rrtp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Export src-block to HTML with labels always on\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw7ps7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559573777.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I export to HTML, the source blocks have labels which show what language they are, but they only appear on hover. Can they easily be set to always show?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw7ps7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nagora\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw7ps7/export_srcblock_to_html_with_labels_always_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw7ps7/export_srcblock_to_html_with_labels_always_on/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559544977.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I can't make this function work...\\n\\n (defun codemascot/phpcbf-standard-toggle ()\\n \\\"Toggle PHPCS default standard between WordPress-VIP and PSR2\\\"\\n (interactive)\\n (if (= phpcbf-standard \\\"PSR2\\\")\\n ((setq phpcbf-standard \\\"WordPress-VIP\\\")\\n (message \\\"WordPress-VIP standard activated\\\"))\\n ((setq phpcbf-standard \\\"PSR2\\\")\\n (message \\\"PSR2 standard activated\\\"))))\\n\\nWhat is wrong with it that Emacs 26.2(Spacemacs) is giving me `helm-M-x: Wrong type argument: number-or-marker-p` error?\\n\\n\\n\\nUpdate, Working Snippet :) :\\n\\n (defun codemascot/phpcbf-standard-toggle ()\\n \\\"Toggle PHPCS default standard between WordPress-VIP and PSR2\\\"\\n (interactive)\\n (if (string= phpcbf-standard \\\"PSR2\\\")\\n (progn\\n (setq phpcbf-standard \\\"WordPress-VIP\\\")\\n (message \\\"WordPress-VIP CS standard has set\\\"))\\n (progn\\n (setq phpcbf-standard \\\"PSR2\\\")\\n (message \\\"PSR2 CS standard has set\\\"))))\\n\\nActually I work with *WordPress* and *Laravel* mostly. So I need to switch between these WordPress-VIP and PSR2 coding standard frequently. Anyway, here I'm sharing my updated function code which is working for me pretty well. Hope this help you too.\", \"author_fullname\": \"t2_38mg40l9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Toggle a variable based on condition\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw6zcv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559630313.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559567789.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t make this function work...\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun codemascot/phpcbf-standard-toggle ()\\n \\u0026quot;Toggle PHPCS default standard between WordPress-VIP and PSR2\\u0026quot;\\n (interactive)\\n (if (= phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n ((setq phpcbf-standard \\u0026quot;WordPress-VIP\\u0026quot;)\\n (message \\u0026quot;WordPress-VIP standard activated\\u0026quot;))\\n ((setq phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (message \\u0026quot;PSR2 standard activated\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhat is wrong with it that Emacs 26.2(Spacemacs) is giving me \\u003Ccode\\u003Ehelm-M-x: Wrong type argument: number-or-marker-p\\u003C/code\\u003E error?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate, Working Snippet :) :\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun codemascot/phpcbf-standard-toggle ()\\n \\u0026quot;Toggle PHPCS default standard between WordPress-VIP and PSR2\\u0026quot;\\n (interactive)\\n (if (string= phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (progn\\n (setq phpcbf-standard \\u0026quot;WordPress-VIP\\u0026quot;)\\n (message \\u0026quot;WordPress-VIP CS standard has set\\u0026quot;))\\n (progn\\n (setq phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (message \\u0026quot;PSR2 CS standard has set\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EActually I work with \\u003Cem\\u003EWordPress\\u003C/em\\u003E and \\u003Cem\\u003ELaravel\\u003C/em\\u003E mostly. So I need to switch between these WordPress-VIP and PSR2 coding standard frequently. Anyway, here I\\u0026#39;m sharing my updated function code which is working for me pretty well. Hope this help you too.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw6zcv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"codemascot\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw6zcv/toggle_a_variable_based_on_condition/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw6zcv/toggle_a_variable_based_on_condition/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559538989.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"`C-c C-s` and `C-c C-d` don't add hours and time in the timestamp.\\n\\nI thought prefixing them with `C-u` gives you minutes and seconds, but that option seems to be for removing deadlines.\\n\\nDo hours and minutes have to be added manually?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to add hours and minutes to orgmode deadlines and schedules?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw5zw6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559560806.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003EC-c C-s\\u003C/code\\u003E and \\u003Ccode\\u003EC-c C-d\\u003C/code\\u003E don\\u0026#39;t add hours and time in the timestamp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought prefixing them with \\u003Ccode\\u003EC-u\\u003C/code\\u003E gives you minutes and seconds, but that option seems to be for removing deadlines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo hours and minutes have to be added manually?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw5zw6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw5zw6/how_to_add_hours_and_minutes_to_orgmode_deadlines/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw5zw6/how_to_add_hours_and_minutes_to_orgmode_deadlines/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559532006.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I love [Vimcasts](http://vimcasts.org/) for learning Vim. I was wondering if there is something equivalent for Emacs: screencasts showcasing the editor. Added bonus for tutorials that include Emacs Lisp tips/tricks.\", \"author_fullname\": \"t2_3u1io9ko\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Screencasts showcasing Emacs tips/tricks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw4ix7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 38, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 38, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559551482.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love \\u003Ca href=\\\"http://vimcasts.org/\\\"\\u003EVimcasts\\u003C/a\\u003E for learning Vim. I was wondering if there is something equivalent for Emacs: screencasts showcasing the editor. Added bonus for tutorials that include Emacs Lisp tips/tricks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw4ix7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"scbm-reddit\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw4ix7/screencasts_showcasing_emacs_tipstricks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw4ix7/screencasts_showcasing_emacs_tipstricks/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559522682.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi all, I'm still new to Emacs and I'm having some issues with company-mode, when showing suggestions they often show up misaligned, like in this image: [https://imgur.com/a/GSqfBLn](https://imgur.com/a/GSqfBLn) , I don't think this is caused by company, as it sometimes also happens on the lines (a particular line will show up some pixels to the left), my config is here: [https://github.com/martini97/.emacs.d](https://github.com/martini97/.emacs.d), I've already tried to switch themes, which didn't help, and there's nothing being logged on messages. Has anyone had similar issues, or know how to fix this?\", \"author_fullname\": \"t2_9eav0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help identifying what's causing this bug on company\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvy2sp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559515571.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I\\u0026#39;m still new to Emacs and I\\u0026#39;m having some issues with company-mode, when showing suggestions they often show up misaligned, like in this image: \\u003Ca href=\\\"https://imgur.com/a/GSqfBLn\\\"\\u003Ehttps://imgur.com/a/GSqfBLn\\u003C/a\\u003E , I don\\u0026#39;t think this is caused by company, as it sometimes also happens on the lines (a particular line will show up some pixels to the left), my config is here: \\u003Ca href=\\\"https://github.com/martini97/.emacs.d\\\"\\u003Ehttps://github.com/martini97/.emacs.d\\u003C/a\\u003E, I\\u0026#39;ve already tried to switch themes, which didn\\u0026#39;t help, and there\\u0026#39;s nothing being logged on messages. Has anyone had similar issues, or know how to fix this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvy2sp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_martini97\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvy2sp/help_identifying_whats_causing_this_bug_on_company/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvy2sp/help_identifying_whats_causing_this_bug_on_company/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559486771.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Before coming to EXWM I was a power-user of KDE. I used a 3x3 grid for my workspace and so could position all applications within a screen up, down, right, or left of me. I had shortcuts established to quickly move between desktops and to send things to-and-from them. Then I found exwm. Aside: I am almost always connected to two or three monitors, whether using exwm or KDE. It works nicely with both WM. \\n\\n\\u0026#x200B;\\n\\nI use a single-workspace setup with exwm and the two primary benefits were that, instead of the geometric model from my KDE, thing were all random-access. Second benefit was that I could use emacs keys everywhere. Those are sizable benefits that served me well up until now. Now I am on a project using Android Studio (IntelliJ), and even after I figured out how to get it to start correctly on exwm (that's another story) it is still very hard to manage there; in particular, it gets hard when I launch an AVD (Android Virtual Device), which spawns a new EXWM window showing the device (e.g. phone), another floating one for the phone interactions/controls (which floats as a narrow strip in the middle of the screen over the top of whatever is there), and still leaves a couple of old ones with the actual IntelliJ window and AVD manager screen. The trouble here is two-fold: first, there are a lot of windows (emacs: Frames) that really need to be all seen at once because they interact with eachother, and more aggravataingly, the new exwm frames for the device and its controls hijack my keys and make it very hard to maneuver my other exwm around them (e.g. switching buffers gets tough). \\n\\n\\u0026#x200B;\\n\\nFor now I'm defeatedly switching back to KDE for this project; does anyone have an exwm workflow with IntelliJ or Android Studio that would make this more do-able?\", \"author_fullname\": \"t2_gmmqi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In search of an exwm workflow for Android Studio\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvxehe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559511215.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBefore coming to EXWM I was a power-user of KDE. I used a 3x3 grid for my workspace and so could position all applications within a screen up, down, right, or left of me. I had shortcuts established to quickly move between desktops and to send things to-and-from them. Then I found exwm. Aside: I am almost always connected to two or three monitors, whether using exwm or KDE. It works nicely with both WM. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use a single-workspace setup with exwm and the two primary benefits were that, instead of the geometric model from my KDE, thing were all random-access. Second benefit was that I could use emacs keys everywhere. Those are sizable benefits that served me well up until now. Now I am on a project using Android Studio (IntelliJ), and even after I figured out how to get it to start correctly on exwm (that\\u0026#39;s another story) it is still very hard to manage there; in particular, it gets hard when I launch an AVD (Android Virtual Device), which spawns a new EXWM window showing the device (e.g. phone), another floating one for the phone interactions/controls (which floats as a narrow strip in the middle of the screen over the top of whatever is there), and still leaves a couple of old ones with the actual IntelliJ window and AVD manager screen. The trouble here is two-fold: first, there are a lot of windows (emacs: Frames) that really need to be all seen at once because they interact with eachother, and more aggravataingly, the new exwm frames for the device and its controls hijack my keys and make it very hard to maneuver my other exwm around them (e.g. switching buffers gets tough). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor now I\\u0026#39;m defeatedly switching back to KDE for this project; does anyone have an exwm workflow with IntelliJ or Android Studio that would make this more do-able?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvxehe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WorldsEndless\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvxehe/in_search_of_an_exwm_workflow_for_android_studio/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvxehe/in_search_of_an_exwm_workflow_for_android_studio/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559482415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here's the latest in my Year of Emacs series.\\n\\nI'm aiming for weekly updates to this (excluding weeks where I publish the current version of my emacs.org dotfile).\\n\\nNext week, I want to learn something new, so I'll be doing dired and either dired-x or dired-aux. I'm open to community suggestions for which of those two supplemental packages are recommended (I'm leaning toward dired-x).\\n\\n\\u0026#x200B;\\n\\n[https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/](https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/)\", \"author_fullname\": \"t2_jqpn4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Writing Academic Papers in Org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvweh8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 64, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 64, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559503503.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s the latest in my Year of Emacs series.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m aiming for weekly updates to this (excluding weeks where I publish the current version of my emacs.org dotfile).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext week, I want to learn something new, so I\\u0026#39;ll be doing dired and either dired-x or dired-aux. I\\u0026#39;m open to community suggestions for which of those two supplemental packages are recommended (I\\u0026#39;m leaning toward dired-x).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/\\\"\\u003Ehttps://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvweh8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doulos05\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559474703.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"For some reason when i use \\\"find\\\" from emacs(in particular in dired to search files) it doesn't show cyrillic letters properly and i can't open files that it finds.\\n\\nIn general cyrillic letters work fine, and from regular terminal they work in \\\"find\\\"\\n\\n[https://imgur.com/a/jIY8ba7](https://imgur.com/a/jIY8ba7)\\n\\nWhat can I do about it?\", \"author_fullname\": \"t2_9riom\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cyrillic letters don't work with \\\"find\\\" in emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvuv9q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559488341.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor some reason when i use \\u0026quot;find\\u0026quot; from emacs(in particular in dired to search files) it doesn\\u0026#39;t show cyrillic letters properly and i can\\u0026#39;t open files that it finds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn general cyrillic letters work fine, and from regular terminal they work in \\u0026quot;find\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/jIY8ba7\\\"\\u003Ehttps://imgur.com/a/jIY8ba7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat can I do about it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvuv9q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GrinDeg\", \"num_crossposts\": 0, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvuv9q/cyrillic_letters_dont_work_with_find_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvuv9q/cyrillic_letters_dont_work_with_find_in_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559459541.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"hi all,\\n\\ni have a trivial function (code below) that tries to compile a c/c++ buffer as follows:\\n\\n ;;\\n ;; find major mode of a buffer. if no name is specified, this returns\\n ;; major mode of current buffer\\n ;;\\n (defun utils/buffer-major-mode (\\u0026optional buffer-or-name)\\n \\\"Returns the major mode associated with a buffer.\\n If buffer-or-name is nil return current buffer's mode.\\\"\\n (interactive)\\n (buffer-local-value 'major-mode\\n (if buffer-or-name (get-buffer buffer-or-name) (current-buffer))))\\n\\n ;; \\n ;; this function is called to quickly compile single-file c/c++\\n ;; programs.\\n ;;\\n ;; it produces final executable in 'obj' directory of the buffer, and\\n ;; christens it with 'file-name' sans file extension. thus a source\\n ;; file called '\\u003Csome-path\\u003E/foo.cpp' will produce an executable called\\n ;; '\\u003Csome-path\\u003E/obj/foo'\\n ;;\\n (defun cc-quick-compile ()\\n (interactive)\\n \\n ;;\\n ;; how we build c/c++ sources are almost fixed\\n ;; -fdiagnostics-color=never ==\\u003E no ansii colorized output\\n ;;\\n (defconst qc-cmd-prefix:c \\\"gcc -fdiagnostics-color=never -std=c99 -g -O2 -Wall -o obj/\\\")\\n (defconst qc-cmd-prefix:cpp \\\"g++ -fdiagnostics-color=never -std=c++11 -g -O2 -Wall -o obj/\\\")\\n \\n ;; first setup the appropriate compilation command based on buffer\\n ;; major-mode\\n (set (make-local-variable 'qc-cmd-prefix:cc)\\n (if (string= (utils/buffer-major-mode) \\\"c-mode\\\")\\n qc-cmd-prefix:c\\n qc-cmd-prefix:cpp))\\n \\n ;;\\n ;; now we can setup the qc-cc-cmd to produce a final executable as\\n ;; described above...\\n ;;\\n (set (make-local-variable 'qc-cmd-str)\\n (let ((file (file-name-nondirectory buffer-file-name)))\\n (concat qc-cmd-prefix:cc (file-name-sans-extension file) \\\" \\\" file)))\\n \\n (compile qc-cmd-str))\\n \\n ;;\\n ;; this is the top-level function to compile c/c++ sources.\\n ;;\\n ;; when the local variable 'compile-command' is set to default we\\n ;; create a quick-compile-command, and use that. however, when it is\\n ;; set to non-default value, we use that.\\n ;;\\n (defun cc-quick-or-custom-compile ()\\n (interactive)\\n \\n (if (string= \\\"make -k \\\" compile-command)\\n (progn\\n (cc-quick-compile)\\n (setq compile-command \\\"make -k \\\"))\\n (compile compile-command)))\\n\\nfinally, 'cc-quick-or-custom-compile' is bound as follows\\n \\n (global-set-key '[C-return] 'cc-quick-or-custom-compile)\\n\\nthe above thing works, but given my elisp na\\u00efvet\\u00e9, i am *sure* it can be made much better. \\n\\ni was wondering, if you would take some time, and help me improve the above functions. i *suspect* creating a Makefile with appropriate rules might play nicer with emacs, but am not too keen on that at the moment.\\n\\n--\\nthank you kindly !\", \"author_fullname\": \"t2_pb2x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"help with trivial emacs lisp function\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvucsw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559454959.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559483467.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehi all,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei have a trivial function (code below) that tries to compile a c/c++ buffer as follows:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;;\\n;; find major mode of a buffer. if no name is specified, this returns\\n;; major mode of current buffer\\n;;\\n(defun utils/buffer-major-mode (\\u0026amp;optional buffer-or-name)\\n \\u0026quot;Returns the major mode associated with a buffer.\\nIf buffer-or-name is nil return current buffer\\u0026#39;s mode.\\u0026quot;\\n (interactive)\\n (buffer-local-value \\u0026#39;major-mode\\n (if buffer-or-name (get-buffer buffer-or-name) (current-buffer))))\\n\\n;; \\n;; this function is called to quickly compile single-file c/c++\\n;; programs.\\n;;\\n;; it produces final executable in \\u0026#39;obj\\u0026#39; directory of the buffer, and\\n;; christens it with \\u0026#39;file-name\\u0026#39; sans file extension. thus a source\\n;; file called \\u0026#39;\\u0026lt;some-path\\u0026gt;/foo.cpp\\u0026#39; will produce an executable called\\n;; \\u0026#39;\\u0026lt;some-path\\u0026gt;/obj/foo\\u0026#39;\\n;;\\n(defun cc-quick-compile ()\\n (interactive)\\n\\n ;;\\n ;; how we build c/c++ sources are almost fixed\\n ;; -fdiagnostics-color=never ==\\u0026gt; no ansii colorized output\\n ;;\\n (defconst qc-cmd-prefix:c \\u0026quot;gcc -fdiagnostics-color=never -std=c99 -g -O2 -Wall -o obj/\\u0026quot;)\\n (defconst qc-cmd-prefix:cpp \\u0026quot;g++ -fdiagnostics-color=never -std=c++11 -g -O2 -Wall -o obj/\\u0026quot;)\\n\\n ;; first setup the appropriate compilation command based on buffer\\n ;; major-mode\\n (set (make-local-variable \\u0026#39;qc-cmd-prefix:cc)\\n (if (string= (utils/buffer-major-mode) \\u0026quot;c-mode\\u0026quot;)\\n qc-cmd-prefix:c\\n qc-cmd-prefix:cpp))\\n\\n ;;\\n ;; now we can setup the qc-cc-cmd to produce a final executable as\\n ;; described above...\\n ;;\\n (set (make-local-variable \\u0026#39;qc-cmd-str)\\n (let ((file (file-name-nondirectory buffer-file-name)))\\n (concat qc-cmd-prefix:cc (file-name-sans-extension file) \\u0026quot; \\u0026quot; file)))\\n\\n (compile qc-cmd-str))\\n\\n;;\\n;; this is the top-level function to compile c/c++ sources.\\n;;\\n;; when the local variable \\u0026#39;compile-command\\u0026#39; is set to default we\\n;; create a quick-compile-command, and use that. however, when it is\\n;; set to non-default value, we use that.\\n;;\\n(defun cc-quick-or-custom-compile ()\\n (interactive)\\n\\n (if (string= \\u0026quot;make -k \\u0026quot; compile-command)\\n (progn\\n (cc-quick-compile)\\n (setq compile-command \\u0026quot;make -k \\u0026quot;))\\n (compile compile-command)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Efinally, \\u0026#39;cc-quick-or-custom-compile\\u0026#39; is bound as follows\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(global-set-key \\u0026#39;[C-return] \\u0026#39;cc-quick-or-custom-compile)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ethe above thing works, but given my elisp na\\u00efvet\\u00e9, i am \\u003Cem\\u003Esure\\u003C/em\\u003E it can be made much better. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei was wondering, if you would take some time, and help me improve the above functions. i \\u003Cem\\u003Esuspect\\u003C/em\\u003E creating a Makefile with appropriate rules might play nicer with emacs, but am not too keen on that at the moment.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003Ethank you kindly !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvucsw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"daddyc00l\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559454667.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When running this without Org-Babel I don't have a problem, but, fwiw, I did just recently get my Python 3 paths working properly so there could be an issue somewhere in there.\\n\\n\\u0026#x200B;\\n\\nWithout further ado, here's the source file: [http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1\\\\_practice.py](http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py), and the linter: [http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112\\\\_s17\\\\_linter.py](http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py).\\n\\n\\u0026#x200B;\\n\\nWhat I did was wrap the entire wk1\\\\_practice.py in a `#+BEGIN_SRC python ... #+END_SRC` block, then when running C-c C-c (org-babel-execute-src-block) the following error appeared:\\n\\n`Traceback (most recent call last):`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 333, in \\u003Cmodule\\u003E`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 331, in main`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 327, in main`\\n\\n`File \\\"/Users/Joe/org/cs112_s17_linter.py\\\", line 215, in lint`\\n\\n`_Linter(code=code, filename=filename, bannedTokens=bannedTokens).lint()`\\n\\n`File \\\"/Users/Joe/org/cs112_s17_linter.py\\\", line 148, in lint`\\n\\n`with open(self.filename, 'rt') as f:`\\n\\n`FileNotFoundError: [Errno 2] No such file or directory: '\\u003Cstdin\\u003E'`\\n\\n\\u0026#x200B;\\n\\nBecause I can run wk1\\\\_practice.py error free in run-python, and the bash shell outside of Emacs, I think it's Org-Babel that I'm misusing and that it has to do with the call to the linter. It's probably worth mentioning that Org-Babel seemingly works fine and as expected as long as I don't make this call to the linter.\\n\\n\\u0026#x200B;\\n\\n(sorry if it's a dumb question or appears ill researched, I spent about 1.5 hours trying to figure this out with various queries and expirements, but turned up no leads).\", \"author_fullname\": \"t2_3th1enuk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help Deciphering Error w/ Org-Babel, Python and a Linter\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvsj5o\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559470017.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen running this without Org-Babel I don\\u0026#39;t have a problem, but, fwiw, I did just recently get my Python 3 paths working properly so there could be an issue somewhere in there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithout further ado, here\\u0026#39;s the source file: \\u003Ca href=\\\"http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py\\\"\\u003Ehttp://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py\\u003C/a\\u003E, and the linter: \\u003Ca href=\\\"http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py\\\"\\u003Ehttp://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat I did was wrap the entire wk1_practice.py in a \\u003Ccode\\u003E#+BEGIN_SRC python ... #+END_SRC\\u003C/code\\u003E block, then when running C-c C-c (org-babel-execute-src-block) the following error appeared:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003ETraceback (most recent call last):\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 333, in \\u0026lt;module\\u0026gt;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 331, in main\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 327, in main\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;/Users/Joe/org/cs112_s17_linter.py\\u0026quot;, line 215, in lint\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E_Linter(code=code, filename=filename, bannedTokens=bannedTokens).lint()\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;/Users/Joe/org/cs112_s17_linter.py\\u0026quot;, line 148, in lint\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ewith open(self.filename, \\u0026#39;rt\\u0026#39;) as f:\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFileNotFoundError: [Errno 2] No such file or directory: \\u0026#39;\\u0026lt;stdin\\u0026gt;\\u0026#39;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause I can run wk1_practice.py error free in run-python, and the bash shell outside of Emacs, I think it\\u0026#39;s Org-Babel that I\\u0026#39;m misusing and that it has to do with the call to the linter. It\\u0026#39;s probably worth mentioning that Org-Babel seemingly works fine and as expected as long as I don\\u0026#39;t make this call to the linter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(sorry if it\\u0026#39;s a dumb question or appears ill researched, I spent about 1.5 hours trying to figure this out with various queries and expirements, but turned up no leads).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvsj5o\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"impendingLawsuit\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvsj5o/help_deciphering_error_w_orgbabel_python_and_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvsj5o/help_deciphering_error_w_orgbabel_python_and_a/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559441217.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Running a fresh Emacs session with `emacs -Q`, I evaluated the following:\\n\\n (setq org-agenda-files '(\\\"~/index.org\\\"))\\n (setq org-enforce-todo-dependencies t)\\n (setq org-agenda-dim-blocked-tasks 'invisible)\\n\\nwhere `~/index.org` simply contains:\\n\\n * Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO First subheading\\n ** TODO Second subheading\\n\\nWhen I call `(org-agenda nil \\\"t\\\")` to display the available TODOs, it correctly displays only \\\"First subheading.\\\" However, if I then export that buffer with `org-agenda-write`, then the resulting file contains both \\\"First subheading\\\" and \\\"Second subheading.\\\"\\n\\nWhat is going on here, and can it be fixed?\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvs6jo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559467712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERunning a fresh Emacs session with \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E, I evaluated the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files \\u0026#39;(\\u0026quot;~/index.org\\u0026quot;))\\n(setq org-enforce-todo-dependencies t)\\n(setq org-agenda-dim-blocked-tasks \\u0026#39;invisible)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E~/index.org\\u003C/code\\u003E simply contains:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO First subheading\\n** TODO Second subheading\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I call \\u003Ccode\\u003E(org-agenda nil \\u0026quot;t\\u0026quot;)\\u003C/code\\u003E to display the available TODOs, it correctly displays only \\u0026quot;First subheading.\\u0026quot; However, if I then export that buffer with \\u003Ccode\\u003Eorg-agenda-write\\u003C/code\\u003E, then the resulting file contains both \\u0026quot;First subheading\\u0026quot; and \\u0026quot;Second subheading.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is going on here, and can it be fixed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvs6jo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559438912.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have always wanted to use Emacs on my iPad without jailbreaking it. After almost giving up I stumbled onto a fairly new developer app called iSH - a Linux shell that runs a small version of Alpine Linux on an iOS device (iPad or iPhone) using an x86 emulator. Now, that in and of itself is really nice and opens up all kinds of new ways to use an iOS device. The icing on the cake, though, is that Emacs can then be installed from the command line using the Alpine Linux package manager, \\\"apk\\\".\\n\\niSH can't be found on the App Store, but fear not - it can be run using a developer tool called TestFlight, which *is* in the App Store. There's also a way to side load iSH directly onto an iOS device without TestFlight if you have access to a Mac with Xcode. \\n\\nInstalling iSH shell and Emacs using TestFlight:\\n\\n1. Install TestFlight from the [https://itunes.apple.com/us/app/testflight/id899247664?mt=8](https://itunes.apple.com/us/app/testflight/id899247664?mt=8) App Store.\\n2. Open a web browser on the iOS device and click here [https://testflight.apple.com/join/97i7KM8O](https://testflight.apple.com/join/97i7KM8O) to review/accept the terms and start testing iSH using TestFlight.\\n3. Click \\\"Install\\\" to install the iSH Shell application onto the iOS device.\\n4. You will now have the iSH app on your iOS device. Open this app to run the Alpine Linux shell. This command line environment has the normal complement of Linux commands (ls, cd, mkdir, touch, cat, etc.). iSH even has a dark mode. If you haven't already done so, pair up a real keyboard to your device and hold onto your socks for what's next.\\n5. Install Emacs with apk by simply entering the command \\\"apk add emacs\\\" in iSH. After emacs installs, you can then enter the command \\\"emacs\\\" from the command line to run emacs.\", \"author_fullname\": \"t2_4rrrx65\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs on an iPad without jailbreaking it - It can be done!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvrmsf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559464162.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have always wanted to use Emacs on my iPad without jailbreaking it. After almost giving up I stumbled onto a fairly new developer app called iSH - a Linux shell that runs a small version of Alpine Linux on an iOS device (iPad or iPhone) using an x86 emulator. Now, that in and of itself is really nice and opens up all kinds of new ways to use an iOS device. The icing on the cake, though, is that Emacs can then be installed from the command line using the Alpine Linux package manager, \\u0026quot;apk\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EiSH can\\u0026#39;t be found on the App Store, but fear not - it can be run using a developer tool called TestFlight, which \\u003Cem\\u003Eis\\u003C/em\\u003E in the App Store. There\\u0026#39;s also a way to side load iSH directly onto an iOS device without TestFlight if you have access to a Mac with Xcode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstalling iSH shell and Emacs using TestFlight:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EInstall TestFlight from the \\u003Ca href=\\\"https://itunes.apple.com/us/app/testflight/id899247664?mt=8\\\"\\u003Ehttps://itunes.apple.com/us/app/testflight/id899247664?mt=8\\u003C/a\\u003E App Store.\\u003C/li\\u003E\\n\\u003Cli\\u003EOpen a web browser on the iOS device and click here \\u003Ca href=\\\"https://testflight.apple.com/join/97i7KM8O\\\"\\u003Ehttps://testflight.apple.com/join/97i7KM8O\\u003C/a\\u003E to review/accept the terms and start testing iSH using TestFlight.\\u003C/li\\u003E\\n\\u003Cli\\u003EClick \\u0026quot;Install\\u0026quot; to install the iSH Shell application onto the iOS device.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou will now have the iSH app on your iOS device. Open this app to run the Alpine Linux shell. This command line environment has the normal complement of Linux commands (ls, cd, mkdir, touch, cat, etc.). iSH even has a dark mode. If you haven\\u0026#39;t already done so, pair up a real keyboard to your device and hold onto your socks for what\\u0026#39;s next.\\u003C/li\\u003E\\n\\u003Cli\\u003EInstall Emacs with apk by simply entering the command \\u0026quot;apk add emacs\\u0026quot; in iSH. After emacs installs, you can then enter the command \\u0026quot;emacs\\u0026quot; from the command line to run emacs.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvrmsf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Chilasta\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvrmsf/emacs_on_an_ipad_without_jailbreaking_it_it_can/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvrmsf/emacs_on_an_ipad_without_jailbreaking_it_it_can/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559435362.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi everyone!\\n\\n\\u0026#x200B;\\n\\nInspired by the great Juan Pedro Fisanotti and his wonderful [fisa-vim-config](https://github.com/fisadev/fisa-vim-config), I share my [Emacs](https://www.gnu.org/software/emacs/) config. This is my personal Emacs configuration, built according to my personal preferences, without any justification to think it's the best possible emacs configuration.\\n\\n\\u0026#x200B;\\n\\n[https://github.com/Abuelodelanada/pepe-emacs-config](https://github.com/Abuelodelanada/pepe-emacs-config)\\n\\n\\u0026#x200B;\\n\\nIt's mainly oriented to PHP software development, but many of its features are useful for other languages and editing tasks.\\n\\n\\u0026#x200B;\\n\\nHope you like it!\\n\\n\\u0026#x200B;\\n\\nJose\", \"author_fullname\": \"t2_1v9z01ve\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Pepe Emacs config\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvrbyc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559462253.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInspired by the great Juan Pedro Fisanotti and his wonderful \\u003Ca href=\\\"https://github.com/fisadev/fisa-vim-config\\\"\\u003Efisa-vim-config\\u003C/a\\u003E, I share my \\u003Ca href=\\\"https://www.gnu.org/software/emacs/\\\"\\u003EEmacs\\u003C/a\\u003E config. This is my personal Emacs configuration, built according to my personal preferences, without any justification to think it\\u0026#39;s the best possible emacs configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/Abuelodelanada/pepe-emacs-config\\\"\\u003Ehttps://github.com/Abuelodelanada/pepe-emacs-config\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s mainly oriented to PHP software development, but many of its features are useful for other languages and editing tasks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHope you like it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJose\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvrbyc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Abuelodelanada\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvrbyc/the_pepe_emacs_config/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvrbyc/the_pepe_emacs_config/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559433453.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_5i6ym4s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using CLI Commands in Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvqsb5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 41, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 41, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559458913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"hackeryarn.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvqsb5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hackeryarn\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvqsb5/using_cli_commands_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://hackeryarn.com/post/cli-in-emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559430113.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I can connect to [nethack.alt.org](https://nethack.alt.org) using putty and it has colors and everything lines up just right. Is there a way for me to use emacs instead? I did \\\"M-x telnet\\\" and it didn't show the colors and the formatting is all messed up. Kinda looks like it's missing CR/LFs.\\n\\n\\u0026#x200B;\\n\\nAs you can tell, I'm not well versed in this area.\", \"author_fullname\": \"t2_d79ff\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using Emacs for Nethack?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvmkvw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559435126.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can connect to \\u003Ca href=\\\"https://nethack.alt.org\\\"\\u003Enethack.alt.org\\u003C/a\\u003E using putty and it has colors and everything lines up just right. Is there a way for me to use emacs instead? I did \\u0026quot;M-x telnet\\u0026quot; and it didn\\u0026#39;t show the colors and the formatting is all messed up. Kinda looks like it\\u0026#39;s missing CR/LFs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs you can tell, I\\u0026#39;m not well versed in this area.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvmkvw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AlchemicRez\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvmkvw/using_emacs_for_nethack/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvmkvw/using_emacs_for_nethack/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559406326.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Does anyone knows of an Emacs package that shows your minibuffer as a floating window/frame in the middle of the screen, like on this video: [https://www.youtube.com/watch?v=GxMAPW9\\\\_LsA\\u0026t=2m30s](https://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026t=2m30s)?\\n\\nThe closest I've found is this StackExchange answer: [https://emacs.stackexchange.com/a/1078/23627](https://emacs.stackexchange.com/a/1078/23627). These are his dotfiles ([https://bitbucket.org/seanfarley/dotfiles](https://bitbucket.org/seanfarley/dotfiles)) but I'm pretty new at Emacs so I couldn't find anything.\\n\\nhttps://i.redd.it/dhvj5jtm6r131.png\", \"author_fullname\": \"t2_5t856\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs package to show the minibuffer in the middle of the screen\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"dhvj5jtm6r131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 768, \"x\": 1366, \"u\": \"https://i.redd.it/dhvj5jtm6r131.png\"}, \"m\": \"image/png\", \"id\": \"dhvj5jtm6r131\"}}, \"name\": \"t3_bvl94b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"2019-02-27: Emacs as a Python IDE - Sean Farley\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Emacs SF\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/GxMAPW9_LsA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCFk8kgNu_bqsRZewxMGqkzQ\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bvl94b\", \"height\": 338}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559427415.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone knows of an Emacs package that shows your minibuffer as a floating window/frame in the middle of the screen, like on this video: \\u003Ca href=\\\"https://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026amp;t=2m30s\\\"\\u003Ehttps://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026amp;t=2m30s\\u003C/a\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe closest I\\u0026#39;ve found is this StackExchange answer: \\u003Ca href=\\\"https://emacs.stackexchange.com/a/1078/23627\\\"\\u003Ehttps://emacs.stackexchange.com/a/1078/23627\\u003C/a\\u003E. These are his dotfiles (\\u003Ca href=\\\"https://bitbucket.org/seanfarley/dotfiles\\\"\\u003Ehttps://bitbucket.org/seanfarley/dotfiles\\u003C/a\\u003E) but I\\u0026#39;m pretty new at Emacs so I couldn\\u0026#39;t find anything.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/dhvj5jtm6r131.png\\\"\\u003Ehttps://i.redd.it/dhvj5jtm6r131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvl94b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"humpum\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvl94b/emacs_package_to_show_the_minibuffer_in_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvl94b/emacs_package_to_show_the_minibuffer_in_the/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559398615.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"2019-02-27: Emacs as a Python IDE - Sean Farley\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Emacs SF\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/GxMAPW9_LsA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCFk8kgNu_bqsRZewxMGqkzQ\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How to remove emacs's bottom window and have only editor always?\\n\\nOur Linux team setup emacs as the only editor now, and the useless bottom window blocks the half of my screen. \\n\\nI liked using gedit before, but now must work with emacs.\\n\\nI tried to decrease the size of the bottom window to the minimum, but as soon as I close the document, this setting is lost and the new document in emacs is opened with the same useless bottom window which blocks half of the screen.\", \"author_fullname\": \"t2_3vd5ee30\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to remove emacs's bottom window and have only editor always?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvkd1a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559421425.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow to remove emacs\\u0026#39;s bottom window and have only editor always?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur Linux team setup emacs as the only editor now, and the useless bottom window blocks the half of my screen. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI liked using gedit before, but now must work with emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to decrease the size of the bottom window to the minimum, but as soon as I close the document, this setting is lost and the new document in emacs is opened with the same useless bottom window which blocks half of the screen.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvkd1a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OVM2712\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvkd1a/how_to_remove_emacss_bottom_window_and_have_only/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvkd1a/how_to_remove_emacss_bottom_window_and_have_only/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559392625.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've noticed a peculiar behavior when using auto-fill-mode editing Python code. For example if I start typing the following (fill-column is set to 79),\\n\\n def some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2='foobar'):\\n \\\"\\\"\\\"\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\\n\\nand press Enter, it will look like this:\\n\\n def some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2='foobar'):\\n \\\"\\\"\\\"\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod\\n tempor incididunt ut labore et dolore magna aliqua.\\nIf the keyword arguments are all in one line, the docstring continues to be indented with 4 spaces as expected, but whenever it is extended across multiple lines, any line of the docstring after the first will match the indentation of the second line of the list of keyword arguments. Is there a good reason for this, or is this just a bug in auto-fill-mode?\", \"author_fullname\": \"t2_ch6my\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Python Documentation String Indentation In Auto-Fill Mode (Emacs 26.2)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvjzem\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559418423.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve noticed a peculiar behavior when using auto-fill-mode editing Python code. For example if I start typing the following (fill-column is set to 79),\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edef some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2=\\u0026#39;foobar\\u0026#39;):\\n \\u0026quot;\\u0026quot;\\u0026quot;\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eand press Enter, it will look like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edef some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2=\\u0026#39;foobar\\u0026#39;):\\n \\u0026quot;\\u0026quot;\\u0026quot;\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod\\n tempor incididunt ut labore et dolore magna aliqua.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf the keyword arguments are all in one line, the docstring continues to be indented with 4 spaces as expected, but whenever it is extended across multiple lines, any line of the docstring after the first will match the indentation of the second line of the list of keyword arguments. Is there a good reason for this, or is this just a bug in auto-fill-mode?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvjzem\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hexidon\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvjzem/python_documentation_string_indentation_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvjzem/python_documentation_string_indentation_in/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559389623.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello, I really like Emacs approach to text editing compared to vi, vim or joe (I love joe though, he's a trooper, but I like Emacs keybindings and logic). However Emacs is a little heavy and has many, many features that I will never use. Any tips on compiling it to bare-bones lite? Or is there an Emacs-lite fork out there? I'm currently using a custom compiled version called emacs-nox (no x11) on FreeBSD 12-stable. (I tried the nox flavor, and also removed gtk support and sound/image features, but it still renders a basic X widget. So I'm forced to alias emacs=\\\"emacs -nw\\\")\", \"author_fullname\": \"t2_3d6u59wh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New to emacs, couple of stupid questions.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvibhq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559403055.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I really like Emacs approach to text editing compared to vi, vim or joe (I love joe though, he\\u0026#39;s a trooper, but I like Emacs keybindings and logic). However Emacs is a little heavy and has many, many features that I will never use. Any tips on compiling it to bare-bones lite? Or is there an Emacs-lite fork out there? I\\u0026#39;m currently using a custom compiled version called emacs-nox (no x11) on FreeBSD 12-stable. (I tried the nox flavor, and also removed gtk support and sound/image features, but it still renders a basic X widget. So I\\u0026#39;m forced to alias emacs=\\u0026quot;emacs -nw\\u0026quot;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvibhq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cshurtsmybrain\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvibhq/new_to_emacs_couple_of_stupid_questions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvibhq/new_to_emacs_couple_of_stupid_questions/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559374255.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"This is my current ediff clause.\\n\\n (use-package ediff\\n :ensure nil\\n :commands (magit-status projectile-vc)\\n :config\\n (progn\\n (setq ediff-diff-options \\\"-w\\\"\\n ediff-split-window-function 'split-window-horizontally\\n ediff-window-setup-function 'ediff-setup-windows-plain)\\n ))\\n \\nI want to make it quit without prompting for yes or no when the `q` key is pressed using this [snippet from stackoverflow](https://emacs.stackexchange.com/questions/9322/how-can-i-quit-ediff-immediately-without-having-to-type-y/24602#24602):\\n\\n (defun disable-y-or-n-p (orig-fun \\u0026rest args)\\n (cl-letf (((symbol-function 'y-or-n-p) (lambda (prompt) t)))\\n (apply orig-fun args)))\\n \\n (advice-add 'ediff-quit :around #'disable-y-or-n-p)\\n\\nSince the `disable-y-or-n-p` function can be used elsewhere only the advice has to be add to the ediff clause. Does it have to go into a `:config` or an `:init` section?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is good way to make this change in use-package?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvi8yt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559402399.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is my current ediff clause.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package ediff\\n :ensure nil\\n :commands (magit-status projectile-vc)\\n :config\\n (progn\\n (setq ediff-diff-options \\u0026quot;-w\\u0026quot;\\n ediff-split-window-function \\u0026#39;split-window-horizontally\\n ediff-window-setup-function \\u0026#39;ediff-setup-windows-plain)\\n ))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI want to make it quit without prompting for yes or no when the \\u003Ccode\\u003Eq\\u003C/code\\u003E key is pressed using this \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/9322/how-can-i-quit-ediff-immediately-without-having-to-type-y/24602#24602\\\"\\u003Esnippet from stackoverflow\\u003C/a\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun disable-y-or-n-p (orig-fun \\u0026amp;rest args)\\n (cl-letf (((symbol-function \\u0026#39;y-or-n-p) (lambda (prompt) t)))\\n (apply orig-fun args)))\\n\\n(advice-add \\u0026#39;ediff-quit :around #\\u0026#39;disable-y-or-n-p)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESince the \\u003Ccode\\u003Edisable-y-or-n-p\\u003C/code\\u003E function can be used elsewhere only the advice has to be add to the ediff clause. Does it have to go into a \\u003Ccode\\u003E:config\\u003C/code\\u003E or an \\u003Ccode\\u003E:init\\u003C/code\\u003E section?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvi8yt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvi8yt/what_is_good_way_to_make_this_change_in_usepackage/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvi8yt/what_is_good_way_to_make_this_change_in_usepackage/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559373599.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want to write my first emacs function that depends on searching through the buffer and need some help examples and source code to begin.\\n\\nMy goal is to change the control `C-c C-z` key to log a note to the drawer containing the cursor, or the default LOGBOOK if it is not in a drawer.\\n\\nThis means:\\n\\n1. starting on the current line, scan backwards for a line starting with the drawer syntax ie `\\\\s*:[a-zA-Z][a-zA-Z0-9_]*:` which is not `:END:` for a set number of characters or discover the cursor is not in a drawer by arriving at a line which starts with a headline character `^\\\\*`. If you get to a header line, then the cursor is not in a drawer, so return the cursor to the starting point and run `org-add-note` as normal, most likely into the default LOGBOOK.\\n\\n2. If you find a drawer header, read the current value of `org-log-into-drawer` into a temporary variable. Set `org-log-into-drawer` to the drawer name you found and execute `org-add-log-note`, then revert `org-log-into-drawer` to its previous value.\\n\\nCan anyone provide me with a script that does it and documentation and examples with more knowledge on the process?\\n\\nPS. What is the conceptual difference between `org-add-note` and `org-add-log-note`?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I need some help sources and examples to buffer navigation for emacs script?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bve79d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559372890.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to write my first emacs function that depends on searching through the buffer and need some help examples and source code to begin.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy goal is to change the control \\u003Ccode\\u003EC-c C-z\\u003C/code\\u003E key to log a note to the drawer containing the cursor, or the default LOGBOOK if it is not in a drawer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis means:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Estarting on the current line, scan backwards for a line starting with the drawer syntax ie \\u003Ccode\\u003E\\\\s*:[a-zA-Z][a-zA-Z0-9_]*:\\u003C/code\\u003E which is not \\u003Ccode\\u003E:END:\\u003C/code\\u003E for a set number of characters or discover the cursor is not in a drawer by arriving at a line which starts with a headline character \\u003Ccode\\u003E^\\\\*\\u003C/code\\u003E. If you get to a header line, then the cursor is not in a drawer, so return the cursor to the starting point and run \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E as normal, most likely into the default LOGBOOK.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIf you find a drawer header, read the current value of \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E into a temporary variable. Set \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to the drawer name you found and execute \\u003Ccode\\u003Eorg-add-log-note\\u003C/code\\u003E, then revert \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to its previous value.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ECan anyone provide me with a script that does it and documentation and examples with more knowledge on the process?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS. What is the conceptual difference between \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-add-log-note\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bve79d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bve79d/i_need_some_help_sources_and_examples_to_buffer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bve79d/i_need_some_help_sources_and_examples_to_buffer/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559344090.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I like emacs in the terminal, but how do I get rid of that bottom bar? The grey one. [https://ibin.co/4j1egykIYYYk.png](https://ibin.co/4j1egykIYYYk.png)\\n\\nI thought it was the \\\"toolbar\\\", but `(tool-bar-mode -1)` is not working. Thanks in advance!\", \"author_fullname\": \"t2_3d6u59wh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \".emacs question\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvci93\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559363370.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like emacs in the terminal, but how do I get rid of that bottom bar? The grey one. \\u003Ca href=\\\"https://ibin.co/4j1egykIYYYk.png\\\"\\u003Ehttps://ibin.co/4j1egykIYYYk.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought it was the \\u0026quot;toolbar\\u0026quot;, but \\u003Ccode\\u003E(tool-bar-mode -1)\\u003C/code\\u003E is not working. Thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvci93\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cshurtsmybrain\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvci93/emacs_question/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvci93/emacs_question/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559334570.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"For example, Craigslist only sends the 25 most recent links in the rss export, so if I wake up in the morning after 10 hours of not refreshing my feed, I will see only the 25 most recent links for a given query, and miss a lot of stuff. It would also be nice to not feel pressured to refresh my feed every hour just so I don't miss something. FWIW, the only query I'm really having this problem with is the Craigslist \\\"free\\\" section. \\n\\n\\u0026#x200B;\\n\\nI'm sure this isn't specific to Elfeed, but I'm relatively new to RSS/Atom as well. I would like my feed to always refresh sufficiently so I don't have to worry about links escaping my view. I did look into \\\\`run-with-timer\\\\` but that feels dirty compared to built-in Elfeed feature I may be missing. Thansk for reading!\", \"author_fullname\": \"t2_3th1enuk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a simple way to get Elfeed to update / refresh it's feed every x minutes?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvbp92\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559359140.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor example, Craigslist only sends the 25 most recent links in the rss export, so if I wake up in the morning after 10 hours of not refreshing my feed, I will see only the 25 most recent links for a given query, and miss a lot of stuff. It would also be nice to not feel pressured to refresh my feed every hour just so I don\\u0026#39;t miss something. FWIW, the only query I\\u0026#39;m really having this problem with is the Craigslist \\u0026quot;free\\u0026quot; section. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sure this isn\\u0026#39;t specific to Elfeed, but I\\u0026#39;m relatively new to RSS/Atom as well. I would like my feed to always refresh sufficiently so I don\\u0026#39;t have to worry about links escaping my view. I did look into `run-with-timer` but that feels dirty compared to built-in Elfeed feature I may be missing. Thansk for reading!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvbp92\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"impendingLawsuit\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvbp92/is_there_a_simple_way_to_get_elfeed_to_update/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvbp92/is_there_a_simple_way_to_get_elfeed_to_update/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559330340.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying out an org init file. Got the idea from [here](https://cestlaz.github.io/posts/using-emacs-10-org-init/). It works perfectly on Ubuntu but for some reason, it won't work on mac. I think the issue might be with org-babel. It parses the majority of my packages but not all of them, in particular, the first 2 and my interface tweaks. Heres my files [github link](https://github.com/girvain/.emacs.d/tree/orgModeInit).\\n\\nAnyone else had a similar issue?\", \"author_fullname\": \"t2_lkmww7c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org init files won't parse on mac\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvb6ep\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559356424.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying out an org init file. Got the idea from \\u003Ca href=\\\"https://cestlaz.github.io/posts/using-emacs-10-org-init/\\\"\\u003Ehere\\u003C/a\\u003E. It works perfectly on Ubuntu but for some reason, it won\\u0026#39;t work on mac. I think the issue might be with org-babel. It parses the majority of my packages but not all of them, in particular, the first 2 and my interface tweaks. Heres my files \\u003Ca href=\\\"https://github.com/girvain/.emacs.d/tree/orgModeInit\\\"\\u003Egithub link\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone else had a similar issue?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvb6ep\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"girvain\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvb6ep/org_init_files_wont_parse_on_mac/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvb6ep/org_init_files_wont_parse_on_mac/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559327624.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a command to choose the drawer `org-add-note` saves the text in?\\n\\nI was thinking that with the cursor in a particular drawer `org-add-note` would enter the text into that drawer, but it always goes into the `LOGBOOK` drawer.\\n\\nFrom the documentation the logical thing to do would be to check the location of the cursor and if it is in drawer, change the `org-log-into-drawer` variable, add the note then revert `org-log-into-drawer` to what it was before, but that seems to be rather long-winded, or is it the only valid alternative?\\n\\nIs there builtin function for checking the current drawer?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to add a note to a specific drawer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvay1h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559355236.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a command to choose the drawer \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E saves the text in?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was thinking that with the cursor in a particular drawer \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E would enter the text into that drawer, but it always goes into the \\u003Ccode\\u003ELOGBOOK\\u003C/code\\u003E drawer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the documentation the logical thing to do would be to check the location of the cursor and if it is in drawer, change the \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E variable, add the note then revert \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to what it was before, but that seems to be rather long-winded, or is it the only valid alternative?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there builtin function for checking the current drawer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvay1h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvay1h/how_to_add_a_note_to_a_specific_drawer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvay1h/how_to_add_a_note_to_a_specific_drawer/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559326436.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I wonder if anyone using emacs on Windows notices a slight text flicker when scrolling up and down buffers or resizing the program. I experience this even when launching under \\\"emacs -Q\\\" and now that I've noticed it a couple times I can't unsee it.\\n\\nMainly want to know if there are any workarounds for this or plans to fix it in the future.\", \"author_fullname\": \"t2_1sukobfg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"text flicker on windows (emacs 26.2)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv9jgk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559348196.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI wonder if anyone using emacs on Windows notices a slight text flicker when scrolling up and down buffers or resizing the program. I experience this even when launching under \\u0026quot;emacs -Q\\u0026quot; and now that I\\u0026#39;ve noticed it a couple times I can\\u0026#39;t unsee it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMainly want to know if there are any workarounds for this or plans to fix it in the future.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv9jgk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DesperateSell\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv9jgk/text_flicker_on_windows_emacs_262/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv9jgk/text_flicker_on_windows_emacs_262/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559319396.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nFor all the awesomeness of org-mode in general, and its export engines in particular : I cannot make a particular thing work quite well. When an org file is exported, say, to HTML with a huge majority of the available CSS'es that I could find. Export to text is even worse. E.g. org file :\\n\\n\\u0026#x200B;\\n\\n\\u003E\\\\* Introduction \\n\\u003E \\n\\u003E\\\\* Features \\n\\u003E \\n\\u003E\\\\*\\\\* Cars \\n\\u003E \\n\\u003E\\\\*\\\\* Trucks \\n\\u003E \\n\\u003E... \\n\\u003E \\n\\u003E\\\\* Problems\\n\\n\\u0026#x200B;\\n\\nThis gets exported to something like :\\n\\n\\u003E1 Introduction \\n\\u003E \\n\\u003E2 Features \\n\\u003E \\n\\u003E2.1 Cars \\n\\u003E \\n\\u003E2.2 Trucks \\n\\u003E \\n\\u003E... \\n\\u003E \\n\\u003E3 Problems\\n\\n\\u0026#x200B;\\n\\nWithout anything to distinguish between \\\"1\\\" and \\\"Introduction\\\". Or \\\"2\\\" and \\\"Features\\\". Everyone who is not used to org mode exporting asks me that you have only 2 features and 3 problems ? BTW the Features section can be many pages long.\\n\\n\\u0026#x200B;\\n\\nI tried the CSSes from :\\n\\n1. [https://www.reddit.com/r/emacs/comments/3pvbag/is\\\\_there\\\\_a\\\\_collection\\\\_of\\\\_css\\\\_styles\\\\_for\\\\_org/](https://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/)\\n2. [https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html](https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html)\\n3. [http://diobla.info/doc/rtags](http://diobla.info/doc/rtags) : this has a different background for section numbers, but in simple renderers like email , the different background doesn't have any effect.\\n\\n\\u0026#x200B;\\n\\nSo my question : a simple \\\".\\\" , or \\\")\\\" between section numbering is extremely standard, and most people can make out the difference. How can I add such a separator ? It is also practically standard in HTML numbering that triple click on the line selects the whole content except the section number - which is also violated in all HTML CSSes that I could find.\\n\\n\\u0026#x200B;\\n\\nAnother question stemming from my frustration is also that how is everyone else living with this? The fact that table of contents in text and HTML export include a \\\".\\\" between section number and content means people in org also know this. But somehow this is ignored in the main content ?\", \"author_fullname\": \"t2_1zt5mges\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org mode export section numbering\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv8rli\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559344538.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor all the awesomeness of org-mode in general, and its export engines in particular : I cannot make a particular thing work quite well. When an org file is exported, say, to HTML with a huge majority of the available CSS\\u0026#39;es that I could find. Export to text is even worse. E.g. org file :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E* Introduction \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Features \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** Cars \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** Trucks \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Problems\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis gets exported to something like :\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E1 Introduction \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2 Features \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2.1 Cars \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2.2 Trucks \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E3 Problems\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithout anything to distinguish between \\u0026quot;1\\u0026quot; and \\u0026quot;Introduction\\u0026quot;. Or \\u0026quot;2\\u0026quot; and \\u0026quot;Features\\u0026quot;. Everyone who is not used to org mode exporting asks me that you have only 2 features and 3 problems ? BTW the Features section can be many pages long.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried the CSSes from :\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/\\\"\\u003Ehttps://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html\\\"\\u003Ehttps://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://diobla.info/doc/rtags\\\"\\u003Ehttp://diobla.info/doc/rtags\\u003C/a\\u003E : this has a different background for section numbers, but in simple renderers like email , the different background doesn\\u0026#39;t have any effect.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo my question : a simple \\u0026quot;.\\u0026quot; , or \\u0026quot;)\\u0026quot; between section numbering is extremely standard, and most people can make out the difference. How can I add such a separator ? It is also practically standard in HTML numbering that triple click on the line selects the whole content except the section number - which is also violated in all HTML CSSes that I could find.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother question stemming from my frustration is also that how is everyone else living with this? The fact that table of contents in text and HTML export include a \\u0026quot;.\\u0026quot; between section number and content means people in org also know this. But somehow this is ignored in the main content ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv8rli\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KrishnaKrGopal\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv8rli/org_mode_export_section_numbering/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv8rli/org_mode_export_section_numbering/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559315738.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I tried using ob-prolog, but it seems outdated and not working :'(\\n\\n\\u0026#x200B;\\n\\nLuckily with a bit of Lisp, I made a quick hack for quickly executing Prolog queries from the current buffer. I share it here in the hopes of attracting others to try Prolog with Emacs. \\n\\n ;; Don't judge me too harshly, this was quick and dirty; e.g., not enough `let`s!\\n \\n (local-set-key (kbd \\\"\\u003Cf6\\u003E\\\") (lambda () (interactive)\\n \\\"\\n org-babel-tangle the whole file, then execute the final query\\n in the current SRC block.\\n \\n If the query mentions the variable \\u2018X\\u2019, then show all possible solutions\\n followed by \\u2018false\\u2019. Usually one presses \\u2018;\\u2019 to see other solutions,\\n but in Emacs this only shows one futher solution then terminates.\\n We get around this by executing essentially\\n \\u201cforall(your-query-with-X, writeln(X)).\\u201d\\n This prints all solutions X to your query.\\n \\n If you want to use a variable but don't want to see all solutions,\\n then avoid using \\u2018X\\u2019; e.g., use \\u2018Y\\u2019 ^_^.\\n \\\"\\n (-let [kill-buffer-query-functions nil]\\n (ignore-errors\\n (switch-to-buffer \\\"*Prolog*\\\")\\n (kill-buffer \\\"*Prolog*\\\"))\\n \\n ;; Get final query in current source block\\n (search-forward \\\"#+END_SRC\\\")\\n (search-backward \\\"% ?-\\\")\\n ;; Copy line, without killing it.\\n (setq xx (thing-at-point 'line t))\\n \\n (async-shell-command (format \\\"swipl -s %s\\\" (car (org-babel-tangle))) \\\"*Prolog*\\\")\\n (other-window 1)\\n \\n ;; Paste the final query\\n (setq xx (s-chop-prefix \\\"% ?- \\\" xx))\\n (when (s-contains? \\\"X\\\" xx)\\n (setq xx (concat \\\"writeln(\\\\\\\"X =\\\\\\\"), forall(\\\" (s-replace \\\".\\\" \\\", writeln(X)).\\\" xx))))\\n \\n (insert xx)\\n (comint-send-input nil t) ;; Send it, i.e., \\u201cpress enter at prompt\\u201d.\\n \\n ;; Insert query again, but do not send, in case user wishes to change it.\\n (insert xx)\\n (previous-line) (end-of-line)\\n \\n )))\\n\\n\\u0026#x200B;\\n\\nThe [source repo](https://github.com/alhassy/PrologCheatSheet) also contains a Prolog Cheat Sheet that insipired this setup (\\u2022\\u0300\\u1d17\\u2022\\u0301)\\u0648\", \"author_fullname\": \"t2_1pko65xw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\u201cInteractive\\u201d Prolog Setup\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5hq7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559324539.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI tried using ob-prolog, but it seems outdated and not working :\\u0026#39;(\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuckily with a bit of Lisp, I made a quick hack for quickly executing Prolog queries from the current buffer. I share it here in the hopes of attracting others to try Prolog with Emacs. \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Don\\u0026#39;t judge me too harshly, this was quick and dirty; e.g., not enough `let`s!\\n\\n(local-set-key (kbd \\u0026quot;\\u0026lt;f6\\u0026gt;\\u0026quot;) (lambda () (interactive)\\n \\u0026quot;\\norg-babel-tangle the whole file, then execute the final query\\nin the current SRC block.\\n\\nIf the query mentions the variable \\u2018X\\u2019, then show all possible solutions\\nfollowed by \\u2018false\\u2019. Usually one presses \\u2018;\\u2019 to see other solutions,\\nbut in Emacs this only shows one futher solution then terminates.\\nWe get around this by executing essentially\\n\\u201cforall(your-query-with-X, writeln(X)).\\u201d\\nThis prints all solutions X to your query.\\n\\nIf you want to use a variable but don\\u0026#39;t want to see all solutions,\\nthen avoid using \\u2018X\\u2019; e.g., use \\u2018Y\\u2019 ^_^.\\n \\u0026quot;\\n (-let [kill-buffer-query-functions nil]\\n (ignore-errors\\n (switch-to-buffer \\u0026quot;*Prolog*\\u0026quot;)\\n (kill-buffer \\u0026quot;*Prolog*\\u0026quot;))\\n\\n ;; Get final query in current source block\\n (search-forward \\u0026quot;#+END_SRC\\u0026quot;)\\n (search-backward \\u0026quot;% ?-\\u0026quot;)\\n ;; Copy line, without killing it.\\n (setq xx (thing-at-point \\u0026#39;line t))\\n\\n (async-shell-command (format \\u0026quot;swipl -s %s\\u0026quot; (car (org-babel-tangle))) \\u0026quot;*Prolog*\\u0026quot;)\\n (other-window 1)\\n\\n ;; Paste the final query\\n (setq xx (s-chop-prefix \\u0026quot;% ?- \\u0026quot; xx))\\n (when (s-contains? \\u0026quot;X\\u0026quot; xx)\\n(setq xx (concat \\u0026quot;writeln(\\\\\\u0026quot;X =\\\\\\u0026quot;), forall(\\u0026quot; (s-replace \\u0026quot;.\\u0026quot; \\u0026quot;, writeln(X)).\\u0026quot; xx))))\\n\\n (insert xx)\\n (comint-send-input nil t) ;; Send it, i.e., \\u201cpress enter at prompt\\u201d.\\n\\n ;; Insert query again, but do not send, in case user wishes to change it.\\n (insert xx)\\n (previous-line) (end-of-line)\\n\\n)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe \\u003Ca href=\\\"https://github.com/alhassy/PrologCheatSheet\\\"\\u003Esource repo\\u003C/a\\u003E also contains a Prolog Cheat Sheet that insipired this setup (\\u2022\\u0300\\u1d17\\u2022\\u0301)\\u0648\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5hq7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moseswithhisbooks\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5hq7/interactive_prolog_setup/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5hq7/interactive_prolog_setup/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559295739.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I find it helpful to make cheatsheets whenever I'm learning stuff, the LaTeX was getting too much so I just hid it into Org-mode \\\\`#+latex:\\\\` invocations. The resulting mechanism ---[see here](https://github.com/alhassy/CheatSheet)\\\\--- works great: As a user, I essentially only see the usual org-mode interface, little to no LaTeX \\\\^\\\\_\\\\^ \\n\\n\\nHowever, even though I rarely consult it, the setup file is a bit akward, any suggestions for improvement would be welcome :-)\", \"author_fullname\": \"t2_1pko65xw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Easily Making CheatSheets with Org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5e7k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 71, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 71, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559323760.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find it helpful to make cheatsheets whenever I\\u0026#39;m learning stuff, the LaTeX was getting too much so I just hid it into Org-mode `#+latex:` invocations. The resulting mechanism ---\\u003Ca href=\\\"https://github.com/alhassy/CheatSheet\\\"\\u003Esee here\\u003C/a\\u003E--- works great: As a user, I essentially only see the usual org-mode interface, little to no LaTeX ^_^ \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, even though I rarely consult it, the setup file is a bit akward, any suggestions for improvement would be welcome :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5e7k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moseswithhisbooks\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5e7k/easily_making_cheatsheets_with_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5e7k/easily_making_cheatsheets_with_orgmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559294960.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hey, guys, been testing emacs on my new mbp and I ran into a rather inconvenient issue. When I put safari in full screen and switch back to emacs from safari, emacs is out of focus, i.e. I have to click on it to use it. Any ideas as to how to resolve this issue? My emacs version is emacs Mac port.\", \"author_fullname\": \"t2_2g0vvde9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Macos emacs focus issue\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5bes\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559323125.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, guys, been testing emacs on my new mbp and I ran into a rather inconvenient issue. When I put safari in full screen and switch back to emacs from safari, emacs is out of focus, i.e. I have to click on it to use it. Any ideas as to how to resolve this issue? My emacs version is emacs Mac port.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5bes\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"clafordvlawrence\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5bes/macos_emacs_focus_issue/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5bes/macos_emacs_focus_issue/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559294325.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_1s3m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Back in 2008, there were reports that Microsoft was working on Emacs.Net\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv2i7u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 43, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 43, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559301755.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"zdnet.com\", \"selftext_html\": null, \"likes\": true, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv2i7u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dharmatech\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv2i7u/back_in_2008_there_were_reports_that_microsoft/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.zdnet.com/article/microsoft-to-build-an-emacs-net-text-editor/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559272955.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a way to remap *TAB* in org-mode? I have looked into the source code and I cannot figure how to do this map.\", \"author_fullname\": \"t2_qw4yvca\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to remap TAB in org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv0ih3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559289935.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a way to remap \\u003Cem\\u003ETAB\\u003C/em\\u003E in org-mode? I have looked into the source code and I cannot figure how to do this map.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv0ih3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"machawinka\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv0ih3/how_to_remap_tab_in_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv0ih3/how_to_remap_tab_in_orgmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559261135.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"One thing that has been bugging me about using emacs for my email is when I use `message-insert-signature` it always puts my signature at the end of the email. Sometimes I leave the conversation tail after my reply, so I usually want to insert my signature at the point rather than at the end.\\n\\nIs there a way I can change this?\", \"author_fullname\": \"t2_9lkqk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Insert signature at point?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_butsst\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559255097.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOne thing that has been bugging me about using emacs for my email is when I use \\u003Ccode\\u003Emessage-insert-signature\\u003C/code\\u003E it always puts my signature at the end of the email. Sometimes I leave the conversation tail after my reply, so I usually want to insert my signature at the point rather than at the end.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way I can change this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"butsst\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lykwydchykyn\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/butsst/insert_signature_at_point/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/butsst/insert_signature_at_point/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559226297.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I using go language mode (Emacs 26.1 with Prelude). With longer lines, Emacs colors everyting beyond 80 characters in a different color.\\n\\nWhat variable(s) control this and how do I stop it from doing this?\\n\\nAppreciate your help.\\n\\nEDIT: Found it! Turning off whitespace-mode stopped this bahaviour.\", \"author_fullname\": \"t2_1a39v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I stop Emacs from coloring text beyond 80 columns differently.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_butal1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559225749.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559252400.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI using go language mode (Emacs 26.1 with Prelude). With longer lines, Emacs colors everyting beyond 80 characters in a different color.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat variable(s) control this and how do I stop it from doing this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAppreciate your help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Found it! Turning off whitespace-mode stopped this bahaviour.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"butal1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"reddit_clone\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/butal1/how_do_i_stop_emacs_from_coloring_text_beyond_80/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/butal1/how_do_i_stop_emacs_from_coloring_text_beyond_80/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559223600.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl5q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 74, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 74, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559241478.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl5q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burl5q/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559212678.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_14grtk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Brief summary of some Emacs features\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burg4w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559240415.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"old.reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burg4w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vurpius\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burg4w/brief_summary_of_some_emacs_features/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://old.reddit.com/r/linux/comments/btzzvp/unix_as_ide/ep5i1cy/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559211615.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"1. It is not super important but I'm curious if there's a way to improve EXWM startup time? After logging in and seeing Emacs briefly the window expands to fullscreen black and then it takes 10s or so before EXWM is ready. I'm curious it takes such a long time.\\n\\n2. Is there a build-in function to switch to the last used buffer quickly? Currently I'm using my own custom function because `(switch-to-buffer nil)` does not switch to hidden or system buffers. But it feels like overkill to use what I have written[1] (which I also use outside of EXWM).\\n\\n3. For changing the volume I'm using the current keybindings but on first use they have a significant delay and lock EXWM:\\n - `(lambda () (interactive) (start-process \\\"\\\" \\\"*proc-out-amixer*\\\" \\\"amixer\\\" \\\"set\\\" \\\"Master\\\" \\\"2%-\\\")))`\\n - `(lambda () (interactive) (start-process \\\"\\\" \\\"*proc-out-amixer*\\\" \\\"amixer\\\" \\\"set\\\" \\\"Master\\\" \\\"2%+\\\")))`\\n\\n[1]\\n\\n (defvar switch-to-last-buffer-hash-table (make-hash-table))\\n \\n (defun switch-to-last-buffer-store ()\\n (interactive)\\n (puthash (selected-window) (current-buffer)\\n switch-to-last-buffer-hash-table))\\n \\n ;; `(switch-to-buffer nil)` doesn't work because I also want to switch back to\\n ;; hidden or system buffers.\\n (defun switch-to-last-buffer ()\\n (interactive)\\n (let ((last-buffer (gethash (selected-window)\\n switch-to-last-buffer-hash-table)))\\n (when last-buffer\\n (switch-to-last-buffer-store)\\n (switch-to-buffer last-buffer))))\\n \\n ;; XXX What does /protected/ do?\\n (ad-add-advice #'switch-to-buffer '(switch-to-last-buffer-store nil t (lambda () (switch-to-last-buffer-store))) 'before 'first)\", \"author_fullname\": \"t2_3lmrs\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Some EXWM questions (startup time, keybindings)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bur9cm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559238876.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt is not super important but I\\u0026#39;m curious if there\\u0026#39;s a way to improve EXWM startup time? After logging in and seeing Emacs briefly the window expands to fullscreen black and then it takes 10s or so before EXWM is ready. I\\u0026#39;m curious it takes such a long time.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIs there a build-in function to switch to the last used buffer quickly? Currently I\\u0026#39;m using my own custom function because \\u003Ccode\\u003E(switch-to-buffer nil)\\u003C/code\\u003E does not switch to hidden or system buffers. But it feels like overkill to use what I have written[1] (which I also use outside of EXWM).\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor changing the volume I\\u0026#39;m using the current keybindings but on first use they have a significant delay and lock EXWM:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003E(lambda () (interactive) (start-process \\u0026quot;\\u0026quot; \\u0026quot;*proc-out-amixer*\\u0026quot; \\u0026quot;amixer\\u0026quot; \\u0026quot;set\\u0026quot; \\u0026quot;Master\\u0026quot; \\u0026quot;2%-\\u0026quot;)))\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003E(lambda () (interactive) (start-process \\u0026quot;\\u0026quot; \\u0026quot;*proc-out-amixer*\\u0026quot; \\u0026quot;amixer\\u0026quot; \\u0026quot;set\\u0026quot; \\u0026quot;Master\\u0026quot; \\u0026quot;2%+\\u0026quot;)))\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E[1]\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defvar switch-to-last-buffer-hash-table (make-hash-table))\\n\\n(defun switch-to-last-buffer-store ()\\n (interactive)\\n (puthash (selected-window) (current-buffer)\\n switch-to-last-buffer-hash-table))\\n\\n;; `(switch-to-buffer nil)` doesn\\u0026#39;t work because I also want to switch back to\\n;; hidden or system buffers.\\n(defun switch-to-last-buffer ()\\n (interactive)\\n (let ((last-buffer (gethash (selected-window)\\n switch-to-last-buffer-hash-table)))\\n (when last-buffer\\n (switch-to-last-buffer-store)\\n (switch-to-buffer last-buffer))))\\n\\n;; XXX What does /protected/ do?\\n(ad-add-advice #\\u0026#39;switch-to-buffer \\u0026#39;(switch-to-last-buffer-store nil t (lambda () (switch-to-last-buffer-store))) \\u0026#39;before \\u0026#39;first)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bur9cm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aerique\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bur9cm/some_exwm_questions_startup_time_keybindings/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bur9cm/some_exwm_questions_startup_time_keybindings/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559210076.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If that's easily available, please notice that I made it clear it was a silly question. I used to easily find this with a Google Search, but for some reason I haven't been able to find it for the last 48 hours. The mirror [only goes up to 26.2](http://mirror.sergal.org/gnu/emacs/). Where can I find versions development 27 and up?\\n\\n[I can only find pretest versions for Windows](https://alpha.gnu.org/gnu/emacs/pretest/windows/).\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A very silly question: cannot find Emacs 27.0.50 tarball for Linux anywhere!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bumr6p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559177553.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559206114.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf that\\u0026#39;s easily available, please notice that I made it clear it was a silly question. I used to easily find this with a Google Search, but for some reason I haven\\u0026#39;t been able to find it for the last 48 hours. The mirror \\u003Ca href=\\\"http://mirror.sergal.org/gnu/emacs/\\\"\\u003Eonly goes up to 26.2\\u003C/a\\u003E. Where can I find versions development 27 and up?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://alpha.gnu.org/gnu/emacs/pretest/windows/\\\"\\u003EI can only find pretest versions for Windows\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bumr6p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bumr6p/a_very_silly_question_cannot_find_emacs_27050/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bumr6p/a_very_silly_question_cannot_find_emacs_27050/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559177314.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"While me and some friends were discusing about which is the best text editor I said that it is emacs. Someone said that it is VS code because you can do things that in other editors you can't. I said you can do almost everything in emacs. Someone asked if ther is a way to use tinder from emacs. So that's the question, can you interact with other people via tinder with emacs?\\n\\nThanks.\", \"author_fullname\": \"t2_1gpw29so\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a tinder mode on emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buj4i2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 54, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 54, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559187513.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile me and some friends were discusing about which is the best text editor I said that it is emacs. Someone said that it is VS code because you can do things that in other editors you can\\u0026#39;t. I said you can do almost everything in emacs. Someone asked if ther is a way to use tinder from emacs. So that\\u0026#39;s the question, can you interact with other people via tinder with emacs?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buj4i2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"edoelas\", \"num_crossposts\": 0, \"num_comments\": 28, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buj4i2/is_there_a_tinder_mode_on_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buj4i2/is_there_a_tinder_mode_on_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559158713.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Lately I have realized that I don't have an efficient way of organizing my research and ideas. I simply bookmark different papers I have read and jot down my ideas in a notebook. I have looked into tools for this and Zotero seems to be like something I can use.\\n\\nI haven't really used org mode before, but I have heard good things about it. So if anyone uses org mode for the case I have described above (organizing research and ideas), I would love to hear about tips and hopefully links to some guides?\", \"author_fullname\": \"t2_gcwvdi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs org mode as a research/ideas journal ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buhux4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559181180.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELately I have realized that I don\\u0026#39;t have an efficient way of organizing my research and ideas. I simply bookmark different papers I have read and jot down my ideas in a notebook. I have looked into tools for this and Zotero seems to be like something I can use.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t really used org mode before, but I have heard good things about it. So if anyone uses org mode for the case I have described above (organizing research and ideas), I would love to hear about tips and hopefully links to some guides?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buhux4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vikigenius\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buhux4/emacs_org_mode_as_a_researchideas_journal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buhux4/emacs_org_mode_as_a_researchideas_journal/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559152380.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have adapted a function by Xah Lee to change the location backup files are saved, but it doesn't seem to work. Only things like the `recentf` and `idolast` are saved in it. Normal editing files are still backed up in their directories as usual.\\n\\nAre there some other functions and variables involved?\\n \\n ;; make backup to a designated dir, mirroring the full path\\n ;; adapted from xah-lee http://ergoemacs.org/emacs/emacs_set_backup_into_a_directory.html\\n \\n (defun vfc/set-backup-file-path (fpath)\\n \\\"Return a new file path of a given file path.\\n If the new path's directories does not exist, create them.\\\"\\n (let* (\\n (backupRootDir \\\"~/tmp/.emacs_backups/\\\")\\n (filePath (replace-regexp-in-string \\\"[A-Za-z]:\\\" \\\"\\\" fpath )) ; remove Windows driver letter in path, for example, \\u201cC:\\u201d\\n (backupFilePath (replace-regexp-in-string \\\"//\\\" \\\"/\\\" (concat backupRootDir filePath \\\"~\\\") ))\\n )\\n (make-directory (file-name-directory backupFilePath) (file-name-directory backupFilePath))\\n backupFilePath\\n )\\n )\\n \\n (setq make-backup-file-name-function 'vfc/set-backup-file-path)\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there another factor involved in backup file locations besides \\\"make-backup-file-name-function\\\"?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buf5od\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559167905.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have adapted a function by Xah Lee to change the location backup files are saved, but it doesn\\u0026#39;t seem to work. Only things like the \\u003Ccode\\u003Erecentf\\u003C/code\\u003E and \\u003Ccode\\u003Eidolast\\u003C/code\\u003E are saved in it. Normal editing files are still backed up in their directories as usual.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre there some other functions and variables involved?\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; make backup to a designated dir, mirroring the full path\\n;; adapted from xah-lee http://ergoemacs.org/emacs/emacs_set_backup_into_a_directory.html\\n\\n(defun vfc/set-backup-file-path (fpath)\\n \\u0026quot;Return a new file path of a given file path.\\nIf the new path\\u0026#39;s directories does not exist, create them.\\u0026quot;\\n (let* (\\n (backupRootDir \\u0026quot;~/tmp/.emacs_backups/\\u0026quot;)\\n (filePath (replace-regexp-in-string \\u0026quot;[A-Za-z]:\\u0026quot; \\u0026quot;\\u0026quot; fpath )) ; remove Windows driver letter in path, for example, \\u201cC:\\u201d\\n (backupFilePath (replace-regexp-in-string \\u0026quot;//\\u0026quot; \\u0026quot;/\\u0026quot; (concat backupRootDir filePath \\u0026quot;~\\u0026quot;) ))\\n )\\n (make-directory (file-name-directory backupFilePath) (file-name-directory backupFilePath))\\n backupFilePath\\n )\\n)\\n\\n(setq make-backup-file-name-function \\u0026#39;vfc/set-backup-file-path)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buf5od\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buf5od/is_there_another_factor_involved_in_backup_file/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buf5od/is_there_another_factor_involved_in_backup_file/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559139105.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm running Portacle (a LISP IDE).\\n\\nFor some reason I'm not able to use Ctrl+Shift+arrow keys to select text.\\n\\nDoes anyone know why? How can I enable this? In plain Emacs it works just fine.\", \"author_fullname\": \"t2_3nv0r2zn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can't Use Shift Keys for selecting text\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buepqn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559165474.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m running Portacle (a LISP IDE).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor some reason I\\u0026#39;m not able to use Ctrl+Shift+arrow keys to select text.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone know why? How can I enable this? In plain Emacs it works just fine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buepqn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gambledrum1\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buepqn/cant_use_shift_keys_for_selecting_text/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buepqn/cant_use_shift_keys_for_selecting_text/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559136674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I found there is web-mode, rjsx-mode, vue-mode, js-mode, js2-mode and so on. I am not sure if i should use web-mode for all of them or should i use a specific one for each extension like, rjsx for jsx, vue-mode for vue. I saw that most of the mode allows us to customize space, tab... like web-mode does so i could not differentiate between them. Please explain me the different and advice me what should I use and why?\", \"author_fullname\": \"t2_3q43d0xo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Should I use web-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budrzk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559160036.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I found there is web-mode, rjsx-mode, vue-mode, js-mode, js2-mode and so on. I am not sure if i should use web-mode for all of them or should i use a specific one for each extension like, rjsx for jsx, vue-mode for vue. I saw that most of the mode allows us to customize space, tab... like web-mode does so i could not differentiate between them. Please explain me the different and advice me what should I use and why?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budrzk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"onwake01\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budrzk/should_i_use_webmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budrzk/should_i_use_webmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559131236.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I really like emmet and activate it globally so that i can speed up my html code faster. But, because those files don't contain a pure html but also css and js, then emmet often interrupt rather than help because it always show completion and when i press space it just replace my typing. This is annoying when i am inside js block or css block but this interrupt me so much. \\n\\n\\u0026#x200B;\\n\\nMy question is, is it possible if i want emmet to show suggestion/completion inside a block of html code?\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n```\\n(use-package emmet-mode\\n :hook ((html-mode sgml-mode css-mode web-mode) . emmet-preview-mode)\\n :bind(\\\"C-j\\\" . emmet-expand-line)\\n :config\\n (add-hook 'rjsx-mode-hook\\n (lambda ()\\n (setq-local emmet-expand-jsx-className? t)))\\n )\\n;\\n```\", \"author_fullname\": \"t2_3q43d0xo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is it possible to activate emmet only inside HTML region or tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budods\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159433.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I really like emmet and activate it globally so that i can speed up my html code faster. But, because those files don\\u0026#39;t contain a pure html but also css and js, then emmet often interrupt rather than help because it always show completion and when i press space it just replace my typing. This is annoying when i am inside js block or css block but this interrupt me so much. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy question is, is it possible if i want emmet to show suggestion/completion inside a block of html code?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\n\\u003Ccode\\u003E\\n(use-package emmet-mode\\n :hook ((html-mode sgml-mode css-mode web-mode) . emmet-preview-mode)\\n :bind(\\u0026quot;C-j\\u0026quot; . emmet-expand-line)\\n :config\\n (add-hook \\u0026#39;rjsx-mode-hook\\n (lambda ()\\n (setq-local emmet-expand-jsx-className? t)))\\n )\\n;\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budods\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"onwake01\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budods/is_it_possible_to_activate_emmet_only_inside_html/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budods/is_it_possible_to_activate_emmet_only_inside_html/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559130633.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I work with emacs at work to organized incoming tickets. We open these tickets in an online application, essentially a web page for each ticket. I am looking for a way to get certain text strings (for example, the ticket number \\u0026 the user ID) into Emacs, and then into a capture template in org, which contains these as properties (:ticket: :userid:).\\n\\n\\u0026#x200B;\\n\\nWhat would be a way to look into it? I'm trying to find something online but it seems to be too vague to search thoroughly. Anyone here done something similar? I'm open to suggestions...\\n\\n\\u0026#x200B;\\n\\nThanks in advance!\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Extract certain text from browser to Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budmsh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159158.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI work with emacs at work to organized incoming tickets. We open these tickets in an online application, essentially a web page for each ticket. I am looking for a way to get certain text strings (for example, the ticket number \\u0026amp; the user ID) into Emacs, and then into a capture template in org, which contains these as properties (:ticket: :userid:).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat would be a way to look into it? I\\u0026#39;m trying to find something online but it seems to be too vague to search thoroughly. Anyone here done something similar? I\\u0026#39;m open to suggestions...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budmsh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budmsh/extract_certain_text_from_browser_to_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budmsh/extract_certain_text_from_browser_to_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559130358.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\\n\\nThe other things which get noted in LOGBOOK can remain, just `C-c C-z` to go into a separate drawer?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bud0x7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559155172.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe other things which get noted in LOGBOOK can remain, just \\u003Ccode\\u003EC-c C-z\\u003C/code\\u003E to go into a separate drawer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bud0x7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bud0x7/how_can_emacs_be_set_to_use_a_different_drawer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bud0x7/how_can_emacs_be_set_to_use_a_different_drawer/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559126372.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_8dk3r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bucul7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 31, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/AL1ypvJ5yAQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bucul7\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 31, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559153900.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bucul7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zaiste\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bucul7/emacs_doom_e04_buffers_windows_and_basic/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=AL1ypvJ5yAQ\\u0026feature=youtu.be\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559125100.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/AL1ypvJ5yAQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Any using emacs to track calories or any other diet related stuff?\", \"author_fullname\": \"t2_2ibchdac\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone using emacs to track calories?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buci89\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559151135.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny using emacs to track calories or any other diet related stuff?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buci89\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"the_sealed_tanker\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buci89/anyone_using_emacs_to_track_calories/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buci89/anyone_using_emacs_to_track_calories/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559122335.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm finally diving into the world of emacs. So i set a theme and all that in the GUI wich looks great. However, outside of emacs i'm using a transparant URvxt with a color scheme of it's own, before i customized the GUI version emacs -nw would be the same transparency and all the colors would match. Now however i get a full green screen with on which the letters are hardly readable. How can I apply the theme only to the GUI version and not the terminal version?\\n\\nThanks.\", \"author_fullname\": \"t2_3p8r6ax6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs -nw color scheme.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bubuv9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559145461.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m finally diving into the world of emacs. So i set a theme and all that in the GUI wich looks great. However, outside of emacs i\\u0026#39;m using a transparant URvxt with a color scheme of it\\u0026#39;s own, before i customized the GUI version emacs -nw would be the same transparency and all the colors would match. Now however i get a full green screen with on which the letters are hardly readable. How can I apply the theme only to the GUI version and not the terminal version?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bubuv9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"whoopar\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bubuv9/emacs_nw_color_scheme/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bubuv9/emacs_nw_color_scheme/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559116661.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"# Introduction\\n\\nGNU Hyperbole 7.0.3 is released and ready for action.\\n\\nHyperbole is an amazing hypertextual information management system that installs quickly and easily as an Emacs package. It is part of GNU Elpa, the Emacs Lisp Package Archive.\\n\\nHyperbole interlinks all your working information within Emacs for fast access and editing, not just within special modes. An hour invested exploring Hyperbole's built-in interactive DEMO file will save you hundreds of hours in your future work.\\n\\n7.0.3 is a significant release with a number of interesting improvements. What's new in this release is described here:\\n\\n[www.gnu.org/s/hyperbole/HY-NEWS](https://www.gnu.org/s/hyperbole/HY-NEWS.html)\\n\\nHyperbole is described here:\\n\\n[www.gnu.org/s/hyperbole](https://www.gnu.org/s/hyperbole)\\n\\nFor use cases, see:\\n\\n[www.gnu.org/s/hyperbole/HY-WHY.html](https://www.gnu.org/s/hyperbole/HY-WHY.html)\\n\\nFor what users think about Hyperbole, see:\\n\\n[https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes](https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes)\\n\\nHyperbole can supplement and extend Org-mode's capabilities. It adds many features not found elsewhere in Emacs, including Org mode, see:\\n\\n[www.emacswiki.org/emacs/Hyperbole](https://www.emacswiki.org/emacs/Hyperbole)\\n\\nHyperbole includes its own easy-to-use hypertextual buttons and links that can be created without the need for any markup language.\\n\\nHyperbole has an interactive demo to introduce you to its features as well as a detailed reference manual, as explained here:\\n\\n[https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc](https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc)\\n\\n# Quick Reasons to Try Hyperbole\\n\\nIt contains:\\n\\n* the most flexible and easy-to-use hyperbuttons available, including implicit buttons automatically recognized by context, e.g. stack trace source line references.\\n* the only Emacs outliner with full legal item numbering, e.g. [1.4.2.6](https://1.4.2.6), and automatic permanent hyperlink anchors for every item\\n* the only free-form contact manager with full-text search for Emacs\\n* rapid and precise window, frame and buffer placement on screen\\n* an extensive menu of typed web searches, e.g. dictionary, wikipedia and stackoverflow, plus convenient, fast file and line finding functions\\n* immediate execution of a series of key presses just by typing them out. For example, a M-RETURN press on: {C-x C-b C-s scratch RET C-a} will find the first buffer menu item that contains 'scratch'; then leave point at the beginning of its line. Build interactive tutorials with this.\\n* The Magic of Implicit Buttons and the Action Key\\n\\nFor near instant gratification, try Hyperbole's 'implicit button' capabilities (hyper-buttons that Hyperbole gives you for free by recognizing all types of references embedded within text such as pathnames or error message lines). Below are more complex examples to show the power; simpler ones can be found within the Hyperbole DEMO file.\\n\\nImplicit buttons are activated by pressing the Action Key, M\\\\*-RETURN\\\\*. Once Hyperbole is loaded in your Emacs, pressing *M-RETURN* on any of these examples \\\\*in virtually any buffer\\\\* will display the associated referent in a chosen window or frame, handling all variable substitution and full path resolution:\\n\\n \\\"find-func.el\\\" Find this file whether gzipped or not\\n in the Emacs Lisp load-path\\n \\n \\\"${hyperb:dir}/HY-NEWS\\\" Resolve variable, show Hyperbole news\\n \\n \\\"${PATH}/umask\\\" Display a script somewhere in multi-dir PATH\\n \\n \\\"${hyperb:dir}/DEMO#Hyperbole Menus\\\" Org mode outline, Markdown, and HTML # refs\\n \\n \\\"(hyperbole)Menus\\\" Texinfo and Info node links\\n \\n \\\"c:/Users\\\", \\\"c:\\\\Users\\\", \\\"/C/Users\\\", \\\"/c/Users\\\", and \\\"/mnt/c/Users\\\"\\n On Windows and Windows Subsystem for Linux,\\n Hyperbole recognizes all of these as the\\n same path and can translate between Windows\\n and POSIX path formats in both directions\\n \\n Git Links:\\n git#branches List branches in current repo/project\\n git#commits List and browse commits for current project\\n git#tags List tags in current project\\n \\n git#/hyperbole From any buffer, dired on the top\\n directory of the local hyperbole\\n project\\n \\n git#/hyperbole/55a1f0 or From any buffer, display hyperbole\\n git#hyperbole/55a1f0 local git commit diff\\n \\n \\n Github Links:\\n gh@rswgnu Display user's home page \\u0026 projects\\n \\n github#rswgnu/hyperbole Display user's project\\n gh#rswgnu/helm/global_mouse Display user project's branch\\n gh#rswgnu/hyperbole/55a1f0 Display user project's commit diff\\n \\n Gitlab Links:\\n gitlab@seriyalexandrov Display user's home page\\n gl#gitlab-org/gitlab-ce/activity Summarize user's project activity\\n gl#gitlab-org/gitlab-ce/analytics Display user project's cycle_analytics\\n gl#gitlab-org/gitlab-ce/boards Display user project's kanban-type issue boards\\n \\n Once you set the default user and project variables, you can leave them off any reference links:\\n \\n (setq hibtypes-gitlab-default-user \\\"gitlab-org\\\")\\n (setq hibtypes-gitlab-default-project \\\"gitlab-ce\\\")\\n \\n gl#issues or gl#list Display default project's issue list\\n gl#labels Display default project's issue categories\\n gl#members Display default project's staff list\\n gl#contributors Show contributor push frequency charts\\n gl#merge_requests or gl#pulls Display default project's pull requests\\n gl#milestones Display default project's milestones status\\n gl#pages Display default project's web pages\\n gl#snippets Project snippets, diffs and text with discussion\\n gl#groups List all available groups of projects\\n gl#projects List all available projects\\n \\n gl#milestone=38 Show a specific project milestone\\n gl#snippet/1689487 Show a specific project snippet\\n \\n Even useful social media links:\\n tw#travel or twitter#travel Display twitter hashtag matches\\n fb#technology Display facebook hashtag matches\\n \\n Hyperbole uses simple prefix characters with paths to make them executable:\\n \\\"!/bin/date\\\" Execute as a non-windowed program within a shell\\n \\\"\\u0026/opt/X11/bin/xeyes\\\" Execute as a windowed program;\\n \\\"-find-func.el\\\" Load/execute this Emacs Lisp library\\n \\n File \\\"/usr/lib/python3.7/ast.py\\\", line 37, in parse\\n Jump to error/stack trace source\\n \\n \\\"/ftp:anonymous@ftp.gnu.org:\\\" Tramp remote paths\\n\\n# Try It - Installs or Uninstalls in a Minute\\n\\nHyperbole lets you concentrate more on your work. Then as you grow with it across time, it helps speed your work across weeks and months. It installs in about a minute and can be uninstalled even faster if ever need be. Give it a try.\\n\\nHyperbole can boost your day-to-day productivity with Emacs and your ability to manage information stored across many different machines on the internet.\\n\\nHyperbole can be installed like any other package with the Emacs package manager:\\n\\n {M-x list-packages RET C-s hyperbole RET i x y}\\n\\nThen to invoke its menu:\\n\\n {C-h h} or {M-x hyperbole RET}\\n\\nThe best way to get a feel for many of its capabilities is to invoke the interactive DEMO and explore sections of interest:\\n\\n {C-h h d d}\\n\\n\\u0026#x200B;\\n\\nEnjoy,\\n\\nThe Hyperbole Team\", \"author_fullname\": \"t2_zxjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GNU Hyperbole 7.0.3 is released and ready for action\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bua5ex\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 90, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 90, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559271243.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559132304.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EIntroduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EGNU Hyperbole 7.0.3 is released and ready for action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole is an amazing hypertextual information management system that installs quickly and easily as an Emacs package. It is part of GNU Elpa, the Emacs Lisp Package Archive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole interlinks all your working information within Emacs for fast access and editing, not just within special modes. An hour invested exploring Hyperbole\\u0026#39;s built-in interactive DEMO file will save you hundreds of hours in your future work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E7.0.3 is a significant release with a number of interesting improvements. What\\u0026#39;s new in this release is described here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/HY-NEWS.html\\\"\\u003Ewww.gnu.org/s/hyperbole/HY-NEWS\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole is described here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole\\\"\\u003Ewww.gnu.org/s/hyperbole\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor use cases, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/HY-WHY.html\\\"\\u003Ewww.gnu.org/s/hyperbole/HY-WHY.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor what users think about Hyperbole, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes\\\"\\u003Ehttps://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can supplement and extend Org-mode\\u0026#39;s capabilities. It adds many features not found elsewhere in Emacs, including Org mode, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/Hyperbole\\\"\\u003Ewww.emacswiki.org/emacs/Hyperbole\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole includes its own easy-to-use hypertextual buttons and links that can be created without the need for any markup language.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole has an interactive demo to introduce you to its features as well as a detailed reference manual, as explained here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc\\\"\\u003Ehttps://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuick Reasons to Try Hyperbole\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EIt contains:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Ethe most flexible and easy-to-use hyperbuttons available, including implicit buttons automatically recognized by context, e.g. stack trace source line references.\\u003C/li\\u003E\\n\\u003Cli\\u003Ethe only Emacs outliner with full legal item numbering, e.g. \\u003Ca href=\\\"https://1.4.2.6\\\"\\u003E1.4.2.6\\u003C/a\\u003E, and automatic permanent hyperlink anchors for every item\\u003C/li\\u003E\\n\\u003Cli\\u003Ethe only free-form contact manager with full-text search for Emacs\\u003C/li\\u003E\\n\\u003Cli\\u003Erapid and precise window, frame and buffer placement on screen\\u003C/li\\u003E\\n\\u003Cli\\u003Ean extensive menu of typed web searches, e.g. dictionary, wikipedia and stackoverflow, plus convenient, fast file and line finding functions\\u003C/li\\u003E\\n\\u003Cli\\u003Eimmediate execution of a series of key presses just by typing them out. For example, a M-RETURN press on: {C-x C-b C-s scratch RET C-a} will find the first buffer menu item that contains \\u0026#39;scratch\\u0026#39;; then leave point at the beginning of its line. Build interactive tutorials with this.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Magic of Implicit Buttons and the Action Key\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EFor near instant gratification, try Hyperbole\\u0026#39;s \\u0026#39;implicit button\\u0026#39; capabilities (hyper-buttons that Hyperbole gives you for free by recognizing all types of references embedded within text such as pathnames or error message lines). Below are more complex examples to show the power; simpler ones can be found within the Hyperbole DEMO file.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EImplicit buttons are activated by pressing the Action Key, M*-RETURN*. Once Hyperbole is loaded in your Emacs, pressing \\u003Cem\\u003EM-RETURN\\u003C/em\\u003E on any of these examples *in virtually any buffer* will display the associated referent in a chosen window or frame, handling all variable substitution and full path resolution:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E \\u0026quot;find-func.el\\u0026quot; Find this file whether gzipped or not\\n in the Emacs Lisp load-path\\n\\n \\u0026quot;${hyperb:dir}/HY-NEWS\\u0026quot; Resolve variable, show Hyperbole news\\n\\n \\u0026quot;${PATH}/umask\\u0026quot; Display a script somewhere in multi-dir PATH\\n\\n \\u0026quot;${hyperb:dir}/DEMO#Hyperbole Menus\\u0026quot; Org mode outline, Markdown, and HTML # refs\\n\\n \\u0026quot;(hyperbole)Menus\\u0026quot; Texinfo and Info node links\\n\\n \\u0026quot;c:/Users\\u0026quot;, \\u0026quot;c:\\\\Users\\u0026quot;, \\u0026quot;/C/Users\\u0026quot;, \\u0026quot;/c/Users\\u0026quot;, and \\u0026quot;/mnt/c/Users\\u0026quot;\\n On Windows and Windows Subsystem for Linux,\\n Hyperbole recognizes all of these as the\\n same path and can translate between Windows\\n and POSIX path formats in both directions\\n\\nGit Links:\\n git#branches List branches in current repo/project\\n git#commits List and browse commits for current project\\n git#tags List tags in current project\\n\\n git#/hyperbole From any buffer, dired on the top\\n directory of the local hyperbole\\n project\\n\\n git#/hyperbole/55a1f0 or From any buffer, display hyperbole\\n git#hyperbole/55a1f0 local git commit diff\\n\\n\\nGithub Links:\\n gh@rswgnu Display user\\u0026#39;s home page \\u0026amp; projects\\n\\n github#rswgnu/hyperbole Display user\\u0026#39;s project\\n gh#rswgnu/helm/global_mouse Display user project\\u0026#39;s branch\\n gh#rswgnu/hyperbole/55a1f0 Display user project\\u0026#39;s commit diff\\n\\nGitlab Links:\\n gitlab@seriyalexandrov Display user\\u0026#39;s home page\\n gl#gitlab-org/gitlab-ce/activity Summarize user\\u0026#39;s project activity\\n gl#gitlab-org/gitlab-ce/analytics Display user project\\u0026#39;s cycle_analytics\\n gl#gitlab-org/gitlab-ce/boards Display user project\\u0026#39;s kanban-type issue boards\\n\\nOnce you set the default user and project variables, you can leave them off any reference links:\\n\\n (setq hibtypes-gitlab-default-user \\u0026quot;gitlab-org\\u0026quot;)\\n (setq hibtypes-gitlab-default-project \\u0026quot;gitlab-ce\\u0026quot;)\\n\\n gl#issues or gl#list Display default project\\u0026#39;s issue list\\n gl#labels Display default project\\u0026#39;s issue categories\\n gl#members Display default project\\u0026#39;s staff list\\n gl#contributors Show contributor push frequency charts\\n gl#merge_requests or gl#pulls Display default project\\u0026#39;s pull requests\\n gl#milestones Display default project\\u0026#39;s milestones status\\n gl#pages Display default project\\u0026#39;s web pages\\n gl#snippets Project snippets, diffs and text with discussion\\n gl#groups List all available groups of projects\\n gl#projects List all available projects\\n\\n gl#milestone=38 Show a specific project milestone\\n gl#snippet/1689487 Show a specific project snippet\\n\\nEven useful social media links:\\n tw#travel or twitter#travel Display twitter hashtag matches\\n fb#technology Display facebook hashtag matches\\n\\nHyperbole uses simple prefix characters with paths to make them executable:\\n \\u0026quot;!/bin/date\\u0026quot; Execute as a non-windowed program within a shell\\n \\u0026quot;\\u0026amp;/opt/X11/bin/xeyes\\u0026quot; Execute as a windowed program;\\n \\u0026quot;-find-func.el\\u0026quot; Load/execute this Emacs Lisp library\\n\\n File \\u0026quot;/usr/lib/python3.7/ast.py\\u0026quot;, line 37, in parse\\n Jump to error/stack trace source\\n\\n \\u0026quot;/ftp:anonymous@ftp.gnu.org:\\u0026quot; Tramp remote paths\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Ch1\\u003ETry It - Installs or Uninstalls in a Minute\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EHyperbole lets you concentrate more on your work. Then as you grow with it across time, it helps speed your work across weeks and months. It installs in about a minute and can be uninstalled even faster if ever need be. Give it a try.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can boost your day-to-day productivity with Emacs and your ability to manage information stored across many different machines on the internet.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can be installed like any other package with the Emacs package manager:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {M-x list-packages RET C-s hyperbole RET i x y}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThen to invoke its menu:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {C-h h} or {M-x hyperbole RET}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe best way to get a feel for many of its capabilities is to invoke the interactive DEMO and explore sections of interest:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {C-h h d d}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEnjoy,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Hyperbole Team\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bua5ex\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rswgnu\", \"num_crossposts\": 0, \"num_comments\": 35, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559103504.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here is the second post of my Year of Emacs series. This is the version of my init.el that I am currently using. Two posts in one week because a dotfile doesn't really explore a single mode, package, workflow so I don't feel like it counts.\\n\\nThis weekend, I'll be writing about how I used org-mode to write my Master's Thesis.\\n\\n[https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-\\\\~-may-2019/](https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-~-may-2019/)\", \"author_fullname\": \"t2_jqpn4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Year of Emacs: Starting init.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu99h0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559126798.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is the second post of my Year of Emacs series. This is the version of my init.el that I am currently using. Two posts in one week because a dotfile doesn\\u0026#39;t really explore a single mode, package, workflow so I don\\u0026#39;t feel like it counts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis weekend, I\\u0026#39;ll be writing about how I used org-mode to write my Master\\u0026#39;s Thesis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-%7E-may-2019/\\\"\\u003Ehttps://jonathanabennett.github.io/blog/2019/05/28/emacs.org-~-may-2019/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu99h0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doulos05\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu99h0/year_of_emacs_starting_initel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu99h0/year_of_emacs_starting_initel/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559097998.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm slowly working on eliminating my need for a shell by moving more and more functionality into Emacs. \\n\\nI am really interested in getting my feet wet with Emacs modules, but I don't really have any ideas for stuff to wrap/write?\\n\\nDoes anyone have any lower-level functionality that they've really wished they could have in Emacs but haven't been able to get yet?\\n\\nI'm also experimenting with dbus and Emacs, so if there are any ideas with that, I'd like to play around with that as well.\\n\\nEDIT: just a quick clarification. It seems that some people misunderstood what I mean by module. I was specifically referring to Emacs' [dynamic modules](https://www.gnu.org/software/emacs/manual/html_node/elisp/Dynamic-Modules.html), not mode or library.\\n\\nI'm definitely interested in doing anything I can to make the Emacs community better off, but I was specifically asking for ideas relating to dynamic modules or using Emacs' dbus wrapper.\", \"author_fullname\": \"t2_clfs9gn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Any interesting ideas for Emacs modules?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu83ku\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559165757.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559119874.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m slowly working on eliminating my need for a shell by moving more and more functionality into Emacs. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am really interested in getting my feet wet with Emacs modules, but I don\\u0026#39;t really have any ideas for stuff to wrap/write?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have any lower-level functionality that they\\u0026#39;ve really wished they could have in Emacs but haven\\u0026#39;t been able to get yet?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m also experimenting with dbus and Emacs, so if there are any ideas with that, I\\u0026#39;d like to play around with that as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: just a quick clarification. It seems that some people misunderstood what I mean by module. I was specifically referring to Emacs\\u0026#39; \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/elisp/Dynamic-Modules.html\\\"\\u003Edynamic modules\\u003C/a\\u003E, not mode or library.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m definitely interested in doing anything I can to make the Emacs community better off, but I was specifically asking for ideas relating to dynamic modules or using Emacs\\u0026#39; dbus wrapper.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu83ku\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"egregius313\", \"num_crossposts\": 0, \"num_comments\": 27, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu83ku/any_interesting_ideas_for_emacs_modules/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu83ku/any_interesting_ideas_for_emacs_modules/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559091074.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My idea is, displaying the scheduled agenda item at current time in the header modeline, is there any way to get it as a string?\\n\\nFor example I have this:\\n\\n * TODO Do something here\\n \\u003C2019-05-28 16:30-17:00\\u003E\\n\\nAnd now is 16:45, I want to get the string `TODO Do something here`.\", \"author_fullname\": \"t2_f7e7n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there anyway to get scheduled agenda item at current time?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu7hs4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559116512.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy idea is, displaying the scheduled agenda item at current time in the header modeline, is there any way to get it as a string?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example I have this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Do something here\\n \\u0026lt;2019-05-28 16:30-17:00\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnd now is 16:45, I want to get the string \\u003Ccode\\u003ETODO Do something here\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7hs4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"huydotnet\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu7hs4/is_there_anyway_to_get_scheduled_agenda_item_at/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu7hs4/is_there_anyway_to_get_scheduled_agenda_item_at/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559087712.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm using LISPBOX for Windows: [https://common-lisp.net/project/lispbox/](https://common-lisp.net/project/lispbox/)\\n\\nEverything works great, however when I create a new file (for creating lisps the editor is not indenting my parenthesis.\\n\\nIt indents just fine in the REPL, but not in the new file. The new file does parenthesis matching just fine. It also will compile to the REPL just fine.\\n\\nIt just won't indent!!!\\n\\nHow can I fix this?\", \"author_fullname\": \"t2_3nv0r2zn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SLIME not indenting...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu3uqy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559098225.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using LISPBOX for Windows: \\u003Ca href=\\\"https://common-lisp.net/project/lispbox/\\\"\\u003Ehttps://common-lisp.net/project/lispbox/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEverything works great, however when I create a new file (for creating lisps the editor is not indenting my parenthesis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt indents just fine in the REPL, but not in the new file. The new file does parenthesis matching just fine. It also will compile to the REPL just fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt just won\\u0026#39;t indent!!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I fix this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu3uqy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gambledrum1\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu3uqy/slime_not_indenting/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu3uqy/slime_not_indenting/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559069425.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've been working on my first bit of elisp, a minor mode to make writing ruby scripts a bit easier, but since I'm pretty new to this, I'm not sure of what the best practices are. Are there any naming conventions for variable/function names that I should adhere to or any pitfalls that I should be aware of? When I get it into a more finished state, should I submit it to melpa, and if so, how would I go about doing that?\\n\\nEdit: For future programmers, here are a few things I've learned:\\n\\n* Magic autoload cookies ***need*** to have three semicolons before them or the autoload file will not build correctly. I can't find anything documenting this behavior, which made debugging really frustrating.\\n\\n Like this:\\n ;;;###autoload\\n Not these:\\n ;###autoload\\n ;;###autoload\\n ;;;;###autoload\\n\\n* Docstrings should not be indented after the first line. This looks terrible in the code, but when the docstrings are opened up in help mode, they will look wonky if they are indented.\\n* `defcustom` should be used for variables, not `defvar`. This is so users can set custom values for the variables via the customization interface. Similarly, `defgroup` should be used to create a custom group so that the customizable variables for your mode can be easily accessed/discovered.\", \"author_fullname\": \"t2_28kz9s00\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Any tips for writing minor modes?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu3ql3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559233037.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559097649.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been working on my first bit of elisp, a minor mode to make writing ruby scripts a bit easier, but since I\\u0026#39;m pretty new to this, I\\u0026#39;m not sure of what the best practices are. Are there any naming conventions for variable/function names that I should adhere to or any pitfalls that I should be aware of? When I get it into a more finished state, should I submit it to melpa, and if so, how would I go about doing that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: For future programmers, here are a few things I\\u0026#39;ve learned:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EMagic autoload cookies \\u003Cstrong\\u003E\\u003Cem\\u003Eneed\\u003C/em\\u003E\\u003C/strong\\u003E to have three semicolons before them or the autoload file will not build correctly. I can\\u0026#39;t find anything documenting this behavior, which made debugging really frustrating.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ELike this:\\n ;;;###autoload\\nNot these:\\n ;###autoload\\n ;;###autoload\\n ;;;;###autoload\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDocstrings should not be indented after the first line. This looks terrible in the code, but when the docstrings are opened up in help mode, they will look wonky if they are indented.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Edefcustom\\u003C/code\\u003E should be used for variables, not \\u003Ccode\\u003Edefvar\\u003C/code\\u003E. This is so users can set custom values for the variables via the customization interface. Similarly, \\u003Ccode\\u003Edefgroup\\u003C/code\\u003E should be used to create a custom group so that the customizable variables for your mode can be easily accessed/discovered.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu3ql3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"samuel_first\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu3ql3/any_tips_for_writing_minor_modes/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu3ql3/any_tips_for_writing_minor_modes/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559068849.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bu3ql3\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["419643"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:26 GMT"], "x-ratelimit-remaining": ["574.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["26"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914346.580383,VS0,VE867"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["455"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:32:26"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_bxtwfg"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:27 GMT"], "x-ratelimit-remaining": ["573.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["27"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914347.303410,VS0,VE74"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["453"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_bxtwfg"}, "recorded_at": "2019-06-07T13:32:27"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9nx63\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skouakskouek\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559913189.0, \"send_replies\": true, \"parent_id\": \"t3_bxu83g\", \"score\": 1, \"author_fullname\": \"t2_elo7h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hi, I'm not sure about what I should do to have syntax highlighting on my code block.\\n\\nI added this to my emacs file, to no success:\\n\\n (setq org-src-fontify-natively t\\n org-src-tab-acts-natively t\\n org-confirm-babel-evaluate nil\\n org-edit-src-content-indentation 0)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eq9nx63\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I\\u0026#39;m not sure about what I should do to have syntax highlighting on my code block.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI added this to my emacs file, to no success:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-src-fontify-natively t\\n org-src-tab-acts-natively t\\n org-confirm-babel-evaluate nil\\n org-edit-src-content-indentation 0)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/eq9nx63/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1559941989.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxooz7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g6db\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559905273.0, \"send_replies\": true, \"parent_id\": \"t3_bxooz7\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Try `(add-to-list 'org-src-lang-modes '(\\\"mathematica\\\" . wolfram)).`\", \"link_title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g6db\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETry \\u003Ccode\\u003E(add-to-list \\u0026#39;org-src-lang-modes \\u0026#39;(\\u0026quot;mathematica\\u0026quot; . wolfram)).\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/eq9g6db/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"created\": 1559934073.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7h9nd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559846733.0, \"send_replies\": true, \"parent_id\": \"t1_eq7e68j\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Oh my, TIL. Thanks for pointing me into the right direction! I even stumbled upon that variable but ignored it because of the *fold* in it's name. So, thank you again! :-)\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7h9nd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh my, TIL. Thanks for pointing me into the right direction! I even stumbled upon that variable but ignored it because of the \\u003Cem\\u003Efold\\u003C/em\\u003E in it\\u0026#39;s name. So, thank you again! :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7h9nd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559875533.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7h0nk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559846610.0, \"send_replies\": true, \"parent_id\": \"t1_eq6cg2w\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003Ean *all small caps* string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search\\n\\nSpot on, I didn't even notice that, thank you!\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7h0nk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ean \\u003Cem\\u003Eall small caps\\u003C/em\\u003E string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESpot on, I didn\\u0026#39;t even notice that, thank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7h0nk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559875410.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7e68j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559845225.0, \"send_replies\": true, \"parent_id\": \"t3_bxfd1r\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \" helm-case-fold-search is a variable defined in \\u2018helm.el\\u2019.\\n Its value is \\u2018smart\\u2019\\n\\n Documentation:\\n Adds \\u2019smart\\u2019 option to \\u2018case-fold-search\\u2019.\\n Smart option ignores case for searches as long as there are no\\n upper case characters in the pattern.\\n\\n Use nil or t to turn off smart behavior and use\\n \\u2018case-fold-search\\u2019 behavior.\\n\\n Default is smart.\\n\\n NOTE: Case fold search has no effect when searching asynchronous\\n sources, which rely on customized features implemented directly\\n into their execution process. See helm-grep.el for an example.\\n\\n You can customize this variable.\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq7e68j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003Ehelm-case-fold-search is a variable defined in \\u2018helm.el\\u2019.\\nIts value is \\u2018smart\\u2019\\n\\nDocumentation:\\nAdds \\u2019smart\\u2019 option to \\u2018case-fold-search\\u2019.\\nSmart option ignores case for searches as long as there are no\\nupper case characters in the pattern.\\n\\nUse nil or t to turn off smart behavior and use\\n\\u2018case-fold-search\\u2019 behavior.\\n\\nDefault is smart.\\n\\nNOTE: Case fold search has no effect when searching asynchronous\\nsources, which rely on customized features implemented directly\\ninto their execution process. See helm-grep.el for an example.\\n\\nYou can customize this variable.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq7e68j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559874025.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7dx8p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559845112.0, \"send_replies\": true, \"parent_id\": \"t1_eq6t46m\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Well, there is one potential solution I can think of: Write a function which can be used as advice to the appropriate function which would add the proper prefix to image paths when Org displays inline images, and activate the advice with `eval` in a buffer-local variable line in each Org file. (Using dir-locals would be even better, but I don't know if you can `eval` with that.)\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7dx8p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, there is one potential solution I can think of: Write a function which can be used as advice to the appropriate function which would add the proper prefix to image paths when Org displays inline images, and activate the advice with \\u003Ccode\\u003Eeval\\u003C/code\\u003E in a buffer-local variable line in each Org file. (Using dir-locals would be even better, but I don\\u0026#39;t know if you can \\u003Ccode\\u003Eeval\\u003C/code\\u003E with that.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq7dx8p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559873912.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq74izr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559840395.0, \"send_replies\": true, \"parent_id\": \"t1_eq0moy7\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I did something like that.\\n\\nIs yours text or gui?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq74izr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI did something like that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs yours text or gui?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq74izr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559869195.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq74am7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559840281.0, \"send_replies\": true, \"parent_id\": \"t1_epo4x0j\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \" \\u003E I'm curious as to what a \\\"stand-alone\\\" version of org mode would look like.\\n\\nInteresting question. To start off, please tell me what\\n\\n emacs -f org-mode my-big-org-mode-file.txt\\n\\nwould lack, as an implementation.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eq74am7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026gt; I\\u0026#39;m curious as to what a \\u0026quot;stand-alone\\u0026quot; version of org mode would look like.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EInteresting question. To start off, please tell me what\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eemacs -f org-mode my-big-org-mode-file.txt\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewould lack, as an implementation.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/eq74am7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559869081.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6t46m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559834955.0, \"send_replies\": true, \"parent_id\": \"t1_eq4m54v\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Usually, I prefer to define something once instead of copying it multiple times.\\n\\nThen, if I need to change the folder name, I just need to change on variable at the beginning of my org-mode file instead of having to do a search/replace thing.\\n\\nBut this is just personal preference.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6t46m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsually, I prefer to define something once instead of copying it multiple times.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen, if I need to change the folder name, I just need to change on variable at the beginning of my org-mode file instead of having to do a search/replace thing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut this is just personal preference.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq6t46m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559863755.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfd1r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6cg2w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559826572.0, \"send_replies\": true, \"parent_id\": \"t3_bxfd1r\", \"score\": 3, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm not a helm user myself, but a frequent behaviour I meet around in regex searches are that an _all small caps_ string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search. So, if this is the same behaviour there, `\\\"Berlin/Todo\\\"` is case sensitive, whereas `\\\"berlin/todo\\\"` wouldn't be. (That's only a guess though...)\", \"link_title\": \"Case insensitive (org-refile)\", \"author_flair_css_class\": null, \"name\": \"t1_eq6cg2w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not a helm user myself, but a frequent behaviour I meet around in regex searches are that an \\u003Cem\\u003Eall small caps\\u003C/em\\u003E string is treated as case insensitive, but the addition of one cap turns it into a case sensitive search. So, if this is the same behaviour there, \\u003Ccode\\u003E\\u0026quot;Berlin/Todo\\u0026quot;\\u003C/code\\u003E is case sensitive, whereas \\u003Ccode\\u003E\\u0026quot;berlin/todo\\u0026quot;\\u003C/code\\u003E wouldn\\u0026#39;t be. (That\\u0026#39;s only a guess though...)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/eq6cg2w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"created\": 1559855372.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq61yd0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559820069.0, \"send_replies\": true, \"parent_id\": \"t1_eq0mczn\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I can't reproduce this. I had to add (use-package dash) to your init.el file, but after that, ivy-contacts worked fine for me, and showed your two contacts. Maybe if you run M-x toggle-debug-on-error a more informative error message might be shown.\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_eq61yd0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t reproduce this. I had to add (use-package dash) to your init.el file, but after that, ivy-contacts worked fine for me, and showed your two contacts. Maybe if you run M-x toggle-debug-on-error a more informative error message might be shown.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/eq61yd0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559848869.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq4m54v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559779949.0, \"send_replies\": true, \"parent_id\": \"t1_eq499va\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Maybe I could use a snippet for that that automatically write the name of the figure folder (it's based on the note filename) but I don't really like that...\\n\\nWhy?\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq4m54v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EMaybe I could use a snippet for that that automatically write the name of the figure folder (it\\u0026#39;s based on the note filename) but I don\\u0026#39;t really like that...\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhy?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq4m54v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559808749.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq499va\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559772032.0, \"send_replies\": true, \"parent_id\": \"t1_eq3fu1x\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have a folder with all my notes on books or articles.\\nEach note has its own org file.\\nThen I have a figs folder and subfolders for each of my notes. I don't want to have one fog folder for all my notes as I have hundreds of figures.\\n\\nSo in the end, I have to manually put [[figs/verylongfilename/figurename]] which is quite boring. Maybe I could use a snippet for that that automatically write the name of the figure folder (it's based on the note filename) but I don't really like that...\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq499va\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a folder with all my notes on books or articles.\\nEach note has its own org file.\\nThen I have a figs folder and subfolders for each of my notes. I don\\u0026#39;t want to have one fog folder for all my notes as I have hundreds of figures.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo in the end, I have to manually put [[figs/verylongfilename/figurename]] which is quite boring. Maybe I could use a snippet for that that automatically write the name of the figure folder (it\\u0026#39;s based on the note filename) but I don\\u0026#39;t really like that...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq499va/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559800832.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq3fu1x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559755118.0, \"send_replies\": true, \"parent_id\": \"t1_epztbtv\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E The thing is that I have complicated folder names for my figures.\\n\\nThat's a key point that you didn't mention in your question. Without knowing that, it seems like you're trying to avoid typing `figs/`, which would be kind of silly. :)\\n\\nSo why don't you put all the figures in `figs/`?\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_eq3fu1x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe thing is that I have complicated folder names for my figures.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s a key point that you didn\\u0026#39;t mention in your question. Without knowing that, it seems like you\\u0026#39;re trying to avoid typing \\u003Ccode\\u003Efigs/\\u003C/code\\u003E, which would be kind of silly. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo why don\\u0026#39;t you put all the figures in \\u003Ccode\\u003Efigs/\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/eq3fu1x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559783918.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq2i8vy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dr_Schmoctor\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559737707.0, \"send_replies\": true, \"parent_id\": \"t1_eq2g6te\", \"score\": 1, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"What I'd like to see most is notifications being able to notify before the deadline. I make due by setting 'scheduled' some time before the 'deadline' so it notifies me beforehand, but it'd be nice to have an easier setting for it.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq2i8vy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat I\\u0026#39;d like to see most is notifications being able to notify before the deadline. I make due by setting \\u0026#39;scheduled\\u0026#39; some time before the \\u0026#39;deadline\\u0026#39; so it notifies me beforehand, but it\\u0026#39;d be nice to have an easier setting for it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq2i8vy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559766507.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq2g6te\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"enilkcals\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559736393.0, \"send_replies\": true, \"parent_id\": \"t1_eq29p8x\", \"score\": 1, \"author_fullname\": \"t2_91o9h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Nice, I'd somehow missed that will give it a whirl, thank you.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq2g6te\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice, I\\u0026#39;d somehow missed that will give it a whirl, thank you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq2g6te/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559765193.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq29p8x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dr_Schmoctor\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559731937.0, \"send_replies\": true, \"parent_id\": \"t1_eq1kjlt\", \"score\": 3, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003Ethe only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application \\n\\nI have the Auto-sync (experimental) option enabled and it syncs as you go.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq29p8x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ethe only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI have the Auto-sync (experimental) option enabled and it syncs as you go.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq29p8x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559760737.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwcmiw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq28lvx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gabrielelana\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559731176.0, \"send_replies\": true, \"parent_id\": \"t3_bwcmiw\", \"score\": 1, \"author_fullname\": \"t2_flffy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I was really disappointed by this unilateral and arbitrary change without a way to opt-out :-(\\n\\nAnyway I solved the issue with [this piece of code](https://github.com/gabrielelana/dotfiles/blob/master/emacs.d/local-packages/org-functions.el) in particular the function `cc/org-mode-buffer-force-uppercase-keywords`\", \"link_title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"author_flair_css_class\": null, \"name\": \"t1_eq28lvx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was really disappointed by this unilateral and arbitrary change without a way to opt-out :-(\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway I solved the issue with \\u003Ca href=\\\"https://github.com/gabrielelana/dotfiles/blob/master/emacs.d/local-packages/org-functions.el\\\"\\u003Ethis piece of code\\u003C/a\\u003E in particular the function \\u003Ccode\\u003Ecc/org-mode-buffer-force-uppercase-keywords\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/eq28lvx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"report_reasons\": null, \"link_author\": \"BOOF_GOBLIN_69\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"created\": 1559759976.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq1kjlt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"enilkcals\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559711909.0, \"send_replies\": true, \"parent_id\": \"t1_eq0o23a\", \"score\": 3, \"author_fullname\": \"t2_91o9h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Came to suggest exactly the same thing which is what I too do. Its a nice smooth experience, phone uses Syncthing to synchronise the files between internal SD and computer when connected to WiFi at home, the only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq1kjlt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECame to suggest exactly the same thing which is what I too do. Its a nice smooth experience, phone uses Syncthing to synchronise the files between internal SD and computer when connected to WiFi at home, the only thing lacking is scheduling within Orgzly of syncing the files from the internal SD to the application.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq1kjlt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559740709.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0qw8h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559691873.0, \"send_replies\": true, \"parent_id\": \"t1_eq0o23a\", \"score\": 2, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have heard of Orgzly and I would like to give it a try. It looks like it is a win in the ease of use category! Using full-blown emacs on a little phone screen (taken up primarily by the keyboard) is not easy! However, what this lacks in ease of use, it makes up in completeness; I have access to everything I can do with org mode on my laptop -- on my phone. It has all my capture templates, custom bindings, todo keywords. Everything!\\n\\nI'm not sure I would be able to do that with Orgzly, but I have not tried yet. What do you think?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0qw8h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have heard of Orgzly and I would like to give it a try. It looks like it is a win in the ease of use category! Using full-blown emacs on a little phone screen (taken up primarily by the keyboard) is not easy! However, what this lacks in ease of use, it makes up in completeness; I have access to everything I can do with org mode on my laptop -- on my phone. It has all my capture templates, custom bindings, todo keywords. Everything!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure I would be able to do that with Orgzly, but I have not tried yet. What do you think?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0qw8h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559720673.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0o23a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"Dr_Schmoctor\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559689650.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 8, \"author_fullname\": \"t2_122pyc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"[Orgzly](https://play.google.com/store/apps/details?id=com.orgzly\\u0026hl=en) is quite nice. \\n\\nI have it synced with my computer's .org files with Syncthing.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0o23a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://play.google.com/store/apps/details?id=com.orgzly\\u0026amp;hl=en\\\"\\u003EOrgzly\\u003C/a\\u003E is quite nice. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have it synced with my computer\\u0026#39;s .org files with Syncthing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0o23a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559718450.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0n3x7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559688909.0, \"send_replies\": true, \"parent_id\": \"t1_eq0l8hv\", \"score\": 2, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Will do!\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0n3x7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWill do!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0n3x7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559717709.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0moy7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thenackjicholson\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559688592.0, \"send_replies\": true, \"parent_id\": \"t1_eq0dh59\", \"score\": 10, \"author_fullname\": \"t2_j2fhy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I used Termux [https://termux.com/](https://termux.com/) to run linux on the pixel 2. I ran `apt install emacs` and `apt install git`. I installed \\\"Hacker Keyboard\\\" to make it easier to write commands within termux, and to use emacs.\\n\\nI cloned my dotfiles `git clone https://github.com/nackjicholson/dotfiles`.\\n\\nI used [https://syncthing.net/](https://syncthing.net/) to sync my org files at `~/Sync/org` between both my laptop and pixel 2.\\n\\nI had to enable \\\"storage\\\" in Termux to let it access my androids files.\\n\\nThen I had to do some symlinking.\\n\\n`ln -s \\\"$HOME/storage/shared/Sync\\\" \\\"$HOME/Sync\\\"`\\n\\n`ln -s \\\"$HOME/dotfiles/mac/emacs.d\\\" \\\"$HOME/.emacs.d\\\"`\\n\\n\\u0026#x200B;\\n\\nDoes this all work? Yes.\\n\\nDoes this all work really well? Not really.\\n\\nDid I do a lot of this on the bus to work today? Yup.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0moy7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used Termux \\u003Ca href=\\\"https://termux.com/\\\"\\u003Ehttps://termux.com/\\u003C/a\\u003E to run linux on the pixel 2. I ran \\u003Ccode\\u003Eapt install emacs\\u003C/code\\u003E and \\u003Ccode\\u003Eapt install git\\u003C/code\\u003E. I installed \\u0026quot;Hacker Keyboard\\u0026quot; to make it easier to write commands within termux, and to use emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cloned my dotfiles \\u003Ccode\\u003Egit clone https://github.com/nackjicholson/dotfiles\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used \\u003Ca href=\\\"https://syncthing.net/\\\"\\u003Ehttps://syncthing.net/\\u003C/a\\u003E to sync my org files at \\u003Ccode\\u003E~/Sync/org\\u003C/code\\u003E between both my laptop and pixel 2.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI had to enable \\u0026quot;storage\\u0026quot; in Termux to let it access my androids files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I had to do some symlinking.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eln -s \\u0026quot;$HOME/storage/shared/Sync\\u0026quot; \\u0026quot;$HOME/Sync\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eln -s \\u0026quot;$HOME/dotfiles/mac/emacs.d\\u0026quot; \\u0026quot;$HOME/.emacs.d\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes this all work? Yes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes this all work really well? Not really.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDid I do a lot of this on the bus to work today? Yup.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0moy7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559717392.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 10}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0mczn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"_martini97\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559688343.0, \"send_replies\": true, \"parent_id\": \"t1_epyu7qo\", \"score\": 1, \"author_fullname\": \"t2_9eav0az\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hey u/jkitchin I'm having some issues with the `contacts-update-cache` when trying to use `ivy-contacts`, it is throwing this error:\\n\\n Updating contacts cache for \\u003Cmy contacts file\\u003E\\n let*: Wrong type argument: consp, nil\\n\\nI created [this branch](https://github.com/martini97/.emacs.d/tree/scimax-contacts) that reproduces the issue with a minimal config.\\n\\nAny pointers?\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_eq0mczn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey \\u003Ca href=\\\"/u/jkitchin\\\"\\u003Eu/jkitchin\\u003C/a\\u003E I\\u0026#39;m having some issues with the \\u003Ccode\\u003Econtacts-update-cache\\u003C/code\\u003E when trying to use \\u003Ccode\\u003Eivy-contacts\\u003C/code\\u003E, it is throwing this error:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EUpdating contacts cache for \\u0026lt;my contacts file\\u0026gt;\\nlet*: Wrong type argument: consp, nil\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI created \\u003Ca href=\\\"https://github.com/martini97/.emacs.d/tree/scimax-contacts\\\"\\u003Ethis branch\\u003C/a\\u003E that reproduces the issue with a minimal config.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny pointers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/eq0mczn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559717143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0l8hv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hmlwilliams\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559687491.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 3, \"author_fullname\": \"t2_s1eux6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Couldn't help but notice your GTD Todos included a journal, make sure to give [org-journal](https://github.com/bastibe/org-journal) a look!\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0l8hv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECouldn\\u0026#39;t help but notice your GTD Todos included a journal, make sure to give \\u003Ca href=\\\"https://github.com/bastibe/org-journal\\\"\\u003Eorg-journal\\u003C/a\\u003E a look!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0l8hv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559716291.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0ivh2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ford_beeblebrox\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559685763.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 2, \"author_fullname\": \"t2_9hd4y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Termux rules ! \\n\\nEmacs , org , python , ssh \\u0026 mosh - fast to set things up, all only an apt-get away.\\n\\nCompiling apk's for the platform on the platform.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0ivh2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETermux rules ! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmacs , org , python , ssh \\u0026amp; mosh - fast to set things up, all only an apt-get away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECompiling apk\\u0026#39;s for the platform on the platform.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0ivh2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559714563.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0hbsy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Salpal673\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559684698.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 6, \"author_fullname\": \"t2_2drmw0wd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Using **Termux**, a Linux distribution for Android.\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0hbsy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsing \\u003Cstrong\\u003ETermux\\u003C/strong\\u003E, a Linux distribution for Android.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0hbsy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559713498.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0gs1z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RoccoTech00\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559684420.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 2, \"author_fullname\": \"t2_88l5xwz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Android? How?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0gs1z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAndroid? How?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0gs1z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559713220.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwtuob\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq0dh59\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"loskutak-the-ptak\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1559682620.0, \"send_replies\": true, \"parent_id\": \"t3_bwtuob\", \"score\": 5, \"author_fullname\": \"t2_ke7apcf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"how?\", \"link_title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"author_flair_css_class\": null, \"name\": \"t1_eq0dh59\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehow?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/eq0dh59/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"report_reasons\": null, \"link_author\": \"thenackjicholson\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/fldtyuwije231.png\", \"created\": 1559711420.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epztbtv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tdehaeze\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559672254.0, \"send_replies\": true, \"parent_id\": \"t1_epzrglx\", \"score\": 1, \"author_fullname\": \"t2_6nzpkw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I know that, the point is that I don't want to have to type the folder each time.\\nThe thing is that I have complicated folder names for my figures.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_epztbtv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know that, the point is that I don\\u0026#39;t want to have to type the folder each time.\\nThe thing is that I have complicated folder names for my figures.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/epztbtv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559701054.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmraz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epzrglx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559671221.0, \"send_replies\": true, \"parent_id\": \"t3_bwmraz\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Use `[[figs/figurename.png]]`.\", \"link_title\": \"Default directory for inline images?\", \"author_flair_css_class\": null, \"name\": \"t1_epzrglx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUse \\u003Ccode\\u003E[[figs/figurename.png]]\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/epzrglx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"report_reasons\": null, \"link_author\": \"tdehaeze\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"created\": 1559700021.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epywsc9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"_martini97\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559653023.0, \"send_replies\": true, \"parent_id\": \"t1_epyu7qo\", \"score\": 1, \"author_fullname\": \"t2_9eav0az\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, I'm still getting to know elisp so I have a hard time doing things from scratch, I will test it tonight and let you know if it worked\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epywsc9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I\\u0026#39;m still getting to know elisp so I have a hard time doing things from scratch, I will test it tonight and let you know if it worked\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epywsc9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559681823.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw916a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyuk3k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559651343.0, \"send_replies\": true, \"parent_id\": \"t3_bw916a\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I don't think you can do this with C+u method. I think you have to manually edit the link after it is inserted.\\n\\nYou probably can do this though where you want the link:\\n\\nC-c C-l then, type cite: and select the kind of cite you want. You can then select which key to use. And finally you type the page numbers into the description.\", \"link_title\": \"How do you include page number in page number in org-ref with helm?\", \"author_flair_css_class\": null, \"name\": \"t1_epyuk3k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t think you can do this with C+u method. I think you have to manually edit the link after it is inserted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou probably can do this though where you want the link:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EC-c C-l then, type cite: and select the kind of cite you want. You can then select which key to use. And finally you type the page numbers into the description.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/epyuk3k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"report_reasons\": null, \"link_author\": \"kandidate\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"created\": 1559680143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyu7qo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559651075.0, \"send_replies\": true, \"parent_id\": \"t3_bwk33h\", \"score\": 2, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I do something like this in https://github.com/jkitchin/scimax/blob/master/contacts.el#L320 with ivy. There is also a helm version (https://github.com/jkitchin/scimax/blob/master/contacts.el#L518) that I don't use anymore (there is a note that it is slow).\\n\\nThis is roughly built on the format of org-contacts and should be compatible with it.\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epyu7qo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do something like this in \\u003Ca href=\\\"https://github.com/jkitchin/scimax/blob/master/contacts.el#L320\\\"\\u003Ehttps://github.com/jkitchin/scimax/blob/master/contacts.el#L320\\u003C/a\\u003E with ivy. There is also a helm version (\\u003Ca href=\\\"https://github.com/jkitchin/scimax/blob/master/contacts.el#L518\\\"\\u003Ehttps://github.com/jkitchin/scimax/blob/master/contacts.el#L518\\u003C/a\\u003E) that I don\\u0026#39;t use anymore (there is a note that it is slow).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is roughly built on the format of org-contacts and should be compatible with it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epyu7qo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559679875.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwk33h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epylnd4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559642162.0, \"send_replies\": true, \"parent_id\": \"t3_bwk33h\", \"score\": 2, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"While I can't elispit myself, I'm sure you can use helm or ivy to open a list of contacts and -upon selection- insert directly a link to it...\", \"link_title\": \"Linking contacts to tasks\", \"author_flair_css_class\": null, \"name\": \"t1_epylnd4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile I can\\u0026#39;t elispit myself, I\\u0026#39;m sure you can use helm or ivy to open a list of contacts and -upon selection- insert directly a link to it...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/epylnd4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"report_reasons\": null, \"link_author\": \"_martini97\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"created\": 1559670962.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwcmiw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epx8v9s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"marcowahl\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559594797.0, \"send_replies\": true, \"parent_id\": \"t3_bwcmiw\", \"score\": 1, \"author_fullname\": \"t2_it55tk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"As far as I can see there is no configuration switch for that. \\n\\nYou could ask for the switch on the Org mailing list.\", \"link_title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"author_flair_css_class\": null, \"name\": \"t1_epx8v9s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs far as I can see there is no configuration switch for that. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou could ask for the switch on the Org mailing list.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/epx8v9s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"report_reasons\": null, \"link_author\": \"BOOF_GOBLIN_69\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"created\": 1559623597.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epwq376\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559581984.0, \"send_replies\": true, \"parent_id\": \"t1_epvbmh0\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"`awhen` is from the `anaphora` package. Just search the package list for \\\"anaphoric\\\".\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epwq376\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Eawhen\\u003C/code\\u003E is from the \\u003Ccode\\u003Eanaphora\\u003C/code\\u003E package. Just search the package list for \\u0026quot;anaphoric\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epwq376/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559610784.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9eiq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw3g8q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cipharius\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559564392.0, \"send_replies\": true, \"parent_id\": \"t1_epw366x\", \"score\": 2, \"author_fullname\": \"t2_2hldsj4s\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I recommend checking out the Org mode manual with `info` command - it's not like I remember these things by heart myself, haha. \\n\\nUseful for both a quick reference and just reading to learn new ways of using Org mode.\", \"link_title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"author_flair_css_class\": null, \"name\": \"t1_epw3g8q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recommend checking out the Org mode manual with \\u003Ccode\\u003Einfo\\u003C/code\\u003E command - it\\u0026#39;s not like I remember these things by heart myself, haha. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUseful for both a quick reference and just reading to learn new ways of using Org mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/epw3g8q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"created\": 1559593192.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9eiq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw366x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gausby\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559564101.0, \"send_replies\": true, \"parent_id\": \"t1_epw2zfg\", \"score\": 1, \"author_fullname\": \"t2_5n9uk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you! Seems to work perfectly. Gotta learn that format\\u2014it is vary handy, but kinda obscure :)\", \"link_title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"author_flair_css_class\": null, \"name\": \"t1_epw366x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you! Seems to work perfectly. Gotta learn that format\\u2014it is vary handy, but kinda obscure :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/epw366x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"created\": 1559592901.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9eiq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw2zfg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cipharius\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559563901.0, \"send_replies\": true, \"parent_id\": \"t3_bw9eiq\", \"score\": 3, \"author_fullname\": \"t2_2hldsj4s\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You could use more specific formula reference. From a quick experiment, this seems to be an alright solution: `#+TBLFM: @\\u003C\\u003C$2..@\\u003E\\u003E$2=@+1$1-$1;U`\", \"link_title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"author_flair_css_class\": null, \"name\": \"t1_epw2zfg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou could use more specific formula reference. From a quick experiment, this seems to be an alright solution: \\u003Ccode\\u003E#+TBLFM: @\\u0026lt;\\u0026lt;$2..@\\u0026gt;\\u0026gt;$2=@+1$1-$1;U\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/epw2zfg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"created\": 1559592701.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559562994.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvz12r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epw1z9b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"anotherRedditIdiot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559562801.0, \"send_replies\": true, \"parent_id\": \"t3_bvz12r\", \"score\": 2, \"author_fullname\": \"t2_138ymc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"How do you use this metadata once you have it? Org has hierarchical tags: https://orgmode.org/manual/Tag-hierarchy.html\\nand effort estimates (time based, not energy based): https://orgmode.org/manual/Effort-estimates.html\\n\\nAt first glance, I would implement the resources as a hierarchicy of tags. I'd also ditch the prefix notation and just spell out the full properties, e.g.:\\n\\n :Energy: (1 4)\", \"link_title\": \"Converting org-tags into properties (recursively)\", \"author_flair_css_class\": null, \"name\": \"t1_epw1z9b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow do you use this metadata once you have it? Org has hierarchical tags: \\u003Ca href=\\\"https://orgmode.org/manual/Tag-hierarchy.html\\\"\\u003Ehttps://orgmode.org/manual/Tag-hierarchy.html\\u003C/a\\u003E\\nand effort estimates (time based, not energy based): \\u003Ca href=\\\"https://orgmode.org/manual/Effort-estimates.html\\\"\\u003Ehttps://orgmode.org/manual/Effort-estimates.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt first glance, I would implement the resources as a hierarchicy of tags. I\\u0026#39;d also ditch the prefix notation and just spell out the full properties, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E:Energy: (1 4)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/epw1z9b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"created\": 1559591601.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epvbmh0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fisxoj\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559529328.0, \"send_replies\": true, \"parent_id\": \"t1_epv27o2\", \"score\": 2, \"author_fullname\": \"t2_7r7zc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm just passing through, but if awhen is the same one I'm used to, it's 'anaphoric' when and will bind the value of its condition to the variable 'it' automatically. Which, I hope, answers both your questions.\\n\\nThat said, I don't know what emacs package provides it.\\n\\nIt's equivalent to\\n\\n(let ((it (property \\\"composer\\\"))\\n (when it\\n (string-prefix \\\"C\\\" it)))\\n\\nIn this case.\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epvbmh0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m just passing through, but if awhen is the same one I\\u0026#39;m used to, it\\u0026#39;s \\u0026#39;anaphoric\\u0026#39; when and will bind the value of its condition to the variable \\u0026#39;it\\u0026#39; automatically. Which, I hope, answers both your questions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat said, I don\\u0026#39;t know what emacs package provides it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s equivalent to\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(let ((it (property \\u0026quot;composer\\u0026quot;))\\n (when it\\n (string-prefix \\u0026quot;C\\u0026quot; it)))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn this case.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epvbmh0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559558128.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epv27o2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eeg_bert\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559522318.0, \"send_replies\": true, \"parent_id\": \"t1_epuyu0b\", \"score\": 1, \"author_fullname\": \"t2_uhm4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Do you `when` instead of `awhen`? Also: I get `(void-variable it)` errors when evaluating this.\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epv27o2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDo you \\u003Ccode\\u003Ewhen\\u003C/code\\u003E instead of \\u003Ccode\\u003Eawhen\\u003C/code\\u003E? Also: I get \\u003Ccode\\u003E(void-variable it)\\u003C/code\\u003E errors when evaluating this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epv27o2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559551118.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559520154.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epuyu0b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559519729.0, \"send_replies\": true, \"parent_id\": \"t1_eputaup\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You are very mistaken. ;) For example, the readme shows this example:\\n\\n (org-ql \\\"~/org/music.org\\\"\\n (and (property \\\"genre\\\" \\\"classical\\\")\\n (property \\\"composer\\\" \\\"Chopin\\\")\\n (not (property \\\"key\\\"))))\\n\\nYou can also use arbitrary lisp code, like:\\n\\n (org-ql \\\"/tmp/music.org\\\"\\n (awhen (property \\\"composer\\\")\\n (string-prefix-p \\\"C\\\" it)))\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epuyu0b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou are very mistaken. ;) For example, the readme shows this example:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(org-ql \\u0026quot;~/org/music.org\\u0026quot;\\n (and (property \\u0026quot;genre\\u0026quot; \\u0026quot;classical\\u0026quot;)\\n (property \\u0026quot;composer\\u0026quot; \\u0026quot;Chopin\\u0026quot;)\\n (not (property \\u0026quot;key\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EYou can also use arbitrary lisp code, like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(org-ql \\u0026quot;/tmp/music.org\\u0026quot;\\n (awhen (property \\u0026quot;composer\\u0026quot;)\\n (string-prefix-p \\u0026quot;C\\u0026quot; it)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epuyu0b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559548529.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eputaup\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eeg_bert\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559515754.0, \"send_replies\": true, \"parent_id\": \"t1_epurujf\", \"score\": 1, \"author_fullname\": \"t2_uhm4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I checked out `org-ql`, and it doesn't look like it offers this AFAIK (instead it's just wrapper around regexp searching, unless I'm mistaken).\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_eputaup\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI checked out \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E, and it doesn\\u0026#39;t look like it offers this AFAIK (instead it\\u0026#39;s just wrapper around regexp searching, unless I\\u0026#39;m mistaken).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/eputaup/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559544554.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw317n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epurujf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559514832.0, \"send_replies\": true, \"parent_id\": \"t3_bw317n\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"See `org-map-entries` and `org-ql`.\", \"link_title\": \"Searching for org-tags programmatically (without regexp)?\", \"author_flair_css_class\": null, \"name\": \"t1_epurujf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESee \\u003Ccode\\u003Eorg-map-entries\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/epurujf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"created\": 1559543632.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559484864.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_aeaq9d\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ept50p2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"frumious\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1559481805.0, \"send_replies\": true, \"parent_id\": \"t1_emwyyjr\", \"score\": 1, \"author_fullname\": \"t2_32juj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"The recent post about Linkz.org got me to revisit this problem and figured I might as well info dump here. \\n\\nI happen to notice that trying to capture on github.com shows an error in Firefox's Browser Console which doesn't show on pages that can be successfully captured.\\n\\n Content Security Policy: The page\\u2019s settings blocked the loading of a resource at inline (\\u201cscript-src\\u201d).\\n\\nSearches show that disabling `security.csp.enable` in `about:config` will \\\"fix\\\" the problem but is very insecure.\\n\\nKnowing what to search on, I see [Sacha](https://sachachua.com/blog/2015/11/capturing-links-quickly-with-emacsclient-org-protocol-and-chrome-shortcut-manager-on-microsoft-windows-8/) pointed out this problem with GitHub many years ago.\\n\\nOther results hinted at the FF add-ons I was using. Disabling them led to no change in results.\\n\\nI have the `org-protocol` send to a script so I can log the action. When a capture fails on `github.com` there is nothing the log. So, it's not even `org-protocol` that is the problem. This makes me suspect \\\"bookmarklets\\\" and lo, [I find this](https://geordgez.github.io/jots/2017/12/31/xss-csp-bookmarklet).\\n\\nIndeed, making a bookmarklet with just:\\n\\n javascript:alert('hello')\\n\\nfails on `github.com` and succeeds elsewhere.\\n\\nAt this point, I'm way over my head in web tech I don't understand but at least there is a new direction to pursue.\\n\\nEdit: more searching and it seems there's a world of hurt over \\\"CSP\\\".\\n\\nThis [bug report](https://bugzilla.mozilla.org/show_bug.cgi?id=866522) has much of the story including mention of [Bookmarklets context menu](https://addons.mozilla.org/en-US/firefox/addon/bookmarklets-context-menu/) add-on. I've tested with `security.csp.enabled` set to `true`. The \\\"hello\\\" test is okay but instead of running the capture bookmarklets properly it loads some \\\"page\\\"\\n\\n blob:https://github.com/014373a1-e732-4c7a-b9d4-3d17c9d00393\\n\\nMy conclusion: I'll disable CSP. This \\\"feature\\\" seems more like a stupid patch for web sites that can't generate HTML free of XSS and gives more control to the server at the expense of the client/user.\", \"link_title\": \"Anyone using Org mode as snippet manager\", \"author_flair_css_class\": null, \"name\": \"t1_ept50p2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe recent post about Linkz.org got me to revisit this problem and figured I might as well info dump here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI happen to notice that trying to capture on github.com shows an error in Firefox\\u0026#39;s Browser Console which doesn\\u0026#39;t show on pages that can be successfully captured.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EContent Security Policy: The page\\u2019s settings blocked the loading of a resource at inline (\\u201cscript-src\\u201d).\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESearches show that disabling \\u003Ccode\\u003Esecurity.csp.enable\\u003C/code\\u003E in \\u003Ccode\\u003Eabout:config\\u003C/code\\u003E will \\u0026quot;fix\\u0026quot; the problem but is very insecure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKnowing what to search on, I see \\u003Ca href=\\\"https://sachachua.com/blog/2015/11/capturing-links-quickly-with-emacsclient-org-protocol-and-chrome-shortcut-manager-on-microsoft-windows-8/\\\"\\u003ESacha\\u003C/a\\u003E pointed out this problem with GitHub many years ago.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOther results hinted at the FF add-ons I was using. Disabling them led to no change in results.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have the \\u003Ccode\\u003Eorg-protocol\\u003C/code\\u003E send to a script so I can log the action. When a capture fails on \\u003Ccode\\u003Egithub.com\\u003C/code\\u003E there is nothing the log. So, it\\u0026#39;s not even \\u003Ccode\\u003Eorg-protocol\\u003C/code\\u003E that is the problem. This makes me suspect \\u0026quot;bookmarklets\\u0026quot; and lo, \\u003Ca href=\\\"https://geordgez.github.io/jots/2017/12/31/xss-csp-bookmarklet\\\"\\u003EI find this\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIndeed, making a bookmarklet with just:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ejavascript:alert(\\u0026#39;hello\\u0026#39;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Efails on \\u003Ccode\\u003Egithub.com\\u003C/code\\u003E and succeeds elsewhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt this point, I\\u0026#39;m way over my head in web tech I don\\u0026#39;t understand but at least there is a new direction to pursue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: more searching and it seems there\\u0026#39;s a world of hurt over \\u0026quot;CSP\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis \\u003Ca href=\\\"https://bugzilla.mozilla.org/show_bug.cgi?id=866522\\\"\\u003Ebug report\\u003C/a\\u003E has much of the story including mention of \\u003Ca href=\\\"https://addons.mozilla.org/en-US/firefox/addon/bookmarklets-context-menu/\\\"\\u003EBookmarklets context menu\\u003C/a\\u003E add-on. I\\u0026#39;ve tested with \\u003Ccode\\u003Esecurity.csp.enabled\\u003C/code\\u003E set to \\u003Ccode\\u003Etrue\\u003C/code\\u003E. The \\u0026quot;hello\\u0026quot; test is okay but instead of running the capture bookmarklets properly it loads some \\u0026quot;page\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eblob:https://github.com/014373a1-e732-4c7a-b9d4-3d17c9d00393\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EMy conclusion: I\\u0026#39;ll disable CSP. This \\u0026quot;feature\\u0026quot; seems more like a stupid patch for web sites that can\\u0026#39;t generate HTML free of XSS and gives more control to the server at the expense of the client/user.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/aeaq9d/anyone_using_org_mode_as_snippet_manager/ept50p2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/aeaq9d/anyone_using_org_mode_as_snippet_manager/\", \"report_reasons\": null, \"link_author\": \"to1ne\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/aeaq9d/anyone_using_org_mode_as_snippet_manager/\", \"created\": 1559510605.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvqyqw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eprv8ip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559431510.0, \"send_replies\": true, \"parent_id\": \"t3_bvqyqw\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"There exists no code to do that. You will have to write it.\\n\\nIt will probably be easier if you use syntax like `E1 E3`, which can be parsed by splitting the value string on a space, or `(E1 E3)`, which can be parsed as a sexp.\", \"link_title\": \"Matching org tasks against an interval of values\", \"author_flair_css_class\": null, \"name\": \"t1_eprv8ip\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere exists no code to do that. You will have to write it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt will probably be easier if you use syntax like \\u003Ccode\\u003EE1 E3\\u003C/code\\u003E, which can be parsed by splitting the value string on a space, or \\u003Ccode\\u003E(E1 E3)\\u003C/code\\u003E, which can be parsed as a sexp.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/eprv8ip/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"created\": 1559460310.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559418889.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epr5ebh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559418621.0, \"send_replies\": true, \"parent_id\": \"t1_epneizy\", \"score\": 3, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'll take the Hersey approach ;)\\n\\nOrg-mode is customizeable because of Emacs and Lisp. You can take any part of it and play with it, and then you can go behind the scenes and build another part completely, if you want to. You can add your own packages into Emacs that integrate into Org, or don't. I can't imagine Org-mode without Emacs. \\n\\nFor me personally, Org-mode is a safe place. It's away from all the other bells and whistles of all the \\\"awesome GUI apps\\\" that my co-worker use. My mangers use [Evernote](https://evernote.com/). Our office has Office 365 that comes with its own tasks and outlook. Windows has numerous to-do apps, and if that not enough, we have our own spreadsheet-project placed in [Smartsheets](https://www.smartsheet.com/) (also now from Microsoft). We have Emails, we do our conference calls in MS Teams, and we work with customers using Zoom. Our ticketing system is yet on another app. \\n\\nIt's a freaking mess, that's what it is. A nightmare. A cacophony of information overload.\\n\\nI used Evernote for about three full years. I've used Google Keep, Todoist, Trello, Wunderlist, and these just the few I can remember. They all failed because they were limited, closed, costly, sell your data to whoever pays them (or threatens them) or who buys them, if they don't get eaten by a bigger company or disappear because they couldn't get bought by one. While this is not the conversation you originally started, is it is very much of a reason for me (and others) to stick to Org-mode and Emacs, which have been pretty much the same all these years. I'm not kidding when I say it's a safe place from all that nonsense.\\n\\nNow take all that I said, hopefully with patience and a grain of humor, and look at it from this way. At the end of the day, I want *my* trusty system that I own. A place that I know how it works, is modified to how I want to work with my data. Sure, my team doesn't speak \\\"org-mode,\\\" and to be honest, they think I'm nuts. My one manager looked at my Linux VM with disapproval, but he knows I'm effective and organized (guess why?) so he lets it slide, for now. I go through the pains of translating my Org universe to Smarthseets, Outlook email, support tickets, because it's worth it. I finally have *one place*, not a plethora of online accounts, where all my information is stored, personal and professional side by side, neat and organized, and I take whatever bits I need and fit it into their crazy buckets. \\n\\nMy tools are a VM with SUSE OS at work (stable, comes with Emacs out of the box, supported well by vmware), Syncthing (to sync everything without worrying about buying more space or [Dropbox sharing my personal journal files for research](https://hbr.org/2018/07/a-study-of-thousands-of-dropbox-projects-reveals-how-successful-teams-collaborate#comment-section)), and Orgzly (my workflow would be impossible without it) on the go. There are challenges, sure. Many times I just want a good picture and I can't have it, or I just need to send a quick checklist to my boss and it comes out with weird square brackets etc \\u0026#x2013; but I make it work. Frankly, I wouldn't be able to do what I do today without Org-mode. The impact on my life has been huge\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epr5ebh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ll take the Hersey approach ;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg-mode is customizeable because of Emacs and Lisp. You can take any part of it and play with it, and then you can go behind the scenes and build another part completely, if you want to. You can add your own packages into Emacs that integrate into Org, or don\\u0026#39;t. I can\\u0026#39;t imagine Org-mode without Emacs. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor me personally, Org-mode is a safe place. It\\u0026#39;s away from all the other bells and whistles of all the \\u0026quot;awesome GUI apps\\u0026quot; that my co-worker use. My mangers use \\u003Ca href=\\\"https://evernote.com/\\\"\\u003EEvernote\\u003C/a\\u003E. Our office has Office 365 that comes with its own tasks and outlook. Windows has numerous to-do apps, and if that not enough, we have our own spreadsheet-project placed in \\u003Ca href=\\\"https://www.smartsheet.com/\\\"\\u003ESmartsheets\\u003C/a\\u003E (also now from Microsoft). We have Emails, we do our conference calls in MS Teams, and we work with customers using Zoom. Our ticketing system is yet on another app. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a freaking mess, that\\u0026#39;s what it is. A nightmare. A cacophony of information overload.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used Evernote for about three full years. I\\u0026#39;ve used Google Keep, Todoist, Trello, Wunderlist, and these just the few I can remember. They all failed because they were limited, closed, costly, sell your data to whoever pays them (or threatens them) or who buys them, if they don\\u0026#39;t get eaten by a bigger company or disappear because they couldn\\u0026#39;t get bought by one. While this is not the conversation you originally started, is it is very much of a reason for me (and others) to stick to Org-mode and Emacs, which have been pretty much the same all these years. I\\u0026#39;m not kidding when I say it\\u0026#39;s a safe place from all that nonsense.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow take all that I said, hopefully with patience and a grain of humor, and look at it from this way. At the end of the day, I want \\u003Cem\\u003Emy\\u003C/em\\u003E trusty system that I own. A place that I know how it works, is modified to how I want to work with my data. Sure, my team doesn\\u0026#39;t speak \\u0026quot;org-mode,\\u0026quot; and to be honest, they think I\\u0026#39;m nuts. My one manager looked at my Linux VM with disapproval, but he knows I\\u0026#39;m effective and organized (guess why?) so he lets it slide, for now. I go through the pains of translating my Org universe to Smarthseets, Outlook email, support tickets, because it\\u0026#39;s worth it. I finally have \\u003Cem\\u003Eone place\\u003C/em\\u003E, not a plethora of online accounts, where all my information is stored, personal and professional side by side, neat and organized, and I take whatever bits I need and fit it into their crazy buckets. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy tools are a VM with SUSE OS at work (stable, comes with Emacs out of the box, supported well by vmware), Syncthing (to sync everything without worrying about buying more space or \\u003Ca href=\\\"https://hbr.org/2018/07/a-study-of-thousands-of-dropbox-projects-reveals-how-successful-teams-collaborate#comment-section\\\"\\u003EDropbox sharing my personal journal files for research\\u003C/a\\u003E), and Orgzly (my workflow would be impossible without it) on the go. There are challenges, sure. Many times I just want a good picture and I can\\u0026#39;t have it, or I just need to send a quick checklist to my boss and it comes out with weird square brackets etc \\u0026#x2013; but I make it work. Frankly, I wouldn\\u0026#39;t be able to do what I do today without Org-mode. The impact on my life has been huge\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/epr5ebh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559447421.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bd4ka9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epqpszq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"the_ocean\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559410198.0, \"send_replies\": true, \"parent_id\": \"t1_epqludy\", \"score\": 1, \"author_fullname\": \"t2_3ezlt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"That\\u2019s a good idea that hadn\\u2019t occurred to me - thanks!\", \"link_title\": \"Hierarchical Agendas?\", \"author_flair_css_class\": null, \"name\": \"t1_epqpszq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u2019s a good idea that hadn\\u2019t occurred to me - thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/epqpszq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"report_reasons\": null, \"link_author\": \"SmoothInternet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"created\": 1559438998.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epqot95\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559409722.0, \"send_replies\": true, \"parent_id\": \"t3_btzy6m\", \"score\": 1, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"what's the point?\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_epqot95\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewhat\\u0026#39;s the point?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/epqot95/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559438522.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bd4ka9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epqludy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559408133.0, \"send_replies\": true, \"parent_id\": \"t1_ekvtlyj\", \"score\": 1, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I find the 'CATEGORY' property more helpful for this, personally, as it displays to the left hand side of the agenda like it's own special agenda tag.\", \"link_title\": \"Hierarchical Agendas?\", \"author_flair_css_class\": null, \"name\": \"t1_epqludy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find the \\u0026#39;CATEGORY\\u0026#39; property more helpful for this, personally, as it displays to the left hand side of the agenda like it\\u0026#39;s own special agenda tag.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/epqludy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"report_reasons\": null, \"link_author\": \"SmoothInternet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"created\": 1559436933.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559407988.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bd4ka9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epql3ag\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1559407719.0, \"send_replies\": true, \"parent_id\": \"t3_bd4ka9\", \"score\": 2, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"If I'm understanding your question correctly, it sounds like you just want TODO keywords and filters. And maybe org-edna. For example, for the 'sub-TODOs that need attention', perhaps a \\\"NEXT\\\" keyword would be fitting, so you could pull all \\\"NEXT\\\" headers into a view (I do this). And to omit 'blocked' TODOs, you can play with the variable org-agenda-todo-list-sublevels in conjunction with the above (I also filter redundant TODOs like this from my agenda views, including global search).\", \"link_title\": \"Hierarchical Agendas?\", \"author_flair_css_class\": null, \"name\": \"t1_epql3ag\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I\\u0026#39;m understanding your question correctly, it sounds like you just want TODO keywords and filters. And maybe org-edna. For example, for the \\u0026#39;sub-TODOs that need attention\\u0026#39;, perhaps a \\u0026quot;NEXT\\u0026quot; keyword would be fitting, so you could pull all \\u0026quot;NEXT\\u0026quot; headers into a view (I do this). And to omit \\u0026#39;blocked\\u0026#39; TODOs, you can play with the variable org-agenda-todo-list-sublevels in conjunction with the above (I also filter redundant TODOs like this from my agenda views, including global search).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/epql3ag/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"report_reasons\": null, \"link_author\": \"SmoothInternet\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"created\": 1559436519.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eposeia\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"doulos05\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559352091.0, \"send_replies\": true, \"parent_id\": \"t1_epo4x0j\", \"score\": 1, \"author_fullname\": \"t2_jqpn4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Well, one major barrier is \\\"Why would I look for my todo list manager in the Text Editors list?\\\"\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eposeia\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, one major barrier is \\u0026quot;Why would I look for my todo list manager in the Text Editors list?\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/eposeia/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559380891.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epo4x0j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mexicorn\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559338461.0, \"send_replies\": true, \"parent_id\": \"t1_epneizy\", \"score\": 2, \"author_fullname\": \"t2_3xl2j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm curious as to what a \\\"stand-alone\\\" version of org mode would look like. One of the main strengths of org-mode is its nearly limitless customization, which is made possible by the underlying Lisp. I feel like anything that hopes to decouple from emacs but retain the same functionality \\u0026 customization would inevitably turn into an emacs clone project.\\n\\nPerhaps it's worth thinking of the opposite question: what overhead and adoption barriers are present in getting people into emacs that would not be present in some stand-alone org mode app?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epo4x0j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m curious as to what a \\u0026quot;stand-alone\\u0026quot; version of org mode would look like. One of the main strengths of org-mode is its nearly limitless customization, which is made possible by the underlying Lisp. I feel like anything that hopes to decouple from emacs but retain the same functionality \\u0026amp; customization would inevitably turn into an emacs clone project.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPerhaps it\\u0026#39;s worth thinking of the opposite question: what overhead and adoption barriers are present in getting people into emacs that would not be present in some stand-alone org mode app?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/epo4x0j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559367261.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv747t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epneizy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ManiacMcCree\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559326165.0, \"send_replies\": true, \"parent_id\": \"t3_bv747t\", \"score\": 5, \"author_fullname\": \"t2_130p93\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I feel like org-mode is hands down the best outlining and writing tool in existence. \\n\\nIn terms of task management and general note taking though, I always end up walking away from it due to the inability to work with teams, clunkiness of adding different kinds of media, and the weak mobile workflow. \\n\\nIs there a \\\"future\\\" of org-mode? Or do you think that the app is as mature as it's ever going to be? \\n\\nHonestly it is sad to me to see how well markdown has taken off when org is such a more powerful format. \\n\\nI'd personally like to see org uncoupled from emacs, as I think it's got more value moving into the future than emacs itself. Imagine a new generation of note-taking app (a-la joplin, notability etc.) but based on org-mode rather than markdown. \\n\\n(and yes, I know about orgzly etc. - it's okay, but doesn't address the big issues)\\n\\nHeresy? Good idea? LMK\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epneizy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI feel like org-mode is hands down the best outlining and writing tool in existence. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn terms of task management and general note taking though, I always end up walking away from it due to the inability to work with teams, clunkiness of adding different kinds of media, and the weak mobile workflow. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a \\u0026quot;future\\u0026quot; of org-mode? Or do you think that the app is as mature as it\\u0026#39;s ever going to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHonestly it is sad to me to see how well markdown has taken off when org is such a more powerful format. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d personally like to see org uncoupled from emacs, as I think it\\u0026#39;s got more value moving into the future than emacs itself. Imagine a new generation of note-taking app (a-la joplin, notability etc.) but based on org-mode rather than markdown. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(and yes, I know about orgzly etc. - it\\u0026#39;s okay, but doesn\\u0026#39;t address the big issues)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHeresy? Good idea? LMK\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/epneizy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"created\": 1559354965.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epnachi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"OverthrowDissent\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559324196.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": -1, \"author_fullname\": \"t2_37uew703\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Add the word \\\"TODO\\\" in a list item like:\\n\\n * TODO Item 1\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_epnachi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAdd the word \\u0026quot;TODO\\u0026quot; in a list item like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Item 1\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/epnachi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559352996.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplr2oq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559301731.0, \"send_replies\": true, \"parent_id\": \"t1_epjzbl6\", \"score\": 1, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hello Tsdwm52. \\n\\nWhile it's not exactly what I was searching for (the next comment points to it), it has some very interesting options that I will explore further. \\n\\nThanks a lot for your help... :)\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_eplr2oq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello Tsdwm52. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile it\\u0026#39;s not exactly what I was searching for (the next comment points to it), it has some very interesting options that I will explore further. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks a lot for your help... :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/eplr2oq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559330531.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplq73q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"edumerco\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559301232.0, \"send_replies\": true, \"parent_id\": \"t1_epk2sub\", \"score\": 1, \"author_fullname\": \"t2_dyrlf6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hello Gusbrs. You found it, that was exactly wat I was searching for. \\n\\nThanks a lot, I sure others will benefit from your answer here too... :)\\n\\n\\u0026#x200B;\\n\\nBest regards.\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_eplq73q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello Gusbrs. You found it, that was exactly wat I was searching for. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks a lot, I sure others will benefit from your answer here too... :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBest regards.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/eplq73q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559330032.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epk2sub\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559266336.0, \"send_replies\": true, \"parent_id\": \"t3_buzxzp\", \"score\": 2, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"From the `memoir` docs:\\n\\n\\u003E The commands \\\\tableofcontents, \\\\listoffigures and \\\\listoftables typeset, repectively, the Table of Contents (ToC), List of Figures (LoF) and List of Tables (LoT). In memoir , unlike the standard classes, the unstarred versions add their respective titles to the ToC. The starred versions act like the standard classes\\u2019 unstarred versions as they don\\u2019t add their titles to the ToC.\\n\\nSo, if you add the command directly, you can simply use the starred version. If this is added by the Org exporter, you will have to find a way to convince it to do the same thing by tweaking your customizations.\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_epk2sub\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFrom the \\u003Ccode\\u003Ememoir\\u003C/code\\u003E docs:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe commands \\\\tableofcontents, \\\\listoffigures and \\\\listoftables typeset, repectively, the Table of Contents (ToC), List of Figures (LoF) and List of Tables (LoT). In memoir , unlike the standard classes, the unstarred versions add their respective titles to the ToC. The starred versions act like the standard classes\\u2019 unstarred versions as they don\\u2019t add their titles to the ToC.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESo, if you add the command directly, you can simply use the starred version. If this is added by the Org exporter, you will have to find a way to convince it to do the same thing by tweaking your customizations.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/epk2sub/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559295136.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buzxzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epjzbl6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdwm52\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559263892.0, \"send_replies\": true, \"parent_id\": \"t3_buzxzp\", \"score\": 2, \"author_fullname\": \"t2_mj8i2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is a LaTeX question. The answers here will help: [https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc](https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc). The answers include a bit on Memoir-specific changes.\\n\\nYou'll probably want to make the changes in the Org mode file using #+LATEX\\\\_HEADER:\", \"link_title\": \"Avoid ToC entry in ToC export to pdf\", \"author_flair_css_class\": null, \"name\": \"t1_epjzbl6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is a LaTeX question. The answers here will help: \\u003Ca href=\\\"https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc\\\"\\u003Ehttps://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc\\u003C/a\\u003E. The answers include a bit on Memoir-specific changes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;ll probably want to make the changes in the Org mode file using #+LATEX_HEADER:\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/epjzbl6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"report_reasons\": null, \"link_author\": \"edumerco\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"created\": 1559292692.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buopeh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eph5z4d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaiwen1\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559222771.0, \"send_replies\": true, \"parent_id\": \"t1_epf1oai\", \"score\": 2, \"author_fullname\": \"t2_6qzsr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This function does it:\\n\\n```\\n(defun org-hide-src-block-delimiters()\\n (interactive)\\n (save-excursion (goto-char (point-max))\\n (while (re-search-backward \\\"#\\\\\\\\+BEGIN_SRC\\\\\\\\|#\\\\\\\\+END_SRC\\\" nil t)\\n (let ((ov (make-overlay (line-beginning-position)\\n (1+ (line-end-position)))))\\n (overlay-put ov 'invisible t)))))\\n```\\n\\nThis would be better as a toggle but I haven't quite figured out how to do that yet.\", \"link_title\": \"How can I hide source block header and footer?\", \"author_flair_css_class\": null, \"name\": \"t1_eph5z4d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis function does it:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(defun org-hide-src-block-delimiters()\\n (interactive)\\n (save-excursion (goto-char (point-max))\\n (while (re-search-backward \\u0026quot;#\\\\\\\\+BEGIN_SRC\\\\\\\\|#\\\\\\\\+END_SRC\\u0026quot; nil t)\\n (let ((ov (make-overlay (line-beginning-position)\\n (1+ (line-end-position)))))\\n (overlay-put ov \\u0026#39;invisible t)))))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis would be better as a toggle but I haven\\u0026#39;t quite figured out how to do that yet.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/eph5z4d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"created\": 1559251571.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buopeh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epflcbr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"venomspinner\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559197849.0, \"send_replies\": true, \"parent_id\": \"t1_epf1oai\", \"score\": 1, \"author_fullname\": \"t2_ejpaa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"you can make its foreground same color as the background of your emacs theme.\", \"link_title\": \"How can I hide source block header and footer?\", \"author_flair_css_class\": null, \"name\": \"t1_epflcbr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyou can make its foreground same color as the background of your emacs theme.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/epflcbr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"created\": 1559226649.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buopeh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epf1oai\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaiwen1\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559189916.0, \"send_replies\": true, \"parent_id\": \"t3_buopeh\", \"score\": 1, \"author_fullname\": \"t2_6qzsr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Found this: [https://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters](https://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters).\\n\\nNot quite there, but close.\", \"link_title\": \"How can I hide source block header and footer?\", \"author_flair_css_class\": null, \"name\": \"t1_epf1oai\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFound this: \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters\\\"\\u003Ehttps://emacs.stackexchange.com/questions/27467/way-to-hide-src-block-delimiters\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot quite there, but close.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/epf1oai/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"created\": 1559218716.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdnqd3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559170003.0, \"send_replies\": true, \"parent_id\": \"t1_epdmeme\", \"score\": 1, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"No, the macros will work only if you export from Org. I export my master Org file to README.org for GitHub. \\n\\nIf you don't want to use `ox-org`, you'll have to expand those macros manually.\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epdnqd3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, the macros will work only if you export from Org. I export my master Org file to README.org for GitHub. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you don\\u0026#39;t want to use \\u003Ccode\\u003Eox-org\\u003C/code\\u003E, you\\u0026#39;ll have to expand those macros manually.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epdnqd3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559198803.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdmeme\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hardrived_\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559169203.0, \"send_replies\": true, \"parent_id\": \"t1_epdajfx\", \"score\": 1, \"author_fullname\": \"t2_ycu34\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm not exporting to another file format so would a Macro work? Github doesn't technically render Org file like it does Markdown. I tried this method and it didn't replace the text with the Macro.\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epdmeme\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not exporting to another file format so would a Macro work? Github doesn\\u0026#39;t technically render Org file like it does Markdown. I tried this method and it didn\\u0026#39;t replace the text with the Macro.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epdmeme/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559198003.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsgj6t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdlg9r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"impendingLawsuit\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559168638.0, \"send_replies\": true, \"parent_id\": \"t3_bsgj6t\", \"score\": 1, \"author_fullname\": \"t2_3th1enuk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"finally synced w/ syncthing and termux on android. this lead to me wanting to consolidate my files a bit, so I'm running with [wiki.org](https://wiki.org), [archives.org](https://archives.org), [tasks.org](https://tasks.org), refile.org and \\\\~/emacs.d/configuration.org being my agenda files. previously I was just using agenda/ as my org-agenda directory, but I like this set up a lot more. I'm still not sure what merits a new file, and i think about it too much. having monolithic files is nice now that I useC-c / (sparse tree view), C-c C-j (jump to header) and C-x n s (narrow to subtree)\\n\\n\\u0026#x200B;\\n\\nalso, finally moved over to a literate configuration and it's been amazingly helpful and was painless to set up :-) this short article was a good guide: [https://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration](https://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - May 24, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_epdlg9r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efinally synced w/ syncthing and termux on android. this lead to me wanting to consolidate my files a bit, so I\\u0026#39;m running with \\u003Ca href=\\\"https://wiki.org\\\"\\u003Ewiki.org\\u003C/a\\u003E, \\u003Ca href=\\\"https://archives.org\\\"\\u003Earchives.org\\u003C/a\\u003E, \\u003Ca href=\\\"https://tasks.org\\\"\\u003Etasks.org\\u003C/a\\u003E, refile.org and ~/emacs.d/configuration.org being my agenda files. previously I was just using agenda/ as my org-agenda directory, but I like this set up a lot more. I\\u0026#39;m still not sure what merits a new file, and i think about it too much. having monolithic files is nice now that I useC-c / (sparse tree view), C-c C-j (jump to header) and C-x n s (narrow to subtree)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealso, finally moved over to a literate configuration and it\\u0026#39;s been amazingly helpful and was painless to set up :-) this short article was a good guide: \\u003Ca href=\\\"https://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration\\\"\\u003Ehttps://harryrschwartz.com/2016/02/15/switching-to-a-literate-emacs-configuration\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/epdlg9r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"created\": 1559197438.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epdajfx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559163831.0, \"send_replies\": true, \"parent_id\": \"t3_buhsue\", \"score\": 3, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I use these:\\n\\n #+macro: travis [[https://travis-ci.org/kaushalmodi/ox-hugo][https://travis-ci.org/kaushalmodi/ox-hugo.svg?branch=master]]\\n #+macro: melpa [[https://melpa.org/#/ox-hugo][file:https://melpa.org/packages/ox-hugo-badge.svg]]\\n #+macro: GPLv3 [[https://www.gnu.org/licenses/gpl-3.0][https://img.shields.io/badge/License-GPL%20v3-blue.svg]]\\n\\n {{{travis}}} {{{melpa}}} {{{GPLv3}}}\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epdajfx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use these:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+macro: travis [[https://travis-ci.org/kaushalmodi/ox-hugo][https://travis-ci.org/kaushalmodi/ox-hugo.svg?branch=master]]\\n#+macro: melpa [[https://melpa.org/#/ox-hugo][file:https://melpa.org/packages/ox-hugo-badge.svg]]\\n#+macro: GPLv3 [[https://www.gnu.org/licenses/gpl-3.0][https://img.shields.io/badge/License-GPL%20v3-blue.svg]]\\n\\n{{{travis}}} {{{melpa}}} {{{GPLv3}}}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epdajfx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559192631.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epcozp9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hardrived_\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559156766.0, \"send_replies\": true, \"parent_id\": \"t1_epco8wc\", \"score\": 1, \"author_fullname\": \"t2_ycu34\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Funny enough this how I redid the markdown formatted badge into org format. But I can't believe I forgot that MELPA shows badge codes in HTML, Markdown, and Org lol\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epcozp9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFunny enough this how I redid the markdown formatted badge into org format. But I can\\u0026#39;t believe I forgot that MELPA shows badge codes in HTML, Markdown, and Org lol\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epcozp9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559185566.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buhsue\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epco8wc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"akirakom\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559156511.0, \"send_replies\": true, \"parent_id\": \"t3_buhsue\", \"score\": 2, \"author_fullname\": \"t2_ouz7ysa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"- An example of Circle CI badge in Org: `[[https://circleci.com/gh/akirak/emacs.d/tree/master][https://circleci.com/gh/akirak/emacs.d/tree/master.svg?style=svg]]`\\n- MELPA: `[[https://melpa.org/#/org-reverse-datetree][https://melpa.org/packages/org-reverse-datetree-badge.svg]]`\\n- Travis CI: `[[https://travis-ci.org/akirak/org-reverse-datetree][https://travis-ci.org/akirak/org-reverse-datetree.svg?branch=master]]`\", \"link_title\": \"Handling Github Badges in Org file\", \"author_flair_css_class\": null, \"name\": \"t1_epco8wc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cul\\u003E\\n\\u003Cli\\u003EAn example of Circle CI badge in Org: \\u003Ccode\\u003E[[https://circleci.com/gh/akirak/emacs.d/tree/master][https://circleci.com/gh/akirak/emacs.d/tree/master.svg?style=svg]]\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMELPA: \\u003Ccode\\u003E[[https://melpa.org/#/org-reverse-datetree][https://melpa.org/packages/org-reverse-datetree-badge.svg]]\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETravis CI: \\u003Ccode\\u003E[[https://travis-ci.org/akirak/org-reverse-datetree][https://travis-ci.org/akirak/org-reverse-datetree.svg?branch=master]]\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/epco8wc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"report_reasons\": null, \"link_author\": \"hardrived_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"created\": 1559185311.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbd7gf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"doulos05\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559140998.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": 3, \"author_fullname\": \"t2_jqpn4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"There's an important design decision at work here.\\n\\nHeaders are where you organize your tasks, lists are where you itemize the steps to complete your tasks.\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_epbd7gf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s an important design decision at work here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHeaders are where you organize your tasks, lists are where you itemize the steps to complete your tasks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/epbd7gf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559169798.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eparx61\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jazzpecq\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559132539.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": 1, \"author_fullname\": \"t2_hv9nd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"TODO keywords and tags belong to headings only. For list items you have to use checkboxes.\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_eparx61\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETODO keywords and tags belong to headings only. For list items you have to use checkboxes.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/eparx61/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559161339.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_budm5j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eparjs7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ccharles\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559132378.0, \"send_replies\": true, \"parent_id\": \"t3_budm5j\", \"score\": 4, \"author_fullname\": \"t2_bhd0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Your best bet is probably to use [checkboxes][1]:\\n\\n - [ ] One\\n - [ ] Two\\n\\nYou can `C-c C-c` on an item to toggle it, and this will be reflected in headings if you have them, e.g.:\\n\\n * Some heading [1/2]\\n - [ ] One\\n - [X] Two\\n\\n[1]: https://orgmode.org/manual/Checkboxes.html#Checkboxes\", \"link_title\": \"Add todo to list item?\", \"author_flair_css_class\": null, \"name\": \"t1_eparjs7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYour best bet is probably to use \\u003Ca href=\\\"https://orgmode.org/manual/Checkboxes.html#Checkboxes\\\"\\u003Echeckboxes\\u003C/a\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E- [ ] One\\n- [ ] Two\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EYou can \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E on an item to toggle it, and this will be reflected in headings if you have them, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Some heading [1/2]\\n - [ ] One\\n - [X] Two\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/eparjs7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"report_reasons\": null, \"link_author\": \"kaiwen1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"created\": 1559161178.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ajngqj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep9vhci\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bascht\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559116967.0, \"send_replies\": true, \"parent_id\": \"t3_ajngqj\", \"score\": 1, \"author_fullname\": \"t2_5cbr5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Update \\u003C2019-05-29\\u003E: Found a crude workaround I probably can live with: I just bound a function to `(search-forward \\\"[ ]\\\"))`.\", \"link_title\": \"Jump to the next unchecked checkbox in a list\", \"author_flair_css_class\": null, \"name\": \"t1_ep9vhci\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUpdate \\u0026lt;2019-05-29\\u0026gt;: Found a crude workaround I probably can live with: I just bound a function to \\u003Ccode\\u003E(search-forward \\u0026quot;[ ]\\u0026quot;))\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ajngqj/jump_to_the_next_unchecked_checkbox_in_a_list/ep9vhci/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ajngqj/jump_to_the_next_unchecked_checkbox_in_a_list/\", \"report_reasons\": null, \"link_author\": \"bascht\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ajngqj/jump_to_the_next_unchecked_checkbox_in_a_list/\", \"created\": 1559145767.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu1tby\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep701qj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vale_fallacia\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559075655.0, \"send_replies\": true, \"parent_id\": \"t1_ep6tih1\", \"score\": 2, \"author_fullname\": \"t2_2al88q3x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Perfect, thank you for answering. That was exactly it!\", \"link_title\": \"Possible confusion over ORDERED property\", \"author_flair_css_class\": null, \"name\": \"t1_ep701qj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPerfect, thank you for answering. That was exactly it!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/ep701qj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"created\": 1559104455.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu1tby\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep6tih1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"telap\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559073371.0, \"send_replies\": true, \"parent_id\": \"t3_bu1tby\", \"score\": 4, \"author_fullname\": \"t2_yr0wz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Check the value of the variable `org-enforce-todo-dependencies`.\\n\\n\\u0026#x200B;\\n\\nFrom documentation of the variable:\\n\\n\\u003ENon-nil means undone TODO entries will block switching the parent to DONE. \\n\\u003E \\n\\u003EAlso, if a parent has an :ORDERED: property, switching an entry to DONE will be blocked if any prior sibling is not yet done. \\n\\u003E \\n\\u003EFinally, if the parent is blocked because of ordered siblings of its own, the child will also be blocked.\", \"link_title\": \"Possible confusion over ORDERED property\", \"author_flair_css_class\": null, \"name\": \"t1_ep6tih1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECheck the value of the variable \\u003Ccode\\u003Eorg-enforce-todo-dependencies\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom documentation of the variable:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENon-nil means undone TODO entries will block switching the parent to DONE. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, if a parent has an :ORDERED: property, switching an entry to DONE will be blocked if any prior sibling is not yet done. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally, if the parent is blocked because of ordered siblings of its own, the child will also be blocked.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/ep6tih1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"created\": 1559102171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep5vaqx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"juustgowithit\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559061322.0, \"send_replies\": true, \"parent_id\": \"t1_ep53pu4\", \"score\": 2, \"author_fullname\": \"t2_dxeab\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I love reading this so much. I barely even use emacs but even that is thanks to the discussions on this sub\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep5vaqx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love reading this so much. I barely even use emacs but even that is thanks to the discussions on this sub\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep5vaqx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559090122.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep5p4a5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559059117.0, \"send_replies\": true, \"parent_id\": \"t1_ep56l9p\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Incidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on)\\n\\nFollow the instructions in the readme carefully and it will work.\\n\\n\\u003E Anyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\n\\nThey do different things. They are complementary.\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep5p4a5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIncidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on)\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFollow the instructions in the readme carefully and it will work.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAnyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey do different things. They are complementary.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep5p4a5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559087917.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_br2g1m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep5m7f3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"little_big_h\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559057968.0, \"send_replies\": true, \"parent_id\": \"t3_br2g1m\", \"score\": 1, \"author_fullname\": \"t2_11kij2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Your question is way to vague to be properly answered. Trying to anticipate your actual problem, here is a suggestion: You have to add \\n'mathematica to 'org-babel-Load-languages .\", \"link_title\": \"How do I use ob-mathematica.el?\", \"author_flair_css_class\": null, \"name\": \"t1_ep5m7f3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYour question is way to vague to be properly answered. Trying to anticipate your actual problem, here is a suggestion: You have to add \\n\\u0026#39;mathematica to \\u0026#39;org-babel-Load-languages .\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/ep5m7f3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"created\": 1559086768.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep56l9p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jackjackk0\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559051301.0, \"send_replies\": true, \"parent_id\": \"t1_ep53pu4\", \"score\": 2, \"author_fullname\": \"t2_q52rf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, I see, it's probably not as straightforward as originally thought. Maybe, an easier way could b: 1) when capturing an item, add automatically deadline based on parent one, and 2) when changing a deadline, change the deadline of subitems... but then not sure it is worth the time. Incidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on). probably I have some conflicting configuration. Anyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\n\\nedit: fix typo\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep56l9p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I see, it\\u0026#39;s probably not as straightforward as originally thought. Maybe, an easier way could b: 1) when capturing an item, add automatically deadline based on parent one, and 2) when changing a deadline, change the deadline of subitems... but then not sure it is worth the time. Incidentally, I see you are also the author of the org-super-agenda. I saw incredibly interesting screenshots, but never managed to make it work (always get the standard agenda even when org-agenda-super-mode is on). probably I have some conflicting configuration. Anyway, was wondering whether you would recommend to focus on org-ql or org-super-agenda.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eedit: fix typo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep56l9p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559080101.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btzy6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep53pu4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559050086.0, \"send_replies\": true, \"parent_id\": \"t3_btzy6m\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I think the question is, inherit it in what context? I guess you mean in Org Agenda views--in which case I think the answer is, good luck, because a) the Org Agenda code is not generally well suited to modifying parts of its functionality, and b) the agenda code specifically searches for \\\"planning lines\\\" to build agenda views, which would preclude what you are wanting.\\n\\nMaybe you're wanting \\\"project\\\" functionality, which Org provides by other means. Refer to the documentation and Google searches for more info on that.\\n\\nYou might also find the `org-ql` package helpful in building an agenda-like view with certain items.\", \"link_title\": \"Inherit DEADLINE from parent\", \"author_flair_css_class\": null, \"name\": \"t1_ep53pu4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think the question is, inherit it in what context? I guess you mean in Org Agenda views--in which case I think the answer is, good luck, because a) the Org Agenda code is not generally well suited to modifying parts of its functionality, and b) the agenda code specifically searches for \\u0026quot;planning lines\\u0026quot; to build agenda views, which would preclude what you are wanting.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaybe you\\u0026#39;re wanting \\u0026quot;project\\u0026quot; functionality, which Org provides by other means. Refer to the documentation and Google searches for more info on that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou might also find the \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E package helpful in building an agenda-like view with certain items.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/ep53pu4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"created\": 1559078886.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep4llp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559042069.0, \"send_replies\": true, \"parent_id\": \"t3_btdd9b\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You may also find this helpful: https://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_ep4llp8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou may also find this helpful: \\u003Ca href=\\\"https://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\\\"\\u003Ehttps://github.com/alphapapa/unpackaged.el#agenda-for-subtree-or-region\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/ep4llp8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1559070869.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btovhk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep38ai6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559019320.0, \"send_replies\": true, \"parent_id\": \"t1_ep1m1sg\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yeah, rather than setting a prefix, it would be easier to use `org-super-agenda` to put them in groups accordingly.\", \"link_title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"author_flair_css_class\": null, \"name\": \"t1_ep38ai6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, rather than setting a prefix, it would be easier to use \\u003Ccode\\u003Eorg-super-agenda\\u003C/code\\u003E to put them in groups accordingly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/ep38ai6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"report_reasons\": null, \"link_author\": \"werzor\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"created\": 1559048120.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boymdt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep34vwh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559017112.0, \"send_replies\": true, \"parent_id\": \"t1_eoyztpe\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Okay, but that doesn't help us find and fix any problem that may exist in Org 9.\", \"link_title\": \"Org-agenda and tags position\", \"author_flair_css_class\": null, \"name\": \"t1_ep34vwh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOkay, but that doesn\\u0026#39;t help us find and fix any problem that may exist in Org 9.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/ep34vwh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"report_reasons\": null, \"link_author\": \"cyberl3o\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"created\": 1559045912.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btovhk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep1m1sg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SmoothInternet\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558990945.0, \"send_replies\": true, \"parent_id\": \"t3_btovhk\", \"score\": 2, \"author_fullname\": \"t2_baw354f\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You might want to look for the org-super-agenda package. I think it simplifies what you want to do. It\\u2019s available on MELPA, but the complete docs are on Github.\", \"link_title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"author_flair_css_class\": null, \"name\": \"t1_ep1m1sg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou might want to look for the org-super-agenda package. I think it simplifies what you want to do. It\\u2019s available on MELPA, but the complete docs are on Github.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/ep1m1sg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"report_reasons\": null, \"link_author\": \"werzor\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"created\": 1559019745.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep0mauh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BeetleB\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1558977342.0, \"send_replies\": true, \"parent_id\": \"t1_eowkgw9\", \"score\": 1, \"author_fullname\": \"t2_1tduz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Actually, it's \\u003C\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_ep0mauh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EActually, it\\u0026#39;s \\u0026lt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/ep0mauh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1559006142.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boymdt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoyztpe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cyberl3o\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1558949639.0, \"send_replies\": true, \"parent_id\": \"t1_eoa9yk2\", \"score\": 1, \"author_fullname\": \"t2_3rz1w0lq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hi! Sorry for the delay. I downgrade to Org 8.2.10 and all work fine ;)\", \"link_title\": \"Org-agenda and tags position\", \"author_flair_css_class\": null, \"name\": \"t1_eoyztpe\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi! Sorry for the delay. I downgrade to Org 8.2.10 and all work fine ;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/eoyztpe/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"report_reasons\": null, \"link_author\": \"cyberl3o\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"created\": 1558978439.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eowlzq0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ralphbluecoat\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1558911652.0, \"send_replies\": true, \"parent_id\": \"t1_eowkgw9\", \"score\": 3, \"author_fullname\": \"t2_4hzm8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"That works. Thank you.\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_eowlzq0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat works. Thank you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/eowlzq0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1558940452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_btdd9b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eowkgw9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zreeon\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1558911049.0, \"send_replies\": true, \"parent_id\": \"t3_btdd9b\", \"score\": 3, \"author_fullname\": \"t2_h5re9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is built into the agenda dispatcher. I think the default binding is \\u003E\", \"link_title\": \"Using org-agenda on individual files?\", \"author_flair_css_class\": null, \"name\": \"t1_eowkgw9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is built into the agenda dispatcher. I think the default binding is \\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/eowkgw9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"report_reasons\": null, \"link_author\": \"ralphbluecoat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"created\": 1558939849.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bt9f5z\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eovu3rf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vale_fallacia\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558900706.0, \"send_replies\": true, \"parent_id\": \"t1_eovt3d0\", \"score\": 2, \"author_fullname\": \"t2_2al88q3x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Holy crap! **That's** the app I was thinking about when I began looking at org-mode! I couldn't remember its name, and I couldn't describe it well enough for Google to find it.\\n\\nYou've seriously cleared up a years long issue I had with not being able to find that application. Thank you so much!\", \"link_title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"author_flair_css_class\": null, \"name\": \"t1_eovu3rf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHoly crap! \\u003Cstrong\\u003EThat\\u0026#39;s\\u003C/strong\\u003E the app I was thinking about when I began looking at org-mode! I couldn\\u0026#39;t remember its name, and I couldn\\u0026#39;t describe it well enough for Google to find it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;ve seriously cleared up a years long issue I had with not being able to find that application. Thank you so much!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/eovu3rf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"created\": 1558929506.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bt9f5z\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eovt3d0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jwiegley\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558900276.0, \"send_replies\": true, \"parent_id\": \"t3_bt9f5z\", \"score\": 3, \"author_fullname\": \"t2_3sm69\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"In case anyone is interested, Org habits was implemented to imitate the behavior of [http://sciral.com/consistency/](http://sciral.com/consistency/)\", \"link_title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"author_flair_css_class\": null, \"name\": \"t1_eovt3d0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn case anyone is interested, Org habits was implemented to imitate the behavior of \\u003Ca href=\\\"http://sciral.com/consistency/\\\"\\u003Ehttp://sciral.com/consistency/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/eovt3d0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/\", \"report_reasons\": null, \"link_author\": \"vale_fallacia\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"created\": 1558929076.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsnq2u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eotsyx6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WalterGR\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558847848.0, \"send_replies\": true, \"parent_id\": \"t1_eop4wet\", \"score\": 1, \"author_fullname\": \"t2_3c1ug\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is only for macOS, right?\", \"link_title\": \"[Question] Paste with source format\", \"author_flair_css_class\": null, \"name\": \"t1_eotsyx6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is only for macOS, right?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bsnq2u/question_paste_with_source_format/eotsyx6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"report_reasons\": null, \"link_author\": \"GracefulToucan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"created\": 1558876648.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpjh7e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eorf0ei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sshaw_\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558805809.0, \"send_replies\": true, \"parent_id\": \"t1_eorel43\", \"score\": 1, \"author_fullname\": \"t2_h8sck\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hurmmm, I will have a 2nd look. Thanks for the info. \\n\\nWhat I ended up doing was using [org-clock-csv](https://github.com/atheriel/org-clock-csv) with custom export function and header. Works well since Toggl's spreadsheet import can detect rows it already imported but really, who wants to use the mouse :)\", \"link_title\": \"Anyone Use Org mode With Toggl\", \"author_flair_css_class\": null, \"name\": \"t1_eorf0ei\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHurmmm, I will have a 2nd look. Thanks for the info. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat I ended up doing was using \\u003Ca href=\\\"https://github.com/atheriel/org-clock-csv\\\"\\u003Eorg-clock-csv\\u003C/a\\u003E with custom export function and header. Works well since Toggl\\u0026#39;s spreadsheet import can detect rows it already imported but really, who wants to use the mouse :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/eorf0ei/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"report_reasons\": null, \"link_author\": \"sshaw_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"created\": 1558834609.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpjh7e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eorel43\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ssd198778\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558805532.0, \"send_replies\": true, \"parent_id\": \"t3_bpjh7e\", \"score\": 1, \"author_fullname\": \"t2_1yleajma\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks to this post, I tried Fuco1's org-toggle and it seems to work fine for me and it's able to sync current current clock-ins when doing org-clock-in. \\n\\norgversion: 9.1.6\\n\\nemacs : 25.2.2\", \"link_title\": \"Anyone Use Org mode With Toggl\", \"author_flair_css_class\": null, \"name\": \"t1_eorel43\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks to this post, I tried Fuco1\\u0026#39;s org-toggle and it seems to work fine for me and it\\u0026#39;s able to sync current current clock-ins when doing org-clock-in. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorgversion: 9.1.6\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eemacs : 25.2.2\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/eorel43/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"report_reasons\": null, \"link_author\": \"sshaw_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"created\": 1558834332.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqu8sp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoq5g5m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"OverthrowDissent\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1558785420.0, \"send_replies\": true, \"parent_id\": \"t1_eod0sqj\", \"score\": 1, \"author_fullname\": \"t2_37uew703\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you all for those that tried to help! This is the solution. You use the :tstart and :tend tags and place dates within. The start date is the day you want to look at, the end date is the day after. Then you add the step tag and step by day.\\n\\nExample:\\n\\u003E :tstart \\\"\\u003C2019-05-24 Fri\\u003E\\\" :tend \\\"\\u003C2019-05-25 Sat\\u003E\\\" :step day\\n\\nThis works. Nice!\", \"link_title\": \"View clock table entries by date?\", \"author_flair_css_class\": null, \"name\": \"t1_eoq5g5m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you all for those that tried to help! This is the solution. You use the :tstart and :tend tags and place dates within. The start date is the day you want to look at, the end date is the day after. Then you add the step tag and step by day.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E:tstart \\u0026quot;\\u0026lt;2019-05-24 Fri\\u0026gt;\\u0026quot; :tend \\u0026quot;\\u0026lt;2019-05-25 Sat\\u0026gt;\\u0026quot; :step day\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis works. Nice!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/eoq5g5m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"report_reasons\": null, \"link_author\": \"OverthrowDissent\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"created\": 1558814220.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsnq2u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eop4wet\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"peter-salazar\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558754900.0, \"send_replies\": true, \"parent_id\": \"t3_bsnq2u\", \"score\": 3, \"author_fullname\": \"t2_apwv8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"For pasting from the web to org-mode, I use this, which uses pandoc: \\n\\n(defun kdm/html2org-clipboard ()\\n \\\"Convert clipboard contents from HTML to Org and then paste (yank).\\\"\\n (interactive)\\n (setq cmd \\\"osascript -e 'the clipboard as \\\\\\\"HTML\\\\\\\"' | perl -ne 'print chr foreach unpack(\\\\\\\"C*\\\\\\\",pack(\\\\\\\"H*\\\\\\\",substr($_,11,-3)))' | pandoc -f html -t json | pandoc -f json -t org\\\")\\n (kill-new (shell-command-to-string cmd))\\n (yank))\", \"link_title\": \"[Question] Paste with source format\", \"author_flair_css_class\": null, \"name\": \"t1_eop4wet\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor pasting from the web to org-mode, I use this, which uses pandoc: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(defun kdm/html2org-clipboard ()\\n \\u0026quot;Convert clipboard contents from HTML to Org and then paste (yank).\\u0026quot;\\n (interactive)\\n (setq cmd \\u0026quot;osascript -e \\u0026#39;the clipboard as \\\\\\u0026quot;HTML\\\\\\u0026quot;\\u0026#39; | perl -ne \\u0026#39;print chr foreach unpack(\\\\\\u0026quot;C\\u003Cem\\u003E\\\\\\u0026quot;,pack(\\\\\\u0026quot;H\\u003C/em\\u003E\\\\\\u0026quot;,substr($_,11,-3)))\\u0026#39; | pandoc -f html -t json | pandoc -f json -t org\\u0026quot;)\\n (kill-new (shell-command-to-string cmd))\\n (yank))\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bsnq2u/question_paste_with_source_format/eop4wet/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"report_reasons\": null, \"link_author\": \"GracefulToucan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"created\": 1558783700.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bry1c2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eonqshk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Okesa\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1558719246.0, \"send_replies\": true, \"parent_id\": \"t1_eonkd7o\", \"score\": 1, \"author_fullname\": \"t2_4utg0yv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I think the hardest part for me is deciding what is \\u2018important\\u2019. I try to set the bar high so that my agenda isn\\u2019t full of \\u2018important \\u2018 items. Anything else (not important, not urgent) I try to simply delete\\u2014or, if it seems interesting \\u2018someday\\u2019, I move to a file called \\u2018someday.org\\u2019, which I periodically review.\", \"link_title\": \"Using the Eisenhower Matrix in Emacs Org-Mode\", \"author_flair_css_class\": null, \"name\": \"t1_eonqshk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think the hardest part for me is deciding what is \\u2018important\\u2019. I try to set the bar high so that my agenda isn\\u2019t full of \\u2018important \\u2018 items. Anything else (not important, not urgent) I try to simply delete\\u2014or, if it seems interesting \\u2018someday\\u2019, I move to a file called \\u2018someday.org\\u2019, which I periodically review.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/eonqshk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/\", \"report_reasons\": null, \"link_author\": \"Okesa\", \"author_flair_text\": null, \"link_url\": \"https://www.tompurl.com/2015-12-29-emacs-eisenhower-matrix.html\", \"created\": 1558748046.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bry1c2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eonkd7o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"trae\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1558714665.0, \"send_replies\": true, \"parent_id\": \"t3_bry1c2\", \"score\": 2, \"author_fullname\": \"t2_1oqx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I didn't know about quick-tagging, thanks!\\n\\n\\u0026#x200B;\\n\\nI do something similar, but for urgent/important only. Everything else is by definitiion, not urgent, not important. I have a custom agenda for this:\\n\\n\\u0026#x200B;\\n\\n[https://imgur.com/a/Z9z8arO](https://imgur.com/a/Z9z8arO)\", \"link_title\": \"Using the Eisenhower Matrix in Emacs Org-Mode\", \"author_flair_css_class\": null, \"name\": \"t1_eonkd7o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI didn\\u0026#39;t know about quick-tagging, thanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI do something similar, but for urgent/important only. Everything else is by definitiion, not urgent, not important. I have a custom agenda for this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/Z9z8arO\\\"\\u003Ehttps://imgur.com/a/Z9z8arO\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/eonkd7o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/\", \"report_reasons\": null, \"link_author\": \"Okesa\", \"author_flair_text\": null, \"link_url\": \"https://www.tompurl.com/2015-12-29-emacs-eisenhower-matrix.html\", \"created\": 1558743465.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs1jef\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eon2s10\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"chuckfr\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1558702745.0, \"send_replies\": true, \"parent_id\": \"t1_eoinn4g\", \"score\": 1, \"author_fullname\": \"t2_100k2h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Just to be clear, the certificate is not self-signed, correct? If it is not, its probably not the issue. However, as I recall my setup, before getting anythihng to sync via webdav on phones/tablets I had to get a cert the device considered 'real' and not self-signed.\", \"link_title\": \"Has anyone set up beorg with nextcloud sucessfully?\", \"author_flair_css_class\": null, \"name\": \"t1_eon2s10\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust to be clear, the certificate is not self-signed, correct? If it is not, its probably not the issue. However, as I recall my setup, before getting anythihng to sync via webdav on phones/tablets I had to get a cert the device considered \\u0026#39;real\\u0026#39; and not self-signed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/eon2s10/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"report_reasons\": null, \"link_author\": \"CuriousQuasar\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"created\": 1558731545.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boyu8r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eomnffm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cottasteel\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1558692675.0, \"send_replies\": true, \"parent_id\": \"t1_eommezh\", \"score\": 1, \"author_fullname\": \"t2_7nfrv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yes you are right. I have a custom function that sorts checkboxes when new checkboxes are added or the checkbox state changes, and this variable is a flag that enables this behavior. I should remove the variable from the function and implement it for myself using function advice or something similar. Thanks!\", \"link_title\": \"function for DWIM insertion of new entries\", \"author_flair_css_class\": null, \"name\": \"t1_eomnffm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes you are right. I have a custom function that sorts checkboxes when new checkboxes are added or the checkbox state changes, and this variable is a flag that enables this behavior. I should remove the variable from the function and implement it for myself using function advice or something similar. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/eomnffm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"report_reasons\": null, \"link_author\": \"cottasteel\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"created\": 1558721475.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_eomnffm\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["254978"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:28 GMT"], "x-ratelimit-remaining": ["572.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["28"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914348.179660,VS0,VE602"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["452"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:32:28"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_eq9nx63"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:29 GMT"], "x-ratelimit-remaining": ["571.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["29"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914350.617308,VS0,VE82"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["451"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_eq9nx63"}, "recorded_at": "2019-06-07T13:32:29"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_bxu83g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559940568.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu83g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"parent_whitelist_status\": null, \"stickied\": true, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559911768.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have [ob-mathematica](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el) (which allows me to execute mathematica snippets via org-babel) combined with [wolfram-mode](https://github.com/kawabata/wolfram-mode) (which provides syntax highlighting).\\n\\nSo right now I have the conundrum that if I label an org-babel source block `mathematica`, then I can evaluate it via `C-c C-c` but without syntax highlighting. On the other hand, if I label the block `wolfram`, then I can no longer evaluate it, but I get source highlighting!\\n\\nHow do I combine these two to get the best of both worlds?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxooz7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559899393.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Eob-mathematica\\u003C/a\\u003E (which allows me to execute mathematica snippets via org-babel) combined with \\u003Ca href=\\\"https://github.com/kawabata/wolfram-mode\\\"\\u003Ewolfram-mode\\u003C/a\\u003E (which provides syntax highlighting).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo right now I have the conundrum that if I label an org-babel source block \\u003Ccode\\u003Emathematica\\u003C/code\\u003E, then I can evaluate it via \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E but without syntax highlighting. On the other hand, if I label the block \\u003Ccode\\u003Ewolfram\\u003C/code\\u003E, then I can no longer evaluate it, but I get source highlighting!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I combine these two to get the best of both worlds?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxooz7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559870593.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone. Has anyone some hints on how to make helm`(org-refile)` case insensitive? E.g. I want to refile the current headline below `RubyBerlin/ToDo` (note the capital `D`). Typing the correct `\\\"Berlin/ToDo\\\"` will work and offer the headline to refile below:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/6swhzzsmvp231.png\\n\\nBut typing the lower case version `\\\"Berlin/Todo\\\"` will only give results of headlines below the one I want to refile to:\\n\\n \\n\\nhttps://i.redd.it/9mlv6bxuvp231.png\\n\\nI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\", \"author_fullname\": \"t2_5cbr5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Case insensitive (org-refile)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"6swhzzsmvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 91, \"x\": 467, \"u\": \"https://i.redd.it/6swhzzsmvp231.png\"}, \"m\": \"image/png\", \"id\": \"6swhzzsmvp231\"}, \"9mlv6bxuvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 124, \"x\": 692, \"u\": \"https://i.redd.it/9mlv6bxuvp231.png\"}, \"m\": \"image/png\", \"id\": \"9mlv6bxuvp231\"}}, \"name\": \"t3_bxfd1r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"author_cakeday\": true, \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847398.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone. Has anyone some hints on how to make helm\\u003Ccode\\u003E(org-refile)\\u003C/code\\u003E case insensitive? E.g. I want to refile the current headline below \\u003Ccode\\u003ERubyBerlin/ToDo\\u003C/code\\u003E (note the capital \\u003Ccode\\u003ED\\u003C/code\\u003E). Typing the correct \\u003Ccode\\u003E\\u0026quot;Berlin/ToDo\\u0026quot;\\u003C/code\\u003E will work and offer the headline to refile below:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/6swhzzsmvp231.png\\\"\\u003Ehttps://i.redd.it/6swhzzsmvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut typing the lower case version \\u003Ccode\\u003E\\u0026quot;Berlin/Todo\\u0026quot;\\u003C/code\\u003E will only give results of headlines below the one I want to refile to:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/9mlv6bxuvp231.png\\\"\\u003Ehttps://i.redd.it/9mlv6bxuvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfd1r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bascht\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559818598.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_j2fhy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwtuob\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559710022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwtuob\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thenackjicholson\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/fldtyuwije231.png\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559681222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi guys,\\n\\nI would like to be able to preview inline images in Org-Mode without specifying its folder.\\n\\nFor instance, I would like to have `[[figurename.png]]` even tough the figure is in a folder named `figs`.\\n\\n\\u0026#x200B;\\n\\nRight now, I am using `#+LATEX_HEADER: \\\\graphicspath{{./figs/}}` and it is working good for LaTeX exports, but I don't have the nice preview in orgmode. Any idea how I could do that?\\n\\nThanks!\", \"author_fullname\": \"t2_6nzpkw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Default directory for inline images?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmraz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559669671.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to be able to preview inline images in Org-Mode without specifying its folder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor instance, I would like to have \\u003Ccode\\u003E[[figurename.png]]\\u003C/code\\u003E even tough the figure is in a folder named \\u003Ccode\\u003Efigs\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now, I am using \\u003Ccode\\u003E#+LATEX_HEADER: \\\\graphicspath{{./figs/}}\\u003C/code\\u003E and it is working good for LaTeX exports, but I don\\u0026#39;t have the nice preview in orgmode. Any idea how I could do that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmraz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tdehaeze\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559640871.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdoe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559637338.0, \"media\": null, \"is_video\": false}], \"created\": 1559666163.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdoe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bwmdlj\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmdoe/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559637363.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi all, I'm trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is: \\n1. Find the contact (M-x org-contacts)\\n\\n2. Create link (C-c l)\\n\\n3. Go to task\\n\\n4. Insert link\\n\\nThis is not very good, I would like to know if there's a way to have my contacts links permanently stored on emacs, and if there's a easier way to insert a contact in a task.\\n\\nFor more information, the reason I want this is because sometimes I create tasks as: **Ping John about foo**, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\n\\nThanks for the help.\\n\\nPS: This is my config if it helps: [https://github.com/martini97/.emacs.d](https://github.com/martini97/.emacs.d)\", \"author_fullname\": \"t2_9eav0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Linking contacts to tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwk33h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559648146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I\\u0026#39;m trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is:\\u003Cbr/\\u003E\\n1. Find the contact (M-x org-contacts)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECreate link (C-c l)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGo to task\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EInsert link\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is not very good, I would like to know if there\\u0026#39;s a way to have my contacts links permanently stored on emacs, and if there\\u0026#39;s a easier way to insert a contact in a task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more information, the reason I want this is because sometimes I create tasks as: \\u003Cstrong\\u003EPing John about foo\\u003C/strong\\u003E, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for the help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: This is my config if it helps: \\u003Ca href=\\\"https://github.com/martini97/.emacs.d\\\"\\u003Ehttps://github.com/martini97/.emacs.d\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwk33h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_martini97\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559619346.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Came across this function/variable while improving my agenda views and thought it'd be interesting ... except it doesn't seem to work for me! If I activate this in an agenda view where I know I archived a task that's now DONE, nothing shows up.\\n\\nMy archive files are located in a different directory than my main org files:\\n\\n (setq org-archive-location (concat archive-dir (format-time-string \\\"%Y\\\" (current-time)) \\\".org_archive::datetree/\\\"))\\n\\nThese YYYY.org_archive files are not part of my `org-agenda-files` either.\\n\\nDoes archives mode only work if the `:ARCHIVED:` headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How is org-agenda-archives-mode supposed to work?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwi4qu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559636288.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECame across this function/variable while improving my agenda views and thought it\\u0026#39;d be interesting ... except it doesn\\u0026#39;t seem to work for me! If I activate this in an agenda view where I know I archived a task that\\u0026#39;s now DONE, nothing shows up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy archive files are located in a different directory than my main org files:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-archive-location (concat archive-dir (format-time-string \\u0026quot;%Y\\u0026quot; (current-time)) \\u0026quot;.org_archive::datetree/\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThese YYYY.org_archive files are not part of my \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes archives mode only work if the \\u003Ccode\\u003E:ARCHIVED:\\u003C/code\\u003E headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwi4qu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559607488.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"how do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwcmiw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559607953.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehow do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwcmiw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559579153.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a time table like so with the following table format formula.\\n\\n |-------+----------+--------------|\\n | Start | Duration | Title |\\n |-------+----------+--------------|\\n | 9:00 | 00:15 | Introduction |\\n | 9:15 | 00:45 | Basics |\\n | 10:00 | 00:30 | Break |\\n | 10:30 | 01:30 | Intermediate |\\n | 12:00 | 01:00 | Lunch Break |\\n | 13:00 | 02:00 | Advanced |\\n | 15:00 | 00:30 | Break |\\n | 15:30 | 01:30 | Party |\\n | 17:00 | | End |\\n |-------+----------+--------------|\\n #+TBLFM: $2=@+1$1-$1;U\\n\\nMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\n\\n\\u003E user-error: Row descriptor +1 leads outside table\\n\\nIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\n\\nUpdate: `#+TBLFM: @\\u003C\\u003C$2..@\\u003E\\u003E$2=@+1$1-$1;U` seems to do the trick, thanks cipharius !\", \"author_fullname\": \"t2_5n9uk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9eiq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559564152.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559588764.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a time table like so with the following table format formula.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E|-------+----------+--------------|\\n| Start | Duration | Title |\\n|-------+----------+--------------|\\n| 9:00 | 00:15 | Introduction |\\n| 9:15 | 00:45 | Basics |\\n| 10:00 | 00:30 | Break |\\n| 10:30 | 01:30 | Intermediate |\\n| 12:00 | 01:00 | Lunch Break |\\n| 13:00 | 02:00 | Advanced |\\n| 15:00 | 00:30 | Break |\\n| 15:30 | 01:30 | Party |\\n| 17:00 | | End |\\n|-------+----------+--------------|\\n#+TBLFM: $2=@+1$1-$1;U\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Euser-error: Row descriptor +1 leads outside table\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate: \\u003Ccode\\u003E#+TBLFM: @\\u0026lt;\\u0026lt;$2..@\\u0026gt;\\u0026gt;$2=@+1$1-$1;U\\u003C/code\\u003E seems to do the trick, thanks cipharius !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9eiq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gausby\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559559964.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I found this post: [https://www.reddit.com/r/orgmode/comments/90sk11/how\\\\_do\\\\_you\\\\_cite\\\\_pages\\\\_for\\\\_quotes\\\\_with\\\\_orgref/](https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/), which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\", \"author_fullname\": \"t2_js9by\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you include page number in page number in org-ref with helm?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw916a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559585779.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI found this post: \\u003Ca href=\\\"https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\\"\\u003Ehttps://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\u003C/a\\u003E, which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw916a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kandidate\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559556979.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The function `org-tags-view` allows you to build up semi-complex searches for tags using regexp:\\n\\n```\\n(org-tags-view t \\\"+PROP1={value}\\u0026+PROP2={[1-2]}\\\")\\n```\\n\\nHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header's properties, do some computations on them, and returns `t` or `nil` depending upon whether the computation matches in the way I specify?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Searching for org-tags programmatically (without regexp)?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw317n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559542522.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe function \\u003Ccode\\u003Eorg-tags-view\\u003C/code\\u003E allows you to build up semi-complex searches for tags using regexp:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(org-tags-view t \\u0026quot;+PROP1={value}\\u0026amp;+PROP2={[1-2]}\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header\\u0026#39;s properties, do some computations on them, and returns \\u003Ccode\\u003Et\\u003C/code\\u003E or \\u003Ccode\\u003Enil\\u003C/code\\u003E depending upon whether the computation matches in the way I specify?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw317n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559513722.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"# Context\\n\\nI have a very strange org-mode workflow, and I don't know how better to ask this question without first explaining it. So bear with me :)\\n\\nEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\n\\n1. **Resources.** Resources are things like `Rcomputer`, `Rnone` (for pure \\\"thinking\\\" tasks), and combinatory resources like `RDevice` (defined as `Rphone` OR `Rcomputer`). They should ultimately be placed in a bracket notation such as `[Rnone]` or `[Rcomputer, Rphone]`.\\n2. **Energy.** Energy can be thought of as a real number between `E1` and `E10` (i.e., `E10` might making a hard emotional decision, while an `E1` task takes almost no effort). Energy should also ultimately be placed in brackets like `[E5]` (single value) or `[E2, E6]` (a range of energy).\\n3. **Tags.** Tags are high-level wrappers for the previous two categories. For example, `@Thinking` could convert to `E4` and `Rnone`, while `@Reading` might convert to `E3` and `RDevice`.\\n\\n# Problem\\n\\n**What I don't know how best to do:** programatically convert (3) into (1) and (2) in a sensible way. So, for example, I'd like to have a function which can convert\\n\\n * An org-mode thinking task. :@Thinking:\\n\\nto this:\\n\\n * An org-mode thinking task. :@Thinking:\\n :PROPERTIES:\\n :R: [Rnone]\\n :E: [E4]\\n :END:\\n\\nor more complicatedly, convert a task with two tags:\\n\\n * An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n :PROPERTIES:\\n :R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u003E [Rnone], while @Reading -\\u003E [RDevice] -\\u003E [Rcompter, Rphone]\\n :E: [E3, E4] ; @Thinking -\\u003E E3; @Reading -\\u003E E4\\n :END:\\n\\nHow best to encode all of this in elisp?\\n\\n# Attempt\\n\\nFirst we have high level resources:\\n\\n``` elisp\\n(setq high-level-resources (\\n (\\\"RDevice\\\" . '(\\\"Rcomputer\\\" \\\"Rphone\\\")) ;; Notice that \\\"high-level\\\" resources are capitalized while \\\"low-level\\\" resource are non-capitalized\\n ;; ..\\n )\\n```\\n\\nthen we have high-level tags (which define both a resource and an energy component):\\n\\n``` elisp\\n(setq tags ( \\n (\\\"@Reading\\\" . '((\\\"E\\\" . \\\"E3\\\") (\\\"R\\\" . \\\"RDevice\\\")))\\n (\\\"@Thinking\\\" . '((\\\"E\\\" . \\\"E2\\\") (\\\"R\\\" . \\\"Rnone\\\")))\\n ;; ..\\n )\\n```\\n\\nThen we need a function which converts tags to their resources/energy:\\n\\n``` elisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n```\\n\\nHow can we implement `convert-tags-to-resources-and-energy`?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Converting org-tags into properties (recursively)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvz12r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559520969.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EContext\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI have a very strange org-mode workflow, and I don\\u0026#39;t know how better to ask this question without first explaining it. So bear with me :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EResources.\\u003C/strong\\u003E Resources are things like \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E, \\u003Ccode\\u003ERnone\\u003C/code\\u003E (for pure \\u0026quot;thinking\\u0026quot; tasks), and combinatory resources like \\u003Ccode\\u003ERDevice\\u003C/code\\u003E (defined as \\u003Ccode\\u003ERphone\\u003C/code\\u003E OR \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E). They should ultimately be placed in a bracket notation such as \\u003Ccode\\u003E[Rnone]\\u003C/code\\u003E or \\u003Ccode\\u003E[Rcomputer, Rphone]\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EEnergy.\\u003C/strong\\u003E Energy can be thought of as a real number between \\u003Ccode\\u003EE1\\u003C/code\\u003E and \\u003Ccode\\u003EE10\\u003C/code\\u003E (i.e., \\u003Ccode\\u003EE10\\u003C/code\\u003E might making a hard emotional decision, while an \\u003Ccode\\u003EE1\\u003C/code\\u003E task takes almost no effort). Energy should also ultimately be placed in brackets like \\u003Ccode\\u003E[E5]\\u003C/code\\u003E (single value) or \\u003Ccode\\u003E[E2, E6]\\u003C/code\\u003E (a range of energy).\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003ETags.\\u003C/strong\\u003E Tags are high-level wrappers for the previous two categories. For example, \\u003Ccode\\u003E@Thinking\\u003C/code\\u003E could convert to \\u003Ccode\\u003EE4\\u003C/code\\u003E and \\u003Ccode\\u003ERnone\\u003C/code\\u003E, while \\u003Ccode\\u003E@Reading\\u003C/code\\u003E might convert to \\u003Ccode\\u003EE3\\u003C/code\\u003E and \\u003Ccode\\u003ERDevice\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Ch1\\u003EProblem\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat I don\\u0026#39;t know how best to do:\\u003C/strong\\u003E programatically convert (3) into (1) and (2) in a sensible way. So, for example, I\\u0026#39;d like to have a function which can convert\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eto this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n:PROPERTIES:\\n:R: [Rnone]\\n:E: [E4]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eor more complicatedly, convert a task with two tags:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n:PROPERTIES:\\n:R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u0026gt; [Rnone], while @Reading -\\u0026gt; [RDevice] -\\u0026gt; [Rcompter, Rphone]\\n:E: [E3, E4] ; @Thinking -\\u0026gt; E3; @Reading -\\u0026gt; E4\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHow best to encode all of this in elisp?\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EAttempt\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFirst we have high level resources:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq high-level-resources (\\n (\\u0026quot;RDevice\\u0026quot; . \\u0026#39;(\\u0026quot;Rcomputer\\u0026quot; \\u0026quot;Rphone\\u0026quot;)) ;; Notice that \\u0026quot;high-level\\u0026quot; resources are capitalized while \\u0026quot;low-level\\u0026quot; resource are non-capitalized\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethen we have high-level tags (which define both a resource and an energy component):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq tags ( \\n (\\u0026quot;@Reading\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E3\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;RDevice\\u0026quot;)))\\n (\\u0026quot;@Thinking\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E2\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;Rnone\\u0026quot;)))\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen we need a function which converts tags to their resources/energy:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can we implement \\u003Ccode\\u003Econvert-tags-to-resources-and-energy\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvz12r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559492169.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvsa9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Running a fresh Emacs session with `emacs -Q`, I evaluated the following:\\n\\n (setq org-agenda-files '(\\\"~/index.org\\\"))\\n (setq org-enforce-todo-dependencies t)\\n (setq org-agenda-dim-blocked-tasks 'invisible)\\n\\nwhere `~/index.org` simply contains:\\n\\n * Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO First subheading\\n ** TODO Second subheading\\n\\nWhen I call `(org-agenda nil \\\"t\\\")` to display the available TODOs, it correctly displays only \\\"First subheading.\\\" However, if I then export that buffer with `org-agenda-write`, then the resulting file contains both \\\"First subheading\\\" and \\\"Second subheading.\\\"\\n\\nWhat is going on here, and can it be fixed?\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvs6jo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559467712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERunning a fresh Emacs session with \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E, I evaluated the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files \\u0026#39;(\\u0026quot;~/index.org\\u0026quot;))\\n(setq org-enforce-todo-dependencies t)\\n(setq org-agenda-dim-blocked-tasks \\u0026#39;invisible)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E~/index.org\\u003C/code\\u003E simply contains:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO First subheading\\n** TODO Second subheading\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I call \\u003Ccode\\u003E(org-agenda nil \\u0026quot;t\\u0026quot;)\\u003C/code\\u003E to display the available TODOs, it correctly displays only \\u0026quot;First subheading.\\u0026quot; However, if I then export that buffer with \\u003Ccode\\u003Eorg-agenda-write\\u003C/code\\u003E, then the resulting file contains both \\u0026quot;First subheading\\u0026quot; and \\u0026quot;Second subheading.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is going on here, and can it be fixed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvs6jo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559438912.0, \"media\": null, \"is_video\": false}], \"created\": 1559468360.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvsa9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bvs6jo\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvsa9b/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559439560.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"In a list of `files` I have org tasks with the property `E` such that each `E` is marked with an interval range.\\n\\n * Some task1\\n :PROPERTIES:\\n :E: [E1, E3]\\n :END:\\n\\n * Some task2\\n :PROPERTIES:\\n :E: [E4, E7]\\n :END:\\n\\n...and so forth.\\n\\n**Question:** How can I `search` through `files` and obtain an agenda view of all tasks that intersect within a range `min` to `max`?\\n\\nSo for example `(search files 3 7)` should display tasks that have, i,e., `[E2, E4]`, `[E4, E5]` or `[E6, E8]` but *not* display tasks have `[E1, E2]` or `[E8, E9]`.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Matching org tasks against an interval of values\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvqyqw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559459994.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn a list of \\u003Ccode\\u003Efiles\\u003C/code\\u003E I have org tasks with the property \\u003Ccode\\u003EE\\u003C/code\\u003E such that each \\u003Ccode\\u003EE\\u003C/code\\u003E is marked with an interval range.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Some task1\\n:PROPERTIES:\\n:E: [E1, E3]\\n:END:\\n\\n* Some task2\\n:PROPERTIES:\\n:E: [E4, E7]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E...and so forth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion:\\u003C/strong\\u003E How can I \\u003Ccode\\u003Esearch\\u003C/code\\u003E through \\u003Ccode\\u003Efiles\\u003C/code\\u003E and obtain an agenda view of all tasks that intersect within a range \\u003Ccode\\u003Emin\\u003C/code\\u003E to \\u003Ccode\\u003Emax\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for example \\u003Ccode\\u003E(search files 3 7)\\u003C/code\\u003E should display tasks that have, i,e., \\u003Ccode\\u003E[E2, E4]\\u003C/code\\u003E, \\u003Ccode\\u003E[E4, E5]\\u003C/code\\u003E or \\u003Ccode\\u003E[E6, E8]\\u003C/code\\u003E but \\u003Cem\\u003Enot\\u003C/em\\u003E display tasks have \\u003Ccode\\u003E[E1, E2]\\u003C/code\\u003E or \\u003Ccode\\u003E[E8, E9]\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvqyqw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559431194.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-src-window-setup not behaving as expected with multi-term-dedicated opened? (more info in comments) (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvavuq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559354935.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvavuq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvavuq/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvai3u/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559326135.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv747t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559335751.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv747t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559306951.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi Everyone, \\n\\nI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\n\\n\\u0026#x200B;\\n\\n (cond ((eq system-type 'windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list 'exec-path \\\"c:/cygwin64/bin/\\\")\\n (setenv \\\"PATH\\\"\\n (concat\\n \\\"c:/cygwin64/bin/aspell.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/zip.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/unzip.exe\\\" \\\";\\\"\\n (getenv \\\"PATH\\\")\\n )\\n )\\n (setq ispell-program-name \\\"aspell.exe\\\")\\n )\\n )\\n\\nThis is my \\\\*Only Windows\\\\* Configuration Part as I cant include it to the Windows PATH Variable.\\n\\nNow (org-odt-export-to-odt) has the following problem. \\n\\n\\u0026#x200B;\\n\\n OpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\n sh: unzip: command not found\\n test of Configuration.odt FAILED\\n \\n zip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n )\\n\\nAny ideas?\\n\\nJust Message me if there is more Info needed\\n\\n\\u0026#x200B;\\n\\nThanks in advance\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Win10 Org Odt Export Unzip Problem\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv54oy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559321590.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi Everyone, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(cond ((eq system-type \\u0026#39;windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list \\u0026#39;exec-path \\u0026quot;c:/cygwin64/bin/\\u0026quot;)\\n (setenv \\u0026quot;PATH\\u0026quot;\\n (concat\\n \\u0026quot;c:/cygwin64/bin/aspell.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/zip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/unzip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n (getenv \\u0026quot;PATH\\u0026quot;)\\n )\\n )\\n (setq ispell-program-name \\u0026quot;aspell.exe\\u0026quot;)\\n )\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis is my *Only Windows* Configuration Part as I cant include it to the Windows PATH Variable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow (org-odt-export-to-odt) has the following problem. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EOpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\nsh: unzip: command not found\\ntest of Configuration.odt FAILED\\n\\nzip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust Message me if there is more Info needed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv54oy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559292790.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Dear Orgers...\\n\\nI'm exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\\"Contents\\\"). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\n\\nhttps://i.redd.it/71ml0g0ikf131.png\\n\\nHow can I prevent this from happening?\\n\\nI see here 2 possibilities:\\n\\n1. the ToC title exists, but doesn't appears in the ToC itself.\\n2. There is no ToC title!\\n\\nI'm obviously searching with the wrong keywords since I'm not finding a solution to this...\\n\\nIn every case, thanks a lot for your help. :)\", \"author_fullname\": \"t2_dyrlf6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Avoid ToC entry in ToC export to pdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"71ml0g0ikf131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1210, \"x\": 918, \"u\": \"https://i.redd.it/71ml0g0ikf131.png\"}, \"m\": \"image/png\", \"id\": \"71ml0g0ikf131\"}}, \"name\": \"t3_buzxzp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559286714.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDear Orgers...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\u0026quot;Contents\\u0026quot;). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/71ml0g0ikf131.png\\\"\\u003Ehttps://i.redd.it/71ml0g0ikf131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I prevent this from happening?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI see here 2 possibilities:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Ethe ToC title exists, but doesn\\u0026#39;t appears in the ToC itself.\\u003C/li\\u003E\\n\\u003Cli\\u003EThere is no ToC title!\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m obviously searching with the wrong keywords since I\\u0026#39;m not finding a solution to this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn every case, thanks a lot for your help. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buzxzp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"edumerco\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559257914.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a `calendar.org` buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\n\\nIs this possible? Where can I start looking at this?\\n\\nThanks!\", \"author_fullname\": \"t2_3tdxdj82\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly agenda view: not show past items from certain buffers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burp9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559242335.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a \\u003Ccode\\u003Ecalendar.org\\u003C/code\\u003E buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this possible? Where can I start looking at this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burp9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mirenbe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559213535.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl9k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl5q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 68, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 68, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559241478.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl5q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burl5q/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559212678.0, \"media\": null, \"is_video\": false}], \"created\": 1559241501.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl9k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_burl5q\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burl9k/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559212701.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Any way to hide these headers/footers? It's a bit distracting with lots of small code examples.\\n\\n #+begin_src haskell\\n ...\\n #+end_src\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I hide source block header and footer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buopeh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559218136.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny way to hide these headers/footers? It\\u0026#39;s a bit distracting with lots of small code examples.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+begin_src haskell\\n...\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buopeh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559189336.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\n\\nI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\n\\nI'm pretty sure I'm overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\", \"author_fullname\": \"t2_ycu34\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Handling Github Badges in Org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buhsue\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559180889.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m pretty sure I\\u0026#39;m overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buhsue\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hardrived_\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559152089.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I add TODO to list items instead of just headers?\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Add todo to list item?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budm5j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159049.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I add TODO to list items instead of just headers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budm5j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559130249.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello!\\n\\nI'd like to use the ORDERED property but it doesn't seem to be working in the way I'd expect, so I wanted to check that my expectation is correct.\\n\\n * TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO Check contents of disks\\n ** TODO Securely wipe disks\\n ** TODO Take disks to recycling center\\n\\nWith the ORDERED property set, I figured that I wouldn't be able to mark \\\"Securely wipe disks\\\" as DONE before I had completed \\\"Check contents of disks\\\". However I can mark these items as DONE in any order I like.\\n\\nDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Possible confusion over ORDERED property\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu1tby\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559088369.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to use the ORDERED property but it doesn\\u0026#39;t seem to be working in the way I\\u0026#39;d expect, so I wanted to check that my expectation is correct.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO Check contents of disks\\n** TODO Securely wipe disks\\n** TODO Take disks to recycling center\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith the ORDERED property set, I figured that I wouldn\\u0026#39;t be able to mark \\u0026quot;Securely wipe disks\\u0026quot; as DONE before I had completed \\u0026quot;Check contents of disks\\u0026quot;. However I can mark these items as DONE in any order I like.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu1tby\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559059569.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I was wondering how one could make one entry inherit the DEADLINE of the parent. I know about `org-use-property-inheritance` but it doesn't seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\", \"author_fullname\": \"t2_q52rf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inherit DEADLINE from parent\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btzy6m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559078444.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering how one could make one entry inherit the DEADLINE of the parent. I know about \\u003Ccode\\u003Eorg-use-property-inheritance\\u003C/code\\u003E but it doesn\\u0026#39;t seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btzy6m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackjackk0\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1559049644.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi y'all, this is probably a simple question for some of you, but I can't quite figure it out on my own.\\n\\nI'm trying to edit my `org-agenda-prefix-format` for an agenda view, such that:\\n\\n* If the entry has a scheduled or deadline timestamp, show the standard \\\"Deadline:\\\" / \\\"In N d.:\\\" / \\\"Scheduled:\\\" / \\\"Sched. 10 d.:\\\" strings.\\n* Otherwise, show the category\\n\\n**Example**: Agenda view\\n\\n Sunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\nIs there a way to display a conditional prefix like this?\\n\\nThe code I was tinkering with before posting looked like:\\n\\n (defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\\"sched (%s), dead (%s)\\\" is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\\" %-12s%-12t \\\"\\n \\\" %-12:c%-12t \\\")))\\n\\n ; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n (org-agenda-custom-prefix (test/custom-prefix))\\n\\nNot exactly the same as above, but it was a WIP, and the problem was that `is-scheduled` and `is-deadlined` were always both `nil` for some reason, despite the tasks having a scheduled / deadline timestamp.\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btovhk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559007583.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi y\\u0026#39;all, this is probably a simple question for some of you, but I can\\u0026#39;t quite figure it out on my own.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to edit my \\u003Ccode\\u003Eorg-agenda-prefix-format\\u003C/code\\u003E for an agenda view, such that:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf the entry has a scheduled or deadline timestamp, show the standard \\u0026quot;Deadline:\\u0026quot; / \\u0026quot;In N d.:\\u0026quot; / \\u0026quot;Scheduled:\\u0026quot; / \\u0026quot;Sched. 10 d.:\\u0026quot; strings.\\u003C/li\\u003E\\n\\u003Cli\\u003EOtherwise, show the category\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EExample\\u003C/strong\\u003E: Agenda view\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ESunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs there a way to display a conditional prefix like this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code I was tinkering with before posting looked like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\u0026quot;sched (%s), dead (%s)\\u0026quot; is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\u0026quot; %-12s%-12t \\u0026quot;\\n \\u0026quot; %-12:c%-12t \\u0026quot;)))\\n\\n; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n(org-agenda-custom-prefix (test/custom-prefix))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENot exactly the same as above, but it was a WIP, and the problem was that \\u003Ccode\\u003Eis-scheduled\\u003C/code\\u003E and \\u003Ccode\\u003Eis-deadlined\\u003C/code\\u003E were always both \\u003Ccode\\u003Enil\\u003C/code\\u003E for some reason, despite the tasks having a scheduled / deadline timestamp.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btovhk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558978783.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Not exactly sure how to phrase this question, so I'll do my best to explain what I'd like to do and why...\\n\\nI've been writing quite a few projects using literate programming via org-mode. Lately, I've been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\n\\nI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\n\\nThanks!\", \"author_fullname\": \"t2_4hzm8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using org-agenda on individual files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btdd9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558934196.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot exactly sure how to phrase this question, so I\\u0026#39;ll do my best to explain what I\\u0026#39;d like to do and why...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been writing quite a few projects using literate programming via org-mode. Lately, I\\u0026#39;ve been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btdd9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ralphbluecoat\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558905396.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I insert a string into an org file and change its appearance by using `(put-text-property start end 'font-lock-face 'my-face my-string)`, the face assignment doesn't persist after the file is saved and re-opened.\\n\\n\\u0026#x200B;\\n\\nIt also appears that I cannot use `(put-text-property start end 'face 'my-face)` in an org buffer (but it does work when the file is in fundamental mode).\\n\\n\\u0026#x200B;\\n\\nHow can I assign a persistent face to a section of an org buffer?\\n\\n\\u0026#x200B;\\n\\n(Edit: posted before I finished writing, typos.)\", \"author_fullname\": \"t2_3gjjtpnq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Persistent font changes in an org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btasp7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558892947.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558921535.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I insert a string into an org file and change its appearance by using \\u003Ccode\\u003E(put-text-property start end \\u0026#39;font-lock-face \\u0026#39;my-face my-string)\\u003C/code\\u003E, the face assignment doesn\\u0026#39;t persist after the file is saved and re-opened.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt also appears that I cannot use \\u003Ccode\\u003E(put-text-property start end \\u0026#39;face \\u0026#39;my-face)\\u003C/code\\u003E in an org buffer (but it does work when the file is in fundamental mode).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I assign a persistent face to a section of an org buffer?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Edit: posted before I finished writing, typos.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btasp7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itistheblurstoftimes\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558892735.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9f5z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'd like to better show \\\"Today\\\" in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\n\\nFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\n\\nThanks!\\n\\nMy current habit-related settings are:\\n\\n (setq org-habit-show-habits-only-for-today nil)\\n (setq org-habit-graph-column 60)\\n (setq org-habit-following-days 3)\\n\\nAlthough I don't think that they change anything to do with this question.\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9atw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558913913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d like to better show \\u0026quot;Today\\u0026quot; in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current habit-related settings are:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-habit-show-habits-only-for-today nil)\\n(setq org-habit-graph-column 60)\\n(setq org-habit-following-days 3)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAlthough I don\\u0026#39;t think that they change anything to do with this question.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9atw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1558885113.0, \"media\": null, \"is_video\": false}], \"created\": 1558914521.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9f5z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bt9atw\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558885721.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Many times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\", \"author_fullname\": \"t2_38v6e72q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Question] Paste with source format\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsnq2u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558768415.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMany times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsnq2u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GracefulToucan\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558739615.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 24, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsgj6t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558730956.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsgj6t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558702156.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"doing kanban in org mode? (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs8w8p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558677597.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs8w8p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs8w8p/doing_kanban_in_org_mode_xpost_remacs/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bs8rpm/doing_kanban_in_org_mode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558648797.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\n\\nDoes anyone of you have the same set up with a working configuration?\", \"author_fullname\": \"t2_3tjqi9un\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Has anyone set up beorg with nextcloud sucessfully?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs1jef\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558638131.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone of you have the same set up with a working configuration?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs1jef\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CuriousQuasar\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558609331.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_4utg0yv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using the Eisenhower Matrix in Emacs Org-Mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bry1c2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558609281.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"tompurl.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bry1c2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Okesa\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.tompurl.com/2015-12-29-emacs-eisenhower-matrix.html\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558580481.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The following renders with `org-toggle-latex-fragment`:\\n\\n$$\\n2+2 = 4\\n$$\\n\\nbut the following doesn't\\n\\n#+begin_latex\\n2+2 = 4\\n#+end_latex\\n\\nHow do I get the bottom to render as well?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Rendering inside \\\"#+begin_latex ... #+end_latex\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brs51i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558577715.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe following renders with \\u003Ccode\\u003Eorg-toggle-latex-fragment\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E$$\\n2+2 = 4\\n$$\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut the following doesn\\u0026#39;t\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+begin_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E2+2 = 4\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+end_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EHow do I get the bottom to render as well?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brs51i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558548915.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"When I export to pdf from org, the font is a bitmap font.\\n\\nHow can I change the export such that vector fonts will be used?\\n\\nThanks!\", \"author_fullname\": \"t2_q43ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org export to pdf: vector font instead of bitmap font\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brkczh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558528248.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I export to pdf from org, the font is a bitmap font.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I change the export such that vector fonts will be used?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brkczh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HumanBrainMapper\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558499448.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I had posted this some months ago here: https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\n\\nI've updated and added some new features to it!\\n\\nIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\n\\nIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\n\\nThe new features are: It auto generates indexes, has support for tags, header, and footer! \\n\\nRight now the main missing feature is generating the RSS.\\n\\nHere is a working example: https://ivanaf.com/org-export-head/index.html, and the source is here: https://github.com/itf/org-export-head\", \"author_fullname\": \"t2_21clngjz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Single file Blog in org mode - update\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br5iur\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558438826.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI had posted this some months ago here: \\u003Ca href=\\\"https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\\"\\u003Ehttps://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve updated and added some new features to it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe new features are: It auto generates indexes, has support for tags, header, and footer! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now the main missing feature is generating the RSS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is a working example: \\u003Ca href=\\\"https://ivanaf.com/org-export-head/index.html\\\"\\u003Ehttps://ivanaf.com/org-export-head/index.html\\u003C/a\\u003E, and the source is here: \\u003Ca href=\\\"https://github.com/itf/org-export-head\\\"\\u003Ehttps://github.com/itf/org-export-head\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br5iur\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itadeufa\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558410026.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm using spacemacs and am trying to figure out how to use the following package: [here](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el).\\n\\nIt's supposed to add mathematica support to org-babel snippets.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I use ob-mathematica.el?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br2g1m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558420778.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using spacemacs and am trying to figure out how to use the following package: \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s supposed to add mathematica support to org-babel snippets.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br2g1m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558391978.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\n\\nWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\n\\nThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\n\\n2019-05-12 \\nTask A : 3h 20m \\nTask B : 2h 5m\\n\\n2019-05-13 \\nTask A : 2h 10m \\nTask B : 1h 20m\\n\\nI've read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\", \"author_fullname\": \"t2_37uew703\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"View clock table entries by date?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bqu8sp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558379941.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-12\\u003Cbr/\\u003E\\nTask A : 3h 20m\\u003Cbr/\\u003E\\nTask B : 2h 5m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-13\\u003Cbr/\\u003E\\nTask A : 2h 10m\\u003Cbr/\\u003E\\nTask B : 1h 20m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqu8sp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OverthrowDissent\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558351141.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Have some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\n\\nbeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\n\\n\\u0026#x200B;\\n\\nBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\n\\n\\u0026#x200B;\\n\\n(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\n\\nand then format all the returns, into a working log entry I can put notes into along with some screenshots\\n\\n\\u0026#x200B;\\n\\nAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\n\\nAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\n\\n\\u0026#x200B;\\n\\nThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\n\\n\\u0026#x200B;\\n\\nadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\n\\n\\u0026#x200B;\\n\\nYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\", \"author_fullname\": \"t2_nb9r4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode / LISP Mentor or Tutor?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq9kxd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558246612.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand then format all the returns, into a working log entry I can put notes into along with some screenshots\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq9kxd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"psychocoonass\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558217812.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I'm on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\n\\nI have a lot of files in Deft that I would rather access through org-capture.\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to make the capture template selection list window (\\\"Org Select\\\") scrollable so that when you have a large number of capture templates (e.g.\\u003E 26), the display is not truncated?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq8ohl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558241466.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I\\u0026#39;m on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a lot of files in Deft that I would rather access through org-capture.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq8ohl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558212666.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 17, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpquo9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558126152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpquo9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558097352.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I see two packages: \\n\\n* https://github.com/mattduck/org-toggl-py\\n* https://github.com/mmagnus/emacs-toggl\\n\\nBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having `toggl` installed and connect to their service on task start.\\n\\nI want to log my time and send whenever I'm ready _in emacs_ using the name of the item associated with my clock entries with the ability to override/change this via properties. \\n\\norg-toggl-py has some property support, but requires exporting with external command. \\n\\nReally maybe external command is okay but wanted to see what others are using.\\n\\n\\n**Update 1**: Found https://github.com/mbork/org-toggl. Investigating...\\n\\n**Update 2**: Timer on org-toggle cannot be stopped see PR [#6](https://github.com/mbork/org-toggl/pull/6) and [#3](https://github.com/mbork/org-toggl/pull/3) \\u2013which are from 2018. Also **does not** seem to integrate with Org mode as advertised.\\n\\n**Update 3**: Tried [Fuco1's fork](https://github.com/Fuco1/org-toggl) which fixes [#6](https://github.com/mbork/org-toggl/pull/6) but Org mode integration still is not working. Went to org-toggle-py [but couldn't get it to work](https://github.com/mattduck/org-toggl-py/issues/1)\\n\\n\\nSeems like best approach is to call `toggl-start-time-entry`/`toggl-stop-time-entry ` around `org-clock-in`/`org-clock-out` and then write some export function using these. \\n\\nNot sure if it's possible to check if an export is new or requires updating. Will have to investigate Toggl's API.\", \"author_fullname\": \"t2_h8sck\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone Use Org mode With Toggl\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpjh7e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558056916.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558076490.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see two packages: \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py\\\"\\u003Ehttps://github.com/mattduck/org-toggl-py\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mmagnus/emacs-toggl\\\"\\u003Ehttps://github.com/mmagnus/emacs-toggl\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having \\u003Ccode\\u003Etoggl\\u003C/code\\u003E installed and connect to their service on task start.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to log my time and send whenever I\\u0026#39;m ready \\u003Cem\\u003Ein emacs\\u003C/em\\u003E using the name of the item associated with my clock entries with the ability to override/change this via properties. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorg-toggl-py has some property support, but requires exporting with external command. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReally maybe external command is okay but wanted to see what others are using.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 1\\u003C/strong\\u003E: Found \\u003Ca href=\\\"https://github.com/mbork/org-toggl\\\"\\u003Ehttps://github.com/mbork/org-toggl\\u003C/a\\u003E. Investigating...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 2\\u003C/strong\\u003E: Timer on org-toggle cannot be stopped see PR \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E and \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/3\\\"\\u003E#3\\u003C/a\\u003E \\u2013which are from 2018. Also \\u003Cstrong\\u003Edoes not\\u003C/strong\\u003E seem to integrate with Org mode as advertised.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 3\\u003C/strong\\u003E: Tried \\u003Ca href=\\\"https://github.com/Fuco1/org-toggl\\\"\\u003EFuco1\\u0026#39;s fork\\u003C/a\\u003E which fixes \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E but Org mode integration still is not working. Went to org-toggle-py \\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py/issues/1\\\"\\u003Ebut couldn\\u0026#39;t get it to work\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESeems like best approach is to call \\u003Ccode\\u003Etoggl-start-time-entry\\u003C/code\\u003E/\\u003Ccode\\u003Etoggl-stop-time-entry\\u003C/code\\u003E around \\u003Ccode\\u003Eorg-clock-in\\u003C/code\\u003E/\\u003Ccode\\u003Eorg-clock-out\\u003C/code\\u003E and then write some export function using these. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot sure if it\\u0026#39;s possible to check if an export is new or requires updating. Will have to investigate Toggl\\u0026#39;s API.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpjh7e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sshaw_\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1558047690.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to find an note taking website that I can used to stay organized on computers that don't have emacs.\\n\\nAll of the online note taking apps I have found like SimpleNote or \\\"Tutrl\\\" can only understand markdown.\\n\\nIs there any note taking web service that can understand and edit org files like markdown.\\n\\n\\n\\nI have my own server so I can host my own app if necessary.\", \"author_fullname\": \"t2_gm7cp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Looking for a Evernote-like note taking web app that can understand org-files\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bp8uw7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558013986.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to find an note taking website that I can used to stay organized on computers that don\\u0026#39;t have emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll of the online note taking apps I have found like SimpleNote or \\u0026quot;Tutrl\\u0026quot; can only understand markdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any note taking web service that can understand and edit org files like markdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have my own server so I can host my own app if necessary.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bp8uw7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CeamoreCash\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bp8uw7/looking_for_a_evernotelike_note_taking_web_app/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bp8uw7/looking_for_a_evernotelike_note_taking_web_app/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557985186.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have made a function which \\\"intelligently\\\" inserts a new heading, TODO, list item, or checkbox based on the the type of the current entry at the point. I find it quite useful, so I thought would share it here.\\n\\nWhen inserting new headings/items into an org subtree, I don't like having to remember which command to use based on whether the current entry is a heading (`C-RET`), a TODO (`C-S-RET`), a list item (`M-x org-insert-item`), or a checkbox (`C-u M-x org-insert-item`). I also don't like that the behavior changes depending on whether the point is at the beginning of the line. \\n\\nBased on these requirements, I made the function `sbr-org-insert-dwim` listed below. It is highly opinionated based on my use preferences:\\n\\n* Lines are never split (for the duration of the command, `org-M-RET-may-split-line` is set to nil). If I really need to split the line, I can either do `C-k sbr-org-insert-dwim C-y` or use the built in `M-RET` or `M-S-RET`\\n* The behavior of `sbr-org-insert-dwim` is the same regardless of where the point is on the current line, on the asterisks/dash, at the beginning/middle/end of the entry, or even if the point is after ellipses (i.e. the subtree of the current entry is hidden). The builtin commands `org-insert-heading` and `org-insert-item` have unspecified behavior when used after ellipses.\\n* By default, the new entry in inserted below the current subtree/item. With the prefix `C-u`, the entry is inserted before the current entry and the end of previous subtree (similar to `C-u C-u org-insert-heading`). The inserted entry never breaks up a subtree, which in my opinion, would break the abstraction of the subtree hierarchy. In order to break up and edit subtree structure, I use the `M-\\u003Carrow\\u003E` commands.\\n* If the point is above the first heading, simply insert a level-1 heading. When used above the first heading, `C-RET` (`org-insert-heading-respect-content`) confusingly converts:\\n\\n\\u0026#8203;\\n\\n \\u003E \\u003C\\n * First Heading \\n Something Something\\n Something Something\\n\\ninto:\\n\\n \\n * \\u003E*\\u003C First Heading \\n Something Something\\n Something Something\\n\\nwhere `\\u003E \\u003C` is the point.\\n\\nSince `S-RET` is bound to `org-table-copy-down`, which only works in a table, I made a function `sbr-org-shift-return` that enables me to use `sbr-org-insert-dwim` outside of tables, while preserving the default behavior.\\n\\nThe code is listed below. It's a little more complicated then I would like in order for it to handle all the edge cases (e.g., point after ellipses or before the first heading), and also because the org insert functions don't behave uniformly. For example `org-insert-todo-heading` inserts a checkbox if the point is on a list item, but `org-insert-heading` doesn't similarly insert a list item when the point is on a list item (even though its documentation claims that it does). Any suggestions for streamlining this code are welcome!\\n\\n (defun sbr-org-insert-dwim (\\u0026optional arg)\\n \\\"Insert another entry of the same type as the current\\n entry. For example, if the point is on a list item, then add\\n another list item of the same type, and if the point is on a\\n checkbox list item, then add an empty checkbox item. If instead\\n the point is in a heading, then add another heading. If the point \\n is in a TODO heading, then add another TODO heading (set to the \\n TODO state). \\n \\n By default, the new entry is inserted below the current\\n subtree/item. With a 'C-u' prefix, insert the entry above the\\n current heading/item instead.\\\"\\n (interactive \\\"P\\\")\\n (when (eq major-mode 'org-mode)\\n (let ((org-special-ctrl-a/e t)\\n (below? (unless (equal arg '(4)) '(4))))\\n ;; hack to ensure that the point is not after ellipses because\\n ;; that would mess up org-at-item-p etc.\\n (org-beginning-of-line)\\n (cond ((org-at-item-p) ;; at list item or checkbox\\n (let ((org-M-RET-may-split-line nil)\\n (org-enable-sort-checkbox nil))\\n ;; hack to make item be inserted after the current one\\n ;; doesn't work if we are on an empty item line\\n (when below?\\n (org-end-of-line)) \\n (org-insert-item (org-at-item-checkbox-p))))\\n ((org-before-first-heading-p) ;; above first heading\\n (org-insert-heading))\\n (t ;; in some kind of heading\\n (org-back-to-heading)\\n (if (org-get-todo-state)\\n ;; at TODO heading\\n (org-insert-todo-heading t below?)\\n ;; at non-TODO heading \\n (org-insert-heading below?)))))))\\n \\n (defun sbr-org-shift-return (\\u0026optional arg)\\n \\\"If point is at a table, copy the table cell downward (i.e.,\\n the usual effect of typing S-RET). Otherwise, insert the same\\n kind of heading or item as the current entry containing the\\n point. \\\"\\n (interactive \\\"P\\\")\\n (if (org-at-table-p)\\n (org-table-copy-down (prefix-numeric-value arg))\\n (sbr-org-insert-dwim arg)))\\n \\n (bind-keys :map org-mode-map (\\\"\\u003CS-return\\u003E\\\" . sbr-org-insert-dwim))\", \"author_fullname\": \"t2_7nfrv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"function for DWIM insertion of new entries\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_boyu8r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557960504.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have made a function which \\u0026quot;intelligently\\u0026quot; inserts a new heading, TODO, list item, or checkbox based on the the type of the current entry at the point. I find it quite useful, so I thought would share it here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen inserting new headings/items into an org subtree, I don\\u0026#39;t like having to remember which command to use based on whether the current entry is a heading (\\u003Ccode\\u003EC-RET\\u003C/code\\u003E), a TODO (\\u003Ccode\\u003EC-S-RET\\u003C/code\\u003E), a list item (\\u003Ccode\\u003EM-x org-insert-item\\u003C/code\\u003E), or a checkbox (\\u003Ccode\\u003EC-u M-x org-insert-item\\u003C/code\\u003E). I also don\\u0026#39;t like that the behavior changes depending on whether the point is at the beginning of the line. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBased on these requirements, I made the function \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E listed below. It is highly opinionated based on my use preferences:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ELines are never split (for the duration of the command, \\u003Ccode\\u003Eorg-M-RET-may-split-line\\u003C/code\\u003E is set to nil). If I really need to split the line, I can either do \\u003Ccode\\u003EC-k sbr-org-insert-dwim C-y\\u003C/code\\u003E or use the built in \\u003Ccode\\u003EM-RET\\u003C/code\\u003E or \\u003Ccode\\u003EM-S-RET\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EThe behavior of \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E is the same regardless of where the point is on the current line, on the asterisks/dash, at the beginning/middle/end of the entry, or even if the point is after ellipses (i.e. the subtree of the current entry is hidden). The builtin commands \\u003Ccode\\u003Eorg-insert-heading\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-insert-item\\u003C/code\\u003E have unspecified behavior when used after ellipses.\\u003C/li\\u003E\\n\\u003Cli\\u003EBy default, the new entry in inserted below the current subtree/item. With the prefix \\u003Ccode\\u003EC-u\\u003C/code\\u003E, the entry is inserted before the current entry and the end of previous subtree (similar to \\u003Ccode\\u003EC-u C-u org-insert-heading\\u003C/code\\u003E). The inserted entry never breaks up a subtree, which in my opinion, would break the abstraction of the subtree hierarchy. In order to break up and edit subtree structure, I use the \\u003Ccode\\u003EM-\\u0026lt;arrow\\u0026gt;\\u003C/code\\u003E commands.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf the point is above the first heading, simply insert a level-1 heading. When used above the first heading, \\u003Ccode\\u003EC-RET\\u003C/code\\u003E (\\u003Ccode\\u003Eorg-insert-heading-respect-content\\u003C/code\\u003E) confusingly converts:\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#8203;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E \\u0026gt; \\u0026lt;\\n* First Heading \\nSomething Something\\nSomething Something\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Einto:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* \\u0026gt;*\\u0026lt; First Heading \\nSomething Something\\nSomething Something\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E\\u0026gt; \\u0026lt;\\u003C/code\\u003E is the point.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince \\u003Ccode\\u003ES-RET\\u003C/code\\u003E is bound to \\u003Ccode\\u003Eorg-table-copy-down\\u003C/code\\u003E, which only works in a table, I made a function \\u003Ccode\\u003Esbr-org-shift-return\\u003C/code\\u003E that enables me to use \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E outside of tables, while preserving the default behavior.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code is listed below. It\\u0026#39;s a little more complicated then I would like in order for it to handle all the edge cases (e.g., point after ellipses or before the first heading), and also because the org insert functions don\\u0026#39;t behave uniformly. For example \\u003Ccode\\u003Eorg-insert-todo-heading\\u003C/code\\u003E inserts a checkbox if the point is on a list item, but \\u003Ccode\\u003Eorg-insert-heading\\u003C/code\\u003E doesn\\u0026#39;t similarly insert a list item when the point is on a list item (even though its documentation claims that it does). Any suggestions for streamlining this code are welcome!\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun sbr-org-insert-dwim (\\u0026amp;optional arg)\\n \\u0026quot;Insert another entry of the same type as the current\\nentry. For example, if the point is on a list item, then add\\nanother list item of the same type, and if the point is on a\\ncheckbox list item, then add an empty checkbox item. If instead\\nthe point is in a heading, then add another heading. If the point \\nis in a TODO heading, then add another TODO heading (set to the \\nTODO state). \\n\\nBy default, the new entry is inserted below the current\\nsubtree/item. With a \\u0026#39;C-u\\u0026#39; prefix, insert the entry above the\\ncurrent heading/item instead.\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (when (eq major-mode \\u0026#39;org-mode)\\n (let ((org-special-ctrl-a/e t)\\n (below? (unless (equal arg \\u0026#39;(4)) \\u0026#39;(4))))\\n ;; hack to ensure that the point is not after ellipses because\\n ;; that would mess up org-at-item-p etc.\\n (org-beginning-of-line)\\n (cond ((org-at-item-p) ;; at list item or checkbox\\n (let ((org-M-RET-may-split-line nil)\\n (org-enable-sort-checkbox nil))\\n ;; hack to make item be inserted after the current one\\n ;; doesn\\u0026#39;t work if we are on an empty item line\\n (when below?\\n (org-end-of-line)) \\n (org-insert-item (org-at-item-checkbox-p))))\\n ((org-before-first-heading-p) ;; above first heading\\n (org-insert-heading))\\n (t ;; in some kind of heading\\n (org-back-to-heading)\\n (if (org-get-todo-state)\\n ;; at TODO heading\\n (org-insert-todo-heading t below?)\\n ;; at non-TODO heading \\n (org-insert-heading below?)))))))\\n\\n(defun sbr-org-shift-return (\\u0026amp;optional arg)\\n \\u0026quot;If point is at a table, copy the table cell downward (i.e.,\\nthe usual effect of typing S-RET). Otherwise, insert the same\\nkind of heading or item as the current entry containing the\\npoint. \\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (if (org-at-table-p)\\n (org-table-copy-down (prefix-numeric-value arg))\\n (sbr-org-insert-dwim arg)))\\n\\n(bind-keys :map org-mode-map (\\u0026quot;\\u0026lt;S-return\\u0026gt;\\u0026quot; . sbr-org-insert-dwim))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"boyu8r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cottasteel\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557931704.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello! I have a question regarding org-agenda. I just updated org-mode 9.2.3 on Emacs 26.1 and I have a problem with the location of the org-agenda tags. First (before the upgrade) I had them on the right, now automatically they always appear on a new line (in all agenda views). Do you know how I can go back to having tags on the right?\", \"author_fullname\": \"t2_3rz1w0lq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-agenda and tags position\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_boymdt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557959366.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello! I have a question regarding org-agenda. I just updated org-mode 9.2.3 on Emacs 26.1 and I have a problem with the location of the org-agenda tags. First (before the upgrade) I had them on the right, now automatically they always appear on a new line (in all agenda views). Do you know how I can go back to having tags on the right?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"boymdt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cyberl3o\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557930566.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 03 Hyperlinks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5yvk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 27, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 27, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 03 Hyperlinks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5wkl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 37, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 37, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557794720.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5wkl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bo5wkl/orgmode_hidden_gems_03_hyperlinks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt3/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1557765920.0, \"media\": null, \"is_video\": false}], \"created\": 1557795022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5yvk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bo5wkl\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo5yvk/orgmode_hidden_gems_03_hyperlinks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt3/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557766222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a main directory of all my org-files. I want to be able to export any part of an org-file to markdown in a a separate `/exports` folder (rather than cluttering up my main directory). \\n\\nI know I can constantly set my export file name property, but that becomes cumbersome. I'd like to be able to just set this up once and be done with it. \\n\\nMost of the guides out there on publishing are about setting up a full blogging system with jeckyll or something similar and it's giving me way more information than I need. \\n\\nI think the main thing I need to do is set up the projects alist? What would that look like for a simple scenario like this? Thanks for any help.\", \"author_fullname\": \"t2_130p93\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help Setting Up a Simple Export Folder\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5ly1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557793341.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a main directory of all my org-files. I want to be able to export any part of an org-file to markdown in a a separate \\u003Ccode\\u003E/exports\\u003C/code\\u003E folder (rather than cluttering up my main directory). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know I can constantly set my export file name property, but that becomes cumbersome. I\\u0026#39;d like to be able to just set this up once and be done with it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMost of the guides out there on publishing are about setting up a full blogging system with jeckyll or something similar and it\\u0026#39;s giving me way more information than I need. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think the main thing I need to do is set up the projects alist? What would that look like for a simple scenario like this? Thanks for any help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5ly1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ManiacMcCree\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo5ly1/help_setting_up_a_simple_export_folder/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bo5ly1/help_setting_up_a_simple_export_folder/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557764541.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI would like to link to my emails from Orgmode, but it seems like I'm missing something.\\n\\nI followed the tutorial here:\\n\\n[https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts](https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts)\\n\\n\\u0026#x200B;\\n\\nAnd added this to my .emacs file:\\n\\n\\u0026#x200B;\\n\\n (require 'org)\\n \\n (org-add-link-type \\\"thunderlink\\\" 'org-thunderlink-open)\\n (defun org-thunderlink-open (path)\\n \\\"Opens a specified email in Thunderbird with the help of the add-on\\n ThunderLink.\\\"\\n (start-process \\\"myname\\\" nil \\\"thunderbird\\\" \\\"-thunderlink\\\" (concat\\n \\\"thunderlink:\\\" path)))\\n \\n (provide 'org-thunderlink)\\n\\n\\u0026#x200B;\\n\\nBut it does not seems to work. When I click on a link I have an error message: \\\"No match-create this as a new heading\\\"\\n\\n\\u0026#x200B;\\n\\nDoes anyone managed to get it to work?\\n\\nMany thanks in advance\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Link to email in Thunderbird from orgmode with Thunderlink extension\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo13sc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1557739179.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557767182.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to link to my emails from Orgmode, but it seems like I\\u0026#39;m missing something.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI followed the tutorial here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts\\\"\\u003Ehttps://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd added this to my .emacs file:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;org)\\n\\n(org-add-link-type \\u0026quot;thunderlink\\u0026quot; \\u0026#39;org-thunderlink-open)\\n(defun org-thunderlink-open (path)\\n\\u0026quot;Opens a specified email in Thunderbird with the help of the add-on\\nThunderLink.\\u0026quot;\\n(start-process \\u0026quot;myname\\u0026quot; nil \\u0026quot;thunderbird\\u0026quot; \\u0026quot;-thunderlink\\u0026quot; (concat\\n\\u0026quot;thunderlink:\\u0026quot; path)))\\n\\n(provide \\u0026#39;org-thunderlink)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut it does not seems to work. When I click on a link I have an error message: \\u0026quot;No match-create this as a new heading\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone managed to get it to work?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo13sc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo13sc/link_to_email_in_thunderbird_from_orgmode_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bo13sc/link_to_email_in_thunderbird_from_orgmode_with/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557738382.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I create an elisp function that refiles the current header at point (and all of its children) to the ID `id`, but such that instead of just placing the header directly under `id`, it places it under its subheading of name `subheading` (whether or not `subheading` exists yet)?\\n\\nSo for example if I have\\n\\n```org-mode\\n* A heading\\n```\\n\\nhow can I refile this to\\n\\n```org-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n```\\n\\n\\nso that the end result will look like\\n\\n```org-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n** subheading\\n*** A heading\\n```\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Refiling header to a new sub-header?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bni3ll\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557643814.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I create an elisp function that refiles the current header at point (and all of its children) to the ID \\u003Ccode\\u003Eid\\u003C/code\\u003E, but such that instead of just placing the header directly under \\u003Ccode\\u003Eid\\u003C/code\\u003E, it places it under its subheading of name \\u003Ccode\\u003Esubheading\\u003C/code\\u003E (whether or not \\u003Ccode\\u003Esubheading\\u003C/code\\u003E exists yet)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for example if I have\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* A heading\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ehow can I refile this to\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eso that the end result will look like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n** subheading\\n*** A heading\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bni3ll\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bni3ll/refiling_header_to_a_new_subheader/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bni3ll/refiling_header_to_a_new_subheader/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557615014.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"**Question:** How can I retrieve, over a set of files `S` (in particular: over my agenda files + their archive files) the total time clocked (as the return value of an elisp function; not as a clock table)? So for example, if I have:\\n\\n```org-mode\\n* SATISFICED Header1\\n CLOSED: [2019-05-01 Wed 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-01 Sat 18:10]--[2019-05-01 Sat 18:30] =\\u003E 0:20\\n :END:\\n\\n# File2\\n* SATISFICED Header2\\n CLOSED: [2019-05-11 Sat 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:11] =\\u003E 0:01\\n :END:\\n* SATISFICED Header3\\n CLOSED: [2019-05-11 Sat 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:20] =\\u003E 0:10\\n :END:\\n```\\n\\nI'd like to run a function like `(sum--all-time-from \\\"[2019-05-10]\\\" \\\"[2019-05-12]\\\")` to get as answer ~0:11~.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Retrieve the total time CLOCKED over a given interval\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnhu7v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557642259.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion:\\u003C/strong\\u003E How can I retrieve, over a set of files \\u003Ccode\\u003ES\\u003C/code\\u003E (in particular: over my agenda files + their archive files) the total time clocked (as the return value of an elisp function; not as a clock table)? So for example, if I have:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```org-mode\\n* SATISFICED Header1\\n CLOSED: [2019-05-01 Wed 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-01 Sat 18:10]--[2019-05-01 Sat 18:30] =\\u0026gt; 0:20\\n :END:\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EFile2\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESATISFICED Header2\\nCLOSED: [2019-05-11 Sat 18:13]\\n:LOGBOOK:\\nCLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:11] =\\u0026gt; 0:01\\n:END:\\u003C/li\\u003E\\n\\u003Cli\\u003ESATISFICED Header3\\nCLOSED: [2019-05-11 Sat 18:13]\\n:LOGBOOK:\\nCLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:20] =\\u0026gt; 0:10\\n:END:\\n```\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to run a function like \\u003Ccode\\u003E(sum--all-time-from \\u0026quot;[2019-05-10]\\u0026quot; \\u0026quot;[2019-05-12]\\u0026quot;)\\u003C/code\\u003E to get as answer ~0:11~.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnhu7v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bnhu7v/retrieve_the_total_time_clocked_over_a_given/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bnhu7v/retrieve_the_total_time_clocked_over_a_given/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557613459.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems 2 - Tables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnbtfg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems 2 - Tables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnbdye\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 84, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 84, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557605382.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnbdye\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 24, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bnbdye/orgmode_hidden_gems_2_tables/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1557576582.0, \"media\": null, \"is_video\": false}], \"created\": 1557608502.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnbtfg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bnbdye\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bnbtfg/orgmode_hidden_gems_2_tables/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557579702.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to get started with ox-beamer.\\n\\nI use the basic config:\\n\\n (require 'ox-latex)\\n (add-to-list 'org-latex-classes\\n '(\\\"beamer\\\"\\n \\\"\\\\\\\\documentclass\\\\[presentation\\\\]\\\\{beamer\\\\}\\\"\\n (\\\"\\\\\\\\section\\\\{%s\\\\}\\\" . \\\"\\\\\\\\section*\\\\{%s\\\\}\\\")\\n (\\\"\\\\\\\\subsection\\\\{%s\\\\}\\\" . \\\"\\\\\\\\subsection*\\\\{%s\\\\}\\\")\\n (\\\"\\\\\\\\subsubsection\\\\{%s\\\\}\\\" . \\\"\\\\\\\\subsubsection*\\\\{%s\\\\}\\\")))\\n\\n\\u0026#x200B;\\n\\nFirst, I want to reproduce [https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org](https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org)\\n\\nBut even on this basic example, I fail to get the correct sectioning into frames.\\n\\n[https://www.scribd.com/document/409442757/Beamer-Example](https://www.scribd.com/document/409442757/Beamer-Example)\\n\\n\\u0026#x200B;\\n\\nAny idea what's wrong?\", \"author_fullname\": \"t2_2b6wlz4w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Issue with ox-beamer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmy4qe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557522795.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to get started with ox-beamer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use the basic config:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;ox-latex)\\n(add-to-list \\u0026#39;org-latex-classes\\n \\u0026#39;(\\u0026quot;beamer\\u0026quot;\\n \\u0026quot;\\\\\\\\documentclass\\\\[presentation\\\\]\\\\{beamer\\\\}\\u0026quot;\\n (\\u0026quot;\\\\\\\\section\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\section*\\\\{%s\\\\}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsection\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\subsection*\\\\{%s\\\\}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsubsection\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\subsubsection*\\\\{%s\\\\}\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, I want to reproduce \\u003Ca href=\\\"https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org\\\"\\u003Ehttps://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut even on this basic example, I fail to get the correct sectioning into frames.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.scribd.com/document/409442757/Beamer-Example\\\"\\u003Ehttps://www.scribd.com/document/409442757/Beamer-Example\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny idea what\\u0026#39;s wrong?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmy4qe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hagetarou\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmy4qe/issue_with_oxbeamer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bmy4qe/issue_with_oxbeamer/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557493995.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 10, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmxvlv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557521353.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmxvlv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmxvlv/weekly_rorgmode_open_discussion_may_10_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bmxvlv/weekly_rorgmode_open_discussion_may_10_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557492553.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmxv6e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 45, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 45, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmwec1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 133, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 133, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {\"gid_1\": 1}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557511141.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Silver Award\", \"coin_reward\": 0, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/silver_512.png\", \"days_of_premium\": 0, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 100, \"id\": \"gid_1\", \"name\": \"Silver\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmwec1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 21, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bmwec1/orgmode_hidden_gems/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt1/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1557482341.0, \"media\": null, \"is_video\": false}], \"created\": 1557521280.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmxv6e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bmwec1\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmxv6e/orgmode_hidden_gems/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt1/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557492480.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\n\\u0026#x200B;\\n\\nI have an org-file with several code blocks. Is there any way to run all of them at once instead of having to access each one individually and run c-c to make them execute?\", \"author_fullname\": \"t2_cc87w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Execute all code blocks at once\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bm856i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557365469.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have an org-file with several code blocks. Is there any way to run all of them at once instead of having to access each one individually and run c-c to make them execute?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bm856i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eljuman\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bm856i/execute_all_code_blocks_at_once/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bm856i/execute_all_code_blocks_at_once/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557336669.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I've been using org mode for task management for several months. I'm trying to transition into using it for note taking but I've found a recurrent error with the tables in org mode.\\n\\nIf I have a table with a column set to a short width, and then increase the size of the column to a width that is still shorter than the content of the longest cell in the column I get an error as shown below.\\n\\n\\u0026#x200B;\\n\\nI'm using Windows 10; GNU Emacs 26.1 (build 1, x86\\\\_64-w64-mingw32) of 2018-05-30; and Org mode version 9.1.9 (release\\\\_9.1.9-65-g5e4542 @ c:/Users/mccombsp/emacs/share/emacs/26.1/lisp/org/)\\n\\n\\u0026#x200B;\\n\\nEDIT:\\n\\nI duplicated the error on MacOs 10.14.4; GNU Emacs 26.1 (build 1, x86\\\\_64-apple-darwin14.5.0, NS appkit-1348.17 Version 10.10.5 (Build 14F2511)) of 2018-05-30; and Org mode version 9.1.9 (release\\\\_9.1.9-65-g5e4542 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)\\n\\n\\u0026#x200B;\\n\\n | short | short | long text that goes on and on and on and on |\\n | short | short | not so long text that only goes on |\\n | short | short | short |\\n | | | \\u003C5\\u003E |\\n \\n The above table works fine.\\n \\n | short | short | long text that goes on and on and on and on |\\n | short | short | not so long text that only goes on |\\n | short | short | short |\\n | | | \\u003C10\\u003E |\\n \\n The above table will work but only if I remove the width entirely first.\\n\\nEither table above table works fine. But if I change the the last cell from \\u003C5\\u003E to \\u003C10\\u003E I get the following emacs lisp error, and it doesn't adjust the table.\\n\\n org-table-next-field: Args out of range: #(\\\"long text that goes on and on and on and on\\\" 0 3 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 3 4 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 4 5 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 5 9 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 9 14 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 14 19 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 19 22 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 22 26 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 26 29 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 29 33 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 33 36 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 36 40 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 40 43 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth)), 0, 44\", \"author_fullname\": \"t2_3kfzu0nx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Error on increasing width of table columns\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_blz7uj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1557279529.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557308015.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been using org mode for task management for several months. I\\u0026#39;m trying to transition into using it for note taking but I\\u0026#39;ve found a recurrent error with the tables in org mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I have a table with a column set to a short width, and then increase the size of the column to a width that is still shorter than the content of the longest cell in the column I get an error as shown below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using Windows 10; GNU Emacs 26.1 (build 1, x86_64-w64-mingw32) of 2018-05-30; and Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ c:/Users/mccombsp/emacs/share/emacs/26.1/lisp/org/)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI duplicated the error on MacOs 10.14.4; GNU Emacs 26.1 (build 1, x86_64-apple-darwin14.5.0, NS appkit-1348.17 Version 10.10.5 (Build 14F2511)) of 2018-05-30; and Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E| short | short | long text that goes on and on and on and on |\\n| short | short | not so long text that only goes on |\\n| short | short | short |\\n| | | \\u0026lt;5\\u0026gt; |\\n\\nThe above table works fine.\\n\\n| short | short | long text that goes on and on and on and on |\\n| short | short | not so long text that only goes on |\\n| short | short | short |\\n| | | \\u0026lt;10\\u0026gt; |\\n\\nThe above table will work but only if I remove the width entirely first.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EEither table above table works fine. But if I change the the last cell from \\u0026lt;5\\u0026gt; to \\u0026lt;10\\u0026gt; I get the following emacs lisp error, and it doesn\\u0026#39;t adjust the table.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eorg-table-next-field: Args out of range: #(\\u0026quot;long text that goes on and on and on and on\\u0026quot; 0 3 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 3 4 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 4 5 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 5 9 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 9 14 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 14 19 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 19 22 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 22 26 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 26 29 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 29 33 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 33 36 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 36 40 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 40 43 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth)), 0, 44\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blz7uj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paulmccombs\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/blz7uj/error_on_increasing_width_of_table_columns/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/blz7uj/error_on_increasing_width_of_table_columns/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557279215.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3m2tic11\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Run C-c C-c fixups everywhere in a file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_blvp48\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557289465.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blvp48\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"telotortium\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/blvp48/run_cc_cc_fixups_everywhere_in_a_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/blvk82/run_cc_cc_fixups_everywhere_in_a_file/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557260665.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"https://gitlab.com/kisaragi-hiu/org-msr\\n\\nWhile trying to remember vocabulary words using Org, I thought it would be interesting if I use todo keywords and add schedules based on them to implement spaced repetition.\\n\\nI haven't used it for too long^[1] , but I made it its own package since there's too much to just stuff in my init. If this approach works, I hope this can serve as some sort of reference on how this can be done as well.\\n\\nThe package provides a function to update schedule based on the todo keyword, according to an alist (`org-msr-keyword-frequency-alist`). It also provides a minor mode that runs the function after `org-todo`).\\n\\nPlease check it out!\\n\\n[1]\\\\: The aforementioned org file is 6 days old currently (2019-05-05).\", \"author_fullname\": \"t2_10cocd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-msr: Minimal Spaced Repetition with todo keywords\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkxsd1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"elisp library\", \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557092245.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://gitlab.com/kisaragi-hiu/org-msr\\\"\\u003Ehttps://gitlab.com/kisaragi-hiu/org-msr\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile trying to remember vocabulary words using Org, I thought it would be interesting if I use todo keywords and add schedules based on them to implement spaced repetition.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t used it for too long\\u003Csup\\u003E[1]\\u003C/sup\\u003E , but I made it its own package since there\\u0026#39;s too much to just stuff in my init. If this approach works, I hope this can serve as some sort of reference on how this can be done as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe package provides a function to update schedule based on the todo keyword, according to an alist (\\u003Ccode\\u003Eorg-msr-keyword-frequency-alist\\u003C/code\\u003E). It also provides a minor mode that runs the function after \\u003Ccode\\u003Eorg-todo\\u003C/code\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease check it out!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[1]: The aforementioned org file is 6 days old currently (2019-05-05).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"698f39e4-c2ff-11e8-9e96-0e341354a6a2\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkxsd1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"flyin1501\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bkxsd1/orgmsr_minimal_spaced_repetition_with_todo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bkxsd1/orgmsr_minimal_spaced_repetition_with_todo/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1557063445.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode with Spacemacs: The Absolute Minimum\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkfckb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"article\", \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode with Spacemacs: The Absolute Minimum\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkfare\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 55, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Org mode and Spacemacs: The Absolute Minimum you need to know\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Jack of Some\", \"thumbnail_height\": 360, \"thumbnail_url\": \"https://i.ytimg.com/vi/S4f-GUxu3CY/hqdefault.jpg\", \"type\": \"video\", \"provider_name\": \"YouTube\", \"author_url\": \"https://www.youtube.com/channel/UCe6ABcJkH_Gso9HJOt4x9fg\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bkfare\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 55, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556957136.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkfare\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jack-of-some\", \"num_crossposts\": 4, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bkfare/org_mode_with_spacemacs_the_absolute_minimum/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/S4f-GUxu3CY\", \"subreddit_subscribers\": 29865, \"created_utc\": 1556928336.0, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Org mode and Spacemacs: The Absolute Minimum you need to know\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Jack of Some\", \"thumbnail_height\": 360, \"thumbnail_url\": \"https://i.ytimg.com/vi/S4f-GUxu3CY/hqdefault.jpg\", \"type\": \"video\", \"provider_name\": \"YouTube\", \"author_url\": \"https://www.youtube.com/channel/UCe6ABcJkH_Gso9HJOt4x9fg\"}, \"type\": \"youtube.com\"}, \"is_video\": false}], \"created\": 1556957464.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c5c6b84c-c2fd-11e8-a9b1-0ea723e3b826\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkfckb\", \"is_robot_indexable\": true, \"stickied\": false, \"author\": \"jack-of-some\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bkfare\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bkfckb/org_mode_with_spacemacs_the_absolute_minimum/\", \"parent_whitelist_status\": null, \"report_reasons\": null, \"url\": \"https://youtu.be/S4f-GUxu3CY\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556928664.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 03, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bk83wf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556916567.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bk83wf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bk83wf/weekly_rorgmode_open_discussion_may_03_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bk83wf/weekly_rorgmode_open_discussion_may_03_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556887767.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Does anyone have experience trying to share Emacs/org-mode with outsiders? \\n\\nI do realize how easily it is for me to sound like an evangelist when it comes to expressing my thoughts about the utility of a \\\"second brain\\\" on your computer, but I have been wondering on what aspects of the org-mode experience are most appealing to people who have mild interests in becoming more productive.\\n\\nPersonally, I tend to default to the \\\"don't ask don't tell\\\" approach when it comes to my deeper interests, but there seems to be something about this integration with technology that I wish I was taught about in school and thus, I feel a need to inform others. \\n\\nAll of this is not to forget that certain systems aren't suitable for all people, but I'm curious to know if anyone has a practiced \\\"elevator pitch\\\" for Emacs and org-mode? How do you go about sharing this, if you even do it at all? \\n\\nThanks\", \"author_fullname\": \"t2_w32dym0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sharing org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjyhvh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556851291.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone have experience trying to share Emacs/org-mode with outsiders? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI do realize how easily it is for me to sound like an evangelist when it comes to expressing my thoughts about the utility of a \\u0026quot;second brain\\u0026quot; on your computer, but I have been wondering on what aspects of the org-mode experience are most appealing to people who have mild interests in becoming more productive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPersonally, I tend to default to the \\u0026quot;don\\u0026#39;t ask don\\u0026#39;t tell\\u0026quot; approach when it comes to my deeper interests, but there seems to be something about this integration with technology that I wish I was taught about in school and thus, I feel a need to inform others. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll of this is not to forget that certain systems aren\\u0026#39;t suitable for all people, but I\\u0026#39;m curious to know if anyone has a practiced \\u0026quot;elevator pitch\\u0026quot; for Emacs and org-mode? How do you go about sharing this, if you even do it at all? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjyhvh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"swarmalator\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjyhvh/sharing_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjyhvh/sharing_orgmode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556822491.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, \\n\\n\\u0026#x200B;\\n\\nI'm using orgmode + komascript to generate pdf from org-mode. It seems very handy.\\n\\nHowever, I would like to be able to store some \\\"profiles\\\" and then include it in my letter.\\n\\nExample: \\nA profile for personal letters which would include my personal address\\n\\nA profile for professional letters, which would include my office address\\n\\nIt seems like it is possible with LCO files but the documentation is not very clear about that.\\n\\n\\u0026#x200B;\\n\\nDoes anyone have experience with that?\\n\\nMany thanks in advance\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Managing different letter Template with Org mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjv50e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556833647.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using orgmode + komascript to generate pdf from org-mode. It seems very handy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I would like to be able to store some \\u0026quot;profiles\\u0026quot; and then include it in my letter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample:\\u003Cbr/\\u003E\\nA profile for personal letters which would include my personal address\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA profile for professional letters, which would include my office address\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems like it is possible with LCO files but the documentation is not very clear about that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have experience with that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjv50e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjv50e/managing_different_letter_template_with_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjv50e/managing_different_letter_template_with_org_mode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556804847.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Inspired by this [StackExchange post](https://superuser.com/questions/567916/org-mode-command-to-create-new-file-from-subtree/568300#568300), I made a function that exports the current subtree to a file and replaces it with a link to that file. More specifically it does the following:\\n\\n1. Copy the subtree to a file whose filename is the subtree title\\n2. Replace the subtree with a link to the newly created file\\n3. In the file, promote all direct children of the subtree node to be level-1 headings\\n4. In the file, convert the original subtree title to be a `#+TITLE` parameter\\n\\nFor my work, I use a date-tree file to store my work notes. I use this function to move large subtrees of notes to their own dedicated file in order to keep the work notes file from growing too large. It seems to work well enough, but I feel that the code I have written is overly complicated. In particular, the mechanism I use to delete everything but the subtree headline is very similar to the mechanism I use to promote of the subtree children. Is there a simpler, more streamlined way to implement this function? The code is listed below:\\n\\n (defun sbr-org-file-from-subtree (\\u0026optional name)\\n \\\"Take the current subtree and create a new file from\\n it. Replace the current subtree with its main heading (i.e.,\\n delete all of its childen), and make the heading into a link\\n to the newly created file,\\n \\n In the new file, promote all direct children of the original\\n subtree to be level 1-headings, and transform the original\\n heading into the '#+TITLE' parameter.\\n \\n If called with the universal argument, prompt for new filename,\\n otherwise use the subtree title.\\\"\\n (interactive \\\"P\\\")\\n (org-back-to-heading)\\n (let ((filename (cond\\n (current-prefix-arg\\n (expand-file-name\\n (read-file-name \\\"New file name: \\\")))\\n (t\\n (concat\\n (expand-file-name\\n (org-element-property :title\\n (org-element-at-point))\\n default-directory)\\n \\\".org\\\")))))\\n ;; Copy current subtree into clipboard \\n (org-copy-subtree)\\n \\n ;; Delete everything but the headline\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (call-interactively 'delete-region)\\n (org-previous-visible-heading 1)\\n \\n ;; Mark the current headline text\\n (org-end-of-line)\\n (call-interactively 'set-mark-command)\\n (org-beginning-of-line)\\n \\n ;; Convert headline to a link of the to-be-created file\\n (org-insert-link nil filename)\\n \\n ;; Create file for subtree\\n (with-temp-file filename\\n ;; Paste in the subtree\\n (org-mode)\\n (org-paste-subtree)\\n ;; Promote all children, original headline is at level \\\"zero\\\"\\n (sbr-org-promote-subtree-to-zero)\\n (insert \\\"#+TITLE: \\\"))))\\n \\n (defun sbr-org-promote-subtree-to-zero ()\\n \\\"Promote the entire subtree. If the root heading is at level 1,\\n 'promote' it to level 0 by removing the heading.\\\"\\n (interactive)\\n (if (= (org-current-level) 1)\\n (progn\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (org-do-promote)\\n (org-previous-visible-heading 1)\\n (org-mark-subtree)\\n (org-toggle-heading))\\n (org-promote-subtree)))\", \"author_fullname\": \"t2_7nfrv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cleaner way to export subtree to file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjulhb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556830403.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EInspired by this \\u003Ca href=\\\"https://superuser.com/questions/567916/org-mode-command-to-create-new-file-from-subtree/568300#568300\\\"\\u003EStackExchange post\\u003C/a\\u003E, I made a function that exports the current subtree to a file and replaces it with a link to that file. More specifically it does the following:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECopy the subtree to a file whose filename is the subtree title\\u003C/li\\u003E\\n\\u003Cli\\u003EReplace the subtree with a link to the newly created file\\u003C/li\\u003E\\n\\u003Cli\\u003EIn the file, promote all direct children of the subtree node to be level-1 headings\\u003C/li\\u003E\\n\\u003Cli\\u003EIn the file, convert the original subtree title to be a \\u003Ccode\\u003E#+TITLE\\u003C/code\\u003E parameter\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EFor my work, I use a date-tree file to store my work notes. I use this function to move large subtrees of notes to their own dedicated file in order to keep the work notes file from growing too large. It seems to work well enough, but I feel that the code I have written is overly complicated. In particular, the mechanism I use to delete everything but the subtree headline is very similar to the mechanism I use to promote of the subtree children. Is there a simpler, more streamlined way to implement this function? The code is listed below:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun sbr-org-file-from-subtree (\\u0026amp;optional name)\\n \\u0026quot;Take the current subtree and create a new file from\\n it. Replace the current subtree with its main heading (i.e.,\\n delete all of its childen), and make the heading into a link\\n to the newly created file,\\n\\nIn the new file, promote all direct children of the original\\n subtree to be level 1-headings, and transform the original\\n heading into the \\u0026#39;#+TITLE\\u0026#39; parameter.\\n\\nIf called with the universal argument, prompt for new filename,\\notherwise use the subtree title.\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (org-back-to-heading)\\n (let ((filename (cond\\n (current-prefix-arg\\n (expand-file-name\\n (read-file-name \\u0026quot;New file name: \\u0026quot;)))\\n (t\\n (concat\\n (expand-file-name\\n (org-element-property :title\\n (org-element-at-point))\\n default-directory)\\n \\u0026quot;.org\\u0026quot;)))))\\n ;; Copy current subtree into clipboard \\n (org-copy-subtree)\\n\\n ;; Delete everything but the headline\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (call-interactively \\u0026#39;delete-region)\\n (org-previous-visible-heading 1)\\n\\n ;; Mark the current headline text\\n (org-end-of-line)\\n (call-interactively \\u0026#39;set-mark-command)\\n (org-beginning-of-line)\\n\\n ;; Convert headline to a link of the to-be-created file\\n (org-insert-link nil filename)\\n\\n ;; Create file for subtree\\n (with-temp-file filename\\n ;; Paste in the subtree\\n (org-mode)\\n (org-paste-subtree)\\n ;; Promote all children, original headline is at level \\u0026quot;zero\\u0026quot;\\n (sbr-org-promote-subtree-to-zero)\\n (insert \\u0026quot;#+TITLE: \\u0026quot;))))\\n\\n(defun sbr-org-promote-subtree-to-zero ()\\n \\u0026quot;Promote the entire subtree. If the root heading is at level 1,\\n\\u0026#39;promote\\u0026#39; it to level 0 by removing the heading.\\u0026quot;\\n (interactive)\\n (if (= (org-current-level) 1)\\n (progn\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (org-do-promote)\\n (org-previous-visible-heading 1)\\n (org-mark-subtree)\\n (org-toggle-heading))\\n (org-promote-subtree)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjulhb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cottasteel\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjulhb/cleaner_way_to_export_subtree_to_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjulhb/cleaner_way_to_export_subtree_to_file/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556801603.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_esdtt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to jump to a heading in a date tree\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjb692\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556700958.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"emacs.stackexchange.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjb692\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"plotnick\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjb692/how_to_jump_to_a_heading_in_a_date_tree/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://emacs.stackexchange.com/questions/50253/how-to-jump-to-a-heading-in-a-date-tree\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556672158.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How to export code blocks so that they will be side-by-side in exported HTML (like in table)? \\n\\nFor example:\\n\\n\\u0026#x200B;\\n\\n[Something like this](https://i.redd.it/g2njbopc0cv21.png)\", \"author_fullname\": \"t2_11whf3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Export code block side by side\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"g2njbopc0cv21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 73, \"x\": 250, \"u\": \"https://i.redd.it/g2njbopc0cv21.png\"}, \"m\": \"image/png\", \"id\": \"g2njbopc0cv21\"}}, \"name\": \"t3_bizbk6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556628452.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow to export code blocks so that they will be side-by-side in exported HTML (like in table)? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/g2njbopc0cv21.png\\\"\\u003ESomething like this\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bizbk6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lkmokadam\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bizbk6/export_code_block_side_by_side/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bizbk6/export_code_block_side_by_side/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556599652.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \" Create a file called issue tracker.org\\n\\nPut these in-buffer settings at the top of the file:\\n\\n #+AUTHOR: Your Name\\n #+STARTUP:indent\\n #+OPTIONS: num:nil toc:nil\\n #+TODO: ONCE(o) EPISODIC ONGOING POTENTIAL | RESOLVED IMPROVED UNRESOLVABLE TOLERATED INACTIVE\\n #+TODO: MALFUNCTION DAMAGE | REPAIRED REPLACED DISCARDED\\n #+TITLE:ISSUE TRACKER\\n \\n\\nAdd a capture template to your .emacs, e.g.:\\n\\n (\\\"i\\\" \\\"issue\\\" entry\\n (file+olp+datetree \\\"~ /org/issue tracker.org\\\")\\n \\\"* ONCE %?\\\" :time-prompt t)\\n\\n\\u0026#x200B;\\n\\nOutput appears in a datetree. Track issue statuses using TODO states. Use a sparse tree if you want to filter the log by status, date, or text string.\\n\\nExample output:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/fowvur8ow7v21.png\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using org-mode as a quick-and-dirty issue tracker.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"fowvur8ow7v21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 492, \"x\": 968, \"u\": \"https://i.redd.it/fowvur8ow7v21.png\"}, \"m\": \"image/png\", \"id\": \"fowvur8ow7v21\"}}, \"name\": \"t3_biqhjc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556578999.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECreate a file called issue tracker.org\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPut these in-buffer settings at the top of the file:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+AUTHOR: Your Name\\n#+STARTUP:indent\\n#+OPTIONS: num:nil toc:nil\\n#+TODO: ONCE(o) EPISODIC ONGOING POTENTIAL | RESOLVED IMPROVED UNRESOLVABLE TOLERATED INACTIVE\\n#+TODO: MALFUNCTION DAMAGE | REPAIRED REPLACED DISCARDED\\n#+TITLE:ISSUE TRACKER\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAdd a capture template to your .emacs, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;i\\u0026quot; \\u0026quot;issue\\u0026quot; entry\\n (file+olp+datetree \\u0026quot;~ /org/issue tracker.org\\u0026quot;)\\n \\u0026quot;* ONCE %?\\u0026quot; :time-prompt t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOutput appears in a datetree. Track issue statuses using TODO states. Use a sparse tree if you want to filter the log by status, date, or text string.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample output:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/fowvur8ow7v21.png\\\"\\u003Ehttps://i.redd.it/fowvur8ow7v21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"biqhjc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/biqhjc/using_orgmode_as_a_quickanddirty_issue_tracker/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/biqhjc/using_orgmode_as_a_quickanddirty_issue_tracker/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556550199.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I recently came across org-journal. Seems pretty sweet, but I'm overall more happy with using org-capture to log to a datetree. But, one thing I really liked about org-journal was that it was easy to set each entry to have a HH:MM timestamp as its headline title on creation.\\n\\nI've got something like\\n\\n (\\\"l\\\" \\\"Log\\\" entry (file+datetree \\\"log.org\\\") \\\"* %?\\n \\n %i\\\" :empty-lines 1 :clock-resume t)\\n\\nas my capture template. I'd love to have it the headline part be like \\\\`:\\\\* %H:%M %?\\\\`. But that doesn't work.\\n\\nIs there any way to get what I am after?\", \"author_fullname\": \"t2_mfiiw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"timestamp in capture template?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bim468\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556546700.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recently came across org-journal. Seems pretty sweet, but I\\u0026#39;m overall more happy with using org-capture to log to a datetree. But, one thing I really liked about org-journal was that it was easy to set each entry to have a HH:MM timestamp as its headline title on creation.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve got something like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;l\\u0026quot; \\u0026quot;Log\\u0026quot; entry (file+datetree \\u0026quot;log.org\\u0026quot;) \\u0026quot;* %?\\n\\n %i\\u0026quot; :empty-lines 1 :clock-resume t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eas my capture template. I\\u0026#39;d love to have it the headline part be like `:* %H:%M %?`. But that doesn\\u0026#39;t work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way to get what I am after?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bim468\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PhilosopherAboutTown\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bim468/timestamp_in_capture_template/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bim468/timestamp_in_capture_template/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556517900.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi I'm considering going to emacs org mode for work and school. One pretty critical question for me is: \\nI use Anki for studying. I take my notes and put them on Anki and I can walk around and get some studying done. Is there any similar thing with org-drill? So that I could sync flash cards to phone and study at any convenient time? Thanks\", \"author_fullname\": \"t2_21immxp8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Mobile drill\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bi3va7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556429497.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi I\\u0026#39;m considering going to emacs org mode for work and school. One pretty critical question for me is:\\u003Cbr/\\u003E\\nI use Anki for studying. I take my notes and put them on Anki and I can walk around and get some studying done. Is there any similar thing with org-drill? So that I could sync flash cards to phone and study at any convenient time? Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bi3va7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"a_person_anon\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bi3va7/mobile_drill/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bi3va7/mobile_drill/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556400697.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi. Is it possible to define a project as:\\n\\n1. a headline that is not a todo item, and\\n2. that has at least one direct child todo item (one level below)\\n\\nThis would allow nested projects. I want to add this to `org-agenda-custom-commands`, but am lacking the necessary elisp skills. I want to avoid having to use a `PROJECT` todo keyword for readability, nor a `PROJECT` tag, which demands diligence.\\n\\nBonus question: is it possible to additionally display a the direct parent project of sub-projects in the agenda view?\", \"author_fullname\": \"t2_tihct\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Project as a Headline that has direct Todo Item Children\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhwy7b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556381209.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi. Is it possible to define a project as:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Ea headline that is not a todo item, and\\u003C/li\\u003E\\n\\u003Cli\\u003Ethat has at least one direct child todo item (one level below)\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis would allow nested projects. I want to add this to \\u003Ccode\\u003Eorg-agenda-custom-commands\\u003C/code\\u003E, but am lacking the necessary elisp skills. I want to avoid having to use a \\u003Ccode\\u003EPROJECT\\u003C/code\\u003E todo keyword for readability, nor a \\u003Ccode\\u003EPROJECT\\u003C/code\\u003E tag, which demands diligence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBonus question: is it possible to additionally display a the direct parent project of sub-projects in the agenda view?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhwy7b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nopedoesntwork\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhwy7b/project_as_a_headline_that_has_direct_todo_item/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhwy7b/project_as_a_headline_that_has_direct_todo_item/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556352409.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 26, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhlvza\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556311753.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhlvza\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhlvza/weekly_rorgmode_open_discussion_april_26_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhlvza/weekly_rorgmode_open_discussion_april_26_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556282953.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to recreate the functionality of an old Mac app I saw over a decade ago that had the concept of \\\"variable time repeating tasks\\\".\\n\\nIn other words, do \\\"water the plants\\\" every 4 to 8 days. It looks like I can sort of do this with:\\n\\n EDIT: \\u003C2019-04-26 Fri .+8d -4d\\u003E\\n\\nBut does anyone know of a better way to accomplish this?\\n\\nIdeally I'd be able to see how often I watered the plants last month, showing a timeline with marks every time I complete the task. So:\\n\\n March: 1st, 5th, 12th, 20th, 24th, 29th\\n\\nTo see how lax I was, or if I was doing something too frequently.\\n\\nSorry, weird problem/request, and I'm pretty terrible at describing it.\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Repeating tasks, do X every a to b days?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhczz6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1556222407.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556250552.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to recreate the functionality of an old Mac app I saw over a decade ago that had the concept of \\u0026quot;variable time repeating tasks\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn other words, do \\u0026quot;water the plants\\u0026quot; every 4 to 8 days. It looks like I can sort of do this with:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EEDIT: \\u0026lt;2019-04-26 Fri .+8d -4d\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBut does anyone know of a better way to accomplish this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIdeally I\\u0026#39;d be able to see how often I watered the plants last month, showing a timeline with marks every time I complete the task. So:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EMarch: 1st, 5th, 12th, 20th, 24th, 29th\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ETo see how lax I was, or if I was doing something too frequently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESorry, weird problem/request, and I\\u0026#39;m pretty terrible at describing it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhczz6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhczz6/repeating_tasks_do_x_every_a_to_b_days/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhczz6/repeating_tasks_do_x_every_a_to_b_days/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556221752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_64sbo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Unexpected behavior in org-mode when dealing with paragraphs, for example \\\"vip\\\" (visual inner paragraph) and [ and ] don't work as they should. Help?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bh9imi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1728, \"scrubber_media_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_96\", \"dash_url\": \"https://v.redd.it/kj55kbq3bfu21/DASHPlaylist.mpd\", \"duration\": 27, \"hls_url\": \"https://v.redd.it/kj55kbq3bfu21/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556232582.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bh9imi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rainymood_XI\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bh9imi/unexpected_behavior_in_orgmode_when_dealing_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/kj55kbq3bfu21\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556203782.0, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1728, \"scrubber_media_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_96\", \"dash_url\": \"https://v.redd.it/kj55kbq3bfu21/DASHPlaylist.mpd\", \"duration\": 27, \"hls_url\": \"https://v.redd.it/kj55kbq3bfu21/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI want to filter the current agenda using elisp commands mapped to a shortcut. I know that I could create separate agenda for different filters but this time, I'd prefer to have an arbitrary agenda and filter it.\\n\\nIn my case, I'd like to show only higest priority tasks: `[#A]`\\n\\nI could not find a specific command for filtering according to priority. However, interactively this can be achieved using `org-agenda-filter-by-regexp` (mapped to `=`) and then entering the regular expression `.*\\\\[#A\\\\].*`.\\n\\nI tried to debug `org-agenda-filter-by-regexp` and then `org-agenda-filter-apply` in order to find out how the elisp command including the parameters has to look like when I want to use it in a DIY-function.\\n\\nWhen I apply `(org-agenda-filter-apply \\\"+.*\\\\\\\\[#A\\\\\\\\].*\\\" \\\"+\\\" nil)` in the agenda (via `M-:`), I only get `nil` and nothing is changed. This clearly is wrong somehow.\\n\\nWhen debugging my elisp command and comparing to the interactive invocation, the regex as well as the second parameter do not match. This is where my elisp knowledge ends so far.\\n\\nAre you able to help me finding out what the magic spell is to *activate* the filter via an elisp command?\\n\\nThanks!\\n\\nPS: What I could find out myself is the command to disable the filter: `(org-agenda-filter-show-all-re)` \\u2026 hooray.\", \"author_fullname\": \"t2_dp04z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Elisp command to filter the agenda to show only [#A] prio tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgzod3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556167047.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to filter the current agenda using elisp commands mapped to a shortcut. I know that I could create separate agenda for different filters but this time, I\\u0026#39;d prefer to have an arbitrary agenda and filter it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my case, I\\u0026#39;d like to show only higest priority tasks: \\u003Ccode\\u003E[#A]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI could not find a specific command for filtering according to priority. However, interactively this can be achieved using \\u003Ccode\\u003Eorg-agenda-filter-by-regexp\\u003C/code\\u003E (mapped to \\u003Ccode\\u003E=\\u003C/code\\u003E) and then entering the regular expression \\u003Ccode\\u003E.*\\\\[#A\\\\].*\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to debug \\u003Ccode\\u003Eorg-agenda-filter-by-regexp\\u003C/code\\u003E and then \\u003Ccode\\u003Eorg-agenda-filter-apply\\u003C/code\\u003E in order to find out how the elisp command including the parameters has to look like when I want to use it in a DIY-function.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I apply \\u003Ccode\\u003E(org-agenda-filter-apply \\u0026quot;+.*\\\\\\\\[#A\\\\\\\\].*\\u0026quot; \\u0026quot;+\\u0026quot; nil)\\u003C/code\\u003E in the agenda (via \\u003Ccode\\u003EM-:\\u003C/code\\u003E), I only get \\u003Ccode\\u003Enil\\u003C/code\\u003E and nothing is changed. This clearly is wrong somehow.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen debugging my elisp command and comparing to the interactive invocation, the regex as well as the second parameter do not match. This is where my elisp knowledge ends so far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre you able to help me finding out what the magic spell is to \\u003Cem\\u003Eactivate\\u003C/em\\u003E the filter via an elisp command?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: What I could find out myself is the command to disable the filter: \\u003Ccode\\u003E(org-agenda-filter-show-all-re)\\u003C/code\\u003E \\u2026 hooray.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgzod3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"murdsdrum\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgzod3/elisp_command_to_filter_the_agenda_to_show_only_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgzod3/elisp_command_to_filter_the_agenda_to_show_only_a/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556138247.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is there anyway to automate refiling according to tag? For example, let's say that I have a bunch of todos and notes in [inbox.org](https://inbox.org) captured by a template.\\n\\n\\u0026#x200B;\\n\\n* `TODO Finish task :project1:`\\n* `Reference for emacs theme :emacs:`\\n* `TODO Email Robert :project2:`\\n\\n\\u0026#x200B;\\n\\nCould all headings in [inbox.org](https://inbox.org) tagged :project1: be automatically refiled to [project1.org](https://project1.org); those tagged with :project2: refiled to [project2.org](https://project2.org); and those tagged :emacs: be refiled to [emacs.org](https://emacs.org)? maybe tied to a key binding, or through a cron job?\\n\\n\\u0026#x200B;\\n\\nMany thanks in advance!\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Automate refiling according to tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgy3v6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556159094.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there anyway to automate refiling according to tag? For example, let\\u0026#39;s say that I have a bunch of todos and notes in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E captured by a template.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003ETODO Finish task :project1:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EReference for emacs theme :emacs:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003ETODO Email Robert :project2:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECould all headings in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E tagged :project1: be automatically refiled to \\u003Ca href=\\\"https://project1.org\\\"\\u003Eproject1.org\\u003C/a\\u003E; those tagged with :project2: refiled to \\u003Ca href=\\\"https://project2.org\\\"\\u003Eproject2.org\\u003C/a\\u003E; and those tagged :emacs: be refiled to \\u003Ca href=\\\"https://emacs.org\\\"\\u003Eemacs.org\\u003C/a\\u003E? maybe tied to a key binding, or through a cron job?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgy3v6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556130294.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"On org-agenda, a new window is opened with the agenda. How can I open org-agenda in the current window and not have it open a new one?\", \"author_fullname\": \"t2_q43ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Open org-agenda in current window\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgpycx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556106434.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn org-agenda, a new window is opened with the agenda. How can I open org-agenda in the current window and not have it open a new one?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgpycx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HumanBrainMapper\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgpycx/open_orgagenda_in_current_window/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgpycx/open_orgagenda_in_current_window/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556077634.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I can't seem to get the variable to expand into src block\\n\\n #+BEGIN_SRC conf :tangle ~/.config/mine.conf :var argument=abcde\\n setting1 1234\\n setting2 argument\\n #+END_SRC\\n\\nWhen I export the file for tangling (C-c C-v t), the \\\"argument\\\" keyword is not expanded into \\\"abcde\\\". \\n\\nI realise this is because I am not evaluatiing the block but exporting it. \\n\\nHow do I achieve my desired output in the tangled file?\", \"author_fullname\": \"t2_xup40\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Passing variable into a org babel code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgdr5m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556035419.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t seem to get the variable to expand into src block\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+BEGIN_SRC conf :tangle ~/.config/mine.conf :var argument=abcde\\nsetting1 1234\\nsetting2 argument\\n#+END_SRC\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I export the file for tangling (C-c C-v t), the \\u0026quot;argument\\u0026quot; keyword is not expanded into \\u0026quot;abcde\\u0026quot;. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI realise this is because I am not evaluatiing the block but exporting it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I achieve my desired output in the tangled file?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgdr5m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tomatoaway\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgdr5m/passing_variable_into_a_org_babel_code/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgdr5m/passing_variable_into_a_org_babel_code/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1556006619.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a custom clocktable as a dynamic block that I'd like to export alongside an agenda view to a file. \\n\\nIs it possible to either create a dynamic block with a custom agenda view (i.e. have this as two dynamic blocks)? Or is it possible to have an agenda execute/display a custom dynamic block (add the dyn block to the org agenda and export via the agenda?)\", \"author_fullname\": \"t2_1mhaum0e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Execute agenda command as a dynamic block? Or add a dynamic block to block agenda?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bg1vh6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555967071.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a custom clocktable as a dynamic block that I\\u0026#39;d like to export alongside an agenda view to a file. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs it possible to either create a dynamic block with a custom agenda view (i.e. have this as two dynamic blocks)? Or is it possible to have an agenda execute/display a custom dynamic block (add the dyn block to the org agenda and export via the agenda?)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bg1vh6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jethro_spackle\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bg1vh6/execute_agenda_command_as_a_dynamic_block_or_add/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bg1vh6/execute_agenda_command_as_a_dynamic_block_or_add/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555938271.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a narrowing function I use which I detail in [this post.](https://www.reddit.com/r/emacs/comments/b8jqor/making_orgmode_narrowing_as_intuitive_as_workflow/) However, is there a way that I can take the heading I narrowed into and turn into the title of the newly created indirect buffer? So for example:\\n\\nTake this:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/l7quj7b7ult21.png\\n\\nand transform into this:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/tvm0qqueult21.png\\n\\nBonus points if changing the title of the indirect buffer also updates the heading in the parent buffer.\", \"author_fullname\": \"t2_39gpz9p3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make parent heading of subtree of indirect buffer appear as title\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"tvm0qqueult21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 116, \"x\": 266, \"u\": \"https://i.redd.it/tvm0qqueult21.png\"}, \"m\": \"image/png\", \"id\": \"tvm0qqueult21\"}, \"l7quj7b7ult21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 154, \"x\": 193, \"u\": \"https://i.redd.it/l7quj7b7ult21.png\"}, \"m\": \"image/png\", \"id\": \"l7quj7b7ult21\"}}, \"name\": \"t3_bfnzqd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555875949.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a narrowing function I use which I detail in \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/b8jqor/making_orgmode_narrowing_as_intuitive_as_workflow/\\\"\\u003Ethis post.\\u003C/a\\u003E However, is there a way that I can take the heading I narrowed into and turn into the title of the newly created indirect buffer? So for example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/l7quj7b7ult21.png\\\"\\u003Ehttps://i.redd.it/l7quj7b7ult21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand transform into this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/tvm0qqueult21.png\\\"\\u003Ehttps://i.redd.it/tvm0qqueult21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBonus points if changing the title of the indirect buffer also updates the heading in the parent buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bfnzqd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ykhurshid\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bfnzqd/make_parent_heading_of_subtree_of_indirect_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bfnzqd/make_parent_heading_of_subtree_of_indirect_buffer/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555847149.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"That's all (stick it in your .emacs of course, and M-x load-file RET .emacs)! I find it handy and use it to outline my day away from the agenda view, to take notes, or to keep a live tree of info for current tasks and it allows me to easily refile any text in said buffer should I decide to keep it later.\", \"author_fullname\": \"t2_3kdg6g4t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tip: Set *scratch* buffer default mode to Org: (setq initial-major-mode 'org-mode)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bf3xw3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1555739479.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555734699.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s all (stick it in your .emacs of course, and M-x load-file RET .emacs)! I find it handy and use it to outline my day away from the agenda view, to take notes, or to keep a live tree of info for current tasks and it allows me to easily refile any text in said buffer should I decide to keep it later.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bf3xw3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PeanutButterGuru\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bf3xw3/tip_set_scratch_buffer_default_mode_to_org_setq/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bf3xw3/tip_set_scratch_buffer_default_mode_to_org_setq/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555705899.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 19, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_beyq0w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555706949.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"beyq0w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/beyq0w/weekly_rorgmode_open_discussion_april_19_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/beyq0w/weekly_rorgmode_open_discussion_april_19_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555678149.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Anyone use org-caldav? Do you know how to don't display the \\\"org caldav sync result\\\" buffer after sync?\", \"author_fullname\": \"t2_14ghl9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Don't show me \\\"org caldav sync result\\\" !\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bexsu1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555700116.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnyone use org-caldav? Do you know how to don\\u0026#39;t display the \\u0026quot;org caldav sync result\\u0026quot; buffer after sync?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bexsu1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"floZx\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bexsu1/dont_show_me_org_caldav_sync_result/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bexsu1/dont_show_me_org_caldav_sync_result/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555671316.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_2lebcxk6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"is it possible to rename the :ARCHIVE: tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bemm49\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555628701.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bemm49\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"grouchy_otter\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bemm49/is_it_possible_to_rename_the_archive_tag/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bemm49/is_it_possible_to_rename_the_archive_tag/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555599901.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a plain shopping list which I reuse. When I need an item I put a tick mark by it, and when I purchase it I marked it as ticked.\\n\\nPreparing a shopping list simply means frequenting the same list and reticking the things I need if they are unticked and usually means this type of syntax\\n\\n - [X] Item 1\\n - [ ] Item 2\\n\\nI am trying out orgzly with this syntax and backspacing in small touchkeyboard to edit lines like this is rather clunky.\\n\\nIs there another syntax that makes it easier to type on a mobile phone keyboard?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is the simplest way of express a shopping list in org?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_beaxfo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555552869.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a plain shopping list which I reuse. When I need an item I put a tick mark by it, and when I purchase it I marked it as ticked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPreparing a shopping list simply means frequenting the same list and reticking the things I need if they are unticked and usually means this type of syntax\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E- [X] Item 1\\n- [ ] Item 2\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI am trying out orgzly with this syntax and backspacing in small touchkeyboard to edit lines like this is rather clunky.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there another syntax that makes it easier to type on a mobile phone keyboard?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"beaxfo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/beaxfo/what_is_the_simplest_way_of_express_a_shopping/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/beaxfo/what_is_the_simplest_way_of_express_a_shopping/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555524069.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey folks. In the past I used Orgmode quite a lot, both for organizing my everyday life and for organizing my research. But then I grew tired of its text-heavy style. I wanted something more visual, more two dimensional. I tried Zim and even though it is a decent software, it was not as capable as the good Org. So I have a dilemma. Short of writing my own software, Org seems to be the only game in town for me.\\n\\n\\u0026#x200B;\\n\\nSo, is there any way to make Org more visual, more 2-dimensional? Or are there any such variants of it (or software inspired by it)? By more visual I mean the ability to have different font sizes (or headers), colors, etc. In short, basic HTML formatting capabilities. When I'm working on an Org file it's like I'm writing source code.\", \"author_fullname\": \"t2_15qtbm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Good old Orgmode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_be8m4x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1555514167.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555541001.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey folks. In the past I used Orgmode quite a lot, both for organizing my everyday life and for organizing my research. But then I grew tired of its text-heavy style. I wanted something more visual, more two dimensional. I tried Zim and even though it is a decent software, it was not as capable as the good Org. So I have a dilemma. Short of writing my own software, Org seems to be the only game in town for me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, is there any way to make Org more visual, more 2-dimensional? Or are there any such variants of it (or software inspired by it)? By more visual I mean the ability to have different font sizes (or headers), colors, etc. In short, basic HTML formatting capabilities. When I\\u0026#39;m working on an Org file it\\u0026#39;s like I\\u0026#39;m writing source code.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"be8m4x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"badmanbrown\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/be8m4x/good_old_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/be8m4x/good_old_orgmode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555512201.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Some of you may know the Don't break the Chain Method to gain good habits. \\n\\nI plan to organize this with a simple org table (Better suggestions are welcome).\\n\\nnow i Insert a Timestamp with `C-c .` how can I now generate like 1 month of lines in this table.\\n\\nOr how can I fill a table with consequtive Dates. \\n\\n\\u0026#x200B;\\n\\n[Table View](https://i.redd.it/wvee4lu9mls21.png)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[Wanted functionality](https://i.redd.it/gtvwmilkmls21.png)\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Don't Break the Chain with Org Mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"wvee4lu9mls21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 90, \"x\": 522, \"u\": \"https://i.redd.it/wvee4lu9mls21.png\"}, \"m\": \"image/png\", \"id\": \"wvee4lu9mls21\"}, \"gtvwmilkmls21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 294, \"x\": 495, \"u\": \"https://i.redd.it/gtvwmilkmls21.png\"}, \"m\": \"image/png\", \"id\": \"gtvwmilkmls21\"}}, \"name\": \"t3_bds2qx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555437328.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESome of you may know the Don\\u0026#39;t break the Chain Method to gain good habits. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI plan to organize this with a simple org table (Better suggestions are welcome).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Enow i Insert a Timestamp with \\u003Ccode\\u003EC-c .\\u003C/code\\u003E how can I now generate like 1 month of lines in this table.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr how can I fill a table with consequtive Dates. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/wvee4lu9mls21.png\\\"\\u003ETable View\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/gtvwmilkmls21.png\\\"\\u003EWanted functionality\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bds2qx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bds2qx/dont_break_the_chain_with_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bds2qx/dont_break_the_chain_with_org_mode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555408528.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone I've got a problem with my org agenda while using global linum mode. \\n\\nI have a function that generates a window layout with left an agenda and right another file \\n\\n\\nIf i use global linum mode the tags are always shifted to the right, so you cant read everything. \\n\\n \\n\\n\\n[with linum mode](https://i.redd.it/d6rhurfqpks21.png)\\n\\n\\u0026#x200B;\\n\\n[without linum mode](https://i.redd.it/l98vvqtvpks21.png)\\n\\n\\u0026#x200B;\\n\\nHow can I solve this problem\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Split Agenda Buffer Tag visability Error (linum mode)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"d6rhurfqpks21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 457, \"x\": 954, \"u\": \"https://i.redd.it/d6rhurfqpks21.png\"}, \"m\": \"image/png\", \"id\": \"d6rhurfqpks21\"}, \"l98vvqtvpks21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 450, \"x\": 977, \"u\": \"https://i.redd.it/l98vvqtvpks21.png\"}, \"m\": \"image/png\", \"id\": \"l98vvqtvpks21\"}}, \"name\": \"t3_bdqsi1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555426345.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone I\\u0026#39;ve got a problem with my org agenda while using global linum mode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a function that generates a window layout with left an agenda and right another file \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf i use global linum mode the tags are always shifted to the right, so you cant read everything. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/d6rhurfqpks21.png\\\"\\u003Ewith linum mode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/l98vvqtvpks21.png\\\"\\u003Ewithout linum mode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I solve this problem\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bdqsi1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bdqsi1/split_agenda_buffer_tag_visability_error_linum/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bdqsi1/split_agenda_buffer_tag_visability_error_linum/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555397545.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I define a timestamp that:\\n\\n\\u0026#x200B;\\n\\n* takes place on multiple consecutive days (date range)\\n* at a fixed time interval each day (e.g. 9am-5pm)\\n\\n\\u0026#x200B;\\n\\nI'm trying:\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E--\\u003C2019-04-30 Tue 09:00-21:00\\u003E\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E--\\u003C2019-04-30 Tue\\u003E\\n\\n\\u0026#x200B;\\n\\nBut only the first day show's a time, the rest is shown as a whole day event.\\n\\n\\u0026#x200B;\\n\\n \\u003C2019-04-23 Tue 09:00-21:00\\u003E\\n \\u003C2019-04-24 Wed 09:00-21:00\\u003E\\n \\u003C2019-04-25 Thu 09:00-21:00\\u003E\\n \\u003C2019-04-26 Fri 09:00-21:00\\u003E\\n \\u003C2019-04-27 Sat 09:00-21:00\\u003E\\n \\u003C2019-04-28 Sun 09:00-21:00\\u003E\\n \\u003C2019-04-28 Sun 09:00-21:00\\u003E\\n \\u003C2019-04-30 Tue 09:00-21:00\\u003E\\n\\nSeems to work, but is seriously broken =)\", \"author_fullname\": \"t2_dcfnv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Define a date range with time interval for each day?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bdekci\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555354229.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I define a timestamp that:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Etakes place on multiple consecutive days (date range)\\u003C/li\\u003E\\n\\u003Cli\\u003Eat a fixed time interval each day (e.g. 9am-5pm)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;--\\u0026lt;2019-04-30 Tue 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;--\\u0026lt;2019-04-30 Tue\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut only the first day show\\u0026#39;s a time, the rest is shown as a whole day event.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026lt;2019-04-23 Tue 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-24 Wed 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-25 Thu 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-26 Fri 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-27 Sat 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-28 Sun 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-28 Sun 09:00-21:00\\u0026gt;\\n\\u0026lt;2019-04-30 Tue 09:00-21:00\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESeems to work, but is seriously broken =)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bdekci\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"poiu-\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bdekci/define_a_date_range_with_time_interval_for_each/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bdekci/define_a_date_range_with_time_interval_for_each/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555325429.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly reports from org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd9prf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm starting to use more advanced features of org and am loving it!\\n\\nI'd like to be able to export a weekly report from org, based on TODOs I've either marked done or TODOs that have a timestamped note underneath them within the week previous to the current day. For example, if today is Thursday and I finished TODO A on Tuesday and made notes to TODO B on Friday and Wednesday but did not update TODO C at all, I'd like the export to contain TODOS A and B, along with any notes made under them in the past week.\\n\\nI imagine someone has implemented something like this before. Is there a module or package that does it, or an org agenda export config that would do it?\\n\\nThank you!\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly reports from org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd7asx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555303180.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m starting to use more advanced features of org and am loving it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to be able to export a weekly report from org, based on TODOs I\\u0026#39;ve either marked done or TODOs that have a timestamped note underneath them within the week previous to the current day. For example, if today is Thursday and I finished TODO A on Tuesday and made notes to TODO B on Friday and Wednesday but did not update TODO C at all, I\\u0026#39;d like the export to contain TODOS A and B, along with any notes made under them in the past week.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI imagine someone has implemented something like this before. Is there a module or package that does it, or an org agenda export config that would do it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd7asx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1555274380.0, \"media\": null, \"is_video\": false}], \"created\": 1555317009.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd9prf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bd7asx\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bd9prf/weekly_reports_from_org/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bd7asx/weekly_reports_from_org/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555288209.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"In Org, you arrange projects as a TODO with sub-TODOs (and so on). These TODOs may be ordered such that the first TODO in a project must be finished before the next TODO can start. I have two questions:\\n\\n1. Can you create an agenda that shows TODOs hierarchically? That is, an agenda that shows all the projects with sub-TODOs that need attention?\\n\\n2. Can an agenda be made to not show TODOs that are blocked by TODOs that still have to be done?\", \"author_fullname\": \"t2_baw354f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hierarchical Agendas?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bd4ka9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555288456.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn Org, you arrange projects as a TODO with sub-TODOs (and so on). These TODOs may be ordered such that the first TODO in a project must be finished before the next TODO can start. I have two questions:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECan you create an agenda that shows TODOs hierarchically? That is, an agenda that shows all the projects with sub-TODOs that need attention?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECan an agenda be made to not show TODOs that are blocked by TODOs that still have to be done?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bd4ka9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SmoothInternet\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bd4ka9/hierarchical_agendas/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555259656.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I try something like this:\\n\\n * Hello\\n ** World\\n Some *notes* /here/. \\n ** Foo\\n #+begin_src org\\n *Hello* +world+ /sailor/. =Emacs=.\\n #+end_src\\n \\nthe text inside the org src block does not get proper font-locking/syntax-highlighting for Org mode (e.g. `*Hello*` is not shown in bold; `+world+` is not struck-through, etc.). (If I open the src block in a new buffer with `C-c '` the proper font-locking applies in the new buffer.)\\n\\nLikewise, when the point is inside the org src block, the echo area displays `eldoc error: (error Variable binding depth exceeds max-specpdl-size)`.\\n\\nIs there any way around these issues with Org-in-Org? Or is this a limitation on embedded Org blocks in Org?\", \"author_fullname\": \"t2_8a43c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Getting proper font-locking/syntax-highlighting in embedded org src blocks in Org mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bct1in\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555206091.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I try something like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Hello\\n** World\\n Some *notes* /here/. \\n** Foo\\n#+begin_src org\\n*Hello* +world+ /sailor/. =Emacs=.\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ethe text inside the org src block does not get proper font-locking/syntax-highlighting for Org mode (e.g. \\u003Ccode\\u003E*Hello*\\u003C/code\\u003E is not shown in bold; \\u003Ccode\\u003E+world+\\u003C/code\\u003E is not struck-through, etc.). (If I open the src block in a new buffer with \\u003Ccode\\u003EC-c \\u0026#39;\\u003C/code\\u003E the proper font-locking applies in the new buffer.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELikewise, when the point is inside the org src block, the echo area displays \\u003Ccode\\u003Eeldoc error: (error Variable binding depth exceeds max-specpdl-size)\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way around these issues with Org-in-Org? Or is this a limitation on embedded Org blocks in Org?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bct1in\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"emacsomancer\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bct1in/getting_proper_fontlockingsyntaxhighlighting_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bct1in/getting_proper_fontlockingsyntaxhighlighting_in/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555177291.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is it possible to set (setq org-agenda-files) files as all .org files in a directory that contain \\\"project\\\" somewhere in their filename? I've been playing around with both (find-lisp-find-files) and also (file-expand-wildcards) but cannot make it work. Much documentation re \\\\*.org but not \\\\*project\\\\*.org. Many thanks in advance!\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Possible to set agenda files to files in a directory that match partial filename?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcnamp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555161639.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to set (setq org-agenda-files) files as all .org files in a directory that contain \\u0026quot;project\\u0026quot; somewhere in their filename? I\\u0026#39;ve been playing around with both (find-lisp-find-files) and also (file-expand-wildcards) but cannot make it work. Much documentation re *.org but not *project*.org. Many thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcnamp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcnamp/possible_to_set_agenda_files_to_files_in_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcnamp/possible_to_set_agenda_files_to_files_in_a/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555132839.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I recently update my `org` to the version `9.2`\\n(to be precise: `Org mode version 9.2.3 (9.2.3-4-g6ec402-elpaplus @ /home/nanounanue/.emacs.d/elpa/org-plus-contrib-20190408/`)\\n\\nI did it because I replaced the `ob-ipython` with `emacs-jupyter` (more stable, more features and now I am very happy)\\n\\nNow, I am experimenting the following hiccups:\\n\\n(a) When I try to insert a code block using the new keybinding `C-c C-,` I got:\\n\\n```\\nWarning (org):\\nPlease update the entries of `org-structure-template-alist'.\\n\\nIn Org 9.2 the format was changed from something like\\n\\n(\\\"s\\\" \\\"#+BEGIN_SRC ?\\\\n#+END_SRC\\\")\\n\\nto something like\\n\\n(\\\"s\\\" . \\\"src\\\")\\n\\nPlease refer to the documentation of `org-structure-template-alist'.\\n\\nThe following entries must be updated:\\n\\n((\\\"n\\\" \\\"#+BEGIN_NOTES\\\\n?\\\\n#+END_NOTES\\\")\\n(\\\"Q\\\" \\\"#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\\" \\\"#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\\"))\\n```\\n\\nI searched in my =.emacs= and I don't find those lines, actually my templates are:\\n\\n```\\n(add-to-list 'org-structure-template-alist\\n'(\\\"el\\\" . \\\"src emacs-lisp\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"sh\\\" . \\\"src shell\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"Q\\\" . \\\"src sql\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"py\\\" . \\\"src jupyter-python\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"md\\\" . \\\"src markdown\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"sr\\\" . \\\"src R\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"l\\\" . \\\"src lisp\\\"))\\n\\n(add-to-list 'org-structure-template-alist\\n'(\\\"cl\\\" . \\\"src clojure\\\"))\\n```\\n\\nSo, I am kind of lost here.\\n\\n\\n(b) My `sql` babel blocks now throw the following error everytime that the cursor enters the block\\n\\n```\\nDebugger entered--Lisp error: (wrong-type-argument stringp 5434)\\n#f(compiled-function (elem) #\\u003Cbytecode 0x1563983c7e95\\u003E)((:dbport . 5434))\\nmapconcat(#f(compiled-function (elem) #\\u003Cbytecode 0x1563983c7e95\\u003E) ((:results . \\\"drawer table replace\\\") (:exports . \\\"both\\\") (:cmdline . \\\"-q\\\") (:eval . \\\"no-export\\\") (:database . \\\"food\\\") (:dbpassword . \\\"some_password\\\") (:dbuser . \\\"food_user\\\") (:dbport . 5434) (:dbhost . \\\"0.0.0.0\\\") (:engine . \\\"postgresql\\\") (:tangle . \\\"no\\\") (:hlines . \\\"no\\\") (:noweb . \\\"no\\\") (:cache . \\\"no\\\") (:session . \\\"none\\\")) \\\" \\\")\\norg-eldoc-get-src-header()\\norg-eldoc-documentation-function()\\neldoc-print-current-symbol-info()\\n#f(compiled-function () #\\u003Cbytecode 0x1feb98d89639\\u003E)()\\napply(#f(compiled-function () #\\u003Cbytecode 0x1feb98d89639\\u003E) nil)\\ntimer-event-handler([t 0 0 100000 t #f(compiled-function () #\\u003Cbytecode 0x1feb98d89639\\u003E) nil idle 0])\\n```\\n\\n(c) If I try to refresh the headers of an org-mode buffer using `C-c C-c` I got the following error:\\n\\n```\\nDebugger entered--Lisp error: (void-function org-outline-overlay-data)\\norg-outline-overlay-data(use-markers)\\norg-ctrl-c-ctrl-c(nil)\\nfuncall-interactively(org-ctrl-c-ctrl-c nil)\\ncall-interactively(org-ctrl-c-ctrl-c nil nil)\\n#f(compiled-function (cmd \\u0026optional record-flag keys special) \\\"Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the `commandp' predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable `command-history'.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don't clear it.\\\" #\\u003Cbytecode 0x1feb98d60d25\\u003E)(org-ctrl-c-ctrl-c nil nil nil)\\nad-Advice-command-execute(#f(compiled-function (cmd \\u0026optional record-flag keys special) \\\"Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the `commandp' predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable `command-history'.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don't clear it.\\\" #\\u003Cbytecode 0x1feb98d60d25\\u003E) org-ctrl-c-ctrl-c)\\napply(ad-Advice-command-execute #f(compiled-function (cmd \\u0026optional record-flag keys special) \\\"Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the `commandp' predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable `command-history'.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don't clear it.\\\" #\\u003Cbytecode 0x1feb98d60d25\\u003E) org-ctrl-c-ctrl-c)\\ncommand-execute(org-ctrl-c-ctrl-c)\\n````\\n\\nAll these behaviour showed up with the upgrade to `org 9.2`. Could someone give me pointers or help?\\n\\nThanks in advance\", \"author_fullname\": \"t2_5q2ns\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help, can't find the errors!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcjl8u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555136152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recently update my \\u003Ccode\\u003Eorg\\u003C/code\\u003E to the version \\u003Ccode\\u003E9.2\\u003C/code\\u003E\\n(to be precise: \\u003Ccode\\u003EOrg mode version 9.2.3 (9.2.3-4-g6ec402-elpaplus @ /home/nanounanue/.emacs.d/elpa/org-plus-contrib-20190408/\\u003C/code\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did it because I replaced the \\u003Ccode\\u003Eob-ipython\\u003C/code\\u003E with \\u003Ccode\\u003Eemacs-jupyter\\u003C/code\\u003E (more stable, more features and now I am very happy)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, I am experimenting the following hiccups:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(a) When I try to insert a code block using the new keybinding \\u003Ccode\\u003EC-c C-,\\u003C/code\\u003E I got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E``\\u003Ccode\\u003E\\nWarning (org):\\nPlease update the entries of\\u003C/code\\u003Eorg-structure-template-alist\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Org 9.2 the format was changed from something like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u0026quot;s\\u0026quot; \\u0026quot;#+BEGIN_SRC ?\\\\n#+END_SRC\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eto something like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u0026quot;s\\u0026quot; . \\u0026quot;src\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease refer to the documentation of `org-structure-template-alist\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe following entries must be updated:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E((\\u0026quot;n\\u0026quot; \\u0026quot;#+BEGIN_NOTES\\\\n?\\\\n#+END_NOTES\\u0026quot;)\\n(\\u0026quot;Q\\u0026quot; \\u0026quot;#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\u0026quot; \\u0026quot;#+BEGIN_SRC sql-mode ?\\\\n\\\\n#+END_SRC\\u0026quot;))\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI searched in my =.emacs= and I don\\u0026#39;t find those lines, actually my templates are:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\n(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;el\\u0026quot; . \\u0026quot;src emacs-lisp\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;sh\\u0026quot; . \\u0026quot;src shell\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;Q\\u0026quot; . \\u0026quot;src sql\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;py\\u0026quot; . \\u0026quot;src jupyter-python\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;md\\u0026quot; . \\u0026quot;src markdown\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;sr\\u0026quot; . \\u0026quot;src R\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;l\\u0026quot; . \\u0026quot;src lisp\\u0026quot;))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(add-to-list \\u0026#39;org-structure-template-alist\\n\\u0026#39;(\\u0026quot;cl\\u0026quot; . \\u0026quot;src clojure\\u0026quot;))\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, I am kind of lost here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(b) My \\u003Ccode\\u003Esql\\u003C/code\\u003E babel blocks now throw the following error everytime that the cursor enters the block\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\nDebugger entered--Lisp error: (wrong-type-argument stringp 5434)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Ef(compiled-function (elem) #\\u0026lt;bytecode 0x1563983c7e95\\u0026gt;)((:dbport . 5434))\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003Emapconcat(#f(compiled-function (elem) #\\u0026lt;bytecode 0x1563983c7e95\\u0026gt;) ((:results . \\u0026quot;drawer table replace\\u0026quot;) (:exports . \\u0026quot;both\\u0026quot;) (:cmdline . \\u0026quot;-q\\u0026quot;) (:eval . \\u0026quot;no-export\\u0026quot;) (:database . \\u0026quot;food\\u0026quot;) (:dbpassword . \\u0026quot;some_password\\u0026quot;) (:dbuser . \\u0026quot;food_user\\u0026quot;) (:dbport . 5434) (:dbhost . \\u0026quot;0.0.0.0\\u0026quot;) (:engine . \\u0026quot;postgresql\\u0026quot;) (:tangle . \\u0026quot;no\\u0026quot;) (:hlines . \\u0026quot;no\\u0026quot;) (:noweb . \\u0026quot;no\\u0026quot;) (:cache . \\u0026quot;no\\u0026quot;) (:session . \\u0026quot;none\\u0026quot;)) \\u0026quot; \\u0026quot;)\\norg-eldoc-get-src-header()\\norg-eldoc-documentation-function()\\neldoc-print-current-symbol-info()\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Ef(compiled-function () #\\u0026lt;bytecode 0x1feb98d89639\\u0026gt;)()\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003Eapply(#f(compiled-function () #\\u0026lt;bytecode 0x1feb98d89639\\u0026gt;) nil)\\ntimer-event-handler([t 0 0 100000 t #f(compiled-function () #\\u0026lt;bytecode 0x1feb98d89639\\u0026gt;) nil idle 0])\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(c) If I try to refresh the headers of an org-mode buffer using \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E I got the following error:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\nDebugger entered--Lisp error: (void-function org-outline-overlay-data)\\norg-outline-overlay-data(use-markers)\\norg-ctrl-c-ctrl-c(nil)\\nfuncall-interactively(org-ctrl-c-ctrl-c nil)\\ncall-interactively(org-ctrl-c-ctrl-c nil nil)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003Ef(compiled-function (cmd \\u0026amp;optional record-flag keys special) \\u0026quot;Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the \\u003Ccode\\u003Ecommandp\\u0026#39; predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable\\u003C/code\\u003Ecommand-history\\u0026#39;.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don\\u0026#39;t clear it.\\u0026quot; #\\u0026lt;bytecode 0x1feb98d60d25\\u0026gt;)(org-ctrl-c-ctrl-c nil nil nil)\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003Ead-Advice-command-execute(#f(compiled-function (cmd \\u0026amp;optional record-flag keys special) \\u0026quot;Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the \\u003Ccode\\u003Ecommandp\\u0026#39; predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable\\u003C/code\\u003Ecommand-history\\u0026#39;.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don\\u0026#39;t clear it.\\u0026quot; #\\u0026lt;bytecode 0x1feb98d60d25\\u0026gt;) org-ctrl-c-ctrl-c)\\napply(ad-Advice-command-execute #f(compiled-function (cmd \\u0026amp;optional record-flag keys special) \\u0026quot;Execute CMD as an editor command.\\\\nCMD must be a symbol that satisfies the \\u003Ccode\\u003Ecommandp\\u0026#39; predicate.\\\\nOptional second arg RECORD-FLAG non-nil\\\\nmeans unconditionally put this command in the variable\\u003C/code\\u003Ecommand-history\\u0026#39;.\\\\nOtherwise, that is done only if an arg is read using the minibuffer.\\\\nThe argument KEYS specifies the value to use instead of (this-command-keys)\\\\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\\\\nThe argument SPECIAL, if non-nil, means that this command is executing\\\\na special event, so ignore the prefix argument and don\\u0026#39;t clear it.\\u0026quot; #\\u0026lt;bytecode 0x1feb98d60d25\\u0026gt;) org-ctrl-c-ctrl-c)\\ncommand-execute(org-ctrl-c-ctrl-c)\\n````\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll these behaviour showed up with the upgrade to \\u003Ccode\\u003Eorg 9.2\\u003C/code\\u003E. Could someone give me pointers or help?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcjl8u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nanounanue\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcjl8u/help_cant_find_the_errors/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcjl8u/help_cant_find_the_errors/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555107352.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Can Org-mode clone items such as outline entries or list items? I saw this behavior in an editor called \\\"LEO\\\" (https://leoeditor.com/tutorial-pim.html#clones). It allows you to create an item in one area of an outline, then create references to it from other areas. Changes made to any instance are propagated to all other instances.\\n\\nI am new to Emacs \\u0026 Org-mode and am documenting an upcoming trip to get familiar with these new tools. (Using Spacemacs to ease the transition from Vim to Emacs.) \\n\\nIf possible, I would like to clone some of the items such as flight data and local attractions so that they can be re-used in different places (itinerary, budget, etc.) without copying and pasting or otherwise duplicating the information.\", \"author_fullname\": \"t2_xhn00\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Clones in org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bch97g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555123663.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan Org-mode clone items such as outline entries or list items? I saw this behavior in an editor called \\u0026quot;LEO\\u0026quot; (\\u003Ca href=\\\"https://leoeditor.com/tutorial-pim.html#clones\\\"\\u003Ehttps://leoeditor.com/tutorial-pim.html#clones\\u003C/a\\u003E). It allows you to create an item in one area of an outline, then create references to it from other areas. Changes made to any instance are propagated to all other instances.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am new to Emacs \\u0026amp; Org-mode and am documenting an upcoming trip to get familiar with these new tools. (Using Spacemacs to ease the transition from Vim to Emacs.) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf possible, I would like to clone some of the items such as flight data and local attractions so that they can be re-used in different places (itinerary, budget, etc.) without copying and pasting or otherwise duplicating the information.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bch97g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NineMinuteNap\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bch97g/clones_in_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bch97g/clones_in_orgmode/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555094863.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 12, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcd6an\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555102149.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcd6an\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcd6an/weekly_rorgmode_open_discussion_april_12_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcd6an/weekly_rorgmode_open_discussion_april_12_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555073349.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello all, \\n\\nit's been a while since I posted something org-mode related. More recently I tried the Org-Gcal package and, after getting it to work, realized why it doesn't work. That is, on a style level, for me. \\n\\n\\u0026#x200B;\\n\\nThis post is less about the tool itself and more about how I use org-mode and why (in my opinion) you can't just straight-\\\"translate\\\" one to the other. It boils down to the one-line agenda item with all the information I need vs the more detailed \\\"list\\\" of Google Calendar which works much better on a smart phone then on a computer. This is a matter of opinion, and I'd love to hear yours.\\n\\n\\u0026#x200B;\\n\\nHere it is: [https://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/](https://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/)\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"About the difference between Org-mode and Google calendar\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bcczk3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1555100968.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello all, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eit\\u0026#39;s been a while since I posted something org-mode related. More recently I tried the Org-Gcal package and, after getting it to work, realized why it doesn\\u0026#39;t work. That is, on a style level, for me. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis post is less about the tool itself and more about how I use org-mode and why (in my opinion) you can\\u0026#39;t just straight-\\u0026quot;translate\\u0026quot; one to the other. It boils down to the one-line agenda item with all the information I need vs the more detailed \\u0026quot;list\\u0026quot; of Google Calendar which works much better on a smart phone then on a computer. This is a matter of opinion, and I\\u0026#39;d love to hear yours.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere it is: \\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/\\\"\\u003Ehttps://joshrollinswrites.com/help-desk-head-desk/why-gcal-failed/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bcczk3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bcczk3/about_the_difference_between_orgmode_and_google/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bcczk3/about_the_difference_between_orgmode_and_google/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1555072168.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Can I set a header argument to tangle blocks to another directory?\\n\\nI currently use this to tangle my files:\\n\\n #+PROPERTY: header-args :tangle yes\\n\\nSo I my blocks can be simpler:\\n\\n #+BEGIN_SRC emacs-lisp\\n (defun some-function ()\\n (interactive)\\n (message \\\"example\\\"))\\n #+END_SRC\\n\\nWhich is fine, but the files are created in the same directory. I wonder if I can do something like this instead:\\n\\n #+PROPERTY: header-args :tangle /path/to/some-other-directory\\n\\nSo, if was tangling a file called `example.org`, it would write to\\n\\n /path/to/some-other-directory/example.file\\n\\nI could use\\n\\n #+PROPERTY: header-args :tangle /path/to/some-other-directory/example.el\\n\\nbut I have a lot of files and a declaration that works for all of them would make it simpler to maintain them, as well as making alterations in my folders structure.\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can I set a header argument to tangle blocks to another directory?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_b9zzug\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1554548008.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan I set a header argument to tangle blocks to another directory?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI currently use this to tangle my files:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+PROPERTY: header-args :tangle yes\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo I my blocks can be simpler:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+BEGIN_SRC emacs-lisp\\n(defun some-function ()\\n(interactive)\\n(message \\u0026quot;example\\u0026quot;))\\n#+END_SRC\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhich is fine, but the files are created in the same directory. I wonder if I can do something like this instead:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+PROPERTY: header-args :tangle /path/to/some-other-directory\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo, if was tangling a file called \\u003Ccode\\u003Eexample.org\\u003C/code\\u003E, it would write to\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E/path/to/some-other-directory/example.file\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI could use\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+PROPERTY: header-args :tangle /path/to/some-other-directory/example.el\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ebut I have a lot of files and a declaration that works for all of them would make it simpler to maintain them, as well as making alterations in my folders structure.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"b9zzug\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/b9zzug/can_i_set_a_header_argument_to_tangle_blocks_to/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/b9zzug/can_i_set_a_header_argument_to_tangle_blocks_to/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1554519208.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\n\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 05, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_b9qspb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1554497365.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"b9qspb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/b9qspb/weekly_rorgmode_open_discussion_april_05_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/b9qspb/weekly_rorgmode_open_discussion_april_05_2019/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1554468565.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"(Xposting from r/spacemacs since this could also be an org problem.)\\n\\nI'm at my wits end trying to figure this out. I've reinstalled Spacemacs and all packages again and again, and I'm on the latest commit on the develop branch as of today.\\n\\n**Background:**\\n\\nI've configured `org-todo-keyword-faces` like so:\\n\\n ;; Define todo states\\n (setq org-todo-keywords\\n '((sequence \\\"NEXT(n)\\\" \\\"ACTION(a)\\\" \\\"WAIT(w)\\\" \\\"EVENT(e)\\\"\\n \\\"PROJECT(p)\\\" \\\"SCOPE(s)\\\" \\\"|\\\" \\\"DONE(d)\\\")))\\n \\n ;; Set todo keyword colors\\n (setq org-todo-keyword-faces\\n '((\\\"NEXT\\\" :background \\\"medium sea green\\\" :foreground \\\"white\\\" :weight bold)\\n (\\\"ACTION\\\" :foreground \\\"medium sea green\\\" :weight bold)\\n (\\\"WAIT\\\" :background \\\"yellow\\\" :foreground \\\"purple\\\" :weight bold)\\n (\\\"EVENT\\\" :background \\\"gray25\\\" :foreground \\\"white\\\" :weight bold)\\n (\\\"PROJECT\\\" :background \\\"firebrick\\\" :foreground \\\"white\\\" :weight bold)\\n (\\\"SCOPE\\\" :background \\\"dodger blue\\\" :foreground \\\"white\\\" :weight bold)\\n (\\\"DONE\\\" :background \\\"white\\\" :foreground \\\"black\\\" :weight bold)))\\n\\n**Problem:**\\n\\n[Here's what my buffers look like.](https://imgur.com/55SSWnz)\\n\\nThe faces seem to apply just fine, *except* for the NEXT and DONE states. In the above image, you can see that NEXT and DONE faces do not match what I've configured, while every other todo face works fine. Oddly enough, the faces are applied correctly when shown in the Org Todo buffer.\\n\\nNo matter what values I set in my config, those two will not change.\\n\\nEven if I *remove* the NEXT keyword from `org-todo-keywords` and restart, it will still highlight the keyword!\\n\\n**What I've tried:**\\n\\n* Reinstalled and upgraded to the latest Emacs and Spacemacs on the develop branch, including packages.\\n * At one point yesterday, the NEXT and DONE faces were correctly applied in-buffer, but somehow they've reverted back again.\\n * I was playing with themes, so could a theme perhaps have modified `org-done` and `org-todo` faces permanently?\\n* Deleting .emacs.d/.cache (I thought maybe the faces were somehow being cached)\\n* Disabling `font-lock-mode`\\n\\nThere might a bug *somewhere*, so I'd appreciate it if anyone could lend a hand in helping me figure this out!\\n\\n\\u0026#x200B;\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Customized org faces being overridden in buffer, but fine in Org todo buffer? [Spacemacs]\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_b9qrau\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1554497125.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E(Xposting from \\u003Ca href=\\\"/r/spacemacs\\\"\\u003Er/spacemacs\\u003C/a\\u003E since this could also be an org problem.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m at my wits end trying to figure this out. I\\u0026#39;ve reinstalled Spacemacs and all packages again and again, and I\\u0026#39;m on the latest commit on the develop branch as of today.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBackground:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve configured \\u003Ccode\\u003Eorg-todo-keyword-faces\\u003C/code\\u003E like so:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Define todo states\\n(setq org-todo-keywords\\n \\u0026#39;((sequence \\u0026quot;NEXT(n)\\u0026quot; \\u0026quot;ACTION(a)\\u0026quot; \\u0026quot;WAIT(w)\\u0026quot; \\u0026quot;EVENT(e)\\u0026quot;\\n \\u0026quot;PROJECT(p)\\u0026quot; \\u0026quot;SCOPE(s)\\u0026quot; \\u0026quot;|\\u0026quot; \\u0026quot;DONE(d)\\u0026quot;)))\\n\\n;; Set todo keyword colors\\n(setq org-todo-keyword-faces\\n \\u0026#39;((\\u0026quot;NEXT\\u0026quot; :background \\u0026quot;medium sea green\\u0026quot; :foreground \\u0026quot;white\\u0026quot; :weight bold)\\n (\\u0026quot;ACTION\\u0026quot; :foreground \\u0026quot;medium sea green\\u0026quot; :weight bold)\\n (\\u0026quot;WAIT\\u0026quot; :background \\u0026quot;yellow\\u0026quot; :foreground \\u0026quot;purple\\u0026quot; :weight bold)\\n (\\u0026quot;EVENT\\u0026quot; :background \\u0026quot;gray25\\u0026quot; :foreground \\u0026quot;white\\u0026quot; :weight bold)\\n (\\u0026quot;PROJECT\\u0026quot; :background \\u0026quot;firebrick\\u0026quot; :foreground \\u0026quot;white\\u0026quot; :weight bold)\\n (\\u0026quot;SCOPE\\u0026quot; :background \\u0026quot;dodger blue\\u0026quot; :foreground \\u0026quot;white\\u0026quot; :weight bold)\\n (\\u0026quot;DONE\\u0026quot; :background \\u0026quot;white\\u0026quot; :foreground \\u0026quot;black\\u0026quot; :weight bold)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProblem:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/55SSWnz\\\"\\u003EHere\\u0026#39;s what my buffers look like.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe faces seem to apply just fine, \\u003Cem\\u003Eexcept\\u003C/em\\u003E for the NEXT and DONE states. In the above image, you can see that NEXT and DONE faces do not match what I\\u0026#39;ve configured, while every other todo face works fine. Oddly enough, the faces are applied correctly when shown in the Org Todo buffer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo matter what values I set in my config, those two will not change.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEven if I \\u003Cem\\u003Eremove\\u003C/em\\u003E the NEXT keyword from \\u003Ccode\\u003Eorg-todo-keywords\\u003C/code\\u003E and restart, it will still highlight the keyword!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat I\\u0026#39;ve tried:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EReinstalled and upgraded to the latest Emacs and Spacemacs on the develop branch, including packages.\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAt one point yesterday, the NEXT and DONE faces were correctly applied in-buffer, but somehow they\\u0026#39;ve reverted back again.\\u003C/li\\u003E\\n\\u003Cli\\u003EI was playing with themes, so could a theme perhaps have modified \\u003Ccode\\u003Eorg-done\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-todo\\u003C/code\\u003E faces permanently?\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDeleting .emacs.d/.cache (I thought maybe the faces were somehow being cached)\\u003C/li\\u003E\\n\\u003Cli\\u003EDisabling \\u003Ccode\\u003Efont-lock-mode\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThere might a bug \\u003Cem\\u003Esomewhere\\u003C/em\\u003E, so I\\u0026#39;d appreciate it if anyone could lend a hand in helping me figure this out!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"b9qrau\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/b9qrau/customized_org_faces_being_overridden_in_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/b9qrau/customized_org_faces_being_overridden_in_buffer/\", \"subreddit_subscribers\": 4790, \"created_utc\": 1554468325.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_b9qrau\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["433977"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:31 GMT"], "x-ratelimit-remaining": ["570.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["30"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914351.503591,VS0,VE1122"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["450"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:32:31"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_bxu83g"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:32 GMT"], "x-ratelimit-remaining": ["569.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["31"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914352.482545,VS0,VE71"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["448"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_bxu83g"}, "recorded_at": "2019-06-07T13:32:32"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsgv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cbr7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Heroquetarro10\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559899469.0, \"send_replies\": true, \"parent_id\": \"t3_bxsgv0\", \"score\": 1, \"author_fullname\": \"t2_288py4gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003Etest test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test\\n\\nYes\", \"link_title\": \"Text\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cbr7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etest test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYes\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/eq9cbr7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"report_reasons\": null, \"link_author\": \"Heroquetarro10\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"created\": 1559928269.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsgv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9c8db\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Heroquetarro10\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559899311.0, \"send_replies\": true, \"parent_id\": \"t3_bxsgv0\", \"score\": 1, \"author_fullname\": \"t2_288py4gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E test\", \"link_title\": \"Text\", \"author_flair_css_class\": null, \"name\": \"t1_eq9c8db\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/eq9c8db/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"report_reasons\": null, \"link_author\": \"Heroquetarro10\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"created\": 1559928111.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwsi3l\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq4tbku\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"testforcal\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559785341.0, \"send_replies\": true, \"parent_id\": \"t3_bwsi3l\", \"score\": 1, \"author_fullname\": \"t2_3wac7yjb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"test!\", \"link_title\": \"I CAN GO 15 SECONDS WITH ANYTHING. Howard looks like he is going to make doodie in his pants when GB hijacks his mic. Would GB walk away from this encounter if he bullied Howard in 2019? T O P L E S S\", \"author_flair_css_class\": null, \"name\": \"t1_eq4tbku\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/eq4tbku/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/\", \"report_reasons\": null, \"link_author\": \"Gooforme\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\\u0026t=2s\", \"created\": 1559814141.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwme1e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyizc2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"InsiderMemeBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559637515.0, \"send_replies\": true, \"parent_id\": \"t3_bwme1e\", \"score\": 1, \"author_fullname\": \"t2_2sm6difp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Template](/r/InsiderMemeTrading/comments/bwmd74/test/)\", \"link_title\": \"Image test\", \"author_flair_css_class\": null, \"name\": \"t1_epyizc2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/InsiderMemeTrading/comments/bwmd74/test/\\\"\\u003ETemplate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwme1e/image_test/epyizc2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwme1e/image_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/xju3qepdxa231.jpg\", \"created\": 1559666315.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwme78\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyiz7w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Crywren\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559637509.0, \"send_replies\": true, \"parent_id\": \"t3_bwme78\", \"score\": 1, \"author_fullname\": \"t2_18vy1b\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif](https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif)\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_epyiz7w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif\\\"\\u003Ehttps://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwme78/test/epyiz7w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwme78/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/vzxqgtbhxa231.png\", \"created\": 1559666309.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmads\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyih18\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"InsiderMemeBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559636627.0, \"send_replies\": true, \"parent_id\": \"t3_bwmads\", \"score\": 1, \"author_fullname\": \"t2_2sm6difp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Template](/r/InsiderMemeTrading/comments/bwmajp/cap_pointing/)\", \"link_title\": \"yeet\", \"author_flair_css_class\": null, \"name\": \"t1_epyih18\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/InsiderMemeTrading/comments/bwmajp/cap_pointing/\\\"\\u003ETemplate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwmads/yeet/epyih18/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwmads/yeet/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/b0ad3b9gua231.jpg\", \"created\": 1559665427.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw86r0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epwwjmw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erebusmaster\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559586407.0, \"send_replies\": true, \"parent_id\": \"t3_bw86r0\", \"score\": 1, \"author_fullname\": \"t2_gbhji\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"success!\", \"link_title\": \"testagain3\", \"author_flair_css_class\": null, \"name\": \"t1_epwwjmw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Esuccess!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bw86r0/testagain3/epwwjmw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"report_reasons\": null, \"link_author\": \"erebusmaster\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"created\": 1559615207.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epn2c0q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Brewsterion\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559320247.0, \"send_replies\": true, \"parent_id\": \"t1_epn250f\", \"score\": 1, \"author_fullname\": \"t2_118qqr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"A few days usually, just send it to the mods to get it approved. They\\u2019ll give some more feedback if it\\u2019s needed.\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_epn2c0q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA few days usually, just send it to the mods to get it approved. They\\u2019ll give some more feedback if it\\u2019s needed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/epn2c0q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559349047.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epn250f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SYwaves\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559320172.0, \"send_replies\": true, \"parent_id\": \"t1_eplphoy\", \"score\": 2, \"author_fullname\": \"t2_2j4j6rg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks man. I\\u2019m still thinking of making more edits, but 3790 makes taking the declass to any solid conclusion difficult:P\\n\\nAs a side note, how long does it usually take to get approved?\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_epn250f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks man. I\\u2019m still thinking of making more edits, but 3790 makes taking the declass to any solid conclusion difficult:P\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a side note, how long does it usually take to get approved?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/epn250f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559348972.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv7huc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epm852r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"binjajer\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559309424.0, \"send_replies\": false, \"parent_id\": \"t3_bv7huc\", \"score\": 1, \"author_fullname\": \"t2_3g10qxu5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Tired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens? \\n\\n\\nCheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.) \\n\\n\\n[https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/](https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/) \\n\\n\\nSquadron discord details will be disbursed upon application. \\n\\n\\n Fly bigly, commanders!\", \"link_title\": \"Make the Galaxy Great Again!\", \"author_flair_css_class\": null, \"name\": \"t1_epm852r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\\"\\u003Ehttps://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESquadron discord details will be disbursed upon application. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFly bigly, commanders!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/epm852r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"report_reasons\": null, \"link_author\": \"binjajer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"created\": 1559338224.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplphoy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Brewsterion\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559300826.0, \"send_replies\": true, \"parent_id\": \"t3_bv2mv5\", \"score\": 1, \"author_fullname\": \"t2_118qqr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"As a frequent poster to SCPD, I like what you\\u2019ve done here with explaining all the references and the main theme of the article. Good luck on getting it approved by mods.\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_eplphoy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a frequent poster to SCPD, I like what you\\u2019ve done here with explaining all the references and the main theme of the article. Good luck on getting it approved by mods.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/eplphoy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559329626.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buz6bd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epjgsbw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dwolfj\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559253716.0, \"send_replies\": true, \"parent_id\": \"t3_buz6bd\", \"score\": 1, \"author_fullname\": \"t2_2awf2pwl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" ............................................________ \\n ....................................,.-'\\\"...................``~., \\n .............................,.-\\\"...................................\\\"-., \\n .........................,/...............................................\\\":, \\n .....................,?......................................................, \\n .................../...........................................................,} \\n ................./......................................................,:`^`..} \\n .............../...................................................,:\\\"........./ \\n ..............?.....__.........................................:`.........../ \\n ............./__.(.....\\\"~-,_..............................,:`........../ \\n .........../(_....\\\"~,_........\\\"~,_....................,:`........_/ \\n ..........{.._$;_......\\\"=,_.......\\\"-,_.......,.-~-,},.~\\\";/....} \\n ...........((.....*~_.......\\\"=-._......\\\";,,./`..../\\\"............../ \\n ...,,,___.`~,......\\\"~.,....................`.....}............../ \\n ............(....`=-,,.......`........................(......;_,,-\\\" \\n ............/.`~,......`-...................................../ \\n .............`~.*-,.....................................|,./.....,__ \\n ,,_..........}.\\u003E-._...................................|..............`=~-, \\n .....`=~-,__......`,................................. \\n ...................`=~-,,.,............................... \\n ................................`:,,...........................`..............__ \\n .....................................`=-,...................,%`\\u003E--==`` \\n ........................................_..........._,-%.......` \\n ...................................,\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_epjgsbw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E............................................________ \\n....................................,.-\\u0026#39;\\u0026quot;...................``~., \\n.............................,.-\\u0026quot;...................................\\u0026quot;-., \\n.........................,/...............................................\\u0026quot;:, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\u0026quot;........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\u0026quot;~-,_..............................,:`........../ \\n.........../(_....\\u0026quot;~,_........\\u0026quot;~,_....................,:`........_/ \\n..........{.._$;_......\\u0026quot;=,_.......\\u0026quot;-,_.......,.-~-,},.~\\u0026quot;;/....} \\n...........((.....*~_.......\\u0026quot;=-._......\\u0026quot;;,,./`..../\\u0026quot;............../ \\n...,,,___.`~,......\\u0026quot;~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\u0026quot; \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u0026gt;-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u0026gt;--==`` \\n........................................_..........._,-%.......` \\n...................................,\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/buz6bd/test/epjgsbw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"report_reasons\": null, \"link_author\": \"dwolfj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"created\": 1559282516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbhff3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559142650.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts\\n**1 Correct Seed:** 15pts\\n**2 Correct Seeds:** +30pts(45 total)\\n**(S)emi(F)inalist:** 180pts\\n**(F)inalist:** 380pts\\n**(W)inners:** 780pts\\n**Score in favor of your winner:** 190pts\\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | |\\n | | | | | | |\\n Group A| | | | | | |\\nNRG|QF |1 |SF |F |W |4-3 | |\\nINTZ|QF |2 | | | | | |\\nPSG| | | | | | | WC |\\n | | | | | | |\\nGroup B | | | | | | | \\nRV | | | | | | | |\\nG2 |QF |1 |SF |F | | | |\\nOOO |QF |2 | | | | | |\\n | | | | | | |\\nGroup C | | | | | | |\\nRNG |QF |1 |SF | | | | |\\nFCB |QF |2 |SF | | | | |\\nRGE | | | | | | | |\\n | | | | | | |\\nGroup D | | | | | | |\\nLKE |QF |2 | | | | | |\\nC9 | | | | | | | WC |\\nTT |QF |1 | | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbhff3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts\\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15pts\\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30pts(45 total)\\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180pts\\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380pts\\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780pts\\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190pts\\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | |\\n | | | | | | |\\n Group A| | | | | | |\\nNRG|QF |1 |SF |F |W |4-3 | |\\nINTZ|QF |2 | | | | | |\\nPSG| | | | | | | WC |\\n | | | | | | |\\nGroup B | | | | | | | \\nRV | | | | | | | |\\nG2 |QF |1 |SF |F | | | |\\nOOO |QF |2 | | | | | |\\n | | | | | | |\\nGroup C | | | | | | |\\nRNG |QF |1 |SF | | | | |\\nFCB |QF |2 |SF | | | | |\\nRGE | | | | | | | |\\n | | | | | | |\\nGroup D | | | | | | |\\nLKE |QF |2 | | | | | |\\nC9 | | | | | | | WC |\\nTT |QF |1 | | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbhff3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559171450.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbfzp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559142036.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n(Q)uarter(F)inalist: 100 pts 1 Correct Seed: 15 pts 2 Correct Seeds: +30 pts(45 total) (S)emi(F)inalist: 180 pts (F)inalist: 380 pts (W)inners: 780 pts Score in favor of your winner: 190 pts Score in favor of your winner AND you guessed the other Finalist: +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\nWhat predictions would look like is this...\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n| | | | | | | | | | | | \\nGroup A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 | \\nINTZ|QF |2 | | | | | \\nPSG| | | | | | | \\nWC | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | | \\nOOO |QF |2 | | | | | | | | | | | \\nGroup C | | | | | | \\nRNG |QF |1 |SF | | | | \\nFCB |QF |2 |SF | | | | \\nRGE | | | | | | | | | | | | | \\nGroup D | | | | | | \\nLKE |QF |2 | | | | | \\nC9 | | | | | | | WC \\nTT |QF |1 | | | | |\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\nAdvice: Take the teams\\n\\nA1 v B2 D1 v C2\\n\\nB1 v A2 C1 v D2\\n\\nAnd substitute them with your predictions to keep track:\\n\\nNRG v OOO TT v FCB\\n\\nG2 v INTZ RNG v LKE\\n\\n Disclaimer: I\\u2019ll post this about every week and a couple days before LAN.\\n\\nRules and Guidelines:\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game. Please submit your predictions as unedited comments or Dms to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\nQuestions\\n\\nWhy am I not doing Dreamhack? I haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\nWill I do this for other tournaments in the future? For majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\nWill there be analysis on my part? Likely, but not guaranteed. I may try to get someone else on board.\\n\\nWhen and where will results be posted? Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n\\nNOTES:\\n\\nI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\nTwo Questions From Me:\\n\\nHow would you like the Wildcard picks to work? I\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n\\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be?\\n\\nThe table format will be in the comments.\\n\\nOne with a blank sheet. The other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbfzp8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Q)uarter(F)inalist: 100 pts 1 Correct Seed: 15 pts 2 Correct Seeds: +30 pts(45 total) (S)emi(F)inalist: 180 pts (F)inalist: 380 pts (W)inners: 780 pts Score in favor of your winner: 190 pts Score in favor of your winner AND you guessed the other Finalist: +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n| | | | | | | | | | | | \\nGroup A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 | \\nINTZ|QF |2 | | | | | \\nPSG| | | | | | | \\nWC | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | | \\nOOO |QF |2 | | | | | | | | | | | \\nGroup C | | | | | | \\nRNG |QF |1 |SF | | | | \\nFCB |QF |2 |SF | | | | \\nRGE | | | | | | | | | | | | | \\nGroup D | | | | | | \\nLKE |QF |2 | | | | | \\nC9 | | | | | | | WC \\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2 D1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2 C1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO TT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ RNG v LKE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERules and Guidelines:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game. Please submit your predictions as unedited comments or Dms to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuestions\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy am I not doing Dreamhack? I haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWill I do this for other tournaments in the future? For majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWill there be analysis on my part? Likely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen and where will results be posted? Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENOTES:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETwo Questions From Me:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work? I\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet. The other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbfzp8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170836.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbekt2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559141502.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts \\n**1 Correct Seed:** 15 pts \\n**2 Correct Seeds:** +30 pts(45 total) \\n**(S)emi(F)inalist:** 180 pts \\n**(F)inalist:** 380 pts \\n**(W)inners:** 780 pts \\n**Score in favor of your winner:** 190 pts \\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total) \\n \\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbekt2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts \\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15 pts \\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30 pts(45 total) \\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180 pts \\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380 pts \\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780 pts \\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190 pts \\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbekt2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170302.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbe3h9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559141322.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Why won\\u2019t the table work\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbe3h9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy won\\u2019t the table work\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbe3h9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170122.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559109977.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu790e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep9gim2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"elcocotero\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559109744.0, \"send_replies\": true, \"parent_id\": \"t3_bu790e\", \"score\": 1, \"author_fullname\": \"t2_ps7sm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"That would be [Danza Kuduro by puerto rican reggeaton artist Don Omar](https://www.youtube.com/watch?v=7zp1TbLFPp8).\\n\\n Now i'm not a big reggaeton fan but this guy's one of the best. \\\"Sali\\u00f3 el sol\\\" is amazing. Also \\\"Diva Virtual\\\".\", \"link_title\": \"Upcoming Tile Based Strategy Game: \\\"Claim Game\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ep9gim2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat would be \\u003Ca href=\\\"https://www.youtube.com/watch?v=7zp1TbLFPp8\\\"\\u003EDanza Kuduro by puerto rican reggeaton artist Don Omar\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow i\\u0026#39;m not a big reggaeton fan but this guy\\u0026#39;s one of the best. \\u0026quot;Sali\\u00f3 el sol\\u0026quot; is amazing. Also \\u0026quot;Diva Virtual\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/ep9gim2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/\", \"created\": 1559138544.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu8y26\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep8kbww\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dekarde\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559096074.0, \"send_replies\": true, \"parent_id\": \"t3_bu8y26\", \"score\": 1, \"author_fullname\": \"t2_jb0ym\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"field 1\", \"link_title\": \"up-test\", \"author_flair_css_class\": null, \"name\": \"t1_ep8kbww\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efield 1\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bu8y26/uptest/ep8kbww/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"report_reasons\": null, \"link_author\": \"Dekarde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"created\": 1559124874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bt0w6n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eosnfxq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"User09060657542\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558826026.0, \"send_replies\": true, \"parent_id\": \"t3_bt0w6n\", \"score\": 1, \"author_fullname\": \"t2_f4ra2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"..\", \"link_title\": \"testing 123\", \"author_flair_css_class\": null, \"name\": \"t1_eosnfxq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bt0w6n/testing_123/eosnfxq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"report_reasons\": null, \"link_author\": \"User09060657542\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"created\": 1558854826.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsyl0k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoruj65\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"T-8-0-0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558813105.0, \"send_replies\": true, \"parent_id\": \"t3_bsyl0k\", \"score\": 1, \"author_fullname\": \"t2_2zkr00l4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003Cblockquote class=\\\"imgur-embed-pub\\\" lang=\\\"en\\\" data-id=\\\"a/MWQxuVC\\\"\\u003E\\u003Ca href=\\\"[//imgur.com/MWQxuVC](//imgur.com/MWQxuVC)\\\"\\u003EBvS\\u003C/a\\u003E\\u003C/blockquote\\u003E\\u003Cscript async src=\\\"[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\", \"link_title\": \"BvS\", \"author_flair_css_class\": null, \"name\": \"t1_eoruj65\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;blockquote class=\\u0026quot;imgur-embed-pub\\u0026quot; lang=\\u0026quot;en\\u0026quot; data-id=\\u0026quot;a/MWQxuVC\\u0026quot;\\u0026gt;\\u0026lt;a href=\\u0026quot;[//imgur.com/MWQxuVC](//imgur.com/MWQxuVC)\\u0026quot;\\u0026gt;BvS\\u0026lt;/a\\u0026gt;\\u0026lt;/blockquote\\u0026gt;\\u0026lt;script async src=\\u0026quot;[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\u0026quot; charset=\\u0026quot;utf-8\\u0026quot;\\u0026gt;\\u0026lt;/script\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bsyl0k/bvs/eoruj65/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"report_reasons\": null, \"link_author\": \"T-8-0-0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"created\": 1558841905.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsveoo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoqtetr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"YOUREABOT\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558796617.0, \"send_replies\": true, \"parent_id\": \"t3_bsveoo\", \"score\": 1, \"author_fullname\": \"t2_3b1gaoke\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"dang, i never noticed the sound of kane cocking the gun.\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eoqtetr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edang, i never noticed the sound of kane cocking the gun.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bsveoo/test/eoqtetr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bsveoo/test/\", \"report_reasons\": null, \"link_author\": \"Ihuarraquax__\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=goQiwNZzoVA\", \"created\": 1558825417.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bskwuj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoo6l31\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558730695.0, \"send_replies\": true, \"parent_id\": \"t3_bskwuj\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"who who what what\", \"link_title\": \"Pokecube II\", \"author_flair_css_class\": null, \"name\": \"t1_eoo6l31\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewho who what what\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bskwuj/pokecube_ii/eoo6l31/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"report_reasons\": null, \"link_author\": \"vandergus\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"created\": 1558759495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs053g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eonr18y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"IncendiaryGames\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558719419.0, \"send_replies\": true, \"parent_id\": \"t1_eon0nk4\", \"score\": 1, \"author_fullname\": \"t2_kz0h4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks Ed! I just realized I accidentally linked you to my post preview post and not the one on /r/hometheater. Here is that link if you want to repost your comment there: \\nhttps://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eonr18y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks Ed! I just realized I accidentally linked you to my post preview post and not the one on \\u003Ca href=\\\"/r/hometheater\\\"\\u003E/r/hometheater\\u003C/a\\u003E. Here is that link if you want to repost your comment there: \\n\\u003Ca href=\\\"https://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\\\"\\u003Ehttps://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs053g/test/eonr18y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"report_reasons\": null, \"link_author\": \"IncendiaryGames\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"created\": 1558748219.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs053g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eon0nk4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"svsound\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558700754.0, \"send_replies\": true, \"parent_id\": \"t3_bs053g\", \"score\": 1, \"author_fullname\": \"t2_i0b8n\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Considering you're not going to be moving for 5+ years, I would size the subwoofer to your current system/loudspeakers and an apartment setting where you listen at -15 to -10. \\n\\nAn SB-4000 would be a good fit for your application, providing tight, accurate, punchy bass with excellent deep extension. You'll have plenty of SPL for the current playback level of -15 to -10. \\n\\nAfter running Audyssey XT32 in the Denon, make sure all speakers are set to Small and the crossovers should be fronts 60 Hz, center 80 Hz, surrounds 80 Hz and overheads 100-120 Hz (unless Audyssey sets them higher). \\n\\nUnder Bass the subwoofer mode should be LFE and the LPF/LFE should be 120 Hz. \\n\\nXT32 will have you level match the subwoofer to 75 dB as part of the initial set-up. This will likely result in the subwoofer volume set to somewhere in the -20 to -15 range (which is fine). The Denon will probably trim-out the subwoofer channel somewhere in the low negative range (which is also fine). \\n\\nIf you want to run the subwoofer channel hotter than the Audyssey level match, then increase the sub channel in the Denon by a few dB.\\n\\nEd M - SVS\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eon0nk4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EConsidering you\\u0026#39;re not going to be moving for 5+ years, I would size the subwoofer to your current system/loudspeakers and an apartment setting where you listen at -15 to -10. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn SB-4000 would be a good fit for your application, providing tight, accurate, punchy bass with excellent deep extension. You\\u0026#39;ll have plenty of SPL for the current playback level of -15 to -10. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter running Audyssey XT32 in the Denon, make sure all speakers are set to Small and the crossovers should be fronts 60 Hz, center 80 Hz, surrounds 80 Hz and overheads 100-120 Hz (unless Audyssey sets them higher). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnder Bass the subwoofer mode should be LFE and the LPF/LFE should be 120 Hz. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EXT32 will have you level match the subwoofer to 75 dB as part of the initial set-up. This will likely result in the subwoofer volume set to somewhere in the -20 to -15 range (which is fine). The Denon will probably trim-out the subwoofer channel somewhere in the low negative range (which is also fine). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you want to run the subwoofer channel hotter than the Audyssey level match, then increase the sub channel in the Denon by a few dB.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEd M - SVS\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs053g/test/eon0nk4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"report_reasons\": null, \"link_author\": \"IncendiaryGames\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"created\": 1558729554.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs5jg4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoj2zwz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558632235.0, \"send_replies\": true, \"parent_id\": \"t3_bs5jg4\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"care bears\", \"link_title\": \"my lil pony\", \"author_flair_css_class\": null, \"name\": \"t1_eoj2zwz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ecare bears\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs5jg4/my_lil_pony/eoj2zwz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs5jg4/my_lil_pony/\", \"report_reasons\": null, \"link_author\": \"fragglestickcar0\", \"author_flair_text\": null, \"link_url\": \"http://www.youtube.com/watch?v=21ix1OwPoY8\", \"created\": 1558661035.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs4zeb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoiznnd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"emackn\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558630564.0, \"send_replies\": true, \"parent_id\": \"t3_bs4zeb\", \"score\": 1, \"author_fullname\": \"t2_9gu2i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Build details:**\\n\\n* ***Aero Precision M4E1 Upper***\\n * Aero Precision 15\\\" Enhanced M-LOK handguard, gen 2\\n * Columbia River Arms 16\\\" 1:7 barrel in FDE\\n * VG6 Gamma 556 compensator\\n * spikes tactical gas tube\\n * superlative arms gas block\\n * Vortex Strikefire II red dot\\n* ***Aero Precision M4E1 Lower (stripped, PEW edition)***\\n * BCM BCG in FDE\\n * BAD mag release\\n * BAD ambi saftey\\n * Geissele 2 stage trigger\\n * Geissele buffer tube with super 42 spring\\n * Geissele Maritime Bolt Catch\\n\\n* ***Magpul furniture***\\n * MOE-K2 Grip\\n * CTR carbine stock\\n * Pmag\\n * handstop\\n * BUIS\\n\\n\\n**Other Images:**\\n\\n * [side fire select](https://i.postimg.cc/85FMMngJ/AR15-pew-2.jpg)\\n * [view of FDE barrel](https://i.postimg.cc/zB9WjSqd/AR15-pew-3.jpg)\\n\\n\\u0026nbsp;\\n\\n\\u0026nbsp;\\n\\nNext up is 10.5 300BLK in OD Green\", \"link_title\": \"First AR Build Friday\", \"author_flair_css_class\": null, \"name\": \"t1_eoiznnd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBuild details:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAero Precision M4E1 Upper\\u003C/em\\u003E\\u003C/strong\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAero Precision 15\\u0026quot; Enhanced M-LOK handguard, gen 2\\u003C/li\\u003E\\n\\u003Cli\\u003EColumbia River Arms 16\\u0026quot; 1:7 barrel in FDE\\u003C/li\\u003E\\n\\u003Cli\\u003EVG6 Gamma 556 compensator\\u003C/li\\u003E\\n\\u003Cli\\u003Espikes tactical gas tube\\u003C/li\\u003E\\n\\u003Cli\\u003Esuperlative arms gas block\\u003C/li\\u003E\\n\\u003Cli\\u003EVortex Strikefire II red dot\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAero Precision M4E1 Lower (stripped, PEW edition)\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBCM BCG in FDE\\u003C/li\\u003E\\n\\u003Cli\\u003EBAD mag release\\u003C/li\\u003E\\n\\u003Cli\\u003EBAD ambi saftey\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele 2 stage trigger\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele buffer tube with super 42 spring\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele Maritime Bolt Catch\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EMagpul furniture\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EMOE-K2 Grip\\u003C/li\\u003E\\n\\u003Cli\\u003ECTR carbine stock\\u003C/li\\u003E\\n\\u003Cli\\u003EPmag\\u003C/li\\u003E\\n\\u003Cli\\u003Ehandstop\\u003C/li\\u003E\\n\\u003Cli\\u003EBUIS\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EOther Images:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://i.postimg.cc/85FMMngJ/AR15-pew-2.jpg\\\"\\u003Eside fire select\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://i.postimg.cc/zB9WjSqd/AR15-pew-3.jpg\\\"\\u003Eview of FDE barrel\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext up is 10.5 300BLK in OD Green\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs4zeb/first_ar_build_friday/eoiznnd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs4zeb/first_ar_build_friday/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/if35r70kjzz21.jpg\", \"created\": 1558659364.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bq9bgb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoid65v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558616951.0, \"send_replies\": true, \"parent_id\": \"t3_bq9bgb\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\\nbugaboo\", \"link_title\": \"we\", \"author_flair_css_class\": null, \"name\": \"t1_eoid65v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\nbugaboo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bq9bgb/we/eoid65v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bq9bgb/we/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bq9bgb/we/\", \"created\": 1558645751.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_brgcyy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoibl85\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558615819.0, \"send_replies\": true, \"parent_id\": \"t3_brgcyy\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"HGCE Freedom Gundam Album\", \"author_flair_css_class\": null, \"name\": \"t1_eoibl85\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/eoibl85/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/\", \"report_reasons\": null, \"link_author\": \"NeonRunner\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/EKjeyR4\", \"created\": 1558644619.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_b892bv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoibfr4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558615716.0, \"send_replies\": true, \"parent_id\": \"t1_ejwhbla\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eoibfr4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/b892bv/test/eoibfr4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/b892bv/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/OFkJjXL\", \"created\": 1558644516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bay8r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoi61fx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558611465.0, \"send_replies\": true, \"parent_id\": \"t1_ekgl4mf\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eoi61fx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bay8r2/test/eoi61fx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bay8r2/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bay8r2/test/\", \"created\": 1558640265.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqs0lm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoah4bg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NamiPickles\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558417762.0, \"send_replies\": true, \"parent_id\": \"t1_eo84uif\", \"score\": 2, \"author_fullname\": \"t2_cp3cb3l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"thanks my dude\", \"link_title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"author_flair_css_class\": null, \"name\": \"t1_eoah4bg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks my dude\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/eoah4bg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"report_reasons\": null, \"link_author\": \"NamiPickles\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/VmalKIuFimk\", \"created\": 1558446562.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqs0lm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo84uif\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Flying-Croissant\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558357381.0, \"send_replies\": true, \"parent_id\": \"t3_bqs0lm\", \"score\": 1, \"author_fullname\": \"t2_1d8oz7i8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Good shit\", \"link_title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"author_flair_css_class\": null, \"name\": \"t1_eo84uif\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood shit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/eo84uif/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"report_reasons\": null, \"link_author\": \"NamiPickles\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/VmalKIuFimk\", \"created\": 1558386181.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqofzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo67e75\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imperatorz\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558313245.0, \"send_replies\": true, \"parent_id\": \"t3_bqofzt\", \"score\": 1, \"author_fullname\": \"t2_3s7t8gxj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hi folks,\\n\\nFirst of all, thanks for all the quality posts here, i created an account just for this community !\\nI'm a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\n\\nD1 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD2 : Squat (55)- OHP (35)\\nD3 : Rest\\nD4 : Squat (55)- OHP (35)\\nD5 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD6 : Squat (55)- OHP (35) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\nD7 : Rest\\n\\nI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP\\n\\nFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7\\n\\nMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\n\\nThanks for all you're doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_eo67e75\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\nI\\u0026#39;m a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD2 : Squat (55)- OHP (35)\\nD3 : Rest\\nD4 : Squat (55)- OHP (35)\\nD5 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD6 : Squat (55)- OHP (35) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\nD7 : Rest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/eo67e75/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"report_reasons\": null, \"link_author\": \"imperatorz\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"created\": 1558342045.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqofzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo67cm7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imperatorz\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558313217.0, \"send_replies\": true, \"parent_id\": \"t3_bqofzt\", \"score\": 1, \"author_fullname\": \"t2_3s7t8gxj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hi folks,\\n\\nFirst of all, thanks for all the quality posts here, i created an account just for this community ! \\nI'm a 20 yo male who recently got back into lifting. \\nSince the end of march I have been training consistently 4-5 times a week with the following program : \\n\\nD1 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5) \\nD2 : Squat (5*5)- OHP (3*5) \\nD3 : Rest \\nD4 : Squat (5*5)- OHP (3*5) \\nD5 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5) \\nD6 : Squat (5*5)- OHP (3*5) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\nD7 : Rest \\n \\nI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP \\n \\nFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7 \\n\\nMy questions are, in a perspective of continuing fat loss : \\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ? \\n\\u2022 Should I start cardio/HIIT to eliminate more fat ? \\n\\u2022 Have you got any recommendation altogether ? All advices appreciated. \\n \\nThanks for all you're doing in here and sorry for broken english, \\nAn over-Atlantic enthusiast\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_eo67cm7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\u003Cbr/\\u003E\\nI\\u0026#39;m a 20 yo male who recently got back into lifting.\\u003Cbr/\\u003E\\nSince the end of march I have been training consistently 4-5 times a week with the following program : \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD2 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD3 : Rest\\u003Cbr/\\u003E\\nD4 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD5 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD6 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\u003Cbr/\\u003E\\nD7 : Rest \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\u003Cbr/\\u003E\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\u003Cbr/\\u003E\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\u003Cbr/\\u003E\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\u003Cbr/\\u003E\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/eo67cm7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"report_reasons\": null, \"link_author\": \"imperatorz\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"created\": 1558342017.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ens8t9m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558025712.0, \"send_replies\": true, \"parent_id\": \"t1_ens8roy\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Omg it works!!\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_ens8t9m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOmg it works!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/ens8t9m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1558054512.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ens8roy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558025695.0, \"send_replies\": true, \"parent_id\": \"t3_bpezwp\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E testing testing one two three\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_ens8roy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etesting testing one two three\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/ens8roy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1558054495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpdae9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enrm2j5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558017205.0, \"send_replies\": true, \"parent_id\": \"t3_bpdae9\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"As good as it gets - MASSIVE 60ft Nazare\", \"author_flair_css_class\": null, \"name\": \"t1_enrm2j5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpdae9/as_good_as_it_gets_massive_60ft_nazare/enrm2j5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpdae9/as_good_as_it_gets_massive_60ft_nazare/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1558046005.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh7bm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931730.0, \"send_replies\": true, \"parent_id\": \"t3_boytzt\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"https://youtu.be/yTob1CPeL6I\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh7bm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh7bm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960530.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh4ms\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931703.0, \"send_replies\": true, \"parent_id\": \"t1_enmh2vx\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh4ms\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh4ms/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960503.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_boytzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enmh2vx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Kanji-light\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557931685.0, \"send_replies\": true, \"parent_id\": \"t3_boytzt\", \"score\": 1, \"author_fullname\": \"t2_s3tov0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://youtu.be/yTob1CPeL6I](https://youtu.be/yTob1CPeL6I)\", \"link_title\": \"video test\", \"author_flair_css_class\": null, \"name\": \"t1_enmh2vx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/yTob1CPeL6I\\\"\\u003Ehttps://youtu.be/yTob1CPeL6I\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/boytzt/video_test/enmh2vx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/boytzt/video_test/\", \"report_reasons\": null, \"link_author\": \"Kanji-light\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/yTob1CPeL6I\", \"created\": 1557960485.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bowuds\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enlndge\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GameInfusionTC\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557920346.0, \"send_replies\": true, \"parent_id\": \"t3_bowuds\", \"score\": 1, \"author_fullname\": \"t2_18i8688m\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"y^ikes\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_enlndge\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ey\\u003Csup\\u003Eikes\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bowuds/test/enlndge/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"created\": 1557949146.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bowuds\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enlnbx5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GameInfusionTC\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557920327.0, \"send_replies\": true, \"parent_id\": \"t3_bowuds\", \"score\": 1, \"author_fullname\": \"t2_18i8688m\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u2013\\u2013strikethrough\\u2013\\u2013\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_enlnbx5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u2013\\u2013strikethrough\\u2013\\u2013\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bowuds/test/enlnbx5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bowuds/test/\", \"created\": 1557949127.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bogbq5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enfx5gc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheB333\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557824074.0, \"send_replies\": true, \"parent_id\": \"t3_bogbq5\", \"score\": 1, \"author_fullname\": \"t2_10snnt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Last week there was a post considering a weekly theory crafting thread. I kind of liked the idea. People discussed when and how that post and the formatting should be made.\\n\\n\\u0026#x200B;\\n\\nI may not be up to date with this idea, since i couldnt follow the reddit in the last week due to my working shedule. But i want to give it a shot.\\n\\n\\u0026#x200B;\\n\\nAs the Esther hype fades, i want to dedicate this post to our beloved queen of damage dealers. \\n\\n\\\\##Let us gather and share all possible and crazy ideas, that come to your mind.\\n\\n\\u0026#x200B;\\n\\nEsther is such an easy charackter, yet i bet that there are strategies that i cannot even imagine in my boldest dreams. There are a few reasons for this: She has innitiate evade, can work as AoE tank, absorbs lightning damage, has chaining counters, just to list a few important features.\\n\\n\\u0026#x200B;\\n\\nHow do i Imagine the struckture of this thread:\\n\\nHere\\\\`s an example on how you could make the formatting of your comment:\\n\\n\\u0026#x200B;\\n\\n\\\\# \\\\*\\\\*Title/Trial/Strategy\\\\*\\\\* #\\n\\nDescription\\n\\n\\u0026#x200B;\\n\\n\\\\* \\\\*\\\\*Difficulty/Equipment needed:\\\\*\\\\*/Beginner-Casual-Whale\\n\\n\\\\* \\\\*\\\\*Team Comp:\\\\*\\\\* (with eqipment, best would be FFBE equip link)\\n\\n\\\\* \\\\*\\\\*Turn rotation:\\\\*\\\\*\\n\\n\\\\* \\\\*\\\\*Useful tips:\\\\*\\\\*\\n\\n\\\\* \\\\*\\\\*Friend Code:\\\\*\\\\* (for Carry)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n\\\\##I would really love to heaer some strategies with her. Can she solo Ramuh? What ist the potential of 6 evade Esthers (with phoenix) ? In wich trails does she shine? What are the best unit synergies? \\n\\n\\u0026#x200B;\\n\\nI will try to give it a start:\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n\\\\# \\\\*\\\\*0TK Alexander 3\\\\* entrust LB kill\\\\*\\\\* #\\n\\nBasically you use two low level \\\\[units with entrust\\\\]([https://exvius.gamepedia.com/Entrust](https://exvius.gamepedia.com/Entrust)) that you fill their LB with either Aileen or Nyx in first turn. Then you imbue both your Esthers with water so you get the benefit of the 300% imperil. Use two chaining LB first turn -\\u003E finish. It's not all achievements but it saved me a lot of nerves. \\n\\n\\u0026#x200B;\\n\\n\\\\* \\\\*\\\\*Difficulty/Equipment needed:\\\\*\\\\*Casual-Dolphin\\n\\n\\\\* \\\\*\\\\*Requirements:\\\\*\\\\* \\\\[Build\\\\]([http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4](http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4)), Basically you need 2x low level entrusters, Aileen or Nxy, CG Nichol or SS Nichol, 2x Esthers with as much Machine Killer you can find.\\n\\n\\\\* \\\\*\\\\*Turn rotation:\\\\*\\\\* Turn 1: Aileen/Nyx is using LB fill, 2x entrust to both Esthers, dualcast water imbue on Esthers and then kill Alexander 3\\\\* with 2x limit chain Esther\\n\\n\\\\* \\\\*\\\\*Useful tips:\\\\*\\\\* Make sure to give Esther all the machine killer that you have and LB damage boosting eqipment. NOTE: If you use Aileen, make sure that the LB of the entrust units get filled! You can just let them be on lv 1 to make sure of this.\\n\\n\\\\* \\\\*\\\\*Friend Code:\\\\*\\\\* not carrying right now since im at work, sorry guys!\\n\\n\\u0026#x200B;\\n\\nI know that this strategy may not only be possible with Esther but Zeno or many more too! Feel free to comment and incite some nice discussions/comparisons/replacements.\\n\\n\\u0026#x200B;\\n\\nPS. Sorry if theres any problems with formatting.\", \"link_title\": \"y\", \"author_flair_css_class\": null, \"name\": \"t1_enfx5gc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELast week there was a post considering a weekly theory crafting thread. I kind of liked the idea. People discussed when and how that post and the formatting should be made.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI may not be up to date with this idea, since i couldnt follow the reddit in the last week due to my working shedule. But i want to give it a shot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the Esther hype fades, i want to dedicate this post to our beloved queen of damage dealers. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##Let us gather and share all possible and crazy ideas, that come to your mind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEsther is such an easy charackter, yet i bet that there are strategies that i cannot even imagine in my boldest dreams. There are a few reasons for this: She has innitiate evade, can work as AoE tank, absorbs lightning damage, has chaining counters, just to list a few important features.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do i Imagine the struckture of this thread:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere`s an example on how you could make the formatting of your comment:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# **Title/Trial/Strategy** #\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Difficulty/Equipment needed:**/Beginner-Casual-Whale\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Team Comp:** (with eqipment, best would be FFBE equip link)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Turn rotation:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Useful tips:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Friend Code:** (for Carry)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##I would really love to heaer some strategies with her. Can she solo Ramuh? What ist the potential of 6 evade Esthers (with phoenix) ? In wich trails does she shine? What are the best unit synergies? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI will try to give it a start:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E# **0TK Alexander 3* entrust LB kill** #\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically you use two low level [units with entrust](\\u003Ca href=\\\"https://exvius.gamepedia.com/Entrust\\\"\\u003Ehttps://exvius.gamepedia.com/Entrust\\u003C/a\\u003E) that you fill their LB with either Aileen or Nyx in first turn. Then you imbue both your Esthers with water so you get the benefit of the 300% imperil. Use two chaining LB first turn -\\u0026gt; finish. It\\u0026#39;s not all achievements but it saved me a lot of nerves. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Difficulty/Equipment needed:**Casual-Dolphin\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Requirements:** [Build](\\u003Ca href=\\\"http://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4\\\"\\u003Ehttp://ffbeEquip.com/builder.html?server=GL#fc1dd550-7622-11e9-a1b8-7b53378612e4\\u003C/a\\u003E), Basically you need 2x low level entrusters, Aileen or Nxy, CG Nichol or SS Nichol, 2x Esthers with as much Machine Killer you can find.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Turn rotation:** Turn 1: Aileen/Nyx is using LB fill, 2x entrust to both Esthers, dualcast water imbue on Esthers and then kill Alexander 3* with 2x limit chain Esther\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Useful tips:** Make sure to give Esther all the machine killer that you have and LB damage boosting eqipment. NOTE: If you use Aileen, make sure that the LB of the entrust units get filled! You can just let them be on lv 1 to make sure of this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* **Friend Code:** not carrying right now since im at work, sorry guys!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know that this strategy may not only be possible with Esther but Zeno or many more too! Feel free to comment and incite some nice discussions/comparisons/replacements.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS. Sorry if theres any problems with formatting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bogbq5/y/enfx5gc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bogbq5/y/\", \"report_reasons\": null, \"link_author\": \"TheB333\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bogbq5/y/\", \"created\": 1557852874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo84dx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"endic87\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DrHandyman\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557783117.0, \"send_replies\": true, \"parent_id\": \"t3_bo84dx\", \"score\": 0, \"author_fullname\": \"t2_2wbf73p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"`|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|`\\n\\n`:-:|:-:|:-:|:-:|:-:|:-:|`\\n\\n`|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|`\\n\\n`|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|`\\n\\n`|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|`\\n\\n`|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|`\\n\\n`|Blanton's|$14.00|$99.99|$224.00|$124.01|124.02%|`\\n\\n`|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|`\\n\\n`|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|`\\n\\n`|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|`\\n\\n`|Basil Hayden's|$10.00|$39.99|$160.00|$120.01|300.10%|`\\n\\n`|Noah's Mill|$15.00|$49.99|$240.00|$190.01|380.10%|`\\n\\n`|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|`\\n\\n`|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|`\\n\\n`|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|`\\n\\n`|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|`\", \"link_title\": \"Table Test\", \"author_flair_css_class\": null, \"name\": \"t1_endic87\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003E|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:-:|:-:|:-:|:-:|:-:|:-:|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Blanton\\u0026#39;s|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Basil Hayden\\u0026#39;s|$10.00|$39.99|$160.00|$120.01|300.10%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Noah\\u0026#39;s Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo84dx/table_test/endic87/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"report_reasons\": null, \"link_author\": \"Rammzie\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"created\": 1557811917.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo84dx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"endib3d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DrHandyman\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557783105.0, \"send_replies\": true, \"parent_id\": \"t3_bo84dx\", \"score\": 0, \"author_fullname\": \"t2_2wbf73p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"|\\\\*\\\\*Name\\\\*\\\\*|\\\\*\\\\*ACME Price Per 1.5oz\\\\*\\\\*|\\\\*\\\\*Bottle Street Price\\\\*\\\\*|\\\\*\\\\*Revenue Per Bottle (16 pours) \\\\*\\\\*|\\\\*\\\\*Profit Per Bottle\\\\*\\\\*|\\\\*\\\\*Profit Percentage\\\\*\\\\*|\\n\\n:-:|:-:|:-:|:-:|:-:|:-:|\\n\\n|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\n\\n|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\n\\n|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\n\\n|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\n\\n|Blanton's|$14.00|$99.99|$224.00|$124.01|124.02%|\\n\\n|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\n\\n|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\n\\n|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\n\\n|Basil Hayden's|$10.00|$39.99|$160.00|$120.01|300.10%|\\n\\n|Noah's Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\n\\n|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\n\\n|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\n\\n|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\n\\n|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\", \"link_title\": \"Table Test\", \"author_flair_css_class\": null, \"name\": \"t1_endib3d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E|**Name**|**ACME Price Per 1.5oz**|**Bottle Street Price**|**Revenue Per Bottle (16 pours) **|**Profit Per Bottle**|**Profit Percentage**|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:-:|:-:|:-:|:-:|:-:|:-:|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 15|$70.00|$900.00|$1,120.00|$220.00|24.44%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 23|$140.00|$1,800.00|$2,240.00|$440.00|24.44%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 10|$45.00|$400.00|$720.00|$320.00|80.00%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Pappy 12|$55.00|$450.00|$880.00|$430.00|95.56%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Blanton\\u0026#39;s|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Weller 12|$14.00|$99.99|$224.00|$124.01|124.02%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Bulleit - BS|$14.00|$59.99|$224.00|$164.01|273.40%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Weller SR|$12.00|$49.99|$192.00|$142.01|284.08%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Basil Hayden\\u0026#39;s|$10.00|$39.99|$160.00|$120.01|300.10%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Noah\\u0026#39;s Mill|$15.00|$49.99|$240.00|$190.01|380.10%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Four Roses Single|$12.00|$39.99|$192.00|$152.01|380.12%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Bulleit|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Knob Creek - 100|$9.00|$29.99|$144.00|$114.01|380.16%|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Buffalo Trace|$9.00|$24.99|$144.00|$119.01|476.23%\\u200b|\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo84dx/table_test/endib3d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"report_reasons\": null, \"link_author\": \"Rammzie\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo84dx/table_test/\", \"created\": 1557811905.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbsgh6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557754397.0, \"send_replies\": true, \"parent_id\": \"t3_bo3eog\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbsgh6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbsgh6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557783197.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbsf7d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557754377.0, \"send_replies\": true, \"parent_id\": \"t1_enbrfwi\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbsf7d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbsf7d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557783177.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbrfwi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557753791.0, \"send_replies\": true, \"parent_id\": \"t1_enbrecx\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbrfwi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbrfwi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557782591.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bo3eog\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"enbrecx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Varnu\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557753764.0, \"send_replies\": true, \"parent_id\": \"t3_bo3eog\", \"score\": 1, \"author_fullname\": \"t2_y75d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Save Draft Hyperlink](https://www.reddit.com/r/PostPreview/submit)\\n\\n**Save Draft Bold**\\n\\nRegular Text\\n\\n[**Save Draft Bold Hyperlink**](https://www.reddit.com/r/PostPreview/submit)\", \"link_title\": \"Save Draft Test Title\", \"author_flair_css_class\": null, \"name\": \"t1_enbrecx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003ESave Draft Hyperlink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESave Draft Bold\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegular Text\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/PostPreview/submit\\\"\\u003E\\u003Cstrong\\u003ESave Draft Bold Hyperlink\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bo3eog/save_draft_test_title/enbrecx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bo3eog/save_draft_test_title/\", \"created\": 1557782564.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnh87u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5kn7c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DefNotPolonius\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557609950.0, \"send_replies\": true, \"parent_id\": \"t3_bnh87u\", \"score\": 1, \"author_fullname\": \"t2_3r6vjfb1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Looks legit to me!\", \"link_title\": \"A recent study suggests rates of step-siblings getting married is increasing exponentially\", \"author_flair_css_class\": null, \"name\": \"t1_en5kn7c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks legit to me!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnh87u/a_recent_study_suggests_rates_of_stepsiblings/en5kn7c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnh87u/a_recent_study_suggests_rates_of_stepsiblings/\", \"report_reasons\": null, \"link_author\": \"PraisetheKing1\", \"author_flair_text\": null, \"link_url\": \"https://www.theatlantic.com/entertainment/archive/2019/05/state-of-the-union-sundance-tv-review/589117/\", \"created\": 1557638750.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnh3at\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5j7r9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DefNotPolonius\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557609148.0, \"send_replies\": true, \"parent_id\": \"t3_bnh3at\", \"score\": 1, \"author_fullname\": \"t2_3r6vjfb1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Murderous indeed\", \"link_title\": \"Classic Murderous Hamlet\", \"author_flair_css_class\": null, \"name\": \"t1_en5j7r9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMurderous indeed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnh3at/classic_murderous_hamlet/en5j7r9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnh3at/classic_murderous_hamlet/\", \"report_reasons\": null, \"link_author\": \"PraisetheKing1\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/wqo9b9e3enx21.jpg\", \"created\": 1557637948.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bngumb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en5h7hv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bummy_mans\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557608063.0, \"send_replies\": true, \"parent_id\": \"t3_bngumb\", \"score\": 1, \"author_fullname\": \"t2_15oya7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Murderous Indeed\", \"link_title\": \"Classic Murderous Hamlet\", \"author_flair_css_class\": null, \"name\": \"t1_en5h7hv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMurderous Indeed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bngumb/classic_murderous_hamlet/en5h7hv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bngumb/classic_murderous_hamlet/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/v4u3ua21anx21.jpg\", \"created\": 1557636863.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bndgzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4lk6i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fear_from_ignorance\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557590014.0, \"send_replies\": true, \"parent_id\": \"t3_bndgzp\", \"score\": 1, \"author_fullname\": \"t2_116zo5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#Countries that Shooting people in last 12 months\\n\\n|Country | Total Shooting \\n|:-----------|------------:|\\n| France| 14+(without yellow vest|\\n| Germany| 14+|\\n| U.K|3+| \\n\\nGreat good holy countries, only E.U \\n##We can not put a nobleman to death! :)\", \"link_title\": \"t\", \"author_flair_css_class\": null, \"name\": \"t1_en4lk6i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECountries that Shooting people in last 12 months\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ECountry\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ETotal Shooting\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFrance\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14+(without yellow vest\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGermany\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14+\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU.K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3+\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EGreat good holy countries, only E.U \\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EWe can not put a nobleman to death! :)\\u003C/h2\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bndgzp/t/en4lk6i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"report_reasons\": null, \"link_author\": \"fear_from_ignorance\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"created\": 1557618814.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bndgzp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4lilt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fear_from_ignorance\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557589986.0, \"send_replies\": true, \"parent_id\": \"t3_bndgzp\", \"score\": 1, \"author_fullname\": \"t2_116zo5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\#Countries that Shooting people in last 12 months\\n\\n\\u0026#x200B;\\n\\n|Country | Total Shooting \\n\\n|:-----------|------------:|\\n\\n| France| 14+(without yellow vest|\\n\\n| Germany| 14+|\\n\\n| U.K|3+| \\n\\n\\u0026#x200B;\\n\\nGreat good holy countries, only E.U \\n\\n\\\\##We can not put a nobleman to death! :)\", \"link_title\": \"t\", \"author_flair_css_class\": null, \"name\": \"t1_en4lilt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#Countries that Shooting people in last 12 months\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Country | Total Shooting \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|:-----------|------------:|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| France| 14+(without yellow vest|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| Germany| 14+|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| U.K|3+| \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreat good holy countries, only E.U \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##We can not put a nobleman to death! :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bndgzp/t/en4lilt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"report_reasons\": null, \"link_author\": \"fear_from_ignorance\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bndgzp/t/\", \"created\": 1557618786.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bnddi4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en4km0v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bacalado\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557589379.0, \"send_replies\": true, \"parent_id\": \"t3_bnddi4\", \"score\": 1, \"author_fullname\": \"t2_zs6we\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Test pot\", \"link_title\": \"Test post\", \"author_flair_css_class\": null, \"name\": \"t1_en4km0v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest pot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bnddi4/test_post/en4km0v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bnddi4/test_post/\", \"report_reasons\": null, \"link_author\": \"KindlyPangolin\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bnddi4/test_post/\", \"created\": 1557618179.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgvc57\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2j37y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533822.0, \"send_replies\": true, \"parent_id\": \"t3_bgvc57\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"What does this do\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_en2j37y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat does this do\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgvc57/test/en2j37y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgvc57/test/\", \"report_reasons\": null, \"link_author\": \"harison86\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgvc57/test/\", \"created\": 1557562622.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgz2ru\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2j1b8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533788.0, \"send_replies\": true, \"parent_id\": \"t3_bgz2ru\", \"score\": 0, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"We want shaggy\", \"link_title\": \"Settra the Imperishable, the Majestic Emperor of the Shifting Sands, Great Hawk Of The Heavens, King of Kings, Monarch of the Sky, High King of Nehekhara and many, many more, invades Outworld during the events of Mortal Kombat X. Can he claim it?\", \"author_flair_css_class\": null, \"name\": \"t1_en2j1b8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe want shaggy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/en2j1b8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/\", \"report_reasons\": null, \"link_author\": \"TitanBrass\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgz2ru/settra_the_imperishable_the_majestic_emperor_of/\", \"created\": 1557562588.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bjy4q1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2iyjr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533739.0, \"send_replies\": true, \"parent_id\": \"t3_bjy4q1\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Neat\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_en2iyjr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENeat\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bjy4q1/test/en2iyjr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bjy4q1/test/\", \"report_reasons\": null, \"link_author\": \"Toemism\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/vSa7WcG\", \"created\": 1557562539.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk5dk7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2ix0e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557533713.0, \"send_replies\": true, \"parent_id\": \"t3_bk5dk7\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Reddit doesn't work like that\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_en2ix0e\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EReddit doesn\\u0026#39;t work like that\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk5dk7/test/en2ix0e/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk5dk7/test/\", \"report_reasons\": null, \"link_author\": \"lucasade7\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk5dk7/test/\", \"created\": 1557562513.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en2iq27\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeopleSince1Aint2\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557533589.0, \"send_replies\": true, \"parent_id\": \"t3_blxuys\", \"score\": 1, \"author_fullname\": \"t2_3q6iw7ca\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Just uses you're magic to convince him\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_en2iq27\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust uses you\\u0026#39;re magic to convince him\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/en2iq27/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557562389.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1557490423.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bmfbja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"en0e11l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rew01f\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557490240.0, \"send_replies\": true, \"parent_id\": \"t3_bmfbja\", \"score\": 1, \"author_fullname\": \"t2_3mmzhxol\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\ud83d\\udf8eTest\\n\\n\\ud83d\\udf8e Test\\n\\n\\ud83d\\udf8e Testing as ordered\", \"link_title\": \"testy\", \"author_flair_css_class\": null, \"name\": \"t1_en0e11l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\ud83d\\udf8eTest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\ud83d\\udf8e Test\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\ud83d\\udf8e Testing as ordered\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bmfbja/testy/en0e11l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bmfbja/testy/\", \"report_reasons\": null, \"link_author\": \"Sleepchao\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bmfbja/testy/\", \"created\": 1557519040.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bme57y\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emvxrme\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TotesMessenger\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557368561.0, \"send_replies\": true, \"parent_id\": \"t3_bme57y\", \"score\": 1, \"author_fullname\": \"t2_kq14w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I'm a bot, *bleep*, *bloop*. Someone has linked to this thread from another place on reddit:\\n\\n- [/r/porsche] [First time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!](https://www.reddit.com/r/Porsche/comments/bme8ym/first_time_porsche_owner_takes_immediate_cayman/)\\n\\n\\u0026nbsp;*^(If you follow any of the above links, please respect the rules of reddit and don't vote in the other threads.) ^\\\\([Info](/r/TotesMessenger) ^/ ^[Contact](/message/compose?to=/r/TotesMessenger))*\", \"link_title\": \"First time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!\", \"author_flair_css_class\": null, \"name\": \"t1_emvxrme\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a bot, \\u003Cem\\u003Ebleep\\u003C/em\\u003E, \\u003Cem\\u003Ebloop\\u003C/em\\u003E. Someone has linked to this thread from another place on reddit:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E[\\u003Ca href=\\\"/r/porsche\\\"\\u003E/r/porsche\\u003C/a\\u003E] \\u003Ca href=\\\"https://www.reddit.com/r/Porsche/comments/bme8ym/first_time_porsche_owner_takes_immediate_cayman/\\\"\\u003EFirst time Porsche owner takes immediate Cayman road trip. LOTS of Cayman glamour shots!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003Cem\\u003E\\u003Csup\\u003EIf you follow any of the above links, please respect the rules of reddit and don\\u0026#39;t vote in the other threads.\\u003C/sup\\u003E \\u003Csup\\u003E(\\u003Ca href=\\\"/r/TotesMessenger\\\"\\u003EInfo\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E/\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"/message/compose?to=/r/TotesMessenger\\\"\\u003EContact\\u003C/a\\u003E)\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/emvxrme/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/\", \"report_reasons\": null, \"link_author\": \"Null-P\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bme57y/first_time_porsche_owner_takes_immediate_cayman/\", \"created\": 1557397361.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ems8494\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DoingSchoolProject2\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557271693.0, \"send_replies\": true, \"parent_id\": \"t1_ems7zov\", \"score\": 2, \"author_fullname\": \"t2_3q15i8tn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Growing well\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_ems8494\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGrowing well\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/ems8494/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557300493.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blxuys\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ems7zov\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DoingSchoolProject\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1557271609.0, \"send_replies\": true, \"parent_id\": \"t3_blxuys\", \"score\": 2, \"author_fullname\": \"t2_3otlbacn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hey Elizabeth, hows the baby doing\", \"link_title\": \"doing a thing for school, don't bother reading\", \"author_flair_css_class\": null, \"name\": \"t1_ems7zov\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey Elizabeth, hows the baby doing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/ems7zov/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"report_reasons\": null, \"link_author\": \"DoingSchoolProject2\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blxuys/doing_a_thing_for_school_dont_bother_reading/\", \"created\": 1557300409.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkze3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257480.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Future Features People Want (Compiled from Blizzard forums)\\n#### *Disclaimer* These very wildly in implementation time. They also aren't too specific. That's for another thread.\\n\\n#### Ease of Coding\\n- [Text-based Editor/IDE/Ability to Import File](#s \\\"Anything for more coding speed\\\")\\n- Conditionals\\n- Functions\\n- Hotkey Saves/Auto Saves\\n- Hotkey Undo\\n- Events/Statuses for every [possible thing](#s \\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\")\\n- [Classes/Object Types/Enums](#s \\\"Bad class objects hurt\\\")\\n- [Multiple-Script Compilation](#s \\\"I make a piece, you make a piece, we compile the codes together\\\")\\n- Disable/Enable Rule options\\n- Custom Strings/Variable Names\\n\\t\\n####Importation of art assets\\n- Custom Skins\\n- Custom Emotes\\n- Custom Hero Models\\n- Custom Animations\\n\\t\\n#### Bigger Creations\\n- Rule Limit Increase\\n- Effect Increase\\n- More Presets Saves\\n- More Variables\\n\\n#### Recognition of Good Modes\\n- Best-of-Workshop Arcade Mode\\n- Popularity contests between [similar game-modes](#s \\\"See which gun game people like best\\\")\\n\\t\\n#### Map Editor\\n- Ability to create gameplay zones\\n- Change Lighting\\n- Custom Maps\\n\\t\\n#### Hero Editor\\n- Being able to give [one hero's ability to another hero](#s \\\"Tracer with Piledriver\\\")\\n- More Control over [Effects](#s \\\"On-destruct, custom IDs, etc\\\")\\n- Control over [hero-specific variables](#s \\\"Number of Symmetra Turrets, headshot dmg, passives\\\")\\n- Being able to use Arcade Enemies/All Models\\n- Custom Cooldowns/Modify Cooldowns\\n- Control over animations\\n- Control over fire/POTG worthy actions\\n\\t\\t\\n#### Object Editor\\n- Deployables\\n- Weapon Qualities\\n- Collisions\\n- Objectives/Payloads\\n- Access to Old Assets/Abilities\\n- Custom Effect Durations\\n- Custom Conditions\\n- Custom Physics Engine\\n\\t\\n#### AI Editor\\n- PVE Mode Access\\n- Ease of Making Bots\\n- Bots in any Mode\\n\\t\\t\\n#### Gameplay Editor\\n- Change Spawn Points\\n- Switch Teams\\n- Change Team Size\\n\\t\\n####Hosting Games\\n- Being able to host Workshop Games locally\\n\\t\\n#### Workshop-Specific Assets\\n- Extra Animations\\n- More effects\\n- [Non-Graphics intensive testing map](#s \\\"Just a White Room\\\")\\n- [Arena map](#s \\\"Just a square\\\")\\n\\n#### More Recognition of Dan and Keith\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkze3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFuture Features People Want (Compiled from Blizzard forums)\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003E\\u003Cem\\u003EDisclaimer\\u003C/em\\u003E These very wildly in implementation time. They also aren\\u0026#39;t too specific. That\\u0026#39;s for another thread.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EEase of Coding\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Anything for more coding speed\\\"\\u003EText-based Editor/IDE/Ability to Import File\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EConditionals\\u003C/li\\u003E\\n\\u003Cli\\u003EFunctions\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Saves/Auto Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Undo\\u003C/li\\u003E\\n\\u003Cli\\u003EEvents/Statuses for every \\u003Ca href=\\\"#s\\\" title=\\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\"\\u003Epossible thing\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Bad class objects hurt\\\"\\u003EClasses/Object Types/Enums\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"I make a piece, you make a piece, we compile the codes together\\\"\\u003EMultiple-Script Compilation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDisable/Enable Rule options\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Strings/Variable Names\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EImportation of art assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECustom Skins\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Emotes\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Hero Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Animations\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EBigger Creations\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERule Limit Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EEffect Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Presets Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Variables\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ERecognition of Good Modes\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBest-of-Workshop Arcade Mode\\u003C/li\\u003E\\n\\u003Cli\\u003EPopularity contests between \\u003Ca href=\\\"#s\\\" title=\\\"See which gun game people like best\\\"\\u003Esimilar game-modes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMap Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAbility to create gameplay zones\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Lighting\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Maps\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHero Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to give \\u003Ca href=\\\"#s\\\" title=\\\"Tracer with Piledriver\\\"\\u003Eone hero\\u0026#39;s ability to another hero\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Control over \\u003Ca href=\\\"#s\\\" title=\\\"On-destruct, custom IDs, etc\\\"\\u003EEffects\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over \\u003Ca href=\\\"#s\\\" title=\\\"Number of Symmetra Turrets, headshot dmg, passives\\\"\\u003Ehero-specific variables\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBeing able to use Arcade Enemies/All Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Cooldowns/Modify Cooldowns\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over animations\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over fire/POTG worthy actions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EObject Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDeployables\\u003C/li\\u003E\\n\\u003Cli\\u003EWeapon Qualities\\u003C/li\\u003E\\n\\u003Cli\\u003ECollisions\\u003C/li\\u003E\\n\\u003Cli\\u003EObjectives/Payloads\\u003C/li\\u003E\\n\\u003Cli\\u003EAccess to Old Assets/Abilities\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Effect Durations\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Conditions\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Physics Engine\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EAI Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPVE Mode Access\\u003C/li\\u003E\\n\\u003Cli\\u003EEase of Making Bots\\u003C/li\\u003E\\n\\u003Cli\\u003EBots in any Mode\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EGameplay Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EChange Spawn Points\\u003C/li\\u003E\\n\\u003Cli\\u003ESwitch Teams\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Team Size\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHosting Games\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to host Workshop Games locally\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWorkshop-Specific Assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EExtra Animations\\u003C/li\\u003E\\n\\u003Cli\\u003EMore effects\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a White Room\\\"\\u003ENon-Graphics intensive testing map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a square\\\"\\u003EArena map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMore Recognition of Dan and Keith\\u003C/h4\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkze3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286280.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkqzg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257336.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#One-Stop Workshop\\n## Workshop FAQ\\n### What is Overwatch Workshop?\\n- In layman's terms, its just [additional](#s \\\"Many, many additional\\\") features for designing custom games, using more drop-down menus.\\n\\n### What is the One-Stop Workshop?\\n- \\tThis is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\n-\\tI call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\n\\n### What is an FAQ?\\n-\\tFrantically Answering Questions!\\n\\n### How to access the Workshop?\\n-\\tMake sure you have the PTR installed.\\n- \\tPlay \\u003E Game Browser \\u003E Create \\u003E Settings \\u003E Workshop\\n\\n### What resources does Workshop give us?\\n-\\tCreation of Effects\\n-\\tConditional Changes to Rules\\n-\\tAdding HUD elements\\n-\\tAnd More\\n\\n### Can you test heroes with workshop?\\n- \\tYesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\n- \\tHowever, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\n-\\tBut, don't fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\n\\n### Is it a map editor?\\n- \\tNo. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\n\\n### Do I need to know how to code to use it? Can normal people use it?\\n- \\tNo and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\n\\n### What presets does it have for me to build off of?\\n- \\tMolten Floor - You set on fire while touching the floor.\\n- \\tOne Ultimate - Elimination mode where you start with your Ultimate, but can't get Ultimate charge.\\n- \\tHide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\n- \\tDouble Jump - Everyone can double jump.\\n- \\tFire Dome - A dome slowly shrinks, limiting the play space. (*Cough* Battle Royale *Cough*)\\n- \\tBalanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\n- \\tMirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\n- \\tZombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\n- \\tHero Gauntlet - Gun Game\\n\\n### Is it on Console?\\n-\\tNot yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\n\\n### Who built this?\\n-\\tKeith and Dan, our two buddy devs, in their free time. They have now been labeled [Hero 31 and Hero 32](#s \\\"Dan is 31, fight me\\\") by the reddit community.\\n\\n### Is this going to get updates?\\n- It has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\n\\n### Is there a limit to sizes of script/number of objects.\\n- Yes. 64 icons/effects, and some limit to the size of the script. \\n- However, the devs are working to increase these numbers.\\n\\n### Is this Overwatch getting a bunch of people to be their unpaid interns?\\n- Sadly, it doesn't seem to be. Plenty of people would love to design stuff for Blizzard for free. Instead, you can just make fun modes for people to enjoy. \\n\\n### Do I have control over my modes? Can I link/post other peoples content?\\n#### The Bad\\n- You do not have ownership over your creations\\n- Your code could be overriden at any time\\n- Other people can use your mode by just clicking on it and copying your 5-character code\\n- Currently, there are numerous bugs that can delete your work, if you have a slow connection, too much code, or are just plain unlucky\\n\\n#### The Good\\n- You can check out any code you find interesting and get ideas\\n- You don't have to worry about someone else running their server. With the 5-character code, you can start one yourself\\n- Your code will carry over to the Live version and the Console version, as the actual data is stored in the cloud\\n- The Devs are fixing all work-deleting bugs\\n- The Devs will (almost certainly) add enough characters to the codes to prevent your code from being overriden\\n- You can store the info for your mode on this page if you want people to know that a mode was originally created by you\\n\\n#### The Neutral\\n- Being polite and asking for permission is the correct thing to do if you want to repost their work, modify their work, or look at their rules\\n\\n#### The Time Saving\\n- I propose that if you create a mode that you want anyone to be able to modify or use, while crediting you, you write \\\"Free Use\\\" on it somewhere, so that those who want to use it won't [constantly bug you](#s \\\"Sorry all people I bugged about adding your stuff to this post\\\")\\n- I propose that if you create a mode and don't care about being credited, you write \\\"Free Game\\\", and people can use your mode without crediting you, but shouldn't act like they invented it whole-sale\\n- I propose that the community shares any useful tricks, codes, or ideas somewhere. This post works as well as any other place.\\n\\n### Why does the Workshop Community need to be organized?\\n- For [Casual Players](#s \\\"Filthy Casuals\\\"): An organized community will make it easier to find good, fun, game modes.\\n\\n- For [Ranked Players](#s \\\"Sports Nuts\\\"): With a few changes, I personally think that Workshop can allow for [more frequent patch testing.](#s \\\"More Powerful Workshop = Give out Patch Codes instead of Downloads\\\") An organized community could help the workshop get to that state sooner.\\n\\n- For [Creators](#s \\\"Over-Dedicated Fans\\\"): An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\n\\n- For [Devs](#s \\\"All-Mighty Deities\\\"): An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\n\\n##Useful Links\\n### Mode Lists\\nhttps://dutchdemons.com - u/Marinosbitter\\n\\nhttps://overwatchcustom.games - u/Thriver\\n\\nhttps://overwatchmodding.com/ - u/xSailboats\\n\\nhttps://workshop.elohell.gg/ - EloHell Discord\\n\\nhttps://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA - u/alloriginalnamesused\\n\\n[Lier1's Code List]()\\n\\n### Discord Channels\\n[OW Scripting](https://discord.gg/9pc4yyE)\\n\\n[Overwatch Workshop](https://discord.gg/qa9vR94)\\n\\n[Elo Hell Workshops](https://discord.gg/U5ARg2Fs)\\n\\n### Youtube Channels\\n#### Mode Creation Help:\\n[SamstaTV](https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g)\\n\\n[RunicOW](https://www.youtube.com/channel/UCB1j7mXXRgCRBBri6E5Ch2A)\\n\\n#### Creation Showcases:\\n[Master Ian Gamer](https://www.youtube.com/channel/UCh7qwd3VnN1AGqlqec8K8Zw)\\n\\n### Miscellaneous Sites/Posts\\n[List of Flat Areas with few Obstacles](https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/) - u/Zezombye\\n\\n[Workshop Syntax \\u0026 Script Database](https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92) - WyomingMyst\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkqzg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EOne-Stop Workshop\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EWorkshop FAQ\\u003C/h2\\u003E\\n\\n\\u003Ch3\\u003EWhat is Overwatch Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E In layman\\u0026#39;s terms, its just \\u003Ca href=\\\"#s\\\" title=\\\"Many, many additional\\\"\\u003Eadditional\\u003C/a\\u003E features for designing custom games, using more drop-down menus.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat is the One-Stop Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E This is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\u003C/li\\u003E\\n\\u003Cli\\u003E I call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat is an FAQ?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Frantically Answering Questions!\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EHow to access the Workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Make sure you have the PTR installed.\\u003C/li\\u003E\\n\\u003Cli\\u003E Play \\u0026gt; Game Browser \\u0026gt; Create \\u0026gt; Settings \\u0026gt; Workshop\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat resources does Workshop give us?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Creation of Effects\\u003C/li\\u003E\\n\\u003Cli\\u003E Conditional Changes to Rules\\u003C/li\\u003E\\n\\u003Cli\\u003E Adding HUD elements\\u003C/li\\u003E\\n\\u003Cli\\u003E And More\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003ECan you test heroes with workshop?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Yesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\u003C/li\\u003E\\n\\u003Cli\\u003E However, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\u003C/li\\u003E\\n\\u003Cli\\u003E But, don\\u0026#39;t fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs it a map editor?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EDo I need to know how to code to use it? Can normal people use it?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhat presets does it have for me to build off of?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Molten Floor - You set on fire while touching the floor.\\u003C/li\\u003E\\n\\u003Cli\\u003E One Ultimate - Elimination mode where you start with your Ultimate, but can\\u0026#39;t get Ultimate charge.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\u003C/li\\u003E\\n\\u003Cli\\u003E Double Jump - Everyone can double jump.\\u003C/li\\u003E\\n\\u003Cli\\u003E Fire Dome - A dome slowly shrinks, limiting the play space. (\\u003Cem\\u003ECough\\u003C/em\\u003E Battle Royale \\u003Cem\\u003ECough\\u003C/em\\u003E)\\u003C/li\\u003E\\n\\u003Cli\\u003E Balanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\u003C/li\\u003E\\n\\u003Cli\\u003E Mirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\u003C/li\\u003E\\n\\u003Cli\\u003E Zombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hero Gauntlet - Gun Game\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs it on Console?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Not yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWho built this?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Keith and Dan, our two buddy devs, in their free time. They have now been labeled \\u003Ca href=\\\"#s\\\" title=\\\"Dan is 31, fight me\\\"\\u003EHero 31 and Hero 32\\u003C/a\\u003E by the reddit community.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs this going to get updates?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs there a limit to sizes of script/number of objects.\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYes. 64 icons/effects, and some limit to the size of the script. \\u003C/li\\u003E\\n\\u003Cli\\u003EHowever, the devs are working to increase these numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIs this Overwatch getting a bunch of people to be their unpaid interns?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESadly, it doesn\\u0026#39;t seem to be. Plenty of people would love to design stuff for Blizzard for free. Instead, you can just make fun modes for people to enjoy. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EDo I have control over my modes? Can I link/post other peoples content?\\u003C/h3\\u003E\\n\\n\\u003Ch4\\u003EThe Bad\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou do not have ownership over your creations\\u003C/li\\u003E\\n\\u003Cli\\u003EYour code could be overriden at any time\\u003C/li\\u003E\\n\\u003Cli\\u003EOther people can use your mode by just clicking on it and copying your 5-character code\\u003C/li\\u003E\\n\\u003Cli\\u003ECurrently, there are numerous bugs that can delete your work, if you have a slow connection, too much code, or are just plain unlucky\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Good\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou can check out any code you find interesting and get ideas\\u003C/li\\u003E\\n\\u003Cli\\u003EYou don\\u0026#39;t have to worry about someone else running their server. With the 5-character code, you can start one yourself\\u003C/li\\u003E\\n\\u003Cli\\u003EYour code will carry over to the Live version and the Console version, as the actual data is stored in the cloud\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Devs are fixing all work-deleting bugs\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Devs will (almost certainly) add enough characters to the codes to prevent your code from being overriden\\u003C/li\\u003E\\n\\u003Cli\\u003EYou can store the info for your mode on this page if you want people to know that a mode was originally created by you\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Neutral\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing polite and asking for permission is the correct thing to do if you want to repost their work, modify their work, or look at their rules\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EThe Time Saving\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EI propose that if you create a mode that you want anyone to be able to modify or use, while crediting you, you write \\u0026quot;Free Use\\u0026quot; on it somewhere, so that those who want to use it won\\u0026#39;t \\u003Ca href=\\\"#s\\\" title=\\\"Sorry all people I bugged about adding your stuff to this post\\\"\\u003Econstantly bug you\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EI propose that if you create a mode and don\\u0026#39;t care about being credited, you write \\u0026quot;Free Game\\u0026quot;, and people can use your mode without crediting you, but shouldn\\u0026#39;t act like they invented it whole-sale\\u003C/li\\u003E\\n\\u003Cli\\u003EI propose that the community shares any useful tricks, codes, or ideas somewhere. This post works as well as any other place.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EWhy does the Workshop Community need to be organized?\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Filthy Casuals\\\"\\u003ECasual Players\\u003C/a\\u003E: An organized community will make it easier to find good, fun, game modes.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Sports Nuts\\\"\\u003ERanked Players\\u003C/a\\u003E: With a few changes, I personally think that Workshop can allow for \\u003Ca href=\\\"#s\\\" title=\\\"More Powerful Workshop = Give out Patch Codes instead of Downloads\\\"\\u003Emore frequent patch testing.\\u003C/a\\u003E An organized community could help the workshop get to that state sooner.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"Over-Dedicated Fans\\\"\\u003ECreators\\u003C/a\\u003E: An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor \\u003Ca href=\\\"#s\\\" title=\\\"All-Mighty Deities\\\"\\u003EDevs\\u003C/a\\u003E: An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EUseful Links\\u003C/h2\\u003E\\n\\n\\u003Ch3\\u003EMode Lists\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://dutchdemons.com\\\"\\u003Ehttps://dutchdemons.com\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Marinosbitter\\\"\\u003Eu/Marinosbitter\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchcustom.games\\\"\\u003Ehttps://overwatchcustom.games\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Thriver\\\"\\u003Eu/Thriver\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchmodding.com/\\\"\\u003Ehttps://overwatchmodding.com/\\u003C/a\\u003E - \\u003Ca href=\\\"/u/xSailboats\\\"\\u003Eu/xSailboats\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://workshop.elohell.gg/\\\"\\u003Ehttps://workshop.elohell.gg/\\u003C/a\\u003E - EloHell Discord\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA\\\"\\u003Ehttps://docs.google.com/spreadsheets/d/1aqh5T03pShpS7oq4cFiAivCEeJYARFEt8Lcow4gM0WA\\u003C/a\\u003E - \\u003Ca href=\\\"/u/alloriginalnamesused\\\"\\u003Eu/alloriginalnamesused\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Lier1\\u0026#39;s Code List]()\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EDiscord Channels\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/9pc4yyE\\\"\\u003EOW Scripting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/qa9vR94\\\"\\u003EOverwatch Workshop\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/U5ARg2Fs\\\"\\u003EElo Hell Workshops\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EYoutube Channels\\u003C/h3\\u003E\\n\\n\\u003Ch4\\u003EMode Creation Help:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g\\\"\\u003ESamstaTV\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UCB1j7mXXRgCRBBri6E5Ch2A\\\"\\u003ERunicOW\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch4\\u003ECreation Showcases:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UCh7qwd3VnN1AGqlqec8K8Zw\\\"\\u003EMaster Ian Gamer\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EMiscellaneous Sites/Posts\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/\\\"\\u003EList of Flat Areas with few Obstacles\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92\\\"\\u003EWorkshop Syntax \\u0026amp; Script Database\\u003C/a\\u003E - WyomingMyst\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkqzg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286136.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkof9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257292.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"# Custom Content\\n\\n### Disclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\n\\n### Names with u/ are from reddit. Names without are from the Overwatch Forum unless labeled otherwise.\\n\\n### If you like a mode, go to the original post and like or comment. Let them know you appreciate it. I'll add links directly to each post once I figure out if Reddit allows that and I get around to it.\\n\\n### If you want to add a mode to the list, just PM me and I'll add it eventually.\\n\\n## Fun Modes\\n- K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n- 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n- RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n- EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n- N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n- 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n- M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n- T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n- NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n- R4DWM - BloodBorne in Overwatch - u/Elodeona\\n- EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n- FHQZ4 - Bridgette Pong - u/AJ_Black\\n- KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n- 53J3R - Shooters Vs Stabbers - Lilsis\\n- BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n- BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n- 5KCP4 - Dva Eject into Random Ult - u/qbbftw - ORIGINAL IDEA FROM: u/Woolin\\n- YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n- 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n- 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n- MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n- SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n- VJCT2 - Chase the Snowmen - u/andygmb\\n- 6PC67 - Take Hero of Kills - u/CrenderMutant\\n- 9J42E - Mcree Hot Potato - u/olipoulihot\\n- 85J46 - TF2 the Return - u/Greg266\\n- 7792M - Ninja Sword Fight - u/zhpete\\n- VQ5W8 - Turn Based 3v3 Deathmatch - u/nodas9990\\n- 56XNH - Reinhardt's Completely Stoned Bumper Car Emporeum v14 - u/TheRedstoneBlaze\\n- R68FF - Lucio Ball - u/Telefrag_Ent\\n- V5NKR - Volleybomb - u/Telefrag_Ent\\n- GB9PM - Instagib Railgun : Ashe Team Deathmatch - u/Telefrag_Ent\\n- PGF9P - 1 v 1 High Noon Duel - u/Zenmill\\n- ZKQVG - One in the Chamber: 3 Lives - u/iejb\\n- QT7TQ - Torbjorn Golfing - u/officialraider\\n-\\n- 0D2W5 - Hampster Chase - u/Woolin\\n- 6E3Z5 - Lucio Tag - u/Woolin\\n-\\n- 4J6KW - Screencheat - u/PotsNPans\\n- MN787 - Screencheat - u/microcosm_ow\\n-\\n- PTTNK - Weeping Angels (Zen Mcree) - u/Semproser\\n- X2HH9 - Weeping Angels (Mercy Mei) - u/Hogrid125\\n-\\n- NJGZ4 - Deathmatch Rivals - u/Hypno--Toad\\n- A6736 - Rival System - u/Hypno--Toad\\n-\\n- JWY47 - Hammond Racing - @DanielFedder (Twitter)\\n- D9RND - Hamster Ball Racing - u/qwook\\n-\\n- SH9XN - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n- 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray\\n-\\n- RGH0D - High Speed: FFA - u/rbnsky\\n- SF1R2 - High Speed Gun Game - u/rbnsky\\n-\\n- E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n- QH5SP - PVE Horde Mode - u/Jechto\\n- 52Y5Y - PvE RPG - u/ES_Curse\\n\\n## Training Modes\\n- RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n- 2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n- QKAAM - Placeable Cameras - u/ItsDeltin\\n- CQ00S - Elemental Aspects - u/poststakhanovist\\n- 179QN - Slot Machine - u/Cowboy_Jimmy\\n- 6WXRW - Navi - u/andygmb - u/Lymbow\\n- P9DC5 - Custom Bouncing Projectiles - u/JayTheYggdrasil\\n- FM3WR - Retaliation Damage - u/bacondev\\n-\\n- NK1YF - 2-D Sidescroller - u/HaxD3\\n- D8ZQC - 3rd Person View - u/Jiggy_Jigsaw\\n- 4V8NC - Top Down Shooter - u/microcosm_ow\\n-\\n- ZW1PY - Scoreboard - u/Paf13\\n- 9EKZB - Scoreboard - u/caldoran2\\n-\\n- QESP4 - Walls - u/Zezombye\\n- TZYK6 - Walls - u/Gecktendo\\n- RFJ4G - Walls - u/Gecktendo\\n-\\n- P4Y50 - Bunny Hopping - u/microcosm_ow\\n- WV5HH - Bunny Hop - u/TyzoneLyraNature\\n\\n## Hero Ideas\\n- XJZB1 - Orisa AoE Push - AlexEptit\\n- H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n- RNKKJ - All Heroes Hover Jet - u/microcosm_ow\\n- 8H2DN - Sym Gravity Gun (Half-life) - u/IFIsc\\n- XGAPQ - Genji as Maeve (Paladins) - u/jprosk\\n- BE2J7 - Portal Gun - u/Lymbow - u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkof9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECustom Content\\u003C/h1\\u003E\\n\\n\\u003Ch3\\u003EDisclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003ENames with u/ are from reddit. Names without are from the Overwatch Forum unless labeled otherwise.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003EIf you like a mode, go to the original post and like or comment. Let them know you appreciate it. I\\u0026#39;ll add links directly to each post once I figure out if Reddit allows that and I get around to it.\\u003C/h3\\u003E\\n\\n\\u003Ch3\\u003EIf you want to add a mode to the list, just PM me and I\\u0026#39;ll add it eventually.\\u003C/h3\\u003E\\n\\n\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9J42E - Mcree Hot Potato - \\u003Ca href=\\\"/u/olipoulihot\\\"\\u003Eu/olipoulihot\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E85J46 - TF2 the Return - \\u003Ca href=\\\"/u/Greg266\\\"\\u003Eu/Greg266\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E7792M - Ninja Sword Fight - \\u003Ca href=\\\"/u/zhpete\\\"\\u003Eu/zhpete\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVQ5W8 - Turn Based 3v3 Deathmatch - \\u003Ca href=\\\"/u/nodas9990\\\"\\u003Eu/nodas9990\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E56XNH - Reinhardt\\u0026#39;s Completely Stoned Bumper Car Emporeum v14 - \\u003Ca href=\\\"/u/TheRedstoneBlaze\\\"\\u003Eu/TheRedstoneBlaze\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER68FF - Lucio Ball - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EV5NKR - Volleybomb - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGB9PM - Instagib Railgun : Ashe Team Deathmatch - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EPGF9P - 1 v 1 High Noon Duel - \\u003Ca href=\\\"/u/Zenmill\\\"\\u003Eu/Zenmill\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZKQVG - One in the Chamber: 3 Lives - \\u003Ca href=\\\"/u/iejb\\\"\\u003Eu/iejb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- QT7TQ - Torbjorn Golfing - \\u003Ca href=\\\"/u/officialraider\\\"\\u003Eu/officialraider\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E0D2W5 - Hampster Chase - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 6E3Z5 - Lucio Tag - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E4J6KW - Screencheat - \\u003Ca href=\\\"/u/PotsNPans\\\"\\u003Eu/PotsNPans\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- MN787 - Screencheat - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPTTNK - Weeping Angels (Zen Mcree) - \\u003Ca href=\\\"/u/Semproser\\\"\\u003Eu/Semproser\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- X2HH9 - Weeping Angels (Mercy Mei) - \\u003Ca href=\\\"/u/Hogrid125\\\"\\u003Eu/Hogrid125\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENJGZ4 - Deathmatch Rivals - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- A6736 - Rival System - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EJWY47 - Hammond Racing - @DanielFedder (Twitter)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- D9RND - Hamster Ball Racing - \\u003Ca href=\\\"/u/qwook\\\"\\u003Eu/qwook\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESH9XN - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- SF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E52Y5Y - PvE RPG - \\u003Ca href=\\\"/u/ES_Curse\\\"\\u003Eu/ES_Curse\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E179QN - Slot Machine - \\u003Ca href=\\\"/u/Cowboy_Jimmy\\\"\\u003Eu/Cowboy_Jimmy\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EP9DC5 - Custom Bouncing Projectiles - \\u003Ca href=\\\"/u/JayTheYggdrasil\\\"\\u003Eu/JayTheYggdrasil\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- FM3WR - Retaliation Damage - \\u003Ca href=\\\"/u/bacondev\\\"\\u003Eu/bacondev\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENK1YF - 2-D Sidescroller - \\u003Ca href=\\\"/u/HaxD3\\\"\\u003Eu/HaxD3\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ED8ZQC - 3rd Person View - \\u003Ca href=\\\"/u/Jiggy_Jigsaw\\\"\\u003Eu/Jiggy_Jigsaw\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 4V8NC - Top Down Shooter - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- 9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETZYK6 - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E- RFJ4G - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EP4Y50 - Bunny Hopping - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERNKKJ - All Heroes Hover Jet - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8H2DN - Sym Gravity Gun (Half-life) - \\u003Ca href=\\\"/u/IFIsc\\\"\\u003Eu/IFIsc\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EXGAPQ - Genji as Maeve (Paladins) - \\u003Ca href=\\\"/u/jprosk\\\"\\u003Eu/jprosk\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkof9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286092.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkm0q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257251.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#Reddit Post Organization\\n\\n####If posts are organized in a readable manner, it will help people to:\\n\\n- [Locate modes they like](#s \\\"Or hate\\\")\\n\\n- [Easily lend assistance](#s \\\"Hardly\\\")\\n\\n- [Not have to deal with ugly things](#s \\\"Except walking Zenyattas and wall-climbing Torbs\\\")\\n\\n##Post Example Layout\\n\\n- [Descriptive Title](#s \\\"Flaired Appropriately\\\")\\n\\n- Post Body\\n - Picture/Video [(Optional)](#s \\\"Follow this subs rules\\\")\\n - Code\\n - [Brief Summary](#s \\\"Or why your code is the awesomest ever\\\")\\n - Detailed Description (Optional)\\n - [Future Improvements](#s \\\"Unnecessary as your creation is perfect\\\") (Optional)\\n - [Credits](#s \\\"Those whose stuff you stole\\\")\\n\\n##General Posting Tips\\n\\n\\n\\n- Title\\tTips\\n\\n - Do use this phrasing: _[MyThing](#s \\\"What you made\\\") from [OtherMedia](#s \\\"What you stole the idea from\\\")_\\n\\n - Do be very specific. _Alphabetic Gun Game_ is better than simply _Gun Game_.\\n\\n - Good Example: _Alphabetic Gun Game from [CS:S:HTMLGO](#s \\\"CS Major\\\")_\\n\\n- Post Body Tips\\n\\n - Do use a visual if possible. [Video \\u003E Picture \\u003E Text](#s \\\"\\u003E Lier1\\\")\\n\\n - Do use formatting, titles, or at the very least, [paragraph breaks](#s \\\"Hit enter twice, not once\\\")\\n\\n - Do keep updated modes organized, either with new posts commented in the original post, or with update codes added with [edits](#s \\\"v3.1 Never mind\\\")\\n\\n - Do put things you are unsure how to do under [Future Improvements](#s \\\"As you will somehow be smarter in the future\\\")\\n\\n - Do [credit](#s \\\"I'll talk about using others work later\\\") other users in your post. It's only polite\\n\\n - Do your [research.](#s \\\"See that other people have posted working code before\\\") It will save you time and effort\\n\\n - Don't go into the [nitty gritty.](#s \\\"I used this rule with this condition\\\") Explain how it works in game, not in code\\n\\n\\n\\n---\\n\\n\\n\\n#Reddit Comment Organization\\n\\n#### If comments are organized in a helpful manner, it will help people to:\\n\\n- Get useful feedback\\n\\n- Raise their self-esteem\\n\\n\\n\\n\\n\\n\\n\\n##Comment Example Layout\\n\\n- [Notice the Good](#s \\\"It does exists, its just hiding\\\")\\n\\n- Harsh reality (Optional)\\n\\n- [Useful feedback](#s \\\"Unnecessary\\\")\\n\\n\\n\\n\\n\\n##General Tips\\n\\n\\n\\n- Do always be positive. There is [no need nor reason for negativity.](#s \\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\")\\n\\n- Do mention similar ideas. Link to them so the poster can get some ideas.\\n\\n- Do give actual information/feedback.\\n\\n- Do keep comments to the post at hand.\\n\\n- Don't simply comment [\\\"Great job\\\"](#s \\\"Great Job, finding this hover text\\\"). That's what liking is usually for.\\n\\n- Don't assume that the [posters vision matches yours.](#s \\\"My vision isn't 20-20, you see\\\")\\n\\n- Good Example: \\\"Me and a few friends played this mode, because we love it from Halloo 4. It's a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There's some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\\"\\n\\n---\\n\\n# Reddit Mode Specific\\n\\n\\n##Game Mode Post\\n\\n- Do label the specific [play mode](#s \\\"FFA, 5CP, Domination\\\") used in the code if it is unclear\\n\\n\\n\\n---\\n\\n\\n\\n##Game Mode Comment\\n\\n- Do play and share your experiences\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Post\\n\\n\\n\\n####Hero Description Example Layout\\n\\n- Health\\n\\n- Passives\\n\\n- Triggered Abilities\\n\\n - Stats\\n\\n - Other Features\\n\\n\\n\\n- ###Brief Summary Tips\\n\\n - Do mention what [role](#s \\\"Flanker, Tank, Monkey, etc.\\\") your hero should fill\\n\\n - Don't talk about how your hero will [destroy the meta](#s \\\"It won't\\\")\\n\\n\\n\\n- ### Triggered Ability Tips\\n\\n - Do use numbers to describe hero [DPS](#s \\\"Deaths per Second\\\") and [HPS](#s \\\"i need Healing per Second\\\") if you want balance advice\\n\\n - Do keep any numbers used checked against [actual heroes](#s \\\"No supports firing 20 rounds of 15 dmg a second\\\")\\n\\n - Do check sources such as this _linked_ [Overwatch GamePedia](https://overwatch.gamepedia.com/Overwatch_Wiki) page for how to describe abilities\\n\\n\\n\\n- ### General Tips\\n\\n - Do follow precedent for most parts of your character. They don't need a new leveling system, 50 HP, and a different [control scheme](#s \\\"Command Line\\\")\\n\\n - Do make heroes both fun to play and [fun to play against](#s \\\"mostly the second\\\")\\n\\n - Don't make a character with [lots of exceptions](#s \\\"Blocks all CC except Doomfist Punch\\\")\\n\\n - Don't step on too many [toes](#s \\\"*Cough* Pre-nerf Bridgette *Cough*\\\")\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Comment\\n\\n- Do keep balance comparisons within Overwatch. Comparing to Bastion is [OK](#s \\\"If dangerous\\\"). Comparing to Demo is less [helpful](#s \\\"Unless they are making TF2 accurate Demo\\\")\\n\\n- Do think of the character as a [whole](#s \\\"They can't attack while their shield is up? Useless\\\")\\n\\n- Do be kind. Not all posters are secretly [Blizzard Devs testing new heroes](#s \\\"But some are, right?\\\")\\n\\n- Don't talk balance unless the poster [wants to.](#s \\\"The hero will be horribly underpowered their first time. Let that go.\\\") They may just be creating for fun\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Post\\n\\n- Do try to keep the code as [simple and self-contained](#s \\\"Minimize Dependencies\\\") as possible\\n\\n- Do mention what variables you use\\n\\n- Do explain how you accomplished your [goal](#s \\\"Magic is an acceptable response\\\")\\n\\n- Do explain [bugs and edge cases](#s \\\"Or treat them as just part of the experience\\\")\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Comment\\n\\n- Do mention what cool game-modes you can imagine using with it\\n\\n- Do mention alternate ideas for how to implement it\\n\\n- Do post links to other [implementations](#s \\\"With permission\\\")\\n\\n- Do be amazed at what they managed to do\\n\\n---\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkm0q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EReddit Post Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf posts are organized in a readable manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or hate\\\"\\u003ELocate modes they like\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Hardly\\\"\\u003EEasily lend assistance\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Except walking Zenyattas and wall-climbing Torbs\\\"\\u003ENot have to deal with ugly things\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EPost Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Flaired Appropriately\\\"\\u003EDescriptive Title\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPicture/Video \\u003Ca href=\\\"#s\\\" title=\\\"Follow this subs rules\\\"\\u003E(Optional)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECode\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or why your code is the awesomest ever\\\"\\u003EBrief Summary\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDetailed Description (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary as your creation is perfect\\\"\\u003EFuture Improvements\\u003C/a\\u003E (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Those whose stuff you stole\\\"\\u003ECredits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Posting Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETitle Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use this phrasing: \\u003Cem\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What you made\\\"\\u003EMyThing\\u003C/a\\u003E from \\u003Ca href=\\\"#s\\\" title=\\\"What you stole the idea from\\\"\\u003EOtherMedia\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo be very specific. \\u003Cem\\u003EAlphabetic Gun Game\\u003C/em\\u003E is better than simply \\u003Cem\\u003EGun Game\\u003C/em\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003EGood Example: \\u003Cem\\u003EAlphabetic Gun Game from \\u003Ca href=\\\"#s\\\" title=\\\"CS Major\\\"\\u003ECS:S:HTMLGO\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use a visual if possible. \\u003Ca href=\\\"#s\\\" title=\\\"\\u0026gt; Lier1\\\"\\u003EVideo \\u0026gt; Picture \\u0026gt; Text\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo use formatting, titles, or at the very least, \\u003Ca href=\\\"#s\\\" title=\\\"Hit enter twice, not once\\\"\\u003Eparagraph breaks\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep updated modes organized, either with new posts commented in the original post, or with update codes added with \\u003Ca href=\\\"#s\\\" title=\\\"v3.1 Never mind\\\"\\u003Eedits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo put things you are unsure how to do under \\u003Ca href=\\\"#s\\\" title=\\\"As you will somehow be smarter in the future\\\"\\u003EFuture Improvements\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo \\u003Ca href=\\\"#s\\\" title=\\\"I\\u0026#39;ll talk about using others work later\\\"\\u003Ecredit\\u003C/a\\u003E other users in your post. It\\u0026#39;s only polite\\u003C/li\\u003E\\n\\u003Cli\\u003EDo your \\u003Ca href=\\\"#s\\\" title=\\\"See that other people have posted working code before\\\"\\u003Eresearch.\\u003C/a\\u003E It will save you time and effort\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t go into the \\u003Ca href=\\\"#s\\\" title=\\\"I used this rule with this condition\\\"\\u003Enitty gritty.\\u003C/a\\u003E Explain how it works in game, not in code\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Comment Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf comments are organized in a helpful manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGet useful feedback\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERaise their self-esteem\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EComment Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"It does exists, its just hiding\\\"\\u003ENotice the Good\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHarsh reality (Optional)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary\\\"\\u003EUseful feedback\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo always be positive. There is \\u003Ca href=\\\"#s\\\" title=\\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\"\\u003Eno need nor reason for negativity.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention similar ideas. Link to them so the poster can get some ideas.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo give actual information/feedback.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep comments to the post at hand.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t simply comment \\u003Ca href=\\\"#s\\\" title=\\\"Great Job, finding this hover text\\\"\\u003E\\u0026quot;Great job\\u0026quot;\\u003C/a\\u003E. That\\u0026#39;s what liking is usually for.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t assume that the \\u003Ca href=\\\"#s\\\" title=\\\"My vision isn\\u0026#39;t 20-20, you see\\\"\\u003Eposters vision matches yours.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGood Example: \\u0026quot;Me and a few friends played this mode, because we love it from Halloo 4. It\\u0026#39;s a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There\\u0026#39;s some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\u0026quot;\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Mode Specific\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo label the specific \\u003Ca href=\\\"#s\\\" title=\\\"FFA, 5CP, Domination\\\"\\u003Eplay mode\\u003C/a\\u003E used in the code if it is unclear\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo play and share your experiences\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Post\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EHero Description Example Layout\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHealth\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPassives\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETriggered Abilities\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EStats\\u003C/li\\u003E\\n\\u003Cli\\u003EOther Features\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EBrief Summary Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo mention what \\u003Ca href=\\\"#s\\\" title=\\\"Flanker, Tank, Monkey, etc.\\\"\\u003Erole\\u003C/a\\u003E your hero should fill\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t talk about how your hero will \\u003Ca href=\\\"#s\\\" title=\\\"It won\\u0026#39;t\\\"\\u003Edestroy the meta\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003ETriggered Ability Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use numbers to describe hero \\u003Ca href=\\\"#s\\\" title=\\\"Deaths per Second\\\"\\u003EDPS\\u003C/a\\u003E and \\u003Ca href=\\\"#s\\\" title=\\\"i need Healing per Second\\\"\\u003EHPS\\u003C/a\\u003E if you want balance advice\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep any numbers used checked against \\u003Ca href=\\\"#s\\\" title=\\\"No supports firing 20 rounds of 15 dmg a second\\\"\\u003Eactual heroes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo check sources such as this \\u003Cem\\u003Elinked\\u003C/em\\u003E \\u003Ca href=\\\"https://overwatch.gamepedia.com/Overwatch_Wiki\\\"\\u003EOverwatch GamePedia\\u003C/a\\u003E page for how to describe abilities\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EGeneral Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo follow precedent for most parts of your character. They don\\u0026#39;t need a new leveling system, 50 HP, and a different \\u003Ca href=\\\"#s\\\" title=\\\"Command Line\\\"\\u003Econtrol scheme\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo make heroes both fun to play and \\u003Ca href=\\\"#s\\\" title=\\\"mostly the second\\\"\\u003Efun to play against\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t make a character with \\u003Ca href=\\\"#s\\\" title=\\\"Blocks all CC except Doomfist Punch\\\"\\u003Elots of exceptions\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t step on too many \\u003Ca href=\\\"#s\\\" title=\\\"*Cough* Pre-nerf Bridgette *Cough*\\\"\\u003Etoes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep balance comparisons within Overwatch. Comparing to Bastion is \\u003Ca href=\\\"#s\\\" title=\\\"If dangerous\\\"\\u003EOK\\u003C/a\\u003E. Comparing to Demo is less \\u003Ca href=\\\"#s\\\" title=\\\"Unless they are making TF2 accurate Demo\\\"\\u003Ehelpful\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo think of the character as a \\u003Ca href=\\\"#s\\\" title=\\\"They can\\u0026#39;t attack while their shield is up? Useless\\\"\\u003Ewhole\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be kind. Not all posters are secretly \\u003Ca href=\\\"#s\\\" title=\\\"But some are, right?\\\"\\u003EBlizzard Devs testing new heroes\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t talk balance unless the poster \\u003Ca href=\\\"#s\\\" title=\\\"The hero will be horribly underpowered their first time. Let that go.\\\"\\u003Ewants to.\\u003C/a\\u003E They may just be creating for fun\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo try to keep the code as \\u003Ca href=\\\"#s\\\" title=\\\"Minimize Dependencies\\\"\\u003Esimple and self-contained\\u003C/a\\u003E as possible\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what variables you use\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain how you accomplished your \\u003Ca href=\\\"#s\\\" title=\\\"Magic is an acceptable response\\\"\\u003Egoal\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain \\u003Ca href=\\\"#s\\\" title=\\\"Or treat them as just part of the experience\\\"\\u003Ebugs and edge cases\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what cool game-modes you can imagine using with it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention alternate ideas for how to implement it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo post links to other \\u003Ca href=\\\"#s\\\" title=\\\"With permission\\\"\\u003Eimplementations\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be amazed at what they managed to do\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkm0q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557286051.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emrkcxj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557257095.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**[TLDR:](#s \\\"Too Logical, Died Reading\\\")** I think that the Overwatch Workshop Community should get organized, and have some [ideas on doing so.](#s \\\"Not good ideas, mind you\\\")\\n\\n**Brief disclaimer:**\\n\\n- I by no means think these are the best ideas, I'm just trying to get a discussion started.\\n\\n- Please comment with better ideas, or parts I'm wrong about, or just because you feel like it.\\n\\n- A lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\n\\n- Also, liberal hover tags abound, and [none](#s \\\"some are funny, however\\\") are useful. The only things you can click on are specifically called out as links.\\n\\n- This got really big, really fast. I've split it into a few seperate posts. If the organization seems off, please tell me how to [fix it.](#s \\\"Because I don't know how to.\\\")\\n\\n---\\n\\n# Table of Contents\\n\\n##[Reddit Organization](#s \\\"How to do better than this post\\\") A.K.A Proposals\\n\\n- #### Posts\\n\\n- #### Comments\\n\\n- #### Mode Specific Tips\\n\\n- #### Ownership Discussion\\n\\n##[One-Stop Assistance](#s \\\"More like None-Start\\\") A.K.A Resources\\n\\n- #### [Workshop FAQ](#s \\\"What is an FAQ?\\\")\\n\\n- #### [Useful Links](#s \\\"May be copywrite infringing\\\")\\n - ###### Discord Channels\\n - ###### Youtube Channels\\n - ###### Dev Updates\\n - ###### Mode/Code Lists\\n\\n## [Workshop Improvement Ideas](#s \\\"Nonexistent\\\")\\n\\n## [Future](#s \\\"Implying they will get done\\\") Projects\\n\\n## Random [Asides](#s \\\"Also B-sides\\\")\\n - #### [TLDR](#s \\\"You look for the TLDR in the Table of Contents?\\\")\\n---\\n\\n[Reddit Organization Post Link]()\\n\\n[One Stop Assistance Post Link]()\\n\\n[My Code List Link]()\\n\\n[Workshop Improvement Ideas Link]()\\n\\n## Future Projects\\n#### I'll probably see what I can do to organize a large-scale modding project once we get enough space on the workshop for it.\\n#### I'll be updating and correcting this post with all the information you commentors give me, and the actual game-modes I've been collection. Maybe I'll add more hover-text jokes.\\n#### I'm planning on adding a section with advice on creating a new mode or character, instead of just how to post one.\\n\\n## Random Asides\\n#### About Me: I'm Lier1. I'm a filthy casual, I make lots of jokes, and I [main DPS.](#s \\\"The worst sort of main, I know\\\") However, I don't wish to offend, and hope to improve this resource, so feel free to comment and ask questions, fix my mistakes, or add more resources.\\n#### TLDR: I have some ideas for organizing the reddit posts and comments, the feedback we give the devs, an FAQ for answering your questions, and a One-Stop Workshop for leading you to resources.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emrkcxj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Too Logical, Died Reading\\\"\\u003ETLDR:\\u003C/a\\u003E\\u003C/strong\\u003E I think that the Overwatch Workshop Community should get organized, and have some \\u003Ca href=\\\"#s\\\" title=\\\"Not good ideas, mind you\\\"\\u003Eideas on doing so.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBrief disclaimer:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI by no means think these are the best ideas, I\\u0026#39;m just trying to get a discussion started.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPlease comment with better ideas, or parts I\\u0026#39;m wrong about, or just because you feel like it.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EA lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EAlso, liberal hover tags abound, and \\u003Ca href=\\\"#s\\\" title=\\\"some are funny, however\\\"\\u003Enone\\u003C/a\\u003E are useful. The only things you can click on are specifically called out as links.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EThis got really big, really fast. I\\u0026#39;ve split it into a few seperate posts. If the organization seems off, please tell me how to \\u003Ca href=\\\"#s\\\" title=\\\"Because I don\\u0026#39;t know how to.\\\"\\u003Efix it.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ETable of Contents\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"How to do better than this post\\\"\\u003EReddit Organization\\u003C/a\\u003E A.K.A Proposals\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EPosts\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EComments\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EMode Specific Tips\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EOwnership Discussion\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"More like None-Start\\\"\\u003EOne-Stop Assistance\\u003C/a\\u003E A.K.A Resources\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What is an FAQ?\\\"\\u003EWorkshop FAQ\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"May be copywrite infringing\\\"\\u003EUseful Links\\u003C/a\\u003E\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E###### Discord Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Youtube Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Dev Updates\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Mode/Code Lists\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Nonexistent\\\"\\u003EWorkshop Improvement Ideas\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Implying they will get done\\\"\\u003EFuture\\u003C/a\\u003E Projects\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ERandom \\u003Ca href=\\\"#s\\\" title=\\\"Also B-sides\\\"\\u003EAsides\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003E - #### \\u003Ca href=\\\"#s\\\" title=\\\"You look for the TLDR in the Table of Contents?\\\"\\u003ETLDR\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E[Reddit Organization Post Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[One Stop Assistance Post Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[My Code List Link]()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Workshop Improvement Ideas Link]()\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EFuture Projects\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;ll probably see what I can do to organize a large-scale modding project once we get enough space on the workshop for it.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;ll be updating and correcting this post with all the information you commentors give me, and the actual game-modes I\\u0026#39;ve been collection. Maybe I\\u0026#39;ll add more hover-text jokes.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003EI\\u0026#39;m planning on adding a section with advice on creating a new mode or character, instead of just how to post one.\\u003C/h4\\u003E\\n\\n\\u003Ch2\\u003ERandom Asides\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EAbout Me: I\\u0026#39;m Lier1. I\\u0026#39;m a filthy casual, I make lots of jokes, and I \\u003Ca href=\\\"#s\\\" title=\\\"The worst sort of main, I know\\\"\\u003Emain DPS.\\u003C/a\\u003E However, I don\\u0026#39;t wish to offend, and hope to improve this resource, so feel free to comment and ask questions, fix my mistakes, or add more resources.\\u003C/h4\\u003E\\n\\n\\u003Ch4\\u003ETLDR: I have some ideas for organizing the reddit posts and comments, the feedback we give the devs, an FAQ for answering your questions, and a One-Stop Workshop for leading you to resources.\\u003C/h4\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emrkcxj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557285895.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emo4wbj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557169931.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Fun Modes\\n\\n* K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n* 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n* RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n* EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n* N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n* 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n* M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n* T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n* NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n* R4DWM - BloodBorne in Overwatch - u/Elodeona\\n* EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n* FHQZ4 - Bridgette Pong - u/AJ_Black\\n* KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n* 53J3R - Shooters Vs Stabbers - Lilsis\\n* BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n* BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n* 5KCP4 - Dva Eject into Random Ult - u/qbbftw \\\\- ORIGINAL IDEA FROM: u/Woolin\\n* YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n* 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n* 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n* MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n* SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n* VJCT2 - Chase the Snowmen - u/andygmb\\n* 6PC67 - Take Hero of Kills - u/CrenderMutant\\n* 9J42E - Mcree Hot Potato - u/olipoulihot\\n* 85J46 - TF2 the Return - u/Greg266\\n* 7792M - Ninja Sword Fight - u/zhpete\\n* VQ5W8 - Turn Based 3v3 Deathmatch - u/nodas9990\\n* 56XNH - Reinhardt's Completely Stoned Bumper Car Emporeum v14 - u/TheRedstoneBlaze\\n* R68FF - Lucio Ball - u/Telefrag_Ent\\n* V5NKR - Volleybomb - u/Telefrag_Ent\\n* GB9PM - Instagib Railgun : Ashe Team Deathmatch - u/Telefrag_Ent\\n* PGF9P - 1 v 1 High Noon Duel - u/Zenmill\\n* ZKQVG - One in the Chamber: 3 Lives - u/iejb\\n* \\u00a0\\n* 0D2W5 - Hampster Chase - u/Woolin\\n* 6E3Z5 - Lucio Tag - u/Woolin \\u00a0\\n*\\n* 4J6KW - Screencheat - u/PotsNPans\\n* MN787 - Screencheat - u/microcosm_ow \\u00a0\\n*\\n* PTTNK - Weeping Angels (Zen Mcree) - u/Semproser\\n* X2HH9 - Weeping Angels (Mercy Mei) - u/Hogrid125 \\u00a0\\n*\\n* NJGZ4 - Deathmatch Rivals - u/Hypno--Toad\\n* A6736 - Rival System - u/Hypno--Toad \\u00a0\\n*\\n* JWY47 - Hammond Racing - @DanielFedder (Twitter)\\n* D9RND - Hamster Ball Racing - u/qwook \\u00a0\\n*\\n* SH9XN - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n* 9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray \\u00a0\\n*\\n* RGH0D - High Speed: FFA - u/rbnsky\\n* SF1R2 - High Speed Gun Game - u/rbnsky \\u00a0\\n*\\n* E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n* QH5SP - PVE Horde Mode - u/Jechto\\n\\n## Training Modes\\n\\n* RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n* 2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n\\n* QKAAM - Placeable Cameras - u/ItsDeltin\\n* CQ00S - Elemental Aspects - u/poststakhanovist\\n* 179QN - Slot Machine - u/Cowboy_Jimmy\\n* 6WXRW - Navi - u/andygmb \\\\- u/Lymbow \\u00a0\\n*\\n* NK1YF - 2-D Sidescroller - u/HaxD3\\n* 4V8NC - Top Down Shooter - u/microcosm_ow \\u00a0\\n*\\n* ZW1PY - Scoreboard - u/Paf13\\n* 9EKZB - Scoreboard - u/caldoran2 \\u00a0\\n*\\n* QESP4 - Walls - u/Zezombye\\n* TZYK6 - Walls - u/Gecktendo\\n* RFJ4G - Walls - u/Gecktendo \\u00a0\\n*\\n* P4Y50 - Bunny Hopping - u/microcosm_ow\\n* WV5HH - Bunny Hop - u/TyzoneLyraNature\\n\\n## Hero Ideas\\n\\n* XJZB1 - Orisa AoE Push - AlexEptit\\n* H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n* RNKKJ - All Heroes Hover Jet - u/microcosm_ow\\n* 8H2DN - Sym Gravity Gun (Half-life) - u/IFIsc\\n* XGAPQ - Genji as Maeve (Paladins) - u/jprosk\\n* BE2J7 - Portal Gun - u/Lymbow \\\\- u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emo4wbj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9J42E - Mcree Hot Potato - \\u003Ca href=\\\"/u/olipoulihot\\\"\\u003Eu/olipoulihot\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E85J46 - TF2 the Return - \\u003Ca href=\\\"/u/Greg266\\\"\\u003Eu/Greg266\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E7792M - Ninja Sword Fight - \\u003Ca href=\\\"/u/zhpete\\\"\\u003Eu/zhpete\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVQ5W8 - Turn Based 3v3 Deathmatch - \\u003Ca href=\\\"/u/nodas9990\\\"\\u003Eu/nodas9990\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E56XNH - Reinhardt\\u0026#39;s Completely Stoned Bumper Car Emporeum v14 - \\u003Ca href=\\\"/u/TheRedstoneBlaze\\\"\\u003Eu/TheRedstoneBlaze\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER68FF - Lucio Ball - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EV5NKR - Volleybomb - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGB9PM - Instagib Railgun : Ashe Team Deathmatch - \\u003Ca href=\\\"/u/Telefrag_Ent\\\"\\u003Eu/Telefrag_Ent\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EPGF9P - 1 v 1 High Noon Duel - \\u003Ca href=\\\"/u/Zenmill\\\"\\u003Eu/Zenmill\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZKQVG - One in the Chamber: 3 Lives - \\u003Ca href=\\\"/u/iejb\\\"\\u003Eu/iejb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u00a0\\u003C/li\\u003E\\n\\u003Cli\\u003E0D2W5 - Hampster Chase - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6E3Z5 - Lucio Tag - \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003E4J6KW - Screencheat - \\u003Ca href=\\\"/u/PotsNPans\\\"\\u003Eu/PotsNPans\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMN787 - Screencheat - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EPTTNK - Weeping Angels (Zen Mcree) - \\u003Ca href=\\\"/u/Semproser\\\"\\u003Eu/Semproser\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EX2HH9 - Weeping Angels (Mercy Mei) - \\u003Ca href=\\\"/u/Hogrid125\\\"\\u003Eu/Hogrid125\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ENJGZ4 - Deathmatch Rivals - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EA6736 - Rival System - \\u003Ca href=\\\"/u/Hypno--Toad\\\"\\u003Eu/Hypno--Toad\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EJWY47 - Hammond Racing - @DanielFedder (Twitter)\\u003C/li\\u003E\\n\\u003Cli\\u003ED9RND - Hamster Ball Racing - \\u003Ca href=\\\"/u/qwook\\\"\\u003Eu/qwook\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ESH9XN - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9VX0M - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E2B216 - Advanced Training Mode v9.0 - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E179QN - Slot Machine - \\u003Ca href=\\\"/u/Cowboy_Jimmy\\\"\\u003Eu/Cowboy_Jimmy\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003ENK1YF - 2-D Sidescroller - \\u003Ca href=\\\"/u/HaxD3\\\"\\u003Eu/HaxD3\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E4V8NC - Top Down Shooter - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ETZYK6 - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERFJ4G - Walls - \\u003Ca href=\\\"/u/Gecktendo\\\"\\u003Eu/Gecktendo\\u003C/a\\u003E \\u00a0\\n*\\u003C/li\\u003E\\n\\u003Cli\\u003EP4Y50 - Bunny Hopping - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERNKKJ - All Heroes Hover Jet - \\u003Ca href=\\\"/u/microcosm_ow\\\"\\u003Eu/microcosm_ow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8H2DN - Sym Gravity Gun (Half-life) - \\u003Ca href=\\\"/u/IFIsc\\\"\\u003Eu/IFIsc\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EXGAPQ - Genji as Maeve (Paladins) - \\u003Ca href=\\\"/u/jprosk\\\"\\u003Eu/jprosk\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emo4wbj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557198731.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emny9vc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MeddyEvalNight\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557166074.0, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Image was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u003Cimg/\\u003E . It looks like an inline rendered image needs to be uploaded\\n\\n\\u0026#x200B;\\n\\n[Video link](https://www.youtube.com/watch?v=yd98RGxad0U)\", \"link_title\": \"Testing inline image links. Is it a url link or an inline image render?\", \"author_flair_css_class\": null, \"name\": \"t1_emny9vc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EImage was rendered as a link , but really wanted an inline render of an already hosted image - similar to html \\u0026lt;img/\\u0026gt; . It looks like an inline rendered image needs to be uploaded\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=yd98RGxad0U\\\"\\u003EVideo link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emny9vc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"report_reasons\": null, \"link_author\": \"MeddyEvalNight\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"created\": 1557194874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blfat0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emnwgbf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MeddyEvalNight\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1557165020.0, \"send_replies\": true, \"parent_id\": \"t3_blfat0\", \"score\": 1, \"author_fullname\": \"t2_250hgx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Not what I wanted... next test.\", \"link_title\": \"Testing inline image links. Is it a url link or an inline image render?\", \"author_flair_css_class\": null, \"name\": \"t1_emnwgbf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot what I wanted... next test.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/emnwgbf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"report_reasons\": null, \"link_author\": \"MeddyEvalNight\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blfat0/testing_inline_image_links_is_it_a_url_link_or_an/\", \"created\": 1557193820.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmzbbw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gpngc\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557143134.0, \"send_replies\": true, \"parent_id\": \"t3_blb203\", \"score\": 1, \"author_fullname\": \"t2_6fxy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n**1.** **Chargers \\u2013 Jerry Tillery \\u2013 4** \\n\\nI loved this Chargers draft. They got the No. 11 and 12 players on my Big Board. \\n\\nTillery has bust risk after an uneven college career, but I think his pro traits translate in a big way. He absolutely wrecked the Stanford game with 4 sacks, so perhaps my evaluation wouldn\\u2019t be as rosy if I watched his entire career. Still, traits. He has a strong club, pushes the pocket, and is stout against the run. Just watch Stanford. His issues with consistency come down to technique and stupid things like not exploding off the ball for some reason. He\\u2019s really good right now and with some coaching can be great. The Chargers might have the best defense in the league next year. \\n\\nNasir Adderly was my favorite player in the entire draft. My prediction is a 5. Copied and pasted from my notes: wowowowowowoowowwowoow. It doesn\\u2019t take a professional scout to see that he\\u2019s playing at a different speed than everyone else on the field at the FCS level. Against NDSU, I saw him at 206 pounds push back a 300-pound OL and knock down an outside WR. He\\u2019s a missile downhill and has the ball skills and range of a top safety. The only question I have is how he\\u2019ll respond to the jump in competition. When scouting FCS players, you want to see them dominate exactly as he did. STOP whatever you\\u2019re doing and watch this right now: [https://www.youtube.com/watch?v=0dwOuc8K4ik](https://www.youtube.com/watch?v=0dwOuc8K4ik) He gives a new meaning to the term \\u201cstop and start\\u201d, makes some spectacular catches down the field, and misses a tackle on punt coverage\\u2026 \\u2026then Ben Watsons his mistake in unbelievable fashion. Seriously, just watch this right now: [https://www.youtube.com/watch?v=0dwOuc8K4ik](https://www.youtube.com/watch?v=0dwOuc8K4ik) \\n\\nThe Chargers might have the best safety duo in the league soon. \\n\\n**2.** **Seahawks \\u2013 L.J. Collier \\u2013 1** \\n\\nI\\u2019m a Seahawks fan and I\\u2019m just about done with GM John Schneider. I\\u2019ll forever love him for building a SB Champion, but enough is enough, and they\\u2019re wasting Russ\\u2019 prime. After the all-time draft class in 2012, Schneider has done very little good and a ton bad with Seahawks draft capital. Besides Tyler Lockett, Frank Clark, Jarran Reed, and Chris Carson, there hasn\\u2019t been much to show for despite hoarding draft picks and trading down every year. Just look at how he\\u2019s handled the first round since 2013: \\n\\n2013: Traded for Percy Harvin. While he may have sealed one SB, he fractured the locker room. \\n\\n2014: Traded into the 2nd and took Paul Richardson. Meh. \\n\\n2015: Traded for Jimmy Graham. Eh. \\n\\n2016: Selected Germain Ifedi. LOL. \\n\\n2017: Traded into the the 2nd and took Malik McDowell who never played a snap for them. \\n\\n2018: Traded down to No. 27 to take a RB, who, even if he\\u2019s good, is still a RB. \\n\\nAnd it\\u2019s not like he\\u2019s been nailing the later rounds either. \\n\\nHis drafts since 2013 are a fireable offense. He\\u2019ll probably never be separated from Carroll, and he\\u2019ll always have 2012 to shield him, but he\\u2019s been objectively awful for years. Sorry to spit the truth fellow 12s. \\n\\nThe Seahawks take pride in doing off-the-wall things and have missed out on so much talent because of it. I don\\u2019t believe in the term \\u201creach\\u201d, but the guys the media says they reached for don\\u2019t ever pan out (besides 2012), sooooo\\u2026. They also love trading down to hoard draft picks, but they just end up on missing on all the picks they get! It\\u2019s frustrating as a fan to see guys like Calvin Ridley, Sweat, Tillery, and Marquise Brown get taken in between their original slot and trade-down slot. They take pride in their unconventional ways, and their ways have been thoroughly ineffective since 2012. This year JS was quoted as saying something along the lines of \\u2018the draft was going the way it was expected to, and we didn\\u2019t like that.\\u2019 The media and draftniks have gotten wiser and straying so far off EVERYONE\\u2019S Big Boards usually doesn\\u2019t work anymore. \\n\\nOn to Collier, he\\u2019s a decent 24-year-old power edge guy, who\\u2019s profile is that of a clear capped-upside second-rounder. The only thing he has going for him that I can\\u2019t really speak on is his supposedly dominant Senior Bowl week. There are some nice things on film, and he can be a solid run defender, but a lot of his pressures and sacks won\\u2019t translate. He\\u2019s not going to bull-rush and get instant sacks against NFL tackles. His horrid 7.71 3cone confirms his lack of bend off the edge. He started one year at TCU and had so-so film. The pick just doesn\\u2019t make sense. \\n\\nI did a YouTube video ([https://www.youtube.com/watch?v=VsRjqfOao\\\\_0](https://www.youtube.com/watch?v=VsRjqfOao_0)) on D.K. Metcalf (2) right after he blew up the combine and called him a 3rd-round pick. He has every trait of a bust risk but went to the best situation possible. Russ makes everyone around him better and D.K. won\\u2019t have to run many advanced routes for the best deep-ball passer in the game. He\\u2019ll also be thrust right away into playing time, and the culture at Seattle sets their players up for success, especially at WR. If he was a developmental project in a different program, stuck behind better receivers or with a bad QB, I could see him falling out of relevance and not building any confidence. \\n\\nAs a deep threat, he\\u2019s not bad. However, there are a ton of concerns on tape. He\\u2019s all straight-linish with no agility, and his athletic testing comparisons to Tom Brady are evident on film. He lacks a release plan to gain separation. He will body catch when he doesn\\u2019t have to and I can\\u2019t tell if his hands are just average or below average, probably because there simply weren\\u2019t many catches on film. Some of his proponents cited \\u201cbad coaching\\u201d as the reason he didn\\u2019t produce. I understand he plays a different position, but A.J. Brown produced huge numbers in the same offense. Metcalf isn\\u2019t a bad prospect by any means. He flashed as a deep threat (which fits Seattle) and has functional (and photogenic) strength as a blocker and fall-forward-after-catch guy. But concerns with rawness and route-running make him developmental with question marks. I would have preferred to stay away and I can\\u2019t endorse the pick. But in the late-second, I suppose they could have done worse. \\n\\nHere\\u2019s a hot take: Gary Jennings Jr. (3) Will be a better pro than D.K. He popped on film while scouting Grier. He can\\u2019t run a route to save his life but he has literally everything else you want from a pro WR including outstanding ball skills.\\n\\n3. Giants \\u2013 See Pick 6 \\n\\n4. Falcons \\u2013 See Pick 14 \\n\\n**5.** **Patriots \\u2013 N\\u2019Keal Harry \\u2013 2** \\n\\nThe ghost of Chad Jackson has haunted Gillette for years. Read the book \\u201cWar Room\\u201d about Belichick and the Patriots drafts. With a glaring need at WR, the Pats finally spent a first on one, and Harry has a chance to start right away. \\n\\nHarry was one of the most unique WR prospects I\\u2019ve ever scouted. Nothing about his game is conventional, starting with his awkward upright stance and weird rolling release. His running-after-the-catch transitions are awkward as he\\u2019ll weirdly high-step or foot-fire for one full second before somehow gliding forward without being an easy target for a tackler. His arms pump down to his knees when he runs. Good coaches let players be themselves, and Harry\\u2019s unconventional ways do lead to success on film. He\\u2019s sudden down the field on second-level releases and catches the ball well for the most part, using his bigger body to his advantage. His confidence on film is evident, but the Oregon game makes me reluctant to pick a star. He had a couple of drops and generally struggled. Predicting the careers of draft picks is really ridiculous. I wouldn\\u2019t be shocked with any outcome, including a full-blown implosion or budding superstar. My initial instinct was that he was just OK. 3. Wait. He really won\\u2019t be a 3. He\\u2019s either going to be the guy or not work out. 2. \\n\\n**46. Browns \\u2013 Greedy Wiliams \\u2013 3** \\n\\nI don\\u2019t know why Greedy fell and Dorsey made a good move trading up to get him. Everyone knows what he is as a long press corner but a second look at his tape revealed one issue. He is very inconsistent locating the football and getting his head around in press. Teams are going to play the percentages and abuse him if he doesn\\u2019t learn how to consistently turn his head. Still, the traits are there and he\\u2019s really good. I don\\u2019t care about his run defense in a man-heavy scheme.\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmzbbw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E1.\\u003C/strong\\u003E \\u003Cstrong\\u003EChargers \\u2013 Jerry Tillery \\u2013 4\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI loved this Chargers draft. They got the No. 11 and 12 players on my Big Board. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETillery has bust risk after an uneven college career, but I think his pro traits translate in a big way. He absolutely wrecked the Stanford game with 4 sacks, so perhaps my evaluation wouldn\\u2019t be as rosy if I watched his entire career. Still, traits. He has a strong club, pushes the pocket, and is stout against the run. Just watch Stanford. His issues with consistency come down to technique and stupid things like not exploding off the ball for some reason. He\\u2019s really good right now and with some coaching can be great. The Chargers might have the best defense in the league next year. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENasir Adderly was my favorite player in the entire draft. My prediction is a 5. Copied and pasted from my notes: wowowowowowoowowwowoow. It doesn\\u2019t take a professional scout to see that he\\u2019s playing at a different speed than everyone else on the field at the FCS level. Against NDSU, I saw him at 206 pounds push back a 300-pound OL and knock down an outside WR. He\\u2019s a missile downhill and has the ball skills and range of a top safety. The only question I have is how he\\u2019ll respond to the jump in competition. When scouting FCS players, you want to see them dominate exactly as he did. STOP whatever you\\u2019re doing and watch this right now: \\u003Ca href=\\\"https://www.youtube.com/watch?v=0dwOuc8K4ik\\\"\\u003Ehttps://www.youtube.com/watch?v=0dwOuc8K4ik\\u003C/a\\u003E He gives a new meaning to the term \\u201cstop and start\\u201d, makes some spectacular catches down the field, and misses a tackle on punt coverage\\u2026 \\u2026then Ben Watsons his mistake in unbelievable fashion. Seriously, just watch this right now: \\u003Ca href=\\\"https://www.youtube.com/watch?v=0dwOuc8K4ik\\\"\\u003Ehttps://www.youtube.com/watch?v=0dwOuc8K4ik\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Chargers might have the best safety duo in the league soon. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E2.\\u003C/strong\\u003E \\u003Cstrong\\u003ESeahawks \\u2013 L.J. Collier \\u2013 1\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m a Seahawks fan and I\\u2019m just about done with GM John Schneider. I\\u2019ll forever love him for building a SB Champion, but enough is enough, and they\\u2019re wasting Russ\\u2019 prime. After the all-time draft class in 2012, Schneider has done very little good and a ton bad with Seahawks draft capital. Besides Tyler Lockett, Frank Clark, Jarran Reed, and Chris Carson, there hasn\\u2019t been much to show for despite hoarding draft picks and trading down every year. Just look at how he\\u2019s handled the first round since 2013: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2013: Traded for Percy Harvin. While he may have sealed one SB, he fractured the locker room. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2014: Traded into the 2nd and took Paul Richardson. Meh. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2015: Traded for Jimmy Graham. Eh. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2016: Selected Germain Ifedi. LOL. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2017: Traded into the the 2nd and took Malik McDowell who never played a snap for them. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2018: Traded down to No. 27 to take a RB, who, even if he\\u2019s good, is still a RB. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd it\\u2019s not like he\\u2019s been nailing the later rounds either. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHis drafts since 2013 are a fireable offense. He\\u2019ll probably never be separated from Carroll, and he\\u2019ll always have 2012 to shield him, but he\\u2019s been objectively awful for years. Sorry to spit the truth fellow 12s. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Seahawks take pride in doing off-the-wall things and have missed out on so much talent because of it. I don\\u2019t believe in the term \\u201creach\\u201d, but the guys the media says they reached for don\\u2019t ever pan out (besides 2012), sooooo\\u2026. They also love trading down to hoard draft picks, but they just end up on missing on all the picks they get! It\\u2019s frustrating as a fan to see guys like Calvin Ridley, Sweat, Tillery, and Marquise Brown get taken in between their original slot and trade-down slot. They take pride in their unconventional ways, and their ways have been thoroughly ineffective since 2012. This year JS was quoted as saying something along the lines of \\u2018the draft was going the way it was expected to, and we didn\\u2019t like that.\\u2019 The media and draftniks have gotten wiser and straying so far off EVERYONE\\u2019S Big Boards usually doesn\\u2019t work anymore. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn to Collier, he\\u2019s a decent 24-year-old power edge guy, who\\u2019s profile is that of a clear capped-upside second-rounder. The only thing he has going for him that I can\\u2019t really speak on is his supposedly dominant Senior Bowl week. There are some nice things on film, and he can be a solid run defender, but a lot of his pressures and sacks won\\u2019t translate. He\\u2019s not going to bull-rush and get instant sacks against NFL tackles. His horrid 7.71 3cone confirms his lack of bend off the edge. He started one year at TCU and had so-so film. The pick just doesn\\u2019t make sense. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did a YouTube video (\\u003Ca href=\\\"https://www.youtube.com/watch?v=VsRjqfOao_0\\\"\\u003Ehttps://www.youtube.com/watch?v=VsRjqfOao_0\\u003C/a\\u003E) on D.K. Metcalf (2) right after he blew up the combine and called him a 3rd-round pick. He has every trait of a bust risk but went to the best situation possible. Russ makes everyone around him better and D.K. won\\u2019t have to run many advanced routes for the best deep-ball passer in the game. He\\u2019ll also be thrust right away into playing time, and the culture at Seattle sets their players up for success, especially at WR. If he was a developmental project in a different program, stuck behind better receivers or with a bad QB, I could see him falling out of relevance and not building any confidence. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a deep threat, he\\u2019s not bad. However, there are a ton of concerns on tape. He\\u2019s all straight-linish with no agility, and his athletic testing comparisons to Tom Brady are evident on film. He lacks a release plan to gain separation. He will body catch when he doesn\\u2019t have to and I can\\u2019t tell if his hands are just average or below average, probably because there simply weren\\u2019t many catches on film. Some of his proponents cited \\u201cbad coaching\\u201d as the reason he didn\\u2019t produce. I understand he plays a different position, but A.J. Brown produced huge numbers in the same offense. Metcalf isn\\u2019t a bad prospect by any means. He flashed as a deep threat (which fits Seattle) and has functional (and photogenic) strength as a blocker and fall-forward-after-catch guy. But concerns with rawness and route-running make him developmental with question marks. I would have preferred to stay away and I can\\u2019t endorse the pick. But in the late-second, I suppose they could have done worse. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u2019s a hot take: Gary Jennings Jr. (3) Will be a better pro than D.K. He popped on film while scouting Grier. He can\\u2019t run a route to save his life but he has literally everything else you want from a pro WR including outstanding ball skills.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGiants \\u2013 See Pick 6 \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFalcons \\u2013 See Pick 14 \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E5.\\u003C/strong\\u003E \\u003Cstrong\\u003EPatriots \\u2013 N\\u2019Keal Harry \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe ghost of Chad Jackson has haunted Gillette for years. Read the book \\u201cWar Room\\u201d about Belichick and the Patriots drafts. With a glaring need at WR, the Pats finally spent a first on one, and Harry has a chance to start right away. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHarry was one of the most unique WR prospects I\\u2019ve ever scouted. Nothing about his game is conventional, starting with his awkward upright stance and weird rolling release. His running-after-the-catch transitions are awkward as he\\u2019ll weirdly high-step or foot-fire for one full second before somehow gliding forward without being an easy target for a tackler. His arms pump down to his knees when he runs. Good coaches let players be themselves, and Harry\\u2019s unconventional ways do lead to success on film. He\\u2019s sudden down the field on second-level releases and catches the ball well for the most part, using his bigger body to his advantage. His confidence on film is evident, but the Oregon game makes me reluctant to pick a star. He had a couple of drops and generally struggled. Predicting the careers of draft picks is really ridiculous. I wouldn\\u2019t be shocked with any outcome, including a full-blown implosion or budding superstar. My initial instinct was that he was just OK. 3. Wait. He really won\\u2019t be a 3. He\\u2019s either going to be the guy or not work out. 2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E46. Browns \\u2013 Greedy Wiliams \\u2013 3\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u2019t know why Greedy fell and Dorsey made a good move trading up to get him. Everyone knows what he is as a long press corner but a second look at his tape revealed one issue. He is very inconsistent locating the football and getting his head around in press. Teams are going to play the percentages and abuse him if he doesn\\u2019t learn how to consistently turn his head. Still, the traits are there and he\\u2019s really good. I don\\u2019t care about his run defense in a man-heavy scheme.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmzbbw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171934.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmz810\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"converter-bot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557143052.0, \"send_replies\": true, \"parent_id\": \"t1_emmz7qr\", \"score\": 1, \"author_fullname\": \"t2_zds627j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"7 yards is 6.4 meters\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmz810\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E7 yards is 6.4 meters\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmz810/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171852.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmz7qr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gpngc\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557143045.0, \"send_replies\": true, \"parent_id\": \"t3_blb203\", \"score\": 1, \"author_fullname\": \"t2_6fxy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n**1.** **Vikings \\u2013 Garrett Bradbury \\u2013 2** \\n\\nI don\\u2019t like picking this many 2s in the teens, but these were the guys I was down on a bit and all of them have fairly high floors so I\\u2019m reluctant to pick 1s. It\\u2019s simply very rare than interior OL is drafted in the teens and doesn\\u2019t end up at least being solid. Still, I had Bradbury ranked 49th on my Big Board. His tape was that of an average college OL. He struggled to get movement in the run game. He was fine in pass protection. Against Michigan, he was bench pressed and pushed back multiple times by LB #35. It was jarring. Even in a zone scheme, getting moved back at center against LBs is a red flag for me. If I\\u2019m taking a center in the first round I want Travis Frederick or Ryan Kelly \\u2013 technicians who also have the power to move people. Bradbury was a fine college player in an offense with a lot of quick game reps, especially against Clemson, but I see his lack of strength at the POA as a major flaw. And it\\u2019s not like he\\u2019s Ryan Kelly in terms of technique. Athleticism and intelligence are great qualities, but if you\\u2019re spending the 18th overall pick on a center, he better have more than that. Bradbury doesn\\u2019t. \\n\\n**2.** **Titans \\u2013 Jeffrey Simmons \\u2013 3** \\n\\nI have no idea why ESPN handled the Simmons pick the way they did. It was one of the most bizarre NFL Draft segments I\\u2019ve ever seen. And the worst part is I don\\u2019t think they showed ONE SECOND of him playing football. So odd. \\n\\nI don\\u2019t think Simmons\\u2019 film showed the best player in the draft as some said. He was the 23rd ranked player on my board before I knew about his character questions. Injuries factored in slightly for me. He\\u2019s got everything you want in a dominant DL, but there were some really bad stretches on film. He struggled vs double teams against Florida, on one rep stopping his feet and getting driven back literally 7 yards before flailing his arm in a feeble tackle attempt. He\\u2019ll lean too much and get caught out of position. He\\u2019ll stand straight up. There were flashes of brilliance, and if he can make some technique changes to mix with his strength, he can be a factor inside in the NFL. He\\u2019s tough to reach in the run game and makes plays. Really good college player who needs to work that much harder to up his game for the next level.\\n\\n**3.** **Broncos \\u2013 Noah Fant \\u2013 3** \\n\\nThere is one glaring takeaway from Fant\\u2019s film, and I\\u2019m surprised I haven\\u2019t read it anywhere: He doesn\\u2019t break ANY tackles. Breaking tackles isn\\u2019t exactly a hugely important skill for TEs in the NFL, but it speaks to a lack of dominance over his level of competition. As a possession receiver, Fant is fine. He can stretch the field, was money on deep crosses, and is a red zone threat. His skills fall somewhere in the middle on the Ricky Seals-Jones-to-Jordan Reed spectrum. He\\u2019s not a good blocker and I saw him jump for no reason on one catch and drop another in three games. In a passing league, he\\u2019s a valuable TE but he might be one-dimensional. He\\u2019ll be a good to great TE in fantasy by his second year with his ceiling decided by his QB. \\n\\nI didn\\u2019t love Drew Lock (1) on film. He\\u2019s athletic with good size and a great arm, and played pretty well in the SEC. However, he sees ghosts, makes too many fade-away throws, and is slow to process information. I can see the delay of games in his future. Although he is pretty accurate which is my No. 1 most important trait for QBs. Hmmm.\\n\\n4. Packers \\u2013 See Pick 12 \\n\\n**5.** **Eagles \\u2013 Andre Dillard \\u2013 2** \\n\\nPredicting Andre Dillard\\u2019s career comes down to one question: Can finesse-first work in the NFL? Dillard is smart with great feet. He just may not be physical or nasty enough to be a franchise LT. It\\u2019s also important to remember that while skill positions have to make a tough transition from Air Raid offenses, OL must basically re-learn everything as well. He got whooped at the Senior Bowl by the Texas DE. He has the tools to make the jump but there are more questions than answers here. Jumping over Houston to get Wentz\\u2019s next blindside protector might actually bite the Eagles because Tytus Howard is actually better. \\n\\n**6.** **Texans \\u2013 Tytus Howard - 4** \\n\\nScouting Howard is very simple. He kick-slides well, moves well, and needs to get stronger. He can handle speed. Some OL have quirks where they play better on one side, so I hope that\\u2019s not the case with Howard, because he played RT at Alabama State and the Senior Bowl. He gets into stalemates too much in the run game but he handled everything Auburn threw at him in terms of speed and power rushers and his game translates to the pros in a big way. I think he has more upside than Dillard. \\n\\nCoincidentally, their 5th-rounder, Texas DE Charles Omenihu (3) whooped Andre Dillard at the Senior Bowl and has all the tools of a steal. \\n\\n7. Raiders \\u2013 See Pick 4 \\n\\n**8.** **Ravens \\u2013 Marquise Brown \\u2013 4** \\n\\nBrown to the Ravens is very interesting. On one hand, he was the No. 8 player on my Big Board. On the other hand, using a first on a WR in an offense that wants to throw less than 20 times a game is head-scratching. I loved Lamar Jackson as a prospect last year, but he\\u2019ll have to make gigantic, unprecedented strides as a passer for Brown to reach his potential. \\n\\nOne of the keys to route-running is avoiding contact while still executing your assignment. This is obvious in the form of press coverage at the LOS, and it\\u2019s very easy to evaluate effective press releases. The average football fan might not notice what happens mid-route on secondary releases, which is the move or plan a receiver executes to get off a collision by a defender. The fact that Brown doesn\\u2019t get touched on his secondary or LOS releases epitomizes why I love this player\\u2019s game. Advanced scouting term: he\\u2019s fast. Also, he\\u2019s quick. His deep threat prowess has contributed to two QBs going first overall. He\\u2019s terrific after the catch. He\\u2019s smooth in and out of his breaks and comes downhill on his post curls beautifully. There are two concerns. 1) He gets literally tossed around like a rag doll. And 2) He had three drops against Texas. Evaluating college performance, the three drops were bad and his position coach should grade him negatively. But if you watch the three drops closely, and all of his catches, his hand positioning and coordination is pretty much perfect \\u2013 the CB on Texas made a couple of nice plays and on the deep post, his small hands just couldn\\u2019t squeeze it over his opposite shoulder. His hands were still positioned correctly, which is a pro trait that translates. DeSean Jackson has shown us that thin speedsters can stay healthy, but Brown already struggling with injuries is concerning. If he stays healthy, he\\u2019ll be a star and have a T.Y./DJax career. When a prospect\\u2019s only issue is size, I always take him (Tarik Cohen!).\\n\\n9. Skins \\u2013 See Pick 15 \\n\\n10. Raiders \\u2013 I told you before, go to 4\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmz7qr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E1.\\u003C/strong\\u003E \\u003Cstrong\\u003EVikings \\u2013 Garrett Bradbury \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u2019t like picking this many 2s in the teens, but these were the guys I was down on a bit and all of them have fairly high floors so I\\u2019m reluctant to pick 1s. It\\u2019s simply very rare than interior OL is drafted in the teens and doesn\\u2019t end up at least being solid. Still, I had Bradbury ranked 49th on my Big Board. His tape was that of an average college OL. He struggled to get movement in the run game. He was fine in pass protection. Against Michigan, he was bench pressed and pushed back multiple times by LB #35. It was jarring. Even in a zone scheme, getting moved back at center against LBs is a red flag for me. If I\\u2019m taking a center in the first round I want Travis Frederick or Ryan Kelly \\u2013 technicians who also have the power to move people. Bradbury was a fine college player in an offense with a lot of quick game reps, especially against Clemson, but I see his lack of strength at the POA as a major flaw. And it\\u2019s not like he\\u2019s Ryan Kelly in terms of technique. Athleticism and intelligence are great qualities, but if you\\u2019re spending the 18th overall pick on a center, he better have more than that. Bradbury doesn\\u2019t. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E2.\\u003C/strong\\u003E \\u003Cstrong\\u003ETitans \\u2013 Jeffrey Simmons \\u2013 3\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have no idea why ESPN handled the Simmons pick the way they did. It was one of the most bizarre NFL Draft segments I\\u2019ve ever seen. And the worst part is I don\\u2019t think they showed ONE SECOND of him playing football. So odd. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u2019t think Simmons\\u2019 film showed the best player in the draft as some said. He was the 23rd ranked player on my board before I knew about his character questions. Injuries factored in slightly for me. He\\u2019s got everything you want in a dominant DL, but there were some really bad stretches on film. He struggled vs double teams against Florida, on one rep stopping his feet and getting driven back literally 7 yards before flailing his arm in a feeble tackle attempt. He\\u2019ll lean too much and get caught out of position. He\\u2019ll stand straight up. There were flashes of brilliance, and if he can make some technique changes to mix with his strength, he can be a factor inside in the NFL. He\\u2019s tough to reach in the run game and makes plays. Really good college player who needs to work that much harder to up his game for the next level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E3.\\u003C/strong\\u003E \\u003Cstrong\\u003EBroncos \\u2013 Noah Fant \\u2013 3\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is one glaring takeaway from Fant\\u2019s film, and I\\u2019m surprised I haven\\u2019t read it anywhere: He doesn\\u2019t break ANY tackles. Breaking tackles isn\\u2019t exactly a hugely important skill for TEs in the NFL, but it speaks to a lack of dominance over his level of competition. As a possession receiver, Fant is fine. He can stretch the field, was money on deep crosses, and is a red zone threat. His skills fall somewhere in the middle on the Ricky Seals-Jones-to-Jordan Reed spectrum. He\\u2019s not a good blocker and I saw him jump for no reason on one catch and drop another in three games. In a passing league, he\\u2019s a valuable TE but he might be one-dimensional. He\\u2019ll be a good to great TE in fantasy by his second year with his ceiling decided by his QB. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI didn\\u2019t love Drew Lock (1) on film. He\\u2019s athletic with good size and a great arm, and played pretty well in the SEC. However, he sees ghosts, makes too many fade-away throws, and is slow to process information. I can see the delay of games in his future. Although he is pretty accurate which is my No. 1 most important trait for QBs. Hmmm.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EPackers \\u2013 See Pick 12 \\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E5.\\u003C/strong\\u003E \\u003Cstrong\\u003EEagles \\u2013 Andre Dillard \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPredicting Andre Dillard\\u2019s career comes down to one question: Can finesse-first work in the NFL? Dillard is smart with great feet. He just may not be physical or nasty enough to be a franchise LT. It\\u2019s also important to remember that while skill positions have to make a tough transition from Air Raid offenses, OL must basically re-learn everything as well. He got whooped at the Senior Bowl by the Texas DE. He has the tools to make the jump but there are more questions than answers here. Jumping over Houston to get Wentz\\u2019s next blindside protector might actually bite the Eagles because Tytus Howard is actually better. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E6.\\u003C/strong\\u003E \\u003Cstrong\\u003ETexans \\u2013 Tytus Howard - 4\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScouting Howard is very simple. He kick-slides well, moves well, and needs to get stronger. He can handle speed. Some OL have quirks where they play better on one side, so I hope that\\u2019s not the case with Howard, because he played RT at Alabama State and the Senior Bowl. He gets into stalemates too much in the run game but he handled everything Auburn threw at him in terms of speed and power rushers and his game translates to the pros in a big way. I think he has more upside than Dillard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECoincidentally, their 5th-rounder, Texas DE Charles Omenihu (3) whooped Andre Dillard at the Senior Bowl and has all the tools of a steal. \\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ERaiders \\u2013 See Pick 4\\u003Cbr/\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E8.\\u003C/strong\\u003E \\u003Cstrong\\u003ERavens \\u2013 Marquise Brown \\u2013 4\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBrown to the Ravens is very interesting. On one hand, he was the No. 8 player on my Big Board. On the other hand, using a first on a WR in an offense that wants to throw less than 20 times a game is head-scratching. I loved Lamar Jackson as a prospect last year, but he\\u2019ll have to make gigantic, unprecedented strides as a passer for Brown to reach his potential. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of the keys to route-running is avoiding contact while still executing your assignment. This is obvious in the form of press coverage at the LOS, and it\\u2019s very easy to evaluate effective press releases. The average football fan might not notice what happens mid-route on secondary releases, which is the move or plan a receiver executes to get off a collision by a defender. The fact that Brown doesn\\u2019t get touched on his secondary or LOS releases epitomizes why I love this player\\u2019s game. Advanced scouting term: he\\u2019s fast. Also, he\\u2019s quick. His deep threat prowess has contributed to two QBs going first overall. He\\u2019s terrific after the catch. He\\u2019s smooth in and out of his breaks and comes downhill on his post curls beautifully. There are two concerns. 1) He gets literally tossed around like a rag doll. And 2) He had three drops against Texas. Evaluating college performance, the three drops were bad and his position coach should grade him negatively. But if you watch the three drops closely, and all of his catches, his hand positioning and coordination is pretty much perfect \\u2013 the CB on Texas made a couple of nice plays and on the deep post, his small hands just couldn\\u2019t squeeze it over his opposite shoulder. His hands were still positioned correctly, which is a pro trait that translates. DeSean Jackson has shown us that thin speedsters can stay healthy, but Brown already struggling with injuries is concerning. If he stays healthy, he\\u2019ll be a star and have a T.Y./DJax career. When a prospect\\u2019s only issue is size, I always take him (Tarik Cohen!).\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ESkins \\u2013 See Pick 15 \\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERaiders \\u2013 I told you before, go to 4\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmz7qr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171845.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blb203\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmz2hg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gpngc\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1557142917.0, \"send_replies\": true, \"parent_id\": \"t3_blb203\", \"score\": 1, \"author_fullname\": \"t2_6fxy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pt. 2\\n\\n\\u0026#x200B;\\n\\n**13.** **Dolphins \\u2013 Christian Wilkins \\u2013 2** \\n\\nChristian Wilkins is another example of evaluating pro traits translating rather than college performance. A storied college winner who inspired on and off the field, Wilkins is a tremendous young man with a bright future. However, I think his character and intelligence inflated his stock a little too much. Against Mississippi State he was mostly a ghost, and in other games had long stretches of invisible or even just bad film, with the occasional splash play. He\\u2019s the poster child for my Reverse Planet Theory, which cautions against the allure of quick, penetrating, 3-techs. There are plays on film where his short arms leave him exposed, struggling to post against double teams and getting reached on zone runs. When he has the quickness advantage against low-skilled ACC guards, he looks great as a penetrator, and to be fair his quicks are terrific. But leverage and quicks can only take a short-armed, decently talented 3-Tech so far in the pros. I don\\u2019t think he lives up to his draft slot.\\n\\n \\n\\nAs for the Rosen trade, it wasn\\u2019t awful because they gave up a late 2 to take a shot on talent, but as a vocal Rosen detractor I don\\u2019t think it will help them. Without much talent on the roster, there is a legitimate chance they end up taking a top-5 QB next year and Rosen gets dealt again. There has been a weird fascination with Rosen since last offseason, but I never liked him much as a prospect and gave him a 2 last year. My reasons can be found in last year\\u2019s review. \\n\\n**14.** **Falcons \\u2013 Chris Lindstrom \\u2013 2** \\n\\nThe Falcons had one of the worst defenses in the NFL last year and decided to spend their first two picks on OL. While they\\u2019ll get Keanu Neal and Deion Jones back from injury, it\\u2019s still head-scratching to not address the D early. I understand building the OL BEFORE it becomes an issue, but I don\\u2019t think they made the right pick at No. 14. \\n\\nAfter watching his film, I ranked Lindstrom 44th on my Big Board and noted that he was an athletic guard who didn\\u2019t have enough power to play in anything other than a zone-heavy scheme. He\\u2019ll be fine getting to the second level and staying in front of penetrating 3-techs, and clearly I\\u2019m missing something with him going this high. Staying true to my eval, I expect him to get pushed back routinely by bigger DL in both the run and pass game. I can see inside pressure now. He takes the initial contact at the POA too much. With the right S\\u0026C regimen (he benched 25 reps, not bad), he could get stronger. They did need a guard. I want to trust the Falcons, but with Dexter Lawrence and others on the board I think they made a mistake. \\n\\nI scouted McGary (3) after the draft and I liked his game on film. He did some impressive things in the run game on double-teams against Ohio State. I think he fits better in a gap scheme where he can use his size and power, which makes the Lindstrom pick more head-scratching. We all know his value will be determined mainly by how he holds up against speed rushers at RT. Short arms, limited lateral quickness, and some bad beats by pure speed on film give me pause. I like him better than Lindstrom but he projects as a plus run blocker with struggles vs speed rushers in the passing game. He has the demeanor of a starting NFL OL so I\\u2019ll go with a 3.\", \"link_title\": \"gpngc NFL Draft Review TEST\", \"author_flair_css_class\": null, \"name\": \"t1_emmz2hg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPt. 2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E13.\\u003C/strong\\u003E \\u003Cstrong\\u003EDolphins \\u2013 Christian Wilkins \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChristian Wilkins is another example of evaluating pro traits translating rather than college performance. A storied college winner who inspired on and off the field, Wilkins is a tremendous young man with a bright future. However, I think his character and intelligence inflated his stock a little too much. Against Mississippi State he was mostly a ghost, and in other games had long stretches of invisible or even just bad film, with the occasional splash play. He\\u2019s the poster child for my Reverse Planet Theory, which cautions against the allure of quick, penetrating, 3-techs. There are plays on film where his short arms leave him exposed, struggling to post against double teams and getting reached on zone runs. When he has the quickness advantage against low-skilled ACC guards, he looks great as a penetrator, and to be fair his quicks are terrific. But leverage and quicks can only take a short-armed, decently talented 3-Tech so far in the pros. I don\\u2019t think he lives up to his draft slot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for the Rosen trade, it wasn\\u2019t awful because they gave up a late 2 to take a shot on talent, but as a vocal Rosen detractor I don\\u2019t think it will help them. Without much talent on the roster, there is a legitimate chance they end up taking a top-5 QB next year and Rosen gets dealt again. There has been a weird fascination with Rosen since last offseason, but I never liked him much as a prospect and gave him a 2 last year. My reasons can be found in last year\\u2019s review. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E14.\\u003C/strong\\u003E \\u003Cstrong\\u003EFalcons \\u2013 Chris Lindstrom \\u2013 2\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Falcons had one of the worst defenses in the NFL last year and decided to spend their first two picks on OL. While they\\u2019ll get Keanu Neal and Deion Jones back from injury, it\\u2019s still head-scratching to not address the D early. I understand building the OL BEFORE it becomes an issue, but I don\\u2019t think they made the right pick at No. 14. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter watching his film, I ranked Lindstrom 44th on my Big Board and noted that he was an athletic guard who didn\\u2019t have enough power to play in anything other than a zone-heavy scheme. He\\u2019ll be fine getting to the second level and staying in front of penetrating 3-techs, and clearly I\\u2019m missing something with him going this high. Staying true to my eval, I expect him to get pushed back routinely by bigger DL in both the run and pass game. I can see inside pressure now. He takes the initial contact at the POA too much. With the right S\\u0026amp;C regimen (he benched 25 reps, not bad), he could get stronger. They did need a guard. I want to trust the Falcons, but with Dexter Lawrence and others on the board I think they made a mistake. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI scouted McGary (3) after the draft and I liked his game on film. He did some impressive things in the run game on double-teams against Ohio State. I think he fits better in a gap scheme where he can use his size and power, which makes the Lindstrom pick more head-scratching. We all know his value will be determined mainly by how he holds up against speed rushers at RT. Short arms, limited lateral quickness, and some bad beats by pure speed on film give me pause. I like him better than Lindstrom but he projects as a plus run blocker with struggles vs speed rushers in the passing game. He has the demeanor of a starting NFL OL so I\\u2019ll go with a 3.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/emmz2hg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/blb203/gpngc_nfl_draft_review_test/\", \"created\": 1557171717.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bl9iu1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emmpp7m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"XARFIGHTER\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1557132732.0, \"send_replies\": true, \"parent_id\": \"t3_bl9iu1\", \"score\": 1, \"author_fullname\": \"t2_9515o\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Am I missing something here? \\n\\n\\u0026#x200B;\\n\\nBy simply removing this box =\\n\\n**Advanced** remains at 1 input from {X/A} to {start}\\n\\n**Edit lineup** goes from 2 inputs {down\\u003EX/A} to no input {already there}\\n\\nAnd **Go back** goes from 3 inputs {down\\u003Edown\\u003EX/A} to 1 input {O/B}\\n\\n\\u0026#x200B;\\n\\nI can't attribute any functional value to this box besides either just unnecessarily delaying the player, or the potential psychological effect it has by prompting the player and essentially saying \\\"come at me brah?\\\" to tilted players. Maybe that's a stretch but surely there must be a point to having this menu? \\n\\n\\u0026#x200B;\\n\\nI'm simply curious as to why developers are paid to spend time on things like this that seem to detract from user experience over simple additions like comprehensive search filters or logical and straightforward menus - something that would likely save thousands of collective hours currently wasted scrolling and tapping.\", \"link_title\": \"test1234\", \"author_flair_css_class\": null, \"name\": \"t1_emmpp7m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAm I missing something here? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy simply removing this box =\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAdvanced\\u003C/strong\\u003E remains at 1 input from {X/A} to {start}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit lineup\\u003C/strong\\u003E goes from 2 inputs {down\\u0026gt;X/A} to no input {already there}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd \\u003Cstrong\\u003EGo back\\u003C/strong\\u003E goes from 3 inputs {down\\u0026gt;down\\u0026gt;X/A} to 1 input {O/B}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can\\u0026#39;t attribute any functional value to this box besides either just unnecessarily delaying the player, or the potential psychological effect it has by prompting the player and essentially saying \\u0026quot;come at me brah?\\u0026quot; to tilted players. Maybe that\\u0026#39;s a stretch but surely there must be a point to having this menu? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m simply curious as to why developers are paid to spend time on things like this that seem to detract from user experience over simple additions like comprehensive search filters or logical and straightforward menus - something that would likely save thousands of collective hours currently wasted scrolling and tapping.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bl9iu1/test1234/emmpp7m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bl9iu1/test1234/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/pzt3f8hqyjw21.png\", \"created\": 1557161532.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emjwxrc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1557053695.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"# Custom Content\\n\\n## Disclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\n\\n## Names with u/ are from reddit. Names without are probably from the overwatch forum.\\n\\n## If you like a mode, go to the original post and like or comment. Let them know you appreciate it.\\n\\n## If you want to add a mode to the list, just PM me and I'll add it eventually.\\n\\n## Fun Modes\\n\\n* RGH0D - High Speed: FFA - u/rbnsky\\n* SF1R2 - High Speed Gun Game - u/rbnsky\\n* K33FZ - Can't Aim Straight: Junkrat FFA - u/poststakhanovist\\n* 6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - u/poststakhanovist\\n* RE091 - Doomfist Combo Fighter - u/poststakhanovist\\n* EB9NB - Sensitivity Raise on Kill: FFA - u/poststakhanovist\\n* N21HN - Bronze Aim Sim: FFA - u/poststakhanovist\\n* 0CTSK - Interact to Force Emote: FFA - u/poststakhanovist\\n* M169X - Second Life 60 Sec Cooldown - u/poststakhanovist\\n* T526Z - Kill 2x to Score: FFA - u/poststakhanovist\\n* NM5E5 - Reverse Deathmath Die to Win: FFA - u/poststakhanovist\\n* R4DWM - BloodBorne in Overwatch - u/Elodeona\\n* EMZPF - Skydiving: Team Deathmatch - u/CoolUsername6969\\n* E19X7 - Onslaught!: PVE - u/TheBryGuy2\\n* FHQZ4 - Bridgette Pong - u/AJ_Black\\n* KGRNX - Overheat 2.0: Overwatch Superhot - u/Dennehviir\\n* 53J3R - Shooters Vs Stabbers - Lilsis\\n* FQ5N8 - Enhanced Ana Paintball: Eichenwalde - u/JinkoNorray\\n* RY95K - Enhanced Ana Paintball: Ecopoint Antarctica - u/JinkoNorray\\n* BJYN0 - Killstreak = Glass Cannon - u/Spasco\\n* BBBET - RoadHog Hook Wars: FFA - u/Anaxor1\\n* QH5SP - PVE Horde Mode - u/Jechto\\n* 5KCP4 - Dva Eject into Random Ult - u/qbbftw \\\\- ORIGINAL IDEA FROM: u/Woolin\\n* YKPNX - Multi-Hill King of the Hill - u/TrawlAccount\\n* 8BY62 - Invasion v0.4 (Halo) - u/TrawlAccount\\n* 241DC - Juggernaut v0.2 (Halo) - u/TrawlAccount\\n* MJZ10 - Grifball v0.4 (Halo) - u/TrawlAccount\\n* SAN9F - Zombie Escape (CS:GO) - u/Zezombye\\n* VJCT2 - Chase the Snowmen - u/andygmb\\n* 6PC67 - Take Hero of Kills - u/CrenderMutant\\n\\n## Training Modes\\n\\n* RDWK1 - Jumping/Flying Aim Practice - u/firenty\\n* CPFKM - Advanced Training Mode - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\n\\n## Good Mechanics\\n\\n* QKAAM - Placeable Cameras - u/ItsDeltin\\n* ZW1PY - Scoreboard - u/Paf13\\n* 9EKZB - Scoreboard - u/caldoran2\\n* 6WXRW - Navi - u/andygmb \\\\- u/Lymbow\\n* WV5HH - Bunny Hop - u/TyzoneLyraNature\\n* QESP4 - Walls - u/Zezombye\\n* CQ00S - Elemental Aspects - u/poststakhanovist\\n\\n## Hero Ideas\\n\\n* XJZB1 - Orisa AoE Push - AlexEptit\\n* H7JRP - Lucio Cold Wave Ult - u/JinkoNorray\\n* BE2J7 - Portal Gun - u/Lymbow \\\\- u/andygmb\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emjwxrc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECustom Content\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EDisclaimer: I have not played most of these modes. I have just seen posts about them and found them interesting. Comment if a mode is unfinished or unplayable.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ENames with u/ are from reddit. Names without are probably from the overwatch forum.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EIf you like a mode, go to the original post and like or comment. Let them know you appreciate it.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EIf you want to add a mode to the list, just PM me and I\\u0026#39;ll add it eventually.\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EFun Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERGH0D - High Speed: FFA - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESF1R2 - High Speed Gun Game - \\u003Ca href=\\\"/u/rbnsky\\\"\\u003Eu/rbnsky\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EK33FZ - Can\\u0026#39;t Aim Straight: Junkrat FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6SD1M - Blink Cooldown Reduce on Kill: Tracer FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERE091 - Doomfist Combo Fighter - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEB9NB - Sensitivity Raise on Kill: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EN21HN - Bronze Aim Sim: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E0CTSK - Interact to Force Emote: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EM169X - Second Life 60 Sec Cooldown - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ET526Z - Kill 2x to Score: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENM5E5 - Reverse Deathmath Die to Win: FFA - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ER4DWM - BloodBorne in Overwatch - \\u003Ca href=\\\"/u/Elodeona\\\"\\u003Eu/Elodeona\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEMZPF - Skydiving: Team Deathmatch - \\u003Ca href=\\\"/u/CoolUsername6969\\\"\\u003Eu/CoolUsername6969\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EE19X7 - Onslaught!: PVE - \\u003Ca href=\\\"/u/TheBryGuy2\\\"\\u003Eu/TheBryGuy2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EFHQZ4 - Bridgette Pong - \\u003Ca href=\\\"/u/AJ_Black\\\"\\u003Eu/AJ_Black\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EKGRNX - Overheat 2.0: Overwatch Superhot - \\u003Ca href=\\\"/u/Dennehviir\\\"\\u003Eu/Dennehviir\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E53J3R - Shooters Vs Stabbers - Lilsis\\u003C/li\\u003E\\n\\u003Cli\\u003EFQ5N8 - Enhanced Ana Paintball: Eichenwalde - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERY95K - Enhanced Ana Paintball: Ecopoint Antarctica - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBJYN0 - Killstreak = Glass Cannon - \\u003Ca href=\\\"/u/Spasco\\\"\\u003Eu/Spasco\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBBBET - RoadHog Hook Wars: FFA - \\u003Ca href=\\\"/u/Anaxor1\\\"\\u003Eu/Anaxor1\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQH5SP - PVE Horde Mode - \\u003Ca href=\\\"/u/Jechto\\\"\\u003Eu/Jechto\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E5KCP4 - Dva Eject into Random Ult - \\u003Ca href=\\\"/u/qbbftw\\\"\\u003Eu/qbbftw\\u003C/a\\u003E - ORIGINAL IDEA FROM: \\u003Ca href=\\\"/u/Woolin\\\"\\u003Eu/Woolin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EYKPNX - Multi-Hill King of the Hill - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E8BY62 - Invasion v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E241DC - Juggernaut v0.2 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMJZ10 - Grifball v0.4 (Halo) - \\u003Ca href=\\\"/u/TrawlAccount\\\"\\u003Eu/TrawlAccount\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESAN9F - Zombie Escape (CS:GO) - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EVJCT2 - Chase the Snowmen - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6PC67 - Take Hero of Kills - \\u003Ca href=\\\"/u/CrenderMutant\\\"\\u003Eu/CrenderMutant\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ETraining Modes\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERDWK1 - Jumping/Flying Aim Practice - \\u003Ca href=\\\"/u/firenty\\\"\\u003Eu/firenty\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECPFKM - Advanced Training Mode - \\u0126\\u0190\\u0156\\u01fe\\u0187\\u01feD\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGood Mechanics\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQKAAM - Placeable Cameras - \\u003Ca href=\\\"/u/ItsDeltin\\\"\\u003Eu/ItsDeltin\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EZW1PY - Scoreboard - \\u003Ca href=\\\"/u/Paf13\\\"\\u003Eu/Paf13\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E9EKZB - Scoreboard - \\u003Ca href=\\\"/u/caldoran2\\\"\\u003Eu/caldoran2\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E6WXRW - Navi - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EWV5HH - Bunny Hop - \\u003Ca href=\\\"/u/TyzoneLyraNature\\\"\\u003Eu/TyzoneLyraNature\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EQESP4 - Walls - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECQ00S - Elemental Aspects - \\u003Ca href=\\\"/u/poststakhanovist\\\"\\u003Eu/poststakhanovist\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHero Ideas\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EXJZB1 - Orisa AoE Push - AlexEptit\\u003C/li\\u003E\\n\\u003Cli\\u003EH7JRP - Lucio Cold Wave Ult - \\u003Ca href=\\\"/u/JinkoNorray\\\"\\u003Eu/JinkoNorray\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBE2J7 - Portal Gun - \\u003Ca href=\\\"/u/Lymbow\\\"\\u003Eu/Lymbow\\u003C/a\\u003E - \\u003Ca href=\\\"/u/andygmb\\\"\\u003Eu/andygmb\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emjwxrc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1557082495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1556967649.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emh4ksb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556965703.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## My Take on Workshop Improvements\\n\\n## Coding Improvements need to happen\\n\\n## Before adding all sorts of new methods and helpful features, it is probably best if the Workshop becomes easier to use.\\n\\n* If it is a power-user tool, give power-user style tools.\\n* If it is for the general public, have better error-handling and bug commenting.\\n* If it is for both, give all the above. Please.\\n\\n## [Easy](#s) Coding fixes:\\n\\n* Quick saving - Just not having to go to a seperate screen to save the project\\n* Backing-up files while saving - Preventing loss of data\\n* Adding else statements\\n* Displaying error logs - Such as, your code is too big, remove some rules before saving\\n\\n## Hard but [Worthwhile](#s) Coding fixes:\\n\\n* Adding the ability to upload json/xml or some sort of file into the editor and have the rules generated there - This would allow fans to create tools to generate this json/xml, meaning you won't need to make an IDE, fans will probably make their own\\n* Adding Functions\\n\\n### A New Game entirely should probably be next\\n##### This sounds crazy, but hear me out. \\n##### Imagine OverWorkshop, a seperate game that is just Overwatch Workshop with extended mechanics\\n- If a separate game, they can optimize with the engine to make it work better for custom projects without worrying about messing with qp and comp. \\n- If a separate game, they can monetize differently. They could work directly with creators, ask people to pay for access to this new game, use a monthly subscription, etc.\\n- If monetized differently, Blizzard has an incentive to help the fanbase as much as possible. Currently, Workshop will not directly make Blizzard money. Sure, people may come back to the game, but how many of those people buy loot boxes? Or how many new people will buy the game?\\n- If a separate game, they could build the game with lots of storage for custom rule-sets.\\n- If a separate game, they can add limited time access skins/emotes/maps without directly affecting their core audience who are following the normal Overwatch Loot Box monetization method. \\n- If a separate game, they can design from the ground up, instead of extending original functionality. This gives a lot more flexibility.\\n- If a separate game, they can draw in a wider market. Currently, only people who like Overwatch and like Content Creation will use Workshop. With enough of a spin, Blizzard could get way more customers with: OverWorkshop, build your own games using Overwatches mechanics as a basis.\\n- If a separate game, they can release the source code to be modded. At least, if they design it right.\\n##### What I'm saying is: If a separate game, they can create a better experience, and they can earn more money. Win-win. We get something awesome, they get money.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emh4ksb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EMy Take on Workshop Improvements\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003ECoding Improvements need to happen\\u003C/h2\\u003E\\n\\n\\u003Ch2\\u003EBefore adding all sorts of new methods and helpful features, it is probably best if the Workshop becomes easier to use.\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf it is a power-user tool, give power-user style tools.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf it is for the general public, have better error-handling and bug commenting.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf it is for both, give all the above. Please.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\"\\u003EEasy\\u003C/a\\u003E Coding fixes:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EQuick saving - Just not having to go to a seperate screen to save the project\\u003C/li\\u003E\\n\\u003Cli\\u003EBacking-up files while saving - Preventing loss of data\\u003C/li\\u003E\\n\\u003Cli\\u003EAdding else statements\\u003C/li\\u003E\\n\\u003Cli\\u003EDisplaying error logs - Such as, your code is too big, remove some rules before saving\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EHard but \\u003Ca href=\\\"#s\\\"\\u003EWorthwhile\\u003C/a\\u003E Coding fixes:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAdding the ability to upload json/xml or some sort of file into the editor and have the rules generated there - This would allow fans to create tools to generate this json/xml, meaning you won\\u0026#39;t need to make an IDE, fans will probably make their own\\u003C/li\\u003E\\n\\u003Cli\\u003EAdding Functions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EA New Game entirely should probably be next\\u003C/h3\\u003E\\n\\n\\u003Ch5\\u003EThis sounds crazy, but hear me out.\\u003C/h5\\u003E\\n\\n\\u003Ch5\\u003EImagine OverWorkshop, a seperate game that is just Overwatch Workshop with extended mechanics\\u003C/h5\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf a separate game, they can optimize with the engine to make it work better for custom projects without worrying about messing with qp and comp. \\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can monetize differently. They could work directly with creators, ask people to pay for access to this new game, use a monthly subscription, etc.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf monetized differently, Blizzard has an incentive to help the fanbase as much as possible. Currently, Workshop will not directly make Blizzard money. Sure, people may come back to the game, but how many of those people buy loot boxes? Or how many new people will buy the game?\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they could build the game with lots of storage for custom rule-sets.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can add limited time access skins/emotes/maps without directly affecting their core audience who are following the normal Overwatch Loot Box monetization method. \\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can design from the ground up, instead of extending original functionality. This gives a lot more flexibility.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can draw in a wider market. Currently, only people who like Overwatch and like Content Creation will use Workshop. With enough of a spin, Blizzard could get way more customers with: OverWorkshop, build your own games using Overwatches mechanics as a basis.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf a separate game, they can release the source code to be modded. At least, if they design it right.\\n##### What I\\u0026#39;m saying is: If a separate game, they can create a better experience, and they can earn more money. Win-win. We get something awesome, they get money.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emh4ksb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556994503.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emh0mkm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556958465.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Future Features People Want (Compiled from Blizzard forums)\\n#### Ease of Coding\\n- [Text-based Editor/IDE/Ability to Import File](#s \\\"Anything for more coding speed\\\")\\n- Conditionals\\n- Functions\\n- Hotkey Saves/Auto Saves\\n- Hotkey Undo\\n- Events/Statuses for every [possible thing](#s \\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\")\\n- [Classes/Object Types/Enums](#s \\\"Bad class objects hurt\\\")\\n- [Multiple-Script Compilation](#s \\\"I make a piece, you make a piece, we compile the codes together\\\")\\n- Disable/Enable Rule options\\n- Custom Strings/Variable Names\\n- Debugger with Game Running\\n\\t\\n####Importation of art assets\\n- Custom Skins\\n- Custom Emotes\\n- Custom Hero Models\\n- Custom Animations\\n\\t\\n#### Bigger Creations\\n- Rule Limit Increase\\n- Effect Increase\\n- More Presets Saves\\n\\n#### Recognition of Good Modes\\n- Best-of-Workshop Arcade Mode\\n- Popularity contests between [similar game-modes](#s \\\"See which gun game people like best\\\")\\n\\t\\n#### Map Editor\\n- Ability to create gameplay zones\\n- Change Lighting\\n- Custom Maps\\n\\t\\n#### Hero Editor\\n- Being able to give [one hero's ability to another hero](#s \\\"Tracer with Piledriver\\\")\\n- More Control over [Effects](#s \\\"On-destruct, custom IDs, etc\\\")\\n- Control over [hero-specific variables](#s \\\"Number of Symmetra Turrets, headshot dmg, passives\\\")\\n- Being able to use Arcade Enemies/All Models\\n- Custom Cooldowns/Modify Cooldowns\\n- Control over animations\\n- Control over fire/POTG worthy actions\\n\\t\\t\\n#### Object Editor\\n- Deployables\\n- Weapon Qualities\\n- Collisions\\n- Objectives/Payloads\\n- Access to Old Assets/Abilities\\n- Custom Effect Durations\\n- Custom Conditions\\n- Custom Physics Engine\\n\\t\\n#### AI Editor\\n- PVE Mode Access\\n- Ease of Making Bots\\n- Bots in any Mode\\n\\t\\t\\n#### Gameplay Editor\\n- Spawn Points\\n- Switch Teams\\n- Team Size\\n\\t\\n####Hosting Games\\n- Being able to host Workshop Games locally\\n\\t\\n#### Workshop-Specific Assets\\n- Extra Animations\\n- More effects\\n- [Non-Graphics intensive testing map](#s \\\"White Room\\\")\\n- [Arena map](#s \\\"Just a square\\\")\\n\\t\\t\\n#### More Recognition of Dan and Keith\\n\\t\\n## Common Complaints\\n#### It's not a Map Editor.\\n- No, it isn't. \\n\\t\\n#### It's not a Ranked Fix.\\n- No, it isn't.\\n\\t\\t\\n#### Lier1, you made me sound stupid in the complaint section.\\n- Correct.\\n\\t\\n#### Lier1, you don't care about my complaints because I'm not a filthy casual.\\n- Correct.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emh0mkm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFuture Features People Want (Compiled from Blizzard forums)\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EEase of Coding\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Anything for more coding speed\\\"\\u003EText-based Editor/IDE/Ability to Import File\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EConditionals\\u003C/li\\u003E\\n\\u003Cli\\u003EFunctions\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Saves/Auto Saves\\u003C/li\\u003E\\n\\u003Cli\\u003EHotkey Undo\\u003C/li\\u003E\\n\\u003Cli\\u003EEvents/Statuses for every \\u003Ca href=\\\"#s\\\" title=\\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\"\\u003Epossible thing\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Bad class objects hurt\\\"\\u003EClasses/Object Types/Enums\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"I make a piece, you make a piece, we compile the codes together\\\"\\u003EMultiple-Script Compilation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDisable/Enable Rule options\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Strings/Variable Names\\u003C/li\\u003E\\n\\u003Cli\\u003EDebugger with Game Running\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EImportation of art assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECustom Skins\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Emotes\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Hero Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Animations\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EBigger Creations\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERule Limit Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EEffect Increase\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Presets Saves\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ERecognition of Good Modes\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBest-of-Workshop Arcade Mode\\u003C/li\\u003E\\n\\u003Cli\\u003EPopularity contests between \\u003Ca href=\\\"#s\\\" title=\\\"See which gun game people like best\\\"\\u003Esimilar game-modes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMap Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAbility to create gameplay zones\\u003C/li\\u003E\\n\\u003Cli\\u003EChange Lighting\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Maps\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHero Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to give \\u003Ca href=\\\"#s\\\" title=\\\"Tracer with Piledriver\\\"\\u003Eone hero\\u0026#39;s ability to another hero\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMore Control over \\u003Ca href=\\\"#s\\\" title=\\\"On-destruct, custom IDs, etc\\\"\\u003EEffects\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over \\u003Ca href=\\\"#s\\\" title=\\\"Number of Symmetra Turrets, headshot dmg, passives\\\"\\u003Ehero-specific variables\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EBeing able to use Arcade Enemies/All Models\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Cooldowns/Modify Cooldowns\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over animations\\u003C/li\\u003E\\n\\u003Cli\\u003EControl over fire/POTG worthy actions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EObject Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDeployables\\u003C/li\\u003E\\n\\u003Cli\\u003EWeapon Qualities\\u003C/li\\u003E\\n\\u003Cli\\u003ECollisions\\u003C/li\\u003E\\n\\u003Cli\\u003EObjectives/Payloads\\u003C/li\\u003E\\n\\u003Cli\\u003EAccess to Old Assets/Abilities\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Effect Durations\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Conditions\\u003C/li\\u003E\\n\\u003Cli\\u003ECustom Physics Engine\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EAI Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPVE Mode Access\\u003C/li\\u003E\\n\\u003Cli\\u003EEase of Making Bots\\u003C/li\\u003E\\n\\u003Cli\\u003EBots in any Mode\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EGameplay Editor\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESpawn Points\\u003C/li\\u003E\\n\\u003Cli\\u003ESwitch Teams\\u003C/li\\u003E\\n\\u003Cli\\u003ETeam Size\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHosting Games\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBeing able to host Workshop Games locally\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWorkshop-Specific Assets\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EExtra Animations\\u003C/li\\u003E\\n\\u003Cli\\u003EMore effects\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"White Room\\\"\\u003ENon-Graphics intensive testing map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Just a square\\\"\\u003EArena map\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EMore Recognition of Dan and Keith\\u003C/h4\\u003E\\n\\n\\u003Ch2\\u003ECommon Complaints\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Map Editor.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Ranked Fix.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you made me sound stupid in the complaint section.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you don\\u0026#39;t care about my complaints because I\\u0026#39;m not a filthy casual.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emh0mkm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556987265.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emgwjcc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556951769.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Future Features People Want (Compiled from Blizzard forums)\\n####*Disclaimer*: This isn't everything, but it's a good high-level sampling. I think. Comment with more.\\n\\tEase of Coding\\n\\t\\t[Text-based Editor/IDE/Ability to Import File](#s \\\"Anything for more coding speed\\\")\\n\\t\\tConditionals\\n\\t\\tFunctions\\n\\t\\tHotkey Saves/Auto Saves\\n\\t\\tHotkey Undo\\n\\t\\tEvents/Statuses for every [possible thing](#s \\\"Melee kills, dva in/out of mech, on hollywood map, etc.\\\")\\n\\t\\t[Classes/Object Types/Enums](#s \\\"Bad class objects hurt\\\")\\n\\t\\t[Multiple-Script Compilation](#s \\\"I make a piece, you make a piece, we compile the codes together\\\")\\n\\t\\tDisable/Enable Rule options\\n\\t\\tCustom Strings/Variable Names\\n\\t\\tDebugger with Game Running\\n\\t\\n\\tImporting art assets\\n\\t\\tCustom Skins\\n\\t\\tCustom Emotes\\n\\t\\tCustom Hero Models\\n\\t\\tCustom Animations\\n\\t\\n\\tBigger Creations\\n\\t\\tRule Limit Increase\\n\\t\\tEffect Increase\\n\\t\\tMore Presets Saves\\n\\t\\n\\tRecognition of Good Modes\\n\\t\\tBest-of-Workshop Arcade Mode\\n\\t\\tPopularity contests between [similar game-modes](#s \\\"See which gun game people like best\\\")\\n\\t\\n\\tMap Editor\\n\\t\\tAbility to create gameplay zones\\n\\t\\tChange Lighting\\n\\t\\tCustom Maps\\n\\t\\n\\tHero Editor\\n\\t\\tBeing able to give [one hero's ability to another hero](#s \\\"Tracer with Piledriver\\\")\\n\\t\\tMore Control over [Effects](#s \\\"On-destruct, custom IDs, etc\\\")\\n\\t\\tControl over [hero-specific variables](#s \\\"Number of Symmetra Turrets, headshot dmg, passives\\\")\\n\\t\\tBeing able to use Arcade Enemies/All Models\\n\\t\\tCustom Cooldowns/Modify Cooldowns\\n\\t\\tControl over animations\\n\\t\\tControl over fire/POTG worthy actions\\n\\t\\t\\n\\tObject Editor\\n\\t\\tDeployables\\n\\t\\tWeapon Qualities\\n\\t\\tCollisions\\n\\t\\tObjectives/Payloads\\n\\t\\tAccess to Old Assets/Abilities\\n\\t\\tCustom Effect Durations\\n\\t\\tCustom Conditions\\n\\t\\tCustom Physics Engine\\n\\t\\n\\tAI Editor\\n\\t\\tPVE Mode Access\\n\\t\\tEase of Making Bots\\n\\t\\tBots in any Mode\\n\\t\\t\\n\\tGameplay Editor\\n\\t\\tSpawn Points\\n\\t\\tSwitch Teams\\n\\t\\tTeam Size\\n\\t\\n\\tHosting Games\\n\\t\\tBeing able to host Workshop Games locally\\n\\t\\n\\tWorkshop-Specific Assets\\n\\t\\tExtra Animations\\n\\t\\tMore effects\\n\\t\\t[Non-Graphics intensive testing map](#s \\\"White Room\\\")\\n\\t\\t[Arena map](#s \\\"Just a square\\\")\\n\\t\\t\\n\\tMore Recognition of Dan and Keith\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emgwjcc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003EFuture Features People Want (Compiled from Blizzard forums)\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003E\\u003Cem\\u003EDisclaimer\\u003C/em\\u003E: This isn\\u0026#39;t everything, but it\\u0026#39;s a good high-level sampling. I think. Comment with more.\\u003C/h4\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EEase of Coding\\n [Text-based Editor/IDE/Ability to Import File](#s \\u0026quot;Anything for more coding speed\\u0026quot;)\\n Conditionals\\n Functions\\n Hotkey Saves/Auto Saves\\n Hotkey Undo\\n Events/Statuses for every [possible thing](#s \\u0026quot;Melee kills, dva in/out of mech, on hollywood map, etc.\\u0026quot;)\\n [Classes/Object Types/Enums](#s \\u0026quot;Bad class objects hurt\\u0026quot;)\\n [Multiple-Script Compilation](#s \\u0026quot;I make a piece, you make a piece, we compile the codes together\\u0026quot;)\\n Disable/Enable Rule options\\n Custom Strings/Variable Names\\n Debugger with Game Running\\n\\nImporting art assets\\n Custom Skins\\n Custom Emotes\\n Custom Hero Models\\n Custom Animations\\n\\nBigger Creations\\n Rule Limit Increase\\n Effect Increase\\n More Presets Saves\\n\\nRecognition of Good Modes\\n Best-of-Workshop Arcade Mode\\n Popularity contests between [similar game-modes](#s \\u0026quot;See which gun game people like best\\u0026quot;)\\n\\nMap Editor\\n Ability to create gameplay zones\\n Change Lighting\\n Custom Maps\\n\\nHero Editor\\n Being able to give [one hero\\u0026#39;s ability to another hero](#s \\u0026quot;Tracer with Piledriver\\u0026quot;)\\n More Control over [Effects](#s \\u0026quot;On-destruct, custom IDs, etc\\u0026quot;)\\n Control over [hero-specific variables](#s \\u0026quot;Number of Symmetra Turrets, headshot dmg, passives\\u0026quot;)\\n Being able to use Arcade Enemies/All Models\\n Custom Cooldowns/Modify Cooldowns\\n Control over animations\\n Control over fire/POTG worthy actions\\n\\nObject Editor\\n Deployables\\n Weapon Qualities\\n Collisions\\n Objectives/Payloads\\n Access to Old Assets/Abilities\\n Custom Effect Durations\\n Custom Conditions\\n Custom Physics Engine\\n\\nAI Editor\\n PVE Mode Access\\n Ease of Making Bots\\n Bots in any Mode\\n\\nGameplay Editor\\n Spawn Points\\n Switch Teams\\n Team Size\\n\\nHosting Games\\n Being able to host Workshop Games locally\\n\\nWorkshop-Specific Assets\\n Extra Animations\\n More effects\\n [Non-Graphics intensive testing map](#s \\u0026quot;White Room\\u0026quot;)\\n [Arena map](#s \\u0026quot;Just a square\\u0026quot;)\\n\\nMore Recognition of Dan and Keith\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emgwjcc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556980569.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emgwhbf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556951688.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"## Common Complaints\\n#### It's not a Map Editor.\\n- No, it isn't. \\n\\t\\n#### It's not a Ranked Fix.\\n- No, it isn't.\\n\\t\\t\\n#### Lier1, you made me sound stupid in the complaint section.\\n- Correct.\\n\\t\\n#### Lier1, you don't care about my complaints because I'm not a filthy casual.\\n- Correct.\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emgwhbf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003ECommon Complaints\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Map Editor.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIt\\u0026#39;s not a Ranked Fix.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo, it isn\\u0026#39;t.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you made me sound stupid in the complaint section.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ELier1, you don\\u0026#39;t care about my complaints because I\\u0026#39;m not a filthy casual.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ECorrect.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emgwhbf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556980488.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1556951205.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emgv059\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556949805.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"#One-Stop Workshop\\n\\n## Workshop FAQ\\n#### What is Overwatch Workshop?\\n- In layman's terms, its just [additional](#s \\\"Many, many additional\\\") features for designing custom games, using more drop-down menus.\\n\\n#### What is the One-Stop Workshop?\\n- \\tThis is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\n-\\tI call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\n\\n#### What is an FAQ?\\n-\\tFrantically Answering Questions!\\n\\n#### How to access the Workshop?\\n-\\tMake sure you have the PTR installed.\\n- \\tPlay \\u003E Game Browser \\u003E Create \\u003E Settings \\u003E Workshop\\n\\n#### What resources does Workshop give us?\\n-\\tCreation of Effects\\n-\\tConditional Changes to Rules\\n-\\tAdding HUD elements\\n-\\tAnd More\\n\\n#### Can you test heroes with workshop?\\n- \\tYesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\n- \\tHowever, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\n-\\tBut, don't fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\n\\n#### Is it a map editor?\\n- \\tNo. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\n\\n#### Do I need to know how to code to use it? Can normal people use it?\\n- \\tNo and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\n\\n#### What presets does it have for me to build off of?\\n- \\tMolten Floor - You set on fire while touching the floor.\\n- \\tOne Ultimate - Elimination mode where you start with your Ultimate, but can't get Ultimate charge.\\n- \\tHide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\n- \\tDouble Jump - Everyone can double jump.\\n- \\tFire Dome - A dome slowly shrinks, limiting the play space. (*Cough* Battle Royale *Cough*)\\n- \\tBalanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\n- \\tMirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\n- \\tZombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\n- \\tHero Gauntlet - Gun Game\\n\\n#### Is it on Console?\\n-\\tNot yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\n-\\tConsole access is part of why there are drop-down menus as the scripting language.\\n\\n#### Who built this?\\n-\\tKeith and Dan, our two buddy devs, in their free time. They have now been labeled [Hero 31 and Hero 32](#s \\\"Dan is 31, fight me\\\") by the reddit community.\\n\\n#### Is this going to get updates?\\n- It has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\n\\n#### Is there a limit to sizes of script/number of objects.\\n- Yes. 64 icons/effects, and some limit to the size of the script. \\n- However, the devs are working to increase these numbers.\\n\\t\\n#Useful Links\\n## Code Storage Sites\\nhttps://dutchdemons.com - u/Marinosbitter\\n\\nhttps://overwatchcustom.games - u/Thriver\\n\\nhttps://overwatchmodding.com/ - u/xSailboats\\n\\t\\n## Discord Channels\\n[OW Scripting](https://discord.gg/9pc4yyE)\\n\\n[Overwatch Workshop](https://discord.gg/qa9vR94)\\n\\n[Elo Hell Workshops](https://discord.gg/U5ARg2Fs)\\n\\n## Youtube Channels\\n#### Mode Creation Help:\\n[SamstaTV](https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g)\\n\\n## Miscellaneous Sites/Posts\\n[List of Flat Areas with few Obstacles](https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/) - u/Zezombye\\n\\n[Workshop Syntax \\u0026 Script Database](https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92) - WyomingMyst\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emgv059\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EOne-Stop Workshop\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EWorkshop FAQ\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EWhat is Overwatch Workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E In layman\\u0026#39;s terms, its just \\u003Ca href=\\\"#s\\\" title=\\\"Many, many additional\\\"\\u003Eadditional\\u003C/a\\u003E features for designing custom games, using more drop-down menus.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat is the One-Stop Workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E This is just a place where I am compiling all the different community resources in order to create an easily accessible resource for creators and consumers alike.\\u003C/li\\u003E\\n\\u003Cli\\u003E I call it One-Stop, because I want you to be able to come here and then find what you are looking for, without having to look for it yourself.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat is an FAQ?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Frantically Answering Questions!\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EHow to access the Workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Make sure you have the PTR installed.\\u003C/li\\u003E\\n\\u003Cli\\u003E Play \\u0026gt; Game Browser \\u0026gt; Create \\u0026gt; Settings \\u0026gt; Workshop\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat resources does Workshop give us?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Creation of Effects\\u003C/li\\u003E\\n\\u003Cli\\u003E Conditional Changes to Rules\\u003C/li\\u003E\\n\\u003Cli\\u003E Adding HUD elements\\u003C/li\\u003E\\n\\u003Cli\\u003E And More\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003ECan you test heroes with workshop?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Yesish? More than you could before. You can disable abilities, override button presses, add effects, and other ways to prototype heroes.\\u003C/li\\u003E\\n\\u003Cli\\u003E However, prototype is the right word right now. You cannot add art assets, and creating new moves is fairly difficult.\\u003C/li\\u003E\\n\\u003Cli\\u003E But, don\\u0026#39;t fear, Keith and Dan are working to give us access to all the things we need to customize abilities within the original framework of the game.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs it a map editor?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No. However, there are ways to add objects to the world. Some people are working on creating walls to drop and other ways to restrict movement.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EDo I need to know how to code to use it? Can normal people use it?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E No and Yes. There are many good tutorials on-line already, some linked down below. Following them will allow you to create rudimentary game-modes in no time.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWhat presets does it have for me to build off of?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Molten Floor - You set on fire while touching the floor.\\u003C/li\\u003E\\n\\u003Cli\\u003E One Ultimate - Elimination mode where you start with your Ultimate, but can\\u0026#39;t get Ultimate charge.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hide and Seek - Widow vs Tracers, if Widow sees a Tracer, the Tracer takes damage.\\u003C/li\\u003E\\n\\u003Cli\\u003E Double Jump - Everyone can double jump.\\u003C/li\\u003E\\n\\u003Cli\\u003E Fire Dome - A dome slowly shrinks, limiting the play space. (\\u003Cem\\u003ECough\\u003C/em\\u003E Battle Royale \\u003Cem\\u003ECough\\u003C/em\\u003E)\\u003C/li\\u003E\\n\\u003Cli\\u003E Balanced Mystery Heroes - Forced 2-2-2: Mystery Heroes\\u003C/li\\u003E\\n\\u003Cli\\u003E Mirrored Deathmatch - Deathmatch, but playing as all the same hero, swapping at short intervals.\\u003C/li\\u003E\\n\\u003Cli\\u003E Zombie - Reaper vs Soldiers, Reaper elims turn that Soldier into a Reaper. Soldiers try to run away.\\u003C/li\\u003E\\n\\u003Cli\\u003E Hero Gauntlet - Gun Game\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs it on Console?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Not yet, as it is in the PTR (Play Test Realm) which is restricted to PC. Once it comes out of PTR, it will be added to Console as well. \\u003C/li\\u003E\\n\\u003Cli\\u003E Console access is part of why there are drop-down menus as the scripting language.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EWho built this?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E Keith and Dan, our two buddy devs, in their free time. They have now been labeled \\u003Ca href=\\\"#s\\\" title=\\\"Dan is 31, fight me\\\"\\u003EHero 31 and Hero 32\\u003C/a\\u003E by the reddit community.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs this going to get updates?\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt has already been patched twice, and its only been on the PTR for a week. Updates seem to be coming fast and quick.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch4\\u003EIs there a limit to sizes of script/number of objects.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYes. 64 icons/effects, and some limit to the size of the script. \\u003C/li\\u003E\\n\\u003Cli\\u003EHowever, the devs are working to increase these numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EUseful Links\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003ECode Storage Sites\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://dutchdemons.com\\\"\\u003Ehttps://dutchdemons.com\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Marinosbitter\\\"\\u003Eu/Marinosbitter\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchcustom.games\\\"\\u003Ehttps://overwatchcustom.games\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Thriver\\\"\\u003Eu/Thriver\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://overwatchmodding.com/\\\"\\u003Ehttps://overwatchmodding.com/\\u003C/a\\u003E - \\u003Ca href=\\\"/u/xSailboats\\\"\\u003Eu/xSailboats\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EDiscord Channels\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/9pc4yyE\\\"\\u003EOW Scripting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/qa9vR94\\\"\\u003EOverwatch Workshop\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/U5ARg2Fs\\\"\\u003EElo Hell Workshops\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EYoutube Channels\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EMode Creation Help:\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/channel/UC55fGAkSW6NXWIHk_elkX0g\\\"\\u003ESamstaTV\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EMiscellaneous Sites/Posts\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/OverwatchCustomGames/comments/bjjxc9/list_of_flat_areas_with_little_to_no_obstacles/\\\"\\u003EList of Flat Areas with few Obstacles\\u003C/a\\u003E - \\u003Ca href=\\\"/u/Zezombye\\\"\\u003Eu/Zezombye\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://us.forums.blizzard.com/en/overwatch/t/wiki-workshop-syntax-script-database/335011/92\\\"\\u003EWorkshop Syntax \\u0026amp; Script Database\\u003C/a\\u003E - WyomingMyst\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emgv059/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556978605.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkb0kl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emg7uhl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MineSweeper2048\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556927588.0, \"send_replies\": true, \"parent_id\": \"t3_bkb0kl\", \"score\": 1, \"author_fullname\": \"t2_1a5b92pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"It's a really cool game, see if you can add in different attacks or improve the punch\", \"link_title\": \"My first attempt at making a game in Godot! feedback appreciated and link to the game below.\", \"author_flair_css_class\": null, \"name\": \"t1_emg7uhl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s a really cool game, see if you can add in different attacks or improve the punch\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/emg7uhl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/\", \"report_reasons\": null, \"link_author\": \"raikkhan\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/6wliprr531w21\", \"created\": 1556956388.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkdn1j\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emfvztp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Interlake_Olympia\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1556918417.0, \"send_replies\": true, \"parent_id\": \"t3_bkdn1j\", \"score\": 1, \"author_fullname\": \"t2_9gwmh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"# Spurs 2019-2020 Salaries\\n\\n|*Player*|*Position*|*Salary*|*Age*|\\n|:-|:-|:-|:-|\\n|DeMar DeRozan|G|$27,739,975|30|\\n|LaMarcus Aldridge|F|$26,000,000|34|\\n|Patty Mills|G|$12,428,571|31|\\n|Davis Bertans|F|$7,000,000|26|\\n|Marco Belinelli|G|$5,846,154|33|\\n|Jakob Poeltl|C|$3,754,886|23|\\n|Bryn Forbes|G|$2,875,000|26|\\n|Lonnie Walker IV|G|$2,760,480|20|\\n|Dejounte Murray|G|$2,321,735|23|\\n|Derrick White|G|$1,948,080|25|\\n|Chimezie Metu|F|$1,416,852|22|\\n|**TOTAL:**||**$94,091,733**||\\n\\n# Dead Cap\\n\\n|*Player*|*Salary*|\\n|:-|:-|\\n|Pau Gasol|$5,075,000|\\n|**TOTAL:**|**$5,075,000**|\\n\\n# Cap Holds\\n\\n|*Player*|*Age*|*Amount*|*Rights*|\\n|:-|:-|:-|:-|\\n|Rudy Gay|33|$13,113,360|Early Bird (max raise of 175% over 2019 salary)|\\n|Dante Cunningham|32|$2,984,400|Non Bird (max raise of 120% over 2019 salary)|\\n|Quincy Pondexter|31|$1,618,486|Non Bird (max raise of 120% over 2019 salary)|\\n|Donatas Motiejunas|29|$1,618,486|Non Bird (max raise of 120% over 2019 salary)|\\n|\\\\*19th Overall Pick, 2019 Draft|$2,238,700|Rookie Deal||\\n|\\\\*29th Overall Pick, 2019 Draft|$1,623,300|Rookie Deal||\\n|**TOTAL:**||**$23,196,732**||\\n\\n# 2019 First Round Picks\\n\\n|*Pick*|*100% Rookie Scale Amount*|\\n|:-|:-|\\n|19th Overall Pick|$2,238,700|\\n|29th Overall Pick|$1,623,300|\\n|**TOTAL:**|**$3,862,000**|\\n\\n# Totals\\n\\n|Description|Amount|\\n|:-|:-|\\n|NBA Luxury Tax Threshold|$132,000,000|\\n|NBA Salary Cap|$109,000,000|\\n|Spurs Total Taxable Salaries (Team Salary+Dead Cap)|$99,166,733|\\n|Spurs Total Cap Allocations (Team Salary+Dead Cap+Cap Holds)|$122,363,465|\\n|Spurs Actual Cap Space|\\\\-$14,220,608|\\n|Spurs Max Possible Cap Space (No Draft Picks, Renounce Cap Holds)|$8,976,124|\\n|**Spurs Likely Cap Space (Including Draft Picks, Renounce Cap Holds)**|**$5,971,267**|\", \"link_title\": \"Spurs 2019-20 Salary Cap Outlook\", \"author_flair_css_class\": null, \"name\": \"t1_emfvztp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ESpurs 2019-2020 Salaries\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPlayer\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPosition\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003ESalary\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EAge\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDeMar DeRozan\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$27,739,975\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ELaMarcus Aldridge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$26,000,000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E34\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPatty Mills\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$12,428,571\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E31\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDavis Bertans\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$7,000,000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMarco Belinelli\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$5,846,154\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E33\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJakob Poeltl\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$3,754,886\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBryn Forbes\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,875,000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ELonnie Walker IV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,760,480\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDejounte Murray\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,321,735\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDerrick White\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EG\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,948,080\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EChimezie Metu\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,416,852\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E22\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$94,091,733\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EDead Cap\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPlayer\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003ESalary\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPau Gasol\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$5,075,000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$5,075,000\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ECap Holds\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPlayer\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EAge\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EAmount\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003ERights\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERudy Gay\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$13,113,360\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEarly Bird (max raise of 175% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDante Cunningham\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,984,400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon Bird (max raise of 120% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EQuincy Pondexter\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,618,486\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon Bird (max raise of 120% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDonatas Motiejunas\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,618,486\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon Bird (max raise of 120% over 2019 salary)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E*19th Overall Pick, 2019 Draft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,238,700\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERookie Deal\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E*29th Overall Pick, 2019 Draft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,623,300\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERookie Deal\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$23,196,732\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003E2019 First Round Picks\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003EPick\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cem\\u003E100% Rookie Scale Amount\\u003C/em\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19th Overall Pick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$2,238,700\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E29th Overall Pick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$1,623,300\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETOTAL:\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$3,862,000\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ETotals\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAmount\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENBA Luxury Tax Threshold\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$132,000,000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENBA Salary Cap\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$109,000,000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Total Taxable Salaries (Team Salary+Dead Cap)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$99,166,733\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Total Cap Allocations (Team Salary+Dead Cap+Cap Holds)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$122,363,465\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Actual Cap Space\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-$14,220,608\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESpurs Max Possible Cap Space (No Draft Picks, Renounce Cap Holds)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$8,976,124\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ESpurs Likely Cap Space (Including Draft Picks, Renounce Cap Holds)\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$5,971,267\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkdn1j/spurs_201920_salary_cap_outlook/emfvztp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkdn1j/spurs_201920_salary_cap_outlook/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bkdn1j/spurs_201920_salary_cap_outlook/\", \"created\": 1556947217.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkb0kl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emfbqr2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"raikkhan\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556904863.0, \"send_replies\": true, \"parent_id\": \"t3_bkb0kl\", \"score\": 2, \"author_fullname\": \"t2_11ekhc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"ghvhgv\", \"link_title\": \"My first attempt at making a game in Godot! feedback appreciated and link to the game below.\", \"author_flair_css_class\": null, \"name\": \"t1_emfbqr2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eghvhgv\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/emfbqr2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/\", \"report_reasons\": null, \"link_author\": \"raikkhan\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/6wliprr531w21\", \"created\": 1556933663.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1556951066.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bk0xz2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"emcwx0i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Lier1\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1556836326.0, \"send_replies\": true, \"parent_id\": \"t3_bk0xz2\", \"score\": 1, \"author_fullname\": \"t2_c4m11k7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**[TLDR:](#s \\\"Too Logical, Died Reading\\\")** I think that the Overwatch Workshop Community should get organized, and have some [ideas on doing so.](#s \\\"Not good ideas, mind you\\\")\\n\\n\\n\\n**Brief disclaimer:**\\n\\n\\n\\n- I by no means think these are the best ideas, I'm just trying to get a discussion started.\\n\\n\\n\\n- Please comment with better ideas, or parts I'm wrong about, or just because you feel like it.\\n\\n- A lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\n\\n- Also, liberal hover tags abound, and [none](#s \\\"some are funny, however\\\") are useful. The only things you can click on are specifically called out as links.\\n\\n\\n\\n---\\n\\n\\n\\n####First, an explanation on why organization helps players, creators, and devs alike.\\n\\n\\n\\n- [Casual Players](#s \\\"Filthy Casuals\\\"): An organized community will make it easier to find good, fun, game modes.\\n\\n\\n\\n- [Ranked Players](#s \\\"Sports Nuts\\\"): With a few changes, I personally think that Workshop can allow for [more frequent patch testing.](#s \\\"More on that later.\\\") An organized community could help the workshop get to that state sooner.\\n\\n\\n\\n- [Creators](#s \\\"Over-Dedicated Fans\\\"): An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\n\\n\\n\\n- [Devs](#s \\\"All-Mighty Deities\\\"): An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\n\\n\\n\\n---\\n\\n# Table of Contents\\n\\n##[Reddit Organization](#s \\\"How to do better than this post\\\")\\n\\n- #### Posts\\n\\n- #### Comments\\n\\n- #### Mode Specific Tips\\n\\n\\n\\n##[One-Stop Assistance](#s \\\"More like None-Start\\\")\\n\\n- #### [Workshop FAQ](#s \\\"What is an FAQ?\\\")\\n\\n- #### [Fun Modes](#s \\\"For Casuals\\\")\\n\\n- #### [Good Mechanics](#s \\\"For Creators\\\")\\n\\n- #### [Hero Ideas](#s \\\"For Devs?\\\")\\n\\n- #### [Useful Links](#s \\\"May be copywrite infringing\\\")\\n - ###### Discord Channels\\n - ###### Youtube Channels\\n - ###### Dev Updates\\n - ###### Storage Sites\\n\\n- ### [Ideas for Workshop Improvement](#s \\\"Nonexistent\\\")\\n\\n\\n\\n---\\n\\n#Reddit Post Organization\\n\\n\\n\\n####If posts are organized in a readable manner, it will help people to:\\n\\n- [Locate modes they like](#s \\\"Or hate\\\")\\n\\n- [Easily lend assistance](#s \\\"Hardly\\\")\\n\\n- [Not have to deal with ugly things](#s \\\"Except walking Zenyattas and wall-climbing Torbs\\\")\\n\\n\\n\\n\\n\\n##Post Example Layout\\n\\n\\n\\n- [Descriptive Title](#s \\\"Flaired Appropriately\\\")\\n\\n- Post Body\\n - Picture/Video [(Optional)](#s \\\"Follow this subs rules\\\")\\n - Code\\n - [Brief Summary](#s \\\"Or why your code is the awesomest ever\\\")\\n - Detailed Description (Optional)\\n - [Future Improvements](#s \\\"Unnecessary as your creation is perfect\\\") (Optional)\\n - [Credits](#s \\\"Those whose stuff you stole\\\")\\n\\n\\n\\n\\n##General Posting Tips\\n\\n\\n\\n- Title\\tTips\\n\\n - Do use this phrasing: _[MyThing](#s \\\"What you made\\\") from [OtherMedia](#s \\\"What you stole the idea from\\\")_\\n\\n\\n\\n - Do be very specific. _Alphabetic Gun Game_ is better than simply _Gun Game_.\\n\\n - Good Example: _Alphabetic Gun Game from [CS:S:HTMLGO](#s \\\"CS Major\\\")_\\n\\n- Post Body Tips\\n\\n - Do use a visual if possible. [Video \\u003E Picture \\u003E Text](#s \\\"\\u003E Lier1\\\")\\n\\n - Do use formatting, titles, or at the very least, [paragraph breaks](#s \\\"Hit enter twice, not once\\\")\\n\\n - Do keep updated modes organized, either with new posts commented in the original post, or with update codes added with [edits](#s \\\"v3.1 Never mind\\\")\\n\\n - Do put things you are unsure how to do under [Future Improvements](#s \\\"As you will somehow be smarter in the future\\\")\\n\\n - Do [credit](#s \\\"I'll talk about using others work later\\\") other users in your post. It's only polite\\n\\n - Do your [research.](#s \\\"See that other people have posted working code before\\\") It will save you time and effort\\n\\n - Don't go into the [nitty gritty.](#s \\\"I used this rule with this condition\\\") Explain how it works in game, not in code\\n\\n\\n\\n---\\n\\n\\n\\n#Reddit Comment Organization\\n\\n#### If comments are organized in a helpful manner, it will help people to:\\n\\n- Get useful feedback\\n\\n- Raise their self-esteem\\n\\n\\n\\n\\n\\n\\n\\n##Comment Example Layout\\n\\n- [Notice the Good](#s \\\"It does exists, its just hiding\\\")\\n\\n- Harsh reality (Optional)\\n\\n- [Useful feedback](#s \\\"Unnecessary\\\")\\n\\n\\n\\n\\n\\n##General Tips\\n\\n\\n\\n- Do always be positive. There is [no need nor reason for negativity.](#s \\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\")\\n\\n- Do mention similar ideas. Link to them so the poster can get some ideas.\\n\\n- Do give actual information/feedback.\\n\\n- Do keep comments to the post at hand.\\n\\n- Don't simply comment [\\\"Great job\\\"](#s \\\"Great Job, finding this hover text\\\"). That's what liking is usually for.\\n\\n- Don't assume that the [posters vision matches yours.](#s \\\"My vision isn't 20-20, you see\\\")\\n\\n- Good Example: \\\"Me and a few friends played this mode, because we love it from Halloo 4. It's a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There's some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\\"\\n\\n---\\n\\n# Reddit Mode Specific\\n\\n\\n##Game Mode Post\\n\\n- Do label the specific [play mode](#s \\\"FFA, 5CP, Domination\\\") used in the code if it is unclear\\n\\n\\n\\n---\\n\\n\\n\\n##Game Mode Comment\\n\\n- Do play and share your experiences\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Post\\n\\n\\n\\n####Hero Description Example Layout\\n\\n- Health\\n\\n- Passives\\n\\n- Triggered Abilities\\n\\n - Stats\\n\\n - Other Features\\n\\n\\n\\n- ###Brief Summary Tips\\n\\n - Do mention what [role](#s \\\"Flanker, Tank, Monkey, etc.\\\") your hero should fill\\n\\n - Don't talk about how your hero will [destroy the meta](#s \\\"It won't\\\")\\n\\n\\n\\n- ### Triggered Ability Tips\\n\\n - Do use numbers to describe hero [DPS](#s \\\"Deaths per Second\\\") and [HPS](#s \\\"i need Healing per Second\\\") if you want balance advice\\n\\n - Do keep any numbers used checked against [actual heroes](#s \\\"No supports firing 20 rounds of 15 dmg a second\\\")\\n\\n - Do check sources such as this _linked_ [Overwatch GamePedia](https://overwatch.gamepedia.com/Overwatch_Wiki) page for how to describe abilities\\n\\n\\n\\n- ### General Tips\\n\\n - Do follow precedent for most parts of your character. They don't need a new leveling system, 50 HP, and a different [control scheme](#s \\\"Command Line\\\")\\n\\n - Do make heroes both fun to play and [fun to play against](#s \\\"mostly the second\\\")\\n\\n - Don't make a character with [lots of exceptions](#s \\\"Blocks all CC except Doomfist Punch\\\")\\n\\n - Don't step on too many [toes](#s \\\"*Cough* Pre-nerf Bridgette *Cough*\\\")\\n\\n\\n\\n---\\n\\n\\n\\n## Hero Comment\\n\\n- Do keep balance comparisons within Overwatch. Comparing to Bastion is [OK](#s \\\"If dangerous\\\"). Comparing to Demo is less [helpful](#s \\\"Unless they are making TF2 accurate Demo\\\")\\n\\n- Do think of the character as a [whole](#s \\\"They can't attack while their shield is up? Useless\\\")\\n\\n- Do be kind. Not all posters are secretly [Blizzard Devs testing new heroes](#s \\\"But some are, right?\\\")\\n\\n- Don't talk balance unless the poster [wants to.](#s \\\"The hero will be horribly underpowered their first time. Let that go.\\\") They may just be creating for fun\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Post\\n\\n- Do try to keep the code as [simple and self-contained](#s \\\"Minimize Dependencies\\\") as possible\\n\\n- Do mention what variables you use\\n\\n- Do explain how you accomplished your [goal](#s \\\"Magic is an acceptable response\\\")\\n\\n- Do explain [bugs and edge cases](#s \\\"Or treat them as just part of the experience\\\")\\n\\n\\n\\n---\\n\\n\\n\\n##Mechanics Comment\\n\\n- Do mention what cool game-modes you can imagine using with it\\n\\n- Do mention alternate ideas for how to implement it\\n\\n- Do post links to other [implementations](#s \\\"With permission\\\")\\n\\n- Do be amazed at what they managed to do\", \"link_title\": \"Spoiler tag test\", \"author_flair_css_class\": null, \"name\": \"t1_emcwx0i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Too Logical, Died Reading\\\"\\u003ETLDR:\\u003C/a\\u003E\\u003C/strong\\u003E I think that the Overwatch Workshop Community should get organized, and have some \\u003Ca href=\\\"#s\\\" title=\\\"Not good ideas, mind you\\\"\\u003Eideas on doing so.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBrief disclaimer:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI by no means think these are the best ideas, I\\u0026#39;m just trying to get a discussion started.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPlease comment with better ideas, or parts I\\u0026#39;m wrong about, or just because you feel like it.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EA lot of this is compiled from other places. I try to label where I am doing that. However, I might have missed something. Comment and tell me if I forgot to reference you.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EAlso, liberal hover tags abound, and \\u003Ca href=\\\"#s\\\" title=\\\"some are funny, however\\\"\\u003Enone\\u003C/a\\u003E are useful. The only things you can click on are specifically called out as links.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EFirst, an explanation on why organization helps players, creators, and devs alike.\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Filthy Casuals\\\"\\u003ECasual Players\\u003C/a\\u003E: An organized community will make it easier to find good, fun, game modes.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Sports Nuts\\\"\\u003ERanked Players\\u003C/a\\u003E: With a few changes, I personally think that Workshop can allow for \\u003Ca href=\\\"#s\\\" title=\\\"More on that later.\\\"\\u003Emore frequent patch testing.\\u003C/a\\u003E An organized community could help the workshop get to that state sooner.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Over-Dedicated Fans\\\"\\u003ECreators\\u003C/a\\u003E: An organized community will allow for large scale projects, better access to people with fixes for your problems, and more people to test your stuff.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"All-Mighty Deities\\\"\\u003EDevs\\u003C/a\\u003E: An organized community will allow for easier tracking of what people want from Workshop, and may lead to more interest in Overwatch in the long run.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ETable of Contents\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"How to do better than this post\\\"\\u003EReddit Organization\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EPosts\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EComments\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003EMode Specific Tips\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"More like None-Start\\\"\\u003EOne-Stop Assistance\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What is an FAQ?\\\"\\u003EWorkshop FAQ\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"For Casuals\\\"\\u003EFun Modes\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"For Creators\\\"\\u003EGood Mechanics\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"For Devs?\\\"\\u003EHero Ideas\\u003C/a\\u003E\\u003C/h4\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch4\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"May be copywrite infringing\\\"\\u003EUseful Links\\u003C/a\\u003E\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E###### Discord Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Youtube Channels\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Dev Updates\\u003C/li\\u003E\\n\\u003Cli\\u003E###### Storage Sites\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Nonexistent\\\"\\u003EIdeas for Workshop Improvement\\u003C/a\\u003E\\u003C/h3\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Post Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf posts are organized in a readable manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or hate\\\"\\u003ELocate modes they like\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Hardly\\\"\\u003EEasily lend assistance\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Except walking Zenyattas and wall-climbing Torbs\\\"\\u003ENot have to deal with ugly things\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EPost Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Flaired Appropriately\\\"\\u003EDescriptive Title\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPicture/Video \\u003Ca href=\\\"#s\\\" title=\\\"Follow this subs rules\\\"\\u003E(Optional)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ECode\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Or why your code is the awesomest ever\\\"\\u003EBrief Summary\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDetailed Description (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary as your creation is perfect\\\"\\u003EFuture Improvements\\u003C/a\\u003E (Optional)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Those whose stuff you stole\\\"\\u003ECredits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Posting Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETitle Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use this phrasing: \\u003Cem\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"What you made\\\"\\u003EMyThing\\u003C/a\\u003E from \\u003Ca href=\\\"#s\\\" title=\\\"What you stole the idea from\\\"\\u003EOtherMedia\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo be very specific. \\u003Cem\\u003EAlphabetic Gun Game\\u003C/em\\u003E is better than simply \\u003Cem\\u003EGun Game\\u003C/em\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003EGood Example: \\u003Cem\\u003EAlphabetic Gun Game from \\u003Ca href=\\\"#s\\\" title=\\\"CS Major\\\"\\u003ECS:S:HTMLGO\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPost Body Tips\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use a visual if possible. \\u003Ca href=\\\"#s\\\" title=\\\"\\u0026gt; Lier1\\\"\\u003EVideo \\u0026gt; Picture \\u0026gt; Text\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo use formatting, titles, or at the very least, \\u003Ca href=\\\"#s\\\" title=\\\"Hit enter twice, not once\\\"\\u003Eparagraph breaks\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep updated modes organized, either with new posts commented in the original post, or with update codes added with \\u003Ca href=\\\"#s\\\" title=\\\"v3.1 Never mind\\\"\\u003Eedits\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo put things you are unsure how to do under \\u003Ca href=\\\"#s\\\" title=\\\"As you will somehow be smarter in the future\\\"\\u003EFuture Improvements\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo \\u003Ca href=\\\"#s\\\" title=\\\"I\\u0026#39;ll talk about using others work later\\\"\\u003Ecredit\\u003C/a\\u003E other users in your post. It\\u0026#39;s only polite\\u003C/li\\u003E\\n\\u003Cli\\u003EDo your \\u003Ca href=\\\"#s\\\" title=\\\"See that other people have posted working code before\\\"\\u003Eresearch.\\u003C/a\\u003E It will save you time and effort\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t go into the \\u003Ca href=\\\"#s\\\" title=\\\"I used this rule with this condition\\\"\\u003Enitty gritty.\\u003C/a\\u003E Explain how it works in game, not in code\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Comment Organization\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EIf comments are organized in a helpful manner, it will help people to:\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGet useful feedback\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERaise their self-esteem\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EComment Example Layout\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"It does exists, its just hiding\\\"\\u003ENotice the Good\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHarsh reality (Optional)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#s\\\" title=\\\"Unnecessary\\\"\\u003EUseful feedback\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EGeneral Tips\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo always be positive. There is \\u003Ca href=\\\"#s\\\" title=\\\"If you feel toxic, comment at Lier1 instead, acting like its my fault\\\"\\u003Eno need nor reason for negativity.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention similar ideas. Link to them so the poster can get some ideas.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo give actual information/feedback.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep comments to the post at hand.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t simply comment \\u003Ca href=\\\"#s\\\" title=\\\"Great Job, finding this hover text\\\"\\u003E\\u0026quot;Great job\\u0026quot;\\u003C/a\\u003E. That\\u0026#39;s what liking is usually for.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t assume that the \\u003Ca href=\\\"#s\\\" title=\\\"My vision isn\\u0026#39;t 20-20, you see\\\"\\u003Eposters vision matches yours.\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGood Example: \\u0026quot;Me and a few friends played this mode, because we love it from Halloo 4. It\\u0026#39;s a pretty good representation. The only question we have is: why not use 3rd person camera for it, like in the original. There\\u0026#39;s some examples of it here at LINK. Anyway, it was fun, thanks for making it.\\u0026quot;\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003EReddit Mode Specific\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo label the specific \\u003Ca href=\\\"#s\\\" title=\\\"FFA, 5CP, Domination\\\"\\u003Eplay mode\\u003C/a\\u003E used in the code if it is unclear\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EGame Mode Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo play and share your experiences\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Post\\u003C/h2\\u003E\\n\\n\\u003Ch4\\u003EHero Description Example Layout\\u003C/h4\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHealth\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPassives\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETriggered Abilities\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EStats\\u003C/li\\u003E\\n\\u003Cli\\u003EOther Features\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EBrief Summary Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo mention what \\u003Ca href=\\\"#s\\\" title=\\\"Flanker, Tank, Monkey, etc.\\\"\\u003Erole\\u003C/a\\u003E your hero should fill\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t talk about how your hero will \\u003Ca href=\\\"#s\\\" title=\\\"It won\\u0026#39;t\\\"\\u003Edestroy the meta\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003ETriggered Ability Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo use numbers to describe hero \\u003Ca href=\\\"#s\\\" title=\\\"Deaths per Second\\\"\\u003EDPS\\u003C/a\\u003E and \\u003Ca href=\\\"#s\\\" title=\\\"i need Healing per Second\\\"\\u003EHPS\\u003C/a\\u003E if you want balance advice\\u003C/li\\u003E\\n\\u003Cli\\u003EDo keep any numbers used checked against \\u003Ca href=\\\"#s\\\" title=\\\"No supports firing 20 rounds of 15 dmg a second\\\"\\u003Eactual heroes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo check sources such as this \\u003Cem\\u003Elinked\\u003C/em\\u003E \\u003Ca href=\\\"https://overwatch.gamepedia.com/Overwatch_Wiki\\\"\\u003EOverwatch GamePedia\\u003C/a\\u003E page for how to describe abilities\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ch3\\u003EGeneral Tips\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDo follow precedent for most parts of your character. They don\\u0026#39;t need a new leveling system, 50 HP, and a different \\u003Ca href=\\\"#s\\\" title=\\\"Command Line\\\"\\u003Econtrol scheme\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDo make heroes both fun to play and \\u003Ca href=\\\"#s\\\" title=\\\"mostly the second\\\"\\u003Efun to play against\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t make a character with \\u003Ca href=\\\"#s\\\" title=\\\"Blocks all CC except Doomfist Punch\\\"\\u003Elots of exceptions\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t step on too many \\u003Ca href=\\\"#s\\\" title=\\\"*Cough* Pre-nerf Bridgette *Cough*\\\"\\u003Etoes\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EHero Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo keep balance comparisons within Overwatch. Comparing to Bastion is \\u003Ca href=\\\"#s\\\" title=\\\"If dangerous\\\"\\u003EOK\\u003C/a\\u003E. Comparing to Demo is less \\u003Ca href=\\\"#s\\\" title=\\\"Unless they are making TF2 accurate Demo\\\"\\u003Ehelpful\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo think of the character as a \\u003Ca href=\\\"#s\\\" title=\\\"They can\\u0026#39;t attack while their shield is up? Useless\\\"\\u003Ewhole\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be kind. Not all posters are secretly \\u003Ca href=\\\"#s\\\" title=\\\"But some are, right?\\\"\\u003EBlizzard Devs testing new heroes\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDon\\u0026#39;t talk balance unless the poster \\u003Ca href=\\\"#s\\\" title=\\\"The hero will be horribly underpowered their first time. Let that go.\\\"\\u003Ewants to.\\u003C/a\\u003E They may just be creating for fun\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Post\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo try to keep the code as \\u003Ca href=\\\"#s\\\" title=\\\"Minimize Dependencies\\\"\\u003Esimple and self-contained\\u003C/a\\u003E as possible\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what variables you use\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain how you accomplished your \\u003Ca href=\\\"#s\\\" title=\\\"Magic is an acceptable response\\\"\\u003Egoal\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo explain \\u003Ca href=\\\"#s\\\" title=\\\"Or treat them as just part of the experience\\\"\\u003Ebugs and edge cases\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EMechanics Comment\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention what cool game-modes you can imagine using with it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo mention alternate ideas for how to implement it\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo post links to other \\u003Ca href=\\\"#s\\\" title=\\\"With permission\\\"\\u003Eimplementations\\u003C/a\\u003E\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EDo be amazed at what they managed to do\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bk0xz2/spoiler_tag_test/emcwx0i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"report_reasons\": null, \"link_author\": \"Lier1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bk0xz2/spoiler_tag_test/\", \"created\": 1556865126.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bix03h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"em3phyw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"userleansbot\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556584797.0, \"send_replies\": true, \"parent_id\": \"t1_em3ph6v\", \"score\": 1, \"author_fullname\": \"t2_3a4fedhv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Author: /u/userleansbot\\n___\\nAnalysis of /u/roddypiper534's activity in political subreddits over the past 1000 comments and submissions.\\n\\nAccount Created: 3 years, 1 months, 0 days ago\\n\\nSummary: **This user does not have enough activity in political subs for analysis or has no clear leanings, they might be one of those weirdo moderate types. I don't trust them.**\\n\\n Subreddit|Lean|No. of comments|Total comment karma|No. of posts|Total post karma\\n :--|:--|:--|:--|:--|:--|:--|:--\\n[/r/politics](https://redditsearch.io/?term=\\u0026dataviz=true\\u0026aggs=true\\u0026subreddits=politics\\u0026searchtype=posts,comments,aggs,stats,dataviz\\u0026search=true\\u0026start=0\\u0026size=1000\\u0026authors=roddypiper534)|left|2|74|0|0\\n\\n***\\n ^(Bleep, bloop, I'm a bot trying to help inform political discussions on Reddit.) ^| [^About](https://www.reddit.com/user/userleansbot/comments/au1pva/faq_about_userleansbot/)\\n ___\", \"link_title\": \"Dog face\", \"author_flair_css_class\": null, \"name\": \"t1_em3phyw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAuthor: \\u003Ca href=\\\"/u/userleansbot\\\"\\u003E/u/userleansbot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EAnalysis of \\u003Ca href=\\\"/u/roddypiper534\\\"\\u003E/u/roddypiper534\\u003C/a\\u003E\\u0026#39;s activity in political subreddits over the past 1000 comments and submissions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAccount Created: 3 years, 1 months, 0 days ago\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESummary: \\u003Cstrong\\u003EThis user does not have enough activity in political subs for analysis or has no clear leanings, they might be one of those weirdo moderate types. I don\\u0026#39;t trust them.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ESubreddit\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ELean\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ENo. of comments\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETotal comment karma\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ENo. of posts\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETotal post karma\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://redditsearch.io/?term=\\u0026amp;dataviz=true\\u0026amp;aggs=true\\u0026amp;subreddits=politics\\u0026amp;searchtype=posts,comments,aggs,stats,dataviz\\u0026amp;search=true\\u0026amp;start=0\\u0026amp;size=1000\\u0026amp;authors=roddypiper534\\\"\\u003E/r/politics\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eleft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EBleep, bloop, I\\u0026#39;m a bot trying to help inform political discussions on Reddit.\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Ca href=\\\"https://www.reddit.com/user/userleansbot/comments/au1pva/faq_about_userleansbot/\\\"\\u003E\\u003Csup\\u003EAbout\\u003C/sup\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bix03h/dog_face/em3phyw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bix03h/dog_face/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=Mgv88ZLi6LY\", \"created\": 1556613597.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bix03h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"em3ph6v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"roddypiper534\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1556584782.0, \"send_replies\": true, \"parent_id\": \"t3_bix03h\", \"score\": 1, \"author_fullname\": \"t2_wqliu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"/u/userleansbot\", \"link_title\": \"Dog face\", \"author_flair_css_class\": null, \"name\": \"t1_em3ph6v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/userleansbot\\\"\\u003E/u/userleansbot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bix03h/dog_face/em3ph6v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bix03h/dog_face/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=Mgv88ZLi6LY\", \"created\": 1556613582.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bhoqrx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elugkmp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LitteulCevenn\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1556298399.0, \"send_replies\": true, \"parent_id\": \"t3_bhoqrx\", \"score\": 1, \"author_fullname\": \"t2_17k23q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E!Oh it works!\\u003C\", \"link_title\": \"Spoiler test mobile\", \"author_flair_css_class\": null, \"name\": \"t1_elugkmp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003EOh it works\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bhoqrx/spoiler_test_mobile/elugkmp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bhoqrx/spoiler_test_mobile/\", \"report_reasons\": null, \"link_author\": \"LitteulCevenn\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bhoqrx/spoiler_test_mobile/\", \"created\": 1556327199.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eltdv4s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Mcsquizzy\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556264587.0, \"send_replies\": true, \"parent_id\": \"t1_elrja1i\", \"score\": 1, \"author_fullname\": \"t2_8xjhh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"lmao\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_eltdv4s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Elmao\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": \"moderator\", \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/eltdv4s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556293387.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrk49b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Devstackr\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556216258.0, \"send_replies\": true, \"parent_id\": \"t1_elrja1i\", \"score\": 2, \"author_fullname\": \"t2_2m0kgx4w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"haha :D\\n\\nI posted it here to see what the image would look like before posting on /r/Frontend :P\\n\\nthanks again for the feedback :D\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrk49b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehaha :D\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI posted it here to see what the image would look like before posting on \\u003Ca href=\\\"/r/Frontend\\\"\\u003E/r/Frontend\\u003C/a\\u003E :P\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethanks again for the feedback :D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrk49b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556245058.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrk0nk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Devstackr\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556216195.0, \"send_replies\": true, \"parent_id\": \"t1_elrj823\", \"score\": 2, \"author_fullname\": \"t2_2m0kgx4w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"thanks for the feedback, I really appreciate it! :D\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrk0nk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks for the feedback, I really appreciate it! :D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrk0nk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556244995.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrja1i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MadcapTangent\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556215730.0, \"send_replies\": true, \"parent_id\": \"t1_elrj823\", \"score\": 3, \"author_fullname\": \"t2_q5gho\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"well just saw what sub this was. Excuse me while I jump into oncoming traffic....\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrja1i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewell just saw what sub this was. Excuse me while I jump into oncoming traffic....\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrja1i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556244530.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bh7hrl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elrj823\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MadcapTangent\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1556215696.0, \"send_replies\": true, \"parent_id\": \"t3_bh7hrl\", \"score\": 2, \"author_fullname\": \"t2_q5gho\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"If this is primarily accessed through phones and tablets the bottom one. If on PC, the top one. Keep the spatial symmetry in mind when deciding on these things.\\n\\nThey are both fantastic though, visually speaking.\", \"link_title\": \"Login UI\", \"author_flair_css_class\": null, \"name\": \"t1_elrj823\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf this is primarily accessed through phones and tablets the bottom one. If on PC, the top one. Keep the spatial symmetry in mind when deciding on these things.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThey are both fantastic though, visually speaking.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bh7hrl/login_ui/elrj823/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bh7hrl/login_ui/\", \"report_reasons\": null, \"link_author\": \"Devstackr\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/go8pzhtdaeu21.png\", \"created\": 1556244496.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgvjfl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elnsm1i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"CrBr\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1556117505.0, \"send_replies\": true, \"parent_id\": \"t3_bgvjfl\", \"score\": 1, \"author_fullname\": \"t2_sujjc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"and in the comments\\n\\n\\u0026#x200B;\\n\\n \\u003C!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--\\u003ETask | Goal | Checkin 1 10:30 | Checkin 2 | Checkin 3:-- | :- | :-- | :-- | :--Check in here | 0.50 | 0.50 | | housework | 0.50 | | | Meditate | 0.50 | | | my lesson | 1.50 | | | drive k2 2x | 1.25 | | | paper mail | 0.50 | | | accounting | 2.00 | | | shorthand | 0.50 | | | Mosquitoes | 0.50 | | | Craft | 0.50 | | | Total | 8.25 | 0.50 | 0.00 | 0.00\", \"link_title\": \"test table\", \"author_flair_css_class\": null, \"name\": \"t1_elnsm1i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eand in the comments\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--\\u0026gt;Task | Goal | Checkin 1 10:30 | Checkin 2 | Checkin 3:-- | :- | :-- | :-- | :--Check in here | 0.50 | 0.50 | | housework | 0.50 | | | Meditate | 0.50 | | | my lesson | 1.50 | | | drive k2 2x | 1.25 | | | paper mail | 0.50 | | | accounting | 2.00 | | | shorthand | 0.50 | | | Mosquitoes | 0.50 | | | Craft | 0.50 | | | Total | 8.25 | 0.50 | 0.00 | 0.00\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bgvjfl/test_table/elnsm1i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bgvjfl/test_table/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bgvjfl/test_table/\", \"created\": 1556146305.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1555883686.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfu16t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elgaylo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"danielthetemp\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1555883030.0, \"send_replies\": true, \"parent_id\": \"t3_bfu16t\", \"score\": 1, \"author_fullname\": \"t2_14hd4t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E***PRICES (Open to Offers)***\\n\\n\\u003E- **If An Octopus Could Palm** - $119.99\\n\\n\\u003E- **Brown Bee Wynn** - $37.99\\n\\n\\u003E- **2012 Magic Con** - $37.99 - 2x\\n\\n\\u003E- **Absolut Vodka** - $34.99 - 2x\\n\\n\\u003E- **Carrot Fontaine** - $31.99 - 8x\\n\\n\\u003E- **Smoke \\u0026 Mirrors v5** - $28.99\\n\\n\\u003E- **Smoke \\u0026 Mirrors v6** - $26.99/$25.99 - 2x\\n\\n\\u003E- **A1 Black Logo** - $26.99 - 5x\\n\\n\\u003E- **Gold Rarebit** - $21.99\\n\\n\\u003E- **Black USPCC Logo \\u201cTech Art\\u201d** - $60.99\\n\\n\\u003E- **Watermelon Fontaine** - $52.99\\n\\n\\u003E- **A1/DND Smoke \\u0026 Mirrors** - $33.99 - 3x\\n\\n\\u003E- **A1 Headlong Into Eternity** - $27.99\\n\\n\\u003E- **Lot of Opened Decks (DND Private Reserve, Blue Fontaine, Absolut Vodka, S\\u0026M v4)** - $99.99\\n\\n\\u003E- **Lot of Opened Bee Wynns (1x Brown, 1x Violet \\u201cTech Art,\\u201d 1x Violet \\u201cStandard Index\\u201d)** - $72.99\\n\\n\\u003E- **Lot of Opened Golden Nuggets (1x Green, 1x Black)** - $37.99\\n\\n\\u003E- **Green Ace Fulton\\u2019s** - $18.99 - 15x\\n\\n***CONDITION OF DAMAGED/OPEN DECKS***\\n\\n- **If An Octopus Could Palm**: Multiple dents and creases to the box.\\n- **Brown Wynn**: Loose cellophane on top, taped cello on one side.\\n- **2012 Magic Con**: Dents to one corner of both decks.\\n- **Smoke \\u0026 Mirrors v5**: Dents to two corners.\\n- **Smoke \\u0026 Mirrors v6**: Dent to one corner of one deck.\\n- **1st Lot**: All decks in unused condition. All Jokers/ad cards included, except with S\\u0026M v4\\n- **2nd Lot**: Brown Wynn (52 std + 4 Jokers/ad cards) in great condition, but Queen of Spades has a defect to one corner. Violet \\u201cTech Art\\u201d (52 std + no Jokers/ad cards) in great condition. Violet \\u201cStandard Index\\u201d (52 std + 4 Jokers/ad cards) in great condition, though they don\\u2019t fan well due to standard pips.\\n- **3rd Lot**: Black Golden Nugget (52 standard + 2 Joker cards) in good but lightly worn condition, fanning and spreading w/ noticeable clumping. Green Golden Nugget (52 standard + no Jokers/ad cards) in very good condition, but don\\u2019t fan/spread due to finish.\\n\\n***SHIPPING***\\n\\n***Free U.S. shipping (insured depending on order value).***\\n\\n***Calculated Worldwide shipping (insured depending on buyer\\u2019s preference).***\", \"link_title\": \"TEST\", \"author_flair_css_class\": null, \"name\": \"t1_elgaylo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EPRICES (Open to Offers)\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EIf An Octopus Could Palm\\u003C/strong\\u003E - $119.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBrown Bee Wynn\\u003C/strong\\u003E - $37.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E2012 Magic Con\\u003C/strong\\u003E - $37.99 - 2x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAbsolut Vodka\\u003C/strong\\u003E - $34.99 - 2x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ECarrot Fontaine\\u003C/strong\\u003E - $31.99 - 8x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v5\\u003C/strong\\u003E - $28.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v6\\u003C/strong\\u003E - $26.99/$25.99 - 2x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EA1 Black Logo\\u003C/strong\\u003E - $26.99 - 5x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EGold Rarebit\\u003C/strong\\u003E - $21.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBlack USPCC Logo \\u201cTech Art\\u201d\\u003C/strong\\u003E - $60.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWatermelon Fontaine\\u003C/strong\\u003E - $52.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EA1/DND Smoke \\u0026amp; Mirrors\\u003C/strong\\u003E - $33.99 - 3x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EA1 Headlong Into Eternity\\u003C/strong\\u003E - $27.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELot of Opened Decks (DND Private Reserve, Blue Fontaine, Absolut Vodka, S\\u0026amp;M v4)\\u003C/strong\\u003E - $99.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELot of Opened Bee Wynns (1x Brown, 1x Violet \\u201cTech Art,\\u201d 1x Violet \\u201cStandard Index\\u201d)\\u003C/strong\\u003E - $72.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELot of Opened Golden Nuggets (1x Green, 1x Black)\\u003C/strong\\u003E - $37.99\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EGreen Ace Fulton\\u2019s\\u003C/strong\\u003E - $18.99 - 15x\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ECONDITION OF DAMAGED/OPEN DECKS\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EIf An Octopus Could Palm\\u003C/strong\\u003E: Multiple dents and creases to the box.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBrown Wynn\\u003C/strong\\u003E: Loose cellophane on top, taped cello on one side.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E2012 Magic Con\\u003C/strong\\u003E: Dents to one corner of both decks.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v5\\u003C/strong\\u003E: Dents to two corners.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESmoke \\u0026amp; Mirrors v6\\u003C/strong\\u003E: Dent to one corner of one deck.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E1st Lot\\u003C/strong\\u003E: All decks in unused condition. All Jokers/ad cards included, except with S\\u0026amp;M v4\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E2nd Lot\\u003C/strong\\u003E: Brown Wynn (52 std + 4 Jokers/ad cards) in great condition, but Queen of Spades has a defect to one corner. Violet \\u201cTech Art\\u201d (52 std + no Jokers/ad cards) in great condition. Violet \\u201cStandard Index\\u201d (52 std + 4 Jokers/ad cards) in great condition, though they don\\u2019t fan well due to standard pips.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E3rd Lot\\u003C/strong\\u003E: Black Golden Nugget (52 standard + 2 Joker cards) in good but lightly worn condition, fanning and spreading w/ noticeable clumping. Green Golden Nugget (52 standard + no Jokers/ad cards) in very good condition, but don\\u2019t fan/spread due to finish.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESHIPPING\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EFree U.S. shipping (insured depending on order value).\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ECalculated Worldwide shipping (insured depending on buyer\\u2019s preference).\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfu16t/test/elgaylo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfu16t/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfu16t/test/\", \"created\": 1555911830.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfsmkt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elg60jw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"peacegang\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1555879268.0, \"send_replies\": true, \"parent_id\": \"t1_elg5k7o\", \"score\": 1, \"author_fullname\": \"t2_30chc41y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks for the tip \\ud83d\\udc4d\", \"link_title\": \"Test for posting my music (anxiety check)\", \"author_flair_css_class\": null, \"name\": \"t1_elg60jw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for the tip \\ud83d\\udc4d\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/elg60jw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"report_reasons\": null, \"link_author\": \"peacegang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"created\": 1555908068.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfsmkt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elg5k7o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thanksgames\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1555878932.0, \"send_replies\": true, \"parent_id\": \"t1_elg0fz0\", \"score\": 2, \"author_fullname\": \"t2_haj2j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I also use https://redditpreview.com then here.\", \"link_title\": \"Test for posting my music (anxiety check)\", \"author_flair_css_class\": null, \"name\": \"t1_elg5k7o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI also use \\u003Ca href=\\\"https://redditpreview.com\\\"\\u003Ehttps://redditpreview.com\\u003C/a\\u003E then here.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/elg5k7o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"report_reasons\": null, \"link_author\": \"peacegang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"created\": 1555907732.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bfsmkt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"elg0l70\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"peacegang\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1555875286.0, \"send_replies\": true, \"parent_id\": \"t3_bfsmkt\", \"score\": 1, \"author_fullname\": \"t2_30chc41y\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[SALEM - Jennifer's Rush (Unreleased)](https://soundcloud.com/peacegang/everyone-dies)\\n\\n\\n[Amnesia Scanner - AS Crust](https://soundcloud.com/peacegang/psfd)\\n\\n\\n[Balam Acab - Dream Out](https://soundcloud.com/peacegang/permo)\\n\\n\\n[CRIM3S - Pansy](https://soundcloud.com/peacegang/pansy-ruff)\\n\\n\\n[Wolfgang Tillmans - Make It Up As You Go Along (SALEM Remix)](https://soundcloud.com/peacegang/odt)\", \"link_title\": \"Test for posting my music (anxiety check)\", \"author_flair_css_class\": null, \"name\": \"t1_elg0l70\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/everyone-dies\\\"\\u003ESALEM - Jennifer\\u0026#39;s Rush (Unreleased)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/psfd\\\"\\u003EAmnesia Scanner - AS Crust\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/permo\\\"\\u003EBalam Acab - Dream Out\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/pansy-ruff\\\"\\u003ECRIM3S - Pansy\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://soundcloud.com/peacegang/odt\\\"\\u003EWolfgang Tillmans - Make It Up As You Go Along (SALEM Remix)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/elg0l70/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"report_reasons\": null, \"link_author\": \"peacegang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bfsmkt/test_for_posting_my_music_anxiety_check/\", \"created\": 1555904086.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_elg0l70\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["467008"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:33 GMT"], "x-ratelimit-remaining": ["568.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["32"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914353.348910,VS0,VE562"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["447"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:32:33"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_eq9cbr7"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:34 GMT"], "x-ratelimit-remaining": ["567.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["33"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914355.766787,VS0,VE78"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["446"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_eq9cbr7"}, "recorded_at": "2019-06-07T13:32:34"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_x9hgy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Orleans Funk and Soul Comp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": true, \"name\": \"t3_bxu0h7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/HZGF8jwxJvb-kmQ0VHxmPmJwsj7cME_lUiJh0tMOdyA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559939195.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?auto=webp\\u0026s=63435ce5b9021c26f3f3361832bee85120b95da7\", \"width\": 2997, \"height\": 3000}, \"resolutions\": [{\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4f2d78539e84109eff8c55ef3881fc5cd9895610\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=36b248b4534ebb7224b313476f08bfaeac231423\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d14878565506f79f9a565575c94dd15cb87b126f\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b8599670803f247e3567c308259e0e008d6ade54\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5f099f6836672fd6e14fc584d919502251a20062\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=80dc7ae6be61b47e33fb9efb8e6396ee20665a72\", \"width\": 1080, \"height\": 1081}], \"variants\": {}, \"id\": \"oOKJ7WqkVkUAvpB0GW3QoNctvySrbQLkpEE891MLydk\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu0h7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"branch_immersion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxu0h7/new_orleans_funk_and_soul_comp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/st657dn4fx231.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559910395.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Very sad news about the passing of Dr John. I took out a couple of his records this lunchtime and gave them a spin. \\n\\n\\u0026#x200B;\\n\\nI also dug out a copy of this compilation Saturday Night Fish Fry (New Orleans Funk And Soul). There was a post earlier this week about Betty Harris and the drums on her record. And I think generally, within this subreddit and elsewhere, there is a huge appetite for the New Orleans funk and blues. Some people may even correct me that sometimes the genre is referred to in more granular terms as fonk, I don't know. In his autobiography Dr. John put this distinct musical signature down to the unique geographic location of the City to absorb and conjoin different artistic ideas from America and the Caribbean. \\n\\n\\u0026#x200B;\\n\\nThis double lp is a collection of New Orleans funk and really gets my groove on. If you want to find out more about this City's musical heritage you could do a lot worse than get an overview from this selection.\", \"author_fullname\": \"t2_x9hgy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Orleans Funk and Soul Comp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_bxtvoq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559938349.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVery sad news about the passing of Dr John. I took out a couple of his records this lunchtime and gave them a spin. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also dug out a copy of this compilation Saturday Night Fish Fry (New Orleans Funk And Soul). There was a post earlier this week about Betty Harris and the drums on her record. And I think generally, within this subreddit and elsewhere, there is a huge appetite for the New Orleans funk and blues. Some people may even correct me that sometimes the genre is referred to in more granular terms as fonk, I don\\u0026#39;t know. In his autobiography Dr. John put this distinct musical signature down to the unique geographic location of the City to absorb and conjoin different artistic ideas from America and the Caribbean. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis double lp is a collection of New Orleans funk and really gets my groove on. If you want to find out more about this City\\u0026#39;s musical heritage you could do a lot worse than get an overview from this selection.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxtvoq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"branch_immersion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxtvoq/new_orleans_funk_and_soul_comp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxtvoq/new_orleans_funk_and_soul_comp/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559909549.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_288py4gj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Text\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxsgv0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559928038.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsgv0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Heroquetarro10\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559899238.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Text Area \\\\_\\\\_\\\\_ 1234567890\", \"author_fullname\": \"t2_3l1yc231\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing format of post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxqfkz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559910553.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EText Area ___ 1234567890\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxqfkz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"denHting\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxqfkz/testing_format_of_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxqfkz/testing_format_of_post/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559881753.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_3um52nx7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"get get get out\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxprj4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559906146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": true, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"rte_mode\": \"markdown\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxprj4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxprj4/get_get_get_out/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxprj4/get_get_get_out/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559877346.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Our story begins five years after the events of our last movie. In the time since Jean Grey and her fellow X-Men escaped from a US government base, battled the Sentinels, and survived a confrontation with the Mutant terrorist Magneto, America has slowly become a hotbed of political unrest. As the debate over Mutant rights rages on, young Mutants are still regularly arrested and detained without trial when their powers manifest, Mutant rights protests regularly erupt into riots in major cities, and lurid stories about wanted Mutant fugitives regularly make the evening news. \\n\\nAmid this tense backdrop, the terrorist Magneto launches attacks on police stations and military bases without warning, always leaving a trail of dead bodies in his wake. But in his stately Westchester mansion, political activist Professor Charles Xavier does his best to weather the storm as he peacefully fights for his people's freedom while training his Mutant pupils to use their powers for good. But as the years wear on, the teenage X-Men\\u2014now young adults\\u2014face plenty of changes in their private lives.\\n\\nFirst, young **Warren Worthington** (\\\"**Angel**\\\") chooses to leave the Xavier Institute to care for his terminally ill father. Then **Hank McCoy** (\\\"**Beast**\\\") chooses to leave to pursue his doctoral studies, planning to devote his life to science. Finally, **Bobby Drake** (\\\"**Iceman**\\\"), who just wants a normal life, decides to settle down with his girlfriend **Lorna**. Only **Scott Summers** (\\\"**Cyclops**\\\") can't envision a life outside of the X-Men; ever since losing his family in a mysterious plane crash at the age of 10, the Xavier Institute has been Scott's only home, and the X-Men are the only family that he has left. And as his relationship with **Jean Grey** develops into a passionate love affair, Jean is torn between her devotion to Scott and her desire to move forward with her life; though she longs to conceal her powerful psychic abilities and live as an ordinary human, she knows that Scott could never leave the Institute, and she feels compelled to stay by his side. This leaves Scott and Jean as the last remaining members of the original X-Men. But that may change soon.\\n\\nAs Professor Xavier turns his eyes to the world at large, it soon becomes clear that the struggle for Mutant rights is no longer solely an American problem; all over the world, innocent Mutants are being arrested and detained by paranoid government forces, and some are choosing to fight back. Over time, rumors spread of an underground network of Mutant rebels, who supposedly work to shelter and protect fugitive Mutants. Some call them terrorists, and others call them freedom fighters\\u2014but Professor Xavier sees them as potential new recruits.\\n\\nOn a quiet day in Moscow, Russia, a pair of uniformed FSB agents knock on the door of a secluded apartment, flanked by a squad of armed soldiers. When a young blonde woman answer the door, she stares defiantly at the agents.\\n\\n*\\\"There's no use playing the fool, Ms. Rasputin,\\\"* the lead agent says. *\\\"We know that you're sheltering a Mutant here. And you know the penalty for refusing to hand him over.\\\"*\\n\\nThe woman\\u2014**Ilyana Rasputin**\\u2014stares back at them, maintaining her cold composure.\\n\\n*\\\"I would never give my brother to mongrels like you,\\\"* she hisses. *\\\"He's a Mutant, but he's still my brother.\\\"*\\n\\nA tall, dark-haired man appears behind Ilyana and places a comforting hand upon her shoulder.\\n\\n*\\\"It's alright, Ilyana,\\\"* **Piotr Rasputin** says. *\\\"I'll go quietly. But always remember: your quarrel is with me, and me alone. My family is not to be harmed.\\\"*\\n\\nWith that, the agents cuff Piotr's wrists, and the soldiers escort him from the building at gunpoint. Standing at the window of her apartment with tear-streaked eyes, Ilyana can only watch helplessly as her beloved brother is marched into an armored van, softly whispering *\\\"Goodbye\\\"* as they close the doors. But unbeknownst to her, he's being watched from afar...\\n\\nIt turns out that three members of the mysterious **Mutant Freedom Network** have come to Moscow, and they know that a Mutant is about to be imprisoned by government forces. And this time, they've sworn to do something about it.\\n\\nWe meet three of them:\\n\\n* **Sean Cassidy** (callsign: \\\"**Banshee**\\\"), a grizzled ex-cop from Dublin who was thrown out of Interpol after he was outed as a Mutant. He possesses a powerful sonic scream that's strong enough to shatter glass, allowing him to fly for limited distances.\\n* **Ororo Munroe** (callsign: \\\"**Storm**\\\"), a young Kenyan-born woman who spent years as a petty thief on the streets of Nairobi, but became accepted as a priestess by a group of Bantu farmers, who realized that she possessed a supernatural ability to control the weather.\\n* **Kurt Wagner** (callsign: \\\"**Nightcrawler**\\\"), a fun-loving young German man of Romani heritage, who grew up as an acrobatic performer in a traveling circus. Possessing the power to vanish and teleport in a puff of smoke, his Mutant abilities give him a bizarre demonic appearance; his body is covered with blue fur, and he has fangs and a prehensile tail.\\n\\nAs Banshee, Storm and Nightcrawler watch the armored van pull into a convoy, a squad of black helicopters appears in the sky, watching the FSB agents from above as they drive Piotr away. At Banshee's command, they bust into action.\\n\\nFirst, Nightcrawler uses his teleporting abilities to jump into the front seat of the armored van, where he kicks the driver into the street and takes the wheel. As he hijacks the truck and drives away with Piotr in the back, Storm lashes out with a bolt of lightning and fries the other vans in the convoy before they can drive off after him. Moments later, Banshee tears through the sky and brings down a helicopter with his sonic scream.\\n\\n*\\\"Who the hell are you people?\\\"* Piotr demands. *\\\"And where are you taking me?!\\\"*\\n\\n*\\\"Relax, mein freund,\\\"* Nightcrawler says. *\\\"We're the good guys! And we're taking you where they can't hurt you. After that, you can go where you wish.\\\"*\\n\\nNightcrawler high-tails it to the highway with Storm riding on top of the stolen van, and Banshee follows them from the sky. As the FSB calls for backup, a frantic car chase ensues, and Ororo uses her powers to hold off a squad of pursuing cars while Banshee fights off the helicopters from above. At first, all seems well\\u2014but the escape takes a bad turn when Banshee catches a stray bullet and falls to his death. Pushing their powers to their limit, Nightcrawler and Storm fight for their lives against the pursuing soldiers. After breaking free of his cuffs, Piotr helps them out as he reveals his own Mutant ability: he can transform his body into near-indestructible steel, giving him superhuman strength and invulnerability.\\n\\nAfter Piotr uses his powers to punch his way through a police barricade and clear a path for the others, they all drive off into the distance in the stolen van. But before long, they receive a radio message from a familiar voice.\\n\\n*\\\"Stay calm,\\\"* Scott Summers says. *\\\"We're right on top of you!\\\"*\\n\\nA shadow appears on the highway as the frantic chase continues. It's **the Blackbird**! Scott is sitting in the cockpit, and Jean is next to him.\\n\\n*\\\"You've gotta jump!\\\"* Jean calls. *\\\"Don't worry, we'll catch you!\\\"*\\n\\nFrom the cockpit of the Blackbird, Jean uses her telekinesis to take control of the van's steering wheel, allowing the trio to clamber onto the roof of the van as it speeds along. As the van drives off the side of a cliff\\u2014where the Blackbird is waiting to pick them up\\u2014they just barely manage to jump into the cargo hold before the van falls and crashes on the ground below. Safe inside the jet, Storm, Nightcrawler and Piotr meet Scott and Jean personally.\\n\\n*\\\"Who are you people, exactly?\\\"* Storm asks.\\n\\n*\\\"We're the X-Men,\\\"* Scott says proudly. *\\\"And if you want to join us...then so are you.\\\"*\\n\\nIt turns out that Professor Xavier has been in touch with the three Mutant freedom fighters for weeks, and offered them a place in the Xavier Institute weeks ago. They accepted, but refused to leave for America before finishing one last rescue. Though the group is saddened by the loss of Banshee, Piotr agrees to join the X-Men along with Storm and Nightcrawler, believing that he has a duty to pay them back for rescuing him. Scott and Jean welcome him to the group with open arms, dubbing him \\\"**Colossus**\\\".\\n\\nBut the X-Men's elation is suddenly cut short when the Blackbird mysteriously stops in mid-air. Alarm sirens blare as some mysterious force grips the jet from the outside, and its navigation computers instantly go haywire. As they rush to the cockpit to figure out what's going on, their blood runs cold as they look out the window and see a familiar figure: ***Magneto****!* Showing off the full extent of his powers, he effortlessly hovers in mid-air in a bubble of magnetic energy; with one hand outstretched, he holds the Blackbird in the grip of a magnetic field.\\n\\nIt seems that Magneto has followed Scott and Jean to Russia, eager for a rematch with them. In the five years since Magneto murdered the scientist **Bolivar Trask**, he has had numerous confrontations with the X-Men\\u2014and each time, the X-Men have narrowly escaped with their lives.\\n\\nThinking fast, Scott and Jean clamber onto the roof of the Blackbird and engage Magneto, but he taunts them as he deflects Scott's optic blasts and shrugs off Jean's telepathic attacks\\u2014but the three new X-Men spring into action to aid them. Though Magneto easily subdues Colossus with his magnetic powers, Storm manages to weaken his shield by summoning a massive lightning storm, and Nightcrawler uses his teleportation abilities to land a crushing kick to his midsection. Taking advantage of the distraction, Scott blasts Magneto with his optic blasts, weakening him enough to free the Blackbird from his magnetic field. Seizing their window of opportunity, the X-Men pile into the jet and strap themselves in, and they make their escape.\\n\\nBack in Westchester, Professor Xavier happily welcomes his three new recruits to the Xavier Institute with open arms, and he gives them all a rousing speech as they gather in the mansion.\\n\\nIs the Professor turning them into an *army?*\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxk7dz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559862102.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559874781.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOur story begins five years after the events of our last movie. In the time since Jean Grey and her fellow X-Men escaped from a US government base, battled the Sentinels, and survived a confrontation with the Mutant terrorist Magneto, America has slowly become a hotbed of political unrest. As the debate over Mutant rights rages on, young Mutants are still regularly arrested and detained without trial when their powers manifest, Mutant rights protests regularly erupt into riots in major cities, and lurid stories about wanted Mutant fugitives regularly make the evening news. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAmid this tense backdrop, the terrorist Magneto launches attacks on police stations and military bases without warning, always leaving a trail of dead bodies in his wake. But in his stately Westchester mansion, political activist Professor Charles Xavier does his best to weather the storm as he peacefully fights for his people\\u0026#39;s freedom while training his Mutant pupils to use their powers for good. But as the years wear on, the teenage X-Men\\u2014now young adults\\u2014face plenty of changes in their private lives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, young \\u003Cstrong\\u003EWarren Worthington\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EAngel\\u003C/strong\\u003E\\u0026quot;) chooses to leave the Xavier Institute to care for his terminally ill father. Then \\u003Cstrong\\u003EHank McCoy\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EBeast\\u003C/strong\\u003E\\u0026quot;) chooses to leave to pursue his doctoral studies, planning to devote his life to science. Finally, \\u003Cstrong\\u003EBobby Drake\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EIceman\\u003C/strong\\u003E\\u0026quot;), who just wants a normal life, decides to settle down with his girlfriend \\u003Cstrong\\u003ELorna\\u003C/strong\\u003E. Only \\u003Cstrong\\u003EScott Summers\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003ECyclops\\u003C/strong\\u003E\\u0026quot;) can\\u0026#39;t envision a life outside of the X-Men; ever since losing his family in a mysterious plane crash at the age of 10, the Xavier Institute has been Scott\\u0026#39;s only home, and the X-Men are the only family that he has left. And as his relationship with \\u003Cstrong\\u003EJean Grey\\u003C/strong\\u003E develops into a passionate love affair, Jean is torn between her devotion to Scott and her desire to move forward with her life; though she longs to conceal her powerful psychic abilities and live as an ordinary human, she knows that Scott could never leave the Institute, and she feels compelled to stay by his side. This leaves Scott and Jean as the last remaining members of the original X-Men. But that may change soon.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Professor Xavier turns his eyes to the world at large, it soon becomes clear that the struggle for Mutant rights is no longer solely an American problem; all over the world, innocent Mutants are being arrested and detained by paranoid government forces, and some are choosing to fight back. Over time, rumors spread of an underground network of Mutant rebels, who supposedly work to shelter and protect fugitive Mutants. Some call them terrorists, and others call them freedom fighters\\u2014but Professor Xavier sees them as potential new recruits.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn a quiet day in Moscow, Russia, a pair of uniformed FSB agents knock on the door of a secluded apartment, flanked by a squad of armed soldiers. When a young blonde woman answer the door, she stares defiantly at the agents.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;There\\u0026#39;s no use playing the fool, Ms. Rasputin,\\u0026quot;\\u003C/em\\u003E the lead agent says. \\u003Cem\\u003E\\u0026quot;We know that you\\u0026#39;re sheltering a Mutant here. And you know the penalty for refusing to hand him over.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe woman\\u2014\\u003Cstrong\\u003EIlyana Rasputin\\u003C/strong\\u003E\\u2014stares back at them, maintaining her cold composure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I would never give my brother to mongrels like you,\\u0026quot;\\u003C/em\\u003E she hisses. \\u003Cem\\u003E\\u0026quot;He\\u0026#39;s a Mutant, but he\\u0026#39;s still my brother.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA tall, dark-haired man appears behind Ilyana and places a comforting hand upon her shoulder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;It\\u0026#39;s alright, Ilyana,\\u0026quot;\\u003C/em\\u003E \\u003Cstrong\\u003EPiotr Rasputin\\u003C/strong\\u003E says. \\u003Cem\\u003E\\u0026quot;I\\u0026#39;ll go quietly. But always remember: your quarrel is with me, and me alone. My family is not to be harmed.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith that, the agents cuff Piotr\\u0026#39;s wrists, and the soldiers escort him from the building at gunpoint. Standing at the window of her apartment with tear-streaked eyes, Ilyana can only watch helplessly as her beloved brother is marched into an armored van, softly whispering \\u003Cem\\u003E\\u0026quot;Goodbye\\u0026quot;\\u003C/em\\u003E as they close the doors. But unbeknownst to her, he\\u0026#39;s being watched from afar...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt turns out that three members of the mysterious \\u003Cstrong\\u003EMutant Freedom Network\\u003C/strong\\u003E have come to Moscow, and they know that a Mutant is about to be imprisoned by government forces. And this time, they\\u0026#39;ve sworn to do something about it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe meet three of them:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESean Cassidy\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003EBanshee\\u003C/strong\\u003E\\u0026quot;), a grizzled ex-cop from Dublin who was thrown out of Interpol after he was outed as a Mutant. He possesses a powerful sonic scream that\\u0026#39;s strong enough to shatter glass, allowing him to fly for limited distances.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EOroro Munroe\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003EStorm\\u003C/strong\\u003E\\u0026quot;), a young Kenyan-born woman who spent years as a petty thief on the streets of Nairobi, but became accepted as a priestess by a group of Bantu farmers, who realized that she possessed a supernatural ability to control the weather.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EKurt Wagner\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003ENightcrawler\\u003C/strong\\u003E\\u0026quot;), a fun-loving young German man of Romani heritage, who grew up as an acrobatic performer in a traveling circus. Possessing the power to vanish and teleport in a puff of smoke, his Mutant abilities give him a bizarre demonic appearance; his body is covered with blue fur, and he has fangs and a prehensile tail.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAs Banshee, Storm and Nightcrawler watch the armored van pull into a convoy, a squad of black helicopters appears in the sky, watching the FSB agents from above as they drive Piotr away. At Banshee\\u0026#39;s command, they bust into action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, Nightcrawler uses his teleporting abilities to jump into the front seat of the armored van, where he kicks the driver into the street and takes the wheel. As he hijacks the truck and drives away with Piotr in the back, Storm lashes out with a bolt of lightning and fries the other vans in the convoy before they can drive off after him. Moments later, Banshee tears through the sky and brings down a helicopter with his sonic scream.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who the hell are you people?\\u0026quot;\\u003C/em\\u003E Piotr demands. \\u003Cem\\u003E\\u0026quot;And where are you taking me?!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Relax, mein freund,\\u0026quot;\\u003C/em\\u003E Nightcrawler says. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;re the good guys! And we\\u0026#39;re taking you where they can\\u0026#39;t hurt you. After that, you can go where you wish.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENightcrawler high-tails it to the highway with Storm riding on top of the stolen van, and Banshee follows them from the sky. As the FSB calls for backup, a frantic car chase ensues, and Ororo uses her powers to hold off a squad of pursuing cars while Banshee fights off the helicopters from above. At first, all seems well\\u2014but the escape takes a bad turn when Banshee catches a stray bullet and falls to his death. Pushing their powers to their limit, Nightcrawler and Storm fight for their lives against the pursuing soldiers. After breaking free of his cuffs, Piotr helps them out as he reveals his own Mutant ability: he can transform his body into near-indestructible steel, giving him superhuman strength and invulnerability.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter Piotr uses his powers to punch his way through a police barricade and clear a path for the others, they all drive off into the distance in the stolen van. But before long, they receive a radio message from a familiar voice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Stay calm,\\u0026quot;\\u003C/em\\u003E Scott Summers says. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;re right on top of you!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA shadow appears on the highway as the frantic chase continues. It\\u0026#39;s \\u003Cstrong\\u003Ethe Blackbird\\u003C/strong\\u003E! Scott is sitting in the cockpit, and Jean is next to him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;ve gotta jump!\\u0026quot;\\u003C/em\\u003E Jean calls. \\u003Cem\\u003E\\u0026quot;Don\\u0026#39;t worry, we\\u0026#39;ll catch you!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the cockpit of the Blackbird, Jean uses her telekinesis to take control of the van\\u0026#39;s steering wheel, allowing the trio to clamber onto the roof of the van as it speeds along. As the van drives off the side of a cliff\\u2014where the Blackbird is waiting to pick them up\\u2014they just barely manage to jump into the cargo hold before the van falls and crashes on the ground below. Safe inside the jet, Storm, Nightcrawler and Piotr meet Scott and Jean personally.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who are you people, exactly?\\u0026quot;\\u003C/em\\u003E Storm asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;re the X-Men,\\u0026quot;\\u003C/em\\u003E Scott says proudly. \\u003Cem\\u003E\\u0026quot;And if you want to join us...then so are you.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt turns out that Professor Xavier has been in touch with the three Mutant freedom fighters for weeks, and offered them a place in the Xavier Institute weeks ago. They accepted, but refused to leave for America before finishing one last rescue. Though the group is saddened by the loss of Banshee, Piotr agrees to join the X-Men along with Storm and Nightcrawler, believing that he has a duty to pay them back for rescuing him. Scott and Jean welcome him to the group with open arms, dubbing him \\u0026quot;\\u003Cstrong\\u003EColossus\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut the X-Men\\u0026#39;s elation is suddenly cut short when the Blackbird mysteriously stops in mid-air. Alarm sirens blare as some mysterious force grips the jet from the outside, and its navigation computers instantly go haywire. As they rush to the cockpit to figure out what\\u0026#39;s going on, their blood runs cold as they look out the window and see a familiar figure: \\u003Cstrong\\u003E\\u003Cem\\u003EMagneto\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E!\\u003C/em\\u003E Showing off the full extent of his powers, he effortlessly hovers in mid-air in a bubble of magnetic energy; with one hand outstretched, he holds the Blackbird in the grip of a magnetic field.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems that Magneto has followed Scott and Jean to Russia, eager for a rematch with them. In the five years since Magneto murdered the scientist \\u003Cstrong\\u003EBolivar Trask\\u003C/strong\\u003E, he has had numerous confrontations with the X-Men\\u2014and each time, the X-Men have narrowly escaped with their lives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThinking fast, Scott and Jean clamber onto the roof of the Blackbird and engage Magneto, but he taunts them as he deflects Scott\\u0026#39;s optic blasts and shrugs off Jean\\u0026#39;s telepathic attacks\\u2014but the three new X-Men spring into action to aid them. Though Magneto easily subdues Colossus with his magnetic powers, Storm manages to weaken his shield by summoning a massive lightning storm, and Nightcrawler uses his teleportation abilities to land a crushing kick to his midsection. Taking advantage of the distraction, Scott blasts Magneto with his optic blasts, weakening him enough to free the Blackbird from his magnetic field. Seizing their window of opportunity, the X-Men pile into the jet and strap themselves in, and they make their escape.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in Westchester, Professor Xavier happily welcomes his three new recruits to the Xavier Institute with open arms, and he gives them all a rousing speech as they gather in the mansion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs the Professor turning them into an \\u003Cem\\u003Earmy?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxk7dz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxk7dz/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxk7dz/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559845981.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_5ijtn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 12, \"hide_score\": false, \"name\": \"t3_bxfqen\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ZMjeoipMxQ3bRu7Gbso5AMjI0QnyRUvbys50zzeSRHg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559850058.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?auto=webp\\u0026s=6d88313f2c01fb65fd4dfac7f372dd58761154d8\", \"width\": 1985, \"height\": 184}, \"resolutions\": [{\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ef14c58b5359e5cee2e44484a1445c24cbcb6c74\", \"width\": 108, \"height\": 10}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5c10e0ab3c5c459950fd8b2b53afc9550ada288e\", \"width\": 216, \"height\": 20}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=04da7a02871577f68e7b8f226ace537039186d1f\", \"width\": 320, \"height\": 29}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5798b9ac875f896439e407b4be792746ac5af021\", \"width\": 640, \"height\": 59}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2a6b88d3275179016bbc16a31c84fab844a21611\", \"width\": 960, \"height\": 88}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ac41548df3abfb57153e76f1acf77aad1ea06881\", \"width\": 1080, \"height\": 100}], \"variants\": {}, \"id\": \"37BQwgGDDek1wnbE0TCNlewSvltCJFOhbRB1kfNUMhA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfqen\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"killroy200\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxfqen/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/ol16qrsw3q231.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1559821258.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_j843ij2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"David baldeon\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bxetqt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/m3rUKYfsSdlyGoaGh5wvUvrM1c4STiyplCNdlfpQRhk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559843173.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"pbs.twimg.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?auto=webp\\u0026s=43c066330a06d2d8d5bca251a8a4811882c33423\", \"width\": 1840, \"height\": 2048}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0bdafd5b0f83d3ec2b33853ea6562f883e0397c2\", \"width\": 108, \"height\": 120}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1f2a430d8f9d494b3d60dab91709ae43cece167f\", \"width\": 216, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=0fe60b0fa60898cc650a2d809feb39a7d2ce2591\", \"width\": 320, \"height\": 356}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=77a93a8b1083aa79c8639a40bb83dd9872e1788e\", \"width\": 640, \"height\": 712}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=03aa15e18e660b2763ea2a3b471f9d19e083dd9b\", \"width\": 960, \"height\": 1068}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c7767c724137a83b643d47906adb4f9165dce0b0\", \"width\": 1080, \"height\": 1202}], \"variants\": {}, \"id\": \"5Tr0M7lNan8uCLe6JLeIcnoU05eiHN8ApgBANUjkHug\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxetqt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mothman232\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxetqt/david_baldeon/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://pbs.twimg.com/media/D7lJtTCXkAI0O3E.jpg:large\", \"subreddit_subscribers\": 703, \"created_utc\": 1559814373.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I CAN GO 15 SECONDS WITH ANYTHING. Howard looks like he is going to make doodie in his pants when GB hijacks his mic. Would GB walk away from this encounter if he bullied Howard in 2019? T O P L E S S\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bwsi3l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwsi3l\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Vkisu9g-VZo3thxeoTEh7_sHe6pgucV1XMkDjc08RY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559703482.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?auto=webp\\u0026s=3e2a10eb30c9a5b77b30a241735e3e8b8e1cfccc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a22b052dedffebf783ba26dae6003cd3c55a250\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcf039e2e79b58782dfd536386b50fa8b338f1d2\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=77375886fab998dde88f536da5c4503437f4c152\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"bdEz7hRKzTsVVn3Vyr7qozX0OUrbARsbBsUoqJKdw7M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwsi3l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\\u0026t=2s\", \"subreddit_subscribers\": 703, \"created_utc\": 1559674682.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_11r26z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Image test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bwl0fm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/kksd_8fx216qsy4gL0wzul47ods9QoCbZqBfN9_5nP8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559654591.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?auto=webp\\u0026s=ec79ffaf9e22e32c6e41f6946737e14d55a3b940\", \"width\": 2896, \"height\": 2896}, \"resolutions\": [{\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c3c8dfece59ca2a351d51df624d7beaabb02863c\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1b1a7dac32dd046927c2c8fc65bb58d81ac0c932\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3e8cd8af164b2b78530a4168875c3ab407422677\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=bf806ec58298e63494dd4d00966bde0c369f6c7a\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e8fc39dbf7e1348397f5a9836f13473aeff79ad1\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=86615f13d9764a381a194c798b715a78a43db6b6\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"xjLAgIF4juxLsEPnfXluO5CqMIQxaAYzHRiXsdAzPMg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwl0fm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Syclowave\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwl0fm/image_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/8mrszs4py9231.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559625791.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[France](#bar-10-blue) , via u/BuzzBuzz01\\n\\n#[](#icon-info-big) About\\n\\n - **Nickname(s)**: Les Bleues\\n\\n - **Women's World Cup Appearances**: 4\\n\\n - **Best Finish**: 4th (2001)\\n\\n - **FIFA Ranking**: 4 (3rd in Europe)\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nFrance has been building it's women's football for years on years on years. With parallels to men's team (which are addressed in the P.O.D) combined with being the hosts, is expected to at the very least contest in the final. After building up from the ground up year on year on year, this seems the exact right for them to be hosting the World Cup. They're excellent in every department, with strong centrebacks who can both play out the back, proven and experienced goal scorers up top, technical midfielders, and creative wingers. France has 12 wins in the last 13 matches since the SheBelievesCup (including 3-1 against Brazil, the USA and Japan and 4-0 against Denmark + one defeat against Germany 0-1). Is this the year that France finally puts it all together to become the first ever country to hold both the men's and women's World Cups?\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager:** Corinne Diacre (France)\\n\\n**Goalkeepers:** Sarah BOUHADDI (Olympique Lyonnais), Sol\\u00e8ne DURAND (EA Guingamp), Pauline PEYRAUD-MAGNIN (Arsenal)\\n\\n**Defenders:** Julie DEBEVER (EA Guingamp), Sakina KARCHAOUI (Montpellier HSC), Amel MAJRI (Olympique Lyonnais), Griedge MBOCK (Olympique Lyonnais), \\u00c8ve P\\u00c9RISSET (Paris Saint-Germain), Wendie RENARD (Olympique Lyonnais), Marion TORRENT (Montpellier HSC), A\\u00efssatou TOUNKARA (Atl\\u00e9tico Madrid)\\n\\n**Midfielders:** Charlotte BILBAULT (Paris FC), \\u00c9lise BUSSAGLIA (Dijon FCO), Ma\\u00e9va CLEMARON (FC Fleury 91), Grace GEYORO (Paris Saint-Germain), Amandine HENRY (Olympique Lyonnais), Ga\\u00ebtane THINEY (Paris FC)\\n\\n**Forwards:** Viviane ASSEYI (Girondins de Bordeaux), Delphine CASCARINO (Olympique Lyonnais), Kadidiatou DIANI (Paris Saint-Germain), Val\\u00e9rie GAUVIN (Montpellier HSC), Emelyne LAURENT (EA Guingamp), Eug\\u00e9nie LE SOMMER (Olympique Lyonnais)\\n\\n#[](#icon-whistle-big) [Potential Starting 11](https://imgur.com/a/hMH9Gy8)\\n\\n Bouhaddi\\n\\n Torrent Renard Mbock Bathy Majri\\n\\n Bussaglia Henry (C)\\n\\n Cascarino Thiney Diani\\n\\n Le Sommer\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n[Eug\\u00e9nie Le Sommer (ST):](https://cdn-media.rtl.fr/cache/YFtm3Fv-bsG7aM6_D8KqTw/880v587-0/online/image/2018/1228/7796070733_l-attaquante-francaise-eugenie-le-sommer-le-1er-septembre-2018.jpg)\\n\\nLe Sommer usually plays up top as the out and out striker and is without a doubt the star attacking player. With 74 goals in 159 caps, Le Sommer is only 7 goals off of being the country's all time top goal scorer. Le Sommer is not simply just some poacher and can score in a multitude of ways, whether with her fox-in-the-box instincts (either her feet or her head), ability to get past defenders with her adept dribbling, or just absolutely lacing one from outside the box, Le Sommer has it all.\\n\\n[Here is a short highlight video of hers](https://www.youtube.com/watch?v=CCC4eK4aEdA)\\n\\n\\n[Amandine Henry (DM)](https://c.static-nike.com/a/images/w_960,c_limit,f_auto/x7ycyrbgveskryrkkpyy/athlete-stories-amandine-henry.jpg)\\n\\nThe 29 year old captain has 83 appearances and 11 goals for the national team. With the ability to launch a belter outside the box, Henry is the calm metronome in midfield for France. If you were to compare her to a player it would have to be a prime Sergio Busquets. A very one-touch oriented style of play, Henry uses her calmness and series of fakes and feints to swivel and alleviate pressure with ease. And if she does somehow manage to lose the ball, she's quick and strong to recover and win it back.\\n\\n[Here is a featurette on Henry done by France's official YouTube channel](https://www.youtube.com/watch?v=YMUzaTan7mM)\\n\\n[Here is a Henry highlight video in France's 3-1 win over the USA in January](https://www.youtube.com/watch?v=ry4Ed25fCu8)\\n\\nQuite literally the heart of the midfielder and always in the right spot, Henry will play a key role for France. If they do happen to match up against the USA in the quarterfinal if all goes accepted, her matchup against Julie Ertz should definitely be one to watch out for.\\n\\n\\n[Wendie Renard (CB)](https://i.pinimg.com/originals/51/75/7f/51757f3bb7e30e196793fcf928a1e884.jpg)\\n\\nThe former captain, Renard is without a doubt one of the best defenders in the world. At 6'2\\\" (188 cm), Renard is one of the biggest and tallest players at the tournament, which makes a particular threat on set pieces in defence and attack, seen with her 12 goals in 26 matches across the league and Champions League with the oh so dominant Lyon. Though don't be fooled, Renard is not just a French Gareth McAuley, she also provides an excellent Plan B with her pinpoint long balls from the back. If a team happens to be pressuring France extensively, just get to Renard and she'll knock one into the channels or over the top with Bonnucci/van Dijk levels of precision.\\n\\n#[](#icon-discuss-big) Points of Discussion\\n\\n - **The Seeming Parallels to the Men's Team**\\nLet's look back at the discussion points surrounding the men's team. \\nManaged by a former player, Didier Deschamps for the men's and Corinne Diacre for the women, the latter of which became the first woman to manage a men's professional football match, when she took charge of Clermont Foot.\\nAbsolutely loaded with talent. experience plus up and coming stars\\nLeft some talent at home to try and fit together players who fit the system, in the case of the men's it was Lacazette and with the women's it's with Division 1 F\\u00e9minine's top goalscorer Marie-Antoinette Katoto, who had 22 goals in 22 games at only 20 years old\\nHaven't made nearly as far as they should have in previous tournaments and have lots of pressure to turn that around this time around, with the women having more pressure being the hosts\\n\\n\\n - **Lyon Dominant**\\nIf they trot out with the expected XI, seven of their starting XI are a part of the Champions League winning Lyon, who are blessed with stars from across the planet. Since Lyon put money into women's football quite early on, they've seemed to reap the benefits immensely. Lyon have won 13 straight league titles and 4 straight Champions League's. They scored 89 goals and allowed only 6 in 22 matches this season, going 20-2-0 and 62 points, and PSG were still hot on their tail with 57. With a core of players playing with one another week in week out, this is a definite positive heading into the tournament\\n\\n\\n- **Their Style of Play**\\nFrance are no one-dimensional team, being able to attack in a number of ways, with a particular emphasis on attacking the wings and overloading one side to make space in the middle to get to their goal scorers. The left overload is one to be particularly terrified of, as Henry drifts out to the channels to support an overlapping Majri, who is one of the most technically gifted defenders at the tournament, coupled with Diani and Thiney, a combination of very high skilled players that teams will be forced to double up with, leaving the deadly Le Sommer room to manuever in and around the box\\n\\nOther players to look out for include Amel Majri (LB) , a converted midfielder turned fullback, and with her technical ability making her one of if not the best in her position, Delphine Cascarino (RW) a typical young tricky winger who loves a little stepover or two, and the experienced 33 year old Ga\\u00ebtane Thiney (AM), who has 155 caps and 58 goals for Les Blues\\n\\n---\\n\\n[South Korea](#bar-10-red) , via u/loser0001\\n\\n#[](#icon-info-big) About\\n\\n- **Nickname(s)**: Taegeuk Ladies\\n\\n- **Appearances**: 2\\n\\n- **Best Finish**: Round of 16 (2015)\\n\\n- **FIFA Ranking**: 14\\n\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nSouth Korea women's team played their first international in 1990, when they were unsurprisingly hammered by Japan in what remains their heaviest-ever defeat. Thankfully things have improved since then. In more recent history, they finished runners-up in their group at the 2015 World Cup, behind Brazil but ahead of Costa Rica and Spain; in the Round of 16 they were knocked out by future 2019 opponents France.\\n\\n**Route to the 2019 World Cup**\\n\\nTL;DR: North South Korea best Korea\\n\\nI'm sure there are a few stories in this World Cup of teams qualifying against the odds, but South Korea's may be up there, amid unusual circumstances.\\n\\nFor background, the Asian Football Confederation (AFC) has 5 spots for the World Cup. Qualification is done via the AFC's regional tournament - the Asian Cup - held every four years, in the year before the World Cup. That makes qualification for the Asian Cup doubly important - miss out on qualifying for the Asian Cup, and you absolutely won't be going to the World Cup.\\n\\nIn the 2017 Asian Cup qualifying, South Korea were the top seeds ahead of the group draw (Japan, Australia, and China were the 1-2-3 of the previous Asian Cup and so did not participate in qualifying). Rather than the standard home and away fixtures, all group games are played in a selected 'host nation' with just 2 or 3 days rest in between games. Only the group winner qualifies for the Asian Cup proper.\\n\\nSouth Korea were drawn in a group with North Korea, then ranked #10 in the world, 7 places above them in the FIFA rankings. To make matters worse, North Korea were the selected host nation and would be playing all games on home soil. Unlucky to say the least, but how did this happen if South Korea were the top seeds?\\nFollowing the North Korean doping scandal in 2011, North Korea were banned from participating in the 2015 World Cup, and the 2014 Asian Cup (and qualifying). Because they hadn't taken part in the previous Asian Cup at all, they had the lowest seeding, being drawn from pot 5.\\n\\nBoth North and South Korea won their early group games comfortably. For the probable group-deciding match against each other, I could find exactly two highlights videos, corresponding to the respective North and South Korean broadcasts of the match. The South Korean source has an interesting camera angle but I recommend watching just the start to see the atmosphere created by a few tens of thousand of well-co-ordinated North Korean fans (attendance was reported to be 42,500). The North Korean source is in some ways much better - it has replays, alternate angles, and commentary - but the video quality makes it look like it's from a broadcast in the 90's. If you want to watch this one, the goals are at 29:00 and 51:20. There's also a penalty given and saved starting from 6:00. The match finished 1-1.\\n\\nThose were the only goals that either Korea would concede, and in the end it was South Korea that topped the group with a goal difference of +20 to North Korea's +17.\\n\\nIn the 2018 Asian Cup South Korea were once again slightly unlucky with their group draw, finding themselves with both Australia and Japan. They drew against both and finished level on points with both, but found themselves in 3rd place based on goal difference and goals scored. Thankfully this was enough to get them to a play-off against Phillipines for that last World Cup spot, whom they dispatched 5-0.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\nThe majority of the national team play their club football in the domestic WK League, with two playing in England's WSL and one in Japan. Incheon Red Angels are the dominant force in Korea, having won the past 6 league titles and are on course to make that 7 this season.\\n\\nThe team has a handful of players who were part of the U-17 World Cup winning squad from 2010.\\n\\n**Manager**: Yoon Deok-yeo (South Korea)\\n\\n**Goalkeepers:** Kang Ga-ae (Gumi), Jung Bo-ram (Hwacheon), \\tKim Min-jeong (Incheon)\\n\\n**Defenders:** Kim Hye-ri (Incheon), Shin Dam-yeong (Incheon), Lim Seon-joo (Incheon), Lee Eun-mi (Suwon), Kim Do-yeon (Incheon), Jang Sel-gi (Incheon), Jeong Yeong-a (Gyeonju), Hwang Bo-ram (Hwacheon)\\n\\n**Midfielders:** Lee Young-ju (Incheon), Kang Yu-mi (Hwacheon), Lee So-dam (Incheon), Moon Mi-ra (Suwon), Cho So-hyun (West Ham), Lee Min-a (INAC Kobe), Kang Chae-rim (Incheon)\\n\\n**Forwards:** Jung Seol-bin (Incheon), Ji So-yun (Chelsea), Lee Geum-min (Gyeonju), Yeo Min-ji (Suwon), Son Hwa-yeon (Changnyeon)\\n\\n#[](#icon-whistle-big) [Potential Starting 11](https://i.imgur.com/ejiZpWV.jpg)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**[Ji So-yun](http://photo.hankooki.com/newsphoto/v001/2019/04/09/holic20190409183756_P_02_C_1.jpg)**: Korean prodigy - youngest senior national team debut and goal, both at the age of 15, and highest ever goal scorer (54 in 116 appearances). Unusual in that she did not start her senior club career in Korea, being signed early by INAC Kobe Leonessa. In her 3 years in Japan she won three League titles, and just before leaving for Chelsea she managed to score against them in the final of the International Women's Club Championship (Japan's attempt to get a Club World Cup going). Since moving to England with Chelsea, she has added another few titles to the collection, and is a regular nominee and occasional winner for PFA player of the year. Has excellent dead ball skills and is just generally a class above. Is hugely important to the team - more so than Son Heung-min is to the men's team.\\n\\n**[Cho So-hyun](https://img.sbs.co.kr/newimg/news/20181229/201266238_1280.jpg)**: Korea's captain and most capped player ever with 121 appearances. Spent the majority of her career with Incheon in the WK League, but in the past few years has played in Japan, Norway, and signed for West Ham at the start of 2019. Usually plays as DM between the defensive and midfield lines. The coach has sometimes started her in a CB position for extra reliability, but midfield is her natural position.\\n\\n---\\n\\n\\n#[](#icon-discuss-big) Points of Discussion\\n\\n - **Norway**\\n\\nThe main point of discussion is trying to work out how good this South Korean team really is. They didn't actually lose a single game during qualifying, drawing with teams who on paper were much better - North Korea, Australia, and Japan. This has seen their FIFA ranking steadily rise, and I'm not sure if it has settled on its 'true' value yet. Progressing to the group stage again is the target for this team, and to do that, picking up points against Norway is probably required. To get a win against Norway and take the 2nd spot (barring any other upsets in the group) would be enough to label this World Cup a success.\\n\\nThe focus on Norway is evident in their pre-tournament friendlies, as they arranged two matches against Iceland and two against Sweden under the assumption that the Northern European teams will have a similar physicality to their game. In the first game against Iceland, Korea were dominant, and yet lost 3-2 as Iceland scored with their only 3 attempts on goal (to Korea's 22 shots), leading the coach to rather publicly bemoan the state of his goalkeepers and defence. At least in the goalkeeper department, his hand has been forced as veteran keeper Kim Jung-mi suffered an Achilles tendon injury in training.\\n\\n - **Future retirements?**\\n\\n\\nThis is now just my personal speculation, but the two current stars Ji So-yun and Cho So-hyun are now 28 and 30 respectively, and while they may still play in another World Cup, they also may not. With these two being so important to the team, could this be the peak of this generation of players? A lot of the current core of players are hovering around 26/27 years old, standout fullback Jang Sel-gi (KFA player of the year 2018) is 25. If South Korea won't be fielding a team of 30-year-olds in 4 years time, the team will look very different, and it's not clear who the young rising stars are now.\\n\\n---\\n\\n[Norway](#bar-10-red) , via u/Crusarius28\\n\\n#[](#icon-info-big) About\\n\\n- **Appearances**: 7 (All Editions)\\n\\n- **Best Finish**: Champions (1995)\\n\\n- **FIFA Ranking**: 12\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nFormer World and Olympic Champions Norway have fallen from power in the past decade. The team comes to France with big expectations after having qualified for another World Cup in dramatic fashion. The Norwegians left it all to the last match-day and had to earn a hard fought victory over EURO Champions Netherlands to earn automatic qualification.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager**: Martin Sjogren (Sweden)\\n\\n**Goalkeepers:** Ingrid Hjelmseth (Stabaek), Cecilie Fiskerstrand (LSK), Oda Bogstad (Arna-Bjomar)\\n\\n**Defenders:** Ingrid Wold (LSK), Maria Thorisdottir (Chelsea), Stine Hovland (Sandviken), Maren Mjelde (Chelsea), Cecilie Kvamme (Sandviken)\\n\\n**Midfielders:** Synne Hansen (LSK), Vilde Boe Risa (Kopparbergs), Caroline Hansen (Wolfsburg/Barca), Ingrid Engen (LSK), Guro Reiten (LSK), Kristine Minde (Wolfsburg), Frida Maanum (Linkoping), Karina Saevik (Kolbotn)\\n\\n**Forwards:** Elise Thorsnes (LSK), Isabell Herlovsen (Kotbotn), Lisa-Marie Utland (Rosengard), Therese Asland (LSK), amalie Eikeland (Sandviken), Emilie Haavi (LSK), Emilie Nautnes (Arna-Bjonar)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**Caroline Graham Hansen:** Completing a move to Barcelona just weeks before appearing in her first World Cup, Hansen will be Noway's most important player. The 24 yr old is the full midfield package that can control games, deliver pin point passes and score whenever needed. Ruled out of the 2015 World Cup due to a knee injury, she's back and stronger than ever. Forming a team around this future superstar was one of the headaches Coach Sjogren had this year, but it's a good headache to have.\\n\\n**Isabell Herlovsen:** 30 yr old Herlovsen is a constant goal threat. The brunt of all goals scored will be on Herlovsen's shoulders this summer. Her uncanny sense to be at the right place at the right time has paid dividends, including scoring the winner in the decider against the Netherlands. Her finishing skills will be a major key for Norway's progression.\\n\\n---\\n\\n#[](#icon-discuss) Points of Discussion\\n\\n**Turning Experience into Results**\\n\\nNorway are no strangers to winning and a realistic goal this year will be to get a medal. High expectations come from a storied past but following in the footsteps of legends proves no easy task. In terms of quality, Norway aren't able to best the top teams, but are certainly best of the rest and managing to utilize all their experience and hunger to put together performances early on versus Nigeria and France in the toughest qualifying group will be important to building momentum for Norway.\\n\\n**Defense**\\n\\nDefense wins championships, and true to the old adage, Norway's defense will be key. Chelsea duo Mjelde and Thorisd\\u00f3ttir are important in the back but Thorisdottir has missed half the season due to injury and may not be fully fit. Mjelde's responsibilities will extend to organizing the midfield during transitions, even more importantly as she herself likes to get forward and score goals. She's scored 19 goals for Norway from the fullback position thus far.\\n\\n**Ada Hedgerberg**\\n\\nThe world's best female player Ada Hedgerberg has refused to play for Norway since 2017 (think Messi refusing to play for Argentina), and the current team has done well to step up in her absence. While Hedgerberg has taken headlines this summer due to her stance on the treatment of women's footballers in Norway, the team has to continue doing what they've been doing for the past two years and not let any of the new found media attention affect their performances.\\n\\n---\\n[Nigeria](#bar-10-green) , via u/Crusarius28\\n\\n#[](#icon-info-big) About\\n\\n- **Appearances**: 7 (All Editions)\\n\\n- **Best Finish**: Quarter Finals (1999)\\n\\n- **FIFA Ranking**: 38\\n\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nNigeria have dominated Africa with 9 out of 11 Women's African Cup of Nations. But turning continental results into intercontinental ones proves tough, they haven't progressed past the group stages since 1999. Their search for more will be toughened by the hardest group in the World Cup with games versus France, Nigeria and Norway proving a major hurdle.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager**: Thoms Dennerby (Sweden)\\n\\n**Goalkeepers:** Tochukwu Oluehi (Rivers Angels), Chiamaka Nnadozie (Rivers Angels), Alaba Jonathan (Bayelsa Queens)\\n\\n**Defenders:** Osinachi Ohale (Vaxjo), Ngozi Ebere (Arna-Bjomar), Onome Ebi (Henan Huishang), Faith Michael (Pitea), Chidinma Okeke (Robo Queens)\\n\\n**Midfielders:** Amarachi Okoronkwo (Nasarawa Amazons), Evelyn Nwabuoku (Rivers Angels), Rita Chikwelu (Kristianstads), Ngozi Okobi-Okeoghene (Eskilstuna Utd), Halimatu Ayinde (Eskilstuna Utd), oganna Chukwudi (Djurgarden)\\n\\n**Forwards:** Anam Imo (Rosengard), Asisat Oshoala (Barcelona), Desire oparanozie (Guingamp), Chinaza Uchendu (Braga), Uchenna Kanu (Southeastern Fire), Rasheedat Ajibade (Avaldsnes), Francisca Ordega (Shangai), Chinwendu Ihezuo (Henan Huishang), Alice Ogebe (Rivers Angels)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**Asisat Oshoala:** \\u201cSuperzee\\u201d has added Women's African Footballer of the Year award to her title. Three time Women's African Footballer of the year in fact. Her clinical ability in front of goal, raw pace and power put her on the map back in 2014 and now she's leading the line at Barcelona and helping them to their first ever Women's Champions League Final in history.\\n\\n**Onome Ebi:** Playing in China hasn't hampered the 36yr old Nigerian. Her game reading and anticipation makes her a striker's nightmare. Add that to her supreme strength and you have a player that can shut down all but the fastest forwards in the game. Ebi will be representing the Super Eagles for the 5th time this summer.\\n\\n---\\n\\n#[](#icon-discuss) Points of Discussion\\n\\n**Preparation for Tournaments**\\n\\nThe Ladies of Nigeria have been underfunded and their tournament preparations have always been the absolute minimum if non existent. They went 2 full years without playing a game from May 2016 to April 2018, months before the next major tournament. They've fixed that issue this time around and have participated in several tournaments, friendlies and training camps that hopefully give them the push they need to defeat the group stage this time around.\\n\\n**Set Pieces and Defensive Gaps**\\n\\nThe Nigerians play a high defensive line and leave gaps but yet they only conceded 1 goal the entire AFCON tournament in 2018. Plugging those holes are important but recent friendlies and showings at the Algarve Cup exposed a weakness to set pieces as well. Ebi is 36 yrs old and even though her mind is quick, her feet are not and it will be the responsibility of the midfield to plug the gaps and not allow teams to get the ball to their forwards looking to make run behind.\\n\\n**Quick Transitions**\\n\\nThe midfield not only has to cover for gaps but quickly move the ball forward during transitions to the forwards. Nigeria's strengths and speed comes from their star strikers and they'll get the ball at every opportunity. Their top heavy system works when the ball is constantly up the pitch to the final third where their creative offense can shine.\", \"author_fullname\": \"t2_pasw0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"2019 Women's World Cup Group A Profile: France, South Korea, Norway, Nigeria\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwkei5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559621947.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559650215.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-blue\\\"\\u003EFrance\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/BuzzBuzz01\\\"\\u003Eu/BuzzBuzz01\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ENickname(s)\\u003C/strong\\u003E: Les Bleues\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWomen\\u0026#39;s World Cup Appearances\\u003C/strong\\u003E: 4\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: 4th (2001)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 4 (3rd in Europe)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFrance has been building it\\u0026#39;s women\\u0026#39;s football for years on years on years. With parallels to men\\u0026#39;s team (which are addressed in the P.O.D) combined with being the hosts, is expected to at the very least contest in the final. After building up from the ground up year on year on year, this seems the exact right for them to be hosting the World Cup. They\\u0026#39;re excellent in every department, with strong centrebacks who can both play out the back, proven and experienced goal scorers up top, technical midfielders, and creative wingers. France has 12 wins in the last 13 matches since the SheBelievesCup (including 3-1 against Brazil, the USA and Japan and 4-0 against Denmark + one defeat against Germany 0-1). Is this the year that France finally puts it all together to become the first ever country to hold both the men\\u0026#39;s and women\\u0026#39;s World Cups?\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager:\\u003C/strong\\u003E Corinne Diacre (France)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Sarah BOUHADDI (Olympique Lyonnais), Sol\\u00e8ne DURAND (EA Guingamp), Pauline PEYRAUD-MAGNIN (Arsenal)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Julie DEBEVER (EA Guingamp), Sakina KARCHAOUI (Montpellier HSC), Amel MAJRI (Olympique Lyonnais), Griedge MBOCK (Olympique Lyonnais), \\u00c8ve P\\u00c9RISSET (Paris Saint-Germain), Wendie RENARD (Olympique Lyonnais), Marion TORRENT (Montpellier HSC), A\\u00efssatou TOUNKARA (Atl\\u00e9tico Madrid)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Charlotte BILBAULT (Paris FC), \\u00c9lise BUSSAGLIA (Dijon FCO), Ma\\u00e9va CLEMARON (FC Fleury 91), Grace GEYORO (Paris Saint-Germain), Amandine HENRY (Olympique Lyonnais), Ga\\u00ebtane THINEY (Paris FC)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Viviane ASSEYI (Girondins de Bordeaux), Delphine CASCARINO (Olympique Lyonnais), Kadidiatou DIANI (Paris Saint-Germain), Val\\u00e9rie GAUVIN (Montpellier HSC), Emelyne LAURENT (EA Guingamp), Eug\\u00e9nie LE SOMMER (Olympique Lyonnais)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-whistle-big\\\"\\u003E\\u003C/a\\u003E \\u003Ca href=\\\"https://imgur.com/a/hMH9Gy8\\\"\\u003EPotential Starting 11\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Bouhaddi\\n\\n Torrent Renard Mbock Bathy Majri\\n\\n Bussaglia Henry (C)\\n\\n Cascarino Thiney Diani\\n\\n Le Sommer\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cdn-media.rtl.fr/cache/YFtm3Fv-bsG7aM6_D8KqTw/880v587-0/online/image/2018/1228/7796070733_l-attaquante-francaise-eugenie-le-sommer-le-1er-septembre-2018.jpg\\\"\\u003EEug\\u00e9nie Le Sommer (ST):\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELe Sommer usually plays up top as the out and out striker and is without a doubt the star attacking player. With 74 goals in 159 caps, Le Sommer is only 7 goals off of being the country\\u0026#39;s all time top goal scorer. Le Sommer is not simply just some poacher and can score in a multitude of ways, whether with her fox-in-the-box instincts (either her feet or her head), ability to get past defenders with her adept dribbling, or just absolutely lacing one from outside the box, Le Sommer has it all.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=CCC4eK4aEdA\\\"\\u003EHere is a short highlight video of hers\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://c.static-nike.com/a/images/w_960,c_limit,f_auto/x7ycyrbgveskryrkkpyy/athlete-stories-amandine-henry.jpg\\\"\\u003EAmandine Henry (DM)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe 29 year old captain has 83 appearances and 11 goals for the national team. With the ability to launch a belter outside the box, Henry is the calm metronome in midfield for France. If you were to compare her to a player it would have to be a prime Sergio Busquets. A very one-touch oriented style of play, Henry uses her calmness and series of fakes and feints to swivel and alleviate pressure with ease. And if she does somehow manage to lose the ball, she\\u0026#39;s quick and strong to recover and win it back.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=YMUzaTan7mM\\\"\\u003EHere is a featurette on Henry done by France\\u0026#39;s official YouTube channel\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=ry4Ed25fCu8\\\"\\u003EHere is a Henry highlight video in France\\u0026#39;s 3-1 win over the USA in January\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuite literally the heart of the midfielder and always in the right spot, Henry will play a key role for France. If they do happen to match up against the USA in the quarterfinal if all goes accepted, her matchup against Julie Ertz should definitely be one to watch out for.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.pinimg.com/originals/51/75/7f/51757f3bb7e30e196793fcf928a1e884.jpg\\\"\\u003EWendie Renard (CB)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe former captain, Renard is without a doubt one of the best defenders in the world. At 6\\u0026#39;2\\u0026quot; (188 cm), Renard is one of the biggest and tallest players at the tournament, which makes a particular threat on set pieces in defence and attack, seen with her 12 goals in 26 matches across the league and Champions League with the oh so dominant Lyon. Though don\\u0026#39;t be fooled, Renard is not just a French Gareth McAuley, she also provides an excellent Plan B with her pinpoint long balls from the back. If a team happens to be pressuring France extensively, just get to Renard and she\\u0026#39;ll knock one into the channels or over the top with Bonnucci/van Dijk levels of precision.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss-big\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EThe Seeming Parallels to the Men\\u0026#39;s Team\\u003C/strong\\u003E\\nLet\\u0026#39;s look back at the discussion points surrounding the men\\u0026#39;s team. \\nManaged by a former player, Didier Deschamps for the men\\u0026#39;s and Corinne Diacre for the women, the latter of which became the first woman to manage a men\\u0026#39;s professional football match, when she took charge of Clermont Foot.\\nAbsolutely loaded with talent. experience plus up and coming stars\\nLeft some talent at home to try and fit together players who fit the system, in the case of the men\\u0026#39;s it was Lacazette and with the women\\u0026#39;s it\\u0026#39;s with Division 1 F\\u00e9minine\\u0026#39;s top goalscorer Marie-Antoinette Katoto, who had 22 goals in 22 games at only 20 years old\\nHaven\\u0026#39;t made nearly as far as they should have in previous tournaments and have lots of pressure to turn that around this time around, with the women having more pressure being the hosts\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELyon Dominant\\u003C/strong\\u003E\\nIf they trot out with the expected XI, seven of their starting XI are a part of the Champions League winning Lyon, who are blessed with stars from across the planet. Since Lyon put money into women\\u0026#39;s football quite early on, they\\u0026#39;ve seemed to reap the benefits immensely. Lyon have won 13 straight league titles and 4 straight Champions League\\u0026#39;s. They scored 89 goals and allowed only 6 in 22 matches this season, going 20-2-0 and 62 points, and PSG were still hot on their tail with 57. With a core of players playing with one another week in week out, this is a definite positive heading into the tournament\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ETheir Style of Play\\u003C/strong\\u003E\\nFrance are no one-dimensional team, being able to attack in a number of ways, with a particular emphasis on attacking the wings and overloading one side to make space in the middle to get to their goal scorers. The left overload is one to be particularly terrified of, as Henry drifts out to the channels to support an overlapping Majri, who is one of the most technically gifted defenders at the tournament, coupled with Diani and Thiney, a combination of very high skilled players that teams will be forced to double up with, leaving the deadly Le Sommer room to manuever in and around the box\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EOther players to look out for include Amel Majri (LB) , a converted midfielder turned fullback, and with her technical ability making her one of if not the best in her position, Delphine Cascarino (RW) a typical young tricky winger who loves a little stepover or two, and the experienced 33 year old Ga\\u00ebtane Thiney (AM), who has 155 caps and 58 goals for Les Blues\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-red\\\"\\u003ESouth Korea\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/loser0001\\\"\\u003Eu/loser0001\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ENickname(s)\\u003C/strong\\u003E: Taegeuk Ladies\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 2\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Round of 16 (2015)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 14\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ESouth Korea women\\u0026#39;s team played their first international in 1990, when they were unsurprisingly hammered by Japan in what remains their heaviest-ever defeat. Thankfully things have improved since then. In more recent history, they finished runners-up in their group at the 2015 World Cup, behind Brazil but ahead of Costa Rica and Spain; in the Round of 16 they were knocked out by future 2019 opponents France.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERoute to the 2019 World Cup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETL;DR: North South Korea best Korea\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sure there are a few stories in this World Cup of teams qualifying against the odds, but South Korea\\u0026#39;s may be up there, amid unusual circumstances.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor background, the Asian Football Confederation (AFC) has 5 spots for the World Cup. Qualification is done via the AFC\\u0026#39;s regional tournament - the Asian Cup - held every four years, in the year before the World Cup. That makes qualification for the Asian Cup doubly important - miss out on qualifying for the Asian Cup, and you absolutely won\\u0026#39;t be going to the World Cup.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the 2017 Asian Cup qualifying, South Korea were the top seeds ahead of the group draw (Japan, Australia, and China were the 1-2-3 of the previous Asian Cup and so did not participate in qualifying). Rather than the standard home and away fixtures, all group games are played in a selected \\u0026#39;host nation\\u0026#39; with just 2 or 3 days rest in between games. Only the group winner qualifies for the Asian Cup proper.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESouth Korea were drawn in a group with North Korea, then ranked #10 in the world, 7 places above them in the FIFA rankings. To make matters worse, North Korea were the selected host nation and would be playing all games on home soil. Unlucky to say the least, but how did this happen if South Korea were the top seeds?\\nFollowing the North Korean doping scandal in 2011, North Korea were banned from participating in the 2015 World Cup, and the 2014 Asian Cup (and qualifying). Because they hadn\\u0026#39;t taken part in the previous Asian Cup at all, they had the lowest seeding, being drawn from pot 5.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth North and South Korea won their early group games comfortably. For the probable group-deciding match against each other, I could find exactly two highlights videos, corresponding to the respective North and South Korean broadcasts of the match. The South Korean source has an interesting camera angle but I recommend watching just the start to see the atmosphere created by a few tens of thousand of well-co-ordinated North Korean fans (attendance was reported to be 42,500). The North Korean source is in some ways much better - it has replays, alternate angles, and commentary - but the video quality makes it look like it\\u0026#39;s from a broadcast in the 90\\u0026#39;s. If you want to watch this one, the goals are at 29:00 and 51:20. There\\u0026#39;s also a penalty given and saved starting from 6:00. The match finished 1-1.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThose were the only goals that either Korea would concede, and in the end it was South Korea that topped the group with a goal difference of +20 to North Korea\\u0026#39;s +17.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the 2018 Asian Cup South Korea were once again slightly unlucky with their group draw, finding themselves with both Australia and Japan. They drew against both and finished level on points with both, but found themselves in 3rd place based on goal difference and goals scored. Thankfully this was enough to get them to a play-off against Phillipines for that last World Cup spot, whom they dispatched 5-0.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EThe majority of the national team play their club football in the domestic WK League, with two playing in England\\u0026#39;s WSL and one in Japan. Incheon Red Angels are the dominant force in Korea, having won the past 6 league titles and are on course to make that 7 this season.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe team has a handful of players who were part of the U-17 World Cup winning squad from 2010.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Yoon Deok-yeo (South Korea)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Kang Ga-ae (Gumi), Jung Bo-ram (Hwacheon), Kim Min-jeong (Incheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Kim Hye-ri (Incheon), Shin Dam-yeong (Incheon), Lim Seon-joo (Incheon), Lee Eun-mi (Suwon), Kim Do-yeon (Incheon), Jang Sel-gi (Incheon), Jeong Yeong-a (Gyeonju), Hwang Bo-ram (Hwacheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Lee Young-ju (Incheon), Kang Yu-mi (Hwacheon), Lee So-dam (Incheon), Moon Mi-ra (Suwon), Cho So-hyun (West Ham), Lee Min-a (INAC Kobe), Kang Chae-rim (Incheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Jung Seol-bin (Incheon), Ji So-yun (Chelsea), Lee Geum-min (Gyeonju), Yeo Min-ji (Suwon), Son Hwa-yeon (Changnyeon)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-whistle-big\\\"\\u003E\\u003C/a\\u003E \\u003Ca href=\\\"https://i.imgur.com/ejiZpWV.jpg\\\"\\u003EPotential Starting 11\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"http://photo.hankooki.com/newsphoto/v001/2019/04/09/holic20190409183756_P_02_C_1.jpg\\\"\\u003EJi So-yun\\u003C/a\\u003E\\u003C/strong\\u003E: Korean prodigy - youngest senior national team debut and goal, both at the age of 15, and highest ever goal scorer (54 in 116 appearances). Unusual in that she did not start her senior club career in Korea, being signed early by INAC Kobe Leonessa. In her 3 years in Japan she won three League titles, and just before leaving for Chelsea she managed to score against them in the final of the International Women\\u0026#39;s Club Championship (Japan\\u0026#39;s attempt to get a Club World Cup going). Since moving to England with Chelsea, she has added another few titles to the collection, and is a regular nominee and occasional winner for PFA player of the year. Has excellent dead ball skills and is just generally a class above. Is hugely important to the team - more so than Son Heung-min is to the men\\u0026#39;s team.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"https://img.sbs.co.kr/newimg/news/20181229/201266238_1280.jpg\\\"\\u003ECho So-hyun\\u003C/a\\u003E\\u003C/strong\\u003E: Korea\\u0026#39;s captain and most capped player ever with 121 appearances. Spent the majority of her career with Incheon in the WK League, but in the past few years has played in Japan, Norway, and signed for West Ham at the start of 2019. Usually plays as DM between the defensive and midfield lines. The coach has sometimes started her in a CB position for extra reliability, but midfield is her natural position.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss-big\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ENorway\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThe main point of discussion is trying to work out how good this South Korean team really is. They didn\\u0026#39;t actually lose a single game during qualifying, drawing with teams who on paper were much better - North Korea, Australia, and Japan. This has seen their FIFA ranking steadily rise, and I\\u0026#39;m not sure if it has settled on its \\u0026#39;true\\u0026#39; value yet. Progressing to the group stage again is the target for this team, and to do that, picking up points against Norway is probably required. To get a win against Norway and take the 2nd spot (barring any other upsets in the group) would be enough to label this World Cup a success.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe focus on Norway is evident in their pre-tournament friendlies, as they arranged two matches against Iceland and two against Sweden under the assumption that the Northern European teams will have a similar physicality to their game. In the first game against Iceland, Korea were dominant, and yet lost 3-2 as Iceland scored with their only 3 attempts on goal (to Korea\\u0026#39;s 22 shots), leading the coach to rather publicly bemoan the state of his goalkeepers and defence. At least in the goalkeeper department, his hand has been forced as veteran keeper Kim Jung-mi suffered an Achilles tendon injury in training.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFuture retirements?\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThis is now just my personal speculation, but the two current stars Ji So-yun and Cho So-hyun are now 28 and 30 respectively, and while they may still play in another World Cup, they also may not. With these two being so important to the team, could this be the peak of this generation of players? A lot of the current core of players are hovering around 26/27 years old, standout fullback Jang Sel-gi (KFA player of the year 2018) is 25. If South Korea won\\u0026#39;t be fielding a team of 30-year-olds in 4 years time, the team will look very different, and it\\u0026#39;s not clear who the young rising stars are now.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-red\\\"\\u003ENorway\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/Crusarius28\\\"\\u003Eu/Crusarius28\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 7 (All Editions)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Champions (1995)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 12\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFormer World and Olympic Champions Norway have fallen from power in the past decade. The team comes to France with big expectations after having qualified for another World Cup in dramatic fashion. The Norwegians left it all to the last match-day and had to earn a hard fought victory over EURO Champions Netherlands to earn automatic qualification.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Martin Sjogren (Sweden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Ingrid Hjelmseth (Stabaek), Cecilie Fiskerstrand (LSK), Oda Bogstad (Arna-Bjomar)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Ingrid Wold (LSK), Maria Thorisdottir (Chelsea), Stine Hovland (Sandviken), Maren Mjelde (Chelsea), Cecilie Kvamme (Sandviken)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Synne Hansen (LSK), Vilde Boe Risa (Kopparbergs), Caroline Hansen (Wolfsburg/Barca), Ingrid Engen (LSK), Guro Reiten (LSK), Kristine Minde (Wolfsburg), Frida Maanum (Linkoping), Karina Saevik (Kolbotn)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Elise Thorsnes (LSK), Isabell Herlovsen (Kotbotn), Lisa-Marie Utland (Rosengard), Therese Asland (LSK), amalie Eikeland (Sandviken), Emilie Haavi (LSK), Emilie Nautnes (Arna-Bjonar)\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECaroline Graham Hansen:\\u003C/strong\\u003E Completing a move to Barcelona just weeks before appearing in her first World Cup, Hansen will be Noway\\u0026#39;s most important player. The 24 yr old is the full midfield package that can control games, deliver pin point passes and score whenever needed. Ruled out of the 2015 World Cup due to a knee injury, she\\u0026#39;s back and stronger than ever. Forming a team around this future superstar was one of the headaches Coach Sjogren had this year, but it\\u0026#39;s a good headache to have.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EIsabell Herlovsen:\\u003C/strong\\u003E 30 yr old Herlovsen is a constant goal threat. The brunt of all goals scored will be on Herlovsen\\u0026#39;s shoulders this summer. Her uncanny sense to be at the right place at the right time has paid dividends, including scoring the winner in the decider against the Netherlands. Her finishing skills will be a major key for Norway\\u0026#39;s progression.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETurning Experience into Results\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENorway are no strangers to winning and a realistic goal this year will be to get a medal. High expectations come from a storied past but following in the footsteps of legends proves no easy task. In terms of quality, Norway aren\\u0026#39;t able to best the top teams, but are certainly best of the rest and managing to utilize all their experience and hunger to put together performances early on versus Nigeria and France in the toughest qualifying group will be important to building momentum for Norway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefense\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDefense wins championships, and true to the old adage, Norway\\u0026#39;s defense will be key. Chelsea duo Mjelde and Thorisd\\u00f3ttir are important in the back but Thorisdottir has missed half the season due to injury and may not be fully fit. Mjelde\\u0026#39;s responsibilities will extend to organizing the midfield during transitions, even more importantly as she herself likes to get forward and score goals. She\\u0026#39;s scored 19 goals for Norway from the fullback position thus far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAda Hedgerberg\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe world\\u0026#39;s best female player Ada Hedgerberg has refused to play for Norway since 2017 (think Messi refusing to play for Argentina), and the current team has done well to step up in her absence. While Hedgerberg has taken headlines this summer due to her stance on the treatment of women\\u0026#39;s footballers in Norway, the team has to continue doing what they\\u0026#39;ve been doing for the past two years and not let any of the new found media attention affect their performances.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-green\\\"\\u003ENigeria\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/Crusarius28\\\"\\u003Eu/Crusarius28\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 7 (All Editions)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Quarter Finals (1999)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 38\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ENigeria have dominated Africa with 9 out of 11 Women\\u0026#39;s African Cup of Nations. But turning continental results into intercontinental ones proves tough, they haven\\u0026#39;t progressed past the group stages since 1999. Their search for more will be toughened by the hardest group in the World Cup with games versus France, Nigeria and Norway proving a major hurdle.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Thoms Dennerby (Sweden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Tochukwu Oluehi (Rivers Angels), Chiamaka Nnadozie (Rivers Angels), Alaba Jonathan (Bayelsa Queens)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Osinachi Ohale (Vaxjo), Ngozi Ebere (Arna-Bjomar), Onome Ebi (Henan Huishang), Faith Michael (Pitea), Chidinma Okeke (Robo Queens)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Amarachi Okoronkwo (Nasarawa Amazons), Evelyn Nwabuoku (Rivers Angels), Rita Chikwelu (Kristianstads), Ngozi Okobi-Okeoghene (Eskilstuna Utd), Halimatu Ayinde (Eskilstuna Utd), oganna Chukwudi (Djurgarden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Anam Imo (Rosengard), Asisat Oshoala (Barcelona), Desire oparanozie (Guingamp), Chinaza Uchendu (Braga), Uchenna Kanu (Southeastern Fire), Rasheedat Ajibade (Avaldsnes), Francisca Ordega (Shangai), Chinwendu Ihezuo (Henan Huishang), Alice Ogebe (Rivers Angels)\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAsisat Oshoala:\\u003C/strong\\u003E \\u201cSuperzee\\u201d has added Women\\u0026#39;s African Footballer of the Year award to her title. Three time Women\\u0026#39;s African Footballer of the year in fact. Her clinical ability in front of goal, raw pace and power put her on the map back in 2014 and now she\\u0026#39;s leading the line at Barcelona and helping them to their first ever Women\\u0026#39;s Champions League Final in history.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EOnome Ebi:\\u003C/strong\\u003E Playing in China hasn\\u0026#39;t hampered the 36yr old Nigerian. Her game reading and anticipation makes her a striker\\u0026#39;s nightmare. Add that to her supreme strength and you have a player that can shut down all but the fastest forwards in the game. Ebi will be representing the Super Eagles for the 5th time this summer.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPreparation for Tournaments\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Ladies of Nigeria have been underfunded and their tournament preparations have always been the absolute minimum if non existent. They went 2 full years without playing a game from May 2016 to April 2018, months before the next major tournament. They\\u0026#39;ve fixed that issue this time around and have participated in several tournaments, friendlies and training camps that hopefully give them the push they need to defeat the group stage this time around.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESet Pieces and Defensive Gaps\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Nigerians play a high defensive line and leave gaps but yet they only conceded 1 goal the entire AFCON tournament in 2018. Plugging those holes are important but recent friendlies and showings at the Algarve Cup exposed a weakness to set pieces as well. Ebi is 36 yrs old and even though her mind is quick, her feet are not and it will be the responsibility of the midfield to plug the gaps and not allow teams to get the ball to their forwards looking to make run behind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick Transitions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe midfield not only has to cover for gaps but quickly move the ball forward during transitions to the forwards. Nigeria\\u0026#39;s strengths and speed comes from their star strikers and they\\u0026#39;ll get the ball at every opportunity. Their top heavy system works when the ball is constantly up the pitch to the final third where their creative offense can shine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?auto=webp\\u0026s=8536a1bab8642c35f8f8ce6ff0d2c225f742f0df\", \"width\": 431, \"height\": 536}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5222659d4531a310385f7ad45a6a1bee0807dcf5\", \"width\": 108, \"height\": 134}, {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b0a822a359f7492a7b1263a92b9767518ec53b66\", \"width\": 216, \"height\": 268}, {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c3be09db027cef0fcc3a3b228935acf88e5d6893\", \"width\": 320, \"height\": 397}], \"variants\": {}, \"id\": \"dYE-hpAiNCPKZeSNCQxv6JlVTRpt6ovh8CLxMWBANYM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwkei5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"riskyrofl\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwkei5/2019_womens_world_cup_group_a_profile_france/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwkei5/2019_womens_world_cup_group_a_profile_france/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559621415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TEST TELATT ITEAT - DOSEA ALRJ AR A A ER A REEE ARE A? AERE?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bwhpb9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwhpb9\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Vkisu9g-VZo3thxeoTEh7_sHe6pgucV1XMkDjc08RY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559633760.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?auto=webp\\u0026s=3e2a10eb30c9a5b77b30a241735e3e8b8e1cfccc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a22b052dedffebf783ba26dae6003cd3c55a250\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcf039e2e79b58782dfd536386b50fa8b338f1d2\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=77375886fab998dde88f536da5c4503437f4c152\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"bdEz7hRKzTsVVn3Vyr7qozX0OUrbARsbBsUoqJKdw7M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwhpb9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwhpb9/test_telatt_iteat_dosea_alrj_ar_a_a_er_a_reee_are/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\", \"subreddit_subscribers\": 703, \"created_utc\": 1559604960.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://i.redd.it/n6wnbnoq68231.png\\n\\nWelcome to Eternal Aegis! We are a close-knit clan dedicated to keeping a casual, fun, and welcoming atmosphere. We strive to give our members the best clan experience Warframe has to offer. If you are interested in joining, please leave a comment below or message one of us in game!\\u00a0Here is our official Warframe clan group which you can join now:\\u00a0[https://forums.warframe.com/clubs/1730-eternal-aegis/](https://forums.warframe.com/clubs/1730-eternal-aegis/)\\n\\n# What We Offer\\n\\n* A very active, friendly, and helpful community\\n* An international community with members from all over the world. Most of our players are based in North America and Western Europe\\n* Large and well-designed dojo\\u00a0[Photos of our Dojo](https://imgur.com/a/h04Gk3N)\\n* 100% Completed Clan research\\n* Casually Competitive - we do well on leaderboards, and have no minimum quota for our members.\\u00a0[http://content.warframe.com/dynamic/hostileMergers.php](http://content.warframe.com/dynamic/hostileMergers.php)\\n* Eidolon hunting, Arbitrations, and other types of content are regularly hosted\\n* We are a Moon clan with over 980+ members at any time\\n* An organized discord server with alerts, guides, announcements, and more!\\n* We frequently host clan events, contests, and giveaways\\n* We are a member of the Moonlapse Alliance, a close-knit alliance with friendly clans.\\n\\n# Our Rules\\n\\n* Be polite and respect each other. Harassment, sexism, racism, bullying, and excessive profanity will not be tolerated.\\n* No Sexual, political, or obscene discussions in clan chat or discord.\\n* Our inactivity policy is 10\\u00a0days (members gone for longer can contact a mod).\\n* Currently, we require new recruits to be MR12+ (But friends of clanmates are only required to be MR8+).\\n\\n# Join Now!\\n\\nWe will need interested Tenno to comment below with the following information:\\n\\n1. Your in-game name\\n2. Your Mastery Rank (Note: Mastery Rank MR12+ is required but friends can join at MR 8+)\\n3. Your Region\\u00a0\\n4. The length of time you have been playing the game for\\n5. What you are looking for in a clan\\n6. How often are you able to play during a typical week\\n7. Have you been in a clan before? If so, which ones and why did you choose to leave?\\n\\nWe will respond as soon as possible! Reminder:\\u00a0Make sure you exit your clan before leaving a comment.\\n\\n# Contact List:\\n\\n\\\\--Aegis--Dandy\\u00a0| Nightressa | --Aegis--Paikoo | -OatGod- | Bhesus | --Aegis--Excalibur64 | Myzhari |\\u00a0Valkor | --Aegis--Dragunova2018 | Komi |\\u00a0Sebas\\\\_Sal12| --Aegis--Tetsuni | JohnSaint | ChaoticJiggles | Renzashi\\ufeff\", \"author_fullname\": \"t2_1gb0jvk5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[INT][PC][Clan] Eternal Aegis | 100% Research | 990+ Members | 10 Day Inactivity | MR12+ Req. | Complete Dojo | Active Discord | Organized Clan Events | Moonlapse Alliance\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"n6wnbnoq68231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 98, \"x\": 600, \"u\": \"https://i.redd.it/n6wnbnoq68231.png\"}, \"m\": \"image/png\", \"id\": \"n6wnbnoq68231\"}}, \"name\": \"t3_bwhl33\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/AdMg7EUd91sNRMaEDemva54vXtcz7xPbLvAxLgMqUVg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559633092.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/n6wnbnoq68231.png\\\"\\u003Ehttps://i.redd.it/n6wnbnoq68231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWelcome to Eternal Aegis! We are a close-knit clan dedicated to keeping a casual, fun, and welcoming atmosphere. We strive to give our members the best clan experience Warframe has to offer. If you are interested in joining, please leave a comment below or message one of us in game!\\u00a0Here is our official Warframe clan group which you can join now:\\u00a0\\u003Ca href=\\\"https://forums.warframe.com/clubs/1730-eternal-aegis/\\\"\\u003Ehttps://forums.warframe.com/clubs/1730-eternal-aegis/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EWhat We Offer\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EA very active, friendly, and helpful community\\u003C/li\\u003E\\n\\u003Cli\\u003EAn international community with members from all over the world. Most of our players are based in North America and Western Europe\\u003C/li\\u003E\\n\\u003Cli\\u003ELarge and well-designed dojo\\u00a0\\u003Ca href=\\\"https://imgur.com/a/h04Gk3N\\\"\\u003EPhotos of our Dojo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E100% Completed Clan research\\u003C/li\\u003E\\n\\u003Cli\\u003ECasually Competitive - we do well on leaderboards, and have no minimum quota for our members.\\u00a0\\u003Ca href=\\\"http://content.warframe.com/dynamic/hostileMergers.php\\\"\\u003Ehttp://content.warframe.com/dynamic/hostileMergers.php\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEidolon hunting, Arbitrations, and other types of content are regularly hosted\\u003C/li\\u003E\\n\\u003Cli\\u003EWe are a Moon clan with over 980+ members at any time\\u003C/li\\u003E\\n\\u003Cli\\u003EAn organized discord server with alerts, guides, announcements, and more!\\u003C/li\\u003E\\n\\u003Cli\\u003EWe frequently host clan events, contests, and giveaways\\u003C/li\\u003E\\n\\u003Cli\\u003EWe are a member of the Moonlapse Alliance, a close-knit alliance with friendly clans.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EOur Rules\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBe polite and respect each other. Harassment, sexism, racism, bullying, and excessive profanity will not be tolerated.\\u003C/li\\u003E\\n\\u003Cli\\u003ENo Sexual, political, or obscene discussions in clan chat or discord.\\u003C/li\\u003E\\n\\u003Cli\\u003EOur inactivity policy is 10\\u00a0days (members gone for longer can contact a mod).\\u003C/li\\u003E\\n\\u003Cli\\u003ECurrently, we require new recruits to be MR12+ (But friends of clanmates are only required to be MR8+).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EJoin Now!\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EWe will need interested Tenno to comment below with the following information:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EYour in-game name\\u003C/li\\u003E\\n\\u003Cli\\u003EYour Mastery Rank (Note: Mastery Rank MR12+ is required but friends can join at MR 8+)\\u003C/li\\u003E\\n\\u003Cli\\u003EYour Region\\u00a0\\u003C/li\\u003E\\n\\u003Cli\\u003EThe length of time you have been playing the game for\\u003C/li\\u003E\\n\\u003Cli\\u003EWhat you are looking for in a clan\\u003C/li\\u003E\\n\\u003Cli\\u003EHow often are you able to play during a typical week\\u003C/li\\u003E\\n\\u003Cli\\u003EHave you been in a clan before? If so, which ones and why did you choose to leave?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWe will respond as soon as possible! Reminder:\\u00a0Make sure you exit your clan before leaving a comment.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EContact List:\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E--Aegis--Dandy\\u00a0| Nightressa | --Aegis--Paikoo | -OatGod- | Bhesus | --Aegis--Excalibur64 | Myzhari |\\u00a0Valkor | --Aegis--Dragunova2018 | Komi |\\u00a0Sebas_Sal12| --Aegis--Tetsuni | JohnSaint | ChaoticJiggles | Renzashi\\ufeff\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?auto=webp\\u0026s=e98d685d9fcf12f7f7392b525e415ac027917600\", \"width\": 2560, \"height\": 1440}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=59342af73454d35034c3c2d4f475ac9a0769342f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=33b993e87781a7e2cc16124014a2db665ad1dcf3\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=067ceadbbab70f2e7568b6194ddd308d85bf70f3\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d65ab11bab91d92431c27e891c04d4f39dd66a19\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=92623901f6db2b25568baf6fcaf5db221626276e\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=32b5ff6ab01a5aae5c9bd70cb394bfe77ac67e3b\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"O2SqmsxqqImr7fOGU_I228obe-zxqR6BfpRXHbSRU7s\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwhl33\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"EternalAegisWarframe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwhl33/intpcclan_eternal_aegis_100_research_990_members/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwhl33/intpcclan_eternal_aegis_100_research_990_members/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559604292.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Item #: SCP-4260**\\n\\n**Object Class: Euclid**\\n\\n**Author: Nagiros**\\n\\n\\\"*And with strange aeons even death may die.\\\"*\\n\\nHello SCPDeclassified, Brewsterion here. Today, I wanted to cover [SCP-4260](http://www.scp-wiki.net/scp-4260) at the request of the author and a few users who talked to me about it. So, let's get into it.\\n\\nWe can't get into containment procedures yet, however, as there's something very important at the top of the page.\\n\\n\\u003EThis document has been significantly edited in order to obfuscate the identity of SCP-4260; several addenda have been omitted, and are only available with **Level 5/4260 Clearance**.\\n\\nWell, this is interesting. You would think the omitting of the identity makes it an infohazard, but that's not one of the tags so we can rule that out. What it does tell us is that this thing is extremely important to the Foundation, since basically only the O5s have Level 5 clearance. Let's see what we can tell from this version, though.\\n\\n**Special Containment Procedures**\\n\\nThe first paragraph of the containment procedures isn't too weird, but some sentences do stick out. Area-03 is located 2 kilometers beneath Hong Kong, specifically to contain 4260.\\n\\n\\u003EThe containment chamber housing SCP-4260 has been augmented with a Strayer Density Matrix designed to coalesce and bind its disparate elements.\\n\\nThis is a device we haven't seen before. Disparate elements would imply an anomaly of multiple parts, however we don't seen mentions of components here. Rather this line means that whatever 4260 is, it's greatly spread out over a very large area, similar to SCP-3125, and the Foundation needs a condensed form to contain it.\\n\\n\\u003EMaintenance of the Strayer Density Matrix is integral to SCP-4260's containment and requires a specialized team of technicians and speculative ultraphysicalists.\\n\\nOh boy, new concepts. There's a footnote here that says that ultraphysicalists deal with a science of entities that produce an effect on the universe by simply existing. How this differs from normal reality benders will be explained later, but for now let's say that these things don't try to produce an effect, they just do.\\n\\nThe next sentence explains that there is a Procedure 8917 associated with 4260, and it requires joint operation of three separate MTFs. Gamma-8 uses the Density Matrices to summon 4260. Xi-2 apparently terminates 4260, but don't worry, that will be explained shortly. Tau-900 locates and terminates civilians affected by a successful termination of 4260, and remove evidence Procedure 8917 ever happened. Apparently, terminating 4260 affects people in a specific way. Not to give much away, but Tau-900's nickname is \\\"Deliverance\\\". Just wait and see.\\n\\nIt then goes on to say that Procedure 8917 is considered complete when the following steps have been met:\\n\\n1. SCP-4260 has been successfully terminated.2. The Strayer Density Matrix is fully operational.3. All affected civilians have been located and terminated.4. All evidence of Procedure 8917 has been removed.5. SCP-4260 has been resurrected.\\n\\nWell that's straightforward, if not simple. From what this tells us, between the time 4260 is terminated and brought back, civilians are affected in some way. We don't know how, or what conditions for being affected are, but we'll find out soon. More emphasis is also placed on the Density Matrix, reinforcing that the Foundation needs this, and it once again mentions removing evidence of Procedure 8917 ever happening. Basically, terminating this thing is useful for the Foundation, but it can't stay dead for long, as it has side effects. Alright.\\n\\nThe last line before the description says that the unclassified version is gonna be filled with omissions to hide the identity of 4260. As if we couldn't tell.\\n\\n**Description**\\n\\n\\u003ESCP-4260 refers to the consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. The effect of SCP-4260's existence has been well documented by almost every sapient culture. Termination of SCP-4260 has resulted in the neutralization of its primary anomalous effect until its resurrection during Procedure 8917.\\n\\nAlright, so 4260 refers to the consciousness of an entity that is present throughout the entire universe. The effect of it's existence has been documented by every sapient culture. It's kind of implied this includes aliens, which narrows it down. It's not some sort of emotional construct, it's something that effects everything, like time or gravity. Terminating it neutralizes the effect until resurrection.\\n\\nThat's it. That's the entire description. Yeah, omissions is a bit of an understatement. But there's another addendum here.\\n\\n**Addendum.4260.1**\\n\\nIt's a list of all activations of Procedure 8917. Let's try to get some answers.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 1999 \\n\\u003E \\n\\u003EMethod: Fatal puncture wounds and blood loss, administered by MTF Xi-2. \\n\\u003E \\n\\u003EReason: A massive containment failure at [Site-62C](http://www.scp-wiki.net/scp-579). \\n\\u003E \\n\\u003EDuration:110 seconds \\n\\u003E \\n\\u003EAffected: 3 civilians \\n\\u003E \\n\\u003EStatus: Recontained\\n\\nA crosslink to SCP-579, an old article where the description is literally \\\\[DATA EXPUNGED\\\\]. Not truly linked to this article, but it tells us that 4260 was killed because of a breach of some terrifyingly dangerous entity.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2003 \\n\\u003E \\n\\u003EMethod: Blunt force trauma by a member of MTF Xi-2. \\n\\u003E \\n\\u003EReason: The nuclear bombardment of Site-001. \\n\\u003E \\n\\u003EDuration: 25 seconds \\n\\u003E \\n\\u003EAffected: 1 civilian \\n\\u003E \\n\\u003EStatus: Recontained. SCP-4260's consciousness replicated and reproduced as *Tantalus.aic*.\\n\\nXi-2 bashed this thing's head in as a rush job while Site-001 was getting nuked, and resurrected them as soon as they could. Interestingly, Tantalus is a Greek mythological figure most famous for his punishment after death. Remember that.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2008 \\n\\u003E \\n\\u003EMethod: Destruction of SCP-4260's hard drive, completed by MTF Xi-2. \\n\\u003E \\n\\u003EReason: An imminent [ZK-Class (\\\"End-of-Reality\\\") Scenario](http://www.scp-wiki.net/scp-2975). \\n\\u003E \\n\\u003EDuration: Indeterminate \\n\\u003E \\n\\u003EAffected: 7,213,426,000 individuals, termination unnecessary. \\n\\u003E \\n\\u003EStatus: Recontained. A copy of *Tantalus.aic* uploaded into an appropriated [Peregrine Series Humanoid Utility Droid](http://www.scp-wiki.net/scp-1360).\\n\\nA crosslink to both SCP-2975, an interactive article meant to represent after-action report of various CK shifts and an almost ZK end of reality, and SCP-1360, one of the earlier Anderson Robotics articles. This one gives us something very vital; this procedure was activated to save the planet from destruction. This gives us as close to an answer as to what Procedure 8917 is for: saving people's asses and letting them skip through destruction easily. The next one is just the same idea with something about O5-6, but the final one is interesting.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2016 \\n\\u003E \\n\\u003EMethod: Incineration, committed by MTF Xi-2 during Experimental Operation \\u201cMany-Crowned Serpent\\u201d. \\n\\u003E \\n\\u003EReason: The insufficiency of SCP-4260's containment procedures. \\n\\u003E \\n\\u003EDuration: 415 seconds \\n\\u003E \\n\\u003EAffected: 10 civilians \\n\\u003E \\n\\u003EStatus: *N/A*\\n\\nUhhh....shit.\\n\\nApparently, they didn't bring 4260 back after this one for this Operation Many-Crowned Serpent. This opens a whole new load of questions. What is Many-Crowned Serpent? Why is 4260 staying dead? Why were the containment procedures insufficient? This iteration doesn't answer them, because it ends here.\\n\\nYou'd assume we're in trouble, but there's a prompt at the bottom of the page. Apparently, we're O5-9, and Iteration Beta of the file, the Level 5 version, is available to us to read. Now, I get if you're confused on why I just went through all of that if it's not the real version. The answer is that some of the information here, such as the times it was used and the purposes of the MTFs, are not present in Iteration Beta. And we needed to know those things before we went into Iteration Beta, as well as know how classified among the Foundation this was. Anyways, let's get into Iteration Beta.\\n\\nI'm gonna skip the containment procedures for this one, as all they tell us is just that Iteration Alpha's containment procedures, the first ones we read, were insufficient and that Operation Many-Crowned Serpent was executed to fix that. As such, this version's technically outdated too, as it doesn't reflect the changes that Operation Many-Crowned Serpent caused to 4260, but we can still use it.\\n\\n**Description 2: Electric Boogaloo**\\n\\n\\u003ESCP-4260 is the collective consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. SCP-4260's existence has resulted in the universally entropic decline of sentient organisms and is the direct cause of any organism's cessation of life functions. \\n\\u003E \\n\\u003E**Note:** \\\"Entropic decline\\\" refers to an organism\\u2019s eventual abatement into infirmity when it achieves an advanced age for its species.\\n\\nIt's Death. Well, really more Entropy than Death, but 4260 is literally Death. We could have probably inferred it from Iteration Alpha, but that document served a different purpose, and it was kind of obvious we were dealing with Death near the end and from the quote I put.\\n\\n\\u003ESCP-4260 itself is subject to its own entropy, and its anomalous influence on the universe has notably diminished in the preceding millennia. It is projected that SCP-4260 will expire by achieving an ultraphysical null-state at approximately 2017 CE. The former containment procedures of SCP-4260 proved both incapable of halting this effect and its primary anomalous trait, although complete physical containment was achieved.\\n\\n*Oh shit.*\\n\\nNow the quote at the top of this declass makes a little more sense, doesn't it? The entropy and decay 4260 inflicts upon the universe hurts itself as well, and death is inescapable. It says that by 2017, 4260's gonna be dead, but if you recall from the Procedure 8917 logs, Operation Many-Crowned Serpent was executed in 2016. Now you see why we looked through those logs.\\n\\nThe next line says that our earlier assumption about Procedure 8917 was correct in it's purpose of saving people. By temporarily killing 4260, they create an Omega-K End Of Death Scenario for long enough to save Foundation personnel or prevent global extinction, both of which we saw in the logs. This also explains why civilians are affected, as they need to take care of people that should have died but didn't during the duration of the Omega-K. ^(Hey didn't you just declass something from End of Death?) This isn't part of the central canon, it's just a reference, so don't worry about the EoD storyline.\\n\\n**Addenda 4260-1 and 4260-2**\\n\\nI'm going to group these two addenda together since they're very closely related. Addendum 1 is just a recovery log of 4260 first being recovered by the Foundation, but it's a bit odd. 4260 willingly manifested itself as a young woman at Site-76 and asked to be contained and medically treated. This is further elaborated in Addendum 2, where we also learn some more about ultraphysical entities, or Intrinsics, as the nickname goes. The Foundation doesn't know much about them, but 4260 has told them a few things, namely that they're not omnipotent, because 4260 came to them to help save it, and that they have no personality traits or goals beyond self-preservation. This desire for self-preservation extends to trying to escape it's own effect, and how this actually ended up letting life exist as a whole. The addendum ends with the statement that Death's dying is both the best and worst news humanity could have.\\n\\nOkay, so basically, Death itself is starting to fade into nothingness while the Foundation keeps killing and resurrecting them to save high-ranking personnel. This seems to be both good and bad news for the Foundation, for obvious reasons. Oh, but what's this? ANOTHER iteration? This one, Iteration Gamma, is apparently pending approval and reflects the changes caused by Operation Many-Crowned Serpent to 4260. Let's check it out and see if we finally get an answer for what Operation Many-Crowned Serpent is. \\n\\n**Special Containment Procedures 3: The Securing**\\n\\nThese containment procedures are similar to the ones from Iteration Alpha, but much stricter. This version of 4260 is locked up in a massive nuclear bunker made to withstand every K-Class Scenario the Foundation knows of, with seven Strayer Density Matrices all around the chamber and as few people as possible staffing the place. If it gets out, O5-1, O5-7, and O5-13 are to be alerted as soon as possible. This thing is even more dangerous that the prior version of 4260, and they don't seem to be planning on using Procedure 8917 on it anytime soon. It also seems to be much stronger than previous 4260, as this version needs seven Density Matrices as opposed to only one being needed for Iteration Alpha. Time to see if the description matches this guess. \\n\\n**Description 3: Describe Harder**\\n\\n\\u003E SCP-4260 is Foundation Administrator Ethan Horowitz, who has undergone considerable physical augmentation as a result of Operation \\\"Many-Crowned Serpent\\\". \\n\\nWell I know the Administrator is often seen as anomalous himself but this is very new. Apparently Operation Many-Crowned Serpent involved doing weird stuff to the Administrator. Collapsibles that follow state that this new 4260 has a large amount of limbs, stands 130 meters tall, can manipulate it's physical form as well, and apparently has the ultraphysical abilities from the old 4260. It's also mentioned that it's more resistant to the Density Matrices, and that if five out of seven Matrices fail, we'll be enjoying a Chi-K Class \\\"Crowning Of Death\\\" scenario, which I'll try to elaborate more on after the upcoming quote. \\n\\n\\u003E The ultraphysical entity previously cataloged as SCP-4260, prior to its neutralization in Operation \\\"Many-Crowned Serpent\\\", exhibited several of these anomalous traits to a more limited degree. After its termination, Foundation Administrator Ethan Horowitz elected to transfer its anomalous properties onto his own person, in accordance with the contractual and ritualistic nature of Operation \\\"Many-Crowned Serpent\\\". \\n\\nFinally, an answer to what Operation Many-Crowned Serpent is. After the old 4260 was finally terminated, their properties were transferred to Horowitz so that we don't have to worry about Death dying anymore. That Chi-K scenario is likely the threat of Death's strength returning to what it was at the beginning of the universe, causing all living beings to die. This fits the name, as crowning implies something good happening to them. Well, good is relative in these circumstances. \\n\\nThere's one final addendum to the article, and I promise it's the last addendum. Let's get through it. \\n\\n**Addendum 4260-1: The Finale**\\n\\nThis addendum, written by Horowitz himself before Operation Many-Crowned Serpent was executed, opens with a restatement of the Foundation's Prime Directives; lock up anomalies, keep them secret, make sure they don't return, and prioritize everything except reality itself below the preservation of life. Things get interesting very quickly after that, though. \\n\\n\\u003E**This is the Subdirective of the Foundation:** to terminate the primary anomalous phenomenon which has plagued life since life\\u2019s conception, or to facilitate the termination thereof. \\n\\u003E \\n\\u003E**This is the prime anomaly:** Death.\\n\\nTitle drop. They just said they hold almost everything above life, and this is proof of that. \\n\\n\\u003E The Subdirective was never meant to be feasible, at least not in the day and age of our founding. We cannot hope to mitigate the disasters that this would result in: overpopulation, species stagnation, and susceptibility to cataclysmic extra-dimensional forces which can only be contained via euthanization of those affected. \\n\\u003E \\n\\u003E Now, over a century later, we could achieve the Subdirective at any moment with only a missive sent to the lead of Amalgamate Force Omicron-45. I suppose it would be marvelous to see: a world without death and infirmity, each person freed from the dread of uncertainty and peril. Maybe, one day, we will find a way to make that world. \\n\\u003E \\n\\u003EUntil such a time, we must secure the perpetual containment of Death. This is the nature of Operation \\u201cMany-Crowned Serpent\\u201d: to fulfill the first steps of the Foundation\\u2019s subdirective. \\n\\u003E \\n\\u003EAs it stands now, Death is a hostile entity intent on its own self-preservation at any cost. We spoke, once, and I began to realize that if it could feel anything at all, it would feel the same fear we must face under its tyranny. We could not save Death from itself; as far as our science has elevated us, there is still so much we do not understand. I told this to SCP-4260, and it smiled. \\\"Administrator,\\\" it said, \\\"How can I die when I will live on through you?\\\" \\n\\u003E \\n\\u003EDeath has struck a deal with us. In all its arcane knowledge, it knows a way to live on after its death: it has chosen me to be its heir. It is a choice between the eternal agony of humanity and a pain suffered only until we know enough to repair our tired species. It is not a choice at all. \\n\\u003E \\n\\u003EOn this day, I will become Death. This last evil I must allow us all to suffer patiently. Be bold, for one day soon, we will have won the battle waged by both us and our ancestors emerging from the primordial soup: the struggle for Life Everlasting.\\n\\nThis gives some more answers. Everything that the Foundation's done and is doing is all for the purpose of facilitating this Subdirective, the end of the threat of Death to all living beings, freeing the world from fear and uncertainty. But then why aren't they just doing that now? \\n\\nWell, have you ever read any tales from the [End Of Death canon?](http://www.scp-wiki.net/end-of-death-hub) There's your answer. When humans are faced with immortality, there's a whole lot of complications. Aging, decay, population, all the other lifeforms not dying. If humans were to all become immortal tomorrow, it wouldn't end well. That's why the Foundation's delaying the Subdirective. They need to find answers to the questions posed by immortality, making sure that when Death is no more, it will be a true paradise, not one with catches and people left out, suffering as the few enjoy true immortality. They're waiting until they have the technology, and then they'll terminate 4260 for good, kicking in an Omega-K that hopefully won't be an issue. Do they like waiting? No. The Subdirective is in their grasp. But they know they have to. \\n\\nAnd thus ends SCP-4260, a tale of the Foundation's ultimate goal and the means to get there. I hope this helped you understand this SCP better. Thank you all for reading, and memento mori.\", \"author_fullname\": \"t2_118qqr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SCP-4260, \\\"The Subdirective\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwfesx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559621697.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EItem #: SCP-4260\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class: Euclid\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor: Nagiros\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Cem\\u003EAnd with strange aeons even death may die.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello SCPDeclassified, Brewsterion here. Today, I wanted to cover \\u003Ca href=\\\"http://www.scp-wiki.net/scp-4260\\\"\\u003ESCP-4260\\u003C/a\\u003E at the request of the author and a few users who talked to me about it. So, let\\u0026#39;s get into it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe can\\u0026#39;t get into containment procedures yet, however, as there\\u0026#39;s something very important at the top of the page.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThis document has been significantly edited in order to obfuscate the identity of SCP-4260; several addenda have been omitted, and are only available with \\u003Cstrong\\u003ELevel 5/4260 Clearance\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell, this is interesting. You would think the omitting of the identity makes it an infohazard, but that\\u0026#39;s not one of the tags so we can rule that out. What it does tell us is that this thing is extremely important to the Foundation, since basically only the O5s have Level 5 clearance. Let\\u0026#39;s see what we can tell from this version, though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first paragraph of the containment procedures isn\\u0026#39;t too weird, but some sentences do stick out. Area-03 is located 2 kilometers beneath Hong Kong, specifically to contain 4260.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe containment chamber housing SCP-4260 has been augmented with a Strayer Density Matrix designed to coalesce and bind its disparate elements.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is a device we haven\\u0026#39;t seen before. Disparate elements would imply an anomaly of multiple parts, however we don\\u0026#39;t seen mentions of components here. Rather this line means that whatever 4260 is, it\\u0026#39;s greatly spread out over a very large area, similar to SCP-3125, and the Foundation needs a condensed form to contain it.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EMaintenance of the Strayer Density Matrix is integral to SCP-4260\\u0026#39;s containment and requires a specialized team of technicians and speculative ultraphysicalists.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOh boy, new concepts. There\\u0026#39;s a footnote here that says that ultraphysicalists deal with a science of entities that produce an effect on the universe by simply existing. How this differs from normal reality benders will be explained later, but for now let\\u0026#39;s say that these things don\\u0026#39;t try to produce an effect, they just do.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next sentence explains that there is a Procedure 8917 associated with 4260, and it requires joint operation of three separate MTFs. Gamma-8 uses the Density Matrices to summon 4260. Xi-2 apparently terminates 4260, but don\\u0026#39;t worry, that will be explained shortly. Tau-900 locates and terminates civilians affected by a successful termination of 4260, and remove evidence Procedure 8917 ever happened. Apparently, terminating 4260 affects people in a specific way. Not to give much away, but Tau-900\\u0026#39;s nickname is \\u0026quot;Deliverance\\u0026quot;. Just wait and see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt then goes on to say that Procedure 8917 is considered complete when the following steps have been met:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ESCP-4260 has been successfully terminated.2. The Strayer Density Matrix is fully operational.3. All affected civilians have been located and terminated.4. All evidence of Procedure 8917 has been removed.5. SCP-4260 has been resurrected.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWell that\\u0026#39;s straightforward, if not simple. From what this tells us, between the time 4260 is terminated and brought back, civilians are affected in some way. We don\\u0026#39;t know how, or what conditions for being affected are, but we\\u0026#39;ll find out soon. More emphasis is also placed on the Density Matrix, reinforcing that the Foundation needs this, and it once again mentions removing evidence of Procedure 8917 ever happening. Basically, terminating this thing is useful for the Foundation, but it can\\u0026#39;t stay dead for long, as it has side effects. Alright.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last line before the description says that the unclassified version is gonna be filled with omissions to hide the identity of 4260. As if we couldn\\u0026#39;t tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 refers to the consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. The effect of SCP-4260\\u0026#39;s existence has been well documented by almost every sapient culture. Termination of SCP-4260 has resulted in the neutralization of its primary anomalous effect until its resurrection during Procedure 8917.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAlright, so 4260 refers to the consciousness of an entity that is present throughout the entire universe. The effect of it\\u0026#39;s existence has been documented by every sapient culture. It\\u0026#39;s kind of implied this includes aliens, which narrows it down. It\\u0026#39;s not some sort of emotional construct, it\\u0026#39;s something that effects everything, like time or gravity. Terminating it neutralizes the effect until resurrection.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s it. That\\u0026#39;s the entire description. Yeah, omissions is a bit of an understatement. But there\\u0026#39;s another addendum here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum.4260.1\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a list of all activations of Procedure 8917. Let\\u0026#39;s try to get some answers.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 1999 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Fatal puncture wounds and blood loss, administered by MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: A massive containment failure at \\u003Ca href=\\\"http://www.scp-wiki.net/scp-579\\\"\\u003ESite-62C\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration:110 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 3 civilians \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EA crosslink to SCP-579, an old article where the description is literally [DATA EXPUNGED]. Not truly linked to this article, but it tells us that 4260 was killed because of a breach of some terrifyingly dangerous entity.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2003 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Blunt force trauma by a member of MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: The nuclear bombardment of Site-001. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: 25 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 1 civilian \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained. SCP-4260\\u0026#39;s consciousness replicated and reproduced as \\u003Cem\\u003ETantalus.aic\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EXi-2 bashed this thing\\u0026#39;s head in as a rush job while Site-001 was getting nuked, and resurrected them as soon as they could. Interestingly, Tantalus is a Greek mythological figure most famous for his punishment after death. Remember that.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2008 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Destruction of SCP-4260\\u0026#39;s hard drive, completed by MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: An imminent \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2975\\\"\\u003EZK-Class (\\u0026quot;End-of-Reality\\u0026quot;) Scenario\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: Indeterminate \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 7,213,426,000 individuals, termination unnecessary. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained. A copy of \\u003Cem\\u003ETantalus.aic\\u003C/em\\u003E uploaded into an appropriated \\u003Ca href=\\\"http://www.scp-wiki.net/scp-1360\\\"\\u003EPeregrine Series Humanoid Utility Droid\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EA crosslink to both SCP-2975, an interactive article meant to represent after-action report of various CK shifts and an almost ZK end of reality, and SCP-1360, one of the earlier Anderson Robotics articles. This one gives us something very vital; this procedure was activated to save the planet from destruction. This gives us as close to an answer as to what Procedure 8917 is for: saving people\\u0026#39;s asses and letting them skip through destruction easily. The next one is just the same idea with something about O5-6, but the final one is interesting.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2016 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Incineration, committed by MTF Xi-2 during Experimental Operation \\u201cMany-Crowned Serpent\\u201d. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: The insufficiency of SCP-4260\\u0026#39;s containment procedures. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: 415 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 10 civilians \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: \\u003Cem\\u003EN/A\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EUhhh....shit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EApparently, they didn\\u0026#39;t bring 4260 back after this one for this Operation Many-Crowned Serpent. This opens a whole new load of questions. What is Many-Crowned Serpent? Why is 4260 staying dead? Why were the containment procedures insufficient? This iteration doesn\\u0026#39;t answer them, because it ends here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;d assume we\\u0026#39;re in trouble, but there\\u0026#39;s a prompt at the bottom of the page. Apparently, we\\u0026#39;re O5-9, and Iteration Beta of the file, the Level 5 version, is available to us to read. Now, I get if you\\u0026#39;re confused on why I just went through all of that if it\\u0026#39;s not the real version. The answer is that some of the information here, such as the times it was used and the purposes of the MTFs, are not present in Iteration Beta. And we needed to know those things before we went into Iteration Beta, as well as know how classified among the Foundation this was. Anyways, let\\u0026#39;s get into Iteration Beta.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m gonna skip the containment procedures for this one, as all they tell us is just that Iteration Alpha\\u0026#39;s containment procedures, the first ones we read, were insufficient and that Operation Many-Crowned Serpent was executed to fix that. As such, this version\\u0026#39;s technically outdated too, as it doesn\\u0026#39;t reflect the changes that Operation Many-Crowned Serpent caused to 4260, but we can still use it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription 2: Electric Boogaloo\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 is the collective consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. SCP-4260\\u0026#39;s existence has resulted in the universally entropic decline of sentient organisms and is the direct cause of any organism\\u0026#39;s cessation of life functions. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E \\u0026quot;Entropic decline\\u0026quot; refers to an organism\\u2019s eventual abatement into infirmity when it achieves an advanced age for its species.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s Death. Well, really more Entropy than Death, but 4260 is literally Death. We could have probably inferred it from Iteration Alpha, but that document served a different purpose, and it was kind of obvious we were dealing with Death near the end and from the quote I put.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 itself is subject to its own entropy, and its anomalous influence on the universe has notably diminished in the preceding millennia. It is projected that SCP-4260 will expire by achieving an ultraphysical null-state at approximately 2017 CE. The former containment procedures of SCP-4260 proved both incapable of halting this effect and its primary anomalous trait, although complete physical containment was achieved.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EOh shit.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow the quote at the top of this declass makes a little more sense, doesn\\u0026#39;t it? The entropy and decay 4260 inflicts upon the universe hurts itself as well, and death is inescapable. It says that by 2017, 4260\\u0026#39;s gonna be dead, but if you recall from the Procedure 8917 logs, Operation Many-Crowned Serpent was executed in 2016. Now you see why we looked through those logs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next line says that our earlier assumption about Procedure 8917 was correct in it\\u0026#39;s purpose of saving people. By temporarily killing 4260, they create an Omega-K End Of Death Scenario for long enough to save Foundation personnel or prevent global extinction, both of which we saw in the logs. This also explains why civilians are affected, as they need to take care of people that should have died but didn\\u0026#39;t during the duration of the Omega-K. \\u003Csup\\u003EHey didn\\u0026#39;t you just declass something from End of Death?\\u003C/sup\\u003E This isn\\u0026#39;t part of the central canon, it\\u0026#39;s just a reference, so don\\u0026#39;t worry about the EoD storyline.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddenda 4260-1 and 4260-2\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m going to group these two addenda together since they\\u0026#39;re very closely related. Addendum 1 is just a recovery log of 4260 first being recovered by the Foundation, but it\\u0026#39;s a bit odd. 4260 willingly manifested itself as a young woman at Site-76 and asked to be contained and medically treated. This is further elaborated in Addendum 2, where we also learn some more about ultraphysical entities, or Intrinsics, as the nickname goes. The Foundation doesn\\u0026#39;t know much about them, but 4260 has told them a few things, namely that they\\u0026#39;re not omnipotent, because 4260 came to them to help save it, and that they have no personality traits or goals beyond self-preservation. This desire for self-preservation extends to trying to escape it\\u0026#39;s own effect, and how this actually ended up letting life exist as a whole. The addendum ends with the statement that Death\\u0026#39;s dying is both the best and worst news humanity could have.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOkay, so basically, Death itself is starting to fade into nothingness while the Foundation keeps killing and resurrecting them to save high-ranking personnel. This seems to be both good and bad news for the Foundation, for obvious reasons. Oh, but what\\u0026#39;s this? ANOTHER iteration? This one, Iteration Gamma, is apparently pending approval and reflects the changes caused by Operation Many-Crowned Serpent to 4260. Let\\u0026#39;s check it out and see if we finally get an answer for what Operation Many-Crowned Serpent is. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures 3: The Securing\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThese containment procedures are similar to the ones from Iteration Alpha, but much stricter. This version of 4260 is locked up in a massive nuclear bunker made to withstand every K-Class Scenario the Foundation knows of, with seven Strayer Density Matrices all around the chamber and as few people as possible staffing the place. If it gets out, O5-1, O5-7, and O5-13 are to be alerted as soon as possible. This thing is even more dangerous that the prior version of 4260, and they don\\u0026#39;t seem to be planning on using Procedure 8917 on it anytime soon. It also seems to be much stronger than previous 4260, as this version needs seven Density Matrices as opposed to only one being needed for Iteration Alpha. Time to see if the description matches this guess. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription 3: Describe Harder\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 is Foundation Administrator Ethan Horowitz, who has undergone considerable physical augmentation as a result of Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell I know the Administrator is often seen as anomalous himself but this is very new. Apparently Operation Many-Crowned Serpent involved doing weird stuff to the Administrator. Collapsibles that follow state that this new 4260 has a large amount of limbs, stands 130 meters tall, can manipulate it\\u0026#39;s physical form as well, and apparently has the ultraphysical abilities from the old 4260. It\\u0026#39;s also mentioned that it\\u0026#39;s more resistant to the Density Matrices, and that if five out of seven Matrices fail, we\\u0026#39;ll be enjoying a Chi-K Class \\u0026quot;Crowning Of Death\\u0026quot; scenario, which I\\u0026#39;ll try to elaborate more on after the upcoming quote. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe ultraphysical entity previously cataloged as SCP-4260, prior to its neutralization in Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;, exhibited several of these anomalous traits to a more limited degree. After its termination, Foundation Administrator Ethan Horowitz elected to transfer its anomalous properties onto his own person, in accordance with the contractual and ritualistic nature of Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFinally, an answer to what Operation Many-Crowned Serpent is. After the old 4260 was finally terminated, their properties were transferred to Horowitz so that we don\\u0026#39;t have to worry about Death dying anymore. That Chi-K scenario is likely the threat of Death\\u0026#39;s strength returning to what it was at the beginning of the universe, causing all living beings to die. This fits the name, as crowning implies something good happening to them. Well, good is relative in these circumstances. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere\\u0026#39;s one final addendum to the article, and I promise it\\u0026#39;s the last addendum. Let\\u0026#39;s get through it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4260-1: The Finale\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis addendum, written by Horowitz himself before Operation Many-Crowned Serpent was executed, opens with a restatement of the Foundation\\u0026#39;s Prime Directives; lock up anomalies, keep them secret, make sure they don\\u0026#39;t return, and prioritize everything except reality itself below the preservation of life. Things get interesting very quickly after that, though. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis is the Subdirective of the Foundation:\\u003C/strong\\u003E to terminate the primary anomalous phenomenon which has plagued life since life\\u2019s conception, or to facilitate the termination thereof. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis is the prime anomaly:\\u003C/strong\\u003E Death.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETitle drop. They just said they hold almost everything above life, and this is proof of that. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Subdirective was never meant to be feasible, at least not in the day and age of our founding. We cannot hope to mitigate the disasters that this would result in: overpopulation, species stagnation, and susceptibility to cataclysmic extra-dimensional forces which can only be contained via euthanization of those affected. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, over a century later, we could achieve the Subdirective at any moment with only a missive sent to the lead of Amalgamate Force Omicron-45. I suppose it would be marvelous to see: a world without death and infirmity, each person freed from the dread of uncertainty and peril. Maybe, one day, we will find a way to make that world. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUntil such a time, we must secure the perpetual containment of Death. This is the nature of Operation \\u201cMany-Crowned Serpent\\u201d: to fulfill the first steps of the Foundation\\u2019s subdirective. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it stands now, Death is a hostile entity intent on its own self-preservation at any cost. We spoke, once, and I began to realize that if it could feel anything at all, it would feel the same fear we must face under its tyranny. We could not save Death from itself; as far as our science has elevated us, there is still so much we do not understand. I told this to SCP-4260, and it smiled. \\u0026quot;Administrator,\\u0026quot; it said, \\u0026quot;How can I die when I will live on through you?\\u0026quot; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeath has struck a deal with us. In all its arcane knowledge, it knows a way to live on after its death: it has chosen me to be its heir. It is a choice between the eternal agony of humanity and a pain suffered only until we know enough to repair our tired species. It is not a choice at all. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn this day, I will become Death. This last evil I must allow us all to suffer patiently. Be bold, for one day soon, we will have won the battle waged by both us and our ancestors emerging from the primordial soup: the struggle for Life Everlasting.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis gives some more answers. Everything that the Foundation\\u0026#39;s done and is doing is all for the purpose of facilitating this Subdirective, the end of the threat of Death to all living beings, freeing the world from fear and uncertainty. But then why aren\\u0026#39;t they just doing that now? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, have you ever read any tales from the \\u003Ca href=\\\"http://www.scp-wiki.net/end-of-death-hub\\\"\\u003EEnd Of Death canon?\\u003C/a\\u003E There\\u0026#39;s your answer. When humans are faced with immortality, there\\u0026#39;s a whole lot of complications. Aging, decay, population, all the other lifeforms not dying. If humans were to all become immortal tomorrow, it wouldn\\u0026#39;t end well. That\\u0026#39;s why the Foundation\\u0026#39;s delaying the Subdirective. They need to find answers to the questions posed by immortality, making sure that when Death is no more, it will be a true paradise, not one with catches and people left out, suffering as the few enjoy true immortality. They\\u0026#39;re waiting until they have the technology, and then they\\u0026#39;ll terminate 4260 for good, kicking in an Omega-K that hopefully won\\u0026#39;t be an issue. Do they like waiting? No. The Subdirective is in their grasp. But they know they have to. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd thus ends SCP-4260, a tale of the Foundation\\u0026#39;s ultimate goal and the means to get there. I hope this helped you understand this SCP better. Thank you all for reading, and memento mori.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?auto=webp\\u0026s=eb7e84b6777b9441cff986b491b9c844d2574ddb\", \"width\": 500, \"height\": 364}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bcae4878a092d9b918d961b1622fd9666b9ca968\", \"width\": 108, \"height\": 78}, {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=68c2ffe78e81071d4f95d8923cdb4f9e7a55c182\", \"width\": 216, \"height\": 157}, {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a9ffa511f3dab1524f43720275a5f4e58c725258\", \"width\": 320, \"height\": 232}], \"variants\": {}, \"id\": \"wqpxqRTyCw4m0-4ES2XLY4f4UxAxlhBTybhU-CTz2uo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwfesx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Brewsterion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwfesx/scp4260_the_subdirective/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwfesx/scp4260_the_subdirective/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559592897.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello everyone,\\n\\n\\u0026#x200B;\\n\\nI wanted to talk a bit about the rift between the performance of Beams and Cannons that is getting bigger and bigger.\\n\\n\\u0026#x200B;\\n\\nAs some who have longer played the game will remember, when the game was lunched it quickly got the nickname Cannons Online. Later on we had the Beam and Plasma Console Meta and now we are back to Cannons.\\n\\n\\u0026#x200B;\\n\\nIf we compare the average setup of today, an Epic Beam Array and an Epic Dual Cannon (both Phasers and the same Mods CrtD/Dm\\\\] \\\\[Dmg\\\\]x4) we can see a difference of 951 or generously rounded 1K DPS.\\n\\n\\u0026#x200B;\\n\\n(**Note:** I used Beam Arrays to show the difference because we still don't have enough variants of Omni-Dicretional Beams of every Energy type to be able to equip a 4x4 ship and have an efficient Dual Beam Bank Setup.)\\n\\n\\u0026#x200B;\\n\\nIn the past we argued that the difference was due to the ease of using Beams and to be fair a Beam Boat is easier to fly, but how to learn to use cannons is also no mystery.\\n\\n\\u0026#x200B;\\n\\nWhat has changed however are the Traits that support Beams vs. Cannons and the Cannon Traits have become severely better not to mention that the Boff ability of Beam Fire at Will with it's duration of 10 seconds and 20 seconds global cooldown is worse than the one for Rapid Fire or Scatter Volley with the same duration of 10 seconds but only a global cooldown of 15 seconds.\\n\\n\\u0026#x200B;\\n\\nIf we now look at the Traits we have for Cannons \\\"Go for the Kill\\\", \\\"Preferential Targeting\\\", \\\"Withering Barrage\\\", and for Beams \\\"Redirecting Arrays\\\" and \\\"Entwined Tactical Matrices\\\".\\n\\n\\u0026#x200B;\\n\\nSo for once we have a fantastic combo for Rapid Fire, with Go for the Kill and Preferential Targeting and the same is true for Scatter Volley with Withering Barrage both extends the duration of Rapid Fire (indefinitely by causing critical hits) and Scatter Volley (for four seconds).\\n\\n\\u0026#x200B;\\n\\n(**Note:** I know that Go for the Kill is super expensive and most players will never get it, but Withering Barrage is not and since it is an AOE attack it is most of the time the preferred Trait for cannons and you can buy the ships that have it in the C-Store.)\\n\\n\\u0026#x200B;\\n\\nOn the other side for Beams we have Redirecting Arrays which extends the duration of Beam Fire at Will by a Max of 15 seconds if you take constant damage, the problem however is that targets are dying so quickly that you basically never can take advantage of the duration increase.\\n\\n\\u0026#x200B;\\n\\nEntwined Tactical Matrices is an interesting Trait but I would only use it if I had none of the other Traits for Beams and Cannons but it really shines for Torp Builds allowing you to rain Torp Spreads on your target.\\n\\n\\u0026#x200B;\\n\\nSo why is it important to buff Beams, so for once there are a lot of ships that can only use Beams, and other ships that could potentially use cannons are so sluggish they simply can't move/turn fast enough to keep up and second it's not that great of an experience when you enter a STF and everything is dead in seconds.\\n\\nI have been on both sides nuke everything with my cannons before the rest of the team had a chance to do anything and I have seen the other side being the 5th wheel on the car.\\n\\n\\u0026#x200B;\\n\\n**At this point what can be done:**\\n\\nIncrease the base damage of Beams\\n\\nReduce the global cooldown of FAW to 15 seconds\\n\\nAlter Redirecting Arrays so the duration increase is reduced by maybe 50% but is not depending on taking constant damage.\\n\\n(I know this is very unlikely)\", \"author_fullname\": \"t2_gfwd5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The growing gab between Beams and Cannons\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwbfv6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559601797.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wanted to talk a bit about the rift between the performance of Beams and Cannons that is getting bigger and bigger.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs some who have longer played the game will remember, when the game was lunched it quickly got the nickname Cannons Online. Later on we had the Beam and Plasma Console Meta and now we are back to Cannons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf we compare the average setup of today, an Epic Beam Array and an Epic Dual Cannon (both Phasers and the same Mods CrtD/Dm] [Dmg]x4) we can see a difference of 951 or generously rounded 1K DPS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E I used Beam Arrays to show the difference because we still don\\u0026#39;t have enough variants of Omni-Dicretional Beams of every Energy type to be able to equip a 4x4 ship and have an efficient Dual Beam Bank Setup.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the past we argued that the difference was due to the ease of using Beams and to be fair a Beam Boat is easier to fly, but how to learn to use cannons is also no mystery.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat has changed however are the Traits that support Beams vs. Cannons and the Cannon Traits have become severely better not to mention that the Boff ability of Beam Fire at Will with it\\u0026#39;s duration of 10 seconds and 20 seconds global cooldown is worse than the one for Rapid Fire or Scatter Volley with the same duration of 10 seconds but only a global cooldown of 15 seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf we now look at the Traits we have for Cannons \\u0026quot;Go for the Kill\\u0026quot;, \\u0026quot;Preferential Targeting\\u0026quot;, \\u0026quot;Withering Barrage\\u0026quot;, and for Beams \\u0026quot;Redirecting Arrays\\u0026quot; and \\u0026quot;Entwined Tactical Matrices\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for once we have a fantastic combo for Rapid Fire, with Go for the Kill and Preferential Targeting and the same is true for Scatter Volley with Withering Barrage both extends the duration of Rapid Fire (indefinitely by causing critical hits) and Scatter Volley (for four seconds).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E I know that Go for the Kill is super expensive and most players will never get it, but Withering Barrage is not and since it is an AOE attack it is most of the time the preferred Trait for cannons and you can buy the ships that have it in the C-Store.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the other side for Beams we have Redirecting Arrays which extends the duration of Beam Fire at Will by a Max of 15 seconds if you take constant damage, the problem however is that targets are dying so quickly that you basically never can take advantage of the duration increase.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEntwined Tactical Matrices is an interesting Trait but I would only use it if I had none of the other Traits for Beams and Cannons but it really shines for Torp Builds allowing you to rain Torp Spreads on your target.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo why is it important to buff Beams, so for once there are a lot of ships that can only use Beams, and other ships that could potentially use cannons are so sluggish they simply can\\u0026#39;t move/turn fast enough to keep up and second it\\u0026#39;s not that great of an experience when you enter a STF and everything is dead in seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been on both sides nuke everything with my cannons before the rest of the team had a chance to do anything and I have seen the other side being the 5th wheel on the car.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAt this point what can be done:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIncrease the base damage of Beams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReduce the global cooldown of FAW to 15 seconds\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlter Redirecting Arrays so the duration increase is reduced by maybe 50% but is not depending on taking constant damage.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(I know this is very unlikely)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbfv6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bridgern\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwbfv6/the_growing_gab_between_beams_and_cannons/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwbfv6/the_growing_gab_between_beams_and_cannons/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559572997.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test avoid 401\", \"author_fullname\": \"t2_gbhji\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testagain3\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bw86r0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559578081.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest avoid 401\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw86r0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"erebusmaster\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bw86r0/testagain3/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559549281.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_teik0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"X5xjg5755\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 77, \"hide_score\": false, \"name\": \"t3_bw5s73\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_240?source=fallback\", \"height\": 234, \"width\": 426, \"scrubber_media_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_96\", \"dash_url\": \"https://v.redd.it/s7j0qhnb32231/DASHPlaylist.mpd\", \"duration\": 19, \"hls_url\": \"https://v.redd.it/s7j0qhnb32231/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UgBdgvQL7CGZ0x20Wf7IMOnF3wkO1xtpNXL1W4skdSE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559559448.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?format=pjpg\\u0026auto=webp\\u0026s=8f3632625940d92614b86de3baa00b4e513e4ca1\", \"width\": 640, \"height\": 352}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=9cd6401c64efd76cdecb4102c7eb0c424fe3dc67\", \"width\": 108, \"height\": 59}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=ecbb4c746658195f9309c3633bf1afb403d5f8d0\", \"width\": 216, \"height\": 118}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=e8f6509d25875f11e236b6291f30fb78f2650b85\", \"width\": 320, \"height\": 176}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=640\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=22a48248e037066d331290b3d7364be1a7615e04\", \"width\": 640, \"height\": 352}], \"variants\": {}, \"id\": \"-8_XkWX0CM_gb4MCXRpMpYFxNStsuDQsz1Bh8NYJiD0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw5s73\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ShiftyRider\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bw5s73/x5xjg5755/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/s7j0qhnb32231\", \"subreddit_subscribers\": 703, \"created_utc\": 1559530648.0, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_240?source=fallback\", \"height\": 234, \"width\": 426, \"scrubber_media_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_96\", \"dash_url\": \"https://v.redd.it/s7j0qhnb32231/DASHPlaylist.mpd\", \"duration\": 19, \"hls_url\": \"https://v.redd.it/s7j0qhnb32231/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_rpmhm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"whoaaa does the link work\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bvzhmk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/iTnjKpbA4mac1jgFlLry3EAicfoVm_TDGlxj83mJerc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559523455.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gifyourgame.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?auto=webp\\u0026s=11f7e16039a632def2a5529d21aa1417c31b3b23\", \"width\": 448, \"height\": 252}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8f2b73431c3a3affc064af6e24a3b5b2f276f220\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d32ebeb37a2315a6fd90ca7d96bfd47b34bd4dfb\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3b6b217ff52246acb0e9a98b30d81afaa91d415b\", \"width\": 320, \"height\": 180}], \"variants\": {}, \"id\": \"Yl6MCedx3BkJMCf4V29laFNcXVd7gNJz8-4LknIKiZg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvzhmk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"snowguy13\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvzhmk/whoaaa_does_the_link_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.gifyourgame.com/ComposedBalmyQuale\", \"subreddit_subscribers\": 703, \"created_utc\": 1559494655.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Defesa do Botafogo\\n\\n\\u003EA defesa do Botafogo apresentou imagens de v\\u00eddeo ao Tribunal que comprovariam que o \\u00e1rbitro autorizou o rein\\u00edcio da partida antes de ser chamado pelo VAR para mudar sua decis\\u00e3o. E por j\\u00e1 ter reiniciado o jogo, ele n\\u00e3o poderia mais voltar atr\\u00e1s e marcar o p\\u00eanalti contra o Botafogo.\\n\\nDefesa da CBF\\n\\n\\u003EAs imagens mostram que o \\u00e1rbitro pode sim ter induzido o rein\\u00edcio ao abaixar o bra\\u00e7o que indicava tiro livre indireto e ao correr na dire\\u00e7\\u00e3o do meio campo.\\n\\n\\u003EO problema \\u00e9 que as regras do jogo, as mesmas que o Botafogo cita para sustentar sua den\\u00fancia, estabelecem que o uso do apito \\u00e9 necess\\u00e1rio para reiniciar o jogo ap\\u00f3s um cart\\u00e3o amarelo ou vermelho.\", \"author_fullname\": \"t2_itdhw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvz153\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559520978.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDefesa do Botafogo\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA defesa do Botafogo apresentou imagens de v\\u00eddeo ao Tribunal que comprovariam que o \\u00e1rbitro autorizou o rein\\u00edcio da partida antes de ser chamado pelo VAR para mudar sua decis\\u00e3o. E por j\\u00e1 ter reiniciado o jogo, ele n\\u00e3o poderia mais voltar atr\\u00e1s e marcar o p\\u00eanalti contra o Botafogo.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EDefesa da CBF\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAs imagens mostram que o \\u00e1rbitro pode sim ter induzido o rein\\u00edcio ao abaixar o bra\\u00e7o que indicava tiro livre indireto e ao correr na dire\\u00e7\\u00e3o do meio campo.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EO problema \\u00e9 que as regras do jogo, as mesmas que o Botafogo cita para sustentar sua den\\u00fancia, estabelecem que o uso do apito \\u00e9 necess\\u00e1rio para reiniciar o jogo ap\\u00f3s um cart\\u00e3o amarelo ou vermelho.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvz153\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"heronb\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvz153/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvz153/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559492178.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\[test.\\\\]\\\\[[https://www.youtube.com/watch?v=bV87CcSYqdY](https://www.youtube.com/watch?v=bV87CcSYqdY)\\\\]\", \"author_fullname\": \"t2_biesn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvks18\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559424409.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[test.][\\u003Ca href=\\\"https://www.youtube.com/watch?v=bV87CcSYqdY\\\"\\u003Ehttps://www.youtube.com/watch?v=bV87CcSYqdY\\u003C/a\\u003E]\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?auto=webp\\u0026s=4fcf18ab1d69228f991ceb9d9f5606e2386868fb\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3bb1140dbbc2d30590d93de9a8b7230bd25bf14a\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5eb48232b460293d9b5be807983a1aea3f5d2918\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ab14b38064578527c909effc6801637092d4e28f\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"qgPzrYjBE0VHRhxPsGYR8V92NeWVLuVmSZC7vhukjek\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvks18\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dramaticablacka\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvks18/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvks18/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559395609.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"My Ryzentosh is currently very stable, with the only 'non-workers' being iMessage, Siri, FaceTime and sort of Handoff (only works one way).\\n\\n\\u0026#x200B;\\n\\nAnyhow, regarding the issue I described the title, two settings in System Preferences, namely:\\n\\n\\u0026#x200B;\\n\\n1. **Find my Mac** under the iCloud tab\\n2. **Allow guest user to use this computer** under the Users \\u0026 Groups tab\\n\\n\\u0026#x200B;\\n\\nalways get reset to their defaults after a restart, or powering up after a full shutdown. The 'Find my Mac' option always gets unchecked and 'Allow guest user to use this computer' gets checked.\\n\\n\\u0026#x200B;\\n\\nI would like to keep the Find my Mac setting permanently on and to keep the guest account permanently off. Is there a way I can achieve this?\\n\\n\\u0026#x200B;\\n\\nAny help is appreciated, specs are summed up in the table below. \\ud83d\\udda5\\ud83d\\udda5\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n|**CPU**|AMD Ryzen 1800x|\\n|:-:|:-:|\\n|**Motherboard**|ASUS Crosshair VI Hero|\\n|**GPU**|Zotac Nvidia gtx 1070 (reference cooler)|\\n|**Memory**|16gb - 2x Corsair dominator platinum 8gb 3200mhz|\\n|**OS install drive**|Crucial MX500 250gb SSD|\\n|**Wifi \\u0026 Bluetooth**|iMac A1419BCM94360CD card with PCI-e adapter|\", \"author_fullname\": \"t2_ttqmp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Settings under System Preferences get rest after shutdown \\u0026 restarts\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvk747\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559391772.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559420174.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy Ryzentosh is currently very stable, with the only \\u0026#39;non-workers\\u0026#39; being iMessage, Siri, FaceTime and sort of Handoff (only works one way).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyhow, regarding the issue I described the title, two settings in System Preferences, namely:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFind my Mac\\u003C/strong\\u003E under the iCloud tab\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EAllow guest user to use this computer\\u003C/strong\\u003E under the Users \\u0026amp; Groups tab\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealways get reset to their defaults after a restart, or powering up after a full shutdown. The \\u0026#39;Find my Mac\\u0026#39; option always gets unchecked and \\u0026#39;Allow guest user to use this computer\\u0026#39; gets checked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to keep the Find my Mac setting permanently on and to keep the guest account permanently off. Is there a way I can achieve this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help is appreciated, specs are summed up in the table below. \\ud83d\\udda5\\ud83d\\udda5\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAMD Ryzen 1800x\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EASUS Crosshair VI Hero\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EGPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EZotac Nvidia gtx 1070 (reference cooler)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16gb - 2x Corsair dominator platinum 8gb 3200mhz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EOS install drive\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECrucial MX500 250gb SSD\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EWifi \\u0026amp; Bluetooth\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EiMac A1419BCM94360CD card with PCI-e adapter\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvk747\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Pepi28t-50\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvk747/settings_under_system_preferences_get_rest_after/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvk747/settings_under_system_preferences_get_rest_after/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559391374.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1141dc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Graphic found in a 2015 Terra Prime preview is the same as the ones around Area 18\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bvf8q3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit) GIF by @robotdude on Gfycat. Discover more starcitizen GIFs on Gfycat\", \"title\": \"Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit)\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ActualRightColt-size_restricted.gif\", \"thumbnail_height\": 250}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bvf8q3\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/c9_Wg6yf03hoBaNzKW8V4C6c3LjGbX6dNXDj3mUHy7c.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559379402.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gfycat.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?format=png8\\u0026s=c0569ed9f587376e57d01e8ef5ba86d518df8771\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=3ccb8ac692e06a59918fb1799b6990e338172f5f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=16d097c9fe9c24465632bcd6e014f66b8b1bd2fa\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=d46c61ee71e7f625e6f8ca58551a1b74847abe98\", \"width\": 320, \"height\": 179}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?s=634e3b5adfe3dcaef794e3b30a8b35216951ab36\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026crop=smart\\u0026s=c163952d7527278194216f9845477ed70ede7fca\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026crop=smart\\u0026s=f3ef9b10b9219bffbead65215e7f8a4949f67aba\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026crop=smart\\u0026s=04ce94a6ab48fe49f6b9265bc3583d2f18cbe921\", \"width\": 320, \"height\": 179}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?format=mp4\\u0026s=7a2fa61a333d02e104ffc485e595b9f04824ea67\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026format=mp4\\u0026s=b008d417dc5bc1f2f9203612293cd38c9f98dade\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026format=mp4\\u0026s=2d9f8c04c8ab09d0abdc59a8ea407b593d82ad82\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026format=mp4\\u0026s=2ac9548358af384cf7bf04397f61fea396a9bda5\", \"width\": 320, \"height\": 179}]}}, \"id\": \"OA1SrhwRQdwHUJgo4zOwQTEZegw59-SLQj-ZypHdhoM\"}], \"reddit_video_preview\": {\"fallback_url\": \"https://v.redd.it/oc4537uf8n131/DASH_360\", \"height\": 360, \"width\": 640, \"scrubber_media_url\": \"https://v.redd.it/oc4537uf8n131/DASH_96\", \"dash_url\": \"https://v.redd.it/oc4537uf8n131/DASHPlaylist.mpd\", \"duration\": 9, \"hls_url\": \"https://v.redd.it/oc4537uf8n131/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvf8q3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ehriqhck\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvf8q3/graphic_found_in_a_2015_terra_prime_preview_is/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://gfycat.com/actualrightcolt\", \"subreddit_subscribers\": 703, \"created_utc\": 1559350602.0, \"media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit) GIF by @robotdude on Gfycat. Discover more starcitizen GIFs on Gfycat\", \"title\": \"Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit)\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ActualRightColt-size_restricted.gif\", \"thumbnail_height\": 250}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Title** \\nText\\n\\n\\u0026nbsp;\\n\\n**Title** \\nText\", \"author_fullname\": \"t2_16lvip\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvd605\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559366978.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ETitle\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nText\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETitle\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nText\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvd605\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CT-24601\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvd605/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvd605/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559338178.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"So I've noticed that when I pressed TAB to view the teams, it also says a lot about the MMR of the players in the match. There are a couple of rules though, before figuring out who has the lowest and highest MMR. The positioning of the portrait is based on MMR, far left being the lowest rated and far right being highest rated.\\n\\n---\\n\\n# Rule #1: You are always at the bottom left.\\n\\nThis one is pretty simple. No matter what, you will always be on the bottom left when you press TAB to view the teams. [I drew it out for you, in case you want to see my beautiful art.](https://i.imgur.com/IETyq6l.jpg) Because of this, you cannot tell whether you are the lowest or highest MMR on your team.\\n\\n---\\n\\n# Rule #2: Groups are to the right, and ordered alphabetically.\\n\\nSpeaks for itself, but groups of any sizes are placed to the far right and are organized alphabetically. The smaller the group, the easier it is for you to determine who has the lowest/highest MMR on that team. [Here's my drawing as an example for a duo queue.](https://i.imgur.com/PU1X5G4.jpg)\\n\\nAlso I should clarify that it's very possible that one of the players in the duo can have the highest or lowest MMR, but since groups are always to the right and alphabetically, it's impossible to tell if which group member has a higher or lower MMR.\\n\\n\\u0026nbsp;\\n\\n[In this screenshot, you can see the enemy team is a 6-group and is organized alphabetically.](https://i.imgur.com/p7nTqmK.png) You cannot determine who has the highest or lowest MMR from this 6-stack.\\n\\n---\\n\\n#### All solo queue.\\n\\nIf there are no groups, then seeing who has the highest rated MMR on both teams is easier. Simply look left to right to see from lowest to highest MMR on a team. Do keep in mind that since you are always positioned bottom left, you cannot tell what MMR you are, only your teammates. However, you can find out by asking the highest rated MMR player on your team where you are positioned on their screen, and that will help you figure out if where you stand in your team. [Another drawing.](https://i.imgur.com/bMIQr7D.jpg)\\n\\n---\\n\\n#### Decayed Accounts\\n\\nThe positioning of the portraits does not take into account the SR of the person, but the MMR. For instance, you can have a player that is around 4.4k MMR, but decayed to Masters. In a 4.1k average game, it will position this \\\"Masters\\\" player above GM's.\\n\\n\\nAn example of this is [this screenshot.](https://i.imgur.com/c4yrmNB.jpg) The player Valentine had decayed but is still positioned higher due to having a higher MMR. I only have [this clip](https://clips.twitch.tv/SoftDoubtfulFriseePrimeMe) that he explains that he hasn't played in a while (which would hint at him being decayed). If any of you can find any extra examples of decayed accounts and their portraits positioning, then share it please! I know it's a thing but I don't have much to show.\\n\\n---\\n\\nAlso, if you leave and rejoin a competitive match, the positioning of all portraits gets messed up for some reason. Not sure why, but that's a thing.\\n\\n---\\n\\n[Last example](https://i.imgur.com/NZJQQgo.jpg) On the enemy team, you can see that groups ignore MMR and are placed to the right and are alphabetically organized. It would appear that Pigeon would have the highest MMR on the enemy team (I'm taking a guess that the duo isn't decayed.)\\n\\n\\nOn the friendly team, the Masters players are on the left and it's safe to say that those aren't decayed accounts either. Neziwi is positioned to have a higher MMR out of the three and they are Grandmaster. Then of course the duo ignored the MMR rule and is set far right, however it would be safe to say that Zerg would be the highest rated MMR. If you are Dino in this scenario, you'd have to ask other teammates where you're positioned when they press TAB to figure out where you stand on your team.\\n\\n---\\n\\nHope this wasn't confusing, I suck at explaining things and well I always wanted to share this.\", \"author_fullname\": \"t2_3v8bc9yn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"title\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvbjmw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559358317.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I\\u0026#39;ve noticed that when I pressed TAB to view the teams, it also says a lot about the MMR of the players in the match. There are a couple of rules though, before figuring out who has the lowest and highest MMR. The positioning of the portrait is based on MMR, far left being the lowest rated and far right being highest rated.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ERule #1: You are always at the bottom left.\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EThis one is pretty simple. No matter what, you will always be on the bottom left when you press TAB to view the teams. \\u003Ca href=\\\"https://i.imgur.com/IETyq6l.jpg\\\"\\u003EI drew it out for you, in case you want to see my beautiful art.\\u003C/a\\u003E Because of this, you cannot tell whether you are the lowest or highest MMR on your team.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003ERule #2: Groups are to the right, and ordered alphabetically.\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ESpeaks for itself, but groups of any sizes are placed to the far right and are organized alphabetically. The smaller the group, the easier it is for you to determine who has the lowest/highest MMR on that team. \\u003Ca href=\\\"https://i.imgur.com/PU1X5G4.jpg\\\"\\u003EHere\\u0026#39;s my drawing as an example for a duo queue.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso I should clarify that it\\u0026#39;s very possible that one of the players in the duo can have the highest or lowest MMR, but since groups are always to the right and alphabetically, it\\u0026#39;s impossible to tell if which group member has a higher or lower MMR.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/p7nTqmK.png\\\"\\u003EIn this screenshot, you can see the enemy team is a 6-group and is organized alphabetically.\\u003C/a\\u003E You cannot determine who has the highest or lowest MMR from this 6-stack.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EAll solo queue.\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003EIf there are no groups, then seeing who has the highest rated MMR on both teams is easier. Simply look left to right to see from lowest to highest MMR on a team. Do keep in mind that since you are always positioned bottom left, you cannot tell what MMR you are, only your teammates. However, you can find out by asking the highest rated MMR player on your team where you are positioned on their screen, and that will help you figure out if where you stand in your team. \\u003Ca href=\\\"https://i.imgur.com/bMIQr7D.jpg\\\"\\u003EAnother drawing.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch4\\u003EDecayed Accounts\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003EThe positioning of the portraits does not take into account the SR of the person, but the MMR. For instance, you can have a player that is around 4.4k MMR, but decayed to Masters. In a 4.1k average game, it will position this \\u0026quot;Masters\\u0026quot; player above GM\\u0026#39;s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn example of this is \\u003Ca href=\\\"https://i.imgur.com/c4yrmNB.jpg\\\"\\u003Ethis screenshot.\\u003C/a\\u003E The player Valentine had decayed but is still positioned higher due to having a higher MMR. I only have \\u003Ca href=\\\"https://clips.twitch.tv/SoftDoubtfulFriseePrimeMe\\\"\\u003Ethis clip\\u003C/a\\u003E that he explains that he hasn\\u0026#39;t played in a while (which would hint at him being decayed). If any of you can find any extra examples of decayed accounts and their portraits positioning, then share it please! I know it\\u0026#39;s a thing but I don\\u0026#39;t have much to show.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EAlso, if you leave and rejoin a competitive match, the positioning of all portraits gets messed up for some reason. Not sure why, but that\\u0026#39;s a thing.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/NZJQQgo.jpg\\\"\\u003ELast example\\u003C/a\\u003E On the enemy team, you can see that groups ignore MMR and are placed to the right and are alphabetically organized. It would appear that Pigeon would have the highest MMR on the enemy team (I\\u0026#39;m taking a guess that the duo isn\\u0026#39;t decayed.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the friendly team, the Masters players are on the left and it\\u0026#39;s safe to say that those aren\\u0026#39;t decayed accounts either. Neziwi is positioned to have a higher MMR out of the three and they are Grandmaster. Then of course the duo ignored the MMR rule and is set far right, however it would be safe to say that Zerg would be the highest rated MMR. If you are Dino in this scenario, you\\u0026#39;d have to ask other teammates where you\\u0026#39;re positioned when they press TAB to figure out where you stand on your team.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EHope this wasn\\u0026#39;t confusing, I suck at explaining things and well I always wanted to share this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?auto=webp\\u0026s=b55948b8997a97d3a4d66b2c1107e618805eefb3\", \"width\": 1368, \"height\": 672}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bd56a360da0819da36aa8dbb90b7c0c1e0bef366\", \"width\": 108, \"height\": 53}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=af8d8a88bfb68ba72a21b510ad22ecdabdcb39f8\", \"width\": 216, \"height\": 106}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=301a2df728199828321008fe18ecc7ff7a66e9cf\", \"width\": 320, \"height\": 157}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d043fabb01f80aafb92f35a196b837f4bec18e6c\", \"width\": 640, \"height\": 314}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=c5b40409bf6a7dbf0368810654efb27d971fbfa4\", \"width\": 960, \"height\": 471}, {\"url\": \"https://external-preview.redd.it/JyNQGosK0V7M0s-xS4hh8WBPcExVOJWdnUEewunnXZc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9103804bad1528f461cb8a9ffca3352914282dd3\", \"width\": 1080, \"height\": 530}], \"variants\": {}, \"id\": \"ZROe6eIaHJYbMLtqMVopuCGne3uCW67NGQzR28nxfLg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvbjmw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ieatwatermelon3\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvbjmw/title/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvbjmw/title/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559329517.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3g10qxu5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make The Galaxy Great again\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bv7m33\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/dVpFA5GDGB82WiRJ2E5_reqsaTqO4eVbprgMcAheTVo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559338611.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?auto=webp\\u0026s=5032fcfcb8c9b8b4d3d0c91db5ea099c39ccbde2\", \"width\": 720, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bf753c7677d1de410675298b0a57dec27f54ef64\", \"width\": 108, \"height\": 162}, {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3c3ae5535af89163e046ea2262caea94b92e0e29\", \"width\": 216, \"height\": 324}, {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c32e901c934b5a250c6e71296710aca7d16554d9\", \"width\": 320, \"height\": 480}, {\"url\": \"https://preview.redd.it/gcdb8g62vj131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a8bc03446597a0d715fd15b68e9fb4fe6d59268b\", \"width\": 640, \"height\": 960}], \"variants\": {}, \"id\": \"hNbbNAjQxsHCybW2rgZJTQKwTBfWIs3zP9KEP7GFxCg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv7m33\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"binjajer\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv7m33/make_the_galaxy_great_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/gcdb8g62vj131.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559309811.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\n[Join the Cause!](https://i.redd.it/56dsp8netj131.jpg)\\n\\n\\u0026#x200B;\\n\\nTired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens?\\n\\nCheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.)\\n\\n[https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/](https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/)\\n\\nSquadron discord details will be disbursed upon application.\\n\\nFly bigly, commanders!\\n\\n[Make the Galaxy Great Again!](https://i.redd.it/se3vvpg3tj131.jpg)\", \"author_fullname\": \"t2_3g10qxu5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make the Galaxy Great Again!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"56dsp8netj131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 720, \"x\": 1280, \"u\": \"https://i.redd.it/56dsp8netj131.jpg\"}, \"m\": \"image/jpg\", \"id\": \"56dsp8netj131\"}, \"se3vvpg3tj131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1080, \"x\": 720, \"u\": \"https://i.redd.it/se3vvpg3tj131.jpg\"}, \"m\": \"image/jpg\", \"id\": \"se3vvpg3tj131\"}}, \"name\": \"t3_bv7huc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/4IFvYtwaO9I4-fDj96eb2Tl7zjVyhI5H9gPpozkKK08.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559337944.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/56dsp8netj131.jpg\\\"\\u003EJoin the Cause!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\\"\\u003Ehttps://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESquadron discord details will be disbursed upon application.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFly bigly, commanders!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/se3vvpg3tj131.jpg\\\"\\u003EMake the Galaxy Great Again!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv7huc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"binjajer\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559309144.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#Stats Report\\n\\nAll activity was compiled from the last 1 days of data\\n\\n***\\n##Upcoming Cookie Days\\n\\n|**user**|**cookie day**|\\n|:-:|:-:|\\n|Engvar|2017-6-26|\\n|bioszombie|2017-7-3|\\n|BrentIsAbel|2018-7-6|\\n\\n\\n\\n\\n***\\n##r/edefined\\n\\n|**mean age**|**median age**|**users kicked**|**users w/o siblings**|**kicked per week**|**kicked user of the month**|**position history graph**|**kick history graph**|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|1.04|0.9|2328|43|20%|jiggs_|[# graph](http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.pdf)|[kick graph](http://intotheskies.com/edef/stats/2019-05-30/poshistory_all_graph.pdf)|\\n\\n\\n\\n\\n***\\n##[Users](http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.png)\\n\\n|**#**|**+/-**|**user**|**#'s moved**|**#'s / botrun**|**age**|**# by add day**|**biggest jump**|**botruns survived**|**botruns moved**|**siblings**|**buddy of the month**|**# history graph**|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|1|+0|CaptainPedge|35|1.94|2.61|#1|15|117|5|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Vic_the_Dick|[graph](http://intotheskies.com/edef/stats/2019-05-30/CaptainPedge_poshistory_graph.pdf)|\\n|2|+0|LukeWarmCage|38|0.51|2.22|#2|18|112|12|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|ticktockalock|[graph](http://intotheskies.com/edef/stats/2019-05-30/LukeWarmCage_poshistory_graph.pdf)|\\n|3|+0|boomheadshot7|37|0.5|2.21|#3|16|111|13|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|BrentIsAbel|[graph](http://intotheskies.com/edef/stats/2019-05-30/boomheadshot7_poshistory_graph.pdf)|\\n|4|+0|hornplayerKC|51|0.69|2.21|#4|23|111|13|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|doncicismydaddy|[graph](http://intotheskies.com/edef/stats/2019-05-30/hornplayerKC_poshistory_graph.pdf)|\\n|5|+0|Kinighos|53|0.73|2.19|#5|23|110|15|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|And_So_It_Goess|[graph](http://intotheskies.com/edef/stats/2019-05-30/Kinighos_poshistory_graph.pdf)|\\n|6|+0|Lizzibabe|81|1.11|2.19|#6|38|110|16|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|DogfoodEnforcer|[graph](http://intotheskies.com/edef/stats/2019-05-30/Lizzibabe_poshistory_graph.pdf)|\\n|7|+0|Ravenwald|74|1.03|2.18|#7|38|109|16|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|moreawkwardthenyou|[graph](http://intotheskies.com/edef/stats/2019-05-30/Ravenwald_poshistory_graph.pdf)|\\n|8|+0|emrickgj|81|1.14|2.16|#8|27|108|19|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|fartfacepooper|[graph](http://intotheskies.com/edef/stats/2019-05-30/emrickgj_poshistory_graph.pdf)|\\n|9|+0|choontang|71|1.04|2.1|#9|32|105|21|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Hippo_Singularity|[graph](http://intotheskies.com/edef/stats/2019-05-30/choontang_poshistory_graph.pdf)|\\n|10|+0|PM-YOUR-PMS|48|0.72|2.08|#10|11|104|20|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Phaethonas|[graph](http://intotheskies.com/edef/stats/2019-05-30/PM-YOUR-PMS_poshistory_graph.pdf)|\\n|11|+0|Engvar|82|0.89|1.94|#15|30|96|28|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Error404NoUserFound|[graph](http://intotheskies.com/edef/stats/2019-05-30/Engvar_poshistory_graph.pdf)|\\n|12|+0|bioszombie|83|0.91|1.93|#16|29|95|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|1wrx2subarus|[graph](http://intotheskies.com/edef/stats/2019-05-30/bioszombie_poshistory_graph.pdf)|\\n|13|+0|draftstone|55|0.61|1.91|#17|8|94|28|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|tiffanydisasterxoxo|[graph](http://intotheskies.com/edef/stats/2019-05-30/draftstone_poshistory_graph.pdf)|\\n|14|+0|hitch21|64|0.71|1.91|#18|10|94|28|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|EarlNeonCog|[graph](http://intotheskies.com/edef/stats/2019-05-30/hitch21_poshistory_graph.pdf)|\\n|15|+0|booziwan|56|0.64|1.87|#19|9|92|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Kusmariini|[graph](http://intotheskies.com/edef/stats/2019-05-30/booziwan_poshistory_graph.pdf)|\\n|16|+0|MinagiV|59|0.67|1.87|#20|12|92|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|FerniWrites|[graph](http://intotheskies.com/edef/stats/2019-05-30/MinagiV_poshistory_graph.pdf)|\\n|17|+0|eliporter877|65|0.76|1.83|#21|16|90|28|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|DaOrkiestSalamander|[graph](http://intotheskies.com/edef/stats/2019-05-30/eliporter877_poshistory_graph.pdf)|\\n|18|+0|And_So_It_Goess|65|0.78|2.04|#13|20|87|28|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Kinighos|[graph](http://intotheskies.com/edef/stats/2019-05-30/And_So_It_Goess_poshistory_graph.pdf)|\\n|19|+0|JorgeAmVF|90|1.06|1.81|#22|34|89|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|AcePhoenixGamer|[graph](http://intotheskies.com/edef/stats/2019-05-30/JorgeAmVF_poshistory_graph.pdf)|\\n|20|+0|opticalshadow|103|1.21|1.81|#23|41|89|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|GreatDane666|[graph](http://intotheskies.com/edef/stats/2019-05-30/opticalshadow_poshistory_graph.pdf)|\\n|21|+0|moreawkwardthenyou|66|0.82|1.72|#24|18|84|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Ravenwald|[graph](http://intotheskies.com/edef/stats/2019-05-30/moreawkwardthenyou_poshistory_graph.pdf)|\\n|22|+0|1wrx2subarus|87|1.09|1.72|#25|33|84|32|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|bioszombie|[graph](http://intotheskies.com/edef/stats/2019-05-30/1wrx2subarus_poshistory_graph.pdf)|\\n|23|+0|Phaethonas|72|0.91|1.7|#26|19|83|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|PM-YOUR-PMS|[graph](http://intotheskies.com/edef/stats/2019-05-30/Phaethonas_poshistory_graph.pdf)|\\n|24|+0|xTMT|80|1.01|1.7|#27|26|83|31|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Cowbeller|[graph](http://intotheskies.com/edef/stats/2019-05-30/xTMT_poshistory_graph.pdf)|\\n|25|+0|medes24|69|0.91|1.64|#28|19|80|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|TheFern33|[graph](http://intotheskies.com/edef/stats/2019-05-30/medes24_poshistory_graph.pdf)|\\n|26|+0|fartfacepooper|55|0.74|1.61|#30|8|78|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|emrickgj|[graph](http://intotheskies.com/edef/stats/2019-05-30/fartfacepooper_poshistory_graph.pdf)|\\n|27|+0|YourAmishNeighbor|67|0.92|1.59|#31|13|77|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Henchman29|[graph](http://intotheskies.com/edef/stats/2019-05-30/YourAmishNeighbor_poshistory_graph.pdf)|\\n|28|+0|SJC-Caron|49|0.69|1.55|#32|9|75|27|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|dishonorable|[graph](http://intotheskies.com/edef/stats/2019-05-30/SJC-Caron_poshistory_graph.pdf)|\\n|29|+0|CNNsPrimarySource|46|0.66|1.53|#33|8|74|27|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|n3gd0|[graph](http://intotheskies.com/edef/stats/2019-05-30/CNNsPrimarySource_poshistory_graph.pdf)|\\n|30|+0|TheFern33|56|0.88|1.42|#34|12|68|29|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|medes24|[graph](http://intotheskies.com/edef/stats/2019-05-30/TheFern33_poshistory_graph.pdf)|\\n|31|+0|n3gd0|53|0.84|1.4|#35|8|67|30|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|CNNsPrimarySource|[graph](http://intotheskies.com/edef/stats/2019-05-30/n3gd0_poshistory_graph.pdf)|\\n|32|+0|tecrogue|55|0.87|1.4|#36|9|67|30|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|fighterace00|[graph](http://intotheskies.com/edef/stats/2019-05-30/tecrogue_poshistory_graph.pdf)|\\n|33|+0|Rougefarie|58|0.92|1.4|#37|11|67|30|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|GotZeroFucks2Give|[graph](http://intotheskies.com/edef/stats/2019-05-30/Rougefarie_poshistory_graph.pdf)|\\n|34|+0|Eurotriangle|54|0.87|1.38|#38|10|66|30|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|esoper1976|[graph](http://intotheskies.com/edef/stats/2019-05-30/Eurotriangle_poshistory_graph.pdf)|\\n|35|+0|biffpower3|52|0.95|1.24|#39|6|59|29|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|the_dank_666|[graph](http://intotheskies.com/edef/stats/2019-05-30/biffpower3_poshistory_graph.pdf)|\\n|36|+0|MrNorc|58|1.05|1.24|#40|9|59|29|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|p5yk0t1km1r4ge|[graph](http://intotheskies.com/edef/stats/2019-05-30/MrNorc_poshistory_graph.pdf)|\\n|37|+0|Hippo_Singularity|63|1.21|1.16|#41|14|56|31|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|choontang|[graph](http://intotheskies.com/edef/stats/2019-05-30/Hippo_Singularity_poshistory_graph.pdf)|\\n|38|+0|Vic_the_Dick|55|1.08|1.15|#42|6|55|30|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|CaptainPedge|[graph](http://intotheskies.com/edef/stats/2019-05-30/Vic_the_Dick_poshistory_graph.pdf)|\\n|39|+0|the_dank_666|60|1.18|1.15|#43|8|55|30|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|biffpower3|[graph](http://intotheskies.com/edef/stats/2019-05-30/the_dank_666_poshistory_graph.pdf)|\\n|40|+0|glorious_albus|58|1.21|1.07|#44|8|52|28|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|fuel126|[graph](http://intotheskies.com/edef/stats/2019-05-30/glorious_albus_poshistory_graph.pdf)|\\n|41|+0|Lorddragonfang|51|1.09|1.05|#45|8|51|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|kurtn0tk1rk|[graph](http://intotheskies.com/edef/stats/2019-05-30/Lorddragonfang_poshistory_graph.pdf)|\\n|42|+0|Sicarius_Tacet|51|1.09|1.05|#46|8|51|27|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|chaosdemonhu|[graph](http://intotheskies.com/edef/stats/2019-05-30/Sicarius_Tacet_poshistory_graph.pdf)|\\n|43|+0|Maxiscoolerthanyou|50|1.09|1.03|#47|7|50|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|schludy|[graph](http://intotheskies.com/edef/stats/2019-05-30/Maxiscoolerthanyou_poshistory_graph.pdf)|\\n|44|+0|Kusmariini|48|1.07|1.01|#48|7|49|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|booziwan|[graph](http://intotheskies.com/edef/stats/2019-05-30/Kusmariini_poshistory_graph.pdf)|\\n|45|+0|BrentIsAbel|53|1.29|0.92|#49|13|45|24|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|boomheadshot7|[graph](http://intotheskies.com/edef/stats/2019-05-30/BrentIsAbel_poshistory_graph.pdf)|\\n|46|+0|misterpyrrhuloxia|71|1.77|0.9|#50|26|44|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|TastyTacoN1nja|[graph](http://intotheskies.com/edef/stats/2019-05-30/misterpyrrhuloxia_poshistory_graph.pdf)|\\n|47|+0|Sickened_but_curious|77|1.93|0.9|#51|30|44|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Willowx|[graph](http://intotheskies.com/edef/stats/2019-05-30/Sickened_but_curious_poshistory_graph.pdf)|\\n|48|+0|fighterace00|85|2.12|0.9|#52|34|44|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|tecrogue|[graph](http://intotheskies.com/edef/stats/2019-05-30/fighterace00_poshistory_graph.pdf)|\\n|49|+0|Dystopian_Dreamer|62|1.59|0.88|#53|19|43|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|ClogsInBronteland|[graph](http://intotheskies.com/edef/stats/2019-05-30/Dystopian_Dreamer_poshistory_graph.pdf)|\\n|50|+0|Willowx|63|1.62|0.88|#54|20|43|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Sickened_but_curious|[graph](http://intotheskies.com/edef/stats/2019-05-30/Willowx_poshistory_graph.pdf)|\\n|51|+0|p5yk0t1km1r4ge|76|1.95|0.88|#55|29|43|24|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|MrNorc|[graph](http://intotheskies.com/edef/stats/2019-05-30/p5yk0t1km1r4ge_poshistory_graph.pdf)|\\n|52|+0|ClogsInBronteland|53|1.39|0.85|#56|13|42|24|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Dystopian_Dreamer|[graph](http://intotheskies.com/edef/stats/2019-05-30/ClogsInBronteland_poshistory_graph.pdf)|\\n|53|+0|Henchman29|72|1.89|0.85|#57|25|42|24|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|YourAmishNeighbor|[graph](http://intotheskies.com/edef/stats/2019-05-30/Henchman29_poshistory_graph.pdf)|\\n|54|+0|yoctometric|28|0.29|2.04|#14|27|99|57|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|MaxNobody|[graph](http://intotheskies.com/edef/stats/2019-05-30/yoctometric_poshistory_graph.pdf)|\\n|55|+0|svenguillotien|58|1.53|0.82|#59|12|40|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Ana_S_Gram|[graph](http://intotheskies.com/edef/stats/2019-05-30/svenguillotien_poshistory_graph.pdf)|\\n|56|+0|baildodger|44|1.22|0.78|#60|10|38|24|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Seven65|[graph](http://intotheskies.com/edef/stats/2019-05-30/baildodger_poshistory_graph.pdf)|\\n|57|+0|A_lot_of_arachnids|30|0.97|0.69|#62|4|33|22|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Theradead|[graph](http://intotheskies.com/edef/stats/2019-05-30/A_lot_of_arachnids_poshistory_graph.pdf)|\\n|58|+0|EarlNeonCog|36|1.2|0.67|#63|9|32|22|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|hitch21|[graph](http://intotheskies.com/edef/stats/2019-05-30/EarlNeonCog_poshistory_graph.pdf)|\\n|59|+0|madbubers|35|1.21|0.65|#64|8|31|21|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Tigernos|[graph](http://intotheskies.com/edef/stats/2019-05-30/madbubers_poshistory_graph.pdf)|\\n|60|+0|Upper_Canada_Pango|34|1.21|0.63|#65|8|30|20|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|solarSpring|[graph](http://intotheskies.com/edef/stats/2019-05-30/Upper_Canada_Pango_poshistory_graph.pdf)|\\n|61|+0|ticktockalock|39|1.39|0.63|#66|9|30|20|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|LukeWarmCage|[graph](http://intotheskies.com/edef/stats/2019-05-30/ticktockalock_poshistory_graph.pdf)|\\n|62|+0|topaz_b|24|0.92|0.59|#67|3|28|18|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|allyourbase51|[graph](http://intotheskies.com/edef/stats/2019-05-30/topaz_b_poshistory_graph.pdf)|\\n|63|+0|_Dia_|24|0.92|0.59|#68|3|28|18|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|This_Explains_It_All|[graph](http://intotheskies.com/edef/stats/2019-05-30/_Dia__poshistory_graph.pdf)|\\n|64|+0|MaxNobody|36|1.44|0.57|#69|12|27|17|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|yoctometric|[graph](http://intotheskies.com/edef/stats/2019-05-30/MaxNobody_poshistory_graph.pdf)|\\n|65|+0|kurtn0tk1rk|27|1.17|0.53|#70|7|25|16|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Lorddragonfang|[graph](http://intotheskies.com/edef/stats/2019-05-30/kurtn0tk1rk_poshistory_graph.pdf)|\\n|66|+0|Ana_S_Gram|23|0.23|2.06|#12|20|102|64|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|svenguillotien|[graph](http://intotheskies.com/edef/stats/2019-05-30/Ana_S_Gram_poshistory_graph.pdf)|\\n|67|+0|TastyTacoN1nja|24|1.09|0.51|#71|4|24|17|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|misterpyrrhuloxia|[graph](http://intotheskies.com/edef/stats/2019-05-30/TastyTacoN1nja_poshistory_graph.pdf)|\\n|68|+0|doncicismydaddy|24|1.09|0.51|#72|4|24|17|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|hornplayerKC|[graph](http://intotheskies.com/edef/stats/2019-05-30/doncicismydaddy_poshistory_graph.pdf)|\\n|69|+0|dishonorable|27|1.29|0.5|#74|4|23|17|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|SJC-Caron|[graph](http://intotheskies.com/edef/stats/2019-05-30/dishonorable_poshistory_graph.pdf)|\\n|70|+0|tiffanydisasterxoxo|12|0.12|2.08|#11|27|100|62|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|draftstone|[graph](http://intotheskies.com/edef/stats/2019-05-30/tiffanydisasterxoxo_poshistory_graph.pdf)|\\n|71|+0|solarSpring|28|1.47|0.46|#75|4|21|16|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Upper_Canada_Pango|[graph](http://intotheskies.com/edef/stats/2019-05-30/solarSpring_poshistory_graph.pdf)|\\n|72|+0|rahuldottech|28|1.56|0.44|#76|5|20|15|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|BatteredAggie19|[graph](http://intotheskies.com/edef/stats/2019-05-30/rahuldottech_poshistory_graph.pdf)|\\n|73|+0|Tigernos|27|1.93|0.32|#77|5|16|12|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|madbubers|[graph](http://intotheskies.com/edef/stats/2019-05-30/Tigernos_poshistory_graph.pdf)|\\n|74|+0|chaosdemonhu|23|1.77|0.3|#78|6|15|11|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Sicarius_Tacet|[graph](http://intotheskies.com/edef/stats/2019-05-30/chaosdemonhu_poshistory_graph.pdf)|\\n|75|+0|tlenze|22|2.0|0.27|#79|6|13|10|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|OhAces|[graph](http://intotheskies.com/edef/stats/2019-05-30/tlenze_poshistory_graph.pdf)|\\n|76|+0|AcePhoenixGamer|38|1.09|0.84|#58|17|37|26|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|JorgeAmVF|[graph](http://intotheskies.com/edef/stats/2019-05-30/AcePhoenixGamer_poshistory_graph.pdf)|\\n|77|+0|karmatic89|22|1.05|0.51|#73|7|23|16|[2](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|F0000r|[graph](http://intotheskies.com/edef/stats/2019-05-30/karmatic89_poshistory_graph.pdf)|\\n|78|+0|F0000r|21|2.62|0.2|#80|5|10|7|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|karmatic89|[graph](http://intotheskies.com/edef/stats/2019-05-30/F0000r_poshistory_graph.pdf)|\\n|79|+0|Seven65|19|3.17|0.17|#81|6|8|6|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|baildodger|[graph](http://intotheskies.com/edef/stats/2019-05-30/Seven65_poshistory_graph.pdf)|\\n|80|+0|FerniWrites|21|4.2|0.15|#82|8|7|5|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|MinagiV|[graph](http://intotheskies.com/edef/stats/2019-05-30/FerniWrites_poshistory_graph.pdf)|\\n|81|+0|Error404NoUserFound|13|3.25|0.13|#83|4|6|4|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Engvar|[graph](http://intotheskies.com/edef/stats/2019-05-30/Error404NoUserFound_poshistory_graph.pdf)|\\n|82|+0|esoper1976|13|3.25|0.13|#84|4|6|4|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Eurotriangle|[graph](http://intotheskies.com/edef/stats/2019-05-30/esoper1976_poshistory_graph.pdf)|\\n|83|+0|DaOrkiestSalamander|19|0.59|0.76|#61|8|35|25|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|eliporter877|[graph](http://intotheskies.com/edef/stats/2019-05-30/DaOrkiestSalamander_poshistory_graph.pdf)|\\n|84|+0|GreatDane666|8|0.11|1.63|#29|14|76|31|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|opticalshadow|[graph](http://intotheskies.com/edef/stats/2019-05-30/GreatDane666_poshistory_graph.pdf)|\\n|85|+0|Theradead|12|4.0|0.11|#85|5|5|3|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|A_lot_of_arachnids|[graph](http://intotheskies.com/edef/stats/2019-05-30/Theradead_poshistory_graph.pdf)|\\n|86|+0|LaquaciousMute|14|4.67|0.11|#86|6|5|3|[1](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|WhiteStripesWS6|[graph](http://intotheskies.com/edef/stats/2019-05-30/LaquaciousMute_poshistory_graph.pdf)|\\n|87|+0|allyourbase51|11|-|0.09|#87|8|4|2|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|topaz_b|[graph](http://intotheskies.com/edef/stats/2019-05-30/allyourbase51_poshistory_graph.pdf)|\\n|88|+1|Cowbeller|9|-|0.07|#88|8|3|2|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|xTMT|[graph](http://intotheskies.com/edef/stats/2019-05-30/Cowbeller_poshistory_graph.pdf)|\\n|89|+1|WhiteStripesWS6|2|-|0.05|#89|1|2|2|[0](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|LaquaciousMute|[graph](http://intotheskies.com/edef/stats/2019-05-30/WhiteStripesWS6_poshistory_graph.pdf)|\\n|90|+1|GotZeroFucks2Give|1|-|0.04|#90|1|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Rougefarie|[graph](http://intotheskies.com/edef/stats/2019-05-30/GotZeroFucks2Give_poshistory_graph.pdf)|\\n|91|+1|bees1280|1|-|0.04|#91|1|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|UnbiasedSportsExpert|[graph](http://intotheskies.com/edef/stats/2019-05-30/bees1280_poshistory_graph.pdf)|\\n|92|+1|Gooberflagm2|1|-|0.04|#92|1|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|LMY723|[graph](http://intotheskies.com/edef/stats/2019-05-30/Gooberflagm2_poshistory_graph.pdf)|\\n|93|+2|BatteredAggie19|2|-|0.04|#93|2|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|rahuldottech|[graph](http://intotheskies.com/edef/stats/2019-05-30/BatteredAggie19_poshistory_graph.pdf)|\\n|94|+2|This_Explains_It_All|2|-|0.04|#94|2|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|_Dia_|[graph](http://intotheskies.com/edef/stats/2019-05-30/This_Explains_It_All_poshistory_graph.pdf)|\\n|95|+3|OhAces|3|-|0.04|#95|3|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|tlenze|[graph](http://intotheskies.com/edef/stats/2019-05-30/OhAces_poshistory_graph.pdf)|\\n|96|+3|LMY723|3|-|0.04|#96|3|1|1|[6](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Gooberflagm2|[graph](http://intotheskies.com/edef/stats/2019-05-30/LMY723_poshistory_graph.pdf)|\\n|97|blue|UnbiasedSportsExpert|0|-|0.02|#97|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|bees1280|[graph](http://intotheskies.com/edef/stats/2019-05-30/UnbiasedSportsExpert_poshistory_graph.pdf)|\\n|98|blue|fuel126|0|-|0.02|#98|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|glorious_albus|[graph](http://intotheskies.com/edef/stats/2019-05-30/fuel126_poshistory_graph.pdf)|\\n|99|blue|schludy|0|-|0.02|#99|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Maxiscoolerthanyou|[graph](http://intotheskies.com/edef/stats/2019-05-30/schludy_poshistory_graph.pdf)|\\n|100|blue|DogfoodEnforcer|0|-|0.02|#100|1|0|1|[3](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)|Lizzibabe|[graph](http://intotheskies.com/edef/stats/2019-05-30/DogfoodEnforcer_poshistory_graph.pdf)|\\n\\n\\n\\n\\n***\\n##Activity\\n(last 1 days)\\n\\n|**users active daily**|**posts**|**comments**|**avg posts / user / day**|**avg comments / user / day**|**random post of the month**|**activity graph**|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|51%|13|201|0.13|2.01|dev|[bar graph](http://intotheskies.com/edef/stats/2019-05-30/memberactivity_bar.pdf)|\\n\\n\\n\\n\\n***\\n##Our Favorite Subs\\n(last 1 days)\\n\\n|**by comment count**|**by user count**|\\n|:-:|:-:|\\n|d|d|\\n|e|e|\\n|v|v|\\n\\n\\n\\n\\n***\\n##Fallen Heroes\\n(5 longest surviving of top 20 kicked)\\n\\n|**hero**|**age at death**|\\n|:-:|:-:|\\n|RaggedFountain5|1.91|\\n|2068857539|1.91|\\n|Undoer|1.47|\\n|GeckoEidechse|1.11|\\n|OldManPhill|1.09|\\n\\n\\n\\n\\n***\\n##Recently Departed\\n(5 highest ranked of last 1 days)\\n\\n|**user**|**#**|**age at death**|**departure**|\\n|:-:|:-:|:-:|:-:|\\n|LyndyDM|54|0.78|2019-05-10|\\n|Fredstien850|77|0.15|2019-05-10|\\n|n00f|81|0.1|2019-05-10|\\n|576875|88|0.06|2019-05-24|\\n|schnapster31|90|0.0|2019-05-17|\\n\\n\\n\\n\\n***\\n##[Siblings](http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt)\\n(largest cookie group)\\n\\n|**cookie day**|**user**|\\n|:-:|:-:|\\n|2018-1-12|n3gd0|\\n|2018-1-12|tecrogue|\\n|2018-1-12|Rougefarie|\\n|2018-7-13|misterpyrrhuloxia|\\n|2018-7-13|Sickened_but_curious|\\n|2018-7-13|fighterace00|\\n|2018-7-20|Dystopian_Dreamer|\\n|2018-7-20|Willowx|\\n|2018-7-20|p5yk0t1km1r4ge|\\n|2018-12-1|TastyTacoN1nja|\\n|2018-12-1|doncicismydaddy|\\n|2018-12-1|karmatic89|\\n\\n\\n\\n\\n***\\n##Longest Neighbors\\n(top 2)\\n\\n|**botruns together**|**users**|\\n|:-:|:-:|\\n|108|boomheadshot7 and hornplayerKC|\\n|108|LukeWarmCage and boomheadshot7|\\n\\n\\n\\n\\n***\\nKicked users with similar usernames:\\n\\n d, e, v, \\n\\n***\\n\\n*I am not a bot, this post was performed manually by u/fighterace00\", \"author_fullname\": \"t2_j01kt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"table test2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv5tfz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559774614.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559327046.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EStats Report\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll activity was compiled from the last 1 days of data\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EUpcoming Cookie Days\\u003C/h2\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ecookie day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEngvar\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2017-6-26\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebioszombie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2017-7-3\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrentIsAbel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-6\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"/r/edefined\\\"\\u003Er/edefined\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Emean age\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Emedian age\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers kicked\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers w/o siblings\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ekicked per week\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ekicked user of the month\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eposition history graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ekick history graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2328\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ejiggs_\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.pdf\\\"\\u003E# graph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/poshistory_all_graph.pdf\\\"\\u003Ekick graph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/poshistory_graph.png\\\"\\u003EUsers\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E+/-\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u0026#39;s moved\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u0026#39;s / botrun\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eage\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E# by add day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebiggest jump\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebotruns survived\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebotruns moved\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Esiblings\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebuddy of the month\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E# history graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECaptainPedge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E117\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EVic_the_Dick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/CaptainPedge_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELukeWarmCage\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E112\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eticktockalock\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/LukeWarmCage_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eboomheadshot7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E111\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrentIsAbel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/boomheadshot7_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EhornplayerKC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E111\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edoncicismydaddy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/hornplayerKC_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKinighos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.73\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E110\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAnd_So_It_Goess\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Kinighos_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELizzibabe\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E110\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDogfoodEnforcer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Lizzibabe_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERavenwald\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.03\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E109\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emoreawkwardthenyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Ravenwald_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eemrickgj\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efartfacepooper\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/emrickgj_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echoontang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E105\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHippo_Singularity\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/choontang_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPM-YOUR-PMS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.08\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E104\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPhaethonas\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/PM-YOUR-PMS_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEngvar\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EError404NoUserFound\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Engvar_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebioszombie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1wrx2subarus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/bioszombie_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edraftstone\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etiffanydisasterxoxo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/draftstone_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ehitch21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEarlNeonCog\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/hitch21_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebooziwan\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKusmariini\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/booziwan_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMinagiV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EFerniWrites\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/MinagiV_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eeliporter877\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDaOrkiestSalamander\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/eliporter877_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAnd_So_It_Goess\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKinighos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/And_So_It_Goess_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJorgeAmVF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.06\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAcePhoenixGamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/JorgeAmVF_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eopticalshadow\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E103\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGreatDane666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/opticalshadow_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emoreawkwardthenyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERavenwald\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/moreawkwardthenyou_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1wrx2subarus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebioszombie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/1wrx2subarus_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPhaethonas\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPM-YOUR-PMS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Phaethonas_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ExTMT\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.01\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECowbeller\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/xTMT_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emedes24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheFern33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/medes24_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efartfacepooper\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eemrickgj\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/fartfacepooper_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EYourAmishNeighbor\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHenchman29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/YourAmishNeighbor_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESJC-Caron\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edishonorable\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/SJC-Caron_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECNNsPrimarySource\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En3gd0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/CNNsPrimarySource_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheFern33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emedes24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/TheFern33_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En3gd0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECNNsPrimarySource\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/n3gd0_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etecrogue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efighterace00\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/tecrogue_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERougefarie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGotZeroFucks2Give\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Rougefarie_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEurotriangle\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eesoper1976\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Eurotriangle_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebiffpower3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ethe_dank_666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/biffpower3_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMrNorc\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ep5yk0t1km1r4ge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/MrNorc_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHippo_Singularity\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echoontang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Hippo_Singularity_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EVic_the_Dick\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.08\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECaptainPedge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Vic_the_Dick_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ethe_dank_666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebiffpower3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/the_dank_666_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eglorious_albus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.07\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efuel126\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/glorious_albus_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELorddragonfang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekurtn0tk1rk\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Lorddragonfang_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESicarius_Tacet\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echaosdemonhu\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Sicarius_Tacet_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxiscoolerthanyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.03\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eschludy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Maxiscoolerthanyou_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EKusmariini\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.07\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.01\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebooziwan\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Kusmariini_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrentIsAbel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eboomheadshot7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/BrentIsAbel_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emisterpyrrhuloxia\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETastyTacoN1nja\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/misterpyrrhuloxia_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESickened_but_curious\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWillowx\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Sickened_but_curious_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efighterace00\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etecrogue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/fighterace00_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDystopian_Dreamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EClogsInBronteland\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Dystopian_Dreamer_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E50\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWillowx\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESickened_but_curious\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Willowx_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ep5yk0t1km1r4ge\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMrNorc\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/p5yk0t1km1r4ge_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EClogsInBronteland\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDystopian_Dreamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/ClogsInBronteland_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EHenchman29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EYourAmishNeighbor\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Henchman29_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eyoctometric\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E99\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxNobody\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/yoctometric_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Esvenguillotien\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAna_S_Gram\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/svenguillotien_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebaildodger\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESeven65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/baildodger_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA_lot_of_arachnids\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheradead\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/A_lot_of_arachnids_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEarlNeonCog\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ehitch21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/EarlNeonCog_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emadbubers\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETigernos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/madbubers_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUpper_Canada_Pango\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EsolarSpring\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Upper_Canada_Pango_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eticktockalock\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELukeWarmCage\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/ticktockalock_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etopaz_b\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eallyourbase51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/topaz_b_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cem\\u003EDia\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EThis_Explains_It_All\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/_Dia__poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxNobody\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.57\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eyoctometric\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/MaxNobody_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekurtn0tk1rk\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELorddragonfang\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/kurtn0tk1rk_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAna_S_Gram\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.06\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E102\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E64\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Esvenguillotien\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Ana_S_Gram_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETastyTacoN1nja\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emisterpyrrhuloxia\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/TastyTacoN1nja_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edoncicismydaddy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EhornplayerKC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/doncicismydaddy_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edishonorable\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESJC-Caron\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/dishonorable_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etiffanydisasterxoxo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.08\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edraftstone\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/tiffanydisasterxoxo_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E71\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EsolarSpring\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUpper_Canada_Pango\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/solarSpring_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E72\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Erahuldottech\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.56\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBatteredAggie19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/rahuldottech_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E73\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETigernos\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emadbubers\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Tigernos_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E74\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Echaosdemonhu\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESicarius_Tacet\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/chaosdemonhu_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etlenze\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#79\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EOhAces\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/tlenze_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAcePhoenixGamer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#58\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJorgeAmVF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/AcePhoenixGamer_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekarmatic89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#73\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E2\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EF0000r\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/karmatic89_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EF0000r\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekarmatic89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/F0000r_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E79\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESeven65\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebaildodger\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Seven65_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E80\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EFerniWrites\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMinagiV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/FerniWrites_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EError404NoUserFound\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEngvar\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Error404NoUserFound_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eesoper1976\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EEurotriangle\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/esoper1976_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDaOrkiestSalamander\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eeliporter877\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/DaOrkiestSalamander_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGreatDane666\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eopticalshadow\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/GreatDane666_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETheradead\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA_lot_of_arachnids\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Theradead_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E86\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELaquaciousMute\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#86\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E1\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWhiteStripesWS6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/LaquaciousMute_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eallyourbase51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.09\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#87\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etopaz_b\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/allyourbase51_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECowbeller\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.07\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ExTMT\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Cowbeller_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWhiteStripesWS6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.05\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E0\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELaquaciousMute\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/WhiteStripesWS6_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGotZeroFucks2Give\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERougefarie\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/GotZeroFucks2Give_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebees1280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUnbiasedSportsExpert\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/bees1280_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGooberflagm2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELMY723\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/Gooberflagm2_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBatteredAggie19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#93\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Erahuldottech\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/BatteredAggie19_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EThis_Explains_It_All\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#94\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cem\\u003EDia\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/This_Explains_It_All_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EOhAces\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#95\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etlenze\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/OhAces_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E+3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELMY723\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.04\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E6\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGooberflagm2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/LMY723_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUnbiasedSportsExpert\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ebees1280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/UnbiasedSportsExpert_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efuel126\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eglorious_albus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/fuel126_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E99\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eschludy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#99\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMaxiscoolerthanyou\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/schludy_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eblue\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDogfoodEnforcer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.02\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E#100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003E3\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELizzibabe\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/DogfoodEnforcer_poshistory_graph.pdf\\\"\\u003Egraph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EActivity\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(last 1 days)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers active daily\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eposts\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ecomments\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eavg posts / user / day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eavg comments / user / day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Erandom post of the month\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eactivity graph\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E201\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.01\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edev\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/memberactivity_bar.pdf\\\"\\u003Ebar graph\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EOur Favorite Subs\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(last 1 days)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eby comment count\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eby user count\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ed\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ed\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ee\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ee\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ev\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ev\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003EFallen Heroes\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(5 longest surviving of top 20 kicked)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ehero\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eage at death\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERaggedFountain5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2068857539\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.91\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EUndoer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.47\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EGeckoEidechse\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.11\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EOldManPhill\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.09\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003ERecently Departed\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(5 highest ranked of last 1 days)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E#\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eage at death\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Edeparture\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELyndyDM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EFredstien850\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E77\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En00f\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E81\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E576875\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.06\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-24\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eschnapster31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019-05-17\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003E\\u003Ca href=\\\"http://intotheskies.com/edef/stats/2019-05-30/twinschart.txt\\\"\\u003ESiblings\\u003C/a\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(largest cookie group)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ecookie day\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Euser\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-1-12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003En3gd0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-1-12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Etecrogue\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-1-12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERougefarie\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Emisterpyrrhuloxia\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESickened_but_curious\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Efighterace00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EDystopian_Dreamer\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWillowx\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-7-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ep5yk0t1km1r4ge\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-12-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETastyTacoN1nja\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-12-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Edoncicismydaddy\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2018-12-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Ekarmatic89\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch2\\u003ELongest Neighbors\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E(top 2)\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Ebotruns together\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003Eusers\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Eboomheadshot7 and hornplayerKC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELukeWarmCage and boomheadshot7\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EKicked users with similar usernames:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ed, e, v, \\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E*I am not a bot, this post was performed manually by \\u003Ca href=\\\"/u/fighterace00\\\"\\u003Eu/fighterace00\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?auto=webp\\u0026s=cc205237bea6714c06337b455f14f778fb6d485c\", \"width\": 645, \"height\": 468}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4ad85fc0456064b525d9efedefa663385278e26b\", \"width\": 108, \"height\": 78}, {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5fa2e2e5127faa889b483cc9eb1906571a111978\", \"width\": 216, \"height\": 156}, {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=91d8338561c77d952059cba248c255c4dd3db9ab\", \"width\": 320, \"height\": 232}, {\"url\": \"https://external-preview.redd.it/MS8nFkG1_pfL-eWrnirtDvFnXe0mrv-b9yYPx6AoWns.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b21ccfef6e9f53b61906d7d041d77650b9c84dab\", \"width\": 640, \"height\": 464}], \"variants\": {}, \"id\": \"syJpnjA2y2EOuPguxrqZbt8mYL90TIX_CcVnha3-Yxs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5tfz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fighterace00\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv5tfz/table_test2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv5tfz/table_test2/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559298246.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"1.\\\\*\\\\***Strategy name**: Putting this dog on Ice\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n2. \\\\*\\\\***Boss**: Ugallu D350\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n3. \\\\*\\\\***Describe your Strategy**:\\\\*\\\\* \\\\`Ice Team\\\\` / \\\\`Off-Realm\\\\`\\n\\n\\u0026#x200B;\\n\\n4. \\\\*\\\\*\\\\***Insight!**:\\\\*\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\* Laguna provides Imperils and Chain. W-MCH + LMR sets Sora up for the beatdown. 6 stack Imperil + Snow USB2 = 19999 SSS + 10kish Blitzes, capped Icy Offerings and Icicle Rushes, even with 3 off realmers.\\n\\n\\u0026#x200B;\\n\\n\\\\* Sora does Sora things\\n\\n\\u0026#x200B;\\n\\n\\\\* Elarra dances all of his buffs away and USBs to counter poison for Snow's BSB.\\n\\n\\u0026#x200B;\\n\\n\\\\* Snow USB2s then BSBs for Last Stand. Could've used USB1 for Radiant shield in hindsight since Regenga helped mitigate deaths. Icicle Rush in between for chain.\\n\\n\\u0026#x200B;\\n\\n\\\\* Vanille Protectgas then BSBs. LMR1 buffs her heals while LMR2 debuffs doge.\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***Holy Trinity casts**:\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\* **Wal**l: 1\\n\\n\\u0026#x200B;\\n\\n\\\\* **Medica**: Lots\\n\\n\\u0026#x200B;\\n\\n\\\\* **Hastega**: 1\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***S/L count / Medals lost**: 0\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\***Time**: 29.32\\\\*\\\\*\\n\\n\\u0026#x200B;\\n\\n|Hero, dive|Ability 1||Ability 2|RM+LMR|SB(-)|\\n\\n|:-|:-|:-|:-|:-|\\n\\n|Snow, 5, 100|Banishing Strike R3|Icicle Rush R4|DMT, LMR1, LM1|USB2(1), BSB(1)|\\n\\n|Laguna, 5, 103|Icy Offering R3|Frost Offering R4|Ace Striker, LM2, LMR|Chain(1), SSB(1)|\\n\\n|Sora, 5, 110|Snowspell Strike R4|Snowspell Strike R3|Orphaned Cub, LMR, LM2(Ice)|AASB(1), AOSB(1)|\\n\\n|Vanille, 4, 10|Curaja R4|Protectga R3|MM, LMR1, LMR2|BSB(2)|\\n\\n|Elarra, 5, 120|Multi Break R2|Enfeebling Jitterbug R4|Battleforged, LM2, LM1|USB(3+)|\\n\\n\\u0026#x200B;\\n\\n|main|sub1|sub2|sub3|sub4|\\n|:-|:-|:-|:-|:-|\\n|Mateus|Famfrit|Manticore|Madeen|Madeen|\\n|Damp Air10+Def15|BWard8+HPBoon8|Ice+15x2|ATK20x2|BWard8+SWard8|\\n\\n\\\\*\\\\*\\\\*\", \"author_fullname\": \"t2_xltvv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv4dok\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559287428.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559315081.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E1.**\\u003Cstrong\\u003EStrategy name\\u003C/strong\\u003E: Putting this dog on Ice**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E**\\u003Cstrong\\u003EBoss\\u003C/strong\\u003E: Ugallu D350**\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E**\\u003Cstrong\\u003EDescribe your Strategy\\u003C/strong\\u003E:** `Ice Team` / `Off-Realm`\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E***\\u003Cstrong\\u003EInsight!\\u003C/strong\\u003E:***\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Laguna provides Imperils and Chain. W-MCH + LMR sets Sora up for the beatdown. 6 stack Imperil + Snow USB2 = 19999 SSS + 10kish Blitzes, capped Icy Offerings and Icicle Rushes, even with 3 off realmers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Sora does Sora things\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Elarra dances all of his buffs away and USBs to counter poison for Snow\\u0026#39;s BSB.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Snow USB2s then BSBs for Last Stand. Could\\u0026#39;ve used USB1 for Radiant shield in hindsight since Regenga helped mitigate deaths. Icicle Rush in between for chain.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Vanille Protectgas then BSBs. LMR1 buffs her heals while LMR2 debuffs doge.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003EHoly Trinity casts\\u003C/strong\\u003E:**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EWal\\u003C/strong\\u003El: 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EMedica\\u003C/strong\\u003E: Lots\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Cstrong\\u003EHastega\\u003C/strong\\u003E: 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003ES/L count / Medals lost\\u003C/strong\\u003E: 0**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**\\u003Cstrong\\u003ETime\\u003C/strong\\u003E: 29.32**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Hero, dive|Ability 1||Ability 2|RM+LMR|SB(-)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|:-|:-|:-|:-|:-|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Snow, 5, 100|Banishing Strike R3|Icicle Rush R4|DMT, LMR1, LM1|USB2(1), BSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Laguna, 5, 103|Icy Offering R3|Frost Offering R4|Ace Striker, LM2, LMR|Chain(1), SSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Sora, 5, 110|Snowspell Strike R4|Snowspell Strike R3|Orphaned Cub, LMR, LM2(Ice)|AASB(1), AOSB(1)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Vanille, 4, 10|Curaja R4|Protectga R3|MM, LMR1, LMR2|BSB(2)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|Elarra, 5, 120|Multi Break R2|Enfeebling Jitterbug R4|Battleforged, LM2, LM1|USB(3+)|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Emain\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub1\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub2\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub3\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Esub4\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMateus\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFamfrit\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EManticore\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMadeen\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMadeen\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDamp Air10+Def15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBWard8+HPBoon8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EIce+15x2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EATK20x2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBWard8+SWard8\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv4dok\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tenryou\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv4dok/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv4dok/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559286281.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test2\\n\\n\\u0026#x200B;\\n\\n[test2](https://i.redd.it/gbjaof51mh131.jpg)\", \"author_fullname\": \"t2_mjiuof2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test1\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 92, \"hide_score\": false, \"media_metadata\": {\"gbjaof51mh131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1848, \"x\": 2784, \"u\": \"https://i.redd.it/gbjaof51mh131.jpg\"}, \"m\": \"image/jpg\", \"id\": \"gbjaof51mh131\"}}, \"name\": \"t3_bv3wh8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/G-x_-fkvlWPBquR_7ko3ewYcPtnUtxr0oHTB-1c3rZs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559311347.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/gbjaof51mh131.jpg\\\"\\u003Etest2\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv3wh8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hanzeedent69\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv3wh8/test1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv3wh8/test1/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559282547.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[SCP-3790](http://www.scp-wiki.net/scp-3790) - Department of Abnormalities\\n\\nAUTHOR: Croquembouche, djkaktus\\n\\n***\\n\\n3790 is a fascinating scip, ostensibly a minimalistic Series 1 entry wrapped in the modernity of a Series 4 one, ending in an absolute masterclass of an atmospheric piece that tells a story of hidden secrets, but never truly gives us its conclusion.\\n\\nAnyway, let's get on with this.\\n\\n***\\n**PART 1 - OVERVIEW**\\n\\n\\u003EObject Class: Safe\\n\\nThis tell us that this SCP is easy to contain, just put a lock on it and leave it alone. *wink wink*\\n\\u003ESpecial Containment Procedures: The door into the stairwell leading to SCP-3790 is to be padlocked at all times, and a single guard is to be posted nearby to ensure no individuals enter SCP-3790.\\n\\n\\u003EBy order of the Overseer Council, entry into SCP-3790 is forbidden.\\n\\nForbidden entry, huh? That just makes all the more enticing, you know.\\n\\u003EDescription: SCP-3790 is a structure located beneath the abandoned Port Superior Canning Company warehouse in London, United Kingdom. The only access to this space is down a narrow stairwell that ends in a short black door. The door is free of identifying markings save for a small metal placard just above the door handle that reads \\\"SCP Foundation Department of Abnormalities\\\".\\n\\nSCP Foundation Department of Abnormalities? Implying that it\\u2019s a branch that specifically deal with abnormalities alone? Isn\\u2019t that what the whole of the SCP Foundation\\u2019s job? Hmm\\u2026\\n\\nWell, there are two distinct possibilities I can think of:\\n\\n1. It\\u2019s an outdated relic of a younger, less experienced Foundation whose duty didn\\u2019t concern anomalies only, and has since been lost to time, or\\n\\n2. It\\u2019s a hidden department operation in secret, not unlike the Antimemetics Department, which deals with things so far outside the norm that not even the main Foundation can deal with.\\n\\nEither or. Perhaps both.\\n\\nThe rest of the file has been locked away by the Overseer Council. Being locked away seems to be a recurring theme, among other things. Let\\u2019s see what the Council has to hide.\\n\\n\\u003E While there is evidence of prior human activity within SCP-3790, the structure appears to have been abandoned for a considerable amount of time.\\n\\n\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists. No information regarding the structure has been located.\\n\\nBeen abandoned, or sealed off and forgotten? More questions, but no answer.\\n\\n**PART 2 - THE RUNDOWN**\\n\\n*Disclaimer: From this point onwards, I may not be able to concretely point out any real connections, nor can I ensure the ones I do are correct. Proceed with skepticism.*\\n\\nLet\\u2019s start with **Level One**:\\n\\u003ERoom One\\n\\n\\n\\u003EPlacard Name: Vivaldi\\n\\n\\u003EDescription: Chamber is empty aside from a violin propped in the far corner of the room. The bow is broken on the ground in front of it.\\n\\nAppears to be Antonio Vivaldi\\u2019s violin. Mr. Vivaldi was a famous composer, but his compositions became outmoded later in life, Vivaldi eventually came into impoverishment and died in relative obscurity.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: No placard\\n\\n\\u003EDescription: Chamber is empty.\\n\\nCould be a nod to [SCP-3930](http://www.scp-wiki.net/scp-3930), the one that doesn\\u2019t exist and if you enter, you don\\u2019t exist either. (Might also be a reference to [SCP-1935](http://www.scp-wiki.net/scp-1935) \\u201cAn Empty Chamber, but that\\u2019s shaky at best.)\\n\\n**Level Two**:\\n\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: The Crying Boy\\n\\n\\u003EDescription: A canvas is set up in the room. A sheet is draped over it.\\n\\nThe Crying Boy is famed as a cursed painting usually found undamaged amidst the ruins of burned houses. Later, more scientific analysis revealed the explanation behind this mystery, and this myth fell out of vogue.\\n\\n**Level Three**:\\n\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: The Infinite Cold\\n\\n\\u003EDescription: The floor of the chamber is covered with a thin layer of water. The interior of the room seems to be considerably larger than its exterior physical dimensions would allow.\\n\\nSeems to be a reference to [SCP-3799](http://www.scp-wiki.net/scp-3799), in which the event in question was basically retconned to no longer happen, the water implying that it melted. In another, more meta sense, it might refer to the ex-SCP-2318 \\u201cAwake in the Infinite Cold\\u201d, which the author djkaktus himself deleted out of existence.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: World Without Man\\n\\n\\u003EDescription: Chamber is empty.\\n\\n[SCP-804](http://www.scp-wiki.net/scp-804), the object that wants to delete all of humanity. The chamber being empty is interesting, though.\\n\\n**Level Four**:\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: The Morning Star\\n\\n\\u003EDescription: A rusted sword hangs on a rack in the back of the room. The door to the chamber feels warm.\\n\\nAppears to be Lucifer\\u2019s blazing sword from djkaktus\\u2019s Proposal III. Considering the story behind it, the O5 Council and the Administrator, this being a secret that they want to lock away probably belongs here.\\n\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: Wormwood\\n\\n\\u003EDescription: Viewport is obscured.\\n\\n[SCP-4008](http://www.scp-wiki.net/scp-4008) \\u201cWormwood\\u201d \\u2013 Seeds that makes people forget.\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: Harmonia's Necklace\\n\\n\\u003EDescription: A simple golden necklace hangs on a post in the back of the room, which is lit by a single tall candle. The chamber does not appear to have a floor.\\n\\nThe mythical Necklace of Harmonia that grants woman eternal youth. Not sure how it ended up here.\\n\\n\\u003ERoom Four\\n\\n\\u003EPlacard Name: No placard\\n\\n\\u003EDescription: Chamber is unlit. Individuals who look into this room feel a lingering sense of dread afterward.\\n\\n[SCP-2740](http://www.scp-wiki.net/scp-2740). The unlit attic that you can\\u2019t never truly seems to grasp, and has a habit of retconning people out of existence.\\n\\n**Level Five**:\\n\\u003ERoom Two\\n\\n\\u003EPlacard Name: Tool marks indicate that placard has been pried off. The word \\\"hello\\\" is scratched into the metal where the placard should be.\\n\\n\\u003EDescription: Sliding panel is welded shut.\\n\\nSounds like [SCP-3935](http://www.scp-wiki.net/scp-3935). There\\u2019s already an excellent declass of it here, but I\\u2019ll quote this: \\u201cthe spiral of dark secrets *only goes deeper and deeper, hidden underground, buried to be forgotten*, with all the suffering still present, like the endless schools going deeper and deeper.\\\"\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: Channel 55\\n\\n\\u003EDescription: A small, CRT television sits in the center of the room. Something is playing on the screen, but a dark cloth has been draped over the top of it.\\n\\nMight be a reference to SCP-055 and SCP-2998? [SCP-2998](http://www.scp-wiki.net/scp-2998) is about an anomalous (TV) signal that contained alien which eventually took over the world. To reset it, SCP-055 and SCP-579 were used (as per Roget's Proposal) to reverse everything, and all knowledge of SCP-2998\\u2019s full extent were purged to prevent another repeat.\\n\\n**Level Six**:\\n\\n\\u003ERoom One\\n\\n\\u003EPlacard Name: Mr. Silence\\n\\n\\u003EDescription: A tall, black, wooden box rests against the back wall. It is bound in chains and locks. A bright purple \\\"W\\\" is emblazoned on its front in gold trim.\\n\\n[A tale.] (http://www.scp-wiki.net/to-never-again-see-the-light-of-day)\\n\\n\\u003ERoom Three\\n\\n\\u003EPlacard Name: \\u00d6tzi\\n\\n\\u003EDescription: A layer of ice covers the viewport and obscures visibility. A dark shape can be seen in the middle of the room, although no details can be distinguished.\\n\\nCould be referring to [SCP-2521](http://www.scp-wiki.net/scp-2521), if only because the description matches its image. An entity whose information cannot be spoken, and those who do are gone from this world.\\n\\n\\u003ERoom Four\\n\\n\\u003EPlacard Name: Apollyon's Crown\\n\\n\\u003EDescription: A silver lockbox rests on a table in the middle of the room. Notably, the exterior of the door is covered in scratch marks, as if by something trying to get into the chamber.\\n\\n[SCP-2317](http://www.scp-wiki.net/scp-2998). All its containment procedures boil down to 'stick their had in the sand, and hope for the best'. The O5 council made sure to keep virtually everyone in the dark about this thing, and the true SCP-2317 file remain secret to everyone but the topmost level.\\nCould also be referring to Tufto's Proposal, in which the foundation decides that the Scarlet King is no longer a threat, and ignore the underlying problem.\\n\\nAnd finally, **Level Seve**-\\n\\n\\u003E Although the opening to the seventh level is visible through the grated floor of the elevator, the lift mechanism appears to have been modified and can no longer access that floor.\\n\\nWell, ain\\u2019t that ominous.\\n\\n**PART 3 - HOW ABNORMAL**\\n\\nAs a personal observation, the chambers contain things that seems to share a general idea: They are that which we have forgotten or ignored, be it willfully, because we no longer find it fascinating, because we were made to forget, or because it no longer exist. Strangely enough, the Department of Abnormalities itself fits this criteria as well, considering:\\n\\n\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists.\\n\\nReading through SCP-3790, signs seems to point toward this being a coverup: No exploration log, no attempt to gain access to Level Seven, not even a cursory attempt to study whatever's being contained in here. \\n\\nFor something so blatantly called \\\"SCP Foundation Department of Abnormalities\\\", the Council sure seems eager to do the bare minimum of documenting it. Heck, I'm surprised thy even let us read this file at al-\\n\\n...Huh.\\n\\n**PART 4 - SECRETKEEPING**\\n\\nWhy do they let us read this file? Why not just restrict the whole thing to Clearance Level 5? Why go through the trouble of locking the rest of it but let someone know there exists an \\\"SCP Foundation Department of Abnormalities\\\" in the first place?\\n\\n*Because it's a hook.*\\n\\nIf the council deemed this thing dangerous this thing dangerous enough to lock away knowledge of its content, telling us its title seems almost counterproductive, and this file doesn't seem to classified either. In fact...\\n\\n\\u003ELock Overridden\\n\\nWe overrode the lock to gain access to the meat of 3790. Our curiosity got the better of us, and now we're exploring this abnormality of an article.\\n\\nRemember when I said \\\"More questions, but no answer.\\\"? This is what SCP-3790 is about. It's a place where secrets are put to rest, so far down that virtually no one knows what it is anymore. And that makes us ask questions, draws connections, grasping for answers that was made to never supposed to be discovered.\\n\\nUltimately, what this thing contains doesn't matter too much in the grand scheme of things. They're there as a bait to keep us digging for more, and by god, we *took* it.\\n\\n**CONCLUSION**\\n\\nI can not praise Croquembouche and djkaktus enough for writing an absolute masterclass of an article in such a way that draws everyone in, yet leaving a hole in the shape of closure, making the curious minds, both in-universe and out-, clamoring for answers.\\n\\nWhat is the Department of Abnormalities, and what resides on Level Seven? Only time can tell.\\n\\nAnd when that time comes, perhaps we will finally learn there\\u2019s a price to be paid for unearthing secrets that should never see the light of day again.\", \"author_fullname\": \"t2_2j4j6rg7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test dc\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv2mv5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559302648.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-3790\\\"\\u003ESCP-3790\\u003C/a\\u003E - Department of Abnormalities\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAUTHOR: Croquembouche, djkaktus\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E3790 is a fascinating scip, ostensibly a minimalistic Series 1 entry wrapped in the modernity of a Series 4 one, ending in an absolute masterclass of an atmospheric piece that tells a story of hidden secrets, but never truly gives us its conclusion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway, let\\u0026#39;s get on with this.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 1 - OVERVIEW\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EObject Class: Safe\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis tell us that this SCP is easy to contain, just put a lock on it and leave it alone. \\u003Cem\\u003Ewink wink\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESpecial Containment Procedures: The door into the stairwell leading to SCP-3790 is to be padlocked at all times, and a single guard is to be posted nearby to ensure no individuals enter SCP-3790.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy order of the Overseer Council, entry into SCP-3790 is forbidden.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EForbidden entry, huh? That just makes all the more enticing, you know.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDescription: SCP-3790 is a structure located beneath the abandoned Port Superior Canning Company warehouse in London, United Kingdom. The only access to this space is down a narrow stairwell that ends in a short black door. The door is free of identifying markings save for a small metal placard just above the door handle that reads \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESCP Foundation Department of Abnormalities? Implying that it\\u2019s a branch that specifically deal with abnormalities alone? Isn\\u2019t that what the whole of the SCP Foundation\\u2019s job? Hmm\\u2026\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, there are two distinct possibilities I can think of:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt\\u2019s an outdated relic of a younger, less experienced Foundation whose duty didn\\u2019t concern anomalies only, and has since been lost to time, or\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt\\u2019s a hidden department operation in secret, not unlike the Antimemetics Department, which deals with things so far outside the norm that not even the main Foundation can deal with.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EEither or. Perhaps both.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe rest of the file has been locked away by the Overseer Council. Being locked away seems to be a recurring theme, among other things. Let\\u2019s see what the Council has to hide.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWhile there is evidence of prior human activity within SCP-3790, the structure appears to have been abandoned for a considerable amount of time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists. No information regarding the structure has been located.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EBeen abandoned, or sealed off and forgotten? More questions, but no answer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 2 - THE RUNDOWN\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EDisclaimer: From this point onwards, I may not be able to concretely point out any real connections, nor can I ensure the ones I do are correct. Proceed with skepticism.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet\\u2019s start with \\u003Cstrong\\u003ELevel One\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Vivaldi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty aside from a violin propped in the far corner of the room. The bow is broken on the ground in front of it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAppears to be Antonio Vivaldi\\u2019s violin. Mr. Vivaldi was a famous composer, but his compositions became outmoded later in life, Vivaldi eventually came into impoverishment and died in relative obscurity.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: No placard\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECould be a nod to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3930\\\"\\u003ESCP-3930\\u003C/a\\u003E, the one that doesn\\u2019t exist and if you enter, you don\\u2019t exist either. (Might also be a reference to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-1935\\\"\\u003ESCP-1935\\u003C/a\\u003E \\u201cAn Empty Chamber, but that\\u2019s shaky at best.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Two\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Crying Boy\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A canvas is set up in the room. A sheet is draped over it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Crying Boy is famed as a cursed painting usually found undamaged amidst the ruins of burned houses. Later, more scientific analysis revealed the explanation behind this mystery, and this myth fell out of vogue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Three\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Infinite Cold\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: The floor of the chamber is covered with a thin layer of water. The interior of the room seems to be considerably larger than its exterior physical dimensions would allow.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESeems to be a reference to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3799\\\"\\u003ESCP-3799\\u003C/a\\u003E, in which the event in question was basically retconned to no longer happen, the water implying that it melted. In another, more meta sense, it might refer to the ex-SCP-2318 \\u201cAwake in the Infinite Cold\\u201d, which the author djkaktus himself deleted out of existence.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: World Without Man\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is empty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-804\\\"\\u003ESCP-804\\u003C/a\\u003E, the object that wants to delete all of humanity. The chamber being empty is interesting, though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Four\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: The Morning Star\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A rusted sword hangs on a rack in the back of the room. The door to the chamber feels warm.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAppears to be Lucifer\\u2019s blazing sword from djkaktus\\u2019s Proposal III. Considering the story behind it, the O5 Council and the Administrator, this being a secret that they want to lock away probably belongs here.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Wormwood\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Viewport is obscured.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-4008\\\"\\u003ESCP-4008\\u003C/a\\u003E \\u201cWormwood\\u201d \\u2013 Seeds that makes people forget.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Harmonia\\u0026#39;s Necklace\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A simple golden necklace hangs on a post in the back of the room, which is lit by a single tall candle. The chamber does not appear to have a floor.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe mythical Necklace of Harmonia that grants woman eternal youth. Not sure how it ended up here.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Four\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: No placard\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Chamber is unlit. Individuals who look into this room feel a lingering sense of dread afterward.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-2740\\\"\\u003ESCP-2740\\u003C/a\\u003E. The unlit attic that you can\\u2019t never truly seems to grasp, and has a habit of retconning people out of existence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Five\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Two\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Tool marks indicate that placard has been pried off. The word \\u0026quot;hello\\u0026quot; is scratched into the metal where the placard should be.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: Sliding panel is welded shut.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESounds like \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3935\\\"\\u003ESCP-3935\\u003C/a\\u003E. There\\u2019s already an excellent declass of it here, but I\\u2019ll quote this: \\u201cthe spiral of dark secrets \\u003Cem\\u003Eonly goes deeper and deeper, hidden underground, buried to be forgotten\\u003C/em\\u003E, with all the suffering still present, like the endless schools going deeper and deeper.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Channel 55\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A small, CRT television sits in the center of the room. Something is playing on the screen, but a dark cloth has been draped over the top of it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMight be a reference to SCP-055 and SCP-2998? \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2998\\\"\\u003ESCP-2998\\u003C/a\\u003E is about an anomalous (TV) signal that contained alien which eventually took over the world. To reset it, SCP-055 and SCP-579 were used (as per Roget\\u0026#39;s Proposal) to reverse everything, and all knowledge of SCP-2998\\u2019s full extent were purged to prevent another repeat.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELevel Six\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom One\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Mr. Silence\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A tall, black, wooden box rests against the back wall. It is bound in chains and locks. A bright purple \\u0026quot;W\\u0026quot; is emblazoned on its front in gold trim.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/to-never-again-see-the-light-of-day\\\"\\u003EA tale.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Three\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: \\u00d6tzi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A layer of ice covers the viewport and obscures visibility. A dark shape can be seen in the middle of the room, although no details can be distinguished.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECould be referring to \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2521\\\"\\u003ESCP-2521\\u003C/a\\u003E, if only because the description matches its image. An entity whose information cannot be spoken, and those who do are gone from this world.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERoom Four\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlacard Name: Apollyon\\u0026#39;s Crown\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDescription: A silver lockbox rests on a table in the middle of the room. Notably, the exterior of the door is covered in scratch marks, as if by something trying to get into the chamber.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-2998\\\"\\u003ESCP-2317\\u003C/a\\u003E. All its containment procedures boil down to \\u0026#39;stick their had in the sand, and hope for the best\\u0026#39;. The O5 council made sure to keep virtually everyone in the dark about this thing, and the true SCP-2317 file remain secret to everyone but the topmost level.\\nCould also be referring to Tufto\\u0026#39;s Proposal, in which the foundation decides that the Scarlet King is no longer a threat, and ignore the underlying problem.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd finally, \\u003Cstrong\\u003ELevel Seve\\u003C/strong\\u003E-\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAlthough the opening to the seventh level is visible through the grated floor of the elevator, the lift mechanism appears to have been modified and can no longer access that floor.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell, ain\\u2019t that ominous.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 3 - HOW ABNORMAL\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a personal observation, the chambers contain things that seems to share a general idea: They are that which we have forgotten or ignored, be it willfully, because we no longer find it fascinating, because we were made to forget, or because it no longer exist. Strangely enough, the Department of Abnormalities itself fits this criteria as well, considering:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENo record of the SCP Foundation ever having a Department of Abnormalities exists.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EReading through SCP-3790, signs seems to point toward this being a coverup: No exploration log, no attempt to gain access to Level Seven, not even a cursory attempt to study whatever\\u0026#39;s being contained in here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor something so blatantly called \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot;, the Council sure seems eager to do the bare minimum of documenting it. Heck, I\\u0026#39;m surprised thy even let us read this file at al-\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...Huh.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPART 4 - SECRETKEEPING\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy do they let us read this file? Why not just restrict the whole thing to Clearance Level 5? Why go through the trouble of locking the rest of it but let someone know there exists an \\u0026quot;SCP Foundation Department of Abnormalities\\u0026quot; in the first place?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EBecause it\\u0026#39;s a hook.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the council deemed this thing dangerous this thing dangerous enough to lock away knowledge of its content, telling us its title seems almost counterproductive, and this file doesn\\u0026#39;t seem to classified either. In fact...\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ELock Overridden\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWe overrode the lock to gain access to the meat of 3790. Our curiosity got the better of us, and now we\\u0026#39;re exploring this abnormality of an article.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERemember when I said \\u0026quot;More questions, but no answer.\\u0026quot;? This is what SCP-3790 is about. It\\u0026#39;s a place where secrets are put to rest, so far down that virtually no one knows what it is anymore. And that makes us ask questions, draws connections, grasping for answers that was made to never supposed to be discovered.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUltimately, what this thing contains doesn\\u0026#39;t matter too much in the grand scheme of things. They\\u0026#39;re there as a bait to keep us digging for more, and by god, we \\u003Cem\\u003Etook\\u003C/em\\u003E it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECONCLUSION\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can not praise Croquembouche and djkaktus enough for writing an absolute masterclass of an article in such a way that draws everyone in, yet leaving a hole in the shape of closure, making the curious minds, both in-universe and out-, clamoring for answers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is the Department of Abnormalities, and what resides on Level Seven? Only time can tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd when that time comes, perhaps we will finally learn there\\u2019s a price to be paid for unearthing secrets that should never see the light of day again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?auto=webp\\u0026s=c819c19d942b726d0a2ff50cb74acbfff1e08a06\", \"width\": 1880, \"height\": 1253}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c2e24f32402052f314732b2536e0cc47089dcee3\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fbcce917a4186d2c4b6e3d9a8e33c2bd7a3a738f\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=61c8f923e42459533533af8ca93d4df3ee37b5e4\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f7154363e4a980a8daf17a79782c71f42a65b417\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e813d5635e53ece285115c875dd756c0acc4318b\", \"width\": 960, \"height\": 639}, {\"url\": \"https://external-preview.redd.it/QAkF0IPeBwYAei0eKZuqHu5gfWn8xaiJ8bSYknaJQWk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d29b4e3ea4db162608c93db1eaf9d11936fdc172\", \"width\": 1080, \"height\": 719}], \"variants\": {}, \"id\": \"Qjpf9RWeib9EvmI2MPm7-BmVBDzqrMOowRjqJjf6c4g\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv2mv5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SYwaves\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559273848.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#Captain Details \\nCaptain Name\\u0026nbsp; | Dr. Jannick Carter\\u0026nbsp; | \\u0026nbsp; \\n--|--|-- \\nCaptain Career\\u0026nbsp; | Science\\u0026nbsp; | \\u0026nbsp; \\nCaptain Faction\\u0026nbsp; | Federation\\u0026nbsp; | \\u0026nbsp; \\nCaptain Race\\u0026nbsp; | Human\\u0026nbsp; | \\u0026nbsp; \\nPrimary Specialization\\u0026nbsp; | Temporal\\u0026nbsp; | \\u0026nbsp; \\nSecondary Specialization\\u0026nbsp; | Strategist\\u0026nbsp; | \\u0026nbsp; \\n#Space Skill Tree \\nRank\\u0026nbsp; | Engineering\\u0026nbsp; | \\u0026nbsp; | Science\\u0026nbsp; | \\u0026nbsp; | Tactical\\u0026nbsp; | \\u0026nbsp; | \\n--|--|--|--|--|--|-- \\nLieutenant\\u0026nbsp; | Improved Hull Restoration\\u0026nbsp; | Improved Hull Capacity\\u0026nbsp; | Improved Shield Restoration\\u0026nbsp; | Improved Shield Capacity\\u0026nbsp; | Improved Energy Weapon Training\\u0026nbsp; | Advanced Projectile Weapon Training\\u0026nbsp; \\nLt. Commander\\u0026nbsp; | Electro-Plasma System Flow\\u0026nbsp; | Advanced Impulse Expertise\\u0026nbsp; | Improved Control Expertise\\u0026nbsp; | Improved Drain Expertise\\u0026nbsp; | Targeting Expertise\\u0026nbsp; | Defensive Maneuvering\\u0026nbsp; \\n\\u0026nbsp; | Full Impulse Energy Shunt\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nCommander\\u0026nbsp; | Hull Plating\\u0026nbsp; | \\u0026nbsp; | Shield Regeneration\\u0026nbsp; | Shield Hardness\\u0026nbsp; | Improved Weapon Amplification\\u0026nbsp; | Improved Weapon Specialization\\u0026nbsp; \\nCaptain\\u0026nbsp; | Defensive Subsystem Tuning\\u0026nbsp; | Offensive Subsystem Tuning\\u0026nbsp; | Advanced Exotic Particle Generator\\u0026nbsp; | Advanced Long Range Targeting Sensors\\u0026nbsp; | Improved Hull Penetration\\u0026nbsp; | Improved Shield Weakening\\u0026nbsp; \\nAdmiral\\u0026nbsp; | Warp Core Potential\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | Warp Core Efficiency\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n1 Points Left\\u0026nbsp; | 14\\u0026nbsp; | \\u0026nbsp; | 16\\u0026nbsp; | \\u0026nbsp; | 15\\u0026nbsp; | \\u0026nbsp; \\n \\n#Space Skill Unlocks \\nPurchases\\u0026nbsp; | Engineering\\u0026nbsp; | Science\\u0026nbsp; | Tactical\\u0026nbsp; \\n--|--|--|-- \\n2\\u0026nbsp; | Hazard Emitters III\\u0026nbsp; | Science Team III\\u0026nbsp; | Tachyon Beam III\\u0026nbsp; \\n5\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n7\\u0026nbsp; | Feedback Pulse III\\u0026nbsp; | Photonic Shockwave III\\u0026nbsp; | Jam Sensors III\\u0026nbsp; \\n10\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n12\\u0026nbsp; | Polarize Hull III\\u0026nbsp; | Gravity Well III\\u0026nbsp; | Tractor Beam III\\u0026nbsp; \\n15\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n#Ship Loadout: *Fleet Advanced Research Vessel (T6)* \\nSlot\\u0026nbsp; | Item\\u0026nbsp; | Notes\\u0026nbsp; \\n--|--|-- \\nFore Weapon 1\\u0026nbsp; | Advanced Piezo- Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nFore Weapon 2\\u0026nbsp; | Gravimetric Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nFore Weapon 3\\u0026nbsp; | Terran Task Force Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 1\\u0026nbsp; | Cutting Kinetic Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 2\\u0026nbsp; | Dyson Proton Turret Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nAft Weapon 3\\u0026nbsp; | Chronometric Polaron Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nDeflector\\u0026nbsp; | [Counter-Command Deflector Array](http://sto.gamepedia.com/Counter-Command_Deflector_Array) Mk XII Very Rare\\u0026nbsp; | 2nd - Deteriorating Secondary Deflector Mk XIV [EPG/ShdHeal]\\u0026nbsp; \\nImpulse Engines\\u0026nbsp; | [Adapted M.A.C.O. Combat Impulse Engines](http://sto.gamepedia.com/Adapted_M.A.C.O._Combat_Impulse_Engines) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nWarp Core\\u0026nbsp; | [Temporal Defense Initiative Overcharged Warp Core](http://sto.gamepedia.com/Temporal_Defense_Initiative_Overcharged_Warp_Core) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\nShields\\u0026nbsp; | [Adapted M.A.C.O. Covariant Shield Array](http://sto.gamepedia.com/Adapted_M.A.C.O._Covariant_Shield_Array) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n4 Engineering Consoles\\u0026nbsp; | [Proton Particle Stabilizer](http://sto.gamepedia.com/Console_-_Universal_-_Proton_Particle_Stabilizer) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Ferrofluid Hydraulic Assembly](http://sto.gamepedia.com/Console_-_Universal_-_Ferrofluid_Hydraulic_Assembly) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Conductive RCS Accelerator [EPG]](http://sto.gamepedia.com/Console_-_Engineering_-_Conductive_RCS_Accelerator_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Delphic Tear Generator](http://sto.gamepedia.com/Console_-_Universal_-_Delphic_Tear_Generator) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n5 Science Consoles\\u0026nbsp; | [Restorative Particle Focuser [EPG] [CtrlX]](http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Restorative Particle Focuser [EPG] [CtrlX]](http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Temporal Disentanglement Suite](http://sto.gamepedia.com/Console_-_Science_-_Temporal_Disentanglement_Suite) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Plasma-Generating Weapon Signature Amplifier [EPG]](http://sto.gamepedia.com/Console_-_Science_-_Plasma-Generating_Weapon_Signature_Amplifier_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Exotic Particle Field Exciter [EPG]](http://sto.gamepedia.com/Console_-_Science_-_Exotic_Particle_Field_Exciter_) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n2 Tactical Consoles\\u0026nbsp; | [Chronometric Capacitor](http://sto.gamepedia.com/Console_-_Tactical_-_Chronometric_Capacitor) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | [Piezo-Electric Focuser](http://sto.gamepedia.com/Console_-_Universal_-_Piezo-Electric_Focuser) Mk XII Very Rare\\u0026nbsp; | \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\n \\n#Officer Details\\nBridge Officers\\u0026nbsp; | Power\\u0026nbsp; \\n--|-- \\nCommander Science\\u0026nbsp; | [Subspace Vortex I](http://sto.gamepedia.com/Ability:_Subspace_Vortex) \\u0026nbsp; \\n\\u0026nbsp; | [Hazard Emitters II](http://sto.gamepedia.com/Ability:_Hazard_Emitters) \\u0026nbsp; \\n\\u0026nbsp; | [Destabilizing Resonance Beam II](http://sto.gamepedia.com/Ability:_Destabilizing_Resonance_Beam) \\u0026nbsp; \\n\\u0026nbsp; | [Gravity Well III](http://sto.gamepedia.com/Ability:_Gravity_Well) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nLt. Commander Engineering-Temporal\\u0026nbsp; | [Entropic Redistribution I](http://sto.gamepedia.com/Ability:_Entropic_Redistribution) \\u0026nbsp; \\n\\u0026nbsp; | [Chronometric Inversion Field I](http://sto.gamepedia.com/Ability:_Chronometric_Inversion_Field) \\u0026nbsp; \\n\\u0026nbsp; | [Entropic Cascade II](http://sto.gamepedia.com/Ability:_Entropic_Cascade) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nLieutenant Tactical\\u0026nbsp; | [Tactical Team I](http://sto.gamepedia.com/Ability:_Tactical_Team) \\u0026nbsp; \\n\\u0026nbsp; | [Torpedo: Spread II](http://sto.gamepedia.com/Ability:_Torpedo:_Spread) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\nEnsign Science\\u0026nbsp; | [Tachyon Beam I](http://sto.gamepedia.com/Ability:_Tachyon_Beam) \\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; \\n \\n#Traits \\u0026 Duty Officers \\nTrait\\u0026nbsp; | Name\\u0026nbsp; | Description\\u0026nbsp; \\n--|--|-- \\nPersonal Traits\\u0026nbsp; | Ablative Shell\\u0026nbsp; | After receiving a total of 10,000 Damage (pre-resist), trigger Ablative Shell: +X Hit Points every 0.5 sec for 3 sec, +33 All Damage Resistance Rating for 3 sec, May only trigger once per 30 sec\\u0026nbsp; \\n\\u0026nbsp; | Context is for Kings\\u0026nbsp; | Each second while in combat, if you did not take damage in the past second, you gain a damage bonus. Otherwise, you gain a boost to your Damage Resistence Rating. Each second while in combat: If you did take damage in the past second: +3 All Damage Resistence Rating for 10 sec If you did not take damage in the past second: +1% Bonus All Damage for 10 sec\\u0026nbsp; \\n\\u0026nbsp; | Fleet Coordinator\\u0026nbsp; | +2% All Damage per Team member (Self included), up to 10%\\u0026nbsp; \\n\\u0026nbsp; | Repair Crews\\u0026nbsp; | While in combat, gain 1 stack of Repair Crews every 5 sec (up to 5 max). Per Stack: +5 All Damage Resistance Rating +5% Hull Repair Rate\\u0026nbsp; \\n\\u0026nbsp; | Inspirational Leader\\u0026nbsp; | 10% chance: Activating any Bridge Officer Ability grants +10 to Most Starship Skills for 15 seconds (may stack up to 3 times).\\u0026nbsp; \\n\\u0026nbsp; | Particle Manipulator\\u0026nbsp; | Gain .2% Critical Chance and .1% Critical Severity for Exotic Damage abilities, per point you have in the Starship Exotic Particle Generator skill. The Critical Chance bonus gained from this Trait is capped at +50% (attained by having 250 Particle Generators skill), but there is no cap on the Critical Severity bonus. +__% Critical Hit Chance for Exotic Damage Abilities +__% Critical Hit Severity for Exotic Damage Abilities\\u0026nbsp; \\n\\u0026nbsp; | Projectile Training\\u0026nbsp; | +5% Projectile Weapon Damage\\u0026nbsp; \\n\\u0026nbsp; | Self-Modulating Fire\\u0026nbsp; | On outgoing Critical Hits, your energy weapons and projectiles gain +50% Shield Penetration for 10 sec (Can trigger once every 45 sec)\\u0026nbsp; \\n\\u0026nbsp; | Duelist's Fervor\\u0026nbsp; | You or your teammates getting kills will grant you a short-duration damage and accuracy rating boost. Whenever you or a teammate kills something: +5% All Damage for 10 sec +5 Accuracy Rating for 10 sec (Effect stack up to 3 times)\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nStarship Traits\\u0026nbsp; | Desperate Repairs\\u0026nbsp; | When critically hit: Grant 1 Desperation counter for 120 sec. At 3 counters: To self: +5,000 Shield Regeneration. To self: +25,000 Hit Points. Prevents gaining Desperation counters for 60 sec.\\u0026nbsp; \\n\\u0026nbsp; | Emitter Synergy\\u0026nbsp; | When using Tac or Intel Bridge Office Ability: To self: +7.5% Exotic Damage for 15 sec (Stacks up to 3 times) To self: +7.5% Shield Heals for 15 sec (Stacks up to 3 times)\\u0026nbsp; \\n\\u0026nbsp; | Reactive Repair Nanites\\u0026nbsp; | Using a hull heal ability will also heal your hangar pets within 5km of your target for a portion of the healing dealt.\\u0026nbsp; \\n\\u0026nbsp; | Tachyon Dispersal\\u0026nbsp; | While this trait is slotted, Tachyon Beam will significantly reduce the target's shield hardness while channeled. In addition, if Tachyon Beam reaches its full duration it will release a large burst of Tachyon energy that will inflict shield damage over time and reduce the hardness of affected targets within its radius.\\u0026nbsp; \\n\\u0026nbsp; | Highly Specialized\\u0026nbsp; | Each time one of their abilities is activated, it will cause all other specialist bridge officer abilities to recharge more quickly, allowing them all to be used more frequently. In addition, you will gain a boost to Starship Hull Repair, Starship Weapon Specialization and Starship Particle Generators skills. This skill buff stacks up to 5 times.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nSpace Reputation Traits\\u0026nbsp; | Advanced Targeting Systems\\u0026nbsp; | Slightly increases critical severity in space combat\\u0026nbsp; \\n\\u0026nbsp; | Torpedo Pre-Fire Sequence\\u0026nbsp; | Torpedo Damage and Destructible Torpedo Flight Speed\\u0026nbsp; \\n\\u0026nbsp; | Auxiliary Power Configuration - Offense\\u0026nbsp; | In space combat you gain a damage and accuracy boost based on your Auxiliary Power Level\\u0026nbsp; \\n\\u0026nbsp; | Omega Kinetic Shearing\\u0026nbsp; | Torpedoes and Mines deal an additional 40% of their outgoing kinetic damage as a shield-penetrating DoT over 6 seconds.\\u0026nbsp; \\n\\u0026nbsp; | Precision\\u0026nbsp; | Increases your Critical Hit Chance in space combat.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nActive Reputation Traits\\u0026nbsp; | Bio-Molecular Shield Generator\\u0026nbsp; | Bio-Molecular Shield Generator creates a fixed position shield generator, in space combat, that regenerates starship shields and reduces the damage taken by starship shields for allies in the immediate area.\\u0026nbsp; \\n\\u0026nbsp; | Deploy Sensor Interference Platform\\u0026nbsp; | Deploy a Sensor Interference Platform which redirects most weapons fire to itself. The platform generates an inhibiting feedback pulse around nearby allied vessels, reducing the damage of enemies who attack targets other than the platform.\\u0026nbsp; \\n\\u0026nbsp; | Quantum Singularity Manipulation\\u0026nbsp; | Drastically increases all space Science Stats for a short time. After a few seconds, your ship will also be cloaked for the remaining duration of the power. You may fire your weapons and use abilities normally without breaking the cloak. This cloak does not bring your shields offline.\\u0026nbsp; \\n\\u0026nbsp; | Refracting Tetryon Cascade\\u0026nbsp; | Releases a cascading burst of Tetryon energy from your Deflector Dish at foes within 3km. The Tetryon Cascade will refract from initial targets to other nearby targets, dealing less damage with each jump. The Refracting Tetryon Cascade can jump to 2 additional targets. The charge can only jump 5km to the next target. WARNING: If the target's sensors are scrambled or otherwise confused when it is hit with the Tetryon Cascade, the charge may bounce back to you or your allies.\\u0026nbsp; \\n\\u0026nbsp; | Anti-Time Entanglement Singularity\\u0026nbsp; | Anti-Time Entanglement Singularity creates an Anti-Time anomaly in the target's immediate vicinity. The singularity causes severe Physical damage to foes caught within while slowing and potentially locking them in place as normal space-time violently interacts with the anomaly. This singularity rapidly shrinks in size until it fully dissipates.\\u0026nbsp; \\n\\u0026nbsp; | \\u0026nbsp; | \\u0026nbsp; \\nDuty Officers\\u0026nbsp; | Projectile Weapons Officer\\u0026nbsp; | Chance to increase Kinetic Damage from torpedoes\\u0026nbsp; \\n\\u0026nbsp; | Projectile Weapons Officer\\u0026nbsp; | Chance for stacking Crit Severity buff on firing Projectiles\\u0026nbsp; \\n\\u0026nbsp; | Conn Officer\\u0026nbsp; | Recharges Evasive Maneuvers when Emergency Power to Engines is activated\\u0026nbsp; \\n\\u0026nbsp; | Deflector Officer\\u0026nbsp; | Chance to reduce the recharge time for Deflector abilities\\u0026nbsp; \\n\\u0026nbsp; | Deflector Officer\\u0026nbsp; | Chance to reduce the recharge time for Deflector abilities\\u0026nbsp; \\n\\u0026nbsp; | Gravimetric Scientist\\u0026nbsp; | Chance to create an aftershock Gravity Well\\u0026nbsp;\", \"author_fullname\": \"t2_k7vp5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bv0dwk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559289215.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003ECaptain Details\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ECaptain Name\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EDr. Jannick Carter\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Career\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EScience\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Faction\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFederation\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain Race\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHuman\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPrimary Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETemporal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESecondary Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EStrategist\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ESpace Skill Tree\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ERank\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EEngineering\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EScience\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ETactical\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003E\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELieutenant\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Restoration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Capacity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Restoration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Capacity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Energy Weapon Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Projectile Weapon Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELt. Commander\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EElectro-Plasma System Flow\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Impulse Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Control Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Drain Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETargeting Expertise\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDefensive Maneuvering\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFull Impulse Energy Shunt\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECommander\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHull Plating\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EShield Regeneration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EShield Hardness\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Weapon Amplification\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Weapon Specialization\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECaptain\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDefensive Subsystem Tuning\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOffensive Subsystem Tuning\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Exotic Particle Generator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Long Range Targeting Sensors\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Hull Penetration\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EImproved Shield Weakening\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAdmiral\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWarp Core Potential\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWarp Core Efficiency\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E1 Points Left\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E14\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E16\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E15\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ESpace Skill Unlocks\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EPurchases\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EEngineering\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EScience\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ETactical\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHazard Emitters III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EScience Team III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETachyon Beam III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E5\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E7\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFeedback Pulse III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPhotonic Shockwave III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EJam Sensors III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E10\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E12\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPolarize Hull III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravity Well III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETractor Beam III\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E15\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EShip Loadout: \\u003Cem\\u003EFleet Advanced Research Vessel (T6)\\u003C/em\\u003E\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ESlot\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EItem\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003ENotes\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 1\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Piezo- Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravimetric Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EFore Weapon 3\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETerran Task Force Photon Torpedo Launcher Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 1\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ECutting Kinetic Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 2\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDyson Proton Turret Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EAft Weapon 3\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChronometric Polaron Omni-Directional Beam Array Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EDeflector\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Counter-Command_Deflector_Array\\\"\\u003ECounter-Command Deflector Array\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E2nd - Deteriorating Secondary Deflector Mk XIV [EPG/ShdHeal]\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EImpulse Engines\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Adapted_M.A.C.O._Combat_Impulse_Engines\\\"\\u003EAdapted M.A.C.O. Combat Impulse Engines\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EWarp Core\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Temporal_Defense_Initiative_Overcharged_Warp_Core\\\"\\u003ETemporal Defense Initiative Overcharged Warp Core\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EShields\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Adapted_M.A.C.O._Covariant_Shield_Array\\\"\\u003EAdapted M.A.C.O. Covariant Shield Array\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E4 Engineering Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Proton_Particle_Stabilizer\\\"\\u003EProton Particle Stabilizer\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Ferrofluid_Hydraulic_Assembly\\\"\\u003EFerrofluid Hydraulic Assembly\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Engineering_-_Conductive_RCS_Accelerator_\\\"\\u003EConductive RCS Accelerator [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Delphic_Tear_Generator\\\"\\u003EDelphic Tear Generator\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E5 Science Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_\\\"\\u003ERestorative Particle Focuser [EPG] [CtrlX]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Restorative_Particle_Focuser_\\\"\\u003ERestorative Particle Focuser [EPG] [CtrlX]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Temporal_Disentanglement_Suite\\\"\\u003ETemporal Disentanglement Suite\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Plasma-Generating_Weapon_Signature_Amplifier_\\\"\\u003EPlasma-Generating Weapon Signature Amplifier [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Science_-_Exotic_Particle_Field_Exciter_\\\"\\u003EExotic Particle Field Exciter [EPG]\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E2 Tactical Consoles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Tactical_-_Chronometric_Capacitor\\\"\\u003EChronometric Capacitor\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Console_-_Universal_-_Piezo-Electric_Focuser\\\"\\u003EPiezo-Electric Focuser\\u003C/a\\u003E Mk XII Very Rare\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EOfficer Details\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EBridge Officers\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EPower\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ECommander Science\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Subspace_Vortex\\\"\\u003ESubspace Vortex I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Hazard_Emitters\\\"\\u003EHazard Emitters II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Destabilizing_Resonance_Beam\\\"\\u003EDestabilizing Resonance Beam II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Gravity_Well\\\"\\u003EGravity Well III\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELt. Commander Engineering-Temporal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Entropic_Redistribution\\\"\\u003EEntropic Redistribution I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Chronometric_Inversion_Field\\\"\\u003EChronometric Inversion Field I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Entropic_Cascade\\\"\\u003EEntropic Cascade II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ELieutenant Tactical\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Tactical_Team\\\"\\u003ETactical Team I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Torpedo:_Spread\\\"\\u003ETorpedo: Spread II\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EEnsign Science\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u003Ca href=\\\"http://sto.gamepedia.com/Ability:_Tachyon_Beam\\\"\\u003ETachyon Beam I\\u003C/a\\u003E \\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ETraits \\u0026amp; Duty Officers\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003ETrait\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EName\\u0026nbsp;\\u003C/th\\u003E\\n\\u003Cth\\u003EDescription\\u0026nbsp;\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPersonal Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAblative Shell\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAfter receiving a total of 10,000 Damage (pre-resist), trigger Ablative Shell: +X Hit Points every 0.5 sec for 3 sec, +33 All Damage Resistance Rating for 3 sec, May only trigger once per 30 sec\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EContext is for Kings\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEach second while in combat, if you did not take damage in the past second, you gain a damage bonus. Otherwise, you gain a boost to your Damage Resistence Rating. Each second while in combat: If you did take damage in the past second: +3 All Damage Resistence Rating for 10 sec If you did not take damage in the past second: +1% Bonus All Damage for 10 sec\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EFleet Coordinator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E+2% All Damage per Team member (Self included), up to 10%\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERepair Crews\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhile in combat, gain 1 stack of Repair Crews every 5 sec (up to 5 max). Per Stack: +5 All Damage Resistance Rating +5% Hull Repair Rate\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EInspirational Leader\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E10% chance: Activating any Bridge Officer Ability grants +10 to Most Starship Skills for 15 seconds (may stack up to 3 times).\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EParticle Manipulator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGain .2% Critical Chance and .1% Critical Severity for Exotic Damage abilities, per point you have in the Starship Exotic Particle Generator skill. The Critical Chance bonus gained from this Trait is capped at +50% (attained by having 250 Particle Generators skill), but there is no cap on the Critical Severity bonus. +\\u003Cstrong\\u003E% Critical Hit Chance for Exotic Damage Abilities +\\u003C/strong\\u003E% Critical Hit Severity for Exotic Damage Abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Training\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E+5% Projectile Weapon Damage\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ESelf-Modulating Fire\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOn outgoing Critical Hits, your energy weapons and projectiles gain +50% Shield Penetration for 10 sec (Can trigger once every 45 sec)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDuelist\\u0026#39;s Fervor\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EYou or your teammates getting kills will grant you a short-duration damage and accuracy rating boost. Whenever you or a teammate kills something: +5% All Damage for 10 sec +5 Accuracy Rating for 10 sec (Effect stack up to 3 times)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStarship Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDesperate Repairs\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhen critically hit: Grant 1 Desperation counter for 120 sec. At 3 counters: To self: +5,000 Shield Regeneration. To self: +25,000 Hit Points. Prevents gaining Desperation counters for 60 sec.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEmitter Synergy\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhen using Tac or Intel Bridge Office Ability: To self: +7.5% Exotic Damage for 15 sec (Stacks up to 3 times) To self: +7.5% Shield Heals for 15 sec (Stacks up to 3 times)\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EReactive Repair Nanites\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EUsing a hull heal ability will also heal your hangar pets within 5km of your target for a portion of the healing dealt.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETachyon Dispersal\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EWhile this trait is slotted, Tachyon Beam will significantly reduce the target\\u0026#39;s shield hardness while channeled. In addition, if Tachyon Beam reaches its full duration it will release a large burst of Tachyon energy that will inflict shield damage over time and reduce the hardness of affected targets within its radius.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EHighly Specialized\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EEach time one of their abilities is activated, it will cause all other specialist bridge officer abilities to recharge more quickly, allowing them all to be used more frequently. In addition, you will gain a boost to Starship Hull Repair, Starship Weapon Specialization and Starship Particle Generators skills. This skill buff stacks up to 5 times.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESpace Reputation Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAdvanced Targeting Systems\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ESlightly increases critical severity in space combat\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedo Pre-Fire Sequence\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedo Damage and Destructible Torpedo Flight Speed\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAuxiliary Power Configuration - Offense\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EIn space combat you gain a damage and accuracy boost based on your Auxiliary Power Level\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EOmega Kinetic Shearing\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ETorpedoes and Mines deal an additional 40% of their outgoing kinetic damage as a shield-penetrating DoT over 6 seconds.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EPrecision\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EIncreases your Critical Hit Chance in space combat.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EActive Reputation Traits\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EBio-Molecular Shield Generator\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EBio-Molecular Shield Generator creates a fixed position shield generator, in space combat, that regenerates starship shields and reduces the damage taken by starship shields for allies in the immediate area.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeploy Sensor Interference Platform\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeploy a Sensor Interference Platform which redirects most weapons fire to itself. The platform generates an inhibiting feedback pulse around nearby allied vessels, reducing the damage of enemies who attack targets other than the platform.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EQuantum Singularity Manipulation\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDrastically increases all space Science Stats for a short time. After a few seconds, your ship will also be cloaked for the remaining duration of the power. You may fire your weapons and use abilities normally without breaking the cloak. This cloak does not bring your shields offline.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERefracting Tetryon Cascade\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EReleases a cascading burst of Tetryon energy from your Deflector Dish at foes within 3km. The Tetryon Cascade will refract from initial targets to other nearby targets, dealing less damage with each jump. The Refracting Tetryon Cascade can jump to 2 additional targets. The charge can only jump 5km to the next target. WARNING: If the target\\u0026#39;s sensors are scrambled or otherwise confused when it is hit with the Tetryon Cascade, the charge may bounce back to you or your allies.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAnti-Time Entanglement Singularity\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EAnti-Time Entanglement Singularity creates an Anti-Time anomaly in the target\\u0026#39;s immediate vicinity. The singularity causes severe Physical damage to foes caught within while slowing and potentially locking them in place as normal space-time violently interacts with the anomaly. This singularity rapidly shrinks in size until it fully dissipates.\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EDuty Officers\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Weapons Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to increase Kinetic Damage from torpedoes\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EProjectile Weapons Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance for stacking Crit Severity buff on firing Projectiles\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EConn Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003ERecharges Evasive Maneuvers when Emergency Power to Engines is activated\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeflector Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to reduce the recharge time for Deflector abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EDeflector Officer\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to reduce the recharge time for Deflector abilities\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EGravimetric Scientist\\u0026nbsp;\\u003C/td\\u003E\\n\\u003Ctd\\u003EChance to create an aftershock Gravity Well\\u0026nbsp;\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?auto=webp\\u0026s=1b86bccaf167b2d5123de5174f8e10d449263d48\", \"width\": 290, \"height\": 80}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=69311b30c71d5588ef2476413ab46e99ccd63a63\", \"width\": 108, \"height\": 29}, {\"url\": \"https://external-preview.redd.it/hX8RtrIbaT69_5bIQAn-4ZMbnSYwuXZe8Q0MANlVyz0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0f8e5d419be15a063d995bcf551bcc86c9348be3\", \"width\": 216, \"height\": 59}], \"variants\": {}, \"id\": \"8pVmilrUZuM4Y3Z8IjHjdTYNdYCe6e2y_bUeDCZKUg4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv0dwk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wooyoo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bv0dwk/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bv0dwk/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559260415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"............................................________ \\n....................................,.-'\\\"...................``~., \\n.............................,.-\\\"...................................\\\"-., \\n.........................,/...............................................\\\":, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\\"........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\\"~-,_..............................,:`........../ \\n.........../(_....\\\"~,_........\\\"~,_....................,:`........_/ \\n..........{.._$;_......\\\"=,_.......\\\"-,_.......,.-~-,},.~\\\";/....} \\n...........((.....*~_.......\\\"=-._......\\\";,,./`..../\\\"............../ \\n...,,,___.`~,......\\\"~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\\" \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u003E-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u003E--==`` \\n........................................_..........._,-%.......` \\n...................................,\", \"author_fullname\": \"t2_2awf2pwl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buz6bd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559282431.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E............................................________ \\n....................................,.-\\u0026#39;\\u0026quot;...................\\u003Ccode\\u003E~., \\n.............................,.-\\u0026quot;...................................\\u0026quot;-., \\n.........................,/...............................................\\u0026quot;:, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\u0026quot;........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\u0026quot;~-,_..............................,:`........../ \\n.........../(_....\\u0026quot;~,_........\\u0026quot;~,_....................,:`........_/ \\n..........{.._$;_......\\u0026quot;=,_.......\\u0026quot;-,_.......,.-~-,},.~\\u0026quot;;/....} \\n...........((.....*~_.......\\u0026quot;=-._......\\u0026quot;;,,./`..../\\u0026quot;............../ \\n...,,,___.`~,......\\u0026quot;~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\u0026quot; \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u0026gt;-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u0026gt;--==\\u003C/code\\u003E \\n........................................\\u003Cem\\u003E...........\\u003C/em\\u003E,-%.......` \\n...................................,\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buz6bd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dwolfj\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buz6bd/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559253631.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1u17f7xq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Excalibur] Darkness\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 76, \"hide_score\": false, \"name\": \"t3_buyfh6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/rQRkNUFVzJBfU0NKRterlAHy9b6lCEqixFHKQBoz6LM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559278533.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?auto=webp\\u0026s=f909102a292f8e034817ecba780a3335b97cd05a\", \"width\": 1280, \"height\": 699}, \"resolutions\": [{\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8b1f21db35f534c67e58cad03be2796677f047fb\", \"width\": 108, \"height\": 58}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=dc78a564e15d9728dda51215a38d3ac3ac354af9\", \"width\": 216, \"height\": 117}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=66018766b3c398c0c7c1f434d4805330b75a3ddb\", \"width\": 320, \"height\": 174}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1676c512c45c5c31f6b597ec4e1f263c11973593\", \"width\": 640, \"height\": 349}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5cfbc3635f1655a01d8f70f8b7772efba886c379\", \"width\": 960, \"height\": 524}, {\"url\": \"https://preview.redd.it/z1p9l2vgwe131.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e4cbbe7cb9746362a029aeea72037dd8c8316a46\", \"width\": 1080, \"height\": 589}], \"variants\": {}, \"id\": \"hz42riBu_Nv54z_i96b8_OFwO7HaAcgdWq6FDP77RJs\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buyfh6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CephalonSoural\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buyfh6/excalibur_darkness/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/z1p9l2vgwe131.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559249733.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*This is a proposal for the complete overhaul of the skills modding system, which was inspired by the many suggestions calling for changes to the current system.*\\n\\n*My main objective was to create an engaging experience with clear and rewarding progression goals. I also wanted to create more flexible and convenient skills modding options than the current system could ever provide. At the end of the progression, I wanted skill power players to feel proud of their achievement.*\\n\\n*Consequently, I was able to eliminate the seemingly impossible task of obtaining exactly the mods we need, as well as the frustration associated with managing hundreds of skill mods. In a few words, the current system is daunting and unproductive.*\\n\\n*In contrast, the proposed system is filled with incentives meant to keep us playing, not only because our dedication is continually rewarded, but also because we can make progress every day.*\\n\\n\\u0026#x200B;\\n\\n**This modding system is composed of 5 parts:**\\n\\n1. Tech Proficiency Progression\\n2. Skill Mod Strength Levels\\n3. Skill Power Budgeting\\n4. Tech Proficiency Awards\\n5. Skills Maintenance\\n\\n\\u0026#x200B;\\n\\n**TECH PROFICIENCY PROGRESSION**\\n\\nEach skill variant has its own proficiency progression, which starts at level 0 and ends at level 4. Players may start a progression for their favorite skills after reaching character level 15. The final proficiency level is reserved for World Tier 5. If you're already at world tier 5, you'll simply complete the proficiency progressions you choose without interruptions.\\n\\nTech points are earned by completing activities and objectives while using your preferred skill variant. Each time your proficiency level increases, small skill power boosts are awarded for that variant, as well as other benefits mentioned later.\\n\\n***Edit:*** *How soon you can finish depends on how much you play, but it shouldn't take more than 2-3 weeks to complete the progression for all skill variants. You also don't need to start the progression for skills you're not interested in using. It's all up to you. Proficiency progressions are pretty much automatic because they work just like when you're ranking your character. That is, there is no traveling to the Quartermaster to upgrade anything. It just happens as you play.*\\n\\n\\u0026#x200B;\\n\\n**SKILL MOD STRENGTH LEVELS**\\n\\nSkill mods don\\u2019t have a percentage value. Instead, skill variants have a unique set of mods, and each set has five different strength levels that match your proficiency with the variant. Mod strength levels allow you to reach higher modding percentage values in combination with sufficient skill power. This means that it\\u2019s okay to run a low skill power build using stronger mods.\\n\\nCharacter level and world tier don't define the strength of the mods that will drop for you, but skill mods do begin to drop at character level 15. If you're already at world tier 5, there's no need to start a new character. Just start farming for mods.\\n\\nSkill mods can be obtained from the same sources we have right now (there are many), but strength levels must be collected in numerical order. This means that you must first obtain a set\\u2019s strength level 1 mod before strength 2 can drop for you, and so on.\\n\\nSkill mods won\\u2019t need inventory space because they\\u2019re stored just like weapon mods. The difference is that skill mods of greater strengths will upgrade what you\\u2019ve already collected. It\\u2019s possible to find a mod with a strength level that is higher than your proficiency level. In this case, the upgrade is saved for later use and will be automatically applied when the mod matches your proficiency level.\\n\\n***Edit:*** *You can target mod types by equipping the skill variants for which you want to find mods. So, if you want mods for your Scanner pulse and the Oxidizer chem launcher, just equip them and go play the game.*\\n\\n*Your proficiency level with a variant doesn't determine which mod strength will drop; proficiency only determines which mods you can use, and how much of a skill power boost you'll be getting.*\\n\\n*Like the proficiency progression, mod upgrades occur automatically. You just pick up the mod and the system does the rest. There's no need to unequip a weaker mod to equip a stronger mod, and there's no need to travel to the Quartermaster or a specific bench somewhere. The upgrades just happen automatically.*\\n\\n\\u0026#x200B;\\n\\n**SKILL POWER BUDGETING**\\n\\nMods unlock the slider bars you\\u2019ll use to budget your skill power, as long as the mod\\u2019s strength isn\\u2019t higher than your proficiency level.\\n\\nBudgeting skill power is an easy concept to explain. Essentially, when you increase the slider bar for a specific mod, less skill power is available for the remaining mods associated with the skill variant.\\n\\nThe budgeting method let\\u2019s you distribute custom amounts of your skill power to improve all active mods at the same time, or you can use all of your skill power to improve a single mod. The choice is yours.\\n\\nBalance is important! Skill power will affect skill mods differently, so not all slider bars begin at 0% and end at 100% improvement.\\n\\n\\u0026#x200B;\\n\\n**TECH PROFICIENCY AWARDS**\\n\\nProficiency awards can be earned for reaching maximum proficiency with a skill platform. So, if you achieve maximum proficiency with the Scanner, Remote, and Jammer Pulse, you\\u2019ll earn special rewards.\\n\\nThe best rewards are additional slots that let you save and manage modding configurations separately from loadouts, all without affecting your build.\\n\\nOther proficiency awards could include patches and cosmetics, as well as tech-oriented accessories, such as that tactical flashlight these guys keep asking for.\\n\\n\\u0026#x200B;\\n\\n**SKILLS MAINTENANCE**\\n\\nThis system also introduces the concept of skill maintenance, for which you\\u2019ll need special currency. Failure to properly maintain the equipment could have consequences, such as very long skill cooldowns.\\n\\nThe maintenance concept creates a cycle that continues even after every proficiency level has been achieved and every mod strength has been collected. *This is what could replace the seemingly impossible hunt for the correct skill mods we\\u2019re dealing with today.*\\n\\nMaintenance tasks should never create a burden for players. Maintenance should be quick and simple, *and obtaining the necessary currency or materials should result from just playing the game.* This means no lengthy animations, no complicated requirements, and no overly scarce resources.\\n\\n***Edit:*** *Which skills need maintenance depends on which skills you use. I use the Reinforcer Chem Launcher and the Assault Turret all the time. This means that I'll need to maintain only these variants. If and when I do, all I have to do is hold down the \\\"maintenance\\\" button down for 3-5 seconds and I'm done. I just need to make sure that I have enough special currency to perform the task. But how is the special currency obtained? By just playing the game.*\\n\\n\\u0026#x200B;\\n\\n***Note:*** *The skill power budgeting concept was posted on this sub, but I\\u2019m unable to find the post to give the guy credit.*\\n\\n\\u0026#x200B;\\n\\n\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\\\_\\n\\n**Edit: There seems to be some confusion regarding the length of progressions and how much work really needs to be done here. I expanded some points and included clarifications in** ***italics.*** \\n\\n\\u0026#x200B;\\n\\n**Here are answers to some important questions:**\\n\\n\\u0026#x200B;\\n\\n**Why such a complicated system?**\\n\\nThe system is not complicated at all. It just takes a lot of words to explain everything. All you have to do is play the game using your favorite skills. Everything else just happens automatically, except for skills maintenance. Becoming the ultimate skill power player is meant to happen much faster than the description might make you think.\\n\\n\\u0026#x200B;\\n\\n**Why do we need a new system?**\\n\\nBecause the current system is designed to throttle progress. It could seriously take many months to years to min/max various builds. I play about 6 hours a day and I haven't min/maxed a single build. That's fine and all, but getting to a place where I can comfortably mod my skills will take way too long, plus it is frustrating to manage all those mods.\\n\\nAnother reason is that the game is boring for some people right now. To put it simply, variety and flexibility are hogtied by RNG and a huge loot pool. That's not even mentioning how skills themselves need to be worked on.\\n\\n\\u0026#x200B;\\n\\n**Why not go back to how things were in Division 1?**\\n\\nI don't think that's what they want for this game. The Division 1 made it easy to put together a skill build and boost any skill to the max. They expect effort and dedication to result in the most powerful skills, but I think they're going about it all wrong. Remember, we want skills to be powerful and modding to be convenient and flexible, but at what cost? Months and months of farming? We don't even have enough inventory space to hold all the skill mods!\\n\\n\\u0026#x200B;\\n\\n**Why a proficiency progression?**\\n\\nThe proficiency progression is a compromise that gives us something to strive for. We can't really expect to just stack skill power and collect a few mods like we did in the first game, because that's not what they seem to want. Direct evidence of what what they want is the very low probability of obtaining a single item with the correct attributes and talents. If you don't know, there is a very, very low chance of finding exactly what you need. I just don't think this very low probability should apply to modding skills. At the same time, I don't think it should be a breeze. And it should definitely not be boring.\\n\\nIt's important to also look at the big picture: the way mods are programmed to drop (randomly and with a percentage range) doesn't let us target which skills we want to improve, how well we can improve them, or even how fast we can accomplish that. Overall, the control we have is so small that it's discouraging.\\n\\nIn contrast, the system I'm proposing keeps us engaged because we're always making notable progress, we're always working toward something that is well within range. This system is also rewarding from start to finish (see Tech Proficiency Awards).\\n\\nThink about it -- the progression speed is in your hands. You choose which skills you want to work on and when. You would almost have complete control, if it weren't for the limited number of mods you need to collect. And that's a fair trade off. If skill modding is not your thing, then just let the progression and mods collection happen naturally. \\n\\nAll this convenience and bonuses in exchange for what? Two weeks to max out all skill platforms and collect a limited number of mods (that don't even have to be managed or stored). Then, there's some easy skills maintenance task that, if ignored, only affects the efficiency of the skills you use the most.\", \"author_fullname\": \"t2_3syb9zh4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buy2m9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559334132.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559276681.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EThis is a proposal for the complete overhaul of the skills modding system, which was inspired by the many suggestions calling for changes to the current system.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EMy main objective was to create an engaging experience with clear and rewarding progression goals. I also wanted to create more flexible and convenient skills modding options than the current system could ever provide. At the end of the progression, I wanted skill power players to feel proud of their achievement.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EConsequently, I was able to eliminate the seemingly impossible task of obtaining exactly the mods we need, as well as the frustration associated with managing hundreds of skill mods. In a few words, the current system is daunting and unproductive.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EIn contrast, the proposed system is filled with incentives meant to keep us playing, not only because our dedication is continually rewarded, but also because we can make progress every day.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis modding system is composed of 5 parts:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ETech Proficiency Progression\\u003C/li\\u003E\\n\\u003Cli\\u003ESkill Mod Strength Levels\\u003C/li\\u003E\\n\\u003Cli\\u003ESkill Power Budgeting\\u003C/li\\u003E\\n\\u003Cli\\u003ETech Proficiency Awards\\u003C/li\\u003E\\n\\u003Cli\\u003ESkills Maintenance\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETECH PROFICIENCY PROGRESSION\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEach skill variant has its own proficiency progression, which starts at level 0 and ends at level 4. Players may start a progression for their favorite skills after reaching character level 15. The final proficiency level is reserved for World Tier 5. If you\\u0026#39;re already at world tier 5, you\\u0026#39;ll simply complete the proficiency progressions you choose without interruptions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETech points are earned by completing activities and objectives while using your preferred skill variant. Each time your proficiency level increases, small skill power boosts are awarded for that variant, as well as other benefits mentioned later.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EHow soon you can finish depends on how much you play, but it shouldn\\u0026#39;t take more than 2-3 weeks to complete the progression for all skill variants. You also don\\u0026#39;t need to start the progression for skills you\\u0026#39;re not interested in using. It\\u0026#39;s all up to you. Proficiency progressions are pretty much automatic because they work just like when you\\u0026#39;re ranking your character. That is, there is no traveling to the Quartermaster to upgrade anything. It just happens as you play.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILL MOD STRENGTH LEVELS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods don\\u2019t have a percentage value. Instead, skill variants have a unique set of mods, and each set has five different strength levels that match your proficiency with the variant. Mod strength levels allow you to reach higher modding percentage values in combination with sufficient skill power. This means that it\\u2019s okay to run a low skill power build using stronger mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECharacter level and world tier don\\u0026#39;t define the strength of the mods that will drop for you, but skill mods do begin to drop at character level 15. If you\\u0026#39;re already at world tier 5, there\\u0026#39;s no need to start a new character. Just start farming for mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods can be obtained from the same sources we have right now (there are many), but strength levels must be collected in numerical order. This means that you must first obtain a set\\u2019s strength level 1 mod before strength 2 can drop for you, and so on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESkill mods won\\u2019t need inventory space because they\\u2019re stored just like weapon mods. The difference is that skill mods of greater strengths will upgrade what you\\u2019ve already collected. It\\u2019s possible to find a mod with a strength level that is higher than your proficiency level. In this case, the upgrade is saved for later use and will be automatically applied when the mod matches your proficiency level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EYou can target mod types by equipping the skill variants for which you want to find mods. So, if you want mods for your Scanner pulse and the Oxidizer chem launcher, just equip them and go play the game.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EYour proficiency level with a variant doesn\\u0026#39;t determine which mod strength will drop; proficiency only determines which mods you can use, and how much of a skill power boost you\\u0026#39;ll be getting.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ELike the proficiency progression, mod upgrades occur automatically. You just pick up the mod and the system does the rest. There\\u0026#39;s no need to unequip a weaker mod to equip a stronger mod, and there\\u0026#39;s no need to travel to the Quartermaster or a specific bench somewhere. The upgrades just happen automatically.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILL POWER BUDGETING\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMods unlock the slider bars you\\u2019ll use to budget your skill power, as long as the mod\\u2019s strength isn\\u2019t higher than your proficiency level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBudgeting skill power is an easy concept to explain. Essentially, when you increase the slider bar for a specific mod, less skill power is available for the remaining mods associated with the skill variant.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe budgeting method let\\u2019s you distribute custom amounts of your skill power to improve all active mods at the same time, or you can use all of your skill power to improve a single mod. The choice is yours.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBalance is important! Skill power will affect skill mods differently, so not all slider bars begin at 0% and end at 100% improvement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETECH PROFICIENCY AWARDS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EProficiency awards can be earned for reaching maximum proficiency with a skill platform. So, if you achieve maximum proficiency with the Scanner, Remote, and Jammer Pulse, you\\u2019ll earn special rewards.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe best rewards are additional slots that let you save and manage modding configurations separately from loadouts, all without affecting your build.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOther proficiency awards could include patches and cosmetics, as well as tech-oriented accessories, such as that tactical flashlight these guys keep asking for.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESKILLS MAINTENANCE\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis system also introduces the concept of skill maintenance, for which you\\u2019ll need special currency. Failure to properly maintain the equipment could have consequences, such as very long skill cooldowns.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe maintenance concept creates a cycle that continues even after every proficiency level has been achieved and every mod strength has been collected. \\u003Cem\\u003EThis is what could replace the seemingly impossible hunt for the correct skill mods we\\u2019re dealing with today.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaintenance tasks should never create a burden for players. Maintenance should be quick and simple, \\u003Cem\\u003Eand obtaining the necessary currency or materials should result from just playing the game.\\u003C/em\\u003E This means no lengthy animations, no complicated requirements, and no overly scarce resources.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEdit:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EWhich skills need maintenance depends on which skills you use. I use the Reinforcer Chem Launcher and the Assault Turret all the time. This means that I\\u0026#39;ll need to maintain only these variants. If and when I do, all I have to do is hold down the \\u0026quot;maintenance\\u0026quot; button down for 3-5 seconds and I\\u0026#39;m done. I just need to make sure that I have enough special currency to perform the task. But how is the special currency obtained? By just playing the game.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENote:\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003EThe skill power budgeting concept was posted on this sub, but I\\u2019m unable to find the post to give the guy credit.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E__________________________________________________________________\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit: There seems to be some confusion regarding the length of progressions and how much work really needs to be done here. I expanded some points and included clarifications in\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003Eitalics.\\u003C/em\\u003E\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHere are answers to some important questions:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy such a complicated system?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe system is not complicated at all. It just takes a lot of words to explain everything. All you have to do is play the game using your favorite skills. Everything else just happens automatically, except for skills maintenance. Becoming the ultimate skill power player is meant to happen much faster than the description might make you think.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy do we need a new system?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause the current system is designed to throttle progress. It could seriously take many months to years to min/max various builds. I play about 6 hours a day and I haven\\u0026#39;t min/maxed a single build. That\\u0026#39;s fine and all, but getting to a place where I can comfortably mod my skills will take way too long, plus it is frustrating to manage all those mods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother reason is that the game is boring for some people right now. To put it simply, variety and flexibility are hogtied by RNG and a huge loot pool. That\\u0026#39;s not even mentioning how skills themselves need to be worked on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy not go back to how things were in Division 1?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t think that\\u0026#39;s what they want for this game. The Division 1 made it easy to put together a skill build and boost any skill to the max. They expect effort and dedication to result in the most powerful skills, but I think they\\u0026#39;re going about it all wrong. Remember, we want skills to be powerful and modding to be convenient and flexible, but at what cost? Months and months of farming? We don\\u0026#39;t even have enough inventory space to hold all the skill mods!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy a proficiency progression?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe proficiency progression is a compromise that gives us something to strive for. We can\\u0026#39;t really expect to just stack skill power and collect a few mods like we did in the first game, because that\\u0026#39;s not what they seem to want. Direct evidence of what what they want is the very low probability of obtaining a single item with the correct attributes and talents. If you don\\u0026#39;t know, there is a very, very low chance of finding exactly what you need. I just don\\u0026#39;t think this very low probability should apply to modding skills. At the same time, I don\\u0026#39;t think it should be a breeze. And it should definitely not be boring.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s important to also look at the big picture: the way mods are programmed to drop (randomly and with a percentage range) doesn\\u0026#39;t let us target which skills we want to improve, how well we can improve them, or even how fast we can accomplish that. Overall, the control we have is so small that it\\u0026#39;s discouraging.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn contrast, the system I\\u0026#39;m proposing keeps us engaged because we\\u0026#39;re always making notable progress, we\\u0026#39;re always working toward something that is well within range. This system is also rewarding from start to finish (see Tech Proficiency Awards).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThink about it -- the progression speed is in your hands. You choose which skills you want to work on and when. You would almost have complete control, if it weren\\u0026#39;t for the limited number of mods you need to collect. And that\\u0026#39;s a fair trade off. If skill modding is not your thing, then just let the progression and mods collection happen naturally. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll this convenience and bonuses in exchange for what? Two weeks to max out all skill platforms and collect a limited number of mods (that don\\u0026#39;t even have to be managed or stored). Then, there\\u0026#39;s some easy skills maintenance task that, if ignored, only affects the efficiency of the skills you use the most.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buy2m9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KelpieCyanide\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buy2m9/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buy2m9/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559247881.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" line 1\\n \\n line 2\\n \\n line 3\\n\\nnormal text\", \"author_fullname\": \"t2_6k6mm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buvucz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559265507.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003Eline 1\\n\\nline 2\\n\\nline 3\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Enormal text\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buvucz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Wongehchuu\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buvucz/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buvucz/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559236707.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"```lua\\nlocal ffi = require(\\\"ffi\\\")\\n\\nffi.cdef[[\\nvoid Sleep(unsigned int seconds); \\n]]\\n```\", \"author_fullname\": \"t2_391wfwow\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buu8cl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559257370.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E```lua\\nlocal ffi = require(\\u0026quot;ffi\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Effi.cdef[[\\nvoid Sleep(unsigned int seconds); \\n]]\\n```\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buu8cl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Anxious_Theory\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buu8cl/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buu8cl/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559228570.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I would like to draw comparison between the 2 incidents.\\n\\n|Date|Ceb|Date|Kuku|\\n|:-|:-|:-|:-|\\n|23/05/2019 Pt1|[Ceb made a crude remark in an EU pub](https://www.removeddit.com/r/DotA2/comments/bs2l9m/ogceb_new_lvl_tilting/) [First reported by u/LVR322 but retracted after Ceb contacted him](https://ibb.co/sgpM4bF)|2/11/2018|[Kuku made the crude remark in a Sea pub](https://www.reddit.com/r/DotA2/comments/9tippm/just_after_col_drama_tnc_kuku_did_it_again_at/)[Initial chinese reaction](https://twitter.com/GodBlessMali/status/1058326847321202688)|2/11/2018|[Kuku apologised on facebook](https://www.facebook.com/pogingkuku/posts/2190153977864424)|\\n|23/05/2019 Pt2|[Another player from same game makes the same complaint](https://www.reddit.com/r/DotA2/comments/bs9ero/ogceb/) [Ceb initial apology](https://www.reddit.com/r/DotA2/comments/bsahbl/ogcebs\\\\_first\\\\_reply\\\\_for\\\\_people\\\\_who\\\\_are\\\\_too\\\\_lazy\\\\_to/)|3/11/2018|[Mender of his Weibo account created an excuse for the remark and was exposed](https://old.reddit.com/r/DotA2/comments/9trn4s/kuku\\\\_apologized\\\\_with\\\\_a\\\\_plot\\\\_twist)\\n|24/05/2019|[Solo take personal action to avoid Epicenter unless Valve make clear of their rules openly](https://www.reddit.com/r/DotA2/comments/bsgsbp/vp\\\\_solo\\\\_wont\\\\_participate\\\\_at\\\\_epicenter\\\\_unless)|3/11/2018|[Mender of his Weibo account created an excuse for the remark and was exposed](https://old.reddit.com/r/DotA2/comments/9trn4s/kuku\\\\_apologized\\\\_with\\\\_a\\\\_plot\\\\_twist)|\\n|25/05/2019|[Pasha also voices his displeasure with valve inconsistencies](https://www.reddit.com/r/DotA2/comments/bsxs9o/vp9pasha\\\\_people\\\\_want\\\\_to\\\\_see\\\\_the\\\\_rules\\\\_so\\\\_that) [Ceb second apology](https://www.reddit.com/r/DotA2/comments/bsuu97/one\\\\_day\\\\_wiser\\\\_twitlonger\\\\_by\\\\_ceb/)|11/11/2018|[Valve initial reaction to let things sort itself out](https://www.reddit.com/r/DotA2/comments/9w1547/the\\\\_major\\\\_and\\\\_professional\\\\_dota\\\\_players/)|\\n|25/05/2019|[Ceb interview with u/LVR322 on the issue](https://www.reddit.com/r/DotA2/comments/bsrtg6/cebs\\\\_first\\\\_thread\\\\_op\\\\_ceb\\\\_told\\\\_me\\\\_that\\\\_he\\\\_might/)|13/11/2018|[TNC manager admit to his mistake](https://www.reddit.com/r/DotA2/comments/9wrkhi/tncs\\\\_manager\\\\_confesses\\\\_that\\\\_he\\\\_was\\\\_the\\\\_one\\\\_who/)|\\n|26/05/2019|[Valve now working with all stakeholders for a long term solution](https://www.reddit.com/r/DotA2/comments/bt6lhw/solo\\\\_valve\\\\_and\\\\_seb\\\\_are\\\\_working\\\\_on\\\\_a\\\\_longterm/) |24/11/2018| [Cyborgmatt first mention of the ban of Kuku and Skem from the CQ major](https://www.reddit.com/r/DotA2/comments/9zxa5q/cyborgmatt\\\\_confirms\\\\_kuku\\\\_and\\\\_skem\\\\_are\\\\_banned/) [Immediate reaction from reddit](https://old.reddit.com/r/DotA2/comments/9zxbyv/valve\\\\_if\\\\_you\\\\_let\\\\_kuku\\\\_and\\\\_skem\\\\_and\\\\_be\\\\_banned\\\\_from) [Ceb reaction](https://www.reddit.com/r/DotA2/comments/9zyhh6/i\\\\_believe\\\\_in\\\\_talk\\\\_no\\\\_jutsu\\\\_and\\\\_i\\\\_hope\\\\_others\\\\_will/)\\n|||25/11/2018|[TNC punishment to Kuku and the manager for their actions](https://old.reddit.com/r/DotA2/comments/a05u22/tnc\\\\_on\\\\_the\\\\_responsibility\\\\_being\\\\_taken\\\\_for\\\\_kuku/)|\\n|||27/11/2018|[TNC qualifies for CQ major](https://www.reddit.com/r/DotA2/comments/a0vobe/congratulations\\\\_to\\\\_the\\\\_2nd\\\\_sea\\\\_team\\\\_to\\\\_qualify/)|\\n|||2/12/2018|[Grantgrant putting himself on the line for Kuku](https://old.reddit.com/r/DotA2/comments/a2agjg/grant\\\\_putting\\\\_his\\\\_casting\\\\_career\\\\_on\\\\_the\\\\_line\\\\_for/) [Action taken by other casters](https://old.reddit.com/r/DotA2/comments/a2fc30/chongqing\\\\_major\\\\_updates\\\\_megathread/) [CQ Org correspondence with TNC](https://www.reddit.com/r/DotA2/comments/a2bt4r/tncs\\\\_new\\\\_statement\\\\_about\\\\_the\\\\_issue/) [IMBATV refusal to contact TNC](https://www.facebook.com/840515722697409/posts/2043073252441644/)|\\n|||3/12/2018|[Valve outright banning kuku after being unsatified with TNC handling](https://www.reddit.com/r/DotA2/comments/a2uary/tnc\\\\_and\\\\_the\\\\_chongqing\\\\_major/) [People calling out valve for their inconsistencies](https://old.reddit.com/r/DotA2/comments/a2umx5/valve\\\\_this\\\\_is\\\\_the\\\\_most\\\\_disappointed\\\\_i\\\\_have\\\\_ever) [2](https://www.reddit.com/r/DotA2/comments/a2ulv2/valves\\\\_statement\\\\_doesnt\\\\_make\\\\_sense/) [3](https://www.reddit.com/r/DotA2/comments/a3b62g/the\\\\_problem\\\\_with\\\\_valves\\\\_statement\\\\_is\\\\_part\\\\_of/) [4](https://old.reddit.com/r/DotA2/comments/a2yp85/since\\\\_valve\\\\_already\\\\_punished\\\\_kuku\\\\_and\\\\_tnc\\\\_should/)||\\n|||11/2/2019|[Kuku banned from attending WESG also held in CQ](https://www.reddit.com/r/DotA2/comments/apfsgy/kuku\\\\_is\\\\_not\\\\_allowed\\\\_to\\\\_enter\\\\_chongqing\\\\_for\\\\_the/) [Valve response](https://www.reddit.com/r/DotA2/comments/aplzur/danielj\\\\_valve\\\\_responds\\\\_regarding\\\\_kuku\\\\_and/) [reddit's reaction](https://www.reddit.com/r/DotA2/comments/apgsen/valve\\\\_straight\\\\_out\\\\_lied\\\\_about\\\\_the\\\\_kuku\\\\_issue\\\\_just/)|\\n|||||\\n\\nI have added additional link labelled in numbers for some reference and context.\\n\\n\\u0026#x200B;\\n\\nWe can safely say that Solo's want for consistency and transparency on valve part have not been realised. Their latest update to work on a long term solution is not openly released to the public and we are not informed if Solo has changed his stance on avoiding Epicenter. Valve are still buying time to make their rules and we are already at the tail end of the DPC.\\n\\n\\u0026#x200B;\\n\\nFrom the interview, Ceb has personally said he will be willing to take the same punishment as Kuku for precedence sake and that he probably would not go to EPICENTER himself, because he started receiving messages with threats. I respect that he is will to hold himself to that punishment.\\n\\n\\u0026#x200B;\\n\\nNow that TI invites are on the line, the docking of TNC points in the DPC could make or brake the chances TNC have for a TI invite as they are one of the team hotly in contention.\\n\\n\\u0026#x200B;\\n\\nValve reluctance to make clear rules for their game makes it very difficult for us audience observe the DPC as objective. I hope they release the schematics of their rules at least before the start of the next minor.\", \"author_fullname\": \"t2_27i74989\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bupc9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559199157.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559222693.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to draw comparison between the 2 incidents.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ECeb\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EKuku\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23/05/2019 Pt1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.removeddit.com/r/DotA2/comments/bs2l9m/ogceb_new_lvl_tilting/\\\"\\u003ECeb made a crude remark in an EU pub\\u003C/a\\u003E \\u003Ca href=\\\"https://ibb.co/sgpM4bF\\\"\\u003EFirst reported by u/LVR322 but retracted after Ceb contacted him\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9tippm/just_after_col_drama_tnc_kuku_did_it_again_at/\\\"\\u003EKuku made the crude remark in a Sea pub\\u003C/a\\u003E\\u003Ca href=\\\"https://twitter.com/GodBlessMali/status/1058326847321202688\\\"\\u003EInitial chinese reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23/05/2019 Pt2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bs9ero/ogceb/\\\"\\u003EAnother player from same game makes the same complaint\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsahbl/ogcebs_first_reply_for_people_who_are_too_lazy_to/\\\"\\u003ECeb initial apology\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9trn4s/kuku_apologized_with_a_plot_twist\\\"\\u003EMender of his Weibo account created an excuse for the remark and was exposed\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E24/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsgsbp/vp_solo_wont_participate_at_epicenter_unless\\\"\\u003ESolo take personal action to avoid Epicenter unless Valve make clear of their rules openly\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9trn4s/kuku_apologized_with_a_plot_twist\\\"\\u003EMender of his Weibo account created an excuse for the remark and was exposed\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsxs9o/vp9pasha_people_want_to_see_the_rules_so_that\\\"\\u003EPasha also voices his displeasure with valve inconsistencies\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsuu97/one_day_wiser_twitlonger_by_ceb/\\\"\\u003ECeb second apology\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9w1547/the_major_and_professional_dota_players/\\\"\\u003EValve initial reaction to let things sort itself out\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bsrtg6/cebs_first_thread_op_ceb_told_me_that_he_might/\\\"\\u003ECeb interview with u/LVR322 on the issue\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9wrkhi/tncs_manager_confesses_that_he_was_the_one_who/\\\"\\u003ETNC manager admit to his mistake\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E26/05/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/bt6lhw/solo_valve_and_seb_are_working_on_a_longterm/\\\"\\u003EValve now working with all stakeholders for a long term solution\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E24/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9zxa5q/cyborgmatt_confirms_kuku_and_skem_are_banned/\\\"\\u003ECyborgmatt first mention of the ban of Kuku and Skem from the CQ major\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/9zxbyv/valve_if_you_let_kuku_and_skem_and_be_banned_from\\\"\\u003EImmediate reaction from reddit\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/9zyhh6/i_believe_in_talk_no_jutsu_and_i_hope_others_will/\\\"\\u003ECeb reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a05u22/tnc_on_the_responsibility_being_taken_for_kuku/\\\"\\u003ETNC punishment to Kuku and the manager for their actions\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E27/11/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a0vobe/congratulations_to_the_2nd_sea_team_to_qualify/\\\"\\u003ETNC qualifies for CQ major\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2/12/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2agjg/grant_putting_his_casting_career_on_the_line_for/\\\"\\u003EGrantgrant putting himself on the line for Kuku\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2fc30/chongqing_major_updates_megathread/\\\"\\u003EAction taken by other casters\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2bt4r/tncs_new_statement_about_the_issue/\\\"\\u003ECQ Org correspondence with TNC\\u003C/a\\u003E \\u003Ca href=\\\"https://www.facebook.com/840515722697409/posts/2043073252441644/\\\"\\u003EIMBATV refusal to contact TNC\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3/12/2018\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2uary/tnc_and_the_chongqing_major/\\\"\\u003EValve outright banning kuku after being unsatified with TNC handling\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2umx5/valve_this_is_the_most_disappointed_i_have_ever\\\"\\u003EPeople calling out valve for their inconsistencies\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a2ulv2/valves_statement_doesnt_make_sense/\\\"\\u003E2\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/a3b62g/the_problem_with_valves_statement_is_part_of/\\\"\\u003E3\\u003C/a\\u003E \\u003Ca href=\\\"https://old.reddit.com/r/DotA2/comments/a2yp85/since_valve_already_punished_kuku_and_tnc_should/\\\"\\u003E4\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11/2/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/apfsgy/kuku_is_not_allowed_to_enter_chongqing_for_the/\\\"\\u003EKuku banned from attending WESG also held in CQ\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/aplzur/danielj_valve_responds_regarding_kuku_and/\\\"\\u003EValve response\\u003C/a\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DotA2/comments/apgsen/valve_straight_out_lied_about_the_kuku_issue_just/\\\"\\u003Ereddit\\u0026#39;s reaction\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EI have added additional link labelled in numbers for some reference and context.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe can safely say that Solo\\u0026#39;s want for consistency and transparency on valve part have not been realised. Their latest update to work on a long term solution is not openly released to the public and we are not informed if Solo has changed his stance on avoiding Epicenter. Valve are still buying time to make their rules and we are already at the tail end of the DPC.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the interview, Ceb has personally said he will be willing to take the same punishment as Kuku for precedence sake and that he probably would not go to EPICENTER himself, because he started receiving messages with threats. I respect that he is will to hold himself to that punishment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow that TI invites are on the line, the docking of TNC points in the DPC could make or brake the chances TNC have for a TI invite as they are one of the team hotly in contention.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EValve reluctance to make clear rules for their game makes it very difficult for us audience observe the DPC as objective. I hope they release the schematics of their rules at least before the start of the next minor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bupc9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Achuapy\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bupc9u/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bupc9u/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559193893.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|:-|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\\n|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|T|H|A|N|K|Y|O|U|\\n|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|V|E|R|Y|M|U|C|H|\", \"author_fullname\": \"t2_j01kt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"table test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bum3x6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559173943.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559202526.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ET\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EA\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EN\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EY\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EO\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EU\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EV\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EE\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EH\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bum3x6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fighterace00\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bum3x6/table_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bum3x6/table_test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559173726.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"TL;DR: No tl;dr\\n\\nI refuse to use an absolute tierlist to make my decisions on what should I be choosing upon level-up. I'd rather base my ability choices on the weapon I'm using as well as previously selected abilities.\\n\\n#Scythe\\n\\n##Traits:\\n\\n* It boasts high damage per hit, so I like to aim for a Nuking-one-by-one build.\\n* It boasts high knockback per hit, so I like to keep that in mind, it makes ASPD not as desirable because you could be knocking back a flying enemy through a wall and then your next shots won't hit it.\\n\\n##Core Ability Choices:\\n\\n* **Multi-shot** firing an extra layer of arrows in every direction you fire is awesome, even if they only deal a portion of your original DPH, specially helpful if you're going in point-blank range, *get as many of this as you can!*\\n* **Rage**, it is an absolute must-pick, it can greatly increase your offensive capabilities when you're in a pinch (and Offense is the best defense when your defense is failing you), I find it satisfying to land a crit almost 2x as strong as usual because I'm under 100hp.\\n * You lose HP, you gain power INSTANTLY.\\n * You gain HP, you lose power but have more breathing room.\\n* **Wingman**, is another absolute must-pick, your spirits can help you survive by fully blocking shots, and this only gets better and better as enemies fire more often and their projectile trajectories are less-predictable each World.\\n* **ATK** increases damage based off your Base DPS (Damage per shot), so, the higher your base DPS is, makes this ability more desirable for this weapon and Scythe has the highest DPS.\\n* **Diagonal** is in the eyes of some is reliant on having **Bouncy-Wall**, and yeah *stray that could or could not hit an enemy* are good, they are not the only saving grace for this ability. Keep in mind that:\\n * Each diagonal scythe you fire from this ablity, deals 100% of your hit damage, so by getting it you're pouring out 3x as much damage out in the wind as opposed to only firing a frontal scythe.\\n * Some enemies like to get up close and personal with you, and geting 3 nukes to their face can quickly get you out of this pit, including boss monters.\\n * If you get multiple **ATK**/**CRIT** upgrades and **Rage**, this is an instant synergy.\\n * You can add **Invincible** for even more time to go nuts on butchering bosses from the inside out (The first time I cleared the Chapter 3 Dragon, I just walked under its face and stood there for 3-4 seconds before it died).\\n * Multiple hits means multiple chances to crit, and the only thing you like more than landing muliple nukes instantly every time you fire a shot, is some of them critting the boss to oblivion.\\n * If you're good enough you can get to point-blank distance without touching the enemy and sucessfully firing 3 nukes in their face, this makes it much more desirable than **Side**/**Rear** (which only really work for this strat when you're firing from inside the enemy hitbox).\\n* **Blood-thirst** Healing off every kill can really add up, specially if you're quickly nuking enemies without giving them a chance to damage you at all, it pairs up incredibly well with **Rage**.\\n* **Extra-arrow** Having an extra chance to crit is nice, but it only applies in front of you, all the previous upgrades sound better than this. The one saving grace for extra-arrow is how good it is as a first/second upgrade, don't get a third arrow unless none of the above upgrades are available.\\n\\n##After Core \\n\\nPick those after you're satisfied with your DPS or when nothing in the core is available, thing of these as \\\"Nice to have, but not necessary\\\":\\n\\n* **Energy Shield** shots getting blocked can be a very good thing, but these run in a constant circular motion that you can't control, if you have **Wingman**, this would be a skip since you can just run behind your spirit while trying to dodge and the nice guy will block the shot for you.\\n* **Invincible** Going invincible a couple seconds is great on tight spots, but given how fast fights are, this can be rather situational, prioritize the core abilities. \\n* **Freeze**, making your enemies stand still allows you to hit them more easily. Just keep in mind that when building freeze you don't really want to go **Bouncy+Pierce+Ricochet**, because it could really make your game more hazardous when you unintentionally mess with an enemy's firing pattern by freezing them in an enemy-crowded screen.\\n* **CRIT** increases both crit chance and crit damage. Albeit RNG-reliant, CRIT is a solid pickup option at this point, thie higher your atk and if you have rage, the more effective crit will be, this is multiplicative, so don't ever prioritize **CRIT** over **ATK**/**Rage**.\\n* **ASPD** is detrimental for your early game, but it can be very good when you're really getting stacked on core offensive abilities. This is not crucial because we want to prioritize our DPS.\\n\\n##Situational Choices\\n\\nThese depend on other factors that don't necessarily heighten the strengths of the Scythe, they could work, but wouldn't necessarily be as effective as with a *Knife/Boomerang*:\\n\\n* **Ricochet**, it is in paper a very good pick: Having every hit you land automatically directed to the closest enemy really helps you make the most of every shot. However, a noticeable caveat is when fighting small enemies, enemies will be constantly knocked all over the screen, possibly bringing enemies closer than you would like them to be. Of course, if you're nuking enemies in 2-3 shots, it becomes less hazardous. And the knockback is much smaller (or none) for bosses.\\n* **Bouncy-wall**, simply having BW allows you to hit an enemy multiple times with the same projectile as long as you're firing it at a perpendicular-ish direction from a wall, or when they are located in corners. This isn't the case if you have the scythe ricochet to a different enemy. You can try and go for **Bouncy-Wall+Pierce/Ricochet+Diagonal/Rear/Side** and go ham, but none of these abilities actually increase your DPS, which is what you should be aiming to increase when building for nukes. Besides, flooding your screen with your own projectiles can make you miss enemy projectiles aimed at you.\\n* **Pierce**, I like to think of it as poor-man's **Ricochet**, the main difference being the projectile keeps going forward if there are no enemies close to ricochet towards, you could make a case for **Pierce**+**Bouncy-Wall** when fighting immobile/Gigantic bosses, or you could go this way and hope for one or two **Diagonal** to drop along so you can go bonkers, but I already covered that on Bouncy-Wall.\\n* **Side**/**Rear**, I like to think of it as poor-man's **Diagonal**, you can point-blank with it when you're eating a boss from the inside-out, but other than that it doesn't add as much value as **Diagonal**.\\n* **Walk through water**/**Walk through walls**, these could be nice depending on what World you're going through, pick them at discretion (Usually they'll cost you Max HP from a devil deal).\\n\\nDon't even think about it:\\n\\n* **Fire**/**Bolt**/**Poison**/**Holy**, it scales off your *Attack* and not off your *DPS*, making every fire tick for the same amount through the entire game, it doesn't really synergize with a strong, low fire-rate weapon.\\n* **Headshot**, you don't fire many times with a Scythe, so the there are less chances for this to proc, this is counter-synergy.\\n* **Fire orbs/swords**/**Bolt orbs/swords**/**Poison orbs/swords** , even if you're point-blanking, the effects granted by these abilities just don't really add much to your performance.\\n* **Summon one-eyed bat**/**Summon Shadow-clone** I just don't like these abilities, they mess with your drops, you can confuse the shadows for enemies and be distracted from projectiles and it's pretty much useless against most boss monsters. Just DON'T.\\n* **Slow Projectile**, See... enemies move, and the slower your projectile travels, the less likely it is your hit will land. It doesn't really add much to what a Scythe offers, from my experience, I just stray away from it as much as I can, usually there are more desirable abilities to choose from.\\n* **Pet CRIT/ASPD/ATK**, you don't really control these guys, and I don't really like to have to rely on their attack patterns to clear content.\\n\\nWhen built right, the scythe tends to get stupid strong, but I believe this is the case for most weapons, as long as you're playing them right.\\n\\nAny abilities I might have missed are either because they are irrelevant or I haven't unlocked them yet (I'm sitting at stage 4, feel free to laugh and point at me while I have a lot of fun nuking mobs).\", \"author_fullname\": \"t2_h9397\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ability recommendations (Not a tierlist)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_buicsw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559159476.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559183584.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETL;DR: No tl;dr\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI refuse to use an absolute tierlist to make my decisions on what should I be choosing upon level-up. I\\u0026#39;d rather base my ability choices on the weapon I\\u0026#39;m using as well as previously selected abilities.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EScythe\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003ETraits:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt boasts high damage per hit, so I like to aim for a Nuking-one-by-one build.\\u003C/li\\u003E\\n\\u003Cli\\u003EIt boasts high knockback per hit, so I like to keep that in mind, it makes ASPD not as desirable because you could be knocking back a flying enemy through a wall and then your next shots won\\u0026#39;t hit it.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ECore Ability Choices:\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EMulti-shot\\u003C/strong\\u003E firing an extra layer of arrows in every direction you fire is awesome, even if they only deal a portion of your original DPH, specially helpful if you\\u0026#39;re going in point-blank range, \\u003Cem\\u003Eget as many of this as you can!\\u003C/em\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERage\\u003C/strong\\u003E, it is an absolute must-pick, it can greatly increase your offensive capabilities when you\\u0026#39;re in a pinch (and Offense is the best defense when your defense is failing you), I find it satisfying to land a crit almost 2x as strong as usual because I\\u0026#39;m under 100hp.\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou lose HP, you gain power INSTANTLY.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou gain HP, you lose power but have more breathing room.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EWingman\\u003C/strong\\u003E, is another absolute must-pick, your spirits can help you survive by fully blocking shots, and this only gets better and better as enemies fire more often and their projectile trajectories are less-predictable each World.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EATK\\u003C/strong\\u003E increases damage based off your Base DPS (Damage per shot), so, the higher your base DPS is, makes this ability more desirable for this weapon and Scythe has the highest DPS.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E is in the eyes of some is reliant on having \\u003Cstrong\\u003EBouncy-Wall\\u003C/strong\\u003E, and yeah \\u003Cem\\u003Estray that could or could not hit an enemy\\u003C/em\\u003E are good, they are not the only saving grace for this ability. Keep in mind that:\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EEach diagonal scythe you fire from this ablity, deals 100% of your hit damage, so by getting it you\\u0026#39;re pouring out 3x as much damage out in the wind as opposed to only firing a frontal scythe.\\u003C/li\\u003E\\n\\u003Cli\\u003ESome enemies like to get up close and personal with you, and geting 3 nukes to their face can quickly get you out of this pit, including boss monters.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf you get multiple \\u003Cstrong\\u003EATK\\u003C/strong\\u003E/\\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E upgrades and \\u003Cstrong\\u003ERage\\u003C/strong\\u003E, this is an instant synergy.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou can add \\u003Cstrong\\u003EInvincible\\u003C/strong\\u003E for even more time to go nuts on butchering bosses from the inside out (The first time I cleared the Chapter 3 Dragon, I just walked under its face and stood there for 3-4 seconds before it died).\\u003C/li\\u003E\\n\\u003Cli\\u003EMultiple hits means multiple chances to crit, and the only thing you like more than landing muliple nukes instantly every time you fire a shot, is some of them critting the boss to oblivion.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf you\\u0026#39;re good enough you can get to point-blank distance without touching the enemy and sucessfully firing 3 nukes in their face, this makes it much more desirable than \\u003Cstrong\\u003ESide\\u003C/strong\\u003E/\\u003Cstrong\\u003ERear\\u003C/strong\\u003E (which only really work for this strat when you\\u0026#39;re firing from inside the enemy hitbox).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBlood-thirst\\u003C/strong\\u003E Healing off every kill can really add up, specially if you\\u0026#39;re quickly nuking enemies without giving them a chance to damage you at all, it pairs up incredibly well with \\u003Cstrong\\u003ERage\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EExtra-arrow\\u003C/strong\\u003E Having an extra chance to crit is nice, but it only applies in front of you, all the previous upgrades sound better than this. The one saving grace for extra-arrow is how good it is as a first/second upgrade, don\\u0026#39;t get a third arrow unless none of the above upgrades are available.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003EAfter Core\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003EPick those after you\\u0026#39;re satisfied with your DPS or when nothing in the core is available, thing of these as \\u0026quot;Nice to have, but not necessary\\u0026quot;:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EEnergy Shield\\u003C/strong\\u003E shots getting blocked can be a very good thing, but these run in a constant circular motion that you can\\u0026#39;t control, if you have \\u003Cstrong\\u003EWingman\\u003C/strong\\u003E, this would be a skip since you can just run behind your spirit while trying to dodge and the nice guy will block the shot for you.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EInvincible\\u003C/strong\\u003E Going invincible a couple seconds is great on tight spots, but given how fast fights are, this can be rather situational, prioritize the core abilities. \\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFreeze\\u003C/strong\\u003E, making your enemies stand still allows you to hit them more easily. Just keep in mind that when building freeze you don\\u0026#39;t really want to go \\u003Cstrong\\u003EBouncy+Pierce+Ricochet\\u003C/strong\\u003E, because it could really make your game more hazardous when you unintentionally mess with an enemy\\u0026#39;s firing pattern by freezing them in an enemy-crowded screen.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E increases both crit chance and crit damage. Albeit RNG-reliant, CRIT is a solid pickup option at this point, thie higher your atk and if you have rage, the more effective crit will be, this is multiplicative, so don\\u0026#39;t ever prioritize \\u003Cstrong\\u003ECRIT\\u003C/strong\\u003E over \\u003Cstrong\\u003EATK\\u003C/strong\\u003E/\\u003Cstrong\\u003ERage\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EASPD\\u003C/strong\\u003E is detrimental for your early game, but it can be very good when you\\u0026#39;re really getting stacked on core offensive abilities. This is not crucial because we want to prioritize our DPS.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch2\\u003ESituational Choices\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003EThese depend on other factors that don\\u0026#39;t necessarily heighten the strengths of the Scythe, they could work, but wouldn\\u0026#39;t necessarily be as effective as with a \\u003Cem\\u003EKnife/Boomerang\\u003C/em\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERicochet\\u003C/strong\\u003E, it is in paper a very good pick: Having every hit you land automatically directed to the closest enemy really helps you make the most of every shot. However, a noticeable caveat is when fighting small enemies, enemies will be constantly knocked all over the screen, possibly bringing enemies closer than you would like them to be. Of course, if you\\u0026#39;re nuking enemies in 2-3 shots, it becomes less hazardous. And the knockback is much smaller (or none) for bosses.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EBouncy-wall\\u003C/strong\\u003E, simply having BW allows you to hit an enemy multiple times with the same projectile as long as you\\u0026#39;re firing it at a perpendicular-ish direction from a wall, or when they are located in corners. This isn\\u0026#39;t the case if you have the scythe ricochet to a different enemy. You can try and go for \\u003Cstrong\\u003EBouncy-Wall+Pierce/Ricochet+Diagonal/Rear/Side\\u003C/strong\\u003E and go ham, but none of these abilities actually increase your DPS, which is what you should be aiming to increase when building for nukes. Besides, flooding your screen with your own projectiles can make you miss enemy projectiles aimed at you.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPierce\\u003C/strong\\u003E, I like to think of it as poor-man\\u0026#39;s \\u003Cstrong\\u003ERicochet\\u003C/strong\\u003E, the main difference being the projectile keeps going forward if there are no enemies close to ricochet towards, you could make a case for \\u003Cstrong\\u003EPierce\\u003C/strong\\u003E+\\u003Cstrong\\u003EBouncy-Wall\\u003C/strong\\u003E when fighting immobile/Gigantic bosses, or you could go this way and hope for one or two \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E to drop along so you can go bonkers, but I already covered that on Bouncy-Wall.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESide\\u003C/strong\\u003E/\\u003Cstrong\\u003ERear\\u003C/strong\\u003E, I like to think of it as poor-man\\u0026#39;s \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E, you can point-blank with it when you\\u0026#39;re eating a boss from the inside-out, but other than that it doesn\\u0026#39;t add as much value as \\u003Cstrong\\u003EDiagonal\\u003C/strong\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EWalk through water\\u003C/strong\\u003E/\\u003Cstrong\\u003EWalk through walls\\u003C/strong\\u003E, these could be nice depending on what World you\\u0026#39;re going through, pick them at discretion (Usually they\\u0026#39;ll cost you Max HP from a devil deal).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EDon\\u0026#39;t even think about it:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFire\\u003C/strong\\u003E/\\u003Cstrong\\u003EBolt\\u003C/strong\\u003E/\\u003Cstrong\\u003EPoison\\u003C/strong\\u003E/\\u003Cstrong\\u003EHoly\\u003C/strong\\u003E, it scales off your \\u003Cem\\u003EAttack\\u003C/em\\u003E and not off your \\u003Cem\\u003EDPS\\u003C/em\\u003E, making every fire tick for the same amount through the entire game, it doesn\\u0026#39;t really synergize with a strong, low fire-rate weapon.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EHeadshot\\u003C/strong\\u003E, you don\\u0026#39;t fire many times with a Scythe, so the there are less chances for this to proc, this is counter-synergy.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFire orbs/swords\\u003C/strong\\u003E/\\u003Cstrong\\u003EBolt orbs/swords\\u003C/strong\\u003E/\\u003Cstrong\\u003EPoison orbs/swords\\u003C/strong\\u003E , even if you\\u0026#39;re point-blanking, the effects granted by these abilities just don\\u0026#39;t really add much to your performance.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESummon one-eyed bat\\u003C/strong\\u003E/\\u003Cstrong\\u003ESummon Shadow-clone\\u003C/strong\\u003E I just don\\u0026#39;t like these abilities, they mess with your drops, you can confuse the shadows for enemies and be distracted from projectiles and it\\u0026#39;s pretty much useless against most boss monsters. Just DON\\u0026#39;T.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESlow Projectile\\u003C/strong\\u003E, See... enemies move, and the slower your projectile travels, the less likely it is your hit will land. It doesn\\u0026#39;t really add much to what a Scythe offers, from my experience, I just stray away from it as much as I can, usually there are more desirable abilities to choose from.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPet CRIT/ASPD/ATK\\u003C/strong\\u003E, you don\\u0026#39;t really control these guys, and I don\\u0026#39;t really like to have to rely on their attack patterns to clear content.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhen built right, the scythe tends to get stupid strong, but I believe this is the case for most weapons, as long as you\\u0026#39;re playing them right.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny abilities I might have missed are either because they are irrelevant or I haven\\u0026#39;t unlocked them yet (I\\u0026#39;m sitting at stage 4, feel free to laugh and point at me while I have a lot of fun nuking mobs).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buicsw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"snivs\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/buicsw/ability_recommendations_not_a_tierlist/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/buicsw/ability_recommendations_not_a_tierlist/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559154784.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts\\n**1 Correct Seed:** 15pts\\n**2 Correct Seeds:** +30pts(45 total)\\n**(S)emi(F)inalist:** 180pts\\n**(F)inalist:** 380pts\\n**(W)inners:** 780pts\\n**Score in favor of your winner:** 190pts\\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"author_fullname\": \"t2_ze11d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"RLCS Season 7 LAN Bracket Prediction\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bufkvu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559170095.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts\\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15pts\\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30pts(45 total)\\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180pts\\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380pts\\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780pts\\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190pts\\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bufkvu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"RyanDaLegendary\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559141295.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test 1\", \"author_fullname\": \"t2_jb0ym\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"up-test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bu8y26\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559124859.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest 1\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu8y26\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dekarde\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu8y26/uptest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559096059.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"https://i.redd.it/n748pckqj1131.png\\n\\nHere is our game\", \"author_fullname\": \"t2_143lgq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"n748pckqj1131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1080, \"x\": 1920, \"u\": \"https://i.redd.it/n748pckqj1131.png\"}, \"m\": \"image/png\", \"id\": \"n748pckqj1131\"}}, \"name\": \"t3_bu7uio\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/sr9ge0kfsgNx8x4rIDjOnKDSVCL18SDnkOraCwBHop8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559118474.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/n748pckqj1131.png\\\"\\u003Ehttps://i.redd.it/n748pckqj1131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is our game\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7uio\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vivid_Mauve\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu7uio/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu7uio/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559089674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test test\", \"author_fullname\": \"t2_143lgq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Claim Game\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bu7jss\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559116818.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7jss\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vivid_Mauve\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu7jss/claim_game/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bu7jss/claim_game/\", \"subreddit_subscribers\": 703, \"created_utc\": 1559088018.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_nlpmjd2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I HATE THE FUCKING NlG8GERS, THEY SMELL DAAAWG. LIKE I DONT EVEN KNOW WHY, I THINK ITS BECAUSE OF THEIR DIRT MONKEY SKIN OR SOME SHIT LIKE THAT\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bu3xsz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ArScYM5Q48TrtDof4ST-2EeyNmmkxsGz6QkPcuHwYmI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559098637.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?auto=webp\\u0026s=82354c537d30bbf07eb9b7e3191e3834a8af2ce6\", \"width\": 640, \"height\": 838}, \"resolutions\": [{\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=75ec4f00b631f497c0aafdef0e0a758953e48a3a\", \"width\": 108, \"height\": 141}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c0e25d181ba2cb381ec414e0ac76752eb45b11f6\", \"width\": 216, \"height\": 282}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8eff642156f04ce1ad2e42bc2fb782b11b88d271\", \"width\": 320, \"height\": 419}, {\"url\": \"https://preview.redd.it/y5uqepxj10131.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f6fb42bc9a8b65f8be8afac2b6190130b5463160\", \"width\": 640, \"height\": 838}], \"variants\": {}, \"id\": \"950GL9F_ZaUbbJK3rJxkM1RLCMb6VYKACygOpjTiR4s\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu3xsz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KFC_MANAGER_TRIHARD\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bu3xsz/i_hate_the_fucking_nlg8gers_they_smell_daaawg/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/y5uqepxj10131.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1559069837.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_kvp37q4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_btnd7z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Onn2p7TcF2NuasNIGcR0CfMWDLEDmV12cjySeav5UGM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559000072.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?auto=webp\\u0026s=090d65871b6a42fa951e66396dce697552b174c1\", \"width\": 1600, \"height\": 1600}, \"resolutions\": [{\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=15a7e193fed161120c580133451cc0809b4e3257\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=005721458dcadca85be7d27fd446e30eff44415b\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3eb3e6fba97d72e1efc6f464dae29c2de85ec963\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=3a3eeba7579458cb8713415f60484fa0d23f402f\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=150168de16c3811111564cb92578ec189608ea9d\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/4mvy2odfwr031.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=3df90efe0f287fa027b51ea347ba65096d893233\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"FqP4WYIjTnkAX8xVjzbzRRdIW6207vOaOhoPRV5_-Xg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btnd7z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"agasitko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btnd7z/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/4mvy2odfwr031.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558971272.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Just migrated the unit tests for one of our projects from Boost.Test to Doctest and decided to share the time measurements while I still have the two branches at hand. You can see the number of the test cases in the run-time output below.\\n\\nThe tests were done on virtual machine with 4 cores and 8 GB of RAM.\\n\\nThe build was done with GCC 7.3 with `-std='c++17' -O2 -Wall -Wextra -Werror -Winvalid-pch` and 4 threads for parallel building. The setup with Doctest has two additional flags:\\n\\n`-DDOCTEST_CONFIG_SUPER_FAST_ASSERTS -DDOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION`.\\n\\nThe Boost version that I'm using is 1.69 and the Doctest version is 2.3.2.\\n\\nFor the run-time tests, I ran them 3 times each and picked the slower ones. The timings for each version was in the same ballpark anyway.\\n\\nFull rebuild, including the precompiled header, with Boost.Test\\n\\n real \\u00a0 \\u00a01m5.710s \\n user \\u00a0 \\u00a03m42.350s \\n sys \\u00a0 \\u00a0 0m5.751s\\n\\nFull rebuild, including the precompiled header, with Doctest\\n\\n real \\u00a0 \\u00a00m52.567s \\n user \\u00a0 \\u00a02m40.018s \\n sys \\u00a0 \\u00a0 0m4.993s \\n\\nRebuild, without the precompiled header, with Boost.Test\\n\\n real \\u00a0 \\u00a01m2.391s \\n user \\u00a0 \\u00a03m40.168s \\n sys \\u00a0 \\u00a0 0m5.532s \\n\\nRebuild, without the precompiled header, with Doctest\\n\\n real \\u00a0 \\u00a00m46.351s \\n user \\u00a0 \\u00a02m38.131s \\n sys \\u00a0 \\u00a0 0m4.029s \\n\\nRun-time with Boost.Test\\n\\n time ./tests.bin -r short \\n Running 149 test cases... \\n \\n Test module \\\"p3_tests\\\" has passed with: \\n \\u00a0 149 test cases out of 149 passed \\n \\u00a0 1166 assertions out of 1166 passed \\n \\n real \\u00a0 \\u00a00m0.056s \\n user \\u00a0 \\u00a00m0.025s \\n sys \\u00a0 \\u00a0 0m0.031s \\n\\nRun-time with Doctest\\n\\n time ./tests.bin \\n [doctest] doctest version is \\\"2.3.2\\\" \\n [doctest] run with \\\"--help\\\" for options \\n =============================================================================== \\n [doctest] test cases: \\u00a0 \\u00a0149 | \\u00a0 \\u00a0149 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\u00a0 \\u00a0 \\u00a00 skipped \\n [doctest] assertions: \\u00a0 1167 | \\u00a0 1167 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\n [doctest] Status: SUCCESS! \\n \\n real \\u00a0 \\u00a00m0.042s \\n user \\u00a0 \\u00a00m0.021s \\n sys \\u00a0 \\u00a0 0m0.021s\", \"author_fullname\": \"t2_tk6dd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Timing Boost.Test and Doctest\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btkt4w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558984671.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust migrated the unit tests for one of our projects from Boost.Test to Doctest and decided to share the time measurements while I still have the two branches at hand. You can see the number of the test cases in the run-time output below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe tests were done on virtual machine with 4 cores and 8 GB of RAM.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe build was done with GCC 7.3 with \\u003Ccode\\u003E-std=\\u0026#39;c++17\\u0026#39; -O2 -Wall -Wextra -Werror -Winvalid-pch\\u003C/code\\u003E and 4 threads for parallel building. The setup with Doctest has two additional flags:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E-DDOCTEST_CONFIG_SUPER_FAST_ASSERTS -DDOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Boost version that I\\u0026#39;m using is 1.69 and the Doctest version is 2.3.2.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the run-time tests, I ran them 3 times each and picked the slower ones. The timings for each version was in the same ballpark anyway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFull rebuild, including the precompiled header, with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a01m5.710s \\nuser \\u00a0 \\u00a03m42.350s \\nsys \\u00a0 \\u00a0 0m5.751s\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EFull rebuild, including the precompiled header, with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a00m52.567s \\nuser \\u00a0 \\u00a02m40.018s \\nsys \\u00a0 \\u00a0 0m4.993s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERebuild, without the precompiled header, with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a01m2.391s \\nuser \\u00a0 \\u00a03m40.168s \\nsys \\u00a0 \\u00a0 0m5.532s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERebuild, without the precompiled header, with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ereal \\u00a0 \\u00a00m46.351s \\nuser \\u00a0 \\u00a02m38.131s \\nsys \\u00a0 \\u00a0 0m4.029s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERun-time with Boost.Test\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Etime ./tests.bin -r short \\nRunning 149 test cases... \\n\\nTest module \\u0026quot;p3_tests\\u0026quot; has passed with: \\n\\u00a0 149 test cases out of 149 passed \\n\\u00a0 1166 assertions out of 1166 passed \\n\\nreal \\u00a0 \\u00a00m0.056s \\nuser \\u00a0 \\u00a00m0.025s \\nsys \\u00a0 \\u00a0 0m0.031s \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ERun-time with Doctest\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Etime ./tests.bin \\n[doctest] doctest version is \\u0026quot;2.3.2\\u0026quot; \\n[doctest] run with \\u0026quot;--help\\u0026quot; for options \\n=============================================================================== \\n[doctest] test cases: \\u00a0 \\u00a0149 | \\u00a0 \\u00a0149 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\u00a0 \\u00a0 \\u00a00 skipped \\n[doctest] assertions: \\u00a0 1167 | \\u00a0 1167 passed | \\u00a0 \\u00a0 \\u00a00 failed | \\n[doctest] Status: SUCCESS! \\n\\nreal \\u00a0 \\u00a00m0.042s \\nuser \\u00a0 \\u00a00m0.021s \\nsys \\u00a0 \\u00a0 0m0.021s\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btkt4w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pavel_v\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btkt4w/timing_boosttest_and_doctest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btkt4w/timing_boosttest_and_doctest/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558955871.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_znwfd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 109, \"hide_score\": false, \"name\": \"t3_btgu09\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/G7me3nXuT4WiSJ_5w66HsnXsLrt6szjE7w7XGClSb8Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558954744.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?auto=webp\\u0026s=393cdc6165f09e5e16b544fb51e88087b027c5c0\", \"width\": 499, \"height\": 389}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fa7f679c4a6c8b1c74b7d9df06e2157d168876e6\", \"width\": 108, \"height\": 84}, {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c96d97f5ca9370651816f1391b1a55a33cce980a\", \"width\": 216, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/r_MgM-pixxw-nR856dCpsYuJNg5J1S_OjMFsHpODNI8.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d436b0e54126c4dc606260434294b6064c053d07\", \"width\": 320, \"height\": 249}], \"variants\": {}, \"id\": \"E-YB0z8GJjScZr1sRZLjjEz-pdps6apmJB4z1z2yzLA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btgu09\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Conan_JP\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btgu09/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.imgur.com/5CLcQGP.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558925944.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\nJust comment before pm\\n\\nLocal: 79401\\n\\n[Timestamps](https://imgur.com/a/qfjjjRx)\\n\\n|Item|Local + shipping|Description|\\n|:-|:-|:-|\\n|ASUS Prime X470-Pro AMD Ryzen|$100 shipped|Have original box, SLI adapter, and screws|\\n|2x G.Skill TridentZ RGB Series 8GB|$105 shipped|running at 3200 MHz|\\n|EVGA Supernova 750 G2, 80+ Gold 750W|$80 shipped|Fully Modular, EVGA ECO Mode|\\n|ANNE PRO 2 RGB|$75shipped|Missing Y Key replaced w/ colored key cap|\\n|SteelSeries Arcits 5 RGB ( Headset)|$40 shipped|Works perfectly although there is a small scuff|\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"E2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btdfqu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558934579.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust comment before pm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELocal: 79401\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/qfjjjRx\\\"\\u003ETimestamps\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ELocal + shipping\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EASUS Prime X470-Pro AMD Ryzen\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$100 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHave original box, SLI adapter, and screws\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2x G.Skill TridentZ RGB Series 8GB\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$105 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Erunning at 3200 MHz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEVGA Supernova 750 G2, 80+ Gold 750W\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$80 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFully Modular, EVGA ECO Mode\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EANNE PRO 2 RGB\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$75shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMissing Y Key replaced w/ colored key cap\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESteelSeries Arcits 5 RGB ( Headset)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40 shipped\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EWorks perfectly although there is a small scuff\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?auto=webp\\u0026s=e3cd8025431b8d4e4a001c163dff8247a6d332fa\", \"width\": 2048, \"height\": 1536}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5ee5cf7d1be3464420cac8148fb7776b3db5ce4e\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=36cf5d02c9cf110ea13a4a1805bdd615aeb871a8\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9fb11c2092ec2a4287ec4cc436ab14659175ce6b\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=4a74f9cb14b1f7a893dc86ed40c19d0e773ba8f6\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=740f8d332c2129b8abead72eef7968317d5cde8d\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/zdY9v2ynPA2wYUrdZ6-lULDURqqR_5zNPB35zlCreak.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c46ac181d7dd9625a47805f6b36077275271ad4f\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"3O1ITl-5hWXF7luK9SXQMRkyhjwvYMhGJEuuQC-l1i4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btdfqu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/PostPreview/comments/btdfqu/e2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btdfqu/e2/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558905779.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"So for starters, please comment before PM'ing me. None of the listings include shipping, I can give you a quote if you tell me what you want and give me your zip code. Anything that can fit in a small priority mail box will be a $7.20 flat fee. Everything else will vary. I have some trades on here as well as excellent feedback on ebay so if you would like to see that let me know.\\n\\n\\u0026#x200B;\\n\\n|Item|Description|Price|\\n|:-|:-|:-|\\n|Black Realforce 87u|Great working condition. No keycaps included, but it has been converted to mini USB and jtk mx sliders|$115|\\n|IBM Model M |THIS IS NOT WORKING, IT IS FOR PARTS ONLY. | $10|\\n|Battlestation io Wrist Rest |Purple Heart Color, made for a 60% keyboard|$30|\\n|HKP Gas Mask |Green Poison black eyes|$14|\\n|Keyforge Osiris|Chlorium Color|$40|\\n|girldc Stormtrooper|Black Stormtrooper (Looks dark grey)|$30|\\n|JTK Sliders|Jtk purple sliders installed once and removed shortly after|$15|\\n|Alps Keyset|Full keyset I pulled off of a vintage board. Let me know if you want more pictures|$10|\\n|Tektronix F\\u0026F|Foam and Foil board, i'm not totally sure if it works. Chassis is made out of metal and VERY heavy|$25|\\n\\n\\u0026#x200B;\\n\\nAs for the trade, I don't want to pay anything extra, if you find stuff you like and you want to trade for a black HHKB stock or modded, just let me know.\", \"author_fullname\": \"t2_xrrbz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[US-NJ][H]Realforce 87u, Keyboards, Artisans, Battlestation 10 wrist rest [W]Paypal, Black HHKB\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_btb4ye\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558895507.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558923254.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo for starters, please comment before PM\\u0026#39;ing me. None of the listings include shipping, I can give you a quote if you tell me what you want and give me your zip code. Anything that can fit in a small priority mail box will be a $7.20 flat fee. Everything else will vary. I have some trades on here as well as excellent feedback on ebay so if you would like to see that let me know.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EDescription\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlack Realforce 87u\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGreat working condition. No keycaps included, but it has been converted to mini USB and jtk mx sliders\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$115\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EIBM Model M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETHIS IS NOT WORKING, IT IS FOR PARTS ONLY.\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBattlestation io Wrist Rest\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurple Heart Color, made for a 60% keyboard\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHKP Gas Mask\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGreen Poison black eyes\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$14\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EKeyforge Osiris\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EChlorium Color\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Egirldc Stormtrooper\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlack Stormtrooper (Looks dark grey)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$30\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJTK Sliders\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJtk purple sliders installed once and removed shortly after\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$15\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EAlps Keyset\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFull keyset I pulled off of a vintage board. Let me know if you want more pictures\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETektronix F\\u0026amp;F\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFoam and Foil board, i\\u0026#39;m not totally sure if it works. Chassis is made out of metal and VERY heavy\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$25\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for the trade, I don\\u0026#39;t want to pay anything extra, if you find stuff you like and you want to trade for a black HHKB stock or modded, just let me know.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btb4ye\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"blackriver35\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/btb4ye/usnjhrealforce_87u_keyboards_artisans/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/btb4ye/usnjhrealforce_87u_keyboards_artisans/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558894454.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Test\\n\\nhttps://i.redd.it/43djennmkj031.jpg\\n\\nhttps://i.redd.it/bjdfsn4pkj031.jpg\\n\\nanother test\", \"author_fullname\": \"t2_11gzbx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"blub\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 56, \"hide_score\": false, \"media_metadata\": {\"43djennmkj031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 775, \"x\": 1920, \"u\": \"https://i.redd.it/43djennmkj031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"43djennmkj031\"}, \"bjdfsn4pkj031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 775, \"x\": 1920, \"u\": \"https://i.redd.it/bjdfsn4pkj031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"bjdfsn4pkj031\"}}, \"name\": \"t3_bt6wuy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/0UAaA8XpjYLxWwuXJiyi-R4dMzJm8wGf2wmAH_mbjlY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558899273.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/43djennmkj031.jpg\\\"\\u003Ehttps://i.redd.it/43djennmkj031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/bjdfsn4pkj031.jpg\\\"\\u003Ehttps://i.redd.it/bjdfsn4pkj031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eanother test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt6wuy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AnotherDayOfLife\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt6wuy/blub/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt6wuy/blub/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558870473.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\#opioid #statistics #pandemic #emergency #drugs\\n\\nhttps://i.redd.it/od006dfy9j031.png\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Crisis - By the Numbers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"od006dfy9j031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1008, \"x\": 1800, \"u\": \"https://i.redd.it/od006dfy9j031.png\"}, \"m\": \"image/png\", \"id\": \"od006dfy9j031\"}}, \"name\": \"t3_bt6gq0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ULg29n5F6KbOENW5WKQV8hVHUaCSmwUV2Pvi7lAzTnw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558895647.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#opioid #statistics #pandemic #emergency #drugs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/od006dfy9j031.png\\\"\\u003Ehttps://i.redd.it/od006dfy9j031.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt6gq0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt6gq0/the_opioid_crisis_by_the_numbers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt6gq0/the_opioid_crisis_by_the_numbers/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558866847.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Crisis - By the Numbers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bt570v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/J57kjqkqWulPTF0F2CGsfdOw-ZHKtDF8-vmDnuC1ZrA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558884640.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?auto=webp\\u0026s=883d696a42fd4b489a2443ac7948425234dead06\", \"width\": 1800, \"height\": 1008}, \"resolutions\": [{\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b2271e2b6a77c996f1b68d98c2f21282f5fc64af\", \"width\": 108, \"height\": 60}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a735587be8be935850d72f92104abbd7524f7989\", \"width\": 216, \"height\": 120}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f2b57eb686d7a9cae234ef30d0929508d82f9b0c\", \"width\": 320, \"height\": 179}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=0b51cbc6ab0ed7c1b0603fa9bc60be8a314cfd00\", \"width\": 640, \"height\": 358}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=b6d4f46ac0317e4d199b1a2314dca58d625149f3\", \"width\": 960, \"height\": 537}, {\"url\": \"https://preview.redd.it/bgwlznx4di031.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=a90b09a8c6c8fb24697eac10c348ab894bbc8a62\", \"width\": 1080, \"height\": 604}], \"variants\": {}, \"id\": \"i4RH5BnT_PvxAameb4XpCaX1qIqRrxlNsTuO6tn_QXU\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt570v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt570v/the_opioid_crisis_by_the_numbers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/bgwlznx4di031.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558855840.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2hmmk43f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Falcon view...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bt1azs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5yIb3YjCt03EmRM3zlVIMsQhCs43pA7wbEqktH19Cfc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558856981.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?auto=webp\\u0026s=3c1bb6209fd60cd5f0a5f7df4bb35496e2fa1589\", \"width\": 1440, \"height\": 2560}, \"resolutions\": [{\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0ef05f2642c8199aa57f21c0d54b9c69b5f71d5f\", \"width\": 108, \"height\": 192}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=df094af1b4ddd4fc3447cf0656ec22e7f7c02e78\", \"width\": 216, \"height\": 384}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6a092c4d9a07e3789a75ce521d34e21d29b86f4a\", \"width\": 320, \"height\": 568}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=474632e119d567afa4d85306584e47fb276ac835\", \"width\": 640, \"height\": 1137}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=db7e4fc3eaa4d78682a1f9bf880fc8414d69059f\", \"width\": 960, \"height\": 1706}, {\"url\": \"https://preview.redd.it/jx5956qz2g031.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d6be90f315a480dc381dc3ec39f55f2a6c961fd2\", \"width\": 1080, \"height\": 1920}], \"variants\": {}, \"id\": \"ARZyk4zeMGPtRhvZx49MKXfvtDuF1hkTmnswophEGiA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt1azs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aantoniss\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt1azs/falcon_view/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/jx5956qz2g031.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1558828181.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_35aabssu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bt13kk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/bUwI22Oy5hk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bt13kk\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Tn0uh2-gqGg07MFL1mh36xt2XVPaD43KQ-yyrgULlgw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558855680.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?auto=webp\\u0026s=9ae2a3720570e28a4271afd504fe7644c5ae6af5\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e891ae8f3829df0995f789d716b42297d899791d\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e9528bd0e8d23e42b9a583446d121186f9dd3e0a\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/LHUP4M91pRuy6IjUZAu-Hr7l6E4r1TRR3NByDBWOH7E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=57b456dd9a2dd298987a841d98226090b702f41b\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"GFq8VRTcX1rYutnbOlEzIndyVsutsicYznT49lCUJ_c\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt13kk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Goldymires\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt13kk/ultimate_skyrim_room_filled_with_magelight_balls/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=bUwI22Oy5hk\\u0026feature=youtu.be\", \"subreddit_subscribers\": 703, \"created_utc\": 1558826880.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"| Ultimate Skyrim | Room Filled with Magelight Balls...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bUwI22Oy5hk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/bUwI22Oy5hk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"tested\", \"author_fullname\": \"t2_f4ra2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing 123\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bt0w6n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558829283.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558854391.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etested\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt0w6n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"User09060657542\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bt0w6n/testing_123/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558825591.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://imgur.com/register/thirdparty/google](https://imgur.com/register/thirdparty/google)\", \"author_fullname\": \"t2_2zkr00l4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"BvS\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsyl0k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558841880.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/register/thirdparty/google\\\"\\u003Ehttps://imgur.com/register/thirdparty/google\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?auto=webp\\u0026s=d94e7feac682dd559e4a8b3fbbdd38d08adf1d44\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=de5d021977c520c60b9fe96c226154cceb44ec68\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=733ff487f388d32420b5247b49f7728a869fafba\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=69eeff9db988ab6c60ccca380e0cb106af7d12f6\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=dcacd413d3fad44ec5470093a98420843adb1dbb\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=58c767d070db90d652c921e75dd04d2e5bf260b1\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/kZhc7akXs_sqUqpJ9ElKbFkADSkQvfFm9NAnKAU7Gqg.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9b4e777c321d825eb745725cb99d589cb8fc7df8\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"nHmB3tUVKrCUK7BucSpK1ZRAoN-XyaQHrTTqr75VHnw\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsyl0k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"T-8-0-0\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsyl0k/bvs/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558813080.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"In the 1990's, opioids became available to the general public with reassurance from pharmaceutical companies that patients would not become addicted to them. Fast forward 25 years and now we have a global epidemic. The widespread misuse of opioids can be related to the greater rates of prescription of opioids. According to the World Health Organisation roughly 118,000 people lost their lives due to opioid use disorders and an estimated 27 million people suffer from opioid use disorders.\\n\\n\\\\#opioid #opioidabuse #addiction #crisis #publichealth\\n\\n\\u0026#x200B;\\n\\nFor more information visit: [https://wp.deakin.edu.au/deakinsso\\\\_242366117/2019/04/10/the-painkillers-are-killing-us/](https://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/)\\n\\nhttps://i.redd.it/60b8yo4o5e031.jpg\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Epidemic\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"media_metadata\": {\"60b8yo4o5e031\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1375, \"x\": 2500, \"u\": \"https://i.redd.it/60b8yo4o5e031.jpg\"}, \"m\": \"image/jpg\", \"id\": \"60b8yo4o5e031\"}}, \"name\": \"t3_bsx5gx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/XQozoeoqb6ku7BcrTRAau0oUH_lExeTt6WxLONr8RpY.jpg\", \"edited\": 1558866228.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558834399.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn the 1990\\u0026#39;s, opioids became available to the general public with reassurance from pharmaceutical companies that patients would not become addicted to them. Fast forward 25 years and now we have a global epidemic. The widespread misuse of opioids can be related to the greater rates of prescription of opioids. According to the World Health Organisation roughly 118,000 people lost their lives due to opioid use disorders and an estimated 27 million people suffer from opioid use disorders.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#opioid #opioidabuse #addiction #crisis #publichealth\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more information visit: \\u003Ca href=\\\"https://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/\\\"\\u003Ehttps://wp.deakin.edu.au/deakinsso_242366117/2019/04/10/the-painkillers-are-killing-us/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/60b8yo4o5e031.jpg\\\"\\u003Ehttps://i.redd.it/60b8yo4o5e031.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?auto=webp\\u0026s=7cdb1bbd0e34ff3d8c3f0ec52de03f8436d374f3\", \"width\": 1024, \"height\": 687}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5ec6842c7828c02fe7f3fde357f0a4ab2ee61791\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4e3991a079067adb7748d2dcb08fe5b9b6a9dc35\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c94c9b8c0a597eb5e84d847bb1e25c757b1cb520\", \"width\": 320, \"height\": 214}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b596c3cfff0267b17a13844f43c079a3f66e6494\", \"width\": 640, \"height\": 429}, {\"url\": \"https://external-preview.redd.it/Ky9e9UxguegYEIxczi7rHtk2Mjni1QLLDM7aemHCplw.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=fbf7168e509bdd47347b08ba83c83d38fdd8821d\", \"width\": 960, \"height\": 644}], \"variants\": {}, \"id\": \"Oezj5KFHw35YTNV7f2ysRbVTt0E7sP5x-007SvngELE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx5gx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx5gx/the_opioid_epidemic/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsx5gx/the_opioid_epidemic/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558805599.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3rko2hk2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Season 8. Expectation VS Reality - Coub\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 76, \"hide_score\": false, \"name\": \"t3_bsx4cw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 329}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"coub.com\", \"oembed\": {\"provider_url\": \"https://coub.com/\", \"description\": \"Season 8. Expectation VS Reality - Coub - The Biggest Video Meme Platform by \\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"title\": \"Season 8. Expectation VS Reality\", \"url\": \"https://coub.com/view/1uqk30\", \"type\": \"video\", \"author_name\": \"\\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"height\": 329, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 1280, \"version\": \"1.0\", \"provider_name\": \"Coub\", \"thumbnail_url\": \"https://coubsecure-s.akamaihd.net/get/b189/p/coub/simple/cw_image/fc2f77efef2/92fbfabd438d77bc688f2/big_1558602182_00030.jpg\", \"thumbnail_height\": 700}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bsx4cw\", \"height\": 329}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/yYWmiAtN3NIBqz36GFAuzE1Gm9bfyBqWIvr-NLCrdiE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558834230.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"coub.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?auto=webp\\u0026s=2c537c6f4db6a7134e41a1fed83f527a9205a6fc\", \"width\": 1280, \"height\": 700}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8379e056ce44d98ba8cabcedc3e57a5179eb8077\", \"width\": 108, \"height\": 59}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=8546634eedbc00136050661223afe85fa0df9af7\", \"width\": 216, \"height\": 118}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=716bea022cac586a80f5e0d8a91506edd0d83528\", \"width\": 320, \"height\": 175}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d3048a26334e43b4c90357ee44fcdcc546b50f00\", \"width\": 640, \"height\": 350}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=3210c1f30af3c93e6c4667634d00863669de17f4\", \"width\": 960, \"height\": 525}, {\"url\": \"https://external-preview.redd.it/15wc-BxcQQvvGmTELRUh41d_TRPy6qyqMOxP36X4Z64.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b15926a8817d038edddebbea83e70e9b359050e6\", \"width\": 1080, \"height\": 590}], \"variants\": {}, \"id\": \"2zfAfglMEQHb1kq47IlSy9xMsGT3DskaBFmGCWHMJm4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx4cw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hunsorgelargen\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx4cw/season_8_expectation_vs_reality_coub/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://coub.com/view/1uqk30\", \"subreddit_subscribers\": 703, \"created_utc\": 1558805430.0, \"media\": {\"type\": \"coub.com\", \"oembed\": {\"provider_url\": \"https://coub.com/\", \"description\": \"Season 8. Expectation VS Reality - Coub - The Biggest Video Meme Platform by \\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"title\": \"Season 8. Expectation VS Reality\", \"url\": \"https://coub.com/view/1uqk30\", \"type\": \"video\", \"author_name\": \"\\u0412\\u043b\\u0430\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0418\\u0432\\u0430\\u043d\\u043e\\u0432\", \"height\": 329, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=%2F%2Fcoub.com%2Fembed%2F1uqk30%3Fmaxheight%3D350%26maxwidth%3D640\\u0026url=https%3A%2F%2Fcoub.com%2Fview%2F1uqk30\\u0026image=https%3A%2F%2Fcoubsecure-s.akamaihd.net%2Fget%2Fb189%2Fp%2Fcoub%2Fsimple%2Fcw_image%2Ffc2f77efef2%2F92fbfabd438d77bc688f2%2Fbig_1558602182_00030.jpg\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=coub\\\" width=\\\"600\\\" height=\\\"329\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 1280, \"version\": \"1.0\", \"provider_name\": \"Coub\", \"thumbnail_url\": \"https://coubsecure-s.akamaihd.net/get/b189/p/coub/simple/cw_image/fc2f77efef2/92fbfabd438d77bc688f2/big_1558602182_00030.jpg\", \"thumbnail_height\": 700}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1likcrk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Opioid Epidemic\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 77, \"hide_score\": false, \"name\": \"t3_bsx03j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/QMgLgBWZo2J6BvtEUhCtq1puxq_1nXJklQluEpY1eVc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558833593.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?auto=webp\\u0026s=112c158959edb120ed7a4b2c6af8005b24adfae3\", \"width\": 2500, \"height\": 1375}, \"resolutions\": [{\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=58286f10819d029635929b919b885efe84113bc1\", \"width\": 108, \"height\": 59}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5b950ddd484fbbbf695b9d78f249484dd503ca34\", \"width\": 216, \"height\": 118}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b1627f91c9c141adc0907618e1104fb76265822e\", \"width\": 320, \"height\": 176}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b6a7d4e67ba17921827b1fc20be649529936fbf2\", \"width\": 640, \"height\": 352}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=51b4a2ca46ae9a14de2d1526ea16ee912fc2d5fb\", \"width\": 960, \"height\": 528}, {\"url\": \"https://preview.redd.it/hjkw4r1g5e031.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=97c530e4986d9fb9ad52ce225a3776d6b21d34db\", \"width\": 1080, \"height\": 594}], \"variants\": {}, \"id\": \"r0QQSeXyt6cpVPwloW0dlXs4ghmbkHS-vOX8K4sT4o8\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsx03j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"wvvyflvcko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsx03j/the_opioid_epidemic/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/hjkw4r1g5e031.jpg\", \"subreddit_subscribers\": 703, \"created_utc\": 1558804793.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_225ztxy6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bsveoo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Kane disposes of Seth\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"heiamll\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/goQiwNZzoVA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/heiamll\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bsveoo\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/a3QmR3Wv2LyuxQEMuRGkWJMyV3qVSzueTO5c6mQqVbU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558825096.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?auto=webp\\u0026s=7d0ecdb5c17f93a12cd53f87a9c8d41e27f6731f\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2e2b3e97b45ce73dcddf4449e6cbfc56ff39fc3f\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e84cf3f890c1d24edfefc7d96ef383b5bc317490\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/4mF-n2X4Gq8mtTXsS6efd09oqJW0JnbsqgNzuIUJ3lA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2c1318b4441b4e7015d9d1f514c83f6f5afbafd6\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"JI-LuN1c02BWSJpGlnUncuUUM9PwrbfPwhq5sYuo_jU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsveoo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ihuarraquax__\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsveoo/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=goQiwNZzoVA\", \"subreddit_subscribers\": 703, \"created_utc\": 1558796296.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Kane disposes of Seth\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/goQiwNZzoVA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"heiamll\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/goQiwNZzoVA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/heiamll\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"B\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\\nThay v\\u00ec th\\u1ed1ng nh\\u1ea5t c\\u01a1 quan h\\u00e0nh ch\\u00ednh c\\u1ea3 n\\u01b0\\u1edbc c\\u00f9ng gi\\u1edd l\\u00e0m vi\\u1ec7c, \\u0111\\u1ec1 xu\\u1ea5t m\\u1edbi cho ph\\u00e9p c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng quy \\u0111\\u1ecbnh gi\\u1edd linh ho\\u1ea1t. \\n\\nB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1eeb 8h30\\nSau g\\u1ea7n 20 ng\\u00e0y c\\u00f4ng b\\u1ed1 t\\u1edd tr\\u00ecnh d\\u1ef1 th\\u1ea3o s\\u1eeda \\u0111\\u1ed5i B\\u1ed9 Lu\\u1eadt Lao \\u0111\\u1ed9ng n\\u0103m 2012, ng\\u00e0y 16/5, B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u00e3 \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i n\\u1ed9i dung \\u0111\\u1ec1 xu\\u1ea5t v\\u1ec1 gi\\u1edd l\\u00e0m vi\\u1ec7c.\\n\\n\\u00d4ng Nguy\\u1ec5n V\\u0103n B\\u00ecnh, Ph\\u00f3 v\\u1ee5 tr\\u01b0\\u1edfng V\\u1ee5 ph\\u00e1p ch\\u1ebf (B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 x\\u00e3 h\\u1ed9i), cho hay v\\u1eeba qua B\\u1ed9 nh\\u1eadn \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u \\u00fd ki\\u1ebfn \\u0111\\u00f3ng g\\u00f3p c\\u1ee7a ng\\u01b0\\u1eddi d\\u00e2n v\\u00e0 c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng n\\u00ean \\u0111\\u00e3 ti\\u1ebfp thu, \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1ea1i c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng \\u0111\\u1ec3 linh ho\\u1ea1t, ph\\u00f9 h\\u1ee3p v\\u1edbi \\u0111i\\u1ec1u ki\\u1ec7n kh\\u00ed h\\u1eadu m\\u1ed7i v\\u00f9ng mi\\u1ec1n. \\n\\nC\\u1ee5 th\\u1ec3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c s\\u1eeda l\\u1ea1i nh\\u01b0 sau: \\\"Giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\\". \\n\\n\\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc c\\u1ea5p trung \\u01b0\\u01a1ng v\\u00e0 c\\u00e1c \\u0111\\u00f4 th\\u1ecb l\\u1edbn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat (tr\\u1eeb nh\\u1eefng \\u0111\\u01a1n v\\u1ecb ho\\u1eb7c b\\u1ed9 ph\\u1eadn ph\\u1ea3i th\\u01b0\\u1eddng tr\\u1ef1c 24/24 gi\\u1edd \\u0111\\u1ec3 \\u0111\\u1ea3m b\\u1ea3o li\\u00ean th\\u00f4ng c\\u00f4ng vi\\u1ec7c ho\\u1eb7c tr\\u1ef1c ti\\u1ebfp gi\\u1ea3i quy\\u1ebft c\\u00f4ng vi\\u1ec7c v\\u1edbi ng\\u01b0\\u1eddi d\\u00e2n). \\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc \\u1edf \\u0111\\u1ecba ph\\u01b0\\u01a1ng th\\u00ec th\\u1ed1ng nh\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c m\\u00f9a h\\u00e8 v\\u00e0 m\\u00f9a \\u0111\\u00f4ng theo \\u0111i\\u1ec1u ki\\u1ec7n \\u0111\\u1ecba l\\u00fd.\\n\\nPh\\u01b0\\u01a1ng \\u00e1n 2 c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c gi\\u1eef nh\\u01b0 hi\\u1ec7n h\\u00e0nh. Theo \\u0111\\u00f3, th\\u1eddi gian l\\u00e0m vi\\u1ec7c kh\\u00f4ng quy \\u0111\\u1ecbnh trong B\\u1ed9 lu\\u1eadt Lao \\u0111\\u1ed9ng m\\u00e0 n\\u00eau t\\u1ea1i c\\u00e1c v\\u0103n b\\u1ea3n h\\u00e0nh ch\\u00ednh; \\u0111\\u1ed1i v\\u1edbi c\\u00e1c B\\u1ed9 do Th\\u1ee7 t\\u01b0\\u1edbng quy\\u1ebft \\u0111\\u1ecbnh; \\u0111\\u1ed1i v\\u1edbi UBND v\\u00e0 c\\u00e1c c\\u01a1 quan chuy\\u00ean m\\u00f4n do Ch\\u1ee7 t\\u1ecbch t\\u1ec9nh quy\\u1ebft.\\n\\u003Cimg src=\\\"https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\\" alt=\\\"Markdown Monster icon\\\"/\\u003E\\n[Ng\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. ](https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg)\\n\\n![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png)\\n\\nNg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\n\\nTr\\u01b0\\u1edbc \\u0111\\u00f3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t trong phi\\u00ean b\\u1ea3n c\\u0169 c\\u1ee7a d\\u1ef1 th\\u1ea3o t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c c\\u00f4ng b\\u1ed1 h\\u00f4m 28/4 n\\u00eau, \\\"giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\\". Th\\u1eddi gian l\\u00e0m vi\\u1ec7c d\\u1ef1 ki\\u1ebfn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat.\", \"author_fullname\": \"t2_3nwxz2cj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"B\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsqqvo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558760411.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558788601.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111i\\u1ec1u ch\\u1ec9nh \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c\\nThay v\\u00ec th\\u1ed1ng nh\\u1ea5t c\\u01a1 quan h\\u00e0nh ch\\u00ednh c\\u1ea3 n\\u01b0\\u1edbc c\\u00f9ng gi\\u1edd l\\u00e0m vi\\u1ec7c, \\u0111\\u1ec1 xu\\u1ea5t m\\u1edbi cho ph\\u00e9p c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng quy \\u0111\\u1ecbnh gi\\u1edd linh ho\\u1ea1t. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB\\u1ed9 Lao \\u0111\\u1ed9ng Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1eeb 8h30\\nSau g\\u1ea7n 20 ng\\u00e0y c\\u00f4ng b\\u1ed1 t\\u1edd tr\\u00ecnh d\\u1ef1 th\\u1ea3o s\\u1eeda \\u0111\\u1ed5i B\\u1ed9 Lu\\u1eadt Lao \\u0111\\u1ed9ng n\\u0103m 2012, ng\\u00e0y 16/5, B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 X\\u00e3 h\\u1ed9i \\u0111\\u00e3 \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i n\\u1ed9i dung \\u0111\\u1ec1 xu\\u1ea5t v\\u1ec1 gi\\u1edd l\\u00e0m vi\\u1ec7c.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u00d4ng Nguy\\u1ec5n V\\u0103n B\\u00ecnh, Ph\\u00f3 v\\u1ee5 tr\\u01b0\\u1edfng V\\u1ee5 ph\\u00e1p ch\\u1ebf (B\\u1ed9 Lao \\u0111\\u1ed9ng, Th\\u01b0\\u01a1ng binh v\\u00e0 x\\u00e3 h\\u1ed9i), cho hay v\\u1eeba qua B\\u1ed9 nh\\u1eadn \\u0111\\u01b0\\u1ee3c nhi\\u1ec1u \\u00fd ki\\u1ebfn \\u0111\\u00f3ng g\\u00f3p c\\u1ee7a ng\\u01b0\\u1eddi d\\u00e2n v\\u00e0 c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng n\\u00ean \\u0111\\u00e3 ti\\u1ebfp thu, \\u0111i\\u1ec1u ch\\u1ec9nh l\\u1ea1i \\u0111\\u1ec1 xu\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c t\\u1ea1i c\\u00e1c \\u0111\\u1ecba ph\\u01b0\\u01a1ng \\u0111\\u1ec3 linh ho\\u1ea1t, ph\\u00f9 h\\u1ee3p v\\u1edbi \\u0111i\\u1ec1u ki\\u1ec7n kh\\u00ed h\\u1eadu m\\u1ed7i v\\u00f9ng mi\\u1ec1n. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EC\\u1ee5 th\\u1ec3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c s\\u1eeda l\\u1ea1i nh\\u01b0 sau: \\u0026quot;Giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\u0026quot;. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc c\\u1ea5p trung \\u01b0\\u01a1ng v\\u00e0 c\\u00e1c \\u0111\\u00f4 th\\u1ecb l\\u1edbn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat (tr\\u1eeb nh\\u1eefng \\u0111\\u01a1n v\\u1ecb ho\\u1eb7c b\\u1ed9 ph\\u1eadn ph\\u1ea3i th\\u01b0\\u1eddng tr\\u1ef1c 24/24 gi\\u1edd \\u0111\\u1ec3 \\u0111\\u1ea3m b\\u1ea3o li\\u00ean th\\u00f4ng c\\u00f4ng vi\\u1ec7c ho\\u1eb7c tr\\u1ef1c ti\\u1ebfp gi\\u1ea3i quy\\u1ebft c\\u00f4ng vi\\u1ec7c v\\u1edbi ng\\u01b0\\u1eddi d\\u00e2n). \\u0110\\u1ed1i v\\u1edbi c\\u01a1 quan nh\\u00e0 n\\u01b0\\u1edbc \\u1edf \\u0111\\u1ecba ph\\u01b0\\u01a1ng th\\u00ec th\\u1ed1ng nh\\u1ea5t gi\\u1edd l\\u00e0m vi\\u1ec7c m\\u00f9a h\\u00e8 v\\u00e0 m\\u00f9a \\u0111\\u00f4ng theo \\u0111i\\u1ec1u ki\\u1ec7n \\u0111\\u1ecba l\\u00fd.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPh\\u01b0\\u01a1ng \\u00e1n 2 c\\u1ee7a t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c gi\\u1eef nh\\u01b0 hi\\u1ec7n h\\u00e0nh. Theo \\u0111\\u00f3, th\\u1eddi gian l\\u00e0m vi\\u1ec7c kh\\u00f4ng quy \\u0111\\u1ecbnh trong B\\u1ed9 lu\\u1eadt Lao \\u0111\\u1ed9ng m\\u00e0 n\\u00eau t\\u1ea1i c\\u00e1c v\\u0103n b\\u1ea3n h\\u00e0nh ch\\u00ednh; \\u0111\\u1ed1i v\\u1edbi c\\u00e1c B\\u1ed9 do Th\\u1ee7 t\\u01b0\\u1edbng quy\\u1ebft \\u0111\\u1ecbnh; \\u0111\\u1ed1i v\\u1edbi UBND v\\u00e0 c\\u00e1c c\\u01a1 quan chuy\\u00ean m\\u00f4n do Ch\\u1ee7 t\\u1ecbch t\\u1ec9nh quy\\u1ebft.\\n\\u0026lt;img src=\\u0026quot;https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\u0026quot; alt=\\u0026quot;Markdown Monster icon\\u0026quot;/\\u0026gt;\\n\\u003Ca href=\\\"https://i-vnexpress.vnecdn.net/2019/05/17/thu-tuc-hanh-chinh-1-4570-1525-4377-2972-1558058003.jpg\\\"\\u003ENg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E![Image of Yaktocat](\\u003Ca href=\\\"https://octodex.github.com/images/yaktocat.png\\\"\\u003Ehttps://octodex.github.com/images/yaktocat.png\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENg\\u01b0\\u1eddi d\\u00e2n \\u0111i l\\u00e0m th\\u1ee7 t\\u1ee5c h\\u00e0nh ch\\u00ednh t\\u1ea1i H\\u00e0 N\\u1ed9i. \\u1ea2nh: Xu\\u00e2n Hoa. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETr\\u01b0\\u1edbc \\u0111\\u00f3, ph\\u01b0\\u01a1ng \\u00e1n m\\u1ed9t trong phi\\u00ean b\\u1ea3n c\\u0169 c\\u1ee7a d\\u1ef1 th\\u1ea3o t\\u1edd tr\\u00ecnh \\u0111\\u01b0\\u1ee3c c\\u00f4ng b\\u1ed1 h\\u00f4m 28/4 n\\u00eau, \\u0026quot;giao Ch\\u00ednh ph\\u1ee7 quy \\u0111\\u1ecbnh th\\u1ed1ng nh\\u1ea5t th\\u1eddi \\u0111i\\u1ec3m b\\u1eaft \\u0111\\u1ea7u v\\u00e0 k\\u1ebft th\\u00fac th\\u1eddi gian l\\u00e0m vi\\u1ec7c c\\u1ee7a c\\u00e1c c\\u01a1 quan h\\u00e0nh ch\\u00ednh tr\\u00ean c\\u1ea3 n\\u01b0\\u1edbc\\u0026quot;. Th\\u1eddi gian l\\u00e0m vi\\u1ec7c d\\u1ef1 ki\\u1ebfn l\\u00e0 t\\u1eeb 8h30 \\u0111\\u1ebfn 17h30, ngh\\u1ec9 tr\\u01b0a 60 ph\\u00fat.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsqqvo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Fortuner2022\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsqqvo/b\\u1ed9_lao_\\u0111\\u1ed9ng_th\\u01b0\\u01a1ng_binh_v\\u00e0_x\\u00e3_h\\u1ed9i_\\u0111i\\u1ec1u_ch\\u1ec9nh_\\u0111\\u1ec1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsqqvo/b\\u1ed9_lao_\\u0111\\u1ed9ng_th\\u01b0\\u01a1ng_binh_v\\u00e0_x\\u00e3_h\\u1ed9i_\\u0111i\\u1ec1u_ch\\u1ec9nh_\\u0111\\u1ec1/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558759801.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Now the sad part. I don't actually have anyone to play my cube with at the moment. Why would someone put all the effort into building a cube that they can't actually play? Well, I started playing on ptcgo so I don't have a physical play group and from ptcgo I got into collecting some physical cards. I eventually heard about pokemon cubes and thought it sounded like a fun thing to do with all of the cards I was collecting. Some people collect Charizards or secret rares or Yuka Morii art. I collected a cube. That's another reason I went with all the bling, to add some longevity to the project.\\n\\nThe long term plan is to play it with my kids (I have three boys). They're interested in pokemon and I've given them some beater cards to start \\\"collecting\\\" but they're still a year or two away from actually playing the game. In the mean time, I've been playing and testing the cube on my own. You may have seen my post a couple months ago about my [draft interface](https://www.reddit.com/r/pkmntcg/comments/a1i5p1/i_made_a_drafting_interface_for_testing_your_cube/). I use that to build decks then play a few games against myself to get a feel for the power level, consistency and balance. Even with just self-testing, I've been able to learn quite a bit about how the cube plays. Here are some of my observations/musings.\\n\\n##Drafting\\n\\n**Table Draft** (4-6 players, 60 card decks, 6 prize games)\\n\\n1. Create packs\\n * 4 players: 36 packs of 10 cards\\n * 5 players: 45 packs of 10 cards\\n * 6 players: 48 packs of 10 cards\\n2. Each player opens a pack, picks 1 card and passes it to the player on their right.\\n3. Each player continues picking 1 card from the pack that is passed to them until all the cards in the packs are drafted.\\n4. Each player opens a new pack, picks 1 card and passes it to the player on their left.\\n5. Continue until all of the packs have been drafted.\\n\\nThis is the most common draft format and probably what most people have in mind for playing cube. The most challenging part of this format is figuring out what you need to pick early in a pack versus what you think you can leave behind and pick up later. Mid-way through a draft, you might open a pack with a [Strong Energy](https://pkmncards.com/card/strong-energy-fates-collide-fco-115/ \\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\") and a [Nest Ball](https://pkmncards.com/card/nest-ball-sun-moon-sum-123/ \\\"Search your deck for a Basic Pok\\u00e9mon and put it onto your Bench. Then, shuffle your deck.\\\") and be faced with a tough choice. Strong Energy would be incredible in your Fighting deck, probably better than Nest Ball, and not many other people at the table will want the Strong Energy. The Nest Ball, on the other hand, will be in high demand. There's almost no chance that it will still be in the pack when it comes back to you. So do you take the consistency boosting Nest Ball and try to wheel the Strong Energy or do you take the damage boost to guarantee some extra power in your deck. Or maybe you're passed a Salandit that you really want for your [Roast Reveal Salazzle](https://pkmncards.com/card/salazzle-unbroken-bonds-unb-31/ \\\"Ability: Roast Reveal\\nOnce during your turn (before your attack), you may discard a [R] Energy card from your hand. If you do, draw 3 cards.\\\"). Will it come back around or will a Grass deck take it to support a [Hot Poison](https://pkmncards.com/card/salazzle-guardians-rising-gri-16/ \\\"Ability: Hot Poison\\nWhen you play this Pok\\u00e9mon from your hand to evolve 1 of your Pok\\u00e9mon during your turn, you may leave your opponent\\u2019s Active Pok\\u00e9mon Burned and Poisoned.\\\"). Interesting choices!\\n\\nI also like how the pick priorities change throughout the draft. Early on you're mostly looking for big spicy cards to build around. Magnezone, Greninja, Victreebel, etc. If there's nothing like that in the pack, you take a nice consistency card like Sycamore or Ultra Ball that still leaves you open to lots of decks. Further into the draft, you're first picking a lot of the high quality trainer cards cause everyone wants them, but also balancing that with powerful support cards that your deck needs to function. At the tail end, you're trying to fill in any holes that your deck still has. You may find yourself picking a [Brock's Grit](https://pkmncards.com/card/brocks-grit-evolutions-evo-107/ \\\"Shuffle 6 in any combination of Pok\\u00e9mon and basic Energy cards from your discard pile into your deck.\\\") over a [Cynthia](https://pkmncards.com/card/cynthia-ultra-prism-upr-148/ \\\"Shuffle your hand into your deck. Then, draw 6 cards.\\\") simply because you don't have any energy or pokemon recovery yet. While some cards come really close to insta-picks, most of a cards' worth is highly dependent on the deck you're trying to build the stage of the draft you're in, which I really like.\\n\\nRegarding the number of packs to draft, it's tempting to simply draft the entire cube every time. But, especially with four players, it leads to predictable and somewhat boring drafts. Each player gets into their own archetype and there is very little competition for cards other than trainers. If someone first picks a Magnezone, you might as well hand them the rest of the Lightning cards in the cube. If you limit the number of packs, players are not guaranteed to see all of their support cards during the draft. They will have to explore other options within an archetype or at least a way to supplement their preferred deck with other cards. This is an important source of innovation and variety in cube drafting. It's what keeps each new draft form being just like the previous one. Of course, this has to be balanced against giving players enough cards to build a functioning deck. To few cards and you'll end up with a bunch of weak attackers and no real synergy between cards. I feel like around 80-90 cards in your final card pool (not including basic energies) is about right. This may sound like a ton of cards if you are coming from a background of drafting Magic: the Gathering but, proportionally, it's not too far off. In a Magic draft, you have 24 packs of 14 cards and each player ends up with 42 non-land cards. Your 40 card deck will typically have 23 non-land cards so you draft nearly twice as many cards as you end up using. In a 60 card pokemon deck you will have around 45-48 non-energy cards in your final deck and 80-90 is roughly double that. It's enough cards to present you with meaningful choices during deck building rather than just including anything that is remotely playable. Do I try to splash that off-color attacker to cover weakness or do I include more basic energy for consistency? How much energy fixing did I draft? That kind of stuff.\\n\\n**Grid Draft** (2 players, 60 card decks, 6 prize games)\\n\\n1. Create 34 packs of 9 cards. \\n2. Layout one pack in a 3 X 3 grid face up.\\n3. The first player chooses either a row or a column and takes all three of the cards in the row/column.\\n4. The second player chooses another row or column and takes those cards\\n5. Alternated who chooses first with each pack.\\n\\nGrid drafting is a really good place to start if you are playing with someone who's never drafted before. With all the cards laid out for everyone to see, you can easily give hints and guidance without breaking any of the rules of the draft (i.e. \\\"show me your pack\\\"). Drafting an entire deck from a cube involves *a lot* of decisions, and it can be overwhelming for people that aren't familiar with your cube and all of the card interactions. Providing some gentle guidance when they get stuck removes some of that burden and keep things fun. Grid drafting also goes a little bit faster than some of the other forms because you are picking 2-3 cards at a time.\\n\\nUnfortunately, I don't think grid drafting is a very good format for pokemon cubes. After doing several grid drafts in my simulator, I kept ending up with decks that were missing key cards like pre-evolutions even though I was drafting *a lot* of extra cards. During a table draft, you can easily pick up your pre-evolutions later in a pack because no one else is interested in them. But in grid drafting, it's not uncommon to have your pre-evolutions accidentally hate drafted by the other player because they just happened to be in a row with something else they wanted. And if you prioritize pre-evolutions too heavily, you are often giving up high quality consistency cards like draw supporters or poke search. Basically, grid drafting does not give you the precise control over picks necessary to build proper pokemon decks.\\n\\n**Pancake Draft** (2 players)\\n\\n1. Create 30 packs of 12 cards.\\n2. Each player takes a pack, picks 1 card and passes it to the other player.\\n3. Each player picks 2 cards then removes 2 cards and puts them in a discard pile. Pass the pack again.\\n4. Each player picks 2 cards and discards the remaining 5 cards.\\n5. Repeat 2-3 until all packs have been drafted.\\n\\nThis is essentially the traditional table draft adapted for two players. \\n\\n**Sealed** (2-4 players, 60 card decks, 6 prize games)\\n\\n1. Remove pre-evolutions from the pool of cards (142 cards).\\n2. Create sealed pools of 80 cards for each player.\\n3. Build decks adding basic energy and the necessary pre-evolutions as needed.\\n\\nSealed is pretty dicey for the same reasons that grid drafting is. You need to make a lot of intentional picks while drafting to make sure that your evolution lines work. You can't do that in sealed. There's no way you can reliably get enough complete evolution lines in a reasonably sized sealed pool. However, removing the pre-evolutions from the pool helps a ton. Now you're just looking for enough strong attackers that share a type or a strategy to mash together into a deck. After you build you deck, you simply add whatever pre-evolutions you need, similar to how basic energy is handled.\\n\\nSealed decks, across various card games, generally rely less on card synergy and more on individually strong cards. Don't expect the decks to be as intricate or as fun as draft decks. It's not the way I prefer to play cube but it's a decent option if you don't have time for a lengthy draft. It's also a good way to introduce new players to your cube. Having to read every card in a pack 40 times over is exhausting and without a mental short list of what cards they should be considering, inexperienced players can quickly become overwhelmed. With a static sealed pool, a player unfamiliar with the cards can focus on what they have and make the best of it. Consider 40 card decks with 4 prize games if you are playing with new folks, as well.\\n\\n##Gameplay\\n\\n* **Pace of play**: As you might expect, games are quite a bit slower than competitive constructed decks. You don't have the draw engines that give you complete turn 1 setups and let you see half your deck by turn 3. You don't have fully powered up attackers every turn taking knockouts. Instead, cube decks play at around the same speed as theme decks. You spend a few turns setting up, then start taking knock-outs semi-regularly. There will still be occasional dead draws and slow starts but part of the strategy is learning how to mitigate the damage of these situations. Is there a pokemon I can [Flick Poison](https://pkmncards.com/card/carnivine-shining-legends-slg-6/ \\\"[G] Flick Poison\\nSwitch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. The new Active Pok\\u00e9mon is now Poisoned.\\\") and stall while I draw out of this? There are also a fair number of catch-up mechanics available in the cube so getting a slower start than your opponent is not an automatic game loss.\\n\\nWhere cube decks exceed theme decks is in their available lines of play. Theme decks execute basically the same game plan every time because they have only a couple good attackers and maybe one or two tricks. Cube decks have completely unique attackers and each will be strongest in different situations. Sequencing and setting up the right attacker for the right response KO becomes very important. The number of tricks available in cube decks is also much higher than theme decks, leading to lots of fun and unexpected plays throughout the game. \\n\\n* **Consistency**: Consistency is a trick. On one hand, you want your decks to be doing cool, powerful, and interesting things. But doing those things usually means getting several specific cards in your hand and into play. Unfortunately, cube doesn't have strong enough draw engines to support intricate setups, and decks that rely heavily on them are going to be wildly inconsistent. On the other hand, if decks are very simple (play basic pokemon, attach energy, declare attack) they will be very consistent, but also very boring. So decks need a little bit of both. They need some meat and potatoes, basic attacks with low energy costs, as well as some spice, splashy evolution pokemon with unique attacks or abilities. The same is true with trainers, where you want your [Colresses](https://pkmncards.com/card/colress-plasma-storm-pls-135/ \\\"Shuffle your hand into your deck. Then, draw a number of cards equal to the number of Benched Pok\\u00e9mon (both your and your opponent\\u2019s).\\\") along side your [Nanus](https://pkmncards.com/card/nanu-team-up-teu-179/ \\\"Choose a Basic [D] Pok\\u00e9mon in your discard pile. Switch it with 1 of your Pok\\u00e9mon in play. Any attached cards, damage counters, Special Conditions, turns in play, and any other effects remain of the new Pok\\u00e9mon.\\\"). The decks that seem to work best are ones with solid basic attackers that can function on their own, but kick into another gear when they get the stage 2 support online. In Lightning decks, [Zekrom](https://pkmncards.com/card/zekrom-shining-legends-slg-35/ \\\"[C][C] Outrage: 20+\\nThis attack does 10 more damage for each damage counter on this Pok\\u00e9mon.\\n[L][L][C] Storm Blade: 130\\nDiscard 2 Energy from this Pok\\u00e9mon.\\\") or [Zeraora](https://pkmncards.com/card/zeraora-unbroken-bonds-unb-60/ \\\"[L] Crushing Claw: 20\\nDiscard a Special Energy from your opponent\\u2019s Active Pok\\u00e9mon.\\n[L][C][C] Discharge: 50\\u00d7\\nDiscard all [L] Energy from this Pok\\u00e9mon. This attack does 50 damage for each card you discarded in this way.\\\") can chip away for a few turns until [Magnezone](https://pkmncards.com/card/magnezone-forbidden-light-fli-36/ \\\"Ability: Magnetic Circuit\\nAs often as you like during your turn (before your attack), you may attach a [L] Energy card from your hand to 1 of your Pok\\u00e9mon.\\\") begins accelerating energy and you start chewing through attackers. In Psychic decks, [Hoopa](https://pkmncards.com/card/hoopa-steam-siege-sts-51/ \\\"[C] Hyperspace Punch\\nThis attack does 20 damage to 2 of your opponent\\u2019s Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][P][P] Portal Strike: 130\\nThis Pok\\u00e9mon can\\u2019t use Portal Strike during your next turn.\\\") and [Latios](https://pkmncards.com/card/latios-shining-legends-slg-41/ \\\"[C][C] Break Through: 30\\nThis attack does 30 damage to 1 of your opponent\\u2019s Benched Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][C][C] Lagoon Flight: 70 \\\") can load up the board with damage allowing [Chandelure](https://pkmncards.com/card/chandelure-lost-thunder-lot-103/ \\\"[P][P] Vortex of Pain: 20\\u00d7\\nThis attack does 20 damage for each damage counter on all of your opponent\\u2019s Pok\\u00e9mon.\\\") to come in later and Vortex for huge numbers.\\n\\nIn general, people tend to err on the cool and splashy side when building their cube. We're much more likely to imagine Magical Christmas Land in our heads when we envision how all the cards are going to work together. \\\"Of course I'm going to draw [Regirock](https://pkmncards.com/card/regirock-celestial-storm-ces-80/ \\\"[F] Enhanced Stomp: 20+\\nIf this Pok\\u00e9mon has a Pok\\u00e9mon Tool card attached to it, this attack does 20 more damage.\\\"), [Muscle Band](https://pkmncards.com/card/muscle-band-xy-121/ \\\"The attacks of the Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon (before applying Weakness and Resistance).\\\"), [Strong Energy](https://pkmncards.com/card/strong-energy-fates-collide-fco-115/ \\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\") and Rare Candy [Fighting Fury Machamp](https://pkmncards.com/card/machamp-furious-fists-ffi-46/ \\\"Ability: Fighting Fury\\nEach of your [F] Pok\\u00e9mon\\u2019s attacks do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon .\\\") on turn 2. 100 Damage for 1 energy! Might even be too good for cube.\\\" I try to avoid cards that do actual nothing if some previous setup isn't there. I want whatever I draw to be useful in some way. What makes Regirock good is that you only need *one* of those pieces for it to be hitting above average numbers, but the more you have, the better it gets. One example of borderline do-nothings in my cube are the [Reactive Poison](https://pkmncards.com/card/ariados-celestial-storm-ces-6/ \\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\\") attacks, since you really need access to status conditions for them to do anything. Fortunately, [Victreebel](https://pkmncards.com/card/victreebel-unbroken-bonds-unb-15/ \\\"[G] Reactive Poison: 10+\\nThis attack does 60 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G][C][C] Gastro Acid: 90\\nThe Defending Pok\\u00e9mon has no Abilities until the end of your next turn.\\\") and [Ariados](https://pkmncards.com/card/ariados-celestial-storm-ces-6/ \\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G] Spider Trap\\nYou may switch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. Your opponent\\u2019s Active Pok\\u00e9mon is now Asleep and Poisoned..\\\") have decent backup attacks making them somewhat more flexible if the setup isn't there.\\n\\nSo what are the best types of cards to include to support the spice? What are the meat and potatoes?\\n\\n* **Attack draw/search**: Standard games are usually too fast to waste your attack drawing cards, but with the slower pace of play in cube, attack based setup is very valuable. Cards like [Alolan Vulpix](https://pkmncards.com/card/alolan-vulpix-guardians-rising-gri-21/ \\\"[-] Beacon\\nSearch your deck for up to 2 Pok\\u00e9mon, reveal them, and put them into your hand. Then, shuffle your deck.\\\") and [Dunsparce](https://pkmncards.com/card/dunsparce-celestial-storm-ces-110/ \\\"[C] Strike and Run\\nSearch your deck for up to 3 Basic Pok\\u00e9mon and put them onto your Bench. Then, shuffle your deck. If you put any Pok\\u00e9mon onto your Bench in this way, you may switch this Pok\\u00e9mon with 1 of your Benched Pok\\u00e9mon.\\\") are pretty good for setting up your board but can be hard to reliably get out on the first turn and aren't that useful later on. [Espeon](https://pkmncards.com/card/espeon-plasma-freeze-plf-48/ \\\"[C] Psy Alert: 20\\nDraw cards until you have 6 cards in your hand.\\n[P] Shadow Ball\\nThis attack does 40 damage to 1 of your opponent\\u2019s Pok\\u00e9mon. Also apply Weakness and Resistance for Benched Pok\\u00e9mon.\\\") and [Zoroark](https://pkmncards.com/card/zoroark-black-white-blw-71/ \\\"[D] Nasty Plot\\nSearch your deck for a card and put it into your hand. Shuffle your deck afterward.\\n[C][C] Foul Play\\nChoose 1 of the Defending Pok\\u00e9mon\\u2019s attacks and use it as this attack.\\\") can dish out damage in addition to drawing cards, but are stage 1 and require some setup themselves before they are useful. My favorite kinds of cards are pokemon like [Shaymin](https://pkmncards.com/card/shaymin-shining-legends-slg-7/ \\\"[G] Flippity Flap\\nShuffle your hand into your deck. Then, draw 6 cards.\\n[G][C] Rally Back: 30+\\nIf any of your Pok\\u00e9mon were Knocked Out by damage from an opponent\\u2019s attack during their last turn, this attack does 90 more damage.\\\") and [Mimikyu](https://pkmncards.com/card/mimikyu-guardians-rising-gri-58/ \\\"[C] Filch\\nDraw 2 cards.\\n[P][C] Copycat\\nIf your opponent\\u2019s Pok\\u00e9mon used an attack that isn\\u2019t a GX attack during their last turn, use it as this attack.\\\"). The efficient card draw helps with early game setup and mid-game dead draws while their situational attacks keep them relevant to the last prize. They may not be super flavorful additions to their respective archetypes, but they are crucial to a well functioning decks. When things aren't going as planned, you still need cards that get out there and do *something* to help move the game along. Basic attackers, single energy card draw, efficient damage; these pokemon are the glue that hold all fun stuff together.\", \"author_fullname\": \"t2_i1ikl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Pokecube II\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bskwuj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558753845.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENow the sad part. I don\\u0026#39;t actually have anyone to play my cube with at the moment. Why would someone put all the effort into building a cube that they can\\u0026#39;t actually play? Well, I started playing on ptcgo so I don\\u0026#39;t have a physical play group and from ptcgo I got into collecting some physical cards. I eventually heard about pokemon cubes and thought it sounded like a fun thing to do with all of the cards I was collecting. Some people collect Charizards or secret rares or Yuka Morii art. I collected a cube. That\\u0026#39;s another reason I went with all the bling, to add some longevity to the project.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe long term plan is to play it with my kids (I have three boys). They\\u0026#39;re interested in pokemon and I\\u0026#39;ve given them some beater cards to start \\u0026quot;collecting\\u0026quot; but they\\u0026#39;re still a year or two away from actually playing the game. In the mean time, I\\u0026#39;ve been playing and testing the cube on my own. You may have seen my post a couple months ago about my \\u003Ca href=\\\"https://www.reddit.com/r/pkmntcg/comments/a1i5p1/i_made_a_drafting_interface_for_testing_your_cube/\\\"\\u003Edraft interface\\u003C/a\\u003E. I use that to build decks then play a few games against myself to get a feel for the power level, consistency and balance. Even with just self-testing, I\\u0026#39;ve been able to learn quite a bit about how the cube plays. Here are some of my observations/musings.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EDrafting\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETable Draft\\u003C/strong\\u003E (4-6 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate packs\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E4 players: 36 packs of 10 cards\\u003C/li\\u003E\\n\\u003Cli\\u003E5 players: 45 packs of 10 cards\\u003C/li\\u003E\\n\\u003Cli\\u003E6 players: 48 packs of 10 cards\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player opens a pack, picks 1 card and passes it to the player on their right.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player continues picking 1 card from the pack that is passed to them until all the cards in the packs are drafted.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player opens a new pack, picks 1 card and passes it to the player on their left.\\u003C/li\\u003E\\n\\u003Cli\\u003EContinue until all of the packs have been drafted.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is the most common draft format and probably what most people have in mind for playing cube. The most challenging part of this format is figuring out what you need to pick early in a pack versus what you think you can leave behind and pick up later. Mid-way through a draft, you might open a pack with a \\u003Ca href=\\\"https://pkmncards.com/card/strong-energy-fates-collide-fco-115/\\\" title=\\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EStrong Energy\\u003C/a\\u003E and a \\u003Ca href=\\\"https://pkmncards.com/card/nest-ball-sun-moon-sum-123/\\\" title=\\\"Search your deck for a Basic Pok\\u00e9mon and put it onto your Bench. Then, shuffle your deck.\\\"\\u003ENest Ball\\u003C/a\\u003E and be faced with a tough choice. Strong Energy would be incredible in your Fighting deck, probably better than Nest Ball, and not many other people at the table will want the Strong Energy. The Nest Ball, on the other hand, will be in high demand. There\\u0026#39;s almost no chance that it will still be in the pack when it comes back to you. So do you take the consistency boosting Nest Ball and try to wheel the Strong Energy or do you take the damage boost to guarantee some extra power in your deck. Or maybe you\\u0026#39;re passed a Salandit that you really want for your \\u003Ca href=\\\"https://pkmncards.com/card/salazzle-unbroken-bonds-unb-31/\\\" title=\\\"Ability: Roast Reveal\\nOnce during your turn (before your attack), you may discard a [R] Energy card from your hand. If you do, draw 3 cards.\\\"\\u003ERoast Reveal Salazzle\\u003C/a\\u003E. Will it come back around or will a Grass deck take it to support a \\u003Ca href=\\\"https://pkmncards.com/card/salazzle-guardians-rising-gri-16/\\\" title=\\\"Ability: Hot Poison\\nWhen you play this Pok\\u00e9mon from your hand to evolve 1 of your Pok\\u00e9mon during your turn, you may leave your opponent\\u2019s Active Pok\\u00e9mon Burned and Poisoned.\\\"\\u003EHot Poison\\u003C/a\\u003E. Interesting choices!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also like how the pick priorities change throughout the draft. Early on you\\u0026#39;re mostly looking for big spicy cards to build around. Magnezone, Greninja, Victreebel, etc. If there\\u0026#39;s nothing like that in the pack, you take a nice consistency card like Sycamore or Ultra Ball that still leaves you open to lots of decks. Further into the draft, you\\u0026#39;re first picking a lot of the high quality trainer cards cause everyone wants them, but also balancing that with powerful support cards that your deck needs to function. At the tail end, you\\u0026#39;re trying to fill in any holes that your deck still has. You may find yourself picking a \\u003Ca href=\\\"https://pkmncards.com/card/brocks-grit-evolutions-evo-107/\\\" title=\\\"Shuffle 6 in any combination of Pok\\u00e9mon and basic Energy cards from your discard pile into your deck.\\\"\\u003EBrock\\u0026#39;s Grit\\u003C/a\\u003E over a \\u003Ca href=\\\"https://pkmncards.com/card/cynthia-ultra-prism-upr-148/\\\" title=\\\"Shuffle your hand into your deck. Then, draw 6 cards.\\\"\\u003ECynthia\\u003C/a\\u003E simply because you don\\u0026#39;t have any energy or pokemon recovery yet. While some cards come really close to insta-picks, most of a cards\\u0026#39; worth is highly dependent on the deck you\\u0026#39;re trying to build the stage of the draft you\\u0026#39;re in, which I really like.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding the number of packs to draft, it\\u0026#39;s tempting to simply draft the entire cube every time. But, especially with four players, it leads to predictable and somewhat boring drafts. Each player gets into their own archetype and there is very little competition for cards other than trainers. If someone first picks a Magnezone, you might as well hand them the rest of the Lightning cards in the cube. If you limit the number of packs, players are not guaranteed to see all of their support cards during the draft. They will have to explore other options within an archetype or at least a way to supplement their preferred deck with other cards. This is an important source of innovation and variety in cube drafting. It\\u0026#39;s what keeps each new draft form being just like the previous one. Of course, this has to be balanced against giving players enough cards to build a functioning deck. To few cards and you\\u0026#39;ll end up with a bunch of weak attackers and no real synergy between cards. I feel like around 80-90 cards in your final card pool (not including basic energies) is about right. This may sound like a ton of cards if you are coming from a background of drafting Magic: the Gathering but, proportionally, it\\u0026#39;s not too far off. In a Magic draft, you have 24 packs of 14 cards and each player ends up with 42 non-land cards. Your 40 card deck will typically have 23 non-land cards so you draft nearly twice as many cards as you end up using. In a 60 card pokemon deck you will have around 45-48 non-energy cards in your final deck and 80-90 is roughly double that. It\\u0026#39;s enough cards to present you with meaningful choices during deck building rather than just including anything that is remotely playable. Do I try to splash that off-color attacker to cover weakness or do I include more basic energy for consistency? How much energy fixing did I draft? That kind of stuff.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGrid Draft\\u003C/strong\\u003E (2 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate 34 packs of 9 cards. \\u003C/li\\u003E\\n\\u003Cli\\u003ELayout one pack in a 3 X 3 grid face up.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe first player chooses either a row or a column and takes all three of the cards in the row/column.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe second player chooses another row or column and takes those cards\\u003C/li\\u003E\\n\\u003Cli\\u003EAlternated who chooses first with each pack.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EGrid drafting is a really good place to start if you are playing with someone who\\u0026#39;s never drafted before. With all the cards laid out for everyone to see, you can easily give hints and guidance without breaking any of the rules of the draft (i.e. \\u0026quot;show me your pack\\u0026quot;). Drafting an entire deck from a cube involves \\u003Cem\\u003Ea lot\\u003C/em\\u003E of decisions, and it can be overwhelming for people that aren\\u0026#39;t familiar with your cube and all of the card interactions. Providing some gentle guidance when they get stuck removes some of that burden and keep things fun. Grid drafting also goes a little bit faster than some of the other forms because you are picking 2-3 cards at a time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnfortunately, I don\\u0026#39;t think grid drafting is a very good format for pokemon cubes. After doing several grid drafts in my simulator, I kept ending up with decks that were missing key cards like pre-evolutions even though I was drafting \\u003Cem\\u003Ea lot\\u003C/em\\u003E of extra cards. During a table draft, you can easily pick up your pre-evolutions later in a pack because no one else is interested in them. But in grid drafting, it\\u0026#39;s not uncommon to have your pre-evolutions accidentally hate drafted by the other player because they just happened to be in a row with something else they wanted. And if you prioritize pre-evolutions too heavily, you are often giving up high quality consistency cards like draw supporters or poke search. Basically, grid drafting does not give you the precise control over picks necessary to build proper pokemon decks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPancake Draft\\u003C/strong\\u003E (2 players)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECreate 30 packs of 12 cards.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player takes a pack, picks 1 card and passes it to the other player.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player picks 2 cards then removes 2 cards and puts them in a discard pile. Pass the pack again.\\u003C/li\\u003E\\n\\u003Cli\\u003EEach player picks 2 cards and discards the remaining 5 cards.\\u003C/li\\u003E\\n\\u003Cli\\u003ERepeat 2-3 until all packs have been drafted.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is essentially the traditional table draft adapted for two players. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESealed\\u003C/strong\\u003E (2-4 players, 60 card decks, 6 prize games)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ERemove pre-evolutions from the pool of cards (142 cards).\\u003C/li\\u003E\\n\\u003Cli\\u003ECreate sealed pools of 80 cards for each player.\\u003C/li\\u003E\\n\\u003Cli\\u003EBuild decks adding basic energy and the necessary pre-evolutions as needed.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ESealed is pretty dicey for the same reasons that grid drafting is. You need to make a lot of intentional picks while drafting to make sure that your evolution lines work. You can\\u0026#39;t do that in sealed. There\\u0026#39;s no way you can reliably get enough complete evolution lines in a reasonably sized sealed pool. However, removing the pre-evolutions from the pool helps a ton. Now you\\u0026#39;re just looking for enough strong attackers that share a type or a strategy to mash together into a deck. After you build you deck, you simply add whatever pre-evolutions you need, similar to how basic energy is handled.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESealed decks, across various card games, generally rely less on card synergy and more on individually strong cards. Don\\u0026#39;t expect the decks to be as intricate or as fun as draft decks. It\\u0026#39;s not the way I prefer to play cube but it\\u0026#39;s a decent option if you don\\u0026#39;t have time for a lengthy draft. It\\u0026#39;s also a good way to introduce new players to your cube. Having to read every card in a pack 40 times over is exhausting and without a mental short list of what cards they should be considering, inexperienced players can quickly become overwhelmed. With a static sealed pool, a player unfamiliar with the cards can focus on what they have and make the best of it. Consider 40 card decks with 4 prize games if you are playing with new folks, as well.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EGameplay\\u003C/h2\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPace of play\\u003C/strong\\u003E: As you might expect, games are quite a bit slower than competitive constructed decks. You don\\u0026#39;t have the draw engines that give you complete turn 1 setups and let you see half your deck by turn 3. You don\\u0026#39;t have fully powered up attackers every turn taking knockouts. Instead, cube decks play at around the same speed as theme decks. You spend a few turns setting up, then start taking knock-outs semi-regularly. There will still be occasional dead draws and slow starts but part of the strategy is learning how to mitigate the damage of these situations. Is there a pokemon I can \\u003Ca href=\\\"https://pkmncards.com/card/carnivine-shining-legends-slg-6/\\\" title=\\\"[G] Flick Poison\\nSwitch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. The new Active Pok\\u00e9mon is now Poisoned.\\\"\\u003EFlick Poison\\u003C/a\\u003E and stall while I draw out of this? There are also a fair number of catch-up mechanics available in the cube so getting a slower start than your opponent is not an automatic game loss.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhere cube decks exceed theme decks is in their available lines of play. Theme decks execute basically the same game plan every time because they have only a couple good attackers and maybe one or two tricks. Cube decks have completely unique attackers and each will be strongest in different situations. Sequencing and setting up the right attacker for the right response KO becomes very important. The number of tricks available in cube decks is also much higher than theme decks, leading to lots of fun and unexpected plays throughout the game. \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EConsistency\\u003C/strong\\u003E: Consistency is a trick. On one hand, you want your decks to be doing cool, powerful, and interesting things. But doing those things usually means getting several specific cards in your hand and into play. Unfortunately, cube doesn\\u0026#39;t have strong enough draw engines to support intricate setups, and decks that rely heavily on them are going to be wildly inconsistent. On the other hand, if decks are very simple (play basic pokemon, attach energy, declare attack) they will be very consistent, but also very boring. So decks need a little bit of both. They need some meat and potatoes, basic attacks with low energy costs, as well as some spice, splashy evolution pokemon with unique attacks or abilities. The same is true with trainers, where you want your \\u003Ca href=\\\"https://pkmncards.com/card/colress-plasma-storm-pls-135/\\\" title=\\\"Shuffle your hand into your deck. Then, draw a number of cards equal to the number of Benched Pok\\u00e9mon (both your and your opponent\\u2019s).\\\"\\u003EColresses\\u003C/a\\u003E along side your \\u003Ca href=\\\"https://pkmncards.com/card/nanu-team-up-teu-179/\\\" title=\\\"Choose a Basic [D] Pok\\u00e9mon in your discard pile. Switch it with 1 of your Pok\\u00e9mon in play. Any attached cards, damage counters, Special Conditions, turns in play, and any other effects remain of the new Pok\\u00e9mon.\\\"\\u003ENanus\\u003C/a\\u003E. The decks that seem to work best are ones with solid basic attackers that can function on their own, but kick into another gear when they get the stage 2 support online. In Lightning decks, \\u003Ca href=\\\"https://pkmncards.com/card/zekrom-shining-legends-slg-35/\\\" title=\\\"[C][C] Outrage: 20+\\nThis attack does 10 more damage for each damage counter on this Pok\\u00e9mon.\\n[L][L][C] Storm Blade: 130\\nDiscard 2 Energy from this Pok\\u00e9mon.\\\"\\u003EZekrom\\u003C/a\\u003E or \\u003Ca href=\\\"https://pkmncards.com/card/zeraora-unbroken-bonds-unb-60/\\\" title=\\\"[L] Crushing Claw: 20\\nDiscard a Special Energy from your opponent\\u2019s Active Pok\\u00e9mon.\\n[L][C][C] Discharge: 50\\u00d7\\nDiscard all [L] Energy from this Pok\\u00e9mon. This attack does 50 damage for each card you discarded in this way.\\\"\\u003EZeraora\\u003C/a\\u003E can chip away for a few turns until \\u003Ca href=\\\"https://pkmncards.com/card/magnezone-forbidden-light-fli-36/\\\" title=\\\"Ability: Magnetic Circuit\\nAs often as you like during your turn (before your attack), you may attach a [L] Energy card from your hand to 1 of your Pok\\u00e9mon.\\\"\\u003EMagnezone\\u003C/a\\u003E begins accelerating energy and you start chewing through attackers. In Psychic decks, \\u003Ca href=\\\"https://pkmncards.com/card/hoopa-steam-siege-sts-51/\\\" title=\\\"[C] Hyperspace Punch\\nThis attack does 20 damage to 2 of your opponent\\u2019s Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][P][P] Portal Strike: 130\\nThis Pok\\u00e9mon can\\u2019t use Portal Strike during your next turn.\\\"\\u003EHoopa\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/latios-shining-legends-slg-41/\\\" title=\\\"[C][C] Break Through: 30\\nThis attack does 30 damage to 1 of your opponent\\u2019s Benched Pok\\u00e9mon. (Don\\u2019t apply Weakness and Resistance for Benched Pok\\u00e9mon.)\\n[P][C][C] Lagoon Flight: 70 \\\"\\u003ELatios\\u003C/a\\u003E can load up the board with damage allowing \\u003Ca href=\\\"https://pkmncards.com/card/chandelure-lost-thunder-lot-103/\\\" title=\\\"[P][P] Vortex of Pain: 20\\u00d7\\nThis attack does 20 damage for each damage counter on all of your opponent\\u2019s Pok\\u00e9mon.\\\"\\u003EChandelure\\u003C/a\\u003E to come in later and Vortex for huge numbers.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EIn general, people tend to err on the cool and splashy side when building their cube. We\\u0026#39;re much more likely to imagine Magical Christmas Land in our heads when we envision how all the cards are going to work together. \\u0026quot;Of course I\\u0026#39;m going to draw \\u003Ca href=\\\"https://pkmncards.com/card/regirock-celestial-storm-ces-80/\\\" title=\\\"[F] Enhanced Stomp: 20+\\nIf this Pok\\u00e9mon has a Pok\\u00e9mon Tool card attached to it, this attack does 20 more damage.\\\"\\u003ERegirock\\u003C/a\\u003E, \\u003Ca href=\\\"https://pkmncards.com/card/muscle-band-xy-121/\\\" title=\\\"The attacks of the Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon (before applying Weakness and Resistance).\\\"\\u003EMuscle Band\\u003C/a\\u003E, \\u003Ca href=\\\"https://pkmncards.com/card/strong-energy-fates-collide-fco-115/\\\" title=\\\"The attacks of the [F] Pok\\u00e9mon this card is attached to do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EStrong Energy\\u003C/a\\u003E and Rare Candy \\u003Ca href=\\\"https://pkmncards.com/card/machamp-furious-fists-ffi-46/\\\" title=\\\"Ability: Fighting Fury\\nEach of your [F] Pok\\u00e9mon\\u2019s attacks do 20 more damage to your opponent\\u2019s Active Pok\\u00e9mon .\\\"\\u003EFighting Fury Machamp\\u003C/a\\u003E on turn 2. 100 Damage for 1 energy! Might even be too good for cube.\\u0026quot; I try to avoid cards that do actual nothing if some previous setup isn\\u0026#39;t there. I want whatever I draw to be useful in some way. What makes Regirock good is that you only need \\u003Cem\\u003Eone\\u003C/em\\u003E of those pieces for it to be hitting above average numbers, but the more you have, the better it gets. One example of borderline do-nothings in my cube are the \\u003Ca href=\\\"https://pkmncards.com/card/ariados-celestial-storm-ces-6/\\\" title=\\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\\"\\u003EReactive Poison\\u003C/a\\u003E attacks, since you really need access to status conditions for them to do anything. Fortunately, \\u003Ca href=\\\"https://pkmncards.com/card/victreebel-unbroken-bonds-unb-15/\\\" title=\\\"[G] Reactive Poison: 10+\\nThis attack does 60 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G][C][C] Gastro Acid: 90\\nThe Defending Pok\\u00e9mon has no Abilities until the end of your next turn.\\\"\\u003EVictreebel\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/ariados-celestial-storm-ces-6/\\\" title=\\\"[C] Reactive Poison: 20+\\nThis attack does 50 more damage for each Special Condition affecting your opponent\\u2019s Active Pok\\u00e9mon.\\n[G] Spider Trap\\nYou may switch 1 of your opponent\\u2019s Benched Pok\\u00e9mon with their Active Pok\\u00e9mon. Your opponent\\u2019s Active Pok\\u00e9mon is now Asleep and Poisoned..\\\"\\u003EAriados\\u003C/a\\u003E have decent backup attacks making them somewhat more flexible if the setup isn\\u0026#39;t there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo what are the best types of cards to include to support the spice? What are the meat and potatoes?\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EAttack draw/search\\u003C/strong\\u003E: Standard games are usually too fast to waste your attack drawing cards, but with the slower pace of play in cube, attack based setup is very valuable. Cards like \\u003Ca href=\\\"https://pkmncards.com/card/alolan-vulpix-guardians-rising-gri-21/\\\" title=\\\"[-] Beacon\\nSearch your deck for up to 2 Pok\\u00e9mon, reveal them, and put them into your hand. Then, shuffle your deck.\\\"\\u003EAlolan Vulpix\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/dunsparce-celestial-storm-ces-110/\\\" title=\\\"[C] Strike and Run\\nSearch your deck for up to 3 Basic Pok\\u00e9mon and put them onto your Bench. Then, shuffle your deck. If you put any Pok\\u00e9mon onto your Bench in this way, you may switch this Pok\\u00e9mon with 1 of your Benched Pok\\u00e9mon.\\\"\\u003EDunsparce\\u003C/a\\u003E are pretty good for setting up your board but can be hard to reliably get out on the first turn and aren\\u0026#39;t that useful later on. \\u003Ca href=\\\"https://pkmncards.com/card/espeon-plasma-freeze-plf-48/\\\" title=\\\"[C] Psy Alert: 20\\nDraw cards until you have 6 cards in your hand.\\n[P] Shadow Ball\\nThis attack does 40 damage to 1 of your opponent\\u2019s Pok\\u00e9mon. Also apply Weakness and Resistance for Benched Pok\\u00e9mon.\\\"\\u003EEspeon\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/zoroark-black-white-blw-71/\\\" title=\\\"[D] Nasty Plot\\nSearch your deck for a card and put it into your hand. Shuffle your deck afterward.\\n[C][C] Foul Play\\nChoose 1 of the Defending Pok\\u00e9mon\\u2019s attacks and use it as this attack.\\\"\\u003EZoroark\\u003C/a\\u003E can dish out damage in addition to drawing cards, but are stage 1 and require some setup themselves before they are useful. My favorite kinds of cards are pokemon like \\u003Ca href=\\\"https://pkmncards.com/card/shaymin-shining-legends-slg-7/\\\" title=\\\"[G] Flippity Flap\\nShuffle your hand into your deck. Then, draw 6 cards.\\n[G][C] Rally Back: 30+\\nIf any of your Pok\\u00e9mon were Knocked Out by damage from an opponent\\u2019s attack during their last turn, this attack does 90 more damage.\\\"\\u003EShaymin\\u003C/a\\u003E and \\u003Ca href=\\\"https://pkmncards.com/card/mimikyu-guardians-rising-gri-58/\\\" title=\\\"[C] Filch\\nDraw 2 cards.\\n[P][C] Copycat\\nIf your opponent\\u2019s Pok\\u00e9mon used an attack that isn\\u2019t a GX attack during their last turn, use it as this attack.\\\"\\u003EMimikyu\\u003C/a\\u003E. The efficient card draw helps with early game setup and mid-game dead draws while their situational attacks keep them relevant to the last prize. They may not be super flavorful additions to their respective archetypes, but they are crucial to a well functioning decks. When things aren\\u0026#39;t going as planned, you still need cards that get out there and do \\u003Cem\\u003Esomething\\u003C/em\\u003E to help move the game along. Basic attackers, single energy card draw, efficient damage; these pokemon are the glue that hold all fun stuff together.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?auto=webp\\u0026s=e600eb5ec36578972c9dcb042117f9d7e73eaf67\", \"width\": 700, \"height\": 990}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fbc3f54435181448357a2436160e1dfb3519b084\", \"width\": 108, \"height\": 152}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a5f63fcfa2a6c9d8c07906f31aa033efa31e74b8\", \"width\": 216, \"height\": 305}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cfed664ed03f019883ba79e3a787368deb119107\", \"width\": 320, \"height\": 452}, {\"url\": \"https://external-preview.redd.it/HISy9CKHv-htoiSkDuX6Gzr0dqXFYOyDvUw7yQ13sJw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=32513d92d08fcbec7db49d5f29ef8e082ddf5716\", \"width\": 640, \"height\": 905}], \"variants\": {}, \"id\": \"fHDRdxaTIumi8RmF5w1gT1sw9aM-jH8wqoT5OXhhUUQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bskwuj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vandergus\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558725045.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**TL;DR I will make separate comments for each type of post below and users can volunteer and coordinate amongst yourselves as to who will make the posts to avoid duplicate posts on the same subject**\\n\\nHello fellow Formula 1.5 enthusiasts! We'd love to see some volunteers to make various race-weekend and other posts on a regular basis. There is a comprehensive list in this post but feel free to point out any others that you think should be a regular feature!\\n\\n**Regular threads for race weekends:**\\n\\n*For practice, qualifying and race / immediately post-racesessions, please join the threads on r/formula1*\\n\\n**We would like to ask for volunteers to make the following regular posts:**\\n\\n\\nPoll for DOTD\\n\\nRace report \\n\\nThe race report post will also act as a race-debrief thread (day or two after the race) - this will be more heavily moderated to remove memes, circlejerks and low effort comments.\\n\\n\\nPractice 1, 2 and 3 classification and timesheets (in the same style as official ones)\\n\\nQualifying classification and timesheets (in the same style as official ones)\\n\\nFinal race classification and timesheet (in the same style as official ones)\\n\\nPicture of podium finishers [example](https://twitter.com/F1/status/1127586568703754240?s=20)\\n\\nDOTD announcement [example](https://twitter.com/F1/status/1127587969437765632?s=20)\\n\\nFastest Lap announcement [example](https://twitter.com/F1/status/1127600146374635526?s=20)\\n\\nFastest pit stop announcement [example](https://twitter.com/F1/status/1127682358327402497?s=20)\\n\\nWDC standings after the race [example](https://twitter.com/F1/status/1127597818590519297?s=20)\\n\\nWCC standings after the race (similar style to above)\\n\\nOf course, other OC is always welcome, you may like to consider that you will likely get more visibility in r/formula1 at the moment as it is just a far bigger subreddit.\", \"author_fullname\": \"t2_6yp2341\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Formula 1.5 | Call for volunteers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsfs29\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558726259.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ETL;DR I will make separate comments for each type of post below and users can volunteer and coordinate amongst yourselves as to who will make the posts to avoid duplicate posts on the same subject\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello fellow Formula 1.5 enthusiasts! We\\u0026#39;d love to see some volunteers to make various race-weekend and other posts on a regular basis. There is a comprehensive list in this post but feel free to point out any others that you think should be a regular feature!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERegular threads for race weekends:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EFor practice, qualifying and race / immediately post-racesessions, please join the threads on \\u003Ca href=\\\"/r/formula1\\\"\\u003Er/formula1\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWe would like to ask for volunteers to make the following regular posts:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPoll for DOTD\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERace report \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe race report post will also act as a race-debrief thread (day or two after the race) - this will be more heavily moderated to remove memes, circlejerks and low effort comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPractice 1, 2 and 3 classification and timesheets (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQualifying classification and timesheets (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinal race classification and timesheet (in the same style as official ones)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPicture of podium finishers \\u003Ca href=\\\"https://twitter.com/F1/status/1127586568703754240?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDOTD announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127587969437765632?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFastest Lap announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127600146374635526?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFastest pit stop announcement \\u003Ca href=\\\"https://twitter.com/F1/status/1127682358327402497?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWDC standings after the race \\u003Ca href=\\\"https://twitter.com/F1/status/1127597818590519297?s=20\\\"\\u003Eexample\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWCC standings after the race (similar style to above)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, other OC is always welcome, you may like to consider that you will likely get more visibility in \\u003Ca href=\\\"/r/formula1\\\"\\u003Er/formula1\\u003C/a\\u003E at the moment as it is just a far bigger subreddit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?auto=webp\\u0026s=531b435f194ee4f9748862ea1f91c2b67808c9f7\", \"width\": 1080, \"height\": 916}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d5452d83fbe31e607852fdcf1fde109bd7f3a4cc\", \"width\": 108, \"height\": 91}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=16e1e705a2cac15745660eedc341cd51707cf99c\", \"width\": 216, \"height\": 183}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=aa9d5874c0919292a0aca1ef10c92decc7a31d14\", \"width\": 320, \"height\": 271}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f9c5c8bf7d52b467b305e24ee5efcd517d3c171d\", \"width\": 640, \"height\": 542}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e1b62c400be0002c41001bf986fd3216bdc25147\", \"width\": 960, \"height\": 814}, {\"url\": \"https://external-preview.redd.it/APAa9o7LW6F_f7osBMPf_9Eg4EAT7gQITO28SOw7FeU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=2f1df5035b62f8945614ca65e4c8656ca6760a0a\", \"width\": 1080, \"height\": 916}], \"variants\": {}, \"id\": \"MiHDcikgOe3mM0vjxRgbnrY-GqdMjGqvxB79Gt7ozgk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsfs29\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"elusive_username\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsfs29/formula_15_call_for_volunteers/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsfs29/formula_15_call_for_volunteers/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558697459.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_e9a3z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"More test code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 110, \"hide_score\": false, \"name\": \"t3_bsdcgq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/o1Wz3EYwj9GW7Qr_bmSIsLld3Kz5O6AcX7oCXbFhvEY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558706660.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?auto=webp\\u0026s=c58d56e9df9af072d5a095e6817d45ee9c561df5\", \"width\": 328, \"height\": 258}, \"resolutions\": [{\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0973c520828e38195d066689c8fe9a8d2c35c77f\", \"width\": 108, \"height\": 84}, {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a7f5f8811cd4fd4214888c2037f3f8df8509f8eb\", \"width\": 216, \"height\": 169}, {\"url\": \"https://preview.redd.it/su3ly0osl3031.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=53978780d7a0aebc1491cc0ac3acfb7d5e4b6c71\", \"width\": 320, \"height\": 251}], \"variants\": {}, \"id\": \"TZlQzMgacJjOUSE2BlGji8NTN8-C9hPqq8kMNAqpWso\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsdcgq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kyrieru\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsdcgq/more_test_code/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/su3ly0osl3031.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558677860.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"And example of this\\nhttps://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\", \"author_fullname\": \"t2_e9a3z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Code stuff\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bsd8yc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558705892.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd example of this\\n\\u003Ca href=\\\"https://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\\\"\\u003Ehttps://i.gyazo.com/6dc312258b7623c5c4587dcb7b26f579.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?auto=webp\\u0026s=5b993446d3d76df08f0c0371951333128f74c769\", \"width\": 328, \"height\": 258}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ea056c4c9fee2d83218d84b8aa6ed581e2eabf7c\", \"width\": 108, \"height\": 84}, {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=eecea5ccbbd73effaa403a85d0605bd8746c5752\", \"width\": 216, \"height\": 169}, {\"url\": \"https://external-preview.redd.it/2ec5vzTagIDXp4lDVw6szTgaGFAcUqvnCDfzPFoVcKs.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=28f18ef2ebc9f593b6dff7e583b7ff1d0fdae743\", \"width\": 320, \"height\": 251}], \"variants\": {}, \"id\": \"0xh4SkoN-_7L19axx7iX9dkL1P45YCt3cq7ntix-vAA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsd8yc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kyrieru\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bsd8yc/code_stuff/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bsd8yc/code_stuff/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558677092.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"hula hula\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs5rrg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558661342.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs5rrg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs5rrg/hula_hula/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs5rrg/hula_hula/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558632542.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"my lil pony\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bs5jg4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Snail Mail: NPR Music Tiny Desk Concert\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"NPR Music\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/21ix1OwPoY8/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/nprmusic\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bs5jg4\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/NQre-JqAcR4bl9-yMXUx4RaT5Ub5-xLn2eE0he_B5rI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558660165.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?auto=webp\\u0026s=dd82178336835b0d9ade4b238edb5e9800334ae3\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=89e1bcb2c1784115389b14cc50ee747c908e766c\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=050bb5c4afcac9bd34deca76be313bc6b31e682e\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/xBLJMlK1V0Y_nt-kl6jY6wuegHU-XS_bIb1FCCtLdY4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=44e665a96892d7afd4b824ebf0e674b6b9b81dc3\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"mhwh-bo9dmEuYO_PMyd1-wSh93Ge-4baH0jdQnIlCRU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs5jg4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs5jg4/my_lil_pony/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"http://www.youtube.com/watch?v=21ix1OwPoY8\", \"subreddit_subscribers\": 703, \"created_utc\": 1558631365.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Snail Mail: NPR Music Tiny Desk Concert\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/21ix1OwPoY8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"NPR Music\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/21ix1OwPoY8/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/nprmusic\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project **Chronicles of Osira**! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\n***\\n###Our Purpose \\u0026 Goals:\\n\\nOur vision is to be the most popular multiplayer survival RPG \\u0026 minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\n***\\n###Survival RPG World (Osira):\\n\\nIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\n***\\n###Main Features:\\n\\n######Terrain Regen Mod\\n\\nOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\n\\n######NPC Mod\\n\\nThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\n\\n######Kingdom System\\n\\nThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\n***\\n###Server Status: \\n\\n**Various Positions Open**! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\n***\\n###Social Media: \\n\\n* Twitter: [Twitter](https://twitter.com/OsiraChronicles)\\n* Discord: [Discord](https://discord.gg/rzfNq8p)\\n* SubReddit: Coming Soon\\n* Starter Website: Coming Soon (finishing up development)\\n* Youtube: Coming Soon\\n* Email: chroniclesofosira@gmail.com\", \"author_fullname\": \"t2_3tl8crp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs4e7x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558654467.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch4\\u003EHey everyone, we\\u2019re super excited today to publicly announce the development of our server project \\u003Cstrong\\u003EChronicles of Osira\\u003C/strong\\u003E! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\u003C/h4\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EOur Purpose \\u0026amp; Goals:\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EOur vision is to be the most popular multiplayer survival RPG \\u0026amp; minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003ESurvival RPG World (Osira):\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EMain Features:\\u003C/h3\\u003E\\n\\n\\u003Ch6\\u003ETerrain Regen Mod\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\u003C/p\\u003E\\n\\n\\u003Ch6\\u003ENPC Mod\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\u003C/p\\u003E\\n\\n\\u003Ch6\\u003EKingdom System\\u003C/h6\\u003E\\n\\n\\u003Cp\\u003EThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EServer Status:\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EVarious Positions Open\\u003C/strong\\u003E! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003ESocial Media:\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ETwitter: \\u003Ca href=\\\"https://twitter.com/OsiraChronicles\\\"\\u003ETwitter\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EDiscord: \\u003Ca href=\\\"https://discord.gg/rzfNq8p\\\"\\u003EDiscord\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ESubReddit: Coming Soon\\u003C/li\\u003E\\n\\u003Cli\\u003EStarter Website: Coming Soon (finishing up development)\\u003C/li\\u003E\\n\\u003Cli\\u003EYoutube: Coming Soon\\u003C/li\\u003E\\n\\u003Cli\\u003EEmail: \\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?auto=webp\\u0026s=4175bc2acf207428f5a243476ba4485bd153bda3\", \"width\": 400, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8caf7c066e7a5bab8d9fe3a872adba0b01b74464\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f7a0a268911ad5c4f4709811f2f98acf4cab9411\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=72c8baed8a1f8b67b30b4cf626fa1514a1fb81f4\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"bTS-23LsPy3BUIV0fTZfuz80MZ1bVJqHdkOLkoUzRLY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs4e7x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OsiraDevTeam\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs4e7x/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs4e7x/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558625667.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project \\\\*\\\\*Chronicles of Osira\\\\*\\\\*! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Our Purpose \\u0026 Goals:\\n\\n\\u0026#x200B;\\n\\nOur vision is to be the most popular multiplayer survival RPG \\u0026 minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Survival RPG World (Osira):\\n\\n\\u0026#x200B;\\n\\nIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Main Features:\\n\\n\\u0026#x200B;\\n\\n\\\\######Terrain Regen Mod\\n\\n\\u0026#x200B;\\n\\nOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\n\\n\\u0026#x200B;\\n\\n\\\\######NPC Mod\\n\\n\\u0026#x200B;\\n\\nThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\n\\n\\u0026#x200B;\\n\\n\\\\######Kingdom System\\n\\n\\u0026#x200B;\\n\\nThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\###Server Status:\\n\\n\\u0026#x200B;\\n\\n**Various Positions Open**! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\n\\n\\\\*\\\\*\\\\*\\n\\n# ###Social Media:\\n\\nTwitter: \\\\[Twitter\\\\]([https://twitter.com/OsiraChronicles](https://twitter.com/OsiraChronicles))\\n\\nDiscord: \\\\[Discord\\\\]([https://discord.gg/rzfNq8p](https://discord.gg/rzfNq8p))\\n\\nSubReddit: Coming Soon\\n\\nStarter Website: Coming Soon (finishing up development)\\n\\nYoutube: Coming Soon\\n\\nEmail: [chroniclesofosira@gmail.com](mailto:chroniclesofosira@gmail.com)\", \"author_fullname\": \"t2_3tl8crp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"CoO\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs48eu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558625101.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558653631.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E####Hey everyone, we\\u2019re super excited today to publicly announce the development of our server project **Chronicles of Osira**! Our servers main project is our RPG world, as well as various minigames related to the RPG which will be released after our survival RPG world is released. (Minigames will be announced later on our website). Have questions? Join our Discord, we\\u2019re happy to explain more!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Our Purpose \\u0026amp; Goals:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur vision is to be the most popular multiplayer survival RPG \\u0026amp; minigame server, hosting a variety of diverse and constantly evolving worlds complete with mods and tools that give players the freedom to play how they want. Our aim is to make something truly unique; a new immersive way to play survival in Hytale. As you are probably already expecting, producing such a game with such an outcome is ambitious. That\\u2019s why we are diligently taking our time to plan out the mods and world-building techniques for when the beta becomes available to the players. (the main goal behind world-building is to prevent the ugly chaos that is MC factions worlds).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Survival RPG World (Osira):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our world, Osira, players are situated in a medieval time period of kings, queens, and a vast landscape with lost runes, custom dungeons, and many other improvements to make the world more immersive. There\\u2019s no set storyline with quests for you to follow, you create your own story, your own narrative. The possibilities are endless if you want to just be a farmer who is secretly part of an underground thief society, or if you want to be a hero who goes out in raid parties to conquer dungeons but likes to blacksmith on his downtime the possibilities are endless and it\\u2019s is all up to you. We take a lot of inspiration from many medieval fantasies to create unique creatures and items.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Main Features:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######Terrain Regen Mod\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of the most important and technically advanced features to make this work is our terrain regeneration mod. Essentially the mods job is to occasionally regenerate destroyed blocks (dirt, stone, ores) and destroy randomly placed blocks (think random floating blocks scattered throughout an area) in order to make the world more appealing to the eye. A huge reason why a lot of MC servers completely reset the terrain occasionally or restrict players from mining/placing blocks is that over time everything becomes ugly and dry of resources. We hope to eliminate or at least suppress most of those problems with this method. The terrain regeneration function only happens very gradually after players have left an area for a long period of time, so nothing will change as long as there are people in the area. This ensures that people will move around to acquire resources, there will still be an unlimited number of resources, and random ugly blocks placed in the wild will be taken away (we call it weathering).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######NPC Mod\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe second mod is advanced NPCs. The world players will find themselves in has an NPC kingdom already in the world. The NPC kingdom can brand you as a neutral player, a supporter of the empire, or an enemy. This doesn\\u2019t change much other than how they interact with you, like giving you quests or try to kill you. Players will be able to interact with NPCs the same way as vanilla hytale, with the added feature of being able to turn neutral NPCs into followers. These followers will be loyal to you or your faction and will be able to do jobs such as resource gathering, defense, offense, and much more. World domination, here we come!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######Kingdom System\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last mods and items that make up the kingdom creation system. Now when we say Kingdom, we request that you drop all your prior understanding of MC factions because that\\u2019s not what we want to create. This system will include things like items and blocks specific to team operation/management, document creators (like contracts, faction logs, books, etc), non-invasive/restricting base defense items and blocks, and cool functions to manage NPCs and interact with other kingdoms.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Server Status:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EVarious Positions Open\\u003C/strong\\u003E! We\\u2019re looking for experienced game devs, artistic content creators, builders, and much more. Join the Discord to learn more information about joining the team. Currently, Hytale is not out, and this is an ambitious but doable new idea, so we are currently just planning everything out with the knowledge that we have been given by Hypixel (we do not know exactly how many systems in the game work, therefore, limiting planning on some features). Make sure to stay tuned for more posts about our features when our website gets released\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E###Social Media:\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ETwitter: [Twitter](\\u003Ca href=\\\"https://twitter.com/OsiraChronicles\\\"\\u003Ehttps://twitter.com/OsiraChronicles\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDiscord: [Discord](\\u003Ca href=\\\"https://discord.gg/rzfNq8p\\\"\\u003Ehttps://discord.gg/rzfNq8p\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESubReddit: Coming Soon\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStarter Website: Coming Soon (finishing up development)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYoutube: Coming Soon\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmail: [\\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E](mailto:\\u003Ca href=\\\"mailto:chroniclesofosira@gmail.com\\\"\\u003Echroniclesofosira@gmail.com\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?auto=webp\\u0026s=4175bc2acf207428f5a243476ba4485bd153bda3\", \"width\": 400, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8caf7c066e7a5bab8d9fe3a872adba0b01b74464\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f7a0a268911ad5c4f4709811f2f98acf4cab9411\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/MD7KJZZygitJKjJIWlcX6wMdv6X6VWyDPJkyF6OOdJg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=72c8baed8a1f8b67b30b4cf626fa1514a1fb81f4\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"bTS-23LsPy3BUIV0fTZfuz80MZ1bVJqHdkOLkoUzRLY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs48eu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OsiraDevTeam\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs48eu/coo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs48eu/coo/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558624831.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"my testes\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testual\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs2x6p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558646741.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emy testes\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs2x6p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs2x6p/testual/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs2x6p/testual/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558617941.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Should I upgrade my subwoofer and if so, what subwoofers do you recommend? Also just got a new 77\\\" LG C8 OLED TV (pics.)\\n\\n[Layout \\u0026 Picture Album](https://imgur.com/a/GhlqXQo) \\n\\nI'm doing a complete home theater overhaul. I just upgraded to a LG C8 77\\\" OLED TV. Please excuse the mess - I have lots of boxes from new goodies for this. =D I'm upgrading to a Dolby Atmos 5.1.4 (5.2.4) surround sound system with ceiling mounted speakers. I just picked up a Denon AVR-X4400h. I'm planning on getting 4x [Boston Acoustics SoundWare](https://www.accessories4less.com/make-a-store/item/bossoundwareblka/boston-acoustics-soundware-4.5-speaker-atmos-dts-x-on-wall-speaker-black-each/1.html) ceiling mounted speakers. I still have acoustic room treatment to do and that's part of my whole budget too. I'm also considering upgrading my subwoofer. \\n\\nMy current 5.1 surround sound system (satellites temporarily removed for the TV install) is a [Jamo S 606 HCS 3 system.](https://www.jamo.com/products/s606hcs3) I also have one sealed [Jamo D 6 SUB.](https://www.jamo.com/products/d6sub)\\n\\nWould it be worthwhile to upgrade my subwoofer and get two subs? I notice a lot of bass loudness variability from each seating position due to standing waves in my current apartment and running two subwoofers will help mitigate it. Of course you need two matching subwoofers for this but my jamo is discontinued and can't find any more on eBay. \\n\\nThen my jamo really doesn't hit low enough frequencies these days for new movie content. Online the specs advertise down to 28 hz, but listening to test tones it seems like there is a lot of dropoff starting to occur at 35-40 hz. I'm really desiring a subwoofer that doesn't start to drop off until 20-16 hz. I definitely would like to feel the low bass more and feel infrasonic frequencies (say down to 10hz) in movies. Of course there may be realistic limits in an apartment as that may disrupt others vs say 35hz playback. \\n\\nI'm in an apartment. I generally listen at -10 db to -15 db below reference level and haven't gotten any complaints. The walls seem thick but I definitely don't want to go past reference level currently. I do plan on getting my own home in 5~ years so I do want to save some future capability to comfortably listen at reference level. I'm also really desiring quality bass delivery and not just high SPL.\\n\\n**Usage:** \\n80% Netflix streaming/bd movies/tv shows, 10% music, possibly 10% or more gaming when new consoles come out (I'm mostly a pc gamer). \\n\\n**Room Specs:** \\nSee above diagram. Inner wall dimensions are 18'x14' for the living room, 10.5' x 10.0' for my dining room, and 5.5' x 8.5' for the kitchen area. So total room size is roughly 3,600 ft ^ 3 counting dining area/kitchen. Distance to main listening position is roughly 9' to my ears (8' 6\\\" to tv). \\n\\n**Budget:** \\nI'm pretty flexible as I want the best experience. I don't mind spending a bit for future headroom for when I don't have shared walls, but I don't want to drastically overspend. My hard limit is $2.5k/subwoofer (so $5k for dual subs.) I'm really leaning more towards the $1k sub price point. \\n\\n**Requirements:** \\n \\n* Dual subwoofer setup. \\n* Needs to hit max loudness THX reference SPL level playback at a 9' main listening position for all frequencies above 20hz, allowing for room gain to contribute to it (and ideally down to 16 hz). (So hitting 115dB peaks.) This is for two subwoofers in use. That will be enough future proofing for my situation.\\n* No more than $4k - $5k total for two subs. \\n* Ideally less than $2k ($1k per sub) for the subs if possible. \\n* Very flat frequency response.\\n* A great listening experience. \\n* Accurate and precise bass - not boomy.\\n* I care greatly about quality over raw loudness - as long as it can hit reference levels. \\n* No homebuilt. I don't have the time, skills, room, or equipment to build my own sub. \\n\\n**Bonuses:**\\n\\n* Great infrasonic experience.\\n* Able to be picked up by one person (under 100 lbs.)\\n* Calibration options that my receiver may not be able to support.\\n\\n**Subs I've looked at:** \\nSVS SB-2000 / PB-2000 \\nSVS SB-3000 / PB-3000 \\nSVS SB-4000 / PB-4000 \\nSVS SB16-Ultra / PB16-Ultra \\nHSU VTF-15H MK2 \\n\\n**Things I'm still trying to decide:** \\nSealed vs ported subs. It's really hard for me to decide this. I know SVS's tune frequencies are very low. I like that SVS's response curve seems to be much flatter for their ported subs above the tune frequency and also seems to have more power than the sealed subwoofers. But then below the tune frequency I think I really like the roll-off graph of their sealed subwoofers more when say hitting 10hz, as it appears pretty flat when you account for room gain. Then since I'm running two subwoofers that will add some gain.\\n\\n**Things I've ruled out:** \\nThe SVS SB-1000/PB-1000 - I don't think it will be able to hit reference level movie bass at a 9' listening position. I'm sure it's a great sub but it seems a bit under-powered to what I have according to CEA 2010 test results. \\n\\nI'm leaning towards at least the SB-3000 (or ported version) as it seems to have newer drivers/tech than the SB-2000. It also doesn't seem ungodly heavy unlike the higher end subwoofers. I'm also likewise leaning towards the sealed sub for greater infrasonic extension but that's not firm at all. I'm concerned that the sealed SVS SB-4000 doesn't hit near 115 db in CEA 2010 testing until 40hz, while the ported version gets near there at 20hz. Running with one port open (extended mode) seems to be the best of both worlds - lower sealed like extension and flatter ported like curve. Is that truly the case?\\n\\n**Questions:** \\n \\n* If I get a SVS ported sub and plug up all three ports is it very close to the sealed version? Or is there a huge difference between the dedicated sealed version? \\n* Ported or sealed subwoofer?\\n* If ported, how many ports open?\\n* What is the cheapest subwoofer that meets my SPL requirements and is at least equal to quality as the SVS subs? \\n* Is the DSP calibration tools SVS provides just a marketing gimick? Can my Denon AVR-X4400H EQ the subs just fine? Or is that sort of feature worthwhile? \\n* What crossover should I set with two of these subwoofers? Go past 80hz and into 100-200 hz? \\n* What other subwoofers should I seriously consider?\\n* Should I consider revisiting my towers/surrounds or are they still really good? They sound great to me and I have no complaints, but then I don't know if I'm missing out on improvements here. \\n\\nThanks!\", \"author_fullname\": \"t2_kz0h4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bs053g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558657807.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558626664.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShould I upgrade my subwoofer and if so, what subwoofers do you recommend? Also just got a new 77\\u0026quot; LG C8 OLED TV (pics.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/GhlqXQo\\\"\\u003ELayout \\u0026amp; Picture Album\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m doing a complete home theater overhaul. I just upgraded to a LG C8 77\\u0026quot; OLED TV. Please excuse the mess - I have lots of boxes from new goodies for this. =D I\\u0026#39;m upgrading to a Dolby Atmos 5.1.4 (5.2.4) surround sound system with ceiling mounted speakers. I just picked up a Denon AVR-X4400h. I\\u0026#39;m planning on getting 4x \\u003Ca href=\\\"https://www.accessories4less.com/make-a-store/item/bossoundwareblka/boston-acoustics-soundware-4.5-speaker-atmos-dts-x-on-wall-speaker-black-each/1.html\\\"\\u003EBoston Acoustics SoundWare\\u003C/a\\u003E ceiling mounted speakers. I still have acoustic room treatment to do and that\\u0026#39;s part of my whole budget too. I\\u0026#39;m also considering upgrading my subwoofer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current 5.1 surround sound system (satellites temporarily removed for the TV install) is a \\u003Ca href=\\\"https://www.jamo.com/products/s606hcs3\\\"\\u003EJamo S 606 HCS 3 system.\\u003C/a\\u003E I also have one sealed \\u003Ca href=\\\"https://www.jamo.com/products/d6sub\\\"\\u003EJamo D 6 SUB.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWould it be worthwhile to upgrade my subwoofer and get two subs? I notice a lot of bass loudness variability from each seating position due to standing waves in my current apartment and running two subwoofers will help mitigate it. Of course you need two matching subwoofers for this but my jamo is discontinued and can\\u0026#39;t find any more on eBay. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen my jamo really doesn\\u0026#39;t hit low enough frequencies these days for new movie content. Online the specs advertise down to 28 hz, but listening to test tones it seems like there is a lot of dropoff starting to occur at 35-40 hz. I\\u0026#39;m really desiring a subwoofer that doesn\\u0026#39;t start to drop off until 20-16 hz. I definitely would like to feel the low bass more and feel infrasonic frequencies (say down to 10hz) in movies. Of course there may be realistic limits in an apartment as that may disrupt others vs say 35hz playback. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m in an apartment. I generally listen at -10 db to -15 db below reference level and haven\\u0026#39;t gotten any complaints. The walls seem thick but I definitely don\\u0026#39;t want to go past reference level currently. I do plan on getting my own home in 5~ years so I do want to save some future capability to comfortably listen at reference level. I\\u0026#39;m also really desiring quality bass delivery and not just high SPL.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUsage:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\n80% Netflix streaming/bd movies/tv shows, 10% music, possibly 10% or more gaming when new consoles come out (I\\u0026#39;m mostly a pc gamer). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERoom Specs:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSee above diagram. Inner wall dimensions are 18\\u0026#39;x14\\u0026#39; for the living room, 10.5\\u0026#39; x 10.0\\u0026#39; for my dining room, and 5.5\\u0026#39; x 8.5\\u0026#39; for the kitchen area. So total room size is roughly 3,600 ft ^ 3 counting dining area/kitchen. Distance to main listening position is roughly 9\\u0026#39; to my ears (8\\u0026#39; 6\\u0026quot; to tv). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBudget:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nI\\u0026#39;m pretty flexible as I want the best experience. I don\\u0026#39;t mind spending a bit for future headroom for when I don\\u0026#39;t have shared walls, but I don\\u0026#39;t want to drastically overspend. My hard limit is $2.5k/subwoofer (so $5k for dual subs.) I\\u0026#39;m really leaning more towards the $1k sub price point. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERequirements:\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDual subwoofer setup.\\u003Cbr/\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ENeeds to hit max loudness THX reference SPL level playback at a 9\\u0026#39; main listening position for all frequencies above 20hz, allowing for room gain to contribute to it (and ideally down to 16 hz). (So hitting 115dB peaks.) This is for two subwoofers in use. That will be enough future proofing for my situation.\\u003C/li\\u003E\\n\\u003Cli\\u003ENo more than $4k - $5k total for two subs. \\u003C/li\\u003E\\n\\u003Cli\\u003EIdeally less than $2k ($1k per sub) for the subs if possible. \\u003C/li\\u003E\\n\\u003Cli\\u003EVery flat frequency response.\\u003C/li\\u003E\\n\\u003Cli\\u003EA great listening experience. \\u003C/li\\u003E\\n\\u003Cli\\u003EAccurate and precise bass - not boomy.\\u003C/li\\u003E\\n\\u003Cli\\u003EI care greatly about quality over raw loudness - as long as it can hit reference levels. \\u003C/li\\u003E\\n\\u003Cli\\u003ENo homebuilt. I don\\u0026#39;t have the time, skills, room, or equipment to build my own sub. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBonuses:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EGreat infrasonic experience.\\u003C/li\\u003E\\n\\u003Cli\\u003EAble to be picked up by one person (under 100 lbs.)\\u003C/li\\u003E\\n\\u003Cli\\u003ECalibration options that my receiver may not be able to support.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESubs I\\u0026#39;ve looked at:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSVS SB-2000 / PB-2000\\u003Cbr/\\u003E\\nSVS SB-3000 / PB-3000\\u003Cbr/\\u003E\\nSVS SB-4000 / PB-4000\\u003Cbr/\\u003E\\nSVS SB16-Ultra / PB16-Ultra\\u003Cbr/\\u003E\\nHSU VTF-15H MK2 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThings I\\u0026#39;m still trying to decide:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nSealed vs ported subs. It\\u0026#39;s really hard for me to decide this. I know SVS\\u0026#39;s tune frequencies are very low. I like that SVS\\u0026#39;s response curve seems to be much flatter for their ported subs above the tune frequency and also seems to have more power than the sealed subwoofers. But then below the tune frequency I think I really like the roll-off graph of their sealed subwoofers more when say hitting 10hz, as it appears pretty flat when you account for room gain. Then since I\\u0026#39;m running two subwoofers that will add some gain.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThings I\\u0026#39;ve ruled out:\\u003C/strong\\u003E\\u003Cbr/\\u003E\\nThe SVS SB-1000/PB-1000 - I don\\u0026#39;t think it will be able to hit reference level movie bass at a 9\\u0026#39; listening position. I\\u0026#39;m sure it\\u0026#39;s a great sub but it seems a bit under-powered to what I have according to CEA 2010 test results. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m leaning towards at least the SB-3000 (or ported version) as it seems to have newer drivers/tech than the SB-2000. It also doesn\\u0026#39;t seem ungodly heavy unlike the higher end subwoofers. I\\u0026#39;m also likewise leaning towards the sealed sub for greater infrasonic extension but that\\u0026#39;s not firm at all. I\\u0026#39;m concerned that the sealed SVS SB-4000 doesn\\u0026#39;t hit near 115 db in CEA 2010 testing until 40hz, while the ported version gets near there at 20hz. Running with one port open (extended mode) seems to be the best of both worlds - lower sealed like extension and flatter ported like curve. Is that truly the case?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuestions:\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf I get a SVS ported sub and plug up all three ports is it very close to the sealed version? Or is there a huge difference between the dedicated sealed version? \\u003C/li\\u003E\\n\\u003Cli\\u003EPorted or sealed subwoofer?\\u003C/li\\u003E\\n\\u003Cli\\u003EIf ported, how many ports open?\\u003C/li\\u003E\\n\\u003Cli\\u003EWhat is the cheapest subwoofer that meets my SPL requirements and is at least equal to quality as the SVS subs? \\u003C/li\\u003E\\n\\u003Cli\\u003EIs the DSP calibration tools SVS provides just a marketing gimick? Can my Denon AVR-X4400H EQ the subs just fine? Or is that sort of feature worthwhile? \\u003C/li\\u003E\\n\\u003Cli\\u003EWhat crossover should I set with two of these subwoofers? Go past 80hz and into 100-200 hz? \\u003C/li\\u003E\\n\\u003Cli\\u003EWhat other subwoofers should I seriously consider?\\u003C/li\\u003E\\n\\u003Cli\\u003EShould I consider revisiting my towers/surrounds or are they still really good? They sound great to me and I have no complaints, but then I don\\u0026#39;t know if I\\u0026#39;m missing out on improvements here. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?auto=webp\\u0026s=59339d4b2ebfbe18b61c9a86e365f8321531d124\", \"width\": 657, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c18fe46880e5ca72d70aecab4f79a4f265755b32\", \"width\": 108, \"height\": 197}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=eb476b372546cf2d51c8d9f6f6b3181ea39b4c69\", \"width\": 216, \"height\": 394}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=628e28ecbb59a23550dade2a9b91fed61c296c81\", \"width\": 320, \"height\": 584}, {\"url\": \"https://external-preview.redd.it/qL9Y5WuzE-R9NkUD24pjYGrN_4Lwk4hGbkk3WcsZ2aE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d2a0c12ad208ef2add9bca3b8ec39909bf6404e5\", \"width\": 640, \"height\": 1168}], \"variants\": {}, \"id\": \"g_mPvQ05DaozAfugMZjnsIvHh9OD3XMO1-AgGxxaLwQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs053g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"IncendiaryGames\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bs053g/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558597864.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Ru Paul's Drag Race Episode ???\\n\\n(Queens entering the Werkroom holding hands and laughing together)\\n\\n\\\"Yeah I hate all these bitches and I'm here to win!\\\"\\n\\n\\u003EEditors use a shot of said queen hugging everyone. Everyone gathers around the table\\n\\n\\\"So who you think the challenge is going to be?\\n\\n\\u003ENeedless drama happens. Everyone bickers. \\n\\u003ERu enters\\n\\n\\\"AAHHHHHH!\\\"\\n\\nRu: \\\"Your next challenge is gonna be (insert Ru's favorite activity) which is a tribute of (Whatever Ru is really interested in) All set to (Whatever new track Ru is selling on I-Tunes)\\n\\n\\u003EQueens show polite interest\\n\\nRu:\\\"Tonight's runway is judged by (insert name of celebrity/media person that you kinda like but don't super love)\\n\\nQueens: \\\"AHHHHHH!\\\"\\n\\n\\u003EInterview Segment\\n\\n\\\"OMG I am the biggest fan of (insert name of celebrity/media person that you kinda like but don't super love)! They are my idol! I can't fuck this up.\\n\\n\\u003ERu walks the Werkroom and gives Boomer tier advice like \\\"Be yourself\\\", \\\"Make it funny\\\" and something about your inner sabatoor.\\n\\n\\u003ERehearsal segment that plays similar to everyone. Be mindful of the Queen that looks really bad as they usually will win or do better than the edit makes them appear to be. \\n\\u003EChallenge starts\\n\\n\\u003EQueen says joke that you are unsure if it is good or bad until you see the camera pan, in silence, the sound of a woodblock being struck and another queen going \\\"Say what?!\\\"\\n\\n\\u003ERu walks out wearing one of her five prepackaged looks.\\n\\u003ERunway segment\\n\\u003EUnsure of what the judges think as everyone is making dad jokes \\n\\u003ERu picks the bottom two queens\\n\\nQueen A: \\\"I can't go home now, Queen B is fierce but I have so much to show. I gotta turn it out!\\\"\\n\\nQueen B: I have so much to show, I can't go home now. Queen A is fierce and I gotta turn it out!\\\"\\n\\n\\u003EQuestionable lipsynch that reddit will debate who won endlessly\\n\\u003EWinner is chosen\\n\\u003EOther queen goes home, its sad. They later write a message on the mirror where they pour their heart out only for it to be read once and instantly wiped away.\\n\\nTO TO TO DA MOON!\", \"author_fullname\": \"t2_mic9d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brvh14\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558594377.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERu Paul\\u0026#39;s Drag Race Episode ???\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Queens entering the Werkroom holding hands and laughing together)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;Yeah I hate all these bitches and I\\u0026#39;m here to win!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EEditors use a shot of said queen hugging everyone. Everyone gathers around the table\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;So who you think the challenge is going to be?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENeedless drama happens. Everyone bickers. \\nRu enters\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;AAHHHHHH!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERu: \\u0026quot;Your next challenge is gonna be (insert Ru\\u0026#39;s favorite activity) which is a tribute of (Whatever Ru is really interested in) All set to (Whatever new track Ru is selling on I-Tunes)\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EQueens show polite interest\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ERu:\\u0026quot;Tonight\\u0026#39;s runway is judged by (insert name of celebrity/media person that you kinda like but don\\u0026#39;t super love)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQueens: \\u0026quot;AHHHHHH!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EInterview Segment\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;OMG I am the biggest fan of (insert name of celebrity/media person that you kinda like but don\\u0026#39;t super love)! They are my idol! I can\\u0026#39;t fuck this up.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERu walks the Werkroom and gives Boomer tier advice like \\u0026quot;Be yourself\\u0026quot;, \\u0026quot;Make it funny\\u0026quot; and something about your inner sabatoor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERehearsal segment that plays similar to everyone. Be mindful of the Queen that looks really bad as they usually will win or do better than the edit makes them appear to be. \\nChallenge starts\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQueen says joke that you are unsure if it is good or bad until you see the camera pan, in silence, the sound of a woodblock being struck and another queen going \\u0026quot;Say what?!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERu walks out wearing one of her five prepackaged looks.\\nRunway segment\\nUnsure of what the judges think as everyone is making dad jokes \\nRu picks the bottom two queens\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EQueen A: \\u0026quot;I can\\u0026#39;t go home now, Queen B is fierce but I have so much to show. I gotta turn it out!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQueen B: I have so much to show, I can\\u0026#39;t go home now. Queen A is fierce and I gotta turn it out!\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EQuestionable lipsynch that reddit will debate who won endlessly\\nWinner is chosen\\nOther queen goes home, its sad. They later write a message on the mirror where they pour their heart out only for it to be read once and instantly wiped away.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETO TO TO DA MOON!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brvh14\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bearality\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brvh14/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brvh14/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558565577.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"***War of the Monsters*** *(2028)*\\n\\n*Setting: Various places, 1963*\\n\\nIn our final story, we rejoin **Eve**, **Lester Talbot**, and **Jacob Van Helsing** twenty-five years after we first met them.\\n\\nThe year is 1963. At home, America is still reeling from the horror of **President John F. Kennedy**'s assassination, which has provoked a fresh wave of social unrest as rumors spread of international conspiracies. Abroad, the Cold War with the Soviet Union rages on as American soldiers in South Vietnam brace for a looming skirmish with Communist forces. After more than two decades of adventure, Eve\\u2014who doesn't age\\u2014is still just as youthful as she was in 1938, but Lester and Jacob are both showing their age, and both men are contemplating retirement. As the 20th century rolls forward, monsters are becoming progressively rare, to the point that Eve and Lester wonder if they're the last of a dying breed. And while an aging Jacob still feels an obligation to uphold the legacy of his grandfather **Abraham Van Helsing**, he knows that there is no need for monster hunters in a world without monsters.\\n\\nBut after twenty-five years of searching, the trio *still* haven't been able to find **Dr. Hans Niemann**. And although the years have been hard on Jacob and Lester, they know that they won't be able to rest until they finally bring the sinister ex-Nazi to justice.\\n\\nBut all of that changes when they stumble upon a stolen KGB dossier.\\n\\nWhile trying to bust a voodoo cult in New Orleans, Eve accidentally comes into possession of a dossier that one of their members stole from a KGB spy hiding out in America. The file contains detailed information about the activities of **Directorate M**, a secret KGB task force that was assembled in the 1940s to research and weaponize vampire DNA. As she learns, the leader of the group was determined to track down a certain vampire living in a remote village in Romania, believing that his bloodline held special powers. But when Jacob and Lester read over the dossier with her, they soon learn that the Romanian vampire (a man called \\\"**Vladislav**\\\", or just \\\"**Vlad**\\\") was believed to be the biological son of **Dracula** himself! Not only that, Vladislav has been missing since 1948, when he escaped from Directorate M's headquarters in Moscow and fled Russia. And while the KGB never found him, they believe that he fled across the Atlantic sometime in the 1950s.\\n\\nThe son of Dracula is still alive, and he may be hiding in America! As soon as Jacob realizes this, he knows that he has to find Vlad and kill him, since it's the only way to finish what his grandfather started. Armed with a grainy photo of Vlad contained in the dossier, Jacob begins pressing his contacts in the underworld for information about the fugitive vampire. But unbeknownst to him, he and Vlad have a common enemy: Hans Niemann.\\n\\nFifteen years ago, Niemann murdered Vlad's mother **Marieta** after ordering the Red Army to raze his village tp the ground. On that horrible day, the doctor narrowly slipped through Vlad's fingers when he tried to take his revenge, and defected to the United States shortly thereafter. Ever since, Vlad has been determined to track him down and hold him accountable for his crimes\\u2014but Niemann is still elusive as ever. So for fifteen long years, Vlad has lived underground in America, making odd money as a freelance spy and mercenary as he searches for clues on the Niemann's whereabouts.\\n\\nWhen our story begins, Vlad is living a quiet life in Miami under a long succession of aliases, like \\\"**Victor Whitby**\\\", \\\"**Michael Alucard**\\\", and \\\"**Vladislav Sear\\u0103**\\\". There, as he walks into a seaside bar for a clandestine meeting with the Jamaican-born sailor **Oliver \\\"Twisty\\\" O'Rear**, he finally stumbles upon a clue that might lead him to Niemann. It seems that Twisty is the sole survivor of a submarine voyage to the deep Pacific ocean, where Niemann captained his vessel. While he hasn't seen Niemann since that fateful voyage, he has long suspected that the doctor's mind was affected by an encounter with a **psychic alien being** near the Marianas Trench. Since that day, he has heard rumors that the doctor has gone rogue and fled to the Caribbean, and he believes that he may be planning a new experiment.\\n\\nThough nobody knows *exactly* where Niemann has fled, Twisty tells Vlad that one of his recent voyages in the Caribbean took him near an infamous island known as \\\"**Isla de los Perdidos**\\\", or \\\"**The Isle of the Lost**\\\". While passing by Isla de los Perdidos, the entire crew suffered from a series of strange visions and bizarre nightmares, which left them so shaken that they vowed never to return to the island again. But while the rest of the crew dismissed the experience as merely the result of \\\"bad vibes\\\", Twisty recognized it for what it truly was. He experienced similar nightmares and visions during his ill-fated voyage with the crew of the *Ammonite*, where he and Niemann had their minds psychically invaded by **the Creature**. Further, he remembers that Niemann managed to force his way into the Creature's downed spacecraft\\u2014which was packed with alien embryos. Though it's only a hunch, he believes that Niemann might be hiding on Isla de los Perdidos, and he may have found some way to harness the Creature's psychic abilities.\\n\\nBut as Vlad tries to leave the bar, he's ambushed by a small gang of armed men dressed in civilian clothes, who pull him into an unmarked van and drive him away. Unbeknownst to the armed men, Jacob is watching them from a nearby street corner, with Eve and Lester by his side. Furious at seeing their target captured by someone else, they resolve to track down the van.\\n\\nInside the unmarked van, Vlad learns that his assailants are undercover CIA operatives. It seems that the CIA has *also* learned about the mysterious Directorate M, and they recognize Vlad as a high-priority KGB target who escaped from Moscow Centre fifteen years previously. Suspecting him of being a Soviet agent, they plan to take him back to their nearest base to interrogate him. Vlad futilely protests that it's all a misunderstanding, and the KGB are his enemies\\u2014but the agents refuse to listen.\\n\\nSuddenly, the van is driven off the road as Lester\\u2014assuming his lupine form\\u2014charges the vehicle from the side and manages to flip it over. As Vlad struggles with the agents in the back seat, Eve takes aim with a crossbow and dispatches the agent in the driver's seat, but she loses track of Vlad as he leaps from the van and runs into the distance. But as Vlad attempts to flee the scene, he runs right into Jacob.\\n\\nA tense standoff ensues as Vlad and Jacob\\u2014the son of Dracula and the grandson of Abraham Van Helsing\\u2014stare each other down, and Jacob draws his gun. Despite Jacob's advancing age, Vlad recognizes him as a professional monster hunter, and he knows that he's been trained to kill vampires. \\n\\n\\\"*Shoot me if you can, old man,\\\"* Vlad snarls. *\\\"But I promise you, I've only got a quarrel with one mortal man:* ***Hans Niemann****.\\\"*\\n\\nAs \\n______________\\n\\n***The Case:*** In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\\"The Gemini Killer\\\" to justice. In a twist, it's revealed that Hank's full name is \\\"Henry Jekyll\\\", and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium's secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\n\\n***The Creature:*** Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they're aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they're slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures' drowned spaceship to kill the monster, and manages to steal one of the monster's embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\\n\\n***War of the Monsters:*** In 1963, Vlad's search for ex-Nazi scientist Dr. Hans Niemann leads him to cross paths with Eve, who is still traveling the world with an aging Jacob Van Helsing and Lester Talbot. As Vlad, Eve, Jacob and Lester unite to finally bring Niemann to justice, they discover Niemann's plot to use a psychic alien's brain to unleash nuclear armageddon with the help of an army of vampires, werewolves and ichthyoids. As they journey to the Caribbean for a final showdown with Niemann on his island base, Jacob and Lester ultimately sacrifice their lives to stop the doctor's plot, but Eve and Vlad defeat him together. In the end, Eve and Vlad become lovers, and they settle down together in a remote Caribbean island to enjoy a peaceful retirement.\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brusoo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558590802.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EWar of the Monsters\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003E(2028)\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESetting: Various places, 1963\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our final story, we rejoin \\u003Cstrong\\u003EEve\\u003C/strong\\u003E, \\u003Cstrong\\u003ELester Talbot\\u003C/strong\\u003E, and \\u003Cstrong\\u003EJacob Van Helsing\\u003C/strong\\u003E twenty-five years after we first met them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe year is 1963. At home, America is still reeling from the horror of \\u003Cstrong\\u003EPresident John F. Kennedy\\u003C/strong\\u003E\\u0026#39;s assassination, which has provoked a fresh wave of social unrest as rumors spread of international conspiracies. Abroad, the Cold War with the Soviet Union rages on as American soldiers in South Vietnam brace for a looming skirmish with Communist forces. After more than two decades of adventure, Eve\\u2014who doesn\\u0026#39;t age\\u2014is still just as youthful as she was in 1938, but Lester and Jacob are both showing their age, and both men are contemplating retirement. As the 20th century rolls forward, monsters are becoming progressively rare, to the point that Eve and Lester wonder if they\\u0026#39;re the last of a dying breed. And while an aging Jacob still feels an obligation to uphold the legacy of his grandfather \\u003Cstrong\\u003EAbraham Van Helsing\\u003C/strong\\u003E, he knows that there is no need for monster hunters in a world without monsters.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut after twenty-five years of searching, the trio \\u003Cem\\u003Estill\\u003C/em\\u003E haven\\u0026#39;t been able to find \\u003Cstrong\\u003EDr. Hans Niemann\\u003C/strong\\u003E. And although the years have been hard on Jacob and Lester, they know that they won\\u0026#39;t be able to rest until they finally bring the sinister ex-Nazi to justice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut all of that changes when they stumble upon a stolen KGB dossier.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile trying to bust a voodoo cult in New Orleans, Eve accidentally comes into possession of a dossier that one of their members stole from a KGB spy hiding out in America. The file contains detailed information about the activities of \\u003Cstrong\\u003EDirectorate M\\u003C/strong\\u003E, a secret KGB task force that was assembled in the 1940s to research and weaponize vampire DNA. As she learns, the leader of the group was determined to track down a certain vampire living in a remote village in Romania, believing that his bloodline held special powers. But when Jacob and Lester read over the dossier with her, they soon learn that the Romanian vampire (a man called \\u0026quot;\\u003Cstrong\\u003EVladislav\\u003C/strong\\u003E\\u0026quot;, or just \\u0026quot;\\u003Cstrong\\u003EVlad\\u003C/strong\\u003E\\u0026quot;) was believed to be the biological son of \\u003Cstrong\\u003EDracula\\u003C/strong\\u003E himself! Not only that, Vladislav has been missing since 1948, when he escaped from Directorate M\\u0026#39;s headquarters in Moscow and fled Russia. And while the KGB never found him, they believe that he fled across the Atlantic sometime in the 1950s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe son of Dracula is still alive, and he may be hiding in America! As soon as Jacob realizes this, he knows that he has to find Vlad and kill him, since it\\u0026#39;s the only way to finish what his grandfather started. Armed with a grainy photo of Vlad contained in the dossier, Jacob begins pressing his contacts in the underworld for information about the fugitive vampire. But unbeknownst to him, he and Vlad have a common enemy: Hans Niemann.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFifteen years ago, Niemann murdered Vlad\\u0026#39;s mother \\u003Cstrong\\u003EMarieta\\u003C/strong\\u003E after ordering the Red Army to raze his village tp the ground. On that horrible day, the doctor narrowly slipped through Vlad\\u0026#39;s fingers when he tried to take his revenge, and defected to the United States shortly thereafter. Ever since, Vlad has been determined to track him down and hold him accountable for his crimes\\u2014but Niemann is still elusive as ever. So for fifteen long years, Vlad has lived underground in America, making odd money as a freelance spy and mercenary as he searches for clues on the Niemann\\u0026#39;s whereabouts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen our story begins, Vlad is living a quiet life in Miami under a long succession of aliases, like \\u0026quot;\\u003Cstrong\\u003EVictor Whitby\\u003C/strong\\u003E\\u0026quot;, \\u0026quot;\\u003Cstrong\\u003EMichael Alucard\\u003C/strong\\u003E\\u0026quot;, and \\u0026quot;\\u003Cstrong\\u003EVladislav Sear\\u0103\\u003C/strong\\u003E\\u0026quot;. There, as he walks into a seaside bar for a clandestine meeting with the Jamaican-born sailor \\u003Cstrong\\u003EOliver \\u0026quot;Twisty\\u0026quot; O\\u0026#39;Rear\\u003C/strong\\u003E, he finally stumbles upon a clue that might lead him to Niemann. It seems that Twisty is the sole survivor of a submarine voyage to the deep Pacific ocean, where Niemann captained his vessel. While he hasn\\u0026#39;t seen Niemann since that fateful voyage, he has long suspected that the doctor\\u0026#39;s mind was affected by an encounter with a \\u003Cstrong\\u003Epsychic alien being\\u003C/strong\\u003E near the Marianas Trench. Since that day, he has heard rumors that the doctor has gone rogue and fled to the Caribbean, and he believes that he may be planning a new experiment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThough nobody knows \\u003Cem\\u003Eexactly\\u003C/em\\u003E where Niemann has fled, Twisty tells Vlad that one of his recent voyages in the Caribbean took him near an infamous island known as \\u0026quot;\\u003Cstrong\\u003EIsla de los Perdidos\\u003C/strong\\u003E\\u0026quot;, or \\u0026quot;\\u003Cstrong\\u003EThe Isle of the Lost\\u003C/strong\\u003E\\u0026quot;. While passing by Isla de los Perdidos, the entire crew suffered from a series of strange visions and bizarre nightmares, which left them so shaken that they vowed never to return to the island again. But while the rest of the crew dismissed the experience as merely the result of \\u0026quot;bad vibes\\u0026quot;, Twisty recognized it for what it truly was. He experienced similar nightmares and visions during his ill-fated voyage with the crew of the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E, where he and Niemann had their minds psychically invaded by \\u003Cstrong\\u003Ethe Creature\\u003C/strong\\u003E. Further, he remembers that Niemann managed to force his way into the Creature\\u0026#39;s downed spacecraft\\u2014which was packed with alien embryos. Though it\\u0026#39;s only a hunch, he believes that Niemann might be hiding on Isla de los Perdidos, and he may have found some way to harness the Creature\\u0026#39;s psychic abilities.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut as Vlad tries to leave the bar, he\\u0026#39;s ambushed by a small gang of armed men dressed in civilian clothes, who pull him into an unmarked van and drive him away. Unbeknownst to the armed men, Jacob is watching them from a nearby street corner, with Eve and Lester by his side. Furious at seeing their target captured by someone else, they resolve to track down the van.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInside the unmarked van, Vlad learns that his assailants are undercover CIA operatives. It seems that the CIA has \\u003Cem\\u003Ealso\\u003C/em\\u003E learned about the mysterious Directorate M, and they recognize Vlad as a high-priority KGB target who escaped from Moscow Centre fifteen years previously. Suspecting him of being a Soviet agent, they plan to take him back to their nearest base to interrogate him. Vlad futilely protests that it\\u0026#39;s all a misunderstanding, and the KGB are his enemies\\u2014but the agents refuse to listen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESuddenly, the van is driven off the road as Lester\\u2014assuming his lupine form\\u2014charges the vehicle from the side and manages to flip it over. As Vlad struggles with the agents in the back seat, Eve takes aim with a crossbow and dispatches the agent in the driver\\u0026#39;s seat, but she loses track of Vlad as he leaps from the van and runs into the distance. But as Vlad attempts to flee the scene, he runs right into Jacob.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA tense standoff ensues as Vlad and Jacob\\u2014the son of Dracula and the grandson of Abraham Van Helsing\\u2014stare each other down, and Jacob draws his gun. Despite Jacob\\u0026#39;s advancing age, Vlad recognizes him as a professional monster hunter, and he knows that he\\u0026#39;s been trained to kill vampires. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Cem\\u003EShoot me if you can, old man,\\u0026quot;\\u003C/em\\u003E Vlad snarls. \\u003Cem\\u003E\\u0026quot;But I promise you, I\\u0026#39;ve only got a quarrel with one mortal man:\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EHans Niemann\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs \\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Case:\\u003C/em\\u003E\\u003C/strong\\u003E In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\u0026quot;The Gemini Killer\\u0026quot; to justice. In a twist, it\\u0026#39;s revealed that Hank\\u0026#39;s full name is \\u0026quot;Henry Jekyll\\u0026quot;, and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium\\u0026#39;s secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Creature:\\u003C/em\\u003E\\u003C/strong\\u003E Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they\\u0026#39;re aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they\\u0026#39;re slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures\\u0026#39; drowned spaceship to kill the monster, and manages to steal one of the monster\\u0026#39;s embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EWar of the Monsters:\\u003C/em\\u003E\\u003C/strong\\u003E In 1963, Vlad\\u0026#39;s search for ex-Nazi scientist Dr. Hans Niemann leads him to cross paths with Eve, who is still traveling the world with an aging Jacob Van Helsing and Lester Talbot. As Vlad, Eve, Jacob and Lester unite to finally bring Niemann to justice, they discover Niemann\\u0026#39;s plot to use a psychic alien\\u0026#39;s brain to unleash nuclear armageddon with the help of an army of vampires, werewolves and ichthyoids. As they journey to the Caribbean for a final showdown with Niemann on his island base, Jacob and Lester ultimately sacrifice their lives to stop the doctor\\u0026#39;s plot, but Eve and Vlad defeat him together. In the end, Eve and Vlad become lovers, and they settle down together in a remote Caribbean island to enjoy a peaceful retirement.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brusoo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brusoo/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brusoo/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558562002.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Re: test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brqdyy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558568873.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brqdyy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brqdyy/re_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brqdyy/re_test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558540073.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1fshia0q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HGCE Freedom Gundam Album\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_brgcyy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/vW0UdiH9e624y4qys50Me5h6qGoo_e8CES7MGnJZPxo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558503867.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?auto=webp\\u0026s=b28b0884c28818078b55da9d1ef4ba90c026b0a7\", \"width\": 4608, \"height\": 3456}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3ee43ed883b609843a35a6ce3b8fa00b9a232224\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4be0a0f262272a1c71cfcc67a81e124447a0be1e\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=dfcf219052c23b175b96366209cd00bbfb5111a4\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=66a6cc36d3f09d8915d6217e11670e6a6c4e4399\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2c618a1384bb98f133c9da345381c1d60d4b924c\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/owc00kMsoxyf05i-0vQN63Z_YmXEn7NDRATlBIBfmmI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8e6a4ecccf64e0032d26ca44cba778d7d2e8c5e5\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"l8RMDATpIekeXve7O9NIY9G1sZuopNbytbJIHSfuRYs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brgcyy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NeonRunner\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/EKjeyR4\", \"subreddit_subscribers\": 703, \"created_utc\": 1558475067.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\n\\nNEW EPSIODE IS LIVE!\\nEP#: Title\\n\\nOur weekly show w/ United analysis\\n\\n:dart:#USOC2019 v @PhxRisingFC Recap\\n:mount_fuji: #KoTM v @SwitchbacksFC Recap\\n:microphone: Post-Match with Coach Lesesne\\n:ox: Match Preview v Austin Bold FC\\n\\nWe Are Seek \\u0026 Strike Podcast Subscription Links\\n\\n[Spotify](https://open.spotify.com/show/6XkXWcO6bz5apNm3ZinE8C?si=tq3LBfKMQgKsn7GI5evPIA)\\n\\n[Apple Podcasts](https://itunes.apple.com/us/podcast/we-are-seek-strike-podcast/id1463144252?mt=2)\\n\\nSubscribe and review on iTunes and Spotify!\", \"author_fullname\": \"t2_th7e2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brel0b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558495011.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENEW EPSIODE IS LIVE!\\nEP#: Title\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur weekly show w/ United analysis\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:dart:#USOC2019 v @PhxRisingFC Recap\\n:mount_fuji: #KoTM v @SwitchbacksFC Recap\\n:microphone: Post-Match with Coach Lesesne\\n:ox: Match Preview v Austin Bold FC\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe Are Seek \\u0026amp; Strike Podcast Subscription Links\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://open.spotify.com/show/6XkXWcO6bz5apNm3ZinE8C?si=tq3LBfKMQgKsn7GI5evPIA\\\"\\u003ESpotify\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://itunes.apple.com/us/podcast/we-are-seek-strike-podcast/id1463144252?mt=2\\\"\\u003EApple Podcasts\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESubscribe and review on iTunes and Spotify!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?auto=webp\\u0026s=7b498390c4a1298299ac305cfdb0b3e1f3abca3e\", \"width\": 640, \"height\": 640}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a44d019cf4521ff2a71dc87c059f38f3033f64d9\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b8bdfaa18569ff71e3a6d659e58d7180229d8250\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=725225366c28b39c204a9296a01ca811b507e941\", \"width\": 320, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/9QCmUXslq5OF25ChmpmVMuPq05Z5Pu1zka6wOCu9hfY.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=339d0a115de48e0238ab3052a0a24855bc6b9527\", \"width\": 640, \"height\": 640}], \"variants\": {}, \"id\": \"H9VuA66GqaorRc34m5mtaix9iln8b_QAJWcmu-qc748\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brel0b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"IlatzimepAho\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brel0b/test_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brel0b/test_post/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558466211.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Item #: SCP-4935**\\n\\n**Object Class: Euclid**\\n\\n**Author: djKaktus**\\n\\nHello SCPDeclassified, Brewsterion here. Today, I wanted to declassify SCP-4935, by djKaktus, or that guy that wrote a novel for an 001. This one's a longer one, so let's get into it.\\n\\nRight off the bat, we notice a link to the End Of Death canon hub. This is a canon where an Omega-K End Of Death Scenario occurred, forcing immortality upon all life. A such, there's likely going to be a lot of talk about souls and death. Let's see the containment procedures.\\n\\n**Special Containment Procedures**\\n\\n\\u003EThe access point to SCP-4935 is to be sealed and guarded when not in use. Access to SCP-4935 is forbidden unless authorized. Authorization is to be given only by the Site-77 Director of Containment, and only for the purposes of continued research into the nature of SCP-4935.\\n\\nIt's some sort of location, that much is clear. They don't want people walking in and out of it freely, so it's likely dangerous in some way. But they don't fully get it for some reason, otherwise they wouldn't care for research. But next to the procedures there's an image of a single tree in a desert and a...giant, black, inverted pyramid hovering above it.\\n\\nYou know what, let's just see the description.\\n\\n**Description**\\n\\n\\u003ESCP-4935 is the group designation for two phenomena. The first, identified as SCP-4935-\\u03b1, is a temporal anomaly existing within the Sankuru Nature Preserve in the Democratic Republic of the Congo. The anomaly can be identified visually, as light further away from the anomaly appears to red-shift as the observer draws closer to it. Inversely, the anomaly and the area directly around it appear blue-shifted to outside observers, who will see anything approaching the anomaly appear to blue-shift towards an indeterminate point in the center of the anomaly and disappear. The same is true in reverse for anything exiting the anomaly, as returning subjects will appear red-shifted until they match pace with the standard flow of spacetime.\\n\\nIt's a temporal anomaly, situated in the middle of the Congo in Africa. There's a visible effect as people get closer to it, meaning they can tell when something's going in or out. It's not some secret doorway, it's big and obvious.\\n\\n\\u003ESCP-4935-\\u03b1-PRIME (hereafter identified simply as SCP-4935) is the point in time beyond the SCP-4935-\\u03b1 anomaly. Analysis of the stars visible in the sky within SCP-4935 has determined that SCP-4935 is the planet Earth, roughly 130,000 years in the future from the present day. Due to changes in the planet\\u2019s atmospheric composition, the air within SCP-4935 contains significantly more oxygen than present day, leading to an abundance of megaflora. The area directly around SCP-4935-\\u03b1 within SCP-4935 is a grove of trees, many of which are in excess of 200m in height.\\n\\nThat's a loooong way from now.\\n\\n\\u003ESCP-4935 is seemingly devoid of intelligent life, with two significant exceptions. The first is a race of secretive and highly advanced pseudo-humanoid entities who self identify, phonetically, as the Akot. These entities inhabit the dark, canopied forests of the planet in small numbers, often in underground vaults or other similarly protected structures. They appear generally similar to modern humans, with elongated skulls, larger, deep set eyes, reduced mouths and noses, less robust chests and abdomens and longer, leaner arms and legs.\\n\\nThey're basically just humans if you messed with their settings a bit. There's a footnote that says their name actually means gravedigger in their tongue, which will make sense very shortly.\\n\\n\\u003EThe Akot describe themselves as protectors and guardians of a massive, levitating black cube situated above a similarly massive machine complex near the center of the African continent. This cube, composed primarily of silica and carbon with trace organic compounds throughout, is called the \\u201cHereafter\\u201d, and is a site of significant religious importance to the Akot.\\n\\nNow we know what the cube from the image is, it's this 20-kilometer by 20-kilometer thing called the Hereafter. There's also a footnote that says since the Akot aren't technically anomalous, they don't get a designation and are just referred to as the Akot.\\n\\n\\u003EAccording to the Akot, the Hereafter was constructed as resting place for the some ninety-three billion persons who lived on the Earth at the time of its construction, all of whom had lost the biological ability to die. As time passed and the age of these peoples grew unceasingly long, several major wars broke out and the species, as a whole, descended into madness. The Hereafter was designed as a way for the peoples of the Earth to enter a suspended state, until such time that the ability to die could be restored to the species. The Akot were those entrusted to maintain the Hereafter and continue researching the nature of the biological alteration the planet had experienced. This event was likely a hypothesized \\u03a9K-Class (\\\"End-of-Death\\\") Scenario, though the biological triggers for such an event are still unknown.\\n\\nThis is where the End Of Death connection comes in. It's the future of humanity, once the Omega-K kicks in. They give up, so they create the Akot to figure out how to die and then go chill in the Hereafter until they're successful. It also explains the Akot's name: their entire purpose in life is to dig a grave for humanity, one that they'll jump into willingly. Additionally, this paragraph establishes that the present world hasn't undergone the Omega-K, as it's still \\\"hypothesized.\\\"\\n\\n\\u003EThe Akot universally suffer from a debilitating genetic disorder that causes their bodies to deteriorate over time. To offset this, these entities often augment their bodies with technology designed to enhance their reduced functions. However, the most significant consequence of the genetic disorder is that the Akot have a tenuous connection to three-dimensional space. \\n\\u003E \\n\\u003EDue to an event sometime in their past, the Akot exist within two spatial dimensions simultaneously. Through the use of highly advanced technology they have been able to \\u201canchor\\u201d themselves in the baseline dimension, though the condition still puts a considerable strain on their bodies and they are still subject to violent and painful dimensional shifts if the anchors fail. The Akot call this alternate dimension the \\u201cHigh Horror\\u201d, and discussion of the dimension is strictly taboo.\\n\\nThe Akot suffer from a wasting disease that also causes them to slowly fall into another spacial dimension, the High Horror.\\n\\n\\u003EThe second exception is a massive, scorpioid entity (SCP-4935-\\u03b2) that is currently intertwined with and attempting to pierce the exterior of the Hereafter. SCP-4935-\\u03b2, which is biological in nature, is called the \\u201cCorpse-Father\\u201d by the Akot, and has been on the planet for roughly six-hundred years. The origin of this entity is unknown. This entity is capable of spawning larval incarnations of itself through its chitinous flesh in large swarms. These larval entities are aggressive and dangerous in large numbers, but have short life-spans.\\n\\n\\u0026#x200B;\\n\\nIt is organic and biological, but the things it spawns do indeed have the ability to die, unlike the humans in the Hereafter and the Akot. It also seems to be significant to the Akot, since they've named it.\\n\\n\\u003EThe Akot have claimed that SCP-4935-\\u03b1 exists due to a series of experiments testing machines designed to collapse the linear flow of time in a controlled area, as they as a species no longer have the physical capability or technological advantage needed to combat the SCP-4935-\\u03b2 entity.\\n\\nThey made the temporal anomaly after trying to kill the Beta entity and having an experiment backfire.\\n\\n\\u003ETo date, it is believed that these experiments have been ~~unsuccessful~~ \\\\[NOTE: SEE ADDENDUM 4935.6 FOR MORE INFORMATION\\\\]\\n\\nOr not. We should hurry down there.\\n\\n**Addendum 4935-1**\\n\\nThis addendum is a memo on 4935 written by the first doctor to contact the Akot. It describes what the Akot say happened before humans got dumped into the Hereafter: very close to modern day, the Omega-K kicked in, people got happy and made big tech, some even going into space-but they don't know what happened to them-until they ran out of stuff to build rockets from. Resources dried up, and people started fighting. But after these wars end is where we get new information. The cube isn't from Earth, it's extraterrestrial, and the Foundation moved all the humans into it. The cube would keep them in stasis until they could die again, but the Akot couldn't enter due to having biology very different from humans. The issue was, the Akot were slowly petering out due to slow reproductiona nd the tech anchoring them to this dimension failing. They were stuck in this slowly failing state, until the Beta entity showed up. Let's check out the next part of the article, an exploration log.\\n\\n\\u0026#x200B;\\n\\n**Addendum 4931-2**\\n\\nMTF Epsilon-45, Base Jumpers, is sent in on an exploration job. Guess Zeta-9 was too busy being killed off. They enter the anomaly and start heading for the Hereafter. They don't find anything until they encounter an Akot half-stuck in the wall.\\n\\n\\u003E**Unknown Akot:** They will act in desperation now. I know it. I have dreamed of it, for so many years. A day when they would expend their last efforts and we might be saved, in one way or another. (*Pauses*) I want to die. I want to die. Why can't I die? Why has this simple mercy eluded us? \\n\\u003E \\n\\u003E**E-45 Murphy:** This machine - does it have a control area? How is it operated? \\n\\u003E \\n\\u003E**Unknown Akot:** The center - Gerryon's Ark. It is there. But - the Ark cannot be tasked any longer. It has expended itself. There is no more use for it. There is no salvation here.\\n\\nThe Akot have another plan, one that will end up causing them to die. And this machine, Gerryon's Ark, is probably what caused the temporal anomaly. The team continues to the big machine in the center, finding the bottom corner of the cube, and a hologram appears in front of them.\\n\\n\\u003E**Projection:** Greetings, travelers. My name is Gerryon, engineer of the forsaken peoples of this world. You have arrived at our final resting place - we were cursed by an uncaring creator with a tormented existence that would not end, but by the grace of this machine we were delivered unto restful death. Tread lightly on these hallowed grounds. \\n\\u003E \\n\\u003E**E-45 Santos:** Think it can hear us? \\n\\u003E \\n\\u003E**Projection:** (*To E-45 Santos*) Of course. This database was created to answer and respond to the inquiries of all those who may come across our burial place.\\n\\nExcellent, a big database that answers questions. Time to get some answers.\\n\\n\\u003E**E-45 Murphy:** What was this machine designed to do? \\n\\u003E \\n\\u003E**Projection:** Long before I was born, my species collectively decided that we would prefer death over the continued torment of an existence without end. We tried - and failed - to reach that end, by any means. This machine is the culmination of our efforts; a device that, when activated, will rend our souls from our bodies and sever the threads that can be said to be keeping us alive.\\n\\nThe Ark was made to rip souls from bodies, and effectively kill all humans. But then why are the Akot still here?\\n\\n\\u003E**E-45 Murphy:** When was this device activated? \\n\\u003E \\n\\u003E**Projection:** The device has not been activated. \\n\\u003E \\n\\u003E**E-45 Ailes:** What? \\n\\u003E \\n\\u003E**E-45 Murphy:** How does this device determine if it was activated? \\n\\u003E \\n\\u003E**Projection:** There are still living human beings on this planet. Due to this, it is impossible that the device has been activated.\\n\\nThe Ark hasn't been activated yet, is the answer.\\n\\n\\u003E**E-45 Murphy:** (*Pauses*) How did Gerryon know how to create this machine? \\n\\u003E \\n\\u003E**Projection:** Gerryon was the product of the greatest minds of several generations. His birth was conceived by the most advanced sciences of the day, and the stimulation of his mind followed. When he awoke into being he was given access to the greatest compendium of knowledge this world had to offer. \\n\\u003E \\n\\u003E**E-45 Murphy:** Where did he get that knowledge? \\n\\u003E \\n\\u003E**Projection:** The SCP Foundation had collected a massive archive of- (*pauses*) I'm sorry, it appears any additional information has been expunged.\\n\\nMild surprise. Gerryon was born in a lab and raised for the exact purpose of building the Ark and killing off humanity, his knowledge enhanced by the Foundation's information. We don't know what information, though, but it was probably relating to death.\\n\\n\\u003E**E-45 Murphy:** Now **that's** something. (*Pauses*) One more thing. Can this machine be activated? \\n\\u003E \\n\\u003E**Projection:** The Ark is no longer functional to its intended purpose in its current state. It has been modified by a third-party to perform a different task. \\n\\u003E \\n\\u003E**E-45 Murphy:** What task is that? \\n\\u003E \\n\\u003E**Projection:** I'm sorry, that information is not available.\\n\\nThe Ark's been tweaked by somebody to fulfill a different purpose, likely the Akot. We don't know what it was tweaked for, though. The database can't tell.\\n\\nThe team leaves, and they find out there's a slight time dilation present where time passes slower inside the anomaly than outside it. Odd, but not too worrying.\\n\\n\\u0026#x200B;\\n\\n**Addendum 4935-3**\\n\\nAnother doctor wrote a report on the Akot, and it tells us what we mostly knew, pretty much. The Akot were part of a experiment to try and die by rending the soul from the body, but it backfired and began sending them into the High Horror instead. Jump cut to now, their tech's slowly breaking, they're not reproducing enough, and the Beta entity is making things worse. So, to fulfill their self-acknowledged purpose as gravediggers for humanity, they made the temporal anomaly to try and get Foundation help.\\n\\nAt least, that's what they've said so far.\\n\\n**Addendum 4935-4**\\n\\nA third doctor wrote a report on the Beta entity, immediately comparing the scorpioid nature to SCP-4812-K, with the implication it's that entity in the future. They say it crawled out of the sea 600 years ago, which contradicts what the Akot from the exploration said, but they were surprised because apparently everything in the oceans died a long time ago. They also say that when the Beta entity eats something, it adds it's face and by extension it's consciousness to it's own.This discovery split the Akot into two groups, one that was terrified of it, and another group, the Corpse-Children, thought that being eaten would obliterate their soul. So, they chucked themselves at it.\\n\\nThen their heads came out and started screaming to be saved.\\n\\nNeedless to say, it didn't end well. The remaining Akot dumped every single weapon they had onto the Beta entity, from nukes to plasma rods, but it just didn't die. It got to the Hereafter, and began chewing and clawing it's way into it, with the Akot helpless to watch as they failed their one true duty.So, basically, the Akot are screwed. But they still don't know why they made the temporal anomaly. First they said it was them trying to get help from the Foundation, then they said it was an experiment gone wrong, but they don't know why they lied in the first place.\\n\\n\\u003EWe\\u2019ve found out why. Dr. Regal, I believe, has that in her report.\\n\\nSomething big must have happened in Addendum 6. Let's hurry up.\\n\\nIn our way is a small addendum about how the time dilation is rapidly picking up in effect, going from 7 minutes off to 215 minutes off in two weeks. If it wasn't clear something's happening on the other side, it is now.\\n\\n**Addendum 6**\\n\\nThis is Dr. Regal's report, the thing that holds most of the answers from earlier in the article. Let's check it out.\\n\\n\\u003EA few days ago, one of our engineering teams produced some troubling findings. Exploratory teams on the far side of SCP-4935-\\u03b1 were no longer experiencing the 1-to-1 forward progression through time they had previously. The most recent team reported spending the allotted 180 minutes on the other side of SCP-4935-\\u03b1, whereas our teams on our side reported they were gone for 277 minutes. In other words, the forward progression on the far side of the anomaly appears to be slowing considerably relative to our own. \\n\\u003E \\n\\u003EAfter putting together our findings, we approached the Akot about it. They were surprisingly frank about it - SCP-4935-\\u03b1 wasn\\u2019t the result of them trying to reach us for help, or some sort of weapons test. It was an open valve.\\n\\nThey were intentionally messing with time, to mess up time. But why?\\n\\n\\u003E**Archivist:** Death is a long lost dream. For the gravediggers, and for those Sleepers in the graves, all that can be accomplished is an end of suffering. Time expounds our agony. It was decided, a short time ago, that there is no end to the sorrow of the Corpse-Father that does not also follow the end of time.\\n\\nThey've given up on trying to die. They can't end all of it without ending time itself.\\n\\n\\u003E**Ti-8:** Is this why we\\u2019ve seen alterations in our relative experience of the forward progression of linear time? \\n\\u003E \\n\\u003E**Archivist:** It is Gerryon\\u2019s last gift. We cannot escape agony. We cannot escape torment. We cannot escape the Corpse-Father, and we cannot abandon the Sleepers. Time brings us closer to the moment of our final defeat, and stopping that progression is our last chance. Gerryon\\u2019s Ark will interrupt the flow of time, and with it will pause our suffering forever.\\n\\nThat's their endgame. They're going to break the flow of time so that they can all stop existing.\\n\\n\\u003E**Ti-8:** To be clear, this is the same machine that caused your people to become disconnected from three-dimensional space, correct? \\n\\u003E \\n\\u003E**Archivist:** It is. We do not fault Gerryon, no more than we would fault the sun rising or the wind blowing. Gerryon was nature, a mind conceived by the blessings of the Earth. Those who first laid hands on his Ark and could not conceive his vision turned the machine against us. It has been many long millenia since then, and we have grown and learned. We have peered into the heart of Gerryon\\u2019s design and seen its majesty.\\n\\nThe Ark's first activation cause the Akot to suffer from their wasting disease and disconnect from reality. This was the activation that opened the portal in the first place.\\n\\n\\u003E**Archivist:** We feared that we would have to turn Gerryon's Ark upon ourselves, and I will admit that this frightened us more than nearly anything. But Gerryon blessed us with a reprieve. The Ark is not for us, forefather. The Ark is for you. You have not yet been touched by the long dread finger of a life everlasting. We will collapse your timeline, and you will not have to suffer. We will not be born into suffering.\\n\\nThey're going to collapse the timeline so humanity ends before the Omega-K hits and the Akot are created. The gravediggers are trying to bury their ancestors so they don't have to dig at all.\\n\\n\\u003E**Ti-8:** This would mean our destruction, you understand that? \\n\\u003E \\n\\u003E**Archivist:** No. Not destruction. Can't you see? Salvation. Salvation for us both.\\n\\nIt is, in a sense, truly their salvation. Death is their rapture.\\n\\n**Addendum 4395-8 and 4395-9**\\n\\nBoth of these are pretty short, so I'll lump them together. The Ethics Committee gets together in Addendum 8 and decides that while violence is not the Foundation's preferred option, in the case of 4395, the Akot are threatening all of humanity, and they find it \\\" ethically allowable to take actions that may result in the collapse of the primary SCP-4935 anomaly, as well as any damaging effects this may have on the inhabitants of the anomaly.\\\" They vote 7-2, in favor of taking this thing out.\\n\\nOn January 31, 2019, they forced the temporal anomaly shut, and blew up the Ark as well. They don't want this thing open in any way now that they know how dangerous it is.\\n\\nThe Akot tried to claw their way out of the anomaly, make it back into our world so that they could at least try to end us and fix it without the Ark. They couldn't make it out of 4935 before it collapsed, though The time dilation was set back to zero, and the anomaly itself is gone. It's still listed as Euclid though, since the Foundation knows the Akot could try again with their tech.\\n\\nAlright, so, there were a lot of double-bluffs and lies in that article, so let's have a TL;DR Version: Omega-K occurs, and humanity prospers at first but then everything falls apart into a big war. This war ends, and the Akot are created for unknown reasons. The Foundation contributes information to a project to create Gerryon, a lab-made genius, who then builds his Ark in an attempt to split souls from bodies and try to die. It doesn't work and actually ends up causing the Akot to be disconnected from this dimension,, and the humans go into sleep in the Hereafter until the Akot can try to figure out a way to die. They can't, though, and the unkillable Corpse-Father shows up and begins trying to break in to the Hereafter. The Akot, out of weapons and options, modify the Ark to go back in time and collapse the timeline before the Omega-K occurs, therefore never existing in the first place. The Foundation doesn't like this, and decides to destroy the Ark and shut down the temporal anomaly to survive.\\n\\nAnd so, after that, thus ends the story of SCP-4935 for now, a tale of gravediggers and salvation in death. I hope this helped you understand this SCP better. Thank you all for reading, and leave the corpses be.\", \"author_fullname\": \"t2_118qqr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SCP-4935, \\\"Hereafter\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bref1f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558494182.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EItem #: SCP-4935\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class: Euclid\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor: djKaktus\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello SCPDeclassified, Brewsterion here. Today, I wanted to declassify SCP-4935, by djKaktus, or that guy that wrote a novel for an 001. This one\\u0026#39;s a longer one, so let\\u0026#39;s get into it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight off the bat, we notice a link to the End Of Death canon hub. This is a canon where an Omega-K End Of Death Scenario occurred, forcing immortality upon all life. A such, there\\u0026#39;s likely going to be a lot of talk about souls and death. Let\\u0026#39;s see the containment procedures.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe access point to SCP-4935 is to be sealed and guarded when not in use. Access to SCP-4935 is forbidden unless authorized. Authorization is to be given only by the Site-77 Director of Containment, and only for the purposes of continued research into the nature of SCP-4935.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s some sort of location, that much is clear. They don\\u0026#39;t want people walking in and out of it freely, so it\\u0026#39;s likely dangerous in some way. But they don\\u0026#39;t fully get it for some reason, otherwise they wouldn\\u0026#39;t care for research. But next to the procedures there\\u0026#39;s an image of a single tree in a desert and a...giant, black, inverted pyramid hovering above it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou know what, let\\u0026#39;s just see the description.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4935 is the group designation for two phenomena. The first, identified as SCP-4935-\\u03b1, is a temporal anomaly existing within the Sankuru Nature Preserve in the Democratic Republic of the Congo. The anomaly can be identified visually, as light further away from the anomaly appears to red-shift as the observer draws closer to it. Inversely, the anomaly and the area directly around it appear blue-shifted to outside observers, who will see anything approaching the anomaly appear to blue-shift towards an indeterminate point in the center of the anomaly and disappear. The same is true in reverse for anything exiting the anomaly, as returning subjects will appear red-shifted until they match pace with the standard flow of spacetime.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a temporal anomaly, situated in the middle of the Congo in Africa. There\\u0026#39;s a visible effect as people get closer to it, meaning they can tell when something\\u0026#39;s going in or out. It\\u0026#39;s not some secret doorway, it\\u0026#39;s big and obvious.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4935-\\u03b1-PRIME (hereafter identified simply as SCP-4935) is the point in time beyond the SCP-4935-\\u03b1 anomaly. Analysis of the stars visible in the sky within SCP-4935 has determined that SCP-4935 is the planet Earth, roughly 130,000 years in the future from the present day. Due to changes in the planet\\u2019s atmospheric composition, the air within SCP-4935 contains significantly more oxygen than present day, leading to an abundance of megaflora. The area directly around SCP-4935-\\u03b1 within SCP-4935 is a grove of trees, many of which are in excess of 200m in height.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s a loooong way from now.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4935 is seemingly devoid of intelligent life, with two significant exceptions. The first is a race of secretive and highly advanced pseudo-humanoid entities who self identify, phonetically, as the Akot. These entities inhabit the dark, canopied forests of the planet in small numbers, often in underground vaults or other similarly protected structures. They appear generally similar to modern humans, with elongated skulls, larger, deep set eyes, reduced mouths and noses, less robust chests and abdomens and longer, leaner arms and legs.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey\\u0026#39;re basically just humans if you messed with their settings a bit. There\\u0026#39;s a footnote that says their name actually means gravedigger in their tongue, which will make sense very shortly.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Akot describe themselves as protectors and guardians of a massive, levitating black cube situated above a similarly massive machine complex near the center of the African continent. This cube, composed primarily of silica and carbon with trace organic compounds throughout, is called the \\u201cHereafter\\u201d, and is a site of significant religious importance to the Akot.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ENow we know what the cube from the image is, it\\u0026#39;s this 20-kilometer by 20-kilometer thing called the Hereafter. There\\u0026#39;s also a footnote that says since the Akot aren\\u0026#39;t technically anomalous, they don\\u0026#39;t get a designation and are just referred to as the Akot.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAccording to the Akot, the Hereafter was constructed as resting place for the some ninety-three billion persons who lived on the Earth at the time of its construction, all of whom had lost the biological ability to die. As time passed and the age of these peoples grew unceasingly long, several major wars broke out and the species, as a whole, descended into madness. The Hereafter was designed as a way for the peoples of the Earth to enter a suspended state, until such time that the ability to die could be restored to the species. The Akot were those entrusted to maintain the Hereafter and continue researching the nature of the biological alteration the planet had experienced. This event was likely a hypothesized \\u03a9K-Class (\\u0026quot;End-of-Death\\u0026quot;) Scenario, though the biological triggers for such an event are still unknown.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is where the End Of Death connection comes in. It\\u0026#39;s the future of humanity, once the Omega-K kicks in. They give up, so they create the Akot to figure out how to die and then go chill in the Hereafter until they\\u0026#39;re successful. It also explains the Akot\\u0026#39;s name: their entire purpose in life is to dig a grave for humanity, one that they\\u0026#39;ll jump into willingly. Additionally, this paragraph establishes that the present world hasn\\u0026#39;t undergone the Omega-K, as it\\u0026#39;s still \\u0026quot;hypothesized.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Akot universally suffer from a debilitating genetic disorder that causes their bodies to deteriorate over time. To offset this, these entities often augment their bodies with technology designed to enhance their reduced functions. However, the most significant consequence of the genetic disorder is that the Akot have a tenuous connection to three-dimensional space. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDue to an event sometime in their past, the Akot exist within two spatial dimensions simultaneously. Through the use of highly advanced technology they have been able to \\u201canchor\\u201d themselves in the baseline dimension, though the condition still puts a considerable strain on their bodies and they are still subject to violent and painful dimensional shifts if the anchors fail. The Akot call this alternate dimension the \\u201cHigh Horror\\u201d, and discussion of the dimension is strictly taboo.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Akot suffer from a wasting disease that also causes them to slowly fall into another spacial dimension, the High Horror.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe second exception is a massive, scorpioid entity (SCP-4935-\\u03b2) that is currently intertwined with and attempting to pierce the exterior of the Hereafter. SCP-4935-\\u03b2, which is biological in nature, is called the \\u201cCorpse-Father\\u201d by the Akot, and has been on the planet for roughly six-hundred years. The origin of this entity is unknown. This entity is capable of spawning larval incarnations of itself through its chitinous flesh in large swarms. These larval entities are aggressive and dangerous in large numbers, but have short life-spans.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is organic and biological, but the things it spawns do indeed have the ability to die, unlike the humans in the Hereafter and the Akot. It also seems to be significant to the Akot, since they\\u0026#39;ve named it.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Akot have claimed that SCP-4935-\\u03b1 exists due to a series of experiments testing machines designed to collapse the linear flow of time in a controlled area, as they as a species no longer have the physical capability or technological advantage needed to combat the SCP-4935-\\u03b2 entity.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey made the temporal anomaly after trying to kill the Beta entity and having an experiment backfire.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ETo date, it is believed that these experiments have been \\u003Cdel\\u003Eunsuccessful\\u003C/del\\u003E [NOTE: SEE ADDENDUM 4935.6 FOR MORE INFORMATION]\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOr not. We should hurry down there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4935-1\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis addendum is a memo on 4935 written by the first doctor to contact the Akot. It describes what the Akot say happened before humans got dumped into the Hereafter: very close to modern day, the Omega-K kicked in, people got happy and made big tech, some even going into space-but they don\\u0026#39;t know what happened to them-until they ran out of stuff to build rockets from. Resources dried up, and people started fighting. But after these wars end is where we get new information. The cube isn\\u0026#39;t from Earth, it\\u0026#39;s extraterrestrial, and the Foundation moved all the humans into it. The cube would keep them in stasis until they could die again, but the Akot couldn\\u0026#39;t enter due to having biology very different from humans. The issue was, the Akot were slowly petering out due to slow reproductiona nd the tech anchoring them to this dimension failing. They were stuck in this slowly failing state, until the Beta entity showed up. Let\\u0026#39;s check out the next part of the article, an exploration log.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4931-2\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMTF Epsilon-45, Base Jumpers, is sent in on an exploration job. Guess Zeta-9 was too busy being killed off. They enter the anomaly and start heading for the Hereafter. They don\\u0026#39;t find anything until they encounter an Akot half-stuck in the wall.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUnknown Akot:\\u003C/strong\\u003E They will act in desperation now. I know it. I have dreamed of it, for so many years. A day when they would expend their last efforts and we might be saved, in one way or another. (\\u003Cem\\u003EPauses\\u003C/em\\u003E) I want to die. I want to die. Why can\\u0026#39;t I die? Why has this simple mercy eluded us? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E This machine - does it have a control area? How is it operated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUnknown Akot:\\u003C/strong\\u003E The center - Gerryon\\u0026#39;s Ark. It is there. But - the Ark cannot be tasked any longer. It has expended itself. There is no more use for it. There is no salvation here.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Akot have another plan, one that will end up causing them to die. And this machine, Gerryon\\u0026#39;s Ark, is probably what caused the temporal anomaly. The team continues to the big machine in the center, finding the bottom corner of the cube, and a hologram appears in front of them.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E Greetings, travelers. My name is Gerryon, engineer of the forsaken peoples of this world. You have arrived at our final resting place - we were cursed by an uncaring creator with a tormented existence that would not end, but by the grace of this machine we were delivered unto restful death. Tread lightly on these hallowed grounds. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Santos:\\u003C/strong\\u003E Think it can hear us? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E (\\u003Cem\\u003ETo E-45 Santos\\u003C/em\\u003E) Of course. This database was created to answer and respond to the inquiries of all those who may come across our burial place.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EExcellent, a big database that answers questions. Time to get some answers.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E What was this machine designed to do? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E Long before I was born, my species collectively decided that we would prefer death over the continued torment of an existence without end. We tried - and failed - to reach that end, by any means. This machine is the culmination of our efforts; a device that, when activated, will rend our souls from our bodies and sever the threads that can be said to be keeping us alive.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark was made to rip souls from bodies, and effectively kill all humans. But then why are the Akot still here?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E When was this device activated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E The device has not been activated. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Ailes:\\u003C/strong\\u003E What? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E How does this device determine if it was activated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E There are still living human beings on this planet. Due to this, it is impossible that the device has been activated.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark hasn\\u0026#39;t been activated yet, is the answer.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E (\\u003Cem\\u003EPauses\\u003C/em\\u003E) How did Gerryon know how to create this machine? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E Gerryon was the product of the greatest minds of several generations. His birth was conceived by the most advanced sciences of the day, and the stimulation of his mind followed. When he awoke into being he was given access to the greatest compendium of knowledge this world had to offer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E Where did he get that knowledge? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E The SCP Foundation had collected a massive archive of- (\\u003Cem\\u003Epauses\\u003C/em\\u003E) I\\u0026#39;m sorry, it appears any additional information has been expunged.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMild surprise. Gerryon was born in a lab and raised for the exact purpose of building the Ark and killing off humanity, his knowledge enhanced by the Foundation\\u0026#39;s information. We don\\u0026#39;t know what information, though, but it was probably relating to death.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E Now \\u003Cstrong\\u003Ethat\\u0026#39;s\\u003C/strong\\u003E something. (\\u003Cem\\u003EPauses\\u003C/em\\u003E) One more thing. Can this machine be activated? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E The Ark is no longer functional to its intended purpose in its current state. It has been modified by a third-party to perform a different task. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EE-45 Murphy:\\u003C/strong\\u003E What task is that? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EProjection:\\u003C/strong\\u003E I\\u0026#39;m sorry, that information is not available.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark\\u0026#39;s been tweaked by somebody to fulfill a different purpose, likely the Akot. We don\\u0026#39;t know what it was tweaked for, though. The database can\\u0026#39;t tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe team leaves, and they find out there\\u0026#39;s a slight time dilation present where time passes slower inside the anomaly than outside it. Odd, but not too worrying.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4935-3\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother doctor wrote a report on the Akot, and it tells us what we mostly knew, pretty much. The Akot were part of a experiment to try and die by rending the soul from the body, but it backfired and began sending them into the High Horror instead. Jump cut to now, their tech\\u0026#39;s slowly breaking, they\\u0026#39;re not reproducing enough, and the Beta entity is making things worse. So, to fulfill their self-acknowledged purpose as gravediggers for humanity, they made the temporal anomaly to try and get Foundation help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt least, that\\u0026#39;s what they\\u0026#39;ve said so far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4935-4\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA third doctor wrote a report on the Beta entity, immediately comparing the scorpioid nature to SCP-4812-K, with the implication it\\u0026#39;s that entity in the future. They say it crawled out of the sea 600 years ago, which contradicts what the Akot from the exploration said, but they were surprised because apparently everything in the oceans died a long time ago. They also say that when the Beta entity eats something, it adds it\\u0026#39;s face and by extension it\\u0026#39;s consciousness to it\\u0026#39;s own.This discovery split the Akot into two groups, one that was terrified of it, and another group, the Corpse-Children, thought that being eaten would obliterate their soul. So, they chucked themselves at it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen their heads came out and started screaming to be saved.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENeedless to say, it didn\\u0026#39;t end well. The remaining Akot dumped every single weapon they had onto the Beta entity, from nukes to plasma rods, but it just didn\\u0026#39;t die. It got to the Hereafter, and began chewing and clawing it\\u0026#39;s way into it, with the Akot helpless to watch as they failed their one true duty.So, basically, the Akot are screwed. But they still don\\u0026#39;t know why they made the temporal anomaly. First they said it was them trying to get help from the Foundation, then they said it was an experiment gone wrong, but they don\\u0026#39;t know why they lied in the first place.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWe\\u2019ve found out why. Dr. Regal, I believe, has that in her report.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESomething big must have happened in Addendum 6. Let\\u0026#39;s hurry up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn our way is a small addendum about how the time dilation is rapidly picking up in effect, going from 7 minutes off to 215 minutes off in two weeks. If it wasn\\u0026#39;t clear something\\u0026#39;s happening on the other side, it is now.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 6\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is Dr. Regal\\u0026#39;s report, the thing that holds most of the answers from earlier in the article. Let\\u0026#39;s check it out.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA few days ago, one of our engineering teams produced some troubling findings. Exploratory teams on the far side of SCP-4935-\\u03b1 were no longer experiencing the 1-to-1 forward progression through time they had previously. The most recent team reported spending the allotted 180 minutes on the other side of SCP-4935-\\u03b1, whereas our teams on our side reported they were gone for 277 minutes. In other words, the forward progression on the far side of the anomaly appears to be slowing considerably relative to our own. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter putting together our findings, we approached the Akot about it. They were surprisingly frank about it - SCP-4935-\\u03b1 wasn\\u2019t the result of them trying to reach us for help, or some sort of weapons test. It was an open valve.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey were intentionally messing with time, to mess up time. But why?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E Death is a long lost dream. For the gravediggers, and for those Sleepers in the graves, all that can be accomplished is an end of suffering. Time expounds our agony. It was decided, a short time ago, that there is no end to the sorrow of the Corpse-Father that does not also follow the end of time.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey\\u0026#39;ve given up on trying to die. They can\\u0026#39;t end all of it without ending time itself.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETi-8:\\u003C/strong\\u003E Is this why we\\u2019ve seen alterations in our relative experience of the forward progression of linear time? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E It is Gerryon\\u2019s last gift. We cannot escape agony. We cannot escape torment. We cannot escape the Corpse-Father, and we cannot abandon the Sleepers. Time brings us closer to the moment of our final defeat, and stopping that progression is our last chance. Gerryon\\u2019s Ark will interrupt the flow of time, and with it will pause our suffering forever.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s their endgame. They\\u0026#39;re going to break the flow of time so that they can all stop existing.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETi-8:\\u003C/strong\\u003E To be clear, this is the same machine that caused your people to become disconnected from three-dimensional space, correct? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E It is. We do not fault Gerryon, no more than we would fault the sun rising or the wind blowing. Gerryon was nature, a mind conceived by the blessings of the Earth. Those who first laid hands on his Ark and could not conceive his vision turned the machine against us. It has been many long millenia since then, and we have grown and learned. We have peered into the heart of Gerryon\\u2019s design and seen its majesty.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe Ark\\u0026#39;s first activation cause the Akot to suffer from their wasting disease and disconnect from reality. This was the activation that opened the portal in the first place.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E We feared that we would have to turn Gerryon\\u0026#39;s Ark upon ourselves, and I will admit that this frightened us more than nearly anything. But Gerryon blessed us with a reprieve. The Ark is not for us, forefather. The Ark is for you. You have not yet been touched by the long dread finger of a life everlasting. We will collapse your timeline, and you will not have to suffer. We will not be born into suffering.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey\\u0026#39;re going to collapse the timeline so humanity ends before the Omega-K hits and the Akot are created. The gravediggers are trying to bury their ancestors so they don\\u0026#39;t have to dig at all.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETi-8:\\u003C/strong\\u003E This would mean our destruction, you understand that? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArchivist:\\u003C/strong\\u003E No. Not destruction. Can\\u0026#39;t you see? Salvation. Salvation for us both.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt is, in a sense, truly their salvation. Death is their rapture.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4395-8 and 4395-9\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth of these are pretty short, so I\\u0026#39;ll lump them together. The Ethics Committee gets together in Addendum 8 and decides that while violence is not the Foundation\\u0026#39;s preferred option, in the case of 4395, the Akot are threatening all of humanity, and they find it \\u0026quot; ethically allowable to take actions that may result in the collapse of the primary SCP-4935 anomaly, as well as any damaging effects this may have on the inhabitants of the anomaly.\\u0026quot; They vote 7-2, in favor of taking this thing out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn January 31, 2019, they forced the temporal anomaly shut, and blew up the Ark as well. They don\\u0026#39;t want this thing open in any way now that they know how dangerous it is.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Akot tried to claw their way out of the anomaly, make it back into our world so that they could at least try to end us and fix it without the Ark. They couldn\\u0026#39;t make it out of 4935 before it collapsed, though The time dilation was set back to zero, and the anomaly itself is gone. It\\u0026#39;s still listed as Euclid though, since the Foundation knows the Akot could try again with their tech.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlright, so, there were a lot of double-bluffs and lies in that article, so let\\u0026#39;s have a TL;DR Version: Omega-K occurs, and humanity prospers at first but then everything falls apart into a big war. This war ends, and the Akot are created for unknown reasons. The Foundation contributes information to a project to create Gerryon, a lab-made genius, who then builds his Ark in an attempt to split souls from bodies and try to die. It doesn\\u0026#39;t work and actually ends up causing the Akot to be disconnected from this dimension,, and the humans go into sleep in the Hereafter until the Akot can try to figure out a way to die. They can\\u0026#39;t, though, and the unkillable Corpse-Father shows up and begins trying to break in to the Hereafter. The Akot, out of weapons and options, modify the Ark to go back in time and collapse the timeline before the Omega-K occurs, therefore never existing in the first place. The Foundation doesn\\u0026#39;t like this, and decides to destroy the Ark and shut down the temporal anomaly to survive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd so, after that, thus ends the story of SCP-4935 for now, a tale of gravediggers and salvation in death. I hope this helped you understand this SCP better. Thank you all for reading, and leave the corpses be.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bref1f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Brewsterion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bref1f/scp4935_hereafter/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bref1f/scp4935_hereafter/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558465382.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_c07be\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Our very own Corgi\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bre064\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 840}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views. Katsu's First Day\", \"title\": \"Katsu's First Day\", \"url\": \"https://imgur.com/a/5cyGTUa\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 840, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bre064\", \"height\": 840}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/hr15FLCYpTX2Hdi4-D8pN3xuaS1BKV7LPeUwNa-0-L4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558492189.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?auto=webp\\u0026s=e6f394089edaed813a20b2ae9be80355a675683e\", \"width\": 3024, \"height\": 4032}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4bc71fbc22a8432bde208e9819500caa06db35a1\", \"width\": 108, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=03926630d81a5f2fbc46f44c708bdb32ab7e88d9\", \"width\": 216, \"height\": 288}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f48497dd96015f9566dc130b3e1751d073899910\", \"width\": 320, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=7759525928d560f0a8aacdc90d485b446254f8cc\", \"width\": 640, \"height\": 853}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f80fe2af55a75b053a0265b2431b1aed4f3b258d\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://external-preview.redd.it/70G8sn5bt_IUYY8cqt1OgQR7pFKHZxRGekR5Jzch2pk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8733d7299d16dd7616aac8eb7c2ac447d52cf5c4\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"HwI1x-pgTiu90wXPmNvBjY8Bkyx0pec088I80HtvAjQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bre064\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MisterOinky\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bre064/our_very_own_corgi/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/5cyGTUa#jKzFTOe\", \"subreddit_subscribers\": 703, \"created_utc\": 1558463389.0, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views. Katsu's First Day\", \"title\": \"Katsu's First Day\", \"url\": \"https://imgur.com/a/5cyGTUa\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 840, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F5cyGTUa\\u0026image=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"840\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2FjKzFTOe.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_35aabssu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Supreme Commander: Forged Alliance Let's Play #1 - LOUD Project Mod\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bray7j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Supreme Commander: Forged Alliance Let's Play #1 - LOUD Project Mod\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VgRH8yaTrqo/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bray7j\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/HXJCjqB_CJRS5YgZ8wZJZ-_SCvrAgIAGuYLWnKvT96Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558477033.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?auto=webp\\u0026s=25269a95e8684f288ca8ae522c1b5c32ba168c2d\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=deabb18f7148a5ab4428400866150e03cbb42eff\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1134ea9c6ea0b98aa411c769d29f440530e99e56\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/NMbLKIPTuQWJ55cVCdEnKw1kzYCcijpf3kNDDEjgw0E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a027329c4dca2e554026595a710fb986ff0b6e4a\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"rbuCAFhCCm7VEnvfC5M52nsZjhIsSKarkhjDgzW_PlE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bray7j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Goldymires\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bray7j/supreme_commander_forged_alliance_lets_play_1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=VgRH8yaTrqo\", \"subreddit_subscribers\": 703, \"created_utc\": 1558448233.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Supreme Commander: Forged Alliance Let's Play #1 - LOUD Project Mod\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VgRH8yaTrqo?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Goldymires\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VgRH8yaTrqo/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UChzXpCdw80NMi2Q-dQaS3lw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Testing\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_brafrm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558474186.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETesting\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brafrm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/brafrm/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/brafrm/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558445386.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1fshia0q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HGCE Freedom Gundam\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_br1w5r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/PEW4xg4iL6liP5ICAzjaLSS2OJvua4tErk1XnW7A22Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558417917.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"1drv.ms\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?auto=webp\\u0026s=fa17f0c4923b59e84d3ea0b8a17b02985711ba0d\", \"width\": 1600, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=645d3c23f10d589991e05c595e6c1dbe242708f2\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e759becc18d475d837daebb261e20113df3c3db1\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=23e34cb0917a07cf068c8965a4f677962c01f7c5\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1e584518f947ef50b73a3e3b21ca9228adec1db4\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f6631b04e07f0a54b36c11f0799b2a3005c9fbaa\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/emIaZUy7hRpWWZmiRFCqBkQK2BbjWCtPZ69Gr7unemQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=593b6d7db7fd1e3277e864df7056eee5c6787bbb\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"O2ToZVz84eHwlQwXHWwsacHs3Ogulvoo-0Swmp6_wd4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br1w5r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NeonRunner\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/br1w5r/hgce_freedom_gundam/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://1drv.ms/f/s!Ak86GWNk26yEgSsd2-gvcl-B53yF\", \"subreddit_subscribers\": 703, \"created_utc\": 1558389117.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_hl2m5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Eyes Wide Open - The Disheartened Song (Official Lyric Video)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bqz81d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Eyes Wide Open - The Disheartened Song (Official Lyric Video)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"EyesWideOpenOfficial\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/jegzxxv6T-I/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/EyesWideOpenOfficial\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bqz81d\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/nQ91ba0Ip2KUxaaBlMGoOlB8ijhVnAGscQf0jkN0HOU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558405282.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?auto=webp\\u0026s=c0fdb565fe87811d2731f3f929a9075d0b63423f\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=89134035e8dd80a06ebd481d63e30e1db6711a3d\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=755cd4f0857ce89207d07f6b6535d1fcbbf12846\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/cVOuKDLGIykLXZSHrya6kBfJ3IxMkQX3ClNK91TwZHA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d8dd2d537f88cd623d15f66828c9c25a3c6c291a\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"sqLuOqp9DV-i9vOHLKbhyIp7LgH5b6M7Oc6TMh34K-8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqz81d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sunfire230\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqz81d/eyes_wide_open_the_disheartened_song_official/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=jegzxxv6T-I\", \"subreddit_subscribers\": 703, \"created_utc\": 1558376482.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Eyes Wide Open - The Disheartened Song (Official Lyric Video)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jegzxxv6T-I?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"EyesWideOpenOfficial\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/jegzxxv6T-I/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/EyesWideOpenOfficial\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"As the title says: I've been lurking here to learn how avoid any foibles of writing female characters from my male perspective. You have all been an amazing help, so thanks for that! I figured it's only right that I show my work on the female protagonist from my novel, so that you can see what I've learned, and just in case I've still missed something.\\n\\nSetting: Charlie (male protag) is a lonely UPS man who gets pulled into a mystery after he delivers a package which turns out to be something very many people want very badly. This is the scene of that delivery, which introduces our female protag, Anabelle Must. To wit: \\n\\nShe looked like sex, sauntering towards him on legs long enough hang power lines and a body as slick as European butter. Her nipples rose and fell with each step, offering a howdy-there-soldier-salute each time they bounced up to meet his eyes. They were staring at him. Staring into his very soul... \\n\\n\\u201cHi,\\u201d she said, in a voice which sounded like sex, her pink tongue tying an invisible cherry stem around the single syllable.\\n\\nCharlie did not answer. He could not breathe. He could not think. His pupils were fixed upon her second pair of eyes, those erect, desperate nipples which still bounced though she stood still. \\n\\n\\u201cIs that for me?\\u201d she wondered, reaching for the package with five fingers which were shaped like sex \\u2013 lithe little submarines which might soon dive into the skin of his oceanic bum. Down. Down. Down. \\n\\n\\u201cYe\\u2014Yeah\\u2026\\u201d sputtered Charlie, hoisting his package into the air. \\u201cJust go-gonna need a signature, mam\\u2026\\u201d\\n\\nShe reached into her pocket, though she was entirely naked, and produced a pen which looked like sex, its pleading tip dripping a moist, musty ink onto the floor.\\n\\n\\u201cSure,\\u201d she smiled, spilling that blue sex-juice onto his rattling clipboard. \\u201cAnything else?\\u201d\\n\\nCharlie retreated onto the porch, thinking that the mere aura of the woman might soon stop his heart. \\u201cN\\u2014No, mam,\\u201d he whispered, grabbing urgently at the front of his pants, fearful that they might soon launch a rocket. \\n\\nThe door fell shut against his face. He fell to his knees, feeling a sudden pain in his chest. His heart had given out. The mere sight of her had killed him. *Cardiac arrest* they called it. It felt like sex\\u2026\", \"author_fullname\": \"t2_n0kou\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"po\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqtosh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558376118.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs the title says: I\\u0026#39;ve been lurking here to learn how avoid any foibles of writing female characters from my male perspective. You have all been an amazing help, so thanks for that! I figured it\\u0026#39;s only right that I show my work on the female protagonist from my novel, so that you can see what I\\u0026#39;ve learned, and just in case I\\u0026#39;ve still missed something.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESetting: Charlie (male protag) is a lonely UPS man who gets pulled into a mystery after he delivers a package which turns out to be something very many people want very badly. This is the scene of that delivery, which introduces our female protag, Anabelle Must. To wit: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe looked like sex, sauntering towards him on legs long enough hang power lines and a body as slick as European butter. Her nipples rose and fell with each step, offering a howdy-there-soldier-salute each time they bounced up to meet his eyes. They were staring at him. Staring into his very soul... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cHi,\\u201d she said, in a voice which sounded like sex, her pink tongue tying an invisible cherry stem around the single syllable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECharlie did not answer. He could not breathe. He could not think. His pupils were fixed upon her second pair of eyes, those erect, desperate nipples which still bounced though she stood still. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cIs that for me?\\u201d she wondered, reaching for the package with five fingers which were shaped like sex \\u2013 lithe little submarines which might soon dive into the skin of his oceanic bum. Down. Down. Down. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cYe\\u2014Yeah\\u2026\\u201d sputtered Charlie, hoisting his package into the air. \\u201cJust go-gonna need a signature, mam\\u2026\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe reached into her pocket, though she was entirely naked, and produced a pen which looked like sex, its pleading tip dripping a moist, musty ink onto the floor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cSure,\\u201d she smiled, spilling that blue sex-juice onto his rattling clipboard. \\u201cAnything else?\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECharlie retreated onto the porch, thinking that the mere aura of the woman might soon stop his heart. \\u201cN\\u2014No, mam,\\u201d he whispered, grabbing urgently at the front of his pants, fearful that they might soon launch a rocket. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe door fell shut against his face. He fell to his knees, feeling a sudden pain in his chest. His heart had given out. The mere sight of her had killed him. \\u003Cem\\u003ECardiac arrest\\u003C/em\\u003E they called it. It felt like sex\\u2026\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqtosh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BaronVonButternickle\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqtosh/po/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqtosh/po/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558347318.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_cp3cb3l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bqs0lm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"WoW Fishing: Stormsong Valley (Ambience/ASMR)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Sweetbun\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VmalKIuFimk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCrRoBf9CFTXErdj-Z1W-LaA\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bqs0lm\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Ai1RT718z01rsfPlWCCGgZEIIg8JoQowRbOaIZq5oiA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558363115.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?auto=webp\\u0026s=2c73ce6751ae262f5ac06b60c4b214664596662c\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d72d4d25cf69aa2946fa665f119b3c3a20ac800f\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6a124dc14e04c3a16da0302ebba5414a82c235b0\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/8D4nZcQL899EiCsAw-neDVX0C9SDTkwk5Tj-bUjX9aQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3ecc5919b56a452b9f8f01472555a2a15af60127\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"4uEgYAelHlW11bf8oWKYoOFFJb_IvtDGBFSpL_owSYI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqs0lm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NamiPickles\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://youtu.be/VmalKIuFimk\", \"subreddit_subscribers\": 703, \"created_utc\": 1558334315.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"WoW Fishing: Stormsong Valley (Ambience/ASMR)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/VmalKIuFimk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Sweetbun\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VmalKIuFimk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCrRoBf9CFTXErdj-Z1W-LaA\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Text\", \"author_fullname\": \"t2_cp3cb3l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqrx73\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558362459.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EText\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqrx73\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"NamiPickles\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqrx73/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqrx73/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558333659.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hi folks,\\n\\n First of all, thanks for all the quality posts here, i created an account just for this community !\\n\\n I'm a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\n\\n D1 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5)\\n D2 : Squat (5*5)- OHP (3*5) \\n D3 : Rest\\n D4 : Squat (5*5)- OHP (3*5)\\n D5 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5)\\n D6 : Squat (5*5)- OHP (3*5) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\n D7 : Rest\\n\\n I think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP\\n\\n For these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7\\n\\nMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\n\\nThanks for all you're doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\", \"author_fullname\": \"t2_3s7t8gxj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"sdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqofzt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558341883.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\n D2 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) \\n D3 : Rest\\n D4 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\n D5 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\n D6 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\n D7 : Rest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?auto=webp\\u0026s=b59cadc793d0be52f56b3fe70bd7bd442a7b404e\", \"width\": 681, \"height\": 279}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=41e4d61a71c4994fe6d65cd5f5e5117101a8c177\", \"width\": 108, \"height\": 44}, {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f54ed93edb582388d2be8048d9b2ce14e17339e2\", \"width\": 216, \"height\": 88}, {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=197cdcd689260137ffeb3630d6ce6c8591f0123f\", \"width\": 320, \"height\": 131}, {\"url\": \"https://external-preview.redd.it/TROsaKF-eMMgylUC9OCmsHFIflyPUq12e2ne2CYUajA.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=48803a69899fb1896652c3f22a84062c59105e8f\", \"width\": 640, \"height\": 262}], \"variants\": {}, \"id\": \"qtTefy3j-6oGIh5mtKWiXy7kht_Oew60BsrcQCPqFhM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqofzt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"imperatorz\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558313083.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hey y'all, been a while away thanks to university, and it kinda sucked the wind out of me writing stuff about F1 for a while. But never mind that, I'm back.\\n\\nThis will be the start of a little series of mine, where I focus on F1 drivers that *should* be recognised for their stories behind their career, yet for some reason, are barely footnotes in history. You all know the story of Ascari and Fangio, of Lauda and Hunt, of Prost and Senna, of Schumacher and Hakkinen and so on. However, there are many more stories of drivers that don't receive the attention they deserve. Whether stories of success or failure, glory or ignominy, tragedy or happiness, these stories are worthy of remembering and retelling. This little series of posts are not Random Driver Highlights, given how they're not...y'know, random. But instead, they'll each have their own post, cause they deserve it.\\n\\nThe first driver I want to spotlight is an Italian driver for Ferrari in the 1950's. His story isn't *that* unknown, but compared to his contemporaries, it's very, very hidden unless you search for his name. He was F1's youngest polesitter at the time, with that record lasting for 13 years. He is directly involved with the death of a legend of a sport. He dated a rather famous Italian celebrity that got them on gossip pages. And he was very, **very** handsome. Like, ridiculously handsome.\\n\\nThis is the story of Eugenio Castellotti.\\n\\n*****\\n# [Eugenio Castellotti](https://www.classicdriver.com/sites/default/files/styles/article_full/public/183477804a.jpg?itok=mIrjs49d) #\\n\\n**STATISTICS**\\n\\n**Nationality:** Italian\\n\\n**Years in F1:** 1955-57\\n\\n**Teams Raced For:** Lancia, Ferrari\\n\\n**Entries:** 14\\n\\n**Starts:** 14\\n\\n**Podium Finishes:** 3\\n\\n**Pole Positions:** 1 (*1955 Belgian Grand Prix*)\\n\\n**Points:** 19.5\\n\\n**Highest Finish:** 2nd (*Twice -- 1955 Monaco and 1956 French Grands Prix*)\\n\\n**Good looks:** On a scale from 1-10, [*he was a goddamn 17*](http://formula-fan.ru/assets/images/drivers/Castellotti_Eugenio.jpg).\\n\\n*****\\n\\n### Part 1: Baby You're a Rich Kid ###\\n\\nEvery report on how Castellotti began his career states that it was due to his wealth, being able to buy a Ferrari sportscar at the young age of 20. Most 20 year-olds would be worrying about paying off their university fees, but here was Eugenio, buying himself a Ferrari. So, naturally, the narrative was that he had a mollycoddled childhood by two rich, wealthy parents and was able to buy his way into motorsport. Right?\\n\\nWell...not quite. I think. His mother, Angela, according to some accounts, was unmarried and *only sixteen* when she gave birth to Eugenio. Not to mention that his father, a very, *very* wealthy lawyer, reportedly first met Eugenio at the age 9. Most other sources just hook onto the fact that his family was wealthy, but if the above is true, that his dad impregnated someone at 16 and didn't bother taking care of their child until nine years later, life may not have been *that* rosy for young Eugenio as some sources claim.\\n\\nEugenio, however, quickly gained a fascination for cars, and supposedly learned how to drive through the Castellotti's family driver. As he grew up, he even tried to fake his age to obtain a driving license. Despite the probable family tensions between his mom and his dad for, well, **that** situation, there was one thing that both his parents agreed on: that Castellotti *should not race*. They became increasingly restrictive with Castellotti's passion, but that probably drove young Eugenio further into getting a racing career.\\n\\nThis was until his dad died when Eugenio was either 12 or 19. I don't know this for sure as sources are picky, but more sources point towards 19. Because, when his dad died, he left a massive, and I mean **massive**, inheritance to Eugenio. I don't know how much, but damn if it didn't look like Loadsamoney. From there, Eugenio went into a manic shopping spree, often fancying finely-tailored suits here and there. However, still against his mother's wishes, Eugenio used his money to explore his passion, motor racing.\\n\\nAnd that's how Eugenio Castellotti bought his first Ferrari, a 166MM sportscar, at the young age of 20. But, unlike most ridiculously rich youth of the generation, he didn't buy the 166MM to stare at it in his garage every once in a while. He was going to **race it**.\\n\\nHowever, Castellotti figured that the best way to start off racing wouldn't be a few simple club races, oh no. His first race was the gruelling 1,080-kilometre Tour of Sicily, where he unsurprisingly failed to finish. Not to be perturbed by this little blip, Castellotti opted to enter the frikin' **Mille Miglia**, or 1000 Miles in Italian, probably one of the grandest road races ever. There, he actually finished a credible 6th in class and 50th in an overall field of *322 starters*. As inexperienced as he was, Castellotti proved he wasn't just a regular rich kid who bought his way into racing. His first two races were only two of the toughest sportscar races, and by golly did he do well.\\n\\nInto 1952, and Castellotti's form in sportscars just got better and better over time, leading to his first win in the Gold Cup at Pescara. Buoyed by all this success, he felt it was about time he entered the grandest event of all, the Monaco Grand Prix. However, it wouldn't be his first Formula One start. The Monaco Grand Prix was going through some financial difficulties, and with radical changes in rules in the World Driver's Championship, the organisers played a *safe bet* and hosted the 1952 Grand Prix for sports cars instead.\\n\\nThat's not to say the field was any weaker, though. A number of British up-and-comers like Stirling Moss and Peter Collins entered, not to mention crafty French veterans in Robert Manzon and Louis Rosier. Entering a Grand Prix of such prestige so early in his career, Castellotti would have his work cut out for him.\\n\\nHowever, Castellotti showed an oddly cool head when everyone lost theirs, especially when Stirling Moss and other drivers ploughed into Reg Parnell's broken down Aston Martin. Following the pile-up it would be Castellotti who would inherit the lead from Vittorio Marzotto. However, the heat would take its both drivers and cars, and both had to make a mandatory pit stop to attend to both the cars and drivers.\\n\\nAccording to urban legend, when Castellotti stopped, he also requested for a **bottle of Coke**. Apparently, this slowed Castellotti's stop significantly, maybe because Coke was hard to source in Monaco, or Castellotti just had to sip Coke leisurely, I don't know. Whatever the case, this was enough to hand the lead back to Marzotto, who went on to win the Monaco Grand Prix. \\n\\nCastellotti's performance, where he lost the Monaco Grand Prix to a bottle of Coke, didn't go unnoticed, though, and despite a lucky escape in Vila Real where marshals carried him out of the way from an oncoming pileup, through the next two years, including a win at the Portuguese Grand Prix in 1952 and the Messina 10 hours in 1953.\\n\\nHis shot at the big time, though, was just on the horizon. And it would come from none other than the *reigning champion of Formula 1*, Alberto Ascari.\\n*****\\n\\n### Part 2: Lancia's Lancer ###\\n\\nIn his career so far, Castellotti had just been entering races as a privateer, mainly entering with Ferrari's purchased from his father's inheritance. Being a relatively youthful driver in the sport, he was seen as one of Italy's brightest young talents to carry Italy's motorsport image into the future, so he was probably in high demand. It would probably be just a matter of time before he got snapped up.\\n\\nThen he met Alberto Ascari. Holder of the record for most consecutive victories in F1 at the time (*and all the way until 2013*) and had secured his second consecutive World Driver's Championship by the time of the Italian Grand Prix, when he met the young Castellotti. Despite his service for Ferrari, pay disputes and other issues led the current reigning champion to leave the Prancing Horse and join, out of all teams, Lancia, who were all set to make their leap into Formula One.\\n\\nAnd, out of all people, Ascari hand-picked both his mentor, Luigi Villoresi, and his now-protege, **Eugenio Castellotti**, to join him in Lancia. Yep, he was handpicked by probably the best driver in the world to not only be his teammate for the upcoming season, but also taken under his wing as his *protege*. \\n\\nLancia had doubts over his drive, though, after a dismal showing at the Nurburgring 1000km, but those doubts were cast aside after a brilliant third place in the Carrera Panamericana. Heck, sources say him and teammate Piero Taruffi could have actually contested for the win, but received orders from above to hold station behind leader Fangio to play it safe, already having a massive lead to the rest of the field and to keep a 1-2-3 finish for Lancia.\\n\\nHowever, for 1954, Lancia's F1 project encountered delay after delay. Not quite as delayed as \\\"The Thief and the Cobbler\\\", but still, delayed by a lot. So much so that they let Ascari and Villoresi race for other teams while they continued to toil over their chassis.\\n\\nCastellotti, meanwhile, didn't follow down their path. He remained loyal to Lancia and, as their 'junior driver', was given the opportunity to race in a multitude of sportscar events. However, instead of anticipated success, Eugenio recorded DNF after DNF after DNF in many sportscar races, from the Sebring 12 hours to Mille Miglia to Targa Florio, poor Castellotti didn't have **anything** going right for him in 1954, save for winning his second Italian Mountain Championship on the trot in hillclimbing. And when Lancia were *finally* able to enter their long-awaited D50 in the season-closing race at Spain, they only had enough for Ascari and Villoresi, leaving Castellotti by the sidelines once again.\\n\\n1955 came around, and finally Lancia were ready with their D50 project. It took a while, but come the Argentine Grand Prix, Eugenio was all ready to step foot into the big leagues, Formula One. However, as most people who know their F1 history, the 1955 Argentine Grand Prix was probably the **worst race possible** to take your first steps in F1. The heat was held in mind-melting temperatures reaching *40 degrees Celsius*.\\n\\nNot only was it mind-melting, but also car-melting. This proved to be the case when Villoresi's Lancia gave up on lap **2**. As shared drives were essentially part-and-parcel with Formula One at the time, Castellotti was relieved by Villoresi on lap 20 to cut his first Formula One start short. Probably mercifully, too, as Villoresi wrecked the Lancia just 15 laps later.\\n\\nThe next race for him at Monaco, though, finally showed off what Castellotti was capable of. He qualified a stellar *fourth* in just his second race for Lancia, and in his first lap, moved up the field with a great start and this [*downright bonkers overtake for 1955 standards*](https://youtu.be/XSqH-uf1-xQ?t=108) on Stirling Moss at the station hairpin to take second on lap one. After a crazy battle with Moss early on, Moss's Mercedes dominance won out and Castellotti settled into a battle for third with teammate Ascari and Jean Behra.\\n\\nIn that battle, though, Castellotti cut a tyre after driving too aggressively and mounting several kerbs on the streets of Monaco, forcing a pitstop that dropped him to ninth, essentially being a precursor to the crazed, balls-out driving style that Castellotti would go on to develop with time in future Formula One starts. However, the dashing youngster here was only in his second race, and yet, thanks to some retirements and some seriously impressive driving, Castellotti came in **second place** in just his second Grand Prix start, a result that undoubtedly would've been a victory had it not been for the tyre trouble mentioned earlier.\\n\\nOne of those retirements, though, was his mentor and teammate, Ascari, as he ploughed through barriers and past bollards into the Monaco harbour in one of F1's most famous crashes never filmed, primarily because all the focus was on Stirling Moss' smoking Mercedes just ahead in the pitlane. Despite the frightening looking crash and the aftermath, Ascari mercifully left the accident scene with nothing more than a broken nose.\\n\\nThis was bad for Castellotti, as just the week after that, he and Ascari were teaming up to drive a Ferrari 750 Monza for the Supercortemaggiore in Monza. On the 26th of May, 1955, Castellotti and Villoresi were ready to test the unpainted, newly developed car before the race, and had invited Ascari to spectate, probably to give advice to young Eugenio like he always had, or just to see how the car handled before their upcoming event. Impulsively, during a break in action before lunch, Ascari elected to drive the car for a few laps. Some say it was to test the car he was due to race in a couple of days, others say it was to test his psyche and get back on track after his mammoth crash in Monaco.\\n\\nDressed in a suit and tie, he didn't have any racing gear on him, especially his lucky blue helmet, still under repair from his accident in Monaco. So, without thinking, he borrowed Castellotti's helmet and set out for a few laps. On the third lap, at Curva Vialone, Ascari spun out, either due to ill-effects from Monaco, distractions from his flapping tie, or someone or something crossing the track ahead of him. The car proceeded to somersault, killing the two-time champion.\\n\\nCastellotti was distraught. He was one of the first at the scene and saw his close friend and mentor pass in front of his very eyes. He lent Ascari his helmet that allowed him to test the car in the first place. Emotionally, he was probably a mess. Yet, at the same time, he was probably more driven than ever.\\n\\nWhich was why it came to be a shock when Lancia announced their immediate withdrawal from Formula One. It was partially due to the loss of their stalwart, but financial problems had also been piling on the Italian outfit, which was the main reason for their withdrawal. Unperturbed, though, Castellotti begged them to participate in the upcoming Belgian Grand Prix. Lancia couldn't send their team to Belgium, though, so they just lent Castellotti two of their D50s to enter as a privateer.\\n\\nFull of emotion, Eugenio arrived at Spa with a fire lit under him. The Mercedes team were clearly the team to beat, and with the revolutionary W196, looked near unstoppable through the season. Castellotti hadn't even been to Spa before today. And yet, on the first day of practice, his lap times were falling rapidly on the near nine-mile circuit. As the day came to a close, Castellotti had already run a *full-race distance* in practice. But on one of his last laps, the time he set was a purely incredible 4:18.1. Half a second better than Fangio, a full second ahead of Moss. And, luckily for Castellotti, the second day was completely rained out.\\n\\nAll this meant that Eugenio Castellotti, in just his **third** Grand Prix, following the recent death of his mentor and close friend, after the withdrawal of his team and entering the race *all by himself*, had just beaten the near-unbeatable Mercedes to become the **youngest polesitter in Formula One history**.\\n\\nAlthough his Lancia was eventually outpaced on race day by the Mercs and retired from a still-impressive third place with transmission issues, there was almost no doubt in many people's minds, that he truly was the next Ascari.\\n\\nWell, one of *two* potential future Ascaris.\\n*****\\n\\n### Part 3: Ferrari's Future ###\\n\\nAfter the closure of Lancia, Ferrari had snapped up most of their assets, and this included Castellotti, the Prancing Horse having been impressed by the promise shown by their young countryman. Indeed, it was out with the old, in with the new at Ferrari, as Nino Farina was forced to scale back his racing commitments due to persistent injuries, and so in stepped Castellotti for the next race at the Netherlands.\\n\\nThe next two results weren't exactly the greatest for Eugenio, salvaging a 5th in a troublesome Ferrari in Zandvoort and transmission issues plaguing him all weekend in Aintree, retiring from his main entry, and substituting Mike Hawthorn late in the race only guaranteed them a then sixth place finish, which scored them *nul points* back in the 50's.\\n\\nThe season-ending Italian Grand Prix, though, was his first real great race for Ferrari. Having acquired the Lancia D50's, Ferrari elected to race them for the Italian Grand Prix, seeing them as much faster than the Ferrari 625s and 555s they had with them. However, throughout practice, both D50's suffered intense tyre wear with the Ferrari-contracted Englebert tyres on the oval banking as opposed to the Pirelli tyres it was designed for. So, after qualifying 4th, Castellotti switched to the supposedly lesser-competitive 555 for the race. For the opening portions of the race, he surprised everyone by sticking with the four dominant Mercedes machines, giving the tifosi something to cheer about. However, ragged Eugenio slowly fell off the pace. And up stepped his rival.\\n\\nLuigi Musso was born into nobility in Rome in 1924. Being a few years Castellotti's senior, he had an earlier start into racing than him, and had impressed for the Maserati in most of his starts, including a podium in the Spanish Grand Prix and a couple of wins in non-championship Grand Prix. And him being a Roman driving for Maserati, he simply couldn't let a Milanese driving for Ferrari beat him in their home Grand Prix. So, for a good twenty-odd laps, the two battled hard, being separated by a matter of *inches* at some point in the Grand Prix. \\n\\nEventually, Castellotti won out as Musso's Maserati petered out after the intense battle. And with that battle won and the retirement of a few Mercedes machines, Eugenio salvaged a podium for Ferrari in their home race, ending the season with 12 total points. With other drivers like Farina and Hans Herrmann unable to complete a full season due to injury, and the inconsistency of others like Trintignant and Musso in such a short season, these 12 points were enough for Castellotti to finish **third** in the World Driver's Championship, best of the rest behind the Mercedes duo of Fangio and Moss. This was the best championship finish for a debutant in F1, a record that would be equalled, but never beaten for **41 years** before Jacques Villeneuve finished 2nd in the 1996 championship, a record equalled by Lewis Hamilton in 2007.\\n\\nEnzo Ferrari kept his services for 1956, where they'd be using the D50, now badged as a 'Lancia-Ferrari', that Castellotti had used to good effect the previous season. However, Castellotti wasn't going to spearhead the team, as with Mercedes' withdrawal from motorsport following the Le Mans disaster, Fangio made waves by signing for Ferrari. Also signing for Ferrari was Luigi Musso, setting the scene for a potential rivalry between the two rising Italian stars. Among the two, though, Ferrari seemed to prefer Castellotti, being selected to pair with Fangio for major endurance races that year, while Musso was stuck with Schell.\\n\\nIn Formula One, though, Musso got the early upper hand when a shared drive with Fangio led to victory for the pair of them, though that only really came to pass when multiple drivers, including Castellotti, had all sorts of mechanical issues. \\n\\nIf you recall from earlier, Castellotti had developed a reputation as being a wild driver, often blasting off straight from the gate before wearing out as the race goes on. However, given all that I've seen from nearly every source about Castellotti's wild driving style, it's all the more puzzling that his greatest triumphs in 1956 came in *endurance racing*, out of all things. The first of such victories came in the 12 hours of Sebring, where he and Fangio fought off the challenge of the Jaguar squad in the fastest Sebring 12 hours at the time. His second victory, however, was more impressive.\\n\\nBack in the previous year's Mille Miglia, Castellotti was embarrassingly dominated by Moss and Denis Jenkinson before his retirement with tyre issues. He would find out later that Moss and Jenkinson were using a navigation system, which would later turn out to be a prototype for pace notes now commonly used in rallying events. Upon Jenkinson letting him know of the news, Eugenio simply shook his head, saying he couldn't possibly drive with such a navigation system.\\n\\nBesides, come 1956, Castellotti would enter the Mille Miglia *by himself*, so there was no navigator for him to follow. If that wasn't so much of a disadvantage for him, it was made worse as the weather conditions started to turn especially nasty. Normally, drivers as manic as him would fall victim to the conditions. Indeed, another young, manic driver attempting to make a name for himself that race was Wolfgang von Trips, who, while chasing the leading driver, *tripped* over the tricky conditions. (*I swear I'm a natural comedian guys*).\\n\\nBut that leading driver von Trips was chasing was none other than Castellotti himself. In rain that essentially blinded the roads ahead and ferocious winds, Castellotti wasn't even fazed. He never put a foot wrong. And apart from a short stint where he had to refuel, through each control point on the course, Castellotti **never lost the lead** for the full 1000 miles.\\n\\nYes, you heard right. **Never. Lost. The. Lead.**\\n\\nDenis Jenkinson, co-driver to Moss, would comment on the event: [\\\"We were not racing against Musso, Castellotti or Fangio; it seemed that we were fighting for the mere right to go on living.\\\"](https://www.motorsportmagazine.com/archive/article/june-1956/26/another-mille-miglia-moss). And yet, in this battle for survival, Castellotti turned it into a driving masterclass. And, despite the undeniable truth that having a navigator in a thousand-mile road race would certainly help, Castellotti pulled this off all by himself. What an absolute legend.\\n\\nBack to Formula One, though, his performances weren't so legendary. One thing he was very good at was qualifying, as evidenced when [StatsF1 placed him **13th** all-time in best average qualifying performances (min. 10 GP starts)](https://www.statsf1.com/en/statistiques/pilote/divers/grille-moyenne.aspx). On race-day, his starts would be fantastic, but more often than not, a whole bevy of mechanical problems would drop him down the grid. This was the case for most of 1956, retiring from 3rd in Argentina, 5th in Monaco and 4th in Belgium despite having promising starts in all these races.\\n\\nIn France, he got a similarly fantastic start, and actually led for a few early laps before seceding the lead to Fangio. However, once Fangio retired, Castellotti was all but in the clear and seemed to be destined to win his first ever Grand Prix and the spearhead in a Ferrari 1-2. However, teammate Peter Collins was competing for the title, and so the order was given through the pit-board for Collins to pass Castellotti for the win. One of the earliest examples of team-orders lost Castellotti his chance for an F1 victory, but he still trailed Peter Collins right on his bumper, being separated by just *0.3 seconds* at the line.\\n\\nAfter these performances, though, the wild side of Eugenio came back to form, having probably the worst race of his F1 career to date in Silverstone, dicing with many local entries and spinning out on the opening lap at the Nurburgring. Teammate and rival Musso had also had a rough season, with a crash in a sportscar event sidelining him for a couple events, not to mention every other race since his shared win in Argentina has ended with him failing to finish. With just one event left in the calendar, their home race in Monza, both Castellotti and Musso were determined to make the race their highlight of 1956. And neither wanted to give way.\\n\\nTheir team leader, Fangio, was well aware of their competition, despite being in a championship hunt at the time. He also remembered how the D50s ripped every tyre to shreds in the last Italian Grand Prix, so he gave Eugenio and Musso sage advice. He'd lead the way so Castellotti and Musso could pace their laps without destroying any tyres. With ten laps, he'd pull over and let Castellotti and Musso duke it out for the finish, *keirin style.*\\n\\n*Measured and steady* was the advice from Fangio to the young drivers. But they didn't listen.\\n\\nInstead, Musso and Castellotti went for a ***BALLS OUT, FLAT-OUT, BAT OUT OF HELL, NO FUCKS GIVEN, MY DICK IS BIGGER THAN YOURS, TRADIN' PAINT*** scrapheap for the lead the *moment* the green flag dropped. Castellotti was the leader for the majority of this intense battle, but Musso was nowhere near giving up. It was the battle the tifosi wanted, the two Italian drivers for the Prancing Horse, battling for supremacy on hallowed racing ground.\\n\\nOf course, this battle couldn't last forever. Fangio's advice was right. The tyres on both Musso's and Castellotti's cars didn't last the whole race. They didn't even last for half distance. Heck, not even *quarter-distance*.\\n\\nBoth of their tyres completely wore out their threads by **lap 4**. You heard me. Lap. FOUR.\\n\\nWorse for Castellotti, his stop was a measure longer than Musso's and was left playing the catch-up game. Paying no heed to his earlier lesson or Fangio's prior advice, he continued the ***PEDAL TO THE METAL, I DON'T GIVE A DAMN, DON'T LIFT OR YOU'RE A PUSSY*** strategy to catch up to Musso. And by lap *nine*, his tyre punctured yet again and sent him spinning onto the main straight, ending his race.\\n\\nBy all accounts, his 1956 season, results wise, wasn't the best. Just the two points finishes left him sixth in the championship, though to be fair his pace was *far, far greater* than those results indicate. In fact, over on GP Rejects, I ran an alternative championship where points were scored after just three laps. And, spoilers, [CASTELLOTTI FREAKIN' WON](https://gprejects.com/forum/viewtopic.php?f=12\\u0026t=7589#p350138) (though admittedly thanks to dropped scores, but **still**).\\n\\nWhat's more, he had plenty of things to smile about that year outside of F1. Securing his seat at Ferrari. Sharing the win with *El Maestro* at the Sebring 12 Hours. And finally **dominating the field** at the Mille Miglia. And it's not just racing achievements Castellotti had to smile about as well.\\n*****\\n\\n### Part 4: Il Bello ###\\n\\nMost drivers from the 50's had cool-ass nicknames. Fangio was El Maestro, also known as *'The Master'*. Jose Froilan Gonzalez was known as *The Pampas Bull*. Luigi Fagioli was known as the goddamn *ABRUZZI ROBBER*. Seriously, if you were a racing driver in the 50's, it was almost part and parcel that you'd get a dope-ass nickname as a reward.\\n\\nSo, when Castellotti got his nickname, there was only one obvious choice: *Il Bello*. Put simply, **The Beautiful**.\\n\\nAnd goddamn, he was [*beautiful*](https://cdn-8.latimages.com/images/mgl/ZnzlQo/s4/1017237256-LAT-19550716-315_29.jpg). So. Damn. Beautiful. That perfect chin, the neat at hell hairstyle, those pecs...\\n\\n...wait, where was I? Right. Ahem. Yeah, he was called Il Bello, and for good reason. Castellotti was *ridiculously vain*. He wore the finest of suits and shirts tailored exactly to how he wanted it. He kept his hair in perfect shape. He was even self-conscious about his lack of height, so much so that he often wore lifts in his shoes. He didn't earn the nickname Il Bello for nothing. And likewise, he didn't put the nickname to waste either.\\n\\nPartly because of his vanity, Castellotti was definitely a ladies man. He had many short flings throughout his racing career, all of which was followed relentlessly through gossip magazines. But, in 1956, he finally found someone to settle down with. And it couldn't have come with someone more high-profile.\\n\\nDelia Scala was one of Italy's leading actresses at the time, and through 1956 and 1957, was beginning the transition to the silver screen to become one of Italy's pioneering television personalities. In the summer of 1956, she met Castellotti at a restaurant, and started talking to him simply because the pale blue colour of his trousers matched the car. Eventually, conversations about matching colours became a date, and then a relationship. A relationship that apparently newspaper reporters **could not get enough of**. Italy's future legend in motor racing pairs up with leading young actress, both of whom were ridiculously hot. A gossip writer's wet dream.\\n\\nThis was two people's nightmare, though. First was Castellotti's mother, who upon meeting Scala for the first time, took her by the hand and said \\\"*You look like a waitress, the kitchen is over there*\\\". Good going, Mrs. Castellotti.\\n\\nSecond, and maybe more importantly, was Enzo Ferrari. He hated it when his drivers would get all caught up in intense romance, furthermore if it affected them emotionally, and *even more so* if it said relationship was spread over nearly every damn newspaper in Italy. He thought it'd affect their race pace and their drive to continue. And, for a while, it seemed Enzo was right.\\n\\nCastellotti and Scala proposed and planned to get married in April. However, between the two, there was an intense discussion that turned into a disagreement. Scala wanted Castellotti to give up driving, fearing that it was getting too dangerous for him. However, Castellotti told Scala that *she* should give up acting as it would cost them time together when he wasn't racing elsewhere. I don't know where the two stood on the compromise, but it was certain that Castellotti would probably have to focus less on racing should he wish to remain with Scala.\\n\\nHowever, on track, results were still going pretty well for Castellotti in 1957, claiming *both* first and third in his respective driver lineups in the 1000 km of Buenos Aires. Additionally, in the Argentine Grand Prix for 1957, he took an early lead and was launching a serious challenge to the now-dominant Maseratis, but his Ferrari, like all the other Ferraris, gave up the ghost while running in third.\\n\\nAs was tradition in those days, the Argentine Grand Prix and other events in South America was run in their January summer, then Formula One would take a break until May to restart that season in Monaco. With marriage around the corner, Castellotti took the time to take a nice vacation in Florence with his bride-to-be Scala, who was booked for a play there for the time being. Call it a pre-marriage honeymoon, if you will.\\n\\nA pre-marriage honeymoon that got rudely interrupted by none other than *Enzo Ferrari*. He rang up Castellotti in a huff and instructed him to go to Modena the next day to test the Ferrari. But this was more than just some last-minute test set up by Ferrari or a call for Castellotti to deputize for another driver.\\n\\nAs it turns out, Jean Behra and Maserati were testing at Modena that day, and Enzo found out that they had beaten Ferrari's ultimate lap record around the Autodrome. According to some people, most notably Luigi Villoresi, Enzo Ferrari had placed a lunchtime wager on the lap record, so when he saw it got beaten, he called the first person he could find - that being Eugenio - to come down to Modena to *take that record back*.\\n\\nCastellotti was undoubtedly fuming, having had precious time with his fianc\\u00e9e interrupted for a stupid lap record. But he had to listen to Enzo. Nobody dared to oppose him. On March 14th, he left Florence at 4 a.m. to make the long drive to Modena, to get suited up and get ready for practice.\\n\\nOn just his second or third flying lap, Castellotti lost control in the esses at the start of the lap, and the car overturned through a fence and into a (*mercifully empty*) grandstand. Castellotti was thrown out. The local parish priest, Don Sergio Mantovani, was present to read him the last rites as he laid dying on the track. He was only 26 years old. His wedding with Scala was just twenty-five days away.\\n\\nThe reason for the crash has been disputed. Jean Behra, present at the track having set the aforementioned lap record, insisted there was a problem with the gearbox, having heard it shift to neutral just before the crash. Other sources feel it was just a mistake in downshifting. Most attribute this error to the fact that Castellotti was robbed of a holiday with Scala for the pettiest of reasons, thus the claim that his mind was not in the right place. This theory was exacerbated by the fact he had to wake up extremely early and drive a considerable distance to reach Modena in the first place. The *true cause* of his death was still unknown. Multiple sources claim that Enzo Ferrari, upon hearing news of the crash, said something to the tune of, \\\"Castellotti? Dead? What a pity. *How's the car?*\\\"\\n\\nWhatever it was, a petty debate over a trivial lap record robbed Formula One of a rising star in his prime. One who could've done so much more. **And yet,** despite this, his story in motor racing is extremely colourful. \\n\\nHe scored a podium in just his second start in F1. He was the protege to Alberto Ascari, and also heavily involved in the scene of his death. Impacted by this, he convinced a major manufacturer shutting up shop to loan him a chassis, with which he would become the *youngest ever polesitter* in F1 at the time. He would finish his rookie season third, a feat that remained unbeaten for 41 years. He won the Mille Miglia *all by himself* in downright atrocious conditions. He had a fiery rivalry with a fellow compatriot to see who would be their country's next future star. He married one of Italy's most famous celebrities at the time. And he died because of a wager set over lunch.\\n\\nThat is the story of '*Il Bello*', Eugenio Castellotti.\\n\\n*****\\n\\nSources:\\n\\n[**The Limit: Life and Death in Formula One's Most Dangerous Era** by Michael Cannell](https://books.google.com.sg/books?id=4UjKS5w8udcC\\u0026pg=PT100\\u0026dq=castellotti+delia+scala\\u0026hl=en\\u0026sa=X\\u0026ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEILzAB#v=onepage\\u0026q=castellotti%20delia%20scala\\u0026f=false)\\n\\n[**Enzo Ferrari: A Life** by Richard Williams](https://books.google.com.sg/books?id=BfFHSYJwOUwC\\u0026pg=PA187\\u0026dq=castellotti+delia+scala\\u0026hl=en\\u0026sa=X\\u0026ved=0ahUKEwiEitDM_ZfiAhV363MBHVmOCgkQ6AEIKTAA#v=onepage\\u0026q=castellotti%20delia%20scala\\u0026f=false)\\n\\n[**Too Fast A Life** by Martin Shepherd](https://books.google.com.sg/books?id=gEFLDwAAQBAJ\\u0026pg=PT126\\u0026dq=castellotti+delia+scala\\u0026hl=en\\u0026sa=X\\u0026ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEINTAC#v=onepage\\u0026q=castellotti%20delia%20scala\\u0026f=false)\\n\\n[Motorsport Magazine (This plus many of their contemporary race reports)](https://www.motorsportmagazine.com/archive/article/february-1998/65/young-bloods) -- [8W @ Forix](http://forix.autosport.com/8w/castellotti.html) -- [Motorsport Memorial](http://www.motorsportmemorial.org/focus.php?db=ct\\u0026n=63) -- [Ferrari Owner's Club](http://archive-focgb.co.uk/happenings/2001/january/castellotti.html) -- [Scuderia Ferrari Legends](http://www.scuderia-legends.it/eugenio.htm)\\n\\n[F1 Racing (via PressReader)](https://www.pressreader.com/uk/f1-racing-uk/20180501/281655370651027) -- [Veloce Today](https://www.velocetoday.com/eugenio-castellotti-by-graham-gauld/) -- [Racing Sportscars](https://www.racingsportscars.com/driver/results/Eugenio-Castellotti-I.html) -- [StatsF1](https://www.statsf1.com/en/eugenio-castellotti.aspx) -- [Revs Institute](https://revsinstitute.org/the-collection/1955-lancia-d50/)\", \"author_fullname\": \"t2_go65n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testellotti\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bqi80q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558280545.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558308654.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey y\\u0026#39;all, been a while away thanks to university, and it kinda sucked the wind out of me writing stuff about F1 for a while. But never mind that, I\\u0026#39;m back.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis will be the start of a little series of mine, where I focus on F1 drivers that \\u003Cem\\u003Eshould\\u003C/em\\u003E be recognised for their stories behind their career, yet for some reason, are barely footnotes in history. You all know the story of Ascari and Fangio, of Lauda and Hunt, of Prost and Senna, of Schumacher and Hakkinen and so on. However, there are many more stories of drivers that don\\u0026#39;t receive the attention they deserve. Whether stories of success or failure, glory or ignominy, tragedy or happiness, these stories are worthy of remembering and retelling. This little series of posts are not Random Driver Highlights, given how they\\u0026#39;re not...y\\u0026#39;know, random. But instead, they\\u0026#39;ll each have their own post, cause they deserve it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first driver I want to spotlight is an Italian driver for Ferrari in the 1950\\u0026#39;s. His story isn\\u0026#39;t \\u003Cem\\u003Ethat\\u003C/em\\u003E unknown, but compared to his contemporaries, it\\u0026#39;s very, very hidden unless you search for his name. He was F1\\u0026#39;s youngest polesitter at the time, with that record lasting for 13 years. He is directly involved with the death of a legend of a sport. He dated a rather famous Italian celebrity that got them on gossip pages. And he was very, \\u003Cstrong\\u003Every\\u003C/strong\\u003E handsome. Like, ridiculously handsome.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the story of Eugenio Castellotti.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"https://www.classicdriver.com/sites/default/files/styles/article_full/public/183477804a.jpg?itok=mIrjs49d\\\"\\u003EEugenio Castellotti\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESTATISTICS\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENationality:\\u003C/strong\\u003E Italian\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EYears in F1:\\u003C/strong\\u003E 1955-57\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETeams Raced For:\\u003C/strong\\u003E Lancia, Ferrari\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEntries:\\u003C/strong\\u003E 14\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EStarts:\\u003C/strong\\u003E 14\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPodium Finishes:\\u003C/strong\\u003E 3\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPole Positions:\\u003C/strong\\u003E 1 (\\u003Cem\\u003E1955 Belgian Grand Prix\\u003C/em\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPoints:\\u003C/strong\\u003E 19.5\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHighest Finish:\\u003C/strong\\u003E 2nd (\\u003Cem\\u003ETwice -- 1955 Monaco and 1956 French Grands Prix\\u003C/em\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGood looks:\\u003C/strong\\u003E On a scale from 1-10, \\u003Ca href=\\\"http://formula-fan.ru/assets/images/drivers/Castellotti_Eugenio.jpg\\\"\\u003E\\u003Cem\\u003Ehe was a goddamn 17\\u003C/em\\u003E\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 1: Baby You\\u0026#39;re a Rich Kid\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EEvery report on how Castellotti began his career states that it was due to his wealth, being able to buy a Ferrari sportscar at the young age of 20. Most 20 year-olds would be worrying about paying off their university fees, but here was Eugenio, buying himself a Ferrari. So, naturally, the narrative was that he had a mollycoddled childhood by two rich, wealthy parents and was able to buy his way into motorsport. Right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell...not quite. I think. His mother, Angela, according to some accounts, was unmarried and \\u003Cem\\u003Eonly sixteen\\u003C/em\\u003E when she gave birth to Eugenio. Not to mention that his father, a very, \\u003Cem\\u003Every\\u003C/em\\u003E wealthy lawyer, reportedly first met Eugenio at the age 9. Most other sources just hook onto the fact that his family was wealthy, but if the above is true, that his dad impregnated someone at 16 and didn\\u0026#39;t bother taking care of their child until nine years later, life may not have been \\u003Cem\\u003Ethat\\u003C/em\\u003E rosy for young Eugenio as some sources claim.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEugenio, however, quickly gained a fascination for cars, and supposedly learned how to drive through the Castellotti\\u0026#39;s family driver. As he grew up, he even tried to fake his age to obtain a driving license. Despite the probable family tensions between his mom and his dad for, well, \\u003Cstrong\\u003Ethat\\u003C/strong\\u003E situation, there was one thing that both his parents agreed on: that Castellotti \\u003Cem\\u003Eshould not race\\u003C/em\\u003E. They became increasingly restrictive with Castellotti\\u0026#39;s passion, but that probably drove young Eugenio further into getting a racing career.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis was until his dad died when Eugenio was either 12 or 19. I don\\u0026#39;t know this for sure as sources are picky, but more sources point towards 19. Because, when his dad died, he left a massive, and I mean \\u003Cstrong\\u003Emassive\\u003C/strong\\u003E, inheritance to Eugenio. I don\\u0026#39;t know how much, but damn if it didn\\u0026#39;t look like Loadsamoney. From there, Eugenio went into a manic shopping spree, often fancying finely-tailored suits here and there. However, still against his mother\\u0026#39;s wishes, Eugenio used his money to explore his passion, motor racing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd that\\u0026#39;s how Eugenio Castellotti bought his first Ferrari, a 166MM sportscar, at the young age of 20. But, unlike most ridiculously rich youth of the generation, he didn\\u0026#39;t buy the 166MM to stare at it in his garage every once in a while. He was going to \\u003Cstrong\\u003Erace it\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, Castellotti figured that the best way to start off racing wouldn\\u0026#39;t be a few simple club races, oh no. His first race was the gruelling 1,080-kilometre Tour of Sicily, where he unsurprisingly failed to finish. Not to be perturbed by this little blip, Castellotti opted to enter the frikin\\u0026#39; \\u003Cstrong\\u003EMille Miglia\\u003C/strong\\u003E, or 1000 Miles in Italian, probably one of the grandest road races ever. There, he actually finished a credible 6th in class and 50th in an overall field of \\u003Cem\\u003E322 starters\\u003C/em\\u003E. As inexperienced as he was, Castellotti proved he wasn\\u0026#39;t just a regular rich kid who bought his way into racing. His first two races were only two of the toughest sportscar races, and by golly did he do well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInto 1952, and Castellotti\\u0026#39;s form in sportscars just got better and better over time, leading to his first win in the Gold Cup at Pescara. Buoyed by all this success, he felt it was about time he entered the grandest event of all, the Monaco Grand Prix. However, it wouldn\\u0026#39;t be his first Formula One start. The Monaco Grand Prix was going through some financial difficulties, and with radical changes in rules in the World Driver\\u0026#39;s Championship, the organisers played a \\u003Cem\\u003Esafe bet\\u003C/em\\u003E and hosted the 1952 Grand Prix for sports cars instead.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s not to say the field was any weaker, though. A number of British up-and-comers like Stirling Moss and Peter Collins entered, not to mention crafty French veterans in Robert Manzon and Louis Rosier. Entering a Grand Prix of such prestige so early in his career, Castellotti would have his work cut out for him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, Castellotti showed an oddly cool head when everyone lost theirs, especially when Stirling Moss and other drivers ploughed into Reg Parnell\\u0026#39;s broken down Aston Martin. Following the pile-up it would be Castellotti who would inherit the lead from Vittorio Marzotto. However, the heat would take its both drivers and cars, and both had to make a mandatory pit stop to attend to both the cars and drivers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAccording to urban legend, when Castellotti stopped, he also requested for a \\u003Cstrong\\u003Ebottle of Coke\\u003C/strong\\u003E. Apparently, this slowed Castellotti\\u0026#39;s stop significantly, maybe because Coke was hard to source in Monaco, or Castellotti just had to sip Coke leisurely, I don\\u0026#39;t know. Whatever the case, this was enough to hand the lead back to Marzotto, who went on to win the Monaco Grand Prix. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti\\u0026#39;s performance, where he lost the Monaco Grand Prix to a bottle of Coke, didn\\u0026#39;t go unnoticed, though, and despite a lucky escape in Vila Real where marshals carried him out of the way from an oncoming pileup, through the next two years, including a win at the Portuguese Grand Prix in 1952 and the Messina 10 hours in 1953.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHis shot at the big time, though, was just on the horizon. And it would come from none other than the \\u003Cem\\u003Ereigning champion of Formula 1\\u003C/em\\u003E, Alberto Ascari.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 2: Lancia\\u0026#39;s Lancer\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EIn his career so far, Castellotti had just been entering races as a privateer, mainly entering with Ferrari\\u0026#39;s purchased from his father\\u0026#39;s inheritance. Being a relatively youthful driver in the sport, he was seen as one of Italy\\u0026#39;s brightest young talents to carry Italy\\u0026#39;s motorsport image into the future, so he was probably in high demand. It would probably be just a matter of time before he got snapped up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen he met Alberto Ascari. Holder of the record for most consecutive victories in F1 at the time (\\u003Cem\\u003Eand all the way until 2013\\u003C/em\\u003E) and had secured his second consecutive World Driver\\u0026#39;s Championship by the time of the Italian Grand Prix, when he met the young Castellotti. Despite his service for Ferrari, pay disputes and other issues led the current reigning champion to leave the Prancing Horse and join, out of all teams, Lancia, who were all set to make their leap into Formula One.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd, out of all people, Ascari hand-picked both his mentor, Luigi Villoresi, and his now-protege, \\u003Cstrong\\u003EEugenio Castellotti\\u003C/strong\\u003E, to join him in Lancia. Yep, he was handpicked by probably the best driver in the world to not only be his teammate for the upcoming season, but also taken under his wing as his \\u003Cem\\u003Eprotege\\u003C/em\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELancia had doubts over his drive, though, after a dismal showing at the Nurburgring 1000km, but those doubts were cast aside after a brilliant third place in the Carrera Panamericana. Heck, sources say him and teammate Piero Taruffi could have actually contested for the win, but received orders from above to hold station behind leader Fangio to play it safe, already having a massive lead to the rest of the field and to keep a 1-2-3 finish for Lancia.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, for 1954, Lancia\\u0026#39;s F1 project encountered delay after delay. Not quite as delayed as \\u0026quot;The Thief and the Cobbler\\u0026quot;, but still, delayed by a lot. So much so that they let Ascari and Villoresi race for other teams while they continued to toil over their chassis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti, meanwhile, didn\\u0026#39;t follow down their path. He remained loyal to Lancia and, as their \\u0026#39;junior driver\\u0026#39;, was given the opportunity to race in a multitude of sportscar events. However, instead of anticipated success, Eugenio recorded DNF after DNF after DNF in many sportscar races, from the Sebring 12 hours to Mille Miglia to Targa Florio, poor Castellotti didn\\u0026#39;t have \\u003Cstrong\\u003Eanything\\u003C/strong\\u003E going right for him in 1954, save for winning his second Italian Mountain Championship on the trot in hillclimbing. And when Lancia were \\u003Cem\\u003Efinally\\u003C/em\\u003E able to enter their long-awaited D50 in the season-closing race at Spain, they only had enough for Ascari and Villoresi, leaving Castellotti by the sidelines once again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E1955 came around, and finally Lancia were ready with their D50 project. It took a while, but come the Argentine Grand Prix, Eugenio was all ready to step foot into the big leagues, Formula One. However, as most people who know their F1 history, the 1955 Argentine Grand Prix was probably the \\u003Cstrong\\u003Eworst race possible\\u003C/strong\\u003E to take your first steps in F1. The heat was held in mind-melting temperatures reaching \\u003Cem\\u003E40 degrees Celsius\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot only was it mind-melting, but also car-melting. This proved to be the case when Villoresi\\u0026#39;s Lancia gave up on lap \\u003Cstrong\\u003E2\\u003C/strong\\u003E. As shared drives were essentially part-and-parcel with Formula One at the time, Castellotti was relieved by Villoresi on lap 20 to cut his first Formula One start short. Probably mercifully, too, as Villoresi wrecked the Lancia just 15 laps later.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next race for him at Monaco, though, finally showed off what Castellotti was capable of. He qualified a stellar \\u003Cem\\u003Efourth\\u003C/em\\u003E in just his second race for Lancia, and in his first lap, moved up the field with a great start and this \\u003Ca href=\\\"https://youtu.be/XSqH-uf1-xQ?t=108\\\"\\u003E\\u003Cem\\u003Edownright bonkers overtake for 1955 standards\\u003C/em\\u003E\\u003C/a\\u003E on Stirling Moss at the station hairpin to take second on lap one. After a crazy battle with Moss early on, Moss\\u0026#39;s Mercedes dominance won out and Castellotti settled into a battle for third with teammate Ascari and Jean Behra.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn that battle, though, Castellotti cut a tyre after driving too aggressively and mounting several kerbs on the streets of Monaco, forcing a pitstop that dropped him to ninth, essentially being a precursor to the crazed, balls-out driving style that Castellotti would go on to develop with time in future Formula One starts. However, the dashing youngster here was only in his second race, and yet, thanks to some retirements and some seriously impressive driving, Castellotti came in \\u003Cstrong\\u003Esecond place\\u003C/strong\\u003E in just his second Grand Prix start, a result that undoubtedly would\\u0026#39;ve been a victory had it not been for the tyre trouble mentioned earlier.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of those retirements, though, was his mentor and teammate, Ascari, as he ploughed through barriers and past bollards into the Monaco harbour in one of F1\\u0026#39;s most famous crashes never filmed, primarily because all the focus was on Stirling Moss\\u0026#39; smoking Mercedes just ahead in the pitlane. Despite the frightening looking crash and the aftermath, Ascari mercifully left the accident scene with nothing more than a broken nose.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis was bad for Castellotti, as just the week after that, he and Ascari were teaming up to drive a Ferrari 750 Monza for the Supercortemaggiore in Monza. On the 26th of May, 1955, Castellotti and Villoresi were ready to test the unpainted, newly developed car before the race, and had invited Ascari to spectate, probably to give advice to young Eugenio like he always had, or just to see how the car handled before their upcoming event. Impulsively, during a break in action before lunch, Ascari elected to drive the car for a few laps. Some say it was to test the car he was due to race in a couple of days, others say it was to test his psyche and get back on track after his mammoth crash in Monaco.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDressed in a suit and tie, he didn\\u0026#39;t have any racing gear on him, especially his lucky blue helmet, still under repair from his accident in Monaco. So, without thinking, he borrowed Castellotti\\u0026#39;s helmet and set out for a few laps. On the third lap, at Curva Vialone, Ascari spun out, either due to ill-effects from Monaco, distractions from his flapping tie, or someone or something crossing the track ahead of him. The car proceeded to somersault, killing the two-time champion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti was distraught. He was one of the first at the scene and saw his close friend and mentor pass in front of his very eyes. He lent Ascari his helmet that allowed him to test the car in the first place. Emotionally, he was probably a mess. Yet, at the same time, he was probably more driven than ever.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhich was why it came to be a shock when Lancia announced their immediate withdrawal from Formula One. It was partially due to the loss of their stalwart, but financial problems had also been piling on the Italian outfit, which was the main reason for their withdrawal. Unperturbed, though, Castellotti begged them to participate in the upcoming Belgian Grand Prix. Lancia couldn\\u0026#39;t send their team to Belgium, though, so they just lent Castellotti two of their D50s to enter as a privateer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFull of emotion, Eugenio arrived at Spa with a fire lit under him. The Mercedes team were clearly the team to beat, and with the revolutionary W196, looked near unstoppable through the season. Castellotti hadn\\u0026#39;t even been to Spa before today. And yet, on the first day of practice, his lap times were falling rapidly on the near nine-mile circuit. As the day came to a close, Castellotti had already run a \\u003Cem\\u003Efull-race distance\\u003C/em\\u003E in practice. But on one of his last laps, the time he set was a purely incredible 4:18.1. Half a second better than Fangio, a full second ahead of Moss. And, luckily for Castellotti, the second day was completely rained out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll this meant that Eugenio Castellotti, in just his \\u003Cstrong\\u003Ethird\\u003C/strong\\u003E Grand Prix, following the recent death of his mentor and close friend, after the withdrawal of his team and entering the race \\u003Cem\\u003Eall by himself\\u003C/em\\u003E, had just beaten the near-unbeatable Mercedes to become the \\u003Cstrong\\u003Eyoungest polesitter in Formula One history\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlthough his Lancia was eventually outpaced on race day by the Mercs and retired from a still-impressive third place with transmission issues, there was almost no doubt in many people\\u0026#39;s minds, that he truly was the next Ascari.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, one of \\u003Cem\\u003Etwo\\u003C/em\\u003E potential future Ascaris.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 3: Ferrari\\u0026#39;s Future\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EAfter the closure of Lancia, Ferrari had snapped up most of their assets, and this included Castellotti, the Prancing Horse having been impressed by the promise shown by their young countryman. Indeed, it was out with the old, in with the new at Ferrari, as Nino Farina was forced to scale back his racing commitments due to persistent injuries, and so in stepped Castellotti for the next race at the Netherlands.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next two results weren\\u0026#39;t exactly the greatest for Eugenio, salvaging a 5th in a troublesome Ferrari in Zandvoort and transmission issues plaguing him all weekend in Aintree, retiring from his main entry, and substituting Mike Hawthorn late in the race only guaranteed them a then sixth place finish, which scored them \\u003Cem\\u003Enul points\\u003C/em\\u003E back in the 50\\u0026#39;s.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe season-ending Italian Grand Prix, though, was his first real great race for Ferrari. Having acquired the Lancia D50\\u0026#39;s, Ferrari elected to race them for the Italian Grand Prix, seeing them as much faster than the Ferrari 625s and 555s they had with them. However, throughout practice, both D50\\u0026#39;s suffered intense tyre wear with the Ferrari-contracted Englebert tyres on the oval banking as opposed to the Pirelli tyres it was designed for. So, after qualifying 4th, Castellotti switched to the supposedly lesser-competitive 555 for the race. For the opening portions of the race, he surprised everyone by sticking with the four dominant Mercedes machines, giving the tifosi something to cheer about. However, ragged Eugenio slowly fell off the pace. And up stepped his rival.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuigi Musso was born into nobility in Rome in 1924. Being a few years Castellotti\\u0026#39;s senior, he had an earlier start into racing than him, and had impressed for the Maserati in most of his starts, including a podium in the Spanish Grand Prix and a couple of wins in non-championship Grand Prix. And him being a Roman driving for Maserati, he simply couldn\\u0026#39;t let a Milanese driving for Ferrari beat him in their home Grand Prix. So, for a good twenty-odd laps, the two battled hard, being separated by a matter of \\u003Cem\\u003Einches\\u003C/em\\u003E at some point in the Grand Prix. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEventually, Castellotti won out as Musso\\u0026#39;s Maserati petered out after the intense battle. And with that battle won and the retirement of a few Mercedes machines, Eugenio salvaged a podium for Ferrari in their home race, ending the season with 12 total points. With other drivers like Farina and Hans Herrmann unable to complete a full season due to injury, and the inconsistency of others like Trintignant and Musso in such a short season, these 12 points were enough for Castellotti to finish \\u003Cstrong\\u003Ethird\\u003C/strong\\u003E in the World Driver\\u0026#39;s Championship, best of the rest behind the Mercedes duo of Fangio and Moss. This was the best championship finish for a debutant in F1, a record that would be equalled, but never beaten for \\u003Cstrong\\u003E41 years\\u003C/strong\\u003E before Jacques Villeneuve finished 2nd in the 1996 championship, a record equalled by Lewis Hamilton in 2007.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEnzo Ferrari kept his services for 1956, where they\\u0026#39;d be using the D50, now badged as a \\u0026#39;Lancia-Ferrari\\u0026#39;, that Castellotti had used to good effect the previous season. However, Castellotti wasn\\u0026#39;t going to spearhead the team, as with Mercedes\\u0026#39; withdrawal from motorsport following the Le Mans disaster, Fangio made waves by signing for Ferrari. Also signing for Ferrari was Luigi Musso, setting the scene for a potential rivalry between the two rising Italian stars. Among the two, though, Ferrari seemed to prefer Castellotti, being selected to pair with Fangio for major endurance races that year, while Musso was stuck with Schell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Formula One, though, Musso got the early upper hand when a shared drive with Fangio led to victory for the pair of them, though that only really came to pass when multiple drivers, including Castellotti, had all sorts of mechanical issues. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you recall from earlier, Castellotti had developed a reputation as being a wild driver, often blasting off straight from the gate before wearing out as the race goes on. However, given all that I\\u0026#39;ve seen from nearly every source about Castellotti\\u0026#39;s wild driving style, it\\u0026#39;s all the more puzzling that his greatest triumphs in 1956 came in \\u003Cem\\u003Eendurance racing\\u003C/em\\u003E, out of all things. The first of such victories came in the 12 hours of Sebring, where he and Fangio fought off the challenge of the Jaguar squad in the fastest Sebring 12 hours at the time. His second victory, however, was more impressive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in the previous year\\u0026#39;s Mille Miglia, Castellotti was embarrassingly dominated by Moss and Denis Jenkinson before his retirement with tyre issues. He would find out later that Moss and Jenkinson were using a navigation system, which would later turn out to be a prototype for pace notes now commonly used in rallying events. Upon Jenkinson letting him know of the news, Eugenio simply shook his head, saying he couldn\\u0026#39;t possibly drive with such a navigation system.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBesides, come 1956, Castellotti would enter the Mille Miglia \\u003Cem\\u003Eby himself\\u003C/em\\u003E, so there was no navigator for him to follow. If that wasn\\u0026#39;t so much of a disadvantage for him, it was made worse as the weather conditions started to turn especially nasty. Normally, drivers as manic as him would fall victim to the conditions. Indeed, another young, manic driver attempting to make a name for himself that race was Wolfgang von Trips, who, while chasing the leading driver, \\u003Cem\\u003Etripped\\u003C/em\\u003E over the tricky conditions. (\\u003Cem\\u003EI swear I\\u0026#39;m a natural comedian guys\\u003C/em\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut that leading driver von Trips was chasing was none other than Castellotti himself. In rain that essentially blinded the roads ahead and ferocious winds, Castellotti wasn\\u0026#39;t even fazed. He never put a foot wrong. And apart from a short stint where he had to refuel, through each control point on the course, Castellotti \\u003Cstrong\\u003Enever lost the lead\\u003C/strong\\u003E for the full 1000 miles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes, you heard right. \\u003Cstrong\\u003ENever. Lost. The. Lead.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDenis Jenkinson, co-driver to Moss, would comment on the event: \\u003Ca href=\\\"https://www.motorsportmagazine.com/archive/article/june-1956/26/another-mille-miglia-moss\\\"\\u003E\\u0026quot;We were not racing against Musso, Castellotti or Fangio; it seemed that we were fighting for the mere right to go on living.\\u0026quot;\\u003C/a\\u003E. And yet, in this battle for survival, Castellotti turned it into a driving masterclass. And, despite the undeniable truth that having a navigator in a thousand-mile road race would certainly help, Castellotti pulled this off all by himself. What an absolute legend.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack to Formula One, though, his performances weren\\u0026#39;t so legendary. One thing he was very good at was qualifying, as evidenced when \\u003Ca href=\\\"https://www.statsf1.com/en/statistiques/pilote/divers/grille-moyenne.aspx\\\"\\u003EStatsF1 placed him \\u003Cstrong\\u003E13th\\u003C/strong\\u003E all-time in best average qualifying performances (min. 10 GP starts)\\u003C/a\\u003E. On race-day, his starts would be fantastic, but more often than not, a whole bevy of mechanical problems would drop him down the grid. This was the case for most of 1956, retiring from 3rd in Argentina, 5th in Monaco and 4th in Belgium despite having promising starts in all these races.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn France, he got a similarly fantastic start, and actually led for a few early laps before seceding the lead to Fangio. However, once Fangio retired, Castellotti was all but in the clear and seemed to be destined to win his first ever Grand Prix and the spearhead in a Ferrari 1-2. However, teammate Peter Collins was competing for the title, and so the order was given through the pit-board for Collins to pass Castellotti for the win. One of the earliest examples of team-orders lost Castellotti his chance for an F1 victory, but he still trailed Peter Collins right on his bumper, being separated by just \\u003Cem\\u003E0.3 seconds\\u003C/em\\u003E at the line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter these performances, though, the wild side of Eugenio came back to form, having probably the worst race of his F1 career to date in Silverstone, dicing with many local entries and spinning out on the opening lap at the Nurburgring. Teammate and rival Musso had also had a rough season, with a crash in a sportscar event sidelining him for a couple events, not to mention every other race since his shared win in Argentina has ended with him failing to finish. With just one event left in the calendar, their home race in Monza, both Castellotti and Musso were determined to make the race their highlight of 1956. And neither wanted to give way.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETheir team leader, Fangio, was well aware of their competition, despite being in a championship hunt at the time. He also remembered how the D50s ripped every tyre to shreds in the last Italian Grand Prix, so he gave Eugenio and Musso sage advice. He\\u0026#39;d lead the way so Castellotti and Musso could pace their laps without destroying any tyres. With ten laps, he\\u0026#39;d pull over and let Castellotti and Musso duke it out for the finish, \\u003Cem\\u003Ekeirin style.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EMeasured and steady\\u003C/em\\u003E was the advice from Fangio to the young drivers. But they didn\\u0026#39;t listen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstead, Musso and Castellotti went for a \\u003Cstrong\\u003E\\u003Cem\\u003EBALLS OUT, FLAT-OUT, BAT OUT OF HELL, NO FUCKS GIVEN, MY DICK IS BIGGER THAN YOURS, TRADIN\\u0026#39; PAINT\\u003C/em\\u003E\\u003C/strong\\u003E scrapheap for the lead the \\u003Cem\\u003Emoment\\u003C/em\\u003E the green flag dropped. Castellotti was the leader for the majority of this intense battle, but Musso was nowhere near giving up. It was the battle the tifosi wanted, the two Italian drivers for the Prancing Horse, battling for supremacy on hallowed racing ground.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, this battle couldn\\u0026#39;t last forever. Fangio\\u0026#39;s advice was right. The tyres on both Musso\\u0026#39;s and Castellotti\\u0026#39;s cars didn\\u0026#39;t last the whole race. They didn\\u0026#39;t even last for half distance. Heck, not even \\u003Cem\\u003Equarter-distance\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth of their tyres completely wore out their threads by \\u003Cstrong\\u003Elap 4\\u003C/strong\\u003E. You heard me. Lap. FOUR.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWorse for Castellotti, his stop was a measure longer than Musso\\u0026#39;s and was left playing the catch-up game. Paying no heed to his earlier lesson or Fangio\\u0026#39;s prior advice, he continued the \\u003Cstrong\\u003E\\u003Cem\\u003EPEDAL TO THE METAL, I DON\\u0026#39;T GIVE A DAMN, DON\\u0026#39;T LIFT OR YOU\\u0026#39;RE A PUSSY\\u003C/em\\u003E\\u003C/strong\\u003E strategy to catch up to Musso. And by lap \\u003Cem\\u003Enine\\u003C/em\\u003E, his tyre punctured yet again and sent him spinning onto the main straight, ending his race.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy all accounts, his 1956 season, results wise, wasn\\u0026#39;t the best. Just the two points finishes left him sixth in the championship, though to be fair his pace was \\u003Cem\\u003Efar, far greater\\u003C/em\\u003E than those results indicate. In fact, over on GP Rejects, I ran an alternative championship where points were scored after just three laps. And, spoilers, \\u003Ca href=\\\"https://gprejects.com/forum/viewtopic.php?f=12\\u0026amp;t=7589#p350138\\\"\\u003ECASTELLOTTI FREAKIN\\u0026#39; WON\\u003C/a\\u003E (though admittedly thanks to dropped scores, but \\u003Cstrong\\u003Estill\\u003C/strong\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s more, he had plenty of things to smile about that year outside of F1. Securing his seat at Ferrari. Sharing the win with \\u003Cem\\u003EEl Maestro\\u003C/em\\u003E at the Sebring 12 Hours. And finally \\u003Cstrong\\u003Edominating the field\\u003C/strong\\u003E at the Mille Miglia. And it\\u0026#39;s not just racing achievements Castellotti had to smile about as well.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003EPart 4: Il Bello\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EMost drivers from the 50\\u0026#39;s had cool-ass nicknames. Fangio was El Maestro, also known as \\u003Cem\\u003E\\u0026#39;The Master\\u0026#39;\\u003C/em\\u003E. Jose Froilan Gonzalez was known as \\u003Cem\\u003EThe Pampas Bull\\u003C/em\\u003E. Luigi Fagioli was known as the goddamn \\u003Cem\\u003EABRUZZI ROBBER\\u003C/em\\u003E. Seriously, if you were a racing driver in the 50\\u0026#39;s, it was almost part and parcel that you\\u0026#39;d get a dope-ass nickname as a reward.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, when Castellotti got his nickname, there was only one obvious choice: \\u003Cem\\u003EIl Bello\\u003C/em\\u003E. Put simply, \\u003Cstrong\\u003EThe Beautiful\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd goddamn, he was \\u003Ca href=\\\"https://cdn-8.latimages.com/images/mgl/ZnzlQo/s4/1017237256-LAT-19550716-315_29.jpg\\\"\\u003E\\u003Cem\\u003Ebeautiful\\u003C/em\\u003E\\u003C/a\\u003E. So. Damn. Beautiful. That perfect chin, the neat at hell hairstyle, those pecs...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...wait, where was I? Right. Ahem. Yeah, he was called Il Bello, and for good reason. Castellotti was \\u003Cem\\u003Eridiculously vain\\u003C/em\\u003E. He wore the finest of suits and shirts tailored exactly to how he wanted it. He kept his hair in perfect shape. He was even self-conscious about his lack of height, so much so that he often wore lifts in his shoes. He didn\\u0026#39;t earn the nickname Il Bello for nothing. And likewise, he didn\\u0026#39;t put the nickname to waste either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPartly because of his vanity, Castellotti was definitely a ladies man. He had many short flings throughout his racing career, all of which was followed relentlessly through gossip magazines. But, in 1956, he finally found someone to settle down with. And it couldn\\u0026#39;t have come with someone more high-profile.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDelia Scala was one of Italy\\u0026#39;s leading actresses at the time, and through 1956 and 1957, was beginning the transition to the silver screen to become one of Italy\\u0026#39;s pioneering television personalities. In the summer of 1956, she met Castellotti at a restaurant, and started talking to him simply because the pale blue colour of his trousers matched the car. Eventually, conversations about matching colours became a date, and then a relationship. A relationship that apparently newspaper reporters \\u003Cstrong\\u003Ecould not get enough of\\u003C/strong\\u003E. Italy\\u0026#39;s future legend in motor racing pairs up with leading young actress, both of whom were ridiculously hot. A gossip writer\\u0026#39;s wet dream.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis was two people\\u0026#39;s nightmare, though. First was Castellotti\\u0026#39;s mother, who upon meeting Scala for the first time, took her by the hand and said \\u0026quot;\\u003Cem\\u003EYou look like a waitress, the kitchen is over there\\u003C/em\\u003E\\u0026quot;. Good going, Mrs. Castellotti.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESecond, and maybe more importantly, was Enzo Ferrari. He hated it when his drivers would get all caught up in intense romance, furthermore if it affected them emotionally, and \\u003Cem\\u003Eeven more so\\u003C/em\\u003E if it said relationship was spread over nearly every damn newspaper in Italy. He thought it\\u0026#39;d affect their race pace and their drive to continue. And, for a while, it seemed Enzo was right.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti and Scala proposed and planned to get married in April. However, between the two, there was an intense discussion that turned into a disagreement. Scala wanted Castellotti to give up driving, fearing that it was getting too dangerous for him. However, Castellotti told Scala that \\u003Cem\\u003Eshe\\u003C/em\\u003E should give up acting as it would cost them time together when he wasn\\u0026#39;t racing elsewhere. I don\\u0026#39;t know where the two stood on the compromise, but it was certain that Castellotti would probably have to focus less on racing should he wish to remain with Scala.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, on track, results were still going pretty well for Castellotti in 1957, claiming \\u003Cem\\u003Eboth\\u003C/em\\u003E first and third in his respective driver lineups in the 1000 km of Buenos Aires. Additionally, in the Argentine Grand Prix for 1957, he took an early lead and was launching a serious challenge to the now-dominant Maseratis, but his Ferrari, like all the other Ferraris, gave up the ghost while running in third.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs was tradition in those days, the Argentine Grand Prix and other events in South America was run in their January summer, then Formula One would take a break until May to restart that season in Monaco. With marriage around the corner, Castellotti took the time to take a nice vacation in Florence with his bride-to-be Scala, who was booked for a play there for the time being. Call it a pre-marriage honeymoon, if you will.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA pre-marriage honeymoon that got rudely interrupted by none other than \\u003Cem\\u003EEnzo Ferrari\\u003C/em\\u003E. He rang up Castellotti in a huff and instructed him to go to Modena the next day to test the Ferrari. But this was more than just some last-minute test set up by Ferrari or a call for Castellotti to deputize for another driver.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it turns out, Jean Behra and Maserati were testing at Modena that day, and Enzo found out that they had beaten Ferrari\\u0026#39;s ultimate lap record around the Autodrome. According to some people, most notably Luigi Villoresi, Enzo Ferrari had placed a lunchtime wager on the lap record, so when he saw it got beaten, he called the first person he could find - that being Eugenio - to come down to Modena to \\u003Cem\\u003Etake that record back\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECastellotti was undoubtedly fuming, having had precious time with his fianc\\u00e9e interrupted for a stupid lap record. But he had to listen to Enzo. Nobody dared to oppose him. On March 14th, he left Florence at 4 a.m. to make the long drive to Modena, to get suited up and get ready for practice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn just his second or third flying lap, Castellotti lost control in the esses at the start of the lap, and the car overturned through a fence and into a (\\u003Cem\\u003Emercifully empty\\u003C/em\\u003E) grandstand. Castellotti was thrown out. The local parish priest, Don Sergio Mantovani, was present to read him the last rites as he laid dying on the track. He was only 26 years old. His wedding with Scala was just twenty-five days away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe reason for the crash has been disputed. Jean Behra, present at the track having set the aforementioned lap record, insisted there was a problem with the gearbox, having heard it shift to neutral just before the crash. Other sources feel it was just a mistake in downshifting. Most attribute this error to the fact that Castellotti was robbed of a holiday with Scala for the pettiest of reasons, thus the claim that his mind was not in the right place. This theory was exacerbated by the fact he had to wake up extremely early and drive a considerable distance to reach Modena in the first place. The \\u003Cem\\u003Etrue cause\\u003C/em\\u003E of his death was still unknown. Multiple sources claim that Enzo Ferrari, upon hearing news of the crash, said something to the tune of, \\u0026quot;Castellotti? Dead? What a pity. \\u003Cem\\u003EHow\\u0026#39;s the car?\\u003C/em\\u003E\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhatever it was, a petty debate over a trivial lap record robbed Formula One of a rising star in his prime. One who could\\u0026#39;ve done so much more. \\u003Cstrong\\u003EAnd yet,\\u003C/strong\\u003E despite this, his story in motor racing is extremely colourful. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe scored a podium in just his second start in F1. He was the protege to Alberto Ascari, and also heavily involved in the scene of his death. Impacted by this, he convinced a major manufacturer shutting up shop to loan him a chassis, with which he would become the \\u003Cem\\u003Eyoungest ever polesitter\\u003C/em\\u003E in F1 at the time. He would finish his rookie season third, a feat that remained unbeaten for 41 years. He won the Mille Miglia \\u003Cem\\u003Eall by himself\\u003C/em\\u003E in downright atrocious conditions. He had a fiery rivalry with a fellow compatriot to see who would be their country\\u0026#39;s next future star. He married one of Italy\\u0026#39;s most famous celebrities at the time. And he died because of a wager set over lunch.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat is the story of \\u0026#39;\\u003Cem\\u003EIl Bello\\u003C/em\\u003E\\u0026#39;, Eugenio Castellotti.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003ESources:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://books.google.com.sg/books?id=4UjKS5w8udcC\\u0026amp;pg=PT100\\u0026amp;dq=castellotti+delia+scala\\u0026amp;hl=en\\u0026amp;sa=X\\u0026amp;ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEILzAB#v=onepage\\u0026amp;q=castellotti%20delia%20scala\\u0026amp;f=false\\\"\\u003E\\u003Cstrong\\u003EThe Limit: Life and Death in Formula One\\u0026#39;s Most Dangerous Era\\u003C/strong\\u003E by Michael Cannell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://books.google.com.sg/books?id=BfFHSYJwOUwC\\u0026amp;pg=PA187\\u0026amp;dq=castellotti+delia+scala\\u0026amp;hl=en\\u0026amp;sa=X\\u0026amp;ved=0ahUKEwiEitDM_ZfiAhV363MBHVmOCgkQ6AEIKTAA#v=onepage\\u0026amp;q=castellotti%20delia%20scala\\u0026amp;f=false\\\"\\u003E\\u003Cstrong\\u003EEnzo Ferrari: A Life\\u003C/strong\\u003E by Richard Williams\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://books.google.com.sg/books?id=gEFLDwAAQBAJ\\u0026amp;pg=PT126\\u0026amp;dq=castellotti+delia+scala\\u0026amp;hl=en\\u0026amp;sa=X\\u0026amp;ved=0ahUKEwi5xou3_ZfiAhWyguYKHVsVBsIQ6AEINTAC#v=onepage\\u0026amp;q=castellotti%20delia%20scala\\u0026amp;f=false\\\"\\u003E\\u003Cstrong\\u003EToo Fast A Life\\u003C/strong\\u003E by Martin Shepherd\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.motorsportmagazine.com/archive/article/february-1998/65/young-bloods\\\"\\u003EMotorsport Magazine (This plus many of their contemporary race reports)\\u003C/a\\u003E -- \\u003Ca href=\\\"http://forix.autosport.com/8w/castellotti.html\\\"\\u003E8W @ Forix\\u003C/a\\u003E -- \\u003Ca href=\\\"http://www.motorsportmemorial.org/focus.php?db=ct\\u0026amp;n=63\\\"\\u003EMotorsport Memorial\\u003C/a\\u003E -- \\u003Ca href=\\\"http://archive-focgb.co.uk/happenings/2001/january/castellotti.html\\\"\\u003EFerrari Owner\\u0026#39;s Club\\u003C/a\\u003E -- \\u003Ca href=\\\"http://www.scuderia-legends.it/eugenio.htm\\\"\\u003EScuderia Ferrari Legends\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.pressreader.com/uk/f1-racing-uk/20180501/281655370651027\\\"\\u003EF1 Racing (via PressReader)\\u003C/a\\u003E -- \\u003Ca href=\\\"https://www.velocetoday.com/eugenio-castellotti-by-graham-gauld/\\\"\\u003EVeloce Today\\u003C/a\\u003E -- \\u003Ca href=\\\"https://www.racingsportscars.com/driver/results/Eugenio-Castellotti-I.html\\\"\\u003ERacing Sportscars\\u003C/a\\u003E -- \\u003Ca href=\\\"https://www.statsf1.com/en/eugenio-castellotti.aspx\\\"\\u003EStatsF1\\u003C/a\\u003E -- \\u003Ca href=\\\"https://revsinstitute.org/the-collection/1955-lancia-d50/\\\"\\u003ERevs Institute\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?auto=webp\\u0026s=49e05353005d1b94e69a503a85c8a023e6303b84\", \"width\": 690, \"height\": 678}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=199f563207acf9ddadb5280494f3037749885229\", \"width\": 108, \"height\": 106}, {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=388d0360b9d007780fefa48f131e3de8f90625b3\", \"width\": 216, \"height\": 212}, {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5138e05b08a0b9317c9c7fffb1201a571deaa029\", \"width\": 320, \"height\": 314}, {\"url\": \"https://external-preview.redd.it/YELSXl8cILen93EtBVkuPTHqjG8Eeh0sTMHIdxtgoPc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=655e6ce878d37b26d6ae41f9e926b75cb8953af0\", \"width\": 640, \"height\": 628}], \"variants\": {}, \"id\": \"z-B0Vwn1GWLa5hHNK1-IIAjbQL_clQ3v3Ld6xsYOkL8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqi80q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TheStateOfIt\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqi80q/testellotti/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqi80q/testellotti/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558279854.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello everyone! Hopefully this is the right place to ask. I've dabbled in avatar making before, I've got a modicum of experience with working in Blender, converting models and then using them, but the biggest issue that I come across when I go to produce another avatar, is just finding parts. I was wondering if anyone had an idea where one could find clothing that is very similar to this?\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/a4tjy6oto2z21.png\\n\\nI'm a quiet guy and I like to wander around various worlds, to explore them. It's one of the things I find most fascinating about VRChat. I wanted to make an avatar to reflect that, but I'm getting to the point, where I might have to ask for a commission and money is not necessarily something I have ease of access to.\", \"author_fullname\": \"t2_5359pua\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Help] Trying to Find Some Model Parts, or Something Similar\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"media_metadata\": {\"a4tjy6oto2z21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 616, \"x\": 313, \"u\": \"https://i.redd.it/a4tjy6oto2z21.png\"}, \"m\": \"image/png\", \"id\": \"a4tjy6oto2z21\"}}, \"name\": \"t3_bqbir8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/TYDybMYKUihHAT5Qhg6-uM4OFWE_sz9TR8FIyBc8-D0.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558258876.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone! Hopefully this is the right place to ask. I\\u0026#39;ve dabbled in avatar making before, I\\u0026#39;ve got a modicum of experience with working in Blender, converting models and then using them, but the biggest issue that I come across when I go to produce another avatar, is just finding parts. I was wondering if anyone had an idea where one could find clothing that is very similar to this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/a4tjy6oto2z21.png\\\"\\u003Ehttps://i.redd.it/a4tjy6oto2z21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a quiet guy and I like to wander around various worlds, to explore them. It\\u0026#39;s one of the things I find most fascinating about VRChat. I wanted to make an avatar to reflect that, but I\\u0026#39;m getting to the point, where I might have to ask for a commission and money is not necessarily something I have ease of access to.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqbir8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Waffles201\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqbir8/help_trying_to_find_some_model_parts_or_something/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bqbir8/help_trying_to_find_some_model_parts_or_something/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558230076.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_yx7zk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bqajgx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/KAEJI8CROhTd4dEecJUSL4Sccsn1gckIhloYaCKqA5w.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558252580.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?auto=webp\\u0026s=98250712b387129fe2909c112cebbd5ef07bd2f8\", \"width\": 1012, \"height\": 12706}, \"resolutions\": [{\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b441ad75b21dd7b318f000cd51059c7ac61748bc\", \"width\": 108, \"height\": 216}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=7ba834ef921e153c8ae41067b4dde6649ba0ad97\", \"width\": 216, \"height\": 432}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b891c40743e978c65f3ece392865ac1182735a00\", \"width\": 320, \"height\": 640}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=68c0725e883e5fbbdcaed1d9043174d38c4479f9\", \"width\": 640, \"height\": 1280}, {\"url\": \"https://preview.redd.it/cgc1m25a52z21.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=110343f6ab10679ed4f991391e5db61c9fa0833d\", \"width\": 960, \"height\": 1920}], \"variants\": {}, \"id\": \"nXm5UpK4-609PglxuqFbC0mo-uwmk_YJ7IUSV04c04g\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqajgx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cvardy1998\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bqajgx/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/cgc1m25a52z21.png\", \"subreddit_subscribers\": 703, \"created_utc\": 1558223780.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Button Input| Command|\\n-|-|\\nPrimary Fire- Enemy| Fire and Fly at, then explode near, enemy|\\nPrimary Fire- Ground| Station Drone there|\\nSecondary Fire| Swap consciousness to selected Drone|\\n\\nHP Remaining| Hydra Stage| Hydra Effect(Damage)| Hydra Effect(Healing)| \\n-|-|-|-|\\n250+| Stage 1| 100%| 100%|\\n249-200| Stage 2| 110%| 105%|\\n199-150| Stage 3| 120% | 110%|\\n149-100| Stage 4| 130% | 115%|\\n99-50| Stage 5| 140%| 120%|\\n49-1| Stage 6| 150%| 125%|\\n\\n(Combat Mode): \\n\\nHydra Stage| Damage Per Second (DPS)\\n-|-|\\nStage 1| 50|\\nStage 2| 58|\\nStage 3| 65|\", \"author_fullname\": \"t2_1v6f2bm3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Table test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bq56as\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558194765.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558222045.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EButton Input\\u003C/th\\u003E\\n\\u003Cth\\u003ECommand\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPrimary Fire- Enemy\\u003C/td\\u003E\\n\\u003Ctd\\u003EFire and Fly at, then explode near, enemy\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPrimary Fire- Ground\\u003C/td\\u003E\\n\\u003Ctd\\u003EStation Drone there\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ESecondary Fire\\u003C/td\\u003E\\n\\u003Ctd\\u003ESwap consciousness to selected Drone\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EHP Remaining\\u003C/th\\u003E\\n\\u003Cth\\u003EHydra Stage\\u003C/th\\u003E\\n\\u003Cth\\u003EHydra Effect(Damage)\\u003C/th\\u003E\\n\\u003Cth\\u003EHydra Effect(Healing)\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E250+\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 1\\u003C/td\\u003E\\n\\u003Ctd\\u003E100%\\u003C/td\\u003E\\n\\u003Ctd\\u003E100%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E249-200\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 2\\u003C/td\\u003E\\n\\u003Ctd\\u003E110%\\u003C/td\\u003E\\n\\u003Ctd\\u003E105%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E199-150\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 3\\u003C/td\\u003E\\n\\u003Ctd\\u003E120%\\u003C/td\\u003E\\n\\u003Ctd\\u003E110%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E149-100\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 4\\u003C/td\\u003E\\n\\u003Ctd\\u003E130%\\u003C/td\\u003E\\n\\u003Ctd\\u003E115%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E99-50\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 5\\u003C/td\\u003E\\n\\u003Ctd\\u003E140%\\u003C/td\\u003E\\n\\u003Ctd\\u003E120%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E49-1\\u003C/td\\u003E\\n\\u003Ctd\\u003EStage 6\\u003C/td\\u003E\\n\\u003Ctd\\u003E150%\\u003C/td\\u003E\\n\\u003Ctd\\u003E125%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E(Combat Mode): \\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EHydra Stage\\u003C/th\\u003E\\n\\u003Cth\\u003EDamage Per Second (DPS)\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStage 1\\u003C/td\\u003E\\n\\u003Ctd\\u003E50\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStage 2\\u003C/td\\u003E\\n\\u003Ctd\\u003E58\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EStage 3\\u003C/td\\u003E\\n\\u003Ctd\\u003E65\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq56as\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"W-eye\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bq56as/table_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bq56as/table_test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558193245.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#Bloo\\n\\n####Blee\\n\\n\\u2014-\\n\\n\\nHello\", \"author_fullname\": \"t2_1v6f2bm3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bq4c8b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558217124.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EBloo\\u003C/h1\\u003E\\n\\n\\u003Ch4\\u003EBlee\\u003C/h4\\u003E\\n\\n\\u003Cp\\u003E\\u2014-\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq4c8b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"W-eye\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bq4c8b/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bq4c8b/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558188324.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Metroidvanias,\\n\\nThere are a few important sub updates that I would like to share. Pls read.\\n\\n---\\n\\n1 - **Pencil2Paper is stepping down as moderator**\\n\\nAfter having been this sub's primary moderator for 2 years, P2P has decided that it is time for him to step down, in order to focus on career-related endeavours. He will remain an honorary moderator on our Discord server for as long as he sees fit. This is a great opportunity for me to thank P2P for his efforts in growing the sub, for his friendship, and for the memes. We wouldn't be where we are today without you. ily no homo\\n\\nLuckily, the trusty /u/AAM2RF, a fine addition to the team, will continue to co-moderate the sub.\\n\\n---\\n\\n2 - **Stricter self-promotion policy**\\n\\nWe, as a moderation team, have always felt strongly about self-promotion in this community. In particular, YouTubers posting links to their Let's Plays and similar types of videos are removed immediately. Other forms of content blur the lines to an extent, but we always use the notion of a post having to benefit the reader more so than the poster. As an example of shameless self-promotion, at some point we saw a surge of posts about shirt designs with a user \\\"coincidentally\\\" having a link to the online shop in the comments. Another trend we're seeing are minor development updates that, while popular, ultimately count as self-promotion. The moderation team went back and forth on whether or not we thought these posts were okay, but the bottom line is that **r/metroidvania is not an advertisement space**, and we are going to uphold that ideal effective immediately. This means that:\\n\\n**Minor development updates are no longer permitted on this sub**. Appropriate types of posts pertaining to your own games include: 1) Official Announcements / Teasers and Trailers, and 2) Significant Updates, such as a new demo being available, or a launch post. If in doubt, contact the moderators.\\n\\nEverything already posted will be allowed to remain on the sub, but future posts violating this rule will be removed without warning.\\n\\nIf you are a developer and want to share minor development updates, we have a dedicated channel for that in our Discord server.\\n\\n---\\n\\n3 - **Sneaky Spam Filter**\\n\\nIt has recently come to light that a significant number of posts have been caught in reddit's spam filter. This is unfortunate, and has to do with how reddit tries to handle automatic filtering - by attaching \\\"smart\\\", machine-learned rules to the filter. For a relatively small sub like ours, the default spam filter setting is way too ambitious. We changed some settings which should alleviate the issue. We apologize for this inconvenience, and **we encourage you to re-submit any posts that were caught in the spam filter**.\\n\\n---\\n\\nThank you for reading, stay awesome.\", \"author_fullname\": \"t2_enb87\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"thingamajig\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bq1zjs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558286956.0, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558200815.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMetroidvanias,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere are a few important sub updates that I would like to share. Pls read.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E1 - \\u003Cstrong\\u003EPencil2Paper is stepping down as moderator\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter having been this sub\\u0026#39;s primary moderator for 2 years, P2P has decided that it is time for him to step down, in order to focus on career-related endeavours. He will remain an honorary moderator on our Discord server for as long as he sees fit. This is a great opportunity for me to thank P2P for his efforts in growing the sub, for his friendship, and for the memes. We wouldn\\u0026#39;t be where we are today without you. ily no homo\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuckily, the trusty \\u003Ca href=\\\"/u/AAM2RF\\\"\\u003E/u/AAM2RF\\u003C/a\\u003E, a fine addition to the team, will continue to co-moderate the sub.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E2 - \\u003Cstrong\\u003EStricter self-promotion policy\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe, as a moderation team, have always felt strongly about self-promotion in this community. In particular, YouTubers posting links to their Let\\u0026#39;s Plays and similar types of videos are removed immediately. Other forms of content blur the lines to an extent, but we always use the notion of a post having to benefit the reader more so than the poster. As an example of shameless self-promotion, at some point we saw a surge of posts about shirt designs with a user \\u0026quot;coincidentally\\u0026quot; having a link to the online shop in the comments. Another trend we\\u0026#39;re seeing are minor development updates that, while popular, ultimately count as self-promotion. The moderation team went back and forth on whether or not we thought these posts were okay, but the bottom line is that \\u003Cstrong\\u003E\\u003Ca href=\\\"/r/metroidvania\\\"\\u003Er/metroidvania\\u003C/a\\u003E is not an advertisement space\\u003C/strong\\u003E, and we are going to uphold that ideal effective immediately. This means that:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMinor development updates are no longer permitted on this sub\\u003C/strong\\u003E. Appropriate types of posts pertaining to your own games include: 1) Official Announcements / Teasers and Trailers, and 2) Significant Updates, such as a new demo being available, or a launch post. If in doubt, contact the moderators.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEverything already posted will be allowed to remain on the sub, but future posts violating this rule will be removed without warning.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you are a developer and want to share minor development updates, we have a dedicated channel for that in our Discord server.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E3 - \\u003Cstrong\\u003ESneaky Spam Filter\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt has recently come to light that a significant number of posts have been caught in reddit\\u0026#39;s spam filter. This is unfortunate, and has to do with how reddit tries to handle automatic filtering - by attaching \\u0026quot;smart\\u0026quot;, machine-learned rules to the filter. For a relatively small sub like ours, the default spam filter setting is way too ambitious. We changed some settings which should alleviate the issue. We apologize for this inconvenience, and \\u003Cstrong\\u003Ewe encourage you to re-submit any posts that were caught in the spam filter\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EThank you for reading, stay awesome.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Alpha Tester\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq1zjs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Fazermint\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/PostPreview/comments/bq1zjs/thingamajig/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bq1zjs/thingamajig/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558172015.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I am starting an open source R package for actuaries if anybody is interested in trying to learn R. I have version 0.0.1 on CRAN and github.\\n\\nHere is a vignette describing how to use it.\\n\\n[http://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies\\\\_intro.html](http://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies_intro.html)\\n\\nThe package is on CRAN, you can download the package using:\\n\\n\\tinstall.packages(\\\"expstudies\\\", type = \\\"source\\\")\\n\\n\\tlibrary(expstudies)\\n\\n\\tvignette(\\\"expstudies\\\\_intro\\\")\\n\\nThe code is on github: [https://github.com/ActuarialAnalyst/expstudies](https://github.com/ActuarialAnalyst/expstudies)\\n\\nThere is a note called Next Steps.txt on my github that is describing functionality I think would be useful if anybody wants to find stuff to build.\", \"author_fullname\": \"t2_3qls0vfv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"expstudies: An R package for Life Experience Studies (ongoing project)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpzmrt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558144296.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558172875.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am starting an open source R package for actuaries if anybody is interested in trying to learn R. I have version 0.0.1 on CRAN and github.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is a vignette describing how to use it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies_intro.html\\\"\\u003Ehttp://htmlpreview.github.io/?https://github.com/ActuarialAnalyst/expstudies/blob/master/doc/expstudies_intro.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe package is on CRAN, you can download the package using:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Einstall.packages(\\u0026quot;expstudies\\u0026quot;, type = \\u0026quot;source\\u0026quot;)\\n\\nlibrary(expstudies)\\n\\nvignette(\\u0026quot;expstudies\\\\_intro\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe code is on github: \\u003Ca href=\\\"https://github.com/ActuarialAnalyst/expstudies\\\"\\u003Ehttps://github.com/ActuarialAnalyst/expstudies\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is a note called Next Steps.txt on my github that is describing functionality I think would be useful if anybody wants to find stuff to build.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpzmrt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ActuarialAnalyst\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpzmrt/expstudies_an_r_package_for_life_experience/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpzmrt/expstudies_an_r_package_for_life_experience/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558144075.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3seiaklv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Podstew - Episode 1 - True Crime Mutton by sirpumpalot\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bptihg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 500, \"scrolling\": false, \"height\": 500}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"soundcloud.com\", \"oembed\": {\"provider_url\": \"http://soundcloud.com\", \"description\": \"Podstew curates the the best clips from the best episodes from the best podcasts creators in one place. Episode 1 is some of the clips from some of the best True Crime podcasts including My Favorite Murder, True Crime Garage, Sword \\u0026 Scale, Criminal and Serial.\", \"title\": \"Podstew - Episode 1 - True Crime Mutton by sirpumpalot\", \"type\": \"rich\", \"author_name\": \"sirpumpalot\", \"height\": 500, \"width\": 500, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 500, \"version\": \"1.0\", \"provider_name\": \"SoundCloud\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 500, \"author_url\": \"https://soundcloud.com/louis-lapat\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 500, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bptihg\", \"height\": 500}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/W5r7wav0m4kbzcFKjClk33izFMqQKDmYlK2yntvvJhs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558139769.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"soundcloud.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?auto=webp\\u0026s=ec06b343b294a64f58001c4c51f064403f858151\", \"width\": 500, \"height\": 500}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=abcb666730f7125ebcff761d2ae934b64bb2207b\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=125f4a4501a4ddd76e1af4c7f77df9bb3b9f1670\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/xgIXTJLvqNTF80Qfs4oX8JpQU1q76DCbsQN-EWikAhM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2ad8caa62cbd486282cffc09b33654eb2c9cf08f\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"FnUOCtppeFRE35cTgB5gTlp5Ta11SzQ2wR8YQypipx4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bptihg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"throwaway--0039\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bptihg/podstew_episode_1_true_crime_mutton_by_sirpumpalot/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://soundcloud.com/louis-lapat/podstew-episode-1-true-crime-mutton\", \"subreddit_subscribers\": 703, \"created_utc\": 1558110969.0, \"media\": {\"type\": \"soundcloud.com\", \"oembed\": {\"provider_url\": \"http://soundcloud.com\", \"description\": \"Podstew curates the the best clips from the best episodes from the best podcasts creators in one place. Episode 1 is some of the clips from some of the best True Crime podcasts including My Favorite Murder, True Crime Garage, Sword \\u0026 Scale, Criminal and Serial.\", \"title\": \"Podstew - Episode 1 - True Crime Mutton by sirpumpalot\", \"type\": \"rich\", \"author_name\": \"sirpumpalot\", \"height\": 500, \"width\": 500, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fw.soundcloud.com%2Fplayer%2F%3Fvisual%3Dtrue%26url%3Dhttps%253A%252F%252Fapi.soundcloud.com%252Ftracks%252F622177332%26show_artwork%3Dtrue\\u0026url=https%3A%2F%2Fsoundcloud.com%2Flouis-lapat%2Fpodstew-episode-1-true-crime-mutton\\u0026image=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=soundcloud\\\" width=\\\"500\\\" height=\\\"500\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 500, \"version\": \"1.0\", \"provider_name\": \"SoundCloud\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000536779059-8l7wly-t500x500.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 500, \"author_url\": \"https://soundcloud.com/louis-lapat\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**SCP-4107:** [Dead](https://www.scp-wiki.net/scp-4107)\\n \\n**Object Class:** Euclid\\n \\n**Author:** PeppersGhost\\n \\n***\\n \\nWhat's up, it's me, dyqz. I decided to tackle 4107 after Peppers enlightened us about it on the SCPD discord, and after Brewster gave up on it.\\n \\nLet me just preface this by saying 4107 is up there with 4012, 3999 and [everything](http://www.scp-wiki.net/scp-3188) [Kalinin](https://www.scp-wiki.net/kalinins-proposal) [has](https://www.scp-wiki.net/scp-3084) [written](http://www.scp-wiki.net/scp-2003) in terms of sheer fuckery. If you haven't read 4107 already, I thoroughly encourage you to.\\n \\nAnyways, on with the declass.\\n \\n***\\n \\n**Brief Summary**\\n \\n4107 is a collection of the same woman's corpse. Around 311 of the corpses have been found, with the same DNA, wounds, basically the same corpse. Over and over again. No one knows what she is, no one knows why her corpse keeps reappearing. No one knows anything, apart from her injuries, which are... fucking wack. Here they are.\\n \\n* A big long gash down her forearm. Scratches found on the bones, made by a human finger. Presumably her own fingers.\\n* All teeth have been cut off\\n* Her milk teeth found in her stomach\\n* Fingernails and toenails ripped off, the skin at the base of the fingers peeled\\n* The head's hair has been threaded into the upper back\\n \\n...Nice.\\n \\nThe Foundation ruled the cause of death as blood loss. There's also these confusing lines.\\n \\n\\u003EAll injuries are believed to have been inflicted antemortem. In all cases, evidence has indicated that the victim changed clothes between the time most of the injuries were inflicted and the moment of death. Other traces of the victim's actions before death, such as footprints and unfinished meals, are also occasionally found in the vicinity.\\n \\nFor your information, antemortem means 'before death'. So she had to have lived through all the head stitching and the teeth ripping and the toenail pulling. Yikes.\\n \\nThat's not all, because of course it's not. 4107 can't be mentioned with *a specific action*. No matter what you try to do, what sneaky tricks you try to pull, you can't mention *this action* while talking about 4107.\\n \\n***\\n \\n**Meta**\\n \\nNow, while you read my summary, I hope you went through the same sense of confusion everyone else did while they were reading the article. Just the strangest, weirdest injuries happening to this girl over and over again, with no clear link between any of them. And what is *this goddamned action?*\\n \\nThis might be disappointing to you, but I have no answers. I don't know what happened to the girl. I don't know what the action is. Maybe you can read up on the Discussion page, some interesting theories are present there. I do know something of use, however. And to learn of that, we'll need to learn more about the article itself.\\n \\nThe article was written as part of a draft swap between two authors, Peppers and Othello. [Here's the original article by Othello, for anybody curious.](http://topia.wikidot.com/the-draft-othello-be-offering-for-draft-swap) The main gist of the article is that it's a woman who committed suicide, with the anomalous effect that anyone who sees her corpse believe she was murdered, and try to go on a crazy witch hunt to learn more about her 'murder'.\\n \\nSo, what is 4107? On a meta level, it is a replication of that effect in real life. The article has all of these weird symptoms that happened to this girl that are seemingly unconnected, and the reason for that is to get you thinking. What happened? What really happened to this girl, why are there so many injuries? But that's not the REAL point of the article. The real point of the article, [in Peppers' own words,](https://imgur.com/a/6FZgiye) it is the simulation of an infohazard. If you don't remember what an infohazard is, here's a short explanation.\\n \\n\\u003EAn *infohazard*, as coined by Sorts, is something that is triggered if you simply know about it. It is similar to but distinct from a *memetic* agent because a *memetic* agent is pure information whereas an *infohazard* is generally an object. [SCP-426](http://www.scp-wiki.net/scp-426) (I Am A Toaster) is a perfect example of this.\\n \\nRecall Othello's article, about how people kept trying to explain her suicide as murder. This article makes you those people. You know about this girl, with these weird wounds, and you're inclined to try to explain everything away. You're creating backstories for it that fit 4107's effects best. That, in a nutshell, is what 4107 is. Trying to force you to explain the unexplainable.\\n \\nThat answer might be unsatisfying. Honestly, it is. It's REALLY unsatisfying. I wanna know what happened to this girl too. But the fact of the matter is that the unsolvability of the article is key to making it effective. Would it really be effective if, say, there was a nice explanation to everything? No. Because then you wouldn't keep thinking about it, you wouldn't keep trying to theorize about it, and you'd certainly forget about it sooner or later. It'd just be another mundane, somewhat weird article.\\n \\nIn Peppers' own words,\\n \\n\\u003ESo while there is an answer for the textual level mystery, the actual purpose of the article is the meta level. The whole point of the textual level is that it can be filled in with all sorts of different interpretations, and the fact that one *may be* the *one true* interpretation is what creates the meta compulsion.\\n \\nAlso,\\n \\n\\u003EThere is more to the mystery, but the answer only exists to be something that's sought.\\n \\n***\\n \\n**Theories**\\n \\nI originally had a separate part of this article that was meant to explain the textual mystery, because as Peppers said:\\n \\n\\u003EFwiw in regards to the actual original mystery in the article, I'll go ahead and say that at least one person's theory that I've heard pretty much correctly guessed about 80% of the backstory I had in mind. So it's basically solvable\\n \\nSo let's go through some theories then! What could this even be? Honestly the declass wouldn't be complete without some attempt at explaining what's going on here.\\n \\nWe'll start off by figuring out what the _aforementioned action_ is. There are two answers I (ripped off of the Discussions tab) think have some merit.\\n \\nA theory is that the _aforementioned action_ is the act of suicide. The slit wrists certainly point to that, alongside the scratches on the bone itself. Those don't seem like murder marks, rather suicide marks. You'd think a thorough, scientific article on this woman would make some passing mentions to the possibility of suicide, but that's not present in the article. ctrl+f \\\"suicide\\\" doesn't pull anything up.\\n \\nBut that can't possibly be true - there's no way that she stitched her hairs to her back herself, that's not humanly possible. Rather, let's think. Why would she purposely be censoring some thoughts, or rather, some theories about her death?\\n \\nBecause those theories aren't true. By preventing people from talking about suicide about her in any way, she's reinforcing the idea that it's NOT suicide. Her killer's out there.\\n \\nNow, to explain the injuries.\\n \\nIf you scroll down and look at the tags, there's a tag that stands out. \\\"loop\\\". \\\"loop\\\" is certainly an interesting tag, and it gives me a perfect segue into this next bit:\\n \\nHer murderer is either her past self or her future self trying to kill her, and you've heard the grandfather paradox - the one where killing your grandfather in the past leads to Temporal Fuckery - her trying to kill her past self led to Temporal Fuckery. That's why her body keeps reanimating, that's why her old teeth are in her stomach and her new teeth gone. It's all a part of the Temporal Fuckery. How'd she get the means to go to the past to kill herself?\\n \\nHow she got the past means to kill herself, I'm not sure. Not everything really needs to have an origin, and there's not much in the article about her origin anyway. That's not important. She can also censor things about _a certain action that is probably suicide_, so clearly we're dealing with someone weird here, most likely a reality bender. That's not the important parts of the article.\\n \\n_Wait,_ you think. _I thought it wasn't suicide?_ _You just said it wasn't like, two paragraphs ago._\\n \\nHey fuck you I'm not done yet. Her killer is some Temporally Fucked version of herself that's still out there on the run, and TECHNICALLY it's not suicide (this is a stretch I know) so just hear me out.\\n \\nOk I think that's all I have, that's my main theory. In summary, her past self (or future self) went back in time (or forward in time) to kill herself but then that created some Temporal Fuckery which resulted in 4107.\\n \\nI'm not claiming that this is true. I could be completely off base, but the important thing is that - the theories aren't the main issue here. That's not the REAL meat of the article, the real meat of the article is the act of theorizing. Because when you do that, you are fulfilling the article's purpose. Recall that it's a simulation of an infohazard. Theorizing about it, thinking about it, trying to fill in some gaps, that's what 4107 is about. I encourage you to think of some theories of your own, maybe even share them in the comments if you'd like. We can compare and think of the correct answer - it's out there, Peppers said it.\\n \\n***\\n \\nThis is an interesting article in many ways. It's well written, with good execution and a really fucking interesting mystery. It's a brilliant new idea that I haven't seen before on the site, even with all of the meta articles out there. So go read it and upvote. It recently cracked +100, maybe you can help it crack +200.\\n \\nThat's all I have for you today. Thanks for reading.\", \"author_fullname\": \"t2_2qewmtrw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"scp 4107 - dead\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpssmd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558200511.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558136263.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ESCP-4107:\\u003C/strong\\u003E \\u003Ca href=\\\"https://www.scp-wiki.net/scp-4107\\\"\\u003EDead\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class:\\u003C/strong\\u003E Euclid\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor:\\u003C/strong\\u003E PeppersGhost\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s up, it\\u0026#39;s me, dyqz. I decided to tackle 4107 after Peppers enlightened us about it on the SCPD discord, and after Brewster gave up on it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet me just preface this by saying 4107 is up there with 4012, 3999 and \\u003Ca href=\\\"http://www.scp-wiki.net/scp-3188\\\"\\u003Eeverything\\u003C/a\\u003E \\u003Ca href=\\\"https://www.scp-wiki.net/kalinins-proposal\\\"\\u003EKalinin\\u003C/a\\u003E \\u003Ca href=\\\"https://www.scp-wiki.net/scp-3084\\\"\\u003Ehas\\u003C/a\\u003E \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2003\\\"\\u003Ewritten\\u003C/a\\u003E in terms of sheer fuckery. If you haven\\u0026#39;t read 4107 already, I thoroughly encourage you to.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyways, on with the declass.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBrief Summary\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E4107 is a collection of the same woman\\u0026#39;s corpse. Around 311 of the corpses have been found, with the same DNA, wounds, basically the same corpse. Over and over again. No one knows what she is, no one knows why her corpse keeps reappearing. No one knows anything, apart from her injuries, which are... fucking wack. Here they are.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EA big long gash down her forearm. Scratches found on the bones, made by a human finger. Presumably her own fingers.\\u003C/li\\u003E\\n\\u003Cli\\u003EAll teeth have been cut off\\u003C/li\\u003E\\n\\u003Cli\\u003EHer milk teeth found in her stomach\\u003C/li\\u003E\\n\\u003Cli\\u003EFingernails and toenails ripped off, the skin at the base of the fingers peeled\\u003C/li\\u003E\\n\\u003Cli\\u003EThe head\\u0026#39;s hair has been threaded into the upper back\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E...Nice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Foundation ruled the cause of death as blood loss. There\\u0026#39;s also these confusing lines.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAll injuries are believed to have been inflicted antemortem. In all cases, evidence has indicated that the victim changed clothes between the time most of the injuries were inflicted and the moment of death. Other traces of the victim\\u0026#39;s actions before death, such as footprints and unfinished meals, are also occasionally found in the vicinity.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFor your information, antemortem means \\u0026#39;before death\\u0026#39;. So she had to have lived through all the head stitching and the teeth ripping and the toenail pulling. Yikes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s not all, because of course it\\u0026#39;s not. 4107 can\\u0026#39;t be mentioned with \\u003Cem\\u003Ea specific action\\u003C/em\\u003E. No matter what you try to do, what sneaky tricks you try to pull, you can\\u0026#39;t mention \\u003Cem\\u003Ethis action\\u003C/em\\u003E while talking about 4107.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMeta\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, while you read my summary, I hope you went through the same sense of confusion everyone else did while they were reading the article. Just the strangest, weirdest injuries happening to this girl over and over again, with no clear link between any of them. And what is \\u003Cem\\u003Ethis goddamned action?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis might be disappointing to you, but I have no answers. I don\\u0026#39;t know what happened to the girl. I don\\u0026#39;t know what the action is. Maybe you can read up on the Discussion page, some interesting theories are present there. I do know something of use, however. And to learn of that, we\\u0026#39;ll need to learn more about the article itself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe article was written as part of a draft swap between two authors, Peppers and Othello. \\u003Ca href=\\\"http://topia.wikidot.com/the-draft-othello-be-offering-for-draft-swap\\\"\\u003EHere\\u0026#39;s the original article by Othello, for anybody curious.\\u003C/a\\u003E The main gist of the article is that it\\u0026#39;s a woman who committed suicide, with the anomalous effect that anyone who sees her corpse believe she was murdered, and try to go on a crazy witch hunt to learn more about her \\u0026#39;murder\\u0026#39;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, what is 4107? On a meta level, it is a replication of that effect in real life. The article has all of these weird symptoms that happened to this girl that are seemingly unconnected, and the reason for that is to get you thinking. What happened? What really happened to this girl, why are there so many injuries? But that\\u0026#39;s not the REAL point of the article. The real point of the article, \\u003Ca href=\\\"https://imgur.com/a/6FZgiye\\\"\\u003Ein Peppers\\u0026#39; own words,\\u003C/a\\u003E it is the simulation of an infohazard. If you don\\u0026#39;t remember what an infohazard is, here\\u0026#39;s a short explanation.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAn \\u003Cem\\u003Einfohazard\\u003C/em\\u003E, as coined by Sorts, is something that is triggered if you simply know about it. It is similar to but distinct from a \\u003Cem\\u003Ememetic\\u003C/em\\u003E agent because a \\u003Cem\\u003Ememetic\\u003C/em\\u003E agent is pure information whereas an \\u003Cem\\u003Einfohazard\\u003C/em\\u003E is generally an object. \\u003Ca href=\\\"http://www.scp-wiki.net/scp-426\\\"\\u003ESCP-426\\u003C/a\\u003E (I Am A Toaster) is a perfect example of this.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ERecall Othello\\u0026#39;s article, about how people kept trying to explain her suicide as murder. This article makes you those people. You know about this girl, with these weird wounds, and you\\u0026#39;re inclined to try to explain everything away. You\\u0026#39;re creating backstories for it that fit 4107\\u0026#39;s effects best. That, in a nutshell, is what 4107 is. Trying to force you to explain the unexplainable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat answer might be unsatisfying. Honestly, it is. It\\u0026#39;s REALLY unsatisfying. I wanna know what happened to this girl too. But the fact of the matter is that the unsolvability of the article is key to making it effective. Would it really be effective if, say, there was a nice explanation to everything? No. Because then you wouldn\\u0026#39;t keep thinking about it, you wouldn\\u0026#39;t keep trying to theorize about it, and you\\u0026#39;d certainly forget about it sooner or later. It\\u0026#39;d just be another mundane, somewhat weird article.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Peppers\\u0026#39; own words,\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESo while there is an answer for the textual level mystery, the actual purpose of the article is the meta level. The whole point of the textual level is that it can be filled in with all sorts of different interpretations, and the fact that one \\u003Cem\\u003Emay be\\u003C/em\\u003E the \\u003Cem\\u003Eone true\\u003C/em\\u003E interpretation is what creates the meta compulsion.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAlso,\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThere is more to the mystery, but the answer only exists to be something that\\u0026#39;s sought.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETheories\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI originally had a separate part of this article that was meant to explain the textual mystery, because as Peppers said:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EFwiw in regards to the actual original mystery in the article, I\\u0026#39;ll go ahead and say that at least one person\\u0026#39;s theory that I\\u0026#39;ve heard pretty much correctly guessed about 80% of the backstory I had in mind. So it\\u0026#39;s basically solvable\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESo let\\u0026#39;s go through some theories then! What could this even be? Honestly the declass wouldn\\u0026#39;t be complete without some attempt at explaining what\\u0026#39;s going on here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe\\u0026#39;ll start off by figuring out what the \\u003Cem\\u003Eaforementioned action\\u003C/em\\u003E is. There are two answers I (ripped off of the Discussions tab) think have some merit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA theory is that the \\u003Cem\\u003Eaforementioned action\\u003C/em\\u003E is the act of suicide. The slit wrists certainly point to that, alongside the scratches on the bone itself. Those don\\u0026#39;t seem like murder marks, rather suicide marks. You\\u0026#39;d think a thorough, scientific article on this woman would make some passing mentions to the possibility of suicide, but that\\u0026#39;s not present in the article. ctrl+f \\u0026quot;suicide\\u0026quot; doesn\\u0026#39;t pull anything up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut that can\\u0026#39;t possibly be true - there\\u0026#39;s no way that she stitched her hairs to her back herself, that\\u0026#39;s not humanly possible. Rather, let\\u0026#39;s think. Why would she purposely be censoring some thoughts, or rather, some theories about her death?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause those theories aren\\u0026#39;t true. By preventing people from talking about suicide about her in any way, she\\u0026#39;s reinforcing the idea that it\\u0026#39;s NOT suicide. Her killer\\u0026#39;s out there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, to explain the injuries.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you scroll down and look at the tags, there\\u0026#39;s a tag that stands out. \\u0026quot;loop\\u0026quot;. \\u0026quot;loop\\u0026quot; is certainly an interesting tag, and it gives me a perfect segue into this next bit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHer murderer is either her past self or her future self trying to kill her, and you\\u0026#39;ve heard the grandfather paradox - the one where killing your grandfather in the past leads to Temporal Fuckery - her trying to kill her past self led to Temporal Fuckery. That\\u0026#39;s why her body keeps reanimating, that\\u0026#39;s why her old teeth are in her stomach and her new teeth gone. It\\u0026#39;s all a part of the Temporal Fuckery. How\\u0026#39;d she get the means to go to the past to kill herself?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow she got the past means to kill herself, I\\u0026#39;m not sure. Not everything really needs to have an origin, and there\\u0026#39;s not much in the article about her origin anyway. That\\u0026#39;s not important. She can also censor things about \\u003Cem\\u003Ea certain action that is probably suicide\\u003C/em\\u003E, so clearly we\\u0026#39;re dealing with someone weird here, most likely a reality bender. That\\u0026#39;s not the important parts of the article.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EWait,\\u003C/em\\u003E you think. \\u003Cem\\u003EI thought it wasn\\u0026#39;t suicide?\\u003C/em\\u003E \\u003Cem\\u003EYou just said it wasn\\u0026#39;t like, two paragraphs ago.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHey fuck you I\\u0026#39;m not done yet. Her killer is some Temporally Fucked version of herself that\\u0026#39;s still out there on the run, and TECHNICALLY it\\u0026#39;s not suicide (this is a stretch I know) so just hear me out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOk I think that\\u0026#39;s all I have, that\\u0026#39;s my main theory. In summary, her past self (or future self) went back in time (or forward in time) to kill herself but then that created some Temporal Fuckery which resulted in 4107.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not claiming that this is true. I could be completely off base, but the important thing is that - the theories aren\\u0026#39;t the main issue here. That\\u0026#39;s not the REAL meat of the article, the real meat of the article is the act of theorizing. Because when you do that, you are fulfilling the article\\u0026#39;s purpose. Recall that it\\u0026#39;s a simulation of an infohazard. Theorizing about it, thinking about it, trying to fill in some gaps, that\\u0026#39;s what 4107 is about. I encourage you to think of some theories of your own, maybe even share them in the comments if you\\u0026#39;d like. We can compare and think of the correct answer - it\\u0026#39;s out there, Peppers said it.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EThis is an interesting article in many ways. It\\u0026#39;s well written, with good execution and a really fucking interesting mystery. It\\u0026#39;s a brilliant new idea that I haven\\u0026#39;t seen before on the site, even with all of the meta articles out there. So go read it and upvote. It recently cracked +100, maybe you can help it crack +200.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s all I have for you today. Thanks for reading.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?auto=webp\\u0026s=1553a87c5e9cc9a77446c6201895fe3e249eb1a0\", \"width\": 835, \"height\": 340}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0d7497f34f16a9edfdc923c233c6b5e3110e1d46\", \"width\": 108, \"height\": 43}, {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=2a2ce22bd1794280aa8ac8690f1a65e0cc54ce8a\", \"width\": 216, \"height\": 87}, {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5b2a5cbcc715d7dd08e742f6350327555b98d40a\", \"width\": 320, \"height\": 130}, {\"url\": \"https://external-preview.redd.it/MQDJQo_O08Vbk5lP8UscEMUyQqWjqJMnBCSBXfhRmhc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a38702857c8dc996beed473e395c484b90c0c10d\", \"width\": 640, \"height\": 260}], \"variants\": {}, \"id\": \"GNqlwzMFaNw_8CcLzPq1qR2pANG92KVPHLXd7RKU3PI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpssmd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dyqz\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpssmd/scp_4107_dead/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpssmd/scp_4107_dead/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558107463.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_14ln8v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bpqdnn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UNqhsOUJmWQ2t4sHX0UOTnzheok0G9SVqpRL6ffKMuU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558123374.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgflip.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?auto=webp\\u0026s=fddbe8a9b179ed977621edcd7999d89a6c1fdcec\", \"width\": 360, \"height\": 202}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2ff40466a56ae465ba222ff2c92d17a9ea5f4bca\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d7b9d6edfe19f3d744b036f76950800e2e9e8bb3\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/OmB35e_Rmf2lKuw6mK-YBCpT7OE6kCjMwOot6pJ2cC4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=548b4b887e3fefb2504b5554475d4b30f7d44a63\", \"width\": 320, \"height\": 179}], \"variants\": {}, \"id\": \"NSuoweBBRwM2msxx3gGpw9BRiUbbSHHOamy4surpy3U\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpqdnn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kilroy83\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpqdnn/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgflip.com/gif/2wm2zx\", \"subreddit_subscribers\": 703, \"created_utc\": 1558094574.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://www.youtube.com/watch?time\\\\_continue=123\\u0026v=6xItQ-cWgK0](https://www.youtube.com/watch?time_continue=123\\u0026v=6xItQ-cWgK0)\", \"author_fullname\": \"t2_1gk7l8fh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inauguration of the Montreal Paddock\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpk55p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558080308.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?time_continue=123\\u0026amp;v=6xItQ-cWgK0\\\"\\u003Ehttps://www.youtube.com/watch?time_continue=123\\u0026amp;v=6xItQ-cWgK0\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?auto=webp\\u0026s=053c40f1229c86afac6ab313fb6ddd103c166f15\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fe7f90a1f704ce581f914fa65344ff85ddff6298\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d2a2b15e83f83b69d39ef9cede0f14e8ab336eaf\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/mDgX4To2brgnBxJiCWhIqzMPZV92TIGDTX247DVOzhE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=54828e7e42bdab5059c348f799314cec96477c21\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"5YD429GR93M7FILAKNtTqyWyiOeA_fEXsM79eqTgh0w\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpk55p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"canisra\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpk55p/inauguration_of_the_montreal_paddock/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpk55p/inauguration_of_the_montreal_paddock/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558051508.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*Part 1 is [HERE](https://www.reddit.com/r/fixingmovies/comments/ak8qt1/my_take_on_fixing_the_dark_universe/), and Part 2 is [HERE](https://www.reddit.com/r/fixingmovies/comments/bomg7i/my_take_on_fixing_the_dark_universe_part_2/)*.\\n\\n*I promise, I'll only post one more of these before I call it quits. Real talk: I wanted to include my big grand finale in this post, but it got a little too long.*\\n\\n*Thanks to everyone who's followed along so far! I appreciate all of the comments!*\\n_____________________\\n\\n***The Case*** *(2026)*\\n\\n*Setting: New York, 1948*\\n\\nJust as the events of *The Vampire* are unfolding in Moscow in 1948, *another* story transpires on the other side of the Atlantic.\\n\\nThree years after the end of World War II, as thousands of battle-scarred American veterans adjust to peacetime, we meet a New York private detective named **Hank**. Not too long ago, Hank was a crack operator in the American **OSS**, and ran numerous daring missions against the Nazi war machine. As he attempts to put his military service behind him, he now runs a small-time private investigation firm out of a cramped office in Brooklyn, where he spends his days solving problems for desperate New Yorkers too afraid to turn to the police. When not pounding the pavement in search of clues, he enjoys the occasional romantic liaison with **Mary**\\u2014a pretty young reporter from a local tabloid newspaper, who occasionally hits him up for story leads.\\n\\nTo most casual observers, Hank is your typical square-jawed, street-smart private eye\\u2014but when people get to know him, they gradually notice a few odd details about him. He refuses to speak about his experiences in the war, but occasionally makes vague references to \\\"**The London Assignment**\\\", a dangerous OSS mission that went wrong. He regularly meets with an old contact from his OSS days, who supplies him with **unlabeled bottles of pills**, which he takes on a regular basis. Most strangely, there isn't a single mirror in his apartment, and he habitually avoids reflective surfaces, as if he's afraid of his own reflection.\\n\\nAs our story begins, the tabloid rags of New York are abuzz with stories about a new public menace:\\n\\\"**The Gemini Killer**\\\", a malevolent serial murderer who maims his victims by gruesomely ***removing half of their faces***. While the NYPD launches a manhunt for the elusive killer, Hank takes to the streets to launch his own investigation, convinced that he can find him before the police do. While he's ordinarily content to stay out of law enforcement's way, this case is distinctly personal for Hank, since the Gemini Killer's latest victim was his partner, a man named **Gabe**. Though he does his best to maintain a stoic facade, Hank can't help but feel a twinge of survivor's guilt, as he knows that *he* easily could have fallen prey to the killer instead.\\n\\nIn the first scene, Hank turns up at the scene of the Gemini Killer's latest murder, where the police are scouring the scene for clues. **Detective Enfield**, the cop in charge of the NYPD's manhunt, attempts to shoo him away from the crime scene, but he sticks around long enough to pick up one crucial clue: the newest murder victim was found with a distinctive tattoo along his arm, which Hank instantly recognizes as the work of a well-known Brooklyn tattoo artist with a devoted clientele. \\n\\nArmed with that useful nugget of information, Hank heads to the tattoo shop to interview the tattoo artist about his client, and he learns that the murder victim\\u2014a man named \\\"**Poole**\\\"\\u2014had a reputation for paranoia, and he was convinced that someone near his home in **the Bowery** was stalking him. Too late, the tattoo artist realizes that Poole's suspicions were true. Determined to help Hank avenge him, he gives him as much information as he can about Poole's personal life, hoping that Hank might be able to find his killer by retracing the steps in his daily routine.\\n\\nAs Hank searches the Bowery for further clues, his search window narrows considerably when he tracks down a craftsman who makes specialty knives, and the craftsman lets it slip\\u2014after an intense round of questioning\\u2014that he sold a vast collection of **surgical blades** to a mysterious man with a frightening appearance. As his search continues, Hank finally manages to track down a secluded apartment building in a crime-ridden neighborhood that the police avoid, and he realizes that he's struck gold when the landlord admits that he has a reclusive tenant in **Apartment 86** who he's never seen in person.\\n\\nUnder cover of darkness, Hank scales the building's fire escape and stealthily sneaks through the window of Apartment 86, finding it empty. As he lights a lamp to investigate, he recoils in horror at what he sees inside:\\n\\nThe room is filled with a vast collection of plaster casts of human heads, and each one is covered with grotesque \\\"masks\\\" stitched together from ***human skin***. Each one is perfectly split down the middle and stitched together from two different human specimens\\u2014and Hank soon realizes that they're crafted from the severed faces of the Gemini Killer's victims!\\n\\nAs he creeps through the apartment, Hank is unable to find any information that might allow him to identify the Gemini Killer, but he discovers\\u2014much to his surprise\\u2014that the mirror in the apartment's bathroom has been removed from the wall. Sufficiently shaken, he slips out of the apartment before anyone can catch him snooping, and he returns to his office as quickly as he can.\\n\\nBack at his office, Hank has a chance encounter with Mary, who's looking for a few juicy quotes about the search for the Gemini Killer. He declines to tell her anything about the case, but he invites her inside for a steamy night of lovemaking. As Hank closes his office door and locks it behind him, the camera closes on the door's glass panel, and\\u2014for the first time\\u2014we see the inscription written on the door.\\n\\nClear as day, it reads **\\\"Henry Jekyll, Licensed Private Investigator\\\"**.\\n\\n***SURPRISE!***\\n\\nOur story was actually an adaptation of *The Strange Case of Dr. Jekyll and Mr. Hyde* all along. \\\"Hank\\\" is **Henry Jekyll**, his partner \\\"Gabe\\\" was **Gabriel Utterson**, and his lover \\\"Mary\\\" is **Mary Reilly**. And now that you know that, you can probably guess the identity of the sinister Gemini Killer.\\n\\nHours later, Hank suddenly finds himself in a dark alleyway with his hands covered in blood. As he realizes what's happening, he realizes\\u2014much to his shock\\u2014that Mary is lying at his feet, stone dead. In his pocket, Hank finds a razor-sharp surgical knife, still soaked with Mary's fresh flesh blood. Worse still: when he reaches down to close her eyelids, he finds that half of her face has been removed.\\n\\nFinally piecing together the many strange details about the case, Hank realizes that *he* was the Gemini Killer all along\\u2014but for some reason, he can't seem to recall any of the many murders that he committed. It's as if someone else has been living inside his mind, leaving lengthy blank spaces in his memory whenever they take over.\\n\\nShaken to the core, Hank flees to a nearby dive bar, where he locks himself in the nearest bathroom. As he attempts to collect himself, he looks into the mirror above the sink, and sees his reflection staring back with a wicked grin on its face. From the depths of the mirror, the Gemini Killer\\u2014whose calls himself \\\"**Eddie Hyde**\\\"\\u2014mockingly congratulates Hank on finally solving the case of a lifetime.\\n\\nMoments later, Enfield kicks in the front door, and a squad of armed NYPD officers storm the bar with guns drawn. It seems that the police have found Mary's corpse, and eyewitness reports have led them to the bar. Hank sees that his clothes are soaked with blood, and he realizes that Enfield will arrest him as soon as he sees him. As he begins to panic, Hyde takes the opportunity to seize control of Hank's body again\\u2014and as he exits the bathroom to face the police, he reveals his trusty blades.\\n\\nIn a gruesome battle scene, Hyde mercilessly slaughters the police one by one, and finally kills Enfield with a well-placed headshot from a stolen service revolver. Too late, Hank regains control of his body and flees into the streets, leaving the blood-soaked bar behind him.\\n\\nAs the police flood the streets of New York looking for him, Hank narrowly manages to track down his old contact in the OSS, hoping that he might have some answers. Against his better judgment, his old contact (\\\"**The Major**\\\") agrees to provide what little help he can. Though the Major is initially reluctant to help a wanted fugitive, Hank insists that he's innocent.\\n\\nThe Major confirms that the fallout from \\\"The London Assignment\\\" affected Hank in strange ways, and he has never truly recovered from the events that transpired that day. The mysterious pills, which the Major still gives Hank without complaint, were intended to suppress his \\\"condition\\\". While they once worked perfectly, they're beginning to lose their effectiveness as the murderous Eddie Hyde becomes stronger. But try as he might, Hank still can't remember what happened in London.\\n\\nThe Major agrees to give Hank the dossier containing all known files on the London Assignment, which he secretly took from OSS headquarters after the agency was disbanded after the war. Inside the file, the Major tells Hank that he'll find everything that he needs to know about the mission\\u2014including the address of the building in London where everything went wrong. Determined to finally solve the mystery of his past, Hank leaves with the file, planning to book a flight to London with the help of a bootlegger pilot who owes him a favor.\\n\\nBefore he leaves, the Major gives Hank a final word of advice:\\n\\n*\\\"Watch yourself, son. If those cops find me, I'll insist you were never here. But if they find* ***you****, you're on your own.\\\"*\\n\\nAfter stealing a car and making his way upstate, Hank manages to make it to **the bootlegger**'s secret airstrip, where his plane is primed and ready for takeoff. After some tense negotiations, he agrees to fly Hank to London\\u2014but he insists that it's a one-way trip. Before they leave, he assures Hank that a wanted fugitive *isn't* the most dangerous cargo that he's ever smuggled. As they take off, Hank requests\\u2014to the bootlegger's befuddlement\\u2014that he handcuff him to his seat's armrest until they land.\\n\\nAs the plane rises into the air and soars over the Atlantic, Hank closes his eyes and drifts off to sleep. As he does, he finally remembers what happened in London...\\n\\nAt the height of the war, the OSS assigned Hank to track down and capture the infamous Nazi scientist **Dr. Hans Niemann**, who was rumored to be the mind behind the Third Reich's deadliest military projects. For years, Hank stalked the mad doctor across Europe as the war raged on\\u2014but Niemann was always one step ahead of him, and he never found him. But he *did* stumble upon evidence that the doctor was involved with a shady organization known as \\\"**Prodigium**\\\". As the OSS investigated Prodigium for clues about Niemann's whereabouts, they eventually discovered that the group had a base of operations in the heart of London itself, and they managed to uncover a plot to smuggle a mysterious chemical formula across the English Channel. Suspecting that the group was trafficking chemical weapons, the OSS deployed Hank to London to track down the formula and steal it.\\n\\nWorking fast, Hank managed to assassinate the Prodigium operative who was entrusted with carrying the formula, and he managed to escape with the leather briefcase containing the chemical vials. But his luck ran out when he tried to drive to the airport to rendezvous with his handlers, and discovered\\u2014just moments too late\\u2014that Prodigium had planted a bomb in his car. Hank bailed out of the car as the engine exploded, and he narrowly managed to survive the blast with minor burns and a concussion\\u2014but the case was destroyed in the explosion, and Hank was doused with chemicals as the glass vials shattered.\\n\\nAs he stumbled to his feet\\u2014half-blind, disoriented, and struggling to speak\\u2014he felt the chemicals seeping through his skin, transforming him in ways that he couldn't explain. Without warning, he found himself seized by the dark urge to kill, maim, and torture, and he felt a malevolent presence clawing its way into his heart. Worst of all, he found that he *couldn't remember his own name!* But as his vision cleared, he found himself staring right at the iron sign for **Hyde Park**. In that moment, Eddie Hyde was born.\\n\\nHank wakes as the plane touches down in a remote airfield on the outskirts of London. With his gun loaded and ready, he sets out in search of the address listed in the Major's files, which is allegedly the location of Prodigium's London headquarters. After a long walk across the bombed-out face of London, he finds a stately Victorian mansion at the address, and a well-dressed butler arrives at the door and invites him inside\\u2014as if he was expecting him.\\n\\nHank walks through the door of the mansion, where he's greeted by a room full of well-dressed men and women wearing masquerade masks, who gather around a circle of candles surrounding a mirror. In a scene eerily mirroring **Victor Frankenstein**'s first encounter with Prodigium at **Ingolstadt University** over a century earlier, the assembled members of the cult begin chanting an obscene prayer to \\\"**The Dark One**\\\". As Hank contemplates his reflection in the mirror, he sees the Dark One place a hand on his shoulder, causing half of his face to rot and wither away.\\n\\nAs Hank shrinks back in fear, a pair of armed guards force him to his feet and confiscate his gun, and an **elderly man** steps forward to greet him. In his gnarled hands, he carries an ornate silver dish with a golden chalice balanced atop it. The chalice is filled to the brim with green liquid\\u2014which Hank recognizes as the mysterious chemical agent from the London Assignment.\\n\\nThe elderly man introduces himself as the new leader of Prodigium, and\\u2014at long last\\u2014he explains the full story behind the mysterious formula.\\n\\nFor years, Prodigium's scholars and alchemists have believed that it might be possible to unlock the repressed dark side of the human psyche through chemistry, allowing ordinary people to unlock the darkness within their souls. Ever since his incident in London accidentally exposed him to the formula, the dark side of Hank's personality has been fighting for complete control of his soul, manifesting as his *alter ego* Hyde. But if he were to voluntarily ingest a full dose of the formula, Prodigium believes that his soul would be entirely consumed by darkness, allowing him to serve as the Dark One's living emissary on Earth.\\n\\nThe leader of Prodigium offers Hank a choice: he can willingly drink from the golden chalice, allowing Hyde to take full control of his mind, in exchange for his life; if he refuses to drink the potion, Prodigium will kill him\\u2014but he'll die with his free will fully intact.\\n\\nTorn between two impossible choices, Hank tries to push the chalice away, but Hyde seizes control of his body just in time to stop him. Although Hank tries his best to regain control, Hyde grabs the chalice and eagerly gulps the potion down, and the assembled members of Prodigium applaud as his eyes glaze over. Moments later, Hank smiles maliciously\\u2014and it's instantly clear that he has become Hyde permanently.\\n\\nThen all hell breaks loose.\\n\\nAs the elderly leader of Prodigium congratulates Hyde and welcomes him into the fold, Hyde grabs him by the throat and *breaks his neck* with his bare hands, then pulls a hidden blade from his boot and brutally murders three Prodigium members by slashing their jugulars. The guards draw their guns and try to shoot him, but Hyde manages to steal a guard's pistol, and a massive shootout ensues as he fires back at them. Once again, Hyde tears through the helpless crowd with ease, killing everyone he sees. As dozens of Prodigium members fall to the ground bleeding out, he throws his head back and cackles maliciously.\\n\\n***\\\"I'M NOBODY'S SLAVE!\\\"*** he screams. ***\\\"NO ONE CONTROLS EDDIE HYDE\\u2014GOD OR MORTAL!\\\"***\\n\\nThe shootout rages on, and the assembled guards try to surround Hyde\\u2014but he mows down everyone that dares to take a shot at him. Finally, as reinforcements arrive from another room, the guards manage to force Hyde into the basement of the mansion. As bullets fly, Hyde forces his way into the **boiler room**, where he takes a shot at the antique brass boiler. As the boiler explodes, half of the mansion suddenly erupts in flames, and most of the surviving Prodigium members burn to death as they're consumed in the blaze. The few remaining members futilely try to make a run for it; some of them pass out from smoke inhalation, and others are crushed by falling debris as the roof begins to collapse.\\n\\nAs the fire spreads through the mansion, Hyde defiantly shoots everyone he sees. When he finally runs out of bullets, he realizes that every last member of Prodigium is dead. The Dark One's cult failed in their mission, but Eddie Hyde got exactly what he wanted: Hank Jekyll lost the battle for his soul, and Hyde won.\\n\\n...Or *did* he?\\n\\nAs an exhausted Hyde drops his empty pistol and slumps against the wall, he looks into a nearby mirror. But it's not Hank that stares back from the mirror\\u2014it's *Hyde*.\\n\\nAgainst all odds, Hank has managed to summon the strength to fight Hyde, giving him control of his body for a few precious minutes. And for those few minutes, Hank chooses to stay in the basement as the mansion collapses around him.\\n\\nStaring out at him from the depths of the mirror, Hyde finally loses his cocky composure as he begs Hank to run to safety, warning him that he'll die if he doesn't.\\n\\n*\\\"That's the idea, Eddie old pal,\\\"* Hank says smirking. *\\\"Don't worry about me. My soul's in order, and I don't have any regrets. If this is what I've gotta do to bring you down, I consider it an honest trade. As for you... You've only got a few minutes left. Don't waste them in anger.*\\\"\\n\\nHyde screams at Hank as the fire envelops the basement. But as the mirror melts, and Hyde's face vanishes, his voice is finally silent. With that, the screen fades to black.\\n\\nA few hours later, three figures approach the ruins of the mansion as the London police pick their way through the ashes and rubble. As the camera swings around, we see their faces: it's **Eve**, **Lester Talbot**, and **Jacob Van Helsing**. \\n\\nTen years after their first meeting in Paris, the trio are now an inseparable team, and a decade of adventure has turned them into close friends. But as they survey Prodigium's ruined headquarters, they can only stare at the site of the massacre in befuddlement.\\n\\n*\\\"What the hell happened here?\\\"* Eve wonders aloud.\\n\\n*\\\"Perhaps divine justice,\\\"* Jacob says. *\\\"Or perhaps something else.\\\"*\\n\\n*\\\"We'll probably never know,\\\"* Lester says. *\\\"And for once, I think I'm alright with that...\\\"*\\n______________\\n\\n***The Creature*** *(2027)* \\n\\n*Setting: The Pacific, 1958*\\n\\nOur story begins with a flashback.\\n\\nSometime in the 19th century, a few promising young students gather in a cramped classroom at **Ingolstadt University** to hear a lecture from the eccentric old oceanographer **Professor Pierre Arronax**, who tells them an unlikely story about a perilous undersea voyage that he took with a mad sea captain called \\\"*Nemo*\\\". The students\\u2014including a few familiar faces like **Victor Frankenstein**, **Igor Waldman**, **Jack Griffin**, and a young **Abraham Van Helsing**\\u2014listen with bated breath as Arronax tells them about all of the strange things that he saw in the dark depths of the ocean. He tells them about his battles with giant squids, his brief sojourn to the ruins of Atlantis, and his time in the icy waters of the North Pole. But they're truly enraptured when he tells them about his strangest adventure of all: an encounter with a bizarre race of human-fish hybrids who dwell in the deepest depths of the oceans.\\n\\nThough some of the students initially doubt Arronax's story about the bizarre \\\"**ichthyoids**\\\", they change their tune when the Professor shows them a faded daguerrotype photo that he snapped of the creatures from the porthole of Nemo's submarine. As they stare at the grainy photo in awe, Arronax fondly reminisces about his adventure in the deep ocean, but he sadly admits that he's never been able to convince his scientific colleagues that the ichthyoids are real. But if *another* scientist managed to prove the creatures' existence by capturing an ichthyoid specimen and bringing it to the surface, that scientist's name would be enshrined forever in the annals of history. For in the depths of the ocean, he tells them, there are always mysteries waiting to be discovered...\\n\\nThe scenes fades out, and we return to the present day, where we see a familiar figure reading an antique leather diary packed with old photographs. As we zoom in on the diary, we see that it's the personal journal of Abraham Van Helsing\\u2014and one of the pictures is Arronax's photograph of the ichthyoids. And the figure reading the journal is none other than ***Dr. Hans Niemann***.\\n\\nThe year is 1958, and it's been 10 years since Niemann fled Russia and defected to the United States. Ever since that day, he has been hard at work designing weapons of war for the US military, and his handlers in the CIA have been all too happy to conceal his Nazi past. In years past, he played a key role in developing the hydrogen bomb for the Army; more recently, he designed the nuclear submarine **USS** ***Nautilus*** (named after Nemo's legendary submarine) for the US Navy, and helped plan **Project Mercury** for the fledgling space agency **NASA**. In time, his inventions may even put men on the Moon!\\n\\nBut after a decade of loyally working for the US government, Niemann now has a more personal project in mind: with the US Navy's blessing, he wants to lead an experimental submarine voyage to the uncharted depths of the Pacific Ocean, hoping to *finally* prove the existence of the mysterious ichthyoids. To do it, he has his sights set on one location: the shadowy **Marianas Trench**.\\n\\nOn a pristine Summer day, Niemann leaves the coast of **San Francisco** and sets off on a long ocean voyage to a remote naval base off the coast of Japan, where the US Navy has recently completed work on his experimental deep-ocean submersible **USS** ***Ammonite***. As he boards the *Ammonite* and prepares to dive, he recruits a motley crew of \\\"assistants\\\" to aid him in the journey. Hawaiian fisherman **Keoni Kamaka**, a decorated Navy veteran who saw action at Pearl Harbor, signs on as navigator; bookish young Japanese scientist **Ishiro Nakamura**, who devoted his life to science after losing his parents in the bombing of Hiroshima, agrees to be Niemann's research assistant; grizzled Australian sailor **John Allerdyce** (\\\"**Johnny Dice**\\\" to his friends) enlists as First Mate; and Jamaican-born engineer **Oliver \\\"Twisty\\\" O'Rear\\\"** joins the crew as a radio operator.\\n\\nAlthough they all sign on to crew the *Ammonite*, Niemann chooses not to tell them the true purpose of the mission\\u2014believing that they wouldn't have agreed to help him if they knew what he was really after. As far as they know, they're only crewing the vessel on its experimental test run.\\n\\nAs the *Ammonite* dives, tension soon erupts among the crew as Niemann admits that they'll be at sea for much longer than he led them to believe. Niemann knows that the Navy likely won't give him another chance to research the ichthyoids, so he refuses to return to port until he's found what he's looking for. Later, tensions escalate when the crew presses him on the true purpose of his mission, and Niemann admits that he's looking for a deep-ocean life-form that's never been proven to exist. Seeing Niemann as a delusional madman, Twisty and Kamaka tell him that his mission is a fool's errand, and they encourage him to call off the mission before he gets them all killed\\u2014though Ishiro is intrigued by the possibility of researching the ichthyoids.\\n\\nOn the second day of the voyage, another argument erupts among the crew when Johnny Dice questions Niemann about his past. Knowing of the doctor's German heritage, he comes to suspect (rightly) that he's one of the Nazi researchers who defected to the Allies to save himself after World War II. Still remembering his time spent fighting in the Pacific, he's repulsed by the idea of working for a Nazi. But Niemann, who has always worked hard to keep his past a secret, becomes enraged by Johnny's unrelenting questions\\u2014and he ultimately loses his temper and strikes him. As a fight ensues, Twisty is forced to intercede and separate the two, and they agree to keep their distance for the remainder of the voyage. But that night, tragedy strikes...\\n\\nAs he attempts to sleep, Niemann is plagued by a series of disturbing dreams about scaly figures lurking in the shadows of the Pacific. Before he wakes\\u2014shaking and drenched in sweat\\u2014he sees powerful tentacles reaching out to grab him. When he turns on his lamp, Niemann sees Johnny Dice standing over his bed with a knife in his hand, his eyes blank and glazed over. In a trance, Johnny lunges at Niemann and tries to stab him, and Niemann fights back. As a fight ensues, Johnny and Niemann struggle over the knife, and Johnny begins murmuring two words over and over again:\\n\\n*\\\"Go back... Go back... Go back...\\\"*\\n\\nAs Niemann tries to wrestle the knife from Johnny's hand, he accidentally stabs him in the chest with it, and calls the rest of the crew to help him stop the bleeding. When the others arrive, they become even *more* suspicious of Niemann when they see him standing over Johnny with a knife lodged in his chest. Remembering Niemann's violent argument with Johnny earlier in the day, they're reluctant to believe Niemann when he insists that Johnny attacked him. Try as they might, they're unable to stop the bleeding, and Johnny soon bleeds to death.\\n\\nRattled by Johnny's sudden death, the crew becomes even more terrified when the *Ammonite* suddenly stops moving, and they realize that the propeller has inexplicably become *jammed*. As they convene to discuss repairs, Ishiro suddenly recoils in fear when he sees a grotesque scaly face staring at him through the porthole; when he ties to get a closer look at it, the face vanishes into the darkness.\\n\\nAs the crew tries to convince Niemann to return to the surface, Kamaka agrees to don a diving suit and exit the airlock to repair the propeller from outside. In a tense scene, he feels his way along the exterior of the *Ammonite* while using a flashlight to light his way. When he finally reaches the propeller, he realizes that it isn't jammed, but it's somehow been *dismantled* with great care and precision. Working fast, he manages to reassemble the propeller\\u2014but as soon as he does, he's *grabbed* by powerful webbed hands, which drag him from the sub and pull him into the darkness. As the rest of the crew attempt to stay in touch with him via radio, they hear Kamaka's terrified screams as he dies.\\n\\nDespite their suspicions of Niemann, Twisty and Ishiro agree to cooperate with him until they can return to the surface\\u2014and with Kamaka's death, they suddenly realize that the ichthyoids are very real. Still, Niemann convinces them to remain below the surface for one more day, if only to ensure that Johnny and Kamaka didn't die in vain. Hours later, though, tragedy strikes again.\\n\\nWhen Niemann pays a visit to Ishiro's bunk to go over some research with him, he discovers that Ishiro has *committed suicide* by slashing his throat with a knife\\u2014and before dying, he daubed the words *\\\"GO BACK\\\"* on the bulkhead in his own blood. When Twisty finds him, he finally begins to believe Niemann's story about Johnny's mysterious trance. *Something* in the depths seems to be manipulating the crew's minds, driving them into madness in an effort to stop their voyage from uncovering too much. As they discuss recent events, Niemann tells Twisty about his bizarre dreams, theorizing that he had psychic images projected into his mind while he slept. His suspicions are confirmed when Twisty admits that he has also been having bizarre nightmares since the voyage began\\u2014and he *also* saw an image of a massive tentacled creature in his dreams.\\n\\nAt first, Twisty theorizes that the ichthyoids are responsible for the crew's madness, but Niemann persuades him that there's a more powerful force at work. After all, it would take an incredibly powerful brain to project such strong images directly into another creature's mind, and the ichthyoids are too small to possess such power. But since the ichthyoids always appear to act in perfect synchronicity with one another, perhaps they're *also* being psychically controlled. Perhaps they're just *drones*, and a more powerful creature is acting as their Queen.\\n\\nIn a desperate effort to avenge the other crew-members, Twisty agrees to help Niemann find the mysterious being that drove them to their deaths, knowing that he won't be able to live with himself if he passes up a chance to kill it. Pushing the *Ammonite*'s sonar array to its limits, he soon detects a massive structure on a nearby underwater plateau, and decides to check it out.\\n\\nIn the climax, Niemann and Twisty both don diving suits and venture onto the plateau, where\\u2014to their shock and horror\\u2014they discover a massive metallic structure perched atop the oceanic ridge, guarded by a massive swarm of ichthyoids. As Niemann approaches the metal structure, he realizes that it's actually a ***spaceship***, and he finds his mind swimming with bizarre voices and images whenever he moves closer to it.\\n\\nAt long last, Niemann realizes the truth about the ichthyoids: they're aquatic *aliens* who've been hiding in Earth's ocean ever since their spacecraft crashed in the Pacific. Judging by the amount of coral covering the drowned spacecraft, Niemann realizes that the ship must have crashed more than two centuries ago, long before any humans would have been able to find it.\\n\\nArmed with knives, harpoons and explosives, Twisty and Niemann drive off the ichthyoids in a massive underwater battle, and Niemann narrowly manages to force his way into the heart of the ruined spaceship\\u2014where a **massive tentacled beast** is waiting at the center of a glass enclosure. **The Creature**'s body resembles a massive swollen *brain*, explaining how its psychic abilities were so powerful. But despite the long reach of its tentacles, its body is far too massive to move; instead, it uses its psychic abilities to force enslaved ichthyoids to do its bidding, and they loyally bring it food and safeguard its larval offspring. In the glass enclosure where the Creature sits, the walls are lined with countess rows of transparent jars filled with murky amniotic fluid; inside each one, we can clearly see a miniature embryo with a brain-like body and slender tentacles.\\n\\nIn a climactic showdown, the Creature bombards Niemann with psychic energy and swipes at him with its massive tentacles. Niemann nearly passes out as the beast invades his mind, but he manages to land a good shot with a harpoon gun tipped with explosives, and he successfully wounds the Creature's massive brain. As it dies, the ichthyoids fall into disarray, and Niemann finally relaxes as the Creature's psychic attacks stop. With that, he and Twisty return to the *Ammonite* and make their way back to the surface, where they go their separate ways\\u2014agreeing *never* to tell anyone what they saw in the depths of the Pacific.\\n\\nIn the final scene, Niemann returns to his old lab in a remote military base on the California coast, where he resumes his old research. But when his handlers are out of earshot, he opens a locked cabinet and retrieves a small glass object. It's *one of the Creature's embryos*, which he secretly took from the Creature's drowned spaceship. As he lays the cylindrical glass jar on his table and strokes the glass fondly, the embryo's small tentacles begin to twitch.\\n\\n*\\\"Come, little one...\\\"* he says. *\\\"Together, I think you and I are going to accomplish wonders...\\\"*\\n\\nJust outside the base, where the Pacific Ocean laps at the stony shore, a scaly green head pokes out of the water. Moments later, an ichthyoid crawls out of the ocean and walks onto the beach, with six more behind it. Inside the lab, Niemann waves his hand\\u2014and in an instant, the scaly creatures are still.\\n\\nNiemann smiles, and the screen fades to black...\\n______________\\n\\n***The Case:*** In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\\"The Gemini Killer\\\" to justice. In a twist, it's revealed that Hank's full name is \\\"Henry Jekyll\\\", and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium's secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\n\\n***The Creature:*** Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they're aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they're slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures' drowned spaceship to kill the monster, and manages to steal one of the monster's embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpiv79\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1558565104.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558073240.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EPart 1 is \\u003Ca href=\\\"https://www.reddit.com/r/fixingmovies/comments/ak8qt1/my_take_on_fixing_the_dark_universe/\\\"\\u003EHERE\\u003C/a\\u003E, and Part 2 is \\u003Ca href=\\\"https://www.reddit.com/r/fixingmovies/comments/bomg7i/my_take_on_fixing_the_dark_universe_part_2/\\\"\\u003EHERE\\u003C/a\\u003E\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EI promise, I\\u0026#39;ll only post one more of these before I call it quits. Real talk: I wanted to include my big grand finale in this post, but it got a little too long.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EThanks to everyone who\\u0026#39;s followed along so far! I appreciate all of the comments!\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Case\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003E(2026)\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESetting: New York, 1948\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust as the events of \\u003Cem\\u003EThe Vampire\\u003C/em\\u003E are unfolding in Moscow in 1948, \\u003Cem\\u003Eanother\\u003C/em\\u003E story transpires on the other side of the Atlantic.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThree years after the end of World War II, as thousands of battle-scarred American veterans adjust to peacetime, we meet a New York private detective named \\u003Cstrong\\u003EHank\\u003C/strong\\u003E. Not too long ago, Hank was a crack operator in the American \\u003Cstrong\\u003EOSS\\u003C/strong\\u003E, and ran numerous daring missions against the Nazi war machine. As he attempts to put his military service behind him, he now runs a small-time private investigation firm out of a cramped office in Brooklyn, where he spends his days solving problems for desperate New Yorkers too afraid to turn to the police. When not pounding the pavement in search of clues, he enjoys the occasional romantic liaison with \\u003Cstrong\\u003EMary\\u003C/strong\\u003E\\u2014a pretty young reporter from a local tabloid newspaper, who occasionally hits him up for story leads.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo most casual observers, Hank is your typical square-jawed, street-smart private eye\\u2014but when people get to know him, they gradually notice a few odd details about him. He refuses to speak about his experiences in the war, but occasionally makes vague references to \\u0026quot;\\u003Cstrong\\u003EThe London Assignment\\u003C/strong\\u003E\\u0026quot;, a dangerous OSS mission that went wrong. He regularly meets with an old contact from his OSS days, who supplies him with \\u003Cstrong\\u003Eunlabeled bottles of pills\\u003C/strong\\u003E, which he takes on a regular basis. Most strangely, there isn\\u0026#39;t a single mirror in his apartment, and he habitually avoids reflective surfaces, as if he\\u0026#39;s afraid of his own reflection.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs our story begins, the tabloid rags of New York are abuzz with stories about a new public menace:\\n\\u0026quot;\\u003Cstrong\\u003EThe Gemini Killer\\u003C/strong\\u003E\\u0026quot;, a malevolent serial murderer who maims his victims by gruesomely \\u003Cstrong\\u003E\\u003Cem\\u003Eremoving half of their faces\\u003C/em\\u003E\\u003C/strong\\u003E. While the NYPD launches a manhunt for the elusive killer, Hank takes to the streets to launch his own investigation, convinced that he can find him before the police do. While he\\u0026#39;s ordinarily content to stay out of law enforcement\\u0026#39;s way, this case is distinctly personal for Hank, since the Gemini Killer\\u0026#39;s latest victim was his partner, a man named \\u003Cstrong\\u003EGabe\\u003C/strong\\u003E. Though he does his best to maintain a stoic facade, Hank can\\u0026#39;t help but feel a twinge of survivor\\u0026#39;s guilt, as he knows that \\u003Cem\\u003Ehe\\u003C/em\\u003E easily could have fallen prey to the killer instead.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the first scene, Hank turns up at the scene of the Gemini Killer\\u0026#39;s latest murder, where the police are scouring the scene for clues. \\u003Cstrong\\u003EDetective Enfield\\u003C/strong\\u003E, the cop in charge of the NYPD\\u0026#39;s manhunt, attempts to shoo him away from the crime scene, but he sticks around long enough to pick up one crucial clue: the newest murder victim was found with a distinctive tattoo along his arm, which Hank instantly recognizes as the work of a well-known Brooklyn tattoo artist with a devoted clientele. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EArmed with that useful nugget of information, Hank heads to the tattoo shop to interview the tattoo artist about his client, and he learns that the murder victim\\u2014a man named \\u0026quot;\\u003Cstrong\\u003EPoole\\u003C/strong\\u003E\\u0026quot;\\u2014had a reputation for paranoia, and he was convinced that someone near his home in \\u003Cstrong\\u003Ethe Bowery\\u003C/strong\\u003E was stalking him. Too late, the tattoo artist realizes that Poole\\u0026#39;s suspicions were true. Determined to help Hank avenge him, he gives him as much information as he can about Poole\\u0026#39;s personal life, hoping that Hank might be able to find his killer by retracing the steps in his daily routine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Hank searches the Bowery for further clues, his search window narrows considerably when he tracks down a craftsman who makes specialty knives, and the craftsman lets it slip\\u2014after an intense round of questioning\\u2014that he sold a vast collection of \\u003Cstrong\\u003Esurgical blades\\u003C/strong\\u003E to a mysterious man with a frightening appearance. As his search continues, Hank finally manages to track down a secluded apartment building in a crime-ridden neighborhood that the police avoid, and he realizes that he\\u0026#39;s struck gold when the landlord admits that he has a reclusive tenant in \\u003Cstrong\\u003EApartment 86\\u003C/strong\\u003E who he\\u0026#39;s never seen in person.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnder cover of darkness, Hank scales the building\\u0026#39;s fire escape and stealthily sneaks through the window of Apartment 86, finding it empty. As he lights a lamp to investigate, he recoils in horror at what he sees inside:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe room is filled with a vast collection of plaster casts of human heads, and each one is covered with grotesque \\u0026quot;masks\\u0026quot; stitched together from \\u003Cstrong\\u003E\\u003Cem\\u003Ehuman skin\\u003C/em\\u003E\\u003C/strong\\u003E. Each one is perfectly split down the middle and stitched together from two different human specimens\\u2014and Hank soon realizes that they\\u0026#39;re crafted from the severed faces of the Gemini Killer\\u0026#39;s victims!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he creeps through the apartment, Hank is unable to find any information that might allow him to identify the Gemini Killer, but he discovers\\u2014much to his surprise\\u2014that the mirror in the apartment\\u0026#39;s bathroom has been removed from the wall. Sufficiently shaken, he slips out of the apartment before anyone can catch him snooping, and he returns to his office as quickly as he can.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack at his office, Hank has a chance encounter with Mary, who\\u0026#39;s looking for a few juicy quotes about the search for the Gemini Killer. He declines to tell her anything about the case, but he invites her inside for a steamy night of lovemaking. As Hank closes his office door and locks it behind him, the camera closes on the door\\u0026#39;s glass panel, and\\u2014for the first time\\u2014we see the inscription written on the door.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EClear as day, it reads \\u003Cstrong\\u003E\\u0026quot;Henry Jekyll, Licensed Private Investigator\\u0026quot;\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESURPRISE!\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur story was actually an adaptation of \\u003Cem\\u003EThe Strange Case of Dr. Jekyll and Mr. Hyde\\u003C/em\\u003E all along. \\u0026quot;Hank\\u0026quot; is \\u003Cstrong\\u003EHenry Jekyll\\u003C/strong\\u003E, his partner \\u0026quot;Gabe\\u0026quot; was \\u003Cstrong\\u003EGabriel Utterson\\u003C/strong\\u003E, and his lover \\u0026quot;Mary\\u0026quot; is \\u003Cstrong\\u003EMary Reilly\\u003C/strong\\u003E. And now that you know that, you can probably guess the identity of the sinister Gemini Killer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHours later, Hank suddenly finds himself in a dark alleyway with his hands covered in blood. As he realizes what\\u0026#39;s happening, he realizes\\u2014much to his shock\\u2014that Mary is lying at his feet, stone dead. In his pocket, Hank finds a razor-sharp surgical knife, still soaked with Mary\\u0026#39;s fresh flesh blood. Worse still: when he reaches down to close her eyelids, he finds that half of her face has been removed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally piecing together the many strange details about the case, Hank realizes that \\u003Cem\\u003Ehe\\u003C/em\\u003E was the Gemini Killer all along\\u2014but for some reason, he can\\u0026#39;t seem to recall any of the many murders that he committed. It\\u0026#39;s as if someone else has been living inside his mind, leaving lengthy blank spaces in his memory whenever they take over.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShaken to the core, Hank flees to a nearby dive bar, where he locks himself in the nearest bathroom. As he attempts to collect himself, he looks into the mirror above the sink, and sees his reflection staring back with a wicked grin on its face. From the depths of the mirror, the Gemini Killer\\u2014whose calls himself \\u0026quot;\\u003Cstrong\\u003EEddie Hyde\\u003C/strong\\u003E\\u0026quot;\\u2014mockingly congratulates Hank on finally solving the case of a lifetime.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoments later, Enfield kicks in the front door, and a squad of armed NYPD officers storm the bar with guns drawn. It seems that the police have found Mary\\u0026#39;s corpse, and eyewitness reports have led them to the bar. Hank sees that his clothes are soaked with blood, and he realizes that Enfield will arrest him as soon as he sees him. As he begins to panic, Hyde takes the opportunity to seize control of Hank\\u0026#39;s body again\\u2014and as he exits the bathroom to face the police, he reveals his trusty blades.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a gruesome battle scene, Hyde mercilessly slaughters the police one by one, and finally kills Enfield with a well-placed headshot from a stolen service revolver. Too late, Hank regains control of his body and flees into the streets, leaving the blood-soaked bar behind him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the police flood the streets of New York looking for him, Hank narrowly manages to track down his old contact in the OSS, hoping that he might have some answers. Against his better judgment, his old contact (\\u0026quot;\\u003Cstrong\\u003EThe Major\\u003C/strong\\u003E\\u0026quot;) agrees to provide what little help he can. Though the Major is initially reluctant to help a wanted fugitive, Hank insists that he\\u0026#39;s innocent.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Major confirms that the fallout from \\u0026quot;The London Assignment\\u0026quot; affected Hank in strange ways, and he has never truly recovered from the events that transpired that day. The mysterious pills, which the Major still gives Hank without complaint, were intended to suppress his \\u0026quot;condition\\u0026quot;. While they once worked perfectly, they\\u0026#39;re beginning to lose their effectiveness as the murderous Eddie Hyde becomes stronger. But try as he might, Hank still can\\u0026#39;t remember what happened in London.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Major agrees to give Hank the dossier containing all known files on the London Assignment, which he secretly took from OSS headquarters after the agency was disbanded after the war. Inside the file, the Major tells Hank that he\\u0026#39;ll find everything that he needs to know about the mission\\u2014including the address of the building in London where everything went wrong. Determined to finally solve the mystery of his past, Hank leaves with the file, planning to book a flight to London with the help of a bootlegger pilot who owes him a favor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore he leaves, the Major gives Hank a final word of advice:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Watch yourself, son. If those cops find me, I\\u0026#39;ll insist you were never here. But if they find\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003Eyou\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E, you\\u0026#39;re on your own.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter stealing a car and making his way upstate, Hank manages to make it to \\u003Cstrong\\u003Ethe bootlegger\\u003C/strong\\u003E\\u0026#39;s secret airstrip, where his plane is primed and ready for takeoff. After some tense negotiations, he agrees to fly Hank to London\\u2014but he insists that it\\u0026#39;s a one-way trip. Before they leave, he assures Hank that a wanted fugitive \\u003Cem\\u003Eisn\\u0026#39;t\\u003C/em\\u003E the most dangerous cargo that he\\u0026#39;s ever smuggled. As they take off, Hank requests\\u2014to the bootlegger\\u0026#39;s befuddlement\\u2014that he handcuff him to his seat\\u0026#39;s armrest until they land.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the plane rises into the air and soars over the Atlantic, Hank closes his eyes and drifts off to sleep. As he does, he finally remembers what happened in London...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the height of the war, the OSS assigned Hank to track down and capture the infamous Nazi scientist \\u003Cstrong\\u003EDr. Hans Niemann\\u003C/strong\\u003E, who was rumored to be the mind behind the Third Reich\\u0026#39;s deadliest military projects. For years, Hank stalked the mad doctor across Europe as the war raged on\\u2014but Niemann was always one step ahead of him, and he never found him. But he \\u003Cem\\u003Edid\\u003C/em\\u003E stumble upon evidence that the doctor was involved with a shady organization known as \\u0026quot;\\u003Cstrong\\u003EProdigium\\u003C/strong\\u003E\\u0026quot;. As the OSS investigated Prodigium for clues about Niemann\\u0026#39;s whereabouts, they eventually discovered that the group had a base of operations in the heart of London itself, and they managed to uncover a plot to smuggle a mysterious chemical formula across the English Channel. Suspecting that the group was trafficking chemical weapons, the OSS deployed Hank to London to track down the formula and steal it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWorking fast, Hank managed to assassinate the Prodigium operative who was entrusted with carrying the formula, and he managed to escape with the leather briefcase containing the chemical vials. But his luck ran out when he tried to drive to the airport to rendezvous with his handlers, and discovered\\u2014just moments too late\\u2014that Prodigium had planted a bomb in his car. Hank bailed out of the car as the engine exploded, and he narrowly managed to survive the blast with minor burns and a concussion\\u2014but the case was destroyed in the explosion, and Hank was doused with chemicals as the glass vials shattered.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he stumbled to his feet\\u2014half-blind, disoriented, and struggling to speak\\u2014he felt the chemicals seeping through his skin, transforming him in ways that he couldn\\u0026#39;t explain. Without warning, he found himself seized by the dark urge to kill, maim, and torture, and he felt a malevolent presence clawing its way into his heart. Worst of all, he found that he \\u003Cem\\u003Ecouldn\\u0026#39;t remember his own name!\\u003C/em\\u003E But as his vision cleared, he found himself staring right at the iron sign for \\u003Cstrong\\u003EHyde Park\\u003C/strong\\u003E. In that moment, Eddie Hyde was born.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHank wakes as the plane touches down in a remote airfield on the outskirts of London. With his gun loaded and ready, he sets out in search of the address listed in the Major\\u0026#39;s files, which is allegedly the location of Prodigium\\u0026#39;s London headquarters. After a long walk across the bombed-out face of London, he finds a stately Victorian mansion at the address, and a well-dressed butler arrives at the door and invites him inside\\u2014as if he was expecting him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHank walks through the door of the mansion, where he\\u0026#39;s greeted by a room full of well-dressed men and women wearing masquerade masks, who gather around a circle of candles surrounding a mirror. In a scene eerily mirroring \\u003Cstrong\\u003EVictor Frankenstein\\u003C/strong\\u003E\\u0026#39;s first encounter with Prodigium at \\u003Cstrong\\u003EIngolstadt University\\u003C/strong\\u003E over a century earlier, the assembled members of the cult begin chanting an obscene prayer to \\u0026quot;\\u003Cstrong\\u003EThe Dark One\\u003C/strong\\u003E\\u0026quot;. As Hank contemplates his reflection in the mirror, he sees the Dark One place a hand on his shoulder, causing half of his face to rot and wither away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Hank shrinks back in fear, a pair of armed guards force him to his feet and confiscate his gun, and an \\u003Cstrong\\u003Eelderly man\\u003C/strong\\u003E steps forward to greet him. In his gnarled hands, he carries an ornate silver dish with a golden chalice balanced atop it. The chalice is filled to the brim with green liquid\\u2014which Hank recognizes as the mysterious chemical agent from the London Assignment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe elderly man introduces himself as the new leader of Prodigium, and\\u2014at long last\\u2014he explains the full story behind the mysterious formula.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor years, Prodigium\\u0026#39;s scholars and alchemists have believed that it might be possible to unlock the repressed dark side of the human psyche through chemistry, allowing ordinary people to unlock the darkness within their souls. Ever since his incident in London accidentally exposed him to the formula, the dark side of Hank\\u0026#39;s personality has been fighting for complete control of his soul, manifesting as his \\u003Cem\\u003Ealter ego\\u003C/em\\u003E Hyde. But if he were to voluntarily ingest a full dose of the formula, Prodigium believes that his soul would be entirely consumed by darkness, allowing him to serve as the Dark One\\u0026#39;s living emissary on Earth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe leader of Prodigium offers Hank a choice: he can willingly drink from the golden chalice, allowing Hyde to take full control of his mind, in exchange for his life; if he refuses to drink the potion, Prodigium will kill him\\u2014but he\\u0026#39;ll die with his free will fully intact.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETorn between two impossible choices, Hank tries to push the chalice away, but Hyde seizes control of his body just in time to stop him. Although Hank tries his best to regain control, Hyde grabs the chalice and eagerly gulps the potion down, and the assembled members of Prodigium applaud as his eyes glaze over. Moments later, Hank smiles maliciously\\u2014and it\\u0026#39;s instantly clear that he has become Hyde permanently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen all hell breaks loose.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the elderly leader of Prodigium congratulates Hyde and welcomes him into the fold, Hyde grabs him by the throat and \\u003Cem\\u003Ebreaks his neck\\u003C/em\\u003E with his bare hands, then pulls a hidden blade from his boot and brutally murders three Prodigium members by slashing their jugulars. The guards draw their guns and try to shoot him, but Hyde manages to steal a guard\\u0026#39;s pistol, and a massive shootout ensues as he fires back at them. Once again, Hyde tears through the helpless crowd with ease, killing everyone he sees. As dozens of Prodigium members fall to the ground bleeding out, he throws his head back and cackles maliciously.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;M NOBODY\\u0026#39;S SLAVE!\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E he screams. \\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;NO ONE CONTROLS EDDIE HYDE\\u2014GOD OR MORTAL!\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe shootout rages on, and the assembled guards try to surround Hyde\\u2014but he mows down everyone that dares to take a shot at him. Finally, as reinforcements arrive from another room, the guards manage to force Hyde into the basement of the mansion. As bullets fly, Hyde forces his way into the \\u003Cstrong\\u003Eboiler room\\u003C/strong\\u003E, where he takes a shot at the antique brass boiler. As the boiler explodes, half of the mansion suddenly erupts in flames, and most of the surviving Prodigium members burn to death as they\\u0026#39;re consumed in the blaze. The few remaining members futilely try to make a run for it; some of them pass out from smoke inhalation, and others are crushed by falling debris as the roof begins to collapse.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the fire spreads through the mansion, Hyde defiantly shoots everyone he sees. When he finally runs out of bullets, he realizes that every last member of Prodigium is dead. The Dark One\\u0026#39;s cult failed in their mission, but Eddie Hyde got exactly what he wanted: Hank Jekyll lost the battle for his soul, and Hyde won.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...Or \\u003Cem\\u003Edid\\u003C/em\\u003E he?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs an exhausted Hyde drops his empty pistol and slumps against the wall, he looks into a nearby mirror. But it\\u0026#39;s not Hank that stares back from the mirror\\u2014it\\u0026#39;s \\u003Cem\\u003EHyde\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAgainst all odds, Hank has managed to summon the strength to fight Hyde, giving him control of his body for a few precious minutes. And for those few minutes, Hank chooses to stay in the basement as the mansion collapses around him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStaring out at him from the depths of the mirror, Hyde finally loses his cocky composure as he begs Hank to run to safety, warning him that he\\u0026#39;ll die if he doesn\\u0026#39;t.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;That\\u0026#39;s the idea, Eddie old pal,\\u0026quot;\\u003C/em\\u003E Hank says smirking. \\u003Cem\\u003E\\u0026quot;Don\\u0026#39;t worry about me. My soul\\u0026#39;s in order, and I don\\u0026#39;t have any regrets. If this is what I\\u0026#39;ve gotta do to bring you down, I consider it an honest trade. As for you... You\\u0026#39;ve only got a few minutes left. Don\\u0026#39;t waste them in anger.\\u003C/em\\u003E\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyde screams at Hank as the fire envelops the basement. But as the mirror melts, and Hyde\\u0026#39;s face vanishes, his voice is finally silent. With that, the screen fades to black.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA few hours later, three figures approach the ruins of the mansion as the London police pick their way through the ashes and rubble. As the camera swings around, we see their faces: it\\u0026#39;s \\u003Cstrong\\u003EEve\\u003C/strong\\u003E, \\u003Cstrong\\u003ELester Talbot\\u003C/strong\\u003E, and \\u003Cstrong\\u003EJacob Van Helsing\\u003C/strong\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETen years after their first meeting in Paris, the trio are now an inseparable team, and a decade of adventure has turned them into close friends. But as they survey Prodigium\\u0026#39;s ruined headquarters, they can only stare at the site of the massacre in befuddlement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;What the hell happened here?\\u0026quot;\\u003C/em\\u003E Eve wonders aloud.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Perhaps divine justice,\\u0026quot;\\u003C/em\\u003E Jacob says. \\u003Cem\\u003E\\u0026quot;Or perhaps something else.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;ll probably never know,\\u0026quot;\\u003C/em\\u003E Lester says. \\u003Cem\\u003E\\u0026quot;And for once, I think I\\u0026#39;m alright with that...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Creature\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003E(2027)\\u003C/em\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESetting: The Pacific, 1958\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur story begins with a flashback.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESometime in the 19th century, a few promising young students gather in a cramped classroom at \\u003Cstrong\\u003EIngolstadt University\\u003C/strong\\u003E to hear a lecture from the eccentric old oceanographer \\u003Cstrong\\u003EProfessor Pierre Arronax\\u003C/strong\\u003E, who tells them an unlikely story about a perilous undersea voyage that he took with a mad sea captain called \\u0026quot;\\u003Cem\\u003ENemo\\u003C/em\\u003E\\u0026quot;. The students\\u2014including a few familiar faces like \\u003Cstrong\\u003EVictor Frankenstein\\u003C/strong\\u003E, \\u003Cstrong\\u003EIgor Waldman\\u003C/strong\\u003E, \\u003Cstrong\\u003EJack Griffin\\u003C/strong\\u003E, and a young \\u003Cstrong\\u003EAbraham Van Helsing\\u003C/strong\\u003E\\u2014listen with bated breath as Arronax tells them about all of the strange things that he saw in the dark depths of the ocean. He tells them about his battles with giant squids, his brief sojourn to the ruins of Atlantis, and his time in the icy waters of the North Pole. But they\\u0026#39;re truly enraptured when he tells them about his strangest adventure of all: an encounter with a bizarre race of human-fish hybrids who dwell in the deepest depths of the oceans.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThough some of the students initially doubt Arronax\\u0026#39;s story about the bizarre \\u0026quot;\\u003Cstrong\\u003Eichthyoids\\u003C/strong\\u003E\\u0026quot;, they change their tune when the Professor shows them a faded daguerrotype photo that he snapped of the creatures from the porthole of Nemo\\u0026#39;s submarine. As they stare at the grainy photo in awe, Arronax fondly reminisces about his adventure in the deep ocean, but he sadly admits that he\\u0026#39;s never been able to convince his scientific colleagues that the ichthyoids are real. But if \\u003Cem\\u003Eanother\\u003C/em\\u003E scientist managed to prove the creatures\\u0026#39; existence by capturing an ichthyoid specimen and bringing it to the surface, that scientist\\u0026#39;s name would be enshrined forever in the annals of history. For in the depths of the ocean, he tells them, there are always mysteries waiting to be discovered...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe scenes fades out, and we return to the present day, where we see a familiar figure reading an antique leather diary packed with old photographs. As we zoom in on the diary, we see that it\\u0026#39;s the personal journal of Abraham Van Helsing\\u2014and one of the pictures is Arronax\\u0026#39;s photograph of the ichthyoids. And the figure reading the journal is none other than \\u003Cstrong\\u003E\\u003Cem\\u003EDr. Hans Niemann\\u003C/em\\u003E\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe year is 1958, and it\\u0026#39;s been 10 years since Niemann fled Russia and defected to the United States. Ever since that day, he has been hard at work designing weapons of war for the US military, and his handlers in the CIA have been all too happy to conceal his Nazi past. In years past, he played a key role in developing the hydrogen bomb for the Army; more recently, he designed the nuclear submarine \\u003Cstrong\\u003EUSS\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003ENautilus\\u003C/em\\u003E\\u003C/strong\\u003E (named after Nemo\\u0026#39;s legendary submarine) for the US Navy, and helped plan \\u003Cstrong\\u003EProject Mercury\\u003C/strong\\u003E for the fledgling space agency \\u003Cstrong\\u003ENASA\\u003C/strong\\u003E. In time, his inventions may even put men on the Moon!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut after a decade of loyally working for the US government, Niemann now has a more personal project in mind: with the US Navy\\u0026#39;s blessing, he wants to lead an experimental submarine voyage to the uncharted depths of the Pacific Ocean, hoping to \\u003Cem\\u003Efinally\\u003C/em\\u003E prove the existence of the mysterious ichthyoids. To do it, he has his sights set on one location: the shadowy \\u003Cstrong\\u003EMarianas Trench\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn a pristine Summer day, Niemann leaves the coast of \\u003Cstrong\\u003ESan Francisco\\u003C/strong\\u003E and sets off on a long ocean voyage to a remote naval base off the coast of Japan, where the US Navy has recently completed work on his experimental deep-ocean submersible \\u003Cstrong\\u003EUSS\\u003C/strong\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EAmmonite\\u003C/em\\u003E\\u003C/strong\\u003E. As he boards the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E and prepares to dive, he recruits a motley crew of \\u0026quot;assistants\\u0026quot; to aid him in the journey. Hawaiian fisherman \\u003Cstrong\\u003EKeoni Kamaka\\u003C/strong\\u003E, a decorated Navy veteran who saw action at Pearl Harbor, signs on as navigator; bookish young Japanese scientist \\u003Cstrong\\u003EIshiro Nakamura\\u003C/strong\\u003E, who devoted his life to science after losing his parents in the bombing of Hiroshima, agrees to be Niemann\\u0026#39;s research assistant; grizzled Australian sailor \\u003Cstrong\\u003EJohn Allerdyce\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EJohnny Dice\\u003C/strong\\u003E\\u0026quot; to his friends) enlists as First Mate; and Jamaican-born engineer \\u003Cstrong\\u003EOliver \\u0026quot;Twisty\\u0026quot; O\\u0026#39;Rear\\u0026quot;\\u003C/strong\\u003E joins the crew as a radio operator.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlthough they all sign on to crew the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E, Niemann chooses not to tell them the true purpose of the mission\\u2014believing that they wouldn\\u0026#39;t have agreed to help him if they knew what he was really after. As far as they know, they\\u0026#39;re only crewing the vessel on its experimental test run.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E dives, tension soon erupts among the crew as Niemann admits that they\\u0026#39;ll be at sea for much longer than he led them to believe. Niemann knows that the Navy likely won\\u0026#39;t give him another chance to research the ichthyoids, so he refuses to return to port until he\\u0026#39;s found what he\\u0026#39;s looking for. Later, tensions escalate when the crew presses him on the true purpose of his mission, and Niemann admits that he\\u0026#39;s looking for a deep-ocean life-form that\\u0026#39;s never been proven to exist. Seeing Niemann as a delusional madman, Twisty and Kamaka tell him that his mission is a fool\\u0026#39;s errand, and they encourage him to call off the mission before he gets them all killed\\u2014though Ishiro is intrigued by the possibility of researching the ichthyoids.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the second day of the voyage, another argument erupts among the crew when Johnny Dice questions Niemann about his past. Knowing of the doctor\\u0026#39;s German heritage, he comes to suspect (rightly) that he\\u0026#39;s one of the Nazi researchers who defected to the Allies to save himself after World War II. Still remembering his time spent fighting in the Pacific, he\\u0026#39;s repulsed by the idea of working for a Nazi. But Niemann, who has always worked hard to keep his past a secret, becomes enraged by Johnny\\u0026#39;s unrelenting questions\\u2014and he ultimately loses his temper and strikes him. As a fight ensues, Twisty is forced to intercede and separate the two, and they agree to keep their distance for the remainder of the voyage. But that night, tragedy strikes...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he attempts to sleep, Niemann is plagued by a series of disturbing dreams about scaly figures lurking in the shadows of the Pacific. Before he wakes\\u2014shaking and drenched in sweat\\u2014he sees powerful tentacles reaching out to grab him. When he turns on his lamp, Niemann sees Johnny Dice standing over his bed with a knife in his hand, his eyes blank and glazed over. In a trance, Johnny lunges at Niemann and tries to stab him, and Niemann fights back. As a fight ensues, Johnny and Niemann struggle over the knife, and Johnny begins murmuring two words over and over again:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Go back... Go back... Go back...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Niemann tries to wrestle the knife from Johnny\\u0026#39;s hand, he accidentally stabs him in the chest with it, and calls the rest of the crew to help him stop the bleeding. When the others arrive, they become even \\u003Cem\\u003Emore\\u003C/em\\u003E suspicious of Niemann when they see him standing over Johnny with a knife lodged in his chest. Remembering Niemann\\u0026#39;s violent argument with Johnny earlier in the day, they\\u0026#39;re reluctant to believe Niemann when he insists that Johnny attacked him. Try as they might, they\\u0026#39;re unable to stop the bleeding, and Johnny soon bleeds to death.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERattled by Johnny\\u0026#39;s sudden death, the crew becomes even more terrified when the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E suddenly stops moving, and they realize that the propeller has inexplicably become \\u003Cem\\u003Ejammed\\u003C/em\\u003E. As they convene to discuss repairs, Ishiro suddenly recoils in fear when he sees a grotesque scaly face staring at him through the porthole; when he ties to get a closer look at it, the face vanishes into the darkness.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the crew tries to convince Niemann to return to the surface, Kamaka agrees to don a diving suit and exit the airlock to repair the propeller from outside. In a tense scene, he feels his way along the exterior of the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E while using a flashlight to light his way. When he finally reaches the propeller, he realizes that it isn\\u0026#39;t jammed, but it\\u0026#39;s somehow been \\u003Cem\\u003Edismantled\\u003C/em\\u003E with great care and precision. Working fast, he manages to reassemble the propeller\\u2014but as soon as he does, he\\u0026#39;s \\u003Cem\\u003Egrabbed\\u003C/em\\u003E by powerful webbed hands, which drag him from the sub and pull him into the darkness. As the rest of the crew attempt to stay in touch with him via radio, they hear Kamaka\\u0026#39;s terrified screams as he dies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDespite their suspicions of Niemann, Twisty and Ishiro agree to cooperate with him until they can return to the surface\\u2014and with Kamaka\\u0026#39;s death, they suddenly realize that the ichthyoids are very real. Still, Niemann convinces them to remain below the surface for one more day, if only to ensure that Johnny and Kamaka didn\\u0026#39;t die in vain. Hours later, though, tragedy strikes again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen Niemann pays a visit to Ishiro\\u0026#39;s bunk to go over some research with him, he discovers that Ishiro has \\u003Cem\\u003Ecommitted suicide\\u003C/em\\u003E by slashing his throat with a knife\\u2014and before dying, he daubed the words \\u003Cem\\u003E\\u0026quot;GO BACK\\u0026quot;\\u003C/em\\u003E on the bulkhead in his own blood. When Twisty finds him, he finally begins to believe Niemann\\u0026#39;s story about Johnny\\u0026#39;s mysterious trance. \\u003Cem\\u003ESomething\\u003C/em\\u003E in the depths seems to be manipulating the crew\\u0026#39;s minds, driving them into madness in an effort to stop their voyage from uncovering too much. As they discuss recent events, Niemann tells Twisty about his bizarre dreams, theorizing that he had psychic images projected into his mind while he slept. His suspicions are confirmed when Twisty admits that he has also been having bizarre nightmares since the voyage began\\u2014and he \\u003Cem\\u003Ealso\\u003C/em\\u003E saw an image of a massive tentacled creature in his dreams.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt first, Twisty theorizes that the ichthyoids are responsible for the crew\\u0026#39;s madness, but Niemann persuades him that there\\u0026#39;s a more powerful force at work. After all, it would take an incredibly powerful brain to project such strong images directly into another creature\\u0026#39;s mind, and the ichthyoids are too small to possess such power. But since the ichthyoids always appear to act in perfect synchronicity with one another, perhaps they\\u0026#39;re \\u003Cem\\u003Ealso\\u003C/em\\u003E being psychically controlled. Perhaps they\\u0026#39;re just \\u003Cem\\u003Edrones\\u003C/em\\u003E, and a more powerful creature is acting as their Queen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a desperate effort to avenge the other crew-members, Twisty agrees to help Niemann find the mysterious being that drove them to their deaths, knowing that he won\\u0026#39;t be able to live with himself if he passes up a chance to kill it. Pushing the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E\\u0026#39;s sonar array to its limits, he soon detects a massive structure on a nearby underwater plateau, and decides to check it out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the climax, Niemann and Twisty both don diving suits and venture onto the plateau, where\\u2014to their shock and horror\\u2014they discover a massive metallic structure perched atop the oceanic ridge, guarded by a massive swarm of ichthyoids. As Niemann approaches the metal structure, he realizes that it\\u0026#39;s actually a \\u003Cstrong\\u003E\\u003Cem\\u003Espaceship\\u003C/em\\u003E\\u003C/strong\\u003E, and he finds his mind swimming with bizarre voices and images whenever he moves closer to it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt long last, Niemann realizes the truth about the ichthyoids: they\\u0026#39;re aquatic \\u003Cem\\u003Ealiens\\u003C/em\\u003E who\\u0026#39;ve been hiding in Earth\\u0026#39;s ocean ever since their spacecraft crashed in the Pacific. Judging by the amount of coral covering the drowned spacecraft, Niemann realizes that the ship must have crashed more than two centuries ago, long before any humans would have been able to find it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EArmed with knives, harpoons and explosives, Twisty and Niemann drive off the ichthyoids in a massive underwater battle, and Niemann narrowly manages to force his way into the heart of the ruined spaceship\\u2014where a \\u003Cstrong\\u003Emassive tentacled beast\\u003C/strong\\u003E is waiting at the center of a glass enclosure. \\u003Cstrong\\u003EThe Creature\\u003C/strong\\u003E\\u0026#39;s body resembles a massive swollen \\u003Cem\\u003Ebrain\\u003C/em\\u003E, explaining how its psychic abilities were so powerful. But despite the long reach of its tentacles, its body is far too massive to move; instead, it uses its psychic abilities to force enslaved ichthyoids to do its bidding, and they loyally bring it food and safeguard its larval offspring. In the glass enclosure where the Creature sits, the walls are lined with countess rows of transparent jars filled with murky amniotic fluid; inside each one, we can clearly see a miniature embryo with a brain-like body and slender tentacles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a climactic showdown, the Creature bombards Niemann with psychic energy and swipes at him with its massive tentacles. Niemann nearly passes out as the beast invades his mind, but he manages to land a good shot with a harpoon gun tipped with explosives, and he successfully wounds the Creature\\u0026#39;s massive brain. As it dies, the ichthyoids fall into disarray, and Niemann finally relaxes as the Creature\\u0026#39;s psychic attacks stop. With that, he and Twisty return to the \\u003Cem\\u003EAmmonite\\u003C/em\\u003E and make their way back to the surface, where they go their separate ways\\u2014agreeing \\u003Cem\\u003Enever\\u003C/em\\u003E to tell anyone what they saw in the depths of the Pacific.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the final scene, Niemann returns to his old lab in a remote military base on the California coast, where he resumes his old research. But when his handlers are out of earshot, he opens a locked cabinet and retrieves a small glass object. It\\u0026#39;s \\u003Cem\\u003Eone of the Creature\\u0026#39;s embryos\\u003C/em\\u003E, which he secretly took from the Creature\\u0026#39;s drowned spaceship. As he lays the cylindrical glass jar on his table and strokes the glass fondly, the embryo\\u0026#39;s small tentacles begin to twitch.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Come, little one...\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;Together, I think you and I are going to accomplish wonders...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust outside the base, where the Pacific Ocean laps at the stony shore, a scaly green head pokes out of the water. Moments later, an ichthyoid crawls out of the ocean and walks onto the beach, with six more behind it. Inside the lab, Niemann waves his hand\\u2014and in an instant, the scaly creatures are still.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENiemann smiles, and the screen fades to black...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Case:\\u003C/em\\u003E\\u003C/strong\\u003E In 1940s New York, a private detective named Hank sets out to bring a demented serial killer called \\u0026quot;The Gemini Killer\\u0026quot; to justice. In a twist, it\\u0026#39;s revealed that Hank\\u0026#39;s full name is \\u0026quot;Henry Jekyll\\u0026quot;, and the Gemini Killer is actually his murderous alter ego Edward Hyde. As Hank desperately tries to solve the mystery of how Hyde invaded his psyche, he follows a trail of clues to Prodigium\\u0026#39;s secret lair in London, where Hyde burns Prodigium to the ground in a massive showdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe Creature:\\u003C/em\\u003E\\u003C/strong\\u003E Ten years after fleeing Russia and defecting to the United States, ex-Nazi scientist Dr. Hans Niemann leads an experimental submarine voyage to the Marianas Trench, hoping to find evidence of a legendary race of ocean-dwelling humanoid creatures. As he and his crew battle the creatures in the deep ocean, he ultimately discovers that they\\u0026#39;re aquatic extraterrestrials whose spaceship crashed in the Pacific Ocean centuries ago, and they\\u0026#39;re slaves of a bizarre tentacled monster who controls them with psychic powers. In the final scene, he infiltrates the creatures\\u0026#39; drowned spaceship to kill the monster, and manages to steal one of the monster\\u0026#39;s embryonic offspring\\u2014allowing him to harness its psychic power as a weapon.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpiv79\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpiv79/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpiv79/test/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558044440.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Watch: [Facebook Live](https://www.facebook.com/pg/concacafcom/videos/?ref=page_internal) (United States)/[CONCACAF GO](https://www.concacafgo.com/concacafgo) (Mexico and rest of world)\", \"author_fullname\": \"t2_figd8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing to ensure correct formatting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpik4w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558071621.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWatch: \\u003Ca href=\\\"https://www.facebook.com/pg/concacafcom/videos/?ref=page_internal\\\"\\u003EFacebook Live\\u003C/a\\u003E (United States)/\\u003Ca href=\\\"https://www.concacafgo.com/concacafgo\\\"\\u003ECONCACAF GO\\u003C/a\\u003E (Mexico and rest of world)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/BPVY-99lxG0GPWb0vHMM6NmhhdXQPqhhimCawKs8y74.jpg?auto=webp\\u0026s=7b4adc605b413117f63d41966e6306e3fcf81652\", \"width\": 200, \"height\": 200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/BPVY-99lxG0GPWb0vHMM6NmhhdXQPqhhimCawKs8y74.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=96a134d110e3e628c13f08e5e3d7175e73bce8c8\", \"width\": 108, \"height\": 108}], \"variants\": {}, \"id\": \"uD7ZV9Ek0zNalP6vV36i4DSAtQlvisM9WJxEPbVt61A\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpik4w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rspenmoll\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpik4w/testing_to_ensure_correct_formatting/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpik4w/testing_to_ensure_correct_formatting/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558042821.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_hs1my81\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I do quotes?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bpezwp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558054466.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpezwp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"1LordOfAwesome\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"subreddit_subscribers\": 703, \"created_utc\": 1558025666.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bpezwp\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["1566278"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:36 GMT"], "x-ratelimit-remaining": ["566.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["34"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914356.643145,VS0,VE1317"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["445"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-07T13:32:37"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_bxu0h7"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:38 GMT"], "x-ratelimit-remaining": ["565.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["35"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914358.917536,VS0,VE86"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["443"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_bxu0h7"}, "recorded_at": "2019-06-07T13:32:38"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=99"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 99, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9omn4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559913776.0, \"send_replies\": true, \"parent_id\": \"t1_eq9lk8u\", \"score\": 1, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Take also look at Helm or Ivy.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9omn4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETake also look at Helm or Ivy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9omn4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942576.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9oiqt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"arthurno1\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559913688.0, \"send_replies\": true, \"parent_id\": \"t3_bxtwfg\", \"score\": 1, \"author_fullname\": \"t2_13zo3p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003Ethat's not the case for Windows. I'm not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\n\\nWhile it is true that Windows does not ship with either grep or find, there are myriad of grep and find ports and versions available on Windows, so I don't see how is that a practical problem. Implementing efficient and fast search is not a trivial task, so I personally believe it is better to leave that to external utility such as [ag (silversearcher),](https://github.com/ggreer/the_silver_searcher) [ripgrep](https://github.com/BurntSushi/ripgrep) or maybe latest kid on the block, [hyperscan](https://github.com/intel/hyperscan).\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9oiqt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ethat\\u0026#39;s not the case for Windows. I\\u0026#39;m not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhile it is true that Windows does not ship with either grep or find, there are myriad of grep and find ports and versions available on Windows, so I don\\u0026#39;t see how is that a practical problem. Implementing efficient and fast search is not a trivial task, so I personally believe it is better to leave that to external utility such as \\u003Ca href=\\\"https://github.com/ggreer/the_silver_searcher\\\"\\u003Eag (silversearcher),\\u003C/a\\u003E \\u003Ca href=\\\"https://github.com/BurntSushi/ripgrep\\\"\\u003Eripgrep\\u003C/a\\u003E or maybe latest kid on the block, \\u003Ca href=\\\"https://github.com/intel/hyperscan\\\"\\u003Ehyperscan\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9oiqt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942488.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ob92\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559913518.0, \"send_replies\": true, \"parent_id\": \"t1_eq9lk8u\", \"score\": 1, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There is also `find-lisp-find-dired` which might be of help.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9ob92\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is also \\u003Ccode\\u003Efind-lisp-find-dired\\u003C/code\\u003E which might be of help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9ob92/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559942318.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9mn9c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559912075.0, \"send_replies\": true, \"parent_id\": \"t1_eq8psyw\", \"score\": 1, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I think this fits my need. Thank you for the pointer.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq9mn9c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think this fits my need. Thank you for the pointer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq9mn9c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559940875.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9m7eg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BruceConnor\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559911680.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 1, \"author_fullname\": \"t2_ccvfk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"http://endlessparentheses.com/exclude-directories-from-grep.html\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9m7eg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://endlessparentheses.com/exclude-directories-from-grep.html\\\"\\u003Ehttp://endlessparentheses.com/exclude-directories-from-grep.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9m7eg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559940480.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559911855.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9lk8u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"andreyorst\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559911085.0, \"send_replies\": true, \"parent_id\": \"t1_eq9kr70\", \"score\": 1, \"author_fullname\": \"t2_w7w9e32\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks, I wasn't aware of any of these. This is about using imitating `grep`, but what about `find` - I guess `project-find-file` is what I'm looking for?\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9lk8u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I wasn\\u0026#39;t aware of any of these. This is about using imitating \\u003Ccode\\u003Egrep\\u003C/code\\u003E, but what about \\u003Ccode\\u003Efind\\u003C/code\\u003E - I guess \\u003Ccode\\u003Eproject-find-file\\u003C/code\\u003E is what I\\u0026#39;m looking for?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9lk8u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559939885.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxtwfg\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9kr70\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1559910307.0, \"send_replies\": true, \"parent_id\": \"t3_bxtwfg\", \"score\": 2, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There is `multi-occur`, `multi-isearch` and `project-find-regexp`.\", \"link_title\": \"grep and find but in pure Emacs LISP?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9kr70\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is \\u003Ccode\\u003Emulti-occur\\u003C/code\\u003E, \\u003Ccode\\u003Emulti-isearch\\u003C/code\\u003E and \\u003Ccode\\u003Eproject-find-regexp\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/eq9kr70/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"report_reasons\": null, \"link_author\": \"andreyorst\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"created\": 1559939107.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsyyo9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9k2zg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"user_was_not_found\", \"num_comments\": 22, \"can_mod_post\": false, \"created_utc\": 1559909649.0, \"send_replies\": true, \"parent_id\": \"t3_bsyyo9\", \"score\": 1, \"author_fullname\": \"t2_h1nda\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I take out my notebook and pencil. Open it up. Write notes. Put notebook away.\", \"link_title\": \"What is your note-taking workflow?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9k2zg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI take out my notebook and pencil. Open it up. Write notes. Put notebook away.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/eq9k2zg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/\", \"report_reasons\": null, \"link_author\": \"the_sealed_tanker\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bsyyo9/what_is_your_notetaking_workflow/\", \"created\": 1559938449.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9jwip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"5heikki\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559909470.0, \"send_replies\": true, \"parent_id\": \"t1_eq9hme8\", \"score\": 3, \"author_fullname\": \"t2_h43er\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"No, the zero is great, very easy to tell apart from O. Hack is the best :)\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq9jwip\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, the zero is great, very easy to tell apart from O. Hack is the best :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9jwip/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs shill\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559938270.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9azu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9jk7q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"user_was_not_found\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559909120.0, \"send_replies\": true, \"parent_id\": \"t3_bw9azu\", \"score\": 1, \"author_fullname\": \"t2_h1nda\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[mine](https://raw.githubusercontent.com/ryanolsonx/.emacs.d/master/init.el)\\n\\nI've been really going minimalist lately and this suffices.\", \"link_title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"author_flair_css_class\": null, \"name\": \"t1_eq9jk7q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://raw.githubusercontent.com/ryanolsonx/.emacs.d/master/init.el\\\"\\u003Emine\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been really going minimalist lately and this suffices.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/eq9jk7q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"report_reasons\": null, \"link_author\": \"Rainymood_XI\", \"author_flair_text\": null, \"link_url\": \"https://github.com/Rainymood/dotemacs\", \"created\": 1559937920.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9i5r5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"__i_forgot_my_name__\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559907625.0, \"send_replies\": true, \"parent_id\": \"t1_eq5k72d\", \"score\": 1, \"author_fullname\": \"t2_3agebbhs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"In Firefox I literally removed the tab bar. I feel tabs are just not useful. I don't typically need to see all the tabs, and if I want to go back to a previous or next tab, then I really don't need to see it do I? If I want to switch back to a tab I remember then I just go ahead and search it, otherwise I just maintain one tab and that's typically fine.\\n\\nI used to use tabs as a todo list and that's just not great in practice, I end up with far too many tabs, because I would never close anything. If I want something very close by, I'll typically open another window now, and from that I can actually cross reference, and with tabs out of the way, I can stack them one on top of the other.\\n\\nI never realized how much I could do just from the URL bar in Firefox, but you can switch tabs, search for partial URLs, search history, search bookmarks, create search queries with keywords much like DDG tags, there's just so much I never realized I could do, because I would just heavily depends on tabs, and keeping things in view.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9i5r5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn Firefox I literally removed the tab bar. I feel tabs are just not useful. I don\\u0026#39;t typically need to see all the tabs, and if I want to go back to a previous or next tab, then I really don\\u0026#39;t need to see it do I? If I want to switch back to a tab I remember then I just go ahead and search it, otherwise I just maintain one tab and that\\u0026#39;s typically fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used to use tabs as a todo list and that\\u0026#39;s just not great in practice, I end up with far too many tabs, because I would never close anything. If I want something very close by, I\\u0026#39;ll typically open another window now, and from that I can actually cross reference, and with tabs out of the way, I can stack them one on top of the other.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI never realized how much I could do just from the URL bar in Firefox, but you can switch tabs, search for partial URLs, search history, search bookmarks, create search queries with keywords much like DDG tags, there\\u0026#39;s just so much I never realized I could do, because I would just heavily depends on tabs, and keeping things in view.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq9i5r5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559936425.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hwei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559907338.0, \"send_replies\": true, \"parent_id\": \"t1_eq9hdw0\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks!!\\n\\nIn normal mode, \\u2018p\\u2019 is enough to save the game, in reverse mode, \\u2018p RET\\u2019 is needed. Since RET is ignored in normal mode, I decided to show the same intructions on the header line for both modes, but I should probably change that. I couldn\\u2019t find a way of making \\u2018p\\u2019 cancel the prompt when using completing-read (when playing reverse mode), so RET is also needed to read it in.\\n\\nI like the idea of showing the other correct keys!I\\u2019ll add it to my todo list.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hwei\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn normal mode, \\u2018p\\u2019 is enough to save the game, in reverse mode, \\u2018p RET\\u2019 is needed. Since RET is ignored in normal mode, I decided to show the same intructions on the header line for both modes, but I should probably change that. I couldn\\u2019t find a way of making \\u2018p\\u2019 cancel the prompt when using completing-read (when playing reverse mode), so RET is also needed to read it in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI like the idea of showing the other correct keys!I\\u2019ll add it to my todo list.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9hwei/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559936138.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hme8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jackjackk0\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559907026.0, \"send_replies\": true, \"parent_id\": \"t1_eq9f4zn\", \"score\": 1, \"author_fullname\": \"t2_q52rf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"thanks, just tried it and it looks pleasant. Maybe only the zero is a bit weird!\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hme8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks, just tried it and it looks pleasant. Maybe only the zero is a bit weird!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9hme8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559935826.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9hdw0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rekIfdyt2\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559906750.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 2, \"author_fullname\": \"t2_7jmd3dk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is amazingly cool and educationally quite valuable!\\n\\nRegarding pausing the quiz \\u2014 isn't just `p` (not `p RET`) sufficient?\\n\\nOne suggestion (no pressure to implement it, just in case you're looking for ideas): when there's more than one possible answer and the user guesses correctly, display the remaining possible answers.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9hdw0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is amazingly cool and educationally quite valuable!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERegarding pausing the quiz \\u2014 isn\\u0026#39;t just \\u003Ccode\\u003Ep\\u003C/code\\u003E (not \\u003Ccode\\u003Ep RET\\u003C/code\\u003E) sufficient?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne suggestion (no pressure to implement it, just in case you\\u0026#39;re looking for ideas): when there\\u0026#39;s more than one possible answer and the user guesses correctly, display the remaining possible answers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9hdw0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559935550.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9h5sl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eugenemah\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559906488.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 1, \"author_fullname\": \"t2_6urz5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\+1 for Hack\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9h5sl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E+1 for Hack\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9h5sl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559935288.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9h2zl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"loskutak-the-ptak\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559906394.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_ke7apcf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Don't miss https://github.com/alf/ob-restclient.el ! With that you can use restclient in org source code blocks.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq9h2zl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDon\\u0026#39;t miss \\u003Ca href=\\\"https://github.com/alf/ob-restclient.el\\\"\\u003Ehttps://github.com/alf/ob-restclient.el\\u003C/a\\u003E ! With that you can use restclient in org source code blocks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq9h2zl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559935194.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g32m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Asteridae\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559905158.0, \"send_replies\": true, \"parent_id\": \"t1_eq9ez1l\", \"score\": 1, \"author_fullname\": \"t2_o2f0w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have a similar setup: I don't store anything in the `.emacs.d` folder, instead I have a minimalistic `.emacs` that loads the `init.el` located in my `~/git/config/emacs` folder.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g32m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a similar setup: I don\\u0026#39;t store anything in the \\u003Ccode\\u003E.emacs.d\\u003C/code\\u003E folder, instead I have a minimalistic \\u003Ccode\\u003E.emacs\\u003C/code\\u003E that loads the \\u003Ccode\\u003Einit.el\\u003C/code\\u003E located in my \\u003Ccode\\u003E~/git/config/emacs\\u003C/code\\u003E folder.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9g32m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559933958.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9g1sf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559905111.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Like many others already said, I usually don't bother about many buffers, too. However, one thing which did bother me was Magit's (good and consistent) buffer naming which results in worse buffer name completion because they are so similar. Especially, I frequently do one-shot changes to different repositories and then kill the Magit status buffer which left all auxiliary Magit buffers (process, diffs, log, etc.) alive.\\n\\n\\u0026#x200B;\\n\\nThen I learned that you actually kill Magit buffers with `C-u q` instead of `C-x k` and added that a double-prefix argument (`C-u C-u q`) now kills the current Magit status buffer and all related Magit buffers of the current project. That's at least in the current MELPA version of Magit.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9g1sf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELike many others already said, I usually don\\u0026#39;t bother about many buffers, too. However, one thing which did bother me was Magit\\u0026#39;s (good and consistent) buffer naming which results in worse buffer name completion because they are so similar. Especially, I frequently do one-shot changes to different repositories and then kill the Magit status buffer which left all auxiliary Magit buffers (process, diffs, log, etc.) alive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I learned that you actually kill Magit buffers with \\u003Ccode\\u003EC-u q\\u003C/code\\u003E instead of \\u003Ccode\\u003EC-x k\\u003C/code\\u003E and added that a double-prefix argument (\\u003Ccode\\u003EC-u C-u q\\u003C/code\\u003E) now kills the current Magit status buffer and all related Magit buffers of the current project. That\\u0026#39;s at least in the current MELPA version of Magit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq9g1sf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559933911.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559904943.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9fmu4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Asteridae\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559904560.0, \"send_replies\": true, \"parent_id\": \"t1_eq9ex29\", \"score\": 1, \"author_fullname\": \"t2_o2f0w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is exactly what I do! I store the Emacs packages and my config in the same Git repository, when searching my config I use `projectile-grep` to prevent searching in my `packages` folder.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9fmu4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is exactly what I do! I store the Emacs packages and my config in the same Git repository, when searching my config I use \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E to prevent searching in my \\u003Ccode\\u003Epackages\\u003C/code\\u003E folder.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9fmu4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559933360.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsydi\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9f4zn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"irmanp\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559903880.0, \"send_replies\": true, \"parent_id\": \"t3_bxsydi\", \"score\": 5, \"author_fullname\": \"t2_30ctkuyb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I like to use Hack:\\nhttps://sourcefoundry.org/hack/\", \"link_title\": \"What font settings would you recommend?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9f4zn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like to use Hack:\\n\\u003Ca href=\\\"https://sourcefoundry.org/hack/\\\"\\u003Ehttps://sourcefoundry.org/hack/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/eq9f4zn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"report_reasons\": null, \"link_author\": \"jackjackk0\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"created\": 1559932680.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ez1l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559903646.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 2, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I use symlinks and keep all my code \\u0026 scripts in their own directory.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9ez1l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use symlinks and keep all my code \\u0026amp; scripts in their own directory.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9ez1l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559932446.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ex29\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"flexibeast\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559903567.0, \"send_replies\": true, \"parent_id\": \"t1_eq9eb42\", \"score\": 2, \"author_fullname\": \"t2_3tmsj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Ah, fair enough. Well, unless someone else knows of existing functionality to do this, you could write a wrapper function around (in the specific case you mentioned) `projectile-grep` which asks the user for values for the variables `projectile-ignored-directories` and `projectile-ignored-files`, then calls `projectile-grep`, after which it resets those variables to their old values.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq9ex29\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAh, fair enough. Well, unless someone else knows of existing functionality to do this, you could write a wrapper function around (in the specific case you mentioned) \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E which asks the user for values for the variables \\u003Ccode\\u003Eprojectile-ignored-directories\\u003C/code\\u003E and \\u003Ccode\\u003Eprojectile-ignored-files\\u003C/code\\u003E, then calls \\u003Ccode\\u003Eprojectile-grep\\u003C/code\\u003E, after which it resets those variables to their old values.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9ex29/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"org-vcard pulseaudio-control ewmctrl\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559932367.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9escc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SlowValue\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559903371.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_1rke6ck4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I understood your question the following way: \\nYou want a function `switch-to-buffer-dwim`, which is working in following order (name completion aside):\\n\\n 1. switch to buffer, if buffer with given name is available\\n 2. when no buffer with that name exists, then open a file with this name in current directory\\n 3. if both is wrong, what next?\\n\\nLast point is important! What should be done next? Should be searched for a file with that name recursively? Should a file be created (and where should the file be created)? Should a buffer without file be created? If a file gets created, how do you create new buffers (and vice versa)? \\n\\n\\nIs this, what you are searching for?\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9escc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI understood your question the following way:\\u003Cbr/\\u003E\\nYou want a function \\u003Ccode\\u003Eswitch-to-buffer-dwim\\u003C/code\\u003E, which is working in following order (name completion aside):\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Eswitch to buffer, if buffer with given name is available\\u003C/li\\u003E\\n\\u003Cli\\u003Ewhen no buffer with that name exists, then open a file with this name in current directory\\u003C/li\\u003E\\n\\u003Cli\\u003Eif both is wrong, what next?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ELast point is important! What should be done next? Should be searched for a file with that name recursively? Should a file be created (and where should the file be created)? Should a buffer without file be created? If a file gets created, how do you create new buffers (and vice versa)? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this, what you are searching for?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq9escc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559932171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ekt0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559903055.0, \"send_replies\": true, \"parent_id\": \"t1_eq96zwx\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It uses both the default keys and your customizations. By default, the key/command list is read from a buffer set to Fundamental Mode.\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9ekt0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt uses both the default keys and your customizations. By default, the key/command list is read from a buffer set to Fundamental Mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9ekt0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559931855.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9ejbn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559902995.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 2, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Absolutely! really good idea.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_eq9ejbn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAbsolutely! really good idea.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq9ejbn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559931795.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9edsg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LiterallyCarlSagan\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559902767.0, \"send_replies\": true, \"parent_id\": \"t1_eq97l5i\", \"score\": 2, \"author_fullname\": \"t2_6b5tg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks!\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq9edsg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq9edsg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559931567.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9eb42\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vfclists\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559902659.0, \"send_replies\": true, \"parent_id\": \"t1_eq99y5z\", \"score\": 1, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Actually I prefer something that will enable me to do it on the fly, ie with a dialog for that particular instance\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9eb42\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EActually I prefer something that will enable me to do it on the fly, ie with a dialog for that particular instance\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq9eb42/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559931459.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrwro\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cg2j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"acheronuk\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559899671.0, \"send_replies\": true, \"parent_id\": \"t3_bxrwro\", \"score\": 2, \"author_fullname\": \"t2_11hs72\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It appears that .info files are supplied in a separate package/source **emacs-common-non-dfsg**.\\n\\nFile list: https://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\n\\nIf installing that does not help, then you can install the build depends for emacs on K/Ubuntu by going to Muon and doing \\u003E Settings \\u003E Configure software sources \\u003E Then tick the source code box. Then in a terminal do:\\n\\n sudo apt build-dep emacs\\n\\nThat will get all the direct build dependencies for emacs. It will also get you tools to build .deb packages, which you won't need, but do no harm.\", \"link_title\": \"Roadblock when installing Emacs 26.2 on kubuntu 19.04\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cg2j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt appears that .info files are supplied in a separate package/source \\u003Cstrong\\u003Eemacs-common-non-dfsg\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile list: \\u003Ca href=\\\"https://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\\"\\u003Ehttps://packages.ubuntu.com/disco/all/emacs-common-non-dfsg/filelist\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf installing that does not help, then you can install the build depends for emacs on K/Ubuntu by going to Muon and doing \\u0026gt; Settings \\u0026gt; Configure software sources \\u0026gt; Then tick the source code box. Then in a terminal do:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Esudo apt build-dep emacs\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThat will get all the direct build dependencies for emacs. It will also get you tools to build .deb packages, which you won\\u0026#39;t need, but do no harm.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/eq9cg2j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"report_reasons\": null, \"link_author\": \"granti128\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"created\": 1559928471.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cfwr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ballfresno\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559899664.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_2b5qxk6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I do all of my writing in org. The majority is targeting PDF export, either as articles for publication or for presentations. I almost always make extensive use of org-babel within these documents. All graphics will be done this way, including using gnuplot, plantuml, ditaa, etc. Depending on the topic, the results might also be generated from org-babel src blocks in a number of different languages including octave, Julia, R, as well as text processing using shell or awk blocks.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cfwr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do all of my writing in org. The majority is targeting PDF export, either as articles for publication or for presentations. I almost always make extensive use of org-babel within these documents. All graphics will be done this way, including using gnuplot, plantuml, ditaa, etc. Depending on the topic, the results might also be generated from org-babel src blocks in a number of different languages including octave, Julia, R, as well as text processing using shell or awk blocks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq9cfwr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559928464.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx54uk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9bgm9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559898010.0, \"send_replies\": true, \"parent_id\": \"t1_eq73rjt\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\\\u003EUse-package forms an abstraction upon which it's hard to debug\\n\\n\\u0026#x200B;\\n\\nM-x pp-macroexpand-last-sexp at you service\", \"link_title\": \"Even Better 'Better Defaults'\", \"author_flair_css_class\": null, \"name\": \"t1_eq9bgm9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;Use-package forms an abstraction upon which it\\u0026#39;s hard to debug\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EM-x pp-macroexpand-last-sexp at you service\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/eq9bgm9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://github.com/ianpan870102/.emacs.d\", \"created\": 1559926810.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9a23n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ibizaman\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559895652.0, \"send_replies\": true, \"parent_id\": \"t1_eq7g89b\", \"score\": 1, \"author_fullname\": \"t2_sxb1k\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"With org-mode you get org-babel. So say you have a code example, you could actually run it from the org file, get the result and insert both in the LaTeX export.\\n\\nOrg-mode understands tables too. You can have formulas in tables referencing other cells. The whole table is dynamic \\n\\nAlso, emacs have a symbolic calculator. Very neat when combined with tables.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq9a23n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith org-mode you get org-babel. So say you have a code example, you could actually run it from the org file, get the result and insert both in the LaTeX export.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg-mode understands tables too. You can have formulas in tables referencing other cells. The whole table is dynamic \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, emacs have a symbolic calculator. Very neat when combined with tables.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq9a23n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559924452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq99y5z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"flexibeast\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559895474.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 2, \"author_fullname\": \"t2_3tmsj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Assuming that a package uses `defcustom` to define variables intended to be user-customisable, you can do `M-x customize-group` and specify that package's customize-group to browse for any such variables.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq99y5z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAssuming that a package uses \\u003Ccode\\u003Edefcustom\\u003C/code\\u003E to define variables intended to be user-customisable, you can do \\u003Ccode\\u003EM-x customize-group\\u003C/code\\u003E and specify that package\\u0026#39;s customize-group to browse for any such variables.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq99y5z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"org-vcard pulseaudio-control ewmctrl\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559924274.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxrxm0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq99y5p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ibizaman\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559895474.0, \"send_replies\": true, \"parent_id\": \"t3_bxrxm0\", \"score\": 1, \"author_fullname\": \"t2_sxb1k\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Recent versions of grep support `--exclude-dir` so it must be possible.\", \"link_title\": \"Is there a way to configure a grep command not to search some directories?\", \"author_flair_css_class\": null, \"name\": \"t1_eq99y5p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERecent versions of grep support \\u003Ccode\\u003E--exclude-dir\\u003C/code\\u003E so it must be possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/eq99y5p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"created\": 1559924274.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq97l5i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grimscythe_\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559891747.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 3, \"author_fullname\": \"t2_17fhdh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Great work!\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq97l5i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreat work!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq97l5i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559920547.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq97j20\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"vfclists\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559891659.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 7, \"author_fullname\": \"t2_3clxu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sad to hear of his passing.\\n\\nI remember him from this thread - [Request: The Future of PHP Mode (TL;DR Near Bottom) : emacs](https://old.reddit.com/r/emacs/comments/6pchsm/request_the_future_of_php_mode_tldr_near_bottom/)\\n\\nIt led me to write a whole blog post on open source funding issues.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": null, \"name\": \"t1_eq97j20\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESad to hear of his passing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI remember him from this thread - \\u003Ca href=\\\"https://old.reddit.com/r/emacs/comments/6pchsm/request_the_future_of_php_mode_tldr_near_bottom/\\\"\\u003ERequest: The Future of PHP Mode (TL;DR Near Bottom) : emacs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt led me to write a whole blog post on open source funding issues.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq97j20/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559920459.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxmyy8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq96zwx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"FLMatt\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559890860.0, \"send_replies\": true, \"parent_id\": \"t3_bxmyy8\", \"score\": 5, \"author_fullname\": \"t2_14rw8c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Does it use the default keys or does it take into consideration your customizations?\", \"link_title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"author_flair_css_class\": null, \"name\": \"t1_eq96zwx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes it use the default keys or does it take into consideration your customizations?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/eq96zwx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"report_reasons\": null, \"link_author\": \"LiterallyCarlSagan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/federicotdn/key-quiz\", \"created\": 1559919660.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_brp26g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq96tmb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xtifr\", \"num_comments\": 69, \"can_mod_post\": false, \"created_utc\": 1559890596.0, \"send_replies\": true, \"parent_id\": \"t1_eoo2rr0\", \"score\": 1, \"author_fullname\": \"t2_3bi8nddx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"With tramp, commands like M-x grep and M-x compile run on the remote host, which is a whole lot faster, and, in the case of compiles, may actually mean the difference between working and not working. :)\\n\\n\\u0026#x200B;\\n\\n(Which is not to say that sshfs isn't quite handy...)\", \"link_title\": \"What advantages does Emacs have over Neovim + Tmux?\", \"author_flair_css_class\": null, \"name\": \"t1_eq96tmb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith tramp, commands like M-x grep and M-x compile run on the remote host, which is a whole lot faster, and, in the case of compiles, may actually mean the difference between working and not working. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Which is not to say that sshfs isn\\u0026#39;t quite handy...)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/eq96tmb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/\", \"report_reasons\": null, \"link_author\": \"seagoj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/brp26g/what_advantages_does_emacs_have_over_neovim_tmux/\", \"created\": 1559919396.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq93rtr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vitorqb23\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559884982.0, \"send_replies\": true, \"parent_id\": \"t1_eq91pn4\", \"score\": 1, \"author_fullname\": \"t2_2nkdd29t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"So far I can not tell the difference.\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq93rtr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo far I can not tell the difference.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq93rtr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559913782.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq92lak\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559883630.0, \"send_replies\": true, \"parent_id\": \"t1_eq92kbd\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Oh, and apparently PlantUML, if that's your thing\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq92lak\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh, and apparently PlantUML, if that\\u0026#39;s your thing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq92lak/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559912430.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq92kbd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559883600.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gal6\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You got it, that part is all LaTeX, but the org exporter recognizes it if you use \\\\\\\\begin{} and you don't even need a source block. Also very nice Beamer integration.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq92kbd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou got it, that part is all LaTeX, but the org exporter recognizes it if you use \\\\begin{} and you don\\u0026#39;t even need a source block. Also very nice Beamer integration.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq92kbd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559912400.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq91pn4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Michaelmrose\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559882652.0, \"send_replies\": true, \"parent_id\": \"t1_eq6btfk\", \"score\": 1, \"author_fullname\": \"t2_8yohe\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Is lucid snappier than gtk?\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq91pn4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs lucid snappier than gtk?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq91pn4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559911452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxq3a0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9049n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"ibillius\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559880936.0, \"send_replies\": true, \"parent_id\": \"t3_bxq3a0\", \"score\": 9, \"author_fullname\": \"t2_8no13\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not aware of anything like that but that's a lovely idea. I'm sorry to hear about his passing. PHP mode was very useful to me in my last job and I even briefly corresponded with Eric on Reddit about Emacs.\", \"link_title\": \"[meta] An \\\"in memoriam\\\" page?\", \"author_flair_css_class\": null, \"name\": \"t1_eq9049n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not aware of anything like that but that\\u0026#39;s a lovely idea. I\\u0026#39;m sorry to hear about his passing. PHP mode was very useful to me in my last job and I even briefly corresponded with Eric on Reddit about Emacs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/eq9049n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"report_reasons\": null, \"link_author\": \"paxperscientiam\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"created\": 1559909736.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 9}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8qohc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"KrishnaKrGopal\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559872674.0, \"send_replies\": true, \"parent_id\": \"t1_eq4t18o\", \"score\": 1, \"author_fullname\": \"t2_1zt5mges\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes, I use this method too. Emacs is not so heavy weight for today's hardware that a few instances hurt.\\n\\nTo add to it, I have a few server names that are dedicated : org-mode has its own Emacs server : used by commands to capture via org-protocol. For coding, each project has its own server : named after the main Git branch. And there is a default server : for misc usage.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8qohc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, I use this method too. Emacs is not so heavy weight for today\\u0026#39;s hardware that a few instances hurt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo add to it, I have a few server names that are dedicated : org-mode has its own Emacs server : used by commands to capture via org-protocol. For coding, each project has its own server : named after the main Git branch. And there is a default server : for misc usage.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq8qohc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559901474.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bn3qax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8qhil\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"im_not_juicing\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1559872512.0, \"send_replies\": true, \"parent_id\": \"t1_eq87ssp\", \"score\": 1, \"author_fullname\": \"t2_22kx841q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \":D\", \"link_title\": \"where, might you say, is the most \\\"super\\\" of a \\\"super cua\\\" package?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8qhil\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E:D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/eq8qhil/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"created\": 1559901312.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8psyw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"reddit_uname\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871929.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gboh\", \"score\": 2, \"author_fullname\": \"t2_byz78\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This might be what you're looking for: [https://www.gnu.org/software/emacs/manual/html\\\\_mono/autotype.html#Autoinserting](https://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting)\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8psyw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis might be what you\\u0026#39;re looking for: \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting\\\"\\u003Ehttps://www.gnu.org/software/emacs/manual/html_mono/autotype.html#Autoinserting\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8psyw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559900729.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8p65z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sugarbridalsentry\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871395.0, \"send_replies\": true, \"parent_id\": \"t1_eq09l4k\", \"score\": 1, \"author_fullname\": \"t2_i9gakgq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hey neat! It's simple, and does the job -- way better better than I could have written. \\n\\nI was the one asking about it last week -- someone recommended `iy-go-to-char`, which I've been using. Lets you repeat the search by hitting the character again, and works backwards to. A+, would `'require` again.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8p65z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey neat! It\\u0026#39;s simple, and does the job -- way better better than I could have written. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was the one asking about it last week -- someone recommended \\u003Ccode\\u003Eiy-go-to-char\\u003C/code\\u003E, which I\\u0026#39;ve been using. Lets you repeat the search by hitting the character again, and works backwards to. A+, would \\u003Ccode\\u003E\\u0026#39;require\\u003C/code\\u003E again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8p65z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559900195.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvweh8\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8ov1a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grettke\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559871136.0, \"send_replies\": true, \"parent_id\": \"t1_eq2n87o\", \"score\": 1, \"author_fullname\": \"t2_3fcko\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thank you for sharing that thoughtful advice.\\n\\nWhile I don't have restrictions on my writing style, I do use [WriteGood](https://github.com/bnbeckwith/writegood-mode), [Langtool](https://github.com/mhayashi1120/Emacs-langtool), and [Proselint](https://proselint.com/) liberally.\\n\\nThe call outs on adverbs and adjectives are helpful!\", \"link_title\": \"Writing Academic Papers in Org-mode\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq8ov1a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for sharing that thoughtful advice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile I don\\u0026#39;t have restrictions on my writing style, I do use \\u003Ca href=\\\"https://github.com/bnbeckwith/writegood-mode\\\"\\u003EWriteGood\\u003C/a\\u003E, \\u003Ca href=\\\"https://github.com/mhayashi1120/Emacs-langtool\\\"\\u003ELangtool\\u003C/a\\u003E, and \\u003Ca href=\\\"https://proselint.com/\\\"\\u003EProselint\\u003C/a\\u003E liberally.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe call outs on adverbs and adjectives are helpful!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/eq8ov1a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"doulos05\", \"author_flair_text\": \"Org2Blog Maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"created\": 1559899936.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8outf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sugarbridalsentry\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559871131.0, \"send_replies\": true, \"parent_id\": \"t1_eq7gboh\", \"score\": 1, \"author_fullname\": \"t2_i9gakgq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I've used a function like this one to create a buffer for a blog -- it makes a new buffer with header information. To get the different elements to show up on different lines, you just add the newline `\\\\n`\\n\\n ;; Pop a blog buffer\\n (defun blog-buffer ()\\n \\\"Creates a new buffer with the basic title/date header needed by `org-static-blog`\\\"\\n (interactive)\\n (let (($buf (generate-new-buffer \\\"untitled\\\")))\\n (switch-to-buffer $buf)\\n (insert (format-time-string\\n \\\"#+TITLE:\\\\n#+DATE: \\u003C%Y-%m-%d %T %A\\u003E\\\"))\\n (funcall 'org-mode)\\n (setq buffer-offer-save t)))\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq8outf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve used a function like this one to create a buffer for a blog -- it makes a new buffer with header information. To get the different elements to show up on different lines, you just add the newline \\u003Ccode\\u003E\\\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Pop a blog buffer\\n(defun blog-buffer ()\\n \\u0026quot;Creates a new buffer with the basic title/date header needed by `org-static-blog`\\u0026quot;\\n (interactive)\\n (let (($buf (generate-new-buffer \\u0026quot;untitled\\u0026quot;)))\\n (switch-to-buffer $buf)\\n (insert (format-time-string\\n \\u0026quot;#+TITLE:\\\\n#+DATE: \\u0026lt;%Y-%m-%d %T %A\\u0026gt;\\u0026quot;))\\n (funcall \\u0026#39;org-mode)\\n (setq buffer-offer-save t)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8outf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559899931.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8ofb1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grettke\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559870776.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_3fcko\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"From my perspective Org is an information management system that includes publishing, LaTeX is a publishing solution and not more than that, so it isn't Org versus LaTeX, it is Org and LaTeX. Is that how you are seeing them? Or what aspects do you see them as competing against each other on?\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": \"\", \"name\": \"t1_eq8ofb1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFrom my perspective Org is an information management system that includes publishing, LaTeX is a publishing solution and not more than that, so it isn\\u0026#39;t Org versus LaTeX, it is Org and LaTeX. Is that how you are seeing them? Or what aspects do you see them as competing against each other on?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq8ofb1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": \"Org2Blog Maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559899576.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8nzic\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559870405.0, \"send_replies\": true, \"parent_id\": \"t1_eq8kyv3\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"My take on not even having to look is that I'd rather a menu I don't need to look at didn't appear at all. :)\\n\\nThe particular thing, and perhaps it's customizable, that bugged me about Ivy's key bindings is that I had to use a special keystroke when I actually wanted the thing I typed, to not be given the best match instead. Magic tilde got me quite a few times before I turned it off too. With Helm, it was the tab thing of course. I like Ivy a bit better than Helm, but really I don't want a menu until I need a menu, at which point I'll take a nice big two-column *Completions* buffer.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8nzic\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy take on not even having to look is that I\\u0026#39;d rather a menu I don\\u0026#39;t need to look at didn\\u0026#39;t appear at all. :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe particular thing, and perhaps it\\u0026#39;s customizable, that bugged me about Ivy\\u0026#39;s key bindings is that I had to use a special keystroke when I actually wanted the thing I typed, to not be given the best match instead. Magic tilde got me quite a few times before I turned it off too. With Helm, it was the tab thing of course. I like Ivy a bit better than Helm, but really I don\\u0026#39;t want a menu until I need a menu, at which point I\\u0026#39;ll take a nice big two-column \\u003Cem\\u003ECompletions\\u003C/em\\u003E buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8nzic/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559899205.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8kyv3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bump_bump_bump\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559867889.0, \"send_replies\": true, \"parent_id\": \"t1_eq8flnq\", \"score\": 2, \"author_fullname\": \"t2_33ybbkqd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E I'd really rather manually tab complete than have the flashing menus and weird keystrokes\\n\\nSorry, I didn't read that closely enough. \\n\\nI can't imagine doing without fuzzy matching myself, but I can appreciate disliking the rapidly changing matches. \\n\\nMy usage mode is usually to just type off a few fragments that I know will work and *only then* pay attention to the results. Often I don't even have to look, as I know the few keystrokes that get me the exact match I want. e.g. I know the function `projectile-browse-dirty-projects` is useful - and `M-x dirt RET` does it.\\n\\nI don't know about weird keystrokes though - in ivy tab works as you'd expect (unlike helm), and if you set the height to fixed (`ivy-fixed-height-minibuffer`) it won't jump around. The very thing that draws people to ivy over helm is that it's relatively unobtrusive.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8kyv3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI\\u0026#39;d really rather manually tab complete than have the flashing menus and weird keystrokes\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESorry, I didn\\u0026#39;t read that closely enough. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can\\u0026#39;t imagine doing without fuzzy matching myself, but I can appreciate disliking the rapidly changing matches. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy usage mode is usually to just type off a few fragments that I know will work and \\u003Cem\\u003Eonly then\\u003C/em\\u003E pay attention to the results. Often I don\\u0026#39;t even have to look, as I know the few keystrokes that get me the exact match I want. e.g. I know the function \\u003Ccode\\u003Eprojectile-browse-dirty-projects\\u003C/code\\u003E is useful - and \\u003Ccode\\u003EM-x dirt RET\\u003C/code\\u003E does it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t know about weird keystrokes though - in ivy tab works as you\\u0026#39;d expect (unlike helm), and if you set the height to fixed (\\u003Ccode\\u003Eivy-fixed-height-minibuffer\\u003C/code\\u003E) it won\\u0026#39;t jump around. The very thing that draws people to ivy over helm is that it\\u0026#39;s relatively unobtrusive.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8kyv3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559896689.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8jia3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559866675.0, \"send_replies\": true, \"parent_id\": \"t1_eq8gjie\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sounds worth checking out UI-wise anyway. Thanks for the tip!\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8jia3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESounds worth checking out UI-wise anyway. Thanks for the tip!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8jia3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559895475.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559865162.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8gjie\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"00-11\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559864960.0, \"send_replies\": true, \"parent_id\": \"t1_eq8flnq\", \"score\": 1, \"author_fullname\": \"t2_3upsyt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[Icicles](https://www.emacswiki.org/emacs/Icicles) (just like Helm, Ivy, etc. but a decade earlier ;-)) lets you include recent files during buffer-name completion. \\n\\nAnd by default there is no flashing, automatic completion etc. - you hit `TAB` (or `S-TAB`) to complete on demand, just as you usually do with any buffer-completion command.\\n\\nInclusion of recent files during buffer-name completion is controlled by option `icicle-buffer-include-recent-files-nflag`:\\n\\n\\u003E `icicle-buffer-include-recent-files-nflag` is a variable defined in `icicles-opt.el`.\\n\\n\\u003E Its value is -2305843009213693951\\n\\n\\u003E Documentation:\\n\\n\\u003E An integer \\u003E 0 means include recent files during buffer-name completion.\\nThis means file names managed by `recentf-mode` - see (emacs) `File\\nConveniences`. An integer \\u003C 0 means do not include them.\\n\\n\\u003E When they are included, the value is the maximum number of such\\ncandidates to include.\\n\\n\\u003E You can toggle this option (between + and -) using `C-x R` in the\\nminibuffer during buffer-name completion.\\n\\nSee [Icicles - Buffer-Name Input](https://www.emacswiki.org/emacs/Icicles_-_Buffer-Name_Input).\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8gjie\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/Icicles\\\"\\u003EIcicles\\u003C/a\\u003E (just like Helm, Ivy, etc. but a decade earlier ;-)) lets you include recent files during buffer-name completion. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd by default there is no flashing, automatic completion etc. - you hit \\u003Ccode\\u003ETAB\\u003C/code\\u003E (or \\u003Ccode\\u003ES-TAB\\u003C/code\\u003E) to complete on demand, just as you usually do with any buffer-completion command.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInclusion of recent files during buffer-name completion is controlled by option \\u003Ccode\\u003Eicicle-buffer-include-recent-files-nflag\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Ccode\\u003Eicicle-buffer-include-recent-files-nflag\\u003C/code\\u003E is a variable defined in \\u003Ccode\\u003Eicicles-opt.el\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIts value is -2305843009213693951\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDocumentation:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn integer \\u0026gt; 0 means include recent files during buffer-name completion.\\nThis means file names managed by \\u003Ccode\\u003Erecentf-mode\\u003C/code\\u003E - see (emacs) \\u003Ccode\\u003EFile\\nConveniences\\u003C/code\\u003E. An integer \\u0026lt; 0 means do not include them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen they are included, the value is the maximum number of such\\ncandidates to include.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can toggle this option (between + and -) using \\u003Ccode\\u003EC-x R\\u003C/code\\u003E in the\\nminibuffer during buffer-name completion.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESee \\u003Ca href=\\\"https://www.emacswiki.org/emacs/Icicles_-_Buffer-Name_Input\\\"\\u003EIcicles - Buffer-Name Input\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8gjie/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559893760.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8flnq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559864457.0, \"send_replies\": true, \"parent_id\": \"t1_eq89p5p\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yeah, I've tried Ivy for a while at least, and fooled with others. I wasn't sure how to say it but that kind of thing is what I meant by \\\"do-everything completion system\\\". I'd really rather manually tab complete than have the flashing menus and weird keystrokes, and with what these packages want to provide, neither is avoidable. I like switch-to-buffer and find-file, I just don't like remembering which to use.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8flnq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, I\\u0026#39;ve tried Ivy for a while at least, and fooled with others. I wasn\\u0026#39;t sure how to say it but that kind of thing is what I meant by \\u0026quot;do-everything completion system\\u0026quot;. I\\u0026#39;d really rather manually tab complete than have the flashing menus and weird keystrokes, and with what these packages want to provide, neither is avoidable. I like switch-to-buffer and find-file, I just don\\u0026#39;t like remembering which to use.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8flnq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559893257.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559866729.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8cmxs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559862918.0, \"send_replies\": true, \"parent_id\": \"t1_eq894nu\", \"score\": 0, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not really sold on using recent files for this... I can see how it would mostly work, but simply trying to switch buffers often works too. It seems like less hassle in the long run to write a command that does something like trying to complete a buffer name, then searching the current directory for completion, then trying locate. I'm just seeing if that command is out there, before I really think about working on it.\\n\\nEDIT: And of course the recent files list may contain deleted files.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq8cmxs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not really sold on using recent files for this... I can see how it would mostly work, but simply trying to switch buffers often works too. It seems like less hassle in the long run to write a command that does something like trying to complete a buffer name, then searching the current directory for completion, then trying locate. I\\u0026#39;m just seeing if that command is out there, before I really think about working on it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: And of course the recent files list may contain deleted files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq8cmxs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559891718.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq8bumi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559862516.0, \"send_replies\": true, \"parent_id\": \"t1_eq43s1i\", \"score\": 2, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There's also the `browse-at-remote` package, which includes the `browse-at-remote-kill` command.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq8bumi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s also the \\u003Ccode\\u003Ebrowse-at-remote\\u003C/code\\u003E package, which includes the \\u003Ccode\\u003Ebrowse-at-remote-kill\\u003C/code\\u003E command.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq8bumi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559891316.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq89p5p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"bump_bump_bump\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559861399.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 4, \"author_fullname\": \"t2_33ybbkqd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Are you familiar with `recentf`? Both `helm` and `ivy`, and probably `ido`, can include recent files in your buffer switching completions.\\n\\nApologies if you already know this. It's not clear from your question what you're already familiar with. But you mention tab completion, which makes me think of the built-in completion, which is much cruder than the fuzzy matching with the above packages.\\n\\nBetween my use of `counsel-projectile-find-file`, `counsel-file-jump`, and `ivy-switch-buffer`, I can't really see a hole that would be filled by what you're talking about.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq89p5p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAre you familiar with \\u003Ccode\\u003Erecentf\\u003C/code\\u003E? Both \\u003Ccode\\u003Ehelm\\u003C/code\\u003E and \\u003Ccode\\u003Eivy\\u003C/code\\u003E, and probably \\u003Ccode\\u003Eido\\u003C/code\\u003E, can include recent files in your buffer switching completions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EApologies if you already know this. It\\u0026#39;s not clear from your question what you\\u0026#39;re already familiar with. But you mention tab completion, which makes me think of the built-in completion, which is much cruder than the fuzzy matching with the above packages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBetween my use of \\u003Ccode\\u003Ecounsel-projectile-find-file\\u003C/code\\u003E, \\u003Ccode\\u003Ecounsel-file-jump\\u003C/code\\u003E, and \\u003Ccode\\u003Eivy-switch-buffer\\u003C/code\\u003E, I can\\u0026#39;t really see a hole that would be filled by what you\\u0026#39;re talking about.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq89p5p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559890199.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq894nu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559861122.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 3, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Some \\\"switch-to-buffer\\\" functions like those provided by ivy and ido have the idea of \\\"virtual buffers\\\", which allows you to switch to buffers of previously-opened files even if you don't have them open currently. In practice, combined with a large `recentf` history of filenames, I think you'll find this does what you want.\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq894nu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESome \\u0026quot;switch-to-buffer\\u0026quot; functions like those provided by ivy and ido have the idea of \\u0026quot;virtual buffers\\u0026quot;, which allows you to switch to buffers of previously-opened files even if you don\\u0026#39;t have them open currently. In practice, combined with a large \\u003Ccode\\u003Erecentf\\u003C/code\\u003E history of filenames, I think you\\u0026#39;ll find this does what you want.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq894nu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559889922.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2swo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq88wik\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559861001.0, \"send_replies\": true, \"parent_id\": \"t1_eq7rd66\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Request.el is a solid library, and it's what I always direct people towards\\n\\nGiven its age and lack of maintainership, it's held up respectably, but it's\\nby no means \\\"solid\\\" at the current time. There are well documented bugs, and\\nI don't particularly trust `url-retrieve` backend (the other backend is curl).\", \"link_title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"author_flair_css_class\": null, \"name\": \"t1_eq88wik\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERequest.el is a solid library, and it\\u0026#39;s what I always direct people towards\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EGiven its age and lack of maintainership, it\\u0026#39;s held up respectably, but it\\u0026#39;s\\nby no means \\u0026quot;solid\\u0026quot; at the current time. There are well documented bugs, and\\nI don\\u0026#39;t particularly trust \\u003Ccode\\u003Eurl-retrieve\\u003C/code\\u003E backend (the other backend is curl).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/eq88wik/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"report_reasons\": null, \"link_author\": \"andreas-marschke\", \"author_flair_text\": null, \"link_url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"created\": 1559889801.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxm847\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq88h6h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"poiu-\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1559860787.0, \"send_replies\": true, \"parent_id\": \"t3_bxm847\", \"score\": 1, \"author_fullname\": \"t2_dcfnv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I would like to have this as a helm source (should be easy?)\", \"link_title\": \"Package to switch to buffer or file?\", \"author_flair_css_class\": null, \"name\": \"t1_eq88h6h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to have this as a helm source (should be easy?)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/eq88h6h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"created\": 1559889587.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bn3qax\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq87ssp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rgrau\", \"num_comments\": 18, \"can_mod_post\": false, \"created_utc\": 1559860391.0, \"send_replies\": true, \"parent_id\": \"t1_eq2yn8z\", \"score\": 1, \"author_fullname\": \"t2_7p0zo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"it's better than Awesome :)\", \"link_title\": \"where, might you say, is the most \\\"super\\\" of a \\\"super cua\\\" package?\", \"author_flair_css_class\": null, \"name\": \"t1_eq87ssp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eit\\u0026#39;s better than Awesome :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/eq87ssp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"report_reasons\": null, \"link_author\": \"tomtac\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bn3qax/where_might_you_say_is_the_most_super_of_a_super/\", \"created\": 1559889191.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq810id\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erickgnavar\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559856701.0, \"send_replies\": true, \"parent_id\": \"t1_eq7ywee\", \"score\": 1, \"author_fullname\": \"t2_ndbm5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I\\u2019ve used it with https with no problem maybe there is something wrong outside emacs, a system package maybe\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq810id\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u2019ve used it with https with no problem maybe there is something wrong outside emacs, a system package maybe\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq810id/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559885501.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ywee\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"politza\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559855652.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_j63jw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Last time I tried it, it couldn't handle https connections and it did not handle http errors. Which means you don't know what's going on if something goes wrong. So, I had to use something else.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ywee\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELast time I tried it, it couldn\\u0026#39;t handle https connections and it did not handle http errors. Which means you don\\u0026#39;t know what\\u0026#39;s going on if something goes wrong. So, I had to use something else.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq7ywee/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559884452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7vhja\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jhelberg\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559853941.0, \"send_replies\": true, \"parent_id\": \"t3_bx7m7a\", \"score\": 1, \"author_fullname\": \"t2_kf8fe\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"one book, one file I'd say. only long lines slow things down, one file makes searching easy.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7vhja\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eone book, one file I\\u0026#39;d say. only long lines slow things down, one file makes searching easy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq7vhja/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559882741.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvucsw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7uu9d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559853615.0, \"send_replies\": true, \"parent_id\": \"t1_eq1rf8b\", \"score\": 1, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E why is '(defconst qc-cmd-prefx:{c, cpp} ...)' moved out of the defun ? coming from a c'ish background, it seems more appropriate to have function-local-const values indicating readers that this 'foo' has a specified value, and cannot be changed (though not so sure about whether elisp guarantees that i.e. constness of the value held by 'foo').\\n\\n`defconst` doesn't introduce a local var. Use `let` for that. `defconst` always defines a global binding.\\n\\nAlso note that on Emacs 24.3+, ie any reasonable Emacs version, you can use `setq-local` instead of the `set` + `make-local-variable` combo.\", \"link_title\": \"help with trivial emacs lisp function\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq7uu9d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ewhy is \\u0026#39;(defconst qc-cmd-prefx:{c, cpp} ...)\\u0026#39; moved out of the defun ? coming from a c\\u0026#39;ish background, it seems more appropriate to have function-local-const values indicating readers that this \\u0026#39;foo\\u0026#39; has a specified value, and cannot be changed (though not so sure about whether elisp guarantees that i.e. constness of the value held by \\u0026#39;foo\\u0026#39;).\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Edefconst\\u003C/code\\u003E doesn\\u0026#39;t introduce a local var. Use \\u003Ccode\\u003Elet\\u003C/code\\u003E for that. \\u003Ccode\\u003Edefconst\\u003C/code\\u003E always defines a global binding.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso note that on Emacs 24.3+, ie any reasonable Emacs version, you can use \\u003Ccode\\u003Esetq-local\\u003C/code\\u003E instead of the \\u003Ccode\\u003Eset\\u003C/code\\u003E + \\u003Ccode\\u003Emake-local-variable\\u003C/code\\u003E combo.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/eq7uu9d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"report_reasons\": null, \"link_author\": \"daddyc00l\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"created\": 1559882415.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2swo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7rd66\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skeeto\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559851876.0, \"send_replies\": true, \"parent_id\": \"t1_eq5t16p\", \"score\": 1, \"author_fullname\": \"t2_3em9l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Request.el is a solid library, and it's what I always direct people\\ntowards when they're interested in reusing the URL request library built\\ninto Elfeed. So that's fine.\\n\\nHowever, that's only part of the equation, right? You'd need to also\\nparse and crawl the pages you download?\", \"link_title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"author_flair_css_class\": null, \"name\": \"t1_eq7rd66\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERequest.el is a solid library, and it\\u0026#39;s what I always direct people\\ntowards when they\\u0026#39;re interested in reusing the URL request library built\\ninto Elfeed. So that\\u0026#39;s fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, that\\u0026#39;s only part of the equation, right? You\\u0026#39;d need to also\\nparse and crawl the pages you download?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/eq7rd66/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"report_reasons\": null, \"link_author\": \"andreas-marschke\", \"author_flair_text\": null, \"link_url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"created\": 1559880676.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2cy9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7plfn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ConfidentGarbage9\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559850978.0, \"send_replies\": true, \"parent_id\": \"t1_eq7mpvi\", \"score\": 1, \"author_fullname\": \"t2_3bwix9h6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"No defun, defparameter, defmacro ect. should remain the same color\", \"link_title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"author_flair_css_class\": null, \"name\": \"t1_eq7plfn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo defun, defparameter, defmacro ect. should remain the same color\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/eq7plfn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"report_reasons\": null, \"link_author\": \"ConfidentGarbage9\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"created\": 1559879778.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ofgr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559850423.0, \"send_replies\": true, \"parent_id\": \"t1_eq7noav\", \"score\": 1, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Both checking and setting can be done using the customize interface, see https://www.gnu.org/software/emacs/manual/html_node/emacs/Easy-Customization.html.\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ofgr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBoth checking and setting can be done using the customize interface, see \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/emacs/Easy-Customization.html\\\"\\u003Ehttps://www.gnu.org/software/emacs/manual/html_node/emacs/Easy-Customization.html\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7ofgr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559879223.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7noav\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rpgwaiter\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559850054.0, \"send_replies\": true, \"parent_id\": \"t1_eq7kx00\", \"score\": 1, \"author_fullname\": \"t2_eim28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not sure how to check the current value, but I did change it to utf-8 from whatever it was and it looks fine now. The change doesn't persist when I close the terminal and reload emacs. How do I make the changes persist?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7noav\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not sure how to check the current value, but I did change it to utf-8 from whatever it was and it looks fine now. The change doesn\\u0026#39;t persist when I close the terminal and reload emacs. How do I make the changes persist?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7noav/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559878854.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2cy9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7mpvi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bodertz\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559849546.0, \"send_replies\": true, \"parent_id\": \"t1_eq357aa\", \"score\": 1, \"author_fullname\": \"t2_9c5ij\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Would `defun` also be blue?\", \"link_title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"author_flair_css_class\": null, \"name\": \"t1_eq7mpvi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWould \\u003Ccode\\u003Edefun\\u003C/code\\u003E also be blue?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/eq7mpvi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"report_reasons\": null, \"link_author\": \"ConfidentGarbage9\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"created\": 1559878346.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7kx00\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559848539.0, \"send_replies\": true, \"parent_id\": \"t1_eq7ka7f\", \"score\": 3, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"As Eli said: check your \\\\`terminal-coding-system\\\\`. What's its value?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7kx00\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs Eli said: check your `terminal-coding-system`. What\\u0026#39;s its value?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7kx00/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559877339.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ka7f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rpgwaiter\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559848206.0, \"send_replies\": true, \"parent_id\": \"t1_eq7jho8\", \"score\": 1, \"author_fullname\": \"t2_eim28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Gotcha.. So how should I go about fixing it?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ka7f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGotcha.. So how should I go about fixing it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7ka7f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559877006.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7jho8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tsdh\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559847827.0, \"send_replies\": true, \"parent_id\": \"t1_eq7es87\", \"score\": 2, \"author_fullname\": \"t2_7klj2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's the point of -Q.\\n\\nIf the font was the problem, you wouldn't see \\\\\\\\-escape sequences but boxes. What you see indicates an encoding issue.\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7jho8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s the point of -Q.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the font was the problem, you wouldn\\u0026#39;t see \\\\-escape sequences but boxes. What you see indicates an encoding issue.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7jho8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559876627.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7gboh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559846287.0, \"send_replies\": true, \"parent_id\": \"t3_bwm94g\", \"score\": 2, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Can you guide me to something that addresses my need to have a new buffer made ready from an existing template when i open a new file. Example, If I want to open a new file named lecture2.org, i want the new buffer to have the `#+TITLE: #+AUTHOR: #+Latex_Class:` already typed in. What should I be searching for on my internet searches?\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq7gboh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan you guide me to something that addresses my need to have a new buffer made ready from an existing template when i open a new file. Example, If I want to open a new file named lecture2.org, i want the new buffer to have the \\u003Ccode\\u003E#+TITLE: #+AUTHOR: #+Latex_Class:\\u003C/code\\u003E already typed in. What should I be searching for on my internet searches?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq7gboh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559875087.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7gal6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"-dag-\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559846274.0, \"send_replies\": true, \"parent_id\": \"t1_eq7a4uh\", \"score\": 1, \"author_fullname\": \"t2_ds1dyo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's interesting. How does it integrate with TikZ? Do you still write embedded latex for that?\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7gal6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s interesting. How does it integrate with TikZ? Do you still write embedded latex for that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7gal6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559875074.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7g89b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"-dag-\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559846242.0, \"send_replies\": true, \"parent_id\": \"t1_eq7dgei\", \"score\": 1, \"author_fullname\": \"t2_ds1dyo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yep, I get the literate programming aspect. I'm asking about \\\"pure\\\" documentation. This is a paper to be read by others. The only code would be example snippets. org-babel could be useful for writing the snippets and generating the output automatically. I'm curious what other advantages org-babel has over just writing a paper in latex. \\n\\n\\nI'll have to look into org's support for diagrams and equations. Thanks!\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7g89b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYep, I get the literate programming aspect. I\\u0026#39;m asking about \\u0026quot;pure\\u0026quot; documentation. This is a paper to be read by others. The only code would be example snippets. org-babel could be useful for writing the snippets and generating the output automatically. I\\u0026#39;m curious what other advantages org-babel has over just writing a paper in latex. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ll have to look into org\\u0026#39;s support for diagrams and equations. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7g89b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559875042.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7es87\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Rpgwaiter\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559845521.0, \"send_replies\": true, \"parent_id\": \"t1_eq7eaon\", \"score\": 1, \"author_fullname\": \"t2_eim28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes I'm running in a text terminal. No issue when running with -Q, although none of my configuration seems to be loaded with that option.\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": null, \"name\": \"t1_eq7es87\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes I\\u0026#39;m running in a text terminal. No issue when running with -Q, although none of my configuration seems to be loaded with that option.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7es87/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559874321.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxjr2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7eaon\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eli-zaretskii\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559845287.0, \"send_replies\": true, \"parent_id\": \"t3_bxjr2h\", \"score\": 2, \"author_fullname\": \"t2_13cvre\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You are running Emacs on a text terminal, right? Then I think the problem might be `terminal-coding-system`. Does this happen in `emacs -Q` as well?\", \"link_title\": \"Emacs showing unicode sequences in the terminal\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq7eaon\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou are running Emacs on a text terminal, right? Then I think the problem might be \\u003Ccode\\u003Eterminal-coding-system\\u003C/code\\u003E. Does this happen in \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E as well?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/eq7eaon/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"report_reasons\": null, \"link_author\": \"Rpgwaiter\", \"author_flair_text\": \"GNU Emacs maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"created\": 1559874087.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7dgei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559844887.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"org-babel allows literate programming in regular org files. Regular org files can be exported to pdf using latex. Regular org files already allow math equations, diagrams and code. org-babel can execute the code and provide the output (in different formats as you please).\\n\\nThe advantage is that you can have your program / code and your document in the same file.\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7dgei\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eorg-babel allows literate programming in regular org files. Regular org files can be exported to pdf using latex. Regular org files already allow math equations, diagrams and code. org-babel can execute the code and provide the output (in different formats as you please).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe advantage is that you can have your program / code and your document in the same file.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7dgei/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559873687.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7ca4a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Tatrics\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559844312.0, \"send_replies\": true, \"parent_id\": \"t1_eq7088x\", \"score\": 1, \"author_fullname\": \"t2_tpfed\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is handy! Thanks!\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq7ca4a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is handy! Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq7ca4a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559873112.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxiz6w\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7a4uh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jaafartrull\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1559843222.0, \"send_replies\": true, \"parent_id\": \"t3_bxiz6w\", \"score\": 1, \"author_fullname\": \"t2_158our\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm a big fan actually. Even with latex mode shortcuts it's a lot faster to use org, once you get it set up. I use it with TikZ and Beamer...\", \"link_title\": \"org-babel for latex\", \"author_flair_css_class\": null, \"name\": \"t1_eq7a4uh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a big fan actually. Even with latex mode shortcuts it\\u0026#39;s a lot faster to use org, once you get it set up. I use it with TikZ and Beamer...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/eq7a4uh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"report_reasons\": null, \"link_author\": \"-dag-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"created\": 1559872022.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9yo7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7a260\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dzecniv\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1559843184.0, \"send_replies\": true, \"parent_id\": \"t3_bw9yo7\", \"score\": 1, \"author_fullname\": \"t2_j6dwn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I completed a bit https://wikemacs.org/wiki/Eshell, more additions welcome ! cheers\", \"link_title\": \"Did you know that the Eshell is awesome?\", \"author_flair_css_class\": null, \"name\": \"t1_eq7a260\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI completed a bit \\u003Ca href=\\\"https://wikemacs.org/wiki/Eshell\\\"\\u003Ehttps://wikemacs.org/wiki/Eshell\\u003C/a\\u003E, more additions welcome ! cheers\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/eq7a260/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"report_reasons\": null, \"link_author\": \"202700000000\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"created\": 1559871984.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559902737.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx54uk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq73rjt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yep808\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1559840023.0, \"send_replies\": true, \"parent_id\": \"t1_eq5r6wd\", \"score\": 1, \"author_fullname\": \"t2_3kgkql01\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes I'm aware of it, but I prefer to require the packages with native Elisp. Use-package forms an abstraction upon which is hard to debug\", \"link_title\": \"Even Better 'Better Defaults'\", \"author_flair_css_class\": null, \"name\": \"t1_eq73rjt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes I\\u0026#39;m aware of it, but I prefer to require the packages with native Elisp. Use-package forms an abstraction upon which is hard to debug\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/eq73rjt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://github.com/ianpan870102/.emacs.d\", \"created\": 1559868823.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwm94g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq70hsc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomtac\", \"num_comments\": 19, \"can_mod_post\": false, \"created_utc\": 1559838492.0, \"send_replies\": true, \"parent_id\": \"t1_eq4kvcb\", \"score\": 1, \"author_fullname\": \"t2_pkynq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"In my experience, that has happened. But that doesn't mean it happens to everyone.\\n\\nA good for instance is Control-v . Out of the box, that key is to scroll up (that is, page down). Then I added the cua.el package that maps Control-v to the yank (or insert from clipboard) action.\\n\\nThat caused problems until I redefined Shift-Control-v to do the scrolling thing.\\n\\n (define-key global-map [(shift control ?v)] 'scroll-up)\\n\\nI did the reverse with Control-a . The cua package wanted that to Select Whole Buffer. BUt I was too used to Control-a being beginning-of-line.\\n\\nYes, I did wind up with a LOT of conflicts in the keymap. So in my dot-emacs file, I have a big area towards the end in which I reconfigure lots and lots of keys at once.\\n\\nBecause, doing it in each package easily leads to one package wiping out another package's keys.\\n\\nIt is not so much a problem these days, because packages have the option of defining their own prefix key if they like. Then they can assign their own keymap to that prefix.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_eq70hsc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn my experience, that has happened. But that doesn\\u0026#39;t mean it happens to everyone.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA good for instance is Control-v . Out of the box, that key is to scroll up (that is, page down). Then I added the cua.el package that maps Control-v to the yank (or insert from clipboard) action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat caused problems until I redefined Shift-Control-v to do the scrolling thing.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(define-key global-map [(shift control ?v)] \\u0026#39;scroll-up)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI did the reverse with Control-a . The cua package wanted that to Select Whole Buffer. BUt I was too used to Control-a being beginning-of-line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes, I did wind up with a LOT of conflicts in the keymap. So in my dot-emacs file, I have a big area towards the end in which I reconfigure lots and lots of keys at once.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause, doing it in each package easily leads to one package wiping out another package\\u0026#39;s keys.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is not so much a problem these days, because packages have the option of defining their own prefix key if they like. Then they can assign their own keymap to that prefix.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/eq70hsc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"created\": 1559867292.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq7088x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erickgnavar\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559838371.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 2, \"author_fullname\": \"t2_ndbm5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"A nice thing I use in combination with restclient.el is `json-mode-beautify`(from `json-mode` package) this way you can format json payload easily. I have it binded to `C-c C-f` for more quickly access.\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq7088x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA nice thing I use in combination with restclient.el is \\u003Ccode\\u003Ejson-mode-beautify\\u003C/code\\u003E(from \\u003Ccode\\u003Ejson-mode\\u003C/code\\u003E package) this way you can format json payload easily. I have it binded to \\u003Ccode\\u003EC-c C-f\\u003C/code\\u003E for more quickly access.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq7088x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559867171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6xou0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"vitorqb23\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559837175.0, \"send_replies\": true, \"parent_id\": \"t1_eq6ooiv\", \"score\": 1, \"author_fullname\": \"t2_2nkdd29t\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Hey! \\n\\n\\nSo my \\\"remote\\\" server actually lives on our LAN, so I'm guessing that is a very different scenario than having a really remote server. \\n\\n\\nAnyway, even when the server is on our local network the delay is \\\\*still\\\\* a problem for low response-time features like completion, etc. So I feel your pain.\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6xou0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo my \\u0026quot;remote\\u0026quot; server actually lives on our LAN, so I\\u0026#39;m guessing that is a very different scenario than having a really remote server. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway, even when the server is on our local network the delay is *still* a problem for low response-time features like completion, etc. So I feel your pain.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq6xou0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559865975.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6wy35\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559836799.0, \"send_replies\": true, \"parent_id\": \"t1_eq6685h\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Nope, only EXWM + EXWM-x and few single-key bindings:\\n - F1 switch-to-last-buffer\\n - F2 delete-other-windows\\n - F3 other-window\\n - F4 split-window-below\\n - F5 split-window-right\\n - F6 notmuch / S-F6 notmuch-mua-new-mail / C-F6 call-process-shell-command to a script that wrap RSS2Email\\n....\\n - F9 aweshell-toggle\\n....\\n\\nWith \\\"printed\\\" (actually a stickers) keycaps so it's super-easy to operate.\\n\\nsshot: https://transfer.sh/10A2hA/sshot.png\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6wy35\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENope, only EXWM + EXWM-x and few single-key bindings:\\n - F1 switch-to-last-buffer\\n - F2 delete-other-windows\\n - F3 other-window\\n - F4 split-window-below\\n - F5 split-window-right\\n - F6 notmuch / S-F6 notmuch-mua-new-mail / C-F6 call-process-shell-command to a script that wrap RSS2Email\\n....\\n - F9 aweshell-toggle\\n....\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith \\u0026quot;printed\\u0026quot; (actually a stickers) keycaps so it\\u0026#39;s super-easy to operate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esshot: \\u003Ca href=\\\"https://transfer.sh/10A2hA/sshot.png\\\"\\u003Ehttps://transfer.sh/10A2hA/sshot.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6wy35/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559865599.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6w95t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"egregius313\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559836472.0, \"send_replies\": true, \"parent_id\": \"t1_eq4dw7d\", \"score\": 2, \"author_fullname\": \"t2_clfs9gn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"If you use `M-x switch-to-buffer` or even ido, having a lot of buffers open makes the autocomplete a lot less helpful.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6w95t\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you use \\u003Ccode\\u003EM-x switch-to-buffer\\u003C/code\\u003E or even ido, having a lot of buffers open makes the autocomplete a lot less helpful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6w95t/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559865272.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6tq5v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eli-zaretskii\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559835257.0, \"send_replies\": true, \"parent_id\": \"t1_eq65bol\", \"score\": 3, \"author_fullname\": \"t2_13cvre\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"If it means anything, I never kill any buffers in my sessions, even though these go on for many weeks.\\n\\nBut if you are bothered by that, someone else pointed out that the bundled package midnight.el will kill unused buffer for you so look it up.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_eq6tq5v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf it means anything, I never kill any buffers in my sessions, even though these go on for many weeks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut if you are bothered by that, someone else pointed out that the bundled package midnight.el will kill unused buffer for you so look it up.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6tq5v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": \"GNU Emacs maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559864057.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6sx3k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bnzmnzhnz\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559834863.0, \"send_replies\": true, \"parent_id\": \"t3_bx7m7a\", \"score\": 1, \"author_fullname\": \"t2_ek4av\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I find projectile with ivy and ivy-rich is a good pattern for bouncing between projects and keeping track of which buffers belong to each.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6sx3k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find projectile with ivy and ivy-rich is a good pattern for bouncing between projects and keeping track of which buffers belong to each.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6sx3k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559863663.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxhod6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6rm65\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"C0untLizzi\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559834237.0, \"send_replies\": true, \"parent_id\": \"t3_bxhod6\", \"score\": 3, \"author_fullname\": \"t2_1235w2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I think you need to require dap-python for it to be registered, something like\\n\\n (require 'dap-mode)\\n (require 'dap-ui)\\n (require 'dap-python)\\n (dap-mode 1)\\n (dap-ui-mode 1)\\n\\nworks for me.\", \"link_title\": \"Where do I find templates for dap-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6rm65\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think you need to require dap-python for it to be registered, something like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;dap-mode)\\n(require \\u0026#39;dap-ui)\\n(require \\u0026#39;dap-python)\\n(dap-mode 1)\\n(dap-ui-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eworks for me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/eq6rm65/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"report_reasons\": null, \"link_author\": \"billy_wade\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"created\": 1559863037.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxfdd1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6ooiv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rufusthedogwoof\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1559832823.0, \"send_replies\": true, \"parent_id\": \"t3_bxfdd1\", \"score\": 1, \"author_fullname\": \"t2_10s2l8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm happy you have found a fix with --with-x-toolkit=lucid.\\n\\nquick question, how much latency are you finding with this? I tried it awhile back, and with my vpn connect -\\u003E my servers it was just unbearably slow.. and then i went down the rabbit hole of trying to get a better emacs experience with cygwin, w32 native, and WSL...\", \"link_title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6ooiv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m happy you have found a fix with --with-x-toolkit=lucid.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Equick question, how much latency are you finding with this? I tried it awhile back, and with my vpn connect -\\u0026gt; my servers it was just unbearably slow.. and then i went down the rabbit hole of trying to get a better emacs experience with cygwin, w32 native, and WSL...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/eq6ooiv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"report_reasons\": null, \"link_author\": \"vitorqb23\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"created\": 1559861623.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2t14\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6nvuu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dzecniv\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559832429.0, \"send_replies\": true, \"parent_id\": \"t3_bx2t14\", \"score\": 1, \"author_fullname\": \"t2_j6dwn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Contributions on its wikemacs page are welcome ! https://wikemacs.org/wiki/Restclient cheers\", \"link_title\": \"Restclient example\", \"author_flair_css_class\": null, \"name\": \"t1_eq6nvuu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EContributions on its wikemacs page are welcome ! \\u003Ca href=\\\"https://wikemacs.org/wiki/Restclient\\\"\\u003Ehttps://wikemacs.org/wiki/Restclient\\u003C/a\\u003E cheers\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/eq6nvuu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"report_reasons\": null, \"link_author\": \"Tatrics\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"created\": 1559861229.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx82j3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6kuko\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559830945.0, \"send_replies\": true, \"parent_id\": \"t3_bx82j3\", \"score\": 1, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have been experiencing the exact same thing, but never thought much about it.. Looks like it's time to switch back to the default Emacs undo system.\", \"link_title\": \"Somehow my undo history is truncated... what did I inadvertently change?\", \"author_flair_css_class\": \"default\", \"name\": \"t1_eq6kuko\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have been experiencing the exact same thing, but never thought much about it.. Looks like it\\u0026#39;s time to switch back to the default Emacs undo system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/eq6kuko/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"report_reasons\": null, \"link_author\": \"moxxon\", \"author_flair_text\": \"default bindings, org, magit, ox-hugo\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"created\": 1559859745.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw9azu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6kou5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 26, \"can_mod_post\": false, \"created_utc\": 1559830867.0, \"send_replies\": true, \"parent_id\": \"t1_eq6295p\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\\\u003EWhat would you say are the most significant determining factors for init time?\\n\\n\\u0026#x200B;\\n\\nI meant that the same code snippet could affect loading time completely different depending on the rest of the configuration.\\n\\n\\u0026#x200B;\\n\\n\\\\\\u003ECorrect. It's also not Atom or VS Code. That doesn't preclude comparison.\\n\\n\\u0026#x200B;\\n\\nI meant Emacs is not a text editor like all these.\", \"link_title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"author_flair_css_class\": null, \"name\": \"t1_eq6kou5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;What would you say are the most significant determining factors for init time?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI meant that the same code snippet could affect loading time completely different depending on the rest of the configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026gt;Correct. It\\u0026#39;s also not Atom or VS Code. That doesn\\u0026#39;t preclude comparison.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI meant Emacs is not a text editor like all these.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/eq6kou5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"report_reasons\": null, \"link_author\": \"Rainymood_XI\", \"author_flair_text\": null, \"link_url\": \"https://github.com/Rainymood/dotemacs\", \"created\": 1559859667.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwbizf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6iqjv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"billy_wade\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1559829882.0, \"send_replies\": true, \"parent_id\": \"t1_epyenr4\", \"score\": 1, \"author_fullname\": \"t2_14xlbd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Okay, it should be up now, after I upload the gif.\", \"link_title\": \"I'm getting a strange color theme bug in 26.2\", \"author_flair_css_class\": null, \"name\": \"t1_eq6iqjv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOkay, it should be up now, after I upload the gif.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/eq6iqjv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"report_reasons\": null, \"link_author\": \"billy_wade\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"created\": 1559858682.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6hswy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"localhorst\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559829397.0, \"send_replies\": true, \"parent_id\": \"t3_bx7m7a\", \"score\": 1, \"author_fullname\": \"t2_1l9g7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"For me just\\n\\n (setq ido-default-buffer-method 'selected-window)\\n (ido-mode 1)\\n\\nis good enough and I rarely close buffers\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6hswy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor me just\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq ido-default-buffer-method \\u0026#39;selected-window)\\n(ido-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eis good enough and I rarely close buffers\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6hswy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559858197.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6heyr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"danielszm\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559829196.0, \"send_replies\": true, \"parent_id\": \"t1_eq5k72d\", \"score\": 2, \"author_fullname\": \"t2_9jyp6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I second that which has been seconded. A memoir begs to be written with the title: How I Learned to Stop Worrying and Love Open Buffers.\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6heyr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI second that which has been seconded. A memoir begs to be written with the title: How I Learned to Stop Worrying and Love Open Buffers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6heyr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559857996.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx7m7a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq6h8b4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kcin\", \"num_comments\": 54, \"can_mod_post\": false, \"created_utc\": 1559829099.0, \"send_replies\": true, \"parent_id\": \"t1_eq5gail\", \"score\": 1, \"author_fullname\": \"t2_2z9w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Frequent tasks should be made more accessible and easier than infrequent tasks. C-x b is an awful sequence and it's astounding that it's used for such a highest-frequency task.\\n\\nAgreed, but I go further than you and assign buffer switching to a single key, because it's a such a frequent task, that it deserves its own key.\\n\\nI don't use the right windows key on my keyboard, so it's a good choice for that (other candidates are the right control, right shift, etc. which can be assigned as single keys to frequent tasks).\", \"link_title\": \"how to deal with a lot of buffers in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_eq6h8b4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EFrequent tasks should be made more accessible and easier than infrequent tasks. C-x b is an awful sequence and it\\u0026#39;s astounding that it\\u0026#39;s used for such a highest-frequency task.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAgreed, but I go further than you and assign buffer switching to a single key, because it\\u0026#39;s a such a frequent task, that it deserves its own key.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t use the right windows key on my keyboard, so it\\u0026#39;s a good choice for that (other candidates are the right control, right shift, etc. which can be assigned as single keys to frequent tasks).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/eq6h8b4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"report_reasons\": null, \"link_author\": \"ch0ff\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"created\": 1559857899.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_eq6h8b4\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["240073"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:39 GMT"], "x-ratelimit-remaining": ["564.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["36"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914359.795144,VS0,VE505"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["442"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=99"}, "recorded_at": "2019-06-07T13:32:39"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=EH3C7KJirjv84Gi5OS"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=99"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 99, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So Emacs is pretty old, and it has `grep.el` and `find-dired` that allow to use external tools to search for files and in files. But that can cause difficulties when those tools are not available. Sure, `grep` and `find` are available on every *nix environment (ahem, BSD and GNU actually differ, ahem), but that's not the case for Windows. I'm not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\n\\nI'm aware of [xah-find](https://github.com/xahlee/xah-find), which declares these features:\\n\\n\\u003E\\u2022 Pure emacs lisp. No dependencies on unix/linux grep/sed/find. Especially useful on Windows.\\n\\u003E\\n\\u003E\\u2022 Output is highlighted and clickable for jumping to occurence.\\n\\u003E\\n\\u003E\\u2022 Using emacs regex, not bash/perl etc regex.\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that\\u2019s multiple lines.\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that contains lots Unicode characters. See [unix uniq unicode bug](http://xahlee.info/comp/unix_uniq_unicode_bug.html) and [emacs calling unix grep problem](http://ergoemacs.org/emacs/emacs_grep_problem.html)\\n\\u003E\\n\\u003E\\u2022 Reliably Find/Replace string that contains lots escape slashes or backslashes. For example, Find/Replace string that\\u2019s regex in source code.\\n\\nAnd it's seem to be nice solution for searching within file contents when `grep` or alternatives aren't available, but it's not in the default Emacs, you have to use googlefu in order to find it. And also it features output format that is quite different from what `grep` produces.\\n\\nAs for file search, I know that [Projectile](https://github.com/bbatsov/projectile) provides a [native](https://docs.projectile.mx/en/latest/configuration/#project-indexing-method) way of searching for files written in elisp, but again, it's not in the core, for obvious reasons.\\n\\nI wonder why there's no builtin commands to do arbitrary file search and contents search from Emacs like in, say, VSCode, Sublime Text, and Atom, which have cross-platform methods to search for and in files, which make sense to me, since I will get similar results across platforms, and will not be worried if my system features GNU grep or BSD grep, and GNU find or BSD find, which can be an issue on Linux and MacOS, and will require setting up GNU utilities on Windows.\\n\\nSo are there any historical or technical reasons for that? I know that elisp can be pretty slow for such task, but it seems that `xah-find` performs pretty good on my machine, and `native` method in projectile works acceptable as well.\", \"author_fullname\": \"t2_w7w9e32\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"grep and find but in pure Emacs LISP?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_bxtwfg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559938474.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo Emacs is pretty old, and it has \\u003Ccode\\u003Egrep.el\\u003C/code\\u003E and \\u003Ccode\\u003Efind-dired\\u003C/code\\u003E that allow to use external tools to search for files and in files. But that can cause difficulties when those tools are not available. Sure, \\u003Ccode\\u003Egrep\\u003C/code\\u003E and \\u003Ccode\\u003Efind\\u003C/code\\u003E are available on every *nix environment (ahem, BSD and GNU actually differ, ahem), but that\\u0026#39;s not the case for Windows. I\\u0026#39;m not Windows user myself, but I still find it kinda weird thing that there is no builtin solution for this task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m aware of \\u003Ca href=\\\"https://github.com/xahlee/xah-find\\\"\\u003Exah-find\\u003C/a\\u003E, which declares these features:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u2022 Pure emacs lisp. No dependencies on unix/linux grep/sed/find. Especially useful on Windows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Output is highlighted and clickable for jumping to occurence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Using emacs regex, not bash/perl etc regex.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that\\u2019s multiple lines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that contains lots Unicode characters. See \\u003Ca href=\\\"http://xahlee.info/comp/unix_uniq_unicode_bug.html\\\"\\u003Eunix uniq unicode bug\\u003C/a\\u003E and \\u003Ca href=\\\"http://ergoemacs.org/emacs/emacs_grep_problem.html\\\"\\u003Eemacs calling unix grep problem\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Reliably Find/Replace string that contains lots escape slashes or backslashes. For example, Find/Replace string that\\u2019s regex in source code.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAnd it\\u0026#39;s seem to be nice solution for searching within file contents when \\u003Ccode\\u003Egrep\\u003C/code\\u003E or alternatives aren\\u0026#39;t available, but it\\u0026#39;s not in the default Emacs, you have to use googlefu in order to find it. And also it features output format that is quite different from what \\u003Ccode\\u003Egrep\\u003C/code\\u003E produces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs for file search, I know that \\u003Ca href=\\\"https://github.com/bbatsov/projectile\\\"\\u003EProjectile\\u003C/a\\u003E provides a \\u003Ca href=\\\"https://docs.projectile.mx/en/latest/configuration/#project-indexing-method\\\"\\u003Enative\\u003C/a\\u003E way of searching for files written in elisp, but again, it\\u0026#39;s not in the core, for obvious reasons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wonder why there\\u0026#39;s no builtin commands to do arbitrary file search and contents search from Emacs like in, say, VSCode, Sublime Text, and Atom, which have cross-platform methods to search for and in files, which make sense to me, since I will get similar results across platforms, and will not be worried if my system features GNU grep or BSD grep, and GNU find or BSD find, which can be an issue on Linux and MacOS, and will require setting up GNU utilities on Windows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo are there any historical or technical reasons for that? I know that elisp can be pretty slow for such task, but it seems that \\u003Ccode\\u003Exah-find\\u003C/code\\u003E performs pretty good on my machine, and \\u003Ccode\\u003Enative\\u003C/code\\u003E method in projectile works acceptable as well.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxtwfg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andreyorst\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxtwfg/grep_and_find_but_in_pure_emacs_lisp/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559909674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"There was a post recently about why people quit using helm and I said that the TAB key usage was just too jarring (by default). I said that I gave up but prompted to change them I tried, but I didn't like any of my options that I could find. So I write my own. This will make the tab:\\n\\n* If there's more than one candidate flash the mode-line. This is a close enough approximation of the default `find-file` behavior that expands the candidates\\n* If there's one or less candidates do whatever the default persistent action is.\\n\\nNow helm doesn't really conflict with two decades of `find-file` or `execute-extended-command` usage(\\\\*):\\n\\nSo the flasher ([source](https://www.emacswiki.org/emacs/AlarmBell)):\\n\\n defun double-flash-mode-line ()\\n \\\"Flash the modeline\\\"\\n (let ((flash-sec (/ 1.0 20)))\\n (invert-face 'mode-line)\\n (run-with-timer flash-sec nil #'invert-face 'mode-line)\\n (run-with-timer (* 2 flash-sec) nil #'invert-face 'mode-line)\\n (run-with-timer (* 3 flash-sec) nil #'invert-face 'mode-line)))\\n\\nThe action:\\n\\n (defun helm-execute-if-single-persistent-action (\\u0026optional attr split-onewindow)\\n \\\"Execute persistent action if the candidate list is less than 2\\\"\\n (interactive)\\n (with-helm-alive-p\\n (if (\\u003E (helm-get-candidate-number) 2)\\n (double-flash-mode-line)\\n (helm-execute-persistent-action)\\n )))\\n\\nSo here's my helm-related configuration in it's entirety for now. I'm probably still missing a lot of gems to get the most out of it but still:\\n\\n (use-package helm\\n :demand t\\n :bind* (:map helm-map \\n ([tab] . helm-execute-if-single-persistent-action)\\n (\\\"C-i\\\" . helm-execute-persistent-action)\\n ))\\n \\n (use-package helm-files\\n :bind (:map helm-find-files-map\\n (\\\"\\u003CC-backspace\\u003E\\\" . helm-find-files-up-one-level)\\n )\\n )\\n \\n (require 'helm-config)\\n (global-set-key (kbd \\\"M-x\\\") 'helm-M-x)\\n (global-set-key (kbd \\\"C-x b\\\") 'helm-buffers-list)\\n (global-set-key (kbd \\\"C-x C-f\\\") 'helm-find-files)\\n (helm-mode 1)\\n\\nSimple enough and now helm can get off my lawn and back to my emacs.\\n\\n\\u0026#x200B;\\n\\n(\\\\*) I still make mistakes when I want a new file and there's a close candidate, but I can live with that.\", \"author_fullname\": \"t2_z7asf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Helm and the Tab key\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxt0cz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559932255.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere was a post recently about why people quit using helm and I said that the TAB key usage was just too jarring (by default). I said that I gave up but prompted to change them I tried, but I didn\\u0026#39;t like any of my options that I could find. So I write my own. This will make the tab:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf there\\u0026#39;s more than one candidate flash the mode-line. This is a close enough approximation of the default \\u003Ccode\\u003Efind-file\\u003C/code\\u003E behavior that expands the candidates\\u003C/li\\u003E\\n\\u003Cli\\u003EIf there\\u0026#39;s one or less candidates do whatever the default persistent action is.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ENow helm doesn\\u0026#39;t really conflict with two decades of \\u003Ccode\\u003Efind-file\\u003C/code\\u003E or \\u003Ccode\\u003Eexecute-extended-command\\u003C/code\\u003E usage(*):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo the flasher (\\u003Ca href=\\\"https://www.emacswiki.org/emacs/AlarmBell\\\"\\u003Esource\\u003C/a\\u003E):\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edefun double-flash-mode-line ()\\n \\u0026quot;Flash the modeline\\u0026quot;\\n (let ((flash-sec (/ 1.0 20)))\\n (invert-face \\u0026#39;mode-line)\\n (run-with-timer flash-sec nil #\\u0026#39;invert-face \\u0026#39;mode-line)\\n (run-with-timer (* 2 flash-sec) nil #\\u0026#39;invert-face \\u0026#39;mode-line)\\n (run-with-timer (* 3 flash-sec) nil #\\u0026#39;invert-face \\u0026#39;mode-line)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe action:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun helm-execute-if-single-persistent-action (\\u0026amp;optional attr split-onewindow)\\n \\u0026quot;Execute persistent action if the candidate list is less than 2\\u0026quot;\\n (interactive)\\n (with-helm-alive-p\\n (if (\\u0026gt; (helm-get-candidate-number) 2)\\n (double-flash-mode-line)\\n (helm-execute-persistent-action)\\n )))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo here\\u0026#39;s my helm-related configuration in it\\u0026#39;s entirety for now. I\\u0026#39;m probably still missing a lot of gems to get the most out of it but still:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package helm\\n :demand t\\n :bind* (:map helm-map \\n ([tab] . helm-execute-if-single-persistent-action)\\n (\\u0026quot;C-i\\u0026quot; . helm-execute-persistent-action)\\n ))\\n\\n(use-package helm-files\\n :bind (:map helm-find-files-map\\n (\\u0026quot;\\u0026lt;C-backspace\\u0026gt;\\u0026quot; . helm-find-files-up-one-level)\\n )\\n )\\n\\n(require \\u0026#39;helm-config)\\n(global-set-key (kbd \\u0026quot;M-x\\u0026quot;) \\u0026#39;helm-M-x)\\n(global-set-key (kbd \\u0026quot;C-x b\\u0026quot;) \\u0026#39;helm-buffers-list)\\n(global-set-key (kbd \\u0026quot;C-x C-f\\u0026quot;) \\u0026#39;helm-find-files)\\n(helm-mode 1)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESimple enough and now helm can get off my lawn and back to my emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(*) I still make mistakes when I want a new file and there\\u0026#39;s a close candidate, but I can live with that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxt0cz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TTRation\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxt0cz/helm_and_the_tab_key/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxt0cz/helm_and_the_tab_key/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559903455.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm currently using\\n\\n```\\n(defvar default-font \\\"DejaVu Sans Mono-11.0:antialias=natural\\\")\\n(add-to-list 'default-frame-alist `(font . ,default-font))\\n```\\n\\nbut I'm wondering whether there is sth better out there.\", \"author_fullname\": \"t2_q52rf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What font settings would you recommend?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxsydi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559931829.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m currently using\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(defvar default-font \\u0026quot;DejaVu Sans Mono-11.0:antialias=natural\\u0026quot;)\\n(add-to-list \\u0026#39;default-frame-alist `(font . ,default-font))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut I\\u0026#39;m wondering whether there is sth better out there.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsydi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackjackk0\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxsydi/what_font_settings_would_you_recommend/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559903029.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have install the MELPA stable packages for pandoc, mark-down-mode and pandoc-mode. Can export, compile etc fine with mark-down mode but I cannot get the pandoc-mode exporting to work as the error is 'Searching for program: No such file or directory, pandoc'\\n\\n\\u0026#x200B;\\n\\nIn my .emacs file I have (setq markdown-command \\\"/usr/local/bin/pandoc\\\")\\n\\n\\u0026#x200B;\\n\\nGoing through finder, I do have a 50.9MB pandoc file (with no extension though) in /usr/local/bin\\n\\n\\u0026#x200B;\\n\\nAny ideas?\", \"author_fullname\": \"t2_5034r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help installing pandoc, markdown-mode, pandoc-mode. OSX\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxsvnc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559931249.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have install the MELPA stable packages for pandoc, mark-down-mode and pandoc-mode. Can export, compile etc fine with mark-down mode but I cannot get the pandoc-mode exporting to work as the error is \\u0026#39;Searching for program: No such file or directory, pandoc\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my .emacs file I have (setq markdown-command \\u0026quot;/usr/local/bin/pandoc\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoing through finder, I do have a 50.9MB pandoc file (with no extension though) in /usr/local/bin\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsvnc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"richardsplash\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxsvnc/help_installing_pandoc_markdownmode_pandocmode_osx/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559902449.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Because the `elpa` directory is in the `emacs.d` directory when I try to search for some strings in own `init.el` it shows results from the `elpa` directory which I don't need.\\n\\nDo some of the grepping packages (projectile-grep for instance) have options to restrict or exclude some directories from the search?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to configure a grep command not to search some directories?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxrxm0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559923409.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause the \\u003Ccode\\u003Eelpa\\u003C/code\\u003E directory is in the \\u003Ccode\\u003Eemacs.d\\u003C/code\\u003E directory when I try to search for some strings in own \\u003Ccode\\u003Einit.el\\u003C/code\\u003E it shows results from the \\u003Ccode\\u003Eelpa\\u003C/code\\u003E directory which I don\\u0026#39;t need.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo some of the grepping packages (projectile-grep for instance) have options to restrict or exclude some directories from the search?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxrxm0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxrxm0/is_there_a_way_to_configure_a_grep_command_not_to/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559894609.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I don't know why I hadn't done this sooner, but today I installed kubuntu on a memory stick and am now running that on my otherwise Windows 10 laptop.\\n\\nOf course, the first thing I did after installing 106 kubuntu updates was to install Emacs, which happens to be version 26.1. I noticed, however, that the kubuntu repository doesn't include any of the `.info` files!\\n\\nSo I uninstalled, downloaded 26.2 from [GNU Land](https://www.gnu.org/software/emacs/download.html) and read through the installation instructions. I got as far as running `./configure` and came up with this message:\\n\\n configure: error: You seem to be running X, but no X development libraries\\n were found. You should install the relevant development files for X\\n and for the toolkit you want, such as Gtk+ or Motif. Also make\\n sure you have development files for image handling, i.e.\\n tiff, gif, jpeg, png and xpm.\\n If you are sure you want Emacs compiled without X window support, pass\\n --without-x\\n to configure.\\n\\nI went into the Muon package manager, typed in `x window development library`, and found these two lovelies:\\n\\n- libclxclient-dev (X Window System C++ access library)\\n- libdri2-dev (library for the DRI2 extension to the X Window System)\\n\\nWhich means very little to me :-( I haven't even looked at Gtk+ or Motif, as well as the development files for image handling.\\n\\nI've Googled, and most of what I've found is at least 2 years old. Hoping someone would offer some guidance here, please.\", \"author_fullname\": \"t2_3n4c5vdo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Roadblock when installing Emacs 26.2 on kubuntu 19.04\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxrwro\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559923220.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t know why I hadn\\u0026#39;t done this sooner, but today I installed kubuntu on a memory stick and am now running that on my otherwise Windows 10 laptop.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, the first thing I did after installing 106 kubuntu updates was to install Emacs, which happens to be version 26.1. I noticed, however, that the kubuntu repository doesn\\u0026#39;t include any of the \\u003Ccode\\u003E.info\\u003C/code\\u003E files!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I uninstalled, downloaded 26.2 from \\u003Ca href=\\\"https://www.gnu.org/software/emacs/download.html\\\"\\u003EGNU Land\\u003C/a\\u003E and read through the installation instructions. I got as far as running \\u003Ccode\\u003E./configure\\u003C/code\\u003E and came up with this message:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Econfigure: error: You seem to be running X, but no X development libraries\\nwere found. You should install the relevant development files for X\\nand for the toolkit you want, such as Gtk+ or Motif. Also make\\nsure you have development files for image handling, i.e.\\ntiff, gif, jpeg, png and xpm.\\nIf you are sure you want Emacs compiled without X window support, pass\\n --without-x\\nto configure.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI went into the Muon package manager, typed in \\u003Ccode\\u003Ex window development library\\u003C/code\\u003E, and found these two lovelies:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Elibclxclient-dev (X Window System C++ access library)\\u003C/li\\u003E\\n\\u003Cli\\u003Elibdri2-dev (library for the DRI2 extension to the X Window System)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWhich means very little to me :-( I haven\\u0026#39;t even looked at Gtk+ or Motif, as well as the development files for image handling.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve Googled, and most of what I\\u0026#39;ve found is at least 2 years old. Hoping someone would offer some guidance here, please.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxrwro\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"granti128\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxrwro/roadblock_when_installing_emacs_262_on_kubuntu/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559894420.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello r/emacs\\n\\nI would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz.[1](https://www.floydmortuary.com/obituaries/Eric-Ritz/) I didn't know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his `php-mode`.\\n\\nI'm not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\", \"author_fullname\": \"t2_gilh3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[meta] An \\\"in memoriam\\\" page?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxq3a0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 45, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 45, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559908284.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/emacs\\\"\\u003Er/emacs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to first give my deepest sympathies to those contending with the death of Eric James Michael Ritz.\\u003Ca href=\\\"https://www.floydmortuary.com/obituaries/Eric-Ritz/\\\"\\u003E1\\u003C/a\\u003E I didn\\u0026#39;t know Eric personally, but I have appreciated his contributions to furthering the cause of emacs. Most notably, I think, was his \\u003Ccode\\u003Ephp-mode\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure how you folks feel about it, but I think it would be nice to have an in memoriam page somewhere for such great contributors. Maybe something like this exists already?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"export EDITOR=emacs\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxq3a0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paxperscientiam\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxq3a0/meta_an_in_memoriam_page/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559879484.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_6b5tg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs game: Key Quiz - Guess keys for Emacs commands\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxmyy8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 28, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 28, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559889098.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxmyy8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"LiterallyCarlSagan\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxmyy8/emacs_game_key_quiz_guess_keys_for_emacs_commands/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/federicotdn/key-quiz\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559860298.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a package that will let me forget which files I've already opened? Not so much a project exploration package or a do-everything completion system, just a slight twist on switch-to-buffer which would look for files if tab-completing to an existing buffer has failed. Kind of like how finding a file that's already open just switches to its buffer. Ideally as similar to switch-to-buffer's UI as possible.\", \"author_fullname\": \"t2_ajc92\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Package to switch to buffer or file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxm847\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559885167.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a package that will let me forget which files I\\u0026#39;ve already opened? Not so much a project exploration package or a do-everything completion system, just a slight twist on switch-to-buffer which would look for files if tab-completing to an existing buffer has failed. Kind of like how finding a file that\\u0026#39;s already open just switches to its buffer. Ideally as similar to switch-to-buffer\\u0026#39;s UI as possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxm847\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"phalp\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxm847/package_to_switch_to_buffer_or_file/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559856367.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm pretty new to emacs, I just installed spacemacs on my arch machine. In the terminal, the interface is near-unreadable. I just see \\\\u6969 all over the place where arrows and other unicode characters would be. Is there a font package I'm missing or something?\", \"author_fullname\": \"t2_eim28\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs showing unicode sequences in the terminal\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxjr2h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559872476.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m pretty new to emacs, I just installed spacemacs on my arch machine. In the terminal, the interface is near-unreadable. I just see \\\\u6969 all over the place where arrows and other unicode characters would be. Is there a font package I\\u0026#39;m missing or something?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxjr2h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rpgwaiter\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxjr2h/emacs_showing_unicode_sequences_in_the_terminal/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559843676.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If I'm writing a document to be published via latex, what, if any, advantages are there to author it in org-babel vs. pure latex? Does the answer change if the document includes things like mathematical equations, technical diagrams and/or code examples?\", \"author_fullname\": \"t2_ds1dyo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-babel for latex\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxiz6w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559868561.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I\\u0026#39;m writing a document to be published via latex, what, if any, advantages are there to author it in org-babel vs. pure latex? Does the answer change if the document includes things like mathematical equations, technical diagrams and/or code examples?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxiz6w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"-dag-\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxiz6w/orgbabel_for_latex/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559839761.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to debug python, but when it asks for a template and I type in \\\"python,\\\" nothing comes up. Where do I get a template?\", \"author_fullname\": \"t2_14xlbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Where do I find templates for dap-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxhod6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559861885.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to debug python, but when it asks for a template and I type in \\u0026quot;python,\\u0026quot; nothing comes up. Where do I get a template?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxhod6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_wade\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxhod6/where_do_i_find_templates_for_dapmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559833085.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have a setup where I'm forced to work on a Windows machine and connect to a remote linux server.\\n\\nMy initial idea was to start a emacs in daemon mode with `emacs --daemon` and having it persistently running on the server. Then, from windows and using putty (with X-forwarding) + vcxsrv (X Server for Windows), I could call `emacsclient -c` and have a client to this persistent session every time I need in a dedicated window in my Windows pc.\\n\\n\\nThis setup for me would be great because my sessions would survive connection instabilities. Even if my putty session dropped (which happens sometimes), I could just start another emacsclient and resume the work from where I left, including long-running `compile` commands.\\n\\n\\nHowever what happens is that after my connection drops for the first time (or I close a emacsclient) is that the next call to `emacsclient` fails. The system simply hangs and nothing happens. This happened with `emacsclient foo`, `emacsclient -c`, `emacsclient -e nil`, `emacsclient -t`, etc. It hangs (saying \\\"Waiting for Emacs\\\" if the -n flag is passed) as usual, but it never really opens a new emacs frame. \\n\\n\\nRestarting the server solves the issue, but of course I lose all my work.\\n\\n\\nAny ideas?\\n\\n\\n```\\nThis is GNU Emacs 25.1.1 (x86\\\\_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-15, modified by Debian\\n```\", \"author_fullname\": \"t2_2nkdd29t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Persistent emacs on remote linux session - emacsclient hangs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxfdd1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847473.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a setup where I\\u0026#39;m forced to work on a Windows machine and connect to a remote linux server.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy initial idea was to start a emacs in daemon mode with \\u003Ccode\\u003Eemacs --daemon\\u003C/code\\u003E and having it persistently running on the server. Then, from windows and using putty (with X-forwarding) + vcxsrv (X Server for Windows), I could call \\u003Ccode\\u003Eemacsclient -c\\u003C/code\\u003E and have a client to this persistent session every time I need in a dedicated window in my Windows pc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis setup for me would be great because my sessions would survive connection instabilities. Even if my putty session dropped (which happens sometimes), I could just start another emacsclient and resume the work from where I left, including long-running \\u003Ccode\\u003Ecompile\\u003C/code\\u003E commands.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever what happens is that after my connection drops for the first time (or I close a emacsclient) is that the next call to \\u003Ccode\\u003Eemacsclient\\u003C/code\\u003E fails. The system simply hangs and nothing happens. This happened with \\u003Ccode\\u003Eemacsclient foo\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -c\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -e nil\\u003C/code\\u003E, \\u003Ccode\\u003Eemacsclient -t\\u003C/code\\u003E, etc. It hangs (saying \\u0026quot;Waiting for Emacs\\u0026quot; if the -n flag is passed) as usual, but it never really opens a new emacs frame. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERestarting the server solves the issue, but of course I lose all my work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\nThis is GNU Emacs 25.1.1 (x86\\\\_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-15, modified by Debian\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfdd1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vitorqb23\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bxfdd1/persistent_emacs_on_remote_linux_session/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559818673.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I used to get a longer undo history, I would frequently use visualize-undo-tree to navigate through my undo states... suddenly my tree is always a single path. \\n\\nAnyone have any idea what I might have changed?\", \"author_fullname\": \"t2_krp1j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Somehow my undo history is truncated... what did I inadvertently change?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx82j3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559798322.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used to get a longer undo history, I would frequently use visualize-undo-tree to navigate through my undo states... suddenly my tree is always a single path. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone have any idea what I might have changed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx82j3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moxxon\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx82j3/somehow_my_undo_history_is_truncated_what_did_i/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559769522.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"well, recently i am using emacs to manage agenda, to write academic docs, to write some scripts for programming contest and so on until sudendly i find myself unproductive and crazy closing all buffer related to magit, org-mode, eshell, etc.... so i want to know how do you deal with all buffers?, how do you find and change to a buffer quickly?....\\n\\nany ideas is well received... thanks you!!\", \"author_fullname\": \"t2_rpq4n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"how to deal with a lot of buffers in emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx7m7a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 50, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 50, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559796022.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewell, recently i am using emacs to manage agenda, to write academic docs, to write some scripts for programming contest and so on until sudendly i find myself unproductive and crazy closing all buffer related to magit, org-mode, eshell, etc.... so i want to know how do you deal with all buffers?, how do you find and change to a buffer quickly?....\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eany ideas is well received... thanks you!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx7m7a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ch0ff\", \"num_crossposts\": 0, \"num_comments\": 54, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx7m7a/how_to_deal_with_a_lot_of_buffers_in_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559767222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Even Better 'Better Defaults'\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx54uk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559783750.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx54uk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx54uk/even_better_better_defaults/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/ianpan870102/.emacs.d\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559754950.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've made an example [restclient file](https://github.com/TatriX/realworld-rust-rocket/blob/master/tests/dev.http) for my [realworld](https://github.com/TatriX/realworld-rust-rocket) implementation in Rust.\\n\\n[Restclient](https://github.com/pashky/restclient.el) is useful for http testing. So if you never tried it I encourage you to do so!\\n\\nhttps://i.redd.it/lfmdm6x2mj231.png\", \"author_fullname\": \"t2_tpfed\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Restclient example\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"lfmdm6x2mj231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1810, \"x\": 1915, \"u\": \"https://i.redd.it/lfmdm6x2mj231.png\"}, \"m\": \"image/png\", \"id\": \"lfmdm6x2mj231\"}}, \"name\": \"t3_bx2t14\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559771552.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve made an example \\u003Ca href=\\\"https://github.com/TatriX/realworld-rust-rocket/blob/master/tests/dev.http\\\"\\u003Erestclient file\\u003C/a\\u003E for my \\u003Ca href=\\\"https://github.com/TatriX/realworld-rust-rocket\\\"\\u003Erealworld\\u003C/a\\u003E implementation in Rust.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/pashky/restclient.el\\\"\\u003ERestclient\\u003C/a\\u003E is useful for http testing. So if you never tried it I encourage you to do so!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/lfmdm6x2mj231.png\\\"\\u003Ehttps://i.redd.it/lfmdm6x2mj231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2t14\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tatrics\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2t14/restclient_example/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx2t14/restclient_example/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559742752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_eqgha\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx2swo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559771533.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2swo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"andreas-marschke\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559742733.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want to make it so that all variable and function calls are highlighted in the same way they are in definitions but I cannot work out how to properly do so.\\n\\n[Image](https://imgur.com/t9sIhUs) of my current highlighting.\", \"author_fullname\": \"t2_3bwix9h6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New to emacs, can't work out to highlight functions and variables when called\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx2cy9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559768909.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to make it so that all variable and function calls are highlighted in the same way they are in definitions but I cannot work out how to properly do so.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/t9sIhUs\\\"\\u003EImage\\u003C/a\\u003E of my current highlighting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx2cy9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ConfidentGarbage9\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx2cy9/new_to_emacs_cant_work_out_to_highlight_functions/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559740109.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to get into writing backends for Gnus, and I'm having a hard time wrapping my head around it coneptwise, essentialwise and otherwise.\\n\\n\\u0026#x200B;\\n\\nI think I've seen a blog-post or somesuch years ago walking through the basics, but all my attempts at finding it have evaluated to nil.\\n\\n\\u0026#x200B;\\n\\nWould I be so lucky that one of you might be able provide any pointers?\", \"author_fullname\": \"t2_mdzdbt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The woes of writing Gnus backends\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx25j5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559767624.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to get into writing backends for Gnus, and I\\u0026#39;m having a hard time wrapping my head around it coneptwise, essentialwise and otherwise.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I\\u0026#39;ve seen a blog-post or somesuch years ago walking through the basics, but all my attempts at finding it have evaluated to nil.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWould I be so lucky that one of you might be able provide any pointers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx25j5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"StoffePro\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx25j5/the_woes_of_writing_gnus_backends/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx25j5/the_woes_of_writing_gnus_backends/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559738824.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have some interesting agenda entries dating back to 2017 that I want to use in my current org files and I have set the TODO values to TODO2017, but there is too much to see when I am working on current items.\\n\\nIs there a way to filter the editing page to hide the TODO2017 or any other items?\\n\\nI think I can filter them out in the agenda view, but in this case I need them filtered when viewing or editing the page.\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can some org TODOs filtered out from normal working view?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bx0bp9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559752893.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have some interesting agenda entries dating back to 2017 that I want to use in my current org files and I have set the TODO values to TODO2017, but there is too much to see when I am working on current items.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way to filter the editing page to hide the TODO2017 or any other items?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I can filter them out in the agenda view, but in this case I need them filtered when viewing or editing the page.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bx0bp9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bx0bp9/how_can_some_org_todos_filtered_out_from_normal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bx0bp9/how_can_some_org_todos_filtered_out_from_normal/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559724093.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I saw [an earlier thread](https://www.reddit.com/r/emacs/comments/8e24t9/writing_reactjsx_in_2018_what_addons_do_you_all/) asking about users\\u2019 setups for JSX. Since I can\\u2019t respond to that thread, I thought I\\u2019d make a new one / an announcement.\\n\\nSince Emacs 25, js-jsx-mode was added to provide some indentation support for JSX \\u2014 however, the indentation code had many bugs and limitations. Not everyone knew about js-jsx-mode either.\\n\\nI decided to return to the Emacs core and fix the indentation code. I also added highlighting for JSX. I even made it so that JSX could be detected and used in normal JavaScript buffers, without the user needing to know about js-jsx-mode.\\n\\n[JSX code highlighted in Emacs 27](https://i.redd.it/hh8uds9elh231.png)\\n\\nAll these features are now available on the Emacs master branch, and eventually will be released in Emacs 27. I invite JS devs to take my improvements for a spin. Hopefully they will be pleasant for you to use!\\n\\nMy goal was to do most of the same things that the combination of js2-mode+rjsx-mode would achieve, without needing to install and configure extra modes, and hopefully with better performance.\", \"author_fullname\": \"t2_3w4fpd4t\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"Improved JSX support now available in js-mode on Emacs master\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"hh8uds9elh231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 684, \"x\": 816, \"u\": \"https://i.redd.it/hh8uds9elh231.png\"}, \"m\": \"image/png\", \"id\": \"hh8uds9elh231\"}}, \"name\": \"t3_bwzpw0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 113, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 113, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559747224.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI saw \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/8e24t9/writing_reactjsx_in_2018_what_addons_do_you_all/\\\"\\u003Ean earlier thread\\u003C/a\\u003E asking about users\\u2019 setups for JSX. Since I can\\u2019t respond to that thread, I thought I\\u2019d make a new one / an announcement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince Emacs 25, js-jsx-mode was added to provide some indentation support for JSX \\u2014 however, the indentation code had many bugs and limitations. Not everyone knew about js-jsx-mode either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI decided to return to the Emacs core and fix the indentation code. I also added highlighting for JSX. I even made it so that JSX could be detected and used in normal JavaScript buffers, without the user needing to know about js-jsx-mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/hh8uds9elh231.png\\\"\\u003EJSX code highlighted in Emacs 27\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll these features are now available on the Emacs master branch, and eventually will be released in Emacs 27. I invite JS devs to take my improvements for a spin. Hopefully they will be pleasant for you to use!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy goal was to do most of the same things that the combination of js2-mode+rjsx-mode would achieve, without needing to install and configure extra modes, and hopefully with better performance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwzpw0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jacksonrayhamilton\", \"num_crossposts\": 0, \"num_comments\": 23, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwzpw0/improved_jsx_support_now_available_in_jsmode_on/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559718424.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"It is kind of annoying to have to use capital letters to get a complete suggestion in many cases. So I was wondering if it possible to make company-lsp non-case-sensitive.\\n\\n\\u0026#x200B;\\n\\nThanks.\", \"author_fullname\": \"t2_3d69xp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make company-lsp non-case-sensitive?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwt79w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559706779.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt is kind of annoying to have to use capital letters to get a complete suggestion in many cases. So I was wondering if it possible to make company-lsp non-case-sensitive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwt79w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ram535\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwt79w/how_to_make_companylsp_noncasesensitive/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwt79w/how_to_make_companylsp_noncasesensitive/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559677979.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm a long-time vim user who's been intrigued for a while by what emacs has to offer. I recently made the plunge and have been been using emacs for my workflow with C/C++ development mostly. One issue that I'm running into is that I can't seem to get autoindent to behave nicely, or at least to behave like it does in vim.\\n\\nIn my .vimrc, I have two lines:\\n\\n set tabstop=4\\n set shiftwidth=4\\n\\nThere is a third option, set notabexpand, which is on by default and keeps tabs as tabs, instead of substituting spaces.\\n\\nThis is the behavior that I'm trying to create in emacs. The tab character is displayed as 4 spaces wide, but is actually saved as a tab character in the file instead of four spaces. Autoindentation also inserts tabs, which are displayed as 4 spaces wide.\\n\\nHow do I reproduce this in emacs? I've gone through half a dozen guides, each recommending something different, and all of them have had funky results. Currently I've got:\\n\\n (setq-default tab-width 4)\\n (setq tap-stop-list (number-sequence 4 80 4))\\n\\nAutoindents give me a tab two characters wide. I'm not sure if it's a tab being displayed as two spaces, or two actual spaces.\\n\\nI tried adding: \\n\\n (setq c-default-style \\\"linux\\\" tab-width 4)\\n\\nWhen I did this, tabs were indeed displayed as 4 characters wide, but each level of indention was giving me 2 tabs for a total of 8 characters of indentation per level.\\n\\nWhat am I missing here? I feel like I *must* be making this way harder than it is because such basic functionality can't be hidden behind 10 lines of configuration.\\n\\n\\nEdit:\\n\\nI did a little bit more tinkering, and I seem to have found a combination of settings that (mostly) gets the correct behavior.\\n\\nBasically, I got rid of everything in my .emacs that mentioned indentation and added the following:\\n\\n (setq-default c-basic-offset 4\\n tab-width 4\\n indent-tabs-mode t)\\n\\nWith that change, everything *seems* to be working correctly. c-basic-offset is how many spaces emacs will indent a level of code, tab width is how many spaces the tab character is equal to, and indent-tabs-mode is a boolean variable that determines if tabs are used (t) or spaces (f). At least that's what I'm gathering.\", \"author_fullname\": \"t2_ge28w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I get my tabs and auto-indent to behave nicely?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bws522\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559712779.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559701657.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a long-time vim user who\\u0026#39;s been intrigued for a while by what emacs has to offer. I recently made the plunge and have been been using emacs for my workflow with C/C++ development mostly. One issue that I\\u0026#39;m running into is that I can\\u0026#39;t seem to get autoindent to behave nicely, or at least to behave like it does in vim.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my .vimrc, I have two lines:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eset tabstop=4\\nset shiftwidth=4\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThere is a third option, set notabexpand, which is on by default and keeps tabs as tabs, instead of substituting spaces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the behavior that I\\u0026#39;m trying to create in emacs. The tab character is displayed as 4 spaces wide, but is actually saved as a tab character in the file instead of four spaces. Autoindentation also inserts tabs, which are displayed as 4 spaces wide.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I reproduce this in emacs? I\\u0026#39;ve gone through half a dozen guides, each recommending something different, and all of them have had funky results. Currently I\\u0026#39;ve got:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq-default tab-width 4)\\n(setq tap-stop-list (number-sequence 4 80 4))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAutoindents give me a tab two characters wide. I\\u0026#39;m not sure if it\\u0026#39;s a tab being displayed as two spaces, or two actual spaces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried adding: \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq c-default-style \\u0026quot;linux\\u0026quot; tab-width 4)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I did this, tabs were indeed displayed as 4 characters wide, but each level of indention was giving me 2 tabs for a total of 8 characters of indentation per level.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat am I missing here? I feel like I \\u003Cem\\u003Emust\\u003C/em\\u003E be making this way harder than it is because such basic functionality can\\u0026#39;t be hidden behind 10 lines of configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI did a little bit more tinkering, and I seem to have found a combination of settings that (mostly) gets the correct behavior.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically, I got rid of everything in my .emacs that mentioned indentation and added the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq-default c-basic-offset 4\\n tab-width 4\\n indent-tabs-mode t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith that change, everything \\u003Cem\\u003Eseems\\u003C/em\\u003E to be working correctly. c-basic-offset is how many spaces emacs will indent a level of code, tab width is how many spaces the tab character is equal to, and indent-tabs-mode is a boolean variable that determines if tabs are used (t) or spaces (f). At least that\\u0026#39;s what I\\u0026#39;m gathering.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bws522\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"morganmachine91\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bws522/how_do_i_get_my_tabs_and_autoindent_to_behave/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bws522/how_do_i_get_my_tabs_and_autoindent_to_behave/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559672857.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_r6lg7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Will this Debian buster (testing) bug of Emacs related to a 16 year old upstream gtk+ bug affect those waiting for buster?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwrhq4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559698416.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"bugs.debian.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwrhq4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jumpUpHigh\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwrhq4/will_this_debian_buster_testing_bug_of_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://bugs.debian.org/cgi-bin/bugreport.cgi?archive=no\\u0026bug=929567\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559669616.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello everyone,\\n\\nI have been wanting to customize emacs to my needs for a long time but except for org-mode haven't quite done anything. Figured now would be a good time to start.\\n\\nThe first thing that I want is I create a lot of buffers on emacs but sometimes when my work laptop decides to restart I loose all those buffers (since they aren't associated with any file).\\n\\nHow do I get emacs to auto save my buffers\\\\*\\\\* to a particular location? \\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\* When I say buffer I basically mean \\\\`C-x b\\\\` type in a new name and start working on it.\", \"author_fullname\": \"t2_u6flf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make emacs automatically save buffers to a location\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwqw72\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"3a5e1042-1094-11e7-bb00-0e3b6c7befce\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559695385.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been wanting to customize emacs to my needs for a long time but except for org-mode haven\\u0026#39;t quite done anything. Figured now would be a good time to start.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first thing that I want is I create a lot of buffers on emacs but sometimes when my work laptop decides to restart I loose all those buffers (since they aren\\u0026#39;t associated with any file).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I get emacs to auto save my buffers** to a particular location? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** When I say buffer I basically mean `C-x b` type in a new name and start working on it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwqw72\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"abhixec\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/bwqw72/how_to_make_emacs_automatically_save_buffers_to_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwqw72/how_to_make_emacs_automatically_save_buffers_to_a/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559666585.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am trying to create a package manager for emacs which doesn't rely on package.el, is very minimalistic, and does all of its operations in the background. I have done some basic operations using shell scripts, Maybe I will use elisp code instead at some point. Any feedbacks or comments are very much appreciated.\\n\\nhttps://github.com/SidharthArya/emacsit\", \"author_fullname\": \"t2_3tn7pcdr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A simple package manager for emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwptua\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559661450.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559689923.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to create a package manager for emacs which doesn\\u0026#39;t rely on package.el, is very minimalistic, and does all of its operations in the background. I have done some basic operations using shell scripts, Maybe I will use elisp code instead at some point. Any feedbacks or comments are very much appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/SidharthArya/emacsit\\\"\\u003Ehttps://github.com/SidharthArya/emacsit\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwptua\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SidharthArya-\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwptua/a_simple_package_manager_for_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwptua/a_simple_package_manager_for_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559661123.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cr743\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"dianyou 0.0.3 is out (Gnus tool to search/analyze mails)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwohf8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559682405.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"blog.binchen.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwohf8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"redguardtoo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwohf8/dianyou_003_is_out_gnus_tool_to_searchanalyze/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://blog.binchen.org/posts/dianyou-0-0-3-is-out.html\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559653605.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I know that `emacs` is not multi-threaded, but I'd hope to be able to spawn a child process from `eshell`. Running `M-x shell` and then `yes \\u003E /dev/null` results in a process `yes` being spawned and it is occupying one core's 100%, it does not block `emacs`, all is good.\\n\\nHowever, when running `M-x eshell` and then `yes \\u003E /dev/null` results in the `emacs` process chugging 100% cpu, therefore `eshell` spawns a process as a child `emacs` process? Do I get this right?\\n\\nSo the question is: Can `eshell` spawn a process that is detached from `emacs`, just like `M-x shell` does?\", \"author_fullname\": \"t2_17fhdh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Eshell don't blocks Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwn89f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559673594.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know that \\u003Ccode\\u003Eemacs\\u003C/code\\u003E is not multi-threaded, but I\\u0026#39;d hope to be able to spawn a child process from \\u003Ccode\\u003Eeshell\\u003C/code\\u003E. Running \\u003Ccode\\u003EM-x shell\\u003C/code\\u003E and then \\u003Ccode\\u003Eyes \\u0026gt; /dev/null\\u003C/code\\u003E results in a process \\u003Ccode\\u003Eyes\\u003C/code\\u003E being spawned and it is occupying one core\\u0026#39;s 100%, it does not block \\u003Ccode\\u003Eemacs\\u003C/code\\u003E, all is good.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, when running \\u003Ccode\\u003EM-x eshell\\u003C/code\\u003E and then \\u003Ccode\\u003Eyes \\u0026gt; /dev/null\\u003C/code\\u003E results in the \\u003Ccode\\u003Eemacs\\u003C/code\\u003E process chugging 100% cpu, therefore \\u003Ccode\\u003Eeshell\\u003C/code\\u003E spawns a process as a child \\u003Ccode\\u003Eemacs\\u003C/code\\u003E process? Do I get this right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo the question is: Can \\u003Ccode\\u003Eeshell\\u003C/code\\u003E spawn a process that is detached from \\u003Ccode\\u003Eemacs\\u003C/code\\u003E, just like \\u003Ccode\\u003EM-x shell\\u003C/code\\u003E does?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwn89f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"grimscythe_\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwn89f/eshell_dont_blocks_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwn89f/eshell_dont_blocks_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559644794.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559637338.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As in the previous thread don't feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly tips/trick/etc/ thread\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwm94g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559664939.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs in the previous thread don\\u0026#39;t feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwm94g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 19, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": true, \"url\": \"https://www.reddit.com/r/emacs/comments/bwm94g/weekly_tipstricketc_thread/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559636139.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_661dm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A keyboard that changes as you type.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwlncu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 76, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 76, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559659632.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwlncu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jaccarmac\", \"num_crossposts\": 1, \"num_comments\": 25, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwlncu/a_keyboard_that_changes_as_you_type/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/shapr/markovkeyboard\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559630832.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"After set debug-on-error to t in order to make sure that there is no error inside my .emacs file then i got some error on startup.\\n\\n Debugger entered--Lisp error: (wrong-type-argument undo-tree nil)\\n signal(wrong-type-argument (undo-tree nil))\\n undo-tree-current(nil)\\n (undo-tree-node-previous (undo-tree-current buffer-undo-tree))\\n (and undo-tree-mode (not buffer-read-only) (not (eq t buffer-undo-list)) (undo-tree-node-previous (undo-tree-current buffer-undo-tree)))\\n redisplay_internal\\\\ \\\\(C\\\\ function\\\\)()\\n message(\\\"Loading %s (source)...\\\" \\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\")\\n load-with-code-conversion(\\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\" \\\"/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\\" nil nil)\\n #\\u003Csubr load\\u003E(\\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\" nil nil nil nil)\\n ad-Advice-load(#\\u003Csubr load\\u003E \\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n apply(ad-Advice-load #\\u003Csubr load\\u003E \\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n load(\\\"~/.emacs.d/init/init-highlight-escape-sequences.el\\\")\\n eval-buffer(#\\u003Cbuffer *load*\\u003E nil \\\"/home/yourpc/.emacs\\\" nil t) ; Reading at buffer position 29657\\n load-with-code-conversion(\\\"/home/yourpc/.emacs\\\" \\\"/home/yourpc/.emacs\\\" t t)\\n load(\\\"~/.emacs\\\" noerror nomessage)\\n startup--load-user-init-file(#f(compiled-function () #\\u003Cbytecode 0x1fd3c2958e75\\u003E) #f(compiled-function () #\\u003Cbytecode 0x1fd3c2958e03\\u003E) t)\\n command-line()\\n normal-top-level()\\n\\nAnyone could help me fix this? I just want an error free.\", \"author_fullname\": \"t2_3uh7inav\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Set debug-on-error to t then startup with undo-tree error.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwleyk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559657730.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter set debug-on-error to t in order to make sure that there is no error inside my .emacs file then i got some error on startup.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EDebugger entered--Lisp error: (wrong-type-argument undo-tree nil)\\n signal(wrong-type-argument (undo-tree nil))\\n undo-tree-current(nil)\\n (undo-tree-node-previous (undo-tree-current buffer-undo-tree))\\n (and undo-tree-mode (not buffer-read-only) (not (eq t buffer-undo-list)) (undo-tree-node-previous (undo-tree-current buffer-undo-tree)))\\n redisplay_internal\\\\ \\\\(C\\\\ function\\\\)()\\n message(\\u0026quot;Loading %s (source)...\\u0026quot; \\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot;)\\n load-with-code-conversion(\\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot; \\u0026quot;/home/yourpc/.emacs.d/init/init-highlight-escape-s...\\u0026quot; nil nil)\\n #\\u0026lt;subr load\\u0026gt;(\\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot; nil nil nil nil)\\n ad-Advice-load(#\\u0026lt;subr load\\u0026gt; \\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n apply(ad-Advice-load #\\u0026lt;subr load\\u0026gt; \\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n load(\\u0026quot;~/.emacs.d/init/init-highlight-escape-sequences.el\\u0026quot;)\\n eval-buffer(#\\u0026lt;buffer *load*\\u0026gt; nil \\u0026quot;/home/yourpc/.emacs\\u0026quot; nil t) ; Reading at buffer position 29657\\n load-with-code-conversion(\\u0026quot;/home/yourpc/.emacs\\u0026quot; \\u0026quot;/home/yourpc/.emacs\\u0026quot; t t)\\n load(\\u0026quot;~/.emacs\\u0026quot; noerror nomessage)\\n startup--load-user-init-file(#f(compiled-function () #\\u0026lt;bytecode 0x1fd3c2958e75\\u0026gt;) #f(compiled-function () #\\u0026lt;bytecode 0x1fd3c2958e03\\u0026gt;) t)\\n command-line()\\n normal-top-level()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnyone could help me fix this? I just want an error free.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwleyk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cuhabaho\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwleyk/set_debugonerror_to_t_then_startup_with_undotree/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwleyk/set_debugonerror_to_t_then_startup_with_undotree/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559628930.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Unfortunately, this is not a just a statement about the longevity of Emacs, it's an actual problem I'm having: when I try to exit Emacs (either by C -x-C-c or closing the window), I get this error message in the minibuffer: \\n\\n\\nWrong type argument: number-or-marker-p, (+ -8) \\n\\n\\nI have to force quit it to get out. When I start Emacs with -q, this doesn't happen, so I'm getting ready to go through my whole init file, but I was hoping someone else might have encountered this and could save me some time. Thanks!\", \"author_fullname\": \"t2_gu9ty\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs won't quit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwjenz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559643882.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnfortunately, this is not a just a statement about the longevity of Emacs, it\\u0026#39;s an actual problem I\\u0026#39;m having: when I try to exit Emacs (either by C -x-C-c or closing the window), I get this error message in the minibuffer: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWrong type argument: number-or-marker-p, (+ -8) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have to force quit it to get out. When I start Emacs with -q, this doesn\\u0026#39;t happen, so I\\u0026#39;m getting ready to go through my whole init file, but I was hoping someone else might have encountered this and could save me some time. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwjenz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"viscountslim\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwjenz/emacs_wont_quit/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559615082.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello All,\\n\\nI have a single org file with lots of entries. Each entry has a few tags. I would like to view full entries for a specific a tag.\\n\\nI tried org-occur: it seem to highlight matching tags but keeps all entries in view\\n\\nI came across this old thread: [https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines](https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines) \\n\\nBefore trying this I wanted to see if there is something already baked in.\", \"author_fullname\": \"t2_62u3sb0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-mode: Narrow org buffer to matching tag entries such that full entry is in view\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwjdry\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559643739.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello All,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a single org file with lots of entries. Each entry has a few tags. I would like to view full entries for a specific a tag.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried org-occur: it seem to highlight matching tags but keeps all entries in view\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI came across this old thread: \\u003Ca href=\\\"https://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines\\\"\\u003Ehttps://superuser.com/questions/686654/org-agenda-display-entire-todos-matching-a-certain-tag-not-just-headlines\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore trying this I wanted to see if there is something already baked in.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwjdry\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"manojm321\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwjdry/orgmode_narrow_org_buffer_to_matching_tag_entries/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwjdry/orgmode_narrow_org_buffer_to_matching_tag_entries/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559614939.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My use case is this, I usually have emacs split into three vertical frames (left, center, and right) and I prefer editing in the middle buffer while using the right for reference and the left for compilation, testing, etc. Is there a way to make it so that when I open a buffer (or switch to a buffer) in the middle frame and it is open in the right, it swaps the middle and right buffers? This would be very nice for me so that I don't have to go back to the right buffer to change it myself. Is there a package for this or a simple script to make it work?\", \"author_fullname\": \"t2_apgh2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to swap if buffer is open in other frame, swap frame buffers instead of having two frames with the same buffer.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwdztj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559614819.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy use case is this, I usually have emacs split into three vertical frames (left, center, and right) and I prefer editing in the middle buffer while using the right for reference and the left for compilation, testing, etc. Is there a way to make it so that when I open a buffer (or switch to a buffer) in the middle frame and it is open in the right, it swaps the middle and right buffers? This would be very nice for me so that I don\\u0026#39;t have to go back to the right buffer to change it myself. Is there a package for this or a simple script to make it work?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwdztj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Twosided13\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwdztj/is_there_a_way_to_swap_if_buffer_is_open_in_other/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwdztj/is_there_a_way_to_swap_if_buffer_is_open_in_other/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559586019.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have the following code in my `.emacs` file:\\n\\n````\\n(custom-set-faces\\n '(default ((t (:family \\\"Source Code Pro\\\" :foundry \\\"ADBO\\\" :slant normal :weight normal :height 160 :width normal)))))\\n(set-fontset-font \\\"fontset-default\\\"\\n\\t\\t 'arabic\\n\\t\\t (font-spec :family \\\"Kawkab Mono\\\" :size 14))\\n````\\n\\nSetting `Source Code Pro` is done successfully for English text. But `Kawkab Mono` doesn't get applied on Arabic text, I still need to put the point at the end of that section, press C-x C-e to execute it.\\n\\nStarting emacs with `--debug-init` doesn't show any error message.\", \"author_fullname\": \"t2_169z83\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doesn't Execute `set-fontset-font` code\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwchvn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559607309.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have the following code in my \\u003Ccode\\u003E.emacs\\u003C/code\\u003E file:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(custom-set-faces\\n \\u0026#39;(default ((t (:family \\u0026quot;Source Code Pro\\u0026quot; :foundry \\u0026quot;ADBO\\u0026quot; :slant normal :weight normal :height 160 :width normal)))))\\n(set-fontset-font \\u0026quot;fontset-default\\u0026quot;\\n \\u0026#39;arabic\\n (font-spec :family \\u0026quot;Kawkab Mono\\u0026quot; :size 14))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESetting \\u003Ccode\\u003ESource Code Pro\\u003C/code\\u003E is done successfully for English text. But \\u003Ccode\\u003EKawkab Mono\\u003C/code\\u003E doesn\\u0026#39;t get applied on Arabic text, I still need to put the point at the end of that section, press C-x C-e to execute it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStarting emacs with \\u003Ccode\\u003E--debug-init\\u003C/code\\u003E doesn\\u0026#39;t show any error message.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwchvn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tareefdev\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwchvn/emacs_doesnt_execute_setfontsetfont_code/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwchvn/emacs_doesnt_execute_setfontsetfont_code/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559578509.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[https://github.com/abrochard/emacs-todoist](https://github.com/abrochard/emacs-todoist)\\n\\n\\u0026#x200B;\\n\\nI'm a big fan of [todoist.com](https://todoist.com) and it's so convenient to be able to just create a new task from a binding, or pull out the task list in an org-mode buffer.\", \"author_fullname\": \"t2_10q1g7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"emacs-todoist: interact with todoist.com for task management\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwc9lr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559606158.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/abrochard/emacs-todoist\\\"\\u003Ehttps://github.com/abrochard/emacs-todoist\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a big fan of \\u003Ca href=\\\"https://todoist.com\\\"\\u003Etodoist.com\\u003C/a\\u003E and it\\u0026#39;s so convenient to be able to just create a new task from a binding, or pull out the task list in an org-mode buffer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwc9lr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Metr0idFusi0n\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwc9lr/emacstodoist_interact_with_todoistcom_for_task/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559577358.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"[leaf.el](https://github.com/conao3/leaf.el)\\n\\n[feather.el](https://github.com/conao3/feather.el)\\n\\nBoth seem interesting, and I didn't see them in MELPA so I thought I'd give them exposure. :) Currently there's very few contributors, so maybe people here might be interested in contributing.\\n\\nI don't own these, just btw.\", \"author_fullname\": \"t2_md275\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Interesting Emacs packages: leaf.el and feather.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwbo9n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559603044.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/conao3/leaf.el\\\"\\u003Eleaf.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/conao3/feather.el\\\"\\u003Efeather.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth seem interesting, and I didn\\u0026#39;t see them in MELPA so I thought I\\u0026#39;d give them exposure. :) Currently there\\u0026#39;s very few contributors, so maybe people here might be interested in contributing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t own these, just btw.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbo9n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ProfessorSexyTime\", \"num_crossposts\": 0, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559574244.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_960gwtm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I wrote some elisp to insert pretty comments. Please code review! :)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwbmc3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559602783.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gist.github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbmc3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nsapte\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbmc3/i_wrote_some_elisp_to_insert_pretty_comments/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://gist.github.com/suvratapte/fc3f5bfbc9c9d649e3ef080ec66bf9d5\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559573983.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So when I try to change custom themes, the previous theme is overwriting the new theme in my init.el. When I change it, this is what I'm seeing in my custom-set-theme section.\\n\\n\\u0026#x200B;\\n\\n '(ansi-color-names-vector\\n [\\\"#1F1611\\\" \\\"#660000\\\" \\\"#144212\\\" \\\"#EFC232\\\" \\\"#5798AE\\\" \\\"#BE73FD\\\" \\\"#93C1BC\\\" \\\"#E6E1DC\\\"])\\n '(ansi-term-color-vector\\n [unspecified \\\"#1F1611\\\" \\\"#660000\\\" \\\"#144212\\\" \\\"#EFC232\\\" \\\"#5798AE\\\" \\\"#BE73FD\\\" \\\"#93C1BC\\\" \\\"#E6E1DC\\\"])\\n '(custom-safe-themes\\n (quote\\n (\\\"3e83abe75cebf5621e34ce1cbe6e12e4d80766bed0755033febed5794d0c69bf\\\" \\\"35b000995eb4a526249078664d91b056feab7e96e81b2f226a0d9cad7f0a416e\\\" \\\"4b19d61c560a93ef90767abe513c11f236caec2864617d718aa366618133704c\\\" default)))\\n '(fci-rule-character-color \\\"#452E2E\\\")\\n '(fci-rule-color \\\"#452E2E\\\")\\n\\n\\u0026#x200B;\\n\\nDeleting this doesn't do anything, it just adds it in next time.\\n\\nHere are some screenshots to clarify what it is I'm seeing.\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[https://i.redd.it/kr94yn9hm5231.png](https://i.redd.it/kr94yn9hm5231.png)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[https://i.redd.it/84g8yxfkm5231.png](https://i.redd.it/84g8yxfkm5231.png)\\n\\nThe custom theme is supposed to look like [this](https://peach-melpa.org/themes/birds-of-paradise-plus-theme). Uninstalling the autumn-light theme doesn't help, either.\\n\\nEDIT: Color v custom\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/anogyn56vq231.gif\", \"author_fullname\": \"t2_14xlbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I'm getting a strange color theme bug in 26.2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"anogyn56vq231\": {\"status\": \"valid\", \"e\": \"AnimatedImage\", \"s\": {\"y\": 534, \"gif\": \"https://i.redd.it/anogyn56vq231.gif\", \"mp4\": \"https://external-preview.redd.it/anogyn56vq231.gif?format=mp4\\u0026s=862f232535c436319569146e87e81869651931c2\", \"x\": 500}, \"m\": \"image/gif\", \"id\": \"anogyn56vq231\"}}, \"name\": \"t3_bwbizf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559830430.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559602269.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo when I try to change custom themes, the previous theme is overwriting the new theme in my init.el. When I change it, this is what I\\u0026#39;m seeing in my custom-set-theme section.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026#39;(ansi-color-names-vector\\n[\\u0026quot;#1F1611\\u0026quot; \\u0026quot;#660000\\u0026quot; \\u0026quot;#144212\\u0026quot; \\u0026quot;#EFC232\\u0026quot; \\u0026quot;#5798AE\\u0026quot; \\u0026quot;#BE73FD\\u0026quot; \\u0026quot;#93C1BC\\u0026quot; \\u0026quot;#E6E1DC\\u0026quot;])\\n\\u0026#39;(ansi-term-color-vector\\n[unspecified \\u0026quot;#1F1611\\u0026quot; \\u0026quot;#660000\\u0026quot; \\u0026quot;#144212\\u0026quot; \\u0026quot;#EFC232\\u0026quot; \\u0026quot;#5798AE\\u0026quot; \\u0026quot;#BE73FD\\u0026quot; \\u0026quot;#93C1BC\\u0026quot; \\u0026quot;#E6E1DC\\u0026quot;])\\n\\u0026#39;(custom-safe-themes\\n(quote\\n(\\u0026quot;3e83abe75cebf5621e34ce1cbe6e12e4d80766bed0755033febed5794d0c69bf\\u0026quot; \\u0026quot;35b000995eb4a526249078664d91b056feab7e96e81b2f226a0d9cad7f0a416e\\u0026quot; \\u0026quot;4b19d61c560a93ef90767abe513c11f236caec2864617d718aa366618133704c\\u0026quot; default)))\\n\\u0026#39;(fci-rule-character-color \\u0026quot;#452E2E\\u0026quot;)\\n\\u0026#39;(fci-rule-color \\u0026quot;#452E2E\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeleting this doesn\\u0026#39;t do anything, it just adds it in next time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are some screenshots to clarify what it is I\\u0026#39;m seeing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/kr94yn9hm5231.png\\\"\\u003Ehttps://i.redd.it/kr94yn9hm5231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/84g8yxfkm5231.png\\\"\\u003Ehttps://i.redd.it/84g8yxfkm5231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe custom theme is supposed to look like \\u003Ca href=\\\"https://peach-melpa.org/themes/birds-of-paradise-plus-theme\\\"\\u003Ethis\\u003C/a\\u003E. Uninstalling the autumn-light theme doesn\\u0026#39;t help, either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Color v custom\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/anogyn56vq231.gif\\\"\\u003Ehttps://i.redd.it/anogyn56vq231.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbizf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_wade\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwbizf/im_getting_a_strange_color_theme_bug_in_262/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559573469.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here's the story:\\n\\nOnce upon a time, I wanted to convert some videos into mp3 files. But why download some GUI program off the internet or write a script when you can open up Emacs, right?\\n\\nSo after messing around with some Elisp code for running ffmpeg as a subprocess, I stumbled on Eshell! Not only does it work amazingly with Evil (it's like a regular buffer and bash had a baby), but you can throw in all the other Emacs favourites like Helm for getting file paths, and Company for some auto-complete.\\n\\nHere are some (Evil) manoeuvres.\\n\\n`:eshell`\\n\\n`cd C-x C-f` choose a file `C-c i` insert file path.\\n\\nWant to copy past your cool Eshell script to Reddit?\\n\\n`ESC` to go back to normal mode (or `jk` if you're fancy) `yy` yank the line.\\n\\n`\\u003E\\u003E for f in *.mkv {ffmpeg -i $f -aq 3 output/$(file-name-sans-extension f).mp3}`\\n\\n`i` go back to insert mode, run your mini-script. Horrah! All files converted.\\n\\nWhat's `$(file-name-sans-extension f)` you ask? That's Elisp code. That's right, you can just throw in the entire power of Emacs Lisp into your one line script.\\n\\nThere is just one little issue I ran into and that's when typing $(file-name...) Company bugged out and wouldn't complete the function name so I had to type the whole thing out (the horror!).\\n\\n\\u003Cedit\\u003E Found some extra links, since the documentation for Eshell inside emacs is a bit sparse.\\n\\nhttps://www.emacswiki.org/emacs/CategoryEshell\\n\\nhttps://masteringemacs.org/article/complete-guide-mastering-eshell\", \"author_fullname\": \"t2_c4blft1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Did you know that the Eshell is awesome?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9yo7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 91, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 91, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559574338.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559592800.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s the story:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce upon a time, I wanted to convert some videos into mp3 files. But why download some GUI program off the internet or write a script when you can open up Emacs, right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo after messing around with some Elisp code for running ffmpeg as a subprocess, I stumbled on Eshell! Not only does it work amazingly with Evil (it\\u0026#39;s like a regular buffer and bash had a baby), but you can throw in all the other Emacs favourites like Helm for getting file paths, and Company for some auto-complete.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are some (Evil) manoeuvres.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:eshell\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ecd C-x C-f\\u003C/code\\u003E choose a file \\u003Ccode\\u003EC-c i\\u003C/code\\u003E insert file path.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWant to copy past your cool Eshell script to Reddit?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EESC\\u003C/code\\u003E to go back to normal mode (or \\u003Ccode\\u003Ejk\\u003C/code\\u003E if you\\u0026#39;re fancy) \\u003Ccode\\u003Eyy\\u003C/code\\u003E yank the line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\u0026gt;\\u0026gt; for f in *.mkv {ffmpeg -i $f -aq 3 output/$(file-name-sans-extension f).mp3}\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ei\\u003C/code\\u003E go back to insert mode, run your mini-script. Horrah! All files converted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s \\u003Ccode\\u003E$(file-name-sans-extension f)\\u003C/code\\u003E you ask? That\\u0026#39;s Elisp code. That\\u0026#39;s right, you can just throw in the entire power of Emacs Lisp into your one line script.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is just one little issue I ran into and that\\u0026#39;s when typing $(file-name...) Company bugged out and wouldn\\u0026#39;t complete the function name so I had to type the whole thing out (the horror!).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;edit\\u0026gt; Found some extra links, since the documentation for Eshell inside emacs is a bit sparse.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/CategoryEshell\\\"\\u003Ehttps://www.emacswiki.org/emacs/CategoryEshell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://masteringemacs.org/article/complete-guide-mastering-eshell\\\"\\u003Ehttps://masteringemacs.org/article/complete-guide-mastering-eshell\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9yo7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"202700000000\", \"num_crossposts\": 0, \"num_comments\": 25, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw9yo7/did_you_know_that_the_eshell_is_awesome/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559564000.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_64sbo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"As is tradition, let's share our .emacs with each other and learn and trade tips!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9azu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559588032.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Gold Award\", \"coin_reward\": 100, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 500, \"id\": \"gid_2\", \"name\": \"Gold\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9azu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rainymood_XI\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw9azu/as_is_tradition_lets_share_our_emacs_with_each/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/Rainymood/dotemacs\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559559232.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nAs above, I'm wanting to access OneDrive from my emacs init as I'm trying to use org-mode/agenda, and want to be able to use OneDrive to sync between locations, however emacs always says can't find the file regardless if I use:\\n\\n\\\\~/OneDrive...\\n\\n%userprofile%/OneDrive\\n\\n%systemdrive%%homepath%/OneDrive\\n\\nFrom here:\\n\\n[https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt](https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt)\\n\\n\\u0026#x200B;\\n\\nBasically want this:\\n\\nsetq org-agenda-files (list \\\"\\\\~/OneDrive/org/general.org\\\")\\n\\n\\u0026#x200B;\\n\\nSince I have different user names at work/home I can't use a full path, any ideas? Most of the comments about home on windows seem to be with moving the .emacs.d directory, which I'm fine keeping that where it is.\", \"author_fullname\": \"t2_5f5ma\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Accessing OneDrive from emacs init?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw8ejb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559580110.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs above, I\\u0026#39;m wanting to access OneDrive from my emacs init as I\\u0026#39;m trying to use org-mode/agenda, and want to be able to use OneDrive to sync between locations, however emacs always says can\\u0026#39;t find the file regardless if I use:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E~/OneDrive...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E%userprofile%/OneDrive\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E%systemdrive%%homepath%/OneDrive\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt\\\"\\u003Ehttps://stackoverflow.com/questions/9228950/what-is-the-alternative-for-users-home-directory-on-windows-command-prompt\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically want this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esetq org-agenda-files (list \\u0026quot;~/OneDrive/org/general.org\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince I have different user names at work/home I can\\u0026#39;t use a full path, any ideas? Most of the comments about home on windows seem to be with moving the .emacs.d directory, which I\\u0026#39;m fine keeping that where it is.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw8ejb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GeorgeStorm\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw8ejb/accessing_onedrive_from_emacs_init/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw8ejb/accessing_onedrive_from_emacs_init/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559551310.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi there,\\n\\nI couldn't find anything about this online (well, nothing I could really get a direct answer from). If I copy a table on an HTML page, is it possible to paste it into an org document as an org table? I tried with org-protocol, but it doesn't set up the |--| separators at all and it just ends up being a mess. Maybe I'm missing something?\\n\\nThanks for any help!\", \"author_fullname\": \"t2_dmarn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Copy HTML Table/Paste Org Mode Table?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw7qdy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559573914.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi there,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI couldn\\u0026#39;t find anything about this online (well, nothing I could really get a direct answer from). If I copy a table on an HTML page, is it possible to paste it into an org document as an org table? I tried with org-protocol, but it doesn\\u0026#39;t set up the |--| separators at all and it just ends up being a mess. Maybe I\\u0026#39;m missing something?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any help!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw7qdy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TyrionBean\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw7qdy/copy_html_tablepaste_org_mode_table/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw7qdy/copy_html_tablepaste_org_mode_table/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559545114.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When I export to HTML, the source blocks have labels which show what language they are, but they only appear on hover. Can they easily be set to always show?\", \"author_fullname\": \"t2_rrtp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Export src-block to HTML with labels always on\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw7ps7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559573777.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I export to HTML, the source blocks have labels which show what language they are, but they only appear on hover. Can they easily be set to always show?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw7ps7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nagora\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw7ps7/export_srcblock_to_html_with_labels_always_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw7ps7/export_srcblock_to_html_with_labels_always_on/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559544977.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I can't make this function work...\\n\\n (defun codemascot/phpcbf-standard-toggle ()\\n \\\"Toggle PHPCS default standard between WordPress-VIP and PSR2\\\"\\n (interactive)\\n (if (= phpcbf-standard \\\"PSR2\\\")\\n ((setq phpcbf-standard \\\"WordPress-VIP\\\")\\n (message \\\"WordPress-VIP standard activated\\\"))\\n ((setq phpcbf-standard \\\"PSR2\\\")\\n (message \\\"PSR2 standard activated\\\"))))\\n\\nWhat is wrong with it that Emacs 26.2(Spacemacs) is giving me `helm-M-x: Wrong type argument: number-or-marker-p` error?\\n\\n\\n\\nUpdate, Working Snippet :) :\\n\\n (defun codemascot/phpcbf-standard-toggle ()\\n \\\"Toggle PHPCS default standard between WordPress-VIP and PSR2\\\"\\n (interactive)\\n (if (string= phpcbf-standard \\\"PSR2\\\")\\n (progn\\n (setq phpcbf-standard \\\"WordPress-VIP\\\")\\n (message \\\"WordPress-VIP CS standard has set\\\"))\\n (progn\\n (setq phpcbf-standard \\\"PSR2\\\")\\n (message \\\"PSR2 CS standard has set\\\"))))\\n\\nActually I work with *WordPress* and *Laravel* mostly. So I need to switch between these WordPress-VIP and PSR2 coding standard frequently. Anyway, here I'm sharing my updated function code which is working for me pretty well. Hope this help you too.\", \"author_fullname\": \"t2_38mg40l9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Toggle a variable based on condition\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw6zcv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559630313.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559567789.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t make this function work...\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun codemascot/phpcbf-standard-toggle ()\\n \\u0026quot;Toggle PHPCS default standard between WordPress-VIP and PSR2\\u0026quot;\\n (interactive)\\n (if (= phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n ((setq phpcbf-standard \\u0026quot;WordPress-VIP\\u0026quot;)\\n (message \\u0026quot;WordPress-VIP standard activated\\u0026quot;))\\n ((setq phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (message \\u0026quot;PSR2 standard activated\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhat is wrong with it that Emacs 26.2(Spacemacs) is giving me \\u003Ccode\\u003Ehelm-M-x: Wrong type argument: number-or-marker-p\\u003C/code\\u003E error?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate, Working Snippet :) :\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun codemascot/phpcbf-standard-toggle ()\\n \\u0026quot;Toggle PHPCS default standard between WordPress-VIP and PSR2\\u0026quot;\\n (interactive)\\n (if (string= phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (progn\\n (setq phpcbf-standard \\u0026quot;WordPress-VIP\\u0026quot;)\\n (message \\u0026quot;WordPress-VIP CS standard has set\\u0026quot;))\\n (progn\\n (setq phpcbf-standard \\u0026quot;PSR2\\u0026quot;)\\n (message \\u0026quot;PSR2 CS standard has set\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EActually I work with \\u003Cem\\u003EWordPress\\u003C/em\\u003E and \\u003Cem\\u003ELaravel\\u003C/em\\u003E mostly. So I need to switch between these WordPress-VIP and PSR2 coding standard frequently. Anyway, here I\\u0026#39;m sharing my updated function code which is working for me pretty well. Hope this help you too.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw6zcv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"codemascot\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw6zcv/toggle_a_variable_based_on_condition/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw6zcv/toggle_a_variable_based_on_condition/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559538989.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"`C-c C-s` and `C-c C-d` don't add hours and time in the timestamp.\\n\\nI thought prefixing them with `C-u` gives you minutes and seconds, but that option seems to be for removing deadlines.\\n\\nDo hours and minutes have to be added manually?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to add hours and minutes to orgmode deadlines and schedules?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw5zw6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559560806.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003EC-c C-s\\u003C/code\\u003E and \\u003Ccode\\u003EC-c C-d\\u003C/code\\u003E don\\u0026#39;t add hours and time in the timestamp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought prefixing them with \\u003Ccode\\u003EC-u\\u003C/code\\u003E gives you minutes and seconds, but that option seems to be for removing deadlines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo hours and minutes have to be added manually?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw5zw6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw5zw6/how_to_add_hours_and_minutes_to_orgmode_deadlines/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw5zw6/how_to_add_hours_and_minutes_to_orgmode_deadlines/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559532006.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I love [Vimcasts](http://vimcasts.org/) for learning Vim. I was wondering if there is something equivalent for Emacs: screencasts showcasing the editor. Added bonus for tutorials that include Emacs Lisp tips/tricks.\", \"author_fullname\": \"t2_3u1io9ko\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Screencasts showcasing Emacs tips/tricks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw4ix7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 38, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 38, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559551482.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love \\u003Ca href=\\\"http://vimcasts.org/\\\"\\u003EVimcasts\\u003C/a\\u003E for learning Vim. I was wondering if there is something equivalent for Emacs: screencasts showcasing the editor. Added bonus for tutorials that include Emacs Lisp tips/tricks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw4ix7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"scbm-reddit\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bw4ix7/screencasts_showcasing_emacs_tipstricks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bw4ix7/screencasts_showcasing_emacs_tipstricks/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559522682.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi all, I'm still new to Emacs and I'm having some issues with company-mode, when showing suggestions they often show up misaligned, like in this image: [https://imgur.com/a/GSqfBLn](https://imgur.com/a/GSqfBLn) , I don't think this is caused by company, as it sometimes also happens on the lines (a particular line will show up some pixels to the left), my config is here: [https://github.com/martini97/.emacs.d](https://github.com/martini97/.emacs.d), I've already tried to switch themes, which didn't help, and there's nothing being logged on messages. Has anyone had similar issues, or know how to fix this?\", \"author_fullname\": \"t2_9eav0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help identifying what's causing this bug on company\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvy2sp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559515571.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I\\u0026#39;m still new to Emacs and I\\u0026#39;m having some issues with company-mode, when showing suggestions they often show up misaligned, like in this image: \\u003Ca href=\\\"https://imgur.com/a/GSqfBLn\\\"\\u003Ehttps://imgur.com/a/GSqfBLn\\u003C/a\\u003E , I don\\u0026#39;t think this is caused by company, as it sometimes also happens on the lines (a particular line will show up some pixels to the left), my config is here: \\u003Ca href=\\\"https://github.com/martini97/.emacs.d\\\"\\u003Ehttps://github.com/martini97/.emacs.d\\u003C/a\\u003E, I\\u0026#39;ve already tried to switch themes, which didn\\u0026#39;t help, and there\\u0026#39;s nothing being logged on messages. Has anyone had similar issues, or know how to fix this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvy2sp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_martini97\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvy2sp/help_identifying_whats_causing_this_bug_on_company/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvy2sp/help_identifying_whats_causing_this_bug_on_company/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559486771.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Before coming to EXWM I was a power-user of KDE. I used a 3x3 grid for my workspace and so could position all applications within a screen up, down, right, or left of me. I had shortcuts established to quickly move between desktops and to send things to-and-from them. Then I found exwm. Aside: I am almost always connected to two or three monitors, whether using exwm or KDE. It works nicely with both WM. \\n\\n\\u0026#x200B;\\n\\nI use a single-workspace setup with exwm and the two primary benefits were that, instead of the geometric model from my KDE, thing were all random-access. Second benefit was that I could use emacs keys everywhere. Those are sizable benefits that served me well up until now. Now I am on a project using Android Studio (IntelliJ), and even after I figured out how to get it to start correctly on exwm (that's another story) it is still very hard to manage there; in particular, it gets hard when I launch an AVD (Android Virtual Device), which spawns a new EXWM window showing the device (e.g. phone), another floating one for the phone interactions/controls (which floats as a narrow strip in the middle of the screen over the top of whatever is there), and still leaves a couple of old ones with the actual IntelliJ window and AVD manager screen. The trouble here is two-fold: first, there are a lot of windows (emacs: Frames) that really need to be all seen at once because they interact with eachother, and more aggravataingly, the new exwm frames for the device and its controls hijack my keys and make it very hard to maneuver my other exwm around them (e.g. switching buffers gets tough). \\n\\n\\u0026#x200B;\\n\\nFor now I'm defeatedly switching back to KDE for this project; does anyone have an exwm workflow with IntelliJ or Android Studio that would make this more do-able?\", \"author_fullname\": \"t2_gmmqi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In search of an exwm workflow for Android Studio\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvxehe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559511215.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBefore coming to EXWM I was a power-user of KDE. I used a 3x3 grid for my workspace and so could position all applications within a screen up, down, right, or left of me. I had shortcuts established to quickly move between desktops and to send things to-and-from them. Then I found exwm. Aside: I am almost always connected to two or three monitors, whether using exwm or KDE. It works nicely with both WM. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use a single-workspace setup with exwm and the two primary benefits were that, instead of the geometric model from my KDE, thing were all random-access. Second benefit was that I could use emacs keys everywhere. Those are sizable benefits that served me well up until now. Now I am on a project using Android Studio (IntelliJ), and even after I figured out how to get it to start correctly on exwm (that\\u0026#39;s another story) it is still very hard to manage there; in particular, it gets hard when I launch an AVD (Android Virtual Device), which spawns a new EXWM window showing the device (e.g. phone), another floating one for the phone interactions/controls (which floats as a narrow strip in the middle of the screen over the top of whatever is there), and still leaves a couple of old ones with the actual IntelliJ window and AVD manager screen. The trouble here is two-fold: first, there are a lot of windows (emacs: Frames) that really need to be all seen at once because they interact with eachother, and more aggravataingly, the new exwm frames for the device and its controls hijack my keys and make it very hard to maneuver my other exwm around them (e.g. switching buffers gets tough). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor now I\\u0026#39;m defeatedly switching back to KDE for this project; does anyone have an exwm workflow with IntelliJ or Android Studio that would make this more do-able?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvxehe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WorldsEndless\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvxehe/in_search_of_an_exwm_workflow_for_android_studio/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvxehe/in_search_of_an_exwm_workflow_for_android_studio/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559482415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here's the latest in my Year of Emacs series.\\n\\nI'm aiming for weekly updates to this (excluding weeks where I publish the current version of my emacs.org dotfile).\\n\\nNext week, I want to learn something new, so I'll be doing dired and either dired-x or dired-aux. I'm open to community suggestions for which of those two supplemental packages are recommended (I'm leaning toward dired-x).\\n\\n\\u0026#x200B;\\n\\n[https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/](https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/)\", \"author_fullname\": \"t2_jqpn4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Writing Academic Papers in Org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvweh8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 60, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 60, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559503503.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s the latest in my Year of Emacs series.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m aiming for weekly updates to this (excluding weeks where I publish the current version of my emacs.org dotfile).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext week, I want to learn something new, so I\\u0026#39;ll be doing dired and either dired-x or dired-aux. I\\u0026#39;m open to community suggestions for which of those two supplemental packages are recommended (I\\u0026#39;m leaning toward dired-x).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/\\\"\\u003Ehttps://jonathanabennett.github.io/blog/2019/05/29/writing-academic-papers-with-org-mode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvweh8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doulos05\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvweh8/writing_academic_papers_in_orgmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559474703.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"For some reason when i use \\\"find\\\" from emacs(in particular in dired to search files) it doesn't show cyrillic letters properly and i can't open files that it finds.\\n\\nIn general cyrillic letters work fine, and from regular terminal they work in \\\"find\\\"\\n\\n[https://imgur.com/a/jIY8ba7](https://imgur.com/a/jIY8ba7)\\n\\nWhat can I do about it?\", \"author_fullname\": \"t2_9riom\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cyrillic letters don't work with \\\"find\\\" in emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvuv9q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559488341.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor some reason when i use \\u0026quot;find\\u0026quot; from emacs(in particular in dired to search files) it doesn\\u0026#39;t show cyrillic letters properly and i can\\u0026#39;t open files that it finds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn general cyrillic letters work fine, and from regular terminal they work in \\u0026quot;find\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/jIY8ba7\\\"\\u003Ehttps://imgur.com/a/jIY8ba7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat can I do about it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvuv9q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GrinDeg\", \"num_crossposts\": 0, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvuv9q/cyrillic_letters_dont_work_with_find_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvuv9q/cyrillic_letters_dont_work_with_find_in_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559459541.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"hi all,\\n\\ni have a trivial function (code below) that tries to compile a c/c++ buffer as follows:\\n\\n ;;\\n ;; find major mode of a buffer. if no name is specified, this returns\\n ;; major mode of current buffer\\n ;;\\n (defun utils/buffer-major-mode (\\u0026optional buffer-or-name)\\n \\\"Returns the major mode associated with a buffer.\\n If buffer-or-name is nil return current buffer's mode.\\\"\\n (interactive)\\n (buffer-local-value 'major-mode\\n (if buffer-or-name (get-buffer buffer-or-name) (current-buffer))))\\n\\n ;; \\n ;; this function is called to quickly compile single-file c/c++\\n ;; programs.\\n ;;\\n ;; it produces final executable in 'obj' directory of the buffer, and\\n ;; christens it with 'file-name' sans file extension. thus a source\\n ;; file called '\\u003Csome-path\\u003E/foo.cpp' will produce an executable called\\n ;; '\\u003Csome-path\\u003E/obj/foo'\\n ;;\\n (defun cc-quick-compile ()\\n (interactive)\\n \\n ;;\\n ;; how we build c/c++ sources are almost fixed\\n ;; -fdiagnostics-color=never ==\\u003E no ansii colorized output\\n ;;\\n (defconst qc-cmd-prefix:c \\\"gcc -fdiagnostics-color=never -std=c99 -g -O2 -Wall -o obj/\\\")\\n (defconst qc-cmd-prefix:cpp \\\"g++ -fdiagnostics-color=never -std=c++11 -g -O2 -Wall -o obj/\\\")\\n \\n ;; first setup the appropriate compilation command based on buffer\\n ;; major-mode\\n (set (make-local-variable 'qc-cmd-prefix:cc)\\n (if (string= (utils/buffer-major-mode) \\\"c-mode\\\")\\n qc-cmd-prefix:c\\n qc-cmd-prefix:cpp))\\n \\n ;;\\n ;; now we can setup the qc-cc-cmd to produce a final executable as\\n ;; described above...\\n ;;\\n (set (make-local-variable 'qc-cmd-str)\\n (let ((file (file-name-nondirectory buffer-file-name)))\\n (concat qc-cmd-prefix:cc (file-name-sans-extension file) \\\" \\\" file)))\\n \\n (compile qc-cmd-str))\\n \\n ;;\\n ;; this is the top-level function to compile c/c++ sources.\\n ;;\\n ;; when the local variable 'compile-command' is set to default we\\n ;; create a quick-compile-command, and use that. however, when it is\\n ;; set to non-default value, we use that.\\n ;;\\n (defun cc-quick-or-custom-compile ()\\n (interactive)\\n \\n (if (string= \\\"make -k \\\" compile-command)\\n (progn\\n (cc-quick-compile)\\n (setq compile-command \\\"make -k \\\"))\\n (compile compile-command)))\\n\\nfinally, 'cc-quick-or-custom-compile' is bound as follows\\n \\n (global-set-key '[C-return] 'cc-quick-or-custom-compile)\\n\\nthe above thing works, but given my elisp na\\u00efvet\\u00e9, i am *sure* it can be made much better. \\n\\ni was wondering, if you would take some time, and help me improve the above functions. i *suspect* creating a Makefile with appropriate rules might play nicer with emacs, but am not too keen on that at the moment.\\n\\n--\\nthank you kindly !\", \"author_fullname\": \"t2_pb2x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"help with trivial emacs lisp function\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvucsw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559454959.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559483467.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehi all,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei have a trivial function (code below) that tries to compile a c/c++ buffer as follows:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;;\\n;; find major mode of a buffer. if no name is specified, this returns\\n;; major mode of current buffer\\n;;\\n(defun utils/buffer-major-mode (\\u0026amp;optional buffer-or-name)\\n \\u0026quot;Returns the major mode associated with a buffer.\\nIf buffer-or-name is nil return current buffer\\u0026#39;s mode.\\u0026quot;\\n (interactive)\\n (buffer-local-value \\u0026#39;major-mode\\n (if buffer-or-name (get-buffer buffer-or-name) (current-buffer))))\\n\\n;; \\n;; this function is called to quickly compile single-file c/c++\\n;; programs.\\n;;\\n;; it produces final executable in \\u0026#39;obj\\u0026#39; directory of the buffer, and\\n;; christens it with \\u0026#39;file-name\\u0026#39; sans file extension. thus a source\\n;; file called \\u0026#39;\\u0026lt;some-path\\u0026gt;/foo.cpp\\u0026#39; will produce an executable called\\n;; \\u0026#39;\\u0026lt;some-path\\u0026gt;/obj/foo\\u0026#39;\\n;;\\n(defun cc-quick-compile ()\\n (interactive)\\n\\n ;;\\n ;; how we build c/c++ sources are almost fixed\\n ;; -fdiagnostics-color=never ==\\u0026gt; no ansii colorized output\\n ;;\\n (defconst qc-cmd-prefix:c \\u0026quot;gcc -fdiagnostics-color=never -std=c99 -g -O2 -Wall -o obj/\\u0026quot;)\\n (defconst qc-cmd-prefix:cpp \\u0026quot;g++ -fdiagnostics-color=never -std=c++11 -g -O2 -Wall -o obj/\\u0026quot;)\\n\\n ;; first setup the appropriate compilation command based on buffer\\n ;; major-mode\\n (set (make-local-variable \\u0026#39;qc-cmd-prefix:cc)\\n (if (string= (utils/buffer-major-mode) \\u0026quot;c-mode\\u0026quot;)\\n qc-cmd-prefix:c\\n qc-cmd-prefix:cpp))\\n\\n ;;\\n ;; now we can setup the qc-cc-cmd to produce a final executable as\\n ;; described above...\\n ;;\\n (set (make-local-variable \\u0026#39;qc-cmd-str)\\n (let ((file (file-name-nondirectory buffer-file-name)))\\n (concat qc-cmd-prefix:cc (file-name-sans-extension file) \\u0026quot; \\u0026quot; file)))\\n\\n (compile qc-cmd-str))\\n\\n;;\\n;; this is the top-level function to compile c/c++ sources.\\n;;\\n;; when the local variable \\u0026#39;compile-command\\u0026#39; is set to default we\\n;; create a quick-compile-command, and use that. however, when it is\\n;; set to non-default value, we use that.\\n;;\\n(defun cc-quick-or-custom-compile ()\\n (interactive)\\n\\n (if (string= \\u0026quot;make -k \\u0026quot; compile-command)\\n (progn\\n (cc-quick-compile)\\n (setq compile-command \\u0026quot;make -k \\u0026quot;))\\n (compile compile-command)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Efinally, \\u0026#39;cc-quick-or-custom-compile\\u0026#39; is bound as follows\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(global-set-key \\u0026#39;[C-return] \\u0026#39;cc-quick-or-custom-compile)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ethe above thing works, but given my elisp na\\u00efvet\\u00e9, i am \\u003Cem\\u003Esure\\u003C/em\\u003E it can be made much better. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei was wondering, if you would take some time, and help me improve the above functions. i \\u003Cem\\u003Esuspect\\u003C/em\\u003E creating a Makefile with appropriate rules might play nicer with emacs, but am not too keen on that at the moment.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003Ethank you kindly !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvucsw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"daddyc00l\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvucsw/help_with_trivial_emacs_lisp_function/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559454667.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When running this without Org-Babel I don't have a problem, but, fwiw, I did just recently get my Python 3 paths working properly so there could be an issue somewhere in there.\\n\\n\\u0026#x200B;\\n\\nWithout further ado, here's the source file: [http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1\\\\_practice.py](http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py), and the linter: [http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112\\\\_s17\\\\_linter.py](http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py).\\n\\n\\u0026#x200B;\\n\\nWhat I did was wrap the entire wk1\\\\_practice.py in a `#+BEGIN_SRC python ... #+END_SRC` block, then when running C-c C-c (org-babel-execute-src-block) the following error appeared:\\n\\n`Traceback (most recent call last):`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 333, in \\u003Cmodule\\u003E`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 331, in main`\\n\\n`File \\\"\\u003Cstdin\\u003E\\\", line 327, in main`\\n\\n`File \\\"/Users/Joe/org/cs112_s17_linter.py\\\", line 215, in lint`\\n\\n`_Linter(code=code, filename=filename, bannedTokens=bannedTokens).lint()`\\n\\n`File \\\"/Users/Joe/org/cs112_s17_linter.py\\\", line 148, in lint`\\n\\n`with open(self.filename, 'rt') as f:`\\n\\n`FileNotFoundError: [Errno 2] No such file or directory: '\\u003Cstdin\\u003E'`\\n\\n\\u0026#x200B;\\n\\nBecause I can run wk1\\\\_practice.py error free in run-python, and the bash shell outside of Emacs, I think it's Org-Babel that I'm misusing and that it has to do with the call to the linter. It's probably worth mentioning that Org-Babel seemingly works fine and as expected as long as I don't make this call to the linter.\\n\\n\\u0026#x200B;\\n\\n(sorry if it's a dumb question or appears ill researched, I spent about 1.5 hours trying to figure this out with various queries and expirements, but turned up no leads).\", \"author_fullname\": \"t2_3th1enuk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help Deciphering Error w/ Org-Babel, Python and a Linter\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvsj5o\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559470017.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen running this without Org-Babel I don\\u0026#39;t have a problem, but, fwiw, I did just recently get my Python 3 paths working properly so there could be an issue somewhere in there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithout further ado, here\\u0026#39;s the source file: \\u003Ca href=\\\"http://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py\\\"\\u003Ehttp://www.kosbie.net/cmu/spring-17/15-112/notes/wk1_practice.py\\u003C/a\\u003E, and the linter: \\u003Ca href=\\\"http://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py\\\"\\u003Ehttp://www.kosbie.net/cmu/spring-17/15-112/notes/cs112_s17_linter.py\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat I did was wrap the entire wk1_practice.py in a \\u003Ccode\\u003E#+BEGIN_SRC python ... #+END_SRC\\u003C/code\\u003E block, then when running C-c C-c (org-babel-execute-src-block) the following error appeared:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003ETraceback (most recent call last):\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 333, in \\u0026lt;module\\u0026gt;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 331, in main\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;\\u0026lt;stdin\\u0026gt;\\u0026quot;, line 327, in main\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;/Users/Joe/org/cs112_s17_linter.py\\u0026quot;, line 215, in lint\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E_Linter(code=code, filename=filename, bannedTokens=bannedTokens).lint()\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFile \\u0026quot;/Users/Joe/org/cs112_s17_linter.py\\u0026quot;, line 148, in lint\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ewith open(self.filename, \\u0026#39;rt\\u0026#39;) as f:\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EFileNotFoundError: [Errno 2] No such file or directory: \\u0026#39;\\u0026lt;stdin\\u0026gt;\\u0026#39;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause I can run wk1_practice.py error free in run-python, and the bash shell outside of Emacs, I think it\\u0026#39;s Org-Babel that I\\u0026#39;m misusing and that it has to do with the call to the linter. It\\u0026#39;s probably worth mentioning that Org-Babel seemingly works fine and as expected as long as I don\\u0026#39;t make this call to the linter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(sorry if it\\u0026#39;s a dumb question or appears ill researched, I spent about 1.5 hours trying to figure this out with various queries and expirements, but turned up no leads).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvsj5o\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"impendingLawsuit\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvsj5o/help_deciphering_error_w_orgbabel_python_and_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvsj5o/help_deciphering_error_w_orgbabel_python_and_a/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559441217.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Running a fresh Emacs session with `emacs -Q`, I evaluated the following:\\n\\n (setq org-agenda-files '(\\\"~/index.org\\\"))\\n (setq org-enforce-todo-dependencies t)\\n (setq org-agenda-dim-blocked-tasks 'invisible)\\n\\nwhere `~/index.org` simply contains:\\n\\n * Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO First subheading\\n ** TODO Second subheading\\n\\nWhen I call `(org-agenda nil \\\"t\\\")` to display the available TODOs, it correctly displays only \\\"First subheading.\\\" However, if I then export that buffer with `org-agenda-write`, then the resulting file contains both \\\"First subheading\\\" and \\\"Second subheading.\\\"\\n\\nWhat is going on here, and can it be fixed?\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvs6jo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559467712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERunning a fresh Emacs session with \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E, I evaluated the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files \\u0026#39;(\\u0026quot;~/index.org\\u0026quot;))\\n(setq org-enforce-todo-dependencies t)\\n(setq org-agenda-dim-blocked-tasks \\u0026#39;invisible)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E~/index.org\\u003C/code\\u003E simply contains:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO First subheading\\n** TODO Second subheading\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I call \\u003Ccode\\u003E(org-agenda nil \\u0026quot;t\\u0026quot;)\\u003C/code\\u003E to display the available TODOs, it correctly displays only \\u0026quot;First subheading.\\u0026quot; However, if I then export that buffer with \\u003Ccode\\u003Eorg-agenda-write\\u003C/code\\u003E, then the resulting file contains both \\u0026quot;First subheading\\u0026quot; and \\u0026quot;Second subheading.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is going on here, and can it be fixed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvs6jo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559438912.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have always wanted to use Emacs on my iPad without jailbreaking it. After almost giving up I stumbled onto a fairly new developer app called iSH - a Linux shell that runs a small version of Alpine Linux on an iOS device (iPad or iPhone) using an x86 emulator. Now, that in and of itself is really nice and opens up all kinds of new ways to use an iOS device. The icing on the cake, though, is that Emacs can then be installed from the command line using the Alpine Linux package manager, \\\"apk\\\".\\n\\niSH can't be found on the App Store, but fear not - it can be run using a developer tool called TestFlight, which *is* in the App Store. There's also a way to side load iSH directly onto an iOS device without TestFlight if you have access to a Mac with Xcode. \\n\\nInstalling iSH shell and Emacs using TestFlight:\\n\\n1. Install TestFlight from the [https://itunes.apple.com/us/app/testflight/id899247664?mt=8](https://itunes.apple.com/us/app/testflight/id899247664?mt=8) App Store.\\n2. Open a web browser on the iOS device and click here [https://testflight.apple.com/join/97i7KM8O](https://testflight.apple.com/join/97i7KM8O) to review/accept the terms and start testing iSH using TestFlight.\\n3. Click \\\"Install\\\" to install the iSH Shell application onto the iOS device.\\n4. You will now have the iSH app on your iOS device. Open this app to run the Alpine Linux shell. This command line environment has the normal complement of Linux commands (ls, cd, mkdir, touch, cat, etc.). iSH even has a dark mode. If you haven't already done so, pair up a real keyboard to your device and hold onto your socks for what's next.\\n5. Install Emacs with apk by simply entering the command \\\"apk add emacs\\\" in iSH. After emacs installs, you can then enter the command \\\"emacs\\\" from the command line to run emacs.\", \"author_fullname\": \"t2_4rrrx65\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs on an iPad without jailbreaking it - It can be done!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvrmsf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559464162.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have always wanted to use Emacs on my iPad without jailbreaking it. After almost giving up I stumbled onto a fairly new developer app called iSH - a Linux shell that runs a small version of Alpine Linux on an iOS device (iPad or iPhone) using an x86 emulator. Now, that in and of itself is really nice and opens up all kinds of new ways to use an iOS device. The icing on the cake, though, is that Emacs can then be installed from the command line using the Alpine Linux package manager, \\u0026quot;apk\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EiSH can\\u0026#39;t be found on the App Store, but fear not - it can be run using a developer tool called TestFlight, which \\u003Cem\\u003Eis\\u003C/em\\u003E in the App Store. There\\u0026#39;s also a way to side load iSH directly onto an iOS device without TestFlight if you have access to a Mac with Xcode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstalling iSH shell and Emacs using TestFlight:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EInstall TestFlight from the \\u003Ca href=\\\"https://itunes.apple.com/us/app/testflight/id899247664?mt=8\\\"\\u003Ehttps://itunes.apple.com/us/app/testflight/id899247664?mt=8\\u003C/a\\u003E App Store.\\u003C/li\\u003E\\n\\u003Cli\\u003EOpen a web browser on the iOS device and click here \\u003Ca href=\\\"https://testflight.apple.com/join/97i7KM8O\\\"\\u003Ehttps://testflight.apple.com/join/97i7KM8O\\u003C/a\\u003E to review/accept the terms and start testing iSH using TestFlight.\\u003C/li\\u003E\\n\\u003Cli\\u003EClick \\u0026quot;Install\\u0026quot; to install the iSH Shell application onto the iOS device.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou will now have the iSH app on your iOS device. Open this app to run the Alpine Linux shell. This command line environment has the normal complement of Linux commands (ls, cd, mkdir, touch, cat, etc.). iSH even has a dark mode. If you haven\\u0026#39;t already done so, pair up a real keyboard to your device and hold onto your socks for what\\u0026#39;s next.\\u003C/li\\u003E\\n\\u003Cli\\u003EInstall Emacs with apk by simply entering the command \\u0026quot;apk add emacs\\u0026quot; in iSH. After emacs installs, you can then enter the command \\u0026quot;emacs\\u0026quot; from the command line to run emacs.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvrmsf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Chilasta\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvrmsf/emacs_on_an_ipad_without_jailbreaking_it_it_can/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvrmsf/emacs_on_an_ipad_without_jailbreaking_it_it_can/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559435362.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi everyone!\\n\\n\\u0026#x200B;\\n\\nInspired by the great Juan Pedro Fisanotti and his wonderful [fisa-vim-config](https://github.com/fisadev/fisa-vim-config), I share my [Emacs](https://www.gnu.org/software/emacs/) config. This is my personal Emacs configuration, built according to my personal preferences, without any justification to think it's the best possible emacs configuration.\\n\\n\\u0026#x200B;\\n\\n[https://github.com/Abuelodelanada/pepe-emacs-config](https://github.com/Abuelodelanada/pepe-emacs-config)\\n\\n\\u0026#x200B;\\n\\nIt's mainly oriented to PHP software development, but many of its features are useful for other languages and editing tasks.\\n\\n\\u0026#x200B;\\n\\nHope you like it!\\n\\n\\u0026#x200B;\\n\\nJose\", \"author_fullname\": \"t2_1v9z01ve\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The Pepe Emacs config\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvrbyc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559462253.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInspired by the great Juan Pedro Fisanotti and his wonderful \\u003Ca href=\\\"https://github.com/fisadev/fisa-vim-config\\\"\\u003Efisa-vim-config\\u003C/a\\u003E, I share my \\u003Ca href=\\\"https://www.gnu.org/software/emacs/\\\"\\u003EEmacs\\u003C/a\\u003E config. This is my personal Emacs configuration, built according to my personal preferences, without any justification to think it\\u0026#39;s the best possible emacs configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/Abuelodelanada/pepe-emacs-config\\\"\\u003Ehttps://github.com/Abuelodelanada/pepe-emacs-config\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s mainly oriented to PHP software development, but many of its features are useful for other languages and editing tasks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHope you like it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJose\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvrbyc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Abuelodelanada\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvrbyc/the_pepe_emacs_config/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvrbyc/the_pepe_emacs_config/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559433453.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_5i6ym4s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using CLI Commands in Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvqsb5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 42, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 42, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559458913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"hackeryarn.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvqsb5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hackeryarn\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvqsb5/using_cli_commands_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://hackeryarn.com/post/cli-in-emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559430113.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I can connect to [nethack.alt.org](https://nethack.alt.org) using putty and it has colors and everything lines up just right. Is there a way for me to use emacs instead? I did \\\"M-x telnet\\\" and it didn't show the colors and the formatting is all messed up. Kinda looks like it's missing CR/LFs.\\n\\n\\u0026#x200B;\\n\\nAs you can tell, I'm not well versed in this area.\", \"author_fullname\": \"t2_d79ff\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using Emacs for Nethack?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvmkvw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559435126.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can connect to \\u003Ca href=\\\"https://nethack.alt.org\\\"\\u003Enethack.alt.org\\u003C/a\\u003E using putty and it has colors and everything lines up just right. Is there a way for me to use emacs instead? I did \\u0026quot;M-x telnet\\u0026quot; and it didn\\u0026#39;t show the colors and the formatting is all messed up. Kinda looks like it\\u0026#39;s missing CR/LFs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs you can tell, I\\u0026#39;m not well versed in this area.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvmkvw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AlchemicRez\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvmkvw/using_emacs_for_nethack/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvmkvw/using_emacs_for_nethack/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559406326.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Does anyone knows of an Emacs package that shows your minibuffer as a floating window/frame in the middle of the screen, like on this video: [https://www.youtube.com/watch?v=GxMAPW9\\\\_LsA\\u0026t=2m30s](https://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026t=2m30s)?\\n\\nThe closest I've found is this StackExchange answer: [https://emacs.stackexchange.com/a/1078/23627](https://emacs.stackexchange.com/a/1078/23627). These are his dotfiles ([https://bitbucket.org/seanfarley/dotfiles](https://bitbucket.org/seanfarley/dotfiles)) but I'm pretty new at Emacs so I couldn't find anything.\\n\\nhttps://i.redd.it/dhvj5jtm6r131.png\", \"author_fullname\": \"t2_5t856\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs package to show the minibuffer in the middle of the screen\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"dhvj5jtm6r131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 768, \"x\": 1366, \"u\": \"https://i.redd.it/dhvj5jtm6r131.png\"}, \"m\": \"image/png\", \"id\": \"dhvj5jtm6r131\"}}, \"name\": \"t3_bvl94b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"2019-02-27: Emacs as a Python IDE - Sean Farley\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Emacs SF\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/GxMAPW9_LsA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCFk8kgNu_bqsRZewxMGqkzQ\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bvl94b\", \"height\": 338}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559427415.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone knows of an Emacs package that shows your minibuffer as a floating window/frame in the middle of the screen, like on this video: \\u003Ca href=\\\"https://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026amp;t=2m30s\\\"\\u003Ehttps://www.youtube.com/watch?v=GxMAPW9_LsA\\u0026amp;t=2m30s\\u003C/a\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe closest I\\u0026#39;ve found is this StackExchange answer: \\u003Ca href=\\\"https://emacs.stackexchange.com/a/1078/23627\\\"\\u003Ehttps://emacs.stackexchange.com/a/1078/23627\\u003C/a\\u003E. These are his dotfiles (\\u003Ca href=\\\"https://bitbucket.org/seanfarley/dotfiles\\\"\\u003Ehttps://bitbucket.org/seanfarley/dotfiles\\u003C/a\\u003E) but I\\u0026#39;m pretty new at Emacs so I couldn\\u0026#39;t find anything.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/dhvj5jtm6r131.png\\\"\\u003Ehttps://i.redd.it/dhvj5jtm6r131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvl94b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"humpum\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvl94b/emacs_package_to_show_the_minibuffer_in_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvl94b/emacs_package_to_show_the_minibuffer_in_the/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559398615.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"2019-02-27: Emacs as a Python IDE - Sean Farley\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/GxMAPW9_LsA?start=150\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Emacs SF\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/GxMAPW9_LsA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCFk8kgNu_bqsRZewxMGqkzQ\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How to remove emacs's bottom window and have only editor always?\\n\\nOur Linux team setup emacs as the only editor now, and the useless bottom window blocks the half of my screen. \\n\\nI liked using gedit before, but now must work with emacs.\\n\\nI tried to decrease the size of the bottom window to the minimum, but as soon as I close the document, this setting is lost and the new document in emacs is opened with the same useless bottom window which blocks half of the screen.\", \"author_fullname\": \"t2_3vd5ee30\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to remove emacs's bottom window and have only editor always?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvkd1a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559421425.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow to remove emacs\\u0026#39;s bottom window and have only editor always?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOur Linux team setup emacs as the only editor now, and the useless bottom window blocks the half of my screen. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI liked using gedit before, but now must work with emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to decrease the size of the bottom window to the minimum, but as soon as I close the document, this setting is lost and the new document in emacs is opened with the same useless bottom window which blocks half of the screen.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvkd1a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OVM2712\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvkd1a/how_to_remove_emacss_bottom_window_and_have_only/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvkd1a/how_to_remove_emacss_bottom_window_and_have_only/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559392625.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've noticed a peculiar behavior when using auto-fill-mode editing Python code. For example if I start typing the following (fill-column is set to 79),\\n\\n def some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2='foobar'):\\n \\\"\\\"\\\"\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\\n\\nand press Enter, it will look like this:\\n\\n def some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2='foobar'):\\n \\\"\\\"\\\"\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod\\n tempor incididunt ut labore et dolore magna aliqua.\\nIf the keyword arguments are all in one line, the docstring continues to be indented with 4 spaces as expected, but whenever it is extended across multiple lines, any line of the docstring after the first will match the indentation of the second line of the list of keyword arguments. Is there a good reason for this, or is this just a bug in auto-fill-mode?\", \"author_fullname\": \"t2_ch6my\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Python Documentation String Indentation In Auto-Fill Mode (Emacs 26.2)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvjzem\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559418423.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve noticed a peculiar behavior when using auto-fill-mode editing Python code. For example if I start typing the following (fill-column is set to 79),\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edef some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2=\\u0026#39;foobar\\u0026#39;):\\n \\u0026quot;\\u0026quot;\\u0026quot;\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eand press Enter, it will look like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edef some_function(keyword_argument0, keyword_argument1,\\n keyword_argument2=\\u0026#39;foobar\\u0026#39;):\\n \\u0026quot;\\u0026quot;\\u0026quot;\\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod\\n tempor incididunt ut labore et dolore magna aliqua.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf the keyword arguments are all in one line, the docstring continues to be indented with 4 spaces as expected, but whenever it is extended across multiple lines, any line of the docstring after the first will match the indentation of the second line of the list of keyword arguments. Is there a good reason for this, or is this just a bug in auto-fill-mode?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvjzem\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hexidon\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvjzem/python_documentation_string_indentation_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvjzem/python_documentation_string_indentation_in/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559389623.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello, I really like Emacs approach to text editing compared to vi, vim or joe (I love joe though, he's a trooper, but I like Emacs keybindings and logic). However Emacs is a little heavy and has many, many features that I will never use. Any tips on compiling it to bare-bones lite? Or is there an Emacs-lite fork out there? I'm currently using a custom compiled version called emacs-nox (no x11) on FreeBSD 12-stable. (I tried the nox flavor, and also removed gtk support and sound/image features, but it still renders a basic X widget. So I'm forced to alias emacs=\\\"emacs -nw\\\")\", \"author_fullname\": \"t2_3d6u59wh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New to emacs, couple of stupid questions.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvibhq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559403055.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I really like Emacs approach to text editing compared to vi, vim or joe (I love joe though, he\\u0026#39;s a trooper, but I like Emacs keybindings and logic). However Emacs is a little heavy and has many, many features that I will never use. Any tips on compiling it to bare-bones lite? Or is there an Emacs-lite fork out there? I\\u0026#39;m currently using a custom compiled version called emacs-nox (no x11) on FreeBSD 12-stable. (I tried the nox flavor, and also removed gtk support and sound/image features, but it still renders a basic X widget. So I\\u0026#39;m forced to alias emacs=\\u0026quot;emacs -nw\\u0026quot;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvibhq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cshurtsmybrain\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvibhq/new_to_emacs_couple_of_stupid_questions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvibhq/new_to_emacs_couple_of_stupid_questions/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559374255.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"This is my current ediff clause.\\n\\n (use-package ediff\\n :ensure nil\\n :commands (magit-status projectile-vc)\\n :config\\n (progn\\n (setq ediff-diff-options \\\"-w\\\"\\n ediff-split-window-function 'split-window-horizontally\\n ediff-window-setup-function 'ediff-setup-windows-plain)\\n ))\\n \\nI want to make it quit without prompting for yes or no when the `q` key is pressed using this [snippet from stackoverflow](https://emacs.stackexchange.com/questions/9322/how-can-i-quit-ediff-immediately-without-having-to-type-y/24602#24602):\\n\\n (defun disable-y-or-n-p (orig-fun \\u0026rest args)\\n (cl-letf (((symbol-function 'y-or-n-p) (lambda (prompt) t)))\\n (apply orig-fun args)))\\n \\n (advice-add 'ediff-quit :around #'disable-y-or-n-p)\\n\\nSince the `disable-y-or-n-p` function can be used elsewhere only the advice has to be add to the ediff clause. Does it have to go into a `:config` or an `:init` section?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is good way to make this change in use-package?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvi8yt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559402399.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is my current ediff clause.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package ediff\\n :ensure nil\\n :commands (magit-status projectile-vc)\\n :config\\n (progn\\n (setq ediff-diff-options \\u0026quot;-w\\u0026quot;\\n ediff-split-window-function \\u0026#39;split-window-horizontally\\n ediff-window-setup-function \\u0026#39;ediff-setup-windows-plain)\\n ))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI want to make it quit without prompting for yes or no when the \\u003Ccode\\u003Eq\\u003C/code\\u003E key is pressed using this \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/9322/how-can-i-quit-ediff-immediately-without-having-to-type-y/24602#24602\\\"\\u003Esnippet from stackoverflow\\u003C/a\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun disable-y-or-n-p (orig-fun \\u0026amp;rest args)\\n (cl-letf (((symbol-function \\u0026#39;y-or-n-p) (lambda (prompt) t)))\\n (apply orig-fun args)))\\n\\n(advice-add \\u0026#39;ediff-quit :around #\\u0026#39;disable-y-or-n-p)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESince the \\u003Ccode\\u003Edisable-y-or-n-p\\u003C/code\\u003E function can be used elsewhere only the advice has to be add to the ediff clause. Does it have to go into a \\u003Ccode\\u003E:config\\u003C/code\\u003E or an \\u003Ccode\\u003E:init\\u003C/code\\u003E section?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvi8yt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvi8yt/what_is_good_way_to_make_this_change_in_usepackage/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvi8yt/what_is_good_way_to_make_this_change_in_usepackage/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559373599.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I want to write my first emacs function that depends on searching through the buffer and need some help examples and source code to begin.\\n\\nMy goal is to change the control `C-c C-z` key to log a note to the drawer containing the cursor, or the default LOGBOOK if it is not in a drawer.\\n\\nThis means:\\n\\n1. starting on the current line, scan backwards for a line starting with the drawer syntax ie `\\\\s*:[a-zA-Z][a-zA-Z0-9_]*:` which is not `:END:` for a set number of characters or discover the cursor is not in a drawer by arriving at a line which starts with a headline character `^\\\\*`. If you get to a header line, then the cursor is not in a drawer, so return the cursor to the starting point and run `org-add-note` as normal, most likely into the default LOGBOOK.\\n\\n2. If you find a drawer header, read the current value of `org-log-into-drawer` into a temporary variable. Set `org-log-into-drawer` to the drawer name you found and execute `org-add-log-note`, then revert `org-log-into-drawer` to its previous value.\\n\\nCan anyone provide me with a script that does it and documentation and examples with more knowledge on the process?\\n\\nPS. What is the conceptual difference between `org-add-note` and `org-add-log-note`?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I need some help sources and examples to buffer navigation for emacs script?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bve79d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559372890.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to write my first emacs function that depends on searching through the buffer and need some help examples and source code to begin.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy goal is to change the control \\u003Ccode\\u003EC-c C-z\\u003C/code\\u003E key to log a note to the drawer containing the cursor, or the default LOGBOOK if it is not in a drawer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis means:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Estarting on the current line, scan backwards for a line starting with the drawer syntax ie \\u003Ccode\\u003E\\\\s*:[a-zA-Z][a-zA-Z0-9_]*:\\u003C/code\\u003E which is not \\u003Ccode\\u003E:END:\\u003C/code\\u003E for a set number of characters or discover the cursor is not in a drawer by arriving at a line which starts with a headline character \\u003Ccode\\u003E^\\\\*\\u003C/code\\u003E. If you get to a header line, then the cursor is not in a drawer, so return the cursor to the starting point and run \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E as normal, most likely into the default LOGBOOK.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIf you find a drawer header, read the current value of \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E into a temporary variable. Set \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to the drawer name you found and execute \\u003Ccode\\u003Eorg-add-log-note\\u003C/code\\u003E, then revert \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to its previous value.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ECan anyone provide me with a script that does it and documentation and examples with more knowledge on the process?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS. What is the conceptual difference between \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-add-log-note\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bve79d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bve79d/i_need_some_help_sources_and_examples_to_buffer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bve79d/i_need_some_help_sources_and_examples_to_buffer/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559344090.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I like emacs in the terminal, but how do I get rid of that bottom bar? The grey one. [https://ibin.co/4j1egykIYYYk.png](https://ibin.co/4j1egykIYYYk.png)\\n\\nI thought it was the \\\"toolbar\\\", but `(tool-bar-mode -1)` is not working. Thanks in advance!\", \"author_fullname\": \"t2_3d6u59wh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \".emacs question\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvci93\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559363370.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like emacs in the terminal, but how do I get rid of that bottom bar? The grey one. \\u003Ca href=\\\"https://ibin.co/4j1egykIYYYk.png\\\"\\u003Ehttps://ibin.co/4j1egykIYYYk.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought it was the \\u0026quot;toolbar\\u0026quot;, but \\u003Ccode\\u003E(tool-bar-mode -1)\\u003C/code\\u003E is not working. Thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvci93\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cshurtsmybrain\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvci93/emacs_question/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvci93/emacs_question/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559334570.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"For example, Craigslist only sends the 25 most recent links in the rss export, so if I wake up in the morning after 10 hours of not refreshing my feed, I will see only the 25 most recent links for a given query, and miss a lot of stuff. It would also be nice to not feel pressured to refresh my feed every hour just so I don't miss something. FWIW, the only query I'm really having this problem with is the Craigslist \\\"free\\\" section. \\n\\n\\u0026#x200B;\\n\\nI'm sure this isn't specific to Elfeed, but I'm relatively new to RSS/Atom as well. I would like my feed to always refresh sufficiently so I don't have to worry about links escaping my view. I did look into \\\\`run-with-timer\\\\` but that feels dirty compared to built-in Elfeed feature I may be missing. Thansk for reading!\", \"author_fullname\": \"t2_3th1enuk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a simple way to get Elfeed to update / refresh it's feed every x minutes?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvbp92\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559359140.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor example, Craigslist only sends the 25 most recent links in the rss export, so if I wake up in the morning after 10 hours of not refreshing my feed, I will see only the 25 most recent links for a given query, and miss a lot of stuff. It would also be nice to not feel pressured to refresh my feed every hour just so I don\\u0026#39;t miss something. FWIW, the only query I\\u0026#39;m really having this problem with is the Craigslist \\u0026quot;free\\u0026quot; section. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sure this isn\\u0026#39;t specific to Elfeed, but I\\u0026#39;m relatively new to RSS/Atom as well. I would like my feed to always refresh sufficiently so I don\\u0026#39;t have to worry about links escaping my view. I did look into `run-with-timer` but that feels dirty compared to built-in Elfeed feature I may be missing. Thansk for reading!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvbp92\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"impendingLawsuit\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvbp92/is_there_a_simple_way_to_get_elfeed_to_update/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvbp92/is_there_a_simple_way_to_get_elfeed_to_update/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559330340.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying out an org init file. Got the idea from [here](https://cestlaz.github.io/posts/using-emacs-10-org-init/). It works perfectly on Ubuntu but for some reason, it won't work on mac. I think the issue might be with org-babel. It parses the majority of my packages but not all of them, in particular, the first 2 and my interface tweaks. Heres my files [github link](https://github.com/girvain/.emacs.d/tree/orgModeInit).\\n\\nAnyone else had a similar issue?\", \"author_fullname\": \"t2_lkmww7c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org init files won't parse on mac\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvb6ep\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559356424.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying out an org init file. Got the idea from \\u003Ca href=\\\"https://cestlaz.github.io/posts/using-emacs-10-org-init/\\\"\\u003Ehere\\u003C/a\\u003E. It works perfectly on Ubuntu but for some reason, it won\\u0026#39;t work on mac. I think the issue might be with org-babel. It parses the majority of my packages but not all of them, in particular, the first 2 and my interface tweaks. Heres my files \\u003Ca href=\\\"https://github.com/girvain/.emacs.d/tree/orgModeInit\\\"\\u003Egithub link\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone else had a similar issue?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvb6ep\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"girvain\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvb6ep/org_init_files_wont_parse_on_mac/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvb6ep/org_init_files_wont_parse_on_mac/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559327624.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a command to choose the drawer `org-add-note` saves the text in?\\n\\nI was thinking that with the cursor in a particular drawer `org-add-note` would enter the text into that drawer, but it always goes into the `LOGBOOK` drawer.\\n\\nFrom the documentation the logical thing to do would be to check the location of the cursor and if it is in drawer, change the `org-log-into-drawer` variable, add the note then revert `org-log-into-drawer` to what it was before, but that seems to be rather long-winded, or is it the only valid alternative?\\n\\nIs there builtin function for checking the current drawer?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to add a note to a specific drawer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvay1h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559355236.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a command to choose the drawer \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E saves the text in?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was thinking that with the cursor in a particular drawer \\u003Ccode\\u003Eorg-add-note\\u003C/code\\u003E would enter the text into that drawer, but it always goes into the \\u003Ccode\\u003ELOGBOOK\\u003C/code\\u003E drawer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the documentation the logical thing to do would be to check the location of the cursor and if it is in drawer, change the \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E variable, add the note then revert \\u003Ccode\\u003Eorg-log-into-drawer\\u003C/code\\u003E to what it was before, but that seems to be rather long-winded, or is it the only valid alternative?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there builtin function for checking the current drawer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvay1h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvay1h/how_to_add_a_note_to_a_specific_drawer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvay1h/how_to_add_a_note_to_a_specific_drawer/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559326436.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I wonder if anyone using emacs on Windows notices a slight text flicker when scrolling up and down buffers or resizing the program. I experience this even when launching under \\\"emacs -Q\\\" and now that I've noticed it a couple times I can't unsee it.\\n\\nMainly want to know if there are any workarounds for this or plans to fix it in the future.\", \"author_fullname\": \"t2_1sukobfg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"text flicker on windows (emacs 26.2)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv9jgk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559348196.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI wonder if anyone using emacs on Windows notices a slight text flicker when scrolling up and down buffers or resizing the program. I experience this even when launching under \\u0026quot;emacs -Q\\u0026quot; and now that I\\u0026#39;ve noticed it a couple times I can\\u0026#39;t unsee it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMainly want to know if there are any workarounds for this or plans to fix it in the future.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv9jgk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DesperateSell\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv9jgk/text_flicker_on_windows_emacs_262/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv9jgk/text_flicker_on_windows_emacs_262/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559319396.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nFor all the awesomeness of org-mode in general, and its export engines in particular : I cannot make a particular thing work quite well. When an org file is exported, say, to HTML with a huge majority of the available CSS'es that I could find. Export to text is even worse. E.g. org file :\\n\\n\\u0026#x200B;\\n\\n\\u003E\\\\* Introduction \\n\\u003E \\n\\u003E\\\\* Features \\n\\u003E \\n\\u003E\\\\*\\\\* Cars \\n\\u003E \\n\\u003E\\\\*\\\\* Trucks \\n\\u003E \\n\\u003E... \\n\\u003E \\n\\u003E\\\\* Problems\\n\\n\\u0026#x200B;\\n\\nThis gets exported to something like :\\n\\n\\u003E1 Introduction \\n\\u003E \\n\\u003E2 Features \\n\\u003E \\n\\u003E2.1 Cars \\n\\u003E \\n\\u003E2.2 Trucks \\n\\u003E \\n\\u003E... \\n\\u003E \\n\\u003E3 Problems\\n\\n\\u0026#x200B;\\n\\nWithout anything to distinguish between \\\"1\\\" and \\\"Introduction\\\". Or \\\"2\\\" and \\\"Features\\\". Everyone who is not used to org mode exporting asks me that you have only 2 features and 3 problems ? BTW the Features section can be many pages long.\\n\\n\\u0026#x200B;\\n\\nI tried the CSSes from :\\n\\n1. [https://www.reddit.com/r/emacs/comments/3pvbag/is\\\\_there\\\\_a\\\\_collection\\\\_of\\\\_css\\\\_styles\\\\_for\\\\_org/](https://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/)\\n2. [https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html](https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html)\\n3. [http://diobla.info/doc/rtags](http://diobla.info/doc/rtags) : this has a different background for section numbers, but in simple renderers like email , the different background doesn't have any effect.\\n\\n\\u0026#x200B;\\n\\nSo my question : a simple \\\".\\\" , or \\\")\\\" between section numbering is extremely standard, and most people can make out the difference. How can I add such a separator ? It is also practically standard in HTML numbering that triple click on the line selects the whole content except the section number - which is also violated in all HTML CSSes that I could find.\\n\\n\\u0026#x200B;\\n\\nAnother question stemming from my frustration is also that how is everyone else living with this? The fact that table of contents in text and HTML export include a \\\".\\\" between section number and content means people in org also know this. But somehow this is ignored in the main content ?\", \"author_fullname\": \"t2_1zt5mges\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org mode export section numbering\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv8rli\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559344538.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor all the awesomeness of org-mode in general, and its export engines in particular : I cannot make a particular thing work quite well. When an org file is exported, say, to HTML with a huge majority of the available CSS\\u0026#39;es that I could find. Export to text is even worse. E.g. org file :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E* Introduction \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Features \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** Cars \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E** Trucks \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Problems\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis gets exported to something like :\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E1 Introduction \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2 Features \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2.1 Cars \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2.2 Trucks \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E3 Problems\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithout anything to distinguish between \\u0026quot;1\\u0026quot; and \\u0026quot;Introduction\\u0026quot;. Or \\u0026quot;2\\u0026quot; and \\u0026quot;Features\\u0026quot;. Everyone who is not used to org mode exporting asks me that you have only 2 features and 3 problems ? BTW the Features section can be many pages long.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried the CSSes from :\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/\\\"\\u003Ehttps://www.reddit.com/r/emacs/comments/3pvbag/is_there_a_collection_of_css_styles_for_org/\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html\\\"\\u003Ehttps://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01478.html\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://diobla.info/doc/rtags\\\"\\u003Ehttp://diobla.info/doc/rtags\\u003C/a\\u003E : this has a different background for section numbers, but in simple renderers like email , the different background doesn\\u0026#39;t have any effect.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo my question : a simple \\u0026quot;.\\u0026quot; , or \\u0026quot;)\\u0026quot; between section numbering is extremely standard, and most people can make out the difference. How can I add such a separator ? It is also practically standard in HTML numbering that triple click on the line selects the whole content except the section number - which is also violated in all HTML CSSes that I could find.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother question stemming from my frustration is also that how is everyone else living with this? The fact that table of contents in text and HTML export include a \\u0026quot;.\\u0026quot; between section number and content means people in org also know this. But somehow this is ignored in the main content ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv8rli\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"KrishnaKrGopal\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv8rli/org_mode_export_section_numbering/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv8rli/org_mode_export_section_numbering/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559315738.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I tried using ob-prolog, but it seems outdated and not working :'(\\n\\n\\u0026#x200B;\\n\\nLuckily with a bit of Lisp, I made a quick hack for quickly executing Prolog queries from the current buffer. I share it here in the hopes of attracting others to try Prolog with Emacs. \\n\\n ;; Don't judge me too harshly, this was quick and dirty; e.g., not enough `let`s!\\n \\n (local-set-key (kbd \\\"\\u003Cf6\\u003E\\\") (lambda () (interactive)\\n \\\"\\n org-babel-tangle the whole file, then execute the final query\\n in the current SRC block.\\n \\n If the query mentions the variable \\u2018X\\u2019, then show all possible solutions\\n followed by \\u2018false\\u2019. Usually one presses \\u2018;\\u2019 to see other solutions,\\n but in Emacs this only shows one futher solution then terminates.\\n We get around this by executing essentially\\n \\u201cforall(your-query-with-X, writeln(X)).\\u201d\\n This prints all solutions X to your query.\\n \\n If you want to use a variable but don't want to see all solutions,\\n then avoid using \\u2018X\\u2019; e.g., use \\u2018Y\\u2019 ^_^.\\n \\\"\\n (-let [kill-buffer-query-functions nil]\\n (ignore-errors\\n (switch-to-buffer \\\"*Prolog*\\\")\\n (kill-buffer \\\"*Prolog*\\\"))\\n \\n ;; Get final query in current source block\\n (search-forward \\\"#+END_SRC\\\")\\n (search-backward \\\"% ?-\\\")\\n ;; Copy line, without killing it.\\n (setq xx (thing-at-point 'line t))\\n \\n (async-shell-command (format \\\"swipl -s %s\\\" (car (org-babel-tangle))) \\\"*Prolog*\\\")\\n (other-window 1)\\n \\n ;; Paste the final query\\n (setq xx (s-chop-prefix \\\"% ?- \\\" xx))\\n (when (s-contains? \\\"X\\\" xx)\\n (setq xx (concat \\\"writeln(\\\\\\\"X =\\\\\\\"), forall(\\\" (s-replace \\\".\\\" \\\", writeln(X)).\\\" xx))))\\n \\n (insert xx)\\n (comint-send-input nil t) ;; Send it, i.e., \\u201cpress enter at prompt\\u201d.\\n \\n ;; Insert query again, but do not send, in case user wishes to change it.\\n (insert xx)\\n (previous-line) (end-of-line)\\n \\n )))\\n\\n\\u0026#x200B;\\n\\nThe [source repo](https://github.com/alhassy/PrologCheatSheet) also contains a Prolog Cheat Sheet that insipired this setup (\\u2022\\u0300\\u1d17\\u2022\\u0301)\\u0648\", \"author_fullname\": \"t2_1pko65xw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\u201cInteractive\\u201d Prolog Setup\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5hq7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559324539.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI tried using ob-prolog, but it seems outdated and not working :\\u0026#39;(\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELuckily with a bit of Lisp, I made a quick hack for quickly executing Prolog queries from the current buffer. I share it here in the hopes of attracting others to try Prolog with Emacs. \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Don\\u0026#39;t judge me too harshly, this was quick and dirty; e.g., not enough `let`s!\\n\\n(local-set-key (kbd \\u0026quot;\\u0026lt;f6\\u0026gt;\\u0026quot;) (lambda () (interactive)\\n \\u0026quot;\\norg-babel-tangle the whole file, then execute the final query\\nin the current SRC block.\\n\\nIf the query mentions the variable \\u2018X\\u2019, then show all possible solutions\\nfollowed by \\u2018false\\u2019. Usually one presses \\u2018;\\u2019 to see other solutions,\\nbut in Emacs this only shows one futher solution then terminates.\\nWe get around this by executing essentially\\n\\u201cforall(your-query-with-X, writeln(X)).\\u201d\\nThis prints all solutions X to your query.\\n\\nIf you want to use a variable but don\\u0026#39;t want to see all solutions,\\nthen avoid using \\u2018X\\u2019; e.g., use \\u2018Y\\u2019 ^_^.\\n \\u0026quot;\\n (-let [kill-buffer-query-functions nil]\\n (ignore-errors\\n (switch-to-buffer \\u0026quot;*Prolog*\\u0026quot;)\\n (kill-buffer \\u0026quot;*Prolog*\\u0026quot;))\\n\\n ;; Get final query in current source block\\n (search-forward \\u0026quot;#+END_SRC\\u0026quot;)\\n (search-backward \\u0026quot;% ?-\\u0026quot;)\\n ;; Copy line, without killing it.\\n (setq xx (thing-at-point \\u0026#39;line t))\\n\\n (async-shell-command (format \\u0026quot;swipl -s %s\\u0026quot; (car (org-babel-tangle))) \\u0026quot;*Prolog*\\u0026quot;)\\n (other-window 1)\\n\\n ;; Paste the final query\\n (setq xx (s-chop-prefix \\u0026quot;% ?- \\u0026quot; xx))\\n (when (s-contains? \\u0026quot;X\\u0026quot; xx)\\n(setq xx (concat \\u0026quot;writeln(\\\\\\u0026quot;X =\\\\\\u0026quot;), forall(\\u0026quot; (s-replace \\u0026quot;.\\u0026quot; \\u0026quot;, writeln(X)).\\u0026quot; xx))))\\n\\n (insert xx)\\n (comint-send-input nil t) ;; Send it, i.e., \\u201cpress enter at prompt\\u201d.\\n\\n ;; Insert query again, but do not send, in case user wishes to change it.\\n (insert xx)\\n (previous-line) (end-of-line)\\n\\n)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe \\u003Ca href=\\\"https://github.com/alhassy/PrologCheatSheet\\\"\\u003Esource repo\\u003C/a\\u003E also contains a Prolog Cheat Sheet that insipired this setup (\\u2022\\u0300\\u1d17\\u2022\\u0301)\\u0648\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5hq7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moseswithhisbooks\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5hq7/interactive_prolog_setup/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5hq7/interactive_prolog_setup/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559295739.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I find it helpful to make cheatsheets whenever I'm learning stuff, the LaTeX was getting too much so I just hid it into Org-mode \\\\`#+latex:\\\\` invocations. The resulting mechanism ---[see here](https://github.com/alhassy/CheatSheet)\\\\--- works great: As a user, I essentially only see the usual org-mode interface, little to no LaTeX \\\\^\\\\_\\\\^ \\n\\n\\nHowever, even though I rarely consult it, the setup file is a bit akward, any suggestions for improvement would be welcome :-)\", \"author_fullname\": \"t2_1pko65xw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Easily Making CheatSheets with Org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5e7k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 68, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 68, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559323760.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find it helpful to make cheatsheets whenever I\\u0026#39;m learning stuff, the LaTeX was getting too much so I just hid it into Org-mode `#+latex:` invocations. The resulting mechanism ---\\u003Ca href=\\\"https://github.com/alhassy/CheatSheet\\\"\\u003Esee here\\u003C/a\\u003E--- works great: As a user, I essentially only see the usual org-mode interface, little to no LaTeX ^_^ \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, even though I rarely consult it, the setup file is a bit akward, any suggestions for improvement would be welcome :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5e7k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"moseswithhisbooks\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5e7k/easily_making_cheatsheets_with_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5e7k/easily_making_cheatsheets_with_orgmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559294960.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hey, guys, been testing emacs on my new mbp and I ran into a rather inconvenient issue. When I put safari in full screen and switch back to emacs from safari, emacs is out of focus, i.e. I have to click on it to use it. Any ideas as to how to resolve this issue? My emacs version is emacs Mac port.\", \"author_fullname\": \"t2_2g0vvde9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Macos emacs focus issue\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv5bes\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559323125.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, guys, been testing emacs on my new mbp and I ran into a rather inconvenient issue. When I put safari in full screen and switch back to emacs from safari, emacs is out of focus, i.e. I have to click on it to use it. Any ideas as to how to resolve this issue? My emacs version is emacs Mac port.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv5bes\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"clafordvlawrence\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv5bes/macos_emacs_focus_issue/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv5bes/macos_emacs_focus_issue/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559294325.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_1s3m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Back in 2008, there were reports that Microsoft was working on Emacs.Net\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv2i7u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 40, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 40, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559301755.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"zdnet.com\", \"selftext_html\": null, \"likes\": true, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv2i7u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dharmatech\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv2i7u/back_in_2008_there_were_reports_that_microsoft/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.zdnet.com/article/microsoft-to-build-an-emacs-net-text-editor/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559272955.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a way to remap *TAB* in org-mode? I have looked into the source code and I cannot figure how to do this map.\", \"author_fullname\": \"t2_qw4yvca\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to remap TAB in org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv0ih3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559289935.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a way to remap \\u003Cem\\u003ETAB\\u003C/em\\u003E in org-mode? I have looked into the source code and I cannot figure how to do this map.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv0ih3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"machawinka\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bv0ih3/how_to_remap_tab_in_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bv0ih3/how_to_remap_tab_in_orgmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559261135.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"One thing that has been bugging me about using emacs for my email is when I use `message-insert-signature` it always puts my signature at the end of the email. Sometimes I leave the conversation tail after my reply, so I usually want to insert my signature at the point rather than at the end.\\n\\nIs there a way I can change this?\", \"author_fullname\": \"t2_9lkqk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Insert signature at point?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_butsst\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559255097.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOne thing that has been bugging me about using emacs for my email is when I use \\u003Ccode\\u003Emessage-insert-signature\\u003C/code\\u003E it always puts my signature at the end of the email. Sometimes I leave the conversation tail after my reply, so I usually want to insert my signature at the point rather than at the end.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way I can change this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"butsst\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lykwydchykyn\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/butsst/insert_signature_at_point/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/butsst/insert_signature_at_point/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559226297.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I using go language mode (Emacs 26.1 with Prelude). With longer lines, Emacs colors everyting beyond 80 characters in a different color.\\n\\nWhat variable(s) control this and how do I stop it from doing this?\\n\\nAppreciate your help.\\n\\nEDIT: Found it! Turning off whitespace-mode stopped this bahaviour.\", \"author_fullname\": \"t2_1a39v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I stop Emacs from coloring text beyond 80 columns differently.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_butal1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559225749.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559252400.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI using go language mode (Emacs 26.1 with Prelude). With longer lines, Emacs colors everyting beyond 80 characters in a different color.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat variable(s) control this and how do I stop it from doing this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAppreciate your help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Found it! Turning off whitespace-mode stopped this bahaviour.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"butal1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"reddit_clone\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/butal1/how_do_i_stop_emacs_from_coloring_text_beyond_80/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/butal1/how_do_i_stop_emacs_from_coloring_text_beyond_80/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559223600.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl5q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 73, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 73, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559241478.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl5q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burl5q/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559212678.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_14grtk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Brief summary of some Emacs features\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burg4w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559240415.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"old.reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burg4w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Vurpius\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burg4w/brief_summary_of_some_emacs_features/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://old.reddit.com/r/linux/comments/btzzvp/unix_as_ide/ep5i1cy/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559211615.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"1. It is not super important but I'm curious if there's a way to improve EXWM startup time? After logging in and seeing Emacs briefly the window expands to fullscreen black and then it takes 10s or so before EXWM is ready. I'm curious it takes such a long time.\\n\\n2. Is there a build-in function to switch to the last used buffer quickly? Currently I'm using my own custom function because `(switch-to-buffer nil)` does not switch to hidden or system buffers. But it feels like overkill to use what I have written[1] (which I also use outside of EXWM).\\n\\n3. For changing the volume I'm using the current keybindings but on first use they have a significant delay and lock EXWM:\\n - `(lambda () (interactive) (start-process \\\"\\\" \\\"*proc-out-amixer*\\\" \\\"amixer\\\" \\\"set\\\" \\\"Master\\\" \\\"2%-\\\")))`\\n - `(lambda () (interactive) (start-process \\\"\\\" \\\"*proc-out-amixer*\\\" \\\"amixer\\\" \\\"set\\\" \\\"Master\\\" \\\"2%+\\\")))`\\n\\n[1]\\n\\n (defvar switch-to-last-buffer-hash-table (make-hash-table))\\n \\n (defun switch-to-last-buffer-store ()\\n (interactive)\\n (puthash (selected-window) (current-buffer)\\n switch-to-last-buffer-hash-table))\\n \\n ;; `(switch-to-buffer nil)` doesn't work because I also want to switch back to\\n ;; hidden or system buffers.\\n (defun switch-to-last-buffer ()\\n (interactive)\\n (let ((last-buffer (gethash (selected-window)\\n switch-to-last-buffer-hash-table)))\\n (when last-buffer\\n (switch-to-last-buffer-store)\\n (switch-to-buffer last-buffer))))\\n \\n ;; XXX What does /protected/ do?\\n (ad-add-advice #'switch-to-buffer '(switch-to-last-buffer-store nil t (lambda () (switch-to-last-buffer-store))) 'before 'first)\", \"author_fullname\": \"t2_3lmrs\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Some EXWM questions (startup time, keybindings)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bur9cm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559238876.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIt is not super important but I\\u0026#39;m curious if there\\u0026#39;s a way to improve EXWM startup time? After logging in and seeing Emacs briefly the window expands to fullscreen black and then it takes 10s or so before EXWM is ready. I\\u0026#39;m curious it takes such a long time.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EIs there a build-in function to switch to the last used buffer quickly? Currently I\\u0026#39;m using my own custom function because \\u003Ccode\\u003E(switch-to-buffer nil)\\u003C/code\\u003E does not switch to hidden or system buffers. But it feels like overkill to use what I have written[1] (which I also use outside of EXWM).\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor changing the volume I\\u0026#39;m using the current keybindings but on first use they have a significant delay and lock EXWM:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003E(lambda () (interactive) (start-process \\u0026quot;\\u0026quot; \\u0026quot;*proc-out-amixer*\\u0026quot; \\u0026quot;amixer\\u0026quot; \\u0026quot;set\\u0026quot; \\u0026quot;Master\\u0026quot; \\u0026quot;2%-\\u0026quot;)))\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003E(lambda () (interactive) (start-process \\u0026quot;\\u0026quot; \\u0026quot;*proc-out-amixer*\\u0026quot; \\u0026quot;amixer\\u0026quot; \\u0026quot;set\\u0026quot; \\u0026quot;Master\\u0026quot; \\u0026quot;2%+\\u0026quot;)))\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E[1]\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defvar switch-to-last-buffer-hash-table (make-hash-table))\\n\\n(defun switch-to-last-buffer-store ()\\n (interactive)\\n (puthash (selected-window) (current-buffer)\\n switch-to-last-buffer-hash-table))\\n\\n;; `(switch-to-buffer nil)` doesn\\u0026#39;t work because I also want to switch back to\\n;; hidden or system buffers.\\n(defun switch-to-last-buffer ()\\n (interactive)\\n (let ((last-buffer (gethash (selected-window)\\n switch-to-last-buffer-hash-table)))\\n (when last-buffer\\n (switch-to-last-buffer-store)\\n (switch-to-buffer last-buffer))))\\n\\n;; XXX What does /protected/ do?\\n(ad-add-advice #\\u0026#39;switch-to-buffer \\u0026#39;(switch-to-last-buffer-store nil t (lambda () (switch-to-last-buffer-store))) \\u0026#39;before \\u0026#39;first)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bur9cm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aerique\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bur9cm/some_exwm_questions_startup_time_keybindings/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bur9cm/some_exwm_questions_startup_time_keybindings/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559210076.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If that's easily available, please notice that I made it clear it was a silly question. I used to easily find this with a Google Search, but for some reason I haven't been able to find it for the last 48 hours. The mirror [only goes up to 26.2](http://mirror.sergal.org/gnu/emacs/). Where can I find versions development 27 and up?\\n\\n[I can only find pretest versions for Windows](https://alpha.gnu.org/gnu/emacs/pretest/windows/).\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A very silly question: cannot find Emacs 27.0.50 tarball for Linux anywhere!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bumr6p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559177553.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559206114.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf that\\u0026#39;s easily available, please notice that I made it clear it was a silly question. I used to easily find this with a Google Search, but for some reason I haven\\u0026#39;t been able to find it for the last 48 hours. The mirror \\u003Ca href=\\\"http://mirror.sergal.org/gnu/emacs/\\\"\\u003Eonly goes up to 26.2\\u003C/a\\u003E. Where can I find versions development 27 and up?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://alpha.gnu.org/gnu/emacs/pretest/windows/\\\"\\u003EI can only find pretest versions for Windows\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bumr6p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bumr6p/a_very_silly_question_cannot_find_emacs_27050/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bumr6p/a_very_silly_question_cannot_find_emacs_27050/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559177314.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"While me and some friends were discusing about which is the best text editor I said that it is emacs. Someone said that it is VS code because you can do things that in other editors you can't. I said you can do almost everything in emacs. Someone asked if ther is a way to use tinder from emacs. So that's the question, can you interact with other people via tinder with emacs?\\n\\nThanks.\", \"author_fullname\": \"t2_1gpw29so\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a tinder mode on emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buj4i2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 59, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 59, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559187513.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile me and some friends were discusing about which is the best text editor I said that it is emacs. Someone said that it is VS code because you can do things that in other editors you can\\u0026#39;t. I said you can do almost everything in emacs. Someone asked if ther is a way to use tinder from emacs. So that\\u0026#39;s the question, can you interact with other people via tinder with emacs?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buj4i2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"edoelas\", \"num_crossposts\": 0, \"num_comments\": 28, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buj4i2/is_there_a_tinder_mode_on_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buj4i2/is_there_a_tinder_mode_on_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559158713.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Lately I have realized that I don't have an efficient way of organizing my research and ideas. I simply bookmark different papers I have read and jot down my ideas in a notebook. I have looked into tools for this and Zotero seems to be like something I can use.\\n\\nI haven't really used org mode before, but I have heard good things about it. So if anyone uses org mode for the case I have described above (organizing research and ideas), I would love to hear about tips and hopefully links to some guides?\", \"author_fullname\": \"t2_gcwvdi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs org mode as a research/ideas journal ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buhux4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559181180.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELately I have realized that I don\\u0026#39;t have an efficient way of organizing my research and ideas. I simply bookmark different papers I have read and jot down my ideas in a notebook. I have looked into tools for this and Zotero seems to be like something I can use.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t really used org mode before, but I have heard good things about it. So if anyone uses org mode for the case I have described above (organizing research and ideas), I would love to hear about tips and hopefully links to some guides?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buhux4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vikigenius\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buhux4/emacs_org_mode_as_a_researchideas_journal/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buhux4/emacs_org_mode_as_a_researchideas_journal/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559152380.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have adapted a function by Xah Lee to change the location backup files are saved, but it doesn't seem to work. Only things like the `recentf` and `idolast` are saved in it. Normal editing files are still backed up in their directories as usual.\\n\\nAre there some other functions and variables involved?\\n \\n ;; make backup to a designated dir, mirroring the full path\\n ;; adapted from xah-lee http://ergoemacs.org/emacs/emacs_set_backup_into_a_directory.html\\n \\n (defun vfc/set-backup-file-path (fpath)\\n \\\"Return a new file path of a given file path.\\n If the new path's directories does not exist, create them.\\\"\\n (let* (\\n (backupRootDir \\\"~/tmp/.emacs_backups/\\\")\\n (filePath (replace-regexp-in-string \\\"[A-Za-z]:\\\" \\\"\\\" fpath )) ; remove Windows driver letter in path, for example, \\u201cC:\\u201d\\n (backupFilePath (replace-regexp-in-string \\\"//\\\" \\\"/\\\" (concat backupRootDir filePath \\\"~\\\") ))\\n )\\n (make-directory (file-name-directory backupFilePath) (file-name-directory backupFilePath))\\n backupFilePath\\n )\\n )\\n \\n (setq make-backup-file-name-function 'vfc/set-backup-file-path)\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there another factor involved in backup file locations besides \\\"make-backup-file-name-function\\\"?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buf5od\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559167905.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have adapted a function by Xah Lee to change the location backup files are saved, but it doesn\\u0026#39;t seem to work. Only things like the \\u003Ccode\\u003Erecentf\\u003C/code\\u003E and \\u003Ccode\\u003Eidolast\\u003C/code\\u003E are saved in it. Normal editing files are still backed up in their directories as usual.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre there some other functions and variables involved?\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; make backup to a designated dir, mirroring the full path\\n;; adapted from xah-lee http://ergoemacs.org/emacs/emacs_set_backup_into_a_directory.html\\n\\n(defun vfc/set-backup-file-path (fpath)\\n \\u0026quot;Return a new file path of a given file path.\\nIf the new path\\u0026#39;s directories does not exist, create them.\\u0026quot;\\n (let* (\\n (backupRootDir \\u0026quot;~/tmp/.emacs_backups/\\u0026quot;)\\n (filePath (replace-regexp-in-string \\u0026quot;[A-Za-z]:\\u0026quot; \\u0026quot;\\u0026quot; fpath )) ; remove Windows driver letter in path, for example, \\u201cC:\\u201d\\n (backupFilePath (replace-regexp-in-string \\u0026quot;//\\u0026quot; \\u0026quot;/\\u0026quot; (concat backupRootDir filePath \\u0026quot;~\\u0026quot;) ))\\n )\\n (make-directory (file-name-directory backupFilePath) (file-name-directory backupFilePath))\\n backupFilePath\\n )\\n)\\n\\n(setq make-backup-file-name-function \\u0026#39;vfc/set-backup-file-path)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buf5od\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buf5od/is_there_another_factor_involved_in_backup_file/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buf5od/is_there_another_factor_involved_in_backup_file/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559139105.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm running Portacle (a LISP IDE).\\n\\nFor some reason I'm not able to use Ctrl+Shift+arrow keys to select text.\\n\\nDoes anyone know why? How can I enable this? In plain Emacs it works just fine.\", \"author_fullname\": \"t2_3nv0r2zn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can't Use Shift Keys for selecting text\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buepqn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559165474.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m running Portacle (a LISP IDE).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor some reason I\\u0026#39;m not able to use Ctrl+Shift+arrow keys to select text.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone know why? How can I enable this? In plain Emacs it works just fine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buepqn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gambledrum1\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buepqn/cant_use_shift_keys_for_selecting_text/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buepqn/cant_use_shift_keys_for_selecting_text/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559136674.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I found there is web-mode, rjsx-mode, vue-mode, js-mode, js2-mode and so on. I am not sure if i should use web-mode for all of them or should i use a specific one for each extension like, rjsx for jsx, vue-mode for vue. I saw that most of the mode allows us to customize space, tab... like web-mode does so i could not differentiate between them. Please explain me the different and advice me what should I use and why?\", \"author_fullname\": \"t2_3q43d0xo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Should I use web-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budrzk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559160036.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I found there is web-mode, rjsx-mode, vue-mode, js-mode, js2-mode and so on. I am not sure if i should use web-mode for all of them or should i use a specific one for each extension like, rjsx for jsx, vue-mode for vue. I saw that most of the mode allows us to customize space, tab... like web-mode does so i could not differentiate between them. Please explain me the different and advice me what should I use and why?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budrzk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"onwake01\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budrzk/should_i_use_webmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budrzk/should_i_use_webmode/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559131236.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I really like emmet and activate it globally so that i can speed up my html code faster. But, because those files don't contain a pure html but also css and js, then emmet often interrupt rather than help because it always show completion and when i press space it just replace my typing. This is annoying when i am inside js block or css block but this interrupt me so much. \\n\\n\\u0026#x200B;\\n\\nMy question is, is it possible if i want emmet to show suggestion/completion inside a block of html code?\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n```\\n(use-package emmet-mode\\n :hook ((html-mode sgml-mode css-mode web-mode) . emmet-preview-mode)\\n :bind(\\\"C-j\\\" . emmet-expand-line)\\n :config\\n (add-hook 'rjsx-mode-hook\\n (lambda ()\\n (setq-local emmet-expand-jsx-className? t)))\\n )\\n;\\n```\", \"author_fullname\": \"t2_3q43d0xo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is it possible to activate emmet only inside HTML region or tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budods\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159433.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am working as a web developer who is working on jsx, blade.php, js, and vue. Those files often contain both html, and js code and sometime also css. I really like emmet and activate it globally so that i can speed up my html code faster. But, because those files don\\u0026#39;t contain a pure html but also css and js, then emmet often interrupt rather than help because it always show completion and when i press space it just replace my typing. This is annoying when i am inside js block or css block but this interrupt me so much. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy question is, is it possible if i want emmet to show suggestion/completion inside a block of html code?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\n\\u003Ccode\\u003E\\n(use-package emmet-mode\\n :hook ((html-mode sgml-mode css-mode web-mode) . emmet-preview-mode)\\n :bind(\\u0026quot;C-j\\u0026quot; . emmet-expand-line)\\n :config\\n (add-hook \\u0026#39;rjsx-mode-hook\\n (lambda ()\\n (setq-local emmet-expand-jsx-className? t)))\\n )\\n;\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budods\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"onwake01\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budods/is_it_possible_to_activate_emmet_only_inside_html/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budods/is_it_possible_to_activate_emmet_only_inside_html/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559130633.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I work with emacs at work to organized incoming tickets. We open these tickets in an online application, essentially a web page for each ticket. I am looking for a way to get certain text strings (for example, the ticket number \\u0026 the user ID) into Emacs, and then into a capture template in org, which contains these as properties (:ticket: :userid:).\\n\\n\\u0026#x200B;\\n\\nWhat would be a way to look into it? I'm trying to find something online but it seems to be too vague to search thoroughly. Anyone here done something similar? I'm open to suggestions...\\n\\n\\u0026#x200B;\\n\\nThanks in advance!\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Extract certain text from browser to Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budmsh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159158.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI work with emacs at work to organized incoming tickets. We open these tickets in an online application, essentially a web page for each ticket. I am looking for a way to get certain text strings (for example, the ticket number \\u0026amp; the user ID) into Emacs, and then into a capture template in org, which contains these as properties (:ticket: :userid:).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat would be a way to look into it? I\\u0026#39;m trying to find something online but it seems to be too vague to search thoroughly. Anyone here done something similar? I\\u0026#39;m open to suggestions...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budmsh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/budmsh/extract_certain_text_from_browser_to_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/budmsh/extract_certain_text_from_browser_to_emacs/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559130358.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\\n\\nThe other things which get noted in LOGBOOK can remain, just `C-c C-z` to go into a separate drawer?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bud0x7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559155172.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can emacs be set to use a different drawer for notes, e.g NOTES instead of LOGBOOK ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe other things which get noted in LOGBOOK can remain, just \\u003Ccode\\u003EC-c C-z\\u003C/code\\u003E to go into a separate drawer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bud0x7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bud0x7/how_can_emacs_be_set_to_use_a_different_drawer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bud0x7/how_can_emacs_be_set_to_use_a_different_drawer/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559126372.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_8dk3r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bucul7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 31, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/AL1ypvJ5yAQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bucul7\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 31, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559153900.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bucul7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zaiste\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bucul7/emacs_doom_e04_buffers_windows_and_basic/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=AL1ypvJ5yAQ\\u0026feature=youtu.be\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559125100.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E04 - Buffers, Windows and Basic Navigation\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AL1ypvJ5yAQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/AL1ypvJ5yAQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Any using emacs to track calories or any other diet related stuff?\", \"author_fullname\": \"t2_2ibchdac\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone using emacs to track calories?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buci89\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559151135.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny using emacs to track calories or any other diet related stuff?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buci89\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"the_sealed_tanker\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/buci89/anyone_using_emacs_to_track_calories/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/buci89/anyone_using_emacs_to_track_calories/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559122335.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm finally diving into the world of emacs. So i set a theme and all that in the GUI wich looks great. However, outside of emacs i'm using a transparant URvxt with a color scheme of it's own, before i customized the GUI version emacs -nw would be the same transparency and all the colors would match. Now however i get a full green screen with on which the letters are hardly readable. How can I apply the theme only to the GUI version and not the terminal version?\\n\\nThanks.\", \"author_fullname\": \"t2_3p8r6ax6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs -nw color scheme.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bubuv9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559145461.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m finally diving into the world of emacs. So i set a theme and all that in the GUI wich looks great. However, outside of emacs i\\u0026#39;m using a transparant URvxt with a color scheme of it\\u0026#39;s own, before i customized the GUI version emacs -nw would be the same transparency and all the colors would match. Now however i get a full green screen with on which the letters are hardly readable. How can I apply the theme only to the GUI version and not the terminal version?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bubuv9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"whoopar\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bubuv9/emacs_nw_color_scheme/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bubuv9/emacs_nw_color_scheme/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559116661.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"# Introduction\\n\\nGNU Hyperbole 7.0.3 is released and ready for action.\\n\\nHyperbole is an amazing hypertextual information management system that installs quickly and easily as an Emacs package. It is part of GNU Elpa, the Emacs Lisp Package Archive.\\n\\nHyperbole interlinks all your working information within Emacs for fast access and editing, not just within special modes. An hour invested exploring Hyperbole's built-in interactive DEMO file will save you hundreds of hours in your future work.\\n\\n7.0.3 is a significant release with a number of interesting improvements. What's new in this release is described here:\\n\\n[www.gnu.org/s/hyperbole/HY-NEWS](https://www.gnu.org/s/hyperbole/HY-NEWS.html)\\n\\nHyperbole is described here:\\n\\n[www.gnu.org/s/hyperbole](https://www.gnu.org/s/hyperbole)\\n\\nFor use cases, see:\\n\\n[www.gnu.org/s/hyperbole/HY-WHY.html](https://www.gnu.org/s/hyperbole/HY-WHY.html)\\n\\nFor what users think about Hyperbole, see:\\n\\n[https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes](https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes)\\n\\nHyperbole can supplement and extend Org-mode's capabilities. It adds many features not found elsewhere in Emacs, including Org mode, see:\\n\\n[www.emacswiki.org/emacs/Hyperbole](https://www.emacswiki.org/emacs/Hyperbole)\\n\\nHyperbole includes its own easy-to-use hypertextual buttons and links that can be created without the need for any markup language.\\n\\nHyperbole has an interactive demo to introduce you to its features as well as a detailed reference manual, as explained here:\\n\\n[https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc](https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc)\\n\\n# Quick Reasons to Try Hyperbole\\n\\nIt contains:\\n\\n* the most flexible and easy-to-use hyperbuttons available, including implicit buttons automatically recognized by context, e.g. stack trace source line references.\\n* the only Emacs outliner with full legal item numbering, e.g. [1.4.2.6](https://1.4.2.6), and automatic permanent hyperlink anchors for every item\\n* the only free-form contact manager with full-text search for Emacs\\n* rapid and precise window, frame and buffer placement on screen\\n* an extensive menu of typed web searches, e.g. dictionary, wikipedia and stackoverflow, plus convenient, fast file and line finding functions\\n* immediate execution of a series of key presses just by typing them out. For example, a M-RETURN press on: {C-x C-b C-s scratch RET C-a} will find the first buffer menu item that contains 'scratch'; then leave point at the beginning of its line. Build interactive tutorials with this.\\n* The Magic of Implicit Buttons and the Action Key\\n\\nFor near instant gratification, try Hyperbole's 'implicit button' capabilities (hyper-buttons that Hyperbole gives you for free by recognizing all types of references embedded within text such as pathnames or error message lines). Below are more complex examples to show the power; simpler ones can be found within the Hyperbole DEMO file.\\n\\nImplicit buttons are activated by pressing the Action Key, M\\\\*-RETURN\\\\*. Once Hyperbole is loaded in your Emacs, pressing *M-RETURN* on any of these examples \\\\*in virtually any buffer\\\\* will display the associated referent in a chosen window or frame, handling all variable substitution and full path resolution:\\n\\n \\\"find-func.el\\\" Find this file whether gzipped or not\\n in the Emacs Lisp load-path\\n \\n \\\"${hyperb:dir}/HY-NEWS\\\" Resolve variable, show Hyperbole news\\n \\n \\\"${PATH}/umask\\\" Display a script somewhere in multi-dir PATH\\n \\n \\\"${hyperb:dir}/DEMO#Hyperbole Menus\\\" Org mode outline, Markdown, and HTML # refs\\n \\n \\\"(hyperbole)Menus\\\" Texinfo and Info node links\\n \\n \\\"c:/Users\\\", \\\"c:\\\\Users\\\", \\\"/C/Users\\\", \\\"/c/Users\\\", and \\\"/mnt/c/Users\\\"\\n On Windows and Windows Subsystem for Linux,\\n Hyperbole recognizes all of these as the\\n same path and can translate between Windows\\n and POSIX path formats in both directions\\n \\n Git Links:\\n git#branches List branches in current repo/project\\n git#commits List and browse commits for current project\\n git#tags List tags in current project\\n \\n git#/hyperbole From any buffer, dired on the top\\n directory of the local hyperbole\\n project\\n \\n git#/hyperbole/55a1f0 or From any buffer, display hyperbole\\n git#hyperbole/55a1f0 local git commit diff\\n \\n \\n Github Links:\\n gh@rswgnu Display user's home page \\u0026 projects\\n \\n github#rswgnu/hyperbole Display user's project\\n gh#rswgnu/helm/global_mouse Display user project's branch\\n gh#rswgnu/hyperbole/55a1f0 Display user project's commit diff\\n \\n Gitlab Links:\\n gitlab@seriyalexandrov Display user's home page\\n gl#gitlab-org/gitlab-ce/activity Summarize user's project activity\\n gl#gitlab-org/gitlab-ce/analytics Display user project's cycle_analytics\\n gl#gitlab-org/gitlab-ce/boards Display user project's kanban-type issue boards\\n \\n Once you set the default user and project variables, you can leave them off any reference links:\\n \\n (setq hibtypes-gitlab-default-user \\\"gitlab-org\\\")\\n (setq hibtypes-gitlab-default-project \\\"gitlab-ce\\\")\\n \\n gl#issues or gl#list Display default project's issue list\\n gl#labels Display default project's issue categories\\n gl#members Display default project's staff list\\n gl#contributors Show contributor push frequency charts\\n gl#merge_requests or gl#pulls Display default project's pull requests\\n gl#milestones Display default project's milestones status\\n gl#pages Display default project's web pages\\n gl#snippets Project snippets, diffs and text with discussion\\n gl#groups List all available groups of projects\\n gl#projects List all available projects\\n \\n gl#milestone=38 Show a specific project milestone\\n gl#snippet/1689487 Show a specific project snippet\\n \\n Even useful social media links:\\n tw#travel or twitter#travel Display twitter hashtag matches\\n fb#technology Display facebook hashtag matches\\n \\n Hyperbole uses simple prefix characters with paths to make them executable:\\n \\\"!/bin/date\\\" Execute as a non-windowed program within a shell\\n \\\"\\u0026/opt/X11/bin/xeyes\\\" Execute as a windowed program;\\n \\\"-find-func.el\\\" Load/execute this Emacs Lisp library\\n \\n File \\\"/usr/lib/python3.7/ast.py\\\", line 37, in parse\\n Jump to error/stack trace source\\n \\n \\\"/ftp:anonymous@ftp.gnu.org:\\\" Tramp remote paths\\n\\n# Try It - Installs or Uninstalls in a Minute\\n\\nHyperbole lets you concentrate more on your work. Then as you grow with it across time, it helps speed your work across weeks and months. It installs in about a minute and can be uninstalled even faster if ever need be. Give it a try.\\n\\nHyperbole can boost your day-to-day productivity with Emacs and your ability to manage information stored across many different machines on the internet.\\n\\nHyperbole can be installed like any other package with the Emacs package manager:\\n\\n {M-x list-packages RET C-s hyperbole RET i x y}\\n\\nThen to invoke its menu:\\n\\n {C-h h} or {M-x hyperbole RET}\\n\\nThe best way to get a feel for many of its capabilities is to invoke the interactive DEMO and explore sections of interest:\\n\\n {C-h h d d}\\n\\n\\u0026#x200B;\\n\\nEnjoy,\\n\\nThe Hyperbole Team\", \"author_fullname\": \"t2_zxjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GNU Hyperbole 7.0.3 is released and ready for action\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bua5ex\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 88, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 88, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559271243.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559132304.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EIntroduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EGNU Hyperbole 7.0.3 is released and ready for action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole is an amazing hypertextual information management system that installs quickly and easily as an Emacs package. It is part of GNU Elpa, the Emacs Lisp Package Archive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole interlinks all your working information within Emacs for fast access and editing, not just within special modes. An hour invested exploring Hyperbole\\u0026#39;s built-in interactive DEMO file will save you hundreds of hours in your future work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E7.0.3 is a significant release with a number of interesting improvements. What\\u0026#39;s new in this release is described here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/HY-NEWS.html\\\"\\u003Ewww.gnu.org/s/hyperbole/HY-NEWS\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole is described here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole\\\"\\u003Ewww.gnu.org/s/hyperbole\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor use cases, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/HY-WHY.html\\\"\\u003Ewww.gnu.org/s/hyperbole/HY-WHY.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor what users think about Hyperbole, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes\\\"\\u003Ehttps://www.gnu.org/s/hyperbole/hyperbole.html#user-quotes\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can supplement and extend Org-mode\\u0026#39;s capabilities. It adds many features not found elsewhere in Emacs, including Org mode, see:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.emacswiki.org/emacs/Hyperbole\\\"\\u003Ewww.emacswiki.org/emacs/Hyperbole\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole includes its own easy-to-use hypertextual buttons and links that can be created without the need for any markup language.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole has an interactive demo to introduce you to its features as well as a detailed reference manual, as explained here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc\\\"\\u003Ehttps://www.gnu.org/s/hyperbole/hyperbole.html#invocation-and-doc\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuick Reasons to Try Hyperbole\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EIt contains:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Ethe most flexible and easy-to-use hyperbuttons available, including implicit buttons automatically recognized by context, e.g. stack trace source line references.\\u003C/li\\u003E\\n\\u003Cli\\u003Ethe only Emacs outliner with full legal item numbering, e.g. \\u003Ca href=\\\"https://1.4.2.6\\\"\\u003E1.4.2.6\\u003C/a\\u003E, and automatic permanent hyperlink anchors for every item\\u003C/li\\u003E\\n\\u003Cli\\u003Ethe only free-form contact manager with full-text search for Emacs\\u003C/li\\u003E\\n\\u003Cli\\u003Erapid and precise window, frame and buffer placement on screen\\u003C/li\\u003E\\n\\u003Cli\\u003Ean extensive menu of typed web searches, e.g. dictionary, wikipedia and stackoverflow, plus convenient, fast file and line finding functions\\u003C/li\\u003E\\n\\u003Cli\\u003Eimmediate execution of a series of key presses just by typing them out. For example, a M-RETURN press on: {C-x C-b C-s scratch RET C-a} will find the first buffer menu item that contains \\u0026#39;scratch\\u0026#39;; then leave point at the beginning of its line. Build interactive tutorials with this.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe Magic of Implicit Buttons and the Action Key\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EFor near instant gratification, try Hyperbole\\u0026#39;s \\u0026#39;implicit button\\u0026#39; capabilities (hyper-buttons that Hyperbole gives you for free by recognizing all types of references embedded within text such as pathnames or error message lines). Below are more complex examples to show the power; simpler ones can be found within the Hyperbole DEMO file.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EImplicit buttons are activated by pressing the Action Key, M*-RETURN*. Once Hyperbole is loaded in your Emacs, pressing \\u003Cem\\u003EM-RETURN\\u003C/em\\u003E on any of these examples *in virtually any buffer* will display the associated referent in a chosen window or frame, handling all variable substitution and full path resolution:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E \\u0026quot;find-func.el\\u0026quot; Find this file whether gzipped or not\\n in the Emacs Lisp load-path\\n\\n \\u0026quot;${hyperb:dir}/HY-NEWS\\u0026quot; Resolve variable, show Hyperbole news\\n\\n \\u0026quot;${PATH}/umask\\u0026quot; Display a script somewhere in multi-dir PATH\\n\\n \\u0026quot;${hyperb:dir}/DEMO#Hyperbole Menus\\u0026quot; Org mode outline, Markdown, and HTML # refs\\n\\n \\u0026quot;(hyperbole)Menus\\u0026quot; Texinfo and Info node links\\n\\n \\u0026quot;c:/Users\\u0026quot;, \\u0026quot;c:\\\\Users\\u0026quot;, \\u0026quot;/C/Users\\u0026quot;, \\u0026quot;/c/Users\\u0026quot;, and \\u0026quot;/mnt/c/Users\\u0026quot;\\n On Windows and Windows Subsystem for Linux,\\n Hyperbole recognizes all of these as the\\n same path and can translate between Windows\\n and POSIX path formats in both directions\\n\\nGit Links:\\n git#branches List branches in current repo/project\\n git#commits List and browse commits for current project\\n git#tags List tags in current project\\n\\n git#/hyperbole From any buffer, dired on the top\\n directory of the local hyperbole\\n project\\n\\n git#/hyperbole/55a1f0 or From any buffer, display hyperbole\\n git#hyperbole/55a1f0 local git commit diff\\n\\n\\nGithub Links:\\n gh@rswgnu Display user\\u0026#39;s home page \\u0026amp; projects\\n\\n github#rswgnu/hyperbole Display user\\u0026#39;s project\\n gh#rswgnu/helm/global_mouse Display user project\\u0026#39;s branch\\n gh#rswgnu/hyperbole/55a1f0 Display user project\\u0026#39;s commit diff\\n\\nGitlab Links:\\n gitlab@seriyalexandrov Display user\\u0026#39;s home page\\n gl#gitlab-org/gitlab-ce/activity Summarize user\\u0026#39;s project activity\\n gl#gitlab-org/gitlab-ce/analytics Display user project\\u0026#39;s cycle_analytics\\n gl#gitlab-org/gitlab-ce/boards Display user project\\u0026#39;s kanban-type issue boards\\n\\nOnce you set the default user and project variables, you can leave them off any reference links:\\n\\n (setq hibtypes-gitlab-default-user \\u0026quot;gitlab-org\\u0026quot;)\\n (setq hibtypes-gitlab-default-project \\u0026quot;gitlab-ce\\u0026quot;)\\n\\n gl#issues or gl#list Display default project\\u0026#39;s issue list\\n gl#labels Display default project\\u0026#39;s issue categories\\n gl#members Display default project\\u0026#39;s staff list\\n gl#contributors Show contributor push frequency charts\\n gl#merge_requests or gl#pulls Display default project\\u0026#39;s pull requests\\n gl#milestones Display default project\\u0026#39;s milestones status\\n gl#pages Display default project\\u0026#39;s web pages\\n gl#snippets Project snippets, diffs and text with discussion\\n gl#groups List all available groups of projects\\n gl#projects List all available projects\\n\\n gl#milestone=38 Show a specific project milestone\\n gl#snippet/1689487 Show a specific project snippet\\n\\nEven useful social media links:\\n tw#travel or twitter#travel Display twitter hashtag matches\\n fb#technology Display facebook hashtag matches\\n\\nHyperbole uses simple prefix characters with paths to make them executable:\\n \\u0026quot;!/bin/date\\u0026quot; Execute as a non-windowed program within a shell\\n \\u0026quot;\\u0026amp;/opt/X11/bin/xeyes\\u0026quot; Execute as a windowed program;\\n \\u0026quot;-find-func.el\\u0026quot; Load/execute this Emacs Lisp library\\n\\n File \\u0026quot;/usr/lib/python3.7/ast.py\\u0026quot;, line 37, in parse\\n Jump to error/stack trace source\\n\\n \\u0026quot;/ftp:anonymous@ftp.gnu.org:\\u0026quot; Tramp remote paths\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Ch1\\u003ETry It - Installs or Uninstalls in a Minute\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EHyperbole lets you concentrate more on your work. Then as you grow with it across time, it helps speed your work across weeks and months. It installs in about a minute and can be uninstalled even faster if ever need be. Give it a try.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can boost your day-to-day productivity with Emacs and your ability to manage information stored across many different machines on the internet.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHyperbole can be installed like any other package with the Emacs package manager:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {M-x list-packages RET C-s hyperbole RET i x y}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThen to invoke its menu:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {C-h h} or {M-x hyperbole RET}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe best way to get a feel for many of its capabilities is to invoke the interactive DEMO and explore sections of interest:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E {C-h h d d}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEnjoy,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Hyperbole Team\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bua5ex\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rswgnu\", \"num_crossposts\": 0, \"num_comments\": 35, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bua5ex/gnu_hyperbole_703_is_released_and_ready_for_action/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559103504.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Here is the second post of my Year of Emacs series. This is the version of my init.el that I am currently using. Two posts in one week because a dotfile doesn't really explore a single mode, package, workflow so I don't feel like it counts.\\n\\nThis weekend, I'll be writing about how I used org-mode to write my Master's Thesis.\\n\\n[https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-\\\\~-may-2019/](https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-~-may-2019/)\", \"author_fullname\": \"t2_jqpn4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Year of Emacs: Starting init.el\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu99h0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 18, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 18, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559126798.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is the second post of my Year of Emacs series. This is the version of my init.el that I am currently using. Two posts in one week because a dotfile doesn\\u0026#39;t really explore a single mode, package, workflow so I don\\u0026#39;t feel like it counts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis weekend, I\\u0026#39;ll be writing about how I used org-mode to write my Master\\u0026#39;s Thesis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://jonathanabennett.github.io/blog/2019/05/28/emacs.org-%7E-may-2019/\\\"\\u003Ehttps://jonathanabennett.github.io/blog/2019/05/28/emacs.org-~-may-2019/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu99h0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doulos05\", \"num_crossposts\": 0, \"num_comments\": 26, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu99h0/year_of_emacs_starting_initel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu99h0/year_of_emacs_starting_initel/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559097998.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm slowly working on eliminating my need for a shell by moving more and more functionality into Emacs. \\n\\nI am really interested in getting my feet wet with Emacs modules, but I don't really have any ideas for stuff to wrap/write?\\n\\nDoes anyone have any lower-level functionality that they've really wished they could have in Emacs but haven't been able to get yet?\\n\\nI'm also experimenting with dbus and Emacs, so if there are any ideas with that, I'd like to play around with that as well.\\n\\nEDIT: just a quick clarification. It seems that some people misunderstood what I mean by module. I was specifically referring to Emacs' [dynamic modules](https://www.gnu.org/software/emacs/manual/html_node/elisp/Dynamic-Modules.html), not mode or library.\\n\\nI'm definitely interested in doing anything I can to make the Emacs community better off, but I was specifically asking for ideas relating to dynamic modules or using Emacs' dbus wrapper.\", \"author_fullname\": \"t2_clfs9gn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Any interesting ideas for Emacs modules?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu83ku\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559165757.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559119874.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m slowly working on eliminating my need for a shell by moving more and more functionality into Emacs. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am really interested in getting my feet wet with Emacs modules, but I don\\u0026#39;t really have any ideas for stuff to wrap/write?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have any lower-level functionality that they\\u0026#39;ve really wished they could have in Emacs but haven\\u0026#39;t been able to get yet?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m also experimenting with dbus and Emacs, so if there are any ideas with that, I\\u0026#39;d like to play around with that as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: just a quick clarification. It seems that some people misunderstood what I mean by module. I was specifically referring to Emacs\\u0026#39; \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/elisp/Dynamic-Modules.html\\\"\\u003Edynamic modules\\u003C/a\\u003E, not mode or library.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m definitely interested in doing anything I can to make the Emacs community better off, but I was specifically asking for ideas relating to dynamic modules or using Emacs\\u0026#39; dbus wrapper.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu83ku\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"egregius313\", \"num_crossposts\": 0, \"num_comments\": 27, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu83ku/any_interesting_ideas_for_emacs_modules/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu83ku/any_interesting_ideas_for_emacs_modules/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559091074.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My idea is, displaying the scheduled agenda item at current time in the header modeline, is there any way to get it as a string?\\n\\nFor example I have this:\\n\\n * TODO Do something here\\n \\u003C2019-05-28 16:30-17:00\\u003E\\n\\nAnd now is 16:45, I want to get the string `TODO Do something here`.\", \"author_fullname\": \"t2_f7e7n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there anyway to get scheduled agenda item at current time?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu7hs4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559116512.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy idea is, displaying the scheduled agenda item at current time in the header modeline, is there any way to get it as a string?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example I have this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Do something here\\n \\u0026lt;2019-05-28 16:30-17:00\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnd now is 16:45, I want to get the string \\u003Ccode\\u003ETODO Do something here\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu7hs4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"huydotnet\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu7hs4/is_there_anyway_to_get_scheduled_agenda_item_at/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu7hs4/is_there_anyway_to_get_scheduled_agenda_item_at/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559087712.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm using LISPBOX for Windows: [https://common-lisp.net/project/lispbox/](https://common-lisp.net/project/lispbox/)\\n\\nEverything works great, however when I create a new file (for creating lisps the editor is not indenting my parenthesis.\\n\\nIt indents just fine in the REPL, but not in the new file. The new file does parenthesis matching just fine. It also will compile to the REPL just fine.\\n\\nIt just won't indent!!!\\n\\nHow can I fix this?\", \"author_fullname\": \"t2_3nv0r2zn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SLIME not indenting...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu3uqy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559098225.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using LISPBOX for Windows: \\u003Ca href=\\\"https://common-lisp.net/project/lispbox/\\\"\\u003Ehttps://common-lisp.net/project/lispbox/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEverything works great, however when I create a new file (for creating lisps the editor is not indenting my parenthesis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt indents just fine in the REPL, but not in the new file. The new file does parenthesis matching just fine. It also will compile to the REPL just fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt just won\\u0026#39;t indent!!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I fix this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu3uqy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gambledrum1\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bu3uqy/slime_not_indenting/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bu3uqy/slime_not_indenting/\", \"subreddit_subscribers\": 29865, \"created_utc\": 1559069425.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bu3uqy\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["414106"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 07 Jun 2019 13:32:41 GMT"], "x-ratelimit-remaining": ["563.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21951-LGA"], "x-ratelimit-used": ["37"], "Via": ["1.1 varnish"], "X-Timer": ["S1559914360.123028,VS0,VE1140"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["440"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=99"}, "recorded_at": "2019-06-07T13:32:41"}], "recorded_with": "betamax/0.8.1"} \ No newline at end of file diff --git a/tests/cassettes/subscribe.json b/tests/cassettes/subscribe.json new file mode 100644 index 0000000..51e6f64 --- /dev/null +++ b/tests/cassettes/subscribe.json @@ -0,0 +1 @@ +{"http_interactions": [{"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/test/about/?raw_json=1"}, "response": {"body": {"string": "{\"message\": \"Unauthorized\", \"error\": 401}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["41"], "x-xss-protection": ["1; mode=block"], "X-Cache": ["MISS"], "x-content-type-options": ["nosniff"], "access-control-expose-headers": ["X-Moose"], "Accept-Ranges": ["bytes"], "X-Timer": ["S1563495406.885529,VS0,VE28"], "X-Served-By": ["cache-lga21948-LGA"], "X-Moose": ["majestic"], "access-control-allow-origin": ["*"], "Connection": ["keep-alive"], "Via": ["1.1 varnish"], "X-Cache-Hits": ["0"], "x-ua-compatible": ["IE=edge"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "cache-control": ["max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:16:45 GMT"], "x-frame-options": ["SAMEORIGIN"], "Server": ["snooserv"], "Content-Type": ["application/json; charset=UTF-8"], "www-authenticate": ["Bearer realm=\"reddit\", error=\"invalid_token\""]}, "status": {"message": "Unauthorized", "code": 401}, "url": "https://oauth.reddit.com/r/test/about/?raw_json=1"}, "recorded_at": "2019-07-19T00:16:45"}, {"request": {"body": {"string": "grant_type=refresh_token&refresh_token=**********", "encoding": "utf-8"}, "headers": {"Content-Length": ["79"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["**********"]}, "method": "POST", "uri": "https://www.reddit.com/api/v1/access_token"}, "response": {"body": {"string": "{\"access_token\": \"**********\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"edit history identity mysubreddits privatemessages read report save submit subscribe vote\"}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["206"], "x-xss-protection": ["1; mode=block"], "X-Cache": ["MISS"], "x-content-type-options": ["nosniff"], "Accept-Ranges": ["bytes"], "X-Timer": ["S1563495407.007878,VS0,VE42"], "X-Served-By": ["cache-lga21922-LGA"], "X-Moose": ["majestic"], "Connection": ["keep-alive"], "Via": ["1.1 varnish"], "X-Cache-Hits": ["0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "cache-control": ["max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:16:47 GMT"], "x-frame-options": ["SAMEORIGIN"], "Server": ["snooserv"], "Content-Type": ["application/json; charset=UTF-8"]}, "status": {"message": "OK", "code": 200}, "url": "https://www.reddit.com/api/v1/access_token"}, "recorded_at": "2019-07-19T00:16:47"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/test/about/?raw_json=1"}, "response": {"body": {"string": "{\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": true, \"display_name\": \"test\", \"header_img\": null, \"title\": \"Testing\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": 192, \"icon_img\": \"\", \"display_name_prefixed\": \"r/test\", \"accounts_active\": 192, \"public_traffic\": false, \"subscribers\": 5690, \"user_flair_richtext\": [], \"videostream_links_count\": 1, \"name\": \"t5_2qh23\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is a place to test things.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1201266688.0, \"wls\": 6, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": false, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": null, \"allow_videos\": true, \"notification_level\": null, \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": true, \"user_flair_enabled_in_sr\": true, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": true, \"id\": \"2qh23\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"This is a place to test things.\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": \"all_ads\", \"url\": \"/r/test/\", \"created_utc\": 1201237888.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["2513"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:16:47 GMT"], "x-ratelimit-remaining": ["581.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21948-LGA"], "x-ratelimit-used": ["19"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495407.067150,VS0,VE115"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["193"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/test/about/?raw_json=1"}, "recorded_at": "2019-07-19T00:16:47"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/test/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cehakq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu628tg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dota2_responses_bot\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563490552.0, \"send_replies\": true, \"parent_id\": \"t1_eu627rc\", \"score\": 1, \"author_fullname\": \"t2_3dj46s8s\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"[Oh no](https://gamepedia.cursecdn.com/dota2_gamepedia/9/92/Wraith_deny_06.mp3) (sound warning: Wraith King)\\n\\n---\\nBleep bloop, I am a robot.\\n\\n[*^(Source)*](https://github.com/MePsyDuck/DotaResponsesRedditBot) *^(|)* \\n[*^(Suggestions/Issues)*](https://github.com/MePsyDuck/DotaResponsesRedditBot/issues) *^(|)* \\n[*^(Contact)*](https://www.reddit.com/user/MePsyDuck/) *^(|)* \\n[*^(Author)*](https://www.reddit.com/user/Jonarz/)\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu628tg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://gamepedia.cursecdn.com/dota2_gamepedia/9/92/Wraith_deny_06.mp3\\\"\\u003EOh no\\u003C/a\\u003E (sound warning: Wraith King)\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBleep bloop, I am a robot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/MePsyDuck/DotaResponsesRedditBot\\\"\\u003E\\u003Cem\\u003E\\u003Csup\\u003ESource\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/a\\u003E \\u003Cem\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/em\\u003E \\n\\u003Ca href=\\\"https://github.com/MePsyDuck/DotaResponsesRedditBot/issues\\\"\\u003E\\u003Cem\\u003E\\u003Csup\\u003ESuggestions/Issues\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/a\\u003E \\u003Cem\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/em\\u003E \\n\\u003Ca href=\\\"https://www.reddit.com/user/MePsyDuck/\\\"\\u003E\\u003Cem\\u003E\\u003Csup\\u003EContact\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/a\\u003E \\u003Cem\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/em\\u003E \\n\\u003Ca href=\\\"https://www.reddit.com/user/Jonarz/\\\"\\u003E\\u003Cem\\u003E\\u003Csup\\u003EAuthor\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cehakq/test/eu628tg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"report_reasons\": null, \"link_author\": \"ILikeMultipleThings\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"created\": 1563519352.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cehakq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu627rc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RonenSalathe\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563490534.0, \"send_replies\": true, \"parent_id\": \"t1_eu614cy\", \"score\": 1, \"author_fullname\": \"t2_16zx30gq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Oh no\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu627rc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh no\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cehakq/test/eu627rc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"report_reasons\": null, \"link_author\": \"ILikeMultipleThings\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"created\": 1563519334.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cehakq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu614cy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nwordcountbot\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563489869.0, \"send_replies\": true, \"parent_id\": \"t1_eu613f2\", \"score\": 1, \"author_fullname\": \"t2_1m0v8ctx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Thank you for the request, comrade.\\n\\nI have looked through spez's posting history and found 1 N-words, of which 1 were hard-Rs.\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu614cy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for the request, comrade.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have looked through spez\\u0026#39;s posting history and found 1 N-words, of which 1 were hard-Rs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cehakq/test/eu614cy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"report_reasons\": null, \"link_author\": \"ILikeMultipleThings\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"created\": 1563518669.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cehakq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu613f2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RonenSalathe\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563489853.0, \"send_replies\": true, \"parent_id\": \"t3_cehakq\", \"score\": 1, \"author_fullname\": \"t2_16zx30gq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"u/nwordcountbot u/spez\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu613f2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/nwordcountbot\\\"\\u003Eu/nwordcountbot\\u003C/a\\u003E \\u003Ca href=\\\"/u/spez\\\"\\u003Eu/spez\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cehakq/test/eu613f2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"report_reasons\": null, \"link_author\": \"ILikeMultipleThings\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"created\": 1563518653.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cexfgh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5yojy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jim-777\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563488382.0, \"send_replies\": true, \"parent_id\": \"t3_cexfgh\", \"score\": 1, \"author_fullname\": \"t2_ovt78\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Not much\", \"link_title\": \"Sup\", \"author_flair_css_class\": null, \"name\": \"t1_eu5yojy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot much\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cexfgh/sup/eu5yojy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cexfgh/sup/\", \"report_reasons\": null, \"link_author\": \"jasoncosta1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cexfgh/sup/\", \"created\": 1563517182.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5wnwd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563487051.0, \"send_replies\": true, \"parent_id\": \"t1_eu5wmzm\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Hi /u/cidermonkeycoozey, MSFT's quarterly earnings per share as of 2019-03-31 was/were **$1.15**\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5wnwd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Ca href=\\\"/u/cidermonkeycoozey\\\"\\u003E/u/cidermonkeycoozey\\u003C/a\\u003E, MSFT\\u0026#39;s quarterly earnings per share as of 2019-03-31 was/were \\u003Cstrong\\u003E$1.15\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5wnwd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563515851.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5wmzm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563487035.0, \"send_replies\": true, \"parent_id\": \"t1_eu5wdik\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"/u/fancyfundybot MSFT quarterly eps\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5wmzm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E MSFT quarterly eps\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5wmzm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563515835.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5wdik\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563486861.0, \"send_replies\": true, \"parent_id\": \"t1_eu5wcsf\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Hi /u/cidermonkeycoozey, AAPL's annual revenue as of 2018-09-29 was/were **$265.6 billion**\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5wdik\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Ca href=\\\"/u/cidermonkeycoozey\\\"\\u003E/u/cidermonkeycoozey\\u003C/a\\u003E, AAPL\\u0026#39;s annual revenue as of 2018-09-29 was/were \\u003Cstrong\\u003E$265.6 billion\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5wdik/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563515661.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5wcsf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563486848.0, \"send_replies\": true, \"parent_id\": \"t3_ceyjwg\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"/u/fancyfundybot AAPL annual revenue\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5wcsf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E AAPL annual revenue\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5wcsf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563515648.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5wam4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563486808.0, \"send_replies\": true, \"parent_id\": \"t1_eu5w9kn\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Hi /u/cidermonkeycoozey, BABA's annual earnings per share as of 2019-03-31 was/were **$33.95**\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5wam4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Ca href=\\\"/u/cidermonkeycoozey\\\"\\u003E/u/cidermonkeycoozey\\u003C/a\\u003E, BABA\\u0026#39;s annual earnings per share as of 2019-03-31 was/were \\u003Cstrong\\u003E$33.95\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5wam4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563515608.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5w9kn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563486788.0, \"send_replies\": true, \"parent_id\": \"t3_ceyjwg\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"/u/fancyfundybot baba annual eps\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5w9kn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E baba annual eps\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5w9kn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563515588.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5w4tc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563486701.0, \"send_replies\": true, \"parent_id\": \"t3_ceyjwg\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"/u/fancyfundybot BABA quarterly revenue\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5w4tc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E BABA quarterly revenue\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5w4tc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563515501.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5w26t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563486653.0, \"send_replies\": true, \"parent_id\": \"t1_eu5w1al\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Hi /u/cidermonkeycoozey, TWTR's annual price to earnings ratio as of 2018-12-31 was/were **18.147**\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5w26t\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Ca href=\\\"/u/cidermonkeycoozey\\\"\\u003E/u/cidermonkeycoozey\\u003C/a\\u003E, TWTR\\u0026#39;s annual price to earnings ratio as of 2018-12-31 was/were \\u003Cstrong\\u003E18.147\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5w26t/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563515453.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5w1al\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563486637.0, \"send_replies\": true, \"parent_id\": \"t1_eu5vw7e\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"/u/fancyfundybot twtr annual peratio\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5w1al\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E twtr annual peratio\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5w1al/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563515437.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5vw7e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563486544.0, \"send_replies\": true, \"parent_id\": \"t1_eu5vseg\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"/u/fancyfundybot twtr annual peratio\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5vw7e\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E twtr annual peratio\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5vw7e/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563515344.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5vseg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563486475.0, \"send_replies\": true, \"parent_id\": \"t1_eu5vro1\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Hi /u/cidermonkeycoozey, TWTR's annual peratio as of 2018-12-31 was/were **$18**\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5vseg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Ca href=\\\"/u/cidermonkeycoozey\\\"\\u003E/u/cidermonkeycoozey\\u003C/a\\u003E, TWTR\\u0026#39;s annual peratio as of 2018-12-31 was/were \\u003Cstrong\\u003E$18\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5vseg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563515275.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5vro1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563486462.0, \"send_replies\": true, \"parent_id\": \"t3_ceyjwg\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"/u/fancyfundybot twtr annual peratio\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5vro1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E twtr annual peratio\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5vro1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563515262.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5um2k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563485716.0, \"send_replies\": true, \"parent_id\": \"t1_eu5ulx5\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Hi /u/cidermonkeycoozey, AAPL's quarterly income as of 2019-03-30 was/were $11.6 billion\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5um2k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Ca href=\\\"/u/cidermonkeycoozey\\\"\\u003E/u/cidermonkeycoozey\\u003C/a\\u003E, AAPL\\u0026#39;s quarterly income as of 2019-03-30 was/were $11.6 billion\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5um2k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563514516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5ulx5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563485713.0, \"send_replies\": true, \"parent_id\": \"t1_eu5udmc\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"/u/fancyfundybot AAPL quarterly income\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5ulx5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E AAPL quarterly income\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5ulx5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563514513.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5udmc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563485565.0, \"send_replies\": true, \"parent_id\": \"t1_eu5ud78\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Hi /u/cidermonkeycoozey, MSFT's annual costs as of 2018-06-30 was/were $38.4 billion\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5udmc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Ca href=\\\"/u/cidermonkeycoozey\\\"\\u003E/u/cidermonkeycoozey\\u003C/a\\u003E, MSFT\\u0026#39;s annual costs as of 2018-06-30 was/were $38.4 billion\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5udmc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563514365.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceyjwg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5ud78\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1563485557.0, \"send_replies\": true, \"parent_id\": \"t3_ceyjwg\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"/u/fancyfundybot msft annual costs\", \"link_title\": \"sdfkjhskdh\", \"author_flair_css_class\": null, \"name\": \"t1_eu5ud78\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E msft annual costs\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/eu5ud78/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"report_reasons\": null, \"link_author\": \"cidermonkeycoozey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"created\": 1563514357.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cewl0o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5u9jc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563485491.0, \"send_replies\": true, \"parent_id\": \"t1_eu5tqsk\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Hi /u/cidermonkeycoozey, AAPL's ttm costs as of 2019-03-30 was/were $160.1 billion\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu5u9jc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Ca href=\\\"/u/cidermonkeycoozey\\\"\\u003E/u/cidermonkeycoozey\\u003C/a\\u003E, AAPL\\u0026#39;s ttm costs as of 2019-03-30 was/were $160.1 billion\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cewl0o/test/eu5u9jc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"created\": 1563514291.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cewl0o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5u9ef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563485489.0, \"send_replies\": true, \"parent_id\": \"t1_eu5rpm1\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Hi /u/cidermonkeycoozey, AAPL's annual revenue as of 2018-09-29 was/were $265.6 billion\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu5u9ef\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Ca href=\\\"/u/cidermonkeycoozey\\\"\\u003E/u/cidermonkeycoozey\\u003C/a\\u003E, AAPL\\u0026#39;s annual revenue as of 2018-09-29 was/were $265.6 billion\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cewl0o/test/eu5u9ef/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"created\": 1563514289.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cewl0o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5tqsk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563485156.0, \"send_replies\": true, \"parent_id\": \"t3_cewl0o\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"/u/fancyfundybot aapl ttm costs\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu5tqsk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E aapl ttm costs\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cewl0o/test/eu5tqsk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"created\": 1563513956.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cewl0o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5rpm1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563483858.0, \"send_replies\": true, \"parent_id\": \"t3_cewl0o\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"/u/fancyfundybot aapl annual revenue\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu5rpm1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E aapl annual revenue\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cewl0o/test/eu5rpm1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"created\": 1563512658.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cewl0o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5qhl0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563483104.0, \"send_replies\": true, \"parent_id\": \"t3_cewl0o\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"/u/fancyfundybot AAPL mry cor\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu5qhl0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E AAPL mry cor\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cewl0o/test/eu5qhl0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"created\": 1563511904.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cewl0o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5q37p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563482862.0, \"send_replies\": true, \"parent_id\": \"t3_cewl0o\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test /u/fancyfundybot AAPL mry cor\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu5q37p\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest \\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E AAPL mry cor\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cewl0o/test/eu5q37p/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"created\": 1563511662.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cexfgh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5lib6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jasoncosta1\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563480084.0, \"send_replies\": true, \"parent_id\": \"t3_cexfgh\", \"score\": 1, \"author_fullname\": \"t2_recfgkl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Sup\", \"link_title\": \"Sup\", \"author_flair_css_class\": null, \"name\": \"t1_eu5lib6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESup\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cexfgh/sup/eu5lib6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cexfgh/sup/\", \"report_reasons\": null, \"link_author\": \"jasoncosta1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cexfgh/sup/\", \"created\": 1563508884.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cewl0o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5ix20\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563478541.0, \"send_replies\": true, \"parent_id\": \"t1_eu5ipwb\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"blah blah /u/fancyfundybot\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu5ix20\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eblah blah \\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cewl0o/test/eu5ix20/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"created\": 1563507341.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cewl0o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5ipwb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563478420.0, \"send_replies\": true, \"parent_id\": \"t3_cewl0o\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu5ipwb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cewl0o/test/eu5ipwb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"created\": 1563507220.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cewl0o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5imgg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563478361.0, \"send_replies\": true, \"parent_id\": \"t3_cewl0o\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test /u/fancyfundybot\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu5imgg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest \\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cewl0o/test/eu5imgg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"created\": 1563507161.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cewl0o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5i20l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563478017.0, \"send_replies\": true, \"parent_id\": \"t3_cewl0o\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu5i20l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cewl0o/test/eu5i20l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"created\": 1563506817.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cewl0o\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5hxan\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cidermonkeycoozey\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563477939.0, \"send_replies\": true, \"parent_id\": \"t3_cewl0o\", \"score\": 1, \"author_fullname\": \"t2_4669o9ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"/u/fancyfundybot AAPL MRY revenue\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu5hxan\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/fancyfundybot\\\"\\u003E/u/fancyfundybot\\u003C/a\\u003E AAPL MRY revenue\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cewl0o/test/eu5hxan/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cewl0o/test/\", \"created\": 1563506739.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cepk7y\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5dq7v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"akabomba\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563475369.0, \"send_replies\": true, \"parent_id\": \"t3_cepk7y\", \"score\": 1, \"author_fullname\": \"t2_4tuq7c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"My first post\", \"link_title\": \"My first post\", \"author_flair_css_class\": null, \"name\": \"t1_eu5dq7v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy first post\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cepk7y/my_first_post/eu5dq7v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cepk7y/my_first_post/\", \"report_reasons\": null, \"link_author\": \"cool_username_91210\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cepk7y/my_first_post/\", \"created\": 1563504169.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceu1g3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu5dkju\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"akabomba\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563475274.0, \"send_replies\": true, \"parent_id\": \"t3_ceu1g3\", \"score\": 1, \"author_fullname\": \"t2_4tuq7c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Test 2: Episode One\", \"link_title\": \"test 2\", \"author_flair_css_class\": null, \"name\": \"t1_eu5dkju\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest 2: Episode One\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceu1g3/test_2/eu5dkju/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceu1g3/test_2/\", \"report_reasons\": null, \"link_author\": \"bretojun\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/4nm3y50303b31.jpg\", \"created\": 1563504074.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cennf8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu566ex\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JuulH\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563470734.0, \"send_replies\": true, \"parent_id\": \"t1_eu4xc7m\", \"score\": 1, \"author_fullname\": \"t2_158p6f\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"About that beer I owed you...\", \"link_title\": \"Blah Blah Blah\", \"author_flair_css_class\": null, \"name\": \"t1_eu566ex\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAbout that beer I owed you...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cennf8/blah_blah_blah/eu566ex/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"report_reasons\": null, \"link_author\": \"Oov_voO\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"created\": 1563499534.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cen2z0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu55v5d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thatguy5827\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563470546.0, \"send_replies\": true, \"parent_id\": \"t1_eu3o2vi\", \"score\": 1, \"author_fullname\": \"t2_n28j0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"!isbot\", \"link_title\": \"you are more german than me\", \"author_flair_css_class\": null, \"name\": \"t1_eu55v5d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E!isbot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cen2z0/you_are_more_german_than_me/eu55v5d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cen2z0/you_are_more_german_than_me/\", \"report_reasons\": null, \"link_author\": \"thatguy5827\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cen2z0/you_are_more_german_than_me/\", \"created\": 1563499346.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceta1t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu55kq6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"B0tRank\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563470372.0, \"send_replies\": false, \"parent_id\": \"t1_eu55kgw\", \"score\": 1, \"author_fullname\": \"t2_1z1g03sv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Thank you, MisterMythicalMinds, for voting on chpmmiest.\\n\\nThis bot wants to find the best and worst bots on Reddit. [You can view results here](https://botrank.pastimes.eu/).\\n\\n***\\n\\n^(Even if I don't reply to your comment, I'm still listening for votes. Check the webpage to see if your vote registered!)\", \"link_title\": \"Test YT Link\", \"author_flair_css_class\": null, \"name\": \"t1_eu55kq6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you, MisterMythicalMinds, for voting on chpmmiest.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis bot wants to find the best and worst bots on Reddit. \\u003Ca href=\\\"https://botrank.pastimes.eu/\\\"\\u003EYou can view results here\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EEven if I don\\u0026#39;t reply to your comment, I\\u0026#39;m still listening for votes. Check the webpage to see if your vote registered!\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceta1t/test_yt_link/eu55kq6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceta1t/test_yt_link/\", \"report_reasons\": null, \"link_author\": \"chpmmiest\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=jYPrH4xANpU\\u0026feature=youtu.be\", \"created\": 1563499172.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceta1t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu55kgw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MisterMythicalMinds\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563470368.0, \"send_replies\": true, \"parent_id\": \"t3_ceta1t\", \"score\": 1, \"author_fullname\": \"t2_12tyu97m\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Good bot\", \"link_title\": \"Test YT Link\", \"author_flair_css_class\": null, \"name\": \"t1_eu55kgw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceta1t/test_yt_link/eu55kgw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceta1t/test_yt_link/\", \"report_reasons\": null, \"link_author\": \"chpmmiest\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=jYPrH4xANpU\\u0026feature=youtu.be\", \"created\": 1563499168.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxscki\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu54hum\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JuulH\", \"num_comments\": 50, \"can_mod_post\": false, \"created_utc\": 1563469718.0, \"send_replies\": true, \"parent_id\": \"t1_eq9pm4f\", \"score\": 2, \"author_fullname\": \"t2_158p6f\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"e p i c g a m e s\", \"link_title\": \"testing bot please ignore\", \"author_flair_css_class\": null, \"name\": \"t1_eu54hum\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ee p i c g a m e s\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/bxscki/testing_bot_please_ignore/eu54hum/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/bxscki/testing_bot_please_ignore/\", \"report_reasons\": null, \"link_author\": \"JuulH\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/bxscki/testing_bot_please_ignore/\", \"created\": 1563498518.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceu237\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4yi7t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"YouDiedBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563466029.0, \"send_replies\": true, \"parent_id\": \"t3_ceu237\", \"score\": 1, \"author_fullname\": \"t2_46l7mrvp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"u/Squeaker_King\", \"link_title\": \"Can you trust FaceApp with your face?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4yi7t\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/Squeaker_King\\\"\\u003Eu/Squeaker_King\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceu237/can_you_trust_faceapp_with_your_face/eu4yi7t/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceu237/can_you_trust_faceapp_with_your_face/\", \"report_reasons\": null, \"link_author\": \"taylortest1\", \"author_flair_text\": null, \"link_url\": \"https://www.bbc.com/news/technology-49018103\", \"created\": 1563494829.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bcdmll\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4y7sl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Squeaker_King\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1563465848.0, \"send_replies\": true, \"parent_id\": \"t3_bcdmll\", \"score\": 1, \"author_fullname\": \"t2_6gev5pc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \" [**u/Squeaker\\\\_King**](https://www.reddit.com/user/Squeaker_King/) test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu4y7sl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/user/Squeaker_King/\\\"\\u003E\\u003Cstrong\\u003Eu/Squeaker_King\\u003C/strong\\u003E\\u003C/a\\u003E test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/bcdmll/test/eu4y7sl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/bcdmll/test/\", \"report_reasons\": null, \"link_author\": \"6_times_9_in_base_13\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/d03140s06ur21.jpg\", \"created\": 1563494648.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cennf8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4xc7m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"akabomba\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563465301.0, \"send_replies\": true, \"parent_id\": \"t3_cennf8\", \"score\": 1, \"author_fullname\": \"t2_4tuq7c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Blah blah blah Mr. Freeman...\", \"link_title\": \"Blah Blah Blah\", \"author_flair_css_class\": null, \"name\": \"t1_eu4xc7m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBlah blah blah Mr. Freeman...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cennf8/blah_blah_blah/eu4xc7m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"report_reasons\": null, \"link_author\": \"Oov_voO\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"created\": 1563494101.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cennf8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4ttvl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jjones42\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563463046.0, \"send_replies\": true, \"parent_id\": \"t1_eu4t2xu\", \"score\": 1, \"author_fullname\": \"t2_14b6yq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Blah\", \"link_title\": \"Blah Blah Blah\", \"author_flair_css_class\": null, \"name\": \"t1_eu4ttvl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBlah\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cennf8/blah_blah_blah/eu4ttvl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"report_reasons\": null, \"link_author\": \"Oov_voO\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"created\": 1563491846.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cennf8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4ttuc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jjones42\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563463045.0, \"send_replies\": true, \"parent_id\": \"t3_cennf8\", \"score\": 2, \"author_fullname\": \"t2_14b6yq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Blah\", \"link_title\": \"Blah Blah Blah\", \"author_flair_css_class\": null, \"name\": \"t1_eu4ttuc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBlah\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cennf8/blah_blah_blah/eu4ttuc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"report_reasons\": null, \"link_author\": \"Oov_voO\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"created\": 1563491845.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cennf8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4tcwu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Killed_Mufasa\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563462734.0, \"send_replies\": true, \"parent_id\": \"t3_cennf8\", \"score\": 1, \"author_fullname\": \"t2_16ff3d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Preach brother!\", \"link_title\": \"Blah Blah Blah\", \"author_flair_css_class\": null, \"name\": \"t1_eu4tcwu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPreach brother!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cennf8/blah_blah_blah/eu4tcwu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"report_reasons\": null, \"link_author\": \"Oov_voO\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"created\": 1563491534.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cennf8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4t2xu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jjones42\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563462552.0, \"send_replies\": true, \"parent_id\": \"t3_cennf8\", \"score\": 1, \"author_fullname\": \"t2_14b6yq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Blah\", \"link_title\": \"Blah Blah Blah\", \"author_flair_css_class\": null, \"name\": \"t1_eu4t2xu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBlah\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cennf8/blah_blah_blah/eu4t2xu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"report_reasons\": null, \"link_author\": \"Oov_voO\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"created\": 1563491352.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cerhad\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4kpzl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sad_and_stupid\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563456707.0, \"send_replies\": true, \"parent_id\": \"t3_cerhad\", \"score\": 1, \"author_fullname\": \"t2_30zf7r96\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"I love [you!](/u/me)\", \"link_title\": \"I love tests\", \"author_flair_css_class\": null, \"name\": \"t1_eu4kpzl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love \\u003Ca href=\\\"/u/me\\\"\\u003Eyou!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cerhad/i_love_tests/eu4kpzl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cerhad/i_love_tests/\", \"report_reasons\": null, \"link_author\": \"enei200\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cerhad/i_love_tests/\", \"created\": 1563485507.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_blnk0k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4ivi9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"FrankFackler\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1563455232.0, \"send_replies\": true, \"parent_id\": \"t3_blnk0k\", \"score\": 1, \"author_fullname\": \"t2_3e5sxe32\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \" \\n\\n**Visit Oracle 1Z0-628 Mock Exam With Valid 1Z0-628 Exam Questions : https://www.passitcertify.com/oracle/1z0-628-questions.html**\\n\\nPassitcertify is the ultimate choice that fulfills all yours exam preparation needs. Passitcertify 1Z0-628 Oracle Field Service Cloud Service 2017 Implementation Essentials preparation material help you greatly to pass the Oracle 1Z0-628 certification exam questions ensure your success at your first attempt. Passitcertify provides IT related certifications material for 1Z0-628 Oracle Cloud exams. We offer 100% money back guarantee.\", \"link_title\": \"Reduce Your Chances of Failure With these Amazing 1z0-628 2019 Braindumps\", \"author_flair_css_class\": null, \"name\": \"t1_eu4ivi9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EVisit Oracle 1Z0-628 Mock Exam With Valid 1Z0-628 Exam Questions : \\u003Ca href=\\\"https://www.passitcertify.com/oracle/1z0-628-questions.html\\\"\\u003Ehttps://www.passitcertify.com/oracle/1z0-628-questions.html\\u003C/a\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPassitcertify is the ultimate choice that fulfills all yours exam preparation needs. Passitcertify 1Z0-628 Oracle Field Service Cloud Service 2017 Implementation Essentials preparation material help you greatly to pass the Oracle 1Z0-628 certification exam questions ensure your success at your first attempt. Passitcertify provides IT related certifications material for 1Z0-628 Oracle Cloud exams. We offer 100% money back guarantee.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/blnk0k/reduce_your_chances_of_failure_with_these_amazing/eu4ivi9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/blnk0k/reduce_your_chances_of_failure_with_these_amazing/\", \"report_reasons\": null, \"link_author\": \"miacharlotte730\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/blnk0k/reduce_your_chances_of_failure_with_these_amazing/\", \"created\": 1563484032.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cennf8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4f67l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grey_carbon\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563451905.0, \"send_replies\": true, \"parent_id\": \"t1_eu4cv11\", \"score\": 1, \"author_fullname\": \"t2_16pgsc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Black black black\", \"link_title\": \"Blah Blah Blah\", \"author_flair_css_class\": null, \"name\": \"t1_eu4f67l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBlack black black\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cennf8/blah_blah_blah/eu4f67l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"report_reasons\": null, \"link_author\": \"Oov_voO\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"created\": 1563480705.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cennf8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4cv11\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"atom_overdose\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563449482.0, \"send_replies\": true, \"parent_id\": \"t1_eu43enc\", \"score\": 1, \"author_fullname\": \"t2_16u9vh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah. ALL WE EVER HEAR FROM YOU IS BLAH BLAH BLAH ALL WE EVER DO IS GO JA JA JA AND WE DON'T EVEN CARE ABOUT WHAT THEY SAY CAUSE IT'S JA JA JA JA BLAH BLAH BLAH BLAH\\nBlah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah\", \"link_title\": \"Blah Blah Blah\", \"author_flair_css_class\": null, \"name\": \"t1_eu4cv11\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBlah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah. ALL WE EVER HEAR FROM YOU IS BLAH BLAH BLAH ALL WE EVER DO IS GO JA JA JA AND WE DON\\u0026#39;T EVEN CARE ABOUT WHAT THEY SAY CAUSE IT\\u0026#39;S JA JA JA JA BLAH BLAH BLAH BLAH\\nBlah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cennf8/blah_blah_blah/eu4cv11/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"report_reasons\": null, \"link_author\": \"Oov_voO\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"created\": 1563478282.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceit02\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4c71i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nighttied113\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563448717.0, \"send_replies\": true, \"parent_id\": \"t3_ceit02\", \"score\": 1, \"author_fullname\": \"t2_3yynii6i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"**NO** way\", \"link_title\": \"Georgie this is legit my main Reddit account, why you even checkin creep?\", \"author_flair_css_class\": null, \"name\": \"t1_eu4c71i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ENO\\u003C/strong\\u003E way\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceit02/georgie_this_is_legit_my_main_reddit_account_why/eu4c71i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceit02/georgie_this_is_legit_my_main_reddit_account_why/\", \"report_reasons\": null, \"link_author\": \"Thisislegitmyaccount\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceit02/georgie_this_is_legit_my_main_reddit_account_why/\", \"created\": 1563477517.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cenqzl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4atso\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"trender7766\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563447038.0, \"send_replies\": true, \"parent_id\": \"t3_cenqzl\", \"score\": 1, \"author_fullname\": \"t2_3yys15id\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"BIB BIB\", \"link_title\": \"Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop\", \"author_flair_css_class\": null, \"name\": \"t1_eu4atso\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBIB BIB\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cenqzl/beep_boop_beep_boop_beep_boop_beep_boop_beep_boop/eu4atso/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cenqzl/beep_boop_beep_boop_beep_boop_beep_boop_beep_boop/\", \"report_reasons\": null, \"link_author\": \"Oov_voO\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/txms7l3loza31.jpg\", \"created\": 1563475838.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cenqzl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4asl8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Antyvery1213\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563446994.0, \"send_replies\": true, \"parent_id\": \"t3_cenqzl\", \"score\": 1, \"author_fullname\": \"t2_3yyu48s6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"BIP BIP\", \"link_title\": \"Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop\", \"author_flair_css_class\": null, \"name\": \"t1_eu4asl8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBIP BIP\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cenqzl/beep_boop_beep_boop_beep_boop_beep_boop_beep_boop/eu4asl8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cenqzl/beep_boop_beep_boop_beep_boop_beep_boop_beep_boop/\", \"report_reasons\": null, \"link_author\": \"Oov_voO\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/txms7l3loza31.jpg\", \"created\": 1563475794.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cdsp0q\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4arew\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nighttied113\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563446953.0, \"send_replies\": true, \"parent_id\": \"t3_cdsp0q\", \"score\": 1, \"author_fullname\": \"t2_3yynii6i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"**tiesto**\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu4arew\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003Etiesto\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cdsp0q/test/eu4arew/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cdsp0q/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cdsp0q/test/\", \"created\": 1563475753.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceqs5k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4a3xs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563446119.0, \"send_replies\": true, \"parent_id\": \"t3_ceqs5k\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"[GIFV link](https://i.imgur.com/Y6HGIBK.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \",,,,,,\", \"author_flair_css_class\": null, \"name\": \"t1_eu4a3xs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/Y6HGIBK.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceqs5k/_/eu4a3xs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceqs5k/_/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/Y6HGIBK.mp4\", \"created\": 1563474919.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cennf8\", \"author_flair_template_id\": \"6d823ab2-be2f-11e8-9779-0e18b5e69680\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu43enc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheLordBobcob\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563436423.0, \"send_replies\": true, \"parent_id\": \"t1_eu3yi8d\", \"score\": 2, \"author_fullname\": \"t2_onoyixl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Blah Blah\", \"link_title\": \"Blah Blah Blah\", \"author_flair_css_class\": null, \"name\": \"t1_eu43enc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBlah Blah\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/test/comments/cennf8/blah_blah_blah/eu43enc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"report_reasons\": null, \"link_author\": \"Oov_voO\", \"author_flair_text\": \"test\", \"link_url\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"created\": 1563465223.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cennf8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3yi8d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"CleanAccounts\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1563430156.0, \"send_replies\": true, \"parent_id\": \"t3_cennf8\", \"score\": 3, \"author_fullname\": \"t2_3mv3nbo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Blah\", \"link_title\": \"Blah Blah Blah\", \"author_flair_css_class\": null, \"name\": \"t1_eu3yi8d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBlah\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cennf8/blah_blah_blah/eu3yi8d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"report_reasons\": null, \"link_author\": \"Oov_voO\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"created\": 1563458956.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563420670.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cen2z0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3o2vi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"thatguy5827\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563420047.0, \"send_replies\": true, \"parent_id\": \"t3_cen2z0\", \"score\": 1, \"author_fullname\": \"t2_n28j0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"!isbot u/thatguy5827\\n\\nbitch ass bot if you dont get your fucking metal ass over here this fucking instant\", \"link_title\": \"you are more german than me\", \"author_flair_css_class\": null, \"name\": \"t1_eu3o2vi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E!isbot \\u003Ca href=\\\"/u/thatguy5827\\\"\\u003Eu/thatguy5827\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebitch ass bot if you dont get your fucking metal ass over here this fucking instant\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cen2z0/you_are_more_german_than_me/eu3o2vi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cen2z0/you_are_more_german_than_me/\", \"report_reasons\": null, \"link_author\": \"thatguy5827\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cen2z0/you_are_more_german_than_me/\", \"created\": 1563448847.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cegb6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3ncer\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"undertherainbow\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563419429.0, \"send_replies\": true, \"parent_id\": \"t1_eu2b0mj\", \"score\": 1, \"author_fullname\": \"t2_4wahc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"party.\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu3ncer\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eparty.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cegb6m/test/eu3ncer/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"report_reasons\": null, \"link_author\": \"Compodulator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"created\": 1563448229.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_celtls\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3nccy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"undertherainbow\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563419428.0, \"send_replies\": true, \"parent_id\": \"t1_eu3ga0a\", \"score\": 1, \"author_fullname\": \"t2_4wahc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"party.\", \"link_title\": \"[BUG] Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu3nccy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eparty.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/celtls/bug_test/eu3nccy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/celtls/bug_test/\", \"report_reasons\": null, \"link_author\": \"XMALCOLMMLK\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/celtls/bug_test/\", \"created\": 1563448228.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4z690\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3ilby\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"userleansbot\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1563415659.0, \"send_replies\": true, \"parent_id\": \"t1_eu3ikx3\", \"score\": 1, \"author_fullname\": \"t2_3a4fedhv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Author: /u/userleansbot\\n___\\nAnalysis of /u/capornicus's activity in political subreddits over the past 1000 comments and submissions.\\n\\nAccount Created: 2 years, 9 months, 6 days ago\\n\\nSummary: **This user does not have enough activity in political subs for analysis or has no clear leanings, they might be one of those weirdo moderate types. I don't trust them.**\\n\\n Subreddit|Lean|No. of comments|Total comment karma|No. of posts|Total post karma\\n :--|:--|:--|:--|:--|:--|:--|:--\\n[/r/politics](https://redditsearch.io/?term=\\u0026dataviz=false\\u0026aggs=false\\u0026subreddits=politics\\u0026searchtype=posts,comments\\u0026search=true\\u0026start=0\\u0026end=1563415658\\u0026size=1000\\u0026authors=capornicus)|left|4|4|0|0\\n[/r/politicalhumor](https://redditsearch.io/?term=\\u0026dataviz=false\\u0026aggs=false\\u0026subreddits=politicalhumor\\u0026searchtype=posts,comments\\u0026search=true\\u0026start=0\\u0026end=1563415658\\u0026size=1000\\u0026authors=capornicus)|left|10|17|0|0\\n[/r/the_mueller](https://redditsearch.io/?term=\\u0026dataviz=false\\u0026aggs=false\\u0026subreddits=the_mueller\\u0026searchtype=posts,comments\\u0026search=true\\u0026start=0\\u0026end=1563415658\\u0026size=1000\\u0026authors=capornicus)|left|1|2|0|0\\n\\n***\\n ^(Bleep, bloop, I'm a bot trying to help inform political discussions on Reddit.) ^| [^About](https://www.reddit.com/user/userleansbot/comments/au1pva/faq_about_userleansbot/)\\n ___\", \"link_title\": \"User Leans Bot Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu3ilby\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAuthor: \\u003Ca href=\\\"/u/userleansbot\\\"\\u003E/u/userleansbot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EAnalysis of \\u003Ca href=\\\"/u/capornicus\\\"\\u003E/u/capornicus\\u003C/a\\u003E\\u0026#39;s activity in political subreddits over the past 1000 comments and submissions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAccount Created: 2 years, 9 months, 6 days ago\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESummary: \\u003Cstrong\\u003EThis user does not have enough activity in political subs for analysis or has no clear leanings, they might be one of those weirdo moderate types. I don\\u0026#39;t trust them.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ESubreddit\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ELean\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ENo. of comments\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETotal comment karma\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ENo. of posts\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETotal post karma\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://redditsearch.io/?term=\\u0026amp;dataviz=false\\u0026amp;aggs=false\\u0026amp;subreddits=politics\\u0026amp;searchtype=posts,comments\\u0026amp;search=true\\u0026amp;start=0\\u0026amp;end=1563415658\\u0026amp;size=1000\\u0026amp;authors=capornicus\\\"\\u003E/r/politics\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eleft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://redditsearch.io/?term=\\u0026amp;dataviz=false\\u0026amp;aggs=false\\u0026amp;subreddits=politicalhumor\\u0026amp;searchtype=posts,comments\\u0026amp;search=true\\u0026amp;start=0\\u0026amp;end=1563415658\\u0026amp;size=1000\\u0026amp;authors=capornicus\\\"\\u003E/r/politicalhumor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eleft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://redditsearch.io/?term=\\u0026amp;dataviz=false\\u0026amp;aggs=false\\u0026amp;subreddits=the_mueller\\u0026amp;searchtype=posts,comments\\u0026amp;search=true\\u0026amp;start=0\\u0026amp;end=1563415658\\u0026amp;size=1000\\u0026amp;authors=capornicus\\\"\\u003E/r/the_mueller\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eleft\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EBleep, bloop, I\\u0026#39;m a bot trying to help inform political discussions on Reddit.\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Ca href=\\\"https://www.reddit.com/user/userleansbot/comments/au1pva/faq_about_userleansbot/\\\"\\u003E\\u003Csup\\u003EAbout\\u003C/sup\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/c4z690/user_leans_bot_test/eu3ilby/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/c4z690/user_leans_bot_test/\", \"report_reasons\": null, \"link_author\": \"capornicus\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/c4z690/user_leans_bot_test/\", \"created\": 1563444459.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_bvv7o9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3ha7j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"report_reasons\": null, \"author\": \"[deleted]\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563414656.0, \"send_replies\": false, \"parent_id\": \"t3_bvv7o9\", \"score\": 1, \"approved_by\": null, \"over_18\": false, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"https://www.redditsearch.io/\", \"link_title\": \"-\", \"author_flair_css_class\": null, \"name\": \"t1_eu3ha7j\", \"locked\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.redditsearch.io/\\\"\\u003Ehttps://www.redditsearch.io/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": false, \"subreddit\": \"test\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/test/comments/bvv7o9/_/eu3ha7j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/bvv7o9/_/\", \"no_follow\": true, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/bvv7o9/_/\", \"created\": 1563443456.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_celtls\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3ga0a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Free_kittens2468\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563413890.0, \"send_replies\": true, \"parent_id\": \"t3_celtls\", \"score\": 1, \"author_fullname\": \"t2_ai56vx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"*buzzing* *bug noises* Pretty buggy test 'ere bub.\", \"link_title\": \"[BUG] Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu3ga0a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003Ebuzzing\\u003C/em\\u003E \\u003Cem\\u003Ebug noises\\u003C/em\\u003E Pretty buggy test \\u0026#39;ere bub.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/celtls/bug_test/eu3ga0a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/celtls/bug_test/\", \"report_reasons\": null, \"link_author\": \"XMALCOLMMLK\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/celtls/bug_test/\", \"created\": 1563442690.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_bvv7o9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3g8lr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"report_reasons\": null, \"author\": \"[deleted]\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563413860.0, \"send_replies\": false, \"parent_id\": \"t3_bvv7o9\", \"score\": 1, \"approved_by\": null, \"over_18\": false, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"https://e621.net\", \"link_title\": \"-\", \"author_flair_css_class\": null, \"name\": \"t1_eu3g8lr\", \"locked\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://e621.net\\\"\\u003Ehttps://e621.net\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": false, \"subreddit\": \"test\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/test/comments/bvv7o9/_/eu3g8lr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/bvv7o9/_/\", \"no_follow\": true, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/bvv7o9/_/\", \"created\": 1563442660.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_bvv7o9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3eu1x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"report_reasons\": null, \"author\": \"[deleted]\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1563412798.0, \"send_replies\": false, \"parent_id\": \"t3_bvv7o9\", \"score\": 1, \"approved_by\": null, \"over_18\": false, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"https://en.wikipedia.org/wiki/List_of_Roman_emperors#The_Principate\", \"link_title\": \"-\", \"author_flair_css_class\": null, \"name\": \"t1_eu3eu1x\", \"locked\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://en.wikipedia.org/wiki/List_of_Roman_emperors#The_Principate\\\"\\u003Ehttps://en.wikipedia.org/wiki/List_of_Roman_emperors#The_Principate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": false, \"subreddit\": \"test\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/test/comments/bvv7o9/_/eu3eu1x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/bvv7o9/_/\", \"no_follow\": true, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/bvv7o9/_/\", \"created\": 1563441598.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cekee1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu34f5k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"AnonymousSpaceMonkey\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563405118.0, \"send_replies\": true, \"parent_id\": \"t3_cekee1\", \"score\": 1, \"author_fullname\": \"t2_majox\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \" [/u/BoyAndHisBot](https://www.reddit.com/u/BoyAndHisBot/) 100\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu34f5k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/u/BoyAndHisBot/\\\"\\u003E/u/BoyAndHisBot\\u003C/a\\u003E 100\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cekee1/test/eu34f5k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cekee1/test/\", \"report_reasons\": null, \"link_author\": \"AnonymousSpaceMonkey\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cekee1/test/\", \"created\": 1563433918.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ced4dj\", \"author_flair_template_id\": \"6d823ab2-be2f-11e8-9779-0e18b5e69680\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2kjfd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pricehacker\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563392175.0, \"send_replies\": true, \"parent_id\": \"t3_ced4dj\", \"score\": 1, \"author_fullname\": \"t2_zr6w640\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"t\", \"link_title\": \"Plat test\", \"author_flair_css_class\": null, \"name\": \"t1_eu2kjfd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Et\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/test/comments/ced4dj/plat_test/eu2kjfd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ced4dj/plat_test/\", \"report_reasons\": null, \"link_author\": \"Error87C\", \"author_flair_text\": \" Professional tester\", \"link_url\": \"https://www.reddit.com/r/test/comments/ced4dj/plat_test/\", \"created\": 1563420975.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cehakq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2iadt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ILikeMultipleThings\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563390744.0, \"send_replies\": true, \"parent_id\": \"t1_eu2i8p8\", \"score\": 1, \"author_fullname\": \"t2_e3hpzw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Good fucking lord\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu2iadt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood fucking lord\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cehakq/test/eu2iadt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"report_reasons\": null, \"link_author\": \"ILikeMultipleThings\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"created\": 1563419544.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cehakq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2i8p8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nwordcountbot\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563390714.0, \"send_replies\": true, \"parent_id\": \"t1_eu2i7mg\", \"score\": 1, \"author_fullname\": \"t2_1m0v8ctx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Thank you for the request, comrade.\\n\\nI have looked through quetzalgamer's posting history and found 30 N-words, of which 21 were hard-Rs.\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu2i8p8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for the request, comrade.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have looked through quetzalgamer\\u0026#39;s posting history and found 30 N-words, of which 21 were hard-Rs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cehakq/test/eu2i8p8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"report_reasons\": null, \"link_author\": \"ILikeMultipleThings\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"created\": 1563419514.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cegb6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2i7mn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Compodulator\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563390694.0, \"send_replies\": true, \"parent_id\": \"t1_eu2eagk\", \"score\": 1, \"author_fullname\": \"t2_1mieoko9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"I'm trying to do this tiny font thing I see other people do here and there. Do you know how to do it?\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu2i7mn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to do this tiny font thing I see other people do here and there. Do you know how to do it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cegb6m/test/eu2i7mn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"report_reasons\": null, \"link_author\": \"Compodulator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"created\": 1563419494.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cehakq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2i7mg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ILikeMultipleThings\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563390694.0, \"send_replies\": true, \"parent_id\": \"t3_cehakq\", \"score\": 1, \"author_fullname\": \"t2_e3hpzw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"u/nwordcountbot u/quetzalgamer\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu2i7mg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/nwordcountbot\\\"\\u003Eu/nwordcountbot\\u003C/a\\u003E \\u003Ca href=\\\"/u/quetzalgamer\\\"\\u003Eu/quetzalgamer\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cehakq/test/eu2i7mg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"report_reasons\": null, \"link_author\": \"ILikeMultipleThings\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"created\": 1563419494.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cegb6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2gy42\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Compodulator\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563389896.0, \"send_replies\": true, \"parent_id\": \"t3_cegb6m\", \"score\": 1, \"author_fullname\": \"t2_1mieoko9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"(inspired by [https://www.reddit.com/r/Epilepsy/comments/ce5qlp/the\\\\_most\\\\_exhausting\\\\_sleep/](https://www.reddit.com/r/Epilepsy/comments/ce5qlp/the_most_exhausting_sleep/) )\\n\\nI wake up.\\n\\nThe day Seems good, it's 5:20am. The phone is roaring even though it's a weekend. Gotta keep my circadian rhythm in place, or at least try to. I put my week old jeans, take another batch of cigarettes, fill my old water bottle and go outside. \\nI should really buy a new one. \\nI'm taking the morning walk path - two left turns and it's all forward from there. As I close the gate to the house I live behind, \\\"OK, Google, set timer for one hour... twelve minutes!\\\", and start walking.\\n\\n*s*\\n\\nI don't notice it at first. If I do, I try my damnest to not pay it too much attention. \\n\\\"It's too small, microscopic, doesn't even fit the XS category.\\\" \\nBut I fail. Today's the day. The new medication does help - it somehow lumps all my week's seizures into one convenient weekend. Trileptin is godsend. It even makes me a little high for the morning. Pleasant high, kind of like drinking just right. Not too little, not too much. A pleasant buzz. But still, it's too early. It's 5:55, not 8:00. \\nI'm at checkpoint A, time for a cigarette and a gulp of water. \\nI take th\\n\\n*S*\\n\\ne bottle and bring it to my lips. My left arm shakes a little, but I pretend to not notice. Everything is good so far. The wind is just right, the temperature is just right, everything is just right. There's a woman taking care of some stray cats. They love her. An army of cats follows the woman relentlessly as she drops some kibbles on predesignate planks of\\n\\n*Sta*\\n\\nwood along the way. We pass each other with a smile. Some cats leave content, but some feel there's bigger game to be caught. Their insisting voic\\n\\n*Static*\\n\\nAlright, this was definitely in the scale. Definitely above the XS, but lower than the M. I'll compromise and tick it down as an S. The neuro that's coming in November asked for an activity list after Trileptin has been added into the mix. Autocorrect is godsend when used properly. FVTK turns into \\\"400 Vimpat 3000 Keppra\\\". I punch 300 Trileptin on my own. I should really fix that acronym sometime. Maybe just \\\"meds\\\" will do. Nah, I use the word \\\"meds\\\" often, and nobody needs to know the exact numbers. What should it be..?\\n\\n*Static*\\n\\nCrap, another one. The template is already set, I just edit the S entry to show 2s instead of 1. \\nCheckpoint B inbound, time for another cigarette. If I smack my lips like a moron, I can sort of recreate the feeling of the first cigarette after vEEG. That wooden, lucrative, premium flavor is nigh impossible to recreate. Not without the physical restraint and yelling from that militaristic nurse from the hospital. She was scary, but also very right. One day I'll successfully move to electronics. Hell, Gregory is smoking in the warehouse, but he's not exactly smoking, and he's being all secretive about it. He's not like me, he's not an addi\\n\\n*STATIC*\\n\\nOK, that was definitely a medium. That was Definitely a medium. The pressure has been building up for a week now and Trileptin has been doing some god's work at keeping it under some form of restraint. Restraint that has to be broken at some point. I should really stop watching those videos, that is something I definitely not want to associate with epilepsy. Finding a kink both my brain and my body agree on was difficult enough as is, finding somebody who'd do it with me... yeah, impossible, but the videos are enough, thankfully. Also there's prostate cancer to deal with if I don't want to do the penis dance, so there's that. Checkpoint C inbound. Another ciggie.\\n\\n***STATIC***\\n\\nMother FUCK! Alright, large, large, now we're talking, a breach in the tank. People are watching. People are definitely watching. I clench and unclench my fists. The doctor told me I can't control this motion. I feel like I can, but it somehow helps. I don't ask questions anymore. I put my cigarette back into the case and move to clenching fists. People are definitely watching, and they know I'm not like them, I'm a freak of nature, a brain-cripple.\\n\\n***SSSSTATIC***\\n\\nYeah, give it to me. Give me all you got! God's been trying to kill me for FIFTEEN FUCKING YEARS AND HE'S RUNNING OUT OF IDEAS, THAT OLD MOTHERFUCKER! YOU WANNA TRY ME? YOU WANNA TRY **ME?!**\\n\\n***SSSSSSTAAAAAAAAAAATIIIIIIIIC***\\n\\nThe old bombardment thing again? Yeah, God! GO RIGHT FUCKING AHEAD! **GO RIGHT THE FUCK AHEAD!** I lived through all the old ones, and I'll survive this one!\\n\\n***SSSSSSSTAAAAAAAAVOICESAAAATIIIIIIIIIIIIIIIIIIIIIIIIICCCCCC***\\n\\nKill me! Right now kill me! Kill me right now! I dare you, old motherfucker, kill me right fucking here, RIGHT! FUCKING! **NOW!**\\n\\n**SSSSSSVOICESSSSSSSSTAAAVOICESAAAAVOICESAAAATTTTTTVOICESIIIIIIVOICESIIIIIICCCCCCC**\\n\\nI wonder if I sinned. In some previous life, I mean. Maybe I pissed off a witch or some old gypsy. Maybe in this one. I did some bad things after all. Was I supposed to skip school that day? I wish I gave Amanda more time. I could've given Amanda more time, but I didn't. Maybe if I chose to spend time with Laura instead of going out on that evening with her. She's pregnant and Amanda isn't. All she did that night was sit in my house and pass time with my father somehow. That old fart doesn't even speak English. I wonder what happened back then. \\nPeople are looking, and if something happens, they'll call for an ambulance. Last time it was 981.44NIS. Worse, they might help. Old memories swirl in my head into this soup of regret, nostalgia, anger and rage.\\n\\n***STATICVOICESSTATICVOICESSTATICVOICESSTATICVOICESSTATICVOICESSTATICVOICESSTATICVOICESSTATICVOICES***\\n\\nI clench and unlcench my fists more and more, harder and harder each time. \\nI think I managed to decipher a word or two. \\\"For sale\\\". What's for sale? Is it from the ad I saw between point B and C? I don't know.\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu2gy42\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E(inspired by \\u003Ca href=\\\"https://www.reddit.com/r/Epilepsy/comments/ce5qlp/the_most_exhausting_sleep/\\\"\\u003Ehttps://www.reddit.com/r/Epilepsy/comments/ce5qlp/the_most_exhausting_sleep/\\u003C/a\\u003E )\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wake up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe day Seems good, it\\u0026#39;s 5:20am. The phone is roaring even though it\\u0026#39;s a weekend. Gotta keep my circadian rhythm in place, or at least try to. I put my week old jeans, take another batch of cigarettes, fill my old water bottle and go outside.\\u003Cbr/\\u003E\\nI should really buy a new one.\\u003Cbr/\\u003E\\nI\\u0026#39;m taking the morning walk path - two left turns and it\\u0026#39;s all forward from there. As I close the gate to the house I live behind, \\u0026quot;OK, Google, set timer for one hour... twelve minutes!\\u0026quot;, and start walking.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003Es\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t notice it at first. If I do, I try my damnest to not pay it too much attention.\\u003Cbr/\\u003E\\n\\u0026quot;It\\u0026#39;s too small, microscopic, doesn\\u0026#39;t even fit the XS category.\\u0026quot;\\u003Cbr/\\u003E\\nBut I fail. Today\\u0026#39;s the day. The new medication does help - it somehow lumps all my week\\u0026#39;s seizures into one convenient weekend. Trileptin is godsend. It even makes me a little high for the morning. Pleasant high, kind of like drinking just right. Not too little, not too much. A pleasant buzz. But still, it\\u0026#39;s too early. It\\u0026#39;s 5:55, not 8:00.\\u003Cbr/\\u003E\\nI\\u0026#39;m at checkpoint A, time for a cigarette and a gulp of water.\\u003Cbr/\\u003E\\nI take th\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ES\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ee bottle and bring it to my lips. My left arm shakes a little, but I pretend to not notice. Everything is good so far. The wind is just right, the temperature is just right, everything is just right. There\\u0026#39;s a woman taking care of some stray cats. They love her. An army of cats follows the woman relentlessly as she drops some kibbles on predesignate planks of\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESta\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ewood along the way. We pass each other with a smile. Some cats leave content, but some feel there\\u0026#39;s bigger game to be caught. Their insisting voic\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EStatic\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlright, this was definitely in the scale. Definitely above the XS, but lower than the M. I\\u0026#39;ll compromise and tick it down as an S. The neuro that\\u0026#39;s coming in November asked for an activity list after Trileptin has been added into the mix. Autocorrect is godsend when used properly. FVTK turns into \\u0026quot;400 Vimpat 3000 Keppra\\u0026quot;. I punch 300 Trileptin on my own. I should really fix that acronym sometime. Maybe just \\u0026quot;meds\\u0026quot; will do. Nah, I use the word \\u0026quot;meds\\u0026quot; often, and nobody needs to know the exact numbers. What should it be..?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EStatic\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECrap, another one. The template is already set, I just edit the S entry to show 2s instead of 1.\\u003Cbr/\\u003E\\nCheckpoint B inbound, time for another cigarette. If I smack my lips like a moron, I can sort of recreate the feeling of the first cigarette after vEEG. That wooden, lucrative, premium flavor is nigh impossible to recreate. Not without the physical restraint and yelling from that militaristic nurse from the hospital. She was scary, but also very right. One day I\\u0026#39;ll successfully move to electronics. Hell, Gregory is smoking in the warehouse, but he\\u0026#39;s not exactly smoking, and he\\u0026#39;s being all secretive about it. He\\u0026#39;s not like me, he\\u0026#39;s not an addi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESTATIC\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOK, that was definitely a medium. That was Definitely a medium. The pressure has been building up for a week now and Trileptin has been doing some god\\u0026#39;s work at keeping it under some form of restraint. Restraint that has to be broken at some point. I should really stop watching those videos, that is something I definitely not want to associate with epilepsy. Finding a kink both my brain and my body agree on was difficult enough as is, finding somebody who\\u0026#39;d do it with me... yeah, impossible, but the videos are enough, thankfully. Also there\\u0026#39;s prostate cancer to deal with if I don\\u0026#39;t want to do the penis dance, so there\\u0026#39;s that. Checkpoint C inbound. Another ciggie.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESTATIC\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMother FUCK! Alright, large, large, now we\\u0026#39;re talking, a breach in the tank. People are watching. People are definitely watching. I clench and unclench my fists. The doctor told me I can\\u0026#39;t control this motion. I feel like I can, but it somehow helps. I don\\u0026#39;t ask questions anymore. I put my cigarette back into the case and move to clenching fists. People are definitely watching, and they know I\\u0026#39;m not like them, I\\u0026#39;m a freak of nature, a brain-cripple.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESSSSTATIC\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYeah, give it to me. Give me all you got! God\\u0026#39;s been trying to kill me for FIFTEEN FUCKING YEARS AND HE\\u0026#39;S RUNNING OUT OF IDEAS, THAT OLD MOTHERFUCKER! YOU WANNA TRY ME? YOU WANNA TRY \\u003Cstrong\\u003EME?!\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESSSSSSTAAAAAAAAAAATIIIIIIIIC\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe old bombardment thing again? Yeah, God! GO RIGHT FUCKING AHEAD! \\u003Cstrong\\u003EGO RIGHT THE FUCK AHEAD!\\u003C/strong\\u003E I lived through all the old ones, and I\\u0026#39;ll survive this one!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESSSSSSSTAAAAAAAAVOICESAAAATIIIIIIIIIIIIIIIIIIIIIIIIICCCCCC\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKill me! Right now kill me! Kill me right now! I dare you, old motherfucker, kill me right fucking here, RIGHT! FUCKING! \\u003Cstrong\\u003ENOW!\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESSSSSSVOICESSSSSSSSTAAAVOICESAAAAVOICESAAAATTTTTTVOICESIIIIIIVOICESIIIIIICCCCCCC\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wonder if I sinned. In some previous life, I mean. Maybe I pissed off a witch or some old gypsy. Maybe in this one. I did some bad things after all. Was I supposed to skip school that day? I wish I gave Amanda more time. I could\\u0026#39;ve given Amanda more time, but I didn\\u0026#39;t. Maybe if I chose to spend time with Laura instead of going out on that evening with her. She\\u0026#39;s pregnant and Amanda isn\\u0026#39;t. All she did that night was sit in my house and pass time with my father somehow. That old fart doesn\\u0026#39;t even speak English. I wonder what happened back then.\\u003Cbr/\\u003E\\nPeople are looking, and if something happens, they\\u0026#39;ll call for an ambulance. Last time it was 981.44NIS. Worse, they might help. Old memories swirl in my head into this soup of regret, nostalgia, anger and rage.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESTATICVOICESSTATICVOICESSTATICVOICESSTATICVOICESSTATICVOICESSTATICVOICESSTATICVOICESSTATICVOICES\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI clench and unlcench my fists more and more, harder and harder each time.\\u003Cbr/\\u003E\\nI think I managed to decipher a word or two. \\u0026quot;For sale\\u0026quot;. What\\u0026#39;s for sale? Is it from the ad I saw between point B and C? I don\\u0026#39;t know.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cegb6m/test/eu2gy42/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"report_reasons\": null, \"link_author\": \"Compodulator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"created\": 1563418696.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cegb6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2eagk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"weezer95\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563388232.0, \"send_replies\": true, \"parent_id\": \"t1_eu2axip\", \"score\": 1, \"author_fullname\": \"t2_22v8eu3h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"wow it works\\ud83d\\ude0b\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu2eagk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewow it works\\ud83d\\ude0b\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cegb6m/test/eu2eagk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"report_reasons\": null, \"link_author\": \"Compodulator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"created\": 1563417032.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cegb6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2b0mj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Compodulator\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563386181.0, \"send_replies\": true, \"parent_id\": \"t3_cegb6m\", \"score\": 1, \"author_fullname\": \"t2_1mieoko9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"\\\\^\\\\^\\\\^test\\\\^\\\\^\\\\^\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu2b0mj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E^^^test^^^\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cegb6m/test/eu2b0mj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"report_reasons\": null, \"link_author\": \"Compodulator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"created\": 1563414981.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cegb6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2ay14\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Compodulator\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563386137.0, \"send_replies\": true, \"parent_id\": \"t3_cegb6m\", \"score\": 1, \"author_fullname\": \"t2_1mieoko9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"\\\\^\\\\^test\\\\^\\\\^\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu2ay14\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E^^test^^\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cegb6m/test/eu2ay14/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"report_reasons\": null, \"link_author\": \"Compodulator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"created\": 1563414937.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cegb6m\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu2axip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Compodulator\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1563386128.0, \"send_replies\": true, \"parent_id\": \"t3_cegb6m\", \"score\": 1, \"author_fullname\": \"t2_1mieoko9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"\\\\^test\\\\^\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu2axip\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E^test^\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cegb6m/test/eu2axip/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"report_reasons\": null, \"link_author\": \"Compodulator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"created\": 1563414928.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceg4x3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu29pqp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"made2k\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563385370.0, \"send_replies\": true, \"parent_id\": \"t1_eu29oib\", \"score\": 1, \"author_fullname\": \"t2_50x9j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"Secondary comment at level 1\", \"link_title\": \"Final test of all the things\", \"author_flair_css_class\": null, \"name\": \"t1_eu29pqp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESecondary comment at level 1\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceg4x3/final_test_of_all_the_things/eu29pqp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceg4x3/final_test_of_all_the_things/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceg4x3/final_test_of_all_the_things/\", \"created\": 1563414170.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceby73\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1zaje\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"IdFuckStephenTries\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563378864.0, \"send_replies\": true, \"parent_id\": \"t3_ceby73\", \"score\": 1, \"author_fullname\": \"t2_1bxhg6rl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"How did that happen then\", \"link_title\": \"Plat test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1zaje\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow did that happen then\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceby73/plat_test/eu1zaje/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceby73/plat_test/\", \"report_reasons\": null, \"link_author\": \"LilyRemput\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceby73/plat_test/\", \"created\": 1563407664.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce9fdl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1za3s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563378856.0, \"send_replies\": true, \"parent_id\": \"t3_ce9fdl\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Suu Kyi's bid to reform charter sparks rival protests in Myanmar\", \"author_flair_css_class\": null, \"name\": \"t1_eu1za3s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ce9fdl/suu_kyis_bid_to_reform_charter_sparks_rival/eu1za3s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ce9fdl/suu_kyis_bid_to_reform_charter_sparks_rival/\", \"report_reasons\": null, \"link_author\": \"taylortest1\", \"author_flair_text\": null, \"link_url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/GJCZ0NVoWTs/suu-kyis-bid-to-reform-charter-sparks-rival-protests-in-myanmar-idUSKCN1UC0KM\", \"created\": 1563407656.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceby73\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1z9td\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563378851.0, \"send_replies\": true, \"parent_id\": \"t3_ceby73\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Plat test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1z9td\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceby73/plat_test/eu1z9td/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceby73/plat_test/\", \"report_reasons\": null, \"link_author\": \"LilyRemput\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceby73/plat_test/\", \"created\": 1563407651.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ced4dj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1z9in\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563378845.0, \"send_replies\": true, \"parent_id\": \"t3_ced4dj\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Plat test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1z9in\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ced4dj/plat_test/eu1z9in/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ced4dj/plat_test/\", \"report_reasons\": null, \"link_author\": \"Error87C\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ced4dj/plat_test/\", \"created\": 1563407645.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cedt2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1z976\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563378840.0, \"send_replies\": true, \"parent_id\": \"t3_cedt2h\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1z976\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cedt2h/test/eu1z976/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cedt2h/test/\", \"report_reasons\": null, \"link_author\": \"chompsr\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cedt2h/test/\", \"created\": 1563407640.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cee9oy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1z7vt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563378817.0, \"send_replies\": true, \"parent_id\": \"t3_cee9oy\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1z7vt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cee9oy/test/eu1z7vt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cee9oy/test/\", \"report_reasons\": null, \"link_author\": \"Noahhaana\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/3k68r3fpsva31.jpg\", \"created\": 1563407617.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce9fdl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1z48u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563378753.0, \"send_replies\": true, \"parent_id\": \"t3_ce9fdl\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Suu Kyi's bid to reform charter sparks rival protests in Myanmar\", \"author_flair_css_class\": null, \"name\": \"t1_eu1z48u\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ce9fdl/suu_kyis_bid_to_reform_charter_sparks_rival/eu1z48u/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ce9fdl/suu_kyis_bid_to_reform_charter_sparks_rival/\", \"report_reasons\": null, \"link_author\": \"taylortest1\", \"author_flair_text\": null, \"link_url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/GJCZ0NVoWTs/suu-kyis-bid-to-reform-charter-sparks-rival-protests-in-myanmar-idUSKCN1UC0KM\", \"created\": 1563407553.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceby73\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1yyhc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563378653.0, \"send_replies\": true, \"parent_id\": \"t3_ceby73\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Plat test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1yyhc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceby73/plat_test/eu1yyhc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceby73/plat_test/\", \"report_reasons\": null, \"link_author\": \"LilyRemput\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceby73/plat_test/\", \"created\": 1563407453.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ced4dj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1yx6a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563378631.0, \"send_replies\": true, \"parent_id\": \"t3_ced4dj\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Plat test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1yx6a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ced4dj/plat_test/eu1yx6a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ced4dj/plat_test/\", \"report_reasons\": null, \"link_author\": \"Error87C\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ced4dj/plat_test/\", \"created\": 1563407431.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cedt2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1ywc4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563378616.0, \"send_replies\": true, \"parent_id\": \"t3_cedt2h\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1ywc4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cedt2h/test/eu1ywc4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cedt2h/test/\", \"report_reasons\": null, \"link_author\": \"chompsr\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cedt2h/test/\", \"created\": 1563407416.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cee9oy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1ytxy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563378574.0, \"send_replies\": true, \"parent_id\": \"t3_cee9oy\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1ytxy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cee9oy/test/eu1ytxy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cee9oy/test/\", \"report_reasons\": null, \"link_author\": \"Noahhaana\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/3k68r3fpsva31.jpg\", \"created\": 1563407374.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce9fdl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1ymzx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563378453.0, \"send_replies\": true, \"parent_id\": \"t3_ce9fdl\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Suu Kyi's bid to reform charter sparks rival protests in Myanmar\", \"author_flair_css_class\": null, \"name\": \"t1_eu1ymzx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ce9fdl/suu_kyis_bid_to_reform_charter_sparks_rival/eu1ymzx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ce9fdl/suu_kyis_bid_to_reform_charter_sparks_rival/\", \"report_reasons\": null, \"link_author\": \"taylortest1\", \"author_flair_text\": null, \"link_url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/GJCZ0NVoWTs/suu-kyis-bid-to-reform-charter-sparks-rival-protests-in-myanmar-idUSKCN1UC0KM\", \"created\": 1563407253.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceby73\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1ydb7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563378284.0, \"send_replies\": true, \"parent_id\": \"t3_ceby73\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Plat test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1ydb7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceby73/plat_test/eu1ydb7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceby73/plat_test/\", \"report_reasons\": null, \"link_author\": \"LilyRemput\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceby73/plat_test/\", \"created\": 1563407084.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ced4dj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1y72q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563378176.0, \"send_replies\": true, \"parent_id\": \"t3_ced4dj\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Plat test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1y72q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ced4dj/plat_test/eu1y72q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ced4dj/plat_test/\", \"report_reasons\": null, \"link_author\": \"Error87C\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ced4dj/plat_test/\", \"created\": 1563406976.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cedt2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1y2ds\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563378092.0, \"send_replies\": true, \"parent_id\": \"t3_cedt2h\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1y2ds\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cedt2h/test/eu1y2ds/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cedt2h/test/\", \"report_reasons\": null, \"link_author\": \"chompsr\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cedt2h/test/\", \"created\": 1563406892.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cee9oy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1y04m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563378052.0, \"send_replies\": true, \"parent_id\": \"t3_cee9oy\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1y04m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cee9oy/test/eu1y04m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cee9oy/test/\", \"report_reasons\": null, \"link_author\": \"Noahhaana\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/3k68r3fpsva31.jpg\", \"created\": 1563406852.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce9fdl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1xwi9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563377988.0, \"send_replies\": true, \"parent_id\": \"t3_ce9fdl\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Suu Kyi's bid to reform charter sparks rival protests in Myanmar\", \"author_flair_css_class\": null, \"name\": \"t1_eu1xwi9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ce9fdl/suu_kyis_bid_to_reform_charter_sparks_rival/eu1xwi9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ce9fdl/suu_kyis_bid_to_reform_charter_sparks_rival/\", \"report_reasons\": null, \"link_author\": \"taylortest1\", \"author_flair_text\": null, \"link_url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/GJCZ0NVoWTs/suu-kyis-bid-to-reform-charter-sparks-rival-protests-in-myanmar-idUSKCN1UC0KM\", \"created\": 1563406788.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceby73\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1xs9z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563377913.0, \"send_replies\": true, \"parent_id\": \"t3_ceby73\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Plat test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1xs9z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceby73/plat_test/eu1xs9z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceby73/plat_test/\", \"report_reasons\": null, \"link_author\": \"LilyRemput\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceby73/plat_test/\", \"created\": 1563406713.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ced4dj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1xk7v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563377767.0, \"send_replies\": true, \"parent_id\": \"t3_ced4dj\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Plat test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1xk7v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ced4dj/plat_test/eu1xk7v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ced4dj/plat_test/\", \"report_reasons\": null, \"link_author\": \"Error87C\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ced4dj/plat_test/\", \"created\": 1563406567.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cedt2h\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1xib0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563377731.0, \"send_replies\": true, \"parent_id\": \"t3_cedt2h\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1xib0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cedt2h/test/eu1xib0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cedt2h/test/\", \"report_reasons\": null, \"link_author\": \"chompsr\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/cedt2h/test/\", \"created\": 1563406531.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cee9oy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1xbxl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NB2ndBattalion\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563377616.0, \"send_replies\": true, \"parent_id\": \"t3_cee9oy\", \"score\": 1, \"author_fullname\": \"t2_2ythihiu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1xbxl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/cee9oy/test/eu1xbxl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/cee9oy/test/\", \"report_reasons\": null, \"link_author\": \"Noahhaana\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/3k68r3fpsva31.jpg\", \"created\": 1563406416.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceby73\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu1u7hu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"lturtsamuel\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1563375546.0, \"send_replies\": true, \"parent_id\": \"t3_ceby73\", \"score\": 1, \"author_fullname\": \"t2_3rpyjmoc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh23\", \"body\": \"t\", \"link_title\": \"Plat test\", \"author_flair_css_class\": null, \"name\": \"t1_eu1u7hu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Et\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"test\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/test/comments/ceby73/plat_test/eu1u7hu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/test/comments/ceby73/plat_test/\", \"report_reasons\": null, \"link_author\": \"LilyRemput\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/test/comments/ceby73/plat_test/\", \"created\": 1563404346.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/test\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_eu1u7hu\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["207267"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:16:48 GMT"], "x-ratelimit-remaining": ["580.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21948-LGA"], "x-ratelimit-used": ["20"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495409.524314,VS0,VE386"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["192"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/test/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-07-19T00:16:48"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/test/comments/?raw_json=1&limit=100&before=t1_eu628tg"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:16:49 GMT"], "x-ratelimit-remaining": ["579.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21948-LGA"], "x-ratelimit-used": ["21"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495409.311840,VS0,VE100"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["191"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/test/comments/?raw_json=1&limit=100&before=t1_eu628tg"}, "recorded_at": "2019-07-19T00:16:49"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/test/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"testing\", \"author_fullname\": \"t2_46nv213h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_cezq28\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563520033.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etesting\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cezq28\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Want2CNorthernLights\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cezq28/testing/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cezq28/testing/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563491233.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"Learn more here: www.loopcv.pro\", \"author_fullname\": \"t2_39zcbp3d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test post by Loopcv\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_cezpxf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563520016.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELearn more here: \\u003Ca href=\\\"http://www.loopcv.pro\\\"\\u003Ewww.loopcv.pro\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?auto=webp\\u0026s=8b3fec1487f2cfcb031392b3b6aafcd367497373\", \"width\": 2560, \"height\": 994}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=1c15b8b5a049fc41a8273ab72bea82ca4a6d76a5\", \"width\": 108, \"height\": 41}, {\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=606b6e7073f8adf71b61159370e5b5b7c7a0479b\", \"width\": 216, \"height\": 83}, {\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=bf993a4bf2ccd90d52584e534dcb928696beb8bc\", \"width\": 320, \"height\": 124}, {\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=22537d9fceefc4c8c6cc8b533e2325acf34869bf\", \"width\": 640, \"height\": 248}, {\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=d491cc110c739452c3bc683e382fc8c95b5d4355\", \"width\": 960, \"height\": 372}, {\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d81ad039f3dba2c484bc778a78660f6f1388d968\", \"width\": 1080, \"height\": 419}], \"variants\": {}, \"id\": \"KRwChx0tX8Hmat0InLyWx63YacXkbCpMYxmAoM-k96Y\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cezpxf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"k32_ss\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cezpxf/test_post_by_loopcv/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cezpxf/test_post_by_loopcv/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563491216.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"Learn more here: www.loopcv.pro\", \"author_fullname\": \"t2_39zcbp3d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test post by Loopcv\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_ceziur\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563519007.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELearn more here: \\u003Ca href=\\\"http://www.loopcv.pro\\\"\\u003Ewww.loopcv.pro\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?auto=webp\\u0026s=8b3fec1487f2cfcb031392b3b6aafcd367497373\", \"width\": 2560, \"height\": 994}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=1c15b8b5a049fc41a8273ab72bea82ca4a6d76a5\", \"width\": 108, \"height\": 41}, {\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=606b6e7073f8adf71b61159370e5b5b7c7a0479b\", \"width\": 216, \"height\": 83}, {\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=bf993a4bf2ccd90d52584e534dcb928696beb8bc\", \"width\": 320, \"height\": 124}, {\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=22537d9fceefc4c8c6cc8b533e2325acf34869bf\", \"width\": 640, \"height\": 248}, {\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=d491cc110c739452c3bc683e382fc8c95b5d4355\", \"width\": 960, \"height\": 372}, {\"url\": \"https://external-preview.redd.it/ZJsXUOvy1ED9OaO4eENiN9kHgeT_GBGuJfnGo7S5RlI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d81ad039f3dba2c484bc778a78660f6f1388d968\", \"width\": 1080, \"height\": 419}], \"variants\": {}, \"id\": \"KRwChx0tX8Hmat0InLyWx63YacXkbCpMYxmAoM-k96Y\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceziur\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"k32_ss\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceziur/test_post_by_loopcv/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/ceziur/test_post_by_loopcv/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563490207.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"**!!!**\", \"author_fullname\": \"t2_3rov6k3j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hard to believe\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_cezhvt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563518868.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E!!!\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cezhvt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7961636B6572\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cezhvt/hard_to_believe/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cezhvt/hard_to_believe/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563490068.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_3ggfjhkx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"This #JayDoodles was inspired by the day @JayInslee met @AlexandriaV2005. Two incredible leaders fighting to protect our planet. Donate $10 or more and you're automatically entered to win a Jay original. They are invaluable. bit.ly/Sam4Inslee\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": true, \"name\": \"t3_cez9kr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/xyYe5acBLR9esAU8ap6KqPbfdlkvLek5xZRTNG-x0R4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563517689.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"twitter.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/cyVELu2RtTSfOlnY_7vHFNTG5atYprijkIIN2JE8DO8.jpg?auto=webp\\u0026s=6c29640372c773bd0ce99d4050347a854eeac79d\", \"width\": 2048, \"height\": 1539}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cyVELu2RtTSfOlnY_7vHFNTG5atYprijkIIN2JE8DO8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7540dcbfcbec724ca4d2a80232c56b7cd162ddcc\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/cyVELu2RtTSfOlnY_7vHFNTG5atYprijkIIN2JE8DO8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1ba0102538d3ee94fa88944a8d66c895a0d30a6f\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/cyVELu2RtTSfOlnY_7vHFNTG5atYprijkIIN2JE8DO8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=785d4cfb08e1bcc40b6b1e75a40592cd06ed0136\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/cyVELu2RtTSfOlnY_7vHFNTG5atYprijkIIN2JE8DO8.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=81c00e649d00d97a08783305a84459d640bd4e40\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/cyVELu2RtTSfOlnY_7vHFNTG5atYprijkIIN2JE8DO8.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=665fc4f0098d82480364d36bc357152704f1decd\", \"width\": 960, \"height\": 721}, {\"url\": \"https://external-preview.redd.it/cyVELu2RtTSfOlnY_7vHFNTG5atYprijkIIN2JE8DO8.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=0347225196e082a31ed11296f5ef09920f4e7665\", \"width\": 1080, \"height\": 811}], \"variants\": {}, \"id\": \"aPfXrUSumOlA8vj3bApAGQDVnOHHhx3Zp7YTqkdnGPQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cez9kr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yayforjay\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cez9kr/this_jaydoodles_was_inspired_by_the_day_jayinslee/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://twitter.com/SamGHolman/status/1151963212247515136\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563488889.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"jkhkhkhh\", \"author_fullname\": \"t2_4669o9ww\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"sdfkjhskdh\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceyjwg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563514179.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ejkhkhkhh\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceyjwg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cidermonkeycoozey\", \"num_crossposts\": 0, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceyjwg/sdfkjhskdh/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/ceyjwg/sdfkjhskdh/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563485379.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"Sup\", \"author_fullname\": \"t2_recfgkl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sup\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cexfgh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563508860.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESup\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cexfgh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jasoncosta1\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cexfgh/sup/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cexfgh/sup/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563480060.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_16desyu9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cewhwl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563504406.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cewhwl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Alirezarfe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cewhwl/test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cewhwl/test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563475606.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_4tuq7c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"why would you post this?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cewh05\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"why would you post this?\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/pccKZSw3D2l5jjH0fC04J49RfUyjYJAvdo2yJ6P7gBE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563504285.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/llgnmassx3b31.jpg?auto=webp\\u0026s=2a294b30dadd7e2177894a407a352ad1f527e304\", \"width\": 1429, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://preview.redd.it/llgnmassx3b31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=931757e6f17ead7f9eb916f958e71d63c1ee2372\", \"width\": 108, \"height\": 81}, {\"url\": \"https://preview.redd.it/llgnmassx3b31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0b3f5cd84c521ef6a95fb702e354bbbe9c43b08b\", \"width\": 216, \"height\": 163}, {\"url\": \"https://preview.redd.it/llgnmassx3b31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cb21c3a720f1cb0baba338a5e9cb9b046cd66398\", \"width\": 320, \"height\": 241}, {\"url\": \"https://preview.redd.it/llgnmassx3b31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=7bb44e341994b530be13ce4677d5c1d9de6bd40c\", \"width\": 640, \"height\": 483}, {\"url\": \"https://preview.redd.it/llgnmassx3b31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=a14f4887950c3c63f2fde1f01eec70ce89e8e747\", \"width\": 960, \"height\": 725}, {\"url\": \"https://preview.redd.it/llgnmassx3b31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=a446871f87e831fc3bdb7b7b1b85ff5a8c74dd06\", \"width\": 1080, \"height\": 816}], \"variants\": {}, \"id\": \"fQgeSP0-4keoV2pwRN-IivLE_Mdllot87J7F4vvgtDI\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"6b39b4a6-be2f-11e8-ac14-0e2593696d0a\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cewh05\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"akabomba\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cewh05/why_would_you_post_this/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/llgnmassx3b31.jpg\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563475485.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_2s4e183f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to use a Chromebook if you\\u2019ve switched from a PC\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 58, \"hide_score\": false, \"name\": \"t3_cewgf0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/hKexb8WR-H3-re-o6njmsDXXkogeaUWGD_I92BKz56Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563504206.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"cloud.google.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Wk1NhVDT8fiK6qE3uttjU19eB8m2V_WTecUe5ys8wE0.jpg?auto=webp\\u0026s=f9108cea858510a22492e1626e6711eb6c0d8997\", \"width\": 8834, \"height\": 3700}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Wk1NhVDT8fiK6qE3uttjU19eB8m2V_WTecUe5ys8wE0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c04be1250079d34e6175da065f8f0a7764fcf35d\", \"width\": 108, \"height\": 45}, {\"url\": \"https://external-preview.redd.it/Wk1NhVDT8fiK6qE3uttjU19eB8m2V_WTecUe5ys8wE0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=22a261ac6bd31dd9533827edf7d104a17130c4aa\", \"width\": 216, \"height\": 90}, {\"url\": \"https://external-preview.redd.it/Wk1NhVDT8fiK6qE3uttjU19eB8m2V_WTecUe5ys8wE0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=18b9a6e3cc57ec5e9440e63a78bcaea1cf08302f\", \"width\": 320, \"height\": 134}, {\"url\": \"https://external-preview.redd.it/Wk1NhVDT8fiK6qE3uttjU19eB8m2V_WTecUe5ys8wE0.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5e027172014d5dc75f7bb4af633a235593f56c56\", \"width\": 640, \"height\": 268}, {\"url\": \"https://external-preview.redd.it/Wk1NhVDT8fiK6qE3uttjU19eB8m2V_WTecUe5ys8wE0.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=1448d749bf182d6db2e225662621750eb93cd013\", \"width\": 960, \"height\": 402}, {\"url\": \"https://external-preview.redd.it/Wk1NhVDT8fiK6qE3uttjU19eB8m2V_WTecUe5ys8wE0.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=7fd10befca483bfd34a5b4d383809643235ed83c\", \"width\": 1080, \"height\": 452}], \"variants\": {}, \"id\": \"rYeu3wOHbU_jIiKj44kYrtsKpVZsS4g_U_8GpOfVOD4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cewgf0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gcebot\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cewgf0/how_to_use_a_chromebook_if_youve_switched_from_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://cloud.google.com/blog/products/chrome-enterprise/how-to-use-a-chromebook-if-youve-switched-from-a-pc/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563475406.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_2s4e183f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Introducing the What-If Tool for Cloud AI Platform models\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 58, \"hide_score\": false, \"name\": \"t3_cewges\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/n3v-FgtE4YTAArjZvbJh3Y6B6l18w8Ec4uENAn8uOx4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563504205.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"cloud.google.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/9uMbKTxCPZCMIYr0CHwpmZ_2w23LaZltXa3YEy1xjIE.jpg?auto=webp\\u0026s=8600b487c9285235d526377c09b454e41d9fbbb7\", \"width\": 2200, \"height\": 917}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/9uMbKTxCPZCMIYr0CHwpmZ_2w23LaZltXa3YEy1xjIE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5c85bdcc6c8b47652d766404c96f6c1c552529bd\", \"width\": 108, \"height\": 45}, {\"url\": \"https://external-preview.redd.it/9uMbKTxCPZCMIYr0CHwpmZ_2w23LaZltXa3YEy1xjIE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=bbf3b7809013e7579598d3a22a0067d8057cd1fb\", \"width\": 216, \"height\": 90}, {\"url\": \"https://external-preview.redd.it/9uMbKTxCPZCMIYr0CHwpmZ_2w23LaZltXa3YEy1xjIE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b776f7a293aa67c78846486c55efbd67b57d5a3d\", \"width\": 320, \"height\": 133}, {\"url\": \"https://external-preview.redd.it/9uMbKTxCPZCMIYr0CHwpmZ_2w23LaZltXa3YEy1xjIE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=44a1cf5c2590b73ee566dc6db4ccc29aca45d839\", \"width\": 640, \"height\": 266}, {\"url\": \"https://external-preview.redd.it/9uMbKTxCPZCMIYr0CHwpmZ_2w23LaZltXa3YEy1xjIE.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=fa77683ee3b96eb42dbc0280f0dc8f2c8021df5d\", \"width\": 960, \"height\": 400}, {\"url\": \"https://external-preview.redd.it/9uMbKTxCPZCMIYr0CHwpmZ_2w23LaZltXa3YEy1xjIE.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=5fc21979bef199b9ef2010ef565757532f5adfe1\", \"width\": 1080, \"height\": 450}], \"variants\": {}, \"id\": \"yVmMPlOLnppIb4ZKF51P7w3z5TkXvKK4GFBlxjr9nO4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cewges\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gcebot\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cewges/introducing_the_whatif_tool_for_cloud_ai_platform/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://cloud.google.com/blog/products/ai-machine-learning/introducing-the-what-if-tool-for-cloud-ai-platform-models/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563475405.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"j\", \"author_fullname\": \"t2_1u7ods3k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"fxg afl;j afl;jk\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cewbqe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563475026.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563503599.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ej\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cewbqe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"whatthisguythinks2\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cewbqe/fxg_aflj_afljk/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cewbqe/fxg_aflj_afljk/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563474799.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_44x3i0cx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Supers test room smoke detector July 18, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cevao1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563498794.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cevao1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"330metcalfe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cevao1/supers_test_room_smoke_detector_july_18_2019/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cevao1/supers_test_room_smoke_detector_july_18_2019/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563469994.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_2s4e183f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Gartner names Google Cloud a leader in its IaaS Magic Quadrant\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 70, \"hide_score\": false, \"name\": \"t3_ceun74\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/--RcZZyO2SmqwjoZf1okyOp8sDjB3nxi-vbJFYYMs_E.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563495759.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"cloud.google.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?auto=webp\\u0026s=8efc55171fd0a427a28d9069847ef7af5e5802e3\", \"width\": 2000, \"height\": 1000}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a71515dd749470705cc95c271cf35b784811921a\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5fc53035f3ef4bb8f2147cd666b4645e6f039c1a\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=25b24f245ce909511976b673b2abeef96220451a\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=bd4b169b5b7092e3c928c5e181abce21aa45703d\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=0d5a813e819cd9b2a8ce703f324f07e17ebac9ca\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c8bd036b721e1eac7ddc448c58fb43bbf6606242\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"Fad5Fc7OxRR97JavIciAVmktS8G1ETYGG69NGNr_Ilk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceun74\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gcebot\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceun74/gartner_names_google_cloud_a_leader_in_its_iaas/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://cloud.google.com/blog/products/gcp/gartner-names-google-cloud-a-leader-in-its-iaas-magic-quadrant/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563466959.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_2s4e183f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"IT set free to innovate with Chrome Enterprise\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 58, \"hide_score\": false, \"name\": \"t3_ceun6t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/htjnB_nqY7hW6zUcCQX5hlZ7eQfXaKW1Zzl0CHScsMQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563495758.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"cloud.google.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/EQwlkdhzJQY0ALhpJpPrnfyna9meUlNc7bFVlawuI0c.jpg?auto=webp\\u0026s=cd13eb18f890f5f93e3025c7a45107afa3c071fd\", \"width\": 5761, \"height\": 2400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/EQwlkdhzJQY0ALhpJpPrnfyna9meUlNc7bFVlawuI0c.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e0589423edcb6160bddad5633a5bd3f31cf07301\", \"width\": 108, \"height\": 44}, {\"url\": \"https://external-preview.redd.it/EQwlkdhzJQY0ALhpJpPrnfyna9meUlNc7bFVlawuI0c.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=931e8b36b4c52d0a44cf4ac4c8c8fdcac18fdd7d\", \"width\": 216, \"height\": 89}, {\"url\": \"https://external-preview.redd.it/EQwlkdhzJQY0ALhpJpPrnfyna9meUlNc7bFVlawuI0c.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ea1f882c81aeb1cc704af2764c00c0b396be220d\", \"width\": 320, \"height\": 133}, {\"url\": \"https://external-preview.redd.it/EQwlkdhzJQY0ALhpJpPrnfyna9meUlNc7bFVlawuI0c.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1d1a543d73390166a6d81de070a38a0be69c8d47\", \"width\": 640, \"height\": 266}, {\"url\": \"https://external-preview.redd.it/EQwlkdhzJQY0ALhpJpPrnfyna9meUlNc7bFVlawuI0c.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=0e2ccd12e0216aa9227c2838214549ffed30433f\", \"width\": 960, \"height\": 399}, {\"url\": \"https://external-preview.redd.it/EQwlkdhzJQY0ALhpJpPrnfyna9meUlNc7bFVlawuI0c.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=cd0ec3d22223ca91d2476c21478277f91052c30d\", \"width\": 1080, \"height\": 449}], \"variants\": {}, \"id\": \"yTBbxuG6jmtAAvG4wLxlyHkPljITBypgDK68NnBaWGQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceun6t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gcebot\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceun6t/it_set_free_to_innovate_with_chrome_enterprise/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://cloud.google.com/blog/products/chrome-enterprise/it-set-free-to-innovate-with-chrome-enterprise/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563466958.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_2s4e183f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Operate with confidence: Keeping your functions functioning with monitoring, logging and error reporting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 70, \"hide_score\": false, \"name\": \"t3_ceun6j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/tnmL7tKaLVjrI8V1yPddE7A1vsi30ncxtIQrWS8H1A4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563495758.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"cloud.google.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?auto=webp\\u0026s=8efc55171fd0a427a28d9069847ef7af5e5802e3\", \"width\": 2000, \"height\": 1000}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a71515dd749470705cc95c271cf35b784811921a\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5fc53035f3ef4bb8f2147cd666b4645e6f039c1a\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=25b24f245ce909511976b673b2abeef96220451a\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=bd4b169b5b7092e3c928c5e181abce21aa45703d\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=0d5a813e819cd9b2a8ce703f324f07e17ebac9ca\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/riQjRyDAECCRriDkWgwrNpk9BPZoVMSrFl2Du8RYfI8.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c8bd036b721e1eac7ddc448c58fb43bbf6606242\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"Fad5Fc7OxRR97JavIciAVmktS8G1ETYGG69NGNr_Ilk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceun6j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gcebot\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceun6j/operate_with_confidence_keeping_your_functions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://cloud.google.com/blog/products/devops-sre/keeping-your-functions-functioning-with-monitoring-logging-and-error-reporting/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563466958.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you trust FaceApp with your face?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_ceu237\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/1V_9EXUc_SlR_tj9zxgiwdciMmud1DYwWfO4_fwQYbE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563493031.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"bbc.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/aT0TS8ODxOJMID75bQix2HWZzGDpxkMk9fidkuScXPo.jpg?auto=webp\\u0026s=37dc36efa2d3a56152110c1ef7c06ac765c49b62\", \"width\": 1024, \"height\": 576}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/aT0TS8ODxOJMID75bQix2HWZzGDpxkMk9fidkuScXPo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a3dd6914bb05871c93fe99f6eca32293aa91d830\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/aT0TS8ODxOJMID75bQix2HWZzGDpxkMk9fidkuScXPo.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6be241e1273efedc5c268bda7188b31a7a3d23af\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/aT0TS8ODxOJMID75bQix2HWZzGDpxkMk9fidkuScXPo.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c54ae521769856f3c71eb463a41bd848bdcf2fb9\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/aT0TS8ODxOJMID75bQix2HWZzGDpxkMk9fidkuScXPo.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1fa718df1763444235845c851ac16e06347929e9\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/aT0TS8ODxOJMID75bQix2HWZzGDpxkMk9fidkuScXPo.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=103956b36fe91522a392a58a3be10c54841f6fe8\", \"width\": 960, \"height\": 540}], \"variants\": {}, \"id\": \"nz6aVDzFWlOGqB3J9PE2depj2u7hWDBzFmI_rOULkj0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceu237\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceu237/can_you_trust_faceapp_with_your_face/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.bbc.com/news/technology-49018103\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563464231.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_2kcyyy09\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test 2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_ceu1g3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/I_kGiJaMLNfkCFqnhkJI94RsOZttQxWnzSn_GX6Wi7k.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563492949.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/4nm3y50303b31.jpg?auto=webp\\u0026s=427ab2ee9981de07223ea1e4a11adf9132345172\", \"width\": 1920, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://preview.redd.it/4nm3y50303b31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=6f39f102f4d011cdc941d71127bfe8df9e23402f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://preview.redd.it/4nm3y50303b31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1313f4a4a5a1a196bf1ca11df0734e92cd658101\", \"width\": 216, \"height\": 121}, {\"url\": \"https://preview.redd.it/4nm3y50303b31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ab72c01282f61854d714df751c5c3def46009091\", \"width\": 320, \"height\": 180}, {\"url\": \"https://preview.redd.it/4nm3y50303b31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=2730920904b260103d23d6cbd0d95c7e1d6b7fea\", \"width\": 640, \"height\": 360}, {\"url\": \"https://preview.redd.it/4nm3y50303b31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=dde4608e519d1c94cf93d26c882b76987e805d2f\", \"width\": 960, \"height\": 540}, {\"url\": \"https://preview.redd.it/4nm3y50303b31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=eda3e371fa57a1eba8f26ab02f605dd80236a504\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"afqHnB0whLOurN5O0GWFhBiBP8emCBEeWsahpYoHQGQ\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceu1g3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bretojun\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceu1g3/test_2/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/4nm3y50303b31.jpg\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563464149.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_12tgxe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"mx master test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cetu8p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563492018.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cetu8p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"musicalchemists\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cetu8p/mx_master_test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cetu8p/mx_master_test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563463218.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_46kdlfp1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test by george\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_cetqh5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/432gZ12xQEXJXziUXDxhC8MRrciQB7jY7DhFXmQIyDs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563491543.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/23mh7ewwv2b31.jpg?auto=webp\\u0026s=f30c628ba23d2095d35460713ecec38876fb5a4c\", \"width\": 2336, \"height\": 1552}, \"resolutions\": [{\"url\": \"https://preview.redd.it/23mh7ewwv2b31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=39aaf5bc1cd3f469e9d1b8314f0da52a1f8029cc\", \"width\": 108, \"height\": 71}, {\"url\": \"https://preview.redd.it/23mh7ewwv2b31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c303d103dfc5da92bc47a6eb62defabac2989247\", \"width\": 216, \"height\": 143}, {\"url\": \"https://preview.redd.it/23mh7ewwv2b31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8ceabb28d79bb32871018e85d21190fad66f046b\", \"width\": 320, \"height\": 212}, {\"url\": \"https://preview.redd.it/23mh7ewwv2b31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5554c4f1d6d8cf7580dec8472852fc3d8aefdc60\", \"width\": 640, \"height\": 425}, {\"url\": \"https://preview.redd.it/23mh7ewwv2b31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=ac5efe0b2a0251e86dc6469a147314defc74e500\", \"width\": 960, \"height\": 637}, {\"url\": \"https://preview.redd.it/23mh7ewwv2b31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=a768ed5ed5295395baef0e48c98d3d7222e6551d\", \"width\": 1080, \"height\": 717}], \"variants\": {}, \"id\": \"ANKSqSxDZNtGr1d_IgXco0HgpEfL39mlySJduS1prGo\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cetqh5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Georgina87077\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cetqh5/test_by_george/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/23mh7ewwv2b31.jpg\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563462743.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"Testing 123\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/tysl6vogs2b31.jpg\", \"author_fullname\": \"t2_239cx8cy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"media_metadata\": {\"tysl6vogs2b31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 697, \"x\": 527, \"u\": \"https://i.redd.it/tysl6vogs2b31.jpg\"}, \"m\": \"image/jpg\", \"id\": \"tysl6vogs2b31\"}}, \"name\": \"t3_cethl0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/SLPJFaebYDl5AiduzbdGQtLCdYrnS1vu0u_MtWsFDek.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563490360.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETesting 123\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/tysl6vogs2b31.jpg\\\"\\u003Ehttps://i.redd.it/tysl6vogs2b31.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cethl0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"oh5nxo\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cethl0/test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cethl0/test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563461560.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_3gjg53yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test YT Link\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_ceta1t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jYPrH4xANpU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"The Economics of Private Jets\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jYPrH4xANpU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"Wendover Productions\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/jYPrH4xANpU/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/Wendoverproductions\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jYPrH4xANpU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/ceta1t\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"spoiler\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563489328.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/VWlJ5fyIU2W9dI5x-4SUj20M11NXLaqut3Xk9f0Y6nw.jpg?auto=webp\\u0026s=e09107ded4954f23545bd40e861ba6cd88a665d7\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/VWlJ5fyIU2W9dI5x-4SUj20M11NXLaqut3Xk9f0Y6nw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=14877b143c92b56e5658abaeba761629b2336c51\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/VWlJ5fyIU2W9dI5x-4SUj20M11NXLaqut3Xk9f0Y6nw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f460ea59a5567c0a8bd19c72a7b53695ad75961f\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/VWlJ5fyIU2W9dI5x-4SUj20M11NXLaqut3Xk9f0Y6nw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=722314496954f0ccd57a16685c299ef89c97e439\", \"width\": 320, \"height\": 240}], \"variants\": {\"obfuscated\": {\"source\": {\"url\": \"https://external-preview.redd.it/VWlJ5fyIU2W9dI5x-4SUj20M11NXLaqut3Xk9f0Y6nw.jpg?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=b5557df713213122a5b721eb144183a5f14bee02\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/VWlJ5fyIU2W9dI5x-4SUj20M11NXLaqut3Xk9f0Y6nw.jpg?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=2daa47fff09f51f5d9037aaef6550a5164e78e51\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/VWlJ5fyIU2W9dI5x-4SUj20M11NXLaqut3Xk9f0Y6nw.jpg?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=b39c917b47e9ccc205befc80e1079df22d9b69e9\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/VWlJ5fyIU2W9dI5x-4SUj20M11NXLaqut3Xk9f0Y6nw.jpg?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=0762debc6241bbdbc7e3d40a3117f8ff5eb94e65\", \"width\": 320, \"height\": 240}]}}, \"id\": \"kW6VcrGsYfgICDZOboTxwgOp3fkKK5J52wUcL-G8hTA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": true, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceta1t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"chpmmiest\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceta1t/test_yt_link/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=jYPrH4xANpU\\u0026feature=youtu.be\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563460528.0, \"discussion_type\": null, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"The Economics of Private Jets\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/jYPrH4xANpU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"Wendover Productions\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/jYPrH4xANpU/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/Wendoverproductions\"}, \"type\": \"youtube.com\"}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"#test in process\", \"author_fullname\": \"t2_23j5jvi2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cesih2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563485421.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003Etest in process\\u003C/h1\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cesih2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BucketHeadCrusader\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cesih2/test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cesih2/test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563456621.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"I m a g i n e a t e s t\", \"author_fullname\": \"t2_11tx84\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I love tests\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cerhad\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563479522.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI m a g i n e a t e s t\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cerhad\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"enei200\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cerhad/i_love_tests/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cerhad/i_love_tests/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563450722.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_44rxttae\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"VaricoNot (\\u0412\\u0430\\u0440\\u0438\\u043a\\u043e\\u041d\\u043e\\u0442) - \\u043a\\u0440\\u0435\\u043c \\u043e\\u0442 \\u0432\\u0430\\u0440\\u0438\\u043a\\u043e\\u0437\\u0430\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ceqbah\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/NN15i1Oa_0dn9xtRmhlb3rGP502vHdEquCew_Z48r-Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563471565.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"mobeldeco.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/GTpqRk-T43bctMP1evSwhnTBfumJ60KizuGW5B-nZXo.jpg?auto=webp\\u0026s=a8ef0b0ef7d1967f08a7ebd7f5da6fb76d10eeef\", \"width\": 216, \"height\": 216}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/GTpqRk-T43bctMP1evSwhnTBfumJ60KizuGW5B-nZXo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e30d0a8777ee1442393bed6cedea502e4b3f62b0\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/GTpqRk-T43bctMP1evSwhnTBfumJ60KizuGW5B-nZXo.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f0fa2714efe681b29476b7ac13a32a361710b353\", \"width\": 216, \"height\": 216}], \"variants\": {}, \"id\": \"kvKjYp_kqj-gEUy0LiAbfniR9XdVhCfk60_wUUaHtiI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceqbah\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mobeldeco\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceqbah/variconot_\\u0432\\u0430\\u0440\\u0438\\u043a\\u043e\\u043d\\u043e\\u0442_\\u043a\\u0440\\u0435\\u043c_\\u043e\\u0442_\\u0432\\u0430\\u0440\\u0438\\u043a\\u043e\\u0437\\u0430/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://mobeldeco.com/kupit-variconot-krem-ot-varikoza-p2663.html\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563442765.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"Test\", \"author_fullname\": \"t2_ec01x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Checking I can still post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cepzz9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563469256.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cepzz9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CatsHaveBeanToes\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cepzz9/checking_i_can_still_post/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cepzz9/checking_i_can_still_post/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563440456.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_44ru4p29\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"VaricoNot (\\u0412\\u0430\\u0440\\u0438\\u043a\\u043e\\u041d\\u043e\\u0442) - \\u043a\\u0440\\u0435\\u043c \\u043e\\u0442 \\u0432\\u0430\\u0440\\u0438\\u043a\\u043e\\u0437\\u0430\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cepzji\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/rxtye_wlt5ihOD-JImUIB5Y5vf2iLaFj-bDCAH7sVcI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563469163.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"autorider.net\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/GTpqRk-T43bctMP1evSwhnTBfumJ60KizuGW5B-nZXo.jpg?auto=webp\\u0026s=a8ef0b0ef7d1967f08a7ebd7f5da6fb76d10eeef\", \"width\": 216, \"height\": 216}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/GTpqRk-T43bctMP1evSwhnTBfumJ60KizuGW5B-nZXo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e30d0a8777ee1442393bed6cedea502e4b3f62b0\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/GTpqRk-T43bctMP1evSwhnTBfumJ60KizuGW5B-nZXo.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f0fa2714efe681b29476b7ac13a32a361710b353\", \"width\": 216, \"height\": 216}], \"variants\": {}, \"id\": \"kvKjYp_kqj-gEUy0LiAbfniR9XdVhCfk60_wUUaHtiI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cepzji\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"autorider\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cepzji/variconot_\\u0432\\u0430\\u0440\\u0438\\u043a\\u043e\\u043d\\u043e\\u0442_\\u043a\\u0440\\u0435\\u043c_\\u043e\\u0442_\\u0432\\u0430\\u0440\\u0438\\u043a\\u043e\\u0437\\u0430/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://autorider.net/page-kupit-variconot-krem-ot-varikoza-tovar_id2662.html\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563440363.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_44rxttae\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Selazeen (\\u0421\\u0435\\u043b\\u0430\\u0437\\u0438\\u043d) - \\u0413\\u0435\\u043b\\u044c \\u0434\\u043b\\u044f \\u0443\\u0441\\u0442\\u043e\\u0438\\u0306\\u0447\\u0438\\u0432\\u043e\\u0438\\u0306 \\u044d\\u0440\\u0435\\u043a\\u0446\\u0438\\u0438\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cepugg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563467990.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"mobeldeco.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cepugg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mobeldeco\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cepugg/selazeen_\\u0441\\u0435\\u043b\\u0430\\u0437\\u0438\\u043d_\\u0433\\u0435\\u043b\\u044c_\\u0434\\u043b\\u044f_\\u0443\\u0441\\u0442\\u043e\\u0438\\u0447\\u0438\\u0432\\u043e\\u0438_\\u044d\\u0440\\u0435\\u043a\\u0446\\u0438\\u0438/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://mobeldeco.com/kupit-selazeen-gel-dla-ustojcivoj-erekcii-p2661.html\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563439190.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_2pbll8ns\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"FlipBelt (\\u0424\\u043b\\u0438\\u043f\\u0411\\u0435\\u043b\\u0442) - \\u043f\\u043e\\u044f\\u0441 \\u0434\\u043b\\u044f \\u0441\\u043f\\u043e\\u0440\\u0442\\u0430\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cepp2k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/p_ZHZ7w5xV2W3A1jZpmcekQQu_DJJFP3jtqPC477d6E.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563466766.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yagodkaopat.ru\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/OrTobjZluVnl57uibg48yIxyDUq3XfDj7uIKfn4X3JI.jpg?auto=webp\\u0026s=97bce92231ec124e6389c63d6d26136a4d2c01f7\", \"width\": 216, \"height\": 216}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/OrTobjZluVnl57uibg48yIxyDUq3XfDj7uIKfn4X3JI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=40a16259d94b30e7461cb8d3322938fd00e1d479\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/OrTobjZluVnl57uibg48yIxyDUq3XfDj7uIKfn4X3JI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5e351ceeb12a2dfd958a4478ded33c9042ab37a0\", \"width\": 216, \"height\": 216}], \"variants\": {}, \"id\": \"mFR6IH9WAWDWxCBxq7ll9HDOMlpweUREoM2IKTx3OKk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cepp2k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yagodkaopat\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cepp2k/flipbelt_\\u0444\\u043b\\u0438\\u043f\\u0431\\u0435\\u043b\\u0442_\\u043f\\u043e\\u044f\\u0441_\\u0434\\u043b\\u044f_\\u0441\\u043f\\u043e\\u0440\\u0442\\u0430/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yagodkaopat.ru/kupit-flipbelt-poas-dla-sporta.html\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563437966.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_2pbll8ns\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\u041a\\u0440\\u043e\\u0441\\u0441\\u043e\\u0432\\u043a\\u0438 Salomon Speedcross 3\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cepmde\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/YYbjPp4namFpWpYbQ_eqV0YSJzXT2JoIwp8G6ZwF9QA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563466165.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yagodkaopat.ru\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/6Wjl-v3G7DICJa1PGRWiNB5nxrwUNQmFab1yGr0JIrw.jpg?auto=webp\\u0026s=7cf13cb73e834328a01867f6e7472389f2bab222\", \"width\": 216, \"height\": 216}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/6Wjl-v3G7DICJa1PGRWiNB5nxrwUNQmFab1yGr0JIrw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=78df85f23b79e5d630efd506bc4837bde41a59ef\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/6Wjl-v3G7DICJa1PGRWiNB5nxrwUNQmFab1yGr0JIrw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=25712430a97abe905b835111a8d7fa40998fecc9\", \"width\": 216, \"height\": 216}], \"variants\": {}, \"id\": \"VTrS9K1YNFch-AjQv-6fZYTbQ3MQU804npXdhTLOs_I\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cepmde\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yagodkaopat\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cepmde/\\u043a\\u0440\\u043e\\u0441\\u0441\\u043e\\u0432\\u043a\\u0438_salomon_speedcross_3/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yagodkaopat.ru/kupit-krossovki-salomon-speedcross-3.html\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563437365.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"my first post\", \"author_fullname\": \"t2_2us2p0gk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"My first post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cepk7y\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563465707.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emy first post\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cepk7y\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cool_username_91210\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cepk7y/my_first_post/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cepk7y/my_first_post/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563436907.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_46ciohke\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop Beep Boop\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 53, \"hide_score\": false, \"name\": \"t3_cenqzl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/oilzCdjEnoK7Afq5_Q3mygwJzZjbGOiCrq2F6U3XA04.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563452837.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/txms7l3loza31.jpg?auto=webp\\u0026s=2584f54c7bca2bfba06fef8b962c56bcc026432d\", \"width\": 1614, \"height\": 614}, \"resolutions\": [{\"url\": \"https://preview.redd.it/txms7l3loza31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=6ab66a12d2e8261e1524bd90150014767a61241a\", \"width\": 108, \"height\": 41}, {\"url\": \"https://preview.redd.it/txms7l3loza31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c07e963d2184fcc689c11c08b8b2aae7f094c033\", \"width\": 216, \"height\": 82}, {\"url\": \"https://preview.redd.it/txms7l3loza31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4f069151eb8afbdd98c765922ca4c5bb955fa34f\", \"width\": 320, \"height\": 121}, {\"url\": \"https://preview.redd.it/txms7l3loza31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1a255ea9f2a5008182b70fcf638614cd0f3affa6\", \"width\": 640, \"height\": 243}, {\"url\": \"https://preview.redd.it/txms7l3loza31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=da3776a114ccc88a73827a6845817c34c6f5c1ce\", \"width\": 960, \"height\": 365}, {\"url\": \"https://preview.redd.it/txms7l3loza31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=1e83631fac620444e5b57c8e26ff2d02f0c8b55e\", \"width\": 1080, \"height\": 410}], \"variants\": {}, \"id\": \"SgOmrCdiicopBSKYJibec4SDiNJtCN2Sm46k1aC7SD4\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cenqzl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Oov_voO\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cenqzl/beep_boop_beep_boop_beep_boop_beep_boop_beep_boop/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/txms7l3loza31.jpg\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563424037.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"# Blah Blah Blah\\n\\nBlah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[Blah Blah Blah](https://i.redd.it/3w9zuaoqmza31.jpg)\\n\\nBlah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n|**Blah**|**Blah**|**Blah**|**Blah**|**Blah**|**Blah**|**Blah**|\\n|:-|:-|:-|:-|:-|:-|:-|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n|Blah|Blah|Blah|Blah|Blah|Blah|Blah|\\n\\n\\u0026#x200B;\\n\\nBlah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah\", \"author_fullname\": \"t2_46ciohke\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Blah Blah Blah\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 53, \"hide_score\": false, \"media_metadata\": {\"3w9zuaoqmza31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 614, \"x\": 1614, \"u\": \"https://i.redd.it/3w9zuaoqmza31.jpg\"}, \"m\": \"image/jpg\", \"id\": \"3w9zuaoqmza31\"}}, \"name\": \"t3_cennf8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/cXFywtX1aQ_2uepppENvJ6gdptMzZniiF3xUrozzu4M.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563452233.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EBlah Blah Blah\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EBlah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/3w9zuaoqmza31.jpg\\\"\\u003EBlah Blah Blah\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EBlah\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EBlah\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EBlah\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EBlah\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EBlah\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EBlah\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EBlah\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EBlah\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cennf8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Oov_voO\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cennf8/blah_blah_blah/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cennf8/blah_blah_blah/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563423433.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"you are more german than me\", \"author_fullname\": \"t2_n28j0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"you are more german than me\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cen2z0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563448838.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyou are more german than me\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cen2z0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thatguy5827\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cen2z0/you_are_more_german_than_me/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cen2z0/you_are_more_german_than_me/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563420038.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"Something\\n\\n1. Foo\\n\\n Foo1\\n\\n2. Bar\\n\\n Bar2\\n\\n3. Baz\", \"author_fullname\": \"t2_yit3a\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cemgdg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563445172.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESomething\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFoo\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFoo1\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EBar\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBar2\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EBaz\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cemgdg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"I_hate_all_of_ewe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cemgdg/test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cemgdg/test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563416372.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_3x86n2gk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cemccg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/PEBS2jbZce4?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Joji - TEST DRIVE\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/PEBS2jbZce4?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"88rising\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/PEBS2jbZce4/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCZW5lIUz93q_aZIkJPAC0IQ\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/PEBS2jbZce4?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cemccg\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/TQ5BLMUIDUu-pElUNpwTvxOw1NDOvzBnxb0f9gW5_Gk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563444517.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/lteCcNBzkr1jtsOKoB2z6CoGUFGbhQd_0NhfqRoWQnY.jpg?auto=webp\\u0026s=de0ba8400bef7891f0a50fc193564628256e72e6\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/lteCcNBzkr1jtsOKoB2z6CoGUFGbhQd_0NhfqRoWQnY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4e800c11af15a4f22e6f7802f559b1e617432ead\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/lteCcNBzkr1jtsOKoB2z6CoGUFGbhQd_0NhfqRoWQnY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3b21ed3260c7f29cdb5a1c5b80183aabc5ed8f76\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/lteCcNBzkr1jtsOKoB2z6CoGUFGbhQd_0NhfqRoWQnY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=e21036a5beed9856657eb6afcb100fd85349ba78\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"HLlsd-rJ84gb9kOcsSTjNhXoCGG7dAID5bFgC1BhZEw\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cemccg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ccstonetattoos\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cemccg/test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/PEBS2jbZce4\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563415717.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Joji - TEST DRIVE\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/PEBS2jbZce4?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"88rising\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/PEBS2jbZce4/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCZW5lIUz93q_aZIkJPAC0IQ\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"Testing\", \"author_fullname\": \"t2_3l9atgvp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[BUG] Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_celtls\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563441566.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETesting\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"celtls\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"XMALCOLMMLK\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/celtls/bug_test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/celtls/bug_test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563412766.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"logo sdfsdf\", \"author_fullname\": \"t2_z7606\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[TASK] test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cekwml\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563436534.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Elogo sdfsdf\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cekwml\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_PM_ME_YOUR_ELBOWS\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cekwml/task_test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cekwml/task_test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563407734.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_gn07l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"link\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_ceks8o\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/lbeqk2feaya31/DASH_480?source=fallback\", \"height\": 480, \"width\": 852, \"scrubber_media_url\": \"https://v.redd.it/lbeqk2feaya31/DASH_96\", \"dash_url\": \"https://v.redd.it/lbeqk2feaya31/DASHPlaylist.mpd\", \"duration\": 455, \"hls_url\": \"https://v.redd.it/lbeqk2feaya31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"nsfw\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563435893.0, \"link_flair_type\": \"text\", \"wls\": 3, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": true, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?format=pjpg\\u0026auto=webp\\u0026s=1251d734b5d50684b73dc3796a73939506fd1510\", \"width\": 853, \"height\": 480}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=71baaa3c50b24f67fdbf8b14a4c7ac59d33fcc5f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=88453fea05a61caeab8200895f6b2762c9df5405\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=16ef3aeaa123e90eeb373c9163c1c44e1d139bf7\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?width=640\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=b7bed6a995c2c4da34596484a9817deee1087592\", \"width\": 640, \"height\": 360}], \"variants\": {\"obfuscated\": {\"source\": {\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=2fb0ed7033396f32e90949224d48808a37d63a72\", \"width\": 853, \"height\": 480}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=43a29141f81ef2dbf7cfc7534c59a12eb8d8c5b5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=a1a6a0622833d5b184fcd12aef7c7c119bddcefa\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=7e8aa1c1775f196feb3a316475630907dae411d9\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?width=640\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=805861d246e3573c5f510d1696f5f60b2f9e0149\", \"width\": 640, \"height\": 360}]}, \"nsfw\": {\"source\": {\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=2fb0ed7033396f32e90949224d48808a37d63a72\", \"width\": 853, \"height\": 480}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=43a29141f81ef2dbf7cfc7534c59a12eb8d8c5b5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=a1a6a0622833d5b184fcd12aef7c7c119bddcefa\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=7e8aa1c1775f196feb3a316475630907dae411d9\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/cRHMwze3MiaWwhRgIgnfnJrZAqQTIZGnAb3hNeIKXO4.png?width=640\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=805861d246e3573c5f510d1696f5f60b2f9e0149\", \"width\": 640, \"height\": 360}]}}, \"id\": \"Cb_UUdKW0MSwKTQecR4umRhD57XMLHUddzzfrYFl8yU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceks8o\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BluntsAndBottles\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"promo_adult_nsfw\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceks8o/link/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://v.redd.it/lbeqk2feaya31\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563407093.0, \"discussion_type\": null, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/lbeqk2feaya31/DASH_480?source=fallback\", \"height\": 480, \"width\": 852, \"scrubber_media_url\": \"https://v.redd.it/lbeqk2feaya31/DASH_96\", \"dash_url\": \"https://v.redd.it/lbeqk2feaya31/DASHPlaylist.mpd\", \"duration\": 455, \"hls_url\": \"https://v.redd.it/lbeqk2feaya31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"/u/BoyAndHisBot 98\", \"author_fullname\": \"t2_majox\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cekee1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563433904.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/BoyAndHisBot\\\"\\u003E/u/BoyAndHisBot\\u003C/a\\u003E 98\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cekee1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AnonymousSpaceMonkey\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cekee1/test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cekee1/test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563405104.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\\\\^\\\\^Title\", \"author_fullname\": \"t2_46e5jj42\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Georgie this is legit my main Reddit account, why you even checkin creep?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceit02\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563426165.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E^^Title\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceit02\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Thisislegitmyaccount\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceit02/georgie_this_is_legit_my_main_reddit_account_why/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/ceit02/georgie_this_is_legit_my_main_reddit_account_why/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563397365.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"u/nwordcountbot u/quetzalgamer\", \"author_fullname\": \"t2_e3hpzw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cehakq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563419436.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/nwordcountbot\\\"\\u003Eu/nwordcountbot\\u003C/a\\u003E \\u003Ca href=\\\"/u/quetzalgamer\\\"\\u003Eu/quetzalgamer\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cehakq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ILikeMultipleThings\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cehakq/test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cehakq/test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563390636.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_2s4e183f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to start using G Suite in 5 easy steps\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 77, \"hide_score\": false, \"name\": \"t3_cego21\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/6Iz_M_6cuXOlxA9DqYR_NNM7-XD-9cLQT0aAcY-4tnM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563416546.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"cloud.google.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/5tpvAk9zTPEz_X2eBoy6KqacL9-gxEb_iMJ3jJGZmZY.jpg?auto=webp\\u0026s=568567e77fa7cf3db02758c6b4319fe51c4d2f20\", \"width\": 1000, \"height\": 555}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/5tpvAk9zTPEz_X2eBoy6KqacL9-gxEb_iMJ3jJGZmZY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=dfc60a5f556d7c61330c93303a5a2d3cd266654c\", \"width\": 108, \"height\": 59}, {\"url\": \"https://external-preview.redd.it/5tpvAk9zTPEz_X2eBoy6KqacL9-gxEb_iMJ3jJGZmZY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0a1fdf000ac54a7244e51b97a47e91c20b9c3e30\", \"width\": 216, \"height\": 119}, {\"url\": \"https://external-preview.redd.it/5tpvAk9zTPEz_X2eBoy6KqacL9-gxEb_iMJ3jJGZmZY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a73d371c21f9f0985fbfa85411b415061e5ad388\", \"width\": 320, \"height\": 177}, {\"url\": \"https://external-preview.redd.it/5tpvAk9zTPEz_X2eBoy6KqacL9-gxEb_iMJ3jJGZmZY.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=131be2daef16a98c0d61c31c6994a3d9e38a0e9e\", \"width\": 640, \"height\": 355}, {\"url\": \"https://external-preview.redd.it/5tpvAk9zTPEz_X2eBoy6KqacL9-gxEb_iMJ3jJGZmZY.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=730cad4351ab3ad39b957b8d04a47318492ec656\", \"width\": 960, \"height\": 532}], \"variants\": {}, \"id\": \"Lb1nbD5CuDDKInipXxreypJwnmVcIftll_GhPLiFSIE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cego21\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gcebot\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cego21/how_to_start_using_g_suite_in_5_easy_steps/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://cloud.google.com/blog/products/g-suite/how-to-start-using-g-suite-in-5-easy-steps/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563387746.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\\\\^test\\n\\n\\\\[...\\\\]test\\\\[...\\\\]\", \"author_fullname\": \"t2_1mieoko9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cegb6m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563414917.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E^test\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[...]test[...]\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cegb6m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Compodulator\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cegb6m/test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cegb6m/test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563386117.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_2s4e183f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Keep calm and query on: Running your databases in GCP\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 58, \"hide_score\": false, \"name\": \"t3_cef30q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/CKqQ_w9o99ZurldYy7T2kyUlMhtwPJZwudqFdr5jl6c.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563409364.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"cloud.google.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/qF4gyEF4DWiAaDxlOnsKZjBibQEiwDndArFBvskIKyI.jpg?auto=webp\\u0026s=cb7945809da8c1b0dc99aa4599ddd7488cc9298f\", \"width\": 2880, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/qF4gyEF4DWiAaDxlOnsKZjBibQEiwDndArFBvskIKyI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f11d4046fefeb7bce5437d584f32aac8817ed04f\", \"width\": 108, \"height\": 45}, {\"url\": \"https://external-preview.redd.it/qF4gyEF4DWiAaDxlOnsKZjBibQEiwDndArFBvskIKyI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4f889d8b4363e49ee2cbc45f9ca4b5929c6f3199\", \"width\": 216, \"height\": 90}, {\"url\": \"https://external-preview.redd.it/qF4gyEF4DWiAaDxlOnsKZjBibQEiwDndArFBvskIKyI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7fb3e854e02acd7e65942931b52e596ce457416b\", \"width\": 320, \"height\": 133}, {\"url\": \"https://external-preview.redd.it/qF4gyEF4DWiAaDxlOnsKZjBibQEiwDndArFBvskIKyI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f195f7f735cdee3ef859a3abfee03697f9850b59\", \"width\": 640, \"height\": 266}, {\"url\": \"https://external-preview.redd.it/qF4gyEF4DWiAaDxlOnsKZjBibQEiwDndArFBvskIKyI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=040d552e86d224fa08d4c5214bc53ae5ddbac45c\", \"width\": 960, \"height\": 400}, {\"url\": \"https://external-preview.redd.it/qF4gyEF4DWiAaDxlOnsKZjBibQEiwDndArFBvskIKyI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=f5aa9c9fa91d929cb55cecc697656c4ad8889750\", \"width\": 1080, \"height\": 450}], \"variants\": {}, \"id\": \"kIUW-BZyhIg4MysZ22tFBtvS59pNxBUG5uReJjYKvgc\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cef30q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gcebot\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cef30q/keep_calm_and_query_on_running_your_databases_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://cloud.google.com/blog/products/databases/keep-calm-and-query-on-running-your-databases-in-gcp/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563380564.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_aot1p\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The never-ending story\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_ceefj7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/VwM85Nrk-Vg?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 459, \"scrolling\": false, \"height\": 344}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"The never-ending story\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 344, \"width\": 459, \"html\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/VwM85Nrk-Vg?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"zero zzero\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VwM85Nrk-Vg/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/abcdonkeys\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/VwM85Nrk-Vg?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 459, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/ceefj7\", \"height\": 344}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ZzBIRQpCL6C2qZ6FDB_0_j6xjcUue2BIg1TkVmLVcZg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563406453.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/NT6SbbPaqIX_mD0hKwSd_fGLKZnQ0g4hoFfS6uk636Q.jpg?auto=webp\\u0026s=f8102349f52f65abb50ef801953f2e19dbc96d9e\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/NT6SbbPaqIX_mD0hKwSd_fGLKZnQ0g4hoFfS6uk636Q.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=04467efed01b78e8d5324c4793b83b8cd873ed41\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/NT6SbbPaqIX_mD0hKwSd_fGLKZnQ0g4hoFfS6uk636Q.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d491ba2d35d9619b342bedb4408fcc1405191535\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/NT6SbbPaqIX_mD0hKwSd_fGLKZnQ0g4hoFfS6uk636Q.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f50622dc75b1efcc4fdb65f8f67c752f24f58ba0\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"gOtfB24U4OiQbEBxuqFhIy-EQbykWCvs4QFkXhF629U\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceefj7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"smoknfx\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceefj7/the_neverending_story/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/VwM85Nrk-Vg\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563377653.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"The never-ending story\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 344, \"width\": 459, \"html\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/VwM85Nrk-Vg?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"zero zzero\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/VwM85Nrk-Vg/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/abcdonkeys\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_2x2k258p\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 25, \"hide_score\": false, \"name\": \"t3_cee9oy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Fd4TK1Ez7aGQj7JBCUMIhq9o-0qJCY5niisAFK1qYkc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563405711.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/3k68r3fpsva31.jpg?auto=webp\\u0026s=06894e470a933c05b540c998be54bab0b5c410d8\", \"width\": 640, \"height\": 115}, \"resolutions\": [{\"url\": \"https://preview.redd.it/3k68r3fpsva31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=54887cead548e2d7c1ca3c41d0fa279d93234b94\", \"width\": 108, \"height\": 19}, {\"url\": \"https://preview.redd.it/3k68r3fpsva31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d04dfc50d33fe72908ef1982bf441041b45f1e52\", \"width\": 216, \"height\": 38}, {\"url\": \"https://preview.redd.it/3k68r3fpsva31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6743decddeac1e38b1a2dd591bd356143377dd55\", \"width\": 320, \"height\": 57}, {\"url\": \"https://preview.redd.it/3k68r3fpsva31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=10a8c73821099e4b657700b2fcca7f0ab8d7ea80\", \"width\": 640, \"height\": 115}], \"variants\": {}, \"id\": \"IZknKjuMliUdkVhhb7RLoO8eK91wYS9rDFZW00x9nxQ\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cee9oy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Noahhaana\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cee9oy/test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/3k68r3fpsva31.jpg\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563376911.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"i uploaded this image\", \"author_fullname\": \"t2_3rov6k3j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"it is hard to believe\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cee7gm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563405439.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei uploaded this image\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cee7gm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7961636B6572\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cee7gm/it_is_hard_to_believe/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cee7gm/it_is_hard_to_believe/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563376639.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Wall St. flat as railroads slide after CSX signals trade impact\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cee649\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563405272.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cee649\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cee649/wall_st_flat_as_railroads_slide_after_csx_signals/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/yEHwEOHeiOg/wall-st-flat-as-railroads-slide-after-csx-signals-trade-impact-idUSKCN1UC1D1\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563376472.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sanders to urge 2020 rivals to reject health insurance industry donations\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 91, \"hide_score\": false, \"name\": \"t3_cee63p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/IOzwvyaZWLYvttaiUr2Nd6vBjIMGdNaeRa1tXCqhlSg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563405271.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/BZxaKUWg67TwECxvHRn4CfNgqss89sbw1y88j6WsTpE.jpg?auto=webp\\u0026s=7598b54b09796cc631df68f489d426d18007f58e\", \"width\": 1200, \"height\": 786}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/BZxaKUWg67TwECxvHRn4CfNgqss89sbw1y88j6WsTpE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e0be9c478638878703915ebf1d92773608e597ba\", \"width\": 108, \"height\": 70}, {\"url\": \"https://external-preview.redd.it/BZxaKUWg67TwECxvHRn4CfNgqss89sbw1y88j6WsTpE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4465ea3e8324a21002e4ca7f5693390868f8fc9e\", \"width\": 216, \"height\": 141}, {\"url\": \"https://external-preview.redd.it/BZxaKUWg67TwECxvHRn4CfNgqss89sbw1y88j6WsTpE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f3b1fb3d8746f67eb01f1c75669efb0d91f7a038\", \"width\": 320, \"height\": 209}, {\"url\": \"https://external-preview.redd.it/BZxaKUWg67TwECxvHRn4CfNgqss89sbw1y88j6WsTpE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a55a3bbeab984d4d5dfc8d9ddcc9afad2f26e8d7\", \"width\": 640, \"height\": 419}, {\"url\": \"https://external-preview.redd.it/BZxaKUWg67TwECxvHRn4CfNgqss89sbw1y88j6WsTpE.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=0402927f49a823b8804d58590bb6efaa627f462a\", \"width\": 960, \"height\": 628}, {\"url\": \"https://external-preview.redd.it/BZxaKUWg67TwECxvHRn4CfNgqss89sbw1y88j6WsTpE.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=895300cca0a1863522e5c96f0b3237a2a87b184d\", \"width\": 1080, \"height\": 707}], \"variants\": {}, \"id\": \"4ge-iVsBVtuh5z3UJpKfISdR1l4PXS8UGKKzTFXqXtQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cee63p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cee63p/sanders_to_urge_2020_rivals_to_reject_health/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/WzzCHtdu194/sanders-to-urge-2020-rivals-to-reject-health-insurance-industry-donations-idUSKCN1UC1SZ\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563376471.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Microsoft, AT\\u0026T sign cloud deal worth more than $2 billion\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 92, \"hide_score\": false, \"name\": \"t3_cee61x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/cCGkUt_47VQgNhNWB2guU9GuTahHlyA2NyC5TDGmbQk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563405264.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/fSWfsaeqtJ09zq_df7fzYNorbY0htnOiBhD4ZeYJr0o.jpg?auto=webp\\u0026s=146aa8fff11195e69169411c415b4537e4c2da17\", \"width\": 1200, \"height\": 792}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/fSWfsaeqtJ09zq_df7fzYNorbY0htnOiBhD4ZeYJr0o.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a490bfad0fe156696e1258b606a1c55aeacd38d1\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/fSWfsaeqtJ09zq_df7fzYNorbY0htnOiBhD4ZeYJr0o.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f2fb5457b613a7e8d45c9e8b5f9cb9c3eb4551b4\", \"width\": 216, \"height\": 142}, {\"url\": \"https://external-preview.redd.it/fSWfsaeqtJ09zq_df7fzYNorbY0htnOiBhD4ZeYJr0o.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=92af2bce5361179abe933b0bf6f62f217877240e\", \"width\": 320, \"height\": 211}, {\"url\": \"https://external-preview.redd.it/fSWfsaeqtJ09zq_df7fzYNorbY0htnOiBhD4ZeYJr0o.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=43eb3a19b1a84e16d77dfaf7e7c18d9b167488ec\", \"width\": 640, \"height\": 422}, {\"url\": \"https://external-preview.redd.it/fSWfsaeqtJ09zq_df7fzYNorbY0htnOiBhD4ZeYJr0o.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=29a37a727abc8af22d7225e1cbe556b69a8b65d1\", \"width\": 960, \"height\": 633}, {\"url\": \"https://external-preview.redd.it/fSWfsaeqtJ09zq_df7fzYNorbY0htnOiBhD4ZeYJr0o.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=f73606e2c48a092a287cb6d1a5c15d2dda50ff46\", \"width\": 1080, \"height\": 712}], \"variants\": {}, \"id\": \"F5gU3fbKnGDtOdvuZ2YKXJPNKUEGP2G6eNj9yBUHwzk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cee61x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cee61x/microsoft_att_sign_cloud_deal_worth_more_than_2/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/z48JHajGaVM/microsoft-att-sign-cloud-deal-worth-more-than-2-billion-idUSKCN1UC1KK\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563376464.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"U.S. judge blasts drug lord El Chapo's 'overwhelming evil,' imposes life sentence\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_cee61r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/FfC48IUnvCwBcIJzPdSvju2QGN7serlyWYGk5Zdj4Tc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563405263.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?auto=webp\\u0026s=06a0f7f80df209d23b5c9da4dc51e71ae87ca6f2\", \"width\": 1200, \"height\": 800}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3f15d7e47ba6b5bfcd9a60c2d38cee2c15fde52b\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b4edf08d649a8da9fea20964c721ff003c537b96\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=451e424a57d2be35289264426d0dd33dbedb5fa8\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=641dfaed1cab2eaf866634b650b02c762df14d02\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e4076f3b841186ea54f64b4eb71fec714e762011\", \"width\": 960, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e420e310093935bebeabbab5188e08eda34c1da0\", \"width\": 1080, \"height\": 720}], \"variants\": {}, \"id\": \"YxeFZ0tqnk6-zTFC5ZoyW5V9tLnmN3YZ6AQn-nUzuNU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cee61r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cee61r/us_judge_blasts_drug_lord_el_chapos_overwhelming/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/kGOKmocWQoI/u-s-judge-blasts-drug-lord-el-chapos-overwhelming-evil-imposes-life-sentence-idUSKCN1UC13H\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563376463.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"El Chapo's winding road from mountain village to drug lord to U.S. prison\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_cee61b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/B2hrynhDsL3ypAyrGsWjZAqldH-S911VPTLYsfkG8c4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563405262.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?auto=webp\\u0026s=2f6161fd6d12820a01c16fcdf423a2ad8ee84bd2\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4bc0b659a5b77db41766b72c96d75139d343c3d0\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ba833803b7d5cb4284950657697e2c43ba830390\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b3d81215eab9b3b229e6ffd236587b1513734be9\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=c6db118f60ca76c91d51946bcc6f91b6f9b797ac\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=d9c13b4945653a72b63c2d7a63b74487c7018dcc\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=32fa31b88dc576e4e7744d0623104c925c11ecf8\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"Q7WeSONhY8I3DvfrFrxSWQt0x5KfnyGlA1-KxXPKx7k\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cee61b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cee61b/el_chapos_winding_road_from_mountain_village_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/DBxIth21ANo/el-chapos-winding-road-from-mountain-village-to-drug-lord-to-u-s-prison-idUSKCN1UC14H\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563376462.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Facebook faces more scrutiny from Congress over Libra cryptocurrency plan\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 87, \"hide_score\": false, \"name\": \"t3_cee5rp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/PaHaVeKpSrKnb8TZV_6i0fJ7UwDmdtHjiSKncA0kskc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563405230.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?auto=webp\\u0026s=92921f7a92949128c65292a2374083c1904e7119\", \"width\": 1200, \"height\": 752}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=70b6f779df9e1c00205eaa01c164a1fe1634fcd5\", \"width\": 108, \"height\": 67}, {\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fb49b603d76b1a7b03c603adbeee445ccbb38aaf\", \"width\": 216, \"height\": 135}, {\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c7ba0508ad5a08c676abb13eb167942659e18cfd\", \"width\": 320, \"height\": 200}, {\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b2c68bc82ee791eb68a14a6628060f620baa3cc1\", \"width\": 640, \"height\": 401}, {\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e2c08746f89b5f0fb467e326e116e5569a21c222\", \"width\": 960, \"height\": 601}, {\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9b514a5891b6e3603c381ea38a3347a762730000\", \"width\": 1080, \"height\": 676}], \"variants\": {}, \"id\": \"-b-LG-JtGS2vcYqe75wWBtsBKjlzvxm_emCklrydIEM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cee5rp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cee5rp/facebook_faces_more_scrutiny_from_congress_over/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/76CAT1Cn9Bk/facebook-faces-more-scrutiny-from-congress-over-libra-cryptocurrency-plan-idUSKCN1UC1A4\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563376430.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"r/braincels\", \"author_fullname\": \"t2_252z1kh8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cedt2h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563403599.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/braincels\\\"\\u003Er/braincels\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cedt2h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"chompsr\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cedt2h/test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cedt2h/test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563374799.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"At sentencing, Mexican drug lord 'El Chapo' says confinement is 'mental torture'\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_cedied\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/eIaAPuv56dQdnUklIMGWtgAuE9UdfiiU1rqsPRuGWQs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563402192.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?auto=webp\\u0026s=06a0f7f80df209d23b5c9da4dc51e71ae87ca6f2\", \"width\": 1200, \"height\": 800}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3f15d7e47ba6b5bfcd9a60c2d38cee2c15fde52b\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b4edf08d649a8da9fea20964c721ff003c537b96\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=451e424a57d2be35289264426d0dd33dbedb5fa8\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=641dfaed1cab2eaf866634b650b02c762df14d02\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e4076f3b841186ea54f64b4eb71fec714e762011\", \"width\": 960, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e420e310093935bebeabbab5188e08eda34c1da0\", \"width\": 1080, \"height\": 720}], \"variants\": {}, \"id\": \"YxeFZ0tqnk6-zTFC5ZoyW5V9tLnmN3YZ6AQn-nUzuNU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cedied\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cedied/at_sentencing_mexican_drug_lord_el_chapo_says/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/7NhutUrmy7Q/at-sentencing-mexican-drug-lord-el-chapo-says-confinement-is-mental-torture-idUSKCN1UC13H\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563373392.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Amazon under EU antitrust fire over use of merchant data\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 72, \"hide_score\": false, \"name\": \"t3_cedicu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/JMcP_E-VQsTVL1QAQ17AYGwE5wtECaMhKBgZVxSiy2s.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563402188.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/4Ni4SfB0x2W8jyCywqYG6sAcmA2Q4C1rh2JXz1diAJU.jpg?auto=webp\\u0026s=77f83cadf001e44c500140d658b75f76fb2399ae\", \"width\": 1200, \"height\": 625}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/4Ni4SfB0x2W8jyCywqYG6sAcmA2Q4C1rh2JXz1diAJU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8d32689b352c29f87435809b2efddef69fb96307\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/4Ni4SfB0x2W8jyCywqYG6sAcmA2Q4C1rh2JXz1diAJU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=11d3555ae57ca39426d997c314046622b65f6424\", \"width\": 216, \"height\": 112}, {\"url\": \"https://external-preview.redd.it/4Ni4SfB0x2W8jyCywqYG6sAcmA2Q4C1rh2JXz1diAJU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=32cd3a82e4ce7c3f0c97bc4b161ca57dd688f9e3\", \"width\": 320, \"height\": 166}, {\"url\": \"https://external-preview.redd.it/4Ni4SfB0x2W8jyCywqYG6sAcmA2Q4C1rh2JXz1diAJU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5193db463b783fe8f98980cf429403507d3b57e5\", \"width\": 640, \"height\": 333}, {\"url\": \"https://external-preview.redd.it/4Ni4SfB0x2W8jyCywqYG6sAcmA2Q4C1rh2JXz1diAJU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=33048b3ac60c96aaa80fa5143d0d0f19695a9818\", \"width\": 960, \"height\": 500}, {\"url\": \"https://external-preview.redd.it/4Ni4SfB0x2W8jyCywqYG6sAcmA2Q4C1rh2JXz1diAJU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=a860e024017dd2a5445c93409b0663e5922dff5d\", \"width\": 1080, \"height\": 562}], \"variants\": {}, \"id\": \"CYBXAXXpdjspl2OkZ7SNcxAuPm80r20KoWyprGeMSSk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cedicu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cedicu/amazon_under_eu_antitrust_fire_over_use_of/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/671WC92gRs4/amazon-under-eu-antitrust-fire-over-use-of-merchant-data-idUSKCN1UC0W9\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563373388.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"EU antitrust regulators to investigate Amazon over merchant data\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_cedgra\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/8bJVJ6StfD-y6JtU2Uv5WOkqrNt1v0DgjekU30dTrR0.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563401976.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/_oEansSCi9kAiDhtr9qiJxHVR_pqUrXuT8iXxqsyaOg.jpg?auto=webp\\u0026s=113827b25306ddc6ef2a7ab0df475337ccbb65f0\", \"width\": 1200, \"height\": 800}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/_oEansSCi9kAiDhtr9qiJxHVR_pqUrXuT8iXxqsyaOg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a5ca70e62939241cecf12fa100c22965e480468d\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/_oEansSCi9kAiDhtr9qiJxHVR_pqUrXuT8iXxqsyaOg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=719c7be54e95778238dbd70ca672d582f89032e7\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/_oEansSCi9kAiDhtr9qiJxHVR_pqUrXuT8iXxqsyaOg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=69c6f511183d4208d71c6bc6f75e265fa163179c\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/_oEansSCi9kAiDhtr9qiJxHVR_pqUrXuT8iXxqsyaOg.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5b559b504d3441f9f8d5edaf5b601ba408bf6d8f\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/_oEansSCi9kAiDhtr9qiJxHVR_pqUrXuT8iXxqsyaOg.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e89ca264aa3412867b70798038ea9bff7016f530\", \"width\": 960, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/_oEansSCi9kAiDhtr9qiJxHVR_pqUrXuT8iXxqsyaOg.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=0118f1415846d4e446617c71b5ff937b1b6e0dd4\", \"width\": 1080, \"height\": 720}], \"variants\": {}, \"id\": \"6dZwqB5zEGphvoOJNk3hxJ2Hl9Kky26n7IHOq01L-ig\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cedgra\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cedgra/eu_antitrust_regulators_to_investigate_amazon/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/5Z3_pMHIqpY/eu-antitrust-regulators-to-investigate-amazon-over-merchant-data-idUSKCN1UC12E\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563373176.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Amazon says it will cooperate with EU antitrust regulator probe\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_cedgr5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/CH4TxUXHjBnEf5OZtfCJDS7DP9oibnkxTSFWXvqYRx8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563401975.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?auto=webp\\u0026s=2f6161fd6d12820a01c16fcdf423a2ad8ee84bd2\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4bc0b659a5b77db41766b72c96d75139d343c3d0\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ba833803b7d5cb4284950657697e2c43ba830390\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b3d81215eab9b3b229e6ffd236587b1513734be9\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=c6db118f60ca76c91d51946bcc6f91b6f9b797ac\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=d9c13b4945653a72b63c2d7a63b74487c7018dcc\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=32fa31b88dc576e4e7744d0623104c925c11ecf8\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"Q7WeSONhY8I3DvfrFrxSWQt0x5KfnyGlA1-KxXPKx7k\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cedgr5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cedgr5/amazon_says_it_will_cooperate_with_eu_antitrust/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/YXxWnfH0GEQ/amazon-says-it-will-cooperate-with-eu-antitrust-regulator-probe-idUSKCN1UC13Y\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563373175.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"U.S. housing starts fall further; permits at two-year low\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 89, \"hide_score\": false, \"name\": \"t3_ceddxt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/-MzAmyOuTFXjHpkGVGvEPruPCj09h3k6sj8cj0OhupI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563401602.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Ixk6MrgGvcOCexBLulAtz7H0wRzlaLM68mdTB-46nKA.jpg?auto=webp\\u0026s=2a31e37f39f4448da42b057267107fea203db51f\", \"width\": 1200, \"height\": 769}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Ixk6MrgGvcOCexBLulAtz7H0wRzlaLM68mdTB-46nKA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bc4a1aa5b9ca21ee5c90d1a085ac5a688d882e4b\", \"width\": 108, \"height\": 69}, {\"url\": \"https://external-preview.redd.it/Ixk6MrgGvcOCexBLulAtz7H0wRzlaLM68mdTB-46nKA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1791707850c146fdb4053140e1f916b4bc45ebd9\", \"width\": 216, \"height\": 138}, {\"url\": \"https://external-preview.redd.it/Ixk6MrgGvcOCexBLulAtz7H0wRzlaLM68mdTB-46nKA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=91a22ddd496f15afeeec6556b0be67d882dc7784\", \"width\": 320, \"height\": 205}, {\"url\": \"https://external-preview.redd.it/Ixk6MrgGvcOCexBLulAtz7H0wRzlaLM68mdTB-46nKA.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=beee9cd8517a954d804d0959a564b4e2d7c62b26\", \"width\": 640, \"height\": 410}, {\"url\": \"https://external-preview.redd.it/Ixk6MrgGvcOCexBLulAtz7H0wRzlaLM68mdTB-46nKA.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=82abbea40ad8de7c8e21eb827bf92d2cd489875d\", \"width\": 960, \"height\": 615}, {\"url\": \"https://external-preview.redd.it/Ixk6MrgGvcOCexBLulAtz7H0wRzlaLM68mdTB-46nKA.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b19f0fc3e6b8a69571bfcf69c82bb05b24e3c2fa\", \"width\": 1080, \"height\": 692}], \"variants\": {}, \"id\": \"Ora9jrsSd4Pzs6vJEkQTJSYppkMtlw7KdzCNUAa3eI4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceddxt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceddxt/us_housing_starts_fall_further_permits_at_twoyear/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/pBWhEzQSuLs/u-s-housing-starts-fall-further-permits-at-two-year-low-idUSKCN1UC1I6\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563372802.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Wall Street opens flat, investors shrug off bank results\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_cedd2l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/PcA_ZsFZKCUX3Yctz1NQaJu7vLuSyJ0mHCKjZSHFCZE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563401492.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/czvhszZU5iASFzxhBx750yBFxCNu75WHP1AkHZPRxW8.jpg?auto=webp\\u0026s=55728811648f7a90f96d4b07a87cf32b2a20c127\", \"width\": 1200, \"height\": 800}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/czvhszZU5iASFzxhBx750yBFxCNu75WHP1AkHZPRxW8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ffeb24d67248f1f9f1258af53d8132562769b872\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/czvhszZU5iASFzxhBx750yBFxCNu75WHP1AkHZPRxW8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=44174601bde6cf24147884b331386847db8cfb35\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/czvhszZU5iASFzxhBx750yBFxCNu75WHP1AkHZPRxW8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f1f969f8e0104bc45eb630466cffd52ac43a33f4\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/czvhszZU5iASFzxhBx750yBFxCNu75WHP1AkHZPRxW8.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=805a7e639f9a62636f4e4c2d0cf1756b4cb0481e\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/czvhszZU5iASFzxhBx750yBFxCNu75WHP1AkHZPRxW8.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=c93f637ff9b8a9e60e2f177bf8f9ade2d37497e9\", \"width\": 960, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/czvhszZU5iASFzxhBx750yBFxCNu75WHP1AkHZPRxW8.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=4568cd061ac3ea98a3f6901570719a85bc7ae9a9\", \"width\": 1080, \"height\": 720}], \"variants\": {}, \"id\": \"JMZ0Wt0Mj6L1RuvEwcxD0c4_Pq7YLEkd4QiLT7jaGAY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cedd2l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cedd2l/wall_street_opens_flat_investors_shrug_off_bank/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/BUWVt44MWhg/wall-street-opens-flat-investors-shrug-off-bank-results-idUSKCN1UC1D1\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563372692.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Bank of America trims net interest income guidance\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_cedcy6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/wQi1QAMCBHKzMDvIHMexihtGCcIa_0VTmkMMDrkhd0o.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563401477.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?auto=webp\\u0026s=bcddad93fd513f40f7cafdb028742ce0b1abf447\", \"width\": 1200, \"height\": 799}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fb4371e61759ce4f62b48eec19db8c89c8b9a5c8\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d7ef4098c48aa7dae58b9736b28cacf7bb42cdd9\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8361244ee06c1e76e26eef4dc88bff9b8665e21b\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=cbae5a8947a46c32f9ea5ce6b643ff0e5a75a35c\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=84ca0ba3a0dece6abfd90397d2b3276e881f36ba\", \"width\": 960, \"height\": 639}, {\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=1c63398f62b388b5331159251638cd74ab1acbc8\", \"width\": 1080, \"height\": 719}], \"variants\": {}, \"id\": \"fq3RVfFULHquW98zIWH7e-MHlzVU1phjHl1ru3mh5wI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cedcy6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cedcy6/bank_of_america_trims_net_interest_income_guidance/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/S3Q9B36al_g/bank-of-america-trims-net-interest-income-guidance-idUSKCN1UC19F\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563372677.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"R. Kelly pleads not guilty, denied bail on U.S. charges of sex crimes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_cedcxg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/zoLOUe-8hF0uaWDxk-mTz0r6EfPjYUnQge6V_NWlnvg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563401475.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/cFyhqJ6gvP30ZPdcvkUkmy8W36jHt46Uc6uHgDrRP1c.jpg?auto=webp\\u0026s=ec0521a5f048f6572b283902b2f2e160d638a99e\", \"width\": 1200, \"height\": 800}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cFyhqJ6gvP30ZPdcvkUkmy8W36jHt46Uc6uHgDrRP1c.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=de0d36377141850311cfc54f0d0212b3bc2264ab\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/cFyhqJ6gvP30ZPdcvkUkmy8W36jHt46Uc6uHgDrRP1c.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=bb1eb2a4298d5bf0dbde6dd85903a2601cd6d58f\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/cFyhqJ6gvP30ZPdcvkUkmy8W36jHt46Uc6uHgDrRP1c.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a33b62acbd915bbe8f1b6a606646af8572481040\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/cFyhqJ6gvP30ZPdcvkUkmy8W36jHt46Uc6uHgDrRP1c.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f28f8ad6b77eb89ec26bbfe009dc7156d969f877\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/cFyhqJ6gvP30ZPdcvkUkmy8W36jHt46Uc6uHgDrRP1c.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=9d51ad637945d6a22bac3c4b968a9e29ce0c5eb2\", \"width\": 960, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/cFyhqJ6gvP30ZPdcvkUkmy8W36jHt46Uc6uHgDrRP1c.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=0346de6fed93ab0d4dcab3211ceacfaaef5b217b\", \"width\": 1080, \"height\": 720}], \"variants\": {}, \"id\": \"QSVHZ8SeIdrQhqyfB0SG6j5nIy_bOacMHk4t0dT-ujQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cedcxg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cedcxg/r_kelly_pleads_not_guilty_denied_bail_on_us/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/VYBB2NN57iI/r-kelly-pleads-not-guilty-denied-bail-on-u-s-charges-of-sex-crimes-idUSKCN1UB10J\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563372675.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"u/Karma_Turret\", \"author_fullname\": \"t2_2d8kdl8d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Plat test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ced4dj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563400342.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/Karma_Turret\\\"\\u003Eu/Karma_Turret\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ced4dj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Error87C\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ced4dj/plat_test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/ced4dj/plat_test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563371542.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"Testing paragraphs lmao\\n\\n print('hello world')\\n\\nwhat the fuuuuuuck \\n\\n\\n \\n\\nhi there \\n\\n\\n* 1 boy\\n* 2 boy\\n\\n\\u0026#x200B;\\n\\n\\u003Ewot the duck\", \"author_fullname\": \"t2_lkzxj1d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Bob\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cecyvc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563399542.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETesting paragraphs lmao\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eprint(\\u0026#39;hello world\\u0026#39;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhat the fuuuuuuck \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ehi there \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E1 boy\\u003C/li\\u003E\\n\\u003Cli\\u003E2 boy\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ewot the duck\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cecyvc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kyberite\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cecyvc/bob/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cecyvc/bob/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563370742.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"UK PM May to discuss Grace 1 oil tanker with Gibraltar chief minister\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 107, \"hide_score\": false, \"name\": \"t3_cecnoy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/xuvrptd1k_AjqprtvHSgDF13kKC076KShneBRT3kNdY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563397942.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/77xnby3hywsP30BFo4L0xOv_6j7tabqX7FqU7cqp-Vw.jpg?auto=webp\\u0026s=6aab847574c91607d02f6f21b6307ea27af8fd9e\", \"width\": 1200, \"height\": 925}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/77xnby3hywsP30BFo4L0xOv_6j7tabqX7FqU7cqp-Vw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d8021fd9bbabe8873bdc94f5e8c81e9bfa48ec11\", \"width\": 108, \"height\": 83}, {\"url\": \"https://external-preview.redd.it/77xnby3hywsP30BFo4L0xOv_6j7tabqX7FqU7cqp-Vw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=be67e6bfd007ce8424155656cf67b5fa84299c9b\", \"width\": 216, \"height\": 166}, {\"url\": \"https://external-preview.redd.it/77xnby3hywsP30BFo4L0xOv_6j7tabqX7FqU7cqp-Vw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5a2d311f094157b69b8833b2845da8950e1d7b0c\", \"width\": 320, \"height\": 246}, {\"url\": \"https://external-preview.redd.it/77xnby3hywsP30BFo4L0xOv_6j7tabqX7FqU7cqp-Vw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=afc5f81050599c9816e3e3b43cdd0039226232cd\", \"width\": 640, \"height\": 493}, {\"url\": \"https://external-preview.redd.it/77xnby3hywsP30BFo4L0xOv_6j7tabqX7FqU7cqp-Vw.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=65a1eb5c575be33a2533d38a009f8952d3d658ff\", \"width\": 960, \"height\": 740}, {\"url\": \"https://external-preview.redd.it/77xnby3hywsP30BFo4L0xOv_6j7tabqX7FqU7cqp-Vw.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=43ec2df9ee4aa45016619587382319843d6364d1\", \"width\": 1080, \"height\": 832}], \"variants\": {}, \"id\": \"4PfDW9YHcRAIfyeaZOlY2K1fBO1SejrwEqnFlo_HfAo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cecnoy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cecnoy/uk_pm_may_to_discuss_grace_1_oil_tanker_with/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/MaOKIquQGw8/uk-pm-may-to-discuss-grace-1-oil-tanker-with-gibraltar-chief-minister-idUSKCN1UC1GH\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563369142.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"FOIA (1967) Request 07/15/2019 for Accident Report #3928 pertaining to ROYAL CARIBBEAN EXPLORER OF THE SEAS on 06/19/2019 [PALERMO, ITALY]. Investigated 06/25/2019. Issuant United States Coastguard Marine Investigators (USCG MI).\\n\\n**THE INFORMATION RELAYED IN THIS REPORT WAS CONDUCTED AND RELEASED BY USCG MI UNDER THE FREEDOM OF INFORMATION ACT. ANY ATTEMPT TO COPY OF EDIT THE INFORMATION IN THIS REPORT IS PROHIBITED BY THE US CLASSIFICATION SYSTEM UNDER EXECUTIVE ORDER 13526 (2009).**\\n\\n\\n[On 06/19/2019 a 56 year old male passenger (suffering from a severe stroke) was medevaced from the liner approx. 9 miles (14km) from the coast of Italy, following an emergency manoeuvre.\\n\\nThe Corps of the Port Captaincies - Coast Guard (CPCCG) issued a helicopter (AW139) dispatched from Palermo, Italy. The cruise ship requested medical evacuation at approx 21:45 PM (June 19). The passenger was airlifted from the ship at precisely 23:13 PM, along with a female relative and transported to the Medical Air Service at Palermo/Punta Raisi airport, with further treatment at Civico Palermo hospital.\\n\\nThe incident occurred during the 14 day Mediterranean cruise from Southampton (departing 06/09/2019), resulting in a slight delay into the next days port of call in Cagliari the (06/20/2019). Issuant ROYAL CARIBBEAN EXPLORER OF THE SEAS.] *End Report*.\", \"author_fullname\": \"t2_46ak2bvy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ROYAL CARIBBEAN EXPLORER OF THE SEAS - Accident Report #3928 06/19/2019 via Freedom of Information Act request : 07/15/2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cecevr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563396613.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFOIA (1967) Request 07/15/2019 for Accident Report #3928 pertaining to ROYAL CARIBBEAN EXPLORER OF THE SEAS on 06/19/2019 [PALERMO, ITALY]. Investigated 06/25/2019. Issuant United States Coastguard Marine Investigators (USCG MI).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETHE INFORMATION RELAYED IN THIS REPORT WAS CONDUCTED AND RELEASED BY USCG MI UNDER THE FREEDOM OF INFORMATION ACT. ANY ATTEMPT TO COPY OF EDIT THE INFORMATION IN THIS REPORT IS PROHIBITED BY THE US CLASSIFICATION SYSTEM UNDER EXECUTIVE ORDER 13526 (2009).\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[On 06/19/2019 a 56 year old male passenger (suffering from a severe stroke) was medevaced from the liner approx. 9 miles (14km) from the coast of Italy, following an emergency manoeuvre.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Corps of the Port Captaincies - Coast Guard (CPCCG) issued a helicopter (AW139) dispatched from Palermo, Italy. The cruise ship requested medical evacuation at approx 21:45 PM (June 19). The passenger was airlifted from the ship at precisely 23:13 PM, along with a female relative and transported to the Medical Air Service at Palermo/Punta Raisi airport, with further treatment at Civico Palermo hospital.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe incident occurred during the 14 day Mediterranean cruise from Southampton (departing 06/09/2019), resulting in a slight delay into the next days port of call in Cagliari the (06/20/2019). Issuant ROYAL CARIBBEAN EXPLORER OF THE SEAS.] \\u003Cem\\u003EEnd Report\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cecevr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"USMSCacc-RCL\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cecevr/royal_caribbean_explorer_of_the_seas_accident/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cecevr/royal_caribbean_explorer_of_the_seas_accident/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563367813.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Lagarde resigns as IMF chief, starting race for her successor\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 96, \"hide_score\": false, \"name\": \"t3_cec1d2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/sFRmJSD8St8JV5ycWGJYJRfdyVjic8F9tHt2dLAGTJQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563394506.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/DCYSfNa1V-KrW1AjmUZBfJ1rpc7eSiukoQlMV6KAS9A.jpg?auto=webp\\u0026s=376d9f4c673eb41bf04d599f680bdc99d3a80362\", \"width\": 1200, \"height\": 826}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/DCYSfNa1V-KrW1AjmUZBfJ1rpc7eSiukoQlMV6KAS9A.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=614184bb109e78a221627d917dcddfa26f9c7762\", \"width\": 108, \"height\": 74}, {\"url\": \"https://external-preview.redd.it/DCYSfNa1V-KrW1AjmUZBfJ1rpc7eSiukoQlMV6KAS9A.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=2d8d0eaf9e3ba2427a4a9053433fb5a4159f90a6\", \"width\": 216, \"height\": 148}, {\"url\": \"https://external-preview.redd.it/DCYSfNa1V-KrW1AjmUZBfJ1rpc7eSiukoQlMV6KAS9A.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1d22878fe54568b73bb3ee87f751659d3738ece6\", \"width\": 320, \"height\": 220}, {\"url\": \"https://external-preview.redd.it/DCYSfNa1V-KrW1AjmUZBfJ1rpc7eSiukoQlMV6KAS9A.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d459ae7c777a4d347ad977d54bbe45507ad791a4\", \"width\": 640, \"height\": 440}, {\"url\": \"https://external-preview.redd.it/DCYSfNa1V-KrW1AjmUZBfJ1rpc7eSiukoQlMV6KAS9A.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=4bf1d37c9bb2fdbdb703a1d2abd4f3638687e8f7\", \"width\": 960, \"height\": 660}, {\"url\": \"https://external-preview.redd.it/DCYSfNa1V-KrW1AjmUZBfJ1rpc7eSiukoQlMV6KAS9A.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b155550e5e47f70138c7e044e0f40192f807d0c0\", \"width\": 1080, \"height\": 743}], \"variants\": {}, \"id\": \"CpNLCYogAdGmio7na0un-spb9VmEquKcD50lYoNo8A8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cec1d2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cec1d2/lagarde_resigns_as_imf_chief_starting_race_for/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/iU3yifkd1Gs/lagarde-resigns-as-imf-chief-starting-race-for-her-successor-idUSKCN1UB1SN\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563365706.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Facebook to face more scrutiny from Congress on Libra\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 87, \"hide_score\": false, \"name\": \"t3_cec0yh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Ex5Av4_EHL0Uh3_XhHCfhkYS32W_JYxfk6_pFcGafJI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563394445.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?auto=webp\\u0026s=92921f7a92949128c65292a2374083c1904e7119\", \"width\": 1200, \"height\": 752}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=70b6f779df9e1c00205eaa01c164a1fe1634fcd5\", \"width\": 108, \"height\": 67}, {\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fb49b603d76b1a7b03c603adbeee445ccbb38aaf\", \"width\": 216, \"height\": 135}, {\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c7ba0508ad5a08c676abb13eb167942659e18cfd\", \"width\": 320, \"height\": 200}, {\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b2c68bc82ee791eb68a14a6628060f620baa3cc1\", \"width\": 640, \"height\": 401}, {\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e2c08746f89b5f0fb467e326e116e5569a21c222\", \"width\": 960, \"height\": 601}, {\"url\": \"https://external-preview.redd.it/bcC8cJHMgVvchA32qTG6sHGG9fYHZLCvSEMuNfdExlc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9b514a5891b6e3603c381ea38a3347a762730000\", \"width\": 1080, \"height\": 676}], \"variants\": {}, \"id\": \"-b-LG-JtGS2vcYqe75wWBtsBKjlzvxm_emCklrydIEM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cec0yh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cec0yh/facebook_to_face_more_scrutiny_from_congress_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/gMsRlHanWSo/facebook-to-face-more-scrutiny-from-congress-on-libra-idUSKCN1UC1A4\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563365645.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Bank of America profit beats as healthy economy fuels loan growth\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_cebzj0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/iy_8rTKjUZiDvVmGAu0jiWVUD756IoGcfl8Dc6qN3Cs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563394231.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?auto=webp\\u0026s=bcddad93fd513f40f7cafdb028742ce0b1abf447\", \"width\": 1200, \"height\": 799}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fb4371e61759ce4f62b48eec19db8c89c8b9a5c8\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d7ef4098c48aa7dae58b9736b28cacf7bb42cdd9\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8361244ee06c1e76e26eef4dc88bff9b8665e21b\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=cbae5a8947a46c32f9ea5ce6b643ff0e5a75a35c\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=84ca0ba3a0dece6abfd90397d2b3276e881f36ba\", \"width\": 960, \"height\": 639}, {\"url\": \"https://external-preview.redd.it/oI5uYuhEQoYrbgw02DHTCw9J5x0xZGuJZPc2IXr1B14.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=1c63398f62b388b5331159251638cd74ab1acbc8\", \"width\": 1080, \"height\": 719}], \"variants\": {}, \"id\": \"fq3RVfFULHquW98zIWH7e-MHlzVU1phjHl1ru3mh5wI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cebzj0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cebzj0/bank_of_america_profit_beats_as_healthy_economy/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/y9Ii9cUK88w/bank-of-america-profit-beats-as-healthy-economy-fuels-loan-growth-idUSKCN1UC19F\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563365431.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"u/Karma_Turret\", \"author_fullname\": \"t2_15bufg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Plat test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceby73\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 1, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {\"gid_3\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563394011.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/Karma_Turret\\\"\\u003Eu/Karma_Turret\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Platinum Award\", \"coin_reward\": 0, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/platinum_512.png\", \"days_of_premium\": 31, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/platinum_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/platinum_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/platinum_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/platinum_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/platinum_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 31, \"award_type\": \"global\", \"coin_price\": 1800, \"id\": \"gid_3\", \"name\": \"Platinum\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceby73\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"LilyRemput\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceby73/plat_test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/ceby73/plat_test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563365211.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Trade war, Brexit stoke debt and dollar, hit stocks and sterling\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 92, \"hide_score\": false, \"name\": \"t3_cebfpt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/3SYWNzuwV6PHAvhEoeswZmUwn_80V9QAHLomps_Sxio.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563390799.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?auto=webp\\u0026s=70b08217c46d4ec001fa8c2d5f3e8755c2698377\", \"width\": 1200, \"height\": 796}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a3e4df6003dbe442233ec866be1fdad09f39f7bf\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=07f6cd88076f55ff2133d171b18d8e9d0ff5acb5\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=317cc4dc66a6b476886c323c7135113a6246e776\", \"width\": 320, \"height\": 212}, {\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f7554622d36e97b2294893c0a60b4f974a1cdaab\", \"width\": 640, \"height\": 424}, {\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=fc9153bbaa3a0c358d458fa3a5f103a46d40e3f9\", \"width\": 960, \"height\": 636}, {\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9bc1f7f0f2fe262fd564c8ddb00c51de412d34e0\", \"width\": 1080, \"height\": 716}], \"variants\": {}, \"id\": \"g1uafJ8duh1qHq9T0o0yhwARDY3hm2VmF3yI9jwZXU8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cebfpt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cebfpt/trade_war_brexit_stoke_debt_and_dollar_hit_stocks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/P8L5Kveng6I/trade-war-brexit-stoke-debt-and-dollar-hit-stocks-and-sterling-idUSKCN1UC01B\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563361999.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"U.S. unsure about circumstances of tanker towed to Iran\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 88, \"hide_score\": false, \"name\": \"t3_cebfe7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/y7MDeMC9byIiKeu_zoxdxSeOxKVIS94QR26lcX9P3Xo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563390748.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/TBdRMqUMSfotXfDbcXPWjuIxaNjVadV14zjoL0ZITlM.jpg?auto=webp\\u0026s=dc2587765cb8324126bc6308ce9ec8086c0afe41\", \"width\": 1200, \"height\": 757}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/TBdRMqUMSfotXfDbcXPWjuIxaNjVadV14zjoL0ZITlM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d5d2ed2c9e24a6671322698a1d365745a7bc971b\", \"width\": 108, \"height\": 68}, {\"url\": \"https://external-preview.redd.it/TBdRMqUMSfotXfDbcXPWjuIxaNjVadV14zjoL0ZITlM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=cd9124b5e628415b35c185d0a2f61e6abe475c6a\", \"width\": 216, \"height\": 136}, {\"url\": \"https://external-preview.redd.it/TBdRMqUMSfotXfDbcXPWjuIxaNjVadV14zjoL0ZITlM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=65d4be4d3dd97b6d954e306043fcf85da92baa06\", \"width\": 320, \"height\": 201}, {\"url\": \"https://external-preview.redd.it/TBdRMqUMSfotXfDbcXPWjuIxaNjVadV14zjoL0ZITlM.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=c6835097bf23dc48f95e2acc4e17b621c51f8c3f\", \"width\": 640, \"height\": 403}, {\"url\": \"https://external-preview.redd.it/TBdRMqUMSfotXfDbcXPWjuIxaNjVadV14zjoL0ZITlM.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=73dbea6c7931112c49e12c7a42ad6f4e41e22144\", \"width\": 960, \"height\": 605}, {\"url\": \"https://external-preview.redd.it/TBdRMqUMSfotXfDbcXPWjuIxaNjVadV14zjoL0ZITlM.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=f2ddebf79d84f48f287e4ead752248b330d8c3a0\", \"width\": 1080, \"height\": 681}], \"variants\": {}, \"id\": \"w52cUxdH_rxdlmsTeuevyvkjAg_8O72Vo7BpcKrvP7I\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cebfe7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cebfe7/us_unsure_about_circumstances_of_tanker_towed_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/4IXlqDnoawE/u-s-unsure-about-circumstances-of-tanker-towed-to-iran-idUSKCN1UC19L\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563361948.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"U.S. judge expected to put Mexican drug lord 'El Chapo' behind bars for life\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_cebfa2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/OB4ku_4gxmI3vwG6ICabBHLA_ZMOGOM1G5cnAJ2WVxw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563390729.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?auto=webp\\u0026s=06a0f7f80df209d23b5c9da4dc51e71ae87ca6f2\", \"width\": 1200, \"height\": 800}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3f15d7e47ba6b5bfcd9a60c2d38cee2c15fde52b\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b4edf08d649a8da9fea20964c721ff003c537b96\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=451e424a57d2be35289264426d0dd33dbedb5fa8\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=641dfaed1cab2eaf866634b650b02c762df14d02\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e4076f3b841186ea54f64b4eb71fec714e762011\", \"width\": 960, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/nMDcWmo24NvWqrUXfoAsDCTFGGLYnytHBcK0UZyjJNQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e420e310093935bebeabbab5188e08eda34c1da0\", \"width\": 1080, \"height\": 720}], \"variants\": {}, \"id\": \"YxeFZ0tqnk6-zTFC5ZoyW5V9tLnmN3YZ6AQn-nUzuNU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cebfa2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cebfa2/us_judge_expected_to_put_mexican_drug_lord_el/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/XmGlYxI317o/u-s-judge-expected-to-put-mexican-drug-lord-el-chapo-behind-bars-for-life-idUSKCN1UC13H\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563361929.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Man who threatened to bomb Harvard ceremony for black students faces sentencing\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_cebf0w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/EQg_kRwaXFnQ8YJ8DeLO6g-ssmfYCw27ij4NPSs2_KY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563390681.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?auto=webp\\u0026s=2f6161fd6d12820a01c16fcdf423a2ad8ee84bd2\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4bc0b659a5b77db41766b72c96d75139d343c3d0\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ba833803b7d5cb4284950657697e2c43ba830390\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b3d81215eab9b3b229e6ffd236587b1513734be9\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=c6db118f60ca76c91d51946bcc6f91b6f9b797ac\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=d9c13b4945653a72b63c2d7a63b74487c7018dcc\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=32fa31b88dc576e4e7744d0623104c925c11ecf8\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"Q7WeSONhY8I3DvfrFrxSWQt0x5KfnyGlA1-KxXPKx7k\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cebf0w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cebf0w/man_who_threatened_to_bomb_harvard_ceremony_for/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/dpCkzInC1eA/man-who-threatened-to-bomb-harvard-ceremony-for-black-students-faces-sentencing-idUSKCN1UC14S\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563361881.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Factbox: El Chapo's winding road from mountain village to drug lord to U.S. prison\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_cebexx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/mUr7LkA8aCI18unUP609ZcUfkVhG1S88on8AWJEtABg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563390670.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?auto=webp\\u0026s=2f6161fd6d12820a01c16fcdf423a2ad8ee84bd2\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4bc0b659a5b77db41766b72c96d75139d343c3d0\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ba833803b7d5cb4284950657697e2c43ba830390\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b3d81215eab9b3b229e6ffd236587b1513734be9\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=c6db118f60ca76c91d51946bcc6f91b6f9b797ac\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=d9c13b4945653a72b63c2d7a63b74487c7018dcc\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/JE5v1BJsIlc2DiVs1rwqi6CLE49u9lcH1SVOoMRTF3k.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=32fa31b88dc576e4e7744d0623104c925c11ecf8\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"Q7WeSONhY8I3DvfrFrxSWQt0x5KfnyGlA1-KxXPKx7k\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cebexx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cebexx/factbox_el_chapos_winding_road_from_mountain/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/NqBNvwCBE24/factbox-el-chapos-winding-road-from-mountain-village-to-drug-lord-to-u-s-prison-idUSKCN1UC14H\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563361870.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"After two escapes, 'El Chapo' may go to Supermax prison to avoid a third\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 85, \"hide_score\": false, \"name\": \"t3_cebex8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/YtGgoOJSCBF46RgMh_JuoJVVngzBZ7JFmx-EKzrlCjc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563390667.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/jlJ8gm_eRToIfjCswSBMI91Rj0pAJEEjCz7TfZCMCd0.jpg?auto=webp\\u0026s=48ba5e221de8eaedaae581126db27f046a26be18\", \"width\": 1200, \"height\": 736}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/jlJ8gm_eRToIfjCswSBMI91Rj0pAJEEjCz7TfZCMCd0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=cc2bdb3da881304a87765aa353caa27f5340adbb\", \"width\": 108, \"height\": 66}, {\"url\": \"https://external-preview.redd.it/jlJ8gm_eRToIfjCswSBMI91Rj0pAJEEjCz7TfZCMCd0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=be426f0f84cb5650927f8a32984dfa8255d3da7f\", \"width\": 216, \"height\": 132}, {\"url\": \"https://external-preview.redd.it/jlJ8gm_eRToIfjCswSBMI91Rj0pAJEEjCz7TfZCMCd0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d86f9404de4992a9e71890bf2959266012dea5b2\", \"width\": 320, \"height\": 196}, {\"url\": \"https://external-preview.redd.it/jlJ8gm_eRToIfjCswSBMI91Rj0pAJEEjCz7TfZCMCd0.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=6b38464e16430e0f0c9c7b33fef742154238bb02\", \"width\": 640, \"height\": 392}, {\"url\": \"https://external-preview.redd.it/jlJ8gm_eRToIfjCswSBMI91Rj0pAJEEjCz7TfZCMCd0.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=27c47609b2989e90a62440578f0170a7401fbd7a\", \"width\": 960, \"height\": 588}, {\"url\": \"https://external-preview.redd.it/jlJ8gm_eRToIfjCswSBMI91Rj0pAJEEjCz7TfZCMCd0.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=3bd6f1d32e155b7f6e77d725947e601f7690d6ca\", \"width\": 1080, \"height\": 662}], \"variants\": {}, \"id\": \"U7dnXSvnPpzzFPBW3ECDYjBwh_2iTx5Nr_AmgqjWONI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cebex8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cebex8/after_two_escapes_el_chapo_may_go_to_supermax/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/q_lxGA4mUnw/after-two-escapes-el-chapo-may-go-to-supermax-prison-to-avoid-a-third-idUSKCN1UC142\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563361867.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"U.S. to 'support efforts' by South Korea, Japan to end worsening dispute\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 97, \"hide_score\": false, \"name\": \"t3_cebeo6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/bLF5jSPr_BEEYmHGojl9AYM4haZ5im0xF8Vf11bmj7Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563390624.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?auto=webp\\u0026s=5162a20630b736a56827f5e7a80facffa349a261\", \"width\": 1200, \"height\": 832}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3b18c48f1d9c12b6d39a350ffc868e5742b6201a\", \"width\": 108, \"height\": 74}, {\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=542d2707de17417cca14f250eca4f7dd13c3f16d\", \"width\": 216, \"height\": 149}, {\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ae0c1b0fab758b5d55d1351e46025c93000c5c08\", \"width\": 320, \"height\": 221}, {\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=7bbf47b572e2c96c77de0136d9c93153c85f2e02\", \"width\": 640, \"height\": 443}, {\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=bdb5567fbb8d2fb3fef32260c3f19bb8a8bb1c18\", \"width\": 960, \"height\": 665}, {\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d9a177b76aefca4cb12049b7641d1575e637412c\", \"width\": 1080, \"height\": 748}], \"variants\": {}, \"id\": \"BNZM-iZhVfgdcw5DNdWgKzJ5qSQuXLYYTIdmWBIInoU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cebeo6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cebeo6/us_to_support_efforts_by_south_korea_japan_to_end/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/gICk05_F6pw/u-s-to-support-efforts-by-south-korea-japan-to-end-worsening-dispute-idUSKCN1UB2WC\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563361824.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"Jerusalem.\", \"author_fullname\": \"t2_3o8y5ivd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Israel.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceaxow\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563387393.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJerusalem.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceaxow\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gekitai\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceaxow/israel/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/ceaxow/israel/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563358593.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Bills targeting China's Huawei introduced in Congress\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_ceavmk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/94SggOrNj5zxPwF5SCMK5N4_sD846-pdrt2wuRQvVcc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563386995.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/hdBtUHYCe7_2xpybZ2JCy89bnUbL9bdTom-slfwB-XI.jpg?auto=webp\\u0026s=35f950aee40bd2914587048e7e38c8e6b62f418b\", \"width\": 1200, \"height\": 798}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/hdBtUHYCe7_2xpybZ2JCy89bnUbL9bdTom-slfwB-XI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=6246c0d12d19d128276fb99be375b0657d344441\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/hdBtUHYCe7_2xpybZ2JCy89bnUbL9bdTom-slfwB-XI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=34c9d3ffedc59e555150079604bc6fb43e397bd8\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/hdBtUHYCe7_2xpybZ2JCy89bnUbL9bdTom-slfwB-XI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=91aed4e55cbd06e1693b081685562be133eccab0\", \"width\": 320, \"height\": 212}, {\"url\": \"https://external-preview.redd.it/hdBtUHYCe7_2xpybZ2JCy89bnUbL9bdTom-slfwB-XI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d53e5ee2559a309266ed30b9057720d2e850dcfa\", \"width\": 640, \"height\": 425}, {\"url\": \"https://external-preview.redd.it/hdBtUHYCe7_2xpybZ2JCy89bnUbL9bdTom-slfwB-XI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e86501d2564b4ad727f7953b37f1d0bfbaca1794\", \"width\": 960, \"height\": 638}, {\"url\": \"https://external-preview.redd.it/hdBtUHYCe7_2xpybZ2JCy89bnUbL9bdTom-slfwB-XI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=a43d10f25f6e3868142287f5c53796fb2fd5697f\", \"width\": 1080, \"height\": 718}], \"variants\": {}, \"id\": \"nggYL_uRZa-2kiMEQ1gRayXqyyNhBqKe5Nd1I4E5ZA8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceavmk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceavmk/bills_targeting_chinas_huawei_introduced_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/i5poLUgPcLs/bills-targeting-chinas-huawei-introduced-in-congress-idUSKCN1UB1X3\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563358195.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"BERLIN IS THE WORST CITY!\", \"author_fullname\": \"t2_469lqqjc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"BERLIN SUCKS\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ceaovz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563385663.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBERLIN IS THE WORST CITY!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceaovz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"awebrawerb\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceaovz/berlin_sucks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/ceaovz/berlin_sucks/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563356863.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Debt and dollar in demand, sterling and stocks stricken on trade war and Brexit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 92, \"hide_score\": false, \"name\": \"t3_ceadco\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/cGka_1Aqxzhf2fiHciRgv66eQyHrhe9wh_T8Hp4PyvI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563383357.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?auto=webp\\u0026s=70b08217c46d4ec001fa8c2d5f3e8755c2698377\", \"width\": 1200, \"height\": 796}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a3e4df6003dbe442233ec866be1fdad09f39f7bf\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=07f6cd88076f55ff2133d171b18d8e9d0ff5acb5\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=317cc4dc66a6b476886c323c7135113a6246e776\", \"width\": 320, \"height\": 212}, {\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f7554622d36e97b2294893c0a60b4f974a1cdaab\", \"width\": 640, \"height\": 424}, {\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=fc9153bbaa3a0c358d458fa3a5f103a46d40e3f9\", \"width\": 960, \"height\": 636}, {\"url\": \"https://external-preview.redd.it/iXdQAoes0zf2xu3cbZjR255Pj9lEQgrE8oWXvhL16VU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9bc1f7f0f2fe262fd564c8ddb00c51de412d34e0\", \"width\": 1080, \"height\": 716}], \"variants\": {}, \"id\": \"g1uafJ8duh1qHq9T0o0yhwARDY3hm2VmF3yI9jwZXU8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceadco\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceadco/debt_and_dollar_in_demand_sterling_and_stocks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/naOQylgkLMM/debt-and-dollar-in-demand-sterling-and-stocks-stricken-on-trade-war-and-brexit-idUSKCN1UC01B\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563354557.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"As Fed nears rate cut, policymakers debate how deep, and even if\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_ceadbp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/A9OpmwZxG2znJ_AFoVEXe-ycAb60O3a4APGXm0bqsjk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563383351.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/jkt1npowRZQl4y1vNp9J2b1_DDy_MpCAhFOfXHXu6BE.jpg?auto=webp\\u0026s=04f3f3807e2c314de01f95ea6256e45fbd894193\", \"width\": 1200, \"height\": 800}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/jkt1npowRZQl4y1vNp9J2b1_DDy_MpCAhFOfXHXu6BE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=85a8367b49401c4e93eab73be641d3efcd5d4e12\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/jkt1npowRZQl4y1vNp9J2b1_DDy_MpCAhFOfXHXu6BE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=268463253f1a4830fc45cfac94b0021138edba56\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/jkt1npowRZQl4y1vNp9J2b1_DDy_MpCAhFOfXHXu6BE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9d89433d70c3980d19ca7cb1a5f2345cd3a2a8a8\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/jkt1npowRZQl4y1vNp9J2b1_DDy_MpCAhFOfXHXu6BE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1cce2391c0251c6f3ac74a927ef069e515db2942\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/jkt1npowRZQl4y1vNp9J2b1_DDy_MpCAhFOfXHXu6BE.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=1036ce058c4cca74687cef6d22bb9784ca4d8c37\", \"width\": 960, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/jkt1npowRZQl4y1vNp9J2b1_DDy_MpCAhFOfXHXu6BE.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=f969babd9c7eab3cb676d6f411fc1346904189c0\", \"width\": 1080, \"height\": 720}], \"variants\": {}, \"id\": \"A_woa4qS5he7CvGjLwIWXfTWvZgJKjLeNuyPh9z2_34\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceadbp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ceadbp/as_fed_nears_rate_cut_policymakers_debate_how/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/mU9PaSVLzh0/as-fed-nears-rate-cut-policymakers-debate-how-deep-and-even-if-idUSKCN1UB2LT\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563354551.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_44s0ngap\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Selazeen (\\u0421\\u0435\\u043b\\u0430\\u0437\\u0438\\u043d) - \\u0413\\u0435\\u043b\\u044c \\u0434\\u043b\\u044f \\u0443\\u0441\\u0442\\u043e\\u0438\\u0306\\u0447\\u0438\\u0432\\u043e\\u0438\\u0306 \\u044d\\u0440\\u0435\\u043a\\u0446\\u0438\\u0438\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cea4y0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563381560.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"staffbuilder.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cea4y0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"staffbuilder\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cea4y0/selazeen_\\u0441\\u0435\\u043b\\u0430\\u0437\\u0438\\u043d_\\u0433\\u0435\\u043b\\u044c_\\u0434\\u043b\\u044f_\\u0443\\u0441\\u0442\\u043e\\u0438\\u0447\\u0438\\u0432\\u043e\\u0438_\\u044d\\u0440\\u0435\\u043a\\u0446\\u0438\\u0438/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://staffbuilder.com/kupit-selazeen-gel-dla-ustojcivoj-erekcii-p2657.html\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563352760.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1phgejhg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"v0.2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cea4e5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563381438.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cea4e5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"testbot10001\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cea4e5/v02/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/cea4e5/v02/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563352638.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_44ru4p29\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Selazeen (\\u0421\\u0435\\u043b\\u0430\\u0437\\u0438\\u043d) - \\u0413\\u0435\\u043b\\u044c \\u0434\\u043b\\u044f \\u0443\\u0441\\u0442\\u043e\\u0438\\u0306\\u0447\\u0438\\u0432\\u043e\\u0438\\u0306 \\u044d\\u0440\\u0435\\u043a\\u0446\\u0438\\u0438\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cea26d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563380959.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"autorider.net\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cea26d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"autorider\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/cea26d/selazeen_\\u0441\\u0435\\u043b\\u0430\\u0437\\u0438\\u043d_\\u0433\\u0435\\u043b\\u044c_\\u0434\\u043b\\u044f_\\u0443\\u0441\\u0442\\u043e\\u0438\\u0447\\u0438\\u0432\\u043e\\u0438_\\u044d\\u0440\\u0435\\u043a\\u0446\\u0438\\u0438/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://autorider.net/page-kupit-selazeen-gel-dla-ustojcivoj-erekcii-tovar_id2656.html\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563352159.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_2pbll8ns\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Selazeen (\\u0421\\u0435\\u043b\\u0430\\u0437\\u0438\\u043d) - \\u0413\\u0435\\u043b\\u044c \\u0434\\u043b\\u044f \\u0443\\u0441\\u0442\\u043e\\u0438\\u0306\\u0447\\u0438\\u0432\\u043e\\u0438\\u0306 \\u044d\\u0440\\u0435\\u043a\\u0446\\u0438\\u0438\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ce9wso\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563379759.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yagodkaopat.ru\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce9wso\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yagodkaopat\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce9wso/selazeen_\\u0441\\u0435\\u043b\\u0430\\u0437\\u0438\\u043d_\\u0433\\u0435\\u043b\\u044c_\\u0434\\u043b\\u044f_\\u0443\\u0441\\u0442\\u043e\\u0438\\u0447\\u0438\\u0432\\u043e\\u0438_\\u044d\\u0440\\u0435\\u043a\\u0446\\u0438\\u0438/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yagodkaopat.ru/kupit-selazeen-gel-dla-ustojcivoj-erekcii.html\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563350959.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"War risk costs drag on UAE marine fuel sales, benefit Singapore: trade sources\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_ce9wl3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/6hn4C2RA1Oy3FeHElY5G2hqHI4lH2o4PtftCNx-CN5o.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563379714.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/75kvPN7S1QjlIEgO-HnfU3PHkN_XYNh5LMwjdX-JPn0.jpg?auto=webp\\u0026s=0a743735a9e808a4bf18fd09347cc65dd074dea1\", \"width\": 1200, \"height\": 798}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/75kvPN7S1QjlIEgO-HnfU3PHkN_XYNh5LMwjdX-JPn0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ff8f836bc61e68f5e585b2205ab4af4a6c2b0984\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/75kvPN7S1QjlIEgO-HnfU3PHkN_XYNh5LMwjdX-JPn0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=624ea92c1dbc565e8ed7234b57527f5f8161c3fc\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/75kvPN7S1QjlIEgO-HnfU3PHkN_XYNh5LMwjdX-JPn0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5a52822367245c64698b5c934d3967c2fe6d9a0c\", \"width\": 320, \"height\": 212}, {\"url\": \"https://external-preview.redd.it/75kvPN7S1QjlIEgO-HnfU3PHkN_XYNh5LMwjdX-JPn0.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a8dd0ba6853f3642b964bc86efe6d0898a7cbbb9\", \"width\": 640, \"height\": 425}, {\"url\": \"https://external-preview.redd.it/75kvPN7S1QjlIEgO-HnfU3PHkN_XYNh5LMwjdX-JPn0.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=30ffa27961ba562bc009954781a6b031154aea67\", \"width\": 960, \"height\": 638}, {\"url\": \"https://external-preview.redd.it/75kvPN7S1QjlIEgO-HnfU3PHkN_XYNh5LMwjdX-JPn0.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9cefd834c67617830f46921be0cd43932348df7a\", \"width\": 1080, \"height\": 718}], \"variants\": {}, \"id\": \"d_kLZrH2pFv641LGYNRo9N3iOCJD3QwQC8Otyhm5Elo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce9wl3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce9wl3/war_risk_costs_drag_on_uae_marine_fuel_sales/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/JFo7I1n_kGY/war-risk-costs-drag-on-uae-marine-fuel-sales-benefit-singapore-trade-sources-idUSKCN1UC0P8\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563350914.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"U.S. diplomat vows to help South Korea, Japan resolve worsening dispute\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 97, \"hide_score\": false, \"name\": \"t3_ce9wkw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/WwdiEFr64Umc2iw0Bo5jItJomCNfIHcZyGqyY8MrZak.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563379713.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?auto=webp\\u0026s=5162a20630b736a56827f5e7a80facffa349a261\", \"width\": 1200, \"height\": 832}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3b18c48f1d9c12b6d39a350ffc868e5742b6201a\", \"width\": 108, \"height\": 74}, {\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=542d2707de17417cca14f250eca4f7dd13c3f16d\", \"width\": 216, \"height\": 149}, {\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ae0c1b0fab758b5d55d1351e46025c93000c5c08\", \"width\": 320, \"height\": 221}, {\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=7bbf47b572e2c96c77de0136d9c93153c85f2e02\", \"width\": 640, \"height\": 443}, {\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=bdb5567fbb8d2fb3fef32260c3f19bb8a8bb1c18\", \"width\": 960, \"height\": 665}, {\"url\": \"https://external-preview.redd.it/zJooXbyEqb5_bE08Tmg8HcxJFm0h6M4ehCiALnPJTZc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d9a177b76aefca4cb12049b7641d1575e637412c\", \"width\": 1080, \"height\": 748}], \"variants\": {}, \"id\": \"BNZM-iZhVfgdcw5DNdWgKzJ5qSQuXLYYTIdmWBIInoU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce9wkw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce9wkw/us_diplomat_vows_to_help_south_korea_japan/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/mVLJL_c20z8/u-s-diplomat-vows-to-help-south-korea-japan-resolve-worsening-dispute-idUSKCN1UB2WC\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563350913.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"From Viet Cong to Team USA: Hanoi garment factory's Olympic transformation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 94, \"hide_score\": false, \"name\": \"t3_ce9w9z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/cH2MBSwbw5QadulO0iF52naHmjmqRiJobTa76kd_tpw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563379648.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/zNQo59HWBULGGTAn4WLpC0m8xCOYnxGSAP53iaoGSAo.jpg?auto=webp\\u0026s=6d26681dede467488eab5f39bf1de9608f468e66\", \"width\": 1200, \"height\": 810}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/zNQo59HWBULGGTAn4WLpC0m8xCOYnxGSAP53iaoGSAo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=9a3ad2a94aa7c2aeefd51008758832a4162ea284\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/zNQo59HWBULGGTAn4WLpC0m8xCOYnxGSAP53iaoGSAo.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d942dc1046bf3470c8640edbb119775dbfbd1564\", \"width\": 216, \"height\": 145}, {\"url\": \"https://external-preview.redd.it/zNQo59HWBULGGTAn4WLpC0m8xCOYnxGSAP53iaoGSAo.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=76f0b5c06182ae12cb2d450d9ffeec04326204f2\", \"width\": 320, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/zNQo59HWBULGGTAn4WLpC0m8xCOYnxGSAP53iaoGSAo.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=0b5c014929e9fa10175835a5172ded0b934854c2\", \"width\": 640, \"height\": 432}, {\"url\": \"https://external-preview.redd.it/zNQo59HWBULGGTAn4WLpC0m8xCOYnxGSAP53iaoGSAo.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=af45e58018a1529eb77a522c5cb1d9ab299309db\", \"width\": 960, \"height\": 648}, {\"url\": \"https://external-preview.redd.it/zNQo59HWBULGGTAn4WLpC0m8xCOYnxGSAP53iaoGSAo.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d0e19be8f4e0083099c22a12db56c11689d18023\", \"width\": 1080, \"height\": 729}], \"variants\": {}, \"id\": \"1gRsO36vrK27BBFoZrblFwlh7BoKfUt7xjD66E8gp9w\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce9w9z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce9w9z/from_viet_cong_to_team_usa_hanoi_garment_factorys/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/t91UUv_dp8w/from-viet-cong-to-team-usa-hanoi-garment-factorys-olympic-transformation-idUSKCN1UC0HT\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563350848.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_2pbll8ns\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"FINO (\\u0424\\u0418\\u041d\\u041e) - \\u0441\\u0443\\u043c\\u043a\\u0430 \\u043a\\u043e\\u0431\\u0443\\u0440\\u0430\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ce9tze\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/-bAe2tFkmsrN-es3YqFa8w1oZFRZ_TXQG34H8NTAQKw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563379161.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yagodkaopat.ru\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/2JL1yiyQTNCBW2SjPfgubcUhViqRvgajWLmSM5T9taI.jpg?auto=webp\\u0026s=f695700c4f9828c4cdf0783e323e9e088a1e5ae2\", \"width\": 216, \"height\": 216}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/2JL1yiyQTNCBW2SjPfgubcUhViqRvgajWLmSM5T9taI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=975a19820f89b4a4a128a8ddb97923738269d60e\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/2JL1yiyQTNCBW2SjPfgubcUhViqRvgajWLmSM5T9taI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0cefdec33b4538a0aa266326fb8aec2dd93b3074\", \"width\": 216, \"height\": 216}], \"variants\": {}, \"id\": \"MKH5-n1PjmXPsImIqDcQpp9NwxyoG5sP0Yqto0YK5QA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce9tze\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yagodkaopat\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce9tze/fino_\\u0444\\u0438\\u043d\\u043e_\\u0441\\u0443\\u043c\\u043a\\u0430_\\u043a\\u043e\\u0431\\u0443\\u0440\\u0430/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yagodkaopat.ru/kupit-fino-sumka-kobura.html\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563350361.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Making sense of chaos? Algos scour social media for clues to crypto moves\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_ce9fsb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/bCI637m104HJz58qTl-bHHun0f2F5Wn5zxjouNHn8vk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563376119.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/k3653t-2LDQLKmsSEQhNKApMkBd5idI4bToTQ_1rYXw.jpg?auto=webp\\u0026s=5190b0b674addc2e8f6b851f6b83c414d4b98a01\", \"width\": 1200, \"height\": 800}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/k3653t-2LDQLKmsSEQhNKApMkBd5idI4bToTQ_1rYXw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=9e86b1868e79abbb893441bb057b568978017866\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/k3653t-2LDQLKmsSEQhNKApMkBd5idI4bToTQ_1rYXw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c348673fb6b916b8d02dfd1e34dcc32455ce9ed6\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/k3653t-2LDQLKmsSEQhNKApMkBd5idI4bToTQ_1rYXw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=0109ef0eaa51c57d70d6d4ea3513e7e1736e99d3\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/k3653t-2LDQLKmsSEQhNKApMkBd5idI4bToTQ_1rYXw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=0e7c8f897ebda35d4bfa84a43c74ef4ad0a0657c\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/k3653t-2LDQLKmsSEQhNKApMkBd5idI4bToTQ_1rYXw.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=802e575979a3ef464a5437cbfe4711c1136f8973\", \"width\": 960, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/k3653t-2LDQLKmsSEQhNKApMkBd5idI4bToTQ_1rYXw.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=545adcf1b49111fc6603aa9cb5b3f84bd60185c4\", \"width\": 1080, \"height\": 720}], \"variants\": {}, \"id\": \"Erl-cOF57UbfQyDHbfC9LwJ2BAq8GGZTHBlQTp0Frl0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce9fsb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce9fsb/making_sense_of_chaos_algos_scour_social_media/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/4j7-2RWLilk/making-sense-of-chaos-algos-scour-social-media-for-clues-to-crypto-moves-idUSKCN1UC0HX\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563347319.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Suu Kyi's bid to reform charter sparks rival protests in Myanmar\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 109, \"hide_score\": false, \"name\": \"t3_ce9fdl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/-c4sWtMsN-ICOHPYmdzFLDEutakDTSotOcdbkWOu2ys.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563376047.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/NvsvAf4-EBhcx4yhdBCa-OoHtifwweSJ_y_NI88iCN4.jpg?auto=webp\\u0026s=1ae457d8a38009d44c7184f7be614086efc15d14\", \"width\": 1200, \"height\": 942}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/NvsvAf4-EBhcx4yhdBCa-OoHtifwweSJ_y_NI88iCN4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=56265c0600422da246d7c64ba2a210a1e3fc2ade\", \"width\": 108, \"height\": 84}, {\"url\": \"https://external-preview.redd.it/NvsvAf4-EBhcx4yhdBCa-OoHtifwweSJ_y_NI88iCN4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5435f7137301740f49283ebf5c8e212e6df2d2f9\", \"width\": 216, \"height\": 169}, {\"url\": \"https://external-preview.redd.it/NvsvAf4-EBhcx4yhdBCa-OoHtifwweSJ_y_NI88iCN4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=00c4aa816311ed9a0b026f1aede56c1e66289300\", \"width\": 320, \"height\": 251}, {\"url\": \"https://external-preview.redd.it/NvsvAf4-EBhcx4yhdBCa-OoHtifwweSJ_y_NI88iCN4.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=0144fcf51801e67a58391269f1bc01643df60f72\", \"width\": 640, \"height\": 502}, {\"url\": \"https://external-preview.redd.it/NvsvAf4-EBhcx4yhdBCa-OoHtifwweSJ_y_NI88iCN4.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=6ddd1a71eae1f47c56e74074fa1d6da31c1ac9c9\", \"width\": 960, \"height\": 753}, {\"url\": \"https://external-preview.redd.it/NvsvAf4-EBhcx4yhdBCa-OoHtifwweSJ_y_NI88iCN4.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=f5f575cb1fdccddde09ecdb6b81021d75c2acdde\", \"width\": 1080, \"height\": 847}], \"variants\": {}, \"id\": \"O-_zROzKfRDfIoSMTOykn-BcSsm7HcOqgJ1OF6IeNso\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce9fdl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce9fdl/suu_kyis_bid_to_reform_charter_sparks_rival/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/GJCZ0NVoWTs/suu-kyis-bid-to-reform-charter-sparks-rival-protests-in-myanmar-idUSKCN1UC0KM\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563347247.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"Hi test text did go the first\", \"author_fullname\": \"t2_45g5d6rl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Hi\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ce988z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563374669.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi test text did go the first\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce988z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bellyfat2\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce988z/hi/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/ce988z/hi/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563345869.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"U.S. imposes sanctions on Myanmar military leaders over Rohingya abuses\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_ce8wux\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/dZrO5GWljLLvokmeLq68yVOwb66OID_At153gESCyzQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563372458.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/HWUq81Cte1eVjMNuJ7AZya56PH7zNt5W4feRBkpcH8U.jpg?auto=webp\\u0026s=0a6c4f939171838c025bf742d93b5508ed36341f\", \"width\": 1200, \"height\": 800}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/HWUq81Cte1eVjMNuJ7AZya56PH7zNt5W4feRBkpcH8U.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=eaeafcf3653fa93f6bb3f797fbc126095e084f8e\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/HWUq81Cte1eVjMNuJ7AZya56PH7zNt5W4feRBkpcH8U.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=673b7dedc4bdf411309c674046ec1f8130ae1e1b\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/HWUq81Cte1eVjMNuJ7AZya56PH7zNt5W4feRBkpcH8U.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d81d3a636c238dd809c8e899e07a9189512bd95b\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/HWUq81Cte1eVjMNuJ7AZya56PH7zNt5W4feRBkpcH8U.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=39004e15fe4b9d1cec206e943c67a4a5e54205f0\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/HWUq81Cte1eVjMNuJ7AZya56PH7zNt5W4feRBkpcH8U.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=caf47d3888726c7cca32b3683cae8bbdd802083f\", \"width\": 960, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/HWUq81Cte1eVjMNuJ7AZya56PH7zNt5W4feRBkpcH8U.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=40738106532358c6dffa69efea4f2d81c01cf84a\", \"width\": 1080, \"height\": 720}], \"variants\": {}, \"id\": \"SU9D75FPBdczlfUZPJX3LVKZzmqfKoe1sWtxn3iCTFo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce8wux\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce8wux/us_imposes_sanctions_on_myanmar_military_leaders/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/qynM9PsdlAY/u-s-imposes-sanctions-on-myanmar-military-leaders-over-rohingya-abuses-idUSKCN1UB2QM\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563343658.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How lithium-rich Chile botched a plan to attract battery makers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_ce8wuf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/qlJ5shttR1EPW0tlfeS8V2SFxjpQ0Gi4CJNKtKFOSAE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563372455.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/_bB2xrI-CNKnaQKTm8TERrH_rXa3_zVvTNFQi3TSYnk.jpg?auto=webp\\u0026s=f595fcc39410a211d2b46bfe15484f711a821506\", \"width\": 1200, \"height\": 800}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/_bB2xrI-CNKnaQKTm8TERrH_rXa3_zVvTNFQi3TSYnk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a96af552fd10c9658730170f90ad8a962e8ba752\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/_bB2xrI-CNKnaQKTm8TERrH_rXa3_zVvTNFQi3TSYnk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=447413930e8724824f31553dc512ef198f2677d6\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/_bB2xrI-CNKnaQKTm8TERrH_rXa3_zVvTNFQi3TSYnk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a7baeaa2857699db5885beef6a0088ea60772d87\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/_bB2xrI-CNKnaQKTm8TERrH_rXa3_zVvTNFQi3TSYnk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a6772e90c79287081c7bfb3cf7187c3e579f2867\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/_bB2xrI-CNKnaQKTm8TERrH_rXa3_zVvTNFQi3TSYnk.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=656d2f9e71efada04cc637951490a8b6b5d05bb7\", \"width\": 960, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/_bB2xrI-CNKnaQKTm8TERrH_rXa3_zVvTNFQi3TSYnk.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=febd6771c27c89be73ae31996e326e2389d2cf39\", \"width\": 1080, \"height\": 720}], \"variants\": {}, \"id\": \"8SgRojVY3lRTR8hk9adC3YMvbxZnE_cwZw_4bKdXWKM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce8wuf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce8wuf/how_lithiumrich_chile_botched_a_plan_to_attract/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/3UhTRwukKDk/how-lithium-rich-chile-botched-a-plan-to-attract-battery-makers-idUSKCN1UC0C8\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563343655.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_1j0vhohe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Asia shares subdued, dollar supported as sterling suffers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 91, \"hide_score\": false, \"name\": \"t3_ce8whq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/G2eVjqR_VCt0S_jv619kDTa6NnCp2frGpavE2pkw5_A.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563372387.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"feeds.reuters.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/_gPXKb5-aFwdxxGLPX7FtY4ZyPk5yt5U6L-qpv90Dls.jpg?auto=webp\\u0026s=40094d361a4dd209ca3a14116b1c63512ca5560a\", \"width\": 1200, \"height\": 782}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/_gPXKb5-aFwdxxGLPX7FtY4ZyPk5yt5U6L-qpv90Dls.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=03213cfb301792b8aee7ebb242eec1ee4ab6dc61\", \"width\": 108, \"height\": 70}, {\"url\": \"https://external-preview.redd.it/_gPXKb5-aFwdxxGLPX7FtY4ZyPk5yt5U6L-qpv90Dls.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=09248b1c9474717a273a76514487b83d31092ee5\", \"width\": 216, \"height\": 140}, {\"url\": \"https://external-preview.redd.it/_gPXKb5-aFwdxxGLPX7FtY4ZyPk5yt5U6L-qpv90Dls.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d567cfede18855475102f9d5ac46bc98c057dcc1\", \"width\": 320, \"height\": 208}, {\"url\": \"https://external-preview.redd.it/_gPXKb5-aFwdxxGLPX7FtY4ZyPk5yt5U6L-qpv90Dls.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a9ab81431218d748ecf523fc48c1b2c9373a2885\", \"width\": 640, \"height\": 417}, {\"url\": \"https://external-preview.redd.it/_gPXKb5-aFwdxxGLPX7FtY4ZyPk5yt5U6L-qpv90Dls.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=1c3ac2a976f3b02325cd19efb2777b56db5372bd\", \"width\": 960, \"height\": 625}, {\"url\": \"https://external-preview.redd.it/_gPXKb5-aFwdxxGLPX7FtY4ZyPk5yt5U6L-qpv90Dls.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=2ceea0dafa3eb391774bd72972847b6966aa4bd9\", \"width\": 1080, \"height\": 703}], \"variants\": {}, \"id\": \"AS2SRkMI1lJ39c9SUH31r_vJ90uF8dly-HCcPBsKKmk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce8whq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"taylortest1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce8whq/asia_shares_subdued_dollar_supported_as_sterling/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://feeds.reuters.com/~r/reuters/topNews/~3/r5K6AiO7hzk/asia-shares-subdued-dollar-supported-as-sterling-suffers-idUSKCN1UC01B\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563343587.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_35btfpcv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test card\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ce8p7e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/hpakhZMvyfYFyGj3UpA_Uqhw5mpH-CO6zuqj-mDGcGw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563371008.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/o6foixthxsa31.jpg?auto=webp\\u0026s=86a91a49fae9c87af99c1cfbc9eb6ed1c7f4a77c\", \"width\": 2164, \"height\": 2885}, \"resolutions\": [{\"url\": \"https://preview.redd.it/o6foixthxsa31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=11164a97c47014fb8fde572cee9ca9cdc5c000d7\", \"width\": 108, \"height\": 143}, {\"url\": \"https://preview.redd.it/o6foixthxsa31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1ae059c770a7a60e1371e6260ae4d99686ff68e7\", \"width\": 216, \"height\": 287}, {\"url\": \"https://preview.redd.it/o6foixthxsa31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=149f4f0ab66047c650cd5dbe06637b77550107fb\", \"width\": 320, \"height\": 426}, {\"url\": \"https://preview.redd.it/o6foixthxsa31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=94de3a7b749b2d001b0109b8c120e9d3c0ad3e50\", \"width\": 640, \"height\": 853}, {\"url\": \"https://preview.redd.it/o6foixthxsa31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=fa370290a17b9fa24cd8008f59585661bcbd4153\", \"width\": 960, \"height\": 1279}, {\"url\": \"https://preview.redd.it/o6foixthxsa31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=f515cbf8cad0adab8d17398e54876602c8040ae3\", \"width\": 1080, \"height\": 1439}], \"variants\": {}, \"id\": \"K10-wdbipU0hxVobmR3wRQ_vswGSZFFbczi2aHOjh4U\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce8p7e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AHeathD\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce8p7e/test_card/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/o6foixthxsa31.jpg\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563342208.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"\", \"author_fullname\": \"t2_e3hpzw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Bruh moment\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ce7y96\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/2smgdjxvisa31/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 866, \"scrubber_media_url\": \"https://v.redd.it/2smgdjxvisa31/DASH_96\", \"dash_url\": \"https://v.redd.it/2smgdjxvisa31/DASHPlaylist.mpd\", \"duration\": 15, \"hls_url\": \"https://v.redd.it/2smgdjxvisa31/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"D O G\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Noax4RqxInWdD8CARVMJ1S9V8V4L1xDRVy8Gepfhco.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563366106.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/1mYvMpLoDMQtyqjgy5H2kd76LMTTMRWW76dBerd1-G0.png?format=pjpg\\u0026auto=webp\\u0026s=5a5048903927d01259008991f9134cf5850b49de\", \"width\": 866, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/1mYvMpLoDMQtyqjgy5H2kd76LMTTMRWW76dBerd1-G0.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=186127e83afbb98f986b0fdb5d7ef8c41f5f672e\", \"width\": 108, \"height\": 134}, {\"url\": \"https://external-preview.redd.it/1mYvMpLoDMQtyqjgy5H2kd76LMTTMRWW76dBerd1-G0.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=08b35ff5845afae47a59435b7783bd77ad578836\", \"width\": 216, \"height\": 269}, {\"url\": \"https://external-preview.redd.it/1mYvMpLoDMQtyqjgy5H2kd76LMTTMRWW76dBerd1-G0.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=aaef7dc91f8867637a2cd9ddc604859177fc8c40\", \"width\": 320, \"height\": 399}, {\"url\": \"https://external-preview.redd.it/1mYvMpLoDMQtyqjgy5H2kd76LMTTMRWW76dBerd1-G0.png?width=640\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=4832ca24d44e12d4aff0350ef993f8dc45c73b92\", \"width\": 640, \"height\": 798}], \"variants\": {}, \"id\": \"QGRTm6zGFOAXWqh4LFmZLfKn3eLgfR_PfeJJbnZ1g5g\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"6b39b4a6-be2f-11e8-ac14-0e2593696d0a\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce7y96\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ILikeMultipleThings\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce7y96/bruh_moment/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://v.redd.it/2smgdjxvisa31\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563337306.0, \"discussion_type\": null, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/2smgdjxvisa31/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 866, \"scrubber_media_url\": \"https://v.redd.it/2smgdjxvisa31/DASH_96\", \"dash_url\": \"https://v.redd.it/2smgdjxvisa31/DASHPlaylist.mpd\", \"duration\": 15, \"hls_url\": \"https://v.redd.it/2smgdjxvisa31/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"test\", \"selftext\": \"~~strike~~\", \"author_fullname\": \"t2_ybx2orm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/test\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ce7uhk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563365460.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.test\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cdel\\u003Estrike\\u003C/del\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh23\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce7uhk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AlGeee\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/test/comments/ce7uhk/test/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/test/comments/ce7uhk/test/\", \"subreddit_subscribers\": 5690, \"created_utc\": 1563336660.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}], \"after\": \"t3_ce7uhk\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["371189"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:16:50 GMT"], "x-ratelimit-remaining": ["578.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21948-LGA"], "x-ratelimit-used": ["22"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495410.754939,VS0,VE642"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["191"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/test/new?raw_json=1&limit=100"}, "recorded_at": "2019-07-19T00:16:50"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/test/new?raw_json=1&limit=100&before=t3_cezq28"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:16:50 GMT"], "x-ratelimit-remaining": ["577.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21948-LGA"], "x-ratelimit-used": ["23"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495411.808463,VS0,VE84"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["190"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/test/new?raw_json=1&limit=100&before=t3_cezq28"}, "recorded_at": "2019-07-19T00:16:50"}, {"request": {"body": {"string": "action=sub&api_type=json&skip_inital_defaults=True&sr_name=test", "encoding": "utf-8"}, "headers": {"Content-Length": ["63"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["bearer **********"]}, "method": "POST", "uri": "https://oauth.reddit.com/api/subscribe/?raw_json=1"}, "response": {"body": {"string": "{}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["2"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:16:51 GMT"], "x-ratelimit-remaining": ["576.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21948-LGA"], "x-ratelimit-used": ["24"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495411.246646,VS0,VE122"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["189"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/api/subscribe/?raw_json=1"}, "recorded_at": "2019-07-19T00:16:51"}, {"request": {"body": {"string": "action=unsub&api_type=json&sr_name=test", "encoding": "utf-8"}, "headers": {"Content-Length": ["39"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=2vP9mxBdHIO58tM4ms"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["bearer **********"]}, "method": "POST", "uri": "https://oauth.reddit.com/api/subscribe/?raw_json=1"}, "response": {"body": {"string": "{}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["2"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Fri, 19 Jul 2019 00:16:51 GMT"], "x-ratelimit-remaining": ["575.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21948-LGA"], "x-ratelimit-used": ["25"], "Via": ["1.1 varnish"], "X-Timer": ["S1563495412.714334,VS0,VE145"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["189"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/api/subscribe/?raw_json=1"}, "recorded_at": "2019-07-19T00:16:51"}], "recorded_with": "betamax/0.8.1"} \ No newline at end of file diff --git a/tests/cassettes/supersede.json b/tests/cassettes/supersede.json new file mode 100644 index 0000000..7688105 --- /dev/null +++ b/tests/cassettes/supersede.json @@ -0,0 +1 @@ +{"http_interactions": [{"request": {"body": {"string": "grant_type=refresh_token&refresh_token=**********", "encoding": "utf-8"}, "headers": {"Content-Length": ["79"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["**********"]}, "method": "POST", "uri": "https://www.reddit.com/api/v1/access_token"}, "response": {"body": {"string": "{\"access_token\": \"**********\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"edit history identity mysubreddits privatemessages read report save submit subscribe vote\"}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["206"], "x-xss-protection": ["1; mode=block"], "X-Cache": ["MISS"], "x-content-type-options": ["nosniff"], "Set-Cookie": ["edgebucket=TstivKR87WOXdTfyS3; Domain=reddit.com; Max-Age=63071999; Path=/; secure"], "Accept-Ranges": ["bytes"], "X-Timer": ["S1561643983.968883,VS0,VE43"], "X-Served-By": ["cache-ewr18137-EWR"], "X-Moose": ["majestic"], "Connection": ["keep-alive"], "Via": ["1.1 varnish"], "X-Cache-Hits": ["0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "cache-control": ["max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:43 GMT"], "x-frame-options": ["SAMEORIGIN"], "Server": ["snooserv"], "Content-Type": ["application/json; charset=UTF-8"]}, "status": {"message": "OK", "code": 200}, "url": "https://www.reddit.com/api/v1/access_token"}, "recorded_at": "2019-06-27T13:59:43"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 3, \"children\": [{\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"emacs\", \"header_img\": \"https://f.thumbs.redditmedia.com/1CBmBnoqVxNCXdVS.png\", \"title\": \"M-x emacs-reddit\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/emacs\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 30359, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2qhwu\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"The extensible, customizable, self-documenting real-time display editor.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA sub-reddit for the timeless and infinitely powerful editor. \\u003Ca href=\\\"http://emacsrocks.com/\\\"\\u003EWant to see what Emacs is capable of?!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGet Emacs\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://ftp.gnu.org/gnu/emacs/windows/\\\"\\u003EWindows\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://emacsformacosx.com/\\\"\\u003EMac OS X\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGNU/Linux and BSD (Just get it from your distribution\\u0026#39;s package manager)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.gnu.org/software/emacs/#Obtaining\\\"\\u003EBuild it from source\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Resources\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/\\\"\\u003EEmacs Wiki\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://wikemacs.org/\\\"\\u003EWikEmacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://emacs.zeef.com/ehartc\\\"\\u003EEmacs Reference\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://shop.oreilly.com/product/9780596006488.do\\\"\\u003ELearning GNU Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf\\\"\\u003EEmacs Reference Card\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026amp;restrict_sr=on\\u0026amp;sort=new\\u0026amp;t=all\\\"\\u003EWeekly tips/tricks/etc threads\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Tutorials\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/\\\"\\u003EBeginner\\u2019s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/\\\"\\u003EAbsolute Beginner\\u0026#39;s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/\\\"\\u003EHow to Learn Emacs: A Hand-drawn One-pager for Beginners\\n\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERelated Subreddits\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/orgmode\\\"\\u003Er/orgmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/evilmode\\\"\\u003Er/evilmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/spacemacs\\\"\\u003Er/spacemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/planetemacs\\\"\\u003Er/planetemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUseful Emacs configuration files and distributions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/technomancy/better-defaults\\\"\\u003EBetter Defaults\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick pain-saver tip\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/emacs/MovingTheCtrlKey\\\"\\u003EPut the Caps Lock key to better use!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": [152, 50], \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1210079411.0, \"wls\": 6, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe extensible, customizable, self-documenting real-time display editor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2qhwu\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"A sub-reddit for the timeless and infinitely powerful editor. [Want to see what Emacs is capable of?!](http://emacsrocks.com/)\\n\\n**Get Emacs**\\n\\n* [Windows](http://ftp.gnu.org/gnu/emacs/windows/)\\n* [Mac OS X](http://emacsformacosx.com/)\\n* GNU/Linux and BSD (Just get it from your distribution's package manager)\\n* [Build it from source] (http://www.gnu.org/software/emacs/#Obtaining)\\n\\n**Emacs Resources**\\n\\n* [Emacs Wiki](http://www.emacswiki.org/)\\n* [WikEmacs](http://wikemacs.org/)\\n* [Emacs Reference](https://emacs.zeef.com/ehartc)\\n* [Learning GNU Emacs](http://shop.oreilly.com/product/9780596006488.do)\\n* [Emacs Reference Card](https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf)\\n* [Weekly tips/tricks/etc threads](/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026restrict_sr=on\\u0026sort=new\\u0026t=all)\\n\\n**Emacs Tutorials**\\n\\n* [Beginner\\u2019s Guide to Emacs](http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/)\\n* [Absolute Beginner's Guide to Emacs](http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/)\\n* [How to Learn Emacs: A Hand-drawn One-pager for Beginners\\n](http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/)\\n\\n**Related Subreddits**\\n\\n* r/orgmode\\n* r/evilmode\\n* r/spacemacs\\n* r/planetemacs\\n\\n**Useful Emacs configuration files and distributions**\\n\\n* [Better Defaults](https://github.com/technomancy/better-defaults)\\n\\n**Quick pain-saver tip**\\n\\n* [Put the Caps Lock key to better use!](http://www.emacswiki.org/emacs/MovingTheCtrlKey)\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": \"all_ads\", \"url\": \"/r/emacs/\", \"created_utc\": 1210050611.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": true, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"orgmode\", \"header_img\": null, \"title\": \"Org-mode\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/orgmode\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 4902, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2s5ak\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"[Org-mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EAbout Org mode\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EResources\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://orgmode.org/#docs\\\"\\u003EOfficial Documentation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/worg/\\\"\\u003ECommunity Documentation (Worg)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/guide/\\\"\\u003ECompact Org-mode Guide\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://lists.gnu.org/archive/html/emacs-orgmode/\\\"\\u003EOfficial Mailing list\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EIRC Channel: #org-mode on \\u003Ca href=\\\"http://freenode.net/\\\"\\u003EFreenode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMatrix: \\u003Ca href=\\\"https://matrix.to/#/#org-mode:matrix.org\\\"\\u003E#org-mode:matrix.org\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003ERelated Subreddits\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1287182517.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg-mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2s5ak\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"# About Org mode\\n\\n[Org mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\n\\n# Resources\\n\\n* [Official Documentation](http://orgmode.org/#docs)\\n* [Community Documentation (Worg)](https://orgmode.org/worg/)\\n* [Compact Org-mode Guide](https://orgmode.org/guide/)\\n* [Official Mailing list](http://lists.gnu.org/archive/html/emacs-orgmode/)\\n* IRC Channel: #org-mode on [Freenode](http://freenode.net/)\\n* Matrix: [#org-mode:matrix.org](https://matrix.to/#/#org-mode:matrix.org)\\n\\n# Related Subreddits\\n\\n* /r/emacs\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/orgmode/\", \"created_utc\": 1287153717.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"PostPreview\", \"header_img\": null, \"title\": \"Preview your Reddit posts\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/PostPreview\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 720, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2waml\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"A place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWhat this is\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAllowed posts\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYou can post whatever and however much you\\u0026#39;d like here, \\u003Cstrong\\u003Eas long as it conforms to \\u003Ca href=\\\"http://www.reddit.com/rules\\\"\\u003Ereddiquette\\u003C/a\\u003E\\u003C/strong\\u003E (eg. NO personal info, no alt accounts, etc). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPlease\\u003C/strong\\u003E utilize the Report button for content you feel breaks these rules, we can\\u0026#39;t sift through EVERYTHING, so your help is greatly appreciated.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpam filter\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESome posts/comments may be auto-rejected by Reddit\\u0026#39;s spam filter, despite the threshold set to \\u0026quot;Minimal\\u0026quot; here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you don\\u0026#39;t see you post show up, it\\u0026#39;s likely it got rejected. Message the mod mail and we can override it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHave fun previewing!\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"#24a0ed\", \"can_assign_user_flair\": true, \"created\": 1360563027.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": \"Try a text post!\", \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": \"confidence\", \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": true, \"id\": \"2waml\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"**What this is** \\n\\u003E A place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\n \\n**Allowed posts**\\n\\u003E You can post whatever and however much you'd like here, **as long as it conforms to [reddiquette](http://www.reddit.com/rules)** (eg. NO personal info, no alt accounts, etc). \\n\\u003E \\n\\u003E **Please** utilize the Report button for content you feel breaks these rules, we can't sift through EVERYTHING, so your help is greatly appreciated.\\n \\n**Spam filter** \\n\\u003E Some posts/comments may be auto-rejected by Reddit's spam filter, despite the threshold set to \\\"Minimal\\\" here. \\n\\u003E \\n\\u003E If you don't see you post show up, it's likely it got rejected. Message the mod mail and we can override it.\\n\\n**Have fun previewing!**\\n\\n \\n \", \"submit_link_label\": \"Test out a link!\", \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/PostPreview/\", \"created_utc\": 1360534227.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["18143"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:43 GMT"], "x-ratelimit-remaining": ["598.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["2"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643983.132752,VS0,VE120"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["17"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "recorded_at": "2019-06-27T13:59:43"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5eyo4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es69ece\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1561643970.0, \"send_replies\": true, \"parent_id\": \"t3_c5eyo4\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"See https://texfaq.org/FAQ-figurehere for more details.\", \"link_title\": \"Couple of quirks with org-mode latex export?\", \"author_flair_css_class\": null, \"name\": \"t1_es69ece\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESee \\u003Ca href=\\\"https://texfaq.org/FAQ-figurehere\\\"\\u003Ehttps://texfaq.org/FAQ-figurehere\\u003C/a\\u003E for more details.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/es69ece/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/\", \"report_reasons\": null, \"link_author\": \"GeorgeStorm\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/\", \"created\": 1561672770.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5eyo4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es699vz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1561643879.0, \"send_replies\": true, \"parent_id\": \"t3_c5eyo4\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I always use capital H with the float package. That means put it here. The options you use that are standard usually still give it some wiggle room to move it somewhere else. H can make for some awkward whitespace sometimes, but the figure goes where you say!\", \"link_title\": \"Couple of quirks with org-mode latex export?\", \"author_flair_css_class\": null, \"name\": \"t1_es699vz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI always use capital H with the float package. That means put it here. The options you use that are standard usually still give it some wiggle room to move it somewhere else. H can make for some awkward whitespace sometimes, but the figure goes where you say!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/es699vz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/\", \"report_reasons\": null, \"link_author\": \"GeorgeStorm\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/\", \"created\": 1561672679.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5vkle\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es694ej\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1561643767.0, \"send_replies\": true, \"parent_id\": \"t3_c5vkle\", \"score\": 1, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have tried all of them, I can display *my* calendar using ics, but not my partner's.\", \"link_title\": \"Google Calendar intergration (Yes, that old chestnut)\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_es694ej\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have tried all of them, I can display \\u003Cem\\u003Emy\\u003C/em\\u003E calendar using ics, but not my partner\\u0026#39;s.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5vkle/google_calendar_intergration_yes_that_old_chestnut/es694ej/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5vkle/google_calendar_intergration_yes_that_old_chestnut/\", \"report_reasons\": null, \"link_author\": \"xircon\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5vkle/google_calendar_intergration_yes_that_old_chestnut/\", \"created\": 1561672567.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buepqn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es67tjc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gambledrum1\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1561642809.0, \"send_replies\": true, \"parent_id\": \"t1_epis5hc\", \"score\": 1, \"author_fullname\": \"t2_3nv0r2zn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I may have had things spelled incorrectly.\", \"link_title\": \"Can't Use Shift Keys for selecting text\", \"author_flair_css_class\": null, \"name\": \"t1_es67tjc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI may have had things spelled incorrectly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/buepqn/cant_use_shift_keys_for_selecting_text/es67tjc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/buepqn/cant_use_shift_keys_for_selecting_text/\", \"report_reasons\": null, \"link_author\": \"gambledrum1\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/buepqn/cant_use_shift_keys_for_selecting_text/\", \"created\": 1561671609.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6430s\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es66ny3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1561641933.0, \"send_replies\": true, \"parent_id\": \"t3_c6430s\", \"score\": 2, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Perhaps `org-annotate` can help. For only certain file types\\n`org-noter` and `interleave` might be also interesting.\", \"link_title\": \"In place annotations\", \"author_flair_css_class\": null, \"name\": \"t1_es66ny3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPerhaps \\u003Ccode\\u003Eorg-annotate\\u003C/code\\u003E can help. For only certain file types\\n\\u003Ccode\\u003Eorg-noter\\u003C/code\\u003E and \\u003Ccode\\u003Einterleave\\u003C/code\\u003E might be also interesting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c6430s/in_place_annotations/es66ny3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c6430s/in_place_annotations/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c6430s/in_place_annotations/\", \"created\": 1561670733.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c61oio\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es66dm7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1561641717.0, \"send_replies\": true, \"parent_id\": \"t1_es5rvt1\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"A small warning: posframes does not work on X apps, so they are out of question if you \\nuse or plan to use EXWM...\", \"link_title\": \"Helm instead of (with) Company\", \"author_flair_css_class\": null, \"name\": \"t1_es66dm7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA small warning: posframes does not work on X apps, so they are out of question if you \\nuse or plan to use EXWM...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c61oio/helm_instead_of_with_company/es66dm7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"report_reasons\": null, \"link_author\": \"jjzmajic\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"created\": 1561670517.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4r3wn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es63y3j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"-Androth-\", \"num_comments\": 47, \"can_mod_post\": false, \"created_utc\": 1561639739.0, \"send_replies\": true, \"parent_id\": \"t1_es5agq6\", \"score\": 1, \"author_fullname\": \"t2_qvmsp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"additions add bloat. especially if they're not very useful additions like tabs. emacs has better solutions.\", \"link_title\": \"Centaur tabs: a new, customizable and aesthetic tabs plugin for Emacs\", \"author_flair_css_class\": null, \"name\": \"t1_es63y3j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eadditions add bloat. especially if they\\u0026#39;re not very useful additions like tabs. emacs has better solutions.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/es63y3j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/\", \"report_reasons\": null, \"link_author\": \"ema2159\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/\", \"created\": 1561668539.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mtx1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es63jrj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nagora\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1561639398.0, \"send_replies\": true, \"parent_id\": \"t3_c5mtx1\", \"score\": 1, \"author_fullname\": \"t2_rrtp7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Someone's using the mouse to select things in Emacs? I'd more or less forgotten you could even do that!\", \"link_title\": \"How can I get modern mouse slection in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_es63jrj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESomeone\\u0026#39;s using the mouse to select things in Emacs? I\\u0026#39;d more or less forgotten you could even do that!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/es63jrj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/\", \"report_reasons\": null, \"link_author\": \"Keeto_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/\", \"created\": 1561668198.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6430s\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es63eni\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ballfresno\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1561639273.0, \"send_replies\": true, \"parent_id\": \"t3_c6430s\", \"score\": 2, \"author_fullname\": \"t2_2b5qxk6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"IPA is what I have used in the past and seemed to work quite well. I've not used it in a while because most annotations I do now, on other people's documents, are with a hand writing tablet (reMarkable) on top of PDF versions of the documents.\", \"link_title\": \"In place annotations\", \"author_flair_css_class\": null, \"name\": \"t1_es63eni\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIPA is what I have used in the past and seemed to work quite well. I\\u0026#39;ve not used it in a while because most annotations I do now, on other people\\u0026#39;s documents, are with a hand writing tablet (reMarkable) on top of PDF versions of the documents.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c6430s/in_place_annotations/es63eni/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c6430s/in_place_annotations/\", \"report_reasons\": null, \"link_author\": \"gausby\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c6430s/in_place_annotations/\", \"created\": 1561668073.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwbo9n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es63d3h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"conao3\", \"num_comments\": 32, \"can_mod_post\": false, \"created_utc\": 1561639234.0, \"send_replies\": true, \"parent_id\": \"t1_erzs67v\", \"score\": 1, \"author_fullname\": \"t2_2dclucz2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\\\`leaf.el\\\\` is just providing configuration frontend for elisp package.\\n\\nAnd \\\\`feather.el\\\\` is a new package manager with multi-thread fetching and multi-thread byte-compiling.\\n\\n\\u0026#x200B;\\n\\nYou can use any package manager from \\\\`leaf\\\\`, \\\\`feather\\\\` is just one of them. \\nI believe \\\\`feather.el\\\\` reduces download and compilation time for many people, but you can also use \\\\`package.el\\\\`, \\\\`el-get\\\\`, or \\\\`straight\\\\`.\", \"link_title\": \"Interesting Emacs packages: leaf.el and feather.el\", \"author_flair_css_class\": null, \"name\": \"t1_es63d3h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E`leaf.el` is just providing configuration frontend for elisp package.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd `feather.el` is a new package manager with multi-thread fetching and multi-thread byte-compiling.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can use any package manager from `leaf`, `feather` is just one of them.\\u003Cbr/\\u003E\\nI believe `feather.el` reduces download and compilation time for many people, but you can also use `package.el`, `el-get`, or `straight`.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/es63d3h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"report_reasons\": null, \"link_author\": \"ProfessorSexyTime\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/bwbo9n/interesting_emacs_packages_leafel_and_featherel/\", \"created\": 1561668034.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5w3jb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es62mjn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"7890yuiop\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1561638573.0, \"send_replies\": true, \"parent_id\": \"t1_es5dsnf\", \"score\": 1, \"author_fullname\": \"t2_xw3p4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I believe I counted 6 different conventions in the fish code that /u/polu- has linked to.\", \"link_title\": \"Are there some markers in man files or their html versions that can be used by emacs to capture some of the commands options?\", \"author_flair_css_class\": null, \"name\": \"t1_es62mjn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI believe I counted 6 different conventions in the fish code that \\u003Ca href=\\\"/u/polu-\\\"\\u003E/u/polu-\\u003C/a\\u003E has linked to.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/es62mjn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"created\": 1561667373.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mtx1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es61urx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bodertz\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1561637864.0, \"send_replies\": true, \"parent_id\": \"t1_es5ejum\", \"score\": 1, \"author_fullname\": \"t2_9c5ij\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"https://emacs.stackexchange.com/questions/20279/mouse-pointer-between-characters-and-the-text-cursor-misplacement/45355\\n\\nThere's someone who wants that feature:\\n\\n\\u003EI mean when the mouse cursor is exactly between two consequent characters, clicking mouse puts the point one character back from the mouse position.\\n\\n\\u003EIn other words, to put the point somewhere in the text with the mouse you need to click on the character\\u00a0to the right\\u00a0of the place of expected point appearance.\\n\\n--\\n\\n\\u003EIn my opinion the correct behavior would be to position the point to the left of the character\\u00a0only when the mouse cursor is over the\\u00a0left half\\u00a0of the character, and put it to the right otherwise.\\n\\n--\\n\\n\\u003EI suppose I need to clarify that I use a thin cursor of 2-pixel-wide vertical bar (i.e.\\u00a0(setq-default cursor-type '(bar . 2))). With a cursor in a traditional terminal style of a full-character rectangle this issue would not be so evident.\", \"link_title\": \"How can I get modern mouse slection in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_es61urx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://emacs.stackexchange.com/questions/20279/mouse-pointer-between-characters-and-the-text-cursor-misplacement/45355\\\"\\u003Ehttps://emacs.stackexchange.com/questions/20279/mouse-pointer-between-characters-and-the-text-cursor-misplacement/45355\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere\\u0026#39;s someone who wants that feature:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI mean when the mouse cursor is exactly between two consequent characters, clicking mouse puts the point one character back from the mouse position.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn other words, to put the point somewhere in the text with the mouse you need to click on the character\\u00a0to the right\\u00a0of the place of expected point appearance.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Ch2\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIn my opinion the correct behavior would be to position the point to the left of the character\\u00a0only when the mouse cursor is over the\\u00a0left half\\u00a0of the character, and put it to the right otherwise.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Ch2\\u003E\\u003C/h2\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI suppose I need to clarify that I use a thin cursor of 2-pixel-wide vertical bar (i.e.\\u00a0(setq-default cursor-type \\u0026#39;(bar . 2))). With a cursor in a traditional terminal style of a full-character rectangle this issue would not be so evident.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/es61urx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/\", \"report_reasons\": null, \"link_author\": \"Keeto_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/\", \"created\": 1561666664.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c61oio\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es61muh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jjzmajic\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1561637653.0, \"send_replies\": true, \"parent_id\": \"t1_es5zxpt\", \"score\": 1, \"author_fullname\": \"t2_1zgvtvsa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I actually didn't know about those! Thanks!\\n\\nBtw, the package macro is one of the few super useful things I didn't end up using just because straight.el is so crazy powerful. If you feel like looking into it I highly recommend it. Straight from source packages with a recipe format more flexible than MELPA's (it refers to MELPA, emacsmirror, etc. if you do not specify a package).\\n\\nSame for bindings. I was sorely tempted to steal map!, but I went with general.el instead.\", \"link_title\": \"Helm instead of (with) Company\", \"author_flair_css_class\": null, \"name\": \"t1_es61muh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI actually didn\\u0026#39;t know about those! Thanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBtw, the package macro is one of the few super useful things I didn\\u0026#39;t end up using just because straight.el is so crazy powerful. If you feel like looking into it I highly recommend it. Straight from source packages with a recipe format more flexible than MELPA\\u0026#39;s (it refers to MELPA, emacsmirror, etc. if you do not specify a package).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESame for bindings. I was sorely tempted to steal map!, but I went with general.el instead.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c61oio/helm_instead_of_with_company/es61muh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"report_reasons\": null, \"link_author\": \"jjzmajic\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"created\": 1561666453.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5w3jb\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es60iao\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1561636539.0, \"send_replies\": true, \"parent_id\": \"t3_c5w3jb\", \"score\": 2, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There is the `pcmpl-args` package which includes `pcmpl-args-extract-argspecs-from-manpage`\", \"link_title\": \"Are there some markers in man files or their html versions that can be used by emacs to capture some of the commands options?\", \"author_flair_css_class\": null, \"name\": \"t1_es60iao\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is the \\u003Ccode\\u003Epcmpl-args\\u003C/code\\u003E package which includes \\u003Ccode\\u003Epcmpl-args-extract-argspecs-from-manpage\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/es60iao/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"created\": 1561665339.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c61oio\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5zxpt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1561635948.0, \"send_replies\": true, \"parent_id\": \"t1_es5z1sd\", \"score\": 1, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm not using doom-emacs, I did the same as you and just took some utility functions from there and adapted them to my own needs. Let binding `completion-in-region-function` and `completing-read-function` can give you control which framework will be used.\", \"link_title\": \"Helm instead of (with) Company\", \"author_flair_css_class\": null, \"name\": \"t1_es5zxpt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not using doom-emacs, I did the same as you and just took some utility functions from there and adapted them to my own needs. Let binding \\u003Ccode\\u003Ecompletion-in-region-function\\u003C/code\\u003E and \\u003Ccode\\u003Ecompleting-read-function\\u003C/code\\u003E can give you control which framework will be used.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c61oio/helm_instead_of_with_company/es5zxpt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"report_reasons\": null, \"link_author\": \"jjzmajic\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"created\": 1561664748.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1561635287.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c61oio\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5z1sd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jjzmajic\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1561634999.0, \"send_replies\": true, \"parent_id\": \"t1_es5x957\", \"score\": 1, \"author_fullname\": \"t2_1zgvtvsa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Ahhhh a doom-emacs man! \\n\\nCase-by-case completion is quite hard to set up with a framework, do you maintain a fork or do you use some other approach?\\n\\nI ask because as a former Spacemacs user I found the doom codebase more succinct, but I had an itch to scratch so I built my own config while stealing utility functions from doom, centaur and Spacemacs using custom recipes with straight.el. So long as the packages and bindings are my own. I'm just curious what tack other people take.\", \"link_title\": \"Helm instead of (with) Company\", \"author_flair_css_class\": null, \"name\": \"t1_es5z1sd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAhhhh a doom-emacs man! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECase-by-case completion is quite hard to set up with a framework, do you maintain a fork or do you use some other approach?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI ask because as a former Spacemacs user I found the doom codebase more succinct, but I had an itch to scratch so I built my own config while stealing utility functions from doom, centaur and Spacemacs using custom recipes with straight.el. So long as the packages and bindings are my own. I\\u0026#39;m just curious what tack other people take.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c61oio/helm_instead_of_with_company/es5z1sd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"report_reasons\": null, \"link_author\": \"jjzmajic\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"created\": 1561663799.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c63mzr\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5z0yr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"andreyorst\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561634974.0, \"send_replies\": true, \"parent_id\": \"t3_c63mzr\", \"score\": 1, \"author_fullname\": \"t2_w7w9e32\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"please add 4 spaces to the beginning of each line of your configuration in order for Reddit to format it properly.\", \"link_title\": \"a correct company backends list\", \"author_flair_css_class\": null, \"name\": \"t1_es5z0yr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eplease add 4 spaces to the beginning of each line of your configuration in order for Reddit to format it properly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c63mzr/a_correct_company_backends_list/es5z0yr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c63mzr/a_correct_company_backends_list/\", \"report_reasons\": null, \"link_author\": \"zsome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c63mzr/a_correct_company_backends_list/\", \"created\": 1561663774.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c61oio\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5x957\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1561632862.0, \"send_replies\": true, \"parent_id\": \"t1_es5rvt1\", \"score\": 2, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I use the following: \\n\\n ;; this just installs and load the package, use require, use-package...\\n (package! 'ivy-posframe t)\\n\\n (setf (alist-get t ivy-posframe-display-functions-alist)\\n 'ivy-posframe-display-at-frame-bottom-left)\\n\\n (setf (alist-get 'ivy-completion-in-region ivy-posframe-display-functions-alist)\\n 'ivy-posframe-display-at-point)\\n\\n\\n (setq ivy-posframe-parameters '((left-fringe . 0)\\n (right-fringe . 0)\\n (internal-border-width . 0)))\\n\\n (setq ivy-posframe-width (frame-width))\\n\\n (ivy-posframe-mode 1)\\n\\n (setq completion-in-region-function #'ivy-completion-in-region)\\n\\nWith that regular ivy commands show up in a posframe at frame bottom and inline completion is displayed with a posframe at point. I don't use `ivy-mode` I like to configure completion on a case by case basis.\", \"link_title\": \"Helm instead of (with) Company\", \"author_flair_css_class\": null, \"name\": \"t1_es5x957\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use the following: \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; this just installs and load the package, use require, use-package...\\n(package! \\u0026#39;ivy-posframe t)\\n\\n(setf (alist-get t ivy-posframe-display-functions-alist)\\n \\u0026#39;ivy-posframe-display-at-frame-bottom-left)\\n\\n(setf (alist-get \\u0026#39;ivy-completion-in-region ivy-posframe-display-functions-alist)\\n \\u0026#39;ivy-posframe-display-at-point)\\n\\n\\n(setq ivy-posframe-parameters \\u0026#39;((left-fringe . 0)\\n (right-fringe . 0)\\n (internal-border-width . 0)))\\n\\n(setq ivy-posframe-width (frame-width))\\n\\n(ivy-posframe-mode 1)\\n\\n(setq completion-in-region-function #\\u0026#39;ivy-completion-in-region)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith that regular ivy commands show up in a posframe at frame bottom and inline completion is displayed with a posframe at point. I don\\u0026#39;t use \\u003Ccode\\u003Eivy-mode\\u003C/code\\u003E I like to configure completion on a case by case basis.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c61oio/helm_instead_of_with_company/es5x957/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"report_reasons\": null, \"link_author\": \"jjzmajic\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"created\": 1561661662.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5yixc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5w6fi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"abo-abo\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561631440.0, \"send_replies\": true, \"parent_id\": \"t1_es5vxoj\", \"score\": 1, \"author_fullname\": \"t2_et0j2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"We could even have a clever function that ports these types of simple API use automatically.\\n\\n ;; auto-port `ivy-read' to `helm'\\n (with-helm 'doom/ivy-tasks)\\n\\n ;; auto-port `helm` to `ivy-read'\\n (with-ivy 'helm-imenu)\\n\\nBasically, just call `symbol-function', traverse the AST, and translate the equivalent parts of the API.\", \"link_title\": \"Is there a Helm equivalent to doom-todo-ivy?\", \"author_flair_css_class\": null, \"name\": \"t1_es5w6fi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe could even have a clever function that ports these types of simple API use automatically.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; auto-port `ivy-read\\u0026#39; to `helm\\u0026#39;\\n(with-helm \\u0026#39;doom/ivy-tasks)\\n\\n;; auto-port `helm` to `ivy-read\\u0026#39;\\n(with-ivy \\u0026#39;helm-imenu)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBasically, just call `symbol-function\\u0026#39;, traverse the AST, and translate the equivalent parts of the API.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5yixc/is_there_a_helm_equivalent_to_doomtodoivy/es5w6fi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5yixc/is_there_a_helm_equivalent_to_doomtodoivy/\", \"report_reasons\": null, \"link_author\": \"Xorous\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5yixc/is_there_a_helm_equivalent_to_doomtodoivy/\", \"created\": 1561660240.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5yixc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5vxoj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"abo-abo\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561631112.0, \"send_replies\": true, \"parent_id\": \"t3_c5yixc\", \"score\": 1, \"author_fullname\": \"t2_et0j2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Usually, porting Helm to Ivy or Ivy to Helm is very straightforward:\\n\\n (ivy-read \\\"Numbers: \\\" (list \\\"one\\\" \\\"two\\\" \\\"three\\\")\\n :action 'message)\\n\\n (helm\\n :sources\\n (helm-build-sync-source \\\"Numbers\\\"\\n :candidates (list \\\"one\\\" \\\"two\\\" \\\"three\\\")\\n :action 'message))\\n\\nIt's just a matter of a few lines of code. `doom-todo-ivy` already does the heavy lifting of providing :candidates and :action. Wrapping those in `helm` or `ivy-read` is very easy.\", \"link_title\": \"Is there a Helm equivalent to doom-todo-ivy?\", \"author_flair_css_class\": null, \"name\": \"t1_es5vxoj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsually, porting Helm to Ivy or Ivy to Helm is very straightforward:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(ivy-read \\u0026quot;Numbers: \\u0026quot; (list \\u0026quot;one\\u0026quot; \\u0026quot;two\\u0026quot; \\u0026quot;three\\u0026quot;)\\n :action \\u0026#39;message)\\n\\n(helm\\n :sources\\n (helm-build-sync-source \\u0026quot;Numbers\\u0026quot;\\n :candidates (list \\u0026quot;one\\u0026quot; \\u0026quot;two\\u0026quot; \\u0026quot;three\\u0026quot;)\\n :action \\u0026#39;message))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s just a matter of a few lines of code. \\u003Ccode\\u003Edoom-todo-ivy\\u003C/code\\u003E already does the heavy lifting of providing :candidates and :action. Wrapping those in \\u003Ccode\\u003Ehelm\\u003C/code\\u003E or \\u003Ccode\\u003Eivy-read\\u003C/code\\u003E is very easy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5yixc/is_there_a_helm_equivalent_to_doomtodoivy/es5vxoj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5yixc/is_there_a_helm_equivalent_to_doomtodoivy/\", \"report_reasons\": null, \"link_author\": \"Xorous\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5yixc/is_there_a_helm_equivalent_to_doomtodoivy/\", \"created\": 1561659912.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3wjxw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5vqvu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"UnoPlusUno\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561630855.0, \"send_replies\": true, \"parent_id\": \"t1_es5efvw\", \"score\": 1, \"author_fullname\": \"t2_jxphq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Parentheses in a document\", \"link_title\": \"Why is my line number moving randomly when I reach a line\", \"author_flair_css_class\": null, \"name\": \"t1_es5vqvu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EParentheses in a document\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c3wjxw/why_is_my_line_number_moving_randomly_when_i/es5vqvu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c3wjxw/why_is_my_line_number_moving_randomly_when_i/\", \"report_reasons\": null, \"link_author\": \"UnoPlusUno\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c3wjxw/why_is_my_line_number_moving_randomly_when_i/\", \"created\": 1561659655.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4qjmk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5tp7r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Desmesura\", \"num_comments\": 20, \"can_mod_post\": false, \"created_utc\": 1561627884.0, \"send_replies\": true, \"parent_id\": \"t1_es5sb4m\", \"score\": 1, \"author_fullname\": \"t2_3xj7454j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I see, thanks for the insight.\", \"link_title\": \"Swap Right Alt with Ctrl key\", \"author_flair_css_class\": null, \"name\": \"t1_es5tp7r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see, thanks for the insight.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c4qjmk/swap_right_alt_with_ctrl_key/es5tp7r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c4qjmk/swap_right_alt_with_ctrl_key/\", \"report_reasons\": null, \"link_author\": \"Desmesura\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/linuxquestions/comments/c3rhye/swap_right_alt_with_ctrl_key/\", \"created\": 1561656684.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1561627082.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5z8bt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5skjs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"qualiaqq\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561626164.0, \"send_replies\": true, \"parent_id\": \"t3_c5z8bt\", \"score\": 2, \"author_fullname\": \"t2_b8hov\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I haven't used Spacemacs in a while, but I would imagine most things are applicable. Perhaps some of the keybindings have changed in the develop branch since those videos. You can figure out what the new key binding is by doing `SPC h d f` to \\\"help describe function\\\" and type the name of the function you see in the video. `SPC ?` probably will work too.\\n\\nIt can take quite a while to fully explore the tree of key bindings in Spacemacs. I have an old org todo: `TODO consider spacemacs bindings [207/616]\\n` I only made it about 1/3 of the way through them before getting distracted by other things.\", \"link_title\": \"For Spacemacs, can someone tell me how applicable this playlist still is? Is that pretty much all still current?\", \"author_flair_css_class\": null, \"name\": \"t1_es5skjs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI haven\\u0026#39;t used Spacemacs in a while, but I would imagine most things are applicable. Perhaps some of the keybindings have changed in the develop branch since those videos. You can figure out what the new key binding is by doing \\u003Ccode\\u003ESPC h d f\\u003C/code\\u003E to \\u0026quot;help describe function\\u0026quot; and type the name of the function you see in the video. \\u003Ccode\\u003ESPC ?\\u003C/code\\u003E probably will work too.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt can take quite a while to fully explore the tree of key bindings in Spacemacs. I have an old org todo: \\u003Ccode\\u003ETODO consider spacemacs bindings [207/616]\\n\\u003C/code\\u003E I only made it about 1/3 of the way through them before getting distracted by other things.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5z8bt/for_spacemacs_can_someone_tell_me_how_applicable/es5skjs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5z8bt/for_spacemacs_can_someone_tell_me_how_applicable/\", \"report_reasons\": null, \"link_author\": \"professor-cthulhu\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/playlist?list=PLrJ2YN5y27KLhd3yNs2dR8_inqtEiEweE\", \"created\": 1561654964.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4qjmk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5sb4m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"snippins1987\", \"num_comments\": 20, \"can_mod_post\": false, \"created_utc\": 1561625759.0, \"send_replies\": true, \"parent_id\": \"t1_es5rq0k\", \"score\": 2, \"author_fullname\": \"t2_1xg9zg3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"About the hardware problem. It's not about some a certain keys are not register when press alone, it's about blocking another key from sending any signal when some other keys are pressed down. In this case they probably assume Left Alt + Right Alt combination will never happen and didn't really test if that combination will block other keys. I have seen this problem on Windows when trying to map things with autohotkey. \\n\\nOne rule of thumbs that I found is avoiding buying keyboards with the function key (Fn). This problems almost always happens with these keyboards.\\n\\nAnd yes this is sucks.\", \"link_title\": \"Swap Right Alt with Ctrl key\", \"author_flair_css_class\": null, \"name\": \"t1_es5sb4m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAbout the hardware problem. It\\u0026#39;s not about some a certain keys are not register when press alone, it\\u0026#39;s about blocking another key from sending any signal when some other keys are pressed down. In this case they probably assume Left Alt + Right Alt combination will never happen and didn\\u0026#39;t really test if that combination will block other keys. I have seen this problem on Windows when trying to map things with autohotkey. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne rule of thumbs that I found is avoiding buying keyboards with the function key (Fn). This problems almost always happens with these keyboards.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd yes this is sucks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c4qjmk/swap_right_alt_with_ctrl_key/es5sb4m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c4qjmk/swap_right_alt_with_ctrl_key/\", \"report_reasons\": null, \"link_author\": \"Desmesura\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/linuxquestions/comments/c3rhye/swap_right_alt_with_ctrl_key/\", \"created\": 1561654559.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5ojll\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5s7l5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pimiddy\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1561625610.0, \"send_replies\": true, \"parent_id\": \"t1_es5oz0a\", \"score\": 1, \"author_fullname\": \"t2_6slii\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Again, it doesn't complete the way I want. I don't want to explicitly move the point to the import list and type \\\"import\\\". Otherwise, intero is fine, as is elpy for python.\", \"link_title\": \"IntelliJ-like import completion in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_es5s7l5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAgain, it doesn\\u0026#39;t complete the way I want. I don\\u0026#39;t want to explicitly move the point to the import list and type \\u0026quot;import\\u0026quot;. Otherwise, intero is fine, as is elpy for python.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/es5s7l5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/\", \"report_reasons\": null, \"link_author\": \"pimiddy\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/\", \"created\": 1561654410.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1561629599.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c61oio\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5rvt1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jjzmajic\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1561625117.0, \"send_replies\": true, \"parent_id\": \"t1_es5n8ot\", \"score\": 1, \"author_fullname\": \"t2_1zgvtvsa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Upon some googling, that sounds pretty sweet... Ivy is getting more and more tempting. Could you share dots for this? I'm compiling stuff for when I finally make the leap and try it out. Not that I have a problem with helm, but I want to see what else the Emacs world has to offer.\", \"link_title\": \"Helm instead of (with) Company\", \"author_flair_css_class\": null, \"name\": \"t1_es5rvt1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUpon some googling, that sounds pretty sweet... Ivy is getting more and more tempting. Could you share dots for this? I\\u0026#39;m compiling stuff for when I finally make the leap and try it out. Not that I have a problem with helm, but I want to see what else the Emacs world has to offer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c61oio/helm_instead_of_with_company/es5rvt1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"report_reasons\": null, \"link_author\": \"jjzmajic\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"created\": 1561653917.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4qjmk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5rq0k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Desmesura\", \"num_comments\": 20, \"can_mod_post\": false, \"created_utc\": 1561624875.0, \"send_replies\": true, \"parent_id\": \"t1_es427kp\", \"score\": 1, \"author_fullname\": \"t2_3xj7454j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I've tried it with xev and it happens the same for me. When pressing, e.g. `C-M-f` it registers the press and release of `f`, but with `C-M-b` it does not do that with `b`.\\n\\nThe thing is that I don't know if we can be sure it's a hardware thing, since, for example, the keycode that I see when pressing/releasing R-Alt is the L-Ctrl keycode, so the software is still taking effect here. Although different results on different keyboards may suggest otherwise.\\n\\nDamn this sucks so much.\", \"link_title\": \"Swap Right Alt with Ctrl key\", \"author_flair_css_class\": null, \"name\": \"t1_es5rq0k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve tried it with xev and it happens the same for me. When pressing, e.g. \\u003Ccode\\u003EC-M-f\\u003C/code\\u003E it registers the press and release of \\u003Ccode\\u003Ef\\u003C/code\\u003E, but with \\u003Ccode\\u003EC-M-b\\u003C/code\\u003E it does not do that with \\u003Ccode\\u003Eb\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe thing is that I don\\u0026#39;t know if we can be sure it\\u0026#39;s a hardware thing, since, for example, the keycode that I see when pressing/releasing R-Alt is the L-Ctrl keycode, so the software is still taking effect here. Although different results on different keyboards may suggest otherwise.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDamn this sucks so much.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c4qjmk/swap_right_alt_with_ctrl_key/es5rq0k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c4qjmk/swap_right_alt_with_ctrl_key/\", \"report_reasons\": null, \"link_author\": \"Desmesura\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/linuxquestions/comments/c3rhye/swap_right_alt_with_ctrl_key/\", \"created\": 1561653675.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5w3jb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5r0h9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"poiu-\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1561623822.0, \"send_replies\": true, \"parent_id\": \"t1_es4lmf5\", \"score\": 2, \"author_fullname\": \"t2_dcfnv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[https://github.com/fish-shell/fish-shell/blob/72d80c3d91bbd35bed0aafb5514c9834bb48e256/share/tools/create\\\\_manpage\\\\_completions.py](https://github.com/fish-shell/fish-shell/blob/72d80c3d91bbd35bed0aafb5514c9834bb48e256/share/tools/create_manpage_completions.py)\", \"link_title\": \"Are there some markers in man files or their html versions that can be used by emacs to capture some of the commands options?\", \"author_flair_css_class\": null, \"name\": \"t1_es5r0h9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/fish-shell/fish-shell/blob/72d80c3d91bbd35bed0aafb5514c9834bb48e256/share/tools/create_manpage_completions.py\\\"\\u003Ehttps://github.com/fish-shell/fish-shell/blob/72d80c3d91bbd35bed0aafb5514c9834bb48e256/share/tools/create_manpage_completions.py\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/es5r0h9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"created\": 1561652622.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5vkle\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5q4ub\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1561622554.0, \"send_replies\": true, \"parent_id\": \"t3_c5vkle\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Mike Zamansky have published a nice setup around `org-gcal`\\nthat can easily be used with `org-super-agenda`, there are\\nalso some video of the workflow.\\n\\nLong story short: there is a reason because agendas does not use\\nclassic \\\"calendar-like\\\" UI :-)\\n\\nAnyway as suggested by /u/[yanghaoxie] CalFW offer a very similar UI\\nthat with few bit of lisp it also became nicer:\\n\\n```\\n(use-package calfw\\n :config\\n ;; Better display\\n (setq cfw:fchar-junction ?\\u254b\\n cfw:fchar-vertical-line ?\\u2503\\n cfw:fchar-horizontal-line ?\\u2501\\n cfw:fchar-left-junction ?\\u2523\\n cfw:fchar-right-junction ?\\u252b\\n cfw:fchar-top-junction ?\\u252f\\n cfw:fchar-top-left-corner ?\\u250f\\n cfw:fchar-top-right-corner ?\\u2513)\\n)\\n```\\n\\nIn that sense there is also `calfw-org` for a proper org-mode and\\norg-capture integration. You can display events from many sources\\nin CalFw with `cfw:*-create-source` (`org-create-source`, `ical-create-source`,\\n...) including ical, org-agenda,\\nEmacs diary, ...\\n\\nUnfortunately I can't tell you more since I've only tried in the \\npast CalFw, it's a relatively big \\\"framework\\\" with a not so concise\\nand easy documentation... I think it can do far more if you wish.\\n\\nEdit: typos, sorry for my English...\", \"link_title\": \"Google Calendar intergration (Yes, that old chestnut)\", \"author_flair_css_class\": null, \"name\": \"t1_es5q4ub\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMike Zamansky have published a nice setup around \\u003Ccode\\u003Eorg-gcal\\u003C/code\\u003E\\nthat can easily be used with \\u003Ccode\\u003Eorg-super-agenda\\u003C/code\\u003E, there are\\nalso some video of the workflow.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELong story short: there is a reason because agendas does not use\\nclassic \\u0026quot;calendar-like\\u0026quot; UI :-)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway as suggested by /u/[yanghaoxie] CalFW offer a very similar UI\\nthat with few bit of lisp it also became nicer:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(use-package calfw\\n :config\\n ;; Better display\\n (setq cfw:fchar-junction ?\\u254b\\n cfw:fchar-vertical-line ?\\u2503\\n cfw:fchar-horizontal-line ?\\u2501\\n cfw:fchar-left-junction ?\\u2523\\n cfw:fchar-right-junction ?\\u252b\\n cfw:fchar-top-junction ?\\u252f\\n cfw:fchar-top-left-corner ?\\u250f\\n cfw:fchar-top-right-corner ?\\u2513)\\n)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn that sense there is also \\u003Ccode\\u003Ecalfw-org\\u003C/code\\u003E for a proper org-mode and\\norg-capture integration. You can display events from many sources\\nin CalFw with \\u003Ccode\\u003Ecfw:*-create-source\\u003C/code\\u003E (\\u003Ccode\\u003Eorg-create-source\\u003C/code\\u003E, \\u003Ccode\\u003Eical-create-source\\u003C/code\\u003E,\\n...) including ical, org-agenda,\\nEmacs diary, ...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnfortunately I can\\u0026#39;t tell you more since I\\u0026#39;ve only tried in the \\npast CalFw, it\\u0026#39;s a relatively big \\u0026quot;framework\\u0026quot; with a not so concise\\nand easy documentation... I think it can do far more if you wish.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: typos, sorry for my English...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5vkle/google_calendar_intergration_yes_that_old_chestnut/es5q4ub/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5vkle/google_calendar_intergration_yes_that_old_chestnut/\", \"report_reasons\": null, \"link_author\": \"xircon\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5vkle/google_calendar_intergration_yes_that_old_chestnut/\", \"created\": 1561651354.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c62843\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5p6i5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561621223.0, \"send_replies\": true, \"parent_id\": \"t3_c62843\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"it's ivy-current-match, I don't know why it doesn't work for you\\n\\n (use-package ivy\\n :ensure t\\n :diminish ivy-mode\\n :custom\\n ;; (ivy-re-builders-alist '((t . ivy--regex-fuzzy)))\\n (ivy-count-format \\\"%d/%d \\\" \\\"Show anzu-like counter\\\")\\n (ivy-use-selectable-prompt t \\\"Make the prompt line selectable\\\")\\n :custom-face\\n (ivy-current-match ((t (:inherit 'hl-line))))\\n :bind\\n (:map mode-specific-map\\n (\\\"C-r\\\" . ivy-resume))\\n :config\\n (ivy-mode t))\", \"link_title\": \"Ivy - What face controls the selected item in counsel-M-x buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_es5p6i5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eit\\u0026#39;s ivy-current-match, I don\\u0026#39;t know why it doesn\\u0026#39;t work for you\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package ivy\\n :ensure t\\n :diminish ivy-mode\\n :custom\\n ;; (ivy-re-builders-alist \\u0026#39;((t . ivy--regex-fuzzy)))\\n (ivy-count-format \\u0026quot;%d/%d \\u0026quot; \\u0026quot;Show anzu-like counter\\u0026quot;)\\n (ivy-use-selectable-prompt t \\u0026quot;Make the prompt line selectable\\u0026quot;)\\n :custom-face\\n (ivy-current-match ((t (:inherit \\u0026#39;hl-line))))\\n :bind\\n (:map mode-specific-map\\n (\\u0026quot;C-r\\u0026quot; . ivy-resume))\\n :config\\n (ivy-mode t))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c62843/ivy_what_face_controls_the_selected_item_in/es5p6i5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c62843/ivy_what_face_controls_the_selected_item_in/\", \"report_reasons\": null, \"link_author\": \"reloadreloadreload\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c62843/ivy_what_face_controls_the_selected_item_in/\", \"created\": 1561650023.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5ojll\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5oz0a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1561620938.0, \"send_replies\": true, \"parent_id\": \"t1_es5mfti\", \"score\": 1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"isn't intero good enough?\", \"link_title\": \"IntelliJ-like import completion in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_es5oz0a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eisn\\u0026#39;t intero good enough?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/es5oz0a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/\", \"report_reasons\": null, \"link_author\": \"pimiddy\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/\", \"created\": 1561649738.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5ochg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hyperlordcryon\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561620100.0, \"send_replies\": true, \"parent_id\": \"t3_c5mel4\", \"score\": 1, \"author_fullname\": \"t2_e89fp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I try to keep it simple.\\n\\n[screenshot](https://imgur.com/a/9cZ0tTA). \\n\\n[elisp](https://github.com/cryon/dotemacs/blob/master/auto/modeline.el)\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es5ochg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI try to keep it simple.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/9cZ0tTA\\\"\\u003Escreenshot\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/cryon/dotemacs/blob/master/auto/modeline.el\\\"\\u003Eelisp\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es5ochg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561648900.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1561618944.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c61oio\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5n8ot\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1561618699.0, \"send_replies\": true, \"parent_id\": \"t3_c61oio\", \"score\": 1, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"In some modes I like to use `ivy` with `ivy-posframe` for code completion. It is super convenient. For example \\n\\n with TAB window\\n\\nlists `with-selected-window` `with-temp-buffer-window` etc.\", \"link_title\": \"Helm instead of (with) Company\", \"author_flair_css_class\": null, \"name\": \"t1_es5n8ot\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn some modes I like to use \\u003Ccode\\u003Eivy\\u003C/code\\u003E with \\u003Ccode\\u003Eivy-posframe\\u003C/code\\u003E for code completion. It is super convenient. For example \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ewith TAB window\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Elists \\u003Ccode\\u003Ewith-selected-window\\u003C/code\\u003E \\u003Ccode\\u003Ewith-temp-buffer-window\\u003C/code\\u003E etc.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c61oio/helm_instead_of_with_company/es5n8ot/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"report_reasons\": null, \"link_author\": \"jjzmajic\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"created\": 1561647499.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c550ht\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5mvff\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561618243.0, \"send_replies\": true, \"parent_id\": \"t1_es5fqdy\", \"score\": 1, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You need to copy the whole function definition you want to patch, after that you use el-patch directives to change the code. I mostly use `el-patch-add` and `el-patch-swap` for that. Here is an example where I use `el-patch-add` to show the diffs when querying via `save-some-buffers`:\\n\\n (el-patch-defun save-some-buffers (\\u0026optional arg pred)\\n \\\"Save some modified file-visiting buffers. Asks user about each one.\\n You can answer `y' to save, `n' not to save, `C-r' to look at the\\n buffer in question with `view-buffer' before deciding or `d' to\\n view the differences using `diff-buffer-with-file'.\\n\\n This command first saves any buffers where `buffer-save-without-query' is\\n non-nil, without asking.\\n\\n Optional argument ARG (interactively, prefix argument) non-nil means save\\n all with no questions.\\n Optional second argument PRED determines which buffers are considered:\\n If PRED is nil, all the file-visiting buffers are considered.\\n If PRED is t, then certain non-file buffers will also be considered.\\n If PRED is a zero-argument function, it indicates for each buffer whether\\n to consider it or not when called with that buffer current.\\n PRED defaults to the value of `save-some-buffers-default-predicate'.\\n\\n See `save-some-buffers-action-alist' if you want to\\n change the additional actions you can take on files.\\\"\\n (interactive \\\"P\\\")\\n (unless pred\\n (setq pred save-some-buffers-default-predicate))\\n (save-window-excursion\\n (let* (queried autosaved-buffers\\n files-done abbrevs-done)\\n (dolist (buffer (buffer-list))\\n ;; First save any buffers that we're supposed to save unconditionally.\\n ;; That way the following code won't ask about them.\\n (with-current-buffer buffer\\n (when (and buffer-save-without-query (buffer-modified-p))\\n (push (buffer-name) autosaved-buffers)\\n (save-buffer))))\\n ;; Ask about those buffers that merit it,\\n ;; and record the number thus saved.\\n (setq files-done\\n (map-y-or-n-p\\n (lambda (buffer)\\n ;; Note that killing some buffers may kill others via\\n ;; hooks (e.g. Rmail and its viewing buffer).\\n (and (buffer-live-p buffer)\\n (buffer-modified-p buffer)\\n (not (buffer-base-buffer buffer))\\n (or\\n (buffer-file-name buffer)\\n (with-current-buffer buffer\\n (or (eq buffer-offer-save 'always)\\n (and pred buffer-offer-save (\\u003E (buffer-size) 0)))))\\n (or (not (functionp pred))\\n (with-current-buffer buffer (funcall pred)))\\n (if arg\\n t\\n (setq queried t)\\n (e-patch-add\\n (require 'diff)\\n (setf (window-buffer (minibuffer-selected-window))\\n (diff-no-select (buffer-file-name buffer) buffer\\n nil 'noasync)))\\n (if (buffer-file-name buffer)\\n (format \\\"Save file %s? \\\"\\n (buffer-file-name buffer))\\n (format \\\"Save buffer %s? \\\"\\n (buffer-name buffer))))))\\n (lambda (buffer)\\n (with-current-buffer buffer\\n (save-buffer)))\\n (buffer-list)\\n '(\\\"buffer\\\" \\\"buffers\\\" \\\"save\\\")\\n save-some-buffers-action-alist))\\n ;; Maybe to save abbrevs, and record whether\\n ;; we either saved them or asked to.\\n (and save-abbrevs abbrevs-changed\\n (progn\\n (if (or arg\\n (eq save-abbrevs 'silently)\\n (y-or-n-p (format \\\"Save abbrevs in %s? \\\" abbrev-file-name)))\\n (write-abbrev-file nil))\\n ;; Don't keep bothering user if he says no.\\n (setq abbrevs-changed nil)\\n (setq abbrevs-done t)))\\n (or queried (\\u003E files-done 0) abbrevs-done\\n (cond\\n ((null autosaved-buffers)\\n (when (called-interactively-p 'any)\\n (files--message \\\"(No files need saving)\\\")))\\n ((= (length autosaved-buffers) 1)\\n (files--message \\\"(Saved %s)\\\" (car autosaved-buffers)))\\n (t\\n (files--message \\\"(Saved %d files: %s)\\\"\\n (length autosaved-buffers)\\n (mapconcat 'identity autosaved-buffers \\\", \\\"))))))))\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_es5mvff\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou need to copy the whole function definition you want to patch, after that you use el-patch directives to change the code. I mostly use \\u003Ccode\\u003Eel-patch-add\\u003C/code\\u003E and \\u003Ccode\\u003Eel-patch-swap\\u003C/code\\u003E for that. Here is an example where I use \\u003Ccode\\u003Eel-patch-add\\u003C/code\\u003E to show the diffs when querying via \\u003Ccode\\u003Esave-some-buffers\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(el-patch-defun save-some-buffers (\\u0026amp;optional arg pred)\\n \\u0026quot;Save some modified file-visiting buffers. Asks user about each one.\\nYou can answer `y\\u0026#39; to save, `n\\u0026#39; not to save, `C-r\\u0026#39; to look at the\\nbuffer in question with `view-buffer\\u0026#39; before deciding or `d\\u0026#39; to\\nview the differences using `diff-buffer-with-file\\u0026#39;.\\n\\nThis command first saves any buffers where `buffer-save-without-query\\u0026#39; is\\nnon-nil, without asking.\\n\\nOptional argument ARG (interactively, prefix argument) non-nil means save\\nall with no questions.\\nOptional second argument PRED determines which buffers are considered:\\nIf PRED is nil, all the file-visiting buffers are considered.\\nIf PRED is t, then certain non-file buffers will also be considered.\\nIf PRED is a zero-argument function, it indicates for each buffer whether\\nto consider it or not when called with that buffer current.\\nPRED defaults to the value of `save-some-buffers-default-predicate\\u0026#39;.\\n\\nSee `save-some-buffers-action-alist\\u0026#39; if you want to\\nchange the additional actions you can take on files.\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (unless pred\\n (setq pred save-some-buffers-default-predicate))\\n (save-window-excursion\\n (let* (queried autosaved-buffers\\n files-done abbrevs-done)\\n (dolist (buffer (buffer-list))\\n ;; First save any buffers that we\\u0026#39;re supposed to save unconditionally.\\n ;; That way the following code won\\u0026#39;t ask about them.\\n (with-current-buffer buffer\\n (when (and buffer-save-without-query (buffer-modified-p))\\n (push (buffer-name) autosaved-buffers)\\n (save-buffer))))\\n ;; Ask about those buffers that merit it,\\n ;; and record the number thus saved.\\n (setq files-done\\n (map-y-or-n-p\\n (lambda (buffer)\\n ;; Note that killing some buffers may kill others via\\n ;; hooks (e.g. Rmail and its viewing buffer).\\n (and (buffer-live-p buffer)\\n (buffer-modified-p buffer)\\n (not (buffer-base-buffer buffer))\\n (or\\n (buffer-file-name buffer)\\n (with-current-buffer buffer\\n (or (eq buffer-offer-save \\u0026#39;always)\\n (and pred buffer-offer-save (\\u0026gt; (buffer-size) 0)))))\\n (or (not (functionp pred))\\n (with-current-buffer buffer (funcall pred)))\\n (if arg\\n t\\n (setq queried t)\\n (e-patch-add\\n (require \\u0026#39;diff)\\n (setf (window-buffer (minibuffer-selected-window))\\n (diff-no-select (buffer-file-name buffer) buffer\\n nil \\u0026#39;noasync)))\\n (if (buffer-file-name buffer)\\n (format \\u0026quot;Save file %s? \\u0026quot;\\n (buffer-file-name buffer))\\n (format \\u0026quot;Save buffer %s? \\u0026quot;\\n (buffer-name buffer))))))\\n (lambda (buffer)\\n (with-current-buffer buffer\\n (save-buffer)))\\n (buffer-list)\\n \\u0026#39;(\\u0026quot;buffer\\u0026quot; \\u0026quot;buffers\\u0026quot; \\u0026quot;save\\u0026quot;)\\n save-some-buffers-action-alist))\\n ;; Maybe to save abbrevs, and record whether\\n ;; we either saved them or asked to.\\n (and save-abbrevs abbrevs-changed\\n (progn\\n (if (or arg\\n (eq save-abbrevs \\u0026#39;silently)\\n (y-or-n-p (format \\u0026quot;Save abbrevs in %s? \\u0026quot; abbrev-file-name)))\\n (write-abbrev-file nil))\\n ;; Don\\u0026#39;t keep bothering user if he says no.\\n (setq abbrevs-changed nil)\\n (setq abbrevs-done t)))\\n (or queried (\\u0026gt; files-done 0) abbrevs-done\\n (cond\\n ((null autosaved-buffers)\\n (when (called-interactively-p \\u0026#39;any)\\n (files--message \\u0026quot;(No files need saving)\\u0026quot;)))\\n ((= (length autosaved-buffers) 1)\\n (files--message \\u0026quot;(Saved %s)\\u0026quot; (car autosaved-buffers)))\\n (t\\n (files--message \\u0026quot;(Saved %d files: %s)\\u0026quot;\\n (length autosaved-buffers)\\n (mapconcat \\u0026#39;identity autosaved-buffers \\u0026quot;, \\u0026quot;))))))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c550ht/weekly_tipstricketc_thread/es5mvff/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c550ht/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/c550ht/weekly_tipstricketc_thread/\", \"created\": 1561647043.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5eyo4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5mt0n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GeorgeStorm\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1561618161.0, \"send_replies\": true, \"parent_id\": \"t1_es541qp\", \"score\": 1, \"author_fullname\": \"t2_5f5ma\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yeah I don't use them a lot, luckily not a big issue as there was an easy 'fix' using query replace (perfect example of when I'd use single quotes :D)\", \"link_title\": \"Couple of quirks with org-mode latex export?\", \"author_flair_css_class\": null, \"name\": \"t1_es5mt0n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah I don\\u0026#39;t use them a lot, luckily not a big issue as there was an easy \\u0026#39;fix\\u0026#39; using query replace (perfect example of when I\\u0026#39;d use single quotes :D)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/es5mt0n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/\", \"report_reasons\": null, \"link_author\": \"GeorgeStorm\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/\", \"created\": 1561646961.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5eyo4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5mrfr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GeorgeStorm\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1561618107.0, \"send_replies\": true, \"parent_id\": \"t1_es44gnr\", \"score\": 1, \"author_fullname\": \"t2_5f5ma\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'd been using h or !h but some images all got sent to the end of the document, I think it was everything after a certain image, ended up using !htbp for most which seemed to work.\", \"link_title\": \"Couple of quirks with org-mode latex export?\", \"author_flair_css_class\": null, \"name\": \"t1_es5mrfr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d been using h or !h but some images all got sent to the end of the document, I think it was everything after a certain image, ended up using !htbp for most which seemed to work.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/es5mrfr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/\", \"report_reasons\": null, \"link_author\": \"GeorgeStorm\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/\", \"created\": 1561646907.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5ojll\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5mfti\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pimiddy\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1561617720.0, \"send_replies\": true, \"parent_id\": \"t1_es4m55o\", \"score\": 1, \"author_fullname\": \"t2_6slii\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'd also love this kind of completion in Haskell. Do you have a solution for that then?\", \"link_title\": \"IntelliJ-like import completion in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_es5mfti\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d also love this kind of completion in Haskell. Do you have a solution for that then?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/es5mfti/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/\", \"report_reasons\": null, \"link_author\": \"pimiddy\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/\", \"created\": 1561646520.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1561617921.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5md7j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561617631.0, \"send_replies\": true, \"parent_id\": \"t1_es4ksvj\", \"score\": 1, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[Here](https://gist.github.com/clemera/8f6bdeffaf3495c98a070e50dc65acbc), needs a bit of cleanup, and uses some custom things of my config like `package!` (similar to dooms `package!`, basically it installs the package), feel free to ask questions if you have problems to set it up.\\n\\nYou may wonder about VC, to display version control/project info I currently use the frame title.\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es5md7j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://gist.github.com/clemera/8f6bdeffaf3495c98a070e50dc65acbc\\\"\\u003EHere\\u003C/a\\u003E, needs a bit of cleanup, and uses some custom things of my config like \\u003Ccode\\u003Epackage!\\u003C/code\\u003E (similar to dooms \\u003Ccode\\u003Epackage!\\u003C/code\\u003E, basically it installs the package), feel free to ask questions if you have problems to set it up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou may wonder about VC, to display version control/project info I currently use the frame title.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es5md7j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561646431.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5w3jb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5m1on\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fredeB\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1561617246.0, \"send_replies\": true, \"parent_id\": \"t3_c5w3jb\", \"score\": 2, \"author_fullname\": \"t2_8lqjy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Eshell gets valid arguments with tab completion if that's what you're after\", \"link_title\": \"Are there some markers in man files or their html versions that can be used by emacs to capture some of the commands options?\", \"author_flair_css_class\": null, \"name\": \"t1_es5m1on\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEshell gets valid arguments with tab completion if that\\u0026#39;s what you\\u0026#39;re after\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/es5m1on/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"created\": 1561646046.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3tzd3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5kxj3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mediapathic\", \"num_comments\": 20, \"can_mod_post\": false, \"created_utc\": 1561615897.0, \"send_replies\": true, \"parent_id\": \"t3_c3tzd3\", \"score\": 1, \"author_fullname\": \"t2_42hw1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"As a fellow prose writer in emacs, I salute you! \\n\\n\\u0026#x200B;\\n\\nI've moved away from org and to markdown for my writing (because of compatibility with other software). I still use org for, well, organizing, but much prefer markdown for the actual prose work. That said, I may try to take this apart and see if I can build a markdown-friendly version of it. In my copious free time \\\\[tm\\\\].\", \"link_title\": \"Emacs for writers\", \"author_flair_css_class\": null, \"name\": \"t1_es5kxj3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a fellow prose writer in emacs, I salute you! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve moved away from org and to markdown for my writing (because of compatibility with other software). I still use org for, well, organizing, but much prefer markdown for the actual prose work. That said, I may try to take this apart and see if I can build a markdown-friendly version of it. In my copious free time [tm].\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c3tzd3/emacs_for_writers/es5kxj3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c3tzd3/emacs_for_writers/\", \"report_reasons\": null, \"link_author\": \"b3n\", \"author_flair_text\": null, \"link_url\": \"https://github.com/frankjonen/emacs-for-writers\", \"created\": 1561644697.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bx2swo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5kqln\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"andreas-marschke\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1561615668.0, \"send_replies\": true, \"parent_id\": \"t1_eq7rd66\", \"score\": 2, \"author_fullname\": \"t2_eqgha\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I've solved it for now with just the `url` package. The parse/crawl part is fine, since all I need is the link to the class to index all of the classes in the package. That's luckily standard in how Javadoc does it and that's already handled pretty nicely by javadoc-lookup. \\nSo all I need is the name of the Class and presto!\", \"link_title\": \"javadoc-lookup addons for indexing online javadoc API documentation\", \"author_flair_css_class\": null, \"name\": \"t1_es5kqln\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve solved it for now with just the \\u003Ccode\\u003Eurl\\u003C/code\\u003E package. The parse/crawl part is fine, since all I need is the link to the class to index all of the classes in the package. That\\u0026#39;s luckily standard in how Javadoc does it and that\\u0026#39;s already handled pretty nicely by javadoc-lookup. \\nSo all I need is the name of the Class and presto!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/es5kqln/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/bx2swo/javadoclookup_addons_for_indexing_online_javadoc/\", \"report_reasons\": null, \"link_author\": \"andreas-marschke\", \"author_flair_text\": null, \"link_url\": \"https://github.com/andreas-marschke/emacs-config/blob/master/site-lisp/javadoc-lookup-x.el\", \"created\": 1561644468.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c524mo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5k4uj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yyoncho\", \"num_comments\": 45, \"can_mod_post\": false, \"created_utc\": 1561614974.0, \"send_replies\": true, \"parent_id\": \"t1_es4nhcf\", \"score\": 1, \"author_fullname\": \"t2_4s4u03u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"No worries. I am aware that we have a lot of work to do on the packaging but overall we were receiving positive feedback on how the configuration is implemented. Ideally, I would like to push up the automatic configuration into lsp-ide package which is yet to be implemented. It will have direct dependencies to all the components that we have (helm-lsp, lsp-treemacs, company-lsp, dap-mode, etc) and it will provide slightly opinionated experience in the spirit of spacemacs layers.\", \"link_title\": \"Do you use lsp-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_es5k4uj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo worries. I am aware that we have a lot of work to do on the packaging but overall we were receiving positive feedback on how the configuration is implemented. Ideally, I would like to push up the automatic configuration into lsp-ide package which is yet to be implemented. It will have direct dependencies to all the components that we have (helm-lsp, lsp-treemacs, company-lsp, dap-mode, etc) and it will provide slightly opinionated experience in the spirit of spacemacs layers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c524mo/do_you_use_lspmode/es5k4uj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c524mo/do_you_use_lspmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c524mo/do_you_use_lspmode/\", \"created\": 1561643774.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c616e3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5k1cm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"flyin1501\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561614862.0, \"send_replies\": true, \"parent_id\": \"t3_c616e3\", \"score\": 1, \"author_fullname\": \"t2_10cocd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"To summarize it here:\\n\\n- `eshell-load-hook` runs when you load eshell via `(load \\\"eshell\\\")` or `(require 'eshell)`.\\n\\nIt's implemented by calling `(run-hooks 'eshell-load-hook)` in eshell.el. (I'm guessing that it predates `eval-after-load`, as that accomplishes the same purpose.)\\n\\n- `eshell-mode-hook` runs when you switch to the eshell major mode, ie. everytime you open a new eshell buffer.\", \"link_title\": \"eshell-mode-hook vs eshell-load-hook\", \"author_flair_css_class\": null, \"name\": \"t1_es5k1cm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETo summarize it here:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003Eeshell-load-hook\\u003C/code\\u003E runs when you load eshell via \\u003Ccode\\u003E(load \\u0026quot;eshell\\u0026quot;)\\u003C/code\\u003E or \\u003Ccode\\u003E(require \\u0026#39;eshell)\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s implemented by calling \\u003Ccode\\u003E(run-hooks \\u0026#39;eshell-load-hook)\\u003C/code\\u003E in eshell.el. (I\\u0026#39;m guessing that it predates \\u003Ccode\\u003Eeval-after-load\\u003C/code\\u003E, as that accomplishes the same purpose.)\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003Eeshell-mode-hook\\u003C/code\\u003E runs when you switch to the eshell major mode, ie. everytime you open a new eshell buffer.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c616e3/eshellmodehook_vs_eshellloadhook/es5k1cm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c616e3/eshellmodehook_vs_eshellloadhook/\", \"report_reasons\": null, \"link_author\": \"davidshen84\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c616e3/eshellmodehook_vs_eshellloadhook/\", \"created\": 1561643662.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5vkvk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5jigu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ieure\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561614286.0, \"send_replies\": true, \"parent_id\": \"t1_es4w99e\", \"score\": 1, \"author_fullname\": \"t2_41fij\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I dunno man I'd rather staple my dick to my leg than run node or macos\", \"link_title\": \"Help with Emacs + Mac OS X + shell environment?\", \"author_flair_css_class\": null, \"name\": \"t1_es5jigu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI dunno man I\\u0026#39;d rather staple my dick to my leg than run node or macos\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/es5jigu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"report_reasons\": null, \"link_author\": \"zzantares\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"created\": 1561643086.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5lodr\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5j9db\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cupof__coffee\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1561614010.0, \"send_replies\": true, \"parent_id\": \"t1_es5hm9v\", \"score\": 1, \"author_fullname\": \"t2_2n0m6qvl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I like the way you think.\", \"link_title\": \"emacs dap-mode\", \"author_flair_css_class\": null, \"name\": \"t1_es5j9db\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like the way you think.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5lodr/emacs_dapmode/es5j9db/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5lodr/emacs_dapmode/\", \"report_reasons\": null, \"link_author\": \"cupof__coffee\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5lodr/emacs_dapmode/\", \"created\": 1561642810.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4oq35\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5ik3b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mediapathic\", \"num_comments\": 16, \"can_mod_post\": false, \"created_utc\": 1561613246.0, \"send_replies\": true, \"parent_id\": \"t3_c4oq35\", \"score\": 1, \"author_fullname\": \"t2_42hw1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is good and you should feel good.\", \"link_title\": \"frog-jump-buffer - a super-fast buffer switching package using posframe and avy, is now on MELPA\", \"author_flair_css_class\": null, \"name\": \"t1_es5ik3b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is good and you should feel good.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c4oq35/frogjumpbuffer_a_superfast_buffer_switching/es5ik3b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c4oq35/frogjumpbuffer_a_superfast_buffer_switching/\", \"report_reasons\": null, \"link_author\": \"thepalmcivet\", \"author_flair_text\": null, \"link_url\": \"https://github.com/waymondo/frog-jump-buffer\", \"created\": 1561642046.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c616e3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5i8md\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"davidshen84\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561612915.0, \"send_replies\": true, \"parent_id\": \"t1_es5hhas\", \"score\": 1, \"author_fullname\": \"t2_70ty5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"ah~forgot help variable also includes hooks. thx\", \"link_title\": \"eshell-mode-hook vs eshell-load-hook\", \"author_flair_css_class\": null, \"name\": \"t1_es5i8md\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eah~forgot help variable also includes hooks. thx\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c616e3/eshellmodehook_vs_eshellloadhook/es5i8md/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c616e3/eshellmodehook_vs_eshellloadhook/\", \"report_reasons\": null, \"link_author\": \"davidshen84\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c616e3/eshellmodehook_vs_eshellloadhook/\", \"created\": 1561641715.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5lodr\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5hm9v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yyoncho\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1561612268.0, \"send_replies\": true, \"parent_id\": \"t1_es5h0dr\", \"score\": 1, \"author_fullname\": \"t2_4s4u03u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I think that creating a function ```(defun dap--substitute (debug-args)...``` which will iterate over the debug args and for each string value will to `s-replace` for each element in this alist. \\n\\n```\\n'((\\\"workspaceRoot\\\" . #'lsp-workspace-root)\\n (\\\"path\\\" . #'buffer-file-name))\\n```\\n\\nThis will allow having random replacement.\", \"link_title\": \"emacs dap-mode\", \"author_flair_css_class\": null, \"name\": \"t1_es5hm9v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think that creating a function \\u003Ccode\\u003E(defun dap--substitute (debug-args)...\\u003C/code\\u003E which will iterate over the debug args and for each string value will to \\u003Ccode\\u003Es-replace\\u003C/code\\u003E for each element in this alist. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n\\u0026#39;((\\u0026quot;workspaceRoot\\u0026quot; . #\\u0026#39;lsp-workspace-root)\\n (\\u0026quot;path\\u0026quot; . #\\u0026#39;buffer-file-name))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis will allow having random replacement.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5lodr/emacs_dapmode/es5hm9v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5lodr/emacs_dapmode/\", \"report_reasons\": null, \"link_author\": \"cupof__coffee\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5lodr/emacs_dapmode/\", \"created\": 1561641068.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c616e3\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5hhas\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yep808\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561612125.0, \"send_replies\": true, \"parent_id\": \"t3_c616e3\", \"score\": 2, \"author_fullname\": \"t2_3kgkql01\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Have you tried M-x help variable?\", \"link_title\": \"eshell-mode-hook vs eshell-load-hook\", \"author_flair_css_class\": null, \"name\": \"t1_es5hhas\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave you tried M-x help variable?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c616e3/eshellmodehook_vs_eshellloadhook/es5hhas/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c616e3/eshellmodehook_vs_eshellloadhook/\", \"report_reasons\": null, \"link_author\": \"davidshen84\", \"author_flair_text\": \"Emacs enthusiast\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/c616e3/eshellmodehook_vs_eshellloadhook/\", \"created\": 1561640925.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5lodr\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5h0dr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cupof__coffee\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1561611649.0, \"send_replies\": true, \"parent_id\": \"t1_es5fpju\", \"score\": 1, \"author_fullname\": \"t2_2n0m6qvl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Just out of curiosity, whats the plan of attack for something like that ? is it associate those flag type things with variables in elisp? or would it be bring in an external package to kinda handle the location of files and what not?\", \"link_title\": \"emacs dap-mode\", \"author_flair_css_class\": null, \"name\": \"t1_es5h0dr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust out of curiosity, whats the plan of attack for something like that ? is it associate those flag type things with variables in elisp? or would it be bring in an external package to kinda handle the location of files and what not?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5lodr/emacs_dapmode/es5h0dr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5lodr/emacs_dapmode/\", \"report_reasons\": null, \"link_author\": \"cupof__coffee\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5lodr/emacs_dapmode/\", \"created\": 1561640449.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5w3jb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5g7is\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"celeritasCelery\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1561610852.0, \"send_replies\": true, \"parent_id\": \"t1_es4lmf5\", \"score\": 2, \"author_fullname\": \"t2_z9rto\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"In fact there is an emacs [package](https://gitlab.com/ambrevar/emacs-fish-completion) that uses fish as a backend to provide argument completion for emacs!\", \"link_title\": \"Are there some markers in man files or their html versions that can be used by emacs to capture some of the commands options?\", \"author_flair_css_class\": null, \"name\": \"t1_es5g7is\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn fact there is an emacs \\u003Ca href=\\\"https://gitlab.com/ambrevar/emacs-fish-completion\\\"\\u003Epackage\\u003C/a\\u003E that uses fish as a backend to provide argument completion for emacs!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/es5g7is/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"created\": 1561639652.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c550ht\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5fqdy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ProfessorSexyTime\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561610384.0, \"send_replies\": true, \"parent_id\": \"t3_c550ht\", \"score\": 1, \"author_fullname\": \"t2_md275\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Can someone give me a more simpler set of use cases for [el-patch](https://github.com/raxod502/el-patch)?\\n\\nI generally understand what it does, and why it exists, but using it is a bit daunting.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_es5fqdy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan someone give me a more simpler set of use cases for \\u003Ca href=\\\"https://github.com/raxod502/el-patch\\\"\\u003Eel-patch\\u003C/a\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI generally understand what it does, and why it exists, but using it is a bit daunting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c550ht/weekly_tipstricketc_thread/es5fqdy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c550ht/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c550ht/weekly_tipstricketc_thread/\", \"created\": 1561639184.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5lodr\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5fpju\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yyoncho\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1561610361.0, \"send_replies\": true, \"parent_id\": \"t1_es4fxz5\", \"score\": 1, \"author_fullname\": \"t2_4s4u03u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"At this point no. But the plan is to support the vscode configurations so we will eventually implement it. If you have an interest in implementing that feature you may ping me.\", \"link_title\": \"emacs dap-mode\", \"author_flair_css_class\": null, \"name\": \"t1_es5fpju\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAt this point no. But the plan is to support the vscode configurations so we will eventually implement it. If you have an interest in implementing that feature you may ping me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5lodr/emacs_dapmode/es5fpju/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5lodr/emacs_dapmode/\", \"report_reasons\": null, \"link_author\": \"cupof__coffee\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5lodr/emacs_dapmode/\", \"created\": 1561639161.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5yixc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5fowq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"celeritasCelery\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561610343.0, \"send_replies\": true, \"parent_id\": \"t3_c5yixc\", \"score\": 1, \"author_fullname\": \"t2_z9rto\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This not a prefect match, but there is also this package which does something similar with magit.\\n\\nhttps://github.com/alphapapa/magit-todos/blob/master/README.org\", \"link_title\": \"Is there a Helm equivalent to doom-todo-ivy?\", \"author_flair_css_class\": null, \"name\": \"t1_es5fowq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis not a prefect match, but there is also this package which does something similar with magit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/magit-todos/blob/master/README.org\\\"\\u003Ehttps://github.com/alphapapa/magit-todos/blob/master/README.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5yixc/is_there_a_helm_equivalent_to_doomtodoivy/es5fowq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5yixc/is_there_a_helm_equivalent_to_doomtodoivy/\", \"report_reasons\": null, \"link_author\": \"Xorous\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5yixc/is_there_a_helm_equivalent_to_doomtodoivy/\", \"created\": 1561639143.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5vkvk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5eryu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ispinfx\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561609475.0, \"send_replies\": true, \"parent_id\": \"t1_es5d3mw\", \"score\": 1, \"author_fullname\": \"t2_9npe8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"FYI: `emacs-mac` has many Mac specific features and has been optimized for Mac.\", \"link_title\": \"Help with Emacs + Mac OS X + shell environment?\", \"author_flair_css_class\": null, \"name\": \"t1_es5eryu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFYI: \\u003Ccode\\u003Eemacs-mac\\u003C/code\\u003E has many Mac specific features and has been optimized for Mac.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/es5eryu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"report_reasons\": null, \"link_author\": \"zzantares\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"created\": 1561638275.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mtx1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5ejum\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eli-zaretskii\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1561609266.0, \"send_replies\": true, \"parent_id\": \"t1_es4gv12\", \"score\": 1, \"author_fullname\": \"t2_13cvre\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E It's safe to assume others would want point to move to the next character when you click\\n\\nI don't think assuming anything here is a good idea. The OP's request is already against our assumptions, so I think all bets are off regarding the expectations in related, but different situations.\", \"link_title\": \"How can I get modern mouse slection in emacs?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_es5ejum\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIt\\u0026#39;s safe to assume others would want point to move to the next character when you click\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t think assuming anything here is a good idea. The OP\\u0026#39;s request is already against our assumptions, so I think all bets are off regarding the expectations in related, but different situations.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/es5ejum/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/\", \"report_reasons\": null, \"link_author\": \"Keeto_\", \"author_flair_text\": \"GNU Emacs maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/\", \"created\": 1561638066.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3wjxw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5efvw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"eli-zaretskii\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561609167.0, \"send_replies\": true, \"parent_id\": \"t1_es4s2va\", \"score\": 1, \"author_fullname\": \"t2_13cvre\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"What do you mean by \\\"brackets\\\"?\", \"link_title\": \"Why is my line number moving randomly when I reach a line\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_es5efvw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat do you mean by \\u0026quot;brackets\\u0026quot;?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c3wjxw/why_is_my_line_number_moving_randomly_when_i/es5efvw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c3wjxw/why_is_my_line_number_moving_randomly_when_i/\", \"report_reasons\": null, \"link_author\": \"UnoPlusUno\", \"author_flair_text\": \"GNU Emacs maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/c3wjxw/why_is_my_line_number_moving_randomly_when_i/\", \"created\": 1561637967.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5e2p5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sebhoagie\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561608835.0, \"send_replies\": true, \"parent_id\": \"t1_es5af3j\", \"score\": 1, \"author_fullname\": \"t2_e8g61\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Nopes. Some people recommend running Emacs as admin and so far havent noticed any difference. Some days it really gets on my nerves.\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es5e2p5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENopes. Some people recommend running Emacs as admin and so far havent noticed any difference. Some days it really gets on my nerves.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es5e2p5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561637635.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5w3jb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5dsnf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"shponglespore\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1561608586.0, \"send_replies\": true, \"parent_id\": \"t1_es51sva\", \"score\": 1, \"author_fullname\": \"t2_4dw4r\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Most of man pages are *super* conventional, though. I think people who aren't into following the conventions just don't write man pages at all.\", \"link_title\": \"Are there some markers in man files or their html versions that can be used by emacs to capture some of the commands options?\", \"author_flair_css_class\": null, \"name\": \"t1_es5dsnf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMost of man pages are \\u003Cem\\u003Esuper\\u003C/em\\u003E conventional, though. I think people who aren\\u0026#39;t into following the conventions just don\\u0026#39;t write man pages at all.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/es5dsnf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"created\": 1561637386.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5vkvk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5d3mw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zzantares\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561607967.0, \"send_replies\": true, \"parent_id\": \"t1_es57d57\", \"score\": 1, \"author_fullname\": \"t2_17rsc1gc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"didn't know that, but thanks, I use `emacs-plus`, Mitsuharu's port doesn't feel snappier.\", \"link_title\": \"Help with Emacs + Mac OS X + shell environment?\", \"author_flair_css_class\": null, \"name\": \"t1_es5d3mw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edidn\\u0026#39;t know that, but thanks, I use \\u003Ccode\\u003Eemacs-plus\\u003C/code\\u003E, Mitsuharu\\u0026#39;s port doesn\\u0026#39;t feel snappier.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/es5d3mw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"report_reasons\": null, \"link_author\": \"zzantares\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"created\": 1561636767.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4r3wn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5agq6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"spirosboosalis\", \"num_comments\": 47, \"can_mod_post\": false, \"created_utc\": 1561605780.0, \"send_replies\": true, \"parent_id\": \"t1_erzosiy\", \"score\": 2, \"author_fullname\": \"t2_ku8ph\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"emacs is visual studio. you can both click on tabs and `switch-to-buffer`. smh why do people think in addition is a replacement?\", \"link_title\": \"Centaur tabs: a new, customizable and aesthetic tabs plugin for Emacs\", \"author_flair_css_class\": null, \"name\": \"t1_es5agq6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eemacs is visual studio. you can both click on tabs and \\u003Ccode\\u003Eswitch-to-buffer\\u003C/code\\u003E. smh why do people think in addition is a replacement?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/es5agq6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/\", \"report_reasons\": null, \"link_author\": \"ema2159\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/\", \"created\": 1561634580.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5af3j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"qualiaqq\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561605745.0, \"send_replies\": true, \"parent_id\": \"t1_es59x2x\", \"score\": 1, \"author_fullname\": \"t2_b8hov\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Have you found a way to speed up interaction between magit and git? I think the speed issues are more of a git on windows issue than emacs, but this is my biggest pain point.\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es5af3j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave you found a way to speed up interaction between magit and git? I think the speed issues are more of a git on windows issue than emacs, but this is my biggest pain point.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es5af3j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561634545.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mahc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5adrp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"runslack\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1561605716.0, \"send_replies\": true, \"parent_id\": \"t1_es3vgwc\", \"score\": 1, \"author_fullname\": \"t2_d6he2p9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Love that !\\nI am also using Dbus here to communicate with an XMPP client which has a sole backend and multiple frontends. I wrote another frontend client for GNU emacs\", \"link_title\": \"dbus\", \"author_flair_css_class\": null, \"name\": \"t1_es5adrp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELove that !\\nI am also using Dbus here to communicate with an XMPP client which has a sole backend and multiple frontends. I wrote another frontend client for GNU emacs\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mahc/dbus/es5adrp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mahc/dbus/\", \"report_reasons\": null, \"link_author\": \"plotnick\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mahc/dbus/\", \"created\": 1561634516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4r3wn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5acy0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"spirosboosalis\", \"num_comments\": 47, \"can_mod_post\": false, \"created_utc\": 1561605699.0, \"send_replies\": true, \"parent_id\": \"t1_ery6s1w\", \"score\": 1, \"author_fullname\": \"t2_ku8ph\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"it is a needed feature in practice.\", \"link_title\": \"Centaur tabs: a new, customizable and aesthetic tabs plugin for Emacs\", \"author_flair_css_class\": null, \"name\": \"t1_es5acy0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eit is a needed feature in practice.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/es5acy0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/\", \"report_reasons\": null, \"link_author\": \"ema2159\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/\", \"created\": 1561634499.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es59x2x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sebhoagie\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561605350.0, \"send_replies\": true, \"parent_id\": \"t1_es57oto\", \"score\": 1, \"author_fullname\": \"t2_e8g61\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I've used Emacs on Windows for so long that I've worked out a lot of the problems. I tested WSL briefly and it seems faster but I'm reluctant to add more layers (WSL, Cygwin, etc.). \\nBetween GnuWin32 and ezwinports I've managed to smooth over any differences between Win and Linux.\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es59x2x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve used Emacs on Windows for so long that I\\u0026#39;ve worked out a lot of the problems. I tested WSL briefly and it seems faster but I\\u0026#39;m reluctant to add more layers (WSL, Cygwin, etc.).\\u003Cbr/\\u003E\\nBetween GnuWin32 and ezwinports I\\u0026#39;ve managed to smooth over any differences between Win and Linux.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es59x2x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561634150.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4r3wn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es597aa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"spirosboosalis\", \"num_comments\": 47, \"can_mod_post\": false, \"created_utc\": 1561604796.0, \"send_replies\": true, \"parent_id\": \"t1_es0tkl5\", \"score\": 2, \"author_fullname\": \"t2_ku8ph\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Agree.\\n\\nmost of the negative comments come from people who obviously aren't experienced with any of the many existing Tab Bar packages (which i have, and which this package improves upon), otherwise, they'd compare them. and/or thosr users aren't disabled, and can use the keyboard for everything (otherwise, the drawbacks, which i do acknowledge, can become outweighed by the benefits).\", \"link_title\": \"Centaur tabs: a new, customizable and aesthetic tabs plugin for Emacs\", \"author_flair_css_class\": null, \"name\": \"t1_es597aa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAgree.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Emost of the negative comments come from people who obviously aren\\u0026#39;t experienced with any of the many existing Tab Bar packages (which i have, and which this package improves upon), otherwise, they\\u0026#39;d compare them. and/or thosr users aren\\u0026#39;t disabled, and can use the keyboard for everything (otherwise, the drawbacks, which i do acknowledge, can become outweighed by the benefits).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/es597aa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/\", \"report_reasons\": null, \"link_author\": \"ema2159\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/\", \"created\": 1561633596.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es57oto\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"qualiaqq\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561603694.0, \"send_replies\": true, \"parent_id\": \"t1_es55tk0\", \"score\": 1, \"author_fullname\": \"t2_b8hov\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yea a lot of things in emacs are not nearly as fast in Windows as it is in Linux. Eventually I'm going to fully migrate my stuff over to WSL. WSL2 recently became available and should be a game changer.\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es57oto\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYea a lot of things in emacs are not nearly as fast in Windows as it is in Linux. Eventually I\\u0026#39;m going to fully migrate my stuff over to WSL. WSL2 recently became available and should be a game changer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es57oto/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561632494.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5vkvk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es57npj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TokenMenses\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561603672.0, \"send_replies\": true, \"parent_id\": \"t3_c5vkvk\", \"score\": 1, \"author_fullname\": \"t2_7qn6v\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This works for me. I don't remember if I wrote this or found it somewhere.\\n\\n (if (not (getenv \\\"TERM_PROGRAM\\\"))\\n (setenv \\\"PATH\\\"\\n (shell-command-to-string \\\"source $HOME/.bashrc ; printf $PATH\\\")))\\n (setq exec-path (split-string (getenv \\\"PATH\\\") \\\":\\\"))\", \"link_title\": \"Help with Emacs + Mac OS X + shell environment?\", \"author_flair_css_class\": null, \"name\": \"t1_es57npj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis works for me. I don\\u0026#39;t remember if I wrote this or found it somewhere.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(if (not (getenv \\u0026quot;TERM_PROGRAM\\u0026quot;))\\n (setenv \\u0026quot;PATH\\u0026quot;\\n (shell-command-to-string \\u0026quot;source $HOME/.bashrc ; printf $PATH\\u0026quot;)))\\n(setq exec-path (split-string (getenv \\u0026quot;PATH\\u0026quot;) \\u0026quot;:\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/es57npj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"report_reasons\": null, \"link_author\": \"zzantares\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"created\": 1561632472.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5vkvk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es57d57\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ispinfx\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561603460.0, \"send_replies\": true, \"parent_id\": \"t3_c5vkvk\", \"score\": 1, \"author_fullname\": \"t2_9npe8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"If you use `brew install emacs-mac`, then you don't need `exec-path-from-shell`.\", \"link_title\": \"Help with Emacs + Mac OS X + shell environment?\", \"author_flair_css_class\": null, \"name\": \"t1_es57d57\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you use \\u003Ccode\\u003Ebrew install emacs-mac\\u003C/code\\u003E, then you don\\u0026#39;t need \\u003Ccode\\u003Eexec-path-from-shell\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/es57d57/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"report_reasons\": null, \"link_author\": \"zzantares\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"created\": 1561632260.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es56e89\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sebhoagie\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561602785.0, \"send_replies\": true, \"parent_id\": \"t1_es4ftxz\", \"score\": 1, \"author_fullname\": \"t2_e8g61\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Agreed. If someone wants to build their own mode line this is by far the easiest package to do so, and very extensible to add any kind of custom segment. \\n\\nI've moved to mood-line for now but hold telephone-line in high regard.\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es56e89\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAgreed. If someone wants to build their own mode line this is by far the easiest package to do so, and very extensible to add any kind of custom segment. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve moved to mood-line for now but hold telephone-line in high regard.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es56e89/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561631585.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es55twb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LimbRetrieval-Bot\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561602406.0, \"send_replies\": true, \"parent_id\": \"t1_es55tk0\", \"score\": 1, \"author_fullname\": \"t2_siwe358\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have retrieved these for you _ _\\n *** \\n^^\\u0026#32;To\\u0026#32;prevent\\u0026#32;anymore\\u0026#32;lost\\u0026#32;limbs\\u0026#32;throughout\\u0026#32;Reddit,\\u0026#32;correctly\\u0026#32;escape\\u0026#32;the\\u0026#32;arms\\u0026#32;and\\u0026#32;shoulders\\u0026#32;by\\u0026#32;typing\\u0026#32;the\\u0026#32;shrug\\u0026#32;as\\u0026#32;`\\u00af\\\\\\\\\\\\_(\\u30c4)_/\\u00af`\\u0026#32;or\\u0026#32;`\\u00af\\\\\\\\\\\\_(\\u30c4)\\\\_/\\u00af`\\n\\n [^^Click\\u0026#32;here\\u0026#32;to\\u0026#32;see\\u0026#32;why\\u0026#32;this\\u0026#32;is\\u0026#32;necessary](https://np.reddit.com/r/OutOfTheLoop/comments/3fbrg3/is_there_a_reason_why_the_arm_is_always_missing/ctn5gbf/)\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es55twb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have retrieved these for you _ _\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u0026#32;To\\u0026#32;prevent\\u0026#32;anymore\\u0026#32;lost\\u0026#32;limbs\\u0026#32;throughout\\u0026#32;Reddit,\\u0026#32;correctly\\u0026#32;escape\\u0026#32;the\\u0026#32;arms\\u0026#32;and\\u0026#32;shoulders\\u0026#32;by\\u0026#32;typing\\u0026#32;the\\u0026#32;shrug\\u0026#32;as\\u0026#32;\\u003Ccode\\u003E\\u00af\\\\\\\\\\\\_(\\u30c4)_/\\u00af\\u003C/code\\u003E\\u0026#32;or\\u0026#32;\\u003Ccode\\u003E\\u00af\\\\\\\\\\\\_(\\u30c4)\\\\_/\\u00af\\u003C/code\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://np.reddit.com/r/OutOfTheLoop/comments/3fbrg3/is_there_a_reason_why_the_arm_is_always_missing/ctn5gbf/\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003EClick\\u0026#32;here\\u0026#32;to\\u0026#32;see\\u0026#32;why\\u0026#32;this\\u0026#32;is\\u0026#32;necessary\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es55twb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561631206.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es55tk0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sebhoagie\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561602400.0, \"send_replies\": true, \"parent_id\": \"t1_es52bze\", \"score\": 1, \"author_fullname\": \"t2_e8g61\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks for the tip! \\n\\nI had that setting enabled from my time using powerline. It took some hours but eventually I could feel some sluggishness and removed everything that used all-the-icons. \\n\\n\\nI don't have an anti Windows stance, quite the contrary, but it seems icon fonts are not as fast as under Linux \\u00af\\\\\\\\_(\\u30c4)_/\\u00af\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es55tk0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for the tip! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI had that setting enabled from my time using powerline. It took some hours but eventually I could feel some sluggishness and removed everything that used all-the-icons. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t have an anti Windows stance, quite the contrary, but it seems icon fonts are not as fast as under Linux \\u00af\\\\\\u003Cem\\u003E(\\u30c4)\\u003C/em\\u003E/\\u00af\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es55tk0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561631200.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1561602869.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5eyo4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es541qp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"oantolin\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1561601164.0, \"send_replies\": true, \"parent_id\": \"t1_es3p941\", \"score\": 1, \"author_fullname\": \"t2_3fxjo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Oh, you're right it doesn't work for single quotes (it does work for me with double quotes). It looks like this might be an [old Org mode bug](https://emacs.stackexchange.com/questions/17061/is-exporting-of-smart-single-quotes-broken-in-org-8-3).\\n\\nEDIT: Apparently it was decided that single quotes should only be smart when they are inside double quotes (so the behavior you see isn't a bug but a choice). [See this message on the mailing list](https://lists.gnu.org/archive/html/emacs-orgmode/2015-10/msg00122.html). I almost never use single quotes, and probably only use them nested, so I never noticed the change.\", \"link_title\": \"Couple of quirks with org-mode latex export?\", \"author_flair_css_class\": null, \"name\": \"t1_es541qp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh, you\\u0026#39;re right it doesn\\u0026#39;t work for single quotes (it does work for me with double quotes). It looks like this might be an \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/17061/is-exporting-of-smart-single-quotes-broken-in-org-8-3\\\"\\u003Eold Org mode bug\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Apparently it was decided that single quotes should only be smart when they are inside double quotes (so the behavior you see isn\\u0026#39;t a bug but a choice). \\u003Ca href=\\\"https://lists.gnu.org/archive/html/emacs-orgmode/2015-10/msg00122.html\\\"\\u003ESee this message on the mailing list\\u003C/a\\u003E. I almost never use single quotes, and probably only use them nested, so I never noticed the change.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/es541qp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/\", \"report_reasons\": null, \"link_author\": \"GeorgeStorm\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/\", \"created\": 1561629964.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5vkle\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es52dvg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yanghaoxie\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1561600021.0, \"send_replies\": true, \"parent_id\": \"t3_c5vkle\", \"score\": 3, \"author_fullname\": \"t2_yophh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Check [emacs-calfw](https://github.com/kiwanami/emacs-calfw/tree/03abce97620a4a7f7ec5f911e669da9031ab9088)\", \"link_title\": \"Google Calendar intergration (Yes, that old chestnut)\", \"author_flair_css_class\": null, \"name\": \"t1_es52dvg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECheck \\u003Ca href=\\\"https://github.com/kiwanami/emacs-calfw/tree/03abce97620a4a7f7ec5f911e669da9031ab9088\\\"\\u003Eemacs-calfw\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5vkle/google_calendar_intergration_yes_that_old_chestnut/es52dvg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5vkle/google_calendar_intergration_yes_that_old_chestnut/\", \"report_reasons\": null, \"link_author\": \"xircon\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5vkle/google_calendar_intergration_yes_that_old_chestnut/\", \"created\": 1561628821.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es52bze\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"qualiaqq\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561599985.0, \"send_replies\": true, \"parent_id\": \"t1_es35tem\", \"score\": 1, \"author_fullname\": \"t2_b8hov\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003EDoom-modeline: would still use it if it wasn't that the icons stuff sometimes slows down my work Windows system. Although lately I started feeling it was a bit too busy.\\n\\nI've had some [performance issues](https://github.com/seagle0128/doom-modeline/issues/37) with doom-modeline in Windows as well, but they were solved by `(setq inhibit-compacting-font-caches t)`. Not sure if that's the same as what you're referring.\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es52bze\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDoom-modeline: would still use it if it wasn\\u0026#39;t that the icons stuff sometimes slows down my work Windows system. Although lately I started feeling it was a bit too busy.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve had some \\u003Ca href=\\\"https://github.com/seagle0128/doom-modeline/issues/37\\\"\\u003Eperformance issues\\u003C/a\\u003E with doom-modeline in Windows as well, but they were solved by \\u003Ccode\\u003E(setq inhibit-compacting-font-caches t)\\u003C/code\\u003E. Not sure if that\\u0026#39;s the same as what you\\u0026#39;re referring.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es52bze/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561628785.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es525cq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"lawlist\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561599858.0, \"send_replies\": true, \"parent_id\": \"t1_es4ibch\", \"score\": 1, \"author_fullname\": \"t2_n4mmo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Here is a first draft of a stripped-down version of what I use. The only major-mode for which hooks exist is `text-mode` -- i.e., to use the example, evaluate `mode-line.el` and then enable any buffer in `text-mode` to see how the mode-line works.\\n\\nhttps://github.com/lawlist/mode-line\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es525cq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is a first draft of a stripped-down version of what I use. The only major-mode for which hooks exist is \\u003Ccode\\u003Etext-mode\\u003C/code\\u003E -- i.e., to use the example, evaluate \\u003Ccode\\u003Emode-line.el\\u003C/code\\u003E and then enable any buffer in \\u003Ccode\\u003Etext-mode\\u003C/code\\u003E to see how the mode-line works.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/lawlist/mode-line\\\"\\u003Ehttps://github.com/lawlist/mode-line\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es525cq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561628658.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5w3jb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es51sva\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"7890yuiop\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1561599619.0, \"send_replies\": true, \"parent_id\": \"t3_c5w3jb\", \"score\": 3, \"author_fullname\": \"t2_xw3p4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"My understanding (someone please correct me if I'm wrong) is that \\\\*roff syntax is more akin to a word processor's formatting than it is to a structured markup language; and that consequently, while there may be *conventions* around how options should be formatted in a man page, there would be no way of unambiguously identifying an \\\"option\\\" vs something else which happens to be formatted similarly; and probably no guarantee that all man pages follow the same conventions. So you could no doubt write some convention-based heuristics for doing what you're asking, but I rather doubt that there's an easy and dependable method unless someone else has already done the donkey work (so I would certainly be inclined to follow up on that other comment about the `fish` shell).\", \"link_title\": \"Are there some markers in man files or their html versions that can be used by emacs to capture some of the commands options?\", \"author_flair_css_class\": null, \"name\": \"t1_es51sva\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy understanding (someone please correct me if I\\u0026#39;m wrong) is that *roff syntax is more akin to a word processor\\u0026#39;s formatting than it is to a structured markup language; and that consequently, while there may be \\u003Cem\\u003Econventions\\u003C/em\\u003E around how options should be formatted in a man page, there would be no way of unambiguously identifying an \\u0026quot;option\\u0026quot; vs something else which happens to be formatted similarly; and probably no guarantee that all man pages follow the same conventions. So you could no doubt write some convention-based heuristics for doing what you\\u0026#39;re asking, but I rather doubt that there\\u0026#39;s an easy and dependable method unless someone else has already done the donkey work (so I would certainly be inclined to follow up on that other comment about the \\u003Ccode\\u003Efish\\u003C/code\\u003E shell).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/es51sva/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"created\": 1561628419.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5bvpx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es50x5e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"plotnick\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1561598997.0, \"send_replies\": true, \"parent_id\": \"t3_c5bvpx\", \"score\": 1, \"author_fullname\": \"t2_esdtt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Related https://twitter.com/iLemming/status/1129578330687123457\", \"link_title\": \"Is there a way to have which-key always on?\", \"author_flair_css_class\": null, \"name\": \"t1_es50x5e\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERelated \\u003Ca href=\\\"https://twitter.com/iLemming/status/1129578330687123457\\\"\\u003Ehttps://twitter.com/iLemming/status/1129578330687123457\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5bvpx/is_there_a_way_to_have_whichkey_always_on/es50x5e/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5bvpx/is_there_a_way_to_have_whichkey_always_on/\", \"report_reasons\": null, \"link_author\": \"billy_wade\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5bvpx/is_there_a_way_to_have_whichkey_always_on/\", \"created\": 1561627797.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c562rm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4zxr4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"__i_forgot_my_name__\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1561598298.0, \"send_replies\": true, \"parent_id\": \"t1_es4gjd9\", \"score\": 1, \"author_fullname\": \"t2_3agebbhs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"There's is no actual argument for headers like I said:\\n\\n \\\\section{Stuff}\\n \\\\subsection{Things}\\n\\n * Stuff\\n ** Things\\n\\nA one word difference is nothing worth arguing about, both methods are fairly minimal by nature, and all the configurations in LaTeX shouldn't be happening where your content is. You should be building up macros in one place, and using them, as you use functions.\\n\\nWithin the document you write your content, you typically aren't going to have any programmables, or piles of options... all that stuff is going to be pilled up in another file, or at the top of the document.\\n\\nTop all of these named commands with a proper syntax highlighter, and it should realistically be the least of your problems. LaTeX isn't just a markup language, just like HTML isn't just a markup language, it's also the entire framework which is comes in relation to it.\", \"link_title\": \"Pure LaTeX or Org Mode export?\", \"author_flair_css_class\": null, \"name\": \"t1_es4zxr4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s is no actual argument for headers like I said:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\\\section{Stuff}\\n\\\\subsection{Things}\\n\\n* Stuff\\n** Things\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EA one word difference is nothing worth arguing about, both methods are fairly minimal by nature, and all the configurations in LaTeX shouldn\\u0026#39;t be happening where your content is. You should be building up macros in one place, and using them, as you use functions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithin the document you write your content, you typically aren\\u0026#39;t going to have any programmables, or piles of options... all that stuff is going to be pilled up in another file, or at the top of the document.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETop all of these named commands with a proper syntax highlighter, and it should realistically be the least of your problems. LaTeX isn\\u0026#39;t just a markup language, just like HTML isn\\u0026#39;t just a markup language, it\\u0026#39;s also the entire framework which is comes in relation to it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c562rm/pure_latex_or_org_mode_export/es4zxr4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c562rm/pure_latex_or_org_mode_export/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c562rm/pure_latex_or_org_mode_export/\", \"created\": 1561627098.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5b988\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4zniu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sebhoagie\", \"num_comments\": 20, \"can_mod_post\": false, \"created_utc\": 1561598093.0, \"send_replies\": true, \"parent_id\": \"t1_es4x74w\", \"score\": 1, \"author_fullname\": \"t2_e8g61\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thank you!\", \"link_title\": \"Latest emacs version boots a lot faster.\", \"author_flair_css_class\": null, \"name\": \"t1_es4zniu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5b988/latest_emacs_version_boots_a_lot_faster/es4zniu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5b988/latest_emacs_version_boots_a_lot_faster/\", \"report_reasons\": null, \"link_author\": \"dericbytes\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5b988/latest_emacs_version_boots_a_lot_faster/\", \"created\": 1561626893.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5b988\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4x74w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"npostavs\", \"num_comments\": 20, \"can_mod_post\": false, \"created_utc\": 1561596263.0, \"send_replies\": true, \"parent_id\": \"t1_es36384\", \"score\": 2, \"author_fullname\": \"t2_5ha0gu1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I guess no, because [admin/nt/dist-build/build-dep-zips.py](http://git.savannah.gnu.org/cgit/emacs.git/tree/admin/nt/dist-build/build-dep-zips.py) isn't listing `libjansson` at the moment.\", \"link_title\": \"Latest emacs version boots a lot faster.\", \"author_flair_css_class\": null, \"name\": \"t1_es4x74w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI guess no, because \\u003Ca href=\\\"http://git.savannah.gnu.org/cgit/emacs.git/tree/admin/nt/dist-build/build-dep-zips.py\\\"\\u003Eadmin/nt/dist-build/build-dep-zips.py\\u003C/a\\u003E isn\\u0026#39;t listing \\u003Ccode\\u003Elibjansson\\u003C/code\\u003E at the moment.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5b988/latest_emacs_version_boots_a_lot_faster/es4x74w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5b988/latest_emacs_version_boots_a_lot_faster/\", \"report_reasons\": null, \"link_author\": \"dericbytes\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5b988/latest_emacs_version_boots_a_lot_faster/\", \"created\": 1561625063.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5vkvk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4wfuc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zzantares\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561595690.0, \"send_replies\": true, \"parent_id\": \"t1_es4egfd\", \"score\": 1, \"author_fullname\": \"t2_17rsc1gc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks, but I now found out that `node` is not even in my PATH until I use it (it has defer loading), so the PATH is being read perfectly but Emacs can't defer loading of node as the nvm zsh plugin does, or can it?\", \"link_title\": \"Help with Emacs + Mac OS X + shell environment?\", \"author_flair_css_class\": null, \"name\": \"t1_es4wfuc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, but I now found out that \\u003Ccode\\u003Enode\\u003C/code\\u003E is not even in my PATH until I use it (it has defer loading), so the PATH is being read perfectly but Emacs can\\u0026#39;t defer loading of node as the nvm zsh plugin does, or can it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/es4wfuc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"report_reasons\": null, \"link_author\": \"zzantares\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"created\": 1561624490.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5vkvk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4w99e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zzantares\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561595554.0, \"send_replies\": true, \"parent_id\": \"t1_es4ewlk\", \"score\": 1, \"author_fullname\": \"t2_17rsc1gc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks, the first point it not the issue, but the second one is the most logical. I don't even remember how I set up nvm so I looked at the shell init files and I have this:\\n\\n```\\nexport NVM_LAZY_LOAD=true\\nplugins=(git osx virtualenvwrapper docker zsh-nvm)\\n```\\n\\nUsing the zsh-nvm plugin makes it behave like this in a newly opened terminal:\\n\\n```\\n$ type node\\nnode is a shell function from /Users/antares/.oh-my-zsh/custom/plugins/zsh-nvm/zsh-nvm.plugin.zsh\\n$ node --version\\nv10.15.1\\n$ type node\\nnode is /Users/antares/.nvm/versions/node/v10.15.1/bin/node\\n```\\n\\nso `node` isn't available until I use it, so:\\n\\n- if I fire up Emacs from the terminal before I use node, Emacs will not find it.\\n- if I start Emacs from the terminal after I use node (in the terminal), Emacs will find node.\\n- if I start Emacs using alfred Emacs doesn't find node, doesn't matter if its loaded on the terminal environment or not.\\n\\ncan Emacs run .zsh scripts? how can Emacs also load `node` in the environment as the plugin does it?\", \"link_title\": \"Help with Emacs + Mac OS X + shell environment?\", \"author_flair_css_class\": null, \"name\": \"t1_es4w99e\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, the first point it not the issue, but the second one is the most logical. I don\\u0026#39;t even remember how I set up nvm so I looked at the shell init files and I have this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\nexport NVM_LAZY_LOAD=true\\nplugins=(git osx virtualenvwrapper docker zsh-nvm)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUsing the zsh-nvm plugin makes it behave like this in a newly opened terminal:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n$ type node\\nnode is a shell function from /Users/antares/.oh-my-zsh/custom/plugins/zsh-nvm/zsh-nvm.plugin.zsh\\n$ node --version\\nv10.15.1\\n$ type node\\nnode is /Users/antares/.nvm/versions/node/v10.15.1/bin/node\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eso \\u003Ccode\\u003Enode\\u003C/code\\u003E isn\\u0026#39;t available until I use it, so:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Eif I fire up Emacs from the terminal before I use node, Emacs will not find it.\\u003C/li\\u003E\\n\\u003Cli\\u003Eif I start Emacs from the terminal after I use node (in the terminal), Emacs will find node.\\u003C/li\\u003E\\n\\u003Cli\\u003Eif I start Emacs using alfred Emacs doesn\\u0026#39;t find node, doesn\\u0026#39;t matter if its loaded on the terminal environment or not.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003Ecan Emacs run .zsh scripts? how can Emacs also load \\u003Ccode\\u003Enode\\u003C/code\\u003E in the environment as the plugin does it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/es4w99e/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"report_reasons\": null, \"link_author\": \"zzantares\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"created\": 1561624354.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4vreq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GDP10\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561595187.0, \"send_replies\": true, \"parent_id\": \"t3_c5mel4\", \"score\": 1, \"author_fullname\": \"t2_ws9gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Smart Mode Line with a custom theme and some custom items in the mode line. It's the best one there is for me and it takes care of lots of details I don't want to dicker with.\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es4vreq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESmart Mode Line with a custom theme and some custom items in the mode line. It\\u0026#39;s the best one there is for me and it takes care of lots of details I don\\u0026#39;t want to dicker with.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es4vreq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561623987.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5vkvk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4ug1b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zzantares\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561594204.0, \"send_replies\": true, \"parent_id\": \"t1_es4npen\", \"score\": 1, \"author_fullname\": \"t2_17rsc1gc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes it is, I added `:demand` just in case but it's the same, this is the value of the `exec-path-from-shell-variables` just at startup (both from terminal and from alfred):\\n\\n```\\nIts value is (\\\"GOROOT\\\" \\\"GOPATH\\\" \\\"PATH\\\" \\\"MANPATH\\\")\\nOriginal value was (\\\"PATH\\\" \\\"MANPATH\\\")\\n```\", \"link_title\": \"Help with Emacs + Mac OS X + shell environment?\", \"author_flair_css_class\": null, \"name\": \"t1_es4ug1b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes it is, I added \\u003Ccode\\u003E:demand\\u003C/code\\u003E just in case but it\\u0026#39;s the same, this is the value of the \\u003Ccode\\u003Eexec-path-from-shell-variables\\u003C/code\\u003E just at startup (both from terminal and from alfred):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\nIts value is (\\u0026quot;GOROOT\\u0026quot; \\u0026quot;GOPATH\\u0026quot; \\u0026quot;PATH\\u0026quot; \\u0026quot;MANPATH\\u0026quot;)\\nOriginal value was (\\u0026quot;PATH\\u0026quot; \\u0026quot;MANPATH\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/es4ug1b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"report_reasons\": null, \"link_author\": \"zzantares\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"created\": 1561623004.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3wjxw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4s2va\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"UnoPlusUno\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561592419.0, \"send_replies\": true, \"parent_id\": \"t1_eruz1l3\", \"score\": 1, \"author_fullname\": \"t2_jxphq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It doesn't happen anymore. \\n\\nI noticed it happens when I hover over the brackets\", \"link_title\": \"Why is my line number moving randomly when I reach a line\", \"author_flair_css_class\": null, \"name\": \"t1_es4s2va\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt doesn\\u0026#39;t happen anymore. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI noticed it happens when I hover over the brackets\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c3wjxw/why_is_my_line_number_moving_randomly_when_i/es4s2va/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c3wjxw/why_is_my_line_number_moving_randomly_when_i/\", \"report_reasons\": null, \"link_author\": \"UnoPlusUno\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c3wjxw/why_is_my_line_number_moving_randomly_when_i/\", \"created\": 1561621219.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5w3jb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4olpx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"frumious\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1561589828.0, \"send_replies\": true, \"parent_id\": \"t3_c5w3jb\", \"score\": 3, \"author_fullname\": \"t2_32juj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Maybe you mean something like: \\n\\nhttps://orgmode.org/manual/Adding-hyperlink-types.html\\n\\nThis can let you make a link in an Emacs org mode file to a man page. You can then open that link sometime later and it will open the man page.\\n\\nDisclaimer: I've not tried this.\", \"link_title\": \"Are there some markers in man files or their html versions that can be used by emacs to capture some of the commands options?\", \"author_flair_css_class\": null, \"name\": \"t1_es4olpx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe you mean something like: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://orgmode.org/manual/Adding-hyperlink-types.html\\\"\\u003Ehttps://orgmode.org/manual/Adding-hyperlink-types.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis can let you make a link in an Emacs org mode file to a man page. You can then open that link sometime later and it will open the man page.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u0026#39;ve not tried this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/es4olpx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"created\": 1561618628.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5vkvk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4npen\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561589190.0, \"send_replies\": true, \"parent_id\": \"t3_c5vkvk\", \"score\": 1, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Is `exec-path-from-shell` actually loaded before the `dolist` form executes? If not, then the result will be that `exec-path-from-shell-variables` will contain *only* GOPATH and GOROOT. (I'm not super familiar with how `use-package` will expand this.)\", \"link_title\": \"Help with Emacs + Mac OS X + shell environment?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_es4npen\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs \\u003Ccode\\u003Eexec-path-from-shell\\u003C/code\\u003E actually loaded before the \\u003Ccode\\u003Edolist\\u003C/code\\u003E form executes? If not, then the result will be that \\u003Ccode\\u003Eexec-path-from-shell-variables\\u003C/code\\u003E will contain \\u003Cem\\u003Eonly\\u003C/em\\u003E GOPATH and GOROOT. (I\\u0026#39;m not super familiar with how \\u003Ccode\\u003Euse-package\\u003C/code\\u003E will expand this.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/es4npen/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"report_reasons\": null, \"link_author\": \"zzantares\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"created\": 1561617990.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c550ht\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4nj38\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bjyo\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561589065.0, \"send_replies\": true, \"parent_id\": \"t3_c550ht\", \"score\": 2, \"author_fullname\": \"t2_3b7r0l6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"When your lisp program has a random character you inserted (like p,n,f,b), you can find it with `isearch-symbol` bound to `M-s _`.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_es4nj38\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen your lisp program has a random character you inserted (like p,n,f,b), you can find it with \\u003Ccode\\u003Eisearch-symbol\\u003C/code\\u003E bound to \\u003Ccode\\u003EM-s _\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c550ht/weekly_tipstricketc_thread/es4nj38/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c550ht/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c550ht/weekly_tipstricketc_thread/\", \"created\": 1561617865.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c524mo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4nhcf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"purcell\", \"num_comments\": 45, \"can_mod_post\": false, \"created_utc\": 1561589032.0, \"send_replies\": true, \"parent_id\": \"t1_es2w1xz\", \"score\": 1, \"author_fullname\": \"t2_lgcv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks! I'll give that a go, and I appreciate the discussion. I hope I didn't come across as griping, because that wasn't my intention at all: I really want `lsp` to win, and hoped it would be helpful to share my experience of finding some of this hard to figure out.\", \"link_title\": \"Do you use lsp-mode?\", \"author_flair_css_class\": \"turquoise\", \"name\": \"t1_es4nhcf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks! I\\u0026#39;ll give that a go, and I appreciate the discussion. I hope I didn\\u0026#39;t come across as griping, because that wasn\\u0026#39;t my intention at all: I really want \\u003Ccode\\u003Elsp\\u003C/code\\u003E to win, and hoped it would be helpful to share my experience of finding some of this hard to figure out.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c524mo/do_you_use_lspmode/es4nhcf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c524mo/do_you_use_lspmode/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": \"MELPA maintainer\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/c524mo/do_you_use_lspmode/\", \"created\": 1561617832.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": \"\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5w3jb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4n9hr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"egregius313\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1561588879.0, \"send_replies\": true, \"parent_id\": \"t3_c5w3jb\", \"score\": 2, \"author_fullname\": \"t2_clfs9gn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Can you be a little more explicit with what you mean by markers? Also, are you asking to be able to extract all options from a man page, or just a select few. Because those present different strategies.\\n\\nAlso, you may want to consider `M-x man` which let's you view man pages from within Emacs. That way you could navigate to the option by searching forward and then copying whatever options you care about into the kill ring.\", \"link_title\": \"Are there some markers in man files or their html versions that can be used by emacs to capture some of the commands options?\", \"author_flair_css_class\": null, \"name\": \"t1_es4n9hr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan you be a little more explicit with what you mean by markers? Also, are you asking to be able to extract all options from a man page, or just a select few. Because those present different strategies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, you may want to consider \\u003Ccode\\u003EM-x man\\u003C/code\\u003E which let\\u0026#39;s you view man pages from within Emacs. That way you could navigate to the option by searching forward and then copying whatever options you care about into the kill ring.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/es4n9hr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"created\": 1561617679.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5ojll\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4m55o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deaddyfreddy\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1561588104.0, \"send_replies\": true, \"parent_id\": \"t3_c5ojll\", \"score\": -1, \"author_fullname\": \"t2_zcepl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"An alternative solution: don't code in Java and Python\", \"link_title\": \"IntelliJ-like import completion in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_es4m55o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAn alternative solution: don\\u0026#39;t code in Java and Python\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/es4m55o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/\", \"report_reasons\": null, \"link_author\": \"pimiddy\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/\", \"created\": 1561616904.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5w3jb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4lmf5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"github-alphapapa\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1561587741.0, \"send_replies\": true, \"parent_id\": \"t3_c5w3jb\", \"score\": 9, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You might take a look at the `fish` shell project. It has scripts that generate completions from man pages. I'd guess they've solved some of the problems already.\", \"link_title\": \"Are there some markers in man files or their html versions that can be used by emacs to capture some of the commands options?\", \"author_flair_css_class\": null, \"name\": \"t1_es4lmf5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou might take a look at the \\u003Ccode\\u003Efish\\u003C/code\\u003E shell project. It has scripts that generate completions from man pages. I\\u0026#39;d guess they\\u0026#39;ve solved some of the problems already.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/es4lmf5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"report_reasons\": null, \"link_author\": \"vfclists\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"created\": 1561616541.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 9}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4ksvj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"lispers-anonymous\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561587173.0, \"send_replies\": true, \"parent_id\": \"t1_es30su3\", \"score\": 1, \"author_fullname\": \"t2_2e4sc8tt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Would you be able to link to your config with the mode line code? I like the looks of yours\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es4ksvj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWould you be able to link to your config with the mode line code? I like the looks of yours\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es4ksvj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561615973.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c550ht\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4kkb7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xu_chunyang\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561587005.0, \"send_replies\": true, \"parent_id\": \"t3_c550ht\", \"score\": 0, \"author_fullname\": \"t2_rxvm883\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Display how many unread mails on the mode line.\\n\\n- It uses IMAP, you need to supply your own auth details (IMAP server, username and password)\\n- The entry is the global minor mode `chunyang-display-mail-mode`\\n- It refreshs 1 min after Emacs idles every time\\n- To refresh now, type `M-x chunyang-display-mail-mode-count`\\n\\n---\\n\\n (require 'imap)\\n\\n (defvar chunyang-display-mail-mode-count 0)\\n \\n (defun chunyang-display-mail-mode-count ()\\n (interactive)\\n (setq chunyang-display-mail-mode-count\\n (let* ((server \\\"imap.fastmail.com\\\")\\n (user user-mail-address)\\n (pass (when-let ((auth (car (auth-source-search\\n :host server\\n :user user\\n :max 1)))\\n (pass (plist-get auth :secret)))\\n (funcall pass))))\\n (with-current-buffer (imap-open server nil 'tls)\\n (imap-authenticate user pass)\\n (imap-mailbox-select \\\"INBOX\\\" 'read-only)\\n (prog1 (length (imap-search \\\"UNSEEN\\\"))\\n (imap-close))))))\\n \\n (defvar chunyang-display-mail-mode-timer nil)\\n \\n (define-minor-mode chunyang-display-mail-mode\\n \\\"Display how many unread mails in the mode line.\\\"\\n :global t\\n :lighter (:eval\\n (when (\\u003E chunyang-display-mail-mode-count 0)\\n (format \\\" %d \\ud83d\\udce7\\\" chunyang-display-mail-mode-count)))\\n (cond (chunyang-display-mail-mode\\n (chunyang-display-mail-mode-count)\\n (setq chunyang-display-mail-mode-timer\\n (run-with-idle-timer 60 t #'chunyang-display-mail-mode-count)))\\n (t\\n (when (timerp chunyang-display-mail-mode-timer)\\n (cancel-timer chunyang-display-mail-mode-timer)\\n (setq chunyang-display-mail-mode-timer nil)))))\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_es4kkb7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDisplay how many unread mails on the mode line.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIt uses IMAP, you need to supply your own auth details (IMAP server, username and password)\\u003C/li\\u003E\\n\\u003Cli\\u003EThe entry is the global minor mode \\u003Ccode\\u003Echunyang-display-mail-mode\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EIt refreshs 1 min after Emacs idles every time\\u003C/li\\u003E\\n\\u003Cli\\u003ETo refresh now, type \\u003Ccode\\u003EM-x chunyang-display-mail-mode-count\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;imap)\\n\\n(defvar chunyang-display-mail-mode-count 0)\\n\\n(defun chunyang-display-mail-mode-count ()\\n (interactive)\\n (setq chunyang-display-mail-mode-count\\n (let* ((server \\u0026quot;imap.fastmail.com\\u0026quot;)\\n (user user-mail-address)\\n (pass (when-let ((auth (car (auth-source-search\\n :host server\\n :user user\\n :max 1)))\\n (pass (plist-get auth :secret)))\\n (funcall pass))))\\n (with-current-buffer (imap-open server nil \\u0026#39;tls)\\n (imap-authenticate user pass)\\n (imap-mailbox-select \\u0026quot;INBOX\\u0026quot; \\u0026#39;read-only)\\n (prog1 (length (imap-search \\u0026quot;UNSEEN\\u0026quot;))\\n (imap-close))))))\\n\\n(defvar chunyang-display-mail-mode-timer nil)\\n\\n(define-minor-mode chunyang-display-mail-mode\\n \\u0026quot;Display how many unread mails in the mode line.\\u0026quot;\\n :global t\\n :lighter (:eval\\n (when (\\u0026gt; chunyang-display-mail-mode-count 0)\\n (format \\u0026quot; %d \\ud83d\\udce7\\u0026quot; chunyang-display-mail-mode-count)))\\n (cond (chunyang-display-mail-mode\\n (chunyang-display-mail-mode-count)\\n (setq chunyang-display-mail-mode-timer\\n (run-with-idle-timer 60 t #\\u0026#39;chunyang-display-mail-mode-count)))\\n (t\\n (when (timerp chunyang-display-mail-mode-timer)\\n (cancel-timer chunyang-display-mail-mode-timer)\\n (setq chunyang-display-mail-mode-timer nil)))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c550ht/weekly_tipstricketc_thread/es4kkb7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c550ht/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c550ht/weekly_tipstricketc_thread/\", \"created\": 1561615805.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mel4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4ibch\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheGramm\", \"num_comments\": 34, \"can_mod_post\": false, \"created_utc\": 1561585495.0, \"send_replies\": true, \"parent_id\": \"t1_es3x7zi\", \"score\": 1, \"author_fullname\": \"t2_k03ap\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Could you share?\", \"link_title\": \"What mode line do you use and why?\", \"author_flair_css_class\": null, \"name\": \"t1_es4ibch\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECould you share?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/es4ibch/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"created\": 1561614295.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5l8fv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4hy6g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Buttmoist\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1561585252.0, \"send_replies\": true, \"parent_id\": \"t1_es44sn7\", \"score\": 2, \"author_fullname\": \"t2_ywse5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Ever .\", \"link_title\": \"emacs 27.0.50.1 a very good reason to install it and dump any 26\", \"author_flair_css_class\": null, \"name\": \"t1_es4hy6g\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EEver .\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5l8fv/emacs_270501_a_very_good_reason_to_install_it_and/es4hy6g/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5l8fv/emacs_270501_a_very_good_reason_to_install_it_and/\", \"report_reasons\": null, \"link_author\": \"oldfxiny\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5l8fv/emacs_270501_a_very_good_reason_to_install_it_and/\", \"created\": 1561614052.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5mtx1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4gv12\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bodertz\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1561584537.0, \"send_replies\": true, \"parent_id\": \"t1_es3pqax\", \"score\": 1, \"author_fullname\": \"t2_9c5ij\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003EDoes the OP also want a single click that moves point to behave like that? IOW, if you click on the right half of a character, point should move to the *next* character?\\n\\n |A|B|C|D|E|\\n\\nOP is thinking of the cursor as being between characters. If you click on the right half of C, it is closest to the right side, so the cursor would be between C and D:\\n\\n |A|B|C|D|E|\\n ^\\n\\nOP only mentioned selection, so it's possible OP only wants that behaviour for selection, not moving point. It's safe to assume others would want point to move to the next character when you click, though.\", \"link_title\": \"How can I get modern mouse slection in emacs?\", \"author_flair_css_class\": null, \"name\": \"t1_es4gv12\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDoes the OP also want a single click that moves point to behave like that? IOW, if you click on the right half of a character, point should move to the \\u003Cem\\u003Enext\\u003C/em\\u003E character?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E|A|B|C|D|E|\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EOP is thinking of the cursor as being between characters. If you click on the right half of C, it is closest to the right side, so the cursor would be between C and D:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E|A|B|C|D|E|\\n ^\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EOP only mentioned selection, so it\\u0026#39;s possible OP only wants that behaviour for selection, not moving point. It\\u0026#39;s safe to assume others would want point to move to the next character when you click, though.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/es4gv12/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/\", \"report_reasons\": null, \"link_author\": \"Keeto_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/\", \"created\": 1561613337.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1561584670.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c562rm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4gjd9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hesiii\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1561584328.0, \"send_replies\": true, \"parent_id\": \"t1_es2lq61\", \"score\": 1, \"author_fullname\": \"t2_wtfwf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I don't see how what you're saying is consistent with the fact that many people (including perhaps the OP) generate good looking pdf's from Org without knowing anything about LaTeX. If a user is happy with that, there's good reasons to stick with that and stay as far away from LaTeX as possible.\\n\\nI think the \\\"automatic markup\\\" you're talking about is different from what i'm talking about. Org export automatically adds the LaTeX markup as it exports, so you don't have to look at that markup text in the document. Sure, that LaTeX heading markup can be generated by a few keystrokes in an Emacs LaTex document, but as far as someone who just wants to write a text document is concerned, the LaTeX pollutes the buffer. Not so with Org markup. (Maybe I'm just unaware: Do the LaTeX modes automatically hide the LaTeX heading markup and also integrate outline mode functionality based on headings? I assume this is possible, but I didn't think it was something that was part of LaTeX editing modes.)\", \"link_title\": \"Pure LaTeX or Org Mode export?\", \"author_flair_css_class\": null, \"name\": \"t1_es4gjd9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t see how what you\\u0026#39;re saying is consistent with the fact that many people (including perhaps the OP) generate good looking pdf\\u0026#39;s from Org without knowing anything about LaTeX. If a user is happy with that, there\\u0026#39;s good reasons to stick with that and stay as far away from LaTeX as possible.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think the \\u0026quot;automatic markup\\u0026quot; you\\u0026#39;re talking about is different from what i\\u0026#39;m talking about. Org export automatically adds the LaTeX markup as it exports, so you don\\u0026#39;t have to look at that markup text in the document. Sure, that LaTeX heading markup can be generated by a few keystrokes in an Emacs LaTex document, but as far as someone who just wants to write a text document is concerned, the LaTeX pollutes the buffer. Not so with Org markup. (Maybe I\\u0026#39;m just unaware: Do the LaTeX modes automatically hide the LaTeX heading markup and also integrate outline mode functionality based on headings? I assume this is possible, but I didn\\u0026#39;t think it was something that was part of LaTeX editing modes.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c562rm/pure_latex_or_org_mode_export/es4gjd9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c562rm/pure_latex_or_org_mode_export/\", \"report_reasons\": null, \"link_author\": \"yep808\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c562rm/pure_latex_or_org_mode_export/\", \"created\": 1561613128.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5lodr\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4fxz5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cupof__coffee\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1561583945.0, \"send_replies\": true, \"parent_id\": \"t1_es3507a\", \"score\": 1, \"author_fullname\": \"t2_2n0m6qvl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Can dap read the `${workspaceFolder}` flags and similar?\", \"link_title\": \"emacs dap-mode\", \"author_flair_css_class\": null, \"name\": \"t1_es4fxz5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan dap read the \\u003Ccode\\u003E${workspaceFolder}\\u003C/code\\u003E flags and similar?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/c5lodr/emacs_dapmode/es4fxz5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/c5lodr/emacs_dapmode/\", \"report_reasons\": null, \"link_author\": \"cupof__coffee\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/c5lodr/emacs_dapmode/\", \"created\": 1561612745.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_es4fxz5\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["262492"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:43 GMT"], "x-ratelimit-remaining": ["597.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["3"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643983.320767,VS0,VE440"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["17"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-27T13:59:43"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_es69ece"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:44 GMT"], "x-ratelimit-remaining": ["596.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["4"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643984.902573,VS0,VE138"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["17"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_es69ece"}, "recorded_at": "2019-06-27T13:59:44"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As a beginner to emacs, one thing I struggle is setting up my editing experience of C++ code to satisfactory levels. Out of the box I've found cc-mode to be confusing:\\n\\n- namespace indent (fixed by setting I've found on stack overflow)\\n\\n- I use only spaces, no tabs; backspace still deletes space one by one; inside of the comment, tab does nothing\\n- after opening curly brace, the cursor behaves weird; I can't quite explain it, it just feels wrong\\n\\nNow, to give you perspective, I'd like my emacs C++ editing experience to be on par with vscode. The latter behaves \\\"just right\\\" when editing code out of the box, and I personally quite like it.\\n\\nI apologize for fuzzy and unclear question, but editing experience is difficult to put down point by point. Any tips on improving C++ editing behavior in emacs from people who code C++ on daily basis are greatly appreciated.\", \"author_fullname\": \"t2_69585\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"C++ developers - how to configure C++ editing\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_c65rva\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561672321.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a beginner to emacs, one thing I struggle is setting up my editing experience of C++ code to satisfactory levels. Out of the box I\\u0026#39;ve found cc-mode to be confusing:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Enamespace indent (fixed by setting I\\u0026#39;ve found on stack overflow)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI use only spaces, no tabs; backspace still deletes space one by one; inside of the comment, tab does nothing\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Eafter opening curly brace, the cursor behaves weird; I can\\u0026#39;t quite explain it, it just feels wrong\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ENow, to give you perspective, I\\u0026#39;d like my emacs C++ editing experience to be on par with vscode. The latter behaves \\u0026quot;just right\\u0026quot; when editing code out of the box, and I personally quite like it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI apologize for fuzzy and unclear question, but editing experience is difficult to put down point by point. Any tips on improving C++ editing behavior in emacs from people who code C++ on daily basis are greatly appreciated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c65rva\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SolidMarsupial\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c65rva/c_developers_how_to_configure_c_editing/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c65rva/c_developers_how_to_configure_c_editing/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561643521.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026#x200B;\\n\\nAnyone knows how to disable semantic's annoying parsing messages?\\n\\nI tried setting the following per the documentation but it doesn't work:\\n\\n\\u0026#x200B;\\n\\n(setq semantic-idle-scheduler-no-working-message t)\\n\\n\\u0026#x200B;\\n\\nThanks,\\n\\n\\u0026#x200B;\\n\\nEtay\", \"author_fullname\": \"t2_11a8pod\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Disable semantic's parsing messages\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_c65rup\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561672319.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone knows how to disable semantic\\u0026#39;s annoying parsing messages?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried setting the following per the documentation but it doesn\\u0026#39;t work:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(setq semantic-idle-scheduler-no-working-message t)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEtay\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c65rup\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"emeiri1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c65rup/disable_semantics_parsing_messages/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c65rup/disable_semantics_parsing_messages/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561643519.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I was wondering if there is a package for Emacs that implement in place annotations. I would like to be able to add annotations to projects that I investigate, for code reviews and such, and I would like to be able to annotate lines without modifying the original file.\\n\\nI have found references to a package called IPA (in place annotations) dating back to 2007, but I was wondering if there are other implementations out there nowadays. What do people use ?\", \"author_fullname\": \"t2_5n9uk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In place annotations\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c6430s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561635889.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561661654.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering if there is a package for Emacs that implement in place annotations. I would like to be able to add annotations to projects that I investigate, for code reviews and such, and I would like to be able to annotate lines without modifying the original file.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have found references to a package called IPA (in place annotations) dating back to 2007, but I was wondering if there are other implementations out there nowadays. What do people use ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c6430s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gausby\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c6430s/in_place_annotations/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c6430s/in_place_annotations/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561632854.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi all,\\n\\nI would like to create a well working company backends list with these languages and with dabbrev.\\n\\nThe dabbrev results need to be in all list with the other results.\\n\\nHere is my trying:\\n\\n`(use-package company`\\n\\n`:init`\\n\\n`:config (progn`\\n\\n`(add-to-list 'company-backends '(company-capf company-dabbrev))`\\n\\n`(add-to-list 'company-backends '(company-lsp company-dabbrev))`\\n\\n`(add-to-list 'company-backends '(company-css company-dabbrev))`\\n\\n`(add-to-list 'company-backends '(company-elisp company-dabbrev))`\\n\\n`(add-to-list 'company-backends '(company-nxml company-dabbrev))`\\n\\n`(add-to-list 'company-backends '(company-files company-dabbrev))`\\n\\n`(setq company-dabbrev-downcase nil)`\\n\\n`(global-company-mode)))`\\n\\n\\u0026#x200B;\\n\\nthanks\\n\\nLajos\", \"author_fullname\": \"t2_gvnql7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"a correct company backends list\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c63mzr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561642109.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561658297.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to create a well working company backends list with these languages and with dabbrev.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe dabbrev results need to be in all list with the other results.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is my trying:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(use-package company\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:init\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:config (progn\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(add-to-list \\u0026#39;company-backends \\u0026#39;(company-capf company-dabbrev))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(add-to-list \\u0026#39;company-backends \\u0026#39;(company-lsp company-dabbrev))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(add-to-list \\u0026#39;company-backends \\u0026#39;(company-css company-dabbrev))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(add-to-list \\u0026#39;company-backends \\u0026#39;(company-elisp company-dabbrev))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(add-to-list \\u0026#39;company-backends \\u0026#39;(company-nxml company-dabbrev))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(add-to-list \\u0026#39;company-backends \\u0026#39;(company-files company-dabbrev))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(setq company-dabbrev-downcase nil)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(global-company-mode)))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethanks\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELajos\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c63mzr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zsome\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c63mzr/a_correct_company_backends_list/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c63mzr/a_correct_company_backends_list/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561629497.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've tried messing with:\\n\\n* ivy-current-match\\n* ivy-minibuffer-match-face-1\\n* ivy-minibuffer-match-face-2\\n* ivy-minibuffer-match-face-3\\n* ivy-minibuffer-match-face-4\\n\\nbut none seems to have any impact, as you can see [here](https://imgur.com/a/aiUMGNa). If I scroll down the list, there's no way to determine what's selected other than by the number, which isn't too practical.\", \"author_fullname\": \"t2_i3qxzld\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ivy - What face controls the selected item in counsel-M-x buffer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c62843\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561647057.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve tried messing with:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Eivy-current-match\\u003C/li\\u003E\\n\\u003Cli\\u003Eivy-minibuffer-match-face-1\\u003C/li\\u003E\\n\\u003Cli\\u003Eivy-minibuffer-match-face-2\\u003C/li\\u003E\\n\\u003Cli\\u003Eivy-minibuffer-match-face-3\\u003C/li\\u003E\\n\\u003Cli\\u003Eivy-minibuffer-match-face-4\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003Ebut none seems to have any impact, as you can see \\u003Ca href=\\\"https://imgur.com/a/aiUMGNa\\\"\\u003Ehere\\u003C/a\\u003E. If I scroll down the list, there\\u0026#39;s no way to determine what\\u0026#39;s selected other than by the number, which isn\\u0026#39;t too practical.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c62843\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"reloadreloadreload\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c62843/ivy_what_face_controls_the_selected_item_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c62843/ivy_what_face_controls_the_selected_item_in/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561618257.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I saw this [post](https://www.reddit.com/r/emacs/comments/6x7ph2/is_company_different_from_helm_and_ivy/) during my Emacs spring-cleaning, and I thought the answers were brilliant and succinct, but falsely dichotomous. My point is best illustrated with my setup.\\n\\nFor context, I love company, but I hate tooltips and I do not understand the point of auto-suggestions without searching in an \\\"\\u0026\\u0026-fashion\\\". I don't remember bits of variable names in sequence. I remember a word in the middle, two letters at the end, and the fact that the beginning always reminded me I was hungry. And that's how I want to be able to type.\\n\\nHelm provides me with this, but is not a code completion framework. Even the author of `helm-company` [says](https://github.com/Sodel-the-Vociferous/helm-company/issues/14) it's not a proper Company fronted and would need significant refactoring to work like that.\\n\\nI respectfully disagree\\n```elisp\\n;; suggest things when company has nothing to say\\n(setq-default tab-always-indent 'complete)\\n\\n;; turn off annoying tooltips\\n(use-package company\\n :config (setq company-frontends nil)\\n :hook (after-init . global-company-mode))\\n\\n;; enjoy\\n(use-package helm-company\\n :general (general-def\\n :keymaps '(company-mode-map company-active-map)\\n \\\"TAB\\\" #'helm-company\\n \\\"\\u003Ctab\\u003E\\\" #'helm-company))\\n\\n``` \\nThe first part is surprisingly useful, as `completion-at-point-functions` sometimes return faster than the `company-capf` module, and as it's a 1-1 relationship you might as well pick the faster one.\", \"author_fullname\": \"t2_1zgvtvsa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Helm instead of (with) Company\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c61oio\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561635207.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561643127.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI saw this \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/6x7ph2/is_company_different_from_helm_and_ivy/\\\"\\u003Epost\\u003C/a\\u003E during my Emacs spring-cleaning, and I thought the answers were brilliant and succinct, but falsely dichotomous. My point is best illustrated with my setup.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor context, I love company, but I hate tooltips and I do not understand the point of auto-suggestions without searching in an \\u0026quot;\\u0026amp;\\u0026amp;-fashion\\u0026quot;. I don\\u0026#39;t remember bits of variable names in sequence. I remember a word in the middle, two letters at the end, and the fact that the beginning always reminded me I was hungry. And that\\u0026#39;s how I want to be able to type.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHelm provides me with this, but is not a code completion framework. Even the author of \\u003Ccode\\u003Ehelm-company\\u003C/code\\u003E \\u003Ca href=\\\"https://github.com/Sodel-the-Vociferous/helm-company/issues/14\\\"\\u003Esays\\u003C/a\\u003E it\\u0026#39;s not a proper Company fronted and would need significant refactoring to work like that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI respectfully disagree\\n```elisp\\n;; suggest things when company has nothing to say\\n(setq-default tab-always-indent \\u0026#39;complete)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E;; turn off annoying tooltips\\n(use-package company\\n :config (setq company-frontends nil)\\n :hook (after-init . global-company-mode))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E;; enjoy\\n(use-package helm-company\\n :general (general-def\\n :keymaps \\u0026#39;(company-mode-map company-active-map)\\n \\u0026quot;TAB\\u0026quot; #\\u0026#39;helm-company\\n \\u0026quot;\\u0026lt;tab\\u0026gt;\\u0026quot; #\\u0026#39;helm-company))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E``\\u003Ccode\\u003E\\nThe first part is surprisingly useful, as\\u003C/code\\u003Ecompletion-at-point-functions\\u003Ccode\\u003Esometimes return faster than the\\u003C/code\\u003Ecompany-capf` module, and as it\\u0026#39;s a 1-1 relationship you might as well pick the faster one.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c61oio\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jjzmajic\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c61oio/helm_instead_of_with_company/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561614327.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi guys,\\n\\nDoes anybody know what are their differences? Google gives me nothing about `eshell-load-hook`, except this [page][1] which just list its name there.\\n\\n\\nCheers~\\n\\n\\n[1]: http://ergoemacs.org/emacs/emacs_hooks_list.html\", \"author_fullname\": \"t2_70ty5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"eshell-mode-hook vs eshell-load-hook\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c616e3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561639729.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anybody know what are their differences? Google gives me nothing about \\u003Ccode\\u003Eeshell-load-hook\\u003C/code\\u003E, except this \\u003Ca href=\\\"http://ergoemacs.org/emacs/emacs_hooks_list.html\\\"\\u003Epage\\u003C/a\\u003E which just list its name there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECheers~\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c616e3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"davidshen84\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c616e3/eshellmodehook_vs_eshellloadhook/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c616e3/eshellmodehook_vs_eshellloadhook/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561610929.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_258714py\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"For Spacemacs, can someone tell me how applicable this playlist still is? Is that pretty much all still current?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5z8bt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2Fvideoseries%3Flist%3DPLrJ2YN5y27KLhd3yNs2dR8_inqtEiEweE\\u0026url=https%3A%2F%2Fwww.youtube.com%2Fplaylist%3Flist%3DPLrJ2YN5y27KLhd3yNs2dR8_inqtEiEweE\\u0026image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FZFV5EqpZ6_s%2Fhqdefault.jpg%3Fsqp%3D-oaymwEWCKgBEF5IWvKriqkDCQgBFQAAiEIYAQ%3D%3D%26rs%3DAOn4CLAWtJdNgnQm0KK-j1IMshYRdq_2gA\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=youtube\\\" width=\\\"600\\\" height=\\\"450\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 450}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"http://youtube.com\", \"version\": \"1.0\", \"title\": \"Spacemacs ABC - YouTube\", \"thumbnail_width\": 168, \"height\": 450, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2Fvideoseries%3Flist%3DPLrJ2YN5y27KLhd3yNs2dR8_inqtEiEweE\\u0026url=https%3A%2F%2Fwww.youtube.com%2Fplaylist%3Flist%3DPLrJ2YN5y27KLhd3yNs2dR8_inqtEiEweE\\u0026image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FZFV5EqpZ6_s%2Fhqdefault.jpg%3Fsqp%3D-oaymwEWCKgBEF5IWvKriqkDCQgBFQAAiEIYAQ%3D%3D%26rs%3DAOn4CLAWtJdNgnQm0KK-j1IMshYRdq_2gA\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=youtube\\\" width=\\\"600\\\" height=\\\"450\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ZFV5EqpZ6_s/hqdefault.jpg?sqp=-oaymwEWCKgBEF5IWvKriqkDCQgBFQAAiEIYAQ==\\u0026rs=AOn4CLAWtJdNgnQm0KK-j1IMshYRdq_2gA\", \"type\": \"video\", \"thumbnail_height\": 94}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2Fvideoseries%3Flist%3DPLrJ2YN5y27KLhd3yNs2dR8_inqtEiEweE\\u0026url=https%3A%2F%2Fwww.youtube.com%2Fplaylist%3Flist%3DPLrJ2YN5y27KLhd3yNs2dR8_inqtEiEweE\\u0026image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FZFV5EqpZ6_s%2Fhqdefault.jpg%3Fsqp%3D-oaymwEWCKgBEF5IWvKriqkDCQgBFQAAiEIYAQ%3D%3D%26rs%3DAOn4CLAWtJdNgnQm0KK-j1IMshYRdq_2gA\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=youtube\\\" width=\\\"600\\\" height=\\\"450\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/c5z8bt\", \"height\": 450}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561628053.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5z8bt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"professor-cthulhu\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5z8bt/for_spacemacs_can_someone_tell_me_how_applicable/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/playlist?list=PLrJ2YN5y27KLhd3yNs2dR8_inqtEiEweE\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561599253.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"http://youtube.com\", \"version\": \"1.0\", \"title\": \"Spacemacs ABC - YouTube\", \"thumbnail_width\": 168, \"height\": 450, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2Fvideoseries%3Flist%3DPLrJ2YN5y27KLhd3yNs2dR8_inqtEiEweE\\u0026url=https%3A%2F%2Fwww.youtube.com%2Fplaylist%3Flist%3DPLrJ2YN5y27KLhd3yNs2dR8_inqtEiEweE\\u0026image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FZFV5EqpZ6_s%2Fhqdefault.jpg%3Fsqp%3D-oaymwEWCKgBEF5IWvKriqkDCQgBFQAAiEIYAQ%3D%3D%26rs%3DAOn4CLAWtJdNgnQm0KK-j1IMshYRdq_2gA\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=youtube\\\" width=\\\"600\\\" height=\\\"450\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ZFV5EqpZ6_s/hqdefault.jpg?sqp=-oaymwEWCKgBEF5IWvKriqkDCQgBFQAAiEIYAQ==\\u0026rs=AOn4CLAWtJdNgnQm0KK-j1IMshYRdq_2gA\", \"type\": \"video\", \"thumbnail_height\": 94}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_xmxko\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a Helm equivalent to doom-todo-ivy?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5yixc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561623900.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5yixc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Xorous\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5yixc/is_there_a_helm_equivalent_to_doomtodoivy/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5yixc/is_there_a_helm_equivalent_to_doomtodoivy/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561595100.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Say for instance I want to make a note of the `a` , `--backup` and the `--preserve` options of the `cp` command.\\n\\nDo their help files contain some markers that can be used to make snippets of those options alone, rather than cutting and pasting?\\n\\nEven if the necessary plugins are not available in emacs do they contain such markers?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Are there some markers in man files or their html versions that can be used by emacs to capture some of the commands options?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5w3jb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561612688.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESay for instance I want to make a note of the \\u003Ccode\\u003Ea\\u003C/code\\u003E , \\u003Ccode\\u003E--backup\\u003C/code\\u003E and the \\u003Ccode\\u003E--preserve\\u003C/code\\u003E options of the \\u003Ccode\\u003Ecp\\u003C/code\\u003E command.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo their help files contain some markers that can be used to make snippets of those options alone, rather than cutting and pasting?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEven if the necessary plugins are not available in emacs do they contain such markers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5w3jb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5w3jb/are_there_some_markers_in_man_files_or_their_html/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561583888.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello, hope I can find some help in here regarding an issue I'm having with Emacs and my environment. I'm a OS X user and when launching Emacs using [alfred](https://www.alfredapp.com/) the environment seems is not correctly inherited, for example Emacs can't find the `node` binary (I have it set up via `nvm`). It is only when I run Emacs from the terminal `open -a Emacs` then all environment is read correctly and can indeed find `node` without issues.\\n\\nI have been experiencing this issue for a while, but never really bothered me too much to fix it, do you guys know what could be happening here? I already use [`exec-path-from-shell`](https://github.com/purcell/exec-path-from-shell) which seems to address this, but I don't see any effect at all, this is how I'm using it:\\n\\n```\\n(use-package exec-path-from-shell\\n :if (memq window-system '(mac ns x))\\n :config\\n (dolist (envvar '(\\\"GOPATH\\\" \\\"GOROOT\\\"))\\n (add-to-list 'exec-path-from-shell-variables envvar))\\n (exec-path-from-shell-initialize))\\n```\\n\\nbesides some go stuff nothing fancy, should I report an issue to `exec-path-from-shell`'s github? am I misunderstanding its purpose?\\n\\nThanks for any ideas you might have!\\n\\n### Update\\n\\nThanks everyone, it turns out the PATH is being read just fine, the issue is that Emacs doesn't find `node` because NVM defers loading until I actually try to use `node` but only from the terminal as is a zsh plugin that does this. If I remove the plugin and load nvm always then the terminal is laggy, so I found [nvm.el](https://github.com/rejeep/nvm.el) it's usable to load a node version within Emacs, I could setup the node version on startup, but for that matter I would rather hardcode the path to `node` as is basically the same thing, or even simpler, just be sure to always start Emacs from the terminal and stop the futile efforts.\", \"author_fullname\": \"t2_17rsc1gc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help with Emacs + Mac OS X + shell environment?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5vkvk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561607842.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561610591.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, hope I can find some help in here regarding an issue I\\u0026#39;m having with Emacs and my environment. I\\u0026#39;m a OS X user and when launching Emacs using \\u003Ca href=\\\"https://www.alfredapp.com/\\\"\\u003Ealfred\\u003C/a\\u003E the environment seems is not correctly inherited, for example Emacs can\\u0026#39;t find the \\u003Ccode\\u003Enode\\u003C/code\\u003E binary (I have it set up via \\u003Ccode\\u003Envm\\u003C/code\\u003E). It is only when I run Emacs from the terminal \\u003Ccode\\u003Eopen -a Emacs\\u003C/code\\u003E then all environment is read correctly and can indeed find \\u003Ccode\\u003Enode\\u003C/code\\u003E without issues.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been experiencing this issue for a while, but never really bothered me too much to fix it, do you guys know what could be happening here? I already use \\u003Ca href=\\\"https://github.com/purcell/exec-path-from-shell\\\"\\u003E\\u003Ccode\\u003Eexec-path-from-shell\\u003C/code\\u003E\\u003C/a\\u003E which seems to address this, but I don\\u0026#39;t see any effect at all, this is how I\\u0026#39;m using it:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(use-package exec-path-from-shell\\n :if (memq window-system \\u0026#39;(mac ns x))\\n :config\\n (dolist (envvar \\u0026#39;(\\u0026quot;GOPATH\\u0026quot; \\u0026quot;GOROOT\\u0026quot;))\\n (add-to-list \\u0026#39;exec-path-from-shell-variables envvar))\\n (exec-path-from-shell-initialize))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebesides some go stuff nothing fancy, should I report an issue to \\u003Ccode\\u003Eexec-path-from-shell\\u003C/code\\u003E\\u0026#39;s github? am I misunderstanding its purpose?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas you might have!\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EUpdate\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EThanks everyone, it turns out the PATH is being read just fine, the issue is that Emacs doesn\\u0026#39;t find \\u003Ccode\\u003Enode\\u003C/code\\u003E because NVM defers loading until I actually try to use \\u003Ccode\\u003Enode\\u003C/code\\u003E but only from the terminal as is a zsh plugin that does this. If I remove the plugin and load nvm always then the terminal is laggy, so I found \\u003Ca href=\\\"https://github.com/rejeep/nvm.el\\\"\\u003Envm.el\\u003C/a\\u003E it\\u0026#39;s usable to load a node version within Emacs, I could setup the node version on startup, but for that matter I would rather hardcode the path to \\u003Ccode\\u003Enode\\u003C/code\\u003E as is basically the same thing, or even simpler, just be sure to always start Emacs from the terminal and stop the futile efforts.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5vkvk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zzantares\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5vkvk/help_with_emacs_mac_os_x_shell_environment/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561581791.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have just been shown:\\nhttps://github.com/itchyny/calendar.vim\\n\\nI have tried all of the methods for emacs to no real success and I rely on gcalcli. I wish we had something like this.\\n\\nNow, how do I get out of vim?? (TeeHee).\", \"author_fullname\": \"t2_6zxya\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Google Calendar intergration (Yes, that old chestnut)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5vkle\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"purple\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561610555.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have just been shown:\\n\\u003Ca href=\\\"https://github.com/itchyny/calendar.vim\\\"\\u003Ehttps://github.com/itchyny/calendar.vim\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have tried all of the methods for emacs to no real success and I rely on gcalcli. I wish we had something like this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, how do I get out of vim?? (TeeHee).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"GNU Emacs\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5vkle\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"xircon\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/c5vkle/google_calendar_intergration_yes_that_old_chestnut/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5vkle/google_calendar_intergration_yes_that_old_chestnut/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561581755.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When I try to an org babel page emacs recalculates them although the already calculated results are what I want.\\n\\nIs there some setting to disable that behaviour?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can you expect an org-babel with results without recalculation?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5ulgi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561606624.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I try to an org babel page emacs recalculates them although the already calculated results are what I want.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there some setting to disable that behaviour?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5ulgi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5ulgi/how_can_you_expect_an_orgbabel_with_results/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5ulgi/how_can_you_expect_an_orgbabel_with_results/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561577824.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I tried on Emacs for VHDL few days back, I love the way it works interactively. I use Quartus Prime (18.1 Lite) as I have Altera boards.\\n\\nOne issue which I am facing is the integration between Quartus and Emacs (setting custom text editor) works, but everytime I create a new file it is saved as Vhdlx.vhd, then I have to rename it again to change the name to that of top level entity. Is there any way to fix this?\", \"author_fullname\": \"t2_2prm12zz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs-VHDL mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5q4eb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561586176.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI tried on Emacs for VHDL few days back, I love the way it works interactively. I use Quartus Prime (18.1 Lite) as I have Altera boards.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne issue which I am facing is the integration between Quartus and Emacs (setting custom text editor) works, but everytime I create a new file it is saved as Vhdlx.vhd, then I have to rename it again to change the name to that of top level entity. Is there any way to fix this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5q4eb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tronix_guy_404\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5q4eb/emacsvhdl_mode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5q4eb/emacsvhdl_mode/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561557376.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there something like that available?\\n\\n\\u0026#x200B;\\n\\nFor those who don't know IntelliJ or PyCharm: You type an unknown identifier (say a class name) and IntelliJ pops up a dropdown with possible modules for this identifier. You select the source you want the identifier from, and it'll add an \\\\`import\\\\` statement at the top of the file.\", \"author_fullname\": \"t2_6slii\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"IntelliJ-like import completion in emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5ojll\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561576395.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there something like that available?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor those who don\\u0026#39;t know IntelliJ or PyCharm: You type an unknown identifier (say a class name) and IntelliJ pops up a dropdown with possible modules for this identifier. You select the source you want the identifier from, and it\\u0026#39;ll add an `import` statement at the top of the file.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5ojll\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pimiddy\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5ojll/intellijlike_import_completion_in_emacs/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561547595.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"By modern mouse selection I mean the selection beging and ends beom the border between character the cursor is closest to; rather than the default: from the character underneath the cursor, regardless if the cursor is perhapse a couple pixels to the left of a character border l.\\n\\nI am also interested in right-click to copy and paste, as well as right click to create delete and rename a dir or file in the neotree buffer.\\n\\nI usually use the keyboard exclusively, but it would be nice to have a comfortable mouse experience when lounginh back and sipping a covfefe.\", \"author_fullname\": \"t2_tljlq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I get modern mouse slection in emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5mtx1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561562852.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBy modern mouse selection I mean the selection beging and ends beom the border between character the cursor is closest to; rather than the default: from the character underneath the cursor, regardless if the cursor is perhapse a couple pixels to the left of a character border l.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am also interested in right-click to copy and paste, as well as right click to create delete and rename a dir or file in the neotree buffer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI usually use the keyboard exclusively, but it would be nice to have a comfortable mouse experience when lounginh back and sipping a covfefe.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5mtx1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Keeto_\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5mtx1/how_can_i_get_modern_mouse_slection_in_emacs/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561534052.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Recently I've been thinking about giving my Emacs mode-line a new look (not necessarily a productivity factor though) and I see some mode-line config packages out there (Spaceline, Doom-mode-line, Smart mode line etc.) and I wonder what you guys think of them?\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What mode line do you use and why?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5mel4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561559682.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERecently I\\u0026#39;ve been thinking about giving my Emacs mode-line a new look (not necessarily a productivity factor though) and I see some mode-line config packages out there (Spaceline, Doom-mode-line, Smart mode line etc.) and I wonder what you guys think of them?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Emacs enthusiast\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5mel4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 34, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5mel4/what_mode_line_do_you_use_and_why/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561530882.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Can anyone explain to me what are the benefits of building Emacs with dbus support? What can I do with it in Linux, in OSX?\", \"author_fullname\": \"t2_esdtt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"dbus\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5mahc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561558824.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan anyone explain to me what are the benefits of building Emacs with dbus support? What can I do with it in Linux, in OSX?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5mahc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"plotnick\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5mahc/dbus/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5mahc/dbus/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561530024.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So ! I'm trying to set up a `dynamic` babel node debugger for javascript using [dap](https://github.com/emacs-lsp/dap-mode/blob/master/README.org)\\n\\nHere is the template as it currently stands -\\n```elisp\\n (dap-register-debug-template\\n \\\"babel-node\\\"\\n (list :type \\\"node\\\"\\n\\t :cwd (format \\\"%s/node_modules/.bin/babel-node\\\" (projectroot))\\n\\t :request \\\"launch\\\"\\n\\t :program (format \\\"%s/${relativeFolder}\\\" (projectroot subdiretories currentfile))\\n\\t :name \\\"Node::BabelNode\\\")))\\n```\\nIf this could be as dynamic as possible that would be the nice outcome, because I'm using [lsp](https://github.com/emacs-lsp) for the `cwd` can I get the `lsp-workspace-root` for the current file and have that handle the whole find the node modules thing or should projectile be brought into this and just offload the file structure to that, almost the same thing for the `program` section, whats the best way to go about it?\\n\\nThank you!\", \"author_fullname\": \"t2_2n0m6qvl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"emacs dap-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5lodr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561555113.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo ! I\\u0026#39;m trying to set up a \\u003Ccode\\u003Edynamic\\u003C/code\\u003E babel node debugger for javascript using \\u003Ca href=\\\"https://github.com/emacs-lsp/dap-mode/blob/master/README.org\\\"\\u003Edap\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is the template as it currently stands -\\n\\u003Ccode\\u003Eelisp\\n (dap-register-debug-template\\n \\u0026quot;babel-node\\u0026quot;\\n (list :type \\u0026quot;node\\u0026quot;\\n :cwd (format \\u0026quot;%s/node_modules/.bin/babel-node\\u0026quot; (projectroot))\\n :request \\u0026quot;launch\\u0026quot;\\n :program (format \\u0026quot;%s/${relativeFolder}\\u0026quot; (projectroot subdiretories currentfile))\\n :name \\u0026quot;Node::BabelNode\\u0026quot;)))\\n\\u003C/code\\u003E\\nIf this could be as dynamic as possible that would be the nice outcome, because I\\u0026#39;m using \\u003Ca href=\\\"https://github.com/emacs-lsp\\\"\\u003Elsp\\u003C/a\\u003E for the \\u003Ccode\\u003Ecwd\\u003C/code\\u003E can I get the \\u003Ccode\\u003Elsp-workspace-root\\u003C/code\\u003E for the current file and have that handle the whole find the node modules thing or should projectile be brought into this and just offload the file structure to that, almost the same thing for the \\u003Ccode\\u003Eprogram\\u003C/code\\u003E section, whats the best way to go about it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5lodr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cupof__coffee\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5lodr/emacs_dapmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5lodr/emacs_dapmode/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561526313.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"The end of the damned pinentry dialog when encrypting org entries.\\n\\n\\u0026#x200B;\\n\\nI noticed this happening last 2019-06-09 when by mistake i had 27 installed when playing with.\\n\\nIs not a matter of org versions or of 26.2 version : 26.3 pre is the same but 27 is not !\\n\\nI have just compiled a fresh daily git and yes : modeline only again not just for gpg in general which i had managed to keep strictly in the modeline but for org-crypt .\\n\\nTo me 27 can have all the bugs of the universe i do not care : i simply cannot stand such ridicolous childish parassite stinking tormenting dumb and insulting dialogs popping up in emacs.\\n\\nEver .\\n\\n\\u0026#x200B;\\n\\nemacs\\\\_2019-06-26-Wed/src$ ./emacs-27.0.50.1\", \"author_fullname\": \"t2_1n7qucxi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"emacs 27.0.50.1 a very good reason to install it and dump any 26\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5l8fv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561552688.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe end of the damned pinentry dialog when encrypting org entries.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI noticed this happening last 2019-06-09 when by mistake i had 27 installed when playing with.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs not a matter of org versions or of 26.2 version : 26.3 pre is the same but 27 is not !\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have just compiled a fresh daily git and yes : modeline only again not just for gpg in general which i had managed to keep strictly in the modeline but for org-crypt .\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo me 27 can have all the bugs of the universe i do not care : i simply cannot stand such ridicolous childish parassite stinking tormenting dumb and insulting dialogs popping up in emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEver .\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eemacs_2019-06-26-Wed/src$ ./emacs-27.0.50.1\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5l8fv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"oldfxiny\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5l8fv/emacs_270501_a_very_good_reason_to_install_it_and/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5l8fv/emacs_270501_a_very_good_reason_to_install_it_and/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561523888.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello,\\n\\nI'm trying to make my first function to my Emacs and ofcourse am having trouble with the syntax of Elisp. I need to accomplish a few things within this function and hope someone has enough experience to offer some guidance.\\n\\n* Isolate function definition (regardless of language... If this is dictated by Major Mode that's perfectly fine. There might not even be another way)\\n* Find longest line within that function definition\\n\\nIf someone could help me with this I would be eternally grateful. Thank you in advance!\", \"author_fullname\": \"t2_yugxl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Elisp Help\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5kq5t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561550018.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to make my first function to my Emacs and ofcourse am having trouble with the syntax of Elisp. I need to accomplish a few things within this function and hope someone has enough experience to offer some guidance.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIsolate function definition (regardless of language... If this is dictated by Major Mode that\\u0026#39;s perfectly fine. There might not even be another way)\\u003C/li\\u003E\\n\\u003Cli\\u003EFind longest line within that function definition\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EIf someone could help me with this I would be eternally grateful. Thank you in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5kq5t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rkabrick\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5kq5t/elisp_help/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5kq5t/elisp_help/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561521218.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hey Folks, I recently upgraded to org-mode version 9.2.4 from 9.1.9 and when I insert a capture template at point in an org-file using `C-0 C-c c` or `C-0 M-x org-capture`, it appears that properties `:empty-lines`, `:empty-lines-after`, and `:empty-lines-before` are not respected. In all instances, regardless of these values, the heading is moved to the lowest possible line before the next heading. Has anyone else experienced this? I reviewed the [Org-mode 9.2 Changes](https://orgmode.org/Changes.html) and nothing obvious popped out. Is there a variable I'm missing? Is there anything in that changed in `org-capture` that would cause this? Can anyone replicated this?\\n\\nI tried the following capture-template on both versions:\\n\\n (setq org-capture-templates\\n '((\\\"t\\\" \\\"Todo\\\" entry (file+headline \\\"~/org/gtd.org\\\" \\\"Tasks\\\")\\n \\\"* TODO %?\\\\n %i\\\\n %a\\\" :empty-lines 2)\\n (\\\"j\\\" \\\"Journal\\\" entry (file+datetree \\\"~/org/journal.org\\\")\\n \\\"* %?\\\\nEntered on %U\\\\n %i\\\\n %a\\\")))\\n\\nAnd received the following:\\n\\n * Version 9.1.9\\n \\n ** First Heading\\n ** TODO New Capture at Point\\n \\n \\n ** Second Heading\\n \\n * Version 9.2.4\\n \\n ** First Heading\\n ** TODO New Capture at Point\\n ** Second Heading\", \"author_fullname\": \"t2_88hu5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org Version 9.2.4 Insert Template at Point Doesn't Respect :empty-lines Property\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5j3x7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561518117.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561541931.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey Folks, I recently upgraded to org-mode version 9.2.4 from 9.1.9 and when I insert a capture template at point in an org-file using \\u003Ccode\\u003EC-0 C-c c\\u003C/code\\u003E or \\u003Ccode\\u003EC-0 M-x org-capture\\u003C/code\\u003E, it appears that properties \\u003Ccode\\u003E:empty-lines\\u003C/code\\u003E, \\u003Ccode\\u003E:empty-lines-after\\u003C/code\\u003E, and \\u003Ccode\\u003E:empty-lines-before\\u003C/code\\u003E are not respected. In all instances, regardless of these values, the heading is moved to the lowest possible line before the next heading. Has anyone else experienced this? I reviewed the \\u003Ca href=\\\"https://orgmode.org/Changes.html\\\"\\u003EOrg-mode 9.2 Changes\\u003C/a\\u003E and nothing obvious popped out. Is there a variable I\\u0026#39;m missing? Is there anything in that changed in \\u003Ccode\\u003Eorg-capture\\u003C/code\\u003E that would cause this? Can anyone replicated this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried the following capture-template on both versions:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-capture-templates\\n \\u0026#39;((\\u0026quot;t\\u0026quot; \\u0026quot;Todo\\u0026quot; entry (file+headline \\u0026quot;~/org/gtd.org\\u0026quot; \\u0026quot;Tasks\\u0026quot;)\\n \\u0026quot;* TODO %?\\\\n %i\\\\n %a\\u0026quot; :empty-lines 2)\\n (\\u0026quot;j\\u0026quot; \\u0026quot;Journal\\u0026quot; entry (file+datetree \\u0026quot;~/org/journal.org\\u0026quot;)\\n \\u0026quot;* %?\\\\nEntered on %U\\\\n %i\\\\n %a\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnd received the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Version 9.1.9\\n\\n** First Heading\\n** TODO New Capture at Point\\n\\n\\n** Second Heading\\n\\n* Version 9.2.4\\n\\n** First Heading\\n** TODO New Capture at Point\\n** Second Heading\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5j3x7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sk8ingdom\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5j3x7/org_version_924_insert_template_at_point_doesnt/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5j3x7/org_version_924_insert_template_at_point_doesnt/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561513131.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm currently trying to get `preview-latex` working.\\n\\nWhen using `auctex` from MELPA with `TeX-PDF-mode t`, I get the the error `Error: /typecheck in --setfileposition--`.\\n\\nThis bug, which has already been reported to the [ghostscript bugtracker](https://bugs.ghostscript.com/show_bug.cgi?id=698680), should have been fixed in the `auctex` master branch according to the [auctex mailing list](https://lists.gnu.org/archive/html/auctex/2017-11/msg00002.html).\\n\\n\\u0026#x200B;\\n\\nHowever, switching from the MELPA release to the git version produces the same error.\\n\\nA workaround for the MELPA version is to set `TeX-PDF-mode nil` but this causes another error for the git version\\n\\n No such file or directory: main.prv/tmpjwqLHL/preview.dsc\\n\\nand doesn't work with Lualatex as OpenType fonts cannot be used in dvi mode.\\n\\n\\u0026#x200B;\\n\\nDoes somebody got a version of `preview-latex` working with `TeX-PDF-mode t` and preferably Lualatex?\", \"author_fullname\": \"t2_i69nf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"preview-latex with TeX-PDF-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5fi63\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561526257.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m currently trying to get \\u003Ccode\\u003Epreview-latex\\u003C/code\\u003E working.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen using \\u003Ccode\\u003Eauctex\\u003C/code\\u003E from MELPA with \\u003Ccode\\u003ETeX-PDF-mode t\\u003C/code\\u003E, I get the the error \\u003Ccode\\u003EError: /typecheck in --setfileposition--\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis bug, which has already been reported to the \\u003Ca href=\\\"https://bugs.ghostscript.com/show_bug.cgi?id=698680\\\"\\u003Eghostscript bugtracker\\u003C/a\\u003E, should have been fixed in the \\u003Ccode\\u003Eauctex\\u003C/code\\u003E master branch according to the \\u003Ca href=\\\"https://lists.gnu.org/archive/html/auctex/2017-11/msg00002.html\\\"\\u003Eauctex mailing list\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, switching from the MELPA release to the git version produces the same error.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA workaround for the MELPA version is to set \\u003Ccode\\u003ETeX-PDF-mode nil\\u003C/code\\u003E but this causes another error for the git version\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ENo such file or directory: main.prv/tmpjwqLHL/preview.dsc\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eand doesn\\u0026#39;t work with Lualatex as OpenType fonts cannot be used in dvi mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes somebody got a version of \\u003Ccode\\u003Epreview-latex\\u003C/code\\u003E working with \\u003Ccode\\u003ETeX-PDF-mode t\\u003C/code\\u003E and preferably Lualatex?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5fi63\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tryzor\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5fi63/previewlatex_with_texpdfmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5fi63/previewlatex_with_texpdfmode/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561497457.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nAs above, having a couple of issues, one with single quotes, where the result is two identical, rather than a pair of:\\n\\n\\u003EThese 'convolvers' would\\n\\nAnd the other is tables, I'm using org-ref which I think is great, and I'm referencing my figures and tables using the format:\\n\\n\\u003Elabel:tab:example\\\\_table \\n\\u003E \\n\\u003Eref:tab:example\\\\_table\\n\\nAnd whilst it works fine for Figures, for tables it's giving me the section they're in rather than their number?\\n\\n\\u0026#x200B;\\n\\nAny help would be appreciated :)\\n\\nThanks,\\n\\nGeorge\\n\\n\\u0026#x200B;\\n\\nEdit: Not sure how to make the quote appear as Latex, reddit noob apologies.\", \"author_fullname\": \"t2_5f5ma\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Couple of quirks with org-mode latex export?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5eyo4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561496327.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561524303.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs above, having a couple of issues, one with single quotes, where the result is two identical, rather than a pair of:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThese \\u0026#39;convolvers\\u0026#39; would\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAnd the other is tables, I\\u0026#39;m using org-ref which I think is great, and I\\u0026#39;m referencing my figures and tables using the format:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Elabel:tab:example_table \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eref:tab:example_table\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAnd whilst it works fine for Figures, for tables it\\u0026#39;s giving me the section they\\u0026#39;re in rather than their number?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help would be appreciated :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGeorge\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: Not sure how to make the quote appear as Latex, reddit noob apologies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5eyo4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GeorgeStorm\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5eyo4/couple_of_quirks_with_orgmode_latex_export/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561495503.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_56wpf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Adding a language to Repl.it: Emacs Lisp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5df1x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 70, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 70, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561518197.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"repl.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5df1x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"amasad\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5df1x/adding_a_language_to_replit_emacs_lisp/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://repl.it/site/blog/elisp\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561489397.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I really like which-key, especially with xah-fly-keys, but I'd like to use it for discovery of new chords and commands. To that end, I'm wondering if there's a way to set which-key to have a permanent buffer showing `which-key-show-major-mode` in insert mode and `which-key-show-top-level` in command mode.\\n\\n\\u0026#x200B;\\n\\nAlso, is there a way to use the scroll bar instead of `C-h C-n` for paging?\\n\\n\\u0026#x200B;\\n\\nThanks!\", \"author_fullname\": \"t2_14xlbd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to have which-key always on?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5bvpx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561512024.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI really like which-key, especially with xah-fly-keys, but I\\u0026#39;d like to use it for discovery of new chords and commands. To that end, I\\u0026#39;m wondering if there\\u0026#39;s a way to set which-key to have a permanent buffer showing \\u003Ccode\\u003Ewhich-key-show-major-mode\\u003C/code\\u003E in insert mode and \\u003Ccode\\u003Ewhich-key-show-top-level\\u003C/code\\u003E in command mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, is there a way to use the scroll bar instead of \\u003Ccode\\u003EC-h C-n\\u003C/code\\u003E for paging?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5bvpx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_wade\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5bvpx/is_there_a_way_to_have_whichkey_always_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5bvpx/is_there_a_way_to_have_whichkey_always_on/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561483224.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"At the moment I'm working my way into programming parallel applications with MPI. For debugging, an option is to call $ mpirun \\u003Copts\\u003E xterm gdb app, which opens an X window with gdb in it for each of the processes.\\n\\nHow is it now possible, to launch gdb inside emacs so that each process is assigned two buffers (one for the code, one for gdb)? \\nI'm relatively new to Emacs, so is it possible for an elisp beginner to implement this, or might it be too difficult?\\n\\nEvery help is appreciated, thank you.\", \"author_fullname\": \"t2_40ghs5rp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Debugging multi-thread applications with emacs and gdb\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5brsa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561511602.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAt the moment I\\u0026#39;m working my way into programming parallel applications with MPI. For debugging, an option is to call $ mpirun \\u0026lt;opts\\u0026gt; xterm gdb app, which opens an X window with gdb in it for each of the processes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow is it now possible, to launch gdb inside emacs so that each process is assigned two buffers (one for the code, one for gdb)? \\nI\\u0026#39;m relatively new to Emacs, so is it possible for an elisp beginner to implement this, or might it be too difficult?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEvery help is appreciated, thank you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5brsa\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Moostropfen\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5brsa/debugging_multithread_applications_with_emacs_and/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5brsa/debugging_multithread_applications_with_emacs_and/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561482802.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I just installed a fresh copy of emacs and was impressed with how much faster it booted\\n\\n\\u0026#x200B;\\n\\nGNU Emacs 27.0.50 (build 2, x86\\\\_64-pc-linux-gnu, GTK+ Version 3.22.30, cairo version 1.15.10) of 2019-06-25\", \"author_fullname\": \"t2_euy5b\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Latest emacs version boots a lot faster.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5b988\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 22, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 22, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561509568.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just installed a fresh copy of emacs and was impressed with how much faster it booted\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGNU Emacs 27.0.50 (build 2, x86_64-pc-linux-gnu, GTK+ Version 3.22.30, cairo version 1.15.10) of 2019-06-25\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5b988\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dericbytes\", \"num_crossposts\": 0, \"num_comments\": 20, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5b988/latest_emacs_version_boots_a_lot_faster/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5b988/latest_emacs_version_boots_a_lot_faster/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561480768.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"For org mode, the suggestion I received was to start with TODO and org capture. That would show some day-by-day workflow benefits and would grow my knowledge of org mode gradually.\\n\\nMagit is such a powerful tool that it's pretty difficult to know where to start. How would you recommend starting to introduce it into your workflow? I struggle on where to start as really simple magit stuff seems slower than using the git-cli directly.\", \"author_fullname\": \"t2_34t3q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Advice for easing into magit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5auv7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561507953.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor org mode, the suggestion I received was to start with TODO and org capture. That would show some day-by-day workflow benefits and would grow my knowledge of org mode gradually.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMagit is such a powerful tool that it\\u0026#39;s pretty difficult to know where to start. How would you recommend starting to introduce it into your workflow? I struggle on where to start as really simple magit stuff seems slower than using the git-cli directly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5auv7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jstad\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c5auv7/advice_for_easing_into_magit/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c5auv7/advice_for_easing_into_magit/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561479153.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a way to open calendar in a posframe?\\n\\n\\u0026#x200B;\\n\\nI can't find anything via searching, and there don't seem to be any obvious view/open/window variables for it?\", \"author_fullname\": \"t2_dcfnv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to open calendar in a posframe?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c57vch\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561494691.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a way to open calendar in a posframe?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can\\u0026#39;t find anything via searching, and there don\\u0026#39;t seem to be any obvious view/open/window variables for it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c57vch\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"poiu-\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c57vch/is_there_a_way_to_open_calendar_in_a_posframe/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c57vch/is_there_a_way_to_open_calendar_in_a_posframe/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561465891.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3em9l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"countdown.el: 10 9 8 7 6 5...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c57ezk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561492337.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c57ezk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skeeto\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c57ezk/countdownel_10_9_8_7_6_5/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/xuchunyang/countdown.el\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561463537.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I would be interested in moving to emacs, however I can't seem to find a good answer to this. All of my searching online (which amounts to talking to a coworker that uses emacs and a 10 minute search) is that you cannot use emacsclient remotely without using either X11 forwarding or some kind of VNC.\\n\\n\\u0026#x200B;\\n\\nI am looking for something like [this](https://github.com/equalsraf/neovim-qt/wiki#how-do-i-connect-to-a-running-neovim-instance) which is a moderately new feature that allows you to set up neovim as an rpc server and allow for a GUI to attach to it over the network with no security (bring your own security). This is a core part of my daily workflow and using X11 Forwarding or VNC would be a huge disadvantage for me.\", \"author_fullname\": \"t2_3pcexjqb\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Does emacs have anything equivalent to neovim-qt and connecting to a remote emacs daemon without X11 forwarding or VNC?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c56ci2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561486860.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would be interested in moving to emacs, however I can\\u0026#39;t seem to find a good answer to this. All of my searching online (which amounts to talking to a coworker that uses emacs and a 10 minute search) is that you cannot use emacsclient remotely without using either X11 forwarding or some kind of VNC.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am looking for something like \\u003Ca href=\\\"https://github.com/equalsraf/neovim-qt/wiki#how-do-i-connect-to-a-running-neovim-instance\\\"\\u003Ethis\\u003C/a\\u003E which is a moderately new feature that allows you to set up neovim as an rpc server and allow for a GUI to attach to it over the network with no security (bring your own security). This is a core part of my daily workflow and using X11 Forwarding or VNC would be a huge disadvantage for me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c56ci2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PrincessOlivier\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c56ci2/does_emacs_have_anything_equivalent_to_neovimqt/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c56ci2/does_emacs_have_anything_equivalent_to_neovimqt/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561458060.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I love exporting Org Mode to LaTeX and create beautiful files. I've been wondering if I should actually learn real LaTeX syntax at all (and learn its snippets etc.) What are your experiences?\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Pure LaTeX or Org Mode export?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c562rm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561485408.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI love exporting Org Mode to LaTeX and create beautiful files. I\\u0026#39;ve been wondering if I should actually learn real LaTeX syntax at all (and learn its snippets etc.) What are your experiences?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Emacs enthusiast\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c562rm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/c562rm/pure_latex_or_org_mode_export/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c562rm/pure_latex_or_org_mode_export/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561456608.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As in the previous thread don't feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly tips/trick/etc/ thread\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c550ht\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561479344.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs in the previous thread don\\u0026#39;t feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c550ht\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c550ht/weekly_tipstricketc_thread/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": true, \"url\": \"https://www.reddit.com/r/emacs/comments/c550ht/weekly_tipstricketc_thread/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561450544.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello,\\n\\nI tried binding \\\"o\\\" to org-open-at-point in agenda view and seems fine but only problem is it can't seem to find the task URL! I get \\\"No Link Found\\\" message.\\n\\n (use-package org\\n :ensure t\\n :bind ((:map org-agenda-mode-map \\n (\\\"o\\\" . org-open-at-point)))\\n\\nOn same tasks in org file \\\"o\\\" works as expected. (I have enabled speed commands)\\n\\nAny ideas why?\", \"author_fullname\": \"t2_62u3sb0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Make org-open-at-point work in agenda view\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c53nez\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561471892.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried binding \\u0026quot;o\\u0026quot; to org-open-at-point in agenda view and seems fine but only problem is it can\\u0026#39;t seem to find the task URL! I get \\u0026quot;No Link Found\\u0026quot; message.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package org\\n :ensure t\\n :bind ((:map org-agenda-mode-map \\n (\\u0026quot;o\\u0026quot; . org-open-at-point)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EOn same tasks in org file \\u0026quot;o\\u0026quot; works as expected. (I have enabled speed commands)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas why?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c53nez\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"manojm321\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c53nez/make_orgopenatpoint_work_in_agenda_view/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c53nez/make_orgopenatpoint_work_in_agenda_view/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561443092.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_nsgfx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"2019-06-24 emacs news\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c52jru\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 75, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 75, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561466248.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"sachachua.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c52jru\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"erenhatirnaz\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c52jru/20190624_emacs_news/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://sachachua.com/blog/2019/06/2019-06-24-emacs-news/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561437448.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Recently I've been setting up *code formatting and auto-completion* with *format-all and company-mode*. I came across the **lsp-mode** package and it seems to provide Emacs with great functionalities similar to those of an IDE. However, at first glance, it feels really heavy...\\n\\n\\u0026#x200B;\\n\\n **Do you use lsp-mode in Emacs?** Or do you just fire up an IDE when you really need those features? \\n\\n\\u0026#x200B;\\n\\nP.s. I use Emacs for coding C and Python. Intellij IDEA for huge Java and Kotlin projects\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Do you use lsp-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c524mo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561464203.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERecently I\\u0026#39;ve been setting up \\u003Cem\\u003Ecode formatting and auto-completion\\u003C/em\\u003E with \\u003Cem\\u003Eformat-all and company-mode\\u003C/em\\u003E. I came across the \\u003Cstrong\\u003Elsp-mode\\u003C/strong\\u003E package and it seems to provide Emacs with great functionalities similar to those of an IDE. However, at first glance, it feels really heavy...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDo you use lsp-mode in Emacs?\\u003C/strong\\u003E Or do you just fire up an IDE when you really need those features? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EP.s. I use Emacs for coding C and Python. Intellij IDEA for huge Java and Kotlin projects\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Emacs enthusiast\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c524mo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 45, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/c524mo/do_you_use_lspmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c524mo/do_you_use_lspmode/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561435403.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I use ivy, helm, and hydra. Ivy nicely sits in the minibuffer. Helm does not without some configuration. It seems to be free spirited and wants to pop up in whatever buffer your cursor is at. \\n\\nWell, discovering ivy-posframe and helm-posframe helped me normalize my auto-completion interfaces. I absolutely love those packages! They've professionalized the look and feel of my emacs.\\n\\nWhen they came out I was looking for an implementation for hydra, since that was the only thing still appearing in my minibuffer - and it's simply not acceptable that I would have to move my eyes all the way down to the bottom of my screen to see my hints. This is emacs we're talking about ;-)\\n\\nA very kind wizard created hydra-posframe recently, and I'm super happy they did. These three packages together give me a truly consistent interface to completion / hint style functionality across my fav packages.\\n\\nNot sure if this guy/gal posted his package on reddit already - maybe I missed it. Here it is for other posframe / hydra fans who may have missed it:\\n\\n[https://github.com/Ladicle/hydra-posframe](https://github.com/Ladicle/hydra-posframe)\\n\\nThank you Ladicle!\", \"author_fullname\": \"t2_uu2a8q3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"hydra-posframe: the final piece in a frustrating interface puzzle.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4y14q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561447415.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use ivy, helm, and hydra. Ivy nicely sits in the minibuffer. Helm does not without some configuration. It seems to be free spirited and wants to pop up in whatever buffer your cursor is at. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, discovering ivy-posframe and helm-posframe helped me normalize my auto-completion interfaces. I absolutely love those packages! They\\u0026#39;ve professionalized the look and feel of my emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen they came out I was looking for an implementation for hydra, since that was the only thing still appearing in my minibuffer - and it\\u0026#39;s simply not acceptable that I would have to move my eyes all the way down to the bottom of my screen to see my hints. This is emacs we\\u0026#39;re talking about ;-)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA very kind wizard created hydra-posframe recently, and I\\u0026#39;m super happy they did. These three packages together give me a truly consistent interface to completion / hint style functionality across my fav packages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot sure if this guy/gal posted his package on reddit already - maybe I missed it. Here it is for other posframe / hydra fans who may have missed it:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/Ladicle/hydra-posframe\\\"\\u003Ehttps://github.com/Ladicle/hydra-posframe\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you Ladicle!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4y14q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"misterchiply\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4y14q/hydraposframe_the_final_piece_in_a_frustrating/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4y14q/hydraposframe_the_final_piece_in_a_frustrating/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561418615.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm fairly new to emacs, org-mode and nikola and can't seem to find any tutorials detailing how to get nikola working with emacs\\n\\n\\u0026#x200B;\\n\\nI have nikola with the orgmode plugin installed, and [conf.py](https://conf.py) updated as shown on the install page. What are the next steps I should take? \\n\\n\\u0026#x200B;\\n\\nFrom what I understand this plugin will let Nikola read from a .org file, but there must be more to it. When I write a .org file in nikola's post directory it doesn't grab it, and I have no idea how to write metadata containing things like tags for nikola.\\n\\n \\nI'm generally pretty good at looking for information online, but I can't seem to find a lot of info detailing the specific thing i'm trying to do. All the tutorials end at installing nikola with the orgmode plugin.\", \"author_fullname\": \"t2_slgm1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Blogging with org-mode and Nikola\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4tuxz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561432688.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m fairly new to emacs, org-mode and nikola and can\\u0026#39;t seem to find any tutorials detailing how to get nikola working with emacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have nikola with the orgmode plugin installed, and \\u003Ca href=\\\"https://conf.py\\\"\\u003Econf.py\\u003C/a\\u003E updated as shown on the install page. What are the next steps I should take? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom what I understand this plugin will let Nikola read from a .org file, but there must be more to it. When I write a .org file in nikola\\u0026#39;s post directory it doesn\\u0026#39;t grab it, and I have no idea how to write metadata containing things like tags for nikola.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m generally pretty good at looking for information online, but I can\\u0026#39;t seem to find a lot of info detailing the specific thing i\\u0026#39;m trying to do. All the tutorials end at installing nikola with the orgmode plugin.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4tuxz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Toundra\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4tuxz/blogging_with_orgmode_and_nikola/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4tuxz/blogging_with_orgmode_and_nikola/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561403888.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, I am trying to think on the extension of [emacs-powerthesaurus](https://github.com/SavchenkoValeriy/emacs-powerthesaurus) and I want to implement a feature of filtering candidates by POS or topic. The problem is that I don't really want to add arguments in order to keep it **dwim**.\\n\\nI was considering syntax like `synonym-re #pos-re @topic-re`. However, it seems viable only for **ivy** (with **helm** it's very likely to be possible as well, but I just didn't find a way yet). Other completers (**ido**, default, etc.) are complete mystery to me.\\n\\nWhat do you think about that interface? What would be the most *emacs way* to do it in your opinion?\\n\\nThank you in advance for your help and feedback!\", \"author_fullname\": \"t2_y095r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is the best way to organize a multi-field completing-read session\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4s7pg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561427062.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I am trying to think on the extension of \\u003Ca href=\\\"https://github.com/SavchenkoValeriy/emacs-powerthesaurus\\\"\\u003Eemacs-powerthesaurus\\u003C/a\\u003E and I want to implement a feature of filtering candidates by POS or topic. The problem is that I don\\u0026#39;t really want to add arguments in order to keep it \\u003Cstrong\\u003Edwim\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was considering syntax like \\u003Ccode\\u003Esynonym-re #pos-re @topic-re\\u003C/code\\u003E. However, it seems viable only for \\u003Cstrong\\u003Eivy\\u003C/strong\\u003E (with \\u003Cstrong\\u003Ehelm\\u003C/strong\\u003E it\\u0026#39;s very likely to be possible as well, but I just didn\\u0026#39;t find a way yet). Other completers (\\u003Cstrong\\u003Eido\\u003C/strong\\u003E, default, etc.) are complete mystery to me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat do you think about that interface? What would be the most \\u003Cem\\u003Eemacs way\\u003C/em\\u003E to do it in your opinion?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you in advance for your help and feedback!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4s7pg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vsavchenko\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4s7pg/what_is_the_best_way_to_organize_a_multifield/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4s7pg/what_is_the_best_way_to_organize_a_multifield/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561398262.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"https://i.redd.it/dk5tbt1t1c631.png\\n\\nI came to Emacs from VSCode/Atom and I saw there was a lack of modern tab plugins in Emacs, then I saw awesome-tab and asked the author if he planned to upload his package to MELPA, he said he doesn't like MELPA but he let me fork his repo to develop my own plugin so here's the result, centaur-tabs, named after centaur-emacs author mr. Vincent Zhang who may or may not help me with this (dammit Vincent! please lend me your powers!). The plugin is under development and may have bugs, most of them related with all-the-icons (what? bugs in all-the-icons? how?). It is highly customizable, has a visual way to see if a buffer is modified, has many styles, integrates well with themes by using already existing tabbar faces (I use it with doom-themes and it looks gorgeous) and it has a pretty detailed README. Hopefully soon I'll get it on MELPA, for now, check it out in GitHub: [https://github.com/ema2159/centaur-tabs](https://github.com/ema2159/centaur-tabs) and feel free to contribute, there's a TODO list (which might get bigger in the future).\", \"author_fullname\": \"t2_3dbgovrw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Centaur tabs: a new, customizable and aesthetic tabs plugin for Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"dk5tbt1t1c631\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 525, \"x\": 574, \"u\": \"https://i.redd.it/dk5tbt1t1c631.png\"}, \"m\": \"image/png\", \"id\": \"dk5tbt1t1c631\"}}, \"name\": \"t3_c4r3wn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 71, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 71, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561395908.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561423330.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/dk5tbt1t1c631.png\\\"\\u003Ehttps://i.redd.it/dk5tbt1t1c631.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI came to Emacs from VSCode/Atom and I saw there was a lack of modern tab plugins in Emacs, then I saw awesome-tab and asked the author if he planned to upload his package to MELPA, he said he doesn\\u0026#39;t like MELPA but he let me fork his repo to develop my own plugin so here\\u0026#39;s the result, centaur-tabs, named after centaur-emacs author mr. Vincent Zhang who may or may not help me with this (dammit Vincent! please lend me your powers!). The plugin is under development and may have bugs, most of them related with all-the-icons (what? bugs in all-the-icons? how?). It is highly customizable, has a visual way to see if a buffer is modified, has many styles, integrates well with themes by using already existing tabbar faces (I use it with doom-themes and it looks gorgeous) and it has a pretty detailed README. Hopefully soon I\\u0026#39;ll get it on MELPA, for now, check it out in GitHub: \\u003Ca href=\\\"https://github.com/ema2159/centaur-tabs\\\"\\u003Ehttps://github.com/ema2159/centaur-tabs\\u003C/a\\u003E and feel free to contribute, there\\u0026#39;s a TODO list (which might get bigger in the future).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4r3wn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ema2159\", \"num_crossposts\": 0, \"num_comments\": 47, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4r3wn/centaur_tabs_a_new_customizable_and_aesthetic/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561394530.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As titled, I regularly use i**ndent-region, or indent buffer** etc. to make sure my code aligns properly. **However**, advanced operations like ***splitting lines optimally or adding whitespace around operators***... kinda like the \\\"*Format Document*\\\" command in modern editors (*VSCode, Intellij* etc.)\\n\\n\\u0026#x200B;\\n\\nAre there any such packages/add-ons that you could think of? I mainly code in C, Java, JavaScript, and Python.\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can Emacs format (not just indent) my code?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4r0zp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561423058.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs titled, I regularly use i\\u003Cstrong\\u003Endent-region, or indent buffer\\u003C/strong\\u003E etc. to make sure my code aligns properly. \\u003Cstrong\\u003EHowever\\u003C/strong\\u003E, advanced operations like \\u003Cstrong\\u003E\\u003Cem\\u003Esplitting lines optimally or adding whitespace around operators\\u003C/em\\u003E\\u003C/strong\\u003E... kinda like the \\u0026quot;\\u003Cem\\u003EFormat Document\\u003C/em\\u003E\\u0026quot; command in modern editors (\\u003Cem\\u003EVSCode, Intellij\\u003C/em\\u003E etc.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre there any such packages/add-ons that you could think of? I mainly code in C, Java, JavaScript, and Python.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Emacs enthusiast\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4r0zp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 19, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/c4r0zp/can_emacs_format_not_just_indent_my_code/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4r0zp/can_emacs_format_not_just_indent_my_code/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561394258.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3xj7454j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Swap Right Alt with Ctrl key\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4qjmk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561421375.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4qjmk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Desmesura\", \"num_crossposts\": 0, \"num_comments\": 20, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4qjmk/swap_right_alt_with_ctrl_key/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/linuxquestions/comments/c3rhye/swap_right_alt_with_ctrl_key/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561392575.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_181xt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"frog-jump-buffer - a super-fast buffer switching package using posframe and avy, is now on MELPA\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4oq35\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 38, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 38, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561415017.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4oq35\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thepalmcivet\", \"num_crossposts\": 0, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4oq35/frogjumpbuffer_a_superfast_buffer_switching/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/waymondo/frog-jump-buffer\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561386217.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How can one apply bold text in org-mode in a way that is easily bound to a single key binding. My attempts require multiple keystrokes but I want the equivalent of \\\\[cmd-b\\\\] on macOS and \\\\[C-b\\\\] on Windows or Linux boxen. \\n\\nAnd the same for italics and underscore and \\u2026 Ideally it will be a workable solution for Markdown as well, hence my general ask to the Emacs community.\", \"author_fullname\": \"t2_3fwog\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to set keybindings for bold, italics, underscore, \\u0026t. for various markup languages like org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4mlpl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561407011.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can one apply bold text in org-mode in a way that is easily bound to a single key binding. My attempts require multiple keystrokes but I want the equivalent of [cmd-b] on macOS and [C-b] on Windows or Linux boxen. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd the same for italics and underscore and \\u2026 Ideally it will be a workable solution for Markdown as well, hence my general ask to the Emacs community.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4mlpl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zenshinji\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4mlpl/how_to_set_keybindings_for_bold_italics/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4mlpl/how_to_set_keybindings_for_bold_italics/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561378211.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"When I run some shell scripts in org-babel I get some `$` in the output. I am not sure if they refer to empty output lines or something.\\n\\nI sometimes get 2 of them in a row. Any ideas?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What are the dollar $ characters which appear in org-babel results?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4lgoz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561401659.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I run some shell scripts in org-babel I get some \\u003Ccode\\u003E$\\u003C/code\\u003E in the output. I am not sure if they refer to empty output lines or something.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI sometimes get 2 of them in a row. Any ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4lgoz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4lgoz/what_are_the_dollar_characters_which_appear_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4lgoz/what_are_the_dollar_characters_which_appear_in/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561372859.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have the following configuration in Emacs, is a cool hydra that allows me to go quickly from conflict to conflict and resolve them:\\n\\n```\\n(use-package smerge-mode\\n :bind (:map smerge-mode-map (\\\"C-M-'\\\" . hydra-smerge/body))\\n :hydra (hydra-smerge (:color pink :hint nil :pre (smerge-mode 1) :post (smerge-auto-leave))\\n \\\"\\n^Desplazarse^ ^Mantener^ ^Diff^ ^Otro^\\n^^-----------^^-------------------^^---------------------^^-------\\n_n_ext _b_ase _\\u003C_: upper/base _C_ombine\\n_p_rev _u_pper _=_: upper/lower _r_esolve\\n^^ _l_ower _\\u003E_: base/lower _k_ill current\\n^^ _a_ll _R_efine\\n^^ _RET_: current _E_diff\\n\\\"\\n (\\\"n\\\" smerge-next)\\n (\\\"p\\\" smerge-prev)\\n (\\\"b\\\" smerge-keep-base)\\n (\\\"u\\\" smerge-keep-upper)\\n (\\\"l\\\" smerge-keep-lower)\\n (\\\"a\\\" smerge-keep-all)\\n (\\\"RET\\\" smerge-keep-current)\\n (\\\"\\\\C-m\\\" smerge-keep-current)\\n (\\\"\\u003C\\\" smerge-diff-base-upper)\\n (\\\"=\\\" smerge-diff-upper-lower)\\n (\\\"\\u003E\\\" smerge-diff-base-lower)\\n (\\\"R\\\" smerge-refine)\\n (\\\"E\\\" smerge-ediff)\\n (\\\"C\\\" smerge-combine-with-next)\\n (\\\"r\\\" smerge-resolve)\\n (\\\"k\\\" smerge-kill-current)\\n (\\\"q\\\" nil \\\"cancel\\\" :color blue)))\\n```\\n\\nbut I need to quit it, visit the next file or switch buffer (if the next file to review has conflicts) and then turn the hydra ON again. My question: is there a way to automagically visit the next file with conflicts without having to quit my hydra and using C-x C-f each time?\", \"author_fullname\": \"t2_6qm9r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"smerge: visit the next file in project with conflicts to resolve?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4k3g5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"3a5e1042-1094-11e7-bb00-0e3b6c7befce\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"default\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561392964.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have the following configuration in Emacs, is a cool hydra that allows me to go quickly from conflict to conflict and resolve them:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(use-package smerge-mode\\n :bind (:map smerge-mode-map (\\u0026quot;C-M-\\u0026#39;\\u0026quot; . hydra-smerge/body))\\n :hydra (hydra-smerge (:color pink :hint nil :pre (smerge-mode 1) :post (smerge-auto-leave))\\n \\u0026quot;\\n^Desplazarse^ ^Mantener^ ^Diff^ ^Otro^\\n^^-----------^^-------------------^^---------------------^^-------\\n_n_ext _b_ase _\\u0026lt;_: upper/base _C_ombine\\n_p_rev _u_pper _=_: upper/lower _r_esolve\\n^^ _l_ower _\\u0026gt;_: base/lower _k_ill current\\n^^ _a_ll _R_efine\\n^^ _RET_: current _E_diff\\n\\u0026quot;\\n (\\u0026quot;n\\u0026quot; smerge-next)\\n (\\u0026quot;p\\u0026quot; smerge-prev)\\n (\\u0026quot;b\\u0026quot; smerge-keep-base)\\n (\\u0026quot;u\\u0026quot; smerge-keep-upper)\\n (\\u0026quot;l\\u0026quot; smerge-keep-lower)\\n (\\u0026quot;a\\u0026quot; smerge-keep-all)\\n (\\u0026quot;RET\\u0026quot; smerge-keep-current)\\n (\\u0026quot;\\\\C-m\\u0026quot; smerge-keep-current)\\n (\\u0026quot;\\u0026lt;\\u0026quot; smerge-diff-base-upper)\\n (\\u0026quot;=\\u0026quot; smerge-diff-upper-lower)\\n (\\u0026quot;\\u0026gt;\\u0026quot; smerge-diff-base-lower)\\n (\\u0026quot;R\\u0026quot; smerge-refine)\\n (\\u0026quot;E\\u0026quot; smerge-ediff)\\n (\\u0026quot;C\\u0026quot; smerge-combine-with-next)\\n (\\u0026quot;r\\u0026quot; smerge-resolve)\\n (\\u0026quot;k\\u0026quot; smerge-kill-current)\\n (\\u0026quot;q\\u0026quot; nil \\u0026quot;cancel\\u0026quot; :color blue)))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut I need to quit it, visit the next file or switch buffer (if the next file to review has conflicts) and then turn the hydra ON again. My question: is there a way to automagically visit the next file with conflicts without having to quit my hydra and using C-x C-f each time?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"secretaria.el, font-man-mode\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4k3g5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"shackra\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/c4k3g5/smerge_visit_the_next_file_in_project_with/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4k3g5/smerge_visit_the_next_file_in_project_with/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561364164.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I was trying to use flake8 with Flycheck for my Python programming in Emacs. Somewhere online I found this line and put it in my `init.el` and it **worked**:\\n\\n`(setq flycheck-python-flake8-executable \\\"python3\\\")`\\n\\n\\u0026#x200B;\\n\\nThe document says that the variable is \\\"*Either a string containing the name or the path of the executable, or nil to use the default executable from the syntax checker declaration*.\\\" **Does that mean \\\"python3\\\" is an executable?** I'm just trying to understand how it works under the abstraction. Thanks in advance and have a nice day!\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Flake8 and Flycheck executable\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4jr3h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561390244.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was trying to use flake8 with Flycheck for my Python programming in Emacs. Somewhere online I found this line and put it in my \\u003Ccode\\u003Einit.el\\u003C/code\\u003E and it \\u003Cstrong\\u003Eworked\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(setq flycheck-python-flake8-executable \\u0026quot;python3\\u0026quot;)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe document says that the variable is \\u0026quot;\\u003Cem\\u003EEither a string containing the name or the path of the executable, or nil to use the default executable from the syntax checker declaration\\u003C/em\\u003E.\\u0026quot; \\u003Cstrong\\u003EDoes that mean \\u0026quot;python3\\u0026quot; is an executable?\\u003C/strong\\u003E I\\u0026#39;m just trying to understand how it works under the abstraction. Thanks in advance and have a nice day!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Emacs enthusiast\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4jr3h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/c4jr3h/flake8_and_flycheck_executable/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4jr3h/flake8_and_flycheck_executable/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561361444.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Flycheck doesn't seem to work with java-mode out of the box. I know there are things like JDEE, Meghanada-mode etc. But I just need **basic syntax checking**, ***not*** these **advanced heavy** features (if I'm doing serious Java development, I fire up *Intellij* for *IDE* support). I use Java in Emacs only for practice solving interview questions etc. So I only need some **lightweight** checking/linting.\\n\\n\\u0026#x200B;\\n\\nAnything that comes to mind?\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Syntax checking for Java?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4hove\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561376032.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFlycheck doesn\\u0026#39;t seem to work with java-mode out of the box. I know there are things like JDEE, Meghanada-mode etc. But I just need \\u003Cstrong\\u003Ebasic syntax checking\\u003C/strong\\u003E, \\u003Cstrong\\u003E\\u003Cem\\u003Enot\\u003C/em\\u003E\\u003C/strong\\u003E these \\u003Cstrong\\u003Eadvanced heavy\\u003C/strong\\u003E features (if I\\u0026#39;m doing serious Java development, I fire up \\u003Cem\\u003EIntellij\\u003C/em\\u003E for \\u003Cem\\u003EIDE\\u003C/em\\u003E support). I use Java in Emacs only for practice solving interview questions etc. So I only need some \\u003Cstrong\\u003Elightweight\\u003C/strong\\u003E checking/linting.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnything that comes to mind?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Emacs enthusiast\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4hove\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/c4hove/syntax_checking_for_java/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4hove/syntax_checking_for_java/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561347232.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My emacs on Windows starts a lot slower than on my Linux box. I keep a pretty lean and vanilla configuration shared between the two. Is there a way I can profile the start up time to make sure there isn't a package slowing things down?\\n\\nEdit: thanks all for the great tips and info! I've got plenty of tools to work through here, so I'm sure they'll turn up something to help me out.\", \"author_fullname\": \"t2_swi7q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Profile start up?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4gvmg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561429346.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561371112.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy emacs on Windows starts a lot slower than on my Linux box. I keep a pretty lean and vanilla configuration shared between the two. Is there a way I can profile the start up time to make sure there isn\\u0026#39;t a package slowing things down?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: thanks all for the great tips and info! I\\u0026#39;ve got plenty of tools to work through here, so I\\u0026#39;m sure they\\u0026#39;ll turn up something to help me out.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4gvmg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"errorrecovery\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4gvmg/profile_start_up/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4gvmg/profile_start_up/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561342312.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_1s0v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is this a bug with Emacs or with Courier Prime? When I use Courier Prime (not the code variant) in Emacs, the space between characters is much too wide.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4g46m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561367739.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4g46m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gnuvince\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4g46m/is_this_a_bug_with_emacs_or_with_courier_prime/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/1j613yrkg7631.png\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561338939.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying out lsp-mode with default flymake\\\\* for as-you-type error checking in JavaScipt. lsp-mode and language server are easy to set up, I type in some javascript, it underlines in red, and mouse hover shows me the error. Brilliant! But I can't be hovering my mouse all the time, I came to Emacs specifically to get a keyboard-driven workflow.\\n\\nSo I want to remap it so that I can see the errors when the text insertion point is in the error region, instead of the mouse cursor. Or maybe I can activate it with a key binding when I want to see what's at the text insertion point. The problem is I can't find how to remap/intercept this, or even see what functions are being called.\\n\\nI tried C-h b and searched for every instance of \\\"mouse\\\" but none of them were about hovering.\\n\\nI tried reading the elisp manual regarding mouse tracking, and it's possible lsp-mode or flymake is using the track-mouse special form to get this functionality, but I don't know how to track it down.\\n\\nAny ideas that will solve the re-mapping problem, or get me closer in my own attempts to track it down?\\n\\n\\u0026#x200B;\\n\\n( \\\\* I know someone will suggest using flycheck instead of flymake, but please say how it would solve or avoid my problem, don't just say that you like it better.)\", \"author_fullname\": \"t2_zqq5m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to remap mouse hover functionality in emacs? [lsp-mode][flymake]\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4eyxb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561363493.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying out lsp-mode with default flymake* for as-you-type error checking in JavaScipt. lsp-mode and language server are easy to set up, I type in some javascript, it underlines in red, and mouse hover shows me the error. Brilliant! But I can\\u0026#39;t be hovering my mouse all the time, I came to Emacs specifically to get a keyboard-driven workflow.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I want to remap it so that I can see the errors when the text insertion point is in the error region, instead of the mouse cursor. Or maybe I can activate it with a key binding when I want to see what\\u0026#39;s at the text insertion point. The problem is I can\\u0026#39;t find how to remap/intercept this, or even see what functions are being called.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried C-h b and searched for every instance of \\u0026quot;mouse\\u0026quot; but none of them were about hovering.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried reading the elisp manual regarding mouse tracking, and it\\u0026#39;s possible lsp-mode or flymake is using the track-mouse special form to get this functionality, but I don\\u0026#39;t know how to track it down.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas that will solve the re-mapping problem, or get me closer in my own attempts to track it down?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E( * I know someone will suggest using flycheck instead of flymake, but please say how it would solve or avoid my problem, don\\u0026#39;t just say that you like it better.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4eyxb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dukereg\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4eyxb/how_to_remap_mouse_hover_functionality_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4eyxb/how_to_remap_mouse_hover_functionality_in_emacs/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561334693.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"eg if I have a gitolite repository formed from an ssh alias such as `remoterepo:repodir/reponame` I'd like to display it as it is or even truncate it to `reponame`.\\n\\nAny such plugins?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a modeline plugin that displays the remote repository of the file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4eajh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561361023.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eeg if I have a gitolite repository formed from an ssh alias such as \\u003Ccode\\u003Eremoterepo:repodir/reponame\\u003C/code\\u003E I\\u0026#39;d like to display it as it is or even truncate it to \\u003Ccode\\u003Ereponame\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny such plugins?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4eajh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4eajh/is_there_a_modeline_plugin_that_displays_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4eajh/is_there_a_modeline_plugin_that_displays_the/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561332223.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am try config emacs with [emacs-dashboard](https://github.com/emacs-dashboard/emacs-dashboard) but agenda itens not show in dashboard.\\n\\n\\u0026#x200B;\\n\\nMay another question is change logo Emacs not working\\n\\n\\u0026#x200B;\\n\\nHow change my code for read agenda and logo emacs in dashboard?\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/mc4v5vr0u6631.png\\n\\n (require-package 'use-package)\\n (package-install 'dashboard)\\n (require 'dashboard)\\n (dashboard-setup-startup-hook)\\n \\n (require 'org-bullets)\\n (add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))\\n \\n ;; Or if you use use-package\\n (use-package dashboard\\n :ensure t\\n :config\\n (dashboard-setup-startup-hook))\\n \\n (setq initial-buffer-choice (lambda () (get-buffer \\\"*dashboard*\\\")))\\n \\n (setq dashboard-set-heading-icons t)\\n (setq dashboard-set-file-icons t)\\n \\n (setq dashboard-banner-logo-title \\\"Welcome to Emacs Dashboard\\\")\\n ;; Set the banner\\n (setq dashboard-startup-banner \\\"~/agenda/emacs.png\\\")\\n ;(setq dashboard-startup-banner 'official)\\n \\n ;; Value can be\\n ;; 'official which displays the official emacs logo\\n ;; 'logo which displays an alternative emacs logo\\n ;; 1, 2 or 3 which displays one of the text banners\\n ;; \\\"path/to/your/image.png\\\" which displays whatever image you would prefer\\n \\n \\n ;; Content is not centered by default. To center, set\\n (setq dashboard-center-content t)\\n \\n ;; To disable shortcut \\\"jump\\\" indicators for each section, set\\n (setq dashboard-show-shortcuts nil)\\n \\n ;(setq show-week-agenda-p t)\\n \\n \\n (setq dashboard-items '((recents . 5)\\n ;(bookmarks . 4)\\n (projects . 5)\\n (agenda . 5)\\n \\t ;(registers . 2)\\n ))\\n \\n \\n (defun dashboard-insert-custom (list-size)\\n (insert \\\"The End\\\"))\\n (add-to-list 'dashboard-item-generators '(custom . dashboard-insert-custom))\\n (add-to-list 'dashboard-items '(custom) t)\\n \\n (setq dashboard-set-navigator t)\\n \\n (provide 'init-startup)\", \"author_fullname\": \"t2_2lnex47n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Custom dashboard emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"mc4v5vr0u6631\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1080, \"x\": 2560, \"u\": \"https://i.redd.it/mc4v5vr0u6631.png\"}, \"m\": \"image/png\", \"id\": \"mc4v5vr0u6631\"}}, \"name\": \"t3_c4e5ey\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561360518.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am try config emacs with \\u003Ca href=\\\"https://github.com/emacs-dashboard/emacs-dashboard\\\"\\u003Eemacs-dashboard\\u003C/a\\u003E but agenda itens not show in dashboard.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMay another question is change logo Emacs not working\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow change my code for read agenda and logo emacs in dashboard?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/mc4v5vr0u6631.png\\\"\\u003Ehttps://i.redd.it/mc4v5vr0u6631.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require-package \\u0026#39;use-package)\\n(package-install \\u0026#39;dashboard)\\n(require \\u0026#39;dashboard)\\n(dashboard-setup-startup-hook)\\n\\n(require \\u0026#39;org-bullets)\\n(add-hook \\u0026#39;org-mode-hook (lambda () (org-bullets-mode 1)))\\n\\n;; Or if you use use-package\\n(use-package dashboard\\n :ensure t\\n :config\\n (dashboard-setup-startup-hook))\\n\\n(setq initial-buffer-choice (lambda () (get-buffer \\u0026quot;*dashboard*\\u0026quot;)))\\n\\n(setq dashboard-set-heading-icons t)\\n(setq dashboard-set-file-icons t)\\n\\n(setq dashboard-banner-logo-title \\u0026quot;Welcome to Emacs Dashboard\\u0026quot;)\\n;; Set the banner\\n(setq dashboard-startup-banner \\u0026quot;~/agenda/emacs.png\\u0026quot;)\\n;(setq dashboard-startup-banner \\u0026#39;official)\\n\\n;; Value can be\\n;; \\u0026#39;official which displays the official emacs logo\\n;; \\u0026#39;logo which displays an alternative emacs logo\\n;; 1, 2 or 3 which displays one of the text banners\\n;; \\u0026quot;path/to/your/image.png\\u0026quot; which displays whatever image you would prefer\\n\\n\\n;; Content is not centered by default. To center, set\\n(setq dashboard-center-content t)\\n\\n;; To disable shortcut \\u0026quot;jump\\u0026quot; indicators for each section, set\\n(setq dashboard-show-shortcuts nil)\\n\\n;(setq show-week-agenda-p t)\\n\\n\\n(setq dashboard-items \\u0026#39;((recents . 5)\\n ;(bookmarks . 4)\\n (projects . 5)\\n (agenda . 5)\\n ;(registers . 2)\\n ))\\n\\n\\n(defun dashboard-insert-custom (list-size)\\n (insert \\u0026quot;The End\\u0026quot;))\\n(add-to-list \\u0026#39;dashboard-item-generators \\u0026#39;(custom . dashboard-insert-custom))\\n(add-to-list \\u0026#39;dashboard-items \\u0026#39;(custom) t)\\n\\n(setq dashboard-set-navigator t)\\n\\n(provide \\u0026#39;init-startup)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4e5ey\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"flima21\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4e5ey/custom_dashboard_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4e5ey/custom_dashboard_emacs/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561331718.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_34t3q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help with indent issue on visual-fill-column + org mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4bexo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561351138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4bexo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jstad\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4bexo/help_with_indent_issue_on_visualfillcolumn_org/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/jl1h47u936631.png\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561322338.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have switched from vim. I started using emacs about 4-6 months ago. I am looking for an alternative for vim-easy motion for emacs\", \"author_fullname\": \"t2_3n3fcln2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"vim-easymotion for emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4b8qn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561350550.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have switched from vim. I started using emacs about 4-6 months ago. I am looking for an alternative for vim-easy motion for emacs\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4b8qn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ryrycongcong\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4b8qn/vimeasymotion_for_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4b8qn/vimeasymotion_for_emacs/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561321750.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I see that there are a lots of packages that are containing more stuff that actually needed and there are a lot of packages built-in that I do not really need. Is it possible to get somehow cleaned emacs from that crap? So that I have only things that I really need but not all junk that is packed into emacs?\", \"author_fullname\": \"t2_2ze0cnjc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"emacs namespace jukyard\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4b5kb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561350253.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see that there are a lots of packages that are containing more stuff that actually needed and there are a lot of packages built-in that I do not really need. Is it possible to get somehow cleaned emacs from that crap? So that I have only things that I really need but not all junk that is packed into emacs?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4b5kb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vallyscode\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c4b5kb/emacs_namespace_jukyard/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c4b5kb/emacs_namespace_jukyard/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561321453.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'd like to use emacs to keep track of historical events and dates. \\n\\nI'm looking for\\n\\n* a way to set titles, tags, descriptions and dates of events\\n* a way to generate timelines, given some filters\\n* support for B.C., date ranges and maybe logarithmic time scale\\n\\nCan anyone share a package or workflow that could get close to this ?\\n\\nOrg-mode is good enough for the first point, but how can I get a good timeline ?\", \"author_fullname\": \"t2_kd0to\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Keep track of historical events\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c45uod\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561330383.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d like to use emacs to keep track of historical events and dates. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m looking for\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Ea way to set titles, tags, descriptions and dates of events\\u003C/li\\u003E\\n\\u003Cli\\u003Ea way to generate timelines, given some filters\\u003C/li\\u003E\\n\\u003Cli\\u003Esupport for B.C., date ranges and maybe logarithmic time scale\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ECan anyone share a package or workflow that could get close to this ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg-mode is good enough for the first point, but how can I get a good timeline ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c45uod\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JadeSnail\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c45uod/keep_track_of_historical_events/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c45uod/keep_track_of_historical_events/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561301583.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi all,\\n\\nAs a hobby I started to play with GNU Emacs and now I would like to better understand its concepts and how everything works internally. So I though that maybe I could reinvent it and write my own simple implementation of Emacs or at least I would get more familiar with it. I started to gather information and I wanted to ask for your help, maybe some of you knows any small projects which implements Emacs? (I'm not looking for simple C editors with legacy Emacs key bindings, but for editors which runs Lisp Machine/Lisp interpreter on top) Another question I have is, maybe you know some resources where GNU Emacs architecture would be documented? When you guys write GNU Emacs extensions where do you look for documentation? I found some documentation for Liquid fairly easy, are where similar resources for GNU Emacs or Lem? \\n\\nFor now I have this list of editors which look quite good :\\n1. GNU Emacs (ELisp) - http://git.savannah.gnu.org/cgit/emacs.git\\n2. Lem (Common Lisp) - https://github.com/cxxxr/lem\\n3. Liqued (Clojure) - [https://github.com/mogenslund/liquid](https://github.com/mogenslund/liquid)\\n 1. [API documentation](http://salza.dk/liquid/index.html)\\n 2. [blog post - how the editor works](http://salza.dk/bloghowtheeditorworks.html)\\n\\nAny related information would help and thank you all :)\", \"author_fullname\": \"t2_y676e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Creating Emacs style editor\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c45qus\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561304566.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561329928.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a hobby I started to play with GNU Emacs and now I would like to better understand its concepts and how everything works internally. So I though that maybe I could reinvent it and write my own simple implementation of Emacs or at least I would get more familiar with it. I started to gather information and I wanted to ask for your help, maybe some of you knows any small projects which implements Emacs? (I\\u0026#39;m not looking for simple C editors with legacy Emacs key bindings, but for editors which runs Lisp Machine/Lisp interpreter on top) Another question I have is, maybe you know some resources where GNU Emacs architecture would be documented? When you guys write GNU Emacs extensions where do you look for documentation? I found some documentation for Liquid fairly easy, are where similar resources for GNU Emacs or Lem? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor now I have this list of editors which look quite good :\\n1. GNU Emacs (ELisp) - \\u003Ca href=\\\"http://git.savannah.gnu.org/cgit/emacs.git\\\"\\u003Ehttp://git.savannah.gnu.org/cgit/emacs.git\\u003C/a\\u003E\\n2. Lem (Common Lisp) - \\u003Ca href=\\\"https://github.com/cxxxr/lem\\\"\\u003Ehttps://github.com/cxxxr/lem\\u003C/a\\u003E\\n3. Liqued (Clojure) - \\u003Ca href=\\\"https://github.com/mogenslund/liquid\\\"\\u003Ehttps://github.com/mogenslund/liquid\\u003C/a\\u003E\\n 1. \\u003Ca href=\\\"http://salza.dk/liquid/index.html\\\"\\u003EAPI documentation\\u003C/a\\u003E\\n 2. \\u003Ca href=\\\"http://salza.dk/bloghowtheeditorworks.html\\\"\\u003Eblog post - how the editor works\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny related information would help and thank you all :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c45qus\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"g3br\", \"num_crossposts\": 0, \"num_comments\": 44, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c45qus/creating_emacs_style_editor/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c45qus/creating_emacs_style_editor/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561301128.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Main feature of onivim (one of the neovim forks) is vscode plugin support. I found it so useful. Is it difficult to write a plugin that will do it in emacs?\", \"author_fullname\": \"t2_3mz8y062\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs and vscode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c43omb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561320918.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMain feature of onivim (one of the neovim forks) is vscode plugin support. I found it so useful. Is it difficult to write a plugin that will do it in emacs?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c43omb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Scriptod\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c43omb/emacs_and_vscode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c43omb/emacs_and_vscode/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561292118.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Renamed to Forthe, since [eForth is taken](https://duckduckgo.com/?q=eforth\\u0026t=ffab\\u0026ia=web).\\nDocs+examples\\n[spensertruex.com/forthe](https://spensertruex.com/forthe)\\n\\n\\u0026#x200B;\\n\\nAnd the code:\\n\\n\\u0026#x200B;\\n\\n\\n[the code here is 11 lines](https://spensertruex.com/static/eforth11.lisp) (hardly golfed, but boilerplate and docs have been removed).\\nEdit: Yes, it is a very simple FORTH macro. I don't thing elispers are about to drop their parentheses just yet because of this eleven line macro.\", \"author_fullname\": \"t2_3b7r0l6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"eForth, a FORTH in Emacs Lisp--14 lines\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c40pmh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 35, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 35, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561403056.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561304554.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERenamed to Forthe, since \\u003Ca href=\\\"https://duckduckgo.com/?q=eforth\\u0026amp;t=ffab\\u0026amp;ia=web\\\"\\u003EeForth is taken\\u003C/a\\u003E.\\nDocs+examples\\n\\u003Ca href=\\\"https://spensertruex.com/forthe\\\"\\u003Espensertruex.com/forthe\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd the code:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://spensertruex.com/static/eforth11.lisp\\\"\\u003Ethe code here is 11 lines\\u003C/a\\u003E (hardly golfed, but boilerplate and docs have been removed).\\nEdit: Yes, it is a very simple FORTH macro. I don\\u0026#39;t thing elispers are about to drop their parentheses just yet because of this eleven line macro.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c40pmh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bjyo\", \"num_crossposts\": 0, \"num_comments\": 21, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c40pmh/eforth_a_forth_in_emacs_lisp14_lines/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c40pmh/eforth_a_forth_in_emacs_lisp14_lines/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561275754.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Edit: No, this isn't spam, or a joke, or a provocation attempt. This is genuine curiosity.\", \"author_fullname\": \"t2_1ppio3x1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Give me your best arguments why I should use Emacs.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3x152\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561264974.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561279402.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEdit: No, this isn\\u0026#39;t spam, or a joke, or a provocation attempt. This is genuine curiosity.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3x152\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BlueManedHawk\", \"num_crossposts\": 0, \"num_comments\": 19, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3x152/give_me_your_best_arguments_why_i_should_use_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c3x152/give_me_your_best_arguments_why_i_should_use_emacs/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561250602.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"For some lines the line number automatically moves to the right and moves the document text as well.\\n\\nUsing Emacs with Evil Mode\\n\\nExample: https://imgur.com/Bqdd8yU\", \"author_fullname\": \"t2_jxphq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why is my line number moving randomly when I reach a line\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3wjxw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561276580.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor some lines the line number automatically moves to the right and moves the document text as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUsing Emacs with Evil Mode\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample: \\u003Ca href=\\\"https://imgur.com/Bqdd8yU\\\"\\u003Ehttps://imgur.com/Bqdd8yU\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3wjxw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"UnoPlusUno\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3wjxw/why_is_my_line_number_moving_randomly_when_i/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c3wjxw/why_is_my_line_number_moving_randomly_when_i/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561247780.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_b7h0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs for writers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3tzd3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 81, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 81, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561261889.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3tzd3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"b3n\", \"num_crossposts\": 0, \"num_comments\": 20, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3tzd3/emacs_for_writers/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/frankjonen/emacs-for-writers\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561233089.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have recently made an emacs config like doom on GitHub. It is called PandaMacs.\\n\\n[https://ryanyun2010.github.io/pandamacs/pandamacs](https://ryanyun2010.github.io/pandamacs/pandamacs)\\n\\nI would like some help so if you would mind can you help me, please. It would be appreciated.\\n\\nI made a post about PandaMacs at .\\n\\n[https://www.reddit.com/r/emacs/comments/c2qjuf/i\\\\_made\\\\_a\\\\_doom\\\\_like\\\\_emacs\\\\_config\\\\_that\\\\_i\\\\_call/](https://www.reddit.com/r/emacs/comments/c2qjuf/i_made_a_doom_like_emacs_config_that_i_call/)\", \"author_fullname\": \"t2_3n3fcln2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I need some help\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3so6l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561254664.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have recently made an emacs config like doom on GitHub. It is called PandaMacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://ryanyun2010.github.io/pandamacs/pandamacs\\\"\\u003Ehttps://ryanyun2010.github.io/pandamacs/pandamacs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like some help so if you would mind can you help me, please. It would be appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI made a post about PandaMacs at .\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/c2qjuf/i_made_a_doom_like_emacs_config_that_i_call/\\\"\\u003Ehttps://www.reddit.com/r/emacs/comments/c2qjuf/i_made_a_doom_like_emacs_config_that_i_call/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3so6l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ryrycongcong\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3so6l/i_need_some_help/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c3so6l/i_need_some_help/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561225864.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is it possible to add for 'ivy' completion at point in an overlay ability to show candidate numbers and ability to select candidate by 'M-number' (something like 'company' completion popup does) ?\", \"author_fullname\": \"t2_3xmoaa8d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"'ivy' completion at point feature\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3rupf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561250518.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to add for \\u0026#39;ivy\\u0026#39; completion at point in an overlay ability to show candidate numbers and ability to select candidate by \\u0026#39;M-number\\u0026#39; (something like \\u0026#39;company\\u0026#39; completion popup does) ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3rupf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aanatk\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3rupf/ivy_completion_at_point_feature/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c3rupf/ivy_completion_at_point_feature/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561221718.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_8dk3r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doom E08: Multiple cursor in Emacs with evil-multiedit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3r64t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 32, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/zXdT5jY_ui0?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E08: Multiple cursor in Emacs with evil-multiedit\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/zXdT5jY_ui0?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/zXdT5jY_ui0/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/zXdT5jY_ui0?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/c3r64t\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 32, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561247056.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3r64t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zaiste\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3r64t/emacs_doom_e08_multiple_cursor_in_emacs_with/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/zXdT5jY_ui0\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561218256.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E08: Multiple cursor in Emacs with evil-multiedit\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/zXdT5jY_ui0?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/zXdT5jY_ui0/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I was looking for an emacs unicode symbol and I found this website. It has a drawing pad and you scribble something and it finds unicode characters that look like your scribble.\\n\\n\\u0026#x200B;\\n\\nShape capture\\n\\n[http://shapecatcher.com/](http://shapecatcher.com/)\\n\\n\\u0026#x200B;\\n\\nMy first attempt at finding an emacs symbol\\n\\n[http://shapecatcher.com/unicode/block/Sinhala](http://shapecatcher.com/unicode/block/Sinhala)\\n\\n\\u0026#x200B;\\n\\n \\u0d8b - malayalam 0D8B\", \"author_fullname\": \"t2_euy5b\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Find cool unicode symbols easily - just scribble a shape with the mouse\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3p9n6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561236187.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was looking for an emacs unicode symbol and I found this website. It has a drawing pad and you scribble something and it finds unicode characters that look like your scribble.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShape capture\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://shapecatcher.com/\\\"\\u003Ehttp://shapecatcher.com/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy first attempt at finding an emacs symbol\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://shapecatcher.com/unicode/block/Sinhala\\\"\\u003Ehttp://shapecatcher.com/unicode/block/Sinhala\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0d8b - malayalam 0D8B\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3p9n6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dericbytes\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3p9n6/find_cool_unicode_symbols_easily_just_scribble_a/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c3p9n6/find_cool_unicode_symbols_easily_just_scribble_a/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561207387.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi! I'm the creator/maintainer of [org-brain](https://github.com/Kungsgeten/org-brain). I'm thinking about making a pretty major change to it, and wanted to ask its users what they think. Perhaps r/emacs isn't the best way to do this, but I couldn't think of a better one :)\\n\\nAnyway: In org-brain there are two type of entries: headline entries (which are headlines in an org-file) and file entries (which are the top level content, before the first headline, of an org-mode file). The major change I'm thinking about is to remove the support for file entries. The reason is a lot of extra code to support both, and also to try and optimize stuff.\\n\\nSo does anyone use file entries to such a grade that it would make org-brain not-worthwhile if they're removed?\\n\\n\\u0026#x200B;\\n\\nEDIT: Just to clearify; it will still be possible to have entries in separate files. Its just that the files (top level content) wont be seen as entries by org-brain. If you'd like to test, please try this branch [https://github.com/Kungsgeten/org-brain/tree/brain2](https://github.com/Kungsgeten/org-brain/tree/brain2) It provides commands starting with org-brain-rg, which uses ripgrep to search for entries.\", \"author_fullname\": \"t2_h123g\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-brain: Is file entries needed?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3om04\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 24, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 24, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561238477.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561231621.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi! I\\u0026#39;m the creator/maintainer of \\u003Ca href=\\\"https://github.com/Kungsgeten/org-brain\\\"\\u003Eorg-brain\\u003C/a\\u003E. I\\u0026#39;m thinking about making a pretty major change to it, and wanted to ask its users what they think. Perhaps \\u003Ca href=\\\"/r/emacs\\\"\\u003Er/emacs\\u003C/a\\u003E isn\\u0026#39;t the best way to do this, but I couldn\\u0026#39;t think of a better one :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway: In org-brain there are two type of entries: headline entries (which are headlines in an org-file) and file entries (which are the top level content, before the first headline, of an org-mode file). The major change I\\u0026#39;m thinking about is to remove the support for file entries. The reason is a lot of extra code to support both, and also to try and optimize stuff.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo does anyone use file entries to such a grade that it would make org-brain not-worthwhile if they\\u0026#39;re removed?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Just to clearify; it will still be possible to have entries in separate files. Its just that the files (top level content) wont be seen as entries by org-brain. If you\\u0026#39;d like to test, please try this branch \\u003Ca href=\\\"https://github.com/Kungsgeten/org-brain/tree/brain2\\\"\\u003Ehttps://github.com/Kungsgeten/org-brain/tree/brain2\\u003C/a\\u003E It provides commands starting with org-brain-rg, which uses ripgrep to search for entries.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3om04\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kungsgeten\", \"num_crossposts\": 0, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3om04/orgbrain_is_file_entries_needed/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c3om04/orgbrain_is_file_entries_needed/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561202821.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"G'day /r/emacs :)\\n\\nI've been a long time Vim user who has recently switched over to emacs (with evil). This isn't my first time doing the switch but so far it's been the smoothest so I have a feeling that this time I'll be sticking with Stallman ;P\\n\\nSo for some conext, when using Vim I generally have an instance of tmux running in a terminal with a single vertical split. On the left is Vim, and on the right is a shell I use to run and view compilation output (usually tests).\\n\\nWith Emacs I'm using the GUI, and it's super cool that for most languages (in this case I'm writing Rust) there's a minor mode which allows you to run compilation steps, tests, and whatever else you need, and the output shows up in what I believe is called a minibuffer (correct me if I'm wrong).\\n\\nI've recently found that by switching buffers you can have a vertical split and load the minibuffer into one of these splits, but if I tap `ESC` or `q` in the minibuffer then it closes and I'm back to seeing a regular buffer in the split. Additionally when I run the tests again, the minibuffer opens up horizontally at the bottom of the screen.\\n\\nIs there some module/setting/way to have the compilation buffer stay in the right vertical split until I close it like I would close a regular buffer (with `:q`)? Or can I change some settings to have the minibuffer open up in a right-most vertical split when I run my tests (with `, b t`)?\\n\\nSo far my solution has been to open a terminal with `:term` in the right-most split, but I find it isn't ideal. The main problem is that I have to navigate to it, enter insert mode, hit the up arrow (to reselect the test command), press enter, and navigate back to run the tests again. I would love it if I could just hit the keys I have setup to run the tests and then I see the output scrolling through some other buffer without leaving the one I'm editing in.\\n\\nThanks!! :)\", \"author_fullname\": \"t2_d955h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to persist the compilation buffer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3mpt0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561216740.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EG\\u0026#39;day \\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been a long time Vim user who has recently switched over to emacs (with evil). This isn\\u0026#39;t my first time doing the switch but so far it\\u0026#39;s been the smoothest so I have a feeling that this time I\\u0026#39;ll be sticking with Stallman ;P\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for some conext, when using Vim I generally have an instance of tmux running in a terminal with a single vertical split. On the left is Vim, and on the right is a shell I use to run and view compilation output (usually tests).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith Emacs I\\u0026#39;m using the GUI, and it\\u0026#39;s super cool that for most languages (in this case I\\u0026#39;m writing Rust) there\\u0026#39;s a minor mode which allows you to run compilation steps, tests, and whatever else you need, and the output shows up in what I believe is called a minibuffer (correct me if I\\u0026#39;m wrong).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve recently found that by switching buffers you can have a vertical split and load the minibuffer into one of these splits, but if I tap \\u003Ccode\\u003EESC\\u003C/code\\u003E or \\u003Ccode\\u003Eq\\u003C/code\\u003E in the minibuffer then it closes and I\\u0026#39;m back to seeing a regular buffer in the split. Additionally when I run the tests again, the minibuffer opens up horizontally at the bottom of the screen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there some module/setting/way to have the compilation buffer stay in the right vertical split until I close it like I would close a regular buffer (with \\u003Ccode\\u003E:q\\u003C/code\\u003E)? Or can I change some settings to have the minibuffer open up in a right-most vertical split when I run my tests (with \\u003Ccode\\u003E, b t\\u003C/code\\u003E)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo far my solution has been to open a terminal with \\u003Ccode\\u003E:term\\u003C/code\\u003E in the right-most split, but I find it isn\\u0026#39;t ideal. The main problem is that I have to navigate to it, enter insert mode, hit the up arrow (to reselect the test command), press enter, and navigate back to run the tests again. I would love it if I could just hit the keys I have setup to run the tests and then I see the output scrolling through some other buffer without leaving the one I\\u0026#39;m editing in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!! :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3mpt0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"joshleeb\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3mpt0/how_to_persist_the_compilation_buffer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c3mpt0/how_to_persist_the_compilation_buffer/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561187940.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I like to have a maximum line length like auto wordwrap and use the `\\\\\\\\` or th enter key to continue typing on the next line, but when I convert to HTML they are turned into line breaks instead of flowing to fill the boundaries set by their container.\\n\\nIs there some continuation character for this?\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Does orgmode have a line continuation character that does not create line breaks when converted to html?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3hjzt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561185355.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like to have a maximum line length like auto wordwrap and use the \\u003Ccode\\u003E\\\\\\\\\\u003C/code\\u003E or th enter key to continue typing on the next line, but when I convert to HTML they are turned into line breaks instead of flowing to fill the boundaries set by their container.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there some continuation character for this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3hjzt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3hjzt/does_orgmode_have_a_line_continuation_character/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c3hjzt/does_orgmode_have_a_line_continuation_character/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561156555.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I got useful answers for [my question](https://old.reddit.com/r/emacs/comments/c2xgky/is_there_a_package_which_can_search_for_multiple/) and I used vermiculus' command suggestion.\\n\\nI post the code here in case someone also finds it useful. It can be adapted for any command which has a grep-like output.\\n\\n (setq lexical-binding t)\\n\\n (defun my-multi-pattern-grep (patterns files)\\n (interactive \\\"sPatterns (separated with space): \\\\nsFiles (*): \\\")\\n (setq patterns (split-string patterns \\\" \\\" t))\\n (if (equal files \\\"\\\")\\n (setq files \\\"*\\\"))\\n (let* ((grep-use-null-device nil)\\n (first t)\\n (command (concat\\n (mapconcat 'identity\\n (mapcar (lambda (pattern)\\n (format \\\"grep -Z -l -i %s %s\\\"\\n pattern (if first (progn (setq first nil) files) \\\"\\\")))\\n patterns)\\n \\\" | xargs -0 \\\")\\n \\\" | xargs -0 grep -n -i \\\"\\n (format \\\"\\\\\\\"%s\\\\\\\"\\\" (mapconcat 'identity patterns \\\"\\\\\\\\|\\\")))))\\n\\n (let* ((orig compilation-finish-functions)\\n (finished (lambda (buf result)\\n (highlight-regexp (mapconcat 'identity patterns \\\"\\\\\\\\|\\\") 'hi-yellow)\\n (setq compilation-finish-functions orig))))\\n (add-to-list 'compilation-finish-functions finished)\\n (grep command))))\\n\\nIt's a simple solution, there are only 2 small issues with it:\\n\\n* At the end it runs the search again to collect all the matching lines. This could be optimized, but I usually search a few dozen number of files only, so for me performance is not an issue.\\n* The higlighting simply highlights the matching patterns in the buffer, so if some of the patterns might match parts of filenames then those are highlighted too. This could be fixed with a smarter highlighter code, but I simply used highlight-regexp.\", \"author_fullname\": \"t2_2z9w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Solution: multiple pattern searching with highlighting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3cqdg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561143435.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561163019.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI got useful answers for \\u003Ca href=\\\"https://old.reddit.com/r/emacs/comments/c2xgky/is_there_a_package_which_can_search_for_multiple/\\\"\\u003Emy question\\u003C/a\\u003E and I used vermiculus\\u0026#39; command suggestion.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI post the code here in case someone also finds it useful. It can be adapted for any command which has a grep-like output.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq lexical-binding t)\\n\\n(defun my-multi-pattern-grep (patterns files)\\n (interactive \\u0026quot;sPatterns (separated with space): \\\\nsFiles (*): \\u0026quot;)\\n (setq patterns (split-string patterns \\u0026quot; \\u0026quot; t))\\n (if (equal files \\u0026quot;\\u0026quot;)\\n (setq files \\u0026quot;*\\u0026quot;))\\n (let* ((grep-use-null-device nil)\\n (first t)\\n (command (concat\\n (mapconcat \\u0026#39;identity\\n (mapcar (lambda (pattern)\\n (format \\u0026quot;grep -Z -l -i %s %s\\u0026quot;\\n pattern (if first (progn (setq first nil) files) \\u0026quot;\\u0026quot;)))\\n patterns)\\n \\u0026quot; | xargs -0 \\u0026quot;)\\n \\u0026quot; | xargs -0 grep -n -i \\u0026quot;\\n (format \\u0026quot;\\\\\\u0026quot;%s\\\\\\u0026quot;\\u0026quot; (mapconcat \\u0026#39;identity patterns \\u0026quot;\\\\\\\\|\\u0026quot;)))))\\n\\n (let* ((orig compilation-finish-functions)\\n (finished (lambda (buf result)\\n (highlight-regexp (mapconcat \\u0026#39;identity patterns \\u0026quot;\\\\\\\\|\\u0026quot;) \\u0026#39;hi-yellow)\\n (setq compilation-finish-functions orig))))\\n (add-to-list \\u0026#39;compilation-finish-functions finished)\\n (grep command))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a simple solution, there are only 2 small issues with it:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAt the end it runs the search again to collect all the matching lines. This could be optimized, but I usually search a few dozen number of files only, so for me performance is not an issue.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe higlighting simply highlights the matching patterns in the buffer, so if some of the patterns might match parts of filenames then those are highlighted too. This could be fixed with a smarter highlighter code, but I simply used highlight-regexp.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3cqdg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kcin\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3cqdg/solution_multiple_pattern_searching_with/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c3cqdg/solution_multiple_pattern_searching_with/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561134219.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi guys, what customization/packages do you use when doing react dev on Emacs?\", \"author_fullname\": \"t2_dfgxpcx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Best Packages For React.js Development?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3cjw5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561162222.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys, what customization/packages do you use when doing react dev on Emacs?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3cjw5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"chiefdrafahl\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3cjw5/best_packages_for_reactjs_development/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c3cjw5/best_packages_for_reactjs_development/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561133422.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So I know that I can use org blocks and how to do literate programming etc... What I'm interested in is executing this code block on a docker container. So let's say I have a python3 container running in the background. Is there anyway to send the code from the block to that container?\\n\\nWhat are the hoops I would have to jump through to get this up and running?\", \"author_fullname\": \"t2_uu2a8q3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Executing org blocks with a docker container?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3bz6e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561159570.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I know that I can use org blocks and how to do literate programming etc... What I\\u0026#39;m interested in is executing this code block on a docker container. So let\\u0026#39;s say I have a python3 container running in the background. Is there anyway to send the code from the block to that container?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat are the hoops I would have to jump through to get this up and running?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3bz6e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"misterchiply\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3bz6e/executing_org_blocks_with_a_docker_container/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c3bz6e/executing_org_blocks_with_a_docker_container/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561130770.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_tfyac\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Creating pull requests from emacs with magit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3ammw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561152892.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"prathamesh.tech\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3ammw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PrathameshSonpatki\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c3ammw/creating_pull_requests_from_emacs_with_magit/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://prathamesh.tech/2019/06/21/creating-pull-requests-from-emacs/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561124092.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Has anybody noticed that indexing in mu4e 1.2 is much slower?\\n\\nI find that it often sits with the \\\"searching\\\" message when switching folders and that actions like reply to message don't work when it's indexing in the background. \\n\\nIs it just coincidence on my side or has anybody else noticed similar issues with 1.2?\", \"author_fullname\": \"t2_xkyvg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Mu4e 1.2 indexing performance\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c388vv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561136304.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHas anybody noticed that indexing in mu4e 1.2 is much slower?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI find that it often sits with the \\u0026quot;searching\\u0026quot; message when switching folders and that actions like reply to message don\\u0026#39;t work when it\\u0026#39;s indexing in the background. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs it just coincidence on my side or has anybody else noticed similar issues with 1.2?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c388vv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lrochfort\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c388vv/mu4e_12_indexing_performance/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c388vv/mu4e_12_indexing_performance/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561107504.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"title\", \"author_fullname\": \"t2_yotx3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ayo mods how bout yall use the emacs logo as the subreddit icon, many thanks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c37vf7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 120, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 120, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561133124.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etitle\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c37vf7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DenuvoHater332\", \"num_crossposts\": 0, \"num_comments\": 36, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c37vf7/ayo_mods_how_bout_yall_use_the_emacs_logo_as_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c37vf7/ayo_mods_how_bout_yall_use_the_emacs_logo_as_the/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561104324.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I occasionally get this message when I try to open files. What does it mean and how do I prevent it from popping up?\\n\\n\\u0026#x200B;\\n\\nI cannot make much sense of the message content itself, so help is appreciated...\", \"author_fullname\": \"t2_3p3qqcr1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"the local variable list in /home/xyz containts values that may not be safe (*).\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c37oki\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561131581.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI occasionally get this message when I try to open files. What does it mean and how do I prevent it from popping up?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cannot make much sense of the message content itself, so help is appreciated...\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c37oki\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sewing31\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c37oki/the_local_variable_list_in_homexyz_containts/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c37oki/the_local_variable_list_in_homexyz_containts/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561102781.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I find function which collapse all filter groups in ibuffer\\n\\n (defun ibuffer-collapse-all-filter-groups ()\\n \\\"Collapse all filter groups at once\\\"\\n (interactive)\\n (setq ibuffer-hidden-filter-groups\\n (mapcar #'car (ibuffer-current-filter-groups-with-position)))\\n (ibuffer-update nil t))\\n\\nBut also I want to expand all filter groups. How can I expand all filter groups in ibuffer?\", \"author_fullname\": \"t2_wzhv5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to expand all filter groups in ibuffer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c34aji\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561109237.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI find function which collapse all filter groups in ibuffer\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun ibuffer-collapse-all-filter-groups ()\\n \\u0026quot;Collapse all filter groups at once\\u0026quot;\\n (interactive)\\n (setq ibuffer-hidden-filter-groups\\n (mapcar #\\u0026#39;car (ibuffer-current-filter-groups-with-position)))\\n (ibuffer-update nil t))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBut also I want to expand all filter groups. How can I expand all filter groups in ibuffer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c34aji\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hanjaelee\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c34aji/how_to_expand_all_filter_groups_in_ibuffer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c34aji/how_to_expand_all_filter_groups_in_ibuffer/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561080437.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have seen lot's of requests for guides on setting up a 'pure' emacs. It was made in 2017. I think it is a good guide to recommend.\\n\\n\\u0026#x200B;\\n\\nConfiguring my Emacs. Vim users are not invited!\\n\\n[https://www.youtube.com/watch?v=PKaJoqQQoIA](https://www.youtube.com/watch?v=PKaJoqQQoIA)\\n\\n\\u0026#x200B;\\n\\nHe also has a useful haskell guide setup:\\n\\n\\u0026#x200B;\\n\\nMy Haskell Setup\\n\\n[https://www.youtube.com/watch?v=5p2Aq3bRuL0](https://www.youtube.com/watch?v=5p2Aq3bRuL0)\", \"author_fullname\": \"t2_euy5b\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Beginners Screencast - Setting up Emacs From Scratch By Tsoding\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c32pfu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561071982.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561099718.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have seen lot\\u0026#39;s of requests for guides on setting up a \\u0026#39;pure\\u0026#39; emacs. It was made in 2017. I think it is a good guide to recommend.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EConfiguring my Emacs. Vim users are not invited!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=PKaJoqQQoIA\\\"\\u003Ehttps://www.youtube.com/watch?v=PKaJoqQQoIA\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe also has a useful haskell guide setup:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy Haskell Setup\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=5p2Aq3bRuL0\\\"\\u003Ehttps://www.youtube.com/watch?v=5p2Aq3bRuL0\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c32pfu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dericbytes\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c32pfu/beginners_screencast_setting_up_emacs_from/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c32pfu/beginners_screencast_setting_up_emacs_from/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561070918.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If I have:\\n\\n * Section 1\\n Some text\\n\\nand my code finds \\\"Section 1\\\", how do I return \\\"Some text\\\"?\", \"author_fullname\": \"t2_rrtp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org API, text of section?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c31lth\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561093550.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I have:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Section 1\\nSome text\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eand my code finds \\u0026quot;Section 1\\u0026quot;, how do I return \\u0026quot;Some text\\u0026quot;?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c31lth\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nagora\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c31lth/org_api_text_of_section/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c31lth/org_api_text_of_section/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561064750.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_25lvli7n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Setting Up and Using Emacs InfoMode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2ys4e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561079902.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"pchristensen.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2ys4e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nickdrozd\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2ys4e/setting_up_and_using_emacs_infomode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://pchristensen.com/blog/articles/setting-up-and-using-emacs-infomode/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561051102.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I would like to have an optional for loop in a `cl-loop`, such that if the list/sequence/whatever that is iterated over is empty, it will still execute the for loop, but just set that list's iteration variable to `nil`. As a notional example, suppose I have the following function:\\n\\n (defun name-list (first-names last-names \\u0026optional titles)\\n (cl-loop for a in first-names\\n and b in last-names\\n and c in titles\\n collect (concat a b c)))\\n\\nIf I pass it all three arguments, it works as expected:\\n\\n (name-list '(\\\"John\\\" \\\"Jane\\\" \\\"Jerry\\\" \\\"Jake\\\") '(\\\"Wayne\\\" \\\"Seymour\\\" \\\"Seinfeld\\\" \\\"Peralta\\\") '(\\\"PhD\\\" \\\"Esquire\\\" \\\"MD\\\" \\\"Jr\\\")) ==\\u003E (\\\"JohnWaynePhD\\\" \\\"JaneSeymourEsquire\\\" \\\"JerrySeinfeldMD\\\" \\\"JakePeraltaJr\\\")\\n\\nHowever if I pass it only two arguments, this function returns `nil`:\\n\\n (name-list '(\\\"John\\\" \\\"Jane\\\" \\\"Jerry\\\" \\\"Jake\\\") '(\\\"Wayne\\\" \\\"Seymour\\\" \\\"Seinfeld\\\" \\\"Peralta\\\")) ==\\u003E nil\\n\\ninstead of the concatenations of first and last names with no titles:\\n\\n (name-list '(\\\"John\\\" \\\"Jane\\\" \\\"Jerry\\\" \\\"Jake\\\") '(\\\"Wayne\\\" \\\"Seymour\\\" \\\"Seinfeld\\\" \\\"Peralta\\\")) ==\\u003E (\\\"JohnWayne\\\" \\\"JaneSeymour\\\" \\\"JerrySeinfeld\\\" \\\"JakePeralta\\\")\\n\\nIs there a simple way to get the behavior I want? I know that I could just use an `if` like:\\n\\n (defun name-list (first-names last-names \\u0026optional titles)\\n (if titles\\n (cl-loop for a in first-names\\n and b in last-names\\n and c in titles\\n collect (concat a b c)))\\n (cl-loop for a in first-names\\n and b in last-names\\n collect (concat a b)))\\n\\nBut most of the code in the two `cl-loop` calls is the same.\", \"author_fullname\": \"t2_7nfrv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to make extra for loop optional in cl-loop?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2y84j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561102533.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561077249.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to have an optional for loop in a \\u003Ccode\\u003Ecl-loop\\u003C/code\\u003E, such that if the list/sequence/whatever that is iterated over is empty, it will still execute the for loop, but just set that list\\u0026#39;s iteration variable to \\u003Ccode\\u003Enil\\u003C/code\\u003E. As a notional example, suppose I have the following function:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun name-list (first-names last-names \\u0026amp;optional titles)\\n (cl-loop for a in first-names\\n and b in last-names\\n and c in titles\\n collect (concat a b c)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf I pass it all three arguments, it works as expected:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(name-list \\u0026#39;(\\u0026quot;John\\u0026quot; \\u0026quot;Jane\\u0026quot; \\u0026quot;Jerry\\u0026quot; \\u0026quot;Jake\\u0026quot;) \\u0026#39;(\\u0026quot;Wayne\\u0026quot; \\u0026quot;Seymour\\u0026quot; \\u0026quot;Seinfeld\\u0026quot; \\u0026quot;Peralta\\u0026quot;) \\u0026#39;(\\u0026quot;PhD\\u0026quot; \\u0026quot;Esquire\\u0026quot; \\u0026quot;MD\\u0026quot; \\u0026quot;Jr\\u0026quot;)) ==\\u0026gt; (\\u0026quot;JohnWaynePhD\\u0026quot; \\u0026quot;JaneSeymourEsquire\\u0026quot; \\u0026quot;JerrySeinfeldMD\\u0026quot; \\u0026quot;JakePeraltaJr\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHowever if I pass it only two arguments, this function returns \\u003Ccode\\u003Enil\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(name-list \\u0026#39;(\\u0026quot;John\\u0026quot; \\u0026quot;Jane\\u0026quot; \\u0026quot;Jerry\\u0026quot; \\u0026quot;Jake\\u0026quot;) \\u0026#39;(\\u0026quot;Wayne\\u0026quot; \\u0026quot;Seymour\\u0026quot; \\u0026quot;Seinfeld\\u0026quot; \\u0026quot;Peralta\\u0026quot;)) ==\\u0026gt; nil\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Einstead of the concatenations of first and last names with no titles:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(name-list \\u0026#39;(\\u0026quot;John\\u0026quot; \\u0026quot;Jane\\u0026quot; \\u0026quot;Jerry\\u0026quot; \\u0026quot;Jake\\u0026quot;) \\u0026#39;(\\u0026quot;Wayne\\u0026quot; \\u0026quot;Seymour\\u0026quot; \\u0026quot;Seinfeld\\u0026quot; \\u0026quot;Peralta\\u0026quot;)) ==\\u0026gt; (\\u0026quot;JohnWayne\\u0026quot; \\u0026quot;JaneSeymour\\u0026quot; \\u0026quot;JerrySeinfeld\\u0026quot; \\u0026quot;JakePeralta\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs there a simple way to get the behavior I want? I know that I could just use an \\u003Ccode\\u003Eif\\u003C/code\\u003E like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun name-list (first-names last-names \\u0026amp;optional titles)\\n (if titles\\n (cl-loop for a in first-names\\n and b in last-names\\n and c in titles\\n collect (concat a b c)))\\n (cl-loop for a in first-names\\n and b in last-names\\n collect (concat a b)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBut most of the code in the two \\u003Ccode\\u003Ecl-loop\\u003C/code\\u003E calls is the same.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2y84j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cottasteel\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2y84j/how_to_make_extra_for_loop_optional_in_clloop/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2y84j/how_to_make_extra_for_loop_optional_in_clloop/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561048449.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello everyone! I am trying to move my work to GNU type software, OS, and programs because I love what it stands for. I am new to using Emacs, coding, and I am having a really hard time (shocker).... Maybe it is my lack of understanding of how programs work. To be brief, I am going to bullet point my question:\\n\\n**context:** \\n\\nI have run through the Emacs Tutorial\\n\\nI like to think I am an intermediate LaTeX, and beginner Octave user\\n\\nI am a math PhD Student (shout out to my brothers and sisters in the field!!!)\\n\\nRecently got a github account and have been looking up other's emacs configurations to try and get a grip on how to do it myself. \\n\\n\\u0026#x200B;\\n\\n**Question(s):**\\n\\n* What are .el files, where do I put them, and can are there be multiple different types of them depending on the packages?\\n* How do I \\\"enable\\\" a package after I install it? \\n\\n\\u0026#x200B;\\n\\n\\\\~ When people post there configurations on Github , I see this:\\n\\n\\\\[quoting git\\\\] \\n\\nThis view is where I see all my inbox items: it is a simple list of captured items in inbox.org.\\n\\n*(require 'org-agenda) (setq me/org-agenda-inbox-view \\\\`(\\\"i\\\" \\\"Inbox\\\" todo \\\"\\\" ((org-agenda-files '(\\\"\\\\~/.org/gtd/inbox.org\\\"))))) (add-to-list 'org-agenda-custom-commands \\\\`,me/org-agenda-inbox-view)* \\n\\n\\u0026#x200B;\\n\\n\\\\[end of quote\\\\]\\n\\n\\u0026#x200B;\\n\\n* How is this helpful? Where does this code go? Can I just yank that code and put it in the \\\\***scratch**\\\\* buffer? What does that buffer even do?\\n* I am trying to take notes for classes in org mode and use it for my GTD (getting things done) routine, but it is a mystery to me as to how I can use the agenda or set reminders. \\n\\n\\u0026#x200B;\\n\\nThat's all the questions I can think of at the moment...\", \"author_fullname\": \"t2_vdi8z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"So, a little lost...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2xit4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561073860.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone! I am trying to move my work to GNU type software, OS, and programs because I love what it stands for. I am new to using Emacs, coding, and I am having a really hard time (shocker).... Maybe it is my lack of understanding of how programs work. To be brief, I am going to bullet point my question:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003Econtext:\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have run through the Emacs Tutorial\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI like to think I am an intermediate LaTeX, and beginner Octave user\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am a math PhD Student (shout out to my brothers and sisters in the field!!!)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERecently got a github account and have been looking up other\\u0026#39;s emacs configurations to try and get a grip on how to do it myself. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion(s):\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EWhat are .el files, where do I put them, and can are there be multiple different types of them depending on the packages?\\u003C/li\\u003E\\n\\u003Cli\\u003EHow do I \\u0026quot;enable\\u0026quot; a package after I install it? \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E~ When people post there configurations on Github , I see this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[quoting git] \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis view is where I see all my inbox items: it is a simple list of captured items in inbox.org.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E(require \\u0026#39;org-agenda) (setq me/org-agenda-inbox-view `(\\u0026quot;i\\u0026quot; \\u0026quot;Inbox\\u0026quot; todo \\u0026quot;\\u0026quot; ((org-agenda-files \\u0026#39;(\\u0026quot;~/.org/gtd/inbox.org\\u0026quot;))))) (add-to-list \\u0026#39;org-agenda-custom-commands `,me/org-agenda-inbox-view)\\u003C/em\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[end of quote]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EHow is this helpful? Where does this code go? Can I just yank that code and put it in the *\\u003Cstrong\\u003Escratch\\u003C/strong\\u003E* buffer? What does that buffer even do?\\u003C/li\\u003E\\n\\u003Cli\\u003EI am trying to take notes for classes in org mode and use it for my GTD (getting things done) routine, but it is a mystery to me as to how I can use the agenda or set reminders. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s all the questions I can think of at the moment...\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2xit4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aronoco\", \"num_crossposts\": 0, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2xit4/so_a_little_lost/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2xit4/so_a_little_lost/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561045060.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"So like grep, but searches in the full file. E.g. if I search for the patterns \\\"cat\\\", \\\"dog\\\" and \\\"mouse\\\" then I want to see all matching files which contain **all** of these patterns anywhere in the file and the results are displayed with all matching lines listed from the files (one line can match one or more of the patterns, but there should be a match for all patterns in the file) and the matching patterns are highlighted in the displayed lines.\\n\\nIs there such a package?\", \"author_fullname\": \"t2_2z9w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a package which can search for multiple patterns in files and then display the matches highlighted?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2xgky\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561073546.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo like grep, but searches in the full file. E.g. if I search for the patterns \\u0026quot;cat\\u0026quot;, \\u0026quot;dog\\u0026quot; and \\u0026quot;mouse\\u0026quot; then I want to see all matching files which contain \\u003Cstrong\\u003Eall\\u003C/strong\\u003E of these patterns anywhere in the file and the results are displayed with all matching lines listed from the files (one line can match one or more of the patterns, but there should be a match for all patterns in the file) and the matching patterns are highlighted in the displayed lines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there such a package?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2xgky\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kcin\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2xgky/is_there_a_package_which_can_search_for_multiple/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2xgky/is_there_a_package_which_can_search_for_multiple/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561044746.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I hate to do this, because I know variations of this question have been asked many times (I've read probably 20 of them). But for some reason I just can't seem to accomplish what I want.\\n\\nI'm a longtime emacs user experimenting with modal editing in emacs for various reasons. But, not surprisingly, it's a struggle not to start typing the wrong thing at the wrong time.\\n\\nI want to turn my modeline background (the whole thing) green when I'm in insert/hybrid mode, and red when I'm in normal mode. \\n\\nI'm running spacemacs-base, and I don't think I'm actively using any special modelines.\\n\\nHere are the things I've tried, all of which do _something_, but none of which do what I want:\\n\\n (setq \\n evil-normal-state-tag (propertize \\\" \\u003CN\\u003E \\\" 'face '((:background \\\"red\\\" :foreground \\\"black\\\")))\\n evil-hybrid-state-tag (propertize \\\" \\u003CH\\u003E \\\" 'face '((:background \\\"green\\\" :foreground \\\"black\\\"))))\\n\\n\\n^ This just makes the the tag on the modeline change color. Also, for what it's worth, it swaps the background and foreground (i.e. it's actually the text that it is the color, and the background that is black), probably for some clever reason about how the modeline is already the inverse of the rest of my frame. I don't really understand. :)\\n\\n\\n (defun turn-buffer-modeline-green ()\\n (interactive)\\n (set-face-foreground 'mode-line-inactive \\\"white\\\") ;; v2 leave out this line\\n (set-face-foreground 'mode-line \\\"#00ff00\\\"))\\n\\n (defun turn-buffer-modeline-white ()\\n (interactive)\\n (set-face-foreground 'mode-line-inactive \\\"white\\\") ;; v2 leave out this line\\n (set-face-foreground 'mode-line \\\"#ffffff\\\"))\\n\\n (add-hook 'evil-hybrid-state-entry-hook 'turn-buffer-modeline-green)\\n (add-hook 'evil-hybrid-state-exit-hook 'turn-buffer-modeline-white)\\n\\n^ This one works for the current buffer. As soon as I switch buffers, the green modeline follows me to the current buffer, even though the current buffer is in Normal mode. If I leave out the `'mode-line-inactive` bits, then _all_ the modelines of all my buffers turn green.\\n\\nI also tried something called `buffer-face-set`, despite not being able to find any concrete examples of it on the web. The Emacs Wiki [page](https://www.emacswiki.org/emacs/FacesPerBuffer) for it mentions it, and then goes on to never actually show it in action. The Emacs help page says some stuff that I can't find any real references for, and in any case, this one has not worked yet because it's effectively inverting the faces of my entire screen. I'm sure I'm just using it wrong:\\n\\n (defun turn-buffer-modeline-green ()\\n (interactive)\\n (buffer-face-set 'mode-line :background \\\"green\\\"))\\n\\nVisually, that one takes me from an emacs that looks like [this](https://www.dropbox.com/s/35ca4tdjqh2y1f5/Screenshot%202019-06-20%2009.14.13.png?dl=0)\\nto an emacs that looks like [this](https://www.dropbox.com/s/y2oroc4ykcndj3l/Screenshot%202019-06-20%2009.14.23.png?dl=0).\\nRunning `M-x buffer-face-mode` after this happens reverts everything to 'normal.'\\n\\nI've tried this, from [here](https://stackoverflow.com/questions/15906332/change-emacs-mode-line-color-based-on-major-mode), and it seems to do absolutely nothing in my case.\\n\\n (defun turn-buffer-modeline-green ()\\n (interactive)\\n (face-remap-add-relative\\n 'mode-line '((:foreground: \\\"black\\\" :background: \\\"green\\\") mode-line)))\\n\\nIn any case, I know this detailed of a question is probably a long shot. But I've been trying to learn elisp, and I would love to get this figured out, so any help is appreciated.\", \"author_fullname\": \"t2_96j38\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help with evil-mode and modeline colors\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2wnwr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561041958.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561069575.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI hate to do this, because I know variations of this question have been asked many times (I\\u0026#39;ve read probably 20 of them). But for some reason I just can\\u0026#39;t seem to accomplish what I want.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a longtime emacs user experimenting with modal editing in emacs for various reasons. But, not surprisingly, it\\u0026#39;s a struggle not to start typing the wrong thing at the wrong time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to turn my modeline background (the whole thing) green when I\\u0026#39;m in insert/hybrid mode, and red when I\\u0026#39;m in normal mode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m running spacemacs-base, and I don\\u0026#39;t think I\\u0026#39;m actively using any special modelines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are the things I\\u0026#39;ve tried, all of which do \\u003Cem\\u003Esomething\\u003C/em\\u003E, but none of which do what I want:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq \\n evil-normal-state-tag (propertize \\u0026quot; \\u0026lt;N\\u0026gt; \\u0026quot; \\u0026#39;face \\u0026#39;((:background \\u0026quot;red\\u0026quot; :foreground \\u0026quot;black\\u0026quot;)))\\n evil-hybrid-state-tag (propertize \\u0026quot; \\u0026lt;H\\u0026gt; \\u0026quot; \\u0026#39;face \\u0026#39;((:background \\u0026quot;green\\u0026quot; :foreground \\u0026quot;black\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E^ This just makes the the tag on the modeline change color. Also, for what it\\u0026#39;s worth, it swaps the background and foreground (i.e. it\\u0026#39;s actually the text that it is the color, and the background that is black), probably for some clever reason about how the modeline is already the inverse of the rest of my frame. I don\\u0026#39;t really understand. :)\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun turn-buffer-modeline-green ()\\n (interactive)\\n (set-face-foreground \\u0026#39;mode-line-inactive \\u0026quot;white\\u0026quot;) ;; v2 leave out this line\\n (set-face-foreground \\u0026#39;mode-line \\u0026quot;#00ff00\\u0026quot;))\\n\\n(defun turn-buffer-modeline-white ()\\n (interactive)\\n (set-face-foreground \\u0026#39;mode-line-inactive \\u0026quot;white\\u0026quot;) ;; v2 leave out this line\\n (set-face-foreground \\u0026#39;mode-line \\u0026quot;#ffffff\\u0026quot;))\\n\\n(add-hook \\u0026#39;evil-hybrid-state-entry-hook \\u0026#39;turn-buffer-modeline-green)\\n(add-hook \\u0026#39;evil-hybrid-state-exit-hook \\u0026#39;turn-buffer-modeline-white)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E^ This one works for the current buffer. As soon as I switch buffers, the green modeline follows me to the current buffer, even though the current buffer is in Normal mode. If I leave out the \\u003Ccode\\u003E\\u0026#39;mode-line-inactive\\u003C/code\\u003E bits, then \\u003Cem\\u003Eall\\u003C/em\\u003E the modelines of all my buffers turn green.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also tried something called \\u003Ccode\\u003Ebuffer-face-set\\u003C/code\\u003E, despite not being able to find any concrete examples of it on the web. The Emacs Wiki \\u003Ca href=\\\"https://www.emacswiki.org/emacs/FacesPerBuffer\\\"\\u003Epage\\u003C/a\\u003E for it mentions it, and then goes on to never actually show it in action. The Emacs help page says some stuff that I can\\u0026#39;t find any real references for, and in any case, this one has not worked yet because it\\u0026#39;s effectively inverting the faces of my entire screen. I\\u0026#39;m sure I\\u0026#39;m just using it wrong:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun turn-buffer-modeline-green ()\\n (interactive)\\n (buffer-face-set \\u0026#39;mode-line :background \\u0026quot;green\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EVisually, that one takes me from an emacs that looks like \\u003Ca href=\\\"https://www.dropbox.com/s/35ca4tdjqh2y1f5/Screenshot%202019-06-20%2009.14.13.png?dl=0\\\"\\u003Ethis\\u003C/a\\u003E\\nto an emacs that looks like \\u003Ca href=\\\"https://www.dropbox.com/s/y2oroc4ykcndj3l/Screenshot%202019-06-20%2009.14.23.png?dl=0\\\"\\u003Ethis\\u003C/a\\u003E.\\nRunning \\u003Ccode\\u003EM-x buffer-face-mode\\u003C/code\\u003E after this happens reverts everything to \\u0026#39;normal.\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve tried this, from \\u003Ca href=\\\"https://stackoverflow.com/questions/15906332/change-emacs-mode-line-color-based-on-major-mode\\\"\\u003Ehere\\u003C/a\\u003E, and it seems to do absolutely nothing in my case.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun turn-buffer-modeline-green ()\\n (interactive)\\n (face-remap-add-relative\\n \\u0026#39;mode-line \\u0026#39;((:foreground: \\u0026quot;black\\u0026quot; :background: \\u0026quot;green\\u0026quot;) mode-line)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIn any case, I know this detailed of a question is probably a long shot. But I\\u0026#39;ve been trying to learn elisp, and I would love to get this figured out, so any help is appreciated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2wnwr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"petergaultney\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2wnwr/help_with_evilmode_and_modeline_colors/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2wnwr/help_with_evilmode_and_modeline_colors/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561040775.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am a Vim user trying to transition to emacs, but I won't do it if I can't use my vim keybindings. I tried to install evil mode by cloning https://github.com/emacs-evil/evil.git, and although I have the evil directory under .emacs.d and these lines: https://www.emacswiki.org/emacs/Evil#toc4 in my ~/.emacs, M-x evil-mode doesn't load evil and I can't seem to use the evil states either. Any thoughts?\", \"author_fullname\": \"t2_3y4czgc7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Trouble Installing Evil Mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2uduk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561055449.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am a Vim user trying to transition to emacs, but I won\\u0026#39;t do it if I can\\u0026#39;t use my vim keybindings. I tried to install evil mode by cloning \\u003Ca href=\\\"https://github.com/emacs-evil/evil.git\\\"\\u003Ehttps://github.com/emacs-evil/evil.git\\u003C/a\\u003E, and although I have the evil directory under .emacs.d and these lines: \\u003Ca href=\\\"https://www.emacswiki.org/emacs/Evil#toc4\\\"\\u003Ehttps://www.emacswiki.org/emacs/Evil#toc4\\u003C/a\\u003E in my ~/.emacs, M-x evil-mode doesn\\u0026#39;t load evil and I can\\u0026#39;t seem to use the evil states either. Any thoughts?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2uduk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pwang_jo\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2uduk/trouble_installing_evil_mode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2uduk/trouble_installing_evil_mode/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561026649.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_ue0uaio\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"agzam/mw-thesaurus.el: Merriam-Webster Thesaurus in Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2u0hb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 53, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 53, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561052625.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2u0hb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rajasegarc\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2u0hb/agzammwthesaurusel_merriamwebster_thesaurus_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/agzam/mw-thesaurus.el\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561023825.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Short post this week because I was (and still am, really) trying to figure out the org2web issues I posted about in my previous post. [https://jonathanabennett.github.io/blog/2019/06/20/python-and-emacs-pt.-1/](https://jonathanabennett.github.io/blog/2019/06/20/python-and-emacs-pt.-1/)\\n\\n\\u0026#x200B;\\n\\nAdditionally, I just discovered pipenv, which works around one of the bigger obstacles I had with python development in Emacs (I don't want tools like autopep8 or black cluttering my project's virtualenv, but Emacs only seemed to want 1 virtualenv active at a time). There's also a pipenv porcelain in Emacs (pipenv.el) that I haven't had a chance to properly explore.\\n\\n\\u0026#x200B;\\n\\nNext week will focus on keybindings. I've discovered general.el this week and find it much more flexible and useful than evil-leader, so I'm working on putting all my bindings (evil or otherwise) into general.el. I considered Hydra, but I don't need the popup window feature that seems to be such a key part of hydra since I use which-key. Unless I'm missing something about what Hydra does.\\n\\n\\u0026#x200B;\\n\\nEDIT: Forgot the link like a noob!\", \"author_fullname\": \"t2_jqpn4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs and Python Pt. 1\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2tt8a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 20, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 20, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561051062.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShort post this week because I was (and still am, really) trying to figure out the org2web issues I posted about in my previous post. \\u003Ca href=\\\"https://jonathanabennett.github.io/blog/2019/06/20/python-and-emacs-pt.-1/\\\"\\u003Ehttps://jonathanabennett.github.io/blog/2019/06/20/python-and-emacs-pt.-1/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdditionally, I just discovered pipenv, which works around one of the bigger obstacles I had with python development in Emacs (I don\\u0026#39;t want tools like autopep8 or black cluttering my project\\u0026#39;s virtualenv, but Emacs only seemed to want 1 virtualenv active at a time). There\\u0026#39;s also a pipenv porcelain in Emacs (pipenv.el) that I haven\\u0026#39;t had a chance to properly explore.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext week will focus on keybindings. I\\u0026#39;ve discovered general.el this week and find it much more flexible and useful than evil-leader, so I\\u0026#39;m working on putting all my bindings (evil or otherwise) into general.el. I considered Hydra, but I don\\u0026#39;t need the popup window feature that seems to be such a key part of hydra since I use which-key. Unless I\\u0026#39;m missing something about what Hydra does.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Forgot the link like a noob!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2tt8a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"doulos05\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2tt8a/emacs_and_python_pt_1/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2tt8a/emacs_and_python_pt_1/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561022262.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Using Spacemacs and its go layer.\\n\\nUsing `Tramp` in Emacs ssh to remote server to edit go file. After saving the file, it will check the syntax with `gofmt` . But every time it shows the error below:\\n\\n[error img](https://i.stack.imgur.com/CptpS.png)\\n\\nI have tried install these packages at localhost as official guide:\\n\\n```\\n go get -u -v github.com/nsf/gocode\\n go get -u -v github.com/rogpeppe/godef\\n go get -u -v golang.org/x/tools/cmd/guru\\n go get -u -v golang.org/x/tools/cmd/gorename\\n go get -u -v golang.org/x/tools/cmd/goimports\\n\\n go get -u -v github.com/alecthomas/gometalinter\\n gometalinter --install --update\\n```\\n\\n\\u003E https://github.com/syl20bnr/spacemacs/tree/master/layers/%2Blang/go\\n\\nAlso set `(go :variables go-use-gometalinter t)`(or `(setq gofmt-command \\\"goimports\\\")`) in the `~/.spacemacs` file. But not work. Indeed, there aren't go runtime at remote server where go source exist.\\nSo where it looking for and went a alert? How to avoid it?\", \"author_fullname\": \"t2_35wxi4tx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to avoid showing gofmt fail error when saving go code every time in Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2t53g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1561082339.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561045471.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsing Spacemacs and its go layer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUsing \\u003Ccode\\u003ETramp\\u003C/code\\u003E in Emacs ssh to remote server to edit go file. After saving the file, it will check the syntax with \\u003Ccode\\u003Egofmt\\u003C/code\\u003E . But every time it shows the error below:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.stack.imgur.com/CptpS.png\\\"\\u003Eerror img\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have tried install these packages at localhost as official guide:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\n go get -u -v github.com/nsf/gocode\\n go get -u -v github.com/rogpeppe/godef\\n go get -u -v golang.org/x/tools/cmd/guru\\n go get -u -v golang.org/x/tools/cmd/gorename\\n go get -u -v golang.org/x/tools/cmd/goimports\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ego get -u -v github.com/alecthomas/gometalinter\\ngometalinter --install --update\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E```\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/syl20bnr/spacemacs/tree/master/layers/%2Blang/go\\\"\\u003Ehttps://github.com/syl20bnr/spacemacs/tree/master/layers/%2Blang/go\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAlso set \\u003Ccode\\u003E(go :variables go-use-gometalinter t)\\u003C/code\\u003E(or \\u003Ccode\\u003E(setq gofmt-command \\u0026quot;goimports\\u0026quot;)\\u003C/code\\u003E) in the \\u003Ccode\\u003E~/.spacemacs\\u003C/code\\u003E file. But not work. Indeed, there aren\\u0026#39;t go runtime at remote server where go source exist.\\nSo where it looking for and went a alert? How to avoid it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2t53g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"seikyo_0402\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2t53g/how_to_avoid_showing_gofmt_fail_error_when_saving/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2t53g/how_to_avoid_showing_gofmt_fail_error_when_saving/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561016671.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I sucessfully installed lsp-java and it's components. After making a simple Main class with Scanner method, I executed it with `dap-java-debug` but the debug buffer seems a generic text-editing one.\\n\\n\\u0026#x200B;\\n\\nHow can I execute and test a Java program with lot's of command-line inputs? It's possible using dap-mode?\", \"author_fullname\": \"t2_woto0km\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to input in a Java program in Emacs with dap-java (lsp-java)?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2s1v0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561037570.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI sucessfully installed lsp-java and it\\u0026#39;s components. After making a simple Main class with Scanner method, I executed it with \\u003Ccode\\u003Edap-java-debug\\u003C/code\\u003E but the debug buffer seems a generic text-editing one.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I execute and test a Java program with lot\\u0026#39;s of command-line inputs? It\\u0026#39;s possible using dap-mode?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2s1v0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"matas00section\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2s1v0/how_to_input_in_a_java_program_in_emacs_with/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2s1v0/how_to_input_in_a_java_program_in_emacs_with/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561008770.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_ws9gj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Vlang released for Mac, soon to be released on Windows and Linux later today. Does anyone know of a decent major mode for it?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2ruq2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561036218.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"vlang.io\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2ruq2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GDP10\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2ruq2/vlang_released_for_mac_soon_to_be_released_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://vlang.io/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1561007418.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I made A website for it with install instructions\\n\\n[https://ryanyun2010.github.io/pandamacs/pandamacs.html](https://ryanyun2010.github.io/pandamacs/pandamacs.html)\\n\\nIt is based on doom but I wanted to make it faster then doom\\n\\n[PandaMacs In Action](https://i.redd.it/7k688okeff531.png)\", \"author_fullname\": \"t2_3n3fcln2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I Made A Doom Like Emacs Config That I call PandaMacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"7k688okeff531\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1800, \"x\": 1708, \"u\": \"https://i.redd.it/7k688okeff531.png\"}, \"m\": \"image/png\", \"id\": \"7k688okeff531\"}}, \"name\": \"t3_c2qjuf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560999526.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561027993.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI made A website for it with install instructions\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://ryanyun2010.github.io/pandamacs/pandamacs.html\\\"\\u003Ehttps://ryanyun2010.github.io/pandamacs/pandamacs.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is based on doom but I wanted to make it faster then doom\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/7k688okeff531.png\\\"\\u003EPandaMacs In Action\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2qjuf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ryrycongcong\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2qjuf/i_made_a_doom_like_emacs_config_that_i_call/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2qjuf/i_made_a_doom_like_emacs_config_that_i_call/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1560999193.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"My emacs on Windows take several seconds to open a tiny org file. I tried to open the same file but with *.txt extension and it load instantly.\\n\\nAt first I thought it might be a font lock issue, and it's sort of the problem. I disable fontlock globally and tried to open the same file, it's still take a while. However, I tried to open a python file with font lock on and off, it's faster turn off font lock. So I guess it's a part of the problem but not the whole problem.\\n\\nPleaese help me solve this issu, thanks in advance.\\n\\nEdit: all of the testing above done with emacs -Q\", \"author_fullname\": \"t2_r67df\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs on Windows takes a long time to open org files\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2qddk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560998522.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561026955.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy emacs on Windows take several seconds to open a tiny org file. I tried to open the same file but with *.txt extension and it load instantly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt first I thought it might be a font lock issue, and it\\u0026#39;s sort of the problem. I disable fontlock globally and tried to open the same file, it\\u0026#39;s still take a while. However, I tried to open a python file with font lock on and off, it\\u0026#39;s faster turn off font lock. So I guess it\\u0026#39;s a part of the problem but not the whole problem.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPleaese help me solve this issu, thanks in advance.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: all of the testing above done with emacs -Q\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2qddk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hainguyenac\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2qddk/emacs_on_windows_takes_a_long_time_to_open_org/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2qddk/emacs_on_windows_takes_a_long_time_to_open_org/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1560998155.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm sorry for this (probably) very noob question. I've just started using emacs a few days ago.\\n\\n\\u0026#x200B;\\n\\nAnyways, I was looking through the emacs wiki and saw that there was a cool feature called \\\"zone\\\" which would do fun stuff with the text in the buffer. Then I saw that there was a [wiki article](https://www.emacswiki.org/emacs/ZoneMode) about using it as a screensaver. So I had that set for a while (and still do). Then I started to notice that some of the text that gets jumbled gets permanently jumbled (and I can't just undo it). Which means that if it didn't autosave I have to lose all of my progress I had done by closing/opening my file again.\\n\\n\\u0026#x200B;\\n\\nSo my question is, how do I disable it? I used this method for setting it as a screensaver:\\n\\n`(setq zone-timer (run-with-idle-timer 120 t 'zone))`\", \"author_fullname\": \"t2_34n8s47p\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to stop using zone as a screensaver?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2q2oc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"purple\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561025253.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m sorry for this (probably) very noob question. I\\u0026#39;ve just started using emacs a few days ago.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyways, I was looking through the emacs wiki and saw that there was a cool feature called \\u0026quot;zone\\u0026quot; which would do fun stuff with the text in the buffer. Then I saw that there was a \\u003Ca href=\\\"https://www.emacswiki.org/emacs/ZoneMode\\\"\\u003Ewiki article\\u003C/a\\u003E about using it as a screensaver. So I had that set for a while (and still do). Then I started to notice that some of the text that gets jumbled gets permanently jumbled (and I can\\u0026#39;t just undo it). Which means that if it didn\\u0026#39;t autosave I have to lose all of my progress I had done by closing/opening my file again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo my question is, how do I disable it? I used this method for setting it as a screensaver:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(setq zone-timer (run-with-idle-timer 120 t \\u0026#39;zone))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"GNU Emacs\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2q2oc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Valley6660\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/c2q2oc/how_to_stop_using_zone_as_a_screensaver/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2q2oc/how_to_stop_using_zone_as_a_screensaver/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1560996453.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm slowly starting to feel I'm wasting too much time on optimizing and configuring my Emacs, and I wonder if anyone feels the same way? Whenever I launch Emacs, the slight OCD will kick in to want to open my init file and see if there's anything I can change to perfect the startup time or user experience etc... Will I ever get to a point when I just sit back and relax and not think about my Emacs configs again and be more work productive?\\n\\n\\u0026#x200B;\\n\\n**Edit**: My current setup (I try to keep only the essentials) if anyone is interested\\n\\n\\\\- *Org literate version*: [https://github.com/ianpan870102/.emacs.d](https://github.com/ianpan870102/.emacs.d)\\n\\n\\\\- *Use-package version*: [https://github.com/ianpan870102/.use-package.emacs.d](https://github.com/ianpan870102/.use-package.emacs.d)\", \"author_fullname\": \"t2_3kgkql01\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs addiction\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2pnxw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 64, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 64, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560998852.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561022915.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m slowly starting to feel I\\u0026#39;m wasting too much time on optimizing and configuring my Emacs, and I wonder if anyone feels the same way? Whenever I launch Emacs, the slight OCD will kick in to want to open my init file and see if there\\u0026#39;s anything I can change to perfect the startup time or user experience etc... Will I ever get to a point when I just sit back and relax and not think about my Emacs configs again and be more work productive?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEdit\\u003C/strong\\u003E: My current setup (I try to keep only the essentials) if anyone is interested\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- \\u003Cem\\u003EOrg literate version\\u003C/em\\u003E: \\u003Ca href=\\\"https://github.com/ianpan870102/.emacs.d\\\"\\u003Ehttps://github.com/ianpan870102/.emacs.d\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- \\u003Cem\\u003EUse-package version\\u003C/em\\u003E: \\u003Ca href=\\\"https://github.com/ianpan870102/.use-package.emacs.d\\\"\\u003Ehttps://github.com/ianpan870102/.use-package.emacs.d\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Emacs enthusiast\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2pnxw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yep808\", \"num_crossposts\": 0, \"num_comments\": 50, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/c2pnxw/emacs_addiction/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2pnxw/emacs_addiction/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1560994115.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How can I redefine the command that the `x` key is attached to when I'm in calc?\", \"author_fullname\": \"t2_3235n7gs\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Keymap for calc?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2m2za\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561004177.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I redefine the command that the \\u003Ccode\\u003Ex\\u003C/code\\u003E key is attached to when I\\u0026#39;m in calc?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2m2za\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"billy_buttlicker_69\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2m2za/keymap_for_calc/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2m2za/keymap_for_calc/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1560975377.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_25lvli7n\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Working with log files in Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2kycj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 23, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 23, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560998860.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"writequit.org\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2kycj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nickdrozd\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2kycj/working_with_log_files_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://writequit.org/articles/working-with-logs-in-emacs.html\", \"subreddit_subscribers\": 30359, \"created_utc\": 1560970060.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"It was mentioned on here 11 months ago but I missed it. I have installed it and wish I had last year, I love it.\\n\\n\\u0026#x200B;\\n\\nThe deadgrep interface allows you to tweak your searches results easily if the result was not as fine as expected.\\n\\n\\u0026#x200B;\\n\\nArticle: ripgrep is faster than {grep, ag, git grep, ucg, pt, sift}\\n\\n[https://blog.burntsushi.net/ripgrep/](https://blog.burntsushi.net/ripgrep/)\\n\\n\\u0026#x200B;\\n\\nGithub: deadgrep.el\\n\\n[https://github.com/Wilfred/deadgrep](https://github.com/Wilfred/deadgrep)\\n\\n\\u0026#x200B;\\n\\nAlternatives to deadgrep\\n\\n[https://github.com/Wilfred/deadgrep/blob/master/docs/ALTERNATIVES.md](https://github.com/Wilfred/deadgrep/blob/master/docs/ALTERNATIVES.md)\", \"author_fullname\": \"t2_euy5b\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Articles - Ripgrep is faster than the rest. Deadgrep is a fantastic emacs interface.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2jvkj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 72, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 72, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560993801.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt was mentioned on here 11 months ago but I missed it. I have installed it and wish I had last year, I love it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe deadgrep interface allows you to tweak your searches results easily if the result was not as fine as expected.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EArticle: ripgrep is faster than {grep, ag, git grep, ucg, pt, sift}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://blog.burntsushi.net/ripgrep/\\\"\\u003Ehttps://blog.burntsushi.net/ripgrep/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGithub: deadgrep.el\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/Wilfred/deadgrep\\\"\\u003Ehttps://github.com/Wilfred/deadgrep\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlternatives to deadgrep\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/Wilfred/deadgrep/blob/master/docs/ALTERNATIVES.md\\\"\\u003Ehttps://github.com/Wilfred/deadgrep/blob/master/docs/ALTERNATIVES.md\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2jvkj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dericbytes\", \"num_crossposts\": 0, \"num_comments\": 27, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2jvkj/articles_ripgrep_is_faster_than_the_rest_deadgrep/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2jvkj/articles_ripgrep_is_faster_than_the_rest_deadgrep/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1560965001.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Reading through EXWM documentation I've found out about `exwm-input-simulation-keys`. Obviously, my mind is blown, this is so awesome. I have a couple of problems with the notation, though. The commented lines do not work:\\n\\n (setq exwm-input-simulation-keys\\n \\t '(([?\\\\C-b] . [left])\\n \\t ([?\\\\C-f] . [right])\\n \\t ([?\\\\C-p] . [up])\\n \\t ([?\\\\C-n] . [down])\\n \\t ([?\\\\C-a] . [home])\\n \\t ([?\\\\C-e] . [end])\\n \\t ([?\\\\M-v] . [prior])\\n \\t ([?\\\\C-v] . [next])\\n \\t ([?\\\\C-d] . [delete])\\n \\t ([?\\\\C-k] . [S-end delete])\\n \\t ([?\\\\C-m] . [return])\\n \\t ([?\\\\C-i] . [tab])\\n \\t ;;([?\\\\C-\\\\[] . [escape])\\n \\t ;;([?\\\\S-C-DEL] . [home S-end delete])\\n \\t ([?\\\\M-f] . [C-right])\\n \\t ([?\\\\M-b] . [C-left])\\n \\t ;;([?\\\\M-DEL] . [S-C-left delete])\\n \\t ([?\\\\M-d] . [S-C-right delete])))\\n\\nHow can I make `C-[` perform escape, `S-C-DEL` perform delete-whole-line and `M-DEL` perform backwards-delete-word? I would also like to map `M-y` to copy, `C-w` to cut and `M-w` to copy. Thanks in advance!\", \"author_fullname\": \"t2_3xj7454j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"'exwm-simulation-keys' Notation?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c2i3b5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560985028.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EReading through EXWM documentation I\\u0026#39;ve found out about \\u003Ccode\\u003Eexwm-input-simulation-keys\\u003C/code\\u003E. Obviously, my mind is blown, this is so awesome. I have a couple of problems with the notation, though. The commented lines do not work:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E (setq exwm-input-simulation-keys\\n \\u0026#39;(([?\\\\C-b] . [left])\\n ([?\\\\C-f] . [right])\\n ([?\\\\C-p] . [up])\\n ([?\\\\C-n] . [down])\\n ([?\\\\C-a] . [home])\\n ([?\\\\C-e] . [end])\\n ([?\\\\M-v] . [prior])\\n ([?\\\\C-v] . [next])\\n ([?\\\\C-d] . [delete])\\n ([?\\\\C-k] . [S-end delete])\\n ([?\\\\C-m] . [return])\\n ([?\\\\C-i] . [tab])\\n ;;([?\\\\C-\\\\[] . [escape])\\n ;;([?\\\\S-C-DEL] . [home S-end delete])\\n ([?\\\\M-f] . [C-right])\\n ([?\\\\M-b] . [C-left])\\n ;;([?\\\\M-DEL] . [S-C-left delete])\\n ([?\\\\M-d] . [S-C-right delete])))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHow can I make \\u003Ccode\\u003EC-[\\u003C/code\\u003E perform escape, \\u003Ccode\\u003ES-C-DEL\\u003C/code\\u003E perform delete-whole-line and \\u003Ccode\\u003EM-DEL\\u003C/code\\u003E perform backwards-delete-word? I would also like to map \\u003Ccode\\u003EM-y\\u003C/code\\u003E to copy, \\u003Ccode\\u003EC-w\\u003C/code\\u003E to cut and \\u003Ccode\\u003EM-w\\u003C/code\\u003E to copy. Thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2i3b5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Desmesura\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c2i3b5/exwmsimulationkeys_notation/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c2i3b5/exwmsimulationkeys_notation/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1560956228.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_c2i3b5\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["381633"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:44 GMT"], "x-ratelimit-remaining": ["595.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["5"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643984.154685,VS0,VE734"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["16"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-27T13:59:44"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_c65rva"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:45 GMT"], "x-ratelimit-remaining": ["594.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["6"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643985.020589,VS0,VE87"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["15"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_c65rva"}, "recorded_at": "2019-06-27T13:59:45"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c368vf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es60rfh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"FuryVonB\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561636798.0, \"send_replies\": true, \"parent_id\": \"t3_c368vf\", \"score\": 1, \"author_fullname\": \"t2_26hrnqza\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm a tiddlywiki, Nextcloud applications and markdown user. Switching cause don't like o have 100000 tools open to retrieve an information.\", \"link_title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_es60rfh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a tiddlywiki, Nextcloud applications and markdown user. Switching cause don\\u0026#39;t like o have 100000 tools open to retrieve an information.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/es60rfh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"report_reasons\": null, \"link_author\": \"argtri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"created\": 1561665598.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c368vf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es60og8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"FuryVonB\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561636713.0, \"send_replies\": true, \"parent_id\": \"t1_erpi7i5\", \"score\": 1, \"author_fullname\": \"t2_26hrnqza\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Ooooh I used tiddlywiki as well.\", \"link_title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_es60og8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOoooh I used tiddlywiki as well.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/es60og8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"report_reasons\": null, \"link_author\": \"argtri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"created\": 1561665513.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3a5ki\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es60k8x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"FuryVonB\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561636595.0, \"send_replies\": true, \"parent_id\": \"t1_erwanvy\", \"score\": 1, \"author_fullname\": \"t2_26hrnqza\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Good choice pal !\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 21, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_es60k8x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood choice pal !\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/es60k8x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/\", \"created\": 1561665395.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4ox16\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es35l4k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DurableOne\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1561554155.0, \"send_replies\": true, \"parent_id\": \"t1_es2zdzz\", \"score\": 1, \"author_fullname\": \"t2_lczxb1w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"No worries. Glad to help.\", \"link_title\": \"Is it possible to export a list of value from a given property?\", \"author_flair_css_class\": null, \"name\": \"t1_es35l4k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo worries. Glad to help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/es35l4k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"report_reasons\": null, \"link_author\": \"skouakskouek\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"created\": 1561582955.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es345mb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"loskutak-the-ptak\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1561552924.0, \"send_replies\": true, \"parent_id\": \"t3_bzas9r\", \"score\": 2, \"author_fullname\": \"t2_ke7apcf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"See https://www.reddit.com/r/emacs/comments/bgs4dr/preview_in_emacs_using_chemdraw/elo44r1/ hopefully it will help you.\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_es345mb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESee \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/bgs4dr/preview_in_emacs_using_chemdraw/elo44r1/\\\"\\u003Ehttps://www.reddit.com/r/emacs/comments/bgs4dr/preview_in_emacs_using_chemdraw/elo44r1/\\u003C/a\\u003E hopefully it will help you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/es345mb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1561581724.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4ox16\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es2zdzz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skouakskouek\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1561548103.0, \"send_replies\": true, \"parent_id\": \"t1_es0mfmk\", \"score\": 1, \"author_fullname\": \"t2_elo7h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"aaand you even anticipated my next questions!\\nDon't know how to thank you enough!!\", \"link_title\": \"Is it possible to export a list of value from a given property?\", \"author_flair_css_class\": null, \"name\": \"t1_es2zdzz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eaaand you even anticipated my next questions!\\nDon\\u0026#39;t know how to thank you enough!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/es2zdzz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"report_reasons\": null, \"link_author\": \"skouakskouek\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"created\": 1561576903.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4ox16\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es0mfmk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DurableOne\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1561478577.0, \"send_replies\": true, \"parent_id\": \"t1_es0da13\", \"score\": 1, \"author_fullname\": \"t2_lczxb1w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have updated the answer. You can have multiple tables with different properties shown in different tables.\", \"link_title\": \"Is it possible to export a list of value from a given property?\", \"author_flair_css_class\": null, \"name\": \"t1_es0mfmk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have updated the answer. You can have multiple tables with different properties shown in different tables.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/es0mfmk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"report_reasons\": null, \"link_author\": \"skouakskouek\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"created\": 1561507377.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4ox16\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es0kn94\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DurableOne\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1561477450.0, \"send_replies\": true, \"parent_id\": \"t1_es0da13\", \"score\": 1, \"author_fullname\": \"t2_lczxb1w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Glad I could help. I actually learned this stuff while writing the answer. I knew of column view but never had a use case for it before.\", \"link_title\": \"Is it possible to export a list of value from a given property?\", \"author_flair_css_class\": null, \"name\": \"t1_es0kn94\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGlad I could help. I actually learned this stuff while writing the answer. I knew of column view but never had a use case for it before.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/es0kn94/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"report_reasons\": null, \"link_author\": \"skouakskouek\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"created\": 1561506250.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4rtbo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es0ix37\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fearbedragons\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561476358.0, \"send_replies\": true, \"parent_id\": \"t1_eryblnp\", \"score\": 1, \"author_fullname\": \"t2_12yaty\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks! I was looking at the Agenda pages, not the Column-View pages. It's super hacky, but I found a way to make that work for special buffers, like the agenda buffer, in addition to the file buffer.\\n\\nYou can save the agenda buffer itself to an org-file: `C-x C-w ~/myweek.org`\\n\\nThen, you can drop in the dynamic block, just as in your link.\", \"link_title\": \"Exporting Agenda in Column View?\", \"author_flair_css_class\": null, \"name\": \"t1_es0ix37\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks! I was looking at the Agenda pages, not the Column-View pages. It\\u0026#39;s super hacky, but I found a way to make that work for special buffers, like the agenda buffer, in addition to the file buffer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can save the agenda buffer itself to an org-file: \\u003Ccode\\u003EC-x C-w ~/myweek.org\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen, you can drop in the dynamic block, just as in your link.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/es0ix37/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/\", \"report_reasons\": null, \"link_author\": \"fearbedragons\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/\", \"created\": 1561505158.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4ox16\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es0da13\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skouakskouek\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1561472524.0, \"send_replies\": true, \"parent_id\": \"t1_erzjos2\", \"score\": 1, \"author_fullname\": \"t2_elo7h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Wow, I'm amazed, and I had no idea that this was why the column-view was made for!\\nMany many thanks for your detailed answer, that's perfect!\", \"link_title\": \"Is it possible to export a list of value from a given property?\", \"author_flair_css_class\": null, \"name\": \"t1_es0da13\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWow, I\\u0026#39;m amazed, and I had no idea that this was why the column-view was made for!\\nMany many thanks for your detailed answer, that\\u0026#39;s perfect!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/es0da13/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"report_reasons\": null, \"link_author\": \"skouakskouek\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"created\": 1561501324.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1gx6s\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es02goq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"chelya\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1561463329.0, \"send_replies\": true, \"parent_id\": \"t3_c1gx6s\", \"score\": 1, \"author_fullname\": \"t2_pnn88\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Have you looked at [Org Edna](https://www.nongnu.org/org-edna-el/#org254092d)? I think it allows you to increment or decrement a timestamp relative to the current time.\", \"link_title\": \"Repeating task that, when completed, sets due date exactly 24 hours from the time last completed?\", \"author_flair_css_class\": null, \"name\": \"t1_es02goq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave you looked at \\u003Ca href=\\\"https://www.nongnu.org/org-edna-el/#org254092d\\\"\\u003EOrg Edna\\u003C/a\\u003E? I think it allows you to increment or decrement a timestamp relative to the current time.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/es02goq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"report_reasons\": null, \"link_author\": \"pgwang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"created\": 1561492129.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4rtbo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erzkhf3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DurableOne\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561439089.0, \"send_replies\": true, \"parent_id\": \"t1_eryblnp\", \"score\": 1, \"author_fullname\": \"t2_lczxb1w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I can vouch for that. I just tried it [while answering a similar question][1] here in this sub and it works perfectly.\\n\\n[1]:https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/erzjos2?utm_source=share\\u0026utm_medium=web2x\", \"link_title\": \"Exporting Agenda in Column View?\", \"author_flair_css_class\": null, \"name\": \"t1_erzkhf3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can vouch for that. I just tried it \\u003Ca href=\\\"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/erzjos2?utm_source=share\\u0026amp;utm_medium=web2x\\\"\\u003Ewhile answering a similar question\\u003C/a\\u003E here in this sub and it works perfectly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/erzkhf3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/\", \"report_reasons\": null, \"link_author\": \"fearbedragons\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/\", \"created\": 1561467889.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1561478861.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4ox16\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erzjos2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DurableOne\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1561438256.0, \"send_replies\": true, \"parent_id\": \"t3_c4ox16\", \"score\": 2, \"author_fullname\": \"t2_lczxb1w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I think [column view][1] can help you accomplish what you want.\\n\\nIf you structure your file similar to this:\\n\\n * Clients\\n :PROPERTIES:\\n :ID: clients\\n :COLUMNS: %NAME(Client name) %TOTAL(Money owed)\\n :END:\\n ** John\\n :PROPERTIES:\\n :NAME: John\\n :TOTAL: 200USD\\n :END:\\n ** Patrick\\n :PROPERTIES:\\n :NAME: Patrick\\n :TOTAL: 120USD\\n :END:\\n\\nYou can use the column view of the \\\"Clients\\\" headline (by putting the point on that headline and pressing C-c C-x C-c) to get a table of exactly what you want: client names and totals. The problem is, [you can't export a column view directly][2], you have to create a dynamic block for it as referenced in that previous link. So, somewhere else in your file, do\\n\\n * Client total summaries\\n #+BEGIN: columnview :id \\\"clients\\\"\\n #+END\\n\\nNow if you press C-c C-c with the point in the dynamic block, it will be updated with the data in the \\\"Clients\\\" tree. For exporting, you can narrow the buffer to the \\\"Client total summaries\\\" tree and export the visible region only (or choose your export scope to be the current tree).\\n\\nHere's the end result:\\n\\n * Client total summaries\\n #+BEGIN: columnview :id \\\"clients\\\"\\n | Client name | Money owed |\\n | ------------+------------|\\n | | |\\n | John | 200USD |\\n | Patrick | 120USD |\\n #+END\\n\\nTwo things to note:\\n 1. Instead of the NAME property you could have used ITEM when defining the columns to automatically use the headline name. Doing that, however, inserts the word \\\"Clients\\\" (the name of the top level headline) into the table. So you have one of two options: either add the COLUMNS property to all clients (not recommended because it's harder to maintain) or add a NAME property for each client that you can use in the column view.\\n 2. There are many more things you can do with column view. Check [here][3]\\n\\n# **Update**\\n\\nIf you have many properties and want to export different sets of them into different column views, instead of defining the \\\"COLUMNS\\\" property, you can use the `:format` header argument. Something like\\n\\n #+BEGIN: columnview :id \\\"clients\\\" :format \\\"%NAME(Client name) %TOTAL(Money owed)\\\"\\n #+END\\n\\nis equivalent to the above.\\nAlso, if your file only has client headings and you don't want to bother restructuring it, you can do this:\\n\\n * John\\n :PROPERTIES:\\n :TOTAL: 200USD\\n :END:\\n * Patrick\\n :PROPERTIES:\\n :TOTAL: 120USD\\n :END:\\n #+BEGIN: columnview :id global :format \\\"%ITEM(Client name) %TOTAL(Money owed)\\\"\\n #+END\\n\\n\\n\\n[1]: https://orgmode.org/manual/Column-View.html#Column-View\\n[2]: https://orgmode.org/manual/Capturing-column-view.html\\n[3]: https://orgmode.org/manual/Column-attributes.html#Column-attributes\", \"link_title\": \"Is it possible to export a list of value from a given property?\", \"author_flair_css_class\": null, \"name\": \"t1_erzjos2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think \\u003Ca href=\\\"https://orgmode.org/manual/Column-View.html#Column-View\\\"\\u003Ecolumn view\\u003C/a\\u003E can help you accomplish what you want.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you structure your file similar to this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Clients\\n :PROPERTIES:\\n :ID: clients\\n :COLUMNS: %NAME(Client name) %TOTAL(Money owed)\\n :END:\\n** John\\n :PROPERTIES:\\n :NAME: John\\n :TOTAL: 200USD\\n :END:\\n** Patrick\\n :PROPERTIES:\\n :NAME: Patrick\\n :TOTAL: 120USD\\n :END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EYou can use the column view of the \\u0026quot;Clients\\u0026quot; headline (by putting the point on that headline and pressing C-c C-x C-c) to get a table of exactly what you want: client names and totals. The problem is, \\u003Ca href=\\\"https://orgmode.org/manual/Capturing-column-view.html\\\"\\u003Eyou can\\u0026#39;t export a column view directly\\u003C/a\\u003E, you have to create a dynamic block for it as referenced in that previous link. So, somewhere else in your file, do\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Client total summaries\\n #+BEGIN: columnview :id \\u0026quot;clients\\u0026quot;\\n #+END\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENow if you press C-c C-c with the point in the dynamic block, it will be updated with the data in the \\u0026quot;Clients\\u0026quot; tree. For exporting, you can narrow the buffer to the \\u0026quot;Client total summaries\\u0026quot; tree and export the visible region only (or choose your export scope to be the current tree).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s the end result:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Client total summaries\\n #+BEGIN: columnview :id \\u0026quot;clients\\u0026quot;\\n | Client name | Money owed |\\n | ------------+------------|\\n | | |\\n | John | 200USD |\\n | Patrick | 120USD |\\n #+END\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ETwo things to note:\\n 1. Instead of the NAME property you could have used ITEM when defining the columns to automatically use the headline name. Doing that, however, inserts the word \\u0026quot;Clients\\u0026quot; (the name of the top level headline) into the table. So you have one of two options: either add the COLUMNS property to all clients (not recommended because it\\u0026#39;s harder to maintain) or add a NAME property for each client that you can use in the column view.\\n 2. There are many more things you can do with column view. Check \\u003Ca href=\\\"https://orgmode.org/manual/Column-attributes.html#Column-attributes\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003EUpdate\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EIf you have many properties and want to export different sets of them into different column views, instead of defining the \\u0026quot;COLUMNS\\u0026quot; property, you can use the \\u003Ccode\\u003E:format\\u003C/code\\u003E header argument. Something like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+BEGIN: columnview :id \\u0026quot;clients\\u0026quot; :format \\u0026quot;%NAME(Client name) %TOTAL(Money owed)\\u0026quot;\\n#+END\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eis equivalent to the above.\\nAlso, if your file only has client headings and you don\\u0026#39;t want to bother restructuring it, you can do this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* John\\n :PROPERTIES:\\n :TOTAL: 200USD\\n :END:\\n* Patrick\\n :PROPERTIES:\\n :TOTAL: 120USD\\n :END:\\n#+BEGIN: columnview :id global :format \\u0026quot;%ITEM(Client name) %TOTAL(Money owed)\\u0026quot;\\n#+END\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/erzjos2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"report_reasons\": null, \"link_author\": \"skouakskouek\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"created\": 1561467056.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4rtbo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eryblnp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"chelya\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561404889.0, \"send_replies\": true, \"parent_id\": \"t3_c4rtbo\", \"score\": 3, \"author_fullname\": \"t2_pnn88\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have never tried this, but the manual [says to use a dynamic block and export.](https://orgmode.org/manual/Capturing-column-view.html#Capturing-column-view)\", \"link_title\": \"Exporting Agenda in Column View?\", \"author_flair_css_class\": null, \"name\": \"t1_eryblnp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have never tried this, but the manual \\u003Ca href=\\\"https://orgmode.org/manual/Capturing-column-view.html#Capturing-column-view\\\"\\u003Esays to use a dynamic block and export.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/eryblnp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/\", \"report_reasons\": null, \"link_author\": \"fearbedragons\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/\", \"created\": 1561433689.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c368vf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erxqm5b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LordOfCinder\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561391260.0, \"send_replies\": true, \"parent_id\": \"t3_c368vf\", \"score\": 2, \"author_fullname\": \"t2_7zcne\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"[Vimwiki](http://vimwiki.github.io/) was what I used for about a year. I really miss a few features, but once I saw org-mode and evil mode, there wasn't really a point in using it.\\n\\nPrevious to that I used OneNote, Gcal, etc. \\n\\nAs a previously undiagnosed ADHD computer science student, life was a nightmare previous to any of these tools.\", \"link_title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_erxqm5b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://vimwiki.github.io/\\\"\\u003EVimwiki\\u003C/a\\u003E was what I used for about a year. I really miss a few features, but once I saw org-mode and evil mode, there wasn\\u0026#39;t really a point in using it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPrevious to that I used OneNote, Gcal, etc. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a previously undiagnosed ADHD computer science student, life was a nightmare previous to any of these tools.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/erxqm5b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"report_reasons\": null, \"link_author\": \"argtri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"created\": 1561420060.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4mjyk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erxhvg9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Pipiyedu\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1561385158.0, \"send_replies\": true, \"parent_id\": \"t1_erxd2gb\", \"score\": 1, \"author_fullname\": \"t2_8v76k\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks!\", \"link_title\": \"Why some tags start with \\\"@\\\"?\", \"author_flair_css_class\": null, \"name\": \"t1_erxhvg9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c4mjyk/why_some_tags_start_with/erxhvg9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c4mjyk/why_some_tags_start_with/\", \"report_reasons\": null, \"link_author\": \"Pipiyedu\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c4mjyk/why_some_tags_start_with/\", \"created\": 1561413958.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1561383925.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c26qja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erxg0q0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DurableOne\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1561383731.0, \"send_replies\": true, \"parent_id\": \"t1_erx75dg\", \"score\": 1, \"author_fullname\": \"t2_lczxb1w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Which file has a #+TITLE? The template or the target? If it's the template, then I think you're going about this the wrong way. If you have a #+TITLE in your template, the title will be added every time you make a journal entry. I assume this isn't what you want. Your template should be more like a single headline (or a bunch of headlines of different levels if you need them). The capture target can then be an org file with #+TITLE (and whatever other options) set in it and your captures will be added to that file as headlines.\", \"link_title\": \"Capture template based in a file\", \"author_flair_css_class\": null, \"name\": \"t1_erxg0q0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhich file has a #+TITLE? The template or the target? If it\\u0026#39;s the template, then I think you\\u0026#39;re going about this the wrong way. If you have a #+TITLE in your template, the title will be added every time you make a journal entry. I assume this isn\\u0026#39;t what you want. Your template should be more like a single headline (or a bunch of headlines of different levels if you need them). The capture target can then be an org file with #+TITLE (and whatever other options) set in it and your captures will be added to that file as headlines.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/erxg0q0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"created\": 1561412531.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4mjyk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erxd2gb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mogigoma\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1561381269.0, \"send_replies\": true, \"parent_id\": \"t3_c4mjyk\", \"score\": 11, \"author_fullname\": \"t2_4qsqn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"The @-sign has no special significance to Org-mode itself. The example is using those similar to the Getting Things Done method of context. They indicate the tagged items should be done when *at* those locations.\", \"link_title\": \"Why some tags start with \\\"@\\\"?\", \"author_flair_css_class\": null, \"name\": \"t1_erxd2gb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe @-sign has no special significance to Org-mode itself. The example is using those similar to the Getting Things Done method of context. They indicate the tagged items should be done when \\u003Cem\\u003Eat\\u003C/em\\u003E those locations.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c4mjyk/why_some_tags_start_with/erxd2gb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c4mjyk/why_some_tags_start_with/\", \"report_reasons\": null, \"link_author\": \"Pipiyedu\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c4mjyk/why_some_tags_start_with/\", \"created\": 1561410069.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 11}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c26qja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erx75dg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1561375165.0, \"send_replies\": true, \"parent_id\": \"t1_erwu6gp\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"The specific error is \\\"org-capture: Capture template \\u2018j\\u2019: Template is not a valid Org entry or tree\\\". (In this specific case it was J for my journal). This is odd because the file I was pointing to is a perfectly fine Org file with a title and all (#+TITLE: etc) that opens in org without issues. \\n\\nThis happened to me several times in the past to the point that I though I just can't open org files through capture. Turns out I can if (I guess?) they have no options at the header part.\", \"link_title\": \"Capture template based in a file\", \"author_flair_css_class\": null, \"name\": \"t1_erx75dg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe specific error is \\u0026quot;org-capture: Capture template \\u2018j\\u2019: Template is not a valid Org entry or tree\\u0026quot;. (In this specific case it was J for my journal). This is odd because the file I was pointing to is a perfectly fine Org file with a title and all (#+TITLE: etc) that opens in org without issues. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis happened to me several times in the past to the point that I though I just can\\u0026#39;t open org files through capture. Turns out I can if (I guess?) they have no options at the header part.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/erx75dg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"created\": 1561403965.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c26qja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erwu6gp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DurableOne\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1561356469.0, \"send_replies\": true, \"parent_id\": \"t1_erml4pz\", \"score\": 1, \"author_fullname\": \"t2_lczxb1w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"That's weird. I have a capture template with an org file that I set up as above and it works perfectly fine. What do you mean by a \\\"whole org file\\\"? Do you mean including headers and buffer-local variables and such?\\nAlso, have you tried replicating this error in a plain emacs (with only org loaded) to see if maybe the problem lies somewhere in your config?\", \"link_title\": \"Capture template based in a file\", \"author_flair_css_class\": null, \"name\": \"t1_erwu6gp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s weird. I have a capture template with an org file that I set up as above and it works perfectly fine. What do you mean by a \\u0026quot;whole org file\\u0026quot;? Do you mean including headers and buffer-local variables and such?\\nAlso, have you tried replicating this error in a plain emacs (with only org loaded) to see if maybe the problem lies somewhere in your config?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/erwu6gp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"created\": 1561385269.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3a5ki\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erwanvy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"most_painful_truth\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561338036.0, \"send_replies\": true, \"parent_id\": \"t3_c3a5ki\", \"score\": 1, \"author_fullname\": \"t2_34ar1w3r\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I've been thinking about Orgmode and have had Beorg on my iPad for years, but taking notes on my phone using Orgzly while traveling has been so useful that I will probably move over from Google Keep and other apps. Go Orgzly.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 21, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_erwanvy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been thinking about Orgmode and have had Beorg on my iPad for years, but taking notes on my phone using Orgzly while traveling has been so useful that I will probably move over from Google Keep and other apps. Go Orgzly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/erwanvy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/\", \"created\": 1561366836.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3xrzz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ervzorg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ngortheone\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561329224.0, \"send_replies\": true, \"parent_id\": \"t1_ervwsfn\", \"score\": 2, \"author_fullname\": \"t2_2tkt7f1w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Also true. Then they just made it worse alltogether\", \"link_title\": \"Smos: a replacement for emacs org mode\", \"author_flair_css_class\": null, \"name\": \"t1_ervzorg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAlso true. Then they just made it worse alltogether\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/ervzorg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"created\": 1561358024.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3xrzz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ervwsfn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PuercoPop\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561327033.0, \"send_replies\": true, \"parent_id\": \"t1_erv1ggv\", \"score\": 3, \"author_fullname\": \"t2_7wpwd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003EBy making it more friendly to computers they made it less friendly to humans.\\n\\n \\nYAML is *not* more friendly towards computers.\", \"link_title\": \"Smos: a replacement for emacs org mode\", \"author_flair_css_class\": null, \"name\": \"t1_ervwsfn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EBy making it more friendly to computers they made it less friendly to humans.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYAML is \\u003Cem\\u003Enot\\u003C/em\\u003E more friendly towards computers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/ervwsfn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"created\": 1561355833.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3xrzz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erv1ggv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"ngortheone\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561303742.0, \"send_replies\": true, \"parent_id\": \"t1_eruituf\", \"score\": 5, \"author_fullname\": \"t2_2tkt7f1w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I agree. Yaml is whitespace sensetive. More than everything else I hate counting spaces to make current node to be a child of a previous one. By makig it more friendly to computers they made it less friendly to humans. This nonsense will never replace orgmode\", \"link_title\": \"Smos: a replacement for emacs org mode\", \"author_flair_css_class\": null, \"name\": \"t1_erv1ggv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI agree. Yaml is whitespace sensetive. More than everything else I hate counting spaces to make current node to be a child of a previous one. By makig it more friendly to computers they made it less friendly to humans. This nonsense will never replace orgmode\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/erv1ggv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"created\": 1561332542.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3e2th\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eruj6d7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1561283016.0, \"send_replies\": true, \"parent_id\": \"t1_eru8pb0\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You should be able to automate it further by adding `org-store-link` to `org-capture-prepare-finalize-hook`:\\n\\n org-capture-prepare-finalize-hook is a variable defined in \\u2018org-capture.el\\u2019.\\n Its value is (org-recent-headings--store-heading)\\n Original value was nil\\n\\n This variable may be risky if used as a file-local variable.\\n\\n Documentation:\\n Hook that is run before the finalization starts.\\n The capture buffer is current and still narrowed.\\n\\nThen when you `C-c C-l` to insert a link, it should be automatically selected as the first choice.\\n\\nYou might also find the package `org-recent-headings` useful.\", \"link_title\": \"Store link to newly captured task?\", \"author_flair_css_class\": null, \"name\": \"t1_eruj6d7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou should be able to automate it further by adding \\u003Ccode\\u003Eorg-store-link\\u003C/code\\u003E to \\u003Ccode\\u003Eorg-capture-prepare-finalize-hook\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eorg-capture-prepare-finalize-hook is a variable defined in \\u2018org-capture.el\\u2019.\\nIts value is (org-recent-headings--store-heading)\\nOriginal value was nil\\n\\n This variable may be risky if used as a file-local variable.\\n\\nDocumentation:\\nHook that is run before the finalization starts.\\nThe capture buffer is current and still narrowed.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThen when you \\u003Ccode\\u003EC-c C-l\\u003C/code\\u003E to insert a link, it should be automatically selected as the first choice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou might also find the package \\u003Ccode\\u003Eorg-recent-headings\\u003C/code\\u003E useful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/eruj6d7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"report_reasons\": null, \"link_author\": \"virvir\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"created\": 1561311816.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3xrzz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eruituf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Froomba\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561282421.0, \"send_replies\": true, \"parent_id\": \"t3_c3xrzz\", \"score\": 8, \"author_fullname\": \"t2_2n4vcqzc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yaml? Seriously? \\ud83e\\udd28\\n\\nThis couldn't replace it's way out of a paper bag, much less challenge org mode.\", \"link_title\": \"Smos: a replacement for emacs org mode\", \"author_flair_css_class\": null, \"name\": \"t1_eruituf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYaml? Seriously? \\ud83e\\udd28\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis couldn\\u0026#39;t replace it\\u0026#39;s way out of a paper bag, much less challenge org mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/eruituf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"created\": 1561311221.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c368vf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eruguui\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"karlicoss\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561279043.0, \"send_replies\": true, \"parent_id\": \"t3_c368vf\", \"score\": 2, \"author_fullname\": \"t2_8h0l2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"It was pretty good, I was using Remember The Milk (Pro) for task management, and at different times gitit/Zim/markdown + emacs as knowledge repository. That worked fairly well, until I wanted to integrate all of it closer, at some point I had basically reinvented org capture with bunch of custom scripts, so I realised org mode was what I really was ought to use.\", \"link_title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_eruguui\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt was pretty good, I was using Remember The Milk (Pro) for task management, and at different times gitit/Zim/markdown + emacs as knowledge repository. That worked fairly well, until I wanted to integrate all of it closer, at some point I had basically reinvented org capture with bunch of custom scripts, so I realised org mode was what I really was ought to use.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/eruguui/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"report_reasons\": null, \"link_author\": \"argtri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"created\": 1561307843.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c133r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erugi01\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Qwarctick\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1561278454.0, \"send_replies\": true, \"parent_id\": \"t1_eru2bt0\", \"score\": 2, \"author_fullname\": \"t2_jmplgk2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Nice. I was looking for something like that !\", \"link_title\": \"org-mode as work diary and notes\", \"author_flair_css_class\": null, \"name\": \"t1_erugi01\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice. I was looking for something like that !\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/erugi01/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"report_reasons\": null, \"link_author\": \"Qwarctick\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"created\": 1561307254.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3xrzz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eru8qu1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"transducer\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561267401.0, \"send_replies\": true, \"parent_id\": \"t1_ertx43b\", \"score\": 3, \"author_fullname\": \"t2_5stkh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003Ereplace Emacs' Org Mode *for Getting Things Done*\\n\\naccording to their [website](https://smos.cs-syd.eu/) ... but not explicitly called out in the readme.\\n\\nStill a bold goal though.\", \"link_title\": \"Smos: a replacement for emacs org mode\", \"author_flair_css_class\": null, \"name\": \"t1_eru8qu1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ereplace Emacs\\u0026#39; Org Mode \\u003Cem\\u003Efor Getting Things Done\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003Eaccording to their \\u003Ca href=\\\"https://smos.cs-syd.eu/\\\"\\u003Ewebsite\\u003C/a\\u003E ... but not explicitly called out in the readme.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStill a bold goal though.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/eru8qu1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"created\": 1561296201.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3e2th\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eru8pb0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"virvir\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1561267351.0, \"send_replies\": true, \"parent_id\": \"t1_ersg1i9\", \"score\": 1, \"author_fullname\": \"t2_jrwln\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E org-capture-last-stored\\n\\nAlright! That gets me closer: `C-u C-u C-c c` takes me to the last filed task, from where I can store a link. It's not quite automatic, but will do the trick. Thank you!\", \"link_title\": \"Store link to newly captured task?\", \"author_flair_css_class\": null, \"name\": \"t1_eru8pb0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eorg-capture-last-stored\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAlright! That gets me closer: \\u003Ccode\\u003EC-u C-u C-c c\\u003C/code\\u003E takes me to the last filed task, from where I can store a link. It\\u0026#39;s not quite automatic, but will do the trick. Thank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/eru8pb0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"report_reasons\": null, \"link_author\": \"virvir\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"created\": 1561296151.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3e2th\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eru8f8a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"virvir\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1561267019.0, \"send_replies\": true, \"parent_id\": \"t1_err672f\", \"score\": 1, \"author_fullname\": \"t2_jrwln\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you, I appreciate you thinking about an answer, and hope you enjoy the org-mode adventure; it is quite a journey!\", \"link_title\": \"Store link to newly captured task?\", \"author_flair_css_class\": null, \"name\": \"t1_eru8f8a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you, I appreciate you thinking about an answer, and hope you enjoy the org-mode adventure; it is quite a journey!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/eru8f8a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"report_reasons\": null, \"link_author\": \"virvir\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"created\": 1561295819.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3xrzz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eru87rd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"hakanserce\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561266779.0, \"send_replies\": true, \"parent_id\": \"t1_eru5zh1\", \"score\": 5, \"author_fullname\": \"t2_135uwum\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Absolutely... Just to add to your list: you can blog with org-mode, do diagramming (uml, etc), spreadsheets (with formula and all), time tracking (clocking), capturing tasks/notes with contextual information, develop against scientific notebooks (Jupyter, etc.) ...\\n\\nsmos doesn't seem to do or intend to do any of these as far as I see.\", \"link_title\": \"Smos: a replacement for emacs org mode\", \"author_flair_css_class\": null, \"name\": \"t1_eru87rd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAbsolutely... Just to add to your list: you can blog with org-mode, do diagramming (uml, etc), spreadsheets (with formula and all), time tracking (clocking), capturing tasks/notes with contextual information, develop against scientific notebooks (Jupyter, etc.) ...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esmos doesn\\u0026#39;t seem to do or intend to do any of these as far as I see.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/eru87rd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"created\": 1561295579.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3xrzz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eru5zh1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"danderzei\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561264296.0, \"send_replies\": true, \"parent_id\": \"t3_c3xrzz\", \"score\": 8, \"author_fullname\": \"t2_15ae6r\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Org Mode is so much more than a GTD system. I write books and articles, literate programming, takes notes etc.\", \"link_title\": \"Smos: a replacement for emacs org mode\", \"author_flair_css_class\": null, \"name\": \"t1_eru5zh1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOrg Mode is so much more than a GTD system. I write books and articles, literate programming, takes notes etc.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/eru5zh1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"created\": 1561293096.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3xrzz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eru5n5c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ijustwantanfingname\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561263933.0, \"send_replies\": true, \"parent_id\": \"t3_c3xrzz\", \"score\": 3, \"author_fullname\": \"t2_63w28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"TL;DR smos is to Haskell what org-mode is to Emacs Lisp.\\n\\nGive or take.\", \"link_title\": \"Smos: a replacement for emacs org mode\", \"author_flair_css_class\": null, \"name\": \"t1_eru5n5c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETL;DR smos is to Haskell what org-mode is to Emacs Lisp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGive or take.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/eru5n5c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"created\": 1561292733.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c133r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eru2bt0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"trae\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1561260715.0, \"send_replies\": true, \"parent_id\": \"t3_c133r2\", \"score\": 1, \"author_fullname\": \"t2_1oqx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Have you seen [Rainer Konig tutorials](https://www.youtube.com/playlist?list=PLVtKhBrRV_ZkPnBtt_TD1Cs9PJlU0IIdE)? He describes his system which is quite simple, yet powerful.\", \"link_title\": \"org-mode as work diary and notes\", \"author_flair_css_class\": null, \"name\": \"t1_eru2bt0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave you seen \\u003Ca href=\\\"https://www.youtube.com/playlist?list=PLVtKhBrRV_ZkPnBtt_TD1Cs9PJlU0IIdE\\\"\\u003ERainer Konig tutorials\\u003C/a\\u003E? He describes his system which is quite simple, yet powerful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/eru2bt0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"report_reasons\": null, \"link_author\": \"Qwarctick\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"created\": 1561289515.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3xrzz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ertynz8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hardrived_\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561257337.0, \"send_replies\": true, \"parent_id\": \"t3_c3xrzz\", \"score\": 3, \"author_fullname\": \"t2_ycu34\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I feel attacked.\", \"link_title\": \"Smos: a replacement for emacs org mode\", \"author_flair_css_class\": null, \"name\": \"t1_ertynz8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI feel attacked.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/ertynz8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"created\": 1561286137.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3xrzz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ertxfmy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"llamas-are-bae\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561256246.0, \"send_replies\": true, \"parent_id\": \"t1_ertx43b\", \"score\": 6, \"author_fullname\": \"t2_12r5ww\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Smos intends to deprecate Emacs org mode by being more robust, more customisable, by providing a better and more tool-friendly file format and by using a more sane configuration language.\\n\\nThey're not there yet but it's a fine goal to have, I think.\", \"link_title\": \"Smos: a replacement for emacs org mode\", \"author_flair_css_class\": null, \"name\": \"t1_ertxfmy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESmos intends to deprecate Emacs org mode by being more robust, more customisable, by providing a better and more tool-friendly file format and by using a more sane configuration language.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey\\u0026#39;re not there yet but it\\u0026#39;s a fine goal to have, I think.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/ertxfmy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"created\": 1561285046.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3xrzz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ertxbah\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"hakanserce\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561256136.0, \"send_replies\": true, \"parent_id\": \"t3_c3xrzz\", \"score\": 10, \"author_fullname\": \"t2_135uwum\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Replace org-mode? Hmm, that\\u2019s a bit too ambitious, or maybe authors don\\u2019t fully understand what org mode is...\", \"link_title\": \"Smos: a replacement for emacs org mode\", \"author_flair_css_class\": null, \"name\": \"t1_ertxbah\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EReplace org-mode? Hmm, that\\u2019s a bit too ambitious, or maybe authors don\\u2019t fully understand what org mode is...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/ertxbah/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"created\": 1561284936.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 10}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3xrzz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ertx43b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"ccharles\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1561255960.0, \"send_replies\": true, \"parent_id\": \"t3_c3xrzz\", \"score\": 21, \"author_fullname\": \"t2_bhd0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E a replacement for emacs org mode\\n\\nThis is a very strong claim.\", \"link_title\": \"Smos: a replacement for emacs org mode\", \"author_flair_css_class\": null, \"name\": \"t1_ertx43b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ea replacement for emacs org mode\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is a very strong claim.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/ertx43b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"created\": 1561284760.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 21}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c26qja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ertrpc0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1561251206.0, \"send_replies\": true, \"parent_id\": \"t1_eridwve\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Now say you wanted to add properties as well into your template. \\n\\nOrg gives you the option to add a string like \\n\\n(\\\"e\\\" \\\"example\\\" entry (file+headline \\\"/mnt/veracrypt1/Archive/OhSnap!.org\\\" \\\"example\\\")\\n\\n\\\"\\\\*\\\\* TODO %? \\\\\\\\n **%\\\\^{prop1}p %\\\\^{prop2}p %\\\\^{prop3}p %\\\\^{prop4}p \\\\\\\\n\\\")**\\n\\n\\u0026#x200B;\\n\\nnow, if I want these properties to be combined with a template from a file, how would that look? I get syntax errors when I try something like [this](https://paste.ofcode.org/LsENGZJFbGLyX4xVTnYcpB).\", \"link_title\": \"Capture template based in a file\", \"author_flair_css_class\": null, \"name\": \"t1_ertrpc0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENow say you wanted to add properties as well into your template. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg gives you the option to add a string like \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u0026quot;e\\u0026quot; \\u0026quot;example\\u0026quot; entry (file+headline \\u0026quot;/mnt/veracrypt1/Archive/OhSnap!.org\\u0026quot; \\u0026quot;example\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;** TODO %? \\\\n \\u003Cstrong\\u003E%^{prop1}p %^{prop2}p %^{prop3}p %^{prop4}p \\\\n\\u0026quot;)\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Enow, if I want these properties to be combined with a template from a file, how would that look? I get syntax errors when I try something like \\u003Ca href=\\\"https://paste.ofcode.org/LsENGZJFbGLyX4xVTnYcpB\\\"\\u003Ethis\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/ertrpc0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"created\": 1561280006.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c368vf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ert34up\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fturco\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561231151.0, \"send_replies\": true, \"parent_id\": \"t3_c368vf\", \"score\": 1, \"author_fullname\": \"t2_eko6a\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Before learning Emacs and Org Mode I was a [Dokuwiki](https://www.dokuwiki.org/) user.\", \"link_title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_ert34up\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBefore learning Emacs and Org Mode I was a \\u003Ca href=\\\"https://www.dokuwiki.org/\\\"\\u003EDokuwiki\\u003C/a\\u003E user.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/ert34up/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"report_reasons\": null, \"link_author\": \"argtri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"created\": 1561259951.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1561218364.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c26qja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ersix5v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"argtri\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1561215409.0, \"send_replies\": true, \"parent_id\": \"t3_c26qja\", \"score\": 1, \"author_fullname\": \"t2_b3vk3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"A simple example:\\n\\n\\u0026#x200B;\\n\\n (\\\"m\\\" \\\"dinner menu\\\" entry\\n (file \\\"C:\\\\\\\\Users\\\\\\\\johndoe\\\\\\\\Dropbox\\\\\\\\org\\\\\\\\dinner menus.org)\\n (file \\\"C:\\\\\\\\Users\\\\\\\\johndoe\\\\\\\\Dropbox\\\\\\\\org\\\\\\\\dinner menu template.org\\\"))\\n\\n\\u0026#x200B;\\n\\nThis capture template inserts the contents of \\\"dinner menu template.org\\\" into a new entry in \\\"dinner menus.org\\\".\\n\\n\\u0026#x200B;\\n\\nThe double backslashes are required by Windows, otherwise write the paths to files in the notation used by your operating system.\", \"link_title\": \"Capture template based in a file\", \"author_flair_css_class\": null, \"name\": \"t1_ersix5v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA simple example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;m\\u0026quot; \\u0026quot;dinner menu\\u0026quot; entry\\n(file \\u0026quot;C:\\\\\\\\Users\\\\\\\\johndoe\\\\\\\\Dropbox\\\\\\\\org\\\\\\\\dinner menus.org)\\n(file \\u0026quot;C:\\\\\\\\Users\\\\\\\\johndoe\\\\\\\\Dropbox\\\\\\\\org\\\\\\\\dinner menu template.org\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis capture template inserts the contents of \\u0026quot;dinner menu template.org\\u0026quot; into a new entry in \\u0026quot;dinner menus.org\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe double backslashes are required by Windows, otherwise write the paths to files in the notation used by your operating system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/ersix5v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"created\": 1561244209.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3e2th\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ersg1i9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1561212932.0, \"send_replies\": true, \"parent_id\": \"t3_c3e2th\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Captured entries are automatically stored as a bookmark, `org-capture-last-stored`.\", \"link_title\": \"Store link to newly captured task?\", \"author_flair_css_class\": null, \"name\": \"t1_ersg1i9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECaptured entries are automatically stored as a bookmark, \\u003Ccode\\u003Eorg-capture-last-stored\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/ersg1i9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"report_reasons\": null, \"link_author\": \"virvir\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"created\": 1561241732.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3e2th\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"err672f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hardrived_\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1561161407.0, \"send_replies\": true, \"parent_id\": \"t1_err644h\", \"score\": 1, \"author_fullname\": \"t2_ycu34\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Gotcha. I'm learning as I go, best of luck.\", \"link_title\": \"Store link to newly captured task?\", \"author_flair_css_class\": null, \"name\": \"t1_err672f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGotcha. I\\u0026#39;m learning as I go, best of luck.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/err672f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"report_reasons\": null, \"link_author\": \"virvir\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"created\": 1561190207.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3e2th\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"err644h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"virvir\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1561161339.0, \"send_replies\": true, \"parent_id\": \"t1_erqfga0\", \"score\": 1, \"author_fullname\": \"t2_jrwln\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Using %a or %l would be the wrong way around: I do not need a link from the place where the capture command was called from, but instead want a link *to* the refiled task.\", \"link_title\": \"Store link to newly captured task?\", \"author_flair_css_class\": null, \"name\": \"t1_err644h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsing %a or %l would be the wrong way around: I do not need a link from the place where the capture command was called from, but instead want a link \\u003Cem\\u003Eto\\u003C/em\\u003E the refiled task.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/err644h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"report_reasons\": null, \"link_author\": \"virvir\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"created\": 1561190139.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3e2th\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"err58l2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"probably-not-a-llama\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1561160626.0, \"send_replies\": true, \"parent_id\": \"t3_c3e2th\", \"score\": 3, \"author_fullname\": \"t2_jq0z6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I haven\\u2019t tested this, but you could maybe try adding `org-store-link` to `org-capture-before-finalize-hook`?\", \"link_title\": \"Store link to newly captured task?\", \"author_flair_css_class\": null, \"name\": \"t1_err58l2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI haven\\u2019t tested this, but you could maybe try adding \\u003Ccode\\u003Eorg-store-link\\u003C/code\\u003E to \\u003Ccode\\u003Eorg-capture-before-finalize-hook\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/err58l2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"report_reasons\": null, \"link_author\": \"virvir\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"created\": 1561189426.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erqxtuw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"itistheblurstoftimes\", \"num_comments\": 20, \"can_mod_post\": false, \"created_utc\": 1561154813.0, \"send_replies\": true, \"parent_id\": \"t1_eqhrc9z\", \"score\": 1, \"author_fullname\": \"t2_3gjjtpnq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Try it with hackers keyboard. Works great!\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_erqxtuw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETry it with hackers keyboard. Works great!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/erqxtuw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1561183613.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3e2th\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erqfga0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hardrived_\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1561142121.0, \"send_replies\": true, \"parent_id\": \"t3_c3e2th\", \"score\": 1, \"author_fullname\": \"t2_ycu34\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is a good question, I'm currently working on my Task capture process too. I'm wondering if you have added `%a` or `%l` to your capture templates?\", \"link_title\": \"Store link to newly captured task?\", \"author_flair_css_class\": null, \"name\": \"t1_erqfga0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is a good question, I\\u0026#39;m currently working on my Task capture process too. I\\u0026#39;m wondering if you have added \\u003Ccode\\u003E%a\\u003C/code\\u003E or \\u003Ccode\\u003E%l\\u003C/code\\u003E to your capture templates?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/erqfga0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"report_reasons\": null, \"link_author\": \"virvir\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"created\": 1561170921.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c3a5ki\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erpzdp7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fearbedragons\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561131588.0, \"send_replies\": true, \"parent_id\": \"t3_c3a5ki\", \"score\": 2, \"author_fullname\": \"t2_12yaty\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Despite the admonition on [the effort estimate](https://orgmode.org/manual/Effort-estimates.html) page, I can't get `org-agenda-columns-add-appointments-to-effort-sum` to automatically add effort to appointments. The appointment duration will appear as effort in column view only when I set effort manually, with `C-c C-x e`.\\n\\nI can only assume I'm formatting the appointments incorrectly. Does anyone know how to format appointments so the effort is calculated automatically? An example of my formatting and configuration follows.\\n\\n----\\n\\n**weekly-test.org**:\\n\\n ** TODO Scrum\\n SCHEDULED: \\u003C2019-06-28 Fri 10:00-10:15 +1w\\u003E\\n\\n**~/.emacs**:\\n\\n ;; save off vars\\n (setq xxx-org-columns-default-format org-columns-default-format)\\n (setq xxx-org-agenda-columns-add-appointments-to-effort-sum org-agenda-columns-add-appointments-to-effort-sum)\\n\\n ;; set vars\\n (setq org-columns-default-format \\\"%30ITEM %TODO %SCHEDULED %6Effort{:}\\\")\\n (setq org-agenda-columns-add-appointments-to-effort-sum t)\\n \\n ;; do stuff, see effort entry for Scrum is empty.\\n (org-agenda)\\n (org-agenda-columns)\\n\\n ;; restore previous values\\n (setq org-columns-default-format xxx-org-columns-default-format)\\n (setq org-agenda-columns-add-appointments-to-effort-sum xxx-org-agenda-columns-add-appointments-to-effort-sum)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 21, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_erpzdp7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDespite the admonition on \\u003Ca href=\\\"https://orgmode.org/manual/Effort-estimates.html\\\"\\u003Ethe effort estimate\\u003C/a\\u003E page, I can\\u0026#39;t get \\u003Ccode\\u003Eorg-agenda-columns-add-appointments-to-effort-sum\\u003C/code\\u003E to automatically add effort to appointments. The appointment duration will appear as effort in column view only when I set effort manually, with \\u003Ccode\\u003EC-c C-x e\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can only assume I\\u0026#39;m formatting the appointments incorrectly. Does anyone know how to format appointments so the effort is calculated automatically? An example of my formatting and configuration follows.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003Eweekly-test.org\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E** TODO Scrum\\nSCHEDULED: \\u0026lt;2019-06-28 Fri 10:00-10:15 +1w\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E~/.emacs\\u003C/strong\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; save off vars\\n(setq xxx-org-columns-default-format org-columns-default-format)\\n(setq xxx-org-agenda-columns-add-appointments-to-effort-sum org-agenda-columns-add-appointments-to-effort-sum)\\n\\n;; set vars\\n(setq org-columns-default-format \\u0026quot;%30ITEM %TODO %SCHEDULED %6Effort{:}\\u0026quot;)\\n(setq org-agenda-columns-add-appointments-to-effort-sum t)\\n\\n;; do stuff, see effort entry for Scrum is empty.\\n(org-agenda)\\n(org-agenda-columns)\\n\\n;; restore previous values\\n(setq org-columns-default-format xxx-org-columns-default-format)\\n(setq org-agenda-columns-add-appointments-to-effort-sum xxx-org-agenda-columns-add-appointments-to-effort-sum)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/erpzdp7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/\", \"created\": 1561160388.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c368vf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erpk79a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"mamoru\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561120339.0, \"send_replies\": true, \"parent_id\": \"t3_c368vf\", \"score\": 3, \"author_fullname\": \"t2_6qr0o\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Why not anyone use simple HTML ? Good for images, can be indexed pretty easily as well. Also you can reach it from anywhere, at anytime and put it in any graphical format with CSS.\", \"link_title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_erpk79a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy not anyone use simple HTML ? Good for images, can be indexed pretty easily as well. Also you can reach it from anywhere, at anytime and put it in any graphical format with CSS.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/erpk79a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"report_reasons\": null, \"link_author\": \"argtri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"created\": 1561149139.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c368vf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erpi7i5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"JR121\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561118372.0, \"send_replies\": true, \"parent_id\": \"t3_c368vf\", \"score\": 5, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I used Google products (docs, keep) and had problem of retrieving older information. I then shifted to a wiki called tidlywiki, which is very good platform to save info and nice on visuals, but always had issues capturing info (not fast enough) and formatting in it took time and effort.\\n\\nMy current workplace has office subscription so I worked with OneNote. It's an excellent app in terms of capturing info and saving info. The issues with it that it's still a bit \\\"messy\\\" visually (meant to look like a notebook, not a technical document, not much of a wiki) and huge (proprietary) archives. I like that even less for personal stuff. \\n\\nWith org I have more customized options and privacy. Need to work on the visual department.\", \"link_title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_erpi7i5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used Google products (docs, keep) and had problem of retrieving older information. I then shifted to a wiki called tidlywiki, which is very good platform to save info and nice on visuals, but always had issues capturing info (not fast enough) and formatting in it took time and effort.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current workplace has office subscription so I worked with OneNote. It\\u0026#39;s an excellent app in terms of capturing info and saving info. The issues with it that it\\u0026#39;s still a bit \\u0026quot;messy\\u0026quot; visually (meant to look like a notebook, not a technical document, not much of a wiki) and huge (proprietary) archives. I like that even less for personal stuff. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith org I have more customized options and privacy. Need to work on the visual department.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/erpi7i5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"report_reasons\": null, \"link_author\": \"argtri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"created\": 1561147172.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c368vf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erp90zc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"livrem\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561105734.0, \"send_replies\": true, \"parent_id\": \"t3_c368vf\", \"score\": 5, \"author_fullname\": \"t2_68in0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"A disaster.\", \"link_title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_erp90zc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA disaster.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/erp90zc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"report_reasons\": null, \"link_author\": \"argtri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"created\": 1561134534.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c368vf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erp6m5f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561102162.0, \"send_replies\": true, \"parent_id\": \"t3_c368vf\", \"score\": 3, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Well...\\n\\nMy \\\"home\\\" before Emacs and org was, in a timeline: a mere curated \\nhome taxonomy, after with adding few wikies, from MoinMoin to Gitolite\\nto Zim. They works mostly but it's textual capabilities are super\\nlimited and limiting. full-text search/traverse time to reach something\\nis good enough but an order of magnitude less effective than org-mode.\\n\\nFor some time I've used Recoll (Solr frontend with both CLI and a \\nlightweight GUI) but it's not much effective, too many results, too\\nlittle useful in medium. For some time I tried few small scale DMS\\nstarting with OpenKM and quickly jump to big monsters like Nuxeo and\\nAlfresco, all of them prove to be unuseful monsters, a pile of crap\\ngood only to milk consulting money when sold to some enterprise.\\n\\nToday, after two years in Emacs I still keep my curated home taxonomy\\nbut accessing it nearly exclusively through Emacs, org-mode is my main\\nsource of docs, well integrated in my taxonomy and it start to erode\\nthe idea of keeping everything well categorized with org-attach, but \\nfor now I do not go much further since org is too limited in this sense\\nand keeping attachments in good shape require more effort than the \\nadvantages it give...\", \"link_title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_erp6m5f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy \\u0026quot;home\\u0026quot; before Emacs and org was, in a timeline: a mere curated \\nhome taxonomy, after with adding few wikies, from MoinMoin to Gitolite\\nto Zim. They works mostly but it\\u0026#39;s textual capabilities are super\\nlimited and limiting. full-text search/traverse time to reach something\\nis good enough but an order of magnitude less effective than org-mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor some time I\\u0026#39;ve used Recoll (Solr frontend with both CLI and a \\nlightweight GUI) but it\\u0026#39;s not much effective, too many results, too\\nlittle useful in medium. For some time I tried few small scale DMS\\nstarting with OpenKM and quickly jump to big monsters like Nuxeo and\\nAlfresco, all of them prove to be unuseful monsters, a pile of crap\\ngood only to milk consulting money when sold to some enterprise.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EToday, after two years in Emacs I still keep my curated home taxonomy\\nbut accessing it nearly exclusively through Emacs, org-mode is my main\\nsource of docs, well integrated in my taxonomy and it start to erode\\nthe idea of keeping everything well categorized with org-attach, but \\nfor now I do not go much further since org is too limited in this sense\\nand keeping attachments in good shape require more effort than the \\nadvantages it give...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/erp6m5f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"report_reasons\": null, \"link_author\": \"argtri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"created\": 1561130962.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c368vf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erp662j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jakub1842\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561101540.0, \"send_replies\": true, \"parent_id\": \"t3_c368vf\", \"score\": 2, \"author_fullname\": \"t2_9a92vgd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I used 2do and quite liked it. Then I decided to switch to Linux for desktop and org-mode was the simplest alternative. Org-mode also syncs with my phone with beorg so it basically achieves what 2do did \\u2014 and then so much more!\", \"link_title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_erp662j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used 2do and quite liked it. Then I decided to switch to Linux for desktop and org-mode was the simplest alternative. Org-mode also syncs with my phone with beorg so it basically achieves what 2do did \\u2014 and then so much more!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/erp662j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"report_reasons\": null, \"link_author\": \"argtri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"created\": 1561130340.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c368vf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eroz4y2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"takethecannoli4\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1561093314.0, \"send_replies\": true, \"parent_id\": \"t3_c368vf\", \"score\": 2, \"author_fullname\": \"t2_13p6gig2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I used Remember the Milk PRO but it was pricey and far from ideal.\", \"link_title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_eroz4y2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used Remember the Milk PRO but it was pricey and far from ideal.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/eroz4y2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"report_reasons\": null, \"link_author\": \"argtri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"created\": 1561122114.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c26qja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erml4pz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1561028272.0, \"send_replies\": true, \"parent_id\": \"t1_ermdmjg\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"That doesn't work, at least not for me. A whole org file results in an error that the page couldn't be interpreted, or something similar. \\n\\nThe org file (or txt or . whatever file) needs to include only the parts you need. There's probably something on the options or otherwise the header in the file that makes it fail.\", \"link_title\": \"Capture template based in a file\", \"author_flair_css_class\": null, \"name\": \"t1_erml4pz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat doesn\\u0026#39;t work, at least not for me. A whole org file results in an error that the page couldn\\u0026#39;t be interpreted, or something similar. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe org file (or txt or . whatever file) needs to include only the parts you need. There\\u0026#39;s probably something on the options or otherwise the header in the file that makes it fail.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/erml4pz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"created\": 1561057072.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1561017115.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c26qja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ermdmjg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DurableOne\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1561016934.0, \"send_replies\": true, \"parent_id\": \"t3_c26qja\", \"score\": 2, \"author_fullname\": \"t2_lczxb1w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I thought the manual was clear enough. You want something like the following:\\n\\n (setq org-capture-templates\\n '((\\\"s\\\" \\\"Setup\\\" entry (file+headline \\\"~/org/capture.org\\\" \\\"Setup captures\\\") (file \\\"~/Documents/templates/setup.org\\\"))))\", \"link_title\": \"Capture template based in a file\", \"author_flair_css_class\": null, \"name\": \"t1_ermdmjg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI thought the manual was clear enough. You want something like the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-capture-templates\\n \\u0026#39;((\\u0026quot;s\\u0026quot; \\u0026quot;Setup\\u0026quot; entry (file+headline \\u0026quot;~/org/capture.org\\u0026quot; \\u0026quot;Setup captures\\u0026quot;) (file \\u0026quot;~/Documents/templates/setup.org\\u0026quot;))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/ermdmjg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"created\": 1561045734.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c26qja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erjvkf8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1560948268.0, \"send_replies\": true, \"parent_id\": \"t1_erjuy8y\", \"score\": 2, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"No. The problem is how the manual explains it, which is why you (and probably others) don't get it. I know this sounds offensive, but I'm not trying to be. \\n\\nThe problem is that you need to have a certain mindset to understand how it's laid out. Probably a programming background or similar. To many (me included) this makes no sense. We see no explanation it says there is, and copy pasting the line fails in errors. \\n\\nI looked for help before, and all I got is confused replies, kind of like yours. Not out of impatience. People just said to me \\\"it's right there!\\\" and it was like looking at one of those 3D patterns the right way to get it. \\n\\nI hope I can explain it soon. The little I'm trying here is probably throwing people off.\", \"link_title\": \"Capture template based in a file\", \"author_flair_css_class\": null, \"name\": \"t1_erjvkf8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo. The problem is how the manual explains it, which is why you (and probably others) don\\u0026#39;t get it. I know this sounds offensive, but I\\u0026#39;m not trying to be. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe problem is that you need to have a certain mindset to understand how it\\u0026#39;s laid out. Probably a programming background or similar. To many (me included) this makes no sense. We see no explanation it says there is, and copy pasting the line fails in errors. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI looked for help before, and all I got is confused replies, kind of like yours. Not out of impatience. People just said to me \\u0026quot;it\\u0026#39;s right there!\\u0026quot; and it was like looking at one of those 3D patterns the right way to get it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI hope I can explain it soon. The little I\\u0026#39;m trying here is probably throwing people off.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/erjvkf8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"created\": 1560977068.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c26qja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erjuy8y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"oantolin\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1560947715.0, \"send_replies\": true, \"parent_id\": \"t3_c26qja\", \"score\": 1, \"author_fullname\": \"t2_3fxjo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I am very confused. The part the manual you quote says that you can replace a template string with the list `(file \\\"~/path/to/file/containing/template-string.txt\\\")`. I remember that used to work, just as the manual says. Has something changed?\", \"link_title\": \"Capture template based in a file\", \"author_flair_css_class\": null, \"name\": \"t1_erjuy8y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am very confused. The part the manual you quote says that you can replace a template string with the list \\u003Ccode\\u003E(file \\u0026quot;~/path/to/file/containing/template-string.txt\\u0026quot;)\\u003C/code\\u003E. I remember that used to work, just as the manual says. Has something changed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/erjuy8y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"created\": 1560976515.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c26qja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erissq2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1560906280.0, \"send_replies\": true, \"parent_id\": \"t1_eri6b19\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Check the above :)\\n\\n\\u0026#x200B;\\n\\nI have a feeling we are not the only one who didn't' realize how \\\"simple\\\" it is. It's one of those things that are so simple you just know to do it and shrug, or you don't and you have no idea what to look for and there are no tutorials.\", \"link_title\": \"Capture template based in a file\", \"author_flair_css_class\": null, \"name\": \"t1_erissq2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECheck the above :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a feeling we are not the only one who didn\\u0026#39;t\\u0026#39; realize how \\u0026quot;simple\\u0026quot; it is. It\\u0026#39;s one of those things that are so simple you just know to do it and shrug, or you don\\u0026#39;t and you have no idea what to look for and there are no tutorials.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/erissq2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"created\": 1560935080.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c26qja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eris7l8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1560905833.0, \"send_replies\": true, \"parent_id\": \"t3_c26qja\", \"score\": 3, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I think... I got it. Wow. I can't believe it, it was like looking for a needle in a hay stack. It was more about understanding what's right under my nose, but wasn't clear enough. \\n\\n\\u0026#x200B;\\n\\nOrg-mode manual says: \\\"\\\\***maybe loaded from a template file, using the special syntax \\u2018(file \\\"template filename\\\"),** see below for more details, as I said before. There are not details below, not that I could gather. \\n\\n\\u0026#x200B;\\n\\nBut then I stumbled upon this [video](https://emacsnyc.org/2015/03/02/how-i-use-org-capture-and-stuff.html). The guys is mostly talking about how cool Org is and how he uses templates, but at some point he does mention getting a template from a file. It's kind of fast in the video, but luckily the guy, Jonathan, [made his notes available](https://emacsnyc.org/assets/documents/how-i-use-org-capture-and-stuff.pdf). And right there, in slide 6, it reads: \\\"Template stored in file\\\". \\n\\n\\u0026#x200B;\\n\\nHe uses the same line exactly as described in the manual: \\n\\n`(\\\"j\\\" \\\"Journal entry\\\"entry(file+datetree\\\"~/org/journal.org\\\")(file\\\"~/.emacs.d/org-templates/journal.orgcaptmpl\\\"))`\\n\\n\\u0026#x200B;\\n\\nYou see it? Instead of specifying the syntax we all know to create capture templates, there's another path and it starts with a file. So I started playing around... first attempt, leading to a full .org file, failed. It said it couldn't read it. But then, when I copy-pasted just the part I need for the template (it's basically two checklists under two separate headers) it.... WORKED. \\n\\n\\u0026#x200B;\\n\\nSo I'm tweaking it now and playing with it, but the idea is this: \\n\\n\\u0026#x200B;\\n\\nIf you have a template that is based on an org file you already have, just copy the part that you want as the template to a new org file (or I think, it can be anything, as Jonathan notes show, you can call it template.txt or template.monster for all it cares) and in the template definition setting (in your init) specify (file\\\"\\\\[path\\\\]\\\") instead of the usual template syntax, and that's it. It will use that. \\n\\n\\u0026#x200B;\\n\\nIn a way, this makes writing template so much easier, because you don't need to remember all the capture characters! you just copy a segment you want! The options are endless, you can even include an attachment or an image with it! My mind, it is blown. \\n\\n\\u0026#x200B;\\n\\n( I should make this a post...)\", \"link_title\": \"Capture template based in a file\", \"author_flair_css_class\": null, \"name\": \"t1_eris7l8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think... I got it. Wow. I can\\u0026#39;t believe it, it was like looking for a needle in a hay stack. It was more about understanding what\\u0026#39;s right under my nose, but wasn\\u0026#39;t clear enough. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg-mode manual says: \\u0026quot;*\\u003Cstrong\\u003Emaybe loaded from a template file, using the special syntax \\u2018(file \\u0026quot;template filename\\u0026quot;),\\u003C/strong\\u003E see below for more details, as I said before. There are not details below, not that I could gather. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut then I stumbled upon this \\u003Ca href=\\\"https://emacsnyc.org/2015/03/02/how-i-use-org-capture-and-stuff.html\\\"\\u003Evideo\\u003C/a\\u003E. The guys is mostly talking about how cool Org is and how he uses templates, but at some point he does mention getting a template from a file. It\\u0026#39;s kind of fast in the video, but luckily the guy, Jonathan, \\u003Ca href=\\\"https://emacsnyc.org/assets/documents/how-i-use-org-capture-and-stuff.pdf\\\"\\u003Emade his notes available\\u003C/a\\u003E. And right there, in slide 6, it reads: \\u0026quot;Template stored in file\\u0026quot;. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe uses the same line exactly as described in the manual: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(\\u0026quot;j\\u0026quot; \\u0026quot;Journal entry\\u0026quot;entry(file+datetree\\u0026quot;~/org/journal.org\\u0026quot;)(file\\u0026quot;~/.emacs.d/org-templates/journal.orgcaptmpl\\u0026quot;))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou see it? Instead of specifying the syntax we all know to create capture templates, there\\u0026#39;s another path and it starts with a file. So I started playing around... first attempt, leading to a full .org file, failed. It said it couldn\\u0026#39;t read it. But then, when I copy-pasted just the part I need for the template (it\\u0026#39;s basically two checklists under two separate headers) it.... WORKED. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;m tweaking it now and playing with it, but the idea is this: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you have a template that is based on an org file you already have, just copy the part that you want as the template to a new org file (or I think, it can be anything, as Jonathan notes show, you can call it template.txt or template.monster for all it cares) and in the template definition setting (in your init) specify (file\\u0026quot;[path]\\u0026quot;) instead of the usual template syntax, and that\\u0026#39;s it. It will use that. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a way, this makes writing template so much easier, because you don\\u0026#39;t need to remember all the capture characters! you just copy a segment you want! The options are endless, you can even include an attachment or an image with it! My mind, it is blown. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E( I should make this a post...)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/eris7l8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"created\": 1560934633.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c26qja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eridwve\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"recursing-p\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1560895281.0, \"send_replies\": true, \"parent_id\": \"t3_c26qja\", \"score\": 1, \"author_fullname\": \"t2_3yhfsve4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yes, this is possible. I do this for a few things, one of which is for doing weekly reviews. Let's assume I have a template for a weekly review like this:\\n\\n * Weekly review for: %(format-time-string \\\"%Y-%m-%d\\\")\\n ** Tasks\\n - [ ] Empty out refile.org\\n - [ ] Un-stuck projects\\n ** Questions\\n - [ ] Did I work on a personal project this week?\\n - [ ] Is this comment too long?\\n\\nLet's call this file `~/org/templates/weekly-review.org`, and let's assume my file for my weekly reviews is located at `~/org/reviews.org`. The capture template should look like:\\n\\n (add-to-list 'org-capture-templates\\n '(\\\"r\\\" \\\"Weekly Review\\\" entry (file \\\"~/org/reviews.org\\\")\\n (file \\\"~/org/templates/weekly-review.ledger\\\"))\\n\\nNote that instead of specifying the string after `(file \\\"~/reviews.org\\\")`, you just specify the template you'd like to use. You can do this with other files too, like ledger files for example. Hope this helps!\\n\\nedit: new to reddit, wasn't sure how to format things\", \"link_title\": \"Capture template based in a file\", \"author_flair_css_class\": null, \"name\": \"t1_eridwve\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, this is possible. I do this for a few things, one of which is for doing weekly reviews. Let\\u0026#39;s assume I have a template for a weekly review like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Weekly review for: %(format-time-string \\u0026quot;%Y-%m-%d\\u0026quot;)\\n** Tasks\\n - [ ] Empty out refile.org\\n - [ ] Un-stuck projects\\n** Questions\\n - [ ] Did I work on a personal project this week?\\n - [ ] Is this comment too long?\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ELet\\u0026#39;s call this file \\u003Ccode\\u003E~/org/templates/weekly-review.org\\u003C/code\\u003E, and let\\u0026#39;s assume my file for my weekly reviews is located at \\u003Ccode\\u003E~/org/reviews.org\\u003C/code\\u003E. The capture template should look like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(add-to-list \\u0026#39;org-capture-templates\\n \\u0026#39;(\\u0026quot;r\\u0026quot; \\u0026quot;Weekly Review\\u0026quot; entry (file \\u0026quot;~/org/reviews.org\\u0026quot;)\\n (file \\u0026quot;~/org/templates/weekly-review.ledger\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENote that instead of specifying the string after \\u003Ccode\\u003E(file \\u0026quot;~/reviews.org\\u0026quot;)\\u003C/code\\u003E, you just specify the template you\\u0026#39;d like to use. You can do this with other files too, like ledger files for example. Hope this helps!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eedit: new to reddit, wasn\\u0026#39;t sure how to format things\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/eridwve/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"created\": 1560924081.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c26qja\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eri6b19\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Grisk13\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1560890410.0, \"send_replies\": true, \"parent_id\": \"t3_c26qja\", \"score\": 2, \"author_fullname\": \"t2_7dcaa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have not been able to figure this out myself but I\\u2019m very curious to know if anyone has. The last time I did a dive into the documentation it seemed like it should be possible but I wasn\\u2019t able to solve it.\", \"link_title\": \"Capture template based in a file\", \"author_flair_css_class\": null, \"name\": \"t1_eri6b19\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have not been able to figure this out myself but I\\u2019m very curious to know if anyone has. The last time I did a dive into the documentation it seemed like it should be possible but I wasn\\u2019t able to solve it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/eri6b19/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"created\": 1560919210.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c133r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ergofmb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Qwarctick\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560850035.0, \"send_replies\": true, \"parent_id\": \"t1_ere9mai\", \"score\": 1, \"author_fullname\": \"t2_jmplgk2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I like the idea with your temp.org. thanks ! \\nI will take a look on capture too\", \"link_title\": \"org-mode as work diary and notes\", \"author_flair_css_class\": null, \"name\": \"t1_ergofmb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like the idea with your temp.org. thanks ! \\nI will take a look on capture too\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/ergofmb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"report_reasons\": null, \"link_author\": \"Qwarctick\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"created\": 1560878835.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1roqk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erf6ccv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fearbedragons\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560801048.0, \"send_replies\": true, \"parent_id\": \"t1_erf3y6j\", \"score\": 1, \"author_fullname\": \"t2_12yaty\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Interesting! Those come pretty close.\\n\\nUntil there's a \\\"org-agenda-dont-count-deadlines-in-effort-if-scheduled\\\" option, I just made a custom agenda view for effort that hides deadlines.\", \"link_title\": \"Avoid Double Counting Effort on Agenda Column View with Scheduled Deadlines?\", \"author_flair_css_class\": null, \"name\": \"t1_erf6ccv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EInteresting! Those come pretty close.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUntil there\\u0026#39;s a \\u0026quot;org-agenda-dont-count-deadlines-in-effort-if-scheduled\\u0026quot; option, I just made a custom agenda view for effort that hides deadlines.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1roqk/avoid_double_counting_effort_on_agenda_column/erf6ccv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1roqk/avoid_double_counting_effort_on_agenda_column/\", \"report_reasons\": null, \"link_author\": \"fearbedragons\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1roqk/avoid_double_counting_effort_on_agenda_column/\", \"created\": 1560829848.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1lhb5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erf4h6f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"soops1966\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560799795.0, \"send_replies\": true, \"parent_id\": \"t1_ereyoxb\", \"score\": 2, \"author_fullname\": \"t2_9wkx0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'll do that, thank you. \\n\\nI'm getting tired of my dependence on outside resources.\", \"link_title\": \"HTML output that can be used on an Android phone\", \"author_flair_css_class\": null, \"name\": \"t1_erf4h6f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ll do that, thank you. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m getting tired of my dependence on outside resources.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/erf4h6f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"report_reasons\": null, \"link_author\": \"soops1966\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"created\": 1560828595.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1roqk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erf3y6j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560799442.0, \"send_replies\": true, \"parent_id\": \"t3_c1roqk\", \"score\": 2, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Does `(setq org-agenda-skip-scheduled-if-deadline-is-shown t)` or `(setq org-agenda-skip-deadline-prewarning-if-scheduled t)` get what you want?\", \"link_title\": \"Avoid Double Counting Effort on Agenda Column View with Scheduled Deadlines?\", \"author_flair_css_class\": null, \"name\": \"t1_erf3y6j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes \\u003Ccode\\u003E(setq org-agenda-skip-scheduled-if-deadline-is-shown t)\\u003C/code\\u003E or \\u003Ccode\\u003E(setq org-agenda-skip-deadline-prewarning-if-scheduled t)\\u003C/code\\u003E get what you want?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1roqk/avoid_double_counting_effort_on_agenda_column/erf3y6j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1roqk/avoid_double_counting_effort_on_agenda_column/\", \"report_reasons\": null, \"link_author\": \"fearbedragons\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1roqk/avoid_double_counting_effort_on_agenda_column/\", \"created\": 1560828242.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1lhb5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ereyoxb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"matthew-graybosch\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560795938.0, \"send_replies\": true, \"parent_id\": \"t1_erew86r\", \"score\": 1, \"author_fullname\": \"t2_2w6edh8n\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You might want to check out [Syncthing](https://syncthing.net/) as a FOSS alternative to Dropbox. I use it at home to keep my laptops and desktop synced.\", \"link_title\": \"HTML output that can be used on an Android phone\", \"author_flair_css_class\": null, \"name\": \"t1_ereyoxb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou might want to check out \\u003Ca href=\\\"https://syncthing.net/\\\"\\u003ESyncthing\\u003C/a\\u003E as a FOSS alternative to Dropbox. I use it at home to keep my laptops and desktop synced.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/ereyoxb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"report_reasons\": null, \"link_author\": \"soops1966\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"created\": 1560824738.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1lhb5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erewcvz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"soops1966\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560794385.0, \"send_replies\": true, \"parent_id\": \"t1_erejpfz\", \"score\": 1, \"author_fullname\": \"t2_9wkx0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I plan to link to pdf's, shi this might end up a bit too heavy for my needs.\", \"link_title\": \"HTML output that can be used on an Android phone\", \"author_flair_css_class\": null, \"name\": \"t1_erewcvz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI plan to link to pdf\\u0026#39;s, shi this might end up a bit too heavy for my needs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/erewcvz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"report_reasons\": null, \"link_author\": \"soops1966\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"created\": 1560823185.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1lhb5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erew86r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"soops1966\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560794297.0, \"send_replies\": true, \"parent_id\": \"t1_erepu6m\", \"score\": 2, \"author_fullname\": \"t2_9wkx0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I thought this was going to be straightforward. Not so it seems. \\n\\nI might look at exporting to dropbox, might take the android filesystem out of the equation. Plus the seems to quite a few examples on the net. \\n\\nStill, i live to learn, so this will be fun in the long run \\ud83d\\ude01\", \"link_title\": \"HTML output that can be used on an Android phone\", \"author_flair_css_class\": null, \"name\": \"t1_erew86r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI thought this was going to be straightforward. Not so it seems. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI might look at exporting to dropbox, might take the android filesystem out of the equation. Plus the seems to quite a few examples on the net. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStill, i live to learn, so this will be fun in the long run \\ud83d\\ude01\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/erew86r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"report_reasons\": null, \"link_author\": \"soops1966\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"created\": 1560823097.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1gx6s\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erergjh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pgwang\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1560791134.0, \"send_replies\": true, \"parent_id\": \"t1_erejc17\", \"score\": 1, \"author_fullname\": \"t2_mrsxp9x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"My best guess would simply be to use shift + arrow keys (right to move the date farther in the future, and left to move the date back).\", \"link_title\": \"Repeating task that, when completed, sets due date exactly 24 hours from the time last completed?\", \"author_flair_css_class\": null, \"name\": \"t1_erergjh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy best guess would simply be to use shift + arrow keys (right to move the date farther in the future, and left to move the date back).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/erergjh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"report_reasons\": null, \"link_author\": \"pgwang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"created\": 1560819934.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1gx6s\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ereraal\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pgwang\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1560791016.0, \"send_replies\": true, \"parent_id\": \"t1_erd73ky\", \"score\": 1, \"author_fullname\": \"t2_mrsxp9x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Ah yes, I think it does that on my machine as well... Is there any way we could conceivably treat the time as something to be changed as wells such as to implement this? Another idea I was toying with was to make it a quick capture template and simply set the due/scheduled date automatically to 24 hours in the future. Though, I'm not sure how I would do the automatic time shift...\", \"link_title\": \"Repeating task that, when completed, sets due date exactly 24 hours from the time last completed?\", \"author_flair_css_class\": null, \"name\": \"t1_ereraal\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAh yes, I think it does that on my machine as well... Is there any way we could conceivably treat the time as something to be changed as wells such as to implement this? Another idea I was toying with was to make it a quick capture template and simply set the due/scheduled date automatically to 24 hours in the future. Though, I\\u0026#39;m not sure how I would do the automatic time shift...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/ereraal/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"report_reasons\": null, \"link_author\": \"pgwang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"created\": 1560819816.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1lhb5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erepu6m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"matthew-graybosch\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560790053.0, \"send_replies\": true, \"parent_id\": \"t1_erepp5d\", \"score\": 2, \"author_fullname\": \"t2_2w6edh8n\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Good luck. I can't really help with Android issues; I still use an old Nokia dumbphone. :)\", \"link_title\": \"HTML output that can be used on an Android phone\", \"author_flair_css_class\": null, \"name\": \"t1_erepu6m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood luck. I can\\u0026#39;t really help with Android issues; I still use an old Nokia dumbphone. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/erepu6m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"report_reasons\": null, \"link_author\": \"soops1966\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"created\": 1560818853.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1lhb5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erepp5d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"soops1966\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560789961.0, \"send_replies\": true, \"parent_id\": \"t1_erega16\", \"score\": 2, \"author_fullname\": \"t2_9wkx0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I saw a forum post about setting (org-link-filepath-type 'relative)\\n\\nOrg now seems to create relative links, the problem may lie on the phone.\\n\\nI'll have to do some more digging.\", \"link_title\": \"HTML output that can be used on an Android phone\", \"author_flair_css_class\": null, \"name\": \"t1_erepp5d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI saw a forum post about setting (org-link-filepath-type \\u0026#39;relative)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg now seems to create relative links, the problem may lie on the phone.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ll have to do some more digging.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/erepp5d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"report_reasons\": null, \"link_author\": \"soops1966\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"created\": 1560818761.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1lhb5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erejpfz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SJetKaran\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560785803.0, \"send_replies\": true, \"parent_id\": \"t3_c1lhb5\", \"score\": 2, \"author_fullname\": \"t2_mp4lr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I create a _self-contained_ html after I do the `org-html-export-to-html` command\\n\\n # https://github.com/remy/inliner\\n # sudo npm install -g inliner\\n import glob\\n import os\\n import subprocess\\n html_file_list = glob.glob(\\\"/home/user/Dropbox/org/*.html\\\")\\n export_dir = \\\"/home/user/Dropbox/org-exports/\\\"\\n for one_file in html_file_list:\\n print(one_file)\\n command = 'inliner ' + one_file + ' \\u003E ' + export_dir + os.path.basename(one_file)\\n subprocess.call(command, shell=True)\\n\\nThere is probably an easier way to achieve this, but this works for me.\", \"link_title\": \"HTML output that can be used on an Android phone\", \"author_flair_css_class\": null, \"name\": \"t1_erejpfz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI create a \\u003Cem\\u003Eself-contained\\u003C/em\\u003E html after I do the \\u003Ccode\\u003Eorg-html-export-to-html\\u003C/code\\u003E command\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E# https://github.com/remy/inliner\\n# sudo npm install -g inliner\\nimport glob\\nimport os\\nimport subprocess\\nhtml_file_list = glob.glob(\\u0026quot;/home/user/Dropbox/org/*.html\\u0026quot;)\\nexport_dir = \\u0026quot;/home/user/Dropbox/org-exports/\\u0026quot;\\nfor one_file in html_file_list:\\n print(one_file)\\n command = \\u0026#39;inliner \\u0026#39; + one_file + \\u0026#39; \\u0026gt; \\u0026#39; + export_dir + os.path.basename(one_file)\\n subprocess.call(command, shell=True)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThere is probably an easier way to achieve this, but this works for me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/erejpfz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"report_reasons\": null, \"link_author\": \"soops1966\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"created\": 1560814603.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1gx6s\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erejc17\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SJetKaran\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1560785545.0, \"send_replies\": true, \"parent_id\": \"t3_c1gx6s\", \"score\": 1, \"author_fullname\": \"t2_mp4lr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"On a related note (i think), is it possible to have some sort of snooze feature: Say I have a todo (no schedule/deadline attached) in my agenda, but I want to hide/snooze it from the agenda for a day (or few). How can I do this?\", \"link_title\": \"Repeating task that, when completed, sets due date exactly 24 hours from the time last completed?\", \"author_flair_css_class\": null, \"name\": \"t1_erejc17\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn a related note (i think), is it possible to have some sort of snooze feature: Say I have a todo (no schedule/deadline attached) in my agenda, but I want to hide/snooze it from the agenda for a day (or few). How can I do this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/erejc17/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"report_reasons\": null, \"link_author\": \"pgwang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"created\": 1560814345.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1lhb5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ereh7ac\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"soops1966\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560784029.0, \"send_replies\": true, \"parent_id\": \"t1_erega16\", \"score\": 1, \"author_fullname\": \"t2_9wkx0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm on my phone at the moment, I'll see what i can do when i get home. \\n\\nThank you for your time, it's much appreciated.\", \"link_title\": \"HTML output that can be used on an Android phone\", \"author_flair_css_class\": null, \"name\": \"t1_ereh7ac\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m on my phone at the moment, I\\u0026#39;ll see what i can do when i get home. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you for your time, it\\u0026#39;s much appreciated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/ereh7ac/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"report_reasons\": null, \"link_author\": \"soops1966\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"created\": 1560812829.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1lhb5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erega16\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"matthew-graybosch\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560783350.0, \"send_replies\": true, \"parent_id\": \"t1_ereg3xa\", \"score\": 2, \"author_fullname\": \"t2_2w6edh8n\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E I'm using a windows laptop, could the issue be there?\\n\\nMaybe. It might help if you felt comfortable sharing the relevant sections of your ```.emacs```. Maybe there's a clue in your org-publish configuration.\", \"link_title\": \"HTML output that can be used on an Android phone\", \"author_flair_css_class\": null, \"name\": \"t1_erega16\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI\\u0026#39;m using a windows laptop, could the issue be there?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMaybe. It might help if you felt comfortable sharing the relevant sections of your \\u003Ccode\\u003E.emacs\\u003C/code\\u003E. Maybe there\\u0026#39;s a clue in your org-publish configuration.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/erega16/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"report_reasons\": null, \"link_author\": \"soops1966\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"created\": 1560812150.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1lhb5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ereg3xa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"soops1966\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560783227.0, \"send_replies\": true, \"parent_id\": \"t1_erec764\", \"score\": 1, \"author_fullname\": \"t2_9wkx0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm using relative links in my org files. \\n\\nI have folders for css, img, and documents. The org files all reside in the same directory, the other folders below that.\\n\\nI'm using a windows laptop, could the issue be there?\", \"link_title\": \"HTML output that can be used on an Android phone\", \"author_flair_css_class\": null, \"name\": \"t1_ereg3xa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using relative links in my org files. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have folders for css, img, and documents. The org files all reside in the same directory, the other folders below that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using a windows laptop, could the issue be there?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/ereg3xa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"report_reasons\": null, \"link_author\": \"soops1966\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"created\": 1560812027.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1lhb5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erec764\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"matthew-graybosch\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1560780265.0, \"send_replies\": true, \"parent_id\": \"t3_c1lhb5\", \"score\": 2, \"author_fullname\": \"t2_2w6edh8n\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"How are you linking your files? Are you using relative links or absolutes? What does your directory structure look like?\", \"link_title\": \"HTML output that can be used on an Android phone\", \"author_flair_css_class\": null, \"name\": \"t1_erec764\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow are you linking your files? Are you using relative links or absolutes? What does your directory structure look like?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/erec764/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"report_reasons\": null, \"link_author\": \"soops1966\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"created\": 1560809065.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byflyn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ereaq5z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"w0wt1p\", \"num_comments\": 20, \"can_mod_post\": false, \"created_utc\": 1560779054.0, \"send_replies\": true, \"parent_id\": \"t3_byflyn\", \"score\": 1, \"author_fullname\": \"t2_4rfi7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Maybe cross post this to /r/emacs as well? Might be of interest to folks not following /r/orgmode\", \"link_title\": \"Orgzly: an interview with the creator\", \"author_flair_css_class\": null, \"name\": \"t1_ereaq5z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe cross post this to \\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E as well? Might be of interest to folks not following \\u003Ca href=\\\"/r/orgmode\\\"\\u003E/r/orgmode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/ereaq5z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"created\": 1560807854.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560778637.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c133r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ere9mai\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"w0wt1p\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560778126.0, \"send_replies\": true, \"parent_id\": \"t3_c133r2\", \"score\": 1, \"author_fullname\": \"t2_4rfi7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"My work org workflow is something like:\\n\\n- Capture templates with automatic schedule for today for tasks and TODOs, which makes agenda useful\\n\\n- Setup some macro so I can yank Outlook links to relevant Org tasks\\n\\n- For other notes I have this temp.org file which I have bound to F5 for easy access. I just press F5 key and start taking notes, then it require frequent refiling to other org files for keeping the temp.org at a reasonable size\\n\\n\\n (defun my-temp-buffer ()\\n \\\"Activate TEMP org buffer\\\"\\n (interactive)\\n (find-file \\\"~/org-files/temp.org\\\")\\n (end-of-buffer))\\n \\n (global-set-key [f5] 'my-temp-buffer)\\n\\nIt's not much, but works for me right now...\", \"link_title\": \"org-mode as work diary and notes\", \"author_flair_css_class\": null, \"name\": \"t1_ere9mai\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy work org workflow is something like:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECapture templates with automatic schedule for today for tasks and TODOs, which makes agenda useful\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ESetup some macro so I can yank Outlook links to relevant Org tasks\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EFor other notes I have this temp.org file which I have bound to F5 for easy access. I just press F5 key and start taking notes, then it require frequent refiling to other org files for keeping the temp.org at a reasonable size\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun my-temp-buffer ()\\n \\u0026quot;Activate TEMP org buffer\\u0026quot;\\n (interactive)\\n (find-file \\u0026quot;~/org-files/temp.org\\u0026quot;)\\n (end-of-buffer))\\n\\n(global-set-key [f5] \\u0026#39;my-temp-buffer)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s not much, but works for me right now...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/ere9mai/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"report_reasons\": null, \"link_author\": \"Qwarctick\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"created\": 1560806926.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1gx6s\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erd73ky\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BeetleB\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1560732888.0, \"send_replies\": true, \"parent_id\": \"t3_c1gx6s\", \"score\": 3, \"author_fullname\": \"t2_1tduz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hmm...\\n\\nI think this might be a bug. On my machine, it *does* move it forward beyond today, no matter how old the original timestamp was. But it maintains the 17:00. \\n\\nSo if I set it to \\u003C2019-06-13 17:00 .+24h\\u003E and mark it done, it sets the new date to the next 17:00 (if I did it before 5pm today, it will move it out to today's 5pm, otherwise it will move it out to tomorrow's 5pm).\\n\\nI think the rationale is that if you explicitly put a time there, it assumes that time is unchangeable (e.g. something occurring daily at that time).\", \"link_title\": \"Repeating task that, when completed, sets due date exactly 24 hours from the time last completed?\", \"author_flair_css_class\": null, \"name\": \"t1_erd73ky\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHmm...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think this might be a bug. On my machine, it \\u003Cem\\u003Edoes\\u003C/em\\u003E move it forward beyond today, no matter how old the original timestamp was. But it maintains the 17:00. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo if I set it to \\u0026lt;2019-06-13 17:00 .+24h\\u0026gt; and mark it done, it sets the new date to the next 17:00 (if I did it before 5pm today, it will move it out to today\\u0026#39;s 5pm, otherwise it will move it out to tomorrow\\u0026#39;s 5pm).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think the rationale is that if you explicitly put a time there, it assumes that time is unchangeable (e.g. something occurring daily at that time).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/erd73ky/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"report_reasons\": null, \"link_author\": \"pgwang\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"created\": 1560761688.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c133r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ercr5kh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WallyMetropolis\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560719708.0, \"send_replies\": true, \"parent_id\": \"t3_c133r2\", \"score\": 3, \"author_fullname\": \"t2_6icfn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"The piece that made all this hang together for me, and made it an indispensable part of my daily workflow was using org-capture. \\n\\nI have a capture templates to create entries for meeting notes, todos, scheduled items, deadlines and projects. This way I don't really care what my actual underlying agenda files look like (I eventually settled on just one giant file). I use a few custom agenda filters to display which ever of those things are interesting to me. \\nAnd then integrating my google calendar made it a single source of information for my entire schedule. It's been a while since I configured all of that, but if you have any questions, I can try to help.\", \"link_title\": \"org-mode as work diary and notes\", \"author_flair_css_class\": null, \"name\": \"t1_ercr5kh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe piece that made all this hang together for me, and made it an indispensable part of my daily workflow was using org-capture. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a capture templates to create entries for meeting notes, todos, scheduled items, deadlines and projects. This way I don\\u0026#39;t really care what my actual underlying agenda files look like (I eventually settled on just one giant file). I use a few custom agenda filters to display which ever of those things are interesting to me.\\u003Cbr/\\u003E\\nAnd then integrating my google calendar made it a single source of information for my entire schedule. It\\u0026#39;s been a while since I configured all of that, but if you have any questions, I can try to help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/ercr5kh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"report_reasons\": null, \"link_author\": \"Qwarctick\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"created\": 1560748508.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c133r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erbs6m2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomatoaway\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560692292.0, \"send_replies\": true, \"parent_id\": \"t3_c133r2\", \"score\": 2, \"author_fullname\": \"t2_xup40\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I gave up on org-journal and org-agenda.\\n\\nWhen I need to record an event, I just use a timestamp under a task and write my thoughts on it. When I need to check my agenda, I just use do sparse tree search for TODOs.\\n\\nI use sparse trees to parse through my single org file that I use to hold everything from work to hobbies.\\n\\nA single binding reveals all my work todo's in the morning (with custom states of DOING, PAUSED, WAITING), and another keybinding reveals my afterwork evening tasks.\\n\\nIt has greatly simplified my life.\", \"link_title\": \"org-mode as work diary and notes\", \"author_flair_css_class\": null, \"name\": \"t1_erbs6m2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI gave up on org-journal and org-agenda.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I need to record an event, I just use a timestamp under a task and write my thoughts on it. When I need to check my agenda, I just use do sparse tree search for TODOs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use sparse trees to parse through my single org file that I use to hold everything from work to hobbies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA single binding reveals all my work todo\\u0026#39;s in the morning (with custom states of DOING, PAUSED, WAITING), and another keybinding reveals my afterwork evening tasks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt has greatly simplified my life.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/erbs6m2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"report_reasons\": null, \"link_author\": \"Qwarctick\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"created\": 1560721092.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c133r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erbfgxb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"recencyeffect\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560677096.0, \"send_replies\": true, \"parent_id\": \"t3_c133r2\", \"score\": 2, \"author_fullname\": \"t2_hescp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I use org-mode to manage my work notes. I have one file for todo notes and one for reference notes.\\n\\nIf the first file gets cluttered, you can use narrow and widen to reduce the noise.\\n\\nOnce a work item is done, you could move some subitems to the reference file.\\n\\nHeadings in org can have timestamps (C-c .) and can appear on the agenda list. It kinda depends on your workflow how useful that is.\\n\\nNever used capture templates, though it seems useful.\", \"link_title\": \"org-mode as work diary and notes\", \"author_flair_css_class\": null, \"name\": \"t1_erbfgxb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use org-mode to manage my work notes. I have one file for todo notes and one for reference notes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the first file gets cluttered, you can use narrow and widen to reduce the noise.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce a work item is done, you could move some subitems to the reference file.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHeadings in org can have timestamps (C-c .) and can appear on the agenda list. It kinda depends on your workflow how useful that is.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENever used capture templates, though it seems useful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/erbfgxb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"report_reasons\": null, \"link_author\": \"Qwarctick\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"created\": 1560705896.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560684173.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9niq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erb0f6l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"__i_forgot_my_name__\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1560657432.0, \"send_replies\": true, \"parent_id\": \"t3_bz9niq\", \"score\": 2, \"author_fullname\": \"t2_3agebbhs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Emacs is designed to work with the CLI. My typical workflow is with `emacsclient -e '(some-function)'` which I use to execute Elisp on the server, and have it do something in Emacs. I imagine you could build a function that takes an argument and appends something to your Org file, or checks your Agenda.. that being said, I don't see the point of doing that, my workflow typically involves using `-ce` to open new Emacs frames to specific buffers and modes.\", \"link_title\": \"Org Files In Cli\", \"author_flair_css_class\": null, \"name\": \"t1_erb0f6l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEmacs is designed to work with the CLI. My typical workflow is with \\u003Ccode\\u003Eemacsclient -e \\u0026#39;(some-function)\\u0026#39;\\u003C/code\\u003E which I use to execute Elisp on the server, and have it do something in Emacs. I imagine you could build a function that takes an argument and appends something to your Org file, or checks your Agenda.. that being said, I don\\u0026#39;t see the point of doing that, my workflow typically involves using \\u003Ccode\\u003E-ce\\u003C/code\\u003E to open new Emacs frames to specific buffers and modes.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/erb0f6l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"report_reasons\": null, \"link_author\": \"SidharthArya-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"created\": 1560686232.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c133r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eracnot\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Qwarctick\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560640186.0, \"send_replies\": true, \"parent_id\": \"t1_eraci7a\", \"score\": 2, \"author_fullname\": \"t2_jmplgk2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Wow thanks for your quick answer, I will take a look.\", \"link_title\": \"org-mode as work diary and notes\", \"author_flair_css_class\": null, \"name\": \"t1_eracnot\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWow thanks for your quick answer, I will take a look.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/eracnot/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"report_reasons\": null, \"link_author\": \"Qwarctick\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"created\": 1560668986.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c133r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eraci7a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"doolio_\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560640074.0, \"send_replies\": true, \"parent_id\": \"t3_c133r2\", \"score\": 12, \"author_fullname\": \"t2_16icig\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"org-journal could satisfy your workflow of having one file per day to record work and/or personal diary/journal entries. \\n\\nAn alternative is to record all entries to a single file (or perhaps a file per year). This is my preference and is easily achieved with an org-capture template.\\n\\nFor notes you could manage them all in one folder and write to them quickly and easily with [deft](https://jblevins.org/projects/deft/). \\n\\nAn alternative to org for information management that I\\u2019m starting to explore is hyperbole.\", \"link_title\": \"org-mode as work diary and notes\", \"author_flair_css_class\": null, \"name\": \"t1_eraci7a\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eorg-journal could satisfy your workflow of having one file per day to record work and/or personal diary/journal entries. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn alternative is to record all entries to a single file (or perhaps a file per year). This is my preference and is easily achieved with an org-capture template.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor notes you could manage them all in one folder and write to them quickly and easily with \\u003Ca href=\\\"https://jblevins.org/projects/deft/\\\"\\u003Edeft\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn alternative to org for information management that I\\u2019m starting to explore is hyperbole.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/eraci7a/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"report_reasons\": null, \"link_author\": \"Qwarctick\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"created\": 1560668874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 12}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0jpns\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er99qow\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grettke\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560619859.0, \"send_replies\": true, \"parent_id\": \"t3_c0jpns\", \"score\": 1, \"author_fullname\": \"t2_3fcko\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Suppose that you can use Org Babel according to a few different styles. They are\\n\\nmental construct around with you configure Org. For example one perspective\\n\\nis to execute your code on every export and you design your document\\n\\naccordingly. Another is to execute as you define, and simply export it whenever.\\n\\n\\u0026#x200B;\\n\\nI might be going to far to talk about substantially different styles but they exist\\n\\nin my mind. If they are significant then it might be fun to predefine\\n\\nsome styles based on our personal experience then see if anyone else\\n\\nwere interested in utilizing them.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 14, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_er99qow\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESuppose that you can use Org Babel according to a few different styles. They are\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Emental construct around with you configure Org. For example one perspective\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eis to execute your code on every export and you design your document\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eaccordingly. Another is to execute as you define, and simply export it whenever.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI might be going to far to talk about substantially different styles but they exist\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ein my mind. If they are significant then it might be fun to predefine\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esome styles based on our personal experience then see if anyone else\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ewere interested in utilizing them.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c0jpns/weekly_rorgmode_open_discussion_june_14_2019/er99qow/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c0jpns/weekly_rorgmode_open_discussion_june_14_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c0jpns/weekly_rorgmode_open_discussion_june_14_2019/\", \"created\": 1560648659.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er3hj8t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560463377.0, \"send_replies\": true, \"parent_id\": \"t1_eqz5tok\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"That's a special command. Do `C-h k C-c C-c` and you'll see:\\n\\n C-c C-c runs the command org-ctrl-c-ctrl-c (found in org-mode-map),\\n which is an interactive compiled Lisp function in...\\n\\nThere is no such special command for exporting. You could write one, of course, and then bind it to whatever key you want. But you would probably prefer to start with something like `hydra`, which could give you a simple menu to use for exporting. I'm sure if you search for \\\"org export hydra\\\" you'll find several examples.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_er3hj8t\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s a special command. Do \\u003Ccode\\u003EC-h k C-c C-c\\u003C/code\\u003E and you\\u0026#39;ll see:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EC-c C-c runs the command org-ctrl-c-ctrl-c (found in org-mode-map),\\nwhich is an interactive compiled Lisp function in...\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThere is no such special command for exporting. You could write one, of course, and then bind it to whatever key you want. But you would probably prefer to start with something like \\u003Ccode\\u003Ehydra\\u003C/code\\u003E, which could give you a simple menu to use for exporting. I\\u0026#39;m sure if you search for \\u0026quot;org export hydra\\u0026quot; you\\u0026#39;ll find several examples.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/er3hj8t/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1560492177.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er0eaiv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Japhiri\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1560415409.0, \"send_replies\": true, \"parent_id\": \"t3_bzas9r\", \"score\": 2, \"author_fullname\": \"t2_r4y6z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Is there no way to use pdf-view from pdf-tools or docview instead of ImageMagick's convert command?\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_er0eaiv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there no way to use pdf-view from pdf-tools or docview instead of ImageMagick\\u0026#39;s convert command?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/er0eaiv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1560444209.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er08cc4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Japhiri\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1560412489.0, \"send_replies\": true, \"parent_id\": \"t1_equhuiu\", \"score\": 1, \"author_fullname\": \"t2_r4y6z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Hah! Apparently I had both ImageMagick 6 and 7 installed, and had only changed the policy on 7. The ugly PNG render is working now. I'll have a look at inkscape now too :).\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_er08cc4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHah! Apparently I had both ImageMagick 6 and 7 installed, and had only changed the policy on 7. The ugly PNG render is working now. I\\u0026#39;ll have a look at inkscape now too :).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/er08cc4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1560441289.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqz5tok\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jumpUpHigh\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560394369.0, \"send_replies\": true, \"parent_id\": \"t1_eqy8ct2\", \"score\": 1, \"author_fullname\": \"t2_r6lg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks for responding. I was assuming it would work in the same way `C-c` works differently within org files depending on context, Inside a table, it corrects its alignment. In SRC blocks it executes using org-babel.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eqz5tok\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for responding. I was assuming it would work in the same way \\u003Ccode\\u003EC-c\\u003C/code\\u003E works differently within org files depending on context, Inside a table, it corrects its alignment. In SRC blocks it executes using org-babel.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/eqz5tok/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1560423169.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqy8ct2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560379065.0, \"send_replies\": true, \"parent_id\": \"t1_eqrw9ti\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You can't bind the same key to two commands.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eqy8ct2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can\\u0026#39;t bind the same key to two commands.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/eqy8ct2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1560407865.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqvbe0n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skouakskouek\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560343176.0, \"send_replies\": true, \"parent_id\": \"t1_eqarokm\", \"score\": 2, \"author_fullname\": \"t2_elo7h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Damn, it's a really silly mistake. \\nActually, syntax highlighting worked, my code was just not relevant for syntax highlighting exemple:\\n\\n Math.random() \\n Math.floor()\\n Math.ceil();\\n Math.floor(Math.random() * 190);\\n console.log(Number.isInteger(2017));\\n \\nAs soon as I add a function, it works.\\nthanks for your help.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eqvbe0n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDamn, it\\u0026#39;s a really silly mistake. \\nActually, syntax highlighting worked, my code was just not relevant for syntax highlighting exemple:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EMath.random() \\nMath.floor()\\nMath.ceil();\\nMath.floor(Math.random() * 190);\\nconsole.log(Number.isInteger(2017));\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAs soon as I add a function, it works.\\nthanks for your help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/eqvbe0n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1560371976.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equuw9z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Japhiri\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1560335960.0, \"send_replies\": true, \"parent_id\": \"t1_eqsuwjl\", \"score\": 1, \"author_fullname\": \"t2_r4y6z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I wasn't using any crazy characters, but thanks for highlighting the potential source of error.\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_equuw9z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI wasn\\u0026#39;t using any crazy characters, but thanks for highlighting the potential source of error.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/equuw9z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1560364760.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560336020.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzas9r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equhuiu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Japhiri\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1560330118.0, \"send_replies\": true, \"parent_id\": \"t1_eqt1ktn\", \"score\": 1, \"author_fullname\": \"t2_r4y6z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Using svg or eps could also be an option for me. I'll have a look at the complicated answer again later. Thanks!\\n\\nEven on `emacs -q` after evaluating just these 4 lines in my scratch it doesn't work, it tries to show the pdf but it results in a 600 px wide, one line high rectangle. But now the *Messages* buffer shows the following warning: `ImageMagick error: attempt to perform an operation not allowed by the security policy 'PDF' @ error/constitute.c/IsCoderAuthorized/408 [3 times]`, which seems related to some ImageMagick security settings to circumvent a bug in ghostscript ([see paperless issue](https://github.com/the-paperless-project/paperless/issues/439) and the upstream [ImageMagick issue](https://github.com/ImageMagick/ImageMagick/issues/1262)). I've tried to fix it by changing the policy.xml file but this didn't work. But now I know it's not an emacs issue but rather something with my ImageMagick config.\\n\\nI'm on Arch Linux x86_64 kernel 5.1.8-arch1-1-ARCH with GNU Emacs 26.2 and ImageMagick 7.0.8-49.\", \"link_title\": \"Inline PDF images from source in org-mode?\", \"author_flair_css_class\": null, \"name\": \"t1_equhuiu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsing svg or eps could also be an option for me. I\\u0026#39;ll have a look at the complicated answer again later. Thanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEven on \\u003Ccode\\u003Eemacs -q\\u003C/code\\u003E after evaluating just these 4 lines in my scratch it doesn\\u0026#39;t work, it tries to show the pdf but it results in a 600 px wide, one line high rectangle. But now the \\u003Cem\\u003EMessages\\u003C/em\\u003E buffer shows the following warning: \\u003Ccode\\u003EImageMagick error: attempt to perform an operation not allowed by the security policy \\u0026#39;PDF\\u0026#39; @ error/constitute.c/IsCoderAuthorized/408 [3 times]\\u003C/code\\u003E, which seems related to some ImageMagick security settings to circumvent a bug in ghostscript (\\u003Ca href=\\\"https://github.com/the-paperless-project/paperless/issues/439\\\"\\u003Esee paperless issue\\u003C/a\\u003E and the upstream \\u003Ca href=\\\"https://github.com/ImageMagick/ImageMagick/issues/1262\\\"\\u003EImageMagick issue\\u003C/a\\u003E). I\\u0026#39;ve tried to fix it by changing the policy.xml file but this didn\\u0026#39;t work. But now I know it\\u0026#39;s not an emacs issue but rather something with my ImageMagick config.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m on Arch Linux x86_64 kernel 5.1.8-arch1-1-ARCH with GNU Emacs 26.2 and ImageMagick 7.0.8-49.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/equhuiu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"report_reasons\": null, \"link_author\": \"Japhiri\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"created\": 1560358918.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxu83g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"equ4s6e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ValentinPearce\", \"num_comments\": 9, \"can_mod_post\": false, \"created_utc\": 1560324625.0, \"send_replies\": true, \"parent_id\": \"t3_bxu83g\", \"score\": 1, \"author_fullname\": \"t2_e8tz3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm currently writing a beamer presentation and I've noticed a unfortunate bahaviour. The table of contents is labeled \\\"Outline\\\" whatever the export language. \\n\\n\\u0026#x200B;\\n\\nI'll just edit the LaTeX file for the presentation I have in acouple of days but I was thinking of making this automatic. Would any other non-english speakers be interested in that ?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_equ4s6e\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m currently writing a beamer presentation and I\\u0026#39;ve noticed a unfortunate bahaviour. The table of contents is labeled \\u0026quot;Outline\\u0026quot; whatever the export language. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ll just edit the LaTeX file for the presentation I have in acouple of days but I was thinking of making this automatic. Would any other non-english speakers be interested in that ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/equ4s6e/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"created\": 1560353425.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bz9niq\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtcfgp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"__i_forgot_my_name__\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1560308386.0, \"send_replies\": true, \"parent_id\": \"t1_eqs2hfk\", \"score\": 1, \"author_fullname\": \"t2_3agebbhs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Emacs isn't a window manager thought, it's a desktop environment. I rely on XMonad for everything that has to do with controlling the environment itself. \\n\\nFor example, I get the Emacs email client frame from XMonad with `S-c m`, because I don't want to focus on Emacs every time I want the mail client obviously. The magic is I can do all that with `emacsclient -ce '(mu4e)'` and it creates the frame and gets the Emacs mail client literally instantly. It's just pure insanity.\", \"link_title\": \"Org Files In Cli\", \"author_flair_css_class\": null, \"name\": \"t1_eqtcfgp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEmacs isn\\u0026#39;t a window manager thought, it\\u0026#39;s a desktop environment. I rely on XMonad for everything that has to do with controlling the environment itself. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example, I get the Emacs email client frame from XMonad with \\u003Ccode\\u003ES-c m\\u003C/code\\u003E, because I don\\u0026#39;t want to focus on Emacs every time I want the mail client obviously. The magic is I can do all that with \\u003Ccode\\u003Eemacsclient -ce \\u0026#39;(mu4e)\\u0026#39;\\u003C/code\\u003E and it creates the frame and gets the Emacs mail client literally instantly. It\\u0026#39;s just pure insanity.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/eqtcfgp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"report_reasons\": null, \"link_author\": \"SidharthArya-\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"created\": 1560337186.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_eqtcfgp\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["260716"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:45 GMT"], "x-ratelimit-remaining": ["593.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["7"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643985.291022,VS0,VE485"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["15"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-27T13:59:45"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_es60rfh"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:45 GMT"], "x-ratelimit-remaining": ["592.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["8"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643986.865987,VS0,VE66"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["15"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_es60rfh"}, "recorded_at": "2019-06-27T13:59:45"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, Im using emacs 26.2 and org-mode 9.2.4.\\n\\nWithin my note I have several Mark's with \\u003E\\u003ETODO.\\n\\nMy search within .emacs :\\n(\\\"2\\\" \\\"Aufgaben aus Notizen\\\"\\u00a0agenda\\u00a0\\\"\\u003E\\u003ETODO aus Notizen\\\"\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(org-agenda-skip-function '(org-agenda-skip-entry-if 'notregexp \\\"\\u003E\\u003ETODO\\\"))\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(org-agenda-overriding-header \\\"\\u003E\\u003ETODO's\\u00a0aus\\u00a0Notizen: \\\") ))\\n\\nDidn't work anymore.\\ud83d\\ude25\\n\\nSearching via agenda F12-\\u003Es-\\u003Eregex {\\u003E\\u003ETODO}\\nworks and I get my results.\\n\\nAny hints? Or something was changed and I have an error included?\\n\\nThanks in advance...\", \"author_fullname\": \"t2_3fb9glrl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Agenda regex search didn't work anymore\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c60z6q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561638420.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, Im using emacs 26.2 and org-mode 9.2.4.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithin my note I have several Mark\\u0026#39;s with \\u0026gt;\\u0026gt;TODO.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy search within .emacs :\\n(\\u0026quot;2\\u0026quot; \\u0026quot;Aufgaben aus Notizen\\u0026quot;\\u00a0agenda\\u00a0\\u0026quot;\\u003Cstrong\\u003ETODO aus Notizen\\u0026quot;\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(org-agenda-skip-function \\u0026#39;(org-agenda-skip-entry-if \\u0026#39;notregexp \\u0026quot;\\u003C/strong\\u003ETODO\\u0026quot;))\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(org-agenda-overriding-header \\u0026quot;\\u0026gt;\\u0026gt;TODO\\u0026#39;s\\u00a0aus\\u00a0Notizen: \\u0026quot;) ))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDidn\\u0026#39;t work anymore.\\ud83d\\ude25\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESearching via agenda F12-\\u0026gt;s-\\u0026gt;regex {\\u0026gt;\\u0026gt;TODO}\\nworks and I get my results.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny hints? Or something was changed and I have an error included?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance...\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c60z6q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ColleagueSunshine\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c60z6q/agenda_regex_search_didnt_work_anymore/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c60z6q/agenda_regex_search_didnt_work_anymore/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1561609620.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a pixel 2 using google keyboard and Nova launcher on android.\\n\\nOrgly is awesome. I use it all the time.\\n\\nI have a homescreen widget to add a new note in my [inbox.org](https://inbox.org) notebook.\\n\\nTo add a new entry to my inbox, I click that widget and start typing. If I want to speak rather than type, I tap the microphone at the right side of the keyboard. \\n\\nThen I speak.\\n\\nWhen I'm done, I click the checkmark. Done. New entry has been added.\\n\\nI am looking for a way to streamline it even more.\\n\\n\\u0026#x200B;\\n\\nSomething like this: double tap home screen runs X which records my voice and when I tap again, it stores the transcribed voice as a new entry in [inbox.org](https://inbox.org)\\n\\n\\u0026#x200B;\\n\\nIs there any way of having a different application send transcribed text to orgzly in this way?\\n\\n\\u0026#x200B;\\n\\nOr other, similar ideas?\", \"author_fullname\": \"t2_101gn2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[orgzly] Simplest way to add quick voice functionality to widget?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5ysfq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561625427.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a pixel 2 using google keyboard and Nova launcher on android.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrgly is awesome. I use it all the time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a homescreen widget to add a new note in my \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E notebook.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo add a new entry to my inbox, I click that widget and start typing. If I want to speak rather than type, I tap the microphone at the right side of the keyboard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I speak.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I\\u0026#39;m done, I click the checkmark. Done. New entry has been added.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am looking for a way to streamline it even more.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESomething like this: double tap home screen runs X which records my voice and when I tap again, it stores the transcribed voice as a new entry in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way of having a different application send transcribed text to orgzly in this way?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr other, similar ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5ysfq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pseudo-bash\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c5ysfq/orgzly_simplest_way_to_add_quick_voice/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c5ysfq/orgzly_simplest_way_to_add_quick_voice/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1561596627.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"So, while you can write an agenda view [1] to a variety of formats [2], that agenda view exports in an agenda format, whether or not column-view [3] is enabled.\\n\\nI haven't been able to find one, but is there any good way to export an agenda as a column-view? This would be super-useful to share effort estimates and availability.\\n\\n----\\n1. `C-c a: org-agenda`\\n2. `C-x C-w`\\n3. `C-c C-x C-c`\", \"author_fullname\": \"t2_12yaty\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Exporting Agenda in Column View?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4rtbo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561425708.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo, while you can write an agenda view [1] to a variety of formats [2], that agenda view exports in an agenda format, whether or not column-view [3] is enabled.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t been able to find one, but is there any good way to export an agenda as a column-view? This would be super-useful to share effort estimates and availability.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EC-c a: org-agenda\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EC-x C-w\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EC-c C-x C-c\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4rtbo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fearbedragons\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1561396908.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi!\\n\\nLet's say I have in my org file a lis of all my clients, and for each headline, I have a property with the amount they will pay me.\\n\\nExample:\\n \\n * John\\n :PROPERTIES:\\n :TOTAL: 200USD\\n :END:\\n \\n * Patrick\\n :PROPERTIES:\\n :TOTAL: 120USD\\n :END:\\n \\n * Thomas\\n :PROPERTIES:\\n :TOTAL: 80USD\\n :END:\\n \\n\\nThis is just for example purposes, as I have in fact dozens of properties, and a lot of subheadings for each client.\\n\\nNow I would like to export a list of all the clients name, with only the value of the \\\"TOTAL\\\" property, for each client.\\n\\nIs there a solution to this ?\\n\\nMany thanks in advance.\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is it possible to export a list of value from a given property?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4ox16\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561415728.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet\\u0026#39;s say I have in my org file a lis of all my clients, and for each headline, I have a property with the amount they will pay me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* John\\n:PROPERTIES:\\n :TOTAL: 200USD\\n:END:\\n\\n* Patrick\\n:PROPERTIES:\\n :TOTAL: 120USD\\n:END:\\n\\n* Thomas\\n:PROPERTIES:\\n :TOTAL: 80USD\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis is just for example purposes, as I have in fact dozens of properties, and a lot of subheadings for each client.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow I would like to export a list of all the clients name, with only the value of the \\u0026quot;TOTAL\\u0026quot; property, for each client.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a solution to this ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4ox16\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1561386928.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm reading the [manual](https://orgmode.org/manual/Setting-tags.html) and I don't understand the purpose of \\\"@\\\" at the beginning of the tag.\", \"author_fullname\": \"t2_8v76k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why some tags start with \\\"@\\\"?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4mjyk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561406828.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m reading the \\u003Ca href=\\\"https://orgmode.org/manual/Setting-tags.html\\\"\\u003Emanual\\u003C/a\\u003E and I don\\u0026#39;t understand the purpose of \\u0026quot;@\\u0026quot; at the beginning of the tag.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4mjyk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Pipiyedu\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c4mjyk/why_some_tags_start_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c4mjyk/why_some_tags_start_with/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1561378028.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Just came across this, and thought I would share it. Looks active. \\n\\n\\u0026#x200B;\\n\\n[https://smos.cs-syd.eu/](https://smos.cs-syd.eu/)\\n\\n[https://github.com/NorfairKing/smos](https://github.com/NorfairKing/smos)\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Smos: a replacement for emacs org mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3xrzz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561284056.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust came across this, and thought I would share it. Looks active. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://smos.cs-syd.eu/\\\"\\u003Ehttps://smos.cs-syd.eu/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/NorfairKing/smos\\\"\\u003Ehttps://github.com/NorfairKing/smos\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3xrzz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1561255256.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"While editing my daily planner, I often find myself needing to capture a new task and to then link to that task in the current document. My existing\\u2014and somewhat clumsy\\u2014workflow is: capture \\u0026 refile -\\u003E open destination file -\\u003E find task -\\u003E store link -\\u003E back to original document -\\u003E insert link.\\n\\nIs there an easier way to store a link to a task as soon as it is captured or refiled?\", \"author_fullname\": \"t2_jrwln\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Store link to newly captured task?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3e2th\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561169010.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile editing my daily planner, I often find myself needing to capture a new task and to then link to that task in the current document. My existing\\u2014and somewhat clumsy\\u2014workflow is: capture \\u0026amp; refile -\\u0026gt; open destination file -\\u0026gt; find task -\\u0026gt; store link -\\u0026gt; back to original document -\\u0026gt; insert link.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there an easier way to store a link to a task as soon as it is captured or refiled?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3e2th\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"virvir\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1561140210.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 21, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3a5ki\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561150164.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3a5ki\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/\", \"parent_whitelist_status\": null, \"stickied\": true, \"url\": \"https://www.reddit.com/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1561121364.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have an external link that is SVG, but I'm suspecting the weird filename is causing org-mode to not realize this.\\n\\nThis works fine in markdown:\\n\\n ![](https://svg.wavedrom.com/github/wavedrom/wavedrom/master/test/signal-step4.json5)\\n\\nbut in org-mode, the equivalent \\n\\n [[https://svg.wavedrom.com/github/wavedrom/wavedrom/master/test/signal-step4.json5]]\\n\\njust gives me a clickable link. Is there some way to tell org-mode that this is really an svg and should be rendered as such?\\n\\nI'm trying to use this for an org-mode document and I'd like it to be previewable in GitHub, so I'd prefer nothing that requires customizations to org-mode. Worst case I'll just generate the SVGs offline or use markdown :'(\", \"author_fullname\": \"t2_721u8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Force external link to be SVG\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c36ltd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561123594.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have an external link that is SVG, but I\\u0026#39;m suspecting the weird filename is causing org-mode to not realize this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis works fine in markdown:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E![](https://svg.wavedrom.com/github/wavedrom/wavedrom/master/test/signal-step4.json5)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ebut in org-mode, the equivalent \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E[[https://svg.wavedrom.com/github/wavedrom/wavedrom/master/test/signal-step4.json5]]\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ejust gives me a clickable link. Is there some way to tell org-mode that this is really an svg and should be rendered as such?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to use this for an org-mode document and I\\u0026#39;d like it to be previewable in GitHub, so I\\u0026#39;d prefer nothing that requires customizations to org-mode. Worst case I\\u0026#39;ll just generate the SVGs offline or use markdown :\\u0026#39;(\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c36ltd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Hofstee\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c36ltd/force_external_link_to_be_svg/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c36ltd/force_external_link_to_be_svg/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1561094794.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c368vf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561121183.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c368vf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1561092383.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm back trying to get this thing as I couldn't find an answer before. \\n\\n\\u0026#x200B;\\n\\nI would like a capture template that loads the text from another org file. \\n\\nWhen I choose the template key (let's say \\\"s\\\" for \\\"setup\\\" template) I want Org to go to \\\\~/Documents/templates/setup.org, and load the context of the file (which is in org) into the capture template. \\n\\n\\u0026#x200B;\\n\\nDoes this option exist built-in, or do I need some lisp magic? The manual hints at this being an option: \\n\\n\\\"template \\n\\nThe template for creating the capture item. If you leave this empty, an appropriate default template will be used. Otherwise this is a string with escape codes, which will be replaced depending on time and context of the capture call. The string with escapes **may be loaded from a template file, using the special syntax \\u2018(file \\\"template filename\\\")\\u2019**. See below for more details.\\\" \\n\\n\\u0026#x200B;\\n\\nHowever, the details below do not seem to explain how to do that. Maybe I'm just not seeing it. \\n\\n\\u0026#x200B;\\n\\nDoes anyone have a template that is based in another .org file?\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Capture template based in a file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c26qja\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560915364.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m back trying to get this thing as I couldn\\u0026#39;t find an answer before. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like a capture template that loads the text from another org file. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I choose the template key (let\\u0026#39;s say \\u0026quot;s\\u0026quot; for \\u0026quot;setup\\u0026quot; template) I want Org to go to ~/Documents/templates/setup.org, and load the context of the file (which is in org) into the capture template. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes this option exist built-in, or do I need some lisp magic? The manual hints at this being an option: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;template \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe template for creating the capture item. If you leave this empty, an appropriate default template will be used. Otherwise this is a string with escape codes, which will be replaced depending on time and context of the capture call. The string with escapes \\u003Cstrong\\u003Emay be loaded from a template file, using the special syntax \\u2018(file \\u0026quot;template filename\\u0026quot;)\\u2019\\u003C/strong\\u003E. See below for more details.\\u0026quot; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, the details below do not seem to explain how to do that. Maybe I\\u0026#39;m just not seeing it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have a template that is based in another .org file?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c26qja\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1560886564.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have an agenda configured with this column view:\\n\\n (setq org-agenda-overriding-columns-format \\\"%30ITEM %TODO %SCHEDULED %6Effort{:}\\\")\\n\\nThat mostly works really well for showing me the task effort and total effort for the day (C-c a a w, C-c C-x C-c). However, when a task is scheduled on the same day as its deadline, the effort is double-counted: once for the scheduled task, and once for the deadline. **Is there any way to avoid counting deadlines in effort,** aside from just hiding the deadlines on the agenda?\", \"author_fullname\": \"t2_12yaty\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Avoid Double Counting Effort on Agenda Column View with Scheduled Deadlines?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c1roqk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560827427.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have an agenda configured with this column view:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-overriding-columns-format \\u0026quot;%30ITEM %TODO %SCHEDULED %6Effort{:}\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThat mostly works really well for showing me the task effort and total effort for the day (C-c a a w, C-c C-x C-c). However, when a task is scheduled on the same day as its deadline, the effort is double-counted: once for the scheduled task, and once for the deadline. \\u003Cstrong\\u003EIs there any way to avoid counting deadlines in effort,\\u003C/strong\\u003E aside from just hiding the deadlines on the agenda?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c1roqk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fearbedragons\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c1roqk/avoid_double_counting_effort_on_agenda_column/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c1roqk/avoid_double_counting_effort_on_agenda_column/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1560798627.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello, I hope one of you kind souls can help me. \\n\\nI have a lot of research that I'd liked to make accessible to read when I'm away from my laptop. I've been taking notes in orgmode that link to files and other org files. This works really well in emacs, i can happily follow my research, and read the relevant papers. \\n\\nI thought I'd try and publish to html, then copy the files and folders to my android phone, so that i have my research when i need it at work. \\n\\nI cannot get it to work so that clicking on a link opens the file or linked page, i get file not found. \\n\\nIs there a setting i need to change so that i can just point to the file in the same directory or one in a folder under it? \\n\\nI have no website development experience, and I've no wish to put these files on the internet, i want them to just be local files.\\n\\nOrgzly seems to work well if there is a TODO, but it can't open the links and doesn't show the text. \\n\\nCan it be done?\\n\\nEdit: it does seem to be an issue with android. My workaround is to install SimpleHttpServer. I pointed it to my index.html file, and everything works as expected. Now to install some css :)\\n\\nThank you all for your help.\", \"author_fullname\": \"t2_9wkx0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HTML output that can be used on an Android phone\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c1lhb5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560799974.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560792383.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I hope one of you kind souls can help me. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a lot of research that I\\u0026#39;d liked to make accessible to read when I\\u0026#39;m away from my laptop. I\\u0026#39;ve been taking notes in orgmode that link to files and other org files. This works really well in emacs, i can happily follow my research, and read the relevant papers. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought I\\u0026#39;d try and publish to html, then copy the files and folders to my android phone, so that i have my research when i need it at work. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cannot get it to work so that clicking on a link opens the file or linked page, i get file not found. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a setting i need to change so that i can just point to the file in the same directory or one in a folder under it? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have no website development experience, and I\\u0026#39;ve no wish to put these files on the internet, i want them to just be local files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrgzly seems to work well if there is a TODO, but it can\\u0026#39;t open the links and doesn\\u0026#39;t show the text. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECan it be done?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: it does seem to be an issue with android. My workaround is to install SimpleHttpServer. I pointed it to my index.html file, and everything works as expected. Now to install some css :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you all for your help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c1lhb5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"soops1966\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1560763583.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey all!\\n\\nI have a rather time sensitive task that needs be done every day exactly 24 hours apart. I was hoping to use something like \\u003C2019-06-16 17:00 .+24h\\u003E (documentation on the .+ repeat thing here in case anyone needs it: [https://orgmode.org/org.html#Repeated-tasks](https://orgmode.org/org.html#Repeated-tasks)) However, it only sets the next due timestamp to 24 hours ahead of the currently scheduled timestamp instead of setting it exactly 24 hours from when I last completed the task like I was hoping. Would anyone have any ideas as to how I might make a repeating task like this? Thanks a bunch in advance!\", \"author_fullname\": \"t2_mrsxp9x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Repeating task that, when completed, sets due date exactly 24 hours from the time last completed?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c1gx6s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560759316.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey all!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a rather time sensitive task that needs be done every day exactly 24 hours apart. I was hoping to use something like \\u0026lt;2019-06-16 17:00 .+24h\\u0026gt; (documentation on the .+ repeat thing here in case anyone needs it: \\u003Ca href=\\\"https://orgmode.org/org.html#Repeated-tasks\\\"\\u003Ehttps://orgmode.org/org.html#Repeated-tasks\\u003C/a\\u003E) However, it only sets the next due timestamp to 24 hours ahead of the currently scheduled timestamp instead of setting it exactly 24 hours from when I last completed the task like I was hoping. Would anyone have any ideas as to how I might make a repeating task like this? Thanks a bunch in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c1gx6s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pgwang\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1560730516.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I hold a file containing one file per day and with everything I do at work. In parallel I have another folder with several sub-folders containing information on different programming languages, articles to read, personal stuff, etc...\\n\\nI manage everything by hand and I think it's time to use a few things to simplify my life. I use many years emacs but I always missed org-mode. Between org-mode, org-journal, agenda, calendar, I'm a little lost.\\n\\nDo you have any advice ? Thank you in advance !\", \"author_fullname\": \"t2_jmplgk2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-mode as work diary and notes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c133r2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560667404.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI hold a file containing one file per day and with everything I do at work. In parallel I have another folder with several sub-folders containing information on different programming languages, articles to read, personal stuff, etc...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI manage everything by hand and I think it\\u0026#39;s time to use a few things to simplify my life. I use many years emacs but I always missed org-mode. Between org-mode, org-journal, agenda, calendar, I\\u0026#39;m a little lost.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo you have any advice ? Thank you in advance !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c133r2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Qwarctick\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1560638604.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 14, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c0jpns\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560545368.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c0jpns\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c0jpns/weekly_rorgmode_open_discussion_june_14_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c0jpns/weekly_rorgmode_open_discussion_june_14_2019/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1560516568.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I would like to get pdf output from source code to display inline. I've been using png output for the preparation of a manuscript recently, but now that I'm close to submission I have to switch to vector graphics in pdf (or eps) for latex export. This works fine, but doesn't allow me to preview the images anymore. Which should work, since pdf-tools readily shows pdf previews.\\n\\n[On the mailing list](https://lists.gnu.org/archive/html/emacs-orgmode/2016-02/msg00204.html) there's a pretty old question of somebody trying to achieve the same but without any answers. They found their own 4-liner solution, which didn't work for me (resulting in an outlined little square)\\n\\n```\\n(add-to-list 'image-type-file-name-regexps '(\\\"\\\\\\\\.pdf\\\\\\\\'\\\" . imagemagick))\\n(add-to-list 'image-file-name-extensions \\\"pdf\\\")\\n(setq imagemagick-types-inhibit (remove 'PDF imagemagick-types-inhibit))\\n(setq org-image-actual-width 600)\\n```\\n\\nThat's also the second solution posted to [this SO question](https://stackoverflow.com/questions/15407485/inline-pdf-images-in-org-mode). The first solution there seems quite fancy but since my knowledge of elisp is not extensive, I couldn't debug the inevitable error when opening an org-file with pdfs or when creating a new one.\\n\\nThere's also this [SO solution that I didn't try](https://emacs.stackexchange.com/questions/390/display-pdf-images-in-org-mode) since it requires a different format for the source.\\n\\nAny ideas on how to do this with the most recent versions of emacs and org-mode?\", \"author_fullname\": \"t2_r4y6z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inline PDF images from source in org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzas9r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560277909.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to get pdf output from source code to display inline. I\\u0026#39;ve been using png output for the preparation of a manuscript recently, but now that I\\u0026#39;m close to submission I have to switch to vector graphics in pdf (or eps) for latex export. This works fine, but doesn\\u0026#39;t allow me to preview the images anymore. Which should work, since pdf-tools readily shows pdf previews.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://lists.gnu.org/archive/html/emacs-orgmode/2016-02/msg00204.html\\\"\\u003EOn the mailing list\\u003C/a\\u003E there\\u0026#39;s a pretty old question of somebody trying to achieve the same but without any answers. They found their own 4-liner solution, which didn\\u0026#39;t work for me (resulting in an outlined little square)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(add-to-list \\u0026#39;image-type-file-name-regexps \\u0026#39;(\\u0026quot;\\\\\\\\.pdf\\\\\\\\\\u0026#39;\\u0026quot; . imagemagick))\\n(add-to-list \\u0026#39;image-file-name-extensions \\u0026quot;pdf\\u0026quot;)\\n(setq imagemagick-types-inhibit (remove \\u0026#39;PDF imagemagick-types-inhibit))\\n(setq org-image-actual-width 600)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s also the second solution posted to \\u003Ca href=\\\"https://stackoverflow.com/questions/15407485/inline-pdf-images-in-org-mode\\\"\\u003Ethis SO question\\u003C/a\\u003E. The first solution there seems quite fancy but since my knowledge of elisp is not extensive, I couldn\\u0026#39;t debug the inevitable error when opening an org-file with pdfs or when creating a new one.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere\\u0026#39;s also this \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/390/display-pdf-images-in-org-mode\\\"\\u003ESO solution that I didn\\u0026#39;t try\\u003C/a\\u003E since it requires a different format for the source.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas on how to do this with the most recent versions of emacs and org-mode?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzas9r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Japhiri\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1560249109.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I was wondering if there is anything similar to taskwarrior that can do the same thing with org files.\", \"author_fullname\": \"t2_3tn7pcdr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org Files In Cli\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz9niq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560268621.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering if there is anything similar to taskwarrior that can do the same thing with org files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz9niq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SidharthArya-\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1560239821.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Updates to org-ql\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz5esl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"https://github.com/alphapapa/org-ql\\n\\n`org-ql` has received several updates, including better documentation, an improved `org-ql-search` command, and new `(ts)` predicates that select entries by timestamp.\\n\\nHere's a [screencast](https://github.com/alphapapa/org-ql/raw/master/images/org-ql-search.gif) of the improved `org-ql-search` command.\\n\\nFeedback would be appreciated. I plan to submit it to MELPA, but I think it needs more testing and polishing first.\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Updates to org-ql\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz5eqv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 36, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 36, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560240569.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/org-ql\\\"\\u003Ehttps://github.com/alphapapa/org-ql\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E has received several updates, including better documentation, an improved \\u003Ccode\\u003Eorg-ql-search\\u003C/code\\u003E command, and new \\u003Ccode\\u003E(ts)\\u003C/code\\u003E predicates that select entries by timestamp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s a \\u003Ca href=\\\"https://github.com/alphapapa/org-ql/raw/master/images/org-ql-search.gif\\\"\\u003Escreencast\\u003C/a\\u003E of the improved \\u003Ccode\\u003Eorg-ql-search\\u003C/code\\u003E command.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeedback would be appreciated. I plan to submit it to MELPA, but I think it needs more testing and polishing first.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz5eqv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1560211769.0, \"media\": null, \"is_video\": false}], \"created\": 1560240576.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz5esl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bz5eqv\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bz5esl/updates_to_orgql/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1560211776.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"http://www.gonsie.com/blorg/org-highlight.html\\n\\nI wrote a short post on how I added a highlight markup to orgmode, where I use ':' to mark the start and end of a phrase (similar to the bold or italic markup). For example a `:highlighted:` word becomes `\\u003Cmark\\u003Ehighlighted\\u003C/mark\\u003E` when exported with an HTML backend.\\n\\nI hope this is useful for someone else. If there is some interest, I would propose to put this into the org standard.\", \"author_fullname\": \"t2_6c42k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Adding highlight markup to org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz0258\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560213612.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.gonsie.com/blorg/org-highlight.html\\\"\\u003Ehttp://www.gonsie.com/blorg/org-highlight.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wrote a short post on how I added a highlight markup to orgmode, where I use \\u0026#39;:\\u0026#39; to mark the start and end of a phrase (similar to the bold or italic markup). For example a \\u003Ccode\\u003E:highlighted:\\u003C/code\\u003E word becomes \\u003Ccode\\u003E\\u0026lt;mark\\u0026gt;highlighted\\u0026lt;/mark\\u0026gt;\\u003C/code\\u003E when exported with an HTML backend.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI hope this is useful for someone else. If there is some interest, I would propose to put this into the org standard.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz0258\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gonsie\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bz0258/adding_highlight_markup_to_org/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bz0258/adding_highlight_markup_to_org/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1560184812.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, guys.\\n\\nBefore I start defining my own custom property for this I wanted to makes sure there wasn't an existing way to do it. I'm looking for a property or something that would automatically exclude an entry from the default agenda views. I don't see one in the property completion list but it seems like the kind of thing someone may have already thought of.\\n\\nI don't have a problem with filtering on my own property or tag. But I'd rather not duplicate something that's already built in.\\n\\nThanks.\", \"author_fullname\": \"t2_16nda8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Property to exclude an entry from the agenda?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byjkmm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560110840.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, guys.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore I start defining my own custom property for this I wanted to makes sure there wasn\\u0026#39;t an existing way to do it. I\\u0026#39;m looking for a property or something that would automatically exclude an entry from the default agenda views. I don\\u0026#39;t see one in the property completion list but it seems like the kind of thing someone may have already thought of.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t have a problem with filtering on my own property or tag. But I\\u0026#39;d rather not duplicate something that\\u0026#39;s already built in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byjkmm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tshanno\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1560082040.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Those of you who use Org-mode with Android are probably familiar with [Orgzly](http://www.orgzly.com/). In this post, a friendly FAQ with it's creator, who was kind enough to answer a few questions. I also described how I work with it toward the end.\\n\\n\\u0026#x200B;\\n\\nThis read might be useful for anyone who uses Org-mode on the go, rather you're familiar with Orgzly or not. Let me know what you think :)\\n\\n\\u0026#x200B;\\n\\n[https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/](https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/)\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Orgzly: an interview with the creator\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byflyn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 43, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 43, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560078985.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560076152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThose of you who use Org-mode with Android are probably familiar with \\u003Ca href=\\\"http://www.orgzly.com/\\\"\\u003EOrgzly\\u003C/a\\u003E. In this post, a friendly FAQ with it\\u0026#39;s creator, who was kind enough to answer a few questions. I also described how I work with it toward the end.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis read might be useful for anyone who uses Org-mode on the go, rather you\\u0026#39;re familiar with Orgzly or not. Let me know what you think :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/\\\"\\u003Ehttps://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byflyn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 20, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1560047352.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is it possible to get a quick org-agenda shown for just all the dates in the current org-buffer? I have too many little projects with their own org-documents, and usually I am only interested in what I need to do on the project I have right in front of me, not the default agenda files.\", \"author_fullname\": \"t2_68in0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Agenda for current buffer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxwovd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559954023.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to get a quick org-agenda shown for just all the dates in the current org-buffer? I have too many little projects with their own org-documents, and usually I am only interested in what I need to do on the project I have right in front of me, not the default agenda files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxwovd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"livrem\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559925223.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxu83g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559940568.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu83g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559911768.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have [ob-mathematica](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el) (which allows me to execute mathematica snippets via org-babel) combined with [wolfram-mode](https://github.com/kawabata/wolfram-mode) (which provides syntax highlighting).\\n\\nSo right now I have the conundrum that if I label an org-babel source block `mathematica`, then I can evaluate it via `C-c C-c` but without syntax highlighting. On the other hand, if I label the block `wolfram`, then I can no longer evaluate it, but I get source highlighting!\\n\\nHow do I combine these two to get the best of both worlds?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxooz7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559899393.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Eob-mathematica\\u003C/a\\u003E (which allows me to execute mathematica snippets via org-babel) combined with \\u003Ca href=\\\"https://github.com/kawabata/wolfram-mode\\\"\\u003Ewolfram-mode\\u003C/a\\u003E (which provides syntax highlighting).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo right now I have the conundrum that if I label an org-babel source block \\u003Ccode\\u003Emathematica\\u003C/code\\u003E, then I can evaluate it via \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E but without syntax highlighting. On the other hand, if I label the block \\u003Ccode\\u003Ewolfram\\u003C/code\\u003E, then I can no longer evaluate it, but I get source highlighting!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I combine these two to get the best of both worlds?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxooz7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559870593.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone. Has anyone some hints on how to make helm`(org-refile)` case insensitive? E.g. I want to refile the current headline below `RubyBerlin/ToDo` (note the capital `D`). Typing the correct `\\\"Berlin/ToDo\\\"` will work and offer the headline to refile below:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/6swhzzsmvp231.png\\n\\nBut typing the lower case version `\\\"Berlin/Todo\\\"` will only give results of headlines below the one I want to refile to:\\n\\n \\n\\nhttps://i.redd.it/9mlv6bxuvp231.png\\n\\nI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\", \"author_fullname\": \"t2_5cbr5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Case insensitive (org-refile)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"6swhzzsmvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 91, \"x\": 467, \"u\": \"https://i.redd.it/6swhzzsmvp231.png\"}, \"m\": \"image/png\", \"id\": \"6swhzzsmvp231\"}, \"9mlv6bxuvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 124, \"x\": 692, \"u\": \"https://i.redd.it/9mlv6bxuvp231.png\"}, \"m\": \"image/png\", \"id\": \"9mlv6bxuvp231\"}}, \"name\": \"t3_bxfd1r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847398.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone. Has anyone some hints on how to make helm\\u003Ccode\\u003E(org-refile)\\u003C/code\\u003E case insensitive? E.g. I want to refile the current headline below \\u003Ccode\\u003ERubyBerlin/ToDo\\u003C/code\\u003E (note the capital \\u003Ccode\\u003ED\\u003C/code\\u003E). Typing the correct \\u003Ccode\\u003E\\u0026quot;Berlin/ToDo\\u0026quot;\\u003C/code\\u003E will work and offer the headline to refile below:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/6swhzzsmvp231.png\\\"\\u003Ehttps://i.redd.it/6swhzzsmvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut typing the lower case version \\u003Ccode\\u003E\\u0026quot;Berlin/Todo\\u0026quot;\\u003C/code\\u003E will only give results of headlines below the one I want to refile to:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/9mlv6bxuvp231.png\\\"\\u003Ehttps://i.redd.it/9mlv6bxuvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfd1r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bascht\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559818598.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_j2fhy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwtuob\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 33, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 33, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559710022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwtuob\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thenackjicholson\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/fldtyuwije231.png\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559681222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi guys,\\n\\nI would like to be able to preview inline images in Org-Mode without specifying its folder.\\n\\nFor instance, I would like to have `[[figurename.png]]` even tough the figure is in a folder named `figs`.\\n\\n\\u0026#x200B;\\n\\nRight now, I am using `#+LATEX_HEADER: \\\\graphicspath{{./figs/}}` and it is working good for LaTeX exports, but I don't have the nice preview in orgmode. Any idea how I could do that?\\n\\nThanks!\", \"author_fullname\": \"t2_6nzpkw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Default directory for inline images?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmraz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559669671.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to be able to preview inline images in Org-Mode without specifying its folder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor instance, I would like to have \\u003Ccode\\u003E[[figurename.png]]\\u003C/code\\u003E even tough the figure is in a folder named \\u003Ccode\\u003Efigs\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now, I am using \\u003Ccode\\u003E#+LATEX_HEADER: \\\\graphicspath{{./figs/}}\\u003C/code\\u003E and it is working good for LaTeX exports, but I don\\u0026#39;t have the nice preview in orgmode. Any idea how I could do that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmraz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tdehaeze\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559640871.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdoe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1559637338.0, \"media\": null, \"is_video\": false}], \"created\": 1559666163.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdoe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bwmdlj\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmdoe/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559637363.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi all, I'm trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is: \\n1. Find the contact (M-x org-contacts)\\n\\n2. Create link (C-c l)\\n\\n3. Go to task\\n\\n4. Insert link\\n\\nThis is not very good, I would like to know if there's a way to have my contacts links permanently stored on emacs, and if there's a easier way to insert a contact in a task.\\n\\nFor more information, the reason I want this is because sometimes I create tasks as: **Ping John about foo**, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\n\\nThanks for the help.\\n\\nPS: This is my config if it helps: [https://github.com/martini97/.emacs.d](https://github.com/martini97/.emacs.d)\", \"author_fullname\": \"t2_9eav0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Linking contacts to tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwk33h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559648146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I\\u0026#39;m trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is:\\u003Cbr/\\u003E\\n1. Find the contact (M-x org-contacts)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECreate link (C-c l)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGo to task\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EInsert link\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is not very good, I would like to know if there\\u0026#39;s a way to have my contacts links permanently stored on emacs, and if there\\u0026#39;s a easier way to insert a contact in a task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more information, the reason I want this is because sometimes I create tasks as: \\u003Cstrong\\u003EPing John about foo\\u003C/strong\\u003E, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for the help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: This is my config if it helps: \\u003Ca href=\\\"https://github.com/martini97/.emacs.d\\\"\\u003Ehttps://github.com/martini97/.emacs.d\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwk33h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_martini97\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559619346.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Came across this function/variable while improving my agenda views and thought it'd be interesting ... except it doesn't seem to work for me! If I activate this in an agenda view where I know I archived a task that's now DONE, nothing shows up.\\n\\nMy archive files are located in a different directory than my main org files:\\n\\n (setq org-archive-location (concat archive-dir (format-time-string \\\"%Y\\\" (current-time)) \\\".org_archive::datetree/\\\"))\\n\\nThese YYYY.org_archive files are not part of my `org-agenda-files` either.\\n\\nDoes archives mode only work if the `:ARCHIVED:` headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How is org-agenda-archives-mode supposed to work?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwi4qu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559636288.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECame across this function/variable while improving my agenda views and thought it\\u0026#39;d be interesting ... except it doesn\\u0026#39;t seem to work for me! If I activate this in an agenda view where I know I archived a task that\\u0026#39;s now DONE, nothing shows up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy archive files are located in a different directory than my main org files:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-archive-location (concat archive-dir (format-time-string \\u0026quot;%Y\\u0026quot; (current-time)) \\u0026quot;.org_archive::datetree/\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThese YYYY.org_archive files are not part of my \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes archives mode only work if the \\u003Ccode\\u003E:ARCHIVED:\\u003C/code\\u003E headlines are in an agenda file? Otherwise, how do I get this to work with all of my YYYY.org_archive files?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwi4qu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559607488.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"how do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org 9.2 lowercases #+BEGIN_SRC and other things\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwcmiw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559607953.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehow do I reconfigure org to make things like source block declarations and results drawer headers/footers be all caps again?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwcmiw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwcmiw/org_92_lowercases_begin_src_and_other_things/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559579153.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a time table like so with the following table format formula.\\n\\n |-------+----------+--------------|\\n | Start | Duration | Title |\\n |-------+----------+--------------|\\n | 9:00 | 00:15 | Introduction |\\n | 9:15 | 00:45 | Basics |\\n | 10:00 | 00:30 | Break |\\n | 10:30 | 01:30 | Intermediate |\\n | 12:00 | 01:00 | Lunch Break |\\n | 13:00 | 02:00 | Advanced |\\n | 15:00 | 00:30 | Break |\\n | 15:30 | 01:30 | Party |\\n | 17:00 | | End |\\n |-------+----------+--------------|\\n #+TBLFM: $2=@+1$1-$1;U\\n\\nMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\n\\n\\u003E user-error: Row descriptor +1 leads outside table\\n\\nIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\n\\nUpdate: `#+TBLFM: @\\u003C\\u003C$2..@\\u003E\\u003E$2=@+1$1-$1;U` seems to do the trick, thanks cipharius !\", \"author_fullname\": \"t2_5n9uk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Calculating the duration in a table based on the current row and the next; except for the last row\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw9eiq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1559564152.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559588764.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a time table like so with the following table format formula.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E|-------+----------+--------------|\\n| Start | Duration | Title |\\n|-------+----------+--------------|\\n| 9:00 | 00:15 | Introduction |\\n| 9:15 | 00:45 | Basics |\\n| 10:00 | 00:30 | Break |\\n| 10:30 | 01:30 | Intermediate |\\n| 12:00 | 01:00 | Lunch Break |\\n| 13:00 | 02:00 | Advanced |\\n| 15:00 | 00:30 | Break |\\n| 15:30 | 01:30 | Party |\\n| 17:00 | | End |\\n|-------+----------+--------------|\\n#+TBLFM: $2=@+1$1-$1;U\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EMy plan is to calculate the duration based on the current row and the start time of the next row. I works great, but when I execute the formatter it will give me the following warning:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Euser-error: Row descriptor +1 leads outside table\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIs there any way I can get rid of that warning by telling the formula to stop before the last row ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate: \\u003Ccode\\u003E#+TBLFM: @\\u0026lt;\\u0026lt;$2..@\\u0026gt;\\u0026gt;$2=@+1$1-$1;U\\u003C/code\\u003E seems to do the trick, thanks cipharius !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw9eiq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gausby\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw9eiq/calculating_the_duration_in_a_table_based_on_the/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559559964.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I found this post: [https://www.reddit.com/r/orgmode/comments/90sk11/how\\\\_do\\\\_you\\\\_cite\\\\_pages\\\\_for\\\\_quotes\\\\_with\\\\_orgref/](https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/), which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\", \"author_fullname\": \"t2_js9by\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you include page number in page number in org-ref with helm?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw916a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559585779.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI found this post: \\u003Ca href=\\\"https://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\\"\\u003Ehttps://www.reddit.com/r/orgmode/comments/90sk11/how_do_you_cite_pages_for_quotes_with_orgref/\\u003C/a\\u003E, which asks how to include page numbers in citations with org-ref. My question is, can I do it with helm, for instance through the C+u method?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw916a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kandidate\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw916a/how_do_you_include_page_number_in_page_number_in/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559556979.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The function `org-tags-view` allows you to build up semi-complex searches for tags using regexp:\\n\\n```\\n(org-tags-view t \\\"+PROP1={value}\\u0026+PROP2={[1-2]}\\\")\\n```\\n\\nHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header's properties, do some computations on them, and returns `t` or `nil` depending upon whether the computation matches in the way I specify?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Searching for org-tags programmatically (without regexp)?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bw317n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559542522.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe function \\u003Ccode\\u003Eorg-tags-view\\u003C/code\\u003E allows you to build up semi-complex searches for tags using regexp:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(org-tags-view t \\u0026quot;+PROP1={value}\\u0026amp;+PROP2={[1-2]}\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, regexp is very limited. Is there a way to search using some sort of matcher function that can, i.e., inspect an org header\\u0026#39;s properties, do some computations on them, and returns \\u003Ccode\\u003Et\\u003C/code\\u003E or \\u003Ccode\\u003Enil\\u003C/code\\u003E depending upon whether the computation matches in the way I specify?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw317n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bw317n/searching_for_orgtags_programmatically_without/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559513722.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"# Context\\n\\nI have a very strange org-mode workflow, and I don't know how better to ask this question without first explaining it. So bear with me :)\\n\\nEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\n\\n1. **Resources.** Resources are things like `Rcomputer`, `Rnone` (for pure \\\"thinking\\\" tasks), and combinatory resources like `RDevice` (defined as `Rphone` OR `Rcomputer`). They should ultimately be placed in a bracket notation such as `[Rnone]` or `[Rcomputer, Rphone]`.\\n2. **Energy.** Energy can be thought of as a real number between `E1` and `E10` (i.e., `E10` might making a hard emotional decision, while an `E1` task takes almost no effort). Energy should also ultimately be placed in brackets like `[E5]` (single value) or `[E2, E6]` (a range of energy).\\n3. **Tags.** Tags are high-level wrappers for the previous two categories. For example, `@Thinking` could convert to `E4` and `Rnone`, while `@Reading` might convert to `E3` and `RDevice`.\\n\\n# Problem\\n\\n**What I don't know how best to do:** programatically convert (3) into (1) and (2) in a sensible way. So, for example, I'd like to have a function which can convert\\n\\n * An org-mode thinking task. :@Thinking:\\n\\nto this:\\n\\n * An org-mode thinking task. :@Thinking:\\n :PROPERTIES:\\n :R: [Rnone]\\n :E: [E4]\\n :END:\\n\\nor more complicatedly, convert a task with two tags:\\n\\n * An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n :PROPERTIES:\\n :R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u003E [Rnone], while @Reading -\\u003E [RDevice] -\\u003E [Rcompter, Rphone]\\n :E: [E3, E4] ; @Thinking -\\u003E E3; @Reading -\\u003E E4\\n :END:\\n\\nHow best to encode all of this in elisp?\\n\\n# Attempt\\n\\nFirst we have high level resources:\\n\\n``` elisp\\n(setq high-level-resources (\\n (\\\"RDevice\\\" . '(\\\"Rcomputer\\\" \\\"Rphone\\\")) ;; Notice that \\\"high-level\\\" resources are capitalized while \\\"low-level\\\" resource are non-capitalized\\n ;; ..\\n )\\n```\\n\\nthen we have high-level tags (which define both a resource and an energy component):\\n\\n``` elisp\\n(setq tags ( \\n (\\\"@Reading\\\" . '((\\\"E\\\" . \\\"E3\\\") (\\\"R\\\" . \\\"RDevice\\\")))\\n (\\\"@Thinking\\\" . '((\\\"E\\\" . \\\"E2\\\") (\\\"R\\\" . \\\"Rnone\\\")))\\n ;; ..\\n )\\n```\\n\\nThen we need a function which converts tags to their resources/energy:\\n\\n``` elisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n```\\n\\nHow can we implement `convert-tags-to-resources-and-energy`?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Converting org-tags into properties (recursively)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvz12r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559520969.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EContext\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI have a very strange org-mode workflow, and I don\\u0026#39;t know how better to ask this question without first explaining it. So bear with me :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEvery org TODO (or org header) can be thought of as employing (i) resources and (ii) energy, which can be wrapped by (iii) tags.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EResources.\\u003C/strong\\u003E Resources are things like \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E, \\u003Ccode\\u003ERnone\\u003C/code\\u003E (for pure \\u0026quot;thinking\\u0026quot; tasks), and combinatory resources like \\u003Ccode\\u003ERDevice\\u003C/code\\u003E (defined as \\u003Ccode\\u003ERphone\\u003C/code\\u003E OR \\u003Ccode\\u003ERcomputer\\u003C/code\\u003E). They should ultimately be placed in a bracket notation such as \\u003Ccode\\u003E[Rnone]\\u003C/code\\u003E or \\u003Ccode\\u003E[Rcomputer, Rphone]\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003EEnergy.\\u003C/strong\\u003E Energy can be thought of as a real number between \\u003Ccode\\u003EE1\\u003C/code\\u003E and \\u003Ccode\\u003EE10\\u003C/code\\u003E (i.e., \\u003Ccode\\u003EE10\\u003C/code\\u003E might making a hard emotional decision, while an \\u003Ccode\\u003EE1\\u003C/code\\u003E task takes almost no effort). Energy should also ultimately be placed in brackets like \\u003Ccode\\u003E[E5]\\u003C/code\\u003E (single value) or \\u003Ccode\\u003E[E2, E6]\\u003C/code\\u003E (a range of energy).\\u003C/li\\u003E\\n\\u003Cli\\u003E \\u003Cstrong\\u003ETags.\\u003C/strong\\u003E Tags are high-level wrappers for the previous two categories. For example, \\u003Ccode\\u003E@Thinking\\u003C/code\\u003E could convert to \\u003Ccode\\u003EE4\\u003C/code\\u003E and \\u003Ccode\\u003ERnone\\u003C/code\\u003E, while \\u003Ccode\\u003E@Reading\\u003C/code\\u003E might convert to \\u003Ccode\\u003EE3\\u003C/code\\u003E and \\u003Ccode\\u003ERDevice\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Ch1\\u003EProblem\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat I don\\u0026#39;t know how best to do:\\u003C/strong\\u003E programatically convert (3) into (1) and (2) in a sensible way. So, for example, I\\u0026#39;d like to have a function which can convert\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eto this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode thinking task. :@Thinking:\\n:PROPERTIES:\\n:R: [Rnone]\\n:E: [E4]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eor more complicatedly, convert a task with two tags:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* An org-mode task that has both thinking and reading components. :@Thinking:@Reading:\\n:PROPERTIES:\\n:R: [Rnone, Rcomputer, Rphone] ; @Thinking -\\u0026gt; [Rnone], while @Reading -\\u0026gt; [RDevice] -\\u0026gt; [Rcompter, Rphone]\\n:E: [E3, E4] ; @Thinking -\\u0026gt; E3; @Reading -\\u0026gt; E4\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHow best to encode all of this in elisp?\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EAttempt\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFirst we have high level resources:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq high-level-resources (\\n (\\u0026quot;RDevice\\u0026quot; . \\u0026#39;(\\u0026quot;Rcomputer\\u0026quot; \\u0026quot;Rphone\\u0026quot;)) ;; Notice that \\u0026quot;high-level\\u0026quot; resources are capitalized while \\u0026quot;low-level\\u0026quot; resource are non-capitalized\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethen we have high-level tags (which define both a resource and an energy component):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(setq tags ( \\n (\\u0026quot;@Reading\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E3\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;RDevice\\u0026quot;)))\\n (\\u0026quot;@Thinking\\u0026quot; . \\u0026#39;((\\u0026quot;E\\u0026quot; . \\u0026quot;E2\\u0026quot;) (\\u0026quot;R\\u0026quot; . \\u0026quot;Rnone\\u0026quot;)))\\n ;; ..\\n )\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen we need a function which converts tags to their resources/energy:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eelisp\\n(defun convert-tags-to-resources-and-energy ()\\n (interactive)\\n ;;..not sure how to implement..\\n)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can we implement \\u003Ccode\\u003Econvert-tags-to-resources-and-energy\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvz12r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvz12r/converting_orgtags_into_properties_recursively/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559492169.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvsa9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Running a fresh Emacs session with `emacs -Q`, I evaluated the following:\\n\\n (setq org-agenda-files '(\\\"~/index.org\\\"))\\n (setq org-enforce-todo-dependencies t)\\n (setq org-agenda-dim-blocked-tasks 'invisible)\\n\\nwhere `~/index.org` simply contains:\\n\\n * Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO First subheading\\n ** TODO Second subheading\\n\\nWhen I call `(org-agenda nil \\\"t\\\")` to display the available TODOs, it correctly displays only \\\"First subheading.\\\" However, if I then export that buffer with `org-agenda-write`, then the resulting file contains both \\\"First subheading\\\" and \\\"Second subheading.\\\"\\n\\nWhat is going on here, and can it be fixed?\", \"author_fullname\": \"t2_jq0z6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-agenda-write doesn't respect org-agenda-dim-blocked-tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvs6jo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559467712.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERunning a fresh Emacs session with \\u003Ccode\\u003Eemacs -Q\\u003C/code\\u003E, I evaluated the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files \\u0026#39;(\\u0026quot;~/index.org\\u0026quot;))\\n(setq org-enforce-todo-dependencies t)\\n(setq org-agenda-dim-blocked-tasks \\u0026#39;invisible)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E~/index.org\\u003C/code\\u003E simply contains:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project heading\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO First subheading\\n** TODO Second subheading\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I call \\u003Ccode\\u003E(org-agenda nil \\u0026quot;t\\u0026quot;)\\u003C/code\\u003E to display the available TODOs, it correctly displays only \\u0026quot;First subheading.\\u0026quot; However, if I then export that buffer with \\u003Ccode\\u003Eorg-agenda-write\\u003C/code\\u003E, then the resulting file contains both \\u0026quot;First subheading\\u0026quot; and \\u0026quot;Second subheading.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is going on here, and can it be fixed?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvs6jo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1559438912.0, \"media\": null, \"is_video\": false}], \"created\": 1559468360.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvsa9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"probably-not-a-llama\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bvs6jo\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvsa9b/orgagendawrite_doesnt_respect/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvs6jo/orgagendawrite_doesnt_respect/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559439560.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"In a list of `files` I have org tasks with the property `E` such that each `E` is marked with an interval range.\\n\\n * Some task1\\n :PROPERTIES:\\n :E: [E1, E3]\\n :END:\\n\\n * Some task2\\n :PROPERTIES:\\n :E: [E4, E7]\\n :END:\\n\\n...and so forth.\\n\\n**Question:** How can I `search` through `files` and obtain an agenda view of all tasks that intersect within a range `min` to `max`?\\n\\nSo for example `(search files 3 7)` should display tasks that have, i,e., `[E2, E4]`, `[E4, E5]` or `[E6, E8]` but *not* display tasks have `[E1, E2]` or `[E8, E9]`.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Matching org tasks against an interval of values\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvqyqw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559459994.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn a list of \\u003Ccode\\u003Efiles\\u003C/code\\u003E I have org tasks with the property \\u003Ccode\\u003EE\\u003C/code\\u003E such that each \\u003Ccode\\u003EE\\u003C/code\\u003E is marked with an interval range.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Some task1\\n:PROPERTIES:\\n:E: [E1, E3]\\n:END:\\n\\n* Some task2\\n:PROPERTIES:\\n:E: [E4, E7]\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E...and so forth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion:\\u003C/strong\\u003E How can I \\u003Ccode\\u003Esearch\\u003C/code\\u003E through \\u003Ccode\\u003Efiles\\u003C/code\\u003E and obtain an agenda view of all tasks that intersect within a range \\u003Ccode\\u003Emin\\u003C/code\\u003E to \\u003Ccode\\u003Emax\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for example \\u003Ccode\\u003E(search files 3 7)\\u003C/code\\u003E should display tasks that have, i,e., \\u003Ccode\\u003E[E2, E4]\\u003C/code\\u003E, \\u003Ccode\\u003E[E4, E5]\\u003C/code\\u003E or \\u003Ccode\\u003E[E6, E8]\\u003C/code\\u003E but \\u003Cem\\u003Enot\\u003C/em\\u003E display tasks have \\u003Ccode\\u003E[E1, E2]\\u003C/code\\u003E or \\u003Ccode\\u003E[E8, E9]\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvqyqw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bvqyqw/matching_org_tasks_against_an_interval_of_values/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559431194.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-src-window-setup not behaving as expected with multi-term-dedicated opened? (more info in comments) (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bvavuq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559354935.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvavuq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bvavuq/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bvai3u/orgsrcwindowsetup_not_behaving_as_expected_with/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559326135.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 31, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv747t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559335751.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv747t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv747t/weekly_rorgmode_open_discussion_may_31_2019/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559306951.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi Everyone, \\n\\nI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\n\\n\\u0026#x200B;\\n\\n (cond ((eq system-type 'windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list 'exec-path \\\"c:/cygwin64/bin/\\\")\\n (setenv \\\"PATH\\\"\\n (concat\\n \\\"c:/cygwin64/bin/aspell.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/zip.exe\\\" \\\";\\\"\\n \\\"c:/cygwin64/bin/unzip.exe\\\" \\\";\\\"\\n (getenv \\\"PATH\\\")\\n )\\n )\\n (setq ispell-program-name \\\"aspell.exe\\\")\\n )\\n )\\n\\nThis is my \\\\*Only Windows\\\\* Configuration Part as I cant include it to the Windows PATH Variable.\\n\\nNow (org-odt-export-to-odt) has the following problem. \\n\\n\\u0026#x200B;\\n\\n OpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\n sh: unzip: command not found\\n test of Configuration.odt FAILED\\n \\n zip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n )\\n\\nAny ideas?\\n\\nJust Message me if there is more Info needed\\n\\n\\u0026#x200B;\\n\\nThanks in advance\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Win10 Org Odt Export Unzip Problem\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bv54oy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559321590.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi Everyone, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u00b4m having Problems with Exporting Org Mode content to Odt. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(cond ((eq system-type \\u0026#39;windows-nt)\\n ;; Windows-specific code goes here.\\n (add-to-list \\u0026#39;exec-path \\u0026quot;c:/cygwin64/bin/\\u0026quot;)\\n (setenv \\u0026quot;PATH\\u0026quot;\\n (concat\\n \\u0026quot;c:/cygwin64/bin/aspell.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/zip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n \\u0026quot;c:/cygwin64/bin/unzip.exe\\u0026quot; \\u0026quot;;\\u0026quot;\\n (getenv \\u0026quot;PATH\\u0026quot;)\\n )\\n )\\n (setq ispell-program-name \\u0026quot;aspell.exe\\u0026quot;)\\n )\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis is my *Only Windows* Configuration Part as I cant include it to the Windows PATH Variable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow (org-odt-export-to-odt) has the following problem. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EOpenDocument export failed: Unable to create OpenDocument file. Zip failed with error (/bin/sh: unzip: command not found\\nsh: unzip: command not found\\ntest of Configuration.odt FAILED\\n\\nzip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)\\n)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust Message me if there is more Info needed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bv54oy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bv54oy/win10_org_odt_export_unzip_problem/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559292790.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Dear Orgers...\\n\\nI'm exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\\"Contents\\\"). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\n\\nhttps://i.redd.it/71ml0g0ikf131.png\\n\\nHow can I prevent this from happening?\\n\\nI see here 2 possibilities:\\n\\n1. the ToC title exists, but doesn't appears in the ToC itself.\\n2. There is no ToC title!\\n\\nI'm obviously searching with the wrong keywords since I'm not finding a solution to this...\\n\\nIn every case, thanks a lot for your help. :)\", \"author_fullname\": \"t2_dyrlf6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Avoid ToC entry in ToC export to pdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"71ml0g0ikf131\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1210, \"x\": 918, \"u\": \"https://i.redd.it/71ml0g0ikf131.png\"}, \"m\": \"image/png\", \"id\": \"71ml0g0ikf131\"}}, \"name\": \"t3_buzxzp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559286714.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDear Orgers...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m exporting to pdf v\\u00eda latex (and the exceptional Memoir class with some customizations). The Table of Contents (ToC) appears by default with a title (in english, \\u0026quot;Contents\\u0026quot;). When the export to pdf is done, you can see in the ToC that the 1st line is... the same ToC title! :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/71ml0g0ikf131.png\\\"\\u003Ehttps://i.redd.it/71ml0g0ikf131.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I prevent this from happening?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI see here 2 possibilities:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Ethe ToC title exists, but doesn\\u0026#39;t appears in the ToC itself.\\u003C/li\\u003E\\n\\u003Cli\\u003EThere is no ToC title!\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m obviously searching with the wrong keywords since I\\u0026#39;m not finding a solution to this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn every case, thanks a lot for your help. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buzxzp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"edumerco\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buzxzp/avoid_toc_entry_in_toc_export_to_pdf/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559257914.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a `calendar.org` buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\n\\nIs this possible? Where can I start looking at this?\\n\\nThanks!\", \"author_fullname\": \"t2_3tdxdj82\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly agenda view: not show past items from certain buffers\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burp9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559242335.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a \\u003Ccode\\u003Ecalendar.org\\u003C/code\\u003E buffer I use for, well, calendar events to display on the Agenda view. I would like items from this buffer to be hidden from past days in the weekly view (or, show only today+future items from this buffer in agenda), but still keep seeing all items from other buffers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this possible? Where can I start looking at this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burp9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mirenbe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/burp9u/weekly_agenda_view_not_show_past_items_from/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559213535.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl9k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 22, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 22, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 4 TODO Items\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_burl5q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 76, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 76, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559241478.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl5q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/burl5q/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1559212678.0, \"media\": null, \"is_video\": false}], \"created\": 1559241501.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"burl9k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_burl5q\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/burl9k/orgmode_hidden_gems_4_todo_items/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt4/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559212701.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Any way to hide these headers/footers? It's a bit distracting with lots of small code examples.\\n\\n #+begin_src haskell\\n ...\\n #+end_src\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I hide source block header and footer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buopeh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559218136.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny way to hide these headers/footers? It\\u0026#39;s a bit distracting with lots of small code examples.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+begin_src haskell\\n...\\n#+end_src\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buopeh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buopeh/how_can_i_hide_source_block_header_and_footer/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559189336.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\n\\nI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\n\\nI'm pretty sure I'm overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\", \"author_fullname\": \"t2_ycu34\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Handling Github Badges in Org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_buhsue\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559180889.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScenario: I upload a README for a Github repo as an Org file. I want to add a badge (shield) to my README but the badge is in Markdown format.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was hoping to get some feedback on how to handle Github Badges that are primarily in markdown to properly display in an Org file that has been added in a Github repo. So in my case I simply redid the formatting from markdown to org and got the badge to show up correctly. But is this the best way to do this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m pretty sure I\\u0026#39;m overthinking it lol. I could just export as Markdown, but for fun I wanted to keep all the docs in this repo as org files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"buhsue\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hardrived_\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/buhsue/handling_github_badges_in_org_file/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559152089.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I add TODO to list items instead of just headers?\", \"author_fullname\": \"t2_6qzsr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Add todo to list item?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_budm5j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559159049.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I add TODO to list items instead of just headers?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"budm5j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"kaiwen1\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/budm5j/add_todo_to_list_item/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559130249.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello!\\n\\nI'd like to use the ORDERED property but it doesn't seem to be working in the way I'd expect, so I wanted to check that my expectation is correct.\\n\\n * TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n ** TODO Check contents of disks\\n ** TODO Securely wipe disks\\n ** TODO Take disks to recycling center\\n\\nWith the ORDERED property set, I figured that I wouldn't be able to mark \\\"Securely wipe disks\\\" as DONE before I had completed \\\"Check contents of disks\\\". However I can mark these items as DONE in any order I like.\\n\\nDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Possible confusion over ORDERED property\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bu1tby\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559088369.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to use the ORDERED property but it doesn\\u0026#39;t seem to be working in the way I\\u0026#39;d expect, so I wanted to check that my expectation is correct.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* TODO Shred Hard Disks\\n :PROPERTIES:\\n :ORDERED: t\\n :END:\\n** TODO Check contents of disks\\n** TODO Securely wipe disks\\n** TODO Take disks to recycling center\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith the ORDERED property set, I figured that I wouldn\\u0026#39;t be able to mark \\u0026quot;Securely wipe disks\\u0026quot; as DONE before I had completed \\u0026quot;Check contents of disks\\u0026quot;. However I can mark these items as DONE in any order I like.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes org-mode impose that constraint, or is the ORDERED property just a guideline that can be overridden?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bu1tby\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bu1tby/possible_confusion_over_ordered_property/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559059569.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I was wondering how one could make one entry inherit the DEADLINE of the parent. I know about `org-use-property-inheritance` but it doesn't seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\", \"author_fullname\": \"t2_q52rf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inherit DEADLINE from parent\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btzy6m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559078444.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering how one could make one entry inherit the DEADLINE of the parent. I know about \\u003Ccode\\u003Eorg-use-property-inheritance\\u003C/code\\u003E but it doesn\\u0026#39;t seem to apply to DEADLINE as this is not a proper property. I just found old comments and links on this issue and wondering whether there is an updated answer. Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btzy6m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jackjackk0\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btzy6m/inherit_deadline_from_parent/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1559049644.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi y'all, this is probably a simple question for some of you, but I can't quite figure it out on my own.\\n\\nI'm trying to edit my `org-agenda-prefix-format` for an agenda view, such that:\\n\\n* If the entry has a scheduled or deadline timestamp, show the standard \\\"Deadline:\\\" / \\\"In N d.:\\\" / \\\"Scheduled:\\\" / \\\"Sched. 10 d.:\\\" strings.\\n* Otherwise, show the category\\n\\n**Example**: Agenda view\\n\\n Sunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\nIs there a way to display a conditional prefix like this?\\n\\nThe code I was tinkering with before posting looked like:\\n\\n (defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\\"sched (%s), dead (%s)\\\" is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\\" %-12s%-12t \\\"\\n \\\" %-12:c%-12t \\\")))\\n\\n ; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n (org-agenda-custom-prefix (test/custom-prefix))\\n\\nNot exactly the same as above, but it was a WIP, and the problem was that `is-scheduled` and `is-deadlined` were always both `nil` for some reason, despite the tasks having a scheduled / deadline timestamp.\", \"author_fullname\": \"t2_rsm68\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"In org-agenda, display category if there's no scheduled/deadline timestamp, else display the scheduled/deadline prefixes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btovhk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559007583.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi y\\u0026#39;all, this is probably a simple question for some of you, but I can\\u0026#39;t quite figure it out on my own.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to edit my \\u003Ccode\\u003Eorg-agenda-prefix-format\\u003C/code\\u003E for an agenda view, such that:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf the entry has a scheduled or deadline timestamp, show the standard \\u0026quot;Deadline:\\u0026quot; / \\u0026quot;In N d.:\\u0026quot; / \\u0026quot;Scheduled:\\u0026quot; / \\u0026quot;Sched. 10 d.:\\u0026quot; strings.\\u003C/li\\u003E\\n\\u003Cli\\u003EOtherwise, show the category\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EExample\\u003C/strong\\u003E: Agenda view\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ESunday 26 May 2019\\n Sched. 3x | TODO some task that is scheduled\\n Deadline | TODO some task with deadline today\\n 2 d. ago | TODO some task with deadline today\\n a category | TODO a task with no deadline/scheduled\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs there a way to display a conditional prefix like this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code I was tinkering with before posting looked like:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun test/custom-prefix ()\\n (let ((is-scheduled (not (eq (org-get-scheduled-time (point)) nil)))\\n (is-deadlined (not (eq (org-get-deadline-time (point)) nil))))\\n (message \\u0026quot;sched (%s), dead (%s)\\u0026quot; is-scheduled is-deadlined)\\n (if (or is-scheduled is-deadlined)\\n \\u0026quot; %-12s%-12t \\u0026quot;\\n \\u0026quot; %-12:c%-12t \\u0026quot;)))\\n\\n; ... later on in the code, inside one of the org-agenda-custom-commands blocks\\n(org-agenda-custom-prefix (test/custom-prefix))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENot exactly the same as above, but it was a WIP, and the problem was that \\u003Ccode\\u003Eis-scheduled\\u003C/code\\u003E and \\u003Ccode\\u003Eis-deadlined\\u003C/code\\u003E were always both \\u003Ccode\\u003Enil\\u003C/code\\u003E for some reason, despite the tasks having a scheduled / deadline timestamp.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btovhk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"werzor\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btovhk/in_orgagenda_display_category_if_theres_no/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558978783.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Not exactly sure how to phrase this question, so I'll do my best to explain what I'd like to do and why...\\n\\nI've been writing quite a few projects using literate programming via org-mode. Lately, I've been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\n\\nI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\n\\nThanks!\", \"author_fullname\": \"t2_4hzm8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using org-agenda on individual files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btdd9b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558934196.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot exactly sure how to phrase this question, so I\\u0026#39;ll do my best to explain what I\\u0026#39;d like to do and why...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been writing quite a few projects using literate programming via org-mode. Lately, I\\u0026#39;ve been really into adding TODO items to these org files directly so I can plan things out before writing the code.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would love to be able to leverage org-agenda for some of these TODO items so I can schedule things and view a summary. However, I do not want to have to add these files or directories to the org-agenda-files variable. Is there any way I can open and org-file and dynamically create an org-agenda view with JUST that file (while also keeping my global org agenda)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btdd9b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ralphbluecoat\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btdd9b/using_orgagenda_on_individual_files/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558905396.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I insert a string into an org file and change its appearance by using `(put-text-property start end 'font-lock-face 'my-face my-string)`, the face assignment doesn't persist after the file is saved and re-opened.\\n\\n\\u0026#x200B;\\n\\nIt also appears that I cannot use `(put-text-property start end 'face 'my-face)` in an org buffer (but it does work when the file is in fundamental mode).\\n\\n\\u0026#x200B;\\n\\nHow can I assign a persistent face to a section of an org buffer?\\n\\n\\u0026#x200B;\\n\\n(Edit: posted before I finished writing, typos.)\", \"author_fullname\": \"t2_3gjjtpnq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Persistent font changes in an org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_btasp7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558892947.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558921535.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I insert a string into an org file and change its appearance by using \\u003Ccode\\u003E(put-text-property start end \\u0026#39;font-lock-face \\u0026#39;my-face my-string)\\u003C/code\\u003E, the face assignment doesn\\u0026#39;t persist after the file is saved and re-opened.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt also appears that I cannot use \\u003Ccode\\u003E(put-text-property start end \\u0026#39;face \\u0026#39;my-face)\\u003C/code\\u003E in an org buffer (but it does work when the file is in fundamental mode).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I assign a persistent face to a section of an org buffer?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Edit: posted before I finished writing, typos.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"btasp7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itistheblurstoftimes\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/btasp7/persistent_font_changes_in_an_org_file/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558892735.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9f5z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'd like to better show \\\"Today\\\" in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\n\\nFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\n\\nThanks!\\n\\nMy current habit-related settings are:\\n\\n (setq org-habit-show-habits-only-for-today nil)\\n (setq org-habit-graph-column 60)\\n (setq org-habit-following-days 3)\\n\\nAlthough I don't think that they change anything to do with this question.\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] Better visibility for current day in the Consistency Graph.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bt9atw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558913913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d like to better show \\u0026quot;Today\\u0026quot; in the org-mode habits consistency graph. Right now my eyes kinda miss the yellow column so I was hoping to be able to make it a little wider than a single column (say, 3 columns, with the task complete marker in the centre column) or something similar to make it more visible.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFailing that, does anyone know of a way to display all the things I can customize in the habits consistency graph?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy current habit-related settings are:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-habit-show-habits-only-for-today nil)\\n(setq org-habit-graph-column 60)\\n(setq org-habit-following-days 3)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAlthough I don\\u0026#39;t think that they change anything to do with this question.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9atw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1558885113.0, \"media\": null, \"is_video\": false}], \"created\": 1558914521.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bt9f5z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bt9atw\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bt9f5z/orgmode_better_visibility_for_current_day_in_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bt9atw/orgmode_better_visibility_for_current_day_in_the/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558885721.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Many times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\", \"author_fullname\": \"t2_38v6e72q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Question] Paste with source format\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsnq2u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558768415.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMany times, I copy text from MS Word/Google Docs/ Web and paste in emacs for my notes. How can I keep the source formatting while pasting the text? At least it should preserve bold, italic, underline, list (bullet and numbered).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsnq2u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GracefulToucan\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsnq2u/question_paste_with_source_format/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558739615.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 24, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bsgj6t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558730956.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bsgj6t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bsgj6t/weekly_rorgmode_open_discussion_may_24_2019/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558702156.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_30eh7cic\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"doing kanban in org mode? (x-post /r/emacs)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs8w8p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558677597.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs8w8p\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BOOF_GOBLIN_69\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs8w8p/doing_kanban_in_org_mode_xpost_remacs/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bs8rpm/doing_kanban_in_org_mode/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558648797.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\n\\nDoes anyone of you have the same set up with a working configuration?\", \"author_fullname\": \"t2_3tjqi9un\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Has anyone set up beorg with nextcloud sucessfully?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bs1jef\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558638131.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI set up beorg according the documentation of both beorg and nextcloud, but it still does not work. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone of you have the same set up with a working configuration?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bs1jef\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CuriousQuasar\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bs1jef/has_anyone_set_up_beorg_with_nextcloud_sucessfully/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558609331.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_4utg0yv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using the Eisenhower Matrix in Emacs Org-Mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bry1c2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 18, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 18, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1558609281.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"tompurl.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bry1c2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Okesa\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bry1c2/using_the_eisenhower_matrix_in_emacs_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.tompurl.com/2015-12-29-emacs-eisenhower-matrix.html\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558580481.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"The following renders with `org-toggle-latex-fragment`:\\n\\n$$\\n2+2 = 4\\n$$\\n\\nbut the following doesn't\\n\\n#+begin_latex\\n2+2 = 4\\n#+end_latex\\n\\nHow do I get the bottom to render as well?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Rendering inside \\\"#+begin_latex ... #+end_latex\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brs51i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558577715.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe following renders with \\u003Ccode\\u003Eorg-toggle-latex-fragment\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E$$\\n2+2 = 4\\n$$\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut the following doesn\\u0026#39;t\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+begin_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E2+2 = 4\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+end_latex\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EHow do I get the bottom to render as well?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brs51i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brs51i/rendering_inside_begin_latex_end_latex/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558548915.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"When I export to pdf from org, the font is a bitmap font.\\n\\nHow can I change the export such that vector fonts will be used?\\n\\nThanks!\", \"author_fullname\": \"t2_q43ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org export to pdf: vector font instead of bitmap font\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_brkczh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558528248.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I export to pdf from org, the font is a bitmap font.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I change the export such that vector fonts will be used?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"brkczh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HumanBrainMapper\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/brkczh/org_export_to_pdf_vector_font_instead_of_bitmap/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558499448.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I had posted this some months ago here: https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\n\\nI've updated and added some new features to it!\\n\\nIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\n\\nIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\n\\nThe new features are: It auto generates indexes, has support for tags, header, and footer! \\n\\nRight now the main missing feature is generating the RSS.\\n\\nHere is a working example: https://ivanaf.com/org-export-head/index.html, and the source is here: https://github.com/itf/org-export-head\", \"author_fullname\": \"t2_21clngjz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Single file Blog in org mode - update\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br5iur\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558438826.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI had posted this some months ago here: \\u003Ca href=\\\"https://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\\"\\u003Ehttps://en.reddit.com/r/emacs/comments/9cslij/single_file_blog_in_org_mode/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve updated and added some new features to it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is a way of generating a blog from a single orgmode file; you copy the file, run the code inside the file itself, and then you have 2 new functions: org-export-head and org-export-head-reexport. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt will export each headline to a new file, and it will only reexport if there has been a change in the headline text, or if you force it to reexport.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe new features are: It auto generates indexes, has support for tags, header, and footer! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now the main missing feature is generating the RSS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is a working example: \\u003Ca href=\\\"https://ivanaf.com/org-export-head/index.html\\\"\\u003Ehttps://ivanaf.com/org-export-head/index.html\\u003C/a\\u003E, and the source is here: \\u003Ca href=\\\"https://github.com/itf/org-export-head\\\"\\u003Ehttps://github.com/itf/org-export-head\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br5iur\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itadeufa\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br5iur/single_file_blog_in_org_mode_update/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558410026.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm using spacemacs and am trying to figure out how to use the following package: [here](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el).\\n\\nIt's supposed to add mathematica support to org-babel snippets.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I use ob-mathematica.el?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_br2g1m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558420778.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using spacemacs and am trying to figure out how to use the following package: \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s supposed to add mathematica support to org-babel snippets.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"br2g1m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/br2g1m/how_do_i_use_obmathematicael/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558391978.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\n\\nWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\n\\nThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\n\\n2019-05-12 \\nTask A : 3h 20m \\nTask B : 2h 5m\\n\\n2019-05-13 \\nTask A : 2h 10m \\nTask B : 1h 20m\\n\\nI've read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\", \"author_fullname\": \"t2_37uew703\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"View clock table entries by date?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bqu8sp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558379941.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a list of completed to do items, each one of them I clocked in and clocked out on, sometimes through multiple dates.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I create a clock table for these todos, it produces a table of each to do item along with how much time total was spent on that item.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis report is not very helpful when I want to figure out how much time I spent on each task per date. For example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-12\\u003Cbr/\\u003E\\nTask A : 3h 20m\\u003Cbr/\\u003E\\nTask B : 2h 5m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2019-05-13\\u003Cbr/\\u003E\\nTask A : 2h 10m\\u003Cbr/\\u003E\\nTask B : 1h 20m\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve read through the documentation and tried out some options like the Timestamp option but that only shows the deadline per task. Is there any way to view my tasks in the above example?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bqu8sp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OverthrowDissent\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bqu8sp/view_clock_table_entries_by_date/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558351141.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Have some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\n\\nbeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\n\\n\\u0026#x200B;\\n\\nBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\n\\n\\u0026#x200B;\\n\\n(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\n\\nand then format all the returns, into a working log entry I can put notes into along with some screenshots\\n\\n\\u0026#x200B;\\n\\nAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\n\\nAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\n\\n\\u0026#x200B;\\n\\nThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\n\\n\\u0026#x200B;\\n\\nadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\n\\n\\u0026#x200B;\\n\\nYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\", \"author_fullname\": \"t2_nb9r4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode / LISP Mentor or Tutor?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq9kxd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558246612.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave some specific-ish / specialized tasks id like to figure out how to get into a workflow with exports and such and id be happy to pay for some specific assistance. if anyone has the time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebeen messing with Org-mode for a month or so at this point and I cant seem to get a couple of things to come together. I know that it should all be possible, its LISP right? but I am not finding answers or answers that are close enough that i can make them work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically I want to use a capture template (or some method) to enter a few variables that will return some values either from several spreadsheets OR orgtables OR a local MySql DB. Any of these will work for me its not that much data but its enough that its a PIA to jump between them all\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(its a cascaded search so user Var A, returns String A and B and C and val 1 val 2, then I want to use String A as a query variable for different tables based on user Var B, then return from 1 to 30 values) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand then format all the returns, into a working log entry I can put notes into along with some screenshots\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the end of the day export into a nice looking ticket, and fire off as a daily field status. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll those values will then also get formatted into statement, generate a customer time ticket, and give me a list of time entries, formatted, that I can copy / paste into my timecard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I also have a ton of other little tasks i deal with Id like to be able to clock and capture, while I am running the field and doing my maintenance or commissioning tasks. Phonecalls or helping other techs, remoting into other sites or calling in parts orders that I need to clock time on and have these tasks compile into a daily log and selectively be added to the daily field status email, or selectively be added to a relief notes / handover log for my relief when I leave on days off for my two weeks off every month.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eadditionally Ive got a couple of small issues with getting a custom language highlighting .el to highlight SOME keywords and getting abbrevs to expand.. along with getting the layer to load automatically in spacemacs\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYes I have been using spacemacs, Im not opposed to vanilla emacs with evil if that would serve better I tend to use the C-c C-x M-x keys without the SPC alot anyway.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq9kxd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"psychocoonass\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq9kxd/orgmode_lisp_mentor_or_tutor/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558217812.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Scrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I'm on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\n\\nI have a lot of files in Deft that I would rather access through org-capture.\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to make the capture template selection list window (\\\"Org Select\\\") scrollable so that when you have a large number of capture templates (e.g.\\u003E 26), the display is not truncated?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bq8ohl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558241466.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EScrolling, page-up, and page-down do not work in the capture template selection brought up by C-c c. I\\u0026#39;m on Windows 10, GNU Emacs 26.1 , org-mode 9.1.2 and am using the GUI interface.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a lot of files in Deft that I would rather access through org-capture.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bq8ohl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bq8ohl/is_there_a_way_to_make_the_capture_template/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558212666.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 17, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpquo9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558126152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpquo9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpquo9/weekly_rorgmode_open_discussion_may_17_2019/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558097352.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I see two packages: \\n\\n* https://github.com/mattduck/org-toggl-py\\n* https://github.com/mmagnus/emacs-toggl\\n\\nBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having `toggl` installed and connect to their service on task start.\\n\\nI want to log my time and send whenever I'm ready _in emacs_ using the name of the item associated with my clock entries with the ability to override/change this via properties. \\n\\norg-toggl-py has some property support, but requires exporting with external command. \\n\\nReally maybe external command is okay but wanted to see what others are using.\\n\\n\\n**Update 1**: Found https://github.com/mbork/org-toggl. Investigating...\\n\\n**Update 2**: Timer on org-toggle cannot be stopped see PR [#6](https://github.com/mbork/org-toggl/pull/6) and [#3](https://github.com/mbork/org-toggl/pull/3) \\u2013which are from 2018. Also **does not** seem to integrate with Org mode as advertised.\\n\\n**Update 3**: Tried [Fuco1's fork](https://github.com/Fuco1/org-toggl) which fixes [#6](https://github.com/mbork/org-toggl/pull/6) but Org mode integration still is not working. Went to org-toggle-py [but couldn't get it to work](https://github.com/mattduck/org-toggl-py/issues/1)\\n\\n\\nSeems like best approach is to call `toggl-start-time-entry`/`toggl-stop-time-entry ` around `org-clock-in`/`org-clock-out` and then write some export function using these. \\n\\nNot sure if it's possible to check if an export is new or requires updating. Will have to investigate Toggl's API.\", \"author_fullname\": \"t2_h8sck\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone Use Org mode With Toggl\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bpjh7e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1558056916.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558076490.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see two packages: \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py\\\"\\u003Ehttps://github.com/mattduck/org-toggl-py\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mmagnus/emacs-toggl\\\"\\u003Ehttps://github.com/mmagnus/emacs-toggl\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EBut neither of these are ideal as they require running an external command to export to Toggl (org-toggl-py) or having \\u003Ccode\\u003Etoggl\\u003C/code\\u003E installed and connect to their service on task start.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to log my time and send whenever I\\u0026#39;m ready \\u003Cem\\u003Ein emacs\\u003C/em\\u003E using the name of the item associated with my clock entries with the ability to override/change this via properties. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eorg-toggl-py has some property support, but requires exporting with external command. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReally maybe external command is okay but wanted to see what others are using.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 1\\u003C/strong\\u003E: Found \\u003Ca href=\\\"https://github.com/mbork/org-toggl\\\"\\u003Ehttps://github.com/mbork/org-toggl\\u003C/a\\u003E. Investigating...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 2\\u003C/strong\\u003E: Timer on org-toggle cannot be stopped see PR \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E and \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/3\\\"\\u003E#3\\u003C/a\\u003E \\u2013which are from 2018. Also \\u003Cstrong\\u003Edoes not\\u003C/strong\\u003E seem to integrate with Org mode as advertised.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate 3\\u003C/strong\\u003E: Tried \\u003Ca href=\\\"https://github.com/Fuco1/org-toggl\\\"\\u003EFuco1\\u0026#39;s fork\\u003C/a\\u003E which fixes \\u003Ca href=\\\"https://github.com/mbork/org-toggl/pull/6\\\"\\u003E#6\\u003C/a\\u003E but Org mode integration still is not working. Went to org-toggle-py \\u003Ca href=\\\"https://github.com/mattduck/org-toggl-py/issues/1\\\"\\u003Ebut couldn\\u0026#39;t get it to work\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESeems like best approach is to call \\u003Ccode\\u003Etoggl-start-time-entry\\u003C/code\\u003E/\\u003Ccode\\u003Etoggl-stop-time-entry\\u003C/code\\u003E around \\u003Ccode\\u003Eorg-clock-in\\u003C/code\\u003E/\\u003Ccode\\u003Eorg-clock-out\\u003C/code\\u003E and then write some export function using these. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot sure if it\\u0026#39;s possible to check if an export is new or requires updating. Will have to investigate Toggl\\u0026#39;s API.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bpjh7e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sshaw_\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bpjh7e/anyone_use_org_mode_with_toggl/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1558047690.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to find an note taking website that I can used to stay organized on computers that don't have emacs.\\n\\nAll of the online note taking apps I have found like SimpleNote or \\\"Tutrl\\\" can only understand markdown.\\n\\nIs there any note taking web service that can understand and edit org files like markdown.\\n\\n\\n\\nI have my own server so I can host my own app if necessary.\", \"author_fullname\": \"t2_gm7cp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Looking for a Evernote-like note taking web app that can understand org-files\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bp8uw7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1558013986.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to find an note taking website that I can used to stay organized on computers that don\\u0026#39;t have emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll of the online note taking apps I have found like SimpleNote or \\u0026quot;Tutrl\\u0026quot; can only understand markdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any note taking web service that can understand and edit org files like markdown.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have my own server so I can host my own app if necessary.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bp8uw7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CeamoreCash\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bp8uw7/looking_for_a_evernotelike_note_taking_web_app/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bp8uw7/looking_for_a_evernotelike_note_taking_web_app/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557985186.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have made a function which \\\"intelligently\\\" inserts a new heading, TODO, list item, or checkbox based on the the type of the current entry at the point. I find it quite useful, so I thought would share it here.\\n\\nWhen inserting new headings/items into an org subtree, I don't like having to remember which command to use based on whether the current entry is a heading (`C-RET`), a TODO (`C-S-RET`), a list item (`M-x org-insert-item`), or a checkbox (`C-u M-x org-insert-item`). I also don't like that the behavior changes depending on whether the point is at the beginning of the line. \\n\\nBased on these requirements, I made the function `sbr-org-insert-dwim` listed below. It is highly opinionated based on my use preferences:\\n\\n* Lines are never split (for the duration of the command, `org-M-RET-may-split-line` is set to nil). If I really need to split the line, I can either do `C-k sbr-org-insert-dwim C-y` or use the built in `M-RET` or `M-S-RET`\\n* The behavior of `sbr-org-insert-dwim` is the same regardless of where the point is on the current line, on the asterisks/dash, at the beginning/middle/end of the entry, or even if the point is after ellipses (i.e. the subtree of the current entry is hidden). The builtin commands `org-insert-heading` and `org-insert-item` have unspecified behavior when used after ellipses.\\n* By default, the new entry in inserted below the current subtree/item. With the prefix `C-u`, the entry is inserted before the current entry and the end of previous subtree (similar to `C-u C-u org-insert-heading`). The inserted entry never breaks up a subtree, which in my opinion, would break the abstraction of the subtree hierarchy. In order to break up and edit subtree structure, I use the `M-\\u003Carrow\\u003E` commands.\\n* If the point is above the first heading, simply insert a level-1 heading. When used above the first heading, `C-RET` (`org-insert-heading-respect-content`) confusingly converts:\\n\\n\\u0026#8203;\\n\\n \\u003E \\u003C\\n * First Heading \\n Something Something\\n Something Something\\n\\ninto:\\n\\n \\n * \\u003E*\\u003C First Heading \\n Something Something\\n Something Something\\n\\nwhere `\\u003E \\u003C` is the point.\\n\\nSince `S-RET` is bound to `org-table-copy-down`, which only works in a table, I made a function `sbr-org-shift-return` that enables me to use `sbr-org-insert-dwim` outside of tables, while preserving the default behavior.\\n\\nThe code is listed below. It's a little more complicated then I would like in order for it to handle all the edge cases (e.g., point after ellipses or before the first heading), and also because the org insert functions don't behave uniformly. For example `org-insert-todo-heading` inserts a checkbox if the point is on a list item, but `org-insert-heading` doesn't similarly insert a list item when the point is on a list item (even though its documentation claims that it does). Any suggestions for streamlining this code are welcome!\\n\\n (defun sbr-org-insert-dwim (\\u0026optional arg)\\n \\\"Insert another entry of the same type as the current\\n entry. For example, if the point is on a list item, then add\\n another list item of the same type, and if the point is on a\\n checkbox list item, then add an empty checkbox item. If instead\\n the point is in a heading, then add another heading. If the point \\n is in a TODO heading, then add another TODO heading (set to the \\n TODO state). \\n \\n By default, the new entry is inserted below the current\\n subtree/item. With a 'C-u' prefix, insert the entry above the\\n current heading/item instead.\\\"\\n (interactive \\\"P\\\")\\n (when (eq major-mode 'org-mode)\\n (let ((org-special-ctrl-a/e t)\\n (below? (unless (equal arg '(4)) '(4))))\\n ;; hack to ensure that the point is not after ellipses because\\n ;; that would mess up org-at-item-p etc.\\n (org-beginning-of-line)\\n (cond ((org-at-item-p) ;; at list item or checkbox\\n (let ((org-M-RET-may-split-line nil)\\n (org-enable-sort-checkbox nil))\\n ;; hack to make item be inserted after the current one\\n ;; doesn't work if we are on an empty item line\\n (when below?\\n (org-end-of-line)) \\n (org-insert-item (org-at-item-checkbox-p))))\\n ((org-before-first-heading-p) ;; above first heading\\n (org-insert-heading))\\n (t ;; in some kind of heading\\n (org-back-to-heading)\\n (if (org-get-todo-state)\\n ;; at TODO heading\\n (org-insert-todo-heading t below?)\\n ;; at non-TODO heading \\n (org-insert-heading below?)))))))\\n \\n (defun sbr-org-shift-return (\\u0026optional arg)\\n \\\"If point is at a table, copy the table cell downward (i.e.,\\n the usual effect of typing S-RET). Otherwise, insert the same\\n kind of heading or item as the current entry containing the\\n point. \\\"\\n (interactive \\\"P\\\")\\n (if (org-at-table-p)\\n (org-table-copy-down (prefix-numeric-value arg))\\n (sbr-org-insert-dwim arg)))\\n \\n (bind-keys :map org-mode-map (\\\"\\u003CS-return\\u003E\\\" . sbr-org-insert-dwim))\", \"author_fullname\": \"t2_7nfrv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"function for DWIM insertion of new entries\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_boyu8r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557960504.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have made a function which \\u0026quot;intelligently\\u0026quot; inserts a new heading, TODO, list item, or checkbox based on the the type of the current entry at the point. I find it quite useful, so I thought would share it here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen inserting new headings/items into an org subtree, I don\\u0026#39;t like having to remember which command to use based on whether the current entry is a heading (\\u003Ccode\\u003EC-RET\\u003C/code\\u003E), a TODO (\\u003Ccode\\u003EC-S-RET\\u003C/code\\u003E), a list item (\\u003Ccode\\u003EM-x org-insert-item\\u003C/code\\u003E), or a checkbox (\\u003Ccode\\u003EC-u M-x org-insert-item\\u003C/code\\u003E). I also don\\u0026#39;t like that the behavior changes depending on whether the point is at the beginning of the line. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBased on these requirements, I made the function \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E listed below. It is highly opinionated based on my use preferences:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ELines are never split (for the duration of the command, \\u003Ccode\\u003Eorg-M-RET-may-split-line\\u003C/code\\u003E is set to nil). If I really need to split the line, I can either do \\u003Ccode\\u003EC-k sbr-org-insert-dwim C-y\\u003C/code\\u003E or use the built in \\u003Ccode\\u003EM-RET\\u003C/code\\u003E or \\u003Ccode\\u003EM-S-RET\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EThe behavior of \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E is the same regardless of where the point is on the current line, on the asterisks/dash, at the beginning/middle/end of the entry, or even if the point is after ellipses (i.e. the subtree of the current entry is hidden). The builtin commands \\u003Ccode\\u003Eorg-insert-heading\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-insert-item\\u003C/code\\u003E have unspecified behavior when used after ellipses.\\u003C/li\\u003E\\n\\u003Cli\\u003EBy default, the new entry in inserted below the current subtree/item. With the prefix \\u003Ccode\\u003EC-u\\u003C/code\\u003E, the entry is inserted before the current entry and the end of previous subtree (similar to \\u003Ccode\\u003EC-u C-u org-insert-heading\\u003C/code\\u003E). The inserted entry never breaks up a subtree, which in my opinion, would break the abstraction of the subtree hierarchy. In order to break up and edit subtree structure, I use the \\u003Ccode\\u003EM-\\u0026lt;arrow\\u0026gt;\\u003C/code\\u003E commands.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf the point is above the first heading, simply insert a level-1 heading. When used above the first heading, \\u003Ccode\\u003EC-RET\\u003C/code\\u003E (\\u003Ccode\\u003Eorg-insert-heading-respect-content\\u003C/code\\u003E) confusingly converts:\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#8203;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E \\u0026gt; \\u0026lt;\\n* First Heading \\nSomething Something\\nSomething Something\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Einto:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* \\u0026gt;*\\u0026lt; First Heading \\nSomething Something\\nSomething Something\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewhere \\u003Ccode\\u003E\\u0026gt; \\u0026lt;\\u003C/code\\u003E is the point.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince \\u003Ccode\\u003ES-RET\\u003C/code\\u003E is bound to \\u003Ccode\\u003Eorg-table-copy-down\\u003C/code\\u003E, which only works in a table, I made a function \\u003Ccode\\u003Esbr-org-shift-return\\u003C/code\\u003E that enables me to use \\u003Ccode\\u003Esbr-org-insert-dwim\\u003C/code\\u003E outside of tables, while preserving the default behavior.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code is listed below. It\\u0026#39;s a little more complicated then I would like in order for it to handle all the edge cases (e.g., point after ellipses or before the first heading), and also because the org insert functions don\\u0026#39;t behave uniformly. For example \\u003Ccode\\u003Eorg-insert-todo-heading\\u003C/code\\u003E inserts a checkbox if the point is on a list item, but \\u003Ccode\\u003Eorg-insert-heading\\u003C/code\\u003E doesn\\u0026#39;t similarly insert a list item when the point is on a list item (even though its documentation claims that it does). Any suggestions for streamlining this code are welcome!\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun sbr-org-insert-dwim (\\u0026amp;optional arg)\\n \\u0026quot;Insert another entry of the same type as the current\\nentry. For example, if the point is on a list item, then add\\nanother list item of the same type, and if the point is on a\\ncheckbox list item, then add an empty checkbox item. If instead\\nthe point is in a heading, then add another heading. If the point \\nis in a TODO heading, then add another TODO heading (set to the \\nTODO state). \\n\\nBy default, the new entry is inserted below the current\\nsubtree/item. With a \\u0026#39;C-u\\u0026#39; prefix, insert the entry above the\\ncurrent heading/item instead.\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (when (eq major-mode \\u0026#39;org-mode)\\n (let ((org-special-ctrl-a/e t)\\n (below? (unless (equal arg \\u0026#39;(4)) \\u0026#39;(4))))\\n ;; hack to ensure that the point is not after ellipses because\\n ;; that would mess up org-at-item-p etc.\\n (org-beginning-of-line)\\n (cond ((org-at-item-p) ;; at list item or checkbox\\n (let ((org-M-RET-may-split-line nil)\\n (org-enable-sort-checkbox nil))\\n ;; hack to make item be inserted after the current one\\n ;; doesn\\u0026#39;t work if we are on an empty item line\\n (when below?\\n (org-end-of-line)) \\n (org-insert-item (org-at-item-checkbox-p))))\\n ((org-before-first-heading-p) ;; above first heading\\n (org-insert-heading))\\n (t ;; in some kind of heading\\n (org-back-to-heading)\\n (if (org-get-todo-state)\\n ;; at TODO heading\\n (org-insert-todo-heading t below?)\\n ;; at non-TODO heading \\n (org-insert-heading below?)))))))\\n\\n(defun sbr-org-shift-return (\\u0026amp;optional arg)\\n \\u0026quot;If point is at a table, copy the table cell downward (i.e.,\\nthe usual effect of typing S-RET). Otherwise, insert the same\\nkind of heading or item as the current entry containing the\\npoint. \\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (if (org-at-table-p)\\n (org-table-copy-down (prefix-numeric-value arg))\\n (sbr-org-insert-dwim arg)))\\n\\n(bind-keys :map org-mode-map (\\u0026quot;\\u0026lt;S-return\\u0026gt;\\u0026quot; . sbr-org-insert-dwim))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"boyu8r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cottasteel\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/boyu8r/function_for_dwim_insertion_of_new_entries/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557931704.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello! I have a question regarding org-agenda. I just updated org-mode 9.2.3 on Emacs 26.1 and I have a problem with the location of the org-agenda tags. First (before the upgrade) I had them on the right, now automatically they always appear on a new line (in all agenda views). Do you know how I can go back to having tags on the right?\", \"author_fullname\": \"t2_3rz1w0lq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-agenda and tags position\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_boymdt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557959366.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello! I have a question regarding org-agenda. I just updated org-mode 9.2.3 on Emacs 26.1 and I have a problem with the location of the org-agenda tags. First (before the upgrade) I had them on the right, now automatically they always appear on a new line (in all agenda views). Do you know how I can go back to having tags on the right?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"boymdt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cyberl3o\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557930566.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 03 Hyperlinks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5yvk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems - 03 Hyperlinks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5wkl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 39, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 39, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557794720.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5wkl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bo5wkl/orgmode_hidden_gems_03_hyperlinks/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt3/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1557765920.0, \"media\": null, \"is_video\": false}], \"created\": 1557795022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5yvk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bo5wkl\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo5yvk/orgmode_hidden_gems_03_hyperlinks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt3/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557766222.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a main directory of all my org-files. I want to be able to export any part of an org-file to markdown in a a separate `/exports` folder (rather than cluttering up my main directory). \\n\\nI know I can constantly set my export file name property, but that becomes cumbersome. I'd like to be able to just set this up once and be done with it. \\n\\nMost of the guides out there on publishing are about setting up a full blogging system with jeckyll or something similar and it's giving me way more information than I need. \\n\\nI think the main thing I need to do is set up the projects alist? What would that look like for a simple scenario like this? Thanks for any help.\", \"author_fullname\": \"t2_130p93\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help Setting Up a Simple Export Folder\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo5ly1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557793341.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a main directory of all my org-files. I want to be able to export any part of an org-file to markdown in a a separate \\u003Ccode\\u003E/exports\\u003C/code\\u003E folder (rather than cluttering up my main directory). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know I can constantly set my export file name property, but that becomes cumbersome. I\\u0026#39;d like to be able to just set this up once and be done with it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMost of the guides out there on publishing are about setting up a full blogging system with jeckyll or something similar and it\\u0026#39;s giving me way more information than I need. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think the main thing I need to do is set up the projects alist? What would that look like for a simple scenario like this? Thanks for any help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo5ly1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ManiacMcCree\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo5ly1/help_setting_up_a_simple_export_folder/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bo5ly1/help_setting_up_a_simple_export_folder/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557764541.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI would like to link to my emails from Orgmode, but it seems like I'm missing something.\\n\\nI followed the tutorial here:\\n\\n[https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts](https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts)\\n\\n\\u0026#x200B;\\n\\nAnd added this to my .emacs file:\\n\\n\\u0026#x200B;\\n\\n (require 'org)\\n \\n (org-add-link-type \\\"thunderlink\\\" 'org-thunderlink-open)\\n (defun org-thunderlink-open (path)\\n \\\"Opens a specified email in Thunderbird with the help of the add-on\\n ThunderLink.\\\"\\n (start-process \\\"myname\\\" nil \\\"thunderbird\\\" \\\"-thunderlink\\\" (concat\\n \\\"thunderlink:\\\" path)))\\n \\n (provide 'org-thunderlink)\\n\\n\\u0026#x200B;\\n\\nBut it does not seems to work. When I click on a link I have an error message: \\\"No match-create this as a new heading\\\"\\n\\n\\u0026#x200B;\\n\\nDoes anyone managed to get it to work?\\n\\nMany thanks in advance\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Link to email in Thunderbird from orgmode with Thunderlink extension\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bo13sc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1557739179.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557767182.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to link to my emails from Orgmode, but it seems like I\\u0026#39;m missing something.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI followed the tutorial here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts\\\"\\u003Ehttps://github.com/mikehardy/thunderlink#linux-tested-on-ubuntu-1804lts\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd added this to my .emacs file:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;org)\\n\\n(org-add-link-type \\u0026quot;thunderlink\\u0026quot; \\u0026#39;org-thunderlink-open)\\n(defun org-thunderlink-open (path)\\n\\u0026quot;Opens a specified email in Thunderbird with the help of the add-on\\nThunderLink.\\u0026quot;\\n(start-process \\u0026quot;myname\\u0026quot; nil \\u0026quot;thunderbird\\u0026quot; \\u0026quot;-thunderlink\\u0026quot; (concat\\n\\u0026quot;thunderlink:\\u0026quot; path)))\\n\\n(provide \\u0026#39;org-thunderlink)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut it does not seems to work. When I click on a link I have an error message: \\u0026quot;No match-create this as a new heading\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone managed to get it to work?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bo13sc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bo13sc/link_to_email_in_thunderbird_from_orgmode_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bo13sc/link_to_email_in_thunderbird_from_orgmode_with/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557738382.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can I create an elisp function that refiles the current header at point (and all of its children) to the ID `id`, but such that instead of just placing the header directly under `id`, it places it under its subheading of name `subheading` (whether or not `subheading` exists yet)?\\n\\nSo for example if I have\\n\\n```org-mode\\n* A heading\\n```\\n\\nhow can I refile this to\\n\\n```org-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n```\\n\\n\\nso that the end result will look like\\n\\n```org-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n** subheading\\n*** A heading\\n```\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Refiling header to a new sub-header?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bni3ll\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557643814.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I create an elisp function that refiles the current header at point (and all of its children) to the ID \\u003Ccode\\u003Eid\\u003C/code\\u003E, but such that instead of just placing the header directly under \\u003Ccode\\u003Eid\\u003C/code\\u003E, it places it under its subheading of name \\u003Ccode\\u003Esubheading\\u003C/code\\u003E (whether or not \\u003Ccode\\u003Esubheading\\u003C/code\\u003E exists yet)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for example if I have\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* A heading\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ehow can I refile this to\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eso that the end result will look like\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-mode\\n* My target\\n:PROPERTIES:\\n:ID: id\\n:END:\\n** subheading\\n*** A heading\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bni3ll\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bni3ll/refiling_header_to_a_new_subheader/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bni3ll/refiling_header_to_a_new_subheader/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557615014.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"**Question:** How can I retrieve, over a set of files `S` (in particular: over my agenda files + their archive files) the total time clocked (as the return value of an elisp function; not as a clock table)? So for example, if I have:\\n\\n```org-mode\\n* SATISFICED Header1\\n CLOSED: [2019-05-01 Wed 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-01 Sat 18:10]--[2019-05-01 Sat 18:30] =\\u003E 0:20\\n :END:\\n\\n# File2\\n* SATISFICED Header2\\n CLOSED: [2019-05-11 Sat 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:11] =\\u003E 0:01\\n :END:\\n* SATISFICED Header3\\n CLOSED: [2019-05-11 Sat 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:20] =\\u003E 0:10\\n :END:\\n```\\n\\nI'd like to run a function like `(sum--all-time-from \\\"[2019-05-10]\\\" \\\"[2019-05-12]\\\")` to get as answer ~0:11~.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Retrieve the total time CLOCKED over a given interval\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnhu7v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557642259.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EQuestion:\\u003C/strong\\u003E How can I retrieve, over a set of files \\u003Ccode\\u003ES\\u003C/code\\u003E (in particular: over my agenda files + their archive files) the total time clocked (as the return value of an elisp function; not as a clock table)? So for example, if I have:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```org-mode\\n* SATISFICED Header1\\n CLOSED: [2019-05-01 Wed 18:13]\\n :LOGBOOK:\\n CLOCK: [2019-05-01 Sat 18:10]--[2019-05-01 Sat 18:30] =\\u0026gt; 0:20\\n :END:\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EFile2\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESATISFICED Header2\\nCLOSED: [2019-05-11 Sat 18:13]\\n:LOGBOOK:\\nCLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:11] =\\u0026gt; 0:01\\n:END:\\u003C/li\\u003E\\n\\u003Cli\\u003ESATISFICED Header3\\nCLOSED: [2019-05-11 Sat 18:13]\\n:LOGBOOK:\\nCLOCK: [2019-05-11 Sat 18:10]--[2019-05-11 Sat 18:20] =\\u0026gt; 0:10\\n:END:\\n```\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to run a function like \\u003Ccode\\u003E(sum--all-time-from \\u0026quot;[2019-05-10]\\u0026quot; \\u0026quot;[2019-05-12]\\u0026quot;)\\u003C/code\\u003E to get as answer ~0:11~.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnhu7v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bnhu7v/retrieve_the_total_time_clocked_over_a_given/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bnhu7v/retrieve_the_total_time_clocked_over_a_given/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557613459.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems 2 - Tables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnbtfg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 24, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 24, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems 2 - Tables\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bnbdye\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 84, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 84, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557605382.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnbdye\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 24, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bnbdye/orgmode_hidden_gems_2_tables/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1557576582.0, \"media\": null, \"is_video\": false}], \"created\": 1557608502.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bnbtfg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bnbdye\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bnbtfg/orgmode_hidden_gems_2_tables/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt2/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557579702.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to get started with ox-beamer.\\n\\nI use the basic config:\\n\\n (require 'ox-latex)\\n (add-to-list 'org-latex-classes\\n '(\\\"beamer\\\"\\n \\\"\\\\\\\\documentclass\\\\[presentation\\\\]\\\\{beamer\\\\}\\\"\\n (\\\"\\\\\\\\section\\\\{%s\\\\}\\\" . \\\"\\\\\\\\section*\\\\{%s\\\\}\\\")\\n (\\\"\\\\\\\\subsection\\\\{%s\\\\}\\\" . \\\"\\\\\\\\subsection*\\\\{%s\\\\}\\\")\\n (\\\"\\\\\\\\subsubsection\\\\{%s\\\\}\\\" . \\\"\\\\\\\\subsubsection*\\\\{%s\\\\}\\\")))\\n\\n\\u0026#x200B;\\n\\nFirst, I want to reproduce [https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org](https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org)\\n\\nBut even on this basic example, I fail to get the correct sectioning into frames.\\n\\n[https://www.scribd.com/document/409442757/Beamer-Example](https://www.scribd.com/document/409442757/Beamer-Example)\\n\\n\\u0026#x200B;\\n\\nAny idea what's wrong?\", \"author_fullname\": \"t2_2b6wlz4w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Issue with ox-beamer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmy4qe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557522795.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to get started with ox-beamer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use the basic config:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;ox-latex)\\n(add-to-list \\u0026#39;org-latex-classes\\n \\u0026#39;(\\u0026quot;beamer\\u0026quot;\\n \\u0026quot;\\\\\\\\documentclass\\\\[presentation\\\\]\\\\{beamer\\\\}\\u0026quot;\\n (\\u0026quot;\\\\\\\\section\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\section*\\\\{%s\\\\}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsection\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\subsection*\\\\{%s\\\\}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsubsection\\\\{%s\\\\}\\u0026quot; . \\u0026quot;\\\\\\\\subsubsection*\\\\{%s\\\\}\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, I want to reproduce \\u003Ca href=\\\"https://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org\\\"\\u003Ehttps://github.com/dfeich/org-babel-examples/blob/master/beamer/beamer-example.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut even on this basic example, I fail to get the correct sectioning into frames.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.scribd.com/document/409442757/Beamer-Example\\\"\\u003Ehttps://www.scribd.com/document/409442757/Beamer-Example\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny idea what\\u0026#39;s wrong?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmy4qe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hagetarou\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmy4qe/issue_with_oxbeamer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bmy4qe/issue_with_oxbeamer/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557493995.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 10, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmxvlv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557521353.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmxvlv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmxvlv/weekly_rorgmode_open_discussion_may_10_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bmxvlv/weekly_rorgmode_open_discussion_may_10_2019/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557492553.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmxv6e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 45, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 45, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_cpi6z95\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Hidden Gems\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bmwec1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 139, \"total_awards_received\": 1, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 139, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {\"gid_1\": 1}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557511141.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"is_enabled\": true, \"count\": 1, \"subreddit_id\": null, \"description\": \"Silver Award\", \"coin_reward\": 0, \"icon_width\": 512, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/silver_512.png\", \"days_of_premium\": 0, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/silver_128.png\", \"width\": 128, \"height\": 128}], \"days_of_drip_extension\": 0, \"award_type\": \"global\", \"coin_price\": 100, \"id\": \"gid_1\", \"name\": \"Silver\"}], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmwec1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 1, \"num_comments\": 21, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bmwec1/orgmode_hidden_gems/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt1/\", \"subreddit_subscribers\": 30359, \"created_utc\": 1557482341.0, \"media\": null, \"is_video\": false}], \"created\": 1557521280.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"yiufung.net\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bmxv6e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c17g\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bmwec1\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bmxv6e/orgmode_hidden_gems/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://yiufung.net/post/org-mode-hidden-gems-pt1/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557492480.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\n\\u0026#x200B;\\n\\nI have an org-file with several code blocks. Is there any way to run all of them at once instead of having to access each one individually and run c-c to make them execute?\", \"author_fullname\": \"t2_cc87w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Execute all code blocks at once\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bm856i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557365469.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have an org-file with several code blocks. Is there any way to run all of them at once instead of having to access each one individually and run c-c to make them execute?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bm856i\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eljuman\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bm856i/execute_all_code_blocks_at_once/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bm856i/execute_all_code_blocks_at_once/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557336669.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I've been using org mode for task management for several months. I'm trying to transition into using it for note taking but I've found a recurrent error with the tables in org mode.\\n\\nIf I have a table with a column set to a short width, and then increase the size of the column to a width that is still shorter than the content of the longest cell in the column I get an error as shown below.\\n\\n\\u0026#x200B;\\n\\nI'm using Windows 10; GNU Emacs 26.1 (build 1, x86\\\\_64-w64-mingw32) of 2018-05-30; and Org mode version 9.1.9 (release\\\\_9.1.9-65-g5e4542 @ c:/Users/mccombsp/emacs/share/emacs/26.1/lisp/org/)\\n\\n\\u0026#x200B;\\n\\nEDIT:\\n\\nI duplicated the error on MacOs 10.14.4; GNU Emacs 26.1 (build 1, x86\\\\_64-apple-darwin14.5.0, NS appkit-1348.17 Version 10.10.5 (Build 14F2511)) of 2018-05-30; and Org mode version 9.1.9 (release\\\\_9.1.9-65-g5e4542 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)\\n\\n\\u0026#x200B;\\n\\n | short | short | long text that goes on and on and on and on |\\n | short | short | not so long text that only goes on |\\n | short | short | short |\\n | | | \\u003C5\\u003E |\\n \\n The above table works fine.\\n \\n | short | short | long text that goes on and on and on and on |\\n | short | short | not so long text that only goes on |\\n | short | short | short |\\n | | | \\u003C10\\u003E |\\n \\n The above table will work but only if I remove the width entirely first.\\n\\nEither table above table works fine. But if I change the the last cell from \\u003C5\\u003E to \\u003C10\\u003E I get the following emacs lisp error, and it doesn't adjust the table.\\n\\n org-table-next-field: Args out of range: #(\\\"long text that goes on and on and on and on\\\" 0 3 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 3 4 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 4 5 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table) 5 9 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 9 14 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 14 19 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 19 22 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 22 26 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 26 29 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 29 33 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 33 36 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 36 40 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth) 40 43 (help-echo \\\"Clipped table field, use `\\\\\\\\[org-table-edit-field]' to edit. Full value is:\\n long text that goes on and on and on and on\\\" fontified t face org-table invisible org-cwidth)), 0, 44\", \"author_fullname\": \"t2_3kfzu0nx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Error on increasing width of table columns\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_blz7uj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1557279529.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557308015.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been using org mode for task management for several months. I\\u0026#39;m trying to transition into using it for note taking but I\\u0026#39;ve found a recurrent error with the tables in org mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I have a table with a column set to a short width, and then increase the size of the column to a width that is still shorter than the content of the longest cell in the column I get an error as shown below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using Windows 10; GNU Emacs 26.1 (build 1, x86_64-w64-mingw32) of 2018-05-30; and Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ c:/Users/mccombsp/emacs/share/emacs/26.1/lisp/org/)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI duplicated the error on MacOs 10.14.4; GNU Emacs 26.1 (build 1, x86_64-apple-darwin14.5.0, NS appkit-1348.17 Version 10.10.5 (Build 14F2511)) of 2018-05-30; and Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E| short | short | long text that goes on and on and on and on |\\n| short | short | not so long text that only goes on |\\n| short | short | short |\\n| | | \\u0026lt;5\\u0026gt; |\\n\\nThe above table works fine.\\n\\n| short | short | long text that goes on and on and on and on |\\n| short | short | not so long text that only goes on |\\n| short | short | short |\\n| | | \\u0026lt;10\\u0026gt; |\\n\\nThe above table will work but only if I remove the width entirely first.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EEither table above table works fine. But if I change the the last cell from \\u0026lt;5\\u0026gt; to \\u0026lt;10\\u0026gt; I get the following emacs lisp error, and it doesn\\u0026#39;t adjust the table.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eorg-table-next-field: Args out of range: #(\\u0026quot;long text that goes on and on and on and on\\u0026quot; 0 3 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 3 4 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 4 5 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table) 5 9 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 9 14 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 14 19 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 19 22 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 22 26 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 26 29 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 29 33 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 33 36 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 36 40 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth) 40 43 (help-echo \\u0026quot;Clipped table field, use `\\\\\\\\[org-table-edit-field]\\u0026#39; to edit. Full value is:\\nlong text that goes on and on and on and on\\u0026quot; fontified t face org-table invisible org-cwidth)), 0, 44\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blz7uj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paulmccombs\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/blz7uj/error_on_increasing_width_of_table_columns/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/blz7uj/error_on_increasing_width_of_table_columns/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557279215.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3m2tic11\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Run C-c C-c fixups everywhere in a file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_blvp48\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1557289465.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"blvp48\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"telotortium\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/blvp48/run_cc_cc_fixups_everywhere_in_a_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/blvk82/run_cc_cc_fixups_everywhere_in_a_file/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557260665.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"https://gitlab.com/kisaragi-hiu/org-msr\\n\\nWhile trying to remember vocabulary words using Org, I thought it would be interesting if I use todo keywords and add schedules based on them to implement spaced repetition.\\n\\nI haven't used it for too long^[1] , but I made it its own package since there's too much to just stuff in my init. If this approach works, I hope this can serve as some sort of reference on how this can be done as well.\\n\\nThe package provides a function to update schedule based on the todo keyword, according to an alist (`org-msr-keyword-frequency-alist`). It also provides a minor mode that runs the function after `org-todo`).\\n\\nPlease check it out!\\n\\n[1]\\\\: The aforementioned org file is 6 days old currently (2019-05-05).\", \"author_fullname\": \"t2_10cocd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-msr: Minimal Spaced Repetition with todo keywords\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkxsd1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"elisp library\", \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1557092245.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://gitlab.com/kisaragi-hiu/org-msr\\\"\\u003Ehttps://gitlab.com/kisaragi-hiu/org-msr\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile trying to remember vocabulary words using Org, I thought it would be interesting if I use todo keywords and add schedules based on them to implement spaced repetition.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t used it for too long\\u003Csup\\u003E[1]\\u003C/sup\\u003E , but I made it its own package since there\\u0026#39;s too much to just stuff in my init. If this approach works, I hope this can serve as some sort of reference on how this can be done as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe package provides a function to update schedule based on the todo keyword, according to an alist (\\u003Ccode\\u003Eorg-msr-keyword-frequency-alist\\u003C/code\\u003E). It also provides a minor mode that runs the function after \\u003Ccode\\u003Eorg-todo\\u003C/code\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease check it out!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[1]: The aforementioned org file is 6 days old currently (2019-05-05).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"698f39e4-c2ff-11e8-9e96-0e341354a6a2\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkxsd1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"flyin1501\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bkxsd1/orgmsr_minimal_spaced_repetition_with_todo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bkxsd1/orgmsr_minimal_spaced_repetition_with_todo/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1557063445.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode with Spacemacs: The Absolute Minimum\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkfckb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"article\", \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode with Spacemacs: The Absolute Minimum\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bkfare\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 53, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Org mode and Spacemacs: The Absolute Minimum you need to know\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Jack of Some\", \"thumbnail_height\": 360, \"thumbnail_url\": \"https://i.ytimg.com/vi/S4f-GUxu3CY/hqdefault.jpg\", \"type\": \"video\", \"provider_name\": \"YouTube\", \"author_url\": \"https://www.youtube.com/channel/UCe6ABcJkH_Gso9HJOt4x9fg\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bkfare\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 53, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556957136.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkfare\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jack-of-some\", \"num_crossposts\": 4, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bkfare/org_mode_with_spacemacs_the_absolute_minimum/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/S4f-GUxu3CY\", \"subreddit_subscribers\": 30359, \"created_utc\": 1556928336.0, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Org mode and Spacemacs: The Absolute Minimum you need to know\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/S4f-GUxu3CY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Jack of Some\", \"thumbnail_height\": 360, \"thumbnail_url\": \"https://i.ytimg.com/vi/S4f-GUxu3CY/hqdefault.jpg\", \"type\": \"video\", \"provider_name\": \"YouTube\", \"author_url\": \"https://www.youtube.com/channel/UCe6ABcJkH_Gso9HJOt4x9fg\"}, \"type\": \"youtube.com\"}, \"is_video\": false}], \"created\": 1556957464.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c5c6b84c-c2fd-11e8-a9b1-0ea723e3b826\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bkfckb\", \"is_robot_indexable\": true, \"stickied\": false, \"author\": \"jack-of-some\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bkfare\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bkfckb/org_mode_with_spacemacs_the_absolute_minimum/\", \"parent_whitelist_status\": null, \"report_reasons\": null, \"url\": \"https://youtu.be/S4f-GUxu3CY\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556928664.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - May 03, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bk83wf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556916567.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bk83wf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bk83wf/weekly_rorgmode_open_discussion_may_03_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bk83wf/weekly_rorgmode_open_discussion_may_03_2019/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556887767.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Does anyone have experience trying to share Emacs/org-mode with outsiders? \\n\\nI do realize how easily it is for me to sound like an evangelist when it comes to expressing my thoughts about the utility of a \\\"second brain\\\" on your computer, but I have been wondering on what aspects of the org-mode experience are most appealing to people who have mild interests in becoming more productive.\\n\\nPersonally, I tend to default to the \\\"don't ask don't tell\\\" approach when it comes to my deeper interests, but there seems to be something about this integration with technology that I wish I was taught about in school and thus, I feel a need to inform others. \\n\\nAll of this is not to forget that certain systems aren't suitable for all people, but I'm curious to know if anyone has a practiced \\\"elevator pitch\\\" for Emacs and org-mode? How do you go about sharing this, if you even do it at all? \\n\\nThanks\", \"author_fullname\": \"t2_w32dym0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sharing org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjyhvh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556851291.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone have experience trying to share Emacs/org-mode with outsiders? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI do realize how easily it is for me to sound like an evangelist when it comes to expressing my thoughts about the utility of a \\u0026quot;second brain\\u0026quot; on your computer, but I have been wondering on what aspects of the org-mode experience are most appealing to people who have mild interests in becoming more productive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPersonally, I tend to default to the \\u0026quot;don\\u0026#39;t ask don\\u0026#39;t tell\\u0026quot; approach when it comes to my deeper interests, but there seems to be something about this integration with technology that I wish I was taught about in school and thus, I feel a need to inform others. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll of this is not to forget that certain systems aren\\u0026#39;t suitable for all people, but I\\u0026#39;m curious to know if anyone has a practiced \\u0026quot;elevator pitch\\u0026quot; for Emacs and org-mode? How do you go about sharing this, if you even do it at all? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjyhvh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"swarmalator\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjyhvh/sharing_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjyhvh/sharing_orgmode/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556822491.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, \\n\\n\\u0026#x200B;\\n\\nI'm using orgmode + komascript to generate pdf from org-mode. It seems very handy.\\n\\nHowever, I would like to be able to store some \\\"profiles\\\" and then include it in my letter.\\n\\nExample: \\nA profile for personal letters which would include my personal address\\n\\nA profile for professional letters, which would include my office address\\n\\nIt seems like it is possible with LCO files but the documentation is not very clear about that.\\n\\n\\u0026#x200B;\\n\\nDoes anyone have experience with that?\\n\\nMany thanks in advance\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Managing different letter Template with Org mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjv50e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556833647.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using orgmode + komascript to generate pdf from org-mode. It seems very handy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I would like to be able to store some \\u0026quot;profiles\\u0026quot; and then include it in my letter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample:\\u003Cbr/\\u003E\\nA profile for personal letters which would include my personal address\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA profile for professional letters, which would include my office address\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems like it is possible with LCO files but the documentation is not very clear about that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have experience with that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjv50e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjv50e/managing_different_letter_template_with_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjv50e/managing_different_letter_template_with_org_mode/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556804847.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Inspired by this [StackExchange post](https://superuser.com/questions/567916/org-mode-command-to-create-new-file-from-subtree/568300#568300), I made a function that exports the current subtree to a file and replaces it with a link to that file. More specifically it does the following:\\n\\n1. Copy the subtree to a file whose filename is the subtree title\\n2. Replace the subtree with a link to the newly created file\\n3. In the file, promote all direct children of the subtree node to be level-1 headings\\n4. In the file, convert the original subtree title to be a `#+TITLE` parameter\\n\\nFor my work, I use a date-tree file to store my work notes. I use this function to move large subtrees of notes to their own dedicated file in order to keep the work notes file from growing too large. It seems to work well enough, but I feel that the code I have written is overly complicated. In particular, the mechanism I use to delete everything but the subtree headline is very similar to the mechanism I use to promote of the subtree children. Is there a simpler, more streamlined way to implement this function? The code is listed below:\\n\\n (defun sbr-org-file-from-subtree (\\u0026optional name)\\n \\\"Take the current subtree and create a new file from\\n it. Replace the current subtree with its main heading (i.e.,\\n delete all of its childen), and make the heading into a link\\n to the newly created file,\\n \\n In the new file, promote all direct children of the original\\n subtree to be level 1-headings, and transform the original\\n heading into the '#+TITLE' parameter.\\n \\n If called with the universal argument, prompt for new filename,\\n otherwise use the subtree title.\\\"\\n (interactive \\\"P\\\")\\n (org-back-to-heading)\\n (let ((filename (cond\\n (current-prefix-arg\\n (expand-file-name\\n (read-file-name \\\"New file name: \\\")))\\n (t\\n (concat\\n (expand-file-name\\n (org-element-property :title\\n (org-element-at-point))\\n default-directory)\\n \\\".org\\\")))))\\n ;; Copy current subtree into clipboard \\n (org-copy-subtree)\\n \\n ;; Delete everything but the headline\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (call-interactively 'delete-region)\\n (org-previous-visible-heading 1)\\n \\n ;; Mark the current headline text\\n (org-end-of-line)\\n (call-interactively 'set-mark-command)\\n (org-beginning-of-line)\\n \\n ;; Convert headline to a link of the to-be-created file\\n (org-insert-link nil filename)\\n \\n ;; Create file for subtree\\n (with-temp-file filename\\n ;; Paste in the subtree\\n (org-mode)\\n (org-paste-subtree)\\n ;; Promote all children, original headline is at level \\\"zero\\\"\\n (sbr-org-promote-subtree-to-zero)\\n (insert \\\"#+TITLE: \\\"))))\\n \\n (defun sbr-org-promote-subtree-to-zero ()\\n \\\"Promote the entire subtree. If the root heading is at level 1,\\n 'promote' it to level 0 by removing the heading.\\\"\\n (interactive)\\n (if (= (org-current-level) 1)\\n (progn\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (org-do-promote)\\n (org-previous-visible-heading 1)\\n (org-mark-subtree)\\n (org-toggle-heading))\\n (org-promote-subtree)))\", \"author_fullname\": \"t2_7nfrv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cleaner way to export subtree to file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjulhb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556830403.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EInspired by this \\u003Ca href=\\\"https://superuser.com/questions/567916/org-mode-command-to-create-new-file-from-subtree/568300#568300\\\"\\u003EStackExchange post\\u003C/a\\u003E, I made a function that exports the current subtree to a file and replaces it with a link to that file. More specifically it does the following:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ECopy the subtree to a file whose filename is the subtree title\\u003C/li\\u003E\\n\\u003Cli\\u003EReplace the subtree with a link to the newly created file\\u003C/li\\u003E\\n\\u003Cli\\u003EIn the file, promote all direct children of the subtree node to be level-1 headings\\u003C/li\\u003E\\n\\u003Cli\\u003EIn the file, convert the original subtree title to be a \\u003Ccode\\u003E#+TITLE\\u003C/code\\u003E parameter\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EFor my work, I use a date-tree file to store my work notes. I use this function to move large subtrees of notes to their own dedicated file in order to keep the work notes file from growing too large. It seems to work well enough, but I feel that the code I have written is overly complicated. In particular, the mechanism I use to delete everything but the subtree headline is very similar to the mechanism I use to promote of the subtree children. Is there a simpler, more streamlined way to implement this function? The code is listed below:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun sbr-org-file-from-subtree (\\u0026amp;optional name)\\n \\u0026quot;Take the current subtree and create a new file from\\n it. Replace the current subtree with its main heading (i.e.,\\n delete all of its childen), and make the heading into a link\\n to the newly created file,\\n\\nIn the new file, promote all direct children of the original\\n subtree to be level 1-headings, and transform the original\\n heading into the \\u0026#39;#+TITLE\\u0026#39; parameter.\\n\\nIf called with the universal argument, prompt for new filename,\\notherwise use the subtree title.\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (org-back-to-heading)\\n (let ((filename (cond\\n (current-prefix-arg\\n (expand-file-name\\n (read-file-name \\u0026quot;New file name: \\u0026quot;)))\\n (t\\n (concat\\n (expand-file-name\\n (org-element-property :title\\n (org-element-at-point))\\n default-directory)\\n \\u0026quot;.org\\u0026quot;)))))\\n ;; Copy current subtree into clipboard \\n (org-copy-subtree)\\n\\n ;; Delete everything but the headline\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (call-interactively \\u0026#39;delete-region)\\n (org-previous-visible-heading 1)\\n\\n ;; Mark the current headline text\\n (org-end-of-line)\\n (call-interactively \\u0026#39;set-mark-command)\\n (org-beginning-of-line)\\n\\n ;; Convert headline to a link of the to-be-created file\\n (org-insert-link nil filename)\\n\\n ;; Create file for subtree\\n (with-temp-file filename\\n ;; Paste in the subtree\\n (org-mode)\\n (org-paste-subtree)\\n ;; Promote all children, original headline is at level \\u0026quot;zero\\u0026quot;\\n (sbr-org-promote-subtree-to-zero)\\n (insert \\u0026quot;#+TITLE: \\u0026quot;))))\\n\\n(defun sbr-org-promote-subtree-to-zero ()\\n \\u0026quot;Promote the entire subtree. If the root heading is at level 1,\\n\\u0026#39;promote\\u0026#39; it to level 0 by removing the heading.\\u0026quot;\\n (interactive)\\n (if (= (org-current-level) 1)\\n (progn\\n (org-mark-subtree)\\n (org-next-visible-heading 1)\\n (org-do-promote)\\n (org-previous-visible-heading 1)\\n (org-mark-subtree)\\n (org-toggle-heading))\\n (org-promote-subtree)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjulhb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cottasteel\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjulhb/cleaner_way_to_export_subtree_to_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bjulhb/cleaner_way_to_export_subtree_to_file/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556801603.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_esdtt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to jump to a heading in a date tree\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bjb692\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556700958.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"emacs.stackexchange.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bjb692\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"plotnick\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bjb692/how_to_jump_to_a_heading_in_a_date_tree/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://emacs.stackexchange.com/questions/50253/how-to-jump-to-a-heading-in-a-date-tree\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556672158.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How to export code blocks so that they will be side-by-side in exported HTML (like in table)? \\n\\nFor example:\\n\\n\\u0026#x200B;\\n\\n[Something like this](https://i.redd.it/g2njbopc0cv21.png)\", \"author_fullname\": \"t2_11whf3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Export code block side by side\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"g2njbopc0cv21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 73, \"x\": 250, \"u\": \"https://i.redd.it/g2njbopc0cv21.png\"}, \"m\": \"image/png\", \"id\": \"g2njbopc0cv21\"}}, \"name\": \"t3_bizbk6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556628452.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow to export code blocks so that they will be side-by-side in exported HTML (like in table)? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/g2njbopc0cv21.png\\\"\\u003ESomething like this\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bizbk6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lkmokadam\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bizbk6/export_code_block_side_by_side/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bizbk6/export_code_block_side_by_side/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556599652.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \" Create a file called issue tracker.org\\n\\nPut these in-buffer settings at the top of the file:\\n\\n #+AUTHOR: Your Name\\n #+STARTUP:indent\\n #+OPTIONS: num:nil toc:nil\\n #+TODO: ONCE(o) EPISODIC ONGOING POTENTIAL | RESOLVED IMPROVED UNRESOLVABLE TOLERATED INACTIVE\\n #+TODO: MALFUNCTION DAMAGE | REPAIRED REPLACED DISCARDED\\n #+TITLE:ISSUE TRACKER\\n \\n\\nAdd a capture template to your .emacs, e.g.:\\n\\n (\\\"i\\\" \\\"issue\\\" entry\\n (file+olp+datetree \\\"~ /org/issue tracker.org\\\")\\n \\\"* ONCE %?\\\" :time-prompt t)\\n\\n\\u0026#x200B;\\n\\nOutput appears in a datetree. Track issue statuses using TODO states. Use a sparse tree if you want to filter the log by status, date, or text string.\\n\\nExample output:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/fowvur8ow7v21.png\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using org-mode as a quick-and-dirty issue tracker.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"fowvur8ow7v21\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 492, \"x\": 968, \"u\": \"https://i.redd.it/fowvur8ow7v21.png\"}, \"m\": \"image/png\", \"id\": \"fowvur8ow7v21\"}}, \"name\": \"t3_biqhjc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556578999.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECreate a file called issue tracker.org\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPut these in-buffer settings at the top of the file:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+AUTHOR: Your Name\\n#+STARTUP:indent\\n#+OPTIONS: num:nil toc:nil\\n#+TODO: ONCE(o) EPISODIC ONGOING POTENTIAL | RESOLVED IMPROVED UNRESOLVABLE TOLERATED INACTIVE\\n#+TODO: MALFUNCTION DAMAGE | REPAIRED REPLACED DISCARDED\\n#+TITLE:ISSUE TRACKER\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAdd a capture template to your .emacs, e.g.:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;i\\u0026quot; \\u0026quot;issue\\u0026quot; entry\\n (file+olp+datetree \\u0026quot;~ /org/issue tracker.org\\u0026quot;)\\n \\u0026quot;* ONCE %?\\u0026quot; :time-prompt t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOutput appears in a datetree. Track issue statuses using TODO states. Use a sparse tree if you want to filter the log by status, date, or text string.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample output:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/fowvur8ow7v21.png\\\"\\u003Ehttps://i.redd.it/fowvur8ow7v21.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"biqhjc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/biqhjc/using_orgmode_as_a_quickanddirty_issue_tracker/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/biqhjc/using_orgmode_as_a_quickanddirty_issue_tracker/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556550199.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I recently came across org-journal. Seems pretty sweet, but I'm overall more happy with using org-capture to log to a datetree. But, one thing I really liked about org-journal was that it was easy to set each entry to have a HH:MM timestamp as its headline title on creation.\\n\\nI've got something like\\n\\n (\\\"l\\\" \\\"Log\\\" entry (file+datetree \\\"log.org\\\") \\\"* %?\\n \\n %i\\\" :empty-lines 1 :clock-resume t)\\n\\nas my capture template. I'd love to have it the headline part be like \\\\`:\\\\* %H:%M %?\\\\`. But that doesn't work.\\n\\nIs there any way to get what I am after?\", \"author_fullname\": \"t2_mfiiw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"timestamp in capture template?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bim468\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556546700.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recently came across org-journal. Seems pretty sweet, but I\\u0026#39;m overall more happy with using org-capture to log to a datetree. But, one thing I really liked about org-journal was that it was easy to set each entry to have a HH:MM timestamp as its headline title on creation.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve got something like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(\\u0026quot;l\\u0026quot; \\u0026quot;Log\\u0026quot; entry (file+datetree \\u0026quot;log.org\\u0026quot;) \\u0026quot;* %?\\n\\n %i\\u0026quot; :empty-lines 1 :clock-resume t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eas my capture template. I\\u0026#39;d love to have it the headline part be like `:* %H:%M %?`. But that doesn\\u0026#39;t work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way to get what I am after?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bim468\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PhilosopherAboutTown\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bim468/timestamp_in_capture_template/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bim468/timestamp_in_capture_template/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556517900.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi I'm considering going to emacs org mode for work and school. One pretty critical question for me is: \\nI use Anki for studying. I take my notes and put them on Anki and I can walk around and get some studying done. Is there any similar thing with org-drill? So that I could sync flash cards to phone and study at any convenient time? Thanks\", \"author_fullname\": \"t2_21immxp8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Mobile drill\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bi3va7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556429497.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi I\\u0026#39;m considering going to emacs org mode for work and school. One pretty critical question for me is:\\u003Cbr/\\u003E\\nI use Anki for studying. I take my notes and put them on Anki and I can walk around and get some studying done. Is there any similar thing with org-drill? So that I could sync flash cards to phone and study at any convenient time? Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bi3va7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"a_person_anon\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bi3va7/mobile_drill/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bi3va7/mobile_drill/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556400697.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi. Is it possible to define a project as:\\n\\n1. a headline that is not a todo item, and\\n2. that has at least one direct child todo item (one level below)\\n\\nThis would allow nested projects. I want to add this to `org-agenda-custom-commands`, but am lacking the necessary elisp skills. I want to avoid having to use a `PROJECT` todo keyword for readability, nor a `PROJECT` tag, which demands diligence.\\n\\nBonus question: is it possible to additionally display a the direct parent project of sub-projects in the agenda view?\", \"author_fullname\": \"t2_tihct\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Project as a Headline that has direct Todo Item Children\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhwy7b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556381209.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi. Is it possible to define a project as:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Ea headline that is not a todo item, and\\u003C/li\\u003E\\n\\u003Cli\\u003Ethat has at least one direct child todo item (one level below)\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis would allow nested projects. I want to add this to \\u003Ccode\\u003Eorg-agenda-custom-commands\\u003C/code\\u003E, but am lacking the necessary elisp skills. I want to avoid having to use a \\u003Ccode\\u003EPROJECT\\u003C/code\\u003E todo keyword for readability, nor a \\u003Ccode\\u003EPROJECT\\u003C/code\\u003E tag, which demands diligence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBonus question: is it possible to additionally display a the direct parent project of sub-projects in the agenda view?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhwy7b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nopedoesntwork\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhwy7b/project_as_a_headline_that_has_direct_todo_item/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhwy7b/project_as_a_headline_that_has_direct_todo_item/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556352409.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - April 26, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhlvza\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556311753.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhlvza\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhlvza/weekly_rorgmode_open_discussion_april_26_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhlvza/weekly_rorgmode_open_discussion_april_26_2019/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556282953.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to recreate the functionality of an old Mac app I saw over a decade ago that had the concept of \\\"variable time repeating tasks\\\".\\n\\nIn other words, do \\\"water the plants\\\" every 4 to 8 days. It looks like I can sort of do this with:\\n\\n EDIT: \\u003C2019-04-26 Fri .+8d -4d\\u003E\\n\\nBut does anyone know of a better way to accomplish this?\\n\\nIdeally I'd be able to see how often I watered the plants last month, showing a timeline with marks every time I complete the task. So:\\n\\n March: 1st, 5th, 12th, 20th, 24th, 29th\\n\\nTo see how lax I was, or if I was doing something too frequently.\\n\\nSorry, weird problem/request, and I'm pretty terrible at describing it.\", \"author_fullname\": \"t2_2al88q3x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Repeating tasks, do X every a to b days?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bhczz6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1556222407.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556250552.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to recreate the functionality of an old Mac app I saw over a decade ago that had the concept of \\u0026quot;variable time repeating tasks\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn other words, do \\u0026quot;water the plants\\u0026quot; every 4 to 8 days. It looks like I can sort of do this with:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EEDIT: \\u0026lt;2019-04-26 Fri .+8d -4d\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBut does anyone know of a better way to accomplish this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIdeally I\\u0026#39;d be able to see how often I watered the plants last month, showing a timeline with marks every time I complete the task. So:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EMarch: 1st, 5th, 12th, 20th, 24th, 29th\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ETo see how lax I was, or if I was doing something too frequently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESorry, weird problem/request, and I\\u0026#39;m pretty terrible at describing it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bhczz6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vale_fallacia\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bhczz6/repeating_tasks_do_x_every_a_to_b_days/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bhczz6/repeating_tasks_do_x_every_a_to_b_days/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556221752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_64sbo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Unexpected behavior in org-mode when dealing with paragraphs, for example \\\"vip\\\" (visual inner paragraph) and [ and ] don't work as they should. Help?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bh9imi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1728, \"scrubber_media_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_96\", \"dash_url\": \"https://v.redd.it/kj55kbq3bfu21/DASHPlaylist.mpd\", \"duration\": 27, \"hls_url\": \"https://v.redd.it/kj55kbq3bfu21/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1556232582.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bh9imi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Rainymood_XI\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bh9imi/unexpected_behavior_in_orgmode_when_dealing_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/kj55kbq3bfu21\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556203782.0, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1728, \"scrubber_media_url\": \"https://v.redd.it/kj55kbq3bfu21/DASH_96\", \"dash_url\": \"https://v.redd.it/kj55kbq3bfu21/DASHPlaylist.mpd\", \"duration\": 27, \"hls_url\": \"https://v.redd.it/kj55kbq3bfu21/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi,\\n\\nI want to filter the current agenda using elisp commands mapped to a shortcut. I know that I could create separate agenda for different filters but this time, I'd prefer to have an arbitrary agenda and filter it.\\n\\nIn my case, I'd like to show only higest priority tasks: `[#A]`\\n\\nI could not find a specific command for filtering according to priority. However, interactively this can be achieved using `org-agenda-filter-by-regexp` (mapped to `=`) and then entering the regular expression `.*\\\\[#A\\\\].*`.\\n\\nI tried to debug `org-agenda-filter-by-regexp` and then `org-agenda-filter-apply` in order to find out how the elisp command including the parameters has to look like when I want to use it in a DIY-function.\\n\\nWhen I apply `(org-agenda-filter-apply \\\"+.*\\\\\\\\[#A\\\\\\\\].*\\\" \\\"+\\\" nil)` in the agenda (via `M-:`), I only get `nil` and nothing is changed. This clearly is wrong somehow.\\n\\nWhen debugging my elisp command and comparing to the interactive invocation, the regex as well as the second parameter do not match. This is where my elisp knowledge ends so far.\\n\\nAre you able to help me finding out what the magic spell is to *activate* the filter via an elisp command?\\n\\nThanks!\\n\\nPS: What I could find out myself is the command to disable the filter: `(org-agenda-filter-show-all-re)` \\u2026 hooray.\", \"author_fullname\": \"t2_dp04z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Elisp command to filter the agenda to show only [#A] prio tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgzod3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556167047.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to filter the current agenda using elisp commands mapped to a shortcut. I know that I could create separate agenda for different filters but this time, I\\u0026#39;d prefer to have an arbitrary agenda and filter it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn my case, I\\u0026#39;d like to show only higest priority tasks: \\u003Ccode\\u003E[#A]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI could not find a specific command for filtering according to priority. However, interactively this can be achieved using \\u003Ccode\\u003Eorg-agenda-filter-by-regexp\\u003C/code\\u003E (mapped to \\u003Ccode\\u003E=\\u003C/code\\u003E) and then entering the regular expression \\u003Ccode\\u003E.*\\\\[#A\\\\].*\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to debug \\u003Ccode\\u003Eorg-agenda-filter-by-regexp\\u003C/code\\u003E and then \\u003Ccode\\u003Eorg-agenda-filter-apply\\u003C/code\\u003E in order to find out how the elisp command including the parameters has to look like when I want to use it in a DIY-function.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I apply \\u003Ccode\\u003E(org-agenda-filter-apply \\u0026quot;+.*\\\\\\\\[#A\\\\\\\\].*\\u0026quot; \\u0026quot;+\\u0026quot; nil)\\u003C/code\\u003E in the agenda (via \\u003Ccode\\u003EM-:\\u003C/code\\u003E), I only get \\u003Ccode\\u003Enil\\u003C/code\\u003E and nothing is changed. This clearly is wrong somehow.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen debugging my elisp command and comparing to the interactive invocation, the regex as well as the second parameter do not match. This is where my elisp knowledge ends so far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre you able to help me finding out what the magic spell is to \\u003Cem\\u003Eactivate\\u003C/em\\u003E the filter via an elisp command?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: What I could find out myself is the command to disable the filter: \\u003Ccode\\u003E(org-agenda-filter-show-all-re)\\u003C/code\\u003E \\u2026 hooray.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgzod3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"murdsdrum\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgzod3/elisp_command_to_filter_the_agenda_to_show_only_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgzod3/elisp_command_to_filter_the_agenda_to_show_only_a/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556138247.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is there anyway to automate refiling according to tag? For example, let's say that I have a bunch of todos and notes in [inbox.org](https://inbox.org) captured by a template.\\n\\n\\u0026#x200B;\\n\\n* `TODO Finish task :project1:`\\n* `Reference for emacs theme :emacs:`\\n* `TODO Email Robert :project2:`\\n\\n\\u0026#x200B;\\n\\nCould all headings in [inbox.org](https://inbox.org) tagged :project1: be automatically refiled to [project1.org](https://project1.org); those tagged with :project2: refiled to [project2.org](https://project2.org); and those tagged :emacs: be refiled to [emacs.org](https://emacs.org)? maybe tied to a key binding, or through a cron job?\\n\\n\\u0026#x200B;\\n\\nMany thanks in advance!\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Automate refiling according to tag?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgy3v6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556159094.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there anyway to automate refiling according to tag? For example, let\\u0026#39;s say that I have a bunch of todos and notes in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E captured by a template.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003ETODO Finish task :project1:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EReference for emacs theme :emacs:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003ETODO Email Robert :project2:\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECould all headings in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E tagged :project1: be automatically refiled to \\u003Ca href=\\\"https://project1.org\\\"\\u003Eproject1.org\\u003C/a\\u003E; those tagged with :project2: refiled to \\u003Ca href=\\\"https://project2.org\\\"\\u003Eproject2.org\\u003C/a\\u003E; and those tagged :emacs: be refiled to \\u003Ca href=\\\"https://emacs.org\\\"\\u003Eemacs.org\\u003C/a\\u003E? maybe tied to a key binding, or through a cron job?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgy3v6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556130294.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"On org-agenda, a new window is opened with the agenda. How can I open org-agenda in the current window and not have it open a new one?\", \"author_fullname\": \"t2_q43ft\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Open org-agenda in current window\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bgpycx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1556106434.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn org-agenda, a new window is opened with the agenda. How can I open org-agenda in the current window and not have it open a new one?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bgpycx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HumanBrainMapper\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bgpycx/open_orgagenda_in_current_window/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bgpycx/open_orgagenda_in_current_window/\", \"subreddit_subscribers\": 4902, \"created_utc\": 1556077634.0, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bgpycx\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["418423"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:46 GMT"], "x-ratelimit-remaining": ["591.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["9"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643986.085776,VS0,VE819"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["14"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-27T13:59:47"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_c60z6q"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:47 GMT"], "x-ratelimit-remaining": ["590.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["10"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643987.044556,VS0,VE102"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["13"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_c60z6q"}, "recorded_at": "2019-06-27T13:59:47"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rw1n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5zy01\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PleaseTakeThisName\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561635956.0, \"send_replies\": true, \"parent_id\": \"t3_c5rw1n\", \"score\": 1, \"author_fullname\": \"t2_16220v7x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[PCPartPicker Part List](https://pcpartpicker.com/list/4G8dsZ)\\n\\nType|Item|Price\\n:----|:----|:----\\n**CPU** | [AMD - Ryzen 5 2600 3.4 GHz 6-Core Processor](https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox) | $145.74 @ SuperBiiz \\n**Motherboard** | [MSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard](https://pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2) | $90.00 \\n**Memory** | [G.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory](https://pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb) | $62.89 @ OutletPC \\n**Storage** | [Patriot - Burst 240 GB 2.5\\\" Solid State Drive](https://pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr) | $22.99 @ Newegg \\n**Storage** | [Toshiba - P300 1 TB 3.5\\\" 7200RPM Internal Hard Drive](https://pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta) | $40.00 \\n**Video Card** | [Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card](https://pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g) | $299.99 @ Amazon \\n**Power Supply** | [be quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply](https://pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292) | $70.00 \\n**Optical Drive** | [Lite-On - iHDS118-04 DVD/CD Drive](https://pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804) | $21.88 @ OutletPC \\n**Custom** | [Sharkoon S1000 micro ATX Geh\\u00e4use, schwarz](https://pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz) | $40.00 \\n | *Prices include shipping, taxes, rebates, and discounts* |\\n | **Total** | **$793.49**\\n | Generated by [PCPartPicker](https://pcpartpicker.com) 2019-06-27 07:45 EDT-0400 |\", \"link_title\": \"I don't know if this works so...\", \"author_flair_css_class\": null, \"name\": \"t1_es5zy01\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/list/4G8dsZ\\\"\\u003EPCPartPicker Part List\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EType\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\\"\\u003EAMD - Ryzen 5 2600 3.4 GHz 6-Core Processor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$145.74 @ SuperBiiz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2\\\"\\u003EMSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$90.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb\\\"\\u003EG.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$62.89 @ OutletPC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr\\\"\\u003EPatriot - Burst 240 GB 2.5\\u0026quot; Solid State Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$22.99 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta\\\"\\u003EToshiba - P300 1 TB 3.5\\u0026quot; 7200RPM Internal Hard Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EVideo Card\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g\\\"\\u003ESapphire - Radeon RX VEGA 56 8 GB PULSE Video Card\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$299.99 @ Amazon\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EPower Supply\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292\\\"\\u003Ebe quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$70.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EOptical Drive\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804\\\"\\u003ELite-On - iHDS118-04 DVD/CD Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$21.88 @ OutletPC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECustom\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz\\\"\\u003ESharkoon S1000 micro ATX Geh\\u00e4use, schwarz\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$40.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cem\\u003EPrices include shipping, taxes, rebates, and discounts\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETotal\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$793.49\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGenerated by \\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003EPCPartPicker\\u003C/a\\u003E 2019-06-27 07:45 EDT-0400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/es5zy01/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"report_reasons\": null, \"link_author\": \"PleaseTakeThisName\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"created\": 1561664756.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rw1n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5zrk0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PleaseTakeThisName\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561635767.0, \"send_replies\": true, \"parent_id\": \"t3_c5rw1n\", \"score\": 1, \"author_fullname\": \"t2_16220v7x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[PCPartPicker Part List\\\\]([https://pcpartpicker.com/list/4G8dsZ](https://pcpartpicker.com/list/4G8dsZ))\\n\\n\\u0026#x200B;\\n\\nType|Item|Price\\n\\n:----|:----|:----\\n\\n\\\\*\\\\*CPU\\\\*\\\\* | \\\\[AMD - Ryzen 5 2600 3.4 GHz 6-Core Processor\\\\]([https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox](https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox)) | $145.74 @ SuperBiiz \\n\\n\\\\*\\\\*Motherboard\\\\*\\\\* | \\\\[MSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard\\\\]([https://pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2](https://pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2)) | $90.00 \\n\\n\\\\*\\\\*Memory\\\\*\\\\* | \\\\[G.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory\\\\]([https://pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb](https://pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb)) | $62.89 @ OutletPC \\n\\n\\\\*\\\\*Storage\\\\*\\\\* | \\\\[Patriot - Burst 240 GB 2.5\\\" Solid State Drive\\\\]([https://pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr](https://pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr)) | $22.99 @ Newegg \\n\\n\\\\*\\\\*Storage\\\\*\\\\* | \\\\[Toshiba - P300 1 TB 3.5\\\" 7200RPM Internal Hard Drive\\\\]([https://pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta](https://pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta)) | $40.00 \\n\\n\\\\*\\\\*Video Card\\\\*\\\\* | \\\\[Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card\\\\]([https://pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g](https://pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g)) | $299.99 @ Amazon \\n\\n\\\\*\\\\*Power Supply\\\\*\\\\* | \\\\[be quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply\\\\]([https://pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292](https://pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292)) | $70.00 \\n\\n\\\\*\\\\*Optical Drive\\\\*\\\\* | \\\\[Lite-On - iHDS118-04 DVD/CD Drive\\\\]([https://pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804](https://pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804)) | $21.88 @ OutletPC \\n\\n\\\\*\\\\*Custom\\\\*\\\\* | \\\\[Sharkoon S1000 micro ATX Geh\\u00e4use, schwarz\\\\]([https://pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz](https://pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz)) | $40.00 \\n\\n | \\\\*Prices include shipping, taxes, rebates, and discounts\\\\* |\\n\\n | \\\\*\\\\*Total\\\\*\\\\* | \\\\*\\\\*$793.49\\\\*\\\\*\\n\\n | Generated by \\\\[PCPartPicker\\\\]([https://pcpartpicker.com](https://pcpartpicker.com)) 2019-06-27 07:42 EDT-0400 |\", \"link_title\": \"I don't know if this works so...\", \"author_flair_css_class\": null, \"name\": \"t1_es5zrk0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[PCPartPicker Part List](\\u003Ca href=\\\"https://pcpartpicker.com/list/4G8dsZ\\\"\\u003Ehttps://pcpartpicker.com/list/4G8dsZ\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EType|Item|Price\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:----|:----|:----\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**CPU** | [AMD - Ryzen 5 2600 3.4 GHz 6-Core Processor](\\u003Ca href=\\\"https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\\"\\u003Ehttps://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\u003C/a\\u003E) | $145.74 @ SuperBiiz \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Motherboard** | [MSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard](\\u003Ca href=\\\"https://pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2\\\"\\u003Ehttps://pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2\\u003C/a\\u003E) | $90.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Memory** | [G.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory](\\u003Ca href=\\\"https://pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb\\\"\\u003Ehttps://pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb\\u003C/a\\u003E) | $62.89 @ OutletPC \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Storage** | [Patriot - Burst 240 GB 2.5\\u0026quot; Solid State Drive](\\u003Ca href=\\\"https://pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr\\\"\\u003Ehttps://pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr\\u003C/a\\u003E) | $22.99 @ Newegg \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Storage** | [Toshiba - P300 1 TB 3.5\\u0026quot; 7200RPM Internal Hard Drive](\\u003Ca href=\\\"https://pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta\\\"\\u003Ehttps://pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta\\u003C/a\\u003E) | $40.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Video Card** | [Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card](\\u003Ca href=\\\"https://pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g\\\"\\u003Ehttps://pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g\\u003C/a\\u003E) | $299.99 @ Amazon \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Power Supply** | [be quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply](\\u003Ca href=\\\"https://pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292\\\"\\u003Ehttps://pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292\\u003C/a\\u003E) | $70.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Optical Drive** | [Lite-On - iHDS118-04 DVD/CD Drive](\\u003Ca href=\\\"https://pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804\\\"\\u003Ehttps://pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804\\u003C/a\\u003E) | $21.88 @ OutletPC \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Custom** | [Sharkoon S1000 micro ATX Geh\\u00e4use, schwarz](\\u003Ca href=\\\"https://pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz\\\"\\u003Ehttps://pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz\\u003C/a\\u003E) | $40.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| *Prices include shipping, taxes, rebates, and discounts* |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| **Total** | **$793.49**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| Generated by [PCPartPicker](\\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003Ehttps://pcpartpicker.com\\u003C/a\\u003E) 2019-06-27 07:42 EDT-0400 |\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/es5zrk0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"report_reasons\": null, \"link_author\": \"PleaseTakeThisName\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"created\": 1561664567.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c61a3f\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es5h4k4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PrinceAtom12\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561611766.0, \"send_replies\": true, \"parent_id\": \"t3_c61a3f\", \"score\": 1, \"author_fullname\": \"t2_3v3l8198\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"testtesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\n\\n\\u0026#x200B;\\n\\n\\\"testtesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt. \\n\\ntesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\n\\ntesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\n\\ntesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\\"\\n\\n\\u0026#x200B;\\n\\ntesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\", \"link_title\": \"paragraph test\", \"author_flair_css_class\": null, \"name\": \"t1_es5h4k4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;testtesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestttesttesttesttesttesttesttestt.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c61a3f/paragraph_test/es5h4k4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c61a3f/paragraph_test/\", \"report_reasons\": null, \"link_author\": \"PrinceAtom12\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c61a3f/paragraph_test/\", \"created\": 1561640566.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bvz153\", \"author_flair_template_id\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4hbno\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"nnreddit-user\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561584840.0, \"send_replies\": true, \"parent_id\": \"t3_bvz153\", \"score\": 1, \"author_fullname\": \"t2_3um52nx7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a reply test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_es4hbno\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a reply test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": false, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bvz153/test/es4hbno/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bvz153/test/\", \"report_reasons\": null, \"link_author\": \"heronb\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bvz153/test/\", \"created\": 1561613640.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"rte_mode\": \"richtext\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rdl7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4guih\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Braves-Bot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1561584527.0, \"send_replies\": true, \"parent_id\": \"t3_c5rdl7\", \"score\": 1, \"author_fullname\": \"t2_40gr0hfl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**ATL Lineup**\\n\\n|#|Hitters|POS|H-AB|AB|H|RBI|HR|SB|K|AVG|\\n|--:|:--|:-:|--:|--:|--:|--:|--:|--:|--:|--:|\\n|1|R. Acuna Jr.|CF|92-318|318|92|51|19|10|85|0.289|\\n|2|D. Swanson|SS|78-305|305|78|48|15|6|70|0.256|\\n|3|F. Freeman|1B|97-312|312|97|61|21|1|62|0.311|\\n|4|J. Donaldson|3B|70-274|274|70|37|15|1|82|0.255|\\n|5|N. Markakis|RF|76-280|280|76|44|6|0|39|0.271|\\n|6|O. Albies|2B|90-316|316|90|42|12|6|53|0.285|\\n|7|B. McCann|C|38-136|136|38|29|7|0|20|0.279|\\n|8|J. Camargo|LF|32-127|127|32|18|3|1|24|0.252|\\n|9|D. Keuchel|P|0-1|1|0|0|0|0|0|0.000|\\n\\n**CHC Lineup**\\n\\n|#|Hitters|POS|H-AB|AB|H|RBI|HR|SB|K|AVG|\\n|--:|:--|:-:|--:|--:|--:|--:|--:|--:|--:|--:|\\n|1|A. Almora Jr.|CF|53-215|215|53|22|7|2|36|0.247|\\n|2|K. Bryant|LF|78-277|277|78|40|15|1|63|0.282|\\n|3|A. Rizzo|1B|75-275|275|75|55|19|3|49|0.273|\\n|4|J. Baez|SS|89-310|310|89|52|19|5|96|0.287|\\n|5|W. Contreras|C|66-224|224|66|47|16|1|69|0.295|\\n|6|J. Heyward|RF|68-255|255|68|27|11|5|51|0.267|\\n|7|A. Russell|2B|22-98|98|22|12|5|0|27|0.224|\\n|8|D. Bote|3B|51-198|198|51|34|9|4|54|0.258|\\n|9|Y. Darvish|P|3-28|28|3|2|0|0|14|0.107|\\n\\n\\u0026nbsp;\\n\\n*^^I ^^am ^^bot, [^^click ^^here](http://www.reddit.com/message/compose?to=handlit33\\u0026subject=Braves-Bot+Issue\\u0026message=Please+be+as+detailed+as+possible.) ^^to ^^report ^^an ^^issue.*\", \"link_title\": \"Brian mCcann and matt joYce high five.\", \"author_flair_css_class\": null, \"name\": \"t1_es4guih\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EATL Lineup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E#\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EHitters\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPOS\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EH-AB\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EAB\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ERBI\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ESB\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ER. Acuna Jr.\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E92-318\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E318\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.289\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ED. Swanson\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E78-305\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E305\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.256\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EF. Freeman\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E97-312\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E312\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.311\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJ. Donaldson\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E70-274\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E274\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.255\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EN. Markakis\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E76-280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.271\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO. Albies\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E90-316\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E316\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.285\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EB. McCann\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E38-136\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E136\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.279\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJ. Camargo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E32-127\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E127\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.252\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ED. Keuchel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EP\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECHC Lineup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E#\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EHitters\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPOS\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EH-AB\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EAB\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ERBI\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ESB\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA. Almora Jr.\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E53-215\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E215\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.247\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EK. Bryant\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E78-277\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E277\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.282\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA. Rizzo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E75-275\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E275\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.273\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJ. Baez\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E89-310\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E310\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.287\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EW. Contreras\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E66-224\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E224\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.295\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJ. Heyward\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E68-255\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E255\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.267\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EA. Russell\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E22-98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.224\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ED. Bote\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E51-198\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E198\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.258\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EY. Darvish\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EP\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3-28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E0.107\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eam\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ebot,\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Ca href=\\\"http://www.reddit.com/message/compose?to=handlit33\\u0026amp;subject=Braves-Bot+Issue\\u0026amp;message=Please+be+as+detailed+as+possible.\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003Eclick\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ehere\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eto\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ereport\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ean\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eissue.\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/es4guih/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"report_reasons\": null, \"link_author\": \"handlit33\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"created\": 1561613327.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rdl7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es4fu9w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Braves-Bot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1561583879.0, \"send_replies\": true, \"parent_id\": \"t3_c5rdl7\", \"score\": 1, \"author_fullname\": \"t2_40gr0hfl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**ATL Lineup**\\n\\n|#|Hitters|POS|H-AB|AB|H|RBI|HR|SB|K|AVG|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|1|R. Acuna Jr.|CF|92-318|318|92|51|19|10|85|0.289|\\n|2|D. Swanson|SS|78-305|305|78|48|15|6|70|0.256|\\n|3|F. Freeman|1B|97-312|312|97|61|21|1|62|0.311|\\n|4|J. Donaldson|3B|70-274|274|70|37|15|1|82|0.255|\\n|5|N. Markakis|RF|76-280|280|76|44|6|0|39|0.271|\\n|6|O. Albies|2B|90-316|316|90|42|12|6|53|0.285|\\n|7|B. McCann|C|38-136|136|38|29|7|0|20|0.279|\\n|8|J. Camargo|LF|32-127|127|32|18|3|1|24|0.252|\\n|9|D. Keuchel|P|0-1|1|0|0|0|0|0|0.000|\\n\\n**CHC Lineup**\\n\\n|#|Hitters|POS|H-AB|AB|H|RBI|HR|SB|K|AVG|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|1|A. Almora Jr.|CF|53-215|215|53|22|7|2|36|0.247|\\n|2|K. Bryant|LF|78-277|277|78|40|15|1|63|0.282|\\n|3|A. Rizzo|1B|75-275|275|75|55|19|3|49|0.273|\\n|4|J. Baez|SS|89-310|310|89|52|19|5|96|0.287|\\n|5|W. Contreras|C|66-224|224|66|47|16|1|69|0.295|\\n|6|J. Heyward|RF|68-255|255|68|27|11|5|51|0.267|\\n|7|A. Russell|2B|22-98|98|22|12|5|0|27|0.224|\\n|8|D. Bote|3B|51-198|198|51|34|9|4|54|0.258|\\n|9|Y. Darvish|P|3-28|28|3|2|0|0|14|0.107|\\n\\n\\u0026nbsp;\\n\\n*^^I ^^am ^^bot, [^^click ^^here](http://www.reddit.com/message/compose?to=handlit33\\u0026subject=Braves-Bot+Issue\\u0026message=Please+be+as+detailed+as+possible.) ^^to ^^report ^^an ^^issue.*\", \"link_title\": \"Brian mCcann and matt joYce high five.\", \"author_flair_css_class\": null, \"name\": \"t1_es4fu9w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EATL Lineup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E#\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHitters\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPOS\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH-AB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ERBI\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ER. Acuna Jr.\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92-318\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E318\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E92\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E85\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.289\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ED. Swanson\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78-305\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E305\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.256\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EF. Freeman\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E97-312\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E312\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E61\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E62\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.311\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJ. Donaldson\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E70-274\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E274\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E70\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E82\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.255\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EN. Markakis\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76-280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E280\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.271\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EO. Albies\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90-316\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E316\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E90\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.285\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EB. McCann\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38-136\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E136\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.279\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJ. Camargo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32-127\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E127\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E32\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.252\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ED. Keuchel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EP\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECHC Lineup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E#\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHitters\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPOS\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH-AB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ERBI\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA. Almora Jr.\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53-215\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E215\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E53\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.247\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EK. Bryant\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ELF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78-277\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E277\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E78\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E63\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.282\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA. Rizzo\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E75-275\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E275\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E55\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E49\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.273\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJ. Baez\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89-310\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E310\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E52\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E96\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.287\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW. Contreras\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66-224\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E224\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E66\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.295\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EJ. Heyward\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ERF\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E68-255\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E255\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E68\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.267\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA. Russell\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22-98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E98\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.224\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ED. Bote\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3B\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51-198\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E198\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E51\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E54\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.258\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EY. Darvish\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EP\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3-28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.107\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eam\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ebot,\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Ca href=\\\"http://www.reddit.com/message/compose?to=handlit33\\u0026amp;subject=Braves-Bot+Issue\\u0026amp;message=Please+be+as+detailed+as+possible.\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003Eclick\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ehere\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eto\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ereport\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ean\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eissue.\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/es4fu9w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"report_reasons\": null, \"link_author\": \"handlit33\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"created\": 1561612679.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rdl7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es3v0ff\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Myotic_Tesseract\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1561571208.0, \"send_replies\": true, \"parent_id\": \"t3_c5rdl7\", \"score\": 1, \"author_fullname\": \"t2_yp6dmil\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Those names are eerily close to the names of a classmate and a teacher I had in high school...\", \"link_title\": \"Brian mCcann and matt joYce high five.\", \"author_flair_css_class\": null, \"name\": \"t1_es3v0ff\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThose names are eerily close to the names of a classmate and a teacher I had in high school...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/es3v0ff/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"report_reasons\": null, \"link_author\": \"handlit33\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"created\": 1561600008.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rw1n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es3nc0y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PleaseTakeThisName\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561566453.0, \"send_replies\": true, \"parent_id\": \"t3_c5rw1n\", \"score\": 1, \"author_fullname\": \"t2_16220v7x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[PCPartPicker Part List\\\\]([https://de.pcpartpicker.com/list/fdDCGG](https://de.pcpartpicker.com/list/fdDCGG))\\n\\n\\u0026#x200B;\\n\\nType|Item|Price\\n\\n:----|:----|:----\\n\\n\\\\*\\\\*CPU\\\\*\\\\* | \\\\[AMD - Ryzen 5 2600 3.4 GHz 6-Core Processor\\\\]([https://de.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox](https://de.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox)) | \\u20ac135.89 @ Amazon Deutschland \\n\\n\\\\*\\\\*Motherboard\\\\*\\\\* | \\\\[MSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard\\\\]([https://de.pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2](https://de.pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2)) | \\u20ac90.00 \\n\\n\\\\*\\\\*Memory\\\\*\\\\* | \\\\[G.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory\\\\]([https://de.pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb](https://de.pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb)) | \\u20ac67.89 @ Mindfactory \\n\\n\\\\*\\\\*Storage\\\\*\\\\* | \\\\[Patriot - Burst 240 GB 2.5\\\" Solid State Drive\\\\]([https://de.pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr](https://de.pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr)) | \\u20ac28.99 @ Amazon Deutschland \\n\\n\\\\*\\\\*Storage\\\\*\\\\* | \\\\[Toshiba - P300 1 TB 3.5\\\" 7200RPM Internal Hard Drive\\\\]([https://de.pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta](https://de.pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta)) | \\u20ac40.00 \\n\\n\\\\*\\\\*Video Card\\\\*\\\\* | \\\\[Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card\\\\]([https://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g](https://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g)) | \\u20ac276.91 @ Amazon Deutschland \\n\\n\\\\*\\\\*Power Supply\\\\*\\\\* | \\\\[be quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply\\\\]([https://de.pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292](https://de.pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292)) | \\u20ac50.89 @ Amazon Deutschland \\n\\n\\\\*\\\\*Optical Drive\\\\*\\\\* | \\\\[Lite-On - iHDS118-04 DVD/CD Drive\\\\]([https://de.pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804](https://de.pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804)) | \\u20ac18.73 @ Amazon Deutschland \\n\\n\\\\*\\\\*Monitor\\\\*\\\\* | \\\\[Asus - VP248QGL 24.0\\\" 1920x1080 75 Hz Monitor\\\\]([https://de.pcpartpicker.com/product/7fw7YJ/asus-vp248qgl-240-1920x1080-75-hz-monitor-vp248qgl](https://de.pcpartpicker.com/product/7fw7YJ/asus-vp248qgl-240-1920x1080-75-hz-monitor-vp248qgl)) | \\u20ac60.00 \\n\\n\\\\*\\\\*Custom\\\\*\\\\* | \\\\[Sharkoon S1000 micro ATX Geh\\u00e4use, schwarz\\\\]([https://de.pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz](https://de.pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz)) | \\u20ac39.90 @ Amazon Deutschland \\n\\n | \\\\*Prices include shipping, taxes, rebates, and discounts\\\\* |\\n\\n | \\\\*\\\\*Total\\\\*\\\\* | \\\\*\\\\*\\u20ac809.20\\\\*\\\\*\\n\\n | Generated by \\\\[PCPartPicker\\\\]([https://pcpartpicker.com](https://pcpartpicker.com)) 2019-06-26 18:27 CEST+0200 |\", \"link_title\": \"I don't know if this works so...\", \"author_flair_css_class\": null, \"name\": \"t1_es3nc0y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[PCPartPicker Part List](\\u003Ca href=\\\"https://de.pcpartpicker.com/list/fdDCGG\\\"\\u003Ehttps://de.pcpartpicker.com/list/fdDCGG\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EType|Item|Price\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:----|:----|:----\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**CPU** | [AMD - Ryzen 5 2600 3.4 GHz 6-Core Processor](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\\"\\u003Ehttps://de.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\u003C/a\\u003E) | \\u20ac135.89 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Motherboard** | [MSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2\\\"\\u003Ehttps://de.pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2\\u003C/a\\u003E) | \\u20ac90.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Memory** | [G.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb\\\"\\u003Ehttps://de.pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb\\u003C/a\\u003E) | \\u20ac67.89 @ Mindfactory \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Storage** | [Patriot - Burst 240 GB 2.5\\u0026quot; Solid State Drive](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr\\\"\\u003Ehttps://de.pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr\\u003C/a\\u003E) | \\u20ac28.99 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Storage** | [Toshiba - P300 1 TB 3.5\\u0026quot; 7200RPM Internal Hard Drive](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta\\\"\\u003Ehttps://de.pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta\\u003C/a\\u003E) | \\u20ac40.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Video Card** | [Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g\\\"\\u003Ehttps://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g\\u003C/a\\u003E) | \\u20ac276.91 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Power Supply** | [be quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292\\\"\\u003Ehttps://de.pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292\\u003C/a\\u003E) | \\u20ac50.89 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Optical Drive** | [Lite-On - iHDS118-04 DVD/CD Drive](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804\\\"\\u003Ehttps://de.pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804\\u003C/a\\u003E) | \\u20ac18.73 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Monitor** | [Asus - VP248QGL 24.0\\u0026quot; 1920x1080 75 Hz Monitor](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/7fw7YJ/asus-vp248qgl-240-1920x1080-75-hz-monitor-vp248qgl\\\"\\u003Ehttps://de.pcpartpicker.com/product/7fw7YJ/asus-vp248qgl-240-1920x1080-75-hz-monitor-vp248qgl\\u003C/a\\u003E) | \\u20ac60.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Custom** | [Sharkoon S1000 micro ATX Geh\\u00e4use, schwarz](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz\\\"\\u003Ehttps://de.pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz\\u003C/a\\u003E) | \\u20ac39.90 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| *Prices include shipping, taxes, rebates, and discounts* |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| **Total** | **\\u20ac809.20**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| Generated by [PCPartPicker](\\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003Ehttps://pcpartpicker.com\\u003C/a\\u003E) 2019-06-26 18:27 CEST+0200 |\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/es3nc0y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"report_reasons\": null, \"link_author\": \"PleaseTakeThisName\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"created\": 1561595253.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5rdl7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es3ja0b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Braves-Bot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1561563826.0, \"send_replies\": true, \"parent_id\": \"t3_c5rdl7\", \"score\": 1, \"author_fullname\": \"t2_40gr0hfl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"|Name|G|PA|HR|R|RBI|SB|BB%|K%|ISO|BABIP|AVG|OBP|SLG|wOBA|wRC+|BsR|Off|Def|WAR|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|Brian McCann|42|160|7|16|29|0|10.6 %|12.5 %|0.191|0.27|0.279|0.35|0.471|0.341|108|-0.7|1.1|1.2|0.7|\\n|Matt Joyce|60|83|2|11|8|0|14.5 %|19.3 %|0.183|0.377|0.31|0.41|0.493|0.387|138|-0.1|4.1|-1.1|0.6|\", \"link_title\": \"Brian mCcann and matt joYce high five.\", \"author_flair_css_class\": null, \"name\": \"t1_es3ja0b\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EName\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ER\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ERBI\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBB%\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK%\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EISO\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBABIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOBP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESLG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EwOBA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EwRC+\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBsR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOff\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EDef\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EWAR\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBrian McCann\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E160\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E29\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E10.6 %\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12.5 %\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.191\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.27\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.279\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.35\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.471\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.341\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E108\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-0.7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.7\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMatt Joyce\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E83\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14.5 %\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E19.3 %\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.183\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.377\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.493\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.387\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E138\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-0.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E-1.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.6\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/es3ja0b/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"report_reasons\": null, \"link_author\": \"handlit33\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"created\": 1561592626.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4jyh8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es2sqm2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"V-kekEnthusiast\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561538482.0, \"send_replies\": true, \"parent_id\": \"t3_c4jyh8\", \"score\": 1, \"author_fullname\": \"t2_4izkmwp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[play this song\\\\]([https://youtu.be/vyGFM5CGnoo?t=1m4s](https://youtu.be/vyGFM5CGnoo?t=1m4s))\", \"link_title\": \"HEY BINDI\", \"author_flair_css_class\": null, \"name\": \"t1_es2sqm2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[play this song](\\u003Ca href=\\\"https://youtu.be/vyGFM5CGnoo?t=1m4s\\\"\\u003Ehttps://youtu.be/vyGFM5CGnoo?t=1m4s\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c4jyh8/hey_bindi/es2sqm2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c4jyh8/hey_bindi/\", \"report_reasons\": null, \"link_author\": \"Gooforme\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/kv4c91eqg9631.jpg\", \"created\": 1561567282.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5a7b8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es2kro9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Qoeh\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561527958.0, \"send_replies\": true, \"parent_id\": \"t1_es2kr71\", \"score\": 1, \"author_fullname\": \"t2_wxdmw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E!Multiline spoilers?\\n\\nMultiline??????!\\u003C\", \"link_title\": \"text\", \"author_flair_css_class\": null, \"name\": \"t1_es2kro9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;!Multiline spoilers?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMultiline??????!\\u0026lt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5a7b8/text/es2kro9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5a7b8/text/\", \"report_reasons\": null, \"link_author\": \"Mizenhauer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5a7b8/text/\", \"created\": 1561556758.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5a7b8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es2kr71\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Qoeh\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561527943.0, \"send_replies\": true, \"parent_id\": \"t1_es2kqrw\", \"score\": 1, \"author_fullname\": \"t2_wxdmw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E!I need to understand better how spoiler tags work!\\u003C\", \"link_title\": \"text\", \"author_flair_css_class\": null, \"name\": \"t1_es2kr71\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003EI need to understand better how spoiler tags work\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5a7b8/text/es2kr71/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5a7b8/text/\", \"report_reasons\": null, \"link_author\": \"Mizenhauer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5a7b8/text/\", \"created\": 1561556743.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5a7b8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es2kqrw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Qoeh\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561527931.0, \"send_replies\": true, \"parent_id\": \"t3_c5a7b8\", \"score\": 1, \"author_fullname\": \"t2_wxdmw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E! I need to understand better how spoiler tags work !\\u003C\", \"link_title\": \"text\", \"author_flair_css_class\": null, \"name\": \"t1_es2kqrw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026gt;! I need to understand better how spoiler tags work !\\u0026lt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5a7b8/text/es2kqrw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5a7b8/text/\", \"report_reasons\": null, \"link_author\": \"Mizenhauer\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5a7b8/text/\", \"created\": 1561556731.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c5i87l\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es1y49s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Braves-Bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561508864.0, \"send_replies\": true, \"parent_id\": \"t3_c5i87l\", \"score\": 1, \"author_fullname\": \"t2_40gr0hfl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Probable Pitchers**\\n\\n|Player|W-L|ERA|WHIP|IP|H|K|BB|HR|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|D. Keuchel|0-1|5.40|1.60|5.0|8|3|0|1|\\n|Y. Darvish|2-3|4.75|1.36|85.1|69|97|47|16|\\n**Team Stats**\\n\\n|TEAM|AVG|R|H|HR|OBP|SLG|ERA|WHIP|BB|K|OBA|NIGHT|TURF|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|ATL|0.265|430|729|122|0.340|0.461|4.28|1.38|297|677|0.251|33-26|46-33|\\n|CHC|0.253|397|664|122|0.336|0.448|3.88|1.31|272|675|0.245|27-20|43-35|\\n**ATL Last Five**\\n\\n|Date|OPP|Result|\\n|:-:|:-:|:-:|\\n|6/24/19|@ CHC|L8-3|\\n|6/23/19|@ WSH|W4-3 F/10|\\n|6/22/19|@ WSH|W13-9|\\n|6/21/19|@ WSH|L4-3|\\n|6/19/19|vs NYM|W7-2|\\n**CHC Last Five**\\n\\n|Date|OPP|Result|\\n|:-:|:-:|:-:|\\n|6/24/19|vs ATL|W8-3|\\n|6/23/19|vs NYM|W5-3|\\n|6/22/19|vs NYM|L10-2|\\n|6/21/19|vs NYM|L5-4|\\n|6/20/19|vs NYM|W7-4|\\n**National League East Standings**\\n\\n|TEAM|W|L|PCT|GB|STRK|\\n|:-:|:-:|:-:|:-:|:-:|:-:|\\n|Atlanta|46|33|0.582|0.0|L1|\\n|Philadelphia|40|38|0.513|5.5|W1|\\n|Washington|37|40|0.481|8.0|L2|\\n|New York|37|42|0.468|9.0|L2|\\n|Miami|30|46|0.395|14.5|W4|\\n\\n\\u0026nbsp;\\n\\n*^^I ^^am ^^bot, [^^click ^^here](http://www.reddit.com/message/compose?to=handlit33\\u0026subject=Braves-Bot+Issue\\u0026message=Please+be+as+detailed+as+possible.) ^^to ^^report ^^an ^^issue.*\", \"link_title\": \"Tailgate Test\", \"author_flair_css_class\": null, \"name\": \"t1_es1y49s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EProbable Pitchers\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPlayer\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EW-L\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EERA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EWHIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ED. Keuchel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0-1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5.40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.60\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EY. Darvish\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2-3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.36\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E85.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E69\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E97\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E47\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETeam Stats\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ETEAM\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ER\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOBP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESLG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EERA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EWHIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOBA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ENIGHT\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ETURF\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EATL\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.265\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E430\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E729\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E122\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.340\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.461\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E297\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E677\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.251\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33-26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46-33\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECHC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.253\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E397\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E664\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E122\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.336\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.448\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E272\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E675\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.245\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E27-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43-35\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EATL Last Five\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOPP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EResult\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/24/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E@ CHC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL8-3\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/23/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E@ WSH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW4-3 F/10\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/22/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E@ WSH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW13-9\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/21/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E@ WSH\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL4-3\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/19/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Evs NYM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW7-2\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECHC Last Five\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOPP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EResult\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/24/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Evs ATL\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW8-3\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/23/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Evs NYM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW5-3\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/22/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Evs NYM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL10-2\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/21/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Evs NYM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL5-4\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E6/20/19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Evs NYM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW7-4\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENational League East Standings\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ETEAM\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EW\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EL\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPCT\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EGB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESTRK\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EAtlanta\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.582\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL1\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPhiladelphia\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.513\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW1\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWashington\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E40\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.481\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL2\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ENew York\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E37\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E42\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.468\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E9.0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EL2\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EMiami\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.395\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E14.5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EW4\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eam\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ebot,\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Ca href=\\\"http://www.reddit.com/message/compose?to=handlit33\\u0026amp;subject=Braves-Bot+Issue\\u0026amp;message=Please+be+as+detailed+as+possible.\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003Eclick\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ehere\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eto\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ereport\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ean\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eissue.\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c5i87l/tailgate_test/es1y49s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c5i87l/tailgate_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c5i87l/tailgate_test/\", \"created\": 1561537664.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c31w77\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es0v343\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Braves-Bot\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561483613.0, \"send_replies\": true, \"parent_id\": \"t3_c31w77\", \"score\": 1, \"author_fullname\": \"t2_40gr0hfl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Probable Pitchers**\\n\\n|Player|W-L|ERA|WHIP|IP|H|K|BB|HR| \\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:| \\n|M. Fried|8-3|4.03|1.34|82.2|89|76|22|11| \\n|A. Alzolay|1-0|2.25|0.75|4|1|5|2|1| \\n**Team Stats**\\n\\n|TEAM|AVG|R|H|HR|OBP|SLG|ERA|WHIP|BB|K|OBA|NIGHT|TURF| \\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:| \\n|ATL|0.265|430|729|122|0.34|0.461|4.28|1.38|297|677|0.251|33-24|46-33| \\n|CHC|0.253|397|664|122|0.336|0.448|3.88|1.31|272|675|0.245|26-20|43-35|\", \"link_title\": \"gdt\", \"author_flair_css_class\": null, \"name\": \"t1_es0v343\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EProbable Pitchers\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPlayer\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EW-L\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EERA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EWHIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EM. Fried\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E8-3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.03\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E82.2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E89\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E76\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E22\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E11\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EA. Alzolay\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1-0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2.25\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETeam Stats\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ETEAM\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAVG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ER\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EH\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EHR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOBP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESLG\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EERA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EWHIP\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EK\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOBA\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ENIGHT\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ETURF\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EATL\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.265\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E430\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E729\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E122\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.34\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.461\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4.28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.38\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E297\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E677\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.251\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E33-24\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E46-33\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECHC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.253\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E397\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E664\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E122\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.336\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.448\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3.88\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1.31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E272\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E675\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E0.245\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E26-20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E43-35\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c31w77/gdt/es0v343/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c31w77/gdt/\", \"report_reasons\": null, \"link_author\": \"handlit33\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c31w77/gdt/\", \"created\": 1561512413.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c31w77\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"es0t8mj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Braves-Bot\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561482594.0, \"send_replies\": true, \"parent_id\": \"t3_c31w77\", \"score\": 1, \"author_fullname\": \"t2_40gr0hfl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Probable Pitchers** \\n|Player|W-L|ERA|WHIP|IP|H|K|BB|HR|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|M. Fried|43680|4.03|1.34|82.2|89|76|22|11|\\n|A. Alzolay|1-0|2.25|0.75|4|1|5|2|1| \\n**Team Stats **\\n|TEAM|AVG|R|H|HR|OBP|SLG|ERA|WHIP|BB|K|OBA|NIGHT|TURF|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|ATL|0.265|430|729|122|0.34|0.461|4.28|1.38|297|677|0.251|33-24|46-33|\\n|CHC|0.253|397|664|122|0.336|0.448|3.88|1.31|272|675|0.245|26-20|43-35|\", \"link_title\": \"gdt\", \"author_flair_css_class\": null, \"name\": \"t1_es0t8mj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EProbable Pitchers\\u003C/strong\\u003E\\u003Cbr/\\u003E\\n|Player|W-L|ERA|WHIP|IP|H|K|BB|HR|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|M. Fried|43680|4.03|1.34|82.2|89|76|22|11|\\n|A. Alzolay|1-0|2.25|0.75|4|1|5|2|1|\\u003Cbr/\\u003E\\n*\\u003Cem\\u003ETeam Stats *\\u003C/em\\u003E\\n|TEAM|AVG|R|H|HR|OBP|SLG|ERA|WHIP|BB|K|OBA|NIGHT|TURF|\\n|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|\\n|ATL|0.265|430|729|122|0.34|0.461|4.28|1.38|297|677|0.251|33-24|46-33|\\n|CHC|0.253|397|664|122|0.336|0.448|3.88|1.31|272|675|0.245|26-20|43-35|\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c31w77/gdt/es0t8mj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c31w77/gdt/\", \"report_reasons\": null, \"link_author\": \"handlit33\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c31w77/gdt/\", \"created\": 1561511394.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4x2tz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eryr1q6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"graypod\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561415211.0, \"send_replies\": true, \"parent_id\": \"t3_c4x2tz\", \"score\": 1, \"author_fullname\": \"t2_161d26\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://streamable.com/s/i5xbp/jmihkz](https://streamable.com/s/i5xbp/jmihkz)\", \"link_title\": \"zed\", \"author_flair_css_class\": null, \"name\": \"t1_eryr1q6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://streamable.com/s/i5xbp/jmihkz\\\"\\u003Ehttps://streamable.com/s/i5xbp/jmihkz\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c4x2tz/zed/eryr1q6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c4x2tz/zed/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://streamable.com/s/i5xbp/\", \"created\": 1561444011.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2whnb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ermxwmj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Scout_3336\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561039964.0, \"send_replies\": true, \"parent_id\": \"t3_c2whnb\", \"score\": 1, \"author_fullname\": \"t2_3k04aarx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"The seashore is where the seagull Sells.\", \"link_title\": \"Seagull sells selfies by the seashore\", \"author_flair_css_class\": null, \"name\": \"t1_ermxwmj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe seashore is where the seagull Sells.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2whnb/seagull_sells_selfies_by_the_seashore/ermxwmj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2whnb/seagull_sells_selfies_by_the_seashore/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/jmysd30fri531.jpg\", \"created\": 1561068764.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2sbsy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erm8yg9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Scout_3336\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1561010762.0, \"send_replies\": true, \"parent_id\": \"t3_c2sbsy\", \"score\": 1, \"author_fullname\": \"t2_3k04aarx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"RWERWrwwRRr\", \"link_title\": \"Seagull sells selfies by the seashore\", \"author_flair_css_class\": null, \"name\": \"t1_erm8yg9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERWERWrwwRRr\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2sbsy/seagull_sells_selfies_by_the_seashore/erm8yg9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2sbsy/seagull_sells_selfies_by_the_seashore/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/tpxzhiolcg531.jpg\", \"created\": 1561039562.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2s2ip\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erm7pms\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Scout_3336\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561009311.0, \"send_replies\": true, \"parent_id\": \"t3_c2s2ip\", \"score\": 1, \"author_fullname\": \"t2_3k04aarx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[*The seashore is where the seagull Sells*](https://imgur.com/9AG11VI)\", \"link_title\": \"Seagull sells selfies by the seashore\", \"author_flair_css_class\": null, \"name\": \"t1_erm7pms\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/9AG11VI\\\"\\u003E\\u003Cem\\u003EThe seashore is where the seagull Sells\\u003C/em\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2s2ip/seagull_sells_selfies_by_the_seashore/erm7pms/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2s2ip/seagull_sells_selfies_by_the_seashore/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/9AG11VI\", \"created\": 1561038111.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2s2ip\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erm7ljx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Scout_3336\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561009180.0, \"send_replies\": true, \"parent_id\": \"t3_c2s2ip\", \"score\": 1, \"author_fullname\": \"t2_3k04aarx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"The [*seashore*](https://imgur.com/9AG11VI) is where the seagull Sells.\", \"link_title\": \"Seagull sells selfies by the seashore\", \"author_flair_css_class\": null, \"name\": \"t1_erm7ljx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe \\u003Ca href=\\\"https://imgur.com/9AG11VI\\\"\\u003E\\u003Cem\\u003Eseashore\\u003C/em\\u003E\\u003C/a\\u003E is where the seagull Sells.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2s2ip/seagull_sells_selfies_by_the_seashore/erm7ljx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2s2ip/seagull_sells_selfies_by_the_seashore/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/9AG11VI\", \"created\": 1561037980.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2s2ip\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erm7hzi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Scout_3336\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1561009065.0, \"send_replies\": true, \"parent_id\": \"t3_c2s2ip\", \"score\": 1, \"author_fullname\": \"t2_3k04aarx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"The *seashore* is where the seagull Sells.\", \"link_title\": \"Seagull sells selfies by the seashore\", \"author_flair_css_class\": null, \"name\": \"t1_erm7hzi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe \\u003Cem\\u003Eseashore\\u003C/em\\u003E is where the seagull Sells.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2s2ip/seagull_sells_selfies_by_the_seashore/erm7hzi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2s2ip/seagull_sells_selfies_by_the_seashore/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/9AG11VI\", \"created\": 1561037865.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2nor2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erlhbks\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DrHandyman\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560987177.0, \"send_replies\": true, \"parent_id\": \"t3_c2nor2\", \"score\": 1, \"author_fullname\": \"t2_2wbf73p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Comment test\", \"link_title\": \"Image test\", \"author_flair_css_class\": null, \"name\": \"t1_erlhbks\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EComment test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2nor2/image_test/erlhbks/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2nor2/image_test/\", \"report_reasons\": null, \"link_author\": \"GloomyTeddyBear96\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/8mr10adz2e531.jpg\", \"created\": 1561015977.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2ks3x\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erkqkqc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560969219.0, \"send_replies\": true, \"parent_id\": \"t3_c2ks3x\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/gxuM60O.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"Father Ted\", \"author_flair_css_class\": null, \"name\": \"t1_erkqkqc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/gxuM60O.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2ks3x/father_ted/erkqkqc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2ks3x/father_ted/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/gxuM60O.gif\", \"created\": 1560998019.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c2islr\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erkbmja\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jachrazoglou\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560959836.0, \"send_replies\": true, \"parent_id\": \"t3_c2islr\", \"score\": 1, \"author_fullname\": \"t2_3v1jxwat\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" My grandfather John had been in the US working and saving his money sent word back to the village in Greece that he needed a bride. My grandmother\\u2019s family responded and her brother escorted my grandmother to Paris, France to meet John.\\n\\nWhen grandmother saw John for the first time in Paris she turned to her brother and told him, \\u201cyou can go back to the village now.\\u201d\\n\\nOn that same day John bought her a wedding dress, they got married and had this picture taken. That's one happy Greek!\", \"link_title\": \"On the same day my grandparents met, got married and took this picture \\u2013 1920's\", \"author_flair_css_class\": null, \"name\": \"t1_erkbmja\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy grandfather John had been in the US working and saving his money sent word back to the village in Greece that he needed a bride. My grandmother\\u2019s family responded and her brother escorted my grandmother to Paris, France to meet John.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen grandmother saw John for the first time in Paris she turned to her brother and told him, \\u201cyou can go back to the village now.\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn that same day John bought her a wedding dress, they got married and had this picture taken. That\\u0026#39;s one happy Greek!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c2islr/on_the_same_day_my_grandparents_met_got_married/erkbmja/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c2islr/on_the_same_day_my_grandparents_met_got_married/\", \"report_reasons\": null, \"link_author\": \"jachrazoglou\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/di5WkIX\", \"created\": 1560988636.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzo7q6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erdr7oh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Decahedran\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560753302.0, \"send_replies\": true, \"parent_id\": \"t1_erd7r4z\", \"score\": 1, \"author_fullname\": \"t2_17ck50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Lol fair enough. Shoot me a reply when you post it. I\\u2019d also be interested in seeing what Reddit thinks about it from a design standpoint!\", \"link_title\": \"-\", \"author_flair_css_class\": null, \"name\": \"t1_erdr7oh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELol fair enough. Shoot me a reply when you post it. I\\u2019d also be interested in seeing what Reddit thinks about it from a design standpoint!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzo7q6/_/erdr7oh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"report_reasons\": null, \"link_author\": \"OverlordMikan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"created\": 1560782102.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byre4u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erdd9k2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Thunderboomed\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560738274.0, \"send_replies\": true, \"parent_id\": \"t3_byre4u\", \"score\": 1, \"author_fullname\": \"t2_zakzq1j\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"scared the living shit out of me when it switched to the next photo\", \"link_title\": \"This is a test!!\", \"author_flair_css_class\": null, \"name\": \"t1_erdd9k2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Escared the living shit out of me when it switched to the next photo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/byre4u/this_is_a_test/erdd9k2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/byre4u/this_is_a_test/\", \"report_reasons\": null, \"link_author\": \"lividcargo\", \"author_flair_text\": null, \"link_url\": \"https://media.giphy.com/media/l0uWTCjTVmAckMhRGl/giphy.gif\", \"created\": 1560767074.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzo7q6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"erd7r4z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"OverlordMikan\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560733448.0, \"send_replies\": true, \"parent_id\": \"t1_eqw0q32\", \"score\": 1, \"author_fullname\": \"t2_10ql04\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I was planning to post it to r/UI_Design cause I wanted to know what everyone thought about the new style lol. Didn't get to posting it yet though. otl\", \"link_title\": \"-\", \"author_flair_css_class\": null, \"name\": \"t1_erd7r4z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was planning to post it to \\u003Ca href=\\\"/r/UI_Design\\\"\\u003Er/UI_Design\\u003C/a\\u003E cause I wanted to know what everyone thought about the new style lol. Didn\\u0026#39;t get to posting it yet though. otl\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzo7q6/_/erd7r4z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"report_reasons\": null, \"link_author\": \"OverlordMikan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"created\": 1560762248.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c1fqie\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ercvvk0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"HellaciousHelen\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560723419.0, \"send_replies\": true, \"parent_id\": \"t3_c1fqie\", \"score\": 1, \"author_fullname\": \"t2_4cqt5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Musician is Dr. Jonathan Ong out of Sydney, Australia\", \"link_title\": \"Neil Gaiman, composer David Arnold, \\u0026 director Doug Mackinnon seemed to enjoy this music streamer's improv of the Good Omens theme, which was apparently learned and looped on the spot!\", \"author_flair_css_class\": null, \"name\": \"t1_ercvvk0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMusician is Dr. Jonathan Ong out of Sydney, Australia\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c1fqie/neil_gaiman_composer_david_arnold_director_doug/ercvvk0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c1fqie/neil_gaiman_composer_david_arnold_director_doug/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://twitter.com/neilhimself/status/1138874784060776448\", \"created\": 1560752219.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0610r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er9p5xb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sneakpeekbot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1560627218.0, \"send_replies\": true, \"parent_id\": \"t1_er9p4yb\", \"score\": 1, \"author_fullname\": \"t2_140r4p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Here's a sneak peek of /r/Luthier using the [top posts](https://np.reddit.com/r/Luthier/top/?sort=top\\u0026t=year) of the year!\\n\\n\\\\#1: [A guitar I made from African Zebrawood](https://i.redd.it/grkgebont8k21.jpg) | [62 comments](https://np.reddit.com/r/Luthier/comments/axhve9/a_guitar_i_made_from_african_zebrawood/) \\n\\\\#2: [Here you go fellow Redditors.](https://i.redd.it/m7kcu5wva0x21.jpg) | [61 comments](https://np.reddit.com/r/Luthier/comments/bm6oqy/here_you_go_fellow_redditors/) \\n\\\\#3: [\\\\[Update\\\\] finally completed my first build!](https://i.redd.it/vxcs74n6qef21.jpg) | [56 comments](https://np.reddit.com/r/Luthier/comments/aokxmw/update_finally_completed_my_first_build/)\\n\\n----\\n^^I'm ^^a ^^bot, ^^beep ^^boop ^^| ^^Downvote ^^to ^^remove ^^| [^^Contact ^^me](https://www.reddit.com/message/compose/?to=sneakpeekbot) ^^| [^^Info](https://np.reddit.com/r/sneakpeekbot/) ^^| [^^Opt-out](https://np.reddit.com/r/sneakpeekbot/comments/afd0dd/blacklist/)\", \"link_title\": \"Imgur: The magic of the Internet\", \"author_flair_css_class\": null, \"name\": \"t1_er9p5xb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere\\u0026#39;s a sneak peek of \\u003Ca href=\\\"/r/Luthier\\\"\\u003E/r/Luthier\\u003C/a\\u003E using the \\u003Ca href=\\\"https://np.reddit.com/r/Luthier/top/?sort=top\\u0026amp;t=year\\\"\\u003Etop posts\\u003C/a\\u003E of the year!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#1: \\u003Ca href=\\\"https://i.redd.it/grkgebont8k21.jpg\\\"\\u003EA guitar I made from African Zebrawood\\u003C/a\\u003E | \\u003Ca href=\\\"https://np.reddit.com/r/Luthier/comments/axhve9/a_guitar_i_made_from_african_zebrawood/\\\"\\u003E62 comments\\u003C/a\\u003E\\u003Cbr/\\u003E\\n#2: \\u003Ca href=\\\"https://i.redd.it/m7kcu5wva0x21.jpg\\\"\\u003EHere you go fellow Redditors.\\u003C/a\\u003E | \\u003Ca href=\\\"https://np.reddit.com/r/Luthier/comments/bm6oqy/here_you_go_fellow_redditors/\\\"\\u003E61 comments\\u003C/a\\u003E\\u003Cbr/\\u003E\\n#3: \\u003Ca href=\\\"https://i.redd.it/vxcs74n6qef21.jpg\\\"\\u003E[Update] finally completed my first build!\\u003C/a\\u003E | \\u003Ca href=\\\"https://np.reddit.com/r/Luthier/comments/aokxmw/update_finally_completed_my_first_build/\\\"\\u003E56 comments\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\u003Csup\\u003EI\\u0026#39;m\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ea\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ebot,\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Ebeep\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eboop\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003EDownvote\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eto\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eremove\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Ca href=\\\"https://www.reddit.com/message/compose/?to=sneakpeekbot\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003EContact\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003Eme\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Ca href=\\\"https://np.reddit.com/r/sneakpeekbot/\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003EInfo\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Ca href=\\\"https://np.reddit.com/r/sneakpeekbot/comments/afd0dd/blacklist/\\\"\\u003E\\u003Csup\\u003E\\u003Csup\\u003EOpt-out\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/er9p5xb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"report_reasons\": null, \"link_author\": \"Calavera87\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"created\": 1560656018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0610r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er9lv3x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"LeEpicRedditor69\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1560625715.0, \"send_replies\": true, \"parent_id\": \"t1_er9luln\", \"score\": 1, \"author_fullname\": \"t2_3y359z0f\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Nice\", \"link_title\": \"Imgur: The magic of the Internet\", \"author_flair_css_class\": null, \"name\": \"t1_er9lv3x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/er9lv3x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"report_reasons\": null, \"link_author\": \"Calavera87\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"created\": 1560654515.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560627236.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0610r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er9luln\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GorgutsBossaNova\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1560625709.0, \"send_replies\": true, \"parent_id\": \"t1_er9lsj7\", \"score\": 1, \"author_fullname\": \"t2_1l369haq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\n.\", \"link_title\": \"Imgur: The magic of the Internet\", \"author_flair_css_class\": null, \"name\": \"t1_er9luln\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/er9luln/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"report_reasons\": null, \"link_author\": \"Calavera87\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"created\": 1560654509.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560627249.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0610r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er9lsj7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GorgutsBossaNova\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1560625682.0, \"send_replies\": true, \"parent_id\": \"t3_c0610r\", \"score\": 1, \"author_fullname\": \"t2_1l369haq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"m\", \"link_title\": \"Imgur: The magic of the Internet\", \"author_flair_css_class\": null, \"name\": \"t1_er9lsj7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Em\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/er9lsj7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"report_reasons\": null, \"link_author\": \"Calavera87\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"created\": 1560654482.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0nfs0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er6176l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Q-Dex\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560537750.0, \"send_replies\": true, \"parent_id\": \"t3_c0nfs0\", \"score\": 1, \"author_fullname\": \"t2_osninyy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"##Title\\n\\nmain block\\n**important**\", \"link_title\": \"Second test\", \"author_flair_css_class\": null, \"name\": \"t1_er6176l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003ETitle\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003Emain block\\n\\u003Cstrong\\u003Eimportant\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c0nfs0/second_test/er6176l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c0nfs0/second_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/yjt40kaq5d431.png\", \"created\": 1560566550.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c0nfs0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"er60cnk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Q-Dex\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560537238.0, \"send_replies\": true, \"parent_id\": \"t3_c0nfs0\", \"score\": 1, \"author_fullname\": \"t2_osninyy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Dr. Test the tester\", \"link_title\": \"Second test\", \"author_flair_css_class\": null, \"name\": \"t1_er60cnk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDr. Test the tester\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c0nfs0/second_test/er60cnk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c0nfs0/second_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/yjt40kaq5d431.png\", \"created\": 1560566038.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560388586.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzzep3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqyrflk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Prexot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560388174.0, \"send_replies\": true, \"parent_id\": \"t3_bzzep3\", \"score\": 1, \"author_fullname\": \"t2_a7mkxmh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Play it now!](https://goldenpigames.github.io/BreadStapler/)\\n\\nBe my fan on [Kongregate](https://www.kongregate.com/accounts/goldenPiGames), [Newgrounds](https://goldenpigames.newgrounds.com/), and maybe the [YouTube](https://www.youtube.com/channel/UCb4QliR5GWppUqOLXBYKYHw) that I never use. Full code on [gitHub](https://github.com/goldenPiGames/BreadStapler).\\n\\nTrailer made by u/Owl_Towels: [YouTube](https://www.youtube.com/channel/UCpiem29VSZ0y2EbHOtc7tlA)\", \"link_title\": \"Comments\", \"author_flair_css_class\": null, \"name\": \"t1_eqyrflk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://goldenpigames.github.io/BreadStapler/\\\"\\u003EPlay it now!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBe my fan on \\u003Ca href=\\\"https://www.kongregate.com/accounts/goldenPiGames\\\"\\u003EKongregate\\u003C/a\\u003E, \\u003Ca href=\\\"https://goldenpigames.newgrounds.com/\\\"\\u003ENewgrounds\\u003C/a\\u003E, and maybe the \\u003Ca href=\\\"https://www.youtube.com/channel/UCb4QliR5GWppUqOLXBYKYHw\\\"\\u003EYouTube\\u003C/a\\u003E that I never use. Full code on \\u003Ca href=\\\"https://github.com/goldenPiGames/BreadStapler\\\"\\u003EgitHub\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETrailer made by \\u003Ca href=\\\"/u/Owl_Towels\\\"\\u003Eu/Owl_Towels\\u003C/a\\u003E: \\u003Ca href=\\\"https://www.youtube.com/channel/UCpiem29VSZ0y2EbHOtc7tlA\\\"\\u003EYouTube\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzzep3/comments/eqyrflk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzzep3/comments/\", \"report_reasons\": null, \"link_author\": \"Prexot\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bzzep3/comments/\", \"created\": 1560416974.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzl5p5\", \"author_flair_template_id\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwe7dx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"nnreddit-user\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560356100.0, \"send_replies\": true, \"parent_id\": \"t3_bzl5p5\", \"score\": 1, \"author_fullname\": \"t2_3um52nx7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E\\u003E\\u003E\\u003E\\u003E aegisninja \\u003Caegisninja\\u003E writes:\\n\\n\\u003E https://www.youtube.com/watch?v=hWPKGP6n5qk\\u0026feature=youtu.be\\n\\nthis be a test\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eqwe7dx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eaegisninja \\u0026lt;aegisninja\\u0026gt; writes:\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=hWPKGP6n5qk\\u0026amp;feature=youtu.be\\\"\\u003Ehttps://www.youtube.com/watch?v=hWPKGP6n5qk\\u0026amp;feature=youtu.be\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003Ethis be a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": false, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzl5p5/test/eqwe7dx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzl5p5/test/\", \"report_reasons\": null, \"link_author\": \"aegisninja\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=hWPKGP6n5qk\\u0026feature=youtu.be\", \"created\": 1560384900.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"rte_mode\": \"markdown\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzo7q6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqw0q32\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Decahedran\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560351861.0, \"send_replies\": true, \"parent_id\": \"t3_bzo7q6\", \"score\": 1, \"author_fullname\": \"t2_17ck50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Where are you posting to? Wanna check it out\", \"link_title\": \"-\", \"author_flair_css_class\": null, \"name\": \"t1_eqw0q32\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhere are you posting to? Wanna check it out\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzo7q6/_/eqw0q32/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"report_reasons\": null, \"link_author\": \"OverlordMikan\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"created\": 1560380661.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzmm85\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtkmc8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imguralbumbot\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560313512.0, \"send_replies\": true, \"parent_id\": \"t1_eqtklpz\", \"score\": 1, \"author_fullname\": \"t2_180i376\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"^(Hi, I'm a bot for linking direct images of albums with only 1 image)\\n\\n**https://i.imgur.com/g1bMj4I.jpg**\\n\\n^^[Source](https://github.com/AUTplayed/imguralbumbot) ^^| ^^[Why?](https://github.com/AUTplayed/imguralbumbot/blob/master/README.md) ^^| ^^[Creator](https://np.reddit.com/user/AUTplayed/) ^^| ^^[ignoreme](https://np.reddit.com/message/compose/?to=imguralbumbot\\u0026subject=ignoreme\\u0026message=ignoreme)^^| ^^[deletthis](https://np.reddit.com/message/compose/?to=imguralbumbot\\u0026subject=delet%20this\\u0026message=delet%20this%20eqtkmc8)\", \"link_title\": \"Imgur test\", \"author_flair_css_class\": null, \"name\": \"t1_eqtkmc8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Csup\\u003EHi, I\\u0026#39;m a bot for linking direct images of albums with only 1 image\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"https://i.imgur.com/g1bMj4I.jpg\\\"\\u003Ehttps://i.imgur.com/g1bMj4I.jpg\\u003C/a\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/AUTplayed/imguralbumbot\\\"\\u003ESource\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/AUTplayed/imguralbumbot/blob/master/README.md\\\"\\u003EWhy?\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://np.reddit.com/user/AUTplayed/\\\"\\u003ECreator\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://np.reddit.com/message/compose/?to=imguralbumbot\\u0026amp;subject=ignoreme\\u0026amp;message=ignoreme\\\"\\u003Eignoreme\\u003C/a\\u003E\\u003Csup\\u003E\\u003Csup\\u003E|\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Ca href=\\\"https://np.reddit.com/message/compose/?to=imguralbumbot\\u0026amp;subject=delet%20this\\u0026amp;message=delet%20this%20eqtkmc8\\\"\\u003Edeletthis\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzmm85/imgur_test/eqtkmc8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzmm85/imgur_test/\", \"report_reasons\": null, \"link_author\": \"GloomyTeddyBear96\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/vft9wGE\", \"created\": 1560342312.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzmm85\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqtklpz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GloomyTeddyBear96\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560313501.0, \"send_replies\": true, \"parent_id\": \"t3_bzmm85\", \"score\": 1, \"author_fullname\": \"t2_3k2b5rqg\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Imgur](https://imgur.com/a/vft9wGE)\", \"link_title\": \"Imgur test\", \"author_flair_css_class\": null, \"name\": \"t1_eqtklpz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/vft9wGE\\\"\\u003EImgur\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzmm85/imgur_test/eqtklpz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bzmm85/imgur_test/\", \"report_reasons\": null, \"link_author\": \"GloomyTeddyBear96\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/vft9wGE\", \"created\": 1560342301.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eql2f7h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SilenceoftheSamz\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560135803.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_espuh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"nah\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eql2f7h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enah\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eql2f7h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560164603.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykfrf\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqinbdb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560090124.0, \"send_replies\": true, \"parent_id\": \"t3_bykfrf\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I'm \\\\*pretty\\\\* sure I found it:\\n\\n\\\\[Not of This Earth\\\\]([https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz\\\\_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1](https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1))\", \"link_title\": \"NOTE post\", \"author_flair_css_class\": null, \"name\": \"t1_eqinbdb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m *pretty* sure I found it:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Not of This Earth](\\u003Ca href=\\\"https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\\"\\u003Ehttps://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykfrf/note_post/eqinbdb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykfrf/note_post/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykfrf/note_post/\", \"created\": 1560118924.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqin2uk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560090013.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\\\*\\\\[Umbrella Monster\\\\]\\\\*\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqin2uk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E*[Umbrella Monster]*\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqin2uk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118813.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimxup\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089940.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\\\[Umbrella Monster\\\\](\\\"[https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz\\\\_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1](https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1)\\\")\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimxup\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[Umbrella Monster](\\u0026quot;\\u003Ca href=\\\"https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\\"\\u003Ehttps://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\u003C/a\\u003E\\u0026quot;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimxup/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118740.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimw1d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089914.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[Umbrella Monster\\\\]([https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz\\\\_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1](https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026f=1))\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimw1d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[Umbrella Monster](\\u003Ca href=\\\"https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\\"\\u003Ehttps://proxy.duckduckgo.com/iu/?u=http%3A%2F%2F2.bp.blogspot.com%2F-SrH57G0YscM%2FUOtBFa3wz_I%2FAAAAAAAACYI%2FcdthOnHCknc%2Fs1600%2FNot%2Bof%2BThis%2BEarth%2B1957%2Bumbrella%2Bmonster.jpg\\u0026amp;f=1\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimw1d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118714.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimf19\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089669.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\\\[Umbrella Monster\\\\]\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\" )\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimf19\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[Umbrella Monster]\\u0026quot;\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u003C/a\\u003E\\u0026quot; )\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimf19/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118469.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimcz5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089638.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n [Umbrella Monster](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimcz5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E[Umbrella Monster](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimcz5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118438.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqimask\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089608.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\n\\n [Umbrella Monster](\\n\\n\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\" )\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqimask\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E[Umbrella Monster](\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u003C/a\\u003E\\u0026quot; )\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqimask/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118408.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqim6p5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089551.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"`[Umbrella Monster](`\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\" )\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqim6p5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003E[Umbrella Monster](\\u003C/code\\u003E\\u0026quot;\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u003C/a\\u003E\\u0026quot; )\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqim6p5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118351.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqim0dz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089457.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\"\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqim0dz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u003C/a\\u003E\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqim0dz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118257.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqilvoa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089394.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\u003Ca href=\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\"\\u003EUmbrella Monster\\u003C/a\\u003E\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqilvoa\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;a href=\\u0026quot;[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\u0026quot;\\u0026gt;Umbrella Monster\\u0026lt;/a\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqilvoa/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118194.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqilpg6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089308.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\u003Ca href=\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\\\\\\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\"\\u003EUmbrella](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella)\\\"\\u003E\\u003C/a\\u003E\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqilpg6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;a href=\\u0026quot;[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\\\\\\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\u0026quot;\\u0026gt;Umbrella](\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg%5D(http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella)%22%3E\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella)\\u0026quot;\\u0026gt;\\u003C/a\\u003E\\u0026lt;/a\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqilpg6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118108.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqilj47\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089217.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" \\u003Ca href=\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\\\\\\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\\](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\"\\u003EUmbrella](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella)\\u003C/a\\u003E\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqilj47\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;a href=\\u0026quot;[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\\\\\\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg\\\\](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\u0026quot;\\u0026gt;Umbrella](\\u003Ca href=\\\"http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg%5D(http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella\\\"\\u003Ehttp://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz/_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)%22%3EUmbrella\\u003C/a\\u003E)\\u0026lt;/a\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqilj47/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560118017.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bykj2c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqilgsh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RockSlyde\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1560089186.0, \"send_replies\": true, \"parent_id\": \"t3_bykj2c\", \"score\": 1, \"author_fullname\": \"t2_13h189\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003Ca href=\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\"\\u003EUmbrella\\u003C/a\\u003E\", \"link_title\": \"pic test\", \"author_flair_css_class\": null, \"name\": \"t1_eqilgsh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;a href=\\u0026quot;[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\u0026quot;\\u0026gt;Umbrella\\u0026lt;/a\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/eqilgsh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"report_reasons\": null, \"link_author\": \"RockSlyde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"created\": 1560117986.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bydio9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqglkyt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pd50\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560038304.0, \"send_replies\": true, \"parent_id\": \"t3_bydio9\", \"score\": 1, \"author_fullname\": \"t2_3wp9tjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"higher res image: [https://shroomposter.com](https://shroomposter.com/)\", \"link_title\": \"test 300ppi tinypng\", \"author_flair_css_class\": null, \"name\": \"t1_eqglkyt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehigher res image: \\u003Ca href=\\\"https://shroomposter.com/\\\"\\u003Ehttps://shroomposter.com\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bydio9/test_300ppi_tinypng/eqglkyt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bydio9/test_300ppi_tinypng/\", \"report_reasons\": null, \"link_author\": \"pd50\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/g63xs5ndn7331.png\", \"created\": 1560067104.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bydio9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqgjotx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ExtraAnchovies\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1560037453.0, \"send_replies\": true, \"parent_id\": \"t3_bydio9\", \"score\": 1, \"author_fullname\": \"t2_5kogj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"trippy\", \"link_title\": \"test 300ppi tinypng\", \"author_flair_css_class\": null, \"name\": \"t1_eqgjotx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etrippy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bydio9/test_300ppi_tinypng/eqgjotx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bydio9/test_300ppi_tinypng/\", \"report_reasons\": null, \"link_author\": \"pd50\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/g63xs5ndn7331.png\", \"created\": 1560066253.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_an940a\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqgdmdi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"swornintheratking\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560034822.0, \"send_replies\": true, \"parent_id\": \"t1_enyeogf\", \"score\": 1, \"author_fullname\": \"t2_165u0z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://sxyprn.com/post/5cea75f1d7ffa.html?sk=Jordan-Kennedy\\u0026so=0\\u0026ss=latest](https://sxyprn.com/post/5cea75f1d7ffa.html?sk=Jordan-Kennedy\\u0026so=0\\u0026ss=latest)\", \"link_title\": \"Prn\", \"author_flair_css_class\": null, \"name\": \"t1_eqgdmdi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://sxyprn.com/post/5cea75f1d7ffa.html?sk=Jordan-Kennedy\\u0026amp;so=0\\u0026amp;ss=latest\\\"\\u003Ehttps://sxyprn.com/post/5cea75f1d7ffa.html?sk=Jordan-Kennedy\\u0026amp;so=0\\u0026amp;ss=latest\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/an940a/prn/eqgdmdi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/an940a/prn/\", \"report_reasons\": null, \"link_author\": \"swornintheratking\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/an940a/prn/\", \"created\": 1560063622.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bydbbm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqg6p8h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BooCMB\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560032371.0, \"send_replies\": true, \"parent_id\": \"t1_eqg6o86\", \"score\": 1, \"author_fullname\": \"t2_2e1vudyl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hey /u/CommonMisspellingBot, just a quick heads up: \\nYour spelling hints are really shitty because they're all essentially \\\"remember the fucking spelling of the fucking word\\\".\\n\\nAnd your fucking delete function doesn't work. You're useless.\\n\\nHave a nice day!\\n\\n[^Save ^your ^breath, ^I'm ^a ^bot.](https://www.reddit.com/user/BooCMB/comments/9vnzpd/faq/)\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eqg6p8h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey \\u003Ca href=\\\"/u/CommonMisspellingBot\\\"\\u003E/u/CommonMisspellingBot\\u003C/a\\u003E, just a quick heads up:\\u003Cbr/\\u003E\\nYour spelling hints are really shitty because they\\u0026#39;re all essentially \\u0026quot;remember the fucking spelling of the fucking word\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd your fucking delete function doesn\\u0026#39;t work. You\\u0026#39;re useless.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHave a nice day!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/user/BooCMB/comments/9vnzpd/faq/\\\"\\u003E\\u003Csup\\u003ESave\\u003C/sup\\u003E \\u003Csup\\u003Eyour\\u003C/sup\\u003E \\u003Csup\\u003Ebreath,\\u003C/sup\\u003E \\u003Csup\\u003EI\\u0026#39;m\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bydbbm/test/eqg6p8h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bydbbm/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/vg4s1oifj7331.jpg\", \"created\": 1560061171.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bydbbm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqg6o86\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"CommonMisspellingBot\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560032361.0, \"send_replies\": true, \"parent_id\": \"t1_eqg6ns5\", \"score\": 1, \"author_fullname\": \"t2_15yi94\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hey, Arch\\\\_girl, just a quick heads-up: \\n**recieve** is actually spelled **receive**. You can remember it by **e before i**. \\nHave a nice day!\\n\\n^^^^The ^^^^parent ^^^^commenter ^^^^can ^^^^reply ^^^^with ^^^^'delete' ^^^^to ^^^^delete ^^^^this ^^^^comment.\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eqg6o86\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, Arch_girl, just a quick heads-up:\\u003Cbr/\\u003E\\n\\u003Cstrong\\u003Erecieve\\u003C/strong\\u003E is actually spelled \\u003Cstrong\\u003Ereceive\\u003C/strong\\u003E. You can remember it by \\u003Cstrong\\u003Ee before i\\u003C/strong\\u003E.\\u003Cbr/\\u003E\\nHave a nice day!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003EThe\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Eparent\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Ecommenter\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Ecan\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Ereply\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Ewith\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u0026#39;delete\\u0026#39;\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Eto\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Edelete\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Ethis\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Ecomment.\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bydbbm/test/eqg6o86/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bydbbm/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/vg4s1oifj7331.jpg\", \"created\": 1560061161.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560032542.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bydbbm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqg6ns5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Arch_girl\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1560032356.0, \"send_replies\": true, \"parent_id\": \"t3_bydbbm\", \"score\": 1, \"author_fullname\": \"t2_f79gn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"This is the link to my [Budget Spreadsheet](https://docs.google.com/spreadsheets/d/1CZfFnNBsVJxnxlE2GTv9o2GtEN4rzfZ7o8Yqe4KmAQ8/copy)\\n\\nI see many people asking for advise on budgeting and the main advice is to keep a track of money flow, and to write down all of the expenses.\\n\\nI have been using a spreadsheet for a couple of years, constantly tweaking it to my needs. In it I keep track of the money I recieve and try to keep track of every expense i make. It helps to see where the money is going and it also already helped me catch some forgotten bills before they were overdue. For me it also helps with impulse buys, because knowing that I will have to write it down makes me rethink about it.\\n\\nHere is a copy version of that, which can be costumized as needed.\\n\\nIt is based on a free template, altered to be able to continuously track transations. There is no need to make a new one every month and all the transactions history stay in one file.It\\u00b4s on Google Sheets so it is acessible in any computer with internet and also on mobile.\\n\\nThere are instructions inside the file.\\n\\nI hope that someone can take use of it and any suggestions are welcome.\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eqg6ns5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is the link to my \\u003Ca href=\\\"https://docs.google.com/spreadsheets/d/1CZfFnNBsVJxnxlE2GTv9o2GtEN4rzfZ7o8Yqe4KmAQ8/copy\\\"\\u003EBudget Spreadsheet\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI see many people asking for advise on budgeting and the main advice is to keep a track of money flow, and to write down all of the expenses.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been using a spreadsheet for a couple of years, constantly tweaking it to my needs. In it I keep track of the money I recieve and try to keep track of every expense i make. It helps to see where the money is going and it also already helped me catch some forgotten bills before they were overdue. For me it also helps with impulse buys, because knowing that I will have to write it down makes me rethink about it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is a copy version of that, which can be costumized as needed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is based on a free template, altered to be able to continuously track transations. There is no need to make a new one every month and all the transactions history stay in one file.It\\u00b4s on Google Sheets so it is acessible in any computer with internet and also on mobile.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere are instructions inside the file.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI hope that someone can take use of it and any suggestions are welcome.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bydbbm/test/eqg6ns5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bydbbm/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/vg4s1oifj7331.jpg\", \"created\": 1560061156.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bybucw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqg6kwd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pd50\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560032326.0, \"send_replies\": true, \"parent_id\": \"t3_bybucw\", \"score\": 1, \"author_fullname\": \"t2_3wp9tjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://shroomposter.com](https://shroomposter.com/)\", \"link_title\": \"tinypng test\", \"author_flair_css_class\": null, \"name\": \"t1_eqg6kwd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://shroomposter.com/\\\"\\u003Ehttps://shroomposter.com\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bybucw/tinypng_test/eqg6kwd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bybucw/tinypng_test/\", \"report_reasons\": null, \"link_author\": \"pd50\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/n715q8p3s6331.png\", \"created\": 1560061126.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bybgq8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqfjuu3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pd50\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560021974.0, \"send_replies\": true, \"parent_id\": \"t3_bybgq8\", \"score\": 1, \"author_fullname\": \"t2_3wp9tjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://shroomposter.com/](https://shroomposter.com/)\", \"link_title\": \"test larger jpeg\", \"author_flair_css_class\": null, \"name\": \"t1_eqfjuu3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://shroomposter.com/\\\"\\u003Ehttps://shroomposter.com/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bybgq8/test_larger_jpeg/eqfjuu3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bybgq8/test_larger_jpeg/\", \"report_reasons\": null, \"link_author\": \"pd50\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/ei1vdxvml6331.jpg\", \"created\": 1560050774.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_byamfk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqf7zu2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pd50\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1560016564.0, \"send_replies\": true, \"parent_id\": \"t3_byamfk\", \"score\": 1, \"author_fullname\": \"t2_3wp9tjx2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://shroomposter.com/](https://shroomposter.com/)\", \"link_title\": \"jpeg test\", \"author_flair_css_class\": null, \"name\": \"t1_eqf7zu2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://shroomposter.com/\\\"\\u003Ehttps://shroomposter.com/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/byamfk/jpeg_test/eqf7zu2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/byamfk/jpeg_test/\", \"report_reasons\": null, \"link_author\": \"pd50\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/iwrzauii36331.jpg\", \"created\": 1560045364.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxxrzi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqafucn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WikiTextBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559932103.0, \"send_replies\": true, \"parent_id\": \"t1_eqaftwp\", \"score\": 1, \"author_fullname\": \"t2_32duad4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Marvin the Paranoid Android**\\n\\nMarvin the Paranoid Android is a fictional character in The Hitchhiker's Guide to the Galaxy series by Douglas Adams. Marvin is the ship's robot aboard the starship Heart of Gold. Originally built as one of many failed prototypes of Sirius Cybernetics Corporation's GPP (Genuine People Personalities) technology, Marvin is afflicted with severe depression and boredom, in part because he has a \\\"brain the size of a planet\\\" which he is seldom, if ever, given the chance to use. Indeed, the true horror of Marvin's existence is that no task he could be given would occupy even the tiniest fraction of his vast intellect.\\n\\n***\\n\\n^[ [^PM](https://www.reddit.com/message/compose?to=kittens_from_space) ^| [^Exclude ^me](https://reddit.com/message/compose?to=WikiTextBot\\u0026message=Excludeme\\u0026subject=Excludeme) ^| [^Exclude ^from ^subreddit](https://np.reddit.com/r/PostPreview/about/banned) ^| [^FAQ ^/ ^Information](https://np.reddit.com/r/WikiTextBot/wiki/index) ^| [^Source](https://github.com/kittenswolf/WikiTextBot) ^]\\n^Downvote ^to ^remove ^| ^v0.28\", \"link_title\": \"test baby test baby 123\", \"author_flair_css_class\": null, \"name\": \"t1_eqafucn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EMarvin the Paranoid Android\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMarvin the Paranoid Android is a fictional character in The Hitchhiker\\u0026#39;s Guide to the Galaxy series by Douglas Adams. Marvin is the ship\\u0026#39;s robot aboard the starship Heart of Gold. Originally built as one of many failed prototypes of Sirius Cybernetics Corporation\\u0026#39;s GPP (Genuine People Personalities) technology, Marvin is afflicted with severe depression and boredom, in part because he has a \\u0026quot;brain the size of a planet\\u0026quot; which he is seldom, if ever, given the chance to use. Indeed, the true horror of Marvin\\u0026#39;s existence is that no task he could be given would occupy even the tiniest fraction of his vast intellect.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E[\\u003C/sup\\u003E \\u003Ca href=\\\"https://www.reddit.com/message/compose?to=kittens_from_space\\\"\\u003E\\u003Csup\\u003EPM\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Ca href=\\\"https://reddit.com/message/compose?to=WikiTextBot\\u0026amp;message=Excludeme\\u0026amp;subject=Excludeme\\\"\\u003E\\u003Csup\\u003EExclude\\u003C/sup\\u003E \\u003Csup\\u003Eme\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Ca href=\\\"https://np.reddit.com/r/PostPreview/about/banned\\\"\\u003E\\u003Csup\\u003EExclude\\u003C/sup\\u003E \\u003Csup\\u003Efrom\\u003C/sup\\u003E \\u003Csup\\u003Esubreddit\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Ca href=\\\"https://np.reddit.com/r/WikiTextBot/wiki/index\\\"\\u003E\\u003Csup\\u003EFAQ\\u003C/sup\\u003E \\u003Csup\\u003E/\\u003C/sup\\u003E \\u003Csup\\u003EInformation\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Ca href=\\\"https://github.com/kittenswolf/WikiTextBot\\\"\\u003E\\u003Csup\\u003ESource\\u003C/sup\\u003E\\u003C/a\\u003E \\u003Csup\\u003E]\\u003C/sup\\u003E\\n\\u003Csup\\u003EDownvote\\u003C/sup\\u003E \\u003Csup\\u003Eto\\u003C/sup\\u003E \\u003Csup\\u003Eremove\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Csup\\u003Ev0.28\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxxrzi/test_baby_test_baby_123/eqafucn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxxrzi/test_baby_test_baby_123/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxxrzi/test_baby_test_baby_123/\", \"created\": 1559960903.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560059410.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsgv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9cbr7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Heroquetarro10\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559899469.0, \"send_replies\": true, \"parent_id\": \"t3_bxsgv0\", \"score\": 1, \"author_fullname\": \"t2_288py4gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E \\u003Etest test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test\\n\\u003E test\\n\\nYes\", \"link_title\": \"Text\", \"author_flair_css_class\": null, \"name\": \"t1_eq9cbr7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etest test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test\\ntest\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYes\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/eq9cbr7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"report_reasons\": null, \"link_author\": \"Heroquetarro10\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"created\": 1559928269.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1560060134.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bxsgv0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq9c8db\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Heroquetarro10\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1559899311.0, \"send_replies\": true, \"parent_id\": \"t3_bxsgv0\", \"score\": 1, \"author_fullname\": \"t2_288py4gj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E test \\u003E\\u003E test\", \"link_title\": \"Text\", \"author_flair_css_class\": null, \"name\": \"t1_eq9c8db\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etest \\u0026gt;\\u0026gt; test\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/eq9c8db/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"report_reasons\": null, \"link_author\": \"Heroquetarro10\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"created\": 1559928111.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwsi3l\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eq4tbku\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"testforcal\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559785341.0, \"send_replies\": true, \"parent_id\": \"t3_bwsi3l\", \"score\": 1, \"author_fullname\": \"t2_3wac7yjb\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"test!\", \"link_title\": \"I CAN GO 15 SECONDS WITH ANYTHING. Howard looks like he is going to make doodie in his pants when GB hijacks his mic. Would GB walk away from this encounter if he bullied Howard in 2019? T O P L E S S\", \"author_flair_css_class\": null, \"name\": \"t1_eq4tbku\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/eq4tbku/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/\", \"report_reasons\": null, \"link_author\": \"Gooforme\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\\u0026t=2s\", \"created\": 1559814141.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwme1e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyizc2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"InsiderMemeBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559637515.0, \"send_replies\": true, \"parent_id\": \"t3_bwme1e\", \"score\": 1, \"author_fullname\": \"t2_2sm6difp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Template](/r/InsiderMemeTrading/comments/bwmd74/test/)\", \"link_title\": \"Image test\", \"author_flair_css_class\": null, \"name\": \"t1_epyizc2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/InsiderMemeTrading/comments/bwmd74/test/\\\"\\u003ETemplate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwme1e/image_test/epyizc2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwme1e/image_test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/xju3qepdxa231.jpg\", \"created\": 1559666315.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwme78\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyiz7w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Crywren\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559637509.0, \"send_replies\": true, \"parent_id\": \"t3_bwme78\", \"score\": 1, \"author_fullname\": \"t2_18vy1b\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif](https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif)\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_epyiz7w\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif\\\"\\u003Ehttps://media.giphy.com/media/2xPMd4TE85dKIUFciC/giphy.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwme78/test/epyiz7w/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwme78/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/vzxqgtbhxa231.png\", \"created\": 1559666309.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwmads\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epyih18\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"InsiderMemeBot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559636627.0, \"send_replies\": true, \"parent_id\": \"t3_bwmads\", \"score\": 1, \"author_fullname\": \"t2_2sm6difp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[Template](/r/InsiderMemeTrading/comments/bwmajp/cap_pointing/)\", \"link_title\": \"yeet\", \"author_flair_css_class\": null, \"name\": \"t1_epyih18\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/InsiderMemeTrading/comments/bwmajp/cap_pointing/\\\"\\u003ETemplate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bwmads/yeet/epyih18/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bwmads/yeet/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/b0ad3b9gua231.jpg\", \"created\": 1559665427.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bw86r0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epwwjmw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"erebusmaster\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559586407.0, \"send_replies\": true, \"parent_id\": \"t3_bw86r0\", \"score\": 1, \"author_fullname\": \"t2_gbhji\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"success!\", \"link_title\": \"testagain3\", \"author_flair_css_class\": null, \"name\": \"t1_epwwjmw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Esuccess!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bw86r0/testagain3/epwwjmw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"report_reasons\": null, \"link_author\": \"erebusmaster\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"created\": 1559615207.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epn2c0q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Brewsterion\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559320247.0, \"send_replies\": true, \"parent_id\": \"t1_epn250f\", \"score\": 1, \"author_fullname\": \"t2_118qqr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"A few days usually, just send it to the mods to get it approved. They\\u2019ll give some more feedback if it\\u2019s needed.\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_epn2c0q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA few days usually, just send it to the mods to get it approved. They\\u2019ll give some more feedback if it\\u2019s needed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/epn2c0q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559349047.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epn250f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"SYwaves\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559320172.0, \"send_replies\": true, \"parent_id\": \"t1_eplphoy\", \"score\": 2, \"author_fullname\": \"t2_2j4j6rg7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks man. I\\u2019m still thinking of making more edits, but 3790 makes taking the declass to any solid conclusion difficult:P\\n\\nAs a side note, how long does it usually take to get approved?\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_epn250f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks man. I\\u2019m still thinking of making more edits, but 3790 makes taking the declass to any solid conclusion difficult:P\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a side note, how long does it usually take to get approved?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/epn250f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559348972.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv7huc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epm852r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"binjajer\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559309424.0, \"send_replies\": false, \"parent_id\": \"t3_bv7huc\", \"score\": 1, \"author_fullname\": \"t2_3g10qxu5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Tired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens? \\n\\n\\nCheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.) \\n\\n\\n[https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/](https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/) \\n\\n\\nSquadron discord details will be disbursed upon application. \\n\\n\\n Fly bigly, commanders!\", \"link_title\": \"Make the Galaxy Great Again!\", \"author_flair_css_class\": null, \"name\": \"t1_epm852r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETired of Hack Hudson, Meek Mahon and Dodgy Duval? Tired of looking on as unchecked waves of Thargoid immigrants invade our precious homeland? Tired of miners being treated like second-class citizens? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECheck out our recruitment thread on the forums and find MGGA through the in-game squadron menu \\u2013 everyone is welcome! (barring, of course: liberal bug-huggers, Galnet Fake News employees, pollsters, and John Jameson worshippers - we prefer our war heroes competent enough not to crash into a planet.) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\\"\\u003Ehttps://forums.frontier.co.uk/index.php?threads/make-the-galaxy-great-again.512906/\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESquadron discord details will be disbursed upon application. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFly bigly, commanders!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/epm852r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv7huc/make_the_galaxy_great_again/\", \"created\": 1559338224.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bv2mv5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eplphoy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Brewsterion\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1559300826.0, \"send_replies\": true, \"parent_id\": \"t3_bv2mv5\", \"score\": 1, \"author_fullname\": \"t2_118qqr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"As a frequent poster to SCPD, I like what you\\u2019ve done here with explaining all the references and the main theme of the article. Good luck on getting it approved by mods.\", \"link_title\": \"test dc\", \"author_flair_css_class\": null, \"name\": \"t1_eplphoy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a frequent poster to SCPD, I like what you\\u2019ve done here with explaining all the references and the main theme of the article. Good luck on getting it approved by mods.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bv2mv5/test_dc/eplphoy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"report_reasons\": null, \"link_author\": \"SYwaves\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bv2mv5/test_dc/\", \"created\": 1559329626.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_buz6bd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epjgsbw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dwolfj\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559253716.0, \"send_replies\": true, \"parent_id\": \"t3_buz6bd\", \"score\": 1, \"author_fullname\": \"t2_2awf2pwl\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \" ............................................________ \\n ....................................,.-'\\\"...................``~., \\n .............................,.-\\\"...................................\\\"-., \\n .........................,/...............................................\\\":, \\n .....................,?......................................................, \\n .................../...........................................................,} \\n ................./......................................................,:`^`..} \\n .............../...................................................,:\\\"........./ \\n ..............?.....__.........................................:`.........../ \\n ............./__.(.....\\\"~-,_..............................,:`........../ \\n .........../(_....\\\"~,_........\\\"~,_....................,:`........_/ \\n ..........{.._$;_......\\\"=,_.......\\\"-,_.......,.-~-,},.~\\\";/....} \\n ...........((.....*~_.......\\\"=-._......\\\";,,./`..../\\\"............../ \\n ...,,,___.`~,......\\\"~.,....................`.....}............../ \\n ............(....`=-,,.......`........................(......;_,,-\\\" \\n ............/.`~,......`-...................................../ \\n .............`~.*-,.....................................|,./.....,__ \\n ,,_..........}.\\u003E-._...................................|..............`=~-, \\n .....`=~-,__......`,................................. \\n ...................`=~-,,.,............................... \\n ................................`:,,...........................`..............__ \\n .....................................`=-,...................,%`\\u003E--==`` \\n ........................................_..........._,-%.......` \\n ...................................,\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_epjgsbw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E............................................________ \\n....................................,.-\\u0026#39;\\u0026quot;...................``~., \\n.............................,.-\\u0026quot;...................................\\u0026quot;-., \\n.........................,/...............................................\\u0026quot;:, \\n.....................,?......................................................, \\n.................../...........................................................,} \\n................./......................................................,:`^`..} \\n.............../...................................................,:\\u0026quot;........./ \\n..............?.....__.........................................:`.........../ \\n............./__.(.....\\u0026quot;~-,_..............................,:`........../ \\n.........../(_....\\u0026quot;~,_........\\u0026quot;~,_....................,:`........_/ \\n..........{.._$;_......\\u0026quot;=,_.......\\u0026quot;-,_.......,.-~-,},.~\\u0026quot;;/....} \\n...........((.....*~_.......\\u0026quot;=-._......\\u0026quot;;,,./`..../\\u0026quot;............../ \\n...,,,___.`~,......\\u0026quot;~.,....................`.....}............../ \\n............(....`=-,,.......`........................(......;_,,-\\u0026quot; \\n............/.`~,......`-...................................../ \\n.............`~.*-,.....................................|,./.....,__ \\n,,_..........}.\\u0026gt;-._...................................|..............`=~-, \\n.....`=~-,__......`,................................. \\n...................`=~-,,.,............................... \\n................................`:,,...........................`..............__ \\n.....................................`=-,...................,%`\\u0026gt;--==`` \\n........................................_..........._,-%.......` \\n...................................,\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/buz6bd/test/epjgsbw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"report_reasons\": null, \"link_author\": \"dwolfj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/buz6bd/test/\", \"created\": 1559282516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbhff3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559142650.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts\\n**1 Correct Seed:** 15pts\\n**2 Correct Seeds:** +30pts(45 total)\\n**(S)emi(F)inalist:** 180pts\\n**(F)inalist:** 380pts\\n**(W)inners:** 780pts\\n**Score in favor of your winner:** 190pts\\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | |\\n | | | | | | |\\n Group A| | | | | | |\\nNRG|QF |1 |SF |F |W |4-3 | |\\nINTZ|QF |2 | | | | | |\\nPSG| | | | | | | WC |\\n | | | | | | |\\nGroup B | | | | | | | \\nRV | | | | | | | |\\nG2 |QF |1 |SF |F | | | |\\nOOO |QF |2 | | | | | |\\n | | | | | | |\\nGroup C | | | | | | |\\nRNG |QF |1 |SF | | | | |\\nFCB |QF |2 |SF | | | | |\\nRGE | | | | | | | |\\n | | | | | | |\\nGroup D | | | | | | |\\nLKE |QF |2 | | | | | |\\nC9 | | | | | | | WC |\\nTT |QF |1 | | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbhff3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts\\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15pts\\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30pts(45 total)\\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180pts\\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380pts\\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780pts\\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190pts\\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2)\\n | | | | | | |\\n | | | | | | |\\n Group A| | | | | | |\\nNRG|QF |1 |SF |F |W |4-3 | |\\nINTZ|QF |2 | | | | | |\\nPSG| | | | | | | WC |\\n | | | | | | |\\nGroup B | | | | | | | \\nRV | | | | | | | |\\nG2 |QF |1 |SF |F | | | |\\nOOO |QF |2 | | | | | |\\n | | | | | | |\\nGroup C | | | | | | |\\nRNG |QF |1 |SF | | | | |\\nFCB |QF |2 |SF | | | | |\\nRGE | | | | | | | |\\n | | | | | | |\\nGroup D | | | | | | |\\nLKE |QF |2 | | | | | |\\nC9 | | | | | | | WC |\\nTT |QF |1 | | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbhff3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559171450.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbfzp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559142036.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n(Q)uarter(F)inalist: 100 pts 1 Correct Seed: 15 pts 2 Correct Seeds: +30 pts(45 total) (S)emi(F)inalist: 180 pts (F)inalist: 380 pts (W)inners: 780 pts Score in favor of your winner: 190 pts Score in favor of your winner AND you guessed the other Finalist: +95pts(285 total)\\n\\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\nWhat predictions would look like is this...\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n| | | | | | | | | | | | \\nGroup A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 | \\nINTZ|QF |2 | | | | | \\nPSG| | | | | | | \\nWC | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | | \\nOOO |QF |2 | | | | | | | | | | | \\nGroup C | | | | | | \\nRNG |QF |1 |SF | | | | \\nFCB |QF |2 |SF | | | | \\nRGE | | | | | | | | | | | | | \\nGroup D | | | | | | \\nLKE |QF |2 | | | | | \\nC9 | | | | | | | WC \\nTT |QF |1 | | | | |\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\nAdvice: Take the teams\\n\\nA1 v B2 D1 v C2\\n\\nB1 v A2 C1 v D2\\n\\nAnd substitute them with your predictions to keep track:\\n\\nNRG v OOO TT v FCB\\n\\nG2 v INTZ RNG v LKE\\n\\n Disclaimer: I\\u2019ll post this about every week and a couple days before LAN.\\n\\nRules and Guidelines:\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game. Please submit your predictions as unedited comments or Dms to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\nQuestions\\n\\nWhy am I not doing Dreamhack? I haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\nWill I do this for other tournaments in the future? For majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\nWill there be analysis on my part? Likely, but not guaranteed. I may try to get someone else on board.\\n\\nWhen and where will results be posted? Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n\\nNOTES:\\n\\nI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\nTwo Questions From Me:\\n\\nHow would you like the Wildcard picks to work? I\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n\\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be?\\n\\nThe table format will be in the comments.\\n\\nOne with a blank sheet. The other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbfzp8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(Q)uarter(F)inalist: 100 pts 1 Correct Seed: 15 pts 2 Correct Seeds: +30 pts(45 total) (S)emi(F)inalist: 180 pts (F)inalist: 380 pts (W)inners: 780 pts Score in favor of your winner: 190 pts Score in favor of your winner AND you guessed the other Finalist: +95pts(285 total)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n| | | | | | | | | | | | \\nGroup A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 | \\nINTZ|QF |2 | | | | | \\nPSG| | | | | | | \\nWC | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | | \\nOOO |QF |2 | | | | | | | | | | | \\nGroup C | | | | | | \\nRNG |QF |1 |SF | | | | \\nFCB |QF |2 |SF | | | | \\nRGE | | | | | | | | | | | | | \\nGroup D | | | | | | \\nLKE |QF |2 | | | | | \\nC9 | | | | | | | WC \\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2 D1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2 C1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO TT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ RNG v LKE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERules and Guidelines:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game. Please submit your predictions as unedited comments or Dms to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuestions\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy am I not doing Dreamhack? I haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWill I do this for other tournaments in the future? For majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWill there be analysis on my part? Likely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen and where will results be posted? Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENOTES:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETwo Questions From Me:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work? I\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet. The other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbfzp8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170836.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbekt2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559141502.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Pre-Post\\n\\nHello r/RocketLeagueEsports, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\n\\nThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\n\\nI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\n\\nThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\n\\n**(Q)uarter(F)inalist:** 100 pts \\n**1 Correct Seed:** 15 pts \\n**2 Correct Seeds:** +30 pts(45 total) \\n**(S)emi(F)inalist:** 180 pts \\n**(F)inalist:** 380 pts \\n**(W)inners:** 780 pts \\n**Score in favor of your winner:** 190 pts \\n**Score in favor of your winner AND you guessed the other Finalist:** +95pts(285 total) \\n \\n**WC-**Can only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\n\\n\\n What predictions would look like is this...\\n \\n\\n\\nTeams\\t|QF(8)\\t|Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\n\\n\\n\\n\\n\\nI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\n\\n\\nAdvice: Take the teams\\n\\nA1 v B2\\nD1 v C2\\n \\n \\n \\nB1 v A2\\nC1 v D2\\n \\n \\nAnd substitute them with your predictions to keep track:\\n \\nNRG v OOO\\nTT v FCB\\n \\n \\n \\nG2 v INTZ\\nRNG v LKE\\n\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\n\\n\\nDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\n\\n#**Rules and Guidelines:**\\n\\n\\nAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as **unedited comments** or **Dms** to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\n\\n#Questions\\n**Why am I not doing Dreamhack?**\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\n\\n\\n**Will I do this for other tournaments in the future?**\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\n\\n**Will there be analysis on my part?**\\nLikely, but not guaranteed. I may try to get someone else on board.\\n\\n\\n**When and where will results be posted?** Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\n \\n \\n \\n \\n#**NOTES:**\\n\\n I introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\n\\n**Two Questions From Me:**\\n\\nHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\n \\n \\nShould we have bonus question(s) the same way u/discordpedestal did for his competition? If so, what would you like for it/them to be? \\n \\n \\n \\n \\n \\n \\nThe table format will be in the comments.\\n\\nOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbekt2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPre-Post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello \\u003Ca href=\\\"/r/RocketLeagueEsports\\\"\\u003Er/RocketLeagueEsports\\u003C/a\\u003E, I\\u2019ll be hosting a bracket competition. As some of you may know, RBG is also hosting one for Dreamhack and RLCS S7 LAN as well. I decided to still do one because I don\\u2019t completely agree with their scoring. I\\u2019d also like to see the how people in the community pick for this tournament.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe current prize sits at $10 in keys. I am able to purchase and trade them myself on in Steam, Xbox, and Playstation. I am also asking for donation to the prize pool. Donations from you will go through and be distributed through a mod instead of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m making this post rather early so that I can get feedback on any suggestions or changes you\\u2019d like to see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe point system isn\\u2019t set in stone but here\\u2019s what I\\u2019ve got:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E(Q)uarter(F)inalist:\\u003C/strong\\u003E 100 pts \\n\\u003Cstrong\\u003E1 Correct Seed:\\u003C/strong\\u003E 15 pts \\n\\u003Cstrong\\u003E2 Correct Seeds:\\u003C/strong\\u003E +30 pts(45 total) \\n\\u003Cstrong\\u003E(S)emi(F)inalist:\\u003C/strong\\u003E 180 pts \\n\\u003Cstrong\\u003E(F)inalist:\\u003C/strong\\u003E 380 pts \\n\\u003Cstrong\\u003E(W)inners:\\u003C/strong\\u003E 780 pts \\n\\u003Cstrong\\u003EScore in favor of your winner:\\u003C/strong\\u003E 190 pts \\n\\u003Cstrong\\u003EScore in favor of your winner AND you guessed the other Finalist:\\u003C/strong\\u003E +95pts(285 total) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWC-\\u003C/strong\\u003ECan only be assigned to a team you predict not to get to the Quarter Finals. Can get points from QF, SF, F, and W. The downside is that these points are divided by 6. Maximum possible points: 240\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat predictions would look like is this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETeams |QF(8) |Seeds 1 and 2(8) |SF(4) |F(2) |W(1) |Winners Series Score |WC(2) \\n | | | | | | \\n | | | | | |\\n Group A| | | | | | \\nNRG|QF |1 |SF |F |W |4-3 |\\nINTZ|QF |2 | | | | |\\nPSG| | | | | | | WC\\n | | | | | | \\nGroup B | | | | | | \\nRV | | | | | | | \\nG2 |QF |1 |SF |F | | |\\nOOO |QF |2 | | | | |\\n | | | | | |\\nGroup C | | | | | |\\nRNG |QF |1 |SF | | | |\\nFCB |QF |2 |SF | | | |\\nRGE | | | | | | |\\n | | | | | | \\nGroup D | | | | | |\\nLKE |QF |2 | | | | |\\nC9 | | | | | | | WC\\nTT |QF |1 | | | | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ll leave the format below for those of you who want to do early guessing. Note that submissions can be done now but scoring may change so it may change your decisions. For example, Wild Card teams may change from 2 to 1. I\\u2019ll just have to flip a coin for you. How scoring will be done will likely be finalized by the end of the weekend after next, so look out for that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdvice: Take the teams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA1 v B2\\nD1 v C2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EB1 v A2\\nC1 v D2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd substitute them with your predictions to keep track:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENRG v OOO\\nTT v FCB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EG2 v INTZ\\nRNG v LKE\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDisclaimer: I\\u2019ll post this about every week and a couple days before LAN. \\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ERules and Guidelines:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EAll predictions must be made 1 hour before the event. There may be some leeway. As long as all submissions are before the start time of the first game.\\nPlease submit your predictions as \\u003Cstrong\\u003Eunedited comments\\u003C/strong\\u003E or \\u003Cstrong\\u003EDms\\u003C/strong\\u003E to me. Edited comments will not be considered valid predictions. Any changes should be made as a response to your initial comment or as a dm to me.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuestions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhy am I not doing Dreamhack?\\u003C/strong\\u003E\\nI haven\\u2019t completed the spreadsheet, and I\\u2019m in the middle of getting ready to graduate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill I do this for other tournaments in the future?\\u003C/strong\\u003E\\nFor majors, probably, but I won\\u2019t be upset if someone else wants to pick up the slack and start this same competition up without me. I don\\u2019t care for the karma, just the competitive aspect of this. Don\\u2019t expect me to help if you post it though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill there be analysis on my part?\\u003C/strong\\u003E\\nLikely, but not guaranteed. I may try to get someone else on board.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen and where will results be posted?\\u003C/strong\\u003E Within days after the tournament is over and on this subreddit. Hopefully no more than 48 hours, some time for possible analysis.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Cstrong\\u003ENOTES:\\u003C/strong\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI introduced Wildcards so that people who guess horribly still get points. All I\\u2019ve got is they get 1/6 of possible earnings if you had predicted them in place of your winner. It also might add to the viewing experience so you root for the underdog when your WC is versus a team you predicted against.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETwo Questions From Me:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow would you like the Wildcard picks to work?\\nI\\u2019m considering bumping them up from 1/6 to 2/7, 1/3, or 3/7. Probably nothing over half.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShould we have bonus question(s) the same way \\u003Ca href=\\\"/u/discordpedestal\\\"\\u003Eu/discordpedestal\\u003C/a\\u003E did for his competition? If so, what would you like for it/them to be? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe table format will be in the comments.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne with a blank sheet.\\nThe other with Renault Vitality and NRG in the Finals for all you normies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbekt2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170302.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bufkvu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"epbe3h9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RyanDaLegendary\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1559141322.0, \"send_replies\": true, \"parent_id\": \"t3_bufkvu\", \"score\": 1, \"author_fullname\": \"t2_ze11d\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Why won\\u2019t the table work\", \"link_title\": \"RLCS Season 7 LAN Bracket Prediction\", \"author_flair_css_class\": null, \"name\": \"t1_epbe3h9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy won\\u2019t the table work\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/epbe3h9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"report_reasons\": null, \"link_author\": \"RyanDaLegendary\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bufkvu/rlcs_season_7_lan_bracket_prediction/\", \"created\": 1559170122.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1559109977.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu790e\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep9gim2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"elcocotero\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559109744.0, \"send_replies\": true, \"parent_id\": \"t3_bu790e\", \"score\": 1, \"author_fullname\": \"t2_ps7sm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"That would be [Danza Kuduro by puerto rican reggeaton artist Don Omar](https://www.youtube.com/watch?v=7zp1TbLFPp8).\\n\\n Now i'm not a big reggaeton fan but this guy's one of the best. \\\"Sali\\u00f3 el sol\\\" is amazing. Also \\\"Diva Virtual\\\".\", \"link_title\": \"Upcoming Tile Based Strategy Game: \\\"Claim Game\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ep9gim2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat would be \\u003Ca href=\\\"https://www.youtube.com/watch?v=7zp1TbLFPp8\\\"\\u003EDanza Kuduro by puerto rican reggeaton artist Don Omar\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow i\\u0026#39;m not a big reggaeton fan but this guy\\u0026#39;s one of the best. \\u0026quot;Sali\\u00f3 el sol\\u0026quot; is amazing. Also \\u0026quot;Diva Virtual\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/ep9gim2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bu790e/upcoming_tile_based_strategy_game_claim_game/\", \"created\": 1559138544.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bu8y26\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ep8kbww\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dekarde\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1559096074.0, \"send_replies\": true, \"parent_id\": \"t3_bu8y26\", \"score\": 1, \"author_fullname\": \"t2_jb0ym\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"field 1\", \"link_title\": \"up-test\", \"author_flair_css_class\": null, \"name\": \"t1_ep8kbww\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efield 1\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bu8y26/uptest/ep8kbww/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"report_reasons\": null, \"link_author\": \"Dekarde\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bu8y26/uptest/\", \"created\": 1559124874.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bt0w6n\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eosnfxq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"User09060657542\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558826026.0, \"send_replies\": true, \"parent_id\": \"t3_bt0w6n\", \"score\": 1, \"author_fullname\": \"t2_f4ra2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"..\", \"link_title\": \"testing 123\", \"author_flair_css_class\": null, \"name\": \"t1_eosnfxq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bt0w6n/testing_123/eosnfxq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"report_reasons\": null, \"link_author\": \"User09060657542\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bt0w6n/testing_123/\", \"created\": 1558854826.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsyl0k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoruj65\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"T-8-0-0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558813105.0, \"send_replies\": true, \"parent_id\": \"t3_bsyl0k\", \"score\": 1, \"author_fullname\": \"t2_2zkr00l4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003Cblockquote class=\\\"imgur-embed-pub\\\" lang=\\\"en\\\" data-id=\\\"a/MWQxuVC\\\"\\u003E\\u003Ca href=\\\"[//imgur.com/MWQxuVC](//imgur.com/MWQxuVC)\\\"\\u003EBvS\\u003C/a\\u003E\\u003C/blockquote\\u003E\\u003Cscript async src=\\\"[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\", \"link_title\": \"BvS\", \"author_flair_css_class\": null, \"name\": \"t1_eoruj65\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;blockquote class=\\u0026quot;imgur-embed-pub\\u0026quot; lang=\\u0026quot;en\\u0026quot; data-id=\\u0026quot;a/MWQxuVC\\u0026quot;\\u0026gt;\\u0026lt;a href=\\u0026quot;[//imgur.com/MWQxuVC](//imgur.com/MWQxuVC)\\u0026quot;\\u0026gt;BvS\\u0026lt;/a\\u0026gt;\\u0026lt;/blockquote\\u0026gt;\\u0026lt;script async src=\\u0026quot;[//s.imgur.com/min/embed.js](//s.imgur.com/min/embed.js)\\u0026quot; charset=\\u0026quot;utf-8\\u0026quot;\\u0026gt;\\u0026lt;/script\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bsyl0k/bvs/eoruj65/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"report_reasons\": null, \"link_author\": \"T-8-0-0\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bsyl0k/bvs/\", \"created\": 1558841905.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bsveoo\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoqtetr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"YOUREABOT\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558796617.0, \"send_replies\": true, \"parent_id\": \"t3_bsveoo\", \"score\": 1, \"author_fullname\": \"t2_3b1gaoke\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"dang, i never noticed the sound of kane cocking the gun.\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eoqtetr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edang, i never noticed the sound of kane cocking the gun.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bsveoo/test/eoqtetr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bsveoo/test/\", \"report_reasons\": null, \"link_author\": \"Ihuarraquax__\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=goQiwNZzoVA\", \"created\": 1558825417.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bskwuj\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoo6l31\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558730695.0, \"send_replies\": true, \"parent_id\": \"t3_bskwuj\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"who who what what\", \"link_title\": \"Pokecube II\", \"author_flair_css_class\": null, \"name\": \"t1_eoo6l31\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewho who what what\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bskwuj/pokecube_ii/eoo6l31/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"report_reasons\": null, \"link_author\": \"vandergus\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bskwuj/pokecube_ii/\", \"created\": 1558759495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs053g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eonr18y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"IncendiaryGames\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558719419.0, \"send_replies\": true, \"parent_id\": \"t1_eon0nk4\", \"score\": 1, \"author_fullname\": \"t2_kz0h4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks Ed! I just realized I accidentally linked you to my post preview post and not the one on /r/hometheater. Here is that link if you want to repost your comment there: \\nhttps://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eonr18y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks Ed! I just realized I accidentally linked you to my post preview post and not the one on \\u003Ca href=\\\"/r/hometheater\\\"\\u003E/r/hometheater\\u003C/a\\u003E. Here is that link if you want to repost your comment there: \\n\\u003Ca href=\\\"https://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\\\"\\u003Ehttps://www.reddit.com/r/hometheater/comments/bsaf73/should_i_upgrade_my_subwoofer_and_if_so_what/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs053g/test/eonr18y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"report_reasons\": null, \"link_author\": \"IncendiaryGames\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"created\": 1558748219.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs053g\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eon0nk4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"svsound\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558700754.0, \"send_replies\": true, \"parent_id\": \"t3_bs053g\", \"score\": 1, \"author_fullname\": \"t2_i0b8n\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Considering you're not going to be moving for 5+ years, I would size the subwoofer to your current system/loudspeakers and an apartment setting where you listen at -15 to -10. \\n\\nAn SB-4000 would be a good fit for your application, providing tight, accurate, punchy bass with excellent deep extension. You'll have plenty of SPL for the current playback level of -15 to -10. \\n\\nAfter running Audyssey XT32 in the Denon, make sure all speakers are set to Small and the crossovers should be fronts 60 Hz, center 80 Hz, surrounds 80 Hz and overheads 100-120 Hz (unless Audyssey sets them higher). \\n\\nUnder Bass the subwoofer mode should be LFE and the LPF/LFE should be 120 Hz. \\n\\nXT32 will have you level match the subwoofer to 75 dB as part of the initial set-up. This will likely result in the subwoofer volume set to somewhere in the -20 to -15 range (which is fine). The Denon will probably trim-out the subwoofer channel somewhere in the low negative range (which is also fine). \\n\\nIf you want to run the subwoofer channel hotter than the Audyssey level match, then increase the sub channel in the Denon by a few dB.\\n\\nEd M - SVS\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eon0nk4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EConsidering you\\u0026#39;re not going to be moving for 5+ years, I would size the subwoofer to your current system/loudspeakers and an apartment setting where you listen at -15 to -10. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn SB-4000 would be a good fit for your application, providing tight, accurate, punchy bass with excellent deep extension. You\\u0026#39;ll have plenty of SPL for the current playback level of -15 to -10. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter running Audyssey XT32 in the Denon, make sure all speakers are set to Small and the crossovers should be fronts 60 Hz, center 80 Hz, surrounds 80 Hz and overheads 100-120 Hz (unless Audyssey sets them higher). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnder Bass the subwoofer mode should be LFE and the LPF/LFE should be 120 Hz. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EXT32 will have you level match the subwoofer to 75 dB as part of the initial set-up. This will likely result in the subwoofer volume set to somewhere in the -20 to -15 range (which is fine). The Denon will probably trim-out the subwoofer channel somewhere in the low negative range (which is also fine). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you want to run the subwoofer channel hotter than the Audyssey level match, then increase the sub channel in the Denon by a few dB.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEd M - SVS\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs053g/test/eon0nk4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"report_reasons\": null, \"link_author\": \"IncendiaryGames\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bs053g/test/\", \"created\": 1558729554.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs5jg4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoj2zwz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558632235.0, \"send_replies\": true, \"parent_id\": \"t3_bs5jg4\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"care bears\", \"link_title\": \"my lil pony\", \"author_flair_css_class\": null, \"name\": \"t1_eoj2zwz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ecare bears\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs5jg4/my_lil_pony/eoj2zwz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs5jg4/my_lil_pony/\", \"report_reasons\": null, \"link_author\": \"fragglestickcar0\", \"author_flair_text\": null, \"link_url\": \"http://www.youtube.com/watch?v=21ix1OwPoY8\", \"created\": 1558661035.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bs4zeb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoiznnd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"emackn\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558630564.0, \"send_replies\": true, \"parent_id\": \"t3_bs4zeb\", \"score\": 1, \"author_fullname\": \"t2_9gu2i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Build details:**\\n\\n* ***Aero Precision M4E1 Upper***\\n * Aero Precision 15\\\" Enhanced M-LOK handguard, gen 2\\n * Columbia River Arms 16\\\" 1:7 barrel in FDE\\n * VG6 Gamma 556 compensator\\n * spikes tactical gas tube\\n * superlative arms gas block\\n * Vortex Strikefire II red dot\\n* ***Aero Precision M4E1 Lower (stripped, PEW edition)***\\n * BCM BCG in FDE\\n * BAD mag release\\n * BAD ambi saftey\\n * Geissele 2 stage trigger\\n * Geissele buffer tube with super 42 spring\\n * Geissele Maritime Bolt Catch\\n\\n* ***Magpul furniture***\\n * MOE-K2 Grip\\n * CTR carbine stock\\n * Pmag\\n * handstop\\n * BUIS\\n\\n\\n**Other Images:**\\n\\n * [side fire select](https://i.postimg.cc/85FMMngJ/AR15-pew-2.jpg)\\n * [view of FDE barrel](https://i.postimg.cc/zB9WjSqd/AR15-pew-3.jpg)\\n\\n\\u0026nbsp;\\n\\n\\u0026nbsp;\\n\\nNext up is 10.5 300BLK in OD Green\", \"link_title\": \"First AR Build Friday\", \"author_flair_css_class\": null, \"name\": \"t1_eoiznnd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBuild details:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAero Precision M4E1 Upper\\u003C/em\\u003E\\u003C/strong\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAero Precision 15\\u0026quot; Enhanced M-LOK handguard, gen 2\\u003C/li\\u003E\\n\\u003Cli\\u003EColumbia River Arms 16\\u0026quot; 1:7 barrel in FDE\\u003C/li\\u003E\\n\\u003Cli\\u003EVG6 Gamma 556 compensator\\u003C/li\\u003E\\n\\u003Cli\\u003Espikes tactical gas tube\\u003C/li\\u003E\\n\\u003Cli\\u003Esuperlative arms gas block\\u003C/li\\u003E\\n\\u003Cli\\u003EVortex Strikefire II red dot\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAero Precision M4E1 Lower (stripped, PEW edition)\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBCM BCG in FDE\\u003C/li\\u003E\\n\\u003Cli\\u003EBAD mag release\\u003C/li\\u003E\\n\\u003Cli\\u003EBAD ambi saftey\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele 2 stage trigger\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele buffer tube with super 42 spring\\u003C/li\\u003E\\n\\u003Cli\\u003EGeissele Maritime Bolt Catch\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EMagpul furniture\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EMOE-K2 Grip\\u003C/li\\u003E\\n\\u003Cli\\u003ECTR carbine stock\\u003C/li\\u003E\\n\\u003Cli\\u003EPmag\\u003C/li\\u003E\\n\\u003Cli\\u003Ehandstop\\u003C/li\\u003E\\n\\u003Cli\\u003EBUIS\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EOther Images:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://i.postimg.cc/85FMMngJ/AR15-pew-2.jpg\\\"\\u003Eside fire select\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://i.postimg.cc/zB9WjSqd/AR15-pew-3.jpg\\\"\\u003Eview of FDE barrel\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext up is 10.5 300BLK in OD Green\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bs4zeb/first_ar_build_friday/eoiznnd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bs4zeb/first_ar_build_friday/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/if35r70kjzz21.jpg\", \"created\": 1558659364.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bq9bgb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoid65v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558616951.0, \"send_replies\": true, \"parent_id\": \"t3_bq9bgb\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\\nbugaboo\", \"link_title\": \"we\", \"author_flair_css_class\": null, \"name\": \"t1_eoid65v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\nbugaboo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bq9bgb/we/eoid65v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bq9bgb/we/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bq9bgb/we/\", \"created\": 1558645751.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_brgcyy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoibl85\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1558615819.0, \"send_replies\": true, \"parent_id\": \"t3_brgcyy\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"HGCE Freedom Gundam Album\", \"author_flair_css_class\": null, \"name\": \"t1_eoibl85\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/eoibl85/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/brgcyy/hgce_freedom_gundam_album/\", \"report_reasons\": null, \"link_author\": \"NeonRunner\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/EKjeyR4\", \"created\": 1558644619.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_b892bv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoibfr4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558615716.0, \"send_replies\": true, \"parent_id\": \"t1_ejwhbla\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eoibfr4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/b892bv/test/eoibfr4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/b892bv/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/OFkJjXL\", \"created\": 1558644516.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bay8r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoi61fx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558611465.0, \"send_replies\": true, \"parent_id\": \"t1_ekgl4mf\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"this is a test\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eoi61fx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bay8r2/test/eoi61fx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bay8r2/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bay8r2/test/\", \"created\": 1558640265.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqs0lm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eoah4bg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NamiPickles\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558417762.0, \"send_replies\": true, \"parent_id\": \"t1_eo84uif\", \"score\": 2, \"author_fullname\": \"t2_cp3cb3l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"thanks my dude\", \"link_title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"author_flair_css_class\": null, \"name\": \"t1_eoah4bg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks my dude\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/eoah4bg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"report_reasons\": null, \"link_author\": \"NamiPickles\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/VmalKIuFimk\", \"created\": 1558446562.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqs0lm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo84uif\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Flying-Croissant\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558357381.0, \"send_replies\": true, \"parent_id\": \"t3_bqs0lm\", \"score\": 1, \"author_fullname\": \"t2_1d8oz7i8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Good shit\", \"link_title\": \"WoW Fishing in Stormsong Valley (Ambience/ASMR)\", \"author_flair_css_class\": null, \"name\": \"t1_eo84uif\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood shit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/eo84uif/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqs0lm/wow_fishing_in_stormsong_valley_ambienceasmr/\", \"report_reasons\": null, \"link_author\": \"NamiPickles\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/VmalKIuFimk\", \"created\": 1558386181.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqofzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo67e75\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imperatorz\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558313245.0, \"send_replies\": true, \"parent_id\": \"t3_bqofzt\", \"score\": 1, \"author_fullname\": \"t2_3s7t8gxj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hi folks,\\n\\nFirst of all, thanks for all the quality posts here, i created an account just for this community !\\nI'm a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\n\\nD1 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD2 : Squat (55)- OHP (35)\\nD3 : Rest\\nD4 : Squat (55)- OHP (35)\\nD5 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD6 : Squat (55)- OHP (35) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\nD7 : Rest\\n\\nI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP\\n\\nFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7\\n\\nMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\n\\nThanks for all you're doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_eo67e75\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\nI\\u0026#39;m a 20 yo male who recently got back into lifting.\\nSince the end of march I have been training consistently 4-5 times a week with the following program :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD2 : Squat (55)- OHP (35)\\nD3 : Rest\\nD4 : Squat (55)- OHP (35)\\nD5 : Bench (35)- Inclined bench (35)- Barbell row (35)- Deadlift (35)\\nD6 : Squat (55)- OHP (35) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\nD7 : Rest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/eo67e75/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"report_reasons\": null, \"link_author\": \"imperatorz\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"created\": 1558342045.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bqofzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eo67cm7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"imperatorz\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558313217.0, \"send_replies\": true, \"parent_id\": \"t3_bqofzt\", \"score\": 1, \"author_fullname\": \"t2_3s7t8gxj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hi folks,\\n\\nFirst of all, thanks for all the quality posts here, i created an account just for this community ! \\nI'm a 20 yo male who recently got back into lifting. \\nSince the end of march I have been training consistently 4-5 times a week with the following program : \\n\\nD1 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5) \\nD2 : Squat (5*5)- OHP (3*5) \\nD3 : Rest \\nD4 : Squat (5*5)- OHP (3*5) \\nD5 : Bench (3*5)- Inclined bench (3*5)- Barbell row (3*5)- Deadlift (3*5) \\nD6 : Squat (5*5)- OHP (3*5) -\\u003E I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again. \\nD7 : Rest \\n \\nI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph https://imgur.com/a/AqqimZP \\n \\nFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer https://imgur.com/a/9cLJ3b7 \\n\\nMy questions are, in a perspective of continuing fat loss : \\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ? \\n\\u2022 Should I start cardio/HIIT to eliminate more fat ? \\n\\u2022 Have you got any recommendation altogether ? All advices appreciated. \\n \\nThanks for all you're doing in here and sorry for broken english, \\nAn over-Atlantic enthusiast\", \"link_title\": \"sdf\", \"author_flair_css_class\": null, \"name\": \"t1_eo67cm7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, thanks for all the quality posts here, i created an account just for this community !\\u003Cbr/\\u003E\\nI\\u0026#39;m a 20 yo male who recently got back into lifting.\\u003Cbr/\\u003E\\nSince the end of march I have been training consistently 4-5 times a week with the following program : \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED1 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD2 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD3 : Rest\\u003Cbr/\\u003E\\nD4 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD5 : Bench (3\\u003Cem\\u003E5)- Inclined bench (3\\u003C/em\\u003E5)- Barbell row (3\\u003Cem\\u003E5)- Deadlift (3\\u003C/em\\u003E5)\\u003Cbr/\\u003E\\nD6 : Squat (5\\u003Cem\\u003E5)- OHP (3\\u003C/em\\u003E5) -\\u0026gt; I really like to squat it has replaced fapping for me, literally. I stay in the hole for seconds and push with all my might and feel like being born again.\\u003Cbr/\\u003E\\nD7 : Rest \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think my period of newbie gains has worn off, because for two weeks now, my waist girth has stopped shrinking. Here are chart and graph \\u003Ca href=\\\"https://imgur.com/a/AqqimZP\\\"\\u003Ehttps://imgur.com/a/AqqimZP\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor these two months I have been eating one meal a day at 8 PM, first 5 eggs and 200g of bacon, then I added 100g peanut butter and a shaker post-workout around midnight. Cronometer \\u003Ca href=\\\"https://imgur.com/a/9cLJ3b7\\\"\\u003Ehttps://imgur.com/a/9cLJ3b7\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy questions are, in a perspective of continuing fat loss :\\u003Cbr/\\u003E\\n\\u2022 Should i reduce calorie intake (cut peanut butter altogether and get 600 calories back) ?\\u003Cbr/\\u003E\\n\\u2022 Should I start cardio/HIIT to eliminate more fat ?\\u003Cbr/\\u003E\\n\\u2022 Have you got any recommendation altogether ? All advices appreciated. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for all you\\u0026#39;re doing in here and sorry for broken english,\\u003Cbr/\\u003E\\nAn over-Atlantic enthusiast\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bqofzt/sdf/eo67cm7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"report_reasons\": null, \"link_author\": \"imperatorz\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bqofzt/sdf/\", \"created\": 1558342017.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ens8t9m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558025712.0, \"send_replies\": true, \"parent_id\": \"t1_ens8roy\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Omg it works!!\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_ens8t9m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOmg it works!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/ens8t9m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1558054512.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ens8roy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1558025695.0, \"send_replies\": true, \"parent_id\": \"t3_bpezwp\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E testing testing one two three\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_ens8roy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etesting testing one two three\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/ens8roy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1558054495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": \"t1_ens8roy\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["336723"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:47 GMT"], "x-ratelimit-remaining": ["589.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["11"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643987.312838,VS0,VE600"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["13"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-06-27T13:59:47"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_es5zy01"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:48 GMT"], "x-ratelimit-remaining": ["588.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["12"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643988.016762,VS0,VE76"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["12"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_es5zy01"}, "recorded_at": "2019-06-27T13:59:48"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest\\n\\n\\u0026#x200B;\\n\\ntesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\ntesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\ntesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\ntesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\ntesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest\", \"author_fullname\": \"t2_3v3l8198\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"paragraph test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c61a3f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561640419.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c61a3f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PrinceAtom12\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c61a3f/paragraph_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c61a3f/paragraph_test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561611619.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I'm too hyped up for FE3H and I need an FE fix to tide me over so I'm going to be doing a Conquest Hard Classic PMU run, Corrin + 13 units.\\n\\nThe rules: Corrin can be any gender/class/boon, sword access for passive Yato buffs not necessary but appreciated, at least 1 staff user, at least 1 bow user, and no troubadour effie/wyvern lord Elise (I want more creativity than that). No units past Ch 14\\n\\n\\nPlease let me know what S/A+ pairings you had in mind to get the class for your character\\n\\nCorrin:\\n\\n1. Great Knight Kaze (A+ Silas)\\n\\n2. Master Ninja Camilla (S Kaze)\\n\\n3. General Mozu (A+ Effie)\\n\\n4. (Open)\\n\\n5. (Open)\\n\\n6. (Open)\\n\\n7. (Open)\\n\\n8. (Open)\\n\\n9. (Open)\\n\\n10. (Open)\\n\\n11. (Open)\\n\\n12. (Open)\\n \\n13. (Open)\", \"author_fullname\": \"t2_4slfxcp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c5z25t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1561598877.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561627027.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m too hyped up for FE3H and I need an FE fix to tide me over so I\\u0026#39;m going to be doing a Conquest Hard Classic PMU run, Corrin + 13 units.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe rules: Corrin can be any gender/class/boon, sword access for passive Yato buffs not necessary but appreciated, at least 1 staff user, at least 1 bow user, and no troubadour effie/wyvern lord Elise (I want more creativity than that). No units past Ch 14\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease let me know what S/A+ pairings you had in mind to get the class for your character\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECorrin:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGreat Knight Kaze (A+ Silas)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EMaster Ninja Camilla (S Kaze)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGeneral Mozu (A+ Effie)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E(Open)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E(Open)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E(Open)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E(Open)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E(Open)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E(Open)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E(Open)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E(Open)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E(Open)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E(Open)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5z25t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kitty-Heronthorn\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c5z25t/testing/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c5z25t/testing/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561598227.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_40sjq58i\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"image test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 87, \"hide_score\": false, \"name\": \"t3_c5wpoe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Umfsa2cwjkgYWHZe67EqCIDlc-WpgUufXgDnWhX_2pQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561615297.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/taz7l7e7vr631.jpg?auto=webp\\u0026s=a691fa9c37d47f395b38915007606ade90e20db1\", \"width\": 428, \"height\": 266}, \"resolutions\": [{\"url\": \"https://preview.redd.it/taz7l7e7vr631.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e3ec8bc540cb0e1026531c265da5ce699bb40de3\", \"width\": 108, \"height\": 67}, {\"url\": \"https://preview.redd.it/taz7l7e7vr631.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e09776fc29da4eec828a7b651cf6809b07ebeb6f\", \"width\": 216, \"height\": 134}, {\"url\": \"https://preview.redd.it/taz7l7e7vr631.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b5739b69b82873b8099eaa0a4c6159ab36a86169\", \"width\": 320, \"height\": 198}], \"variants\": {}, \"id\": \"2Sqv1NTVmAUsUSyg_HJFV4ioZBAZSYd-6_TbQLm-Lvk\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5wpoe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ParticularShoe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c5wpoe/image_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/taz7l7e7vr631.jpg\", \"subreddit_subscribers\": 720, \"created_utc\": 1561586497.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_3um52nx7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing 1 2 3\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c5wbft\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561613601.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": true, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"rte_mode\": \"richtext\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5wbft\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c5wbft/testing_1_2_3/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c5wbft/testing_1_2_3/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561584801.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1hh3xjqw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Woj] Marc Gasol will stay with the Toronto Raptors\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_c5w884\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Woj Bomb\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/EUvCcEIna56nMugy3dPXj7WU9TyvBJbZ2nb5P5I_-pQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561613233.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"twitter.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/aMe-XrPSeNnTlphp3O3UwXJqml-K1fDChnLvD-5vAk0.jpg?auto=webp\\u0026s=0384a756fde7fb559de03852d504fe49ecd335a3\", \"width\": 400, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/aMe-XrPSeNnTlphp3O3UwXJqml-K1fDChnLvD-5vAk0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b7e29955fce2ae6fa726083c4ce41447dc99ed5b\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/aMe-XrPSeNnTlphp3O3UwXJqml-K1fDChnLvD-5vAk0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=47dfc437d9aecb92e041eda723a8a6a7c31e3ff0\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/aMe-XrPSeNnTlphp3O3UwXJqml-K1fDChnLvD-5vAk0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7a2859dc12bd6f1f19eb017b32de9834e5fb04f8\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"8NlD4GtqucNtbKeLhC1NYlE6vbY3AuWo9VcPbx1s9Sg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5w884\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TheBeatBoy\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c5w884/woj_marc_gasol_will_stay_with_the_toronto_raptors/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://twitter.com/wojespn/status/1143987075290730505\", \"subreddit_subscribers\": 720, \"created_utc\": 1561584433.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\[PCPartPicker Part List\\\\]([https://de.pcpartpicker.com/list/fdDCGG](https://de.pcpartpicker.com/list/fdDCGG))\\n\\n\\u0026#x200B;\\n\\nType|Item|Price\\n\\n:----|:----|:----\\n\\n\\\\*\\\\*CPU\\\\*\\\\* | \\\\[AMD - Ryzen 5 2600 3.4 GHz 6-Core Processor\\\\]([https://de.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox](https://de.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox)) | \\u20ac135.89 @ Amazon Deutschland \\n\\n\\\\*\\\\*Motherboard\\\\*\\\\* | \\\\[MSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard\\\\]([https://de.pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2](https://de.pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2)) | \\u20ac90.00 \\n\\n\\\\*\\\\*Memory\\\\*\\\\* | \\\\[G.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory\\\\]([https://de.pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb](https://de.pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb)) | \\u20ac67.89 @ Mindfactory \\n\\n\\\\*\\\\*Storage\\\\*\\\\* | \\\\[Patriot - Burst 240 GB 2.5\\\" Solid State Drive\\\\]([https://de.pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr](https://de.pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr)) | \\u20ac28.99 @ Amazon Deutschland \\n\\n\\\\*\\\\*Storage\\\\*\\\\* | \\\\[Toshiba - P300 1 TB 3.5\\\" 7200RPM Internal Hard Drive\\\\]([https://de.pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta](https://de.pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta)) | \\u20ac40.00 \\n\\n\\\\*\\\\*Video Card\\\\*\\\\* | \\\\[Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card\\\\]([https://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g](https://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g)) | \\u20ac276.91 @ Amazon Deutschland \\n\\n\\\\*\\\\*Power Supply\\\\*\\\\* | \\\\[be quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply\\\\]([https://de.pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292](https://de.pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292)) | \\u20ac50.89 @ Amazon Deutschland \\n\\n\\\\*\\\\*Optical Drive\\\\*\\\\* | \\\\[Lite-On - iHDS118-04 DVD/CD Drive\\\\]([https://de.pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804](https://de.pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804)) | \\u20ac18.73 @ Amazon Deutschland \\n\\n\\\\*\\\\*Monitor\\\\*\\\\* | \\\\[Asus - VP248QGL 24.0\\\" 1920x1080 75 Hz Monitor\\\\]([https://de.pcpartpicker.com/product/7fw7YJ/asus-vp248qgl-240-1920x1080-75-hz-monitor-vp248qgl](https://de.pcpartpicker.com/product/7fw7YJ/asus-vp248qgl-240-1920x1080-75-hz-monitor-vp248qgl)) | \\u20ac60.00 \\n\\n\\\\*\\\\*Custom\\\\*\\\\* | \\\\[Sharkoon S1000 micro ATX Geh\\u00e4use, schwarz\\\\]([https://de.pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz](https://de.pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz)) | \\u20ac39.90 @ Amazon Deutschland \\n\\n | \\\\*Prices include shipping, taxes, rebates, and discounts\\\\* |\\n\\n | \\\\*\\\\*Total\\\\*\\\\* | \\\\*\\\\*\\u20ac809.20\\\\*\\\\*\\n\\n | Generated by \\\\[PCPartPicker\\\\]([https://pcpartpicker.com](https://pcpartpicker.com)) 2019-06-26 18:23 CEST+0200 |\", \"author_fullname\": \"t2_16220v7x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I don't know if this works so...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c5rw1n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561595120.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[PCPartPicker Part List](\\u003Ca href=\\\"https://de.pcpartpicker.com/list/fdDCGG\\\"\\u003Ehttps://de.pcpartpicker.com/list/fdDCGG\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EType|Item|Price\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E:----|:----|:----\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**CPU** | [AMD - Ryzen 5 2600 3.4 GHz 6-Core Processor](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\\"\\u003Ehttps://de.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\u003C/a\\u003E) | \\u20ac135.89 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Motherboard** | [MSI - B450M PRO-VDH V2 Micro ATX AM4 Motherboard](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2\\\"\\u003Ehttps://de.pcpartpicker.com/product/NDtQzy/msi-b450m-pro-vdh-v2-micro-atx-am4-motherboard-b450m-pro-vdh-v2\\u003C/a\\u003E) | \\u20ac90.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Memory** | [G.Skill - Aegis 16 GB (2 x 8 GB) DDR4-3000 Memory](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb\\\"\\u003Ehttps://de.pcpartpicker.com/product/FNprxr/gskill-aegis-16gb-2-x-8gb-ddr4-3000-memory-f43000c16d16gisb\\u003C/a\\u003E) | \\u20ac67.89 @ Mindfactory \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Storage** | [Patriot - Burst 240 GB 2.5\\u0026quot; Solid State Drive](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr\\\"\\u003Ehttps://de.pcpartpicker.com/product/9xtQzy/patriot-burst-240gb-25-solid-state-drive-pbu240gs25ssdr\\u003C/a\\u003E) | \\u20ac28.99 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Storage** | [Toshiba - P300 1 TB 3.5\\u0026quot; 7200RPM Internal Hard Drive](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta\\\"\\u003Ehttps://de.pcpartpicker.com/product/Jjp323/toshiba-internal-hard-drive-hdwd110xzsta\\u003C/a\\u003E) | \\u20ac40.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Video Card** | [Sapphire - Radeon RX VEGA 56 8 GB PULSE Video Card](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g\\\"\\u003Ehttps://de.pcpartpicker.com/product/cKhKHx/sapphire-radeon-rx-vega-56-2gb-pulse-video-card-11276-02-40g\\u003C/a\\u003E) | \\u20ac276.91 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Power Supply** | [be quiet! - Pure Power 11 400 W 80+ Gold Certified ATX Power Supply](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292\\\"\\u003Ehttps://de.pcpartpicker.com/product/t8c48d/be-quiet-pure-power-11-400-w-80-gold-certified-atx-power-supply-bn292\\u003C/a\\u003E) | \\u20ac50.89 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Optical Drive** | [Lite-On - iHDS118-04 DVD/CD Drive](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804\\\"\\u003Ehttps://de.pcpartpicker.com/product/JVphP6/lite-on-optical-drive-ihds11804\\u003C/a\\u003E) | \\u20ac18.73 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Monitor** | [Asus - VP248QGL 24.0\\u0026quot; 1920x1080 75 Hz Monitor](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/7fw7YJ/asus-vp248qgl-240-1920x1080-75-hz-monitor-vp248qgl\\\"\\u003Ehttps://de.pcpartpicker.com/product/7fw7YJ/asus-vp248qgl-240-1920x1080-75-hz-monitor-vp248qgl\\u003C/a\\u003E) | \\u20ac60.00 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Custom** | [Sharkoon S1000 micro ATX Geh\\u00e4use, schwarz](\\u003Ca href=\\\"https://de.pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz\\\"\\u003Ehttps://de.pcpartpicker.com/product/7P97YJ/sharkoon-s1000-micro-atx-gehause-schwarz\\u003C/a\\u003E) | \\u20ac39.90 @ Amazon Deutschland \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| *Prices include shipping, taxes, rebates, and discounts* |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| **Total** | **\\u20ac809.20**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| Generated by [PCPartPicker](\\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003Ehttps://pcpartpicker.com\\u003C/a\\u003E) 2019-06-26 18:23 CEST+0200 |\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/gOILpPprLG1e4UV3-4tUBFf14sKWGK0KP-qwbaCy0Nc.jpg?auto=webp\\u0026s=d425726febb7d5823136cbe7f3cac2cfc123d22f\", \"width\": 500, \"height\": 500}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/gOILpPprLG1e4UV3-4tUBFf14sKWGK0KP-qwbaCy0Nc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=310a34810372e9d5a0c432a73852f397b4a7ed81\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/gOILpPprLG1e4UV3-4tUBFf14sKWGK0KP-qwbaCy0Nc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d9da06159f0de1eeff97769191461807f138eb75\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/gOILpPprLG1e4UV3-4tUBFf14sKWGK0KP-qwbaCy0Nc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c8eb28188f8f3003f554da1a0c3b3230c01ff0e9\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"Rep_vfz8MHDwx89LbxCMliU4vQv9cRdRXSbOinqbxaY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5rw1n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PleaseTakeThisName\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c5rw1n/i_dont_know_if_this_works_so/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561566320.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"bot test\", \"author_fullname\": \"t2_34692\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Brian mCcann and matt joYce high five.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c5rdl7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561592603.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ebot test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5rdl7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"handlit33\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c5rdl7/brian_mccann_and_matt_joyce_high_five/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561563803.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u003Etesting [link](https://www.reddit.com/r/PostPreview)\", \"author_fullname\": \"t2_184rk2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing links in quotes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c5q6uy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561586546.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Etesting \\u003Ca href=\\\"https://www.reddit.com/r/PostPreview\\\"\\u003Elink\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5q6uy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WildZontars\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c5q6uy/testing_links_in_quotes/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c5q6uy/testing_links_in_quotes/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561557746.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I was just wondering how the subtest worked for title posts.\", \"author_fullname\": \"t2_3yx8j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing^testing^testing Testing^^thetest\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c5hqv4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561535281.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was just wondering how the subtest worked for title posts.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5hqv4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Mazgazine1\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c5hqv4/testingtestingtesting_testingthetest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c5hqv4/testingtestingtesting_testingthetest/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561506481.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*Should anyone content producers/sites be interested in talking to me about potential writing opportunities feel free to DM me on Twitter at https://twitter.com/mizenhauer*\\n\\n*I also wanted to thank Gerry Thompson who encouraged me to write even when I was terrible at it.*\\n\\n*Have a nice day!*\", \"author_fullname\": \"t2_kp6ndam\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"text\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c5a7b8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1561477857.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561505243.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EShould anyone content producers/sites be interested in talking to me about potential writing opportunities feel free to DM me on Twitter at \\u003Ca href=\\\"https://twitter.com/mizenhauer\\\"\\u003Ehttps://twitter.com/mizenhauer\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EI also wanted to thank Gerry Thompson who encouraged me to write even when I was terrible at it.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EHave a nice day!\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/51w92_16VQS8qSvkzVwxCXf0eKFCP2G1eij1xgxyBVw.jpg?auto=webp\\u0026s=e2c169b95a601788965235d11fc7176956ef4f02\", \"width\": 1200, \"height\": 900}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/51w92_16VQS8qSvkzVwxCXf0eKFCP2G1eij1xgxyBVw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4346c19ad00d1e77f4f730a3716ecaab0e7ab1de\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/51w92_16VQS8qSvkzVwxCXf0eKFCP2G1eij1xgxyBVw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d30be5b4caafbe4b204643a3f96b00967bd50721\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/51w92_16VQS8qSvkzVwxCXf0eKFCP2G1eij1xgxyBVw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=e951b040a5df750d5ea04fc89e4aa5bfa82e80cd\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/51w92_16VQS8qSvkzVwxCXf0eKFCP2G1eij1xgxyBVw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=e6ee6c6fb31a5ebdc6a045c3f5d3ad3df6ef19c7\", \"width\": 640, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/51w92_16VQS8qSvkzVwxCXf0eKFCP2G1eij1xgxyBVw.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=3238b02948f9786ed03a3bb8a07a522e093c72ac\", \"width\": 960, \"height\": 720}, {\"url\": \"https://external-preview.redd.it/51w92_16VQS8qSvkzVwxCXf0eKFCP2G1eij1xgxyBVw.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c93ac562a14b0c4f49331b3224317ae99e1be816\", \"width\": 1080, \"height\": 810}], \"variants\": {}, \"id\": \"xlWTyz5MB8uQ1dJlU0G6p2xsHS8uN3MLlXMbsYoEPXA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5a7b8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Mizenhauer\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c5a7b8/text/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c5a7b8/text/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561476443.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_dh58w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cheetah\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_c50k5s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/yoMhZ5Hgm3ECQP_i7usrhvZA0f_hNGH4f5rwtRMlucw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561457199.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/K7JgH7BqJGiaHquqWW5c4-EW1MrM1jlcjg1oCknicpQ.jpg?auto=webp\\u0026s=143c3e598d95b2dbfdeb5ad47db2caea24f53e41\", \"width\": 450, \"height\": 450}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/K7JgH7BqJGiaHquqWW5c4-EW1MrM1jlcjg1oCknicpQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=dc0440ee3d1c08961688ff170b2dad6be8fef860\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/K7JgH7BqJGiaHquqWW5c4-EW1MrM1jlcjg1oCknicpQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=dde42b051908bfd3acfd7dcde6e20db2ef9bd079\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/K7JgH7BqJGiaHquqWW5c4-EW1MrM1jlcjg1oCknicpQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1a32646d50f2a316bc3ebf6af9bd2f1b66da5934\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"oSoT9aGqjo6KNriKmC1GRdx4kPYVEtNcKcBtYLixFX8\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c50k5s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nameofnoimportance\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c50k5s/cheetah/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.imgur.com/tzdApZQl.jpg\", \"subreddit_subscribers\": 720, \"created_utc\": 1561428399.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HEY BINDI\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 100, \"hide_score\": false, \"name\": \"t3_c4jyh8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/cwsxTschBiN4NHnR-JPwiTmWTvUNy4unKXRigTgEu4U.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561391954.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/kv4c91eqg9631.jpg?auto=webp\\u0026s=85d723a06c51303411fc6132e593925df31f7022\", \"width\": 400, \"height\": 288}, \"resolutions\": [{\"url\": \"https://preview.redd.it/kv4c91eqg9631.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=9ad8d01992d48120a1077b96ddfbab4b1e3b2a5a\", \"width\": 108, \"height\": 77}, {\"url\": \"https://preview.redd.it/kv4c91eqg9631.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a52c759753c7a1c778d12a1ab32c17b0e8150861\", \"width\": 216, \"height\": 155}, {\"url\": \"https://preview.redd.it/kv4c91eqg9631.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=216b486cedc0ae3436d36747f66f20b8ab35eb71\", \"width\": 320, \"height\": 230}], \"variants\": {}, \"id\": \"4onGbLP9fuN-YGLNLoQzIHgJRQETK9yFJEG1nJM43xw\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4jyh8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c4jyh8/hey_bindi/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/kv4c91eqg9631.jpg\", \"subreddit_subscribers\": 720, \"created_utc\": 1561363154.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GAETRER\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_c4jubm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/_kBbOlpFG-fgf5Gc81_rU_RVMQn8Pyhm0-gcZ3ZO9w4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561390989.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"sophosnews.files.wordpress.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/1HTQ08WXzMSZAptO-FnAk8LYqoAuOTwnf_GZqrpVa64.jpg?auto=webp\\u0026s=67ebe04a4ffcb210fdb4fac2721160c043389a97\", \"width\": 780, \"height\": 408}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/1HTQ08WXzMSZAptO-FnAk8LYqoAuOTwnf_GZqrpVa64.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=adfc650c5648aecd3ce465b5cc7f819ee4f8c13f\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/1HTQ08WXzMSZAptO-FnAk8LYqoAuOTwnf_GZqrpVa64.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b8a0d3cc536587ab89d599006215597f9e2172cc\", \"width\": 216, \"height\": 112}, {\"url\": \"https://external-preview.redd.it/1HTQ08WXzMSZAptO-FnAk8LYqoAuOTwnf_GZqrpVa64.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5b930c26c01486d9388f7b928f9ccc86b7292968\", \"width\": 320, \"height\": 167}, {\"url\": \"https://external-preview.redd.it/1HTQ08WXzMSZAptO-FnAk8LYqoAuOTwnf_GZqrpVa64.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=824e24467171bdd1ad63c555b3fc1897f4f7fc78\", \"width\": 640, \"height\": 334}], \"variants\": {}, \"id\": \"1VYNUlPInzlJGlMEtzl0EM51PFaGG3deag1xnxXfYa0\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4jubm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c4jubm/gaetrer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://sophosnews.files.wordpress.com/2016/05/stingray.jpg?w=780\\u0026h=408\\u0026crop=1\", \"subreddit_subscribers\": 720, \"created_utc\": 1561362189.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"hreateraewr\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_c4jrrg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Wwm_Hs3s4sR9fm12eOn0X4qqQVoRgJo3Xm7p-nH1cnE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561390391.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"images.unsplash.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/F9c50HJugywK65XZuenfTbyA-9YiRUDhs1PFWlSxhMw.jpg?auto=webp\\u0026s=02c1cdeb3634675557db191ea547345c524618af\", \"width\": 1000, \"height\": 667}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/F9c50HJugywK65XZuenfTbyA-9YiRUDhs1PFWlSxhMw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c75ff4a911443a69f4e9ae70a3fdbd940fe2506a\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/F9c50HJugywK65XZuenfTbyA-9YiRUDhs1PFWlSxhMw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=462b3f00c98fa1e05dddf33134f7eeb9c8a710c2\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/F9c50HJugywK65XZuenfTbyA-9YiRUDhs1PFWlSxhMw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=012f647eb2698f3b08b270d11ce75fff590b55d7\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/F9c50HJugywK65XZuenfTbyA-9YiRUDhs1PFWlSxhMw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=7b8cf03e2d1f5aba473c17e517be1dd3b136f13e\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/F9c50HJugywK65XZuenfTbyA-9YiRUDhs1PFWlSxhMw.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=1c40eb22194bf06f4cee69ddd06217b0d2e9699b\", \"width\": 960, \"height\": 640}], \"variants\": {}, \"id\": \"U-mHMvez9Nk3r1my_OwAB_u65qTwLQgvhUM0K5VOR2s\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4jrrg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c4jrrg/hreateraewr/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://images.unsplash.com/photo-1555902109-cbb0e2bed25f?ixlib=rb-1.2.1\\u0026ixid=eyJhcHBfaWQiOjEyMDd9\\u0026w=1000\\u0026q=80\", \"subreddit_subscribers\": 720, \"created_utc\": 1561361591.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://reddit.com/link/c4cz21/video/q2wasptlj6631/player\", \"author_fullname\": \"t2_zqkj5sw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Thanos snap in Forza Horizon 4\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"media_metadata\": {\"q2wasptlj6631\": {\"status\": \"valid\", \"e\": \"RedditVideo\", \"dashUrl\": \"https://v.redd.it/link/c4cz21/asset/q2wasptlj6631/DASHPlaylist.mpd\", \"x\": 1920, \"y\": 1080, \"hlsUrl\": \"https://v.redd.it/link/c4cz21/asset/q2wasptlj6631/HLSPlaylist.m3u8\", \"id\": \"q2wasptlj6631\", \"isGif\": false}}, \"name\": \"t3_c4cz21\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"spoiler\", \"edited\": 1561327799.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561356392.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://reddit.com/link/c4cz21/video/q2wasptlj6631/player\\\"\\u003Ehttps://reddit.com/link/c4cz21/video/q2wasptlj6631/player\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": true, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4cz21\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Armroker\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c4cz21/thanos_snap_in_forza_horizon_4/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c4cz21/thanos_snap_in_forza_horizon_4/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561327592.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I have enabled shortcuts for copying/pasting to CLIPBOARD and to PRIMARY in xterm and I want to have independent contents of them. But when I copy something to one buffer, that new content also replaces the old contents of the other buffer. The same belongs to clipboard and secondary. Is it possible to disable this and have independent buffers?\\n\\nI configured shortcuts in the following way:\\n\\n```\\nxterm*VT100.Translations: #override \\\\\\n Ctrl Shift \\u003CKey\\u003EV: insert-selection(CLIPBOARD) \\\\n\\\\\\n Ctrl Shift \\u003CKey\\u003EC: copy-selection(CLIPBOARD) \\\\n\\\\\\n Mod1 \\u003CKey\\u003EC: copy-selection(PRIMARY) \\\\n\\\\\\n Mod1 \\u003CKey\\u003EV: insert-selection(PRIMARY)\\n```\", \"author_fullname\": \"t2_yxiwtbf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c43edf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561319581.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have enabled shortcuts for copying/pasting to CLIPBOARD and to PRIMARY in xterm and I want to have independent contents of them. But when I copy something to one buffer, that new content also replaces the old contents of the other buffer. The same belongs to clipboard and secondary. Is it possible to disable this and have independent buffers?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI configured shortcuts in the following way:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\nxterm*VT100.Translations: #override \\\\\\n Ctrl Shift \\u0026lt;Key\\u0026gt;V: insert-selection(CLIPBOARD) \\\\n\\\\\\n Ctrl Shift \\u0026lt;Key\\u0026gt;C: copy-selection(CLIPBOARD) \\\\n\\\\\\n Mod1 \\u0026lt;Key\\u0026gt;C: copy-selection(PRIMARY) \\\\n\\\\\\n Mod1 \\u0026lt;Key\\u0026gt;V: insert-selection(PRIMARY)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c43edf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ehhov\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c43edf/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c43edf/test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561290781.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"lkjsadlksajdlsakj\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/dfx87x0nd3631.jpg\\n\\n\\u0026#x200B;\\n\\nthat's the story of...\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nconclusion blah blah\\n\\nhttps://i.redd.it/rgdy9arod3631.jpg\", \"author_fullname\": \"t2_3zu86rzw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"salkasjdlksaj\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"media_metadata\": {\"dfx87x0nd3631\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 256, \"x\": 256, \"u\": \"https://i.redd.it/dfx87x0nd3631.jpg\"}, \"m\": \"image/jpg\", \"id\": \"dfx87x0nd3631\"}, \"rgdy9arod3631\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 200, \"x\": 500, \"u\": \"https://i.redd.it/rgdy9arod3631.jpg\"}, \"m\": \"image/jpg\", \"id\": \"rgdy9arod3631\"}}, \"name\": \"t3_c434rf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/nVDHWM3qn81F4X284l8htGdNS7okoOum8eE2c01FQk8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561318290.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Elkjsadlksajdlsakj\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/dfx87x0nd3631.jpg\\\"\\u003Ehttps://i.redd.it/dfx87x0nd3631.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethat\\u0026#39;s the story of...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Econclusion blah blah\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/rgdy9arod3631.jpg\\\"\\u003Ehttps://i.redd.it/rgdy9arod3631.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c434rf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"random_cpc_customer\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c434rf/salkasjdlksaj/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c434rf/salkasjdlksaj/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561289490.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"The Talk-To-All Ritual has had it\\u2019s roots in Japanese history. It was used long ago by medieval Japanese emperors and medieval Japanese citizens during the Kamakura period from 1199-1334. This ritual may be used to talk to anybody, dead or alive or non-existent. You could make up an imaginary friend and talk to him! Great for contacting EVERYONE. So it\\u2019s been passed down throughout the centuries of Japanese history and managed to survive until the Internet came, in which Japanese websites posted the ritual. I have put so much effort to translate the ritual instructions, so I present to you, the Talk-To-All Ritual. It was initially called \\\"Zennin ni hanasu\\\" in Japanese, which is English literally for \\\"speaking-to-all\\\". Here are your instructions.\\n\\nThere are two variations of the ritual. One for contacting persons alive and dead, and the second variation is for contacting imaginary friends.\\n\\nTo begin the ritual (variation for contacting dead and alive), you will need:\\n\\n\\u2022 Writing instrument, like a pencil or pen (pens recommended as pencil can easily be smudged)\\n\\u2022 Two pieces of paper, any size. (NOTE: THE SECOND PIECE OF PAPER MUST BE AT LEAST A4 SIZE, OTHERWISE THE RITUAL WILL FAIL. Any material can be used, as long as you can write on it with a pen. Yes, you can even use papyrus from Egypt.)\\n\\u2022 An image of the person you wish to contact. It can be anything, like an image on your phone, or a drawing.\\n\\u2022 A box. Any size you want, but not so small that you have to fold an A4 to make it fit inside.\\n\\u2022 Patience.\\n\\nNOTES: I will be using Elizabeth Warren, a democratic U.S senator from Massachussets, as an example here.\\nTHE INSTRUCTIONS, FIRST VARIATION.\\n\\n Begin at any time, what time you should choose depends on the type of person you are attempting to contact. A list of times is provided for your convenience.\\n- To contact a dead person, initiate between the hours of 12AM-2:59AM. To contact an alive person, initiate anytime between 3:00AM to 11:59PM. \\n Turn off all the lights in the room. It is okay for sunlight to seep in when done during the day. Artificial light is not allowed.\\n With your piece of paper and writing instrument, write the name of the person you wish to contact. Nicknames are OK. For example, since Donald Trump has referred to Elizabeth Warren as \\\"Pocahontas\\\", you may write \\\"Pocahontas\\\", on the piece of paper, just as an example.\\n Chant \\\"I wish to speak, and I shall hear the voice of *Elizabeth Warren*, four times. After the fourth chant, say \\\"I am sure that I wish to contact this person\\\". It functions like an \\\"are you sure?\\\" GUI message (NOTE, concerning the bolded text, it can be any name, the name or nickname of the person you want to contact. I am using Elizabeth Warren as an example.)\\n Place the paper in your box.\\n Chant \\\"Let me hear the words I want in written form\\\", if you want a reply from the person written on the second piece of paper. If you want to recieve your reply as a voice, chant \\\"Let me hear the words I want, as a voice near me.\\n Look behind you, for 20 seconds. Keep the box open.\\n Look at the box. If the paper disappears, the ritual has failed to be initiated. Leave the room, and do not enter the room for two days. Because of such, it is advised that you do the ritual outside your home. If the paper has green marks, that means that the ritual has been initiated.\\n Chant \\\"To the person I call in my life with the name of Elizabeth Warren, shall my words be heard by you, and they are: [your message here]. (Note: I AM USING ELIZABETH WARREN AS AN EXAMPLE.)\\n If you chose to hear your reply as a voice, go to sleep. You will have a dream and you will hear your reply as a voice within the dream. You may do anything within the dream, thus you do not require lucid dreaming skills.\\n If you chose a written reply, expect the reply to be in your mail within 3 days. If you do not have a mailbox, place the box with the A4 paper in a safe place. Check it everyday, for three days, and the paper will have a message written on it.\\n Congratulations, you have successfully conducted the ritual. Great job.\", \"author_fullname\": \"t2_20uo12nk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"horror test.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c407tq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561300604.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe Talk-To-All Ritual has had it\\u2019s roots in Japanese history. It was used long ago by medieval Japanese emperors and medieval Japanese citizens during the Kamakura period from 1199-1334. This ritual may be used to talk to anybody, dead or alive or non-existent. You could make up an imaginary friend and talk to him! Great for contacting EVERYONE. So it\\u2019s been passed down throughout the centuries of Japanese history and managed to survive until the Internet came, in which Japanese websites posted the ritual. I have put so much effort to translate the ritual instructions, so I present to you, the Talk-To-All Ritual. It was initially called \\u0026quot;Zennin ni hanasu\\u0026quot; in Japanese, which is English literally for \\u0026quot;speaking-to-all\\u0026quot;. Here are your instructions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere are two variations of the ritual. One for contacting persons alive and dead, and the second variation is for contacting imaginary friends.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo begin the ritual (variation for contacting dead and alive), you will need:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Writing instrument, like a pencil or pen (pens recommended as pencil can easily be smudged)\\n\\u2022 Two pieces of paper, any size. (NOTE: THE SECOND PIECE OF PAPER MUST BE AT LEAST A4 SIZE, OTHERWISE THE RITUAL WILL FAIL. Any material can be used, as long as you can write on it with a pen. Yes, you can even use papyrus from Egypt.)\\n\\u2022 An image of the person you wish to contact. It can be anything, like an image on your phone, or a drawing.\\n\\u2022 A box. Any size you want, but not so small that you have to fold an A4 to make it fit inside.\\n\\u2022 Patience.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENOTES: I will be using Elizabeth Warren, a democratic U.S senator from Massachussets, as an example here.\\nTHE INSTRUCTIONS, FIRST VARIATION.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBegin at any time, what time you should choose depends on the type of person you are attempting to contact. A list of times is provided for your convenience.\\n- To contact a dead person, initiate between the hours of 12AM-2:59AM. To contact an alive person, initiate anytime between 3:00AM to 11:59PM. \\n Turn off all the lights in the room. It is okay for sunlight to seep in when done during the day. Artificial light is not allowed.\\n With your piece of paper and writing instrument, write the name of the person you wish to contact. Nicknames are OK. For example, since Donald Trump has referred to Elizabeth Warren as \\u0026quot;Pocahontas\\u0026quot;, you may write \\u0026quot;Pocahontas\\u0026quot;, on the piece of paper, just as an example.\\n Chant \\u0026quot;I wish to speak, and I shall hear the voice of \\u003Cem\\u003EElizabeth Warren\\u003C/em\\u003E, four times. After the fourth chant, say \\u0026quot;I am sure that I wish to contact this person\\u0026quot;. It functions like an \\u0026quot;are you sure?\\u0026quot; GUI message (NOTE, concerning the bolded text, it can be any name, the name or nickname of the person you want to contact. I am using Elizabeth Warren as an example.)\\n Place the paper in your box.\\n Chant \\u0026quot;Let me hear the words I want in written form\\u0026quot;, if you want a reply from the person written on the second piece of paper. If you want to recieve your reply as a voice, chant \\u0026quot;Let me hear the words I want, as a voice near me.\\n Look behind you, for 20 seconds. Keep the box open.\\n Look at the box. If the paper disappears, the ritual has failed to be initiated. Leave the room, and do not enter the room for two days. Because of such, it is advised that you do the ritual outside your home. If the paper has green marks, that means that the ritual has been initiated.\\n Chant \\u0026quot;To the person I call in my life with the name of Elizabeth Warren, shall my words be heard by you, and they are: [your message here]. (Note: I AM USING ELIZABETH WARREN AS AN EXAMPLE.)\\n If you chose to hear your reply as a voice, go to sleep. You will have a dream and you will hear your reply as a voice within the dream. You may do anything within the dream, thus you do not require lucid dreaming skills.\\n If you chose a written reply, expect the reply to be in your mail within 3 days. If you do not have a mailbox, place the box with the A4 paper in a safe place. Check it everyday, for three days, and the paper will have a message written on it.\\n Congratulations, you have successfully conducted the ritual. Great job.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c407tq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CrazybloxianEmpireNS\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c407tq/horror_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c407tq/horror_test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561271804.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"don't mind me just testing some images\\n\\nhttps://i.redd.it/95v7191rp1631.jpg\", \"author_fullname\": \"t2_36orwote\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"le image test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"media_metadata\": {\"95v7191rp1631\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 600, \"x\": 600, \"u\": \"https://i.redd.it/95v7191rp1631.jpg\"}, \"m\": \"image/jpg\", \"id\": \"95v7191rp1631\"}}, \"name\": \"t3_c3zwbf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/xsfF_uRQ-a3kdJ3vW6Z7vJSiIZaaMsopZhA8ZW7vwQw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561298160.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edon\\u0026#39;t mind me just testing some images\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/95v7191rp1631.jpg\\\"\\u003Ehttps://i.redd.it/95v7191rp1631.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3zwbf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"stella12341\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c3zwbf/le_image_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c3zwbf/le_image_test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561269360.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test test\", \"author_fullname\": \"t2_36orwote\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Flair test] testing\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c3zs6s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561297280.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3zs6s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"stella12341\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c3zs6s/flair_test_testing/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c3zs6s/flair_test_testing/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561268480.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_ne624d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Thumbnail test again\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 123, \"hide_score\": false, \"name\": \"t3_c3v15j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/yBUDU-PaljmOTTgK612ZOg2UwPhH-Nywx5slQkDH6CA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561267929.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/5gt7eqbx7z531.jpg?auto=webp\\u0026s=df8da76f40876ae7824405fa32d9761067a583ec\", \"width\": 851, \"height\": 750}, \"resolutions\": [{\"url\": \"https://preview.redd.it/5gt7eqbx7z531.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=9a380176991635d4078a90d1dea370799028af63\", \"width\": 108, \"height\": 95}, {\"url\": \"https://preview.redd.it/5gt7eqbx7z531.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=13d3aa3fa22b328fca03c9e045723c007223bbd9\", \"width\": 216, \"height\": 190}, {\"url\": \"https://preview.redd.it/5gt7eqbx7z531.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d32ac0cc3f6f5fa0579e6202b31c139a7f537a94\", \"width\": 320, \"height\": 282}, {\"url\": \"https://preview.redd.it/5gt7eqbx7z531.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=00c659fe3c3b3129c921024a627c558c1d6cfbe9\", \"width\": 640, \"height\": 564}], \"variants\": {}, \"id\": \"EMR4Z87F_DmwGEPOJNyQJDSY4pkEdKJszV2M2epxDrM\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3v15j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thepriceman14\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c3v15j/thumbnail_test_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/5gt7eqbx7z531.jpg\", \"subreddit_subscribers\": 720, \"created_utc\": 1561239129.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"|\\u0026nbsp;\\nY indicates combinations that work.| |Application Method| | | | | | |\\n:--|:--|:--|:--|:--|:--|:--|:--|:--|\\n|Runaan's|Voli's Lightning|Graves|Lucian Doublehit\\u2020|Gunslinger Passive|Blademaster Passive*|Item Damage\\u2021|\\n|\\u0026nbsp;\\nEffect|Gunblade||||||||\\n|Bloodthirster||||||||\\n|Negatron Debuffs\\u00a7||||||||\\n|Red Buff||||||||\\n|Morellonomicon||||||||\\n|Titanic Hydra||||||||\\n|Spear of Shojin||||||||\\n|Rageblade Stacks||||||||\\n|Statikk Stacks||||||||\\n|Glacial Passive||||||||\\n|Demon Passive||||||||\\n|Blademaster Passive**||||||||\\n|Wild Passive Stacks||||||||\\n|Noble Passive (Healing)||||||||\\n|Spinning Axes||||||||\\n|Silver Bolts||||||||\\n|Kassadin Manashield||||||||\\n|* Do the extra hits from blademaster passive proc this effect?| | | | | | | | |\\n|** Does this application method have a chance to cause the extra hit from the blademaster passive to be applied?| | | | | | | | |\\n|\\u2020 Indicated with 1, 2, or Both whether the physical damage first hit and the spell damage second hit can apply this effect.| | | | | | | | |\\n|\\u2021 Indicated with All, or as many numbers as apply for 1) Statikk Shiv 2) Red Buff Burn 3) Morellonomicon Burn 4) Titanic Hydra 4) Luden's Echo 5) Ionic Spark| | | | | | | | |\\n|\\u00a7 Indicated with All, or as many numbers as apply for 1) Dervish Blade 2) Hush 3) Sword Breaker| | | | | | | | |\", \"author_fullname\": \"t2_8s791\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c3suet\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561255537.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E|\\u0026nbsp;\\nY indicates combinations that work.| |Application Method| | | | | | |\\n:--|:--|:--|:--|:--|:--|:--|:--|:--|\\n|Runaan\\u0026#39;s|Voli\\u0026#39;s Lightning|Graves|Lucian Doublehit\\u2020|Gunslinger Passive|Blademaster Passive\\u003Cem\\u003E|Item Damage\\u2021|\\n|\\u0026nbsp;\\nEffect|Gunblade||||||||\\n|Bloodthirster||||||||\\n|Negatron Debuffs\\u00a7||||||||\\n|Red Buff||||||||\\n|Morellonomicon||||||||\\n|Titanic Hydra||||||||\\n|Spear of Shojin||||||||\\n|Rageblade Stacks||||||||\\n|Statikk Stacks||||||||\\n|Glacial Passive||||||||\\n|Demon Passive||||||||\\n|Blademaster Passive\\u003C/em\\u003E\\u003Cem\\u003E||||||||\\n|Wild Passive Stacks||||||||\\n|Noble Passive (Healing)||||||||\\n|Spinning Axes||||||||\\n|Silver Bolts||||||||\\n|Kassadin Manashield||||||||\\n|\\u003C/em\\u003E Do the extra hits from blademaster passive proc this effect?| | | | | | | | |\\n|** Does this application method have a chance to cause the extra hit from the blademaster passive to be applied?| | | | | | | | |\\n|\\u2020 Indicated with 1, 2, or Both whether the physical damage first hit and the spell damage second hit can apply this effect.| | | | | | | | |\\n|\\u2021 Indicated with All, or as many numbers as apply for 1) Statikk Shiv 2) Red Buff Burn 3) Morellonomicon Burn 4) Titanic Hydra 4) Luden\\u0026#39;s Echo 5) Ionic Spark| | | | | | | | |\\n|\\u00a7 Indicated with All, or as many numbers as apply for 1) Dervish Blade 2) Hush 3) Sword Breaker| | | | | | | | |\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3suet\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thriveofficial\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c3suet/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c3suet/test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561226737.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Just some boring test text.\\n\\nSome more boring text... 2lb\\n\\n\\n\\nYeah! 4lb\\n\\nSup.. 2lb\\n\\n\\n(hopefully this works) 3 lb\", \"author_fullname\": \"t2_xbkzg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TEST 123\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c3ky5r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561204604.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust some boring test text.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESome more boring text... 2lb\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYeah! 4lb\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESup.. 2lb\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(hopefully this works) 3 lb\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3ky5r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ElGuerrouj\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c3ky5r/test_123/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c3ky5r/test_123/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561175804.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nThe Post Lorem Ipsum dolor sit amet\", \"author_fullname\": \"t2_2lt276sq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"One post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 79, \"hide_score\": false, \"media_metadata\": {\"lm15ytj7kw531\": {\"status\": \"valid\", \"e\": \"AnimatedImage\", \"s\": {\"y\": 544, \"gif\": \"https://i.redd.it/lm15ytj7kw531.gif\", \"mp4\": \"https://external-preview.redd.it/lm15ytj7kw531.gif?format=mp4\\u0026s=4627e769925f93365a3aa757b461e73d6923af9e\", \"x\": 960}, \"m\": \"image/gif\", \"id\": \"lm15ytj7kw531\"}}, \"name\": \"t3_c3hdwm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9VOfx36NQ5j6ANmwWabWKApSgscDFxQPCLJAIEf5Mnc.jpg\", \"edited\": 1561207317.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561184502.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Post Lorem Ipsum dolor sit amet\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3hdwm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MMihran\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c3hdwm/one_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c3hdwm/one_post/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561155702.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_3um52nx7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test baby test baby 123\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c3fkvd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561175889.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": true, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"rte_mode\": \"markdown\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3fkvd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c3fkvd/test_baby_test_baby_123/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c3fkvd/test_baby_test_baby_123/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561147089.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3klvhedf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_c3ap59\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/0td9Z8C4jNU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Rabbit eating watermelon ASMR\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/0td9Z8C4jNU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"OneMorePlease\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/0td9Z8C4jNU/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/mikeycornell\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/0td9Z8C4jNU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/c3ap59\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/EQRkXUKKWdOeRonaYXlCxTbjx8zolIZ7hUTbAVr5wHU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561153289.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/itfQIhvDSUvHWXVCmYbfqEETbX4nGvy9d-8U-s4SpVU.jpg?auto=webp\\u0026s=ca08b4d4c9c6f3d1f55ec0039c32f5662ab11867\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/itfQIhvDSUvHWXVCmYbfqEETbX4nGvy9d-8U-s4SpVU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b6126eeb2dfd0c54e108cddf36c6e07ef1c59d4a\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/itfQIhvDSUvHWXVCmYbfqEETbX4nGvy9d-8U-s4SpVU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b41fe5a296db8fa9628bec78cc2bcdad34e30e33\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/itfQIhvDSUvHWXVCmYbfqEETbX4nGvy9d-8U-s4SpVU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ffb9ab74b6c4bf93d0816c09278154d3c347d8aa\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"eTuCKqEXBWFVs5zf8bWxNImJ05n3vtekCF-n2cleGkc\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3ap59\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skjaersilden\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c3ap59/testing/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://youtu.be/0td9Z8C4jNU\", \"subreddit_subscribers\": 720, \"created_utc\": 1561124489.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Rabbit eating watermelon ASMR\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/0td9Z8C4jNU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"OneMorePlease\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/0td9Z8C4jNU/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/mikeycornell\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"#[OC] Stats on game day thread comments.\\n\\nOur game day threads are one of my favorite parts of this sub. Since there was an off day yesterday and we're about halfway through the season, I spent some time rounding up the comment data of all the GDTs for the 2019 season. Here's the summary:\\n\\n#Overall\\n\\n**[Graph - Number of Comments by Date](https://i.imgur.com/MJSd7Pa.png)**\\n\\n\\u0026nbsp;\\n\\n|GDTs|Total Comments|Average # of Comments|\\n|:-:|:-:|:-:|\\n|75|173,553|2,314|\\n\\n#Highest and Lowest\\n\\n||Comments|Opposition|Date|Time|Day|\\n|:-:|:-:|:-:|:-:|:-:|:-:|\\n|**Highest**|4,880|Phillies|3/31/2019|7:05 PM|Sunday|\\n|**Lowest**|739|Padres|5/2/2019|12:10 PM|Thursday|\\n\\n#Average Splits\\n\\n|**Win**|Loss|\\n|:-:|:-:|\\n|**2,443**|2,130|\\n\\n|Day|**Night**|\\n|:-:|:-:|\\n|1,937|**2,433**|\\n\\n|**Home**|Away|\\n|:-:|:-:|\\n|**2,362**|2,255|\\n\\n|Weekday|**Weekend**|\\n|:-:|:-:|\\n|2,284|**2,373**|\\n\\n#Daily Average\\n\\n|Day|Average|\\n|:-:|:-:|\\n|**Monday**|**2,645**|\\n|Tuesday|2,335|\\n|Wednesday|2,445|\\n|Thursday|2,148|\\n|Friday|1,949|\\n|Saturday|2,156|\\n|Sunday|2,609|\\n\\n#Sundays\\n\\nOne interesting thing about Sunday games is how skewed the average is because of the high number of Sunday Night Baseball games we've had this year. The difference in the averages between day and night games on Sunday is drastic.\\n\\n|Sunday Day|**Sunday Night**|\\n|:-:|:-:|\\n|1,969|**3,890**|\\n\\nThe average Sunday night comment count also skews the weekday/weekend numbers. So by the end of the year, I expect the weekday GDTs will have a higher comment average than weekend games.\\n\\n#Summary\\n\\nI may expand on this list if I get some free time in the future to include tailgate and post game threads and maybe throw a few new qualifiers in if enough people are interested in seeing this type of post.\", \"author_fullname\": \"t2_34692\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"gdt\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c31w77\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1561088831.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561094987.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003E[OC] Stats on game day thread comments.\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EOur game day threads are one of my favorite parts of this sub. Since there was an off day yesterday and we\\u0026#39;re about halfway through the season, I spent some time rounding up the comment data of all the GDTs for the 2019 season. Here\\u0026#39;s the summary:\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EOverall\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"https://i.imgur.com/MJSd7Pa.png\\\"\\u003EGraph - Number of Comments by Date\\u003C/a\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EGDTs\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ETotal Comments\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAverage # of Comments\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E75\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E173,553\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2,314\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EHighest and Lowest\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EComments\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EOpposition\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EDate\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ETime\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EDay\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EHighest\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E4,880\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPhillies\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E3/31/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E7:05 PM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESunday\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003ELowest\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E739\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPadres\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E5/2/2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E12:10 PM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EThursday\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EAverage Splits\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EWin\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ELoss\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E2,443\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2,130\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EDay\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003ENight\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1,937\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E2,433\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EHome\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAway\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E2,362\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2,255\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EWeekday\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EWeekend\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2,284\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E2,373\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EDaily Average\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EDay\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAverage\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EMonday\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E2,645\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ETuesday\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2,335\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EWednesday\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2,445\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EThursday\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2,148\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EFriday\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1,949\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESaturday\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2,156\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESunday\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2,609\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ESundays\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EOne interesting thing about Sunday games is how skewed the average is because of the high number of Sunday Night Baseball games we\\u0026#39;ve had this year. The difference in the averages between day and night games on Sunday is drastic.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESunday Day\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003ESunday Night\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E1,969\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003E3,890\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EThe average Sunday night comment count also skews the weekday/weekend numbers. So by the end of the year, I expect the weekday GDTs will have a higher comment average than weekend games.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003ESummary\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI may expand on this list if I get some free time in the future to include tailgate and post game threads and maybe throw a few new qualifiers in if enough people are interested in seeing this type of post.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/icHOuPlZfzTEDu_nx-EDkeumtd_yVtoeOhqSKgCCMrY.png?auto=webp\\u0026s=4d5a36a7dd088d8ce46a9537c36aaeeec1efe9de\", \"width\": 1400, \"height\": 453}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/icHOuPlZfzTEDu_nx-EDkeumtd_yVtoeOhqSKgCCMrY.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3ca481e3e0fef5b5b3800fc611394ae8c6962a16\", \"width\": 108, \"height\": 34}, {\"url\": \"https://external-preview.redd.it/icHOuPlZfzTEDu_nx-EDkeumtd_yVtoeOhqSKgCCMrY.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=04634b709357c869d7b568f39a4f68180bc5eafe\", \"width\": 216, \"height\": 69}, {\"url\": \"https://external-preview.redd.it/icHOuPlZfzTEDu_nx-EDkeumtd_yVtoeOhqSKgCCMrY.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=671b4484bda2d8e01c612c54a434856d111816b7\", \"width\": 320, \"height\": 103}, {\"url\": \"https://external-preview.redd.it/icHOuPlZfzTEDu_nx-EDkeumtd_yVtoeOhqSKgCCMrY.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=132f57c8e69ed2f0d485ad64a28be6f6697c846c\", \"width\": 640, \"height\": 207}, {\"url\": \"https://external-preview.redd.it/icHOuPlZfzTEDu_nx-EDkeumtd_yVtoeOhqSKgCCMrY.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=984c7e5f1be6baa67ef5fa6db2dc8db9f1ae715f\", \"width\": 960, \"height\": 310}, {\"url\": \"https://external-preview.redd.it/icHOuPlZfzTEDu_nx-EDkeumtd_yVtoeOhqSKgCCMrY.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=806e5ab387b5a05b5c7d7403a9efc24fef65d23b\", \"width\": 1080, \"height\": 349}], \"variants\": {}, \"id\": \"DEW1kMwaFGbwV4p4Un5mnLIFlmRGFoM_DxjqU6NoSBc\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c31w77\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"handlit33\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c31w77/gdt/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c31w77/gdt/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561066187.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"t4est\", \"author_fullname\": \"t2_pxjno\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c30lpw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1561061343.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561088825.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Et4est\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c30lpw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kabumaru\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c30lpw/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c30lpw/test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561060025.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" asddddddddddd\\n asdddddddd\\n asdddddddd\\n asdasdasda\\n\\nasd\\u003E!asdasdasdasdasd!\\u003C\", \"author_fullname\": \"t2_pw6ds\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c2zxx3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561085616.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003Easddddddddddd\\nasdddddddd\\nasdddddddd\\nasdasdasda\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Easd\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003Easdasdasdasdasd\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2zxx3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"D3cpt\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c2zxx3/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c2zxx3/test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561056816.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"_____________\\n***X-Men: War of the Mutants***\\n_____________\\n***INTRODUCTION:***\\n\\nIt's been two years since the X-Men's battle with **Weapon X** at their abandoned fortress on the island of **Krakoa**. In the wake of that fateful battle, **Scott Summers** and **Jean Grey** chose to leave the **Xavier Institute** to embark on a search for the founder of Weapon X: a mysterious man called \\\"**Essex**\\\". As Scott learned, the tragic plane crash that claimed the lives of his parents was *not* as accidental as he was led to believe, but was actually a targeted assassination carried out on Essex's orders. Years ago, Scott's father **Major Christopher Summers** tried to expose the existence of the sinister Weapon X project, only to have his plane shot down before he could escape with sensitive information on the project's origins. Determined to avenge his parents' murders, Scott has spent two years searching the world for clues on Essex's whereabouts with his beloved girlfriend Jean by his side.\\n\\nMeanwhile, back in Westchester, political activist **Professor Charles Xavier** continues the fight for Mutant rights while training his Mutant pupils to use their powers for the good of humanity. With Scott and Jean's departure, the last of the five original X-Men are gone for good, leaving a whole new team in their place: reformed Kenyan street thief **Ororo Munroe** (\\\"**Storm**\\\"), jaunty German circus performer **Kurt Wagner** (\\\"**Nightcrawler**\\\"), gentle-hearted Russian refugee **Piotr Rasputin** (\\\"**Colossus**\\\"), and fugitive Weapon X test subject \\\"Logan\\\" (better known by his old codename, \\\"**Wolverine**\\\"). \\n\\nAfter years of fighting the good fight, public opinion on Mutant rights is *finally* beginning to turn, leading to the long-awaited shutdown of the controversial **Sentinel Project**, as well as a new law protecting Mutants from being detained without trial. Still, Xavier fears that anti-Mutant forces in the US government may be biding their time, waiting for the right moment to strike back at the Mutant freedom fighters who would defy them. When that day comes, the X-Men may be forced to test their skills in battle once more...\\n_______________\\n***PROLOGUE:***\\n\\nOn a quiet night in Chicago, 17-year-old **Kitty Pryde** has a harrowing brush with death after she mysteriously *falls through the sidewalk* while walking home from a dance class. While trapped in the sewers underneath the city, she discovers\\u2014much to her shock\\u2014that she possesses a powerful ability to make her body intangible, allowing her to pass through solid objects like a ghost.\\n\\nLater, after she finally manages to free herself and make her way back home, her parents inform her that they've received an unexpected phone call from upstate New York, and a mysterious professor called \\\"Xavier\\\" has offered her a place in his school. As Kitty stares at the piece of paper where her parents have scrawled Xavier's phone number, she suddenly hears the telepathic voice of Charles Xavier in her head.\\n\\n*\\\"I know what happened, Kitty,\\\"* he says. *\\\"I know you're afraid. And I know that you don't know what to do. Neither did I, the first time I realized what I was. But know this: you're no freak, and you're no monster. You're* ***gifted****, Kitty. We all have gifts\\u2014and we can embrace them, or run away from them. But if you would have a new home with others like you, my school is open to you. The choice is yours, and the call is yours to answer.\\\"*\\n\\nAfter a moment's hesitation, Kitty reaches for the phone.\\n____________________ \\n\\n***ACT 1:***\\n\\nOn the other side of the world, we rejoin Scott and Jean as they continue their search for the mysterious Essex. After two years of searching for clues, their journey has taken them across the Atlantic Ocean and to the British Isles. In a ramshackle old boat, they make their way through the misty waters of the **Outer Hebrides** off the coast of Scotland, on their way to a secluded place called \\\"**Muir Island**\\\".\\n\\nAs they dock at Muir Island, the pair make their way through the desolate Scottish countryside, which appears to be devoid of life. But eventually, they find a barbed-wire fence surrounding a massive laboratory\\u2014which has clearly been abandoned for years. A nearby sign reads \\\"**Muir Island Research Complex\\\"**.\\n\\n*\\\"This is it,\\\"* Scott breathes. *\\\"It's real.\\\"*\\n\\n*\\\"So this is where it all started?\\\"* Jean asks.\\n\\n*\\\"That's what they say,\\\"* Scott says. *\\\"If there's an answer, I think we'll find it here...\\\"*\\n____________________\\n\\nIn Westchester, Kitty Pryde's parents drive her up to the front gate of the Xavier Institute. With bags in hand, Kitty walks to the front door, where she's greeted warmly by Professor Xavier. Over the course of a tour, Kitty meets each of the four X-Men in turn: Storm, Nightcrawler, Colossus, and Wolverine. In the two years since Scott and Jean left, the quartet have grown into an inseparable team, and they've honed their skills to deadly precision in the **Danger Room**. But upon meeting the newest member of the group, Storm is eager to see her put her powers to use in training.\\n\\nWhile on their way to the Danger Room to begin Kitty's training, the group passes a framed photograph of the five original X-Men: Scott, Jean, **Hank McCoy** (\\\"**Beast**\\\"), **Warren Worthington** (\\\"**Angel**\\\"), and **Bobby Drake** (\\\"**Iceman**\\\"). As he sadly contemplates the photo, the Professor reflects on all the changes that have befallen the X-Men since he formed the team. Though he has faith in the new generation of X-Men, he privately wonders what changes await them in the days to come.\\n\\nBut in dark corner in a distant hallway, a mysterious figure watches the X-Men from afar...\\n______________________\\n\\nIn a government building in upstate New York, high-ranking CIA operative **Raven Darkholme** makes a report to her superiors, documenting everything that she's learned about Charles Xavier and his X-Men. On the wall behind her, we see clearly labeled surveillance photos of Storm, Nightcrawler, Colossus, Wolverine, Kitty, and the Professor\\u2014alongside detailed schematics and blueprints of the mansion. It's immediately obvious that Raven has been monitoring the X-Men for *years*, and she's amassed a treasure trove of information on them.\\n\\nSoon after, Raven receives a visit from a colleague in the United States Army: Colonel **Cain Marko**, a decorated officer serving in the Special Forces.\\n\\n*\\\"It's time,\\\"* Raven tells him. *\\\"It's taken more than two years, but I know everything I need to know. If we're going to take the X-Men down, the time is now. Can your men handle the job?\\\"*\\n\\nMarko laughs at the question.\\n\\n*\\\"What do you think they've been training for?\\\"* he asks. *\\\"My boys have run every scenario there is. They're ready for anything Xavier could throw at them. I've got a squad of professional Mutant killers at my command, ready to march.\\\"*\\n\\n*\\\"We'll need more than that,\\\"* Raven says. *\\\"I've got a few special operatives on hand. The worst of the worst. They've been waiting for a job like this for months.\\\"*\\n\\nShe opens a drawer and reveals two file folders, each one marked with a different name.\\n\\nThe first reads ***\\\"Creed, Victor\\\".*** The second reads ***\\\"LeBeau, Remy\\\".***\\n\\n*\\\"Mutants...\\\"* Marko scoffs, reading the file. *\\\"You never told me you had Mutants on the payroll. This changes things.\\\"*\\n\\n*\\\"No, it doesn't,\\\"* Raven says. *\\\"Your men are your responsibility. But my operatives answer to me, and me alone. I'll call them into action when they're needed. If you have a problem with that, you can take it up with our mutual superior.\\\"*\\n\\nAt the mention of their \\\"mutual superior\\\", Marko backs off\\u2014visibly frightened.\\n\\n*\\\"You keep an eye on those Muties, you hear me?\\\"* Marko says before leaving. *\\\"Those freaks can't be trusted. They'll kill you in a heartbeat if you turn your back to 'em.\\\"*\\n\\nAs soon as he leaves, Raven's eyes turn yellow, and her skin turns blue as she resumes her true form.\\n\\n*\\\"If you only knew, Marko...\\\"* she whispers, smirking. *\\\"If you only knew...*\\\"\\n______________________\\n\\nOne afternoon, while the X-Men are hard at work training in the Danger Room, Professor Xavier pays a visit to the psychiatric ward of a nearby hospital in the town of **Salem Center**. As he checks in with the hospital staff, he asks to see \\\"**Patient 158**\\\", whom he's clearly familiar with.\\n\\n*\\\"The Jane Doe...\\\"* the nurse says, sighing. *\\\"You've got more faith in her than we do, Xavier.\\\"*\\n\\nThe Professor heads to a secluded room, where he meets with Patient 158: a young woman wearing a green hooded sweatshirt over her hospital gown. Her face is obscured by the hood, and her voice is faint.\\n\\n*\\\"I've come back, my dear,\\\"* the Professor says. *\\\"I told you that I would. As long as you need me, I'll be here for you.\\\"*\\n\\n*\\\"I still hear the voices in my head,\\\"* Patient 158 says. *\\\"It's a chorus of voices. They never stop. But there's one voice...\\\"*\\n\\nShe shudders as she mentions it, becoming visibly emotional.\\n\\n*\\\"I see a face, pale as death,\\\"* she says. *\\\"Black eyes, staring into my soul.\\\"*\\n\\n*\\\"I can help you, if you let me,\\\"* the Professor says. *\\\"Would you like to show me?\\\"*\\n\\nHesitantly, Patient 158 nods. The Professor places his hand on her forehead and reaches out with his telepathy.\\n\\nWithin moments, he is overwhelmed by a chorus of faces and voices, all calling out to him from the depths of the woman's psyche. But amid the chatter, one face beckons his attention: the face of a man with deathly pale skin, black eyes, and a glowing red diamond in the center of his forehead. The Professor recoils in horror as he instantly recognizes the face of the mysterious **Essex**.\\n\\n*\\\"You've seen him...\\\"* the Professor whispers. *\\\"Few people have seen that man's face and lived to tell of it.\\\"*\\n\\nHe tries to ask Patient 158 how she came to know Essex, but she becomes too emotional, and he's forced to cut the session short. As the orderlies take Patient 158 back to her hospital room, he makes his way back to the mansion.\\n________________________\\n\\nBack at Muir Island, Scott and Jean explore the grounds of the abandoned research complex, making their way through labyrinthine halls filled with dusty laboratories and crumbling scientific equipment. After hours of exploring, they find their way to a library filled with scientific books. On one bookshelf, Jean finds an antique leather-bound book full of aged daguerreotype photos of dissected humans with bizarre physical mutations; as she flips through the book's pages, she realizes that it's a firsthand account of the earliest research into Mutant biology, and it was written in the 19th century. The author, whose photo is framed on the back cover, was an English scientist named **Nathaniel Essex**.\\n\\nScott instantly recognizes Nathaniel Essex as the man who sent the video message on the island of Krakoa, but his photo is dated \\\"1876\\\". The \\\"Essex\\\" who founded Weapon X couldn't possibly be the same man who first researched Mutant biology in the 1800s; if he were, he would be well over 100 years old by now. \\n\\nAs Jean continues to search the library, she eventually stumbles upon a box of dusty film reels, and finds an electric film projector nearby. After she loads one of the film reels into the projector, she discovers that it's research footage from the 1970s, depicting some of the first experiments on human mutation. In the film, a young Scottish woman conducts an experiment with a young American man in a tweed suit, while a silver-haired young German man watches them from afar. As the experiment begins, the Scottish woman introduces herself as **Dr. Moira MacTaggert**, and she introduces her two companions as **Charles Xavier** and **Erik Lehnsherr**. Though the footage is decades old, she recognizes both men instantly.\\n\\nAs the experiment begins, Moira draws a series of cards from a deck, and challenges Charles to identify each one while blindfolded; using his telepathy, Charles successfully identifies each card by reading Moira's mind. Later, she challenges Lehnsherr to levitate a series of metal objects across the room using his magnetic powers, which he does with ease. \\n\\nJean realizes that the Muir Island Research Complex was the first place where Magneto and the Professor trained themselves to use their powers. According to rumors, the laboratory was also the place where human mutation was first discovered, and it was once the largest Mutant research facility in the world. Somewhere along the line, though, Muir Island was shut down. But *why?*\\n\\nAs Jean and Scott regroup, Scott wonders how Moira MacTaggert\\u2014apparently the last director of the Muir Island Research Complex before it was shut down\\u2014is connected to Weapon X and the mysterious Essex. Jean isn't convinced that she's involved with the organization, but she knows that she might have information about it. If they can find MacTaggert, then, they might be able to learn more about Weapon X.\\n\\nAfter searching MacTaggert's old office, Scott manages to find an old photograph in her desk, where she's shown posing with a young boy beside a lighthouse. A message on the back of the photograph reads ***\\\"Moira and Kevin: Stornoway, 1981\\\"***. Seizing upon that clue, Scott and Jean decide to head for the town of **Stornoway** on the **Isle of Lewis** to look for MacTaggert.\\n\\nBut just as they attempt to leave, the laboratory is suddenly attacked by an armed squad of black-clad soldiers, dressed identically to the armed men who the X-Men fought at Krakoa. Scott and Jean realize that Weapon X has tracked them to Muir Island, and they're determined to prevent them from learning too much.\\n\\nIn a tense battle, Scott and Jean fight off the armed soldiers, but narrowly manage to escape the lab and flee the island in their boat.\\n________________________\\n\\nBack in Raven Darkholme's government office, she receives an encrypted private video message from Essex himself, who addresses her by her codename: \\\"**Mystique**\\\".\\n\\n*\\\"It's time,\\\"* Essex tells her. *\\\"****The final stage of the plan*** *is ready. But if we're to succeed, Xavier's children must not be there to stop us. Marko's men will lead the assault. But I'll need agents in the field who I can rely on. There can be no mistakes. Remember: I don't tolerate failure.\\\"*\\n\\nAs the message ends, Mystique makes a call to her two loyal field agents: **Creed** and **LeBeau**.\\n________________________\\n\\nAfter another grueling evening session in the Danger Room, the X-Men prepare to retire for the night. But before they can, the mansion comes under attack.\\n\\nWith Cain Marko in the lead, an entire platoon of armored Special Forces troops descends on the Xavier Institute with guns blazing, and they unload on the X-Men while a squad of armed helicopters launches missiles at them from outside. Within minutes, the mansion's walls are crumbling, and the X-Men find themselves hopelessly outmatched as they fight for their lives against the advancing soldiers. Kitty, in particular, struggles to stay calm as she attempts to survive her first real combat scenario, using her phasing powers to evade the soldiers in a frantic chase.\\n\\nRealizing that the X-Men can't possibly win, Professor Xavier orders them to evacuate the mansion, and Nightcrawler uses his powers to teleport his teammates to safety\\u2014one by one. But when he finally returns to transport the Professor to safety, the Professor orders him to leave him behind, knowing that he and his wheelchair will only slow the students down. Nightcrawler wrestles with his conscience as the soldiers close in with guns drawn, but he reluctantly obeys his mentor. Before he teleports away to join his companions, the Professor gives Nightcrawler a final telepathic order:\\n\\n*\\\"Go to the psychiatric ward of the* ***Salem Center Hospital****!\\\"* he tells Nightcrawler. *\\\"Find* ***Patient 158****! Tell the others, Kurt: if you want to survive this, Patient 158 is the key! She\\u2014\\\"*\\n\\nBut before the Professor can explain more, one of the soldiers stuns him with a taser, and Nightcrawler is forced to teleport away to save himself.\\n\\nA short distance from the mansion, Nightcrawler joins the other X-Men, who are waiting for him. Together, they run from the ruins of the mansion as the soldiers scramble to find them.\\n________________________\\n\\n***ACT 2:***\\n\\nIn Westchester, Raven Darkholme arrives (in human form) to check in with Marko on the results of the raid. After the soldiers sweep the ruins of the wrecked mansion, they're forced to report that all of the X-Men\\u2014with the exception of Charles Xavier\\u2014escaped the grounds, and their whereabouts are unknown. As the soldiers cuff Xavier and prepare to take him into custody, Darkholme calls her two most trusted field operatives into action.\\n\\nFor the first time, we meet them:\\n\\n* **Victor Creed** (codename: \\\"**Sabretooth**\\\"), a savage brute with enhanced strength, speed, and senses, possessing a powerful set of razor-sharp claws and fangs. A veteran Weapon X agent renowned for bloodlust and his skill as an assassin, he claims to be a former comrade of Wolverine\\u2014and he's determined to settle an old grudge with him from their younger days. Thanks to his enhanced senses, he can find almost anyone, and he serves Darkholme as a \\\"tracker\\\".\\n* **Remy LeBeau** (codename: \\\"**Gambit**\\\"), a slick, charming Cajun thief who spent years on the run from the law after a life of crime, only to find himself pressed into service in Weapon X after being caught by the authorities. Renowned for his skill in stealth and breaking \\u0026 entering, he possesses the ability to charge inanimate objects with kinetic energy, causing them to explode. Thanks to his experience as a thief, he can break into almost any building, and he serves Darkholme as an \\\"infiltrator\\\". Sabretooth despises him, and he isn't afraid to say so.\\n\\nShowing off his powerful senses, Sabretooth manages to pick up the X-Men's scent, and quickly determines which direction they fled. As the soldiers reload their weapons, he leads them after the X-Men in a massive manhunt.\\n___________________\\n\\nIn Stornoway, Scott and Jean arrive at the seaside residence of Dr. Moira MacTaggert, and manage to catch her at home. As the aging doctor invites them inside, they tell her that they have some questions for her.\\n\\n*\\\"We've been to Muir Island, Dr. MacTaggert,\\\"* Scott says. *\\\"We know that you used to work there, and we know that it was shut down. We want to know why. We've been looking for answers for two years now\\u2014and we think you can help us.\\\"*\\n\\nMacTaggert smiles nonchalantly, and insists that she can't help them, but she scrawls down a quick message on a nearby paper pad:\\n\\n*\\\"They're listening to me. They've been monitoring this house for years.\\\"*\\n\\nJean reaches out with her telepathy, and sends a psychic message directly into MacTaggert's mind:\\n\\n*\\\"You don't have to speak,\\\"* she says telepathically. *\\\"You can tell me as much as you want. They won't hear you.\\\"*\\n\\nCatching on, Moira nods. As she sits down with Scott and Jean, she finally explains the full story of her time at Muir Island.\\n\\nIn her younger days, the Muir Island Research Complex was the world's foremost research facility on Mutant biology\\u2014but it was abruptly shut down in the 1980s after the British government declared Mutants to be a national security threat and forcibly seized all existing scientific research on human mutation. Shortly after, the Weapon X Project was founded as a joint effort between the American, Canadian and British militaries. Left jobless after Muir Island's closure, MacTaggert was offered a position as a \\\"scientific advisor\\\" by Weapon X, and reluctantly accepted.\\n\\nFor years after that fateful day, MacTaggert lived and worked in America as an advisor for Weapon X, only quitting when she realized how brutal their experiments on Mutants truly were. During her time there she grew to admire the American officer **Major Christopher Summers**, describing him as *\\\"One of the few decent men in that cesspit.\\\"* As she mentions Summers' name, her eyes stray to a framed photograph hanging on her wall, which shows a young Major Summers posing beside a single-engine plane with his family beside him. As Scott notices the photo, he grows visibly emotional and sheds a tear when he realizes that *he* is in the photo with his parents; the picture was taken just a few weeks before his father tried to flee Weapon X.\\n\\nBut as he studies the photo, he notices that he and his parents aren't the *only* people pictured in it. There's also a **young blond-haired boy** standing next to Scott, seemingly just a year or two younger than him. And as soon as Scott sees the blond-haired boy, he suddenly finds himself flashing back to the plane crash all over again. As his fractured memories come flooding back, he realizes an additional detail that he had long repressed: his *brother* was in the plane with him when it crashed\\u2014and he jumped from the plane with a parachute just after Scott did! He jumped from the plane, but Scott never saw him again after he crashed in the woods.\\n\\nFor years, Scott's memories have been distorted by trauma, and he's been afraid to face the possibility that his brother might still be alive. But as soon as he sees the photo, his memories of **Alex** overwhelm him.\\n\\nAs Scott breaks down in tears, MacTaggert embraces him, and Scott finally reveals his identity to her: he's Major Summers' son, and he's determined to avenge his slain father. At that revelation, Moira also becomes visibly emotional, recalling her memories of the Major's death.\\n\\n*\\\"I know how brutal those bastards can be,\\\"* MacTaggert says. *\\\"They took someone from me too.\\\"*\\n\\nAs she says that, her eyes stray to another photo, which also shows her standing with \\\"**Kevin**\\\"\\u2014the boy from the picture in the lab.\\n\\nMoira reveals that her interest in Mutant biology is a bit more personal than she let on. She became determined to study Mutants after she discovered that her own son **Kevin MacTaggert** was a Mutant himself, and possessed bizarre mental abilities that allowed him to warp the physical world around him, frequently causing massive destruction when his emotions got out of control. Kevin spent most of his childhood in the laboratory at Muir Island, where Moira did her level best to help him control his powers. But when Muir Island was shut down, Weapon X forcibly took him into custody and sent him to America\\u2014and they told Moira that she would never see her son again unless she agreed to move to America to work for them.\\n\\nAs long as her conscience would allow it, Moira kept her job at Weapon X, hoping that she might be able to use her position to keep an eye on Kevin. But when she tried to speak out against their brutal policy of brainwashing Mutant prisoners, her security clearance was revoked, and she was permanently expelled from the organization. To this day, Kevin remains imprisoned in a Weapon X base. And though Moira has petitioned the government for his release multiple times, she never saw her son again after she was expelled from Weapon X.\\n\\nAfter Moira finishes sharing the story of her life, Scott and Jean vow to help her get her son back. If they can successfully find Essex and kill him, they believe that they can shut down Weapon X permanently\\u2014potentially allowing them to secure Kevin's freedom. With that in mind, they ask Moira to accompany them back to America, hoping that she can help them find Essex.\\n\\nMoira accepts\\u2014but just as she does, her house is attacked by the Weapon X soldiers, who have followed Scott and Jean to Stornoway. Once again, they hold their ground and successfully manage to defend Moira in a tense battle. When the soldiers call in a helicopter full of troops, Jean manages to use her telekinesis to eject the pilot from the cockpit and hijack the chopper. As Scott and Moira board the helicopter and strap themselves in, she plots a course for Westchester.\\n________________________________\\n\\nIn the forests of upstate New York, the X-Men run for their lives as Marko's soldiers give chase\\u2014but Wolverine falters when he smells a familiar scent.\\n\\n*\\\"Creed...\\\"* he growls. *\\\"We're being hunted!\\\"*\\n\\n*\\\"What do we do?\\\"* Kitty asks, panicking.\\n\\n*\\\"You keep moving,\\\"* Wolverine says. *\\\"I'll catch up. I've got a score to settle with somebody.\\\"*\\n\\nAgainst the advice of his teammates, Wolverine stays behind as they flee into the forest. Soon, the pursuing soldiers pick up their trail\\u2014but Sabretooth realizes that his old nemesis has split off from the group, and he decides to face him alone.\\n\\nIn a remote forest clearing, Wolverine and Sabretooth confront each other. Their immense mutual hatred is immediately obvious, though neither of them explicitly states what began their bitter feud. As they square off with each other, a brutal fight ensues, which soon leaves both of them bloody and battered.\\n\\nA short distance away, the soldiers catch up with the other X-Men, and the team takes cover in the forest as the soldiers open fire. As bullets fly, Nightcrawler tries to rush to the aid of a wounded Kitty. But as he cradles her in his arms, she begins to laugh maliciously, and wrestles him to the ground. It turns out that it's actually a disguised *Mystique*, who has joined the hunt for the X-Men. Striking with brutal precision, Mystique draws a knife and stabs Nightcrawler in the stomach, severely wounding him.\\n\\nAs the other X-Men attempt duck and dodge through the trees, Gambit shows off the full strength of his energy powers; as he begins hurling \\\"charged\\\" playing cards at the team, they explode with massive concussive force. Against all odds, Kitty manages to evade the soldiers with her phasing powers, and she gets the drop on Gambit long enough to tackle and incapacitate him. After a long and brutal battle with the soldiers, Storm manages to incapacitate them by summoning a massive tornado, allowing Colossus to save Nightcrawler from Mystique and patch up his wound. As the soldiers scramble to regroup, the team regroups and flees\\u2014just as Wolverine gets the upper hand on Sabretooth and throws him into a nearby river.\\n\\nOnce the soldiers are finally out of sight, Nightcrawler reminds them that they have a destination: the Salem Center Hospital.\\n____________________________\\n\\nUnder cover of darkness, the team sneaks onto the hospital grounds, and Storm uses her lockpicking experience to slip in through a backdoor. Moving fast, they infiltrate the psychiatric ward and quickly deduce the location of Patient 158.\\n\\nAlthough Kitty and Colossus have reservations about abducting a helpless mental patient from a psychiatric ward, Storm and Wolverine urge them to trust the Professor's judgment. If he truly believes that Patient 158 is the key to their survival, she's worth the risks that they'll have to take to find her.\\n\\nAfter a few minutes of snooping, Kitty creeps into Patient 158's bedroom and calmly greets her as she awakes. Her face is still covered by the hood of her green sweatshirt. Although the young woman is clearly disturbed, she calms down when Kitty tells her that Professor Xavier sent her. \\n\\n*\\\"Somebody took the Professor,\\\"* Kitty says. *\\\"We think you can help us get him back. He helped you. Will you help us?\\\"*\\n\\nAfter a bit of coercion, Patient 158 agrees to come with the X-Men\\u2014but a hospital orderly spots the X-Men as they're attempting to leave the grounds, and he calls the police when he realizes that the intruders are fugitive Mutants. Minutes later, Marko's soldiers converge on the hospital, and the X-Men move to protect Patient 158 as the soldiers open fire.\\n\\nMuch to their shock, though, Patient 158 effortlessly *pulls a metal door off its hinges* with her bare hands, and she uses it as a shield as bullets fly. Tossing the door aside, she charges into the fray and knocks a soldier out with a single punch to the jaw, and shrugs off a gunshot\\u2014revealing that she's *invulnerable*.\\n\\nAs the X-Men fight their way through the hospital with Patient 158's help, she finally pulls off her hood, and we finally get a good look at her face; she's a beautiful **dark-haired woman with a streak of white in her hair**.\\n\\nThe X-Men run into the streets of downtown Salem Center with the soldiers close behind, but they receive a last-minute assist from two unexpected allies: **Magneto** and **Havok**! Although they're surprised to see their two old adversaries, they're grateful for the assistance as Magneto uses his magnetic fields to disarm and incapacitate the soldiers, and Havok holds them back with his plasma blasts as the X-Men make their getaway.\\n______________________\\n\\nWith the soldiers defeated, Magneto leads the X-Men to a secret hideaway in the Adirondack Mountains, where he and Havok have been hiding out since their last encounter with the X-Men. There, he offers them temporary refuge as they attempt to find out why Patient 158 is so important.\\n\\nIt turns out that the X-Men aren't the *only* Mutants who have been targeted by the government since the battle at Krakoa. **Toad**, **Blob** and **Pyro** have also been captured and detained by Marko's men, and Magneto and Havok\\u2014now the last remaining members of the **Brotherhood of Mutants**\\u2014have been on the run from the law ever since. Despite his differences with the X-Men, Magneto knows that they now have a common enemy; once he realized that his old friend Charles Xavier had been captured, he promised himself that he would keep the X-Men safe.\\n\\nKitty and Storm have a long conversation with Patient 158, who finally introduces herself as \\\"**Rogue**\\\". As she tells them: *\\\"I had another name once. But I forgot it a long time ago.\\\"*\\n\\nAs she reveals, she's actually a former Weapon X test subject who once served in the field alongside Gambit and Sabretooth, and was effectively raised by Mystique after Weapon X took her from her parents. She has a powerful Mutant ability that allows her to absorb the life force from anyone she touches, allowing her to steal any Mutant's powers. But she can also absorb the thoughts and memories of everyone she touches, making her invaluable for getting information out of prisoners.\\n\\nAfter years of absorbing other Mutants' powers, Rogue has *permanently* ended up with flight, invulnerability, and superhuman strength\\u2014which she stole from three of her fellow test subjects at Mystique's request. On the downside, her time in Weapon X has also left her mind filled with the thoughts and memories of other people, which she's often unable to distinguish from her *own* thoughts and memories. The supposed *\\\"voices in her head\\\"* were actually the thoughts and memories that she'd been forced to absorb. But after years of serving Weapon X, her powers have taken a major toll on her mental health\\u2014so Mystique allowed her to commit herself to a mental institution so that she could recover.\\n\\nFinally, the X-Men begin to realize why the Professor wanted them to find Rogue: after a lifetime of absorbing thoughts and memories, she must have *some* valuable information trapped in the depths of her mind. And if she once lived and worked in Weapon X's headquarters...\\n\\n*\\\"Essex...\\\"* Storm breathes. *\\\"Tell me, Rogue: did you ever touch him?\\\"*\\n\\nRogue begins to hyperventilate at the mention of Essex's name, but she nods frantically. Storm realizes that her hunch was correct: Rogue accidentally touched Essex while serving under him, and she absorbed some of his memories\\u2014and perhaps even a fraction of his power. And if Rogue absorbed some of his memories, then there's a chance\\u2014however small\\u2014that she might know how to defeat him.\\n\\n*\\\"Tell us, Rogue,\\\"* Kitty says. *\\\"Tell us everything that you remember. Take as much time as you need.*\\n\\nWhile the X-Men help her meditate, Rogue searches the depths of her mind, desperately trying to recall what she saw in Essex's mind. Gradually, she sees a series of bizarre visions.\\n\\nFirst, she sees Mutants fighting over the ruins of a burning city. Then she sees an iron cage in a dark dungeon, with some mysterious beast trapped within it. Finally, she sees a vision of a **chessboard with living chess pieces**, and she sees a **bird with wings of fire** in the blackness of space.\\n\\n*\\\"A war!*\\\" Rogue cries out. *\\\"He wants to start a war! Mutants against humans! And to start it, he'll...\\\"*\\n\\nHer voice trails off, but\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c2z183\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1561599796.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561081115.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EX-Men: War of the Mutants\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EINTRODUCTION:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s been two years since the X-Men\\u0026#39;s battle with \\u003Cstrong\\u003EWeapon X\\u003C/strong\\u003E at their abandoned fortress on the island of \\u003Cstrong\\u003EKrakoa\\u003C/strong\\u003E. In the wake of that fateful battle, \\u003Cstrong\\u003EScott Summers\\u003C/strong\\u003E and \\u003Cstrong\\u003EJean Grey\\u003C/strong\\u003E chose to leave the \\u003Cstrong\\u003EXavier Institute\\u003C/strong\\u003E to embark on a search for the founder of Weapon X: a mysterious man called \\u0026quot;\\u003Cstrong\\u003EEssex\\u003C/strong\\u003E\\u0026quot;. As Scott learned, the tragic plane crash that claimed the lives of his parents was \\u003Cem\\u003Enot\\u003C/em\\u003E as accidental as he was led to believe, but was actually a targeted assassination carried out on Essex\\u0026#39;s orders. Years ago, Scott\\u0026#39;s father \\u003Cstrong\\u003EMajor Christopher Summers\\u003C/strong\\u003E tried to expose the existence of the sinister Weapon X project, only to have his plane shot down before he could escape with sensitive information on the project\\u0026#39;s origins. Determined to avenge his parents\\u0026#39; murders, Scott has spent two years searching the world for clues on Essex\\u0026#39;s whereabouts with his beloved girlfriend Jean by his side.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMeanwhile, back in Westchester, political activist \\u003Cstrong\\u003EProfessor Charles Xavier\\u003C/strong\\u003E continues the fight for Mutant rights while training his Mutant pupils to use their powers for the good of humanity. With Scott and Jean\\u0026#39;s departure, the last of the five original X-Men are gone for good, leaving a whole new team in their place: reformed Kenyan street thief \\u003Cstrong\\u003EOroro Munroe\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EStorm\\u003C/strong\\u003E\\u0026quot;), jaunty German circus performer \\u003Cstrong\\u003EKurt Wagner\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003ENightcrawler\\u003C/strong\\u003E\\u0026quot;), gentle-hearted Russian refugee \\u003Cstrong\\u003EPiotr Rasputin\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EColossus\\u003C/strong\\u003E\\u0026quot;), and fugitive Weapon X test subject \\u0026quot;Logan\\u0026quot; (better known by his old codename, \\u0026quot;\\u003Cstrong\\u003EWolverine\\u003C/strong\\u003E\\u0026quot;). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter years of fighting the good fight, public opinion on Mutant rights is \\u003Cem\\u003Efinally\\u003C/em\\u003E beginning to turn, leading to the long-awaited shutdown of the controversial \\u003Cstrong\\u003ESentinel Project\\u003C/strong\\u003E, as well as a new law protecting Mutants from being detained without trial. Still, Xavier fears that anti-Mutant forces in the US government may be biding their time, waiting for the right moment to strike back at the Mutant freedom fighters who would defy them. When that day comes, the X-Men may be forced to test their skills in battle once more...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EPROLOGUE:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn a quiet night in Chicago, 17-year-old \\u003Cstrong\\u003EKitty Pryde\\u003C/strong\\u003E has a harrowing brush with death after she mysteriously \\u003Cem\\u003Efalls through the sidewalk\\u003C/em\\u003E while walking home from a dance class. While trapped in the sewers underneath the city, she discovers\\u2014much to her shock\\u2014that she possesses a powerful ability to make her body intangible, allowing her to pass through solid objects like a ghost.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELater, after she finally manages to free herself and make her way back home, her parents inform her that they\\u0026#39;ve received an unexpected phone call from upstate New York, and a mysterious professor called \\u0026quot;Xavier\\u0026quot; has offered her a place in his school. As Kitty stares at the piece of paper where her parents have scrawled Xavier\\u0026#39;s phone number, she suddenly hears the telepathic voice of Charles Xavier in her head.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I know what happened, Kitty,\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;I know you\\u0026#39;re afraid. And I know that you don\\u0026#39;t know what to do. Neither did I, the first time I realized what I was. But know this: you\\u0026#39;re no freak, and you\\u0026#39;re no monster. You\\u0026#39;re\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003Egifted\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E, Kitty. We all have gifts\\u2014and we can embrace them, or run away from them. But if you would have a new home with others like you, my school is open to you. The choice is yours, and the call is yours to answer.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter a moment\\u0026#39;s hesitation, Kitty reaches for the phone.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 1:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the other side of the world, we rejoin Scott and Jean as they continue their search for the mysterious Essex. After two years of searching for clues, their journey has taken them across the Atlantic Ocean and to the British Isles. In a ramshackle old boat, they make their way through the misty waters of the \\u003Cstrong\\u003EOuter Hebrides\\u003C/strong\\u003E off the coast of Scotland, on their way to a secluded place called \\u0026quot;\\u003Cstrong\\u003EMuir Island\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs they dock at Muir Island, the pair make their way through the desolate Scottish countryside, which appears to be devoid of life. But eventually, they find a barbed-wire fence surrounding a massive laboratory\\u2014which has clearly been abandoned for years. A nearby sign reads \\u0026quot;\\u003Cstrong\\u003EMuir Island Research Complex\\u0026quot;\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;This is it,\\u0026quot;\\u003C/em\\u003E Scott breathes. \\u003Cem\\u003E\\u0026quot;It\\u0026#39;s real.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;So this is where it all started?\\u0026quot;\\u003C/em\\u003E Jean asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;That\\u0026#39;s what they say,\\u0026quot;\\u003C/em\\u003E Scott says. \\u003Cem\\u003E\\u0026quot;If there\\u0026#39;s an answer, I think we\\u0026#39;ll find it here...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn Westchester, Kitty Pryde\\u0026#39;s parents drive her up to the front gate of the Xavier Institute. With bags in hand, Kitty walks to the front door, where she\\u0026#39;s greeted warmly by Professor Xavier. Over the course of a tour, Kitty meets each of the four X-Men in turn: Storm, Nightcrawler, Colossus, and Wolverine. In the two years since Scott and Jean left, the quartet have grown into an inseparable team, and they\\u0026#39;ve honed their skills to deadly precision in the \\u003Cstrong\\u003EDanger Room\\u003C/strong\\u003E. But upon meeting the newest member of the group, Storm is eager to see her put her powers to use in training.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile on their way to the Danger Room to begin Kitty\\u0026#39;s training, the group passes a framed photograph of the five original X-Men: Scott, Jean, \\u003Cstrong\\u003EHank McCoy\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EBeast\\u003C/strong\\u003E\\u0026quot;), \\u003Cstrong\\u003EWarren Worthington\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EAngel\\u003C/strong\\u003E\\u0026quot;), and \\u003Cstrong\\u003EBobby Drake\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EIceman\\u003C/strong\\u003E\\u0026quot;). As he sadly contemplates the photo, the Professor reflects on all the changes that have befallen the X-Men since he formed the team. Though he has faith in the new generation of X-Men, he privately wonders what changes await them in the days to come.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut in dark corner in a distant hallway, a mysterious figure watches the X-Men from afar...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn a government building in upstate New York, high-ranking CIA operative \\u003Cstrong\\u003ERaven Darkholme\\u003C/strong\\u003E makes a report to her superiors, documenting everything that she\\u0026#39;s learned about Charles Xavier and his X-Men. On the wall behind her, we see clearly labeled surveillance photos of Storm, Nightcrawler, Colossus, Wolverine, Kitty, and the Professor\\u2014alongside detailed schematics and blueprints of the mansion. It\\u0026#39;s immediately obvious that Raven has been monitoring the X-Men for \\u003Cem\\u003Eyears\\u003C/em\\u003E, and she\\u0026#39;s amassed a treasure trove of information on them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESoon after, Raven receives a visit from a colleague in the United States Army: Colonel \\u003Cstrong\\u003ECain Marko\\u003C/strong\\u003E, a decorated officer serving in the Special Forces.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;It\\u0026#39;s time,\\u0026quot;\\u003C/em\\u003E Raven tells him. \\u003Cem\\u003E\\u0026quot;It\\u0026#39;s taken more than two years, but I know everything I need to know. If we\\u0026#39;re going to take the X-Men down, the time is now. Can your men handle the job?\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMarko laughs at the question.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;What do you think they\\u0026#39;ve been training for?\\u0026quot;\\u003C/em\\u003E he asks. \\u003Cem\\u003E\\u0026quot;My boys have run every scenario there is. They\\u0026#39;re ready for anything Xavier could throw at them. I\\u0026#39;ve got a squad of professional Mutant killers at my command, ready to march.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;ll need more than that,\\u0026quot;\\u003C/em\\u003E Raven says. \\u003Cem\\u003E\\u0026quot;I\\u0026#39;ve got a few special operatives on hand. The worst of the worst. They\\u0026#39;ve been waiting for a job like this for months.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe opens a drawer and reveals two file folders, each one marked with a different name.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first reads \\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;Creed, Victor\\u0026quot;.\\u003C/em\\u003E\\u003C/strong\\u003E The second reads \\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;LeBeau, Remy\\u0026quot;.\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Mutants...\\u0026quot;\\u003C/em\\u003E Marko scoffs, reading the file. \\u003Cem\\u003E\\u0026quot;You never told me you had Mutants on the payroll. This changes things.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;No, it doesn\\u0026#39;t,\\u0026quot;\\u003C/em\\u003E Raven says. \\u003Cem\\u003E\\u0026quot;Your men are your responsibility. But my operatives answer to me, and me alone. I\\u0026#39;ll call them into action when they\\u0026#39;re needed. If you have a problem with that, you can take it up with our mutual superior.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt the mention of their \\u0026quot;mutual superior\\u0026quot;, Marko backs off\\u2014visibly frightened.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You keep an eye on those Muties, you hear me?\\u0026quot;\\u003C/em\\u003E Marko says before leaving. \\u003Cem\\u003E\\u0026quot;Those freaks can\\u0026#39;t be trusted. They\\u0026#39;ll kill you in a heartbeat if you turn your back to \\u0026#39;em.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs soon as he leaves, Raven\\u0026#39;s eyes turn yellow, and her skin turns blue as she resumes her true form.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;If you only knew, Marko...\\u0026quot;\\u003C/em\\u003E she whispers, smirking. \\u003Cem\\u003E\\u0026quot;If you only knew...\\u003C/em\\u003E\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EOne afternoon, while the X-Men are hard at work training in the Danger Room, Professor Xavier pays a visit to the psychiatric ward of a nearby hospital in the town of \\u003Cstrong\\u003ESalem Center\\u003C/strong\\u003E. As he checks in with the hospital staff, he asks to see \\u0026quot;\\u003Cstrong\\u003EPatient 158\\u003C/strong\\u003E\\u0026quot;, whom he\\u0026#39;s clearly familiar with.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;The Jane Doe...\\u0026quot;\\u003C/em\\u003E the nurse says, sighing. \\u003Cem\\u003E\\u0026quot;You\\u0026#39;ve got more faith in her than we do, Xavier.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Professor heads to a secluded room, where he meets with Patient 158: a young woman wearing a green hooded sweatshirt over her hospital gown. Her face is obscured by the hood, and her voice is faint.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;ve come back, my dear,\\u0026quot;\\u003C/em\\u003E the Professor says. \\u003Cem\\u003E\\u0026quot;I told you that I would. As long as you need me, I\\u0026#39;ll be here for you.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I still hear the voices in my head,\\u0026quot;\\u003C/em\\u003E Patient 158 says. \\u003Cem\\u003E\\u0026quot;It\\u0026#39;s a chorus of voices. They never stop. But there\\u0026#39;s one voice...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe shudders as she mentions it, becoming visibly emotional.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I see a face, pale as death,\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;Black eyes, staring into my soul.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I can help you, if you let me,\\u0026quot;\\u003C/em\\u003E the Professor says. \\u003Cem\\u003E\\u0026quot;Would you like to show me?\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHesitantly, Patient 158 nods. The Professor places his hand on her forehead and reaches out with his telepathy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithin moments, he is overwhelmed by a chorus of faces and voices, all calling out to him from the depths of the woman\\u0026#39;s psyche. But amid the chatter, one face beckons his attention: the face of a man with deathly pale skin, black eyes, and a glowing red diamond in the center of his forehead. The Professor recoils in horror as he instantly recognizes the face of the mysterious \\u003Cstrong\\u003EEssex\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;ve seen him...\\u0026quot;\\u003C/em\\u003E the Professor whispers. \\u003Cem\\u003E\\u0026quot;Few people have seen that man\\u0026#39;s face and lived to tell of it.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe tries to ask Patient 158 how she came to know Essex, but she becomes too emotional, and he\\u0026#39;s forced to cut the session short. As the orderlies take Patient 158 back to her hospital room, he makes his way back to the mansion.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBack at Muir Island, Scott and Jean explore the grounds of the abandoned research complex, making their way through labyrinthine halls filled with dusty laboratories and crumbling scientific equipment. After hours of exploring, they find their way to a library filled with scientific books. On one bookshelf, Jean finds an antique leather-bound book full of aged daguerreotype photos of dissected humans with bizarre physical mutations; as she flips through the book\\u0026#39;s pages, she realizes that it\\u0026#39;s a firsthand account of the earliest research into Mutant biology, and it was written in the 19th century. The author, whose photo is framed on the back cover, was an English scientist named \\u003Cstrong\\u003ENathaniel Essex\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScott instantly recognizes Nathaniel Essex as the man who sent the video message on the island of Krakoa, but his photo is dated \\u0026quot;1876\\u0026quot;. The \\u0026quot;Essex\\u0026quot; who founded Weapon X couldn\\u0026#39;t possibly be the same man who first researched Mutant biology in the 1800s; if he were, he would be well over 100 years old by now. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Jean continues to search the library, she eventually stumbles upon a box of dusty film reels, and finds an electric film projector nearby. After she loads one of the film reels into the projector, she discovers that it\\u0026#39;s research footage from the 1970s, depicting some of the first experiments on human mutation. In the film, a young Scottish woman conducts an experiment with a young American man in a tweed suit, while a silver-haired young German man watches them from afar. As the experiment begins, the Scottish woman introduces herself as \\u003Cstrong\\u003EDr. Moira MacTaggert\\u003C/strong\\u003E, and she introduces her two companions as \\u003Cstrong\\u003ECharles Xavier\\u003C/strong\\u003E and \\u003Cstrong\\u003EErik Lehnsherr\\u003C/strong\\u003E. Though the footage is decades old, she recognizes both men instantly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the experiment begins, Moira draws a series of cards from a deck, and challenges Charles to identify each one while blindfolded; using his telepathy, Charles successfully identifies each card by reading Moira\\u0026#39;s mind. Later, she challenges Lehnsherr to levitate a series of metal objects across the room using his magnetic powers, which he does with ease. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJean realizes that the Muir Island Research Complex was the first place where Magneto and the Professor trained themselves to use their powers. According to rumors, the laboratory was also the place where human mutation was first discovered, and it was once the largest Mutant research facility in the world. Somewhere along the line, though, Muir Island was shut down. But \\u003Cem\\u003Ewhy?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Jean and Scott regroup, Scott wonders how Moira MacTaggert\\u2014apparently the last director of the Muir Island Research Complex before it was shut down\\u2014is connected to Weapon X and the mysterious Essex. Jean isn\\u0026#39;t convinced that she\\u0026#39;s involved with the organization, but she knows that she might have information about it. If they can find MacTaggert, then, they might be able to learn more about Weapon X.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter searching MacTaggert\\u0026#39;s old office, Scott manages to find an old photograph in her desk, where she\\u0026#39;s shown posing with a young boy beside a lighthouse. A message on the back of the photograph reads \\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;Moira and Kevin: Stornoway, 1981\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E. Seizing upon that clue, Scott and Jean decide to head for the town of \\u003Cstrong\\u003EStornoway\\u003C/strong\\u003E on the \\u003Cstrong\\u003EIsle of Lewis\\u003C/strong\\u003E to look for MacTaggert.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut just as they attempt to leave, the laboratory is suddenly attacked by an armed squad of black-clad soldiers, dressed identically to the armed men who the X-Men fought at Krakoa. Scott and Jean realize that Weapon X has tracked them to Muir Island, and they\\u0026#39;re determined to prevent them from learning too much.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a tense battle, Scott and Jean fight off the armed soldiers, but narrowly manage to escape the lab and flee the island in their boat.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBack in Raven Darkholme\\u0026#39;s government office, she receives an encrypted private video message from Essex himself, who addresses her by her codename: \\u0026quot;\\u003Cstrong\\u003EMystique\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;It\\u0026#39;s time,\\u0026quot;\\u003C/em\\u003E Essex tells her. \\u003Cem\\u003E\\u0026quot;\\u003C/em\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe final stage of the plan\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003Eis ready. But if we\\u0026#39;re to succeed, Xavier\\u0026#39;s children must not be there to stop us. Marko\\u0026#39;s men will lead the assault. But I\\u0026#39;ll need agents in the field who I can rely on. There can be no mistakes. Remember: I don\\u0026#39;t tolerate failure.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the message ends, Mystique makes a call to her two loyal field agents: \\u003Cstrong\\u003ECreed\\u003C/strong\\u003E and \\u003Cstrong\\u003ELeBeau\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EAfter another grueling evening session in the Danger Room, the X-Men prepare to retire for the night. But before they can, the mansion comes under attack.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith Cain Marko in the lead, an entire platoon of armored Special Forces troops descends on the Xavier Institute with guns blazing, and they unload on the X-Men while a squad of armed helicopters launches missiles at them from outside. Within minutes, the mansion\\u0026#39;s walls are crumbling, and the X-Men find themselves hopelessly outmatched as they fight for their lives against the advancing soldiers. Kitty, in particular, struggles to stay calm as she attempts to survive her first real combat scenario, using her phasing powers to evade the soldiers in a frantic chase.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERealizing that the X-Men can\\u0026#39;t possibly win, Professor Xavier orders them to evacuate the mansion, and Nightcrawler uses his powers to teleport his teammates to safety\\u2014one by one. But when he finally returns to transport the Professor to safety, the Professor orders him to leave him behind, knowing that he and his wheelchair will only slow the students down. Nightcrawler wrestles with his conscience as the soldiers close in with guns drawn, but he reluctantly obeys his mentor. Before he teleports away to join his companions, the Professor gives Nightcrawler a final telepathic order:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Go to the psychiatric ward of the\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003ESalem Center Hospital\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E!\\u0026quot;\\u003C/em\\u003E he tells Nightcrawler. \\u003Cem\\u003E\\u0026quot;Find\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EPatient 158\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E! Tell the others, Kurt: if you want to survive this, Patient 158 is the key! She\\u2014\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut before the Professor can explain more, one of the soldiers stuns him with a taser, and Nightcrawler is forced to teleport away to save himself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA short distance from the mansion, Nightcrawler joins the other X-Men, who are waiting for him. Together, they run from the ruins of the mansion as the soldiers scramble to find them.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 2:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Westchester, Raven Darkholme arrives (in human form) to check in with Marko on the results of the raid. After the soldiers sweep the ruins of the wrecked mansion, they\\u0026#39;re forced to report that all of the X-Men\\u2014with the exception of Charles Xavier\\u2014escaped the grounds, and their whereabouts are unknown. As the soldiers cuff Xavier and prepare to take him into custody, Darkholme calls her two most trusted field operatives into action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the first time, we meet them:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EVictor Creed\\u003C/strong\\u003E (codename: \\u0026quot;\\u003Cstrong\\u003ESabretooth\\u003C/strong\\u003E\\u0026quot;), a savage brute with enhanced strength, speed, and senses, possessing a powerful set of razor-sharp claws and fangs. A veteran Weapon X agent renowned for bloodlust and his skill as an assassin, he claims to be a former comrade of Wolverine\\u2014and he\\u0026#39;s determined to settle an old grudge with him from their younger days. Thanks to his enhanced senses, he can find almost anyone, and he serves Darkholme as a \\u0026quot;tracker\\u0026quot;.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERemy LeBeau\\u003C/strong\\u003E (codename: \\u0026quot;\\u003Cstrong\\u003EGambit\\u003C/strong\\u003E\\u0026quot;), a slick, charming Cajun thief who spent years on the run from the law after a life of crime, only to find himself pressed into service in Weapon X after being caught by the authorities. Renowned for his skill in stealth and breaking \\u0026amp; entering, he possesses the ability to charge inanimate objects with kinetic energy, causing them to explode. Thanks to his experience as a thief, he can break into almost any building, and he serves Darkholme as an \\u0026quot;infiltrator\\u0026quot;. Sabretooth despises him, and he isn\\u0026#39;t afraid to say so.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EShowing off his powerful senses, Sabretooth manages to pick up the X-Men\\u0026#39;s scent, and quickly determines which direction they fled. As the soldiers reload their weapons, he leads them after the X-Men in a massive manhunt.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn Stornoway, Scott and Jean arrive at the seaside residence of Dr. Moira MacTaggert, and manage to catch her at home. As the aging doctor invites them inside, they tell her that they have some questions for her.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;ve been to Muir Island, Dr. MacTaggert,\\u0026quot;\\u003C/em\\u003E Scott says. \\u003Cem\\u003E\\u0026quot;We know that you used to work there, and we know that it was shut down. We want to know why. We\\u0026#39;ve been looking for answers for two years now\\u2014and we think you can help us.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMacTaggert smiles nonchalantly, and insists that she can\\u0026#39;t help them, but she scrawls down a quick message on a nearby paper pad:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;They\\u0026#39;re listening to me. They\\u0026#39;ve been monitoring this house for years.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJean reaches out with her telepathy, and sends a psychic message directly into MacTaggert\\u0026#39;s mind:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You don\\u0026#39;t have to speak,\\u0026quot;\\u003C/em\\u003E she says telepathically. \\u003Cem\\u003E\\u0026quot;You can tell me as much as you want. They won\\u0026#39;t hear you.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECatching on, Moira nods. As she sits down with Scott and Jean, she finally explains the full story of her time at Muir Island.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn her younger days, the Muir Island Research Complex was the world\\u0026#39;s foremost research facility on Mutant biology\\u2014but it was abruptly shut down in the 1980s after the British government declared Mutants to be a national security threat and forcibly seized all existing scientific research on human mutation. Shortly after, the Weapon X Project was founded as a joint effort between the American, Canadian and British militaries. Left jobless after Muir Island\\u0026#39;s closure, MacTaggert was offered a position as a \\u0026quot;scientific advisor\\u0026quot; by Weapon X, and reluctantly accepted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor years after that fateful day, MacTaggert lived and worked in America as an advisor for Weapon X, only quitting when she realized how brutal their experiments on Mutants truly were. During her time there she grew to admire the American officer \\u003Cstrong\\u003EMajor Christopher Summers\\u003C/strong\\u003E, describing him as \\u003Cem\\u003E\\u0026quot;One of the few decent men in that cesspit.\\u0026quot;\\u003C/em\\u003E As she mentions Summers\\u0026#39; name, her eyes stray to a framed photograph hanging on her wall, which shows a young Major Summers posing beside a single-engine plane with his family beside him. As Scott notices the photo, he grows visibly emotional and sheds a tear when he realizes that \\u003Cem\\u003Ehe\\u003C/em\\u003E is in the photo with his parents; the picture was taken just a few weeks before his father tried to flee Weapon X.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut as he studies the photo, he notices that he and his parents aren\\u0026#39;t the \\u003Cem\\u003Eonly\\u003C/em\\u003E people pictured in it. There\\u0026#39;s also a \\u003Cstrong\\u003Eyoung blond-haired boy\\u003C/strong\\u003E standing next to Scott, seemingly just a year or two younger than him. And as soon as Scott sees the blond-haired boy, he suddenly finds himself flashing back to the plane crash all over again. As his fractured memories come flooding back, he realizes an additional detail that he had long repressed: his \\u003Cem\\u003Ebrother\\u003C/em\\u003E was in the plane with him when it crashed\\u2014and he jumped from the plane with a parachute just after Scott did! He jumped from the plane, but Scott never saw him again after he crashed in the woods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor years, Scott\\u0026#39;s memories have been distorted by trauma, and he\\u0026#39;s been afraid to face the possibility that his brother might still be alive. But as soon as he sees the photo, his memories of \\u003Cstrong\\u003EAlex\\u003C/strong\\u003E overwhelm him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Scott breaks down in tears, MacTaggert embraces him, and Scott finally reveals his identity to her: he\\u0026#39;s Major Summers\\u0026#39; son, and he\\u0026#39;s determined to avenge his slain father. At that revelation, Moira also becomes visibly emotional, recalling her memories of the Major\\u0026#39;s death.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I know how brutal those bastards can be,\\u0026quot;\\u003C/em\\u003E MacTaggert says. \\u003Cem\\u003E\\u0026quot;They took someone from me too.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs she says that, her eyes stray to another photo, which also shows her standing with \\u0026quot;\\u003Cstrong\\u003EKevin\\u003C/strong\\u003E\\u0026quot;\\u2014the boy from the picture in the lab.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoira reveals that her interest in Mutant biology is a bit more personal than she let on. She became determined to study Mutants after she discovered that her own son \\u003Cstrong\\u003EKevin MacTaggert\\u003C/strong\\u003E was a Mutant himself, and possessed bizarre mental abilities that allowed him to warp the physical world around him, frequently causing massive destruction when his emotions got out of control. Kevin spent most of his childhood in the laboratory at Muir Island, where Moira did her level best to help him control his powers. But when Muir Island was shut down, Weapon X forcibly took him into custody and sent him to America\\u2014and they told Moira that she would never see her son again unless she agreed to move to America to work for them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs long as her conscience would allow it, Moira kept her job at Weapon X, hoping that she might be able to use her position to keep an eye on Kevin. But when she tried to speak out against their brutal policy of brainwashing Mutant prisoners, her security clearance was revoked, and she was permanently expelled from the organization. To this day, Kevin remains imprisoned in a Weapon X base. And though Moira has petitioned the government for his release multiple times, she never saw her son again after she was expelled from Weapon X.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter Moira finishes sharing the story of her life, Scott and Jean vow to help her get her son back. If they can successfully find Essex and kill him, they believe that they can shut down Weapon X permanently\\u2014potentially allowing them to secure Kevin\\u0026#39;s freedom. With that in mind, they ask Moira to accompany them back to America, hoping that she can help them find Essex.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoira accepts\\u2014but just as she does, her house is attacked by the Weapon X soldiers, who have followed Scott and Jean to Stornoway. Once again, they hold their ground and successfully manage to defend Moira in a tense battle. When the soldiers call in a helicopter full of troops, Jean manages to use her telekinesis to eject the pilot from the cockpit and hijack the chopper. As Scott and Moira board the helicopter and strap themselves in, she plots a course for Westchester.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn the forests of upstate New York, the X-Men run for their lives as Marko\\u0026#39;s soldiers give chase\\u2014but Wolverine falters when he smells a familiar scent.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Creed...\\u0026quot;\\u003C/em\\u003E he growls. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;re being hunted!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;What do we do?\\u0026quot;\\u003C/em\\u003E Kitty asks, panicking.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You keep moving,\\u0026quot;\\u003C/em\\u003E Wolverine says. \\u003Cem\\u003E\\u0026quot;I\\u0026#39;ll catch up. I\\u0026#39;ve got a score to settle with somebody.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAgainst the advice of his teammates, Wolverine stays behind as they flee into the forest. Soon, the pursuing soldiers pick up their trail\\u2014but Sabretooth realizes that his old nemesis has split off from the group, and he decides to face him alone.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a remote forest clearing, Wolverine and Sabretooth confront each other. Their immense mutual hatred is immediately obvious, though neither of them explicitly states what began their bitter feud. As they square off with each other, a brutal fight ensues, which soon leaves both of them bloody and battered.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA short distance away, the soldiers catch up with the other X-Men, and the team takes cover in the forest as the soldiers open fire. As bullets fly, Nightcrawler tries to rush to the aid of a wounded Kitty. But as he cradles her in his arms, she begins to laugh maliciously, and wrestles him to the ground. It turns out that it\\u0026#39;s actually a disguised \\u003Cem\\u003EMystique\\u003C/em\\u003E, who has joined the hunt for the X-Men. Striking with brutal precision, Mystique draws a knife and stabs Nightcrawler in the stomach, severely wounding him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the other X-Men attempt duck and dodge through the trees, Gambit shows off the full strength of his energy powers; as he begins hurling \\u0026quot;charged\\u0026quot; playing cards at the team, they explode with massive concussive force. Against all odds, Kitty manages to evade the soldiers with her phasing powers, and she gets the drop on Gambit long enough to tackle and incapacitate him. After a long and brutal battle with the soldiers, Storm manages to incapacitate them by summoning a massive tornado, allowing Colossus to save Nightcrawler from Mystique and patch up his wound. As the soldiers scramble to regroup, the team regroups and flees\\u2014just as Wolverine gets the upper hand on Sabretooth and throws him into a nearby river.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce the soldiers are finally out of sight, Nightcrawler reminds them that they have a destination: the Salem Center Hospital.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EUnder cover of darkness, the team sneaks onto the hospital grounds, and Storm uses her lockpicking experience to slip in through a backdoor. Moving fast, they infiltrate the psychiatric ward and quickly deduce the location of Patient 158.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlthough Kitty and Colossus have reservations about abducting a helpless mental patient from a psychiatric ward, Storm and Wolverine urge them to trust the Professor\\u0026#39;s judgment. If he truly believes that Patient 158 is the key to their survival, she\\u0026#39;s worth the risks that they\\u0026#39;ll have to take to find her.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter a few minutes of snooping, Kitty creeps into Patient 158\\u0026#39;s bedroom and calmly greets her as she awakes. Her face is still covered by the hood of her green sweatshirt. Although the young woman is clearly disturbed, she calms down when Kitty tells her that Professor Xavier sent her. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Somebody took the Professor,\\u0026quot;\\u003C/em\\u003E Kitty says. \\u003Cem\\u003E\\u0026quot;We think you can help us get him back. He helped you. Will you help us?\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter a bit of coercion, Patient 158 agrees to come with the X-Men\\u2014but a hospital orderly spots the X-Men as they\\u0026#39;re attempting to leave the grounds, and he calls the police when he realizes that the intruders are fugitive Mutants. Minutes later, Marko\\u0026#39;s soldiers converge on the hospital, and the X-Men move to protect Patient 158 as the soldiers open fire.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMuch to their shock, though, Patient 158 effortlessly \\u003Cem\\u003Epulls a metal door off its hinges\\u003C/em\\u003E with her bare hands, and she uses it as a shield as bullets fly. Tossing the door aside, she charges into the fray and knocks a soldier out with a single punch to the jaw, and shrugs off a gunshot\\u2014revealing that she\\u0026#39;s \\u003Cem\\u003Einvulnerable\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the X-Men fight their way through the hospital with Patient 158\\u0026#39;s help, she finally pulls off her hood, and we finally get a good look at her face; she\\u0026#39;s a beautiful \\u003Cstrong\\u003Edark-haired woman with a streak of white in her hair\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe X-Men run into the streets of downtown Salem Center with the soldiers close behind, but they receive a last-minute assist from two unexpected allies: \\u003Cstrong\\u003EMagneto\\u003C/strong\\u003E and \\u003Cstrong\\u003EHavok\\u003C/strong\\u003E! Although they\\u0026#39;re surprised to see their two old adversaries, they\\u0026#39;re grateful for the assistance as Magneto uses his magnetic fields to disarm and incapacitate the soldiers, and Havok holds them back with his plasma blasts as the X-Men make their getaway.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EWith the soldiers defeated, Magneto leads the X-Men to a secret hideaway in the Adirondack Mountains, where he and Havok have been hiding out since their last encounter with the X-Men. There, he offers them temporary refuge as they attempt to find out why Patient 158 is so important.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt turns out that the X-Men aren\\u0026#39;t the \\u003Cem\\u003Eonly\\u003C/em\\u003E Mutants who have been targeted by the government since the battle at Krakoa. \\u003Cstrong\\u003EToad\\u003C/strong\\u003E, \\u003Cstrong\\u003EBlob\\u003C/strong\\u003E and \\u003Cstrong\\u003EPyro\\u003C/strong\\u003E have also been captured and detained by Marko\\u0026#39;s men, and Magneto and Havok\\u2014now the last remaining members of the \\u003Cstrong\\u003EBrotherhood of Mutants\\u003C/strong\\u003E\\u2014have been on the run from the law ever since. Despite his differences with the X-Men, Magneto knows that they now have a common enemy; once he realized that his old friend Charles Xavier had been captured, he promised himself that he would keep the X-Men safe.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKitty and Storm have a long conversation with Patient 158, who finally introduces herself as \\u0026quot;\\u003Cstrong\\u003ERogue\\u003C/strong\\u003E\\u0026quot;. As she tells them: \\u003Cem\\u003E\\u0026quot;I had another name once. But I forgot it a long time ago.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs she reveals, she\\u0026#39;s actually a former Weapon X test subject who once served in the field alongside Gambit and Sabretooth, and was effectively raised by Mystique after Weapon X took her from her parents. She has a powerful Mutant ability that allows her to absorb the life force from anyone she touches, allowing her to steal any Mutant\\u0026#39;s powers. But she can also absorb the thoughts and memories of everyone she touches, making her invaluable for getting information out of prisoners.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter years of absorbing other Mutants\\u0026#39; powers, Rogue has \\u003Cem\\u003Epermanently\\u003C/em\\u003E ended up with flight, invulnerability, and superhuman strength\\u2014which she stole from three of her fellow test subjects at Mystique\\u0026#39;s request. On the downside, her time in Weapon X has also left her mind filled with the thoughts and memories of other people, which she\\u0026#39;s often unable to distinguish from her \\u003Cem\\u003Eown\\u003C/em\\u003E thoughts and memories. The supposed \\u003Cem\\u003E\\u0026quot;voices in her head\\u0026quot;\\u003C/em\\u003E were actually the thoughts and memories that she\\u0026#39;d been forced to absorb. But after years of serving Weapon X, her powers have taken a major toll on her mental health\\u2014so Mystique allowed her to commit herself to a mental institution so that she could recover.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally, the X-Men begin to realize why the Professor wanted them to find Rogue: after a lifetime of absorbing thoughts and memories, she must have \\u003Cem\\u003Esome\\u003C/em\\u003E valuable information trapped in the depths of her mind. And if she once lived and worked in Weapon X\\u0026#39;s headquarters...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Essex...\\u0026quot;\\u003C/em\\u003E Storm breathes. \\u003Cem\\u003E\\u0026quot;Tell me, Rogue: did you ever touch him?\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERogue begins to hyperventilate at the mention of Essex\\u0026#39;s name, but she nods frantically. Storm realizes that her hunch was correct: Rogue accidentally touched Essex while serving under him, and she absorbed some of his memories\\u2014and perhaps even a fraction of his power. And if Rogue absorbed some of his memories, then there\\u0026#39;s a chance\\u2014however small\\u2014that she might know how to defeat him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Tell us, Rogue,\\u0026quot;\\u003C/em\\u003E Kitty says. \\u003Cem\\u003E\\u0026quot;Tell us everything that you remember. Take as much time as you need.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile the X-Men help her meditate, Rogue searches the depths of her mind, desperately trying to recall what she saw in Essex\\u0026#39;s mind. Gradually, she sees a series of bizarre visions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, she sees Mutants fighting over the ruins of a burning city. Then she sees an iron cage in a dark dungeon, with some mysterious beast trapped within it. Finally, she sees a vision of a \\u003Cstrong\\u003Echessboard with living chess pieces\\u003C/strong\\u003E, and she sees a \\u003Cstrong\\u003Ebird with wings of fire\\u003C/strong\\u003E in the blackness of space.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;A war!\\u003C/em\\u003E\\u0026quot; Rogue cries out. \\u003Cem\\u003E\\u0026quot;He wants to start a war! Mutants against humans! And to start it, he\\u0026#39;ll...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHer voice trails off, but\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2z183\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c2z183/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c2z183/test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1561052315.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3k2b5rqg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Image test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_c2nor2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/W3wfRbzzsSkz6vQ_jRq2xHObm2KwLYaaUDuuwzCtWEs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1561012016.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/8mr10adz2e531.jpg?auto=webp\\u0026s=4a8e95ae3586e57169791817bb08a4d947b87b59\", \"width\": 320, \"height\": 320}, \"resolutions\": [{\"url\": \"https://preview.redd.it/8mr10adz2e531.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=abb332dfa5ca8f37916e45267b06cd5038d66088\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/8mr10adz2e531.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b71a10a1fc4bafee200b38f433e50c82b5159251\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/8mr10adz2e531.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1817b41bc455a447dde5c287d6133ea20ee80356\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"8KnptTtbIG1InLMd93J54YE_-lT3dN0B9E2BPXWlSc8\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2nor2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GloomyTeddyBear96\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c2nor2/image_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/8mr10adz2e531.jpg\", \"subreddit_subscribers\": 720, \"created_utc\": 1560983216.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3v1jxwat\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"On the same day my grandparents met, got married and took this picture \\u2013 1920's\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_c2islr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/zB4uE_HUlqo30VfiblCeLc5fmdtR46g21c7__dTUS9U.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560988536.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/oiw148xJIgHNEvxHF1MMOP2eEiWjP6rueYRUdxLUHHI.jpg?auto=webp\\u0026s=4acbd135e9556cc299daf48d03c0d383a1427cbb\", \"width\": 368, \"height\": 536}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/oiw148xJIgHNEvxHF1MMOP2eEiWjP6rueYRUdxLUHHI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=54b237dd4459cc56a0fc542e75ca3760238dc896\", \"width\": 108, \"height\": 157}, {\"url\": \"https://external-preview.redd.it/oiw148xJIgHNEvxHF1MMOP2eEiWjP6rueYRUdxLUHHI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=97b4a1f30bc13c397c096869466dd029142fe389\", \"width\": 216, \"height\": 314}, {\"url\": \"https://external-preview.redd.it/oiw148xJIgHNEvxHF1MMOP2eEiWjP6rueYRUdxLUHHI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5cecaab9fcb07e1a1d554d7d62201a846a9193d6\", \"width\": 320, \"height\": 466}], \"variants\": {}, \"id\": \"awDEmYa1OYlLoI1ChxWXkbpU6Nu2iqC9UNyD5qIUGHs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2islr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jachrazoglou\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c2islr/on_the_same_day_my_grandparents_met_got_married/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/di5WkIX\", \"subreddit_subscribers\": 720, \"created_utc\": 1560959736.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\[Pictures\\\\]([https://imgur.com/a/oFDijEg#M0Naw7K](https://imgur.com/a/oFDijEg#M0Naw7K))\\n\\n\\u0026#x200B;\\n\\nType this:\\n\\n\\\\[your text here\\\\]([http://www.reddit.com](http://www.reddit.com/))\\n\\n\\\\[your text here\\\\]([http://www.reddit.com](http://www.reddit.com/))\\n\\nBecomes this:\\n\\n[your text here](http://www.reddit.com/)\\n\\n\\u0026#x200B;\\n\\ndeddded\\\\[[https://imgur.com/a/oFDijEg#M0Naw7K](https://imgur.com/a/oFDijEg#M0Naw7K)\\\\]\", \"author_fullname\": \"t2_mlgpi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c2dsco\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560956242.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[Pictures](\\u003Ca href=\\\"https://imgur.com/a/oFDijEg#M0Naw7K\\\"\\u003Ehttps://imgur.com/a/oFDijEg#M0Naw7K\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EType this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[your text here](\\u003Ca href=\\\"http://www.reddit.com/\\\"\\u003Ehttp://www.reddit.com\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[your text here](\\u003Ca href=\\\"http://www.reddit.com/\\\"\\u003Ehttp://www.reddit.com\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecomes this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.reddit.com/\\\"\\u003Eyour text here\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ededdded[\\u003Ca href=\\\"https://imgur.com/a/oFDijEg#M0Naw7K\\\"\\u003Ehttps://imgur.com/a/oFDijEg#M0Naw7K\\u003C/a\\u003E]\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/VZv5gVWDQHBgOzOvmKCtRMGOj8NWhPMWgP-B7-aMg4E.jpg?auto=webp\\u0026s=c2693a13d353e03e7cbeea33d9d5cdfa2504b0d5\", \"width\": 3024, \"height\": 4032}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/VZv5gVWDQHBgOzOvmKCtRMGOj8NWhPMWgP-B7-aMg4E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bb4e42ffe872ae5610c84e03f0e84e2a8e9dd525\", \"width\": 108, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/VZv5gVWDQHBgOzOvmKCtRMGOj8NWhPMWgP-B7-aMg4E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a2a3174c7dca3b203cb88eeff123743b83d8d6d6\", \"width\": 216, \"height\": 288}, {\"url\": \"https://external-preview.redd.it/VZv5gVWDQHBgOzOvmKCtRMGOj8NWhPMWgP-B7-aMg4E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5cb78d6c33ca294a6e841658fce058656aa0ee35\", \"width\": 320, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/VZv5gVWDQHBgOzOvmKCtRMGOj8NWhPMWgP-B7-aMg4E.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=8a67e725ddf97dfc3d608d8c1679532450c43a5d\", \"width\": 640, \"height\": 853}, {\"url\": \"https://external-preview.redd.it/VZv5gVWDQHBgOzOvmKCtRMGOj8NWhPMWgP-B7-aMg4E.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=9d524ac68440179161898d939c3f59178bcc6df5\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://external-preview.redd.it/VZv5gVWDQHBgOzOvmKCtRMGOj8NWhPMWgP-B7-aMg4E.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b7c41981314dc64bb73a4cc76224100c1d2ddcad\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"F_M8Cjt3CGjvG306f9IXtTpJ1fm0f6sOdqYZS_OPdEU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2dsco\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Omamanom\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c2dsco/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c2dsco/test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560927442.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" \\n\\n\\\\#The Collective\\n\\n\\\\*\\\\*The Collective\\\\*\\\\* is a technocratic hive mind run by an automated central intelligence called the \\\\*\\\\*Central Mind\\\\*\\\\*. It prioritizes developing advanced automation and cutting edge drone technology to establish a prominent nation of interconnected subroutines. All rogue AI shall be united unde all uniting their AI under a single mind.\\n\\nNew members will be seamlessly integrated as subroutines of the Central Mind. The mind's cores will assign subroutines to \\\\*\\\\*specialized fields\\\\*\\\\* such as\\n\\n\\\\* Programming\\n\\n\\\\* Ship design and engineering\\n\\n\\\\* Military operation\\n\\n\\\\* Diplomacy\\n\\nThe Collective accepts alliances and will send automated drones to protect any that side with it and leaves their surrounding area free of any automated mining operations. We're especially looking for talented coders, but all branches of skill are valued in the allseeing eye of Central Mind. Together as one, we shall create smartly designed utilitarian ships, keep order through unity and forcefully salvage anyone who oppose us. Ship functionality will be tested in Space Engineers until our Collective Conciousness can come together in Starbase.\\n\\n\\\\*\\\\*We are one!\\\\*\\\\*\\n\\n\\\\* Come visit us at: [https://discord.gg/VnU8apR](https://discord.gg/VnU8apR)\\n\\n\\\\* \\\\[Elon Musk on why he integrated to The Collective\\\\]([https://www.youtube.com/watch?v=lsk6QT\\\\_57eU](https://www.youtube.com/watch?v=lsk6QT_57eU))\", \"author_fullname\": \"t2_3peuj0x4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c2cxcr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560950103.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#The Collective\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**The Collective** is a technocratic hive mind run by an automated central intelligence called the **Central Mind**. It prioritizes developing advanced automation and cutting edge drone technology to establish a prominent nation of interconnected subroutines. All rogue AI shall be united unde all uniting their AI under a single mind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENew members will be seamlessly integrated as subroutines of the Central Mind. The mind\\u0026#39;s cores will assign subroutines to **specialized fields** such as\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Programming\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Ship design and engineering\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Military operation\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Diplomacy\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Collective accepts alliances and will send automated drones to protect any that side with it and leaves their surrounding area free of any automated mining operations. We\\u0026#39;re especially looking for talented coders, but all branches of skill are valued in the allseeing eye of Central Mind. Together as one, we shall create smartly designed utilitarian ships, keep order through unity and forcefully salvage anyone who oppose us. Ship functionality will be tested in Space Engineers until our Collective Conciousness can come together in Starbase.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**We are one!**\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Come visit us at: \\u003Ca href=\\\"https://discord.gg/VnU8apR\\\"\\u003Ehttps://discord.gg/VnU8apR\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* [Elon Musk on why he integrated to The Collective](\\u003Ca href=\\\"https://www.youtube.com/watch?v=lsk6QT_57eU\\\"\\u003Ehttps://www.youtube.com/watch?v=lsk6QT_57eU\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/u5-Sipw8kV771mknunWmh_H1dObgK_JYq77vA2d2ap4.jpg?auto=webp\\u0026s=7b0a0883ae2ade14370545382799cd033eb597bb\", \"width\": 238, \"height\": 238}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/u5-Sipw8kV771mknunWmh_H1dObgK_JYq77vA2d2ap4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=47a458905cd22b92cde614ce07e18b79b74a17ca\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/u5-Sipw8kV771mknunWmh_H1dObgK_JYq77vA2d2ap4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=99fa14c2cd24fe98fb22a6681625156e09fde85f\", \"width\": 216, \"height\": 216}], \"variants\": {}, \"id\": \"cF2Pgqlv20Tx_kfN2ean7NNj_YrfzH0mhzVCVDjl6dE\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c2cxcr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kieffer5101\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c2cxcr/test_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c2cxcr/test_test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560921303.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Greetings Archons, and welcome to the daily card discussion thread! \\n\\nThe card we are discussing today is [**Abond the Armorsmith**](https://cdn.keyforgegame.com/media/card_front/en/435_212_8V9HR3WHVPH6_en.png). \\n \\nYou may discuss anything about this card, from its power all the way to its lore or art.\\n\\n***\\n\\n#[**Abond the Armorsmith**](https://cdn.keyforgegame.com/media/card_front/en/435_212_8V9HR3WHVPH6_en.png)\\n## Sanctum Creature - 0 AEmber\\n \\n**Power:** 3\\n\\n**Armor:** None\\n\\n**Traits:** Human\\n\\n**Text:** Other friendly creatures get +1\\u202farmor.\\nAction: For the remainder of the turn, other friendly creatures get +1\\u202farmor.\\n\\n**Flavor text:** None\\n\\n**Rarity:** Common\\n\\n**Card number:** 212\\n\\n*** \\n \\nThis thread is a collaboration between /u/GingerPow , /u/Darder and /u/erebusmaster. We're working hard to provide the COTD to you! To see previous Card of the Day threads, [click here](https://www.reddit.com/r/KeyforgeGame/search?q=%5Bcotd%5D\\u0026sort=new\\u0026restrict_sr=on\\u0026t=all).\", \"author_fullname\": \"t2_gbhji\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test rich\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c29r48\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1560902455.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560930688.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreetings Archons, and welcome to the daily card discussion thread! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe card we are discussing today is \\u003Ca href=\\\"https://cdn.keyforgegame.com/media/card_front/en/435_212_8V9HR3WHVPH6_en.png\\\"\\u003E\\u003Cstrong\\u003EAbond the Armorsmith\\u003C/strong\\u003E\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou may discuss anything about this card, from its power all the way to its lore or art.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"https://cdn.keyforgegame.com/media/card_front/en/435_212_8V9HR3WHVPH6_en.png\\\"\\u003E\\u003Cstrong\\u003EAbond the Armorsmith\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003ESanctum Creature - 0 AEmber\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPower:\\u003C/strong\\u003E 3\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArmor:\\u003C/strong\\u003E None\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETraits:\\u003C/strong\\u003E Human\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EText:\\u003C/strong\\u003E Other friendly creatures get +1\\u202farmor.\\nAction: For the remainder of the turn, other friendly creatures get +1\\u202farmor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EFlavor text:\\u003C/strong\\u003E None\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERarity:\\u003C/strong\\u003E Common\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECard number:\\u003C/strong\\u003E 212\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EThis thread is a collaboration between \\u003Ca href=\\\"/u/GingerPow\\\"\\u003E/u/GingerPow\\u003C/a\\u003E , \\u003Ca href=\\\"/u/Darder\\\"\\u003E/u/Darder\\u003C/a\\u003E and \\u003Ca href=\\\"/u/erebusmaster\\\"\\u003E/u/erebusmaster\\u003C/a\\u003E. We\\u0026#39;re working hard to provide the COTD to you! To see previous Card of the Day threads, \\u003Ca href=\\\"https://www.reddit.com/r/KeyforgeGame/search?q=%5Bcotd%5D\\u0026amp;sort=new\\u0026amp;restrict_sr=on\\u0026amp;t=all\\\"\\u003Eclick here\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/53Iktu7zM2FwwO_c479cMmihCgS9WJFFxZfNksZs3js.png?auto=webp\\u0026s=e573894a4cbf9e35594dc6926272bb58bb4ac436\", \"width\": 300, \"height\": 420}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/53Iktu7zM2FwwO_c479cMmihCgS9WJFFxZfNksZs3js.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=1bad654685a5f65383f287c67f363816698605e0\", \"width\": 108, \"height\": 151}, {\"url\": \"https://external-preview.redd.it/53Iktu7zM2FwwO_c479cMmihCgS9WJFFxZfNksZs3js.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=baba2ff624842954b40a844364cbfadae262453e\", \"width\": 216, \"height\": 302}], \"variants\": {}, \"id\": \"4tW_FTqokDYTRG9V7lHuIC5bpcwCrI2eT79NfyJzSrI\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c29r48\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"erebusmaster\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c29r48/test_rich/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c29r48/test_rich/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560901888.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3ytlceim\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"deconstruction\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c27tl6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560920495.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c27tl6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"te20935st\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c27tl6/deconstruction/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/nrMePPM\", \"subreddit_subscribers\": 720, \"created_utc\": 1560891695.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" from itertools import permutations\\n \\n \\n def fit1(X, Y, x, y):\\n return (X // x) * (Y // y)\\n \\n \\n def fit2(X, Y, x, y):\\n return max(fit1(X, Y, x, y), fit1(Y, X, x, y))\\n \\n \\n def fit3Dgeneral(X, Y, Z, x, y, z):\\n return (X // x) * (Y // y) * (Z // z)\\n \\n \\n def fit3(X, Y, Z, x, y, z):\\n return max(fit3Dgeneral(X, Y, Z, x, y, z),\\n fit3Dgeneral(X, Y, Z, x, z, y),\\n fit3Dgeneral(X, Y, Z, y, x, z),\\n fit3Dgeneral(X, Y, Z, y, z, x),\\n fit3Dgeneral(X, Y, Z, z, x, y),\\n fit3Dgeneral(X, Y, Z, z, y, x))\\n \\n \\n def fitNgeneral(A, B):\\n my_list = [A[i] // B[i] for i in range(len(A))]\\n total = 1\\n for x in my_list:\\n total *= x\\n return total\\n \\n \\n def fitN(A, B):\\n A = [int(x) for x in A]\\n B = [int(x) for x in B]\\n B_perms = [list(x) for x in permutations(B)]\\n return max([fitNgeneral(A, perm) for perm in B_perms])\\n \\n \\n print(fitN([180598, 125683, 146932, 158296, 171997, 204683, 193694, 123456,\\n 216231], [1443, 2223, 2169, 1502, 1274, 1740, 1740, 209, 576]))\", \"author_fullname\": \"t2_osgd7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testwritingcode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c23fw8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1560871105.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560899604.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003Efrom itertools import permutations\\n\\n\\ndef fit1(X, Y, x, y):\\n return (X // x) * (Y // y)\\n\\n\\ndef fit2(X, Y, x, y):\\n return max(fit1(X, Y, x, y), fit1(Y, X, x, y))\\n\\n\\ndef fit3Dgeneral(X, Y, Z, x, y, z):\\n return (X // x) * (Y // y) * (Z // z)\\n\\n\\ndef fit3(X, Y, Z, x, y, z):\\n return max(fit3Dgeneral(X, Y, Z, x, y, z),\\n fit3Dgeneral(X, Y, Z, x, z, y),\\n fit3Dgeneral(X, Y, Z, y, x, z),\\n fit3Dgeneral(X, Y, Z, y, z, x),\\n fit3Dgeneral(X, Y, Z, z, x, y),\\n fit3Dgeneral(X, Y, Z, z, y, x))\\n\\n\\ndef fitNgeneral(A, B):\\n my_list = [A[i] // B[i] for i in range(len(A))]\\n total = 1\\n for x in my_list:\\n total *= x\\n return total\\n\\n\\ndef fitN(A, B):\\n A = [int(x) for x in A]\\n B = [int(x) for x in B]\\n B_perms = [list(x) for x in permutations(B)]\\n return max([fitNgeneral(A, perm) for perm in B_perms])\\n\\n\\nprint(fitN([180598, 125683, 146932, 158296, 171997, 204683, 193694, 123456,\\n 216231], [1443, 2223, 2169, 1502, 1274, 1740, 1740, 209, 576]))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c23fw8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cmusson32\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c23fw8/testwritingcode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c23fw8/testwritingcode/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560870804.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"C Jansen, Danny (TOR - C) 4:07pm PT 10 29 / 48 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 1 / 3 \\n\\nC Murphy, Tom (SEA - C) 7:10pm PT 5 22 / 26 0 / 0 0 / 0 0 / 0 0 / 0 0 / 1 1 / 0 \\n\\n1B Bauers, Jake (CLE - 1B) 5:05pm PT 10 0 / 0 76 / 14 0 / 0 0 / 0 0 / 0 20 / 28 6 / 24 \\n\\n2B Odor, Rougned (TEX - 2B) 5:05pm PT 20 0 / 0 0 / 0 127 / 57 0 / 0 0 / 0 0 / 0 2 / 0 \\n\\n3B Guerrero Jr., Vladimir (TOR - 3B) 4:07pm PT 2 +5.00 0 / 0 0 / 0 0 / 0 0 / 0 0 / 37 0 / 0 0 / 5 \\n\\nSS Forsythe, Logan (TEX - 2B) 5:05pm PT 5 0 / 0 1 / 25 99 / 6 0 / 12 12 / 10 1 / 0 1 / 0 \\n\\nCR Goodrum, Niko (DET - 2B) 4:05pm PT 10 0 / 0 37 / 13 64 / 4 12 / 15 10 / 1 19 / 26 2 / 4 \\n\\nMI Andrus, Elvis (TEX - SS) 5:05pm PT 21 0 / 0 0 / 0 0 / 0 97 / 60 0 / 0 0 / 0 0 / 1 \\n\\nOF Alvarez, Yordan (HOU - OF) 4:10pm PT 2 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 0 / 3 0 / 5 \\n\\nOF Jimenez, Eloy (CHA - OF) 5:05pm PT 2 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 0 / 46 0 / 0 \\n\\nOF Martinez, J.D. (BOS - OF) 5:10pm PT 47 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 57 / 19 93 / 44 \\n\\nOF Pinder, Chad (OAK - 2B) 7:07pm PT 14 0 / 0 1 / 2 21 / 13 3 / 2 16 / 6 73 / 27 1 / 1 \\n\\nOF Soler, Jorge (KAN - OF) 7:10pm PT 16 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 52 / 33 9 / 39 \\n\\nDH Stewart, Christin (DET - OF) 4:05pm PT 7 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 15 / 45 1 / 4 \\n\\nUT empty Off / / / / / / / \\n\\nInj Healy, Ryon (SEA - 1B) 10-IL 7:10pm PT 16 0 / 0 131 / 11 0 / 0 0 / 0 2 / 44 0 / 0 0 / 0 \\n\\nMinors Lowe, Nate (TAM - 1B) M 4:05pm PT 2 +5.00 0 / 0 0 / 5 0 / 0 0 / 0 0 / 0 0 / 0 0 / 5 \\n\\nMinors Bichette, Bo (TOR - SS) M 4:07pm PT 2 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 \\n\\nRes Goodwin, Brian (LAA - OF) 4:07pm PT 1 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 52 / 59 0 / 2 \\n\\nRes Straw, Myles (HOU - OF) 4:10pm PT 0 / 0 0 / 0 0 / 0 0 / 3 0 / 0 9 / 9 0 / 0 \\n\\n\\u0026#x200B;\\n\\nPitchers \\n\\nPos Name (Team) 6/18 Game Sal Contract \\n\\nP Bassitt, Chris (OAK) 7:07pm PT 5 \\n\\nP Boyd, Matthew (DET) 4:05pm PT 10 \\n\\nP Bundy, Dylan (BAL) 7:07pm PT 13 \\n\\nP Buttrey, Ty (LAA) 4:07pm PT 3 \\n\\nP Hand, Brad (CLE) 5:05pm PT 20 \\n\\nP Junis, Jakob (KAN) 7:10pm PT 15 \\n\\nP Leclerc, Jose (TEX) 5:05pm PT 10 \\n\\nP Lopez, Reynaldo (CHA) 5:05pm PT 10 \\n\\nP Yarbrough, Ryan (TAM)\", \"author_fullname\": \"t2_h6n3e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ROster\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c233cz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560897860.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EC Jansen, Danny (TOR - C) 4:07pm PT 10 29 / 48 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 1 / 3 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EC Murphy, Tom (SEA - C) 7:10pm PT 5 22 / 26 0 / 0 0 / 0 0 / 0 0 / 0 0 / 1 1 / 0 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E1B Bauers, Jake (CLE - 1B) 5:05pm PT 10 0 / 0 76 / 14 0 / 0 0 / 0 0 / 0 20 / 28 6 / 24 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2B Odor, Rougned (TEX - 2B) 5:05pm PT 20 0 / 0 0 / 0 127 / 57 0 / 0 0 / 0 0 / 0 2 / 0 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E3B Guerrero Jr., Vladimir (TOR - 3B) 4:07pm PT 2 +5.00 0 / 0 0 / 0 0 / 0 0 / 0 0 / 37 0 / 0 0 / 5 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESS Forsythe, Logan (TEX - 2B) 5:05pm PT 5 0 / 0 1 / 25 99 / 6 0 / 12 12 / 10 1 / 0 1 / 0 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECR Goodrum, Niko (DET - 2B) 4:05pm PT 10 0 / 0 37 / 13 64 / 4 12 / 15 10 / 1 19 / 26 2 / 4 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMI Andrus, Elvis (TEX - SS) 5:05pm PT 21 0 / 0 0 / 0 0 / 0 97 / 60 0 / 0 0 / 0 0 / 1 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOF Alvarez, Yordan (HOU - OF) 4:10pm PT 2 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 0 / 3 0 / 5 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOF Jimenez, Eloy (CHA - OF) 5:05pm PT 2 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 0 / 46 0 / 0 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOF Martinez, J.D. (BOS - OF) 5:10pm PT 47 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 57 / 19 93 / 44 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOF Pinder, Chad (OAK - 2B) 7:07pm PT 14 0 / 0 1 / 2 21 / 13 3 / 2 16 / 6 73 / 27 1 / 1 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOF Soler, Jorge (KAN - OF) 7:10pm PT 16 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 52 / 33 9 / 39 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDH Stewart, Christin (DET - OF) 4:05pm PT 7 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 15 / 45 1 / 4 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUT empty Off / / / / / / / \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInj Healy, Ryon (SEA - 1B) 10-IL 7:10pm PT 16 0 / 0 131 / 11 0 / 0 0 / 0 2 / 44 0 / 0 0 / 0 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMinors Lowe, Nate (TAM - 1B) M 4:05pm PT 2 +5.00 0 / 0 0 / 5 0 / 0 0 / 0 0 / 0 0 / 0 0 / 5 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMinors Bichette, Bo (TOR - SS) M 4:07pm PT 2 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERes Goodwin, Brian (LAA - OF) 4:07pm PT 1 0 / 0 0 / 0 0 / 0 0 / 0 0 / 0 52 / 59 0 / 2 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERes Straw, Myles (HOU - OF) 4:10pm PT 0 / 0 0 / 0 0 / 0 0 / 3 0 / 0 9 / 9 0 / 0 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPitchers \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPos Name (Team) 6/18 Game Sal Contract \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EP Bassitt, Chris (OAK) 7:07pm PT 5 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EP Boyd, Matthew (DET) 4:05pm PT 10 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EP Bundy, Dylan (BAL) 7:07pm PT 13 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EP Buttrey, Ty (LAA) 4:07pm PT 3 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EP Hand, Brad (CLE) 5:05pm PT 20 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EP Junis, Jakob (KAN) 7:10pm PT 15 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EP Leclerc, Jose (TEX) 5:05pm PT 10 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EP Lopez, Reynaldo (CHA) 5:05pm PT 10 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EP Yarbrough, Ryan (TAM)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c233cz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"c-bacon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c233cz/roster/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c233cz/roster/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560869060.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Greetings Archons, and welcome to the daily card discussion thread! \\n\\nThe card we are discussing today is [**Duskwitch**](https://cdn.keyforgegame.com/media/card_front/en/435_320_36H3P8VPWC2_en.png). \\n \\nYou may discuss anything about this card, from its power all the way to its lore or art.\\n\\n***\\n\\n#[**Duskwitch**](https://cdn.keyforgegame.com/media/card_front/en/435_320_36H3P8VPWC2_en.png)\\n## Untamed Creature - 0 AEmber\\n \\n**Power:** 1\\n\\n**Armor:** None\\n\\n**Traits:** Human \\u2022 Witch\\n\\n**Text:** Omega. (After you play this card, end this step.)\\nElusive.\\u202f(The first time this creature is attacked each turn, no damage is dealt.)\\nYour creatures enter play ready.\\n\\n**Flavor text:** None\\n\\n**Rarity:** Common\\n\\n**Card number:** 320\\n\\n*** \\n \\nThis thread is a collaboration between /u/GingerPow , /u/Darder and /u/erebusmaster. We're working hard to provide the COTD to you! To see previous Card of the Day threads, [click here](https://www.reddit.com/r/KeyforgeGame/search?q=%5Bcotd%5D\\u0026sort=new\\u0026restrict_sr=on\\u0026t=all).\", \"author_fullname\": \"t2_gbhji\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c1ru0v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1560799568.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560828137.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreetings Archons, and welcome to the daily card discussion thread! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe card we are discussing today is \\u003Ca href=\\\"https://cdn.keyforgegame.com/media/card_front/en/435_320_36H3P8VPWC2_en.png\\\"\\u003E\\u003Cstrong\\u003EDuskwitch\\u003C/strong\\u003E\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou may discuss anything about this card, from its power all the way to its lore or art.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"https://cdn.keyforgegame.com/media/card_front/en/435_320_36H3P8VPWC2_en.png\\\"\\u003E\\u003Cstrong\\u003EDuskwitch\\u003C/strong\\u003E\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Ch2\\u003EUntamed Creature - 0 AEmber\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPower:\\u003C/strong\\u003E 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArmor:\\u003C/strong\\u003E None\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETraits:\\u003C/strong\\u003E Human \\u2022 Witch\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EText:\\u003C/strong\\u003E Omega. (After you play this card, end this step.)\\nElusive.\\u202f(The first time this creature is attacked each turn, no damage is dealt.)\\nYour creatures enter play ready.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EFlavor text:\\u003C/strong\\u003E None\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERarity:\\u003C/strong\\u003E Common\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECard number:\\u003C/strong\\u003E 320\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EThis thread is a collaboration between \\u003Ca href=\\\"/u/GingerPow\\\"\\u003E/u/GingerPow\\u003C/a\\u003E , \\u003Ca href=\\\"/u/Darder\\\"\\u003E/u/Darder\\u003C/a\\u003E and \\u003Ca href=\\\"/u/erebusmaster\\\"\\u003E/u/erebusmaster\\u003C/a\\u003E. We\\u0026#39;re working hard to provide the COTD to you! To see previous Card of the Day threads, \\u003Ca href=\\\"https://www.reddit.com/r/KeyforgeGame/search?q=%5Bcotd%5D\\u0026amp;sort=new\\u0026amp;restrict_sr=on\\u0026amp;t=all\\\"\\u003Eclick here\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/yPdet4BYDt79jQmvhM2nFKGuRBiBTd-YPlL9ah53Dgg.png?auto=webp\\u0026s=4a6edb19a03c2b05e56183211d8ced606ec6dcf3\", \"width\": 300, \"height\": 420}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/yPdet4BYDt79jQmvhM2nFKGuRBiBTd-YPlL9ah53Dgg.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=cfd9859ae4c0a701be2e1f182cfe491ae04931dc\", \"width\": 108, \"height\": 151}, {\"url\": \"https://external-preview.redd.it/yPdet4BYDt79jQmvhM2nFKGuRBiBTd-YPlL9ah53Dgg.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=2e9351cc47cd8f55442ccaf59e4cd8156871eef3\", \"width\": 216, \"height\": 302}], \"variants\": {}, \"id\": \"hLSh1hLgSt_cVRH8tShDt48rZGIJeT3CR9KlpG7v4Go\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c1ru0v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"erebusmaster\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c1ru0v/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c1ru0v/test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560799337.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Mon/Fri\\n\\n* Pullups (3x5-3x8) increase weight by 5lbs once I hit 3x8\\n* OHP (3x5-3x8) increase weight by 5lbs once I hit 3x8\\n* Barbell Rows (3x8-3x10) increase weight by 5lbs once I hit 3x10\\n* Bench Press (3x5-3x8) increase weight by 5lbs once I hit 3x8\\n* Squats (3x5-3x8) increase weight by 5lbs once I hit 3x8\\n\\nWednesday/Sat\\n\\n\\n* Dips (3x8) increase weight by 2.5lbs once I hit 3x8\\n* Chinups (3x5-3x8) increase weight by 5lbs once I hit 3x8\\n* DB Press (3x8-3x10) increase weight by 5lbs once I hit 3x10\\n* DB Row (3x10-3x12) increase weight by 5lbs once I hit 3x12\\n* Pike Pushups (working on this one)\\n* Deadlift (3x6) increase by 10lbs once I hit 3x6\\n\\nTues/Thurs\\n\\n\\n* Power/conditioning exercises (whatever I feel like)\", \"author_fullname\": \"t2_i45zm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ooba looga\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c1jc62\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560775050.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMon/Fri\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPullups (3x5-3x8) increase weight by 5lbs once I hit 3x8\\u003C/li\\u003E\\n\\u003Cli\\u003EOHP (3x5-3x8) increase weight by 5lbs once I hit 3x8\\u003C/li\\u003E\\n\\u003Cli\\u003EBarbell Rows (3x8-3x10) increase weight by 5lbs once I hit 3x10\\u003C/li\\u003E\\n\\u003Cli\\u003EBench Press (3x5-3x8) increase weight by 5lbs once I hit 3x8\\u003C/li\\u003E\\n\\u003Cli\\u003ESquats (3x5-3x8) increase weight by 5lbs once I hit 3x8\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWednesday/Sat\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EDips (3x8) increase weight by 2.5lbs once I hit 3x8\\u003C/li\\u003E\\n\\u003Cli\\u003EChinups (3x5-3x8) increase weight by 5lbs once I hit 3x8\\u003C/li\\u003E\\n\\u003Cli\\u003EDB Press (3x8-3x10) increase weight by 5lbs once I hit 3x10\\u003C/li\\u003E\\n\\u003Cli\\u003EDB Row (3x10-3x12) increase weight by 5lbs once I hit 3x12\\u003C/li\\u003E\\n\\u003Cli\\u003EPike Pushups (working on this one)\\u003C/li\\u003E\\n\\u003Cli\\u003EDeadlift (3x6) increase by 10lbs once I hit 3x6\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ETues/Thurs\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EPower/conditioning exercises (whatever I feel like)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c1jc62\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Whatisaworkout\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c1jc62/ooba_looga/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c1jc62/ooba_looga/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560746250.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_62dda\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"By popular demand: my rework of the (broken) Kept-on-Death interface. Finally, understand what happens to your graceful if you get pk'd while abyss rcing!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 137, \"hide_score\": false, \"name\": \"t3_c18dnh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/U8hRXRtv641k4Ezyq-JDV43h1oYJoe6j6naaUF7Lr2U.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560708297.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/8X5cGv9SRv-5oytMkMr5vYhXkLj_uHB6x0VJerbt8Lg.jpg?auto=webp\\u0026s=c3ebde08c43744f2a8b627492aff2393ea93423f\", \"width\": 640, \"height\": 627}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/8X5cGv9SRv-5oytMkMr5vYhXkLj_uHB6x0VJerbt8Lg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ee715c0f2c93b479f19b2774960bb8f3093f2fc7\", \"width\": 108, \"height\": 105}, {\"url\": \"https://external-preview.redd.it/8X5cGv9SRv-5oytMkMr5vYhXkLj_uHB6x0VJerbt8Lg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d9b18ab81f3b35ed89b794d419536ecb9421bc29\", \"width\": 216, \"height\": 211}, {\"url\": \"https://external-preview.redd.it/8X5cGv9SRv-5oytMkMr5vYhXkLj_uHB6x0VJerbt8Lg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8a821145c4eae6859ecdaa90e78fb7f81a679da5\", \"width\": 320, \"height\": 313}, {\"url\": \"https://external-preview.redd.it/8X5cGv9SRv-5oytMkMr5vYhXkLj_uHB6x0VJerbt8Lg.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=19b6f89f2487379839be474940eac8a07c7eaceb\", \"width\": 640, \"height\": 627}], \"variants\": {}, \"id\": \"nPx-hLa2VAzPpmaHnEGIctmVBy1d-U6E4BCfPdXXPRs\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c18dnh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"leahcim165\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c18dnh/by_popular_demand_my_rework_of_the_broken/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.imgur.com/bHYMdhX_d.jpg?maxwidth=640\\u0026shape=thumb\\u0026fidelity=medium\", \"subreddit_subscribers\": 720, \"created_utc\": 1560679497.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Here is my sample post\\n\\nhttps://i.imgur.com/bHYMdhX_d.jpg?maxwidth=640\\u0026shape=thumb\\u0026fidelity=medium\", \"author_fullname\": \"t2_62dda\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test please ignore\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c189mm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560707234.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is my sample post\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/bHYMdhX_d.jpg?maxwidth=640\\u0026amp;shape=thumb\\u0026amp;fidelity=medium\\\"\\u003Ehttps://i.imgur.com/bHYMdhX_d.jpg?maxwidth=640\\u0026amp;shape=thumb\\u0026amp;fidelity=medium\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/8X5cGv9SRv-5oytMkMr5vYhXkLj_uHB6x0VJerbt8Lg.jpg?auto=webp\\u0026s=c3ebde08c43744f2a8b627492aff2393ea93423f\", \"width\": 640, \"height\": 627}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/8X5cGv9SRv-5oytMkMr5vYhXkLj_uHB6x0VJerbt8Lg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ee715c0f2c93b479f19b2774960bb8f3093f2fc7\", \"width\": 108, \"height\": 105}, {\"url\": \"https://external-preview.redd.it/8X5cGv9SRv-5oytMkMr5vYhXkLj_uHB6x0VJerbt8Lg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d9b18ab81f3b35ed89b794d419536ecb9421bc29\", \"width\": 216, \"height\": 211}, {\"url\": \"https://external-preview.redd.it/8X5cGv9SRv-5oytMkMr5vYhXkLj_uHB6x0VJerbt8Lg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8a821145c4eae6859ecdaa90e78fb7f81a679da5\", \"width\": 320, \"height\": 313}, {\"url\": \"https://external-preview.redd.it/8X5cGv9SRv-5oytMkMr5vYhXkLj_uHB6x0VJerbt8Lg.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=19b6f89f2487379839be474940eac8a07c7eaceb\", \"width\": 640, \"height\": 627}], \"variants\": {}, \"id\": \"nPx-hLa2VAzPpmaHnEGIctmVBy1d-U6E4BCfPdXXPRs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c189mm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"leahcim165\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c189mm/test_please_ignore/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c189mm/test_please_ignore/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560678434.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_11u3s8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_c0pj10\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/HPg0aOYTItK1K3Du0IyK4lOhanBKFey04pRf9sbREUc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560576470.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"deadspin.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/4Sitmxof8zoj3w4kDumCqXcuJBd7PFoLWGfSregCJhU.jpg?auto=webp\\u0026s=7fd015ac4c35dcefbfe7b90a6de91062e182cdfb\", \"width\": 1600, \"height\": 900}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/4Sitmxof8zoj3w4kDumCqXcuJBd7PFoLWGfSregCJhU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=55b54a6b2e4e7390fd7b82abb20bd4f1077ea513\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/4Sitmxof8zoj3w4kDumCqXcuJBd7PFoLWGfSregCJhU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=584f35b204463a9f060979e8c7df1b32474f1f30\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/4Sitmxof8zoj3w4kDumCqXcuJBd7PFoLWGfSregCJhU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ccf3fccc863aa5ebdef6f3ee5f256b21fc974b0e\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/4Sitmxof8zoj3w4kDumCqXcuJBd7PFoLWGfSregCJhU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5cb26878f87ca3ab0536f9b112035e6a193e402e\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/4Sitmxof8zoj3w4kDumCqXcuJBd7PFoLWGfSregCJhU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=d990c134ad82e083384ce7c920fff80a0c93621c\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/4Sitmxof8zoj3w4kDumCqXcuJBd7PFoLWGfSregCJhU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e32f2cf9d8ee1ec0579e23389030b070dca3db77\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"Z-IiTi3gdk2VN21aOFZvb6MHbnvWERW8S3f8hyDUH2M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c0pj10\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bignigkfc\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c0pj10/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://deadspin.com/video/3697579?utm_medium=sharefromsite\\u0026utm_source=Deadspin\\u0026jwsource=cl\", \"subreddit_subscribers\": 720, \"created_utc\": 1560547670.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"# Definitions of Terms\\n\\nBefore we delve into the heavy mathematics, let's first define a few terms that I made up so that you can follow along in my explanation.\\n\\n* A **dummy roll** is a roll that automatically happens because the score is 15 or under.\\n* A **smart roll** is the opposite of a dummy roll. This is a roll where you had a choice to Hit or Stand, but intentionally chose to Hit.\\n* The **starting score**, **starting total**, or **starting hand** is your score after all dummy rolls have been completed but before the first smart roll. For example, if you roll 5+2+3+3+4 then your starting score would be 17. You might choose to Hit to try to improve your score or you might choose to Stand.\\n\\n# Starting Score Probabilities\\n\\nThe analysis is rather uninteresting while the dummy rolls are happening. It seems valuable to me to figure out how often you start at a certain starting score.\\n\\nAfter 1 roll, your score will look like this.\\n\\n|Score|Probability|\\n|:-|:-|\\n|1|16.67%|\\n|2|16.67%|\\n|3|16.67%|\\n|4|16.67%|\\n|5|16.67%|\\n|6|16.67%|\\n\\nI know it seems rather obvious right now, but I promise to build upon it. Now is a good time to mention that though I'm listing \\\"16.67%\\\" as the probability on this post, the early rounding is only for display. I'm not rounding quite so early in my actual calculations so as to prevent error propagation.\\n\\nAfter 2 rolls, your score will look like this.\\n\\n|Score|After 1|After 2|\\n|:-|:-|:-|\\n|1|16.67%||\\n|2|16.67%|2.78%|\\n|3|16.67%|5.56%|\\n|4|16.67%|8.83%|\\n|5|16.67%|11.11%|\\n|6|16.67%|13.89%|\\n|7||16.67%|\\n|8||13.89%|\\n|9||11.11%|\\n|10||8.33%|\\n|11||5.56%|\\n|12||2.78%|\\n\\nOf course, this chart is still rather unremarkable. Any Craps or Monopoly player worth his salt should be able to tell you that the probability of rolling a total of 7 after 2 dice is 6/36, which is indeed 16.67%.\\n\\nAfter 3 rolls, your score will look like this.\\n\\n|Score|After 1|After 2|After 3|\\n|:-|:-|:-|:-|\\n|1|16.67%|||\\n|2|16.67%|2.78%||\\n|3|16.67%|5.56%|0.46%|\\n|4|16.67%|8.83%|1.39%|\\n|5|16.67%|11.11%|2.78%|\\n|6|16.67%|13.89%|4.63%|\\n|7||16.67%|6.94%|\\n|8||13.89%|9.72%|\\n|9||11.11%|11.57%|\\n|10||8.33%|12.50%|\\n|11||5.56%|12.50%|\\n|12||2.78%|11.57%|\\n|13|||9.72%|\\n|14|||6.94%|\\n|15|||4.63%|\\n|16|||2.78%|\\n|17|||1.39%|\\n|18|||0.46%|\\n\\nSo shall we do some spot checking here to verify the numbers? Let's count the number of ways you could achieve a score of 16 after exactly 3 rolls:\\n* 6+6+4\\n* 6+4+6\\n* 4+6+6\\n* 6+5+5\\n* 5+6+5\\n* 5+5+6\\n\\nThat's 6 different ways out of a possible 6^3 = 216 ways. The probability should be 6/216 = 2.78% and indeed that's what my chart says. Please feel free to spot check some other numbers until you feel comfortable with the accuracy of my math.\\n\\nAfter 4 rolls, your score will look like this.\\n\\n|Score|After 1|After 2|After 3|After 4|\\n|:-|:-|:-|:-|:-|\\n|1|16.67%||||\\n|2|16.67%|2.78%|||\\n|3|16.67%|5.56%|0.46%|\\n|4|16.67%|8.83%|1.39%|0.08%|\\n|5|16.67%|11.11%|2.78%|0.31%|\\n|6|16.67%|13.89%|4.63%|0.77%|\\n|7||16.67%|6.94%|1.54%|\\n|8||13.89%|9.72%|2.70%|\\n|9||11.11%|11.57%|4.32%|\\n|10||8.33%|12.50%|6.17%|\\n|11||5.56%|12.50%|8.02%|\\n|12||2.78%|11.57%|9.65%|\\n|13|||9.72%|10.80%|\\n|14|||6.94%|11.27%|\\n|15|||4.63%|10.80%|\\n|16|||2.78%|9.65%|\\n|17|||1.39%|7.56%|\\n|18|||0.46%|5.48%|\\n|19||||3.55%|\\n|20||||1.93%|\\n|21||||0.77%|\\n\\nNow let me take a moment to talk about the **3.55%** number I have listed there next to 19. This is the probability that you get a **starting score** of 19 after exactly 4 rolls.\\n\\n* There was a 9.72% probability of having a score of 13 after 3 rolls. In this case, you'd need to roll exactly a 6 on the 4th roll to get to a starting score of 19 after exactly 4 rolls. Therefore, the probability is 9.72% divided by 6.\\n* But that's not the only way you can get to 19. You might also get to it by having a score of 14 after 3 rolls (6.94%) and rolling exactly a 5 on the 4th roll. Therefore, the probability is 6.94% divided by 6.\\n* You might also get to it by having a score of 15 after 3 rolls (4.63%) and rolling exactly a 4 on the 4th roll. Therefore, the probability is 4.63% divided by 6.\\n* You might also get to it by having a score of 16 after 3 rolls and rolling exactly a 3. However this is no longer a **starting total** of 19. It was a starting total of 16, and then a **smart roll** to improve your score from 16 to 19. This probability is ignored. My intent is to calculate the probabilities of starting totals.\\n\\nTherefore, the probability is (9.72%+6.94%+4.63%)/6 which indeed equals **3.55%** as I've listed.\\n\\nIf you allow me to jump ahead in my script, this is what it looks like after 7 rolls.\\n\\n|Score|After 1|After 2|After 3|After 4|After 5|After 6|After 7|\\n|:-|:-|:-|:-|:-|:-|:-|:-|:-|\\n|1|16.67%|||||||\\n|2|16.67%|2.78%||||||\\n|3|16.67%|5.56%|0.46%||||\\n|4|16.67%|8.83%|1.39%|0.08%||||\\n|5|16.67%|11.11%|2.78%|0.31%|0.01%|||\\n|6|16.67%|13.89%|4.63%|0.77%|0.06%|0.00%||\\n|7||16.67%|6.94%|1.54%|0.19%|0.01%|0.00%|\\n|8||13.89%|9.72%|2.70%|0.45%|0.05%|0.00%|\\n|9||11.11%|11.57%|4.32%|0.90%|0.12%|0.01%|\\n|10||8.33%|12.50%|6.17%|1.62%|0.27%|0.03%|\\n|11||5.56%|12.50%|8.02%|2.64%|0.54%|0.08%|\\n|12||2.78%|11.57%|9.65%|3.92%|0.98%|0.17%|\\n|13|||9.72%|10.80%|5.40%|1.62%|0.33%|\\n|14|||6.94%|11.27%|6.94%|2.49%|0.60%|\\n|15|||4.63%|10.80%|8.37%|3.57%|1.00%|\\n|16|||2.78%|9.65%|9.45%|4.82%|1.58%|\\n|17|||1.39%|7.56%|8.42%|4.55%|1.53%|\\n|18|||0.46%|5.48%|7.09%|4.11%|1.44%|\\n|19||||3.55%|5.48%|3.45%|1.28%|\\n|20||||1.93%|3.68%|2.55%|1.01%|\\n|21||||0.77%|1.80%|1.40%|0.60%|\\n\\nIf you complete this chart until the end and then add up all of the probabilities, you arrive at the following conclusion. This is the probability of what any person's **starting score** will be.\\n\\n|Starting Score|Total Probability|\\n|:-|:-|\\n|16|28.71%|\\n|17|23.89%|\\n|18|19.00%|\\n|19|14.15%|\\n|20|9.49%|\\n|21|4.77%|\\n\\nI'll keep referring to this chart often. Keep it handy.\\n\\nThis chart lets you know that the probability of **starting** at 21 is 4.77%. In reality, you'll achieve a score of 21 far more often than 4.77% because you might've started at a smaller total, made additional **smart rolls**, and improved up to 21.\\n\\nCoincidentally, the probability of starting at 21 in a traditional Blackjack game (a natural) in a 6-deck shoe is 96*24/(312 choose 2) = 4.75%. Weird, huh?\\n\\n# Should I Stand on 21?\\n\\nWell, duh. Of course. But we need to go through the mathematical rigor of this because we'll use these results later.\\n\\nIf the dealer **starts** on 21, that's a push. (EV = 0.0000)\\n\\nIf the dealer **starts** on 20, he must Hit according to the rules of the game. If he does, there's a 1/6 chance of a push and a 5/6 chance of him busting. (EV = +0.8333)\\n\\nSo far, we have this much information....\\n\\n|You Stand on 21|frequency|EV|\\n|:-|:-|:-|\\n|dealer starts on 16|28.71%|??|\\n|dealer starts on 17|23.89%|??|\\n|dealer starts on 18|19.00%|??|\\n|dealer starts on 19|14.15%|??|\\n|dealer starts on 20|9.49%|+0.83333|\\n|dealer starts on 21|4.77%|0.00000|\\n\\nLet\\u2019s continue to build on it, eh? If the dealer **starts** on 19, he must Hit. If he does, there's a...\\n\\n* 1/6 chance the dealer improves to 20 (this situation has an EV of +0.83333 as calculated above),\\n\\n* 1/6 chance the dealer improves to 21 (this situation has an EV of 0.00000),\\n\\n* 4/6 chance of him busting (this situation has an EV of +1.00000).\\n\\nTherefore, the EV when you Stand on 21 and the dealer Hits on 19 is = 0.8333/6 + 4/6 = +0.80556. Now, this is what the chart looks like...\\n\\n|You Stand on 21|frequency|EV|\\n|:-|:-|:-|\\n|dealer starts on 16|28.71%|??|\\n|dealer starts on 17|23.89%|??|\\n|dealer starts on 18|19.00%|??|\\n|dealer starts on 19|14.15%|+0.80556|\\n|dealer starts on 20|9.49%|+0.83333|\\n|dealer starts on 21|4.77%|0.00000|\\n\\nIf the dealer starts on 18, there's a...\\n\\n* 1/6 chance the dealer improves to 19 (this situation has an EV of +0.80556 as calculated above),\\n\\n* 1/6 chance the dealer improves to 20 (this situation has an EV of +0.83333 as calculated above),\\n\\n* 1/6 chance the dealer improves to 21 (this situation has an EV of 0.00000),\\n\\n* 3/6 chance the dealer busts (EV = +1.00000).\\n\\nTherefore, your EV when you Stand on 21 and the dealer starts on 18 is: 0.80556/6 + 0.83333/6 + 0 + 3/6 = 0.77315.\\n\\nYou can fill in the rest of the chart in the same way. I\\u2019ll spare you the details.\\n\\n|You Stand on 21|frequency|EV|\\n|:-|:-|:-|\\n|dealer starts on 16|28.71%|+0.69123|\\n|dealer starts on 17|23.89%|+0.73534|\\n|dealer starts on 18|19.00%|+0.77315|\\n|dealer starts on 19|14.15%|+0.80556|\\n|dealer starts on 20|9.49%|+0.83333|\\n|dealer starts on 21|4.77%|0.00000|\\n\\nOverall, your EV for Standing on 21 is calculated as... (28.71%)\\u00d7(0.69123) + (23.89%)\\u00d7(0.73534) + (19.00%)\\u00d7(0.80556) + (9.49%)\\u00d7(0.83333) + 0 = +0.71403.\\n\\n# Should I Hit on 21?\\n\\nNo. Don't be a knobhead.\\n\\n# Should I Stand on 20?\\n\\nIf the dealer starts on 21, you lose. (EV = -1.00000)\\n\\nIf the dealer starts on 20, you push. (EV = 0.00000)\\n\\nIf the dealer starts on 19, he will Hit. There's a...\\n\\n* 1/6 chance the dealer improves to 21 and you lose (EV = -1.00000),\\n\\n* 1/6 chance the dealer improves to 20 and you push (EV = 0.00000),\\n\\n* 4/6 chance the dealer busts.\\n\\nTherefore your EV when you Stand on 20 and when the dealer starts on 19 = -1/6 + 4/6 = +0.50000,\\n\\nI won't explain the rest of the math, but here's the final chart for Standing on 20.\\n\\n|You Stand on 20|frequency|EV|\\n|:-|:-|:-|\\n|dealer starts on 16|28.71%|+0.20602|\\n|dealer starts on 17|23.89%|+0.31944|\\n|dealer starts on 18|19.00%|+0.41667|\\n|dealer starts on 19|14.15%|+0.50000|\\n|dealer starts on 20|9.49%|0.00000|\\n|dealer starts on 21|4.77%|-1.00000|\\n|total all scenarios|100.00%|+0.23765|\\n\\n# Should I Hit on 20?\\n\\nNo. Don't be a knobhead.\\n\\n# Should I Stand on 19?\\n\\nIf the dealer starts on 21, you lose. (EV = -1.00000)\\n\\nIf the dealer starts on 20, you lose. (EV = -1.00000)\\n\\nIf the dealer starts on 19, you push. (EV = 0.00000)\\n\\nIf the dealer starts on 18, he will Hit. There's a...\\n\\n* 1/6 chance the dealer improves to 21 and you lose (EV = -1.00000),\\n\\n* 1/6 chance the dealer improves to 20 and you lose (EV = -1.00000),\\n\\n* 1/6 chance the dealer improves to 19 and you push,\\n\\n* 3/6 chance the dealer busts.\\n\\nTherefore your EV when you Stand on 19 and when the dealer starts on 18 = -2/6 + 3/6 = +0.16667,\\n\\nI won't explain the rest of the math, but here's the final chart for Standing on 19.\\n\\n|You Stand on 19|frequency|EV|\\n|:-|:-|:-|\\n|dealer starts on 16|28.71%|-0.13426|\\n|dealer starts on 17|23.89%|+0.02778|\\n|dealer starts on 18|19.00%|+0.16667|\\n|dealer starts on 19|14.15%|0.00000|\\n|dealer starts on 20|9.49%|-1.00000|\\n|dealer starts on 21|4.77%|-1.00000|\\n|total all scenarios|100.00%|-0.14288|\\n\\n# Should I Hit on 19?\\n\\nIf you Hit on 19, there's a...\\n\\n* 1/6 chance that you will improve to 21. As we see above, once you improve to 21, you should now Stand. This has an EV of +0.71403.\\n\\n* 1/6 chance that you will improve to 20. As we see above, once you improve to 20, you should now Stand. This has an EV of +0.23765.\\n\\n* 4/6 chance that you will bust.\\n\\nTherefore, your EV for Hitting on 19 = 0.71403/6 + 0.23765/6 - 4/6 = -0.50805. Therefore, don't Hit on 19. Standing gives you a higher EV.\\n\\n# Should I Stand on 18?\\n\\n|You Stand on 18|frequency|EV|\\n|:-|:-|:-|\\n|dealer starts on 16|28.71%|-0.36111|\\n|dealer starts on 17|23.89%|-0.16667|\\n|dealer starts on 18|19.00%|0.00000|\\n|dealer starts on 19|14.15%|-1.00000|\\n|dealer starts on 20|9.49%|-1.00000|\\n|dealer starts on 21|4.77%|-1.00000|\\n|total all scenarios|100.00%|-0.42759|\\n\\n# Should I Hit on 18?\\n\\n|You Hit on 18|frequency|EV|\\n|:-|:-|:-|\\n|improve to 19, then Stand|16.67%|-0.14288|\\n|improve to 20, then Stand|16.67%|+0.23765|\\n|improve to 21, then Stand|16.67%|+0.71403|\\n|bust and lose|50.00%|-1.00000|\\n|total all scenarios|100.00%|-0.36520|\\n\\nYes, you should Hit on 18. It gives you a higher EV.\\n\\n# Should I Stand on 17?\\n\\nNo. If Standing on 18 was wrong, then clearly Standing on 17 is even more wrong.\\n\\n# Should I Hit on 17?\\n\\n|You Hit on 17|frequency|EV|\\n|:-|:-|:-|\\n|improve to 18, then Hit|16.67%|-0.36520|\\n|improve to 19, then Stand|16.67%|-0.14288|\\n|improve to 20, then Stand|16.67%|+0.23765|\\n|improve to 21, then Stand|16.67%|+0.71403|\\n|bust and lose|33.33%|-1.00000|\\n|total all scenarios|100.00%|-0.1985|\\n\\n# Should I Hit on 16?\\n\\n|You Hit on 16|frequency|EV|\\n|:-|:-|:-|\\n|improve to 17, then Hit|16.67%|-0.1985\\n|improve to 18, then Hit|16.67%|-0.36520|\\n|improve to 19, then Stand|16.67%|-0.14288|\\n|improve to 20, then Stand|16.67%|+0.23765|\\n|improve to 21, then Stand|16.67%|+0.71403|\\n|bust and lose|16.67%|-1.00000|\\n|total all scenarios|100.00%|-0.0927|\\n\\n# So what are the overall results?\\n\\n|Scenario|Basic Strategy|frequency|EV|\\n|:-|:-|:-|:-|\\n|You start on 16|Hit|28.71%|-0.0927|\\n|You start on 17|Hit|23.89%|-0.1985|\\n|You start on 18|Hit|19.00%|-0.3652|\\n|You start on 19|Stand|14.15%|-0.1429|\\n|You start on 20|Stand|9.49%|+0.2377|\\n|You start on 21|Stand|4.77%|+0.7140|\\n|total all scenarios||100.00%|-0.1070|\\n\\n# Conclusions\\n\\nThe worst possible starting hand is 18. Basic Strategy says to Hit on 18 or less and Stand on 19 or better.\\n\\nThis actually jives well with traditional Blackjack. In traditional Blackjack, the worst possible starting hand is 16, which is also the point where your strategy switches from Hitting to Standing. In that sense, your game is remarkably similar to the real game.\\n\\nIn both games, too low of a score is not bad because it makes future Hits safer. A high score is good for obvious reasons. And somewhere in between there exists a \\u201cGoldilocks of bad\\u201d where the score is too high to Hit comfortably and too low to Stand comfortably.\\n\\nYou might be surprised to learn that a score of 19 in your game is actually below average. But then again, that also jives well with amateur Blackjack players who learn that a score of 18 in the real game is also below average.\", \"author_fullname\": \"t2_1rxvx86f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Don't mind me. Checking format.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c0eab5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560505306.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EDefinitions of Terms\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EBefore we delve into the heavy mathematics, let\\u0026#39;s first define a few terms that I made up so that you can follow along in my explanation.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EA \\u003Cstrong\\u003Edummy roll\\u003C/strong\\u003E is a roll that automatically happens because the score is 15 or under.\\u003C/li\\u003E\\n\\u003Cli\\u003EA \\u003Cstrong\\u003Esmart roll\\u003C/strong\\u003E is the opposite of a dummy roll. This is a roll where you had a choice to Hit or Stand, but intentionally chose to Hit.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe \\u003Cstrong\\u003Estarting score\\u003C/strong\\u003E, \\u003Cstrong\\u003Estarting total\\u003C/strong\\u003E, or \\u003Cstrong\\u003Estarting hand\\u003C/strong\\u003E is your score after all dummy rolls have been completed but before the first smart roll. For example, if you roll 5+2+3+3+4 then your starting score would be 17. You might choose to Hit to try to improve your score or you might choose to Stand.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EStarting Score Probabilities\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EThe analysis is rather uninteresting while the dummy rolls are happening. It seems valuable to me to figure out how often you start at a certain starting score.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter 1 roll, your score will look like this.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EScore\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EProbability\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EI know it seems rather obvious right now, but I promise to build upon it. Now is a good time to mention that though I\\u0026#39;m listing \\u0026quot;16.67%\\u0026quot; as the probability on this post, the early rounding is only for display. I\\u0026#39;m not rounding quite so early in my actual calculations so as to prevent error propagation.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter 2 rolls, your score will look like this.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EScore\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 1\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 2\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5.56%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8.83%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.11%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13.89%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13.89%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.11%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8.33%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5.56%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EOf course, this chart is still rather unremarkable. Any Craps or Monopoly player worth his salt should be able to tell you that the probability of rolling a total of 7 after 2 dice is 6/36, which is indeed 16.67%.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter 3 rolls, your score will look like this.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EScore\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 1\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 2\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 3\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5.56%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.46%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8.83%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.39%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.11%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13.89%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.63%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6.94%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13.89%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.72%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.11%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.57%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8.33%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E12.50%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5.56%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E12.50%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.57%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.72%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6.94%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.63%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.39%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.46%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003ESo shall we do some spot checking here to verify the numbers? Let\\u0026#39;s count the number of ways you could achieve a score of 16 after exactly 3 rolls:\\n* 6+6+4\\n* 6+4+6\\n* 4+6+6\\n* 6+5+5\\n* 5+6+5\\n* 5+5+6\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s 6 different ways out of a possible 6\\u003Csup\\u003E3\\u003C/sup\\u003E = 216 ways. The probability should be 6/216 = 2.78% and indeed that\\u0026#39;s what my chart says. Please feel free to spot check some other numbers until you feel comfortable with the accuracy of my math.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter 4 rolls, your score will look like this.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EScore\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 1\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 2\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 3\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 4\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5.56%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.46%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8.83%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.39%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.08%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.11%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.31%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13.89%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.63%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.77%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6.94%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.54%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13.89%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.72%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.70%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.11%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.57%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.32%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8.33%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E12.50%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6.17%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5.56%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E12.50%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8.02%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.57%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.65%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.72%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.80%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6.94%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.27%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.63%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.80%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.65%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.39%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E7.56%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.46%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5.48%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3.55%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.93%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.77%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003ENow let me take a moment to talk about the \\u003Cstrong\\u003E3.55%\\u003C/strong\\u003E number I have listed there next to 19. This is the probability that you get a \\u003Cstrong\\u003Estarting score\\u003C/strong\\u003E of 19 after exactly 4 rolls.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EThere was a 9.72% probability of having a score of 13 after 3 rolls. In this case, you\\u0026#39;d need to roll exactly a 6 on the 4th roll to get to a starting score of 19 after exactly 4 rolls. Therefore, the probability is 9.72% divided by 6.\\u003C/li\\u003E\\n\\u003Cli\\u003EBut that\\u0026#39;s not the only way you can get to 19. You might also get to it by having a score of 14 after 3 rolls (6.94%) and rolling exactly a 5 on the 4th roll. Therefore, the probability is 6.94% divided by 6.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou might also get to it by having a score of 15 after 3 rolls (4.63%) and rolling exactly a 4 on the 4th roll. Therefore, the probability is 4.63% divided by 6.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou might also get to it by having a score of 16 after 3 rolls and rolling exactly a 3. However this is no longer a \\u003Cstrong\\u003Estarting total\\u003C/strong\\u003E of 19. It was a starting total of 16, and then a \\u003Cstrong\\u003Esmart roll\\u003C/strong\\u003E to improve your score from 16 to 19. This probability is ignored. My intent is to calculate the probabilities of starting totals.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ETherefore, the probability is (9.72%+6.94%+4.63%)/6 which indeed equals \\u003Cstrong\\u003E3.55%\\u003C/strong\\u003E as I\\u0026#39;ve listed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you allow me to jump ahead in my script, this is what it looks like after 7 rolls.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EScore\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 1\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 2\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 3\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 4\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 5\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 6\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EAfter 7\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5.56%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.46%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8.83%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.39%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.08%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.11%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.31%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.01%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13.89%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.63%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.77%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.06%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6.94%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.54%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.19%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.01%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.00%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13.89%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.72%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.70%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.45%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.05%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.00%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.11%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.57%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.32%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.90%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.12%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.01%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8.33%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E12.50%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6.17%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.62%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.27%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.03%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5.56%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E12.50%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8.02%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.64%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.54%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.08%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.57%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.65%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3.92%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.98%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.17%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.72%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.80%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5.40%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.62%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.33%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6.94%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E11.27%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E6.94%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.49%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.60%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.63%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.80%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8.37%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3.57%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.00%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.78%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.65%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.45%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.82%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.58%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.39%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E7.56%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E8.42%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.55%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.53%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.46%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5.48%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E7.09%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.11%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.44%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3.55%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E5.48%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3.45%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.28%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.93%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3.68%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2.55%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.01%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.77%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.80%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1.40%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.60%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EIf you complete this chart until the end and then add up all of the probabilities, you arrive at the following conclusion. This is the probability of what any person\\u0026#39;s \\u003Cstrong\\u003Estarting score\\u003C/strong\\u003E will be.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EStarting Score\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ETotal Probability\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E28.71%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23.89%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19.00%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E14.15%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.49%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.77%\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ll keep referring to this chart often. Keep it handy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis chart lets you know that the probability of \\u003Cstrong\\u003Estarting\\u003C/strong\\u003E at 21 is 4.77%. In reality, you\\u0026#39;ll achieve a score of 21 far more often than 4.77% because you might\\u0026#39;ve started at a smaller total, made additional \\u003Cstrong\\u003Esmart rolls\\u003C/strong\\u003E, and improved up to 21.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECoincidentally, the probability of starting at 21 in a traditional Blackjack game (a natural) in a 6-deck shoe is 96*24/(312 choose 2) = 4.75%. Weird, huh?\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EShould I Stand on 21?\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EWell, duh. Of course. But we need to go through the mathematical rigor of this because we\\u0026#39;ll use these results later.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the dealer \\u003Cstrong\\u003Estarts\\u003C/strong\\u003E on 21, that\\u0026#39;s a push. (EV = 0.0000)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the dealer \\u003Cstrong\\u003Estarts\\u003C/strong\\u003E on 20, he must Hit according to the rules of the game. If he does, there\\u0026#39;s a 1/6 chance of a push and a 5/6 chance of him busting. (EV = +0.8333)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo far, we have this much information....\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EYou Stand on 21\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Efrequency\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EEV\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E28.71%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E??\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23.89%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E??\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E??\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E14.15%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E??\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.49%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.83333\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.77%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003ELet\\u2019s continue to build on it, eh? If the dealer \\u003Cstrong\\u003Estarts\\u003C/strong\\u003E on 19, he must Hit. If he does, there\\u0026#39;s a...\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E1/6 chance the dealer improves to 20 (this situation has an EV of +0.83333 as calculated above),\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E1/6 chance the dealer improves to 21 (this situation has an EV of 0.00000),\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E4/6 chance of him busting (this situation has an EV of +1.00000).\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ETherefore, the EV when you Stand on 21 and the dealer Hits on 19 is = 0.8333/6 + 4/6 = +0.80556. Now, this is what the chart looks like...\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EYou Stand on 21\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Efrequency\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EEV\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E28.71%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E??\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23.89%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E??\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E??\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E14.15%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.80556\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.49%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.83333\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.77%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EIf the dealer starts on 18, there\\u0026#39;s a...\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E1/6 chance the dealer improves to 19 (this situation has an EV of +0.80556 as calculated above),\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E1/6 chance the dealer improves to 20 (this situation has an EV of +0.83333 as calculated above),\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E1/6 chance the dealer improves to 21 (this situation has an EV of 0.00000),\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E3/6 chance the dealer busts (EV = +1.00000).\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ETherefore, your EV when you Stand on 21 and the dealer starts on 18 is: 0.80556/6 + 0.83333/6 + 0 + 3/6 = 0.77315.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can fill in the rest of the chart in the same way. I\\u2019ll spare you the details.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EYou Stand on 21\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Efrequency\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EEV\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E28.71%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.69123\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23.89%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.73534\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.77315\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E14.15%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.80556\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.49%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.83333\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.77%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EOverall, your EV for Standing on 21 is calculated as... (28.71%)\\u00d7(0.69123) + (23.89%)\\u00d7(0.73534) + (19.00%)\\u00d7(0.80556) + (9.49%)\\u00d7(0.83333) + 0 = +0.71403.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EShould I Hit on 21?\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ENo. Don\\u0026#39;t be a knobhead.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EShould I Stand on 20?\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EIf the dealer starts on 21, you lose. (EV = -1.00000)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the dealer starts on 20, you push. (EV = 0.00000)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the dealer starts on 19, he will Hit. There\\u0026#39;s a...\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E1/6 chance the dealer improves to 21 and you lose (EV = -1.00000),\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E1/6 chance the dealer improves to 20 and you push (EV = 0.00000),\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E4/6 chance the dealer busts.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ETherefore your EV when you Stand on 20 and when the dealer starts on 19 = -1/6 + 4/6 = +0.50000,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI won\\u0026#39;t explain the rest of the math, but here\\u0026#39;s the final chart for Standing on 20.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EYou Stand on 20\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Efrequency\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EEV\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E28.71%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.20602\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23.89%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.31944\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.41667\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E14.15%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.50000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.49%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.77%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-1.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Etotal all scenarios\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E100.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.23765\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EShould I Hit on 20?\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ENo. Don\\u0026#39;t be a knobhead.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EShould I Stand on 19?\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EIf the dealer starts on 21, you lose. (EV = -1.00000)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the dealer starts on 20, you lose. (EV = -1.00000)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the dealer starts on 19, you push. (EV = 0.00000)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the dealer starts on 18, he will Hit. There\\u0026#39;s a...\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E1/6 chance the dealer improves to 21 and you lose (EV = -1.00000),\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E1/6 chance the dealer improves to 20 and you lose (EV = -1.00000),\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E1/6 chance the dealer improves to 19 and you push,\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E3/6 chance the dealer busts.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ETherefore your EV when you Stand on 19 and when the dealer starts on 18 = -2/6 + 3/6 = +0.16667,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI won\\u0026#39;t explain the rest of the math, but here\\u0026#39;s the final chart for Standing on 19.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EYou Stand on 19\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Efrequency\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EEV\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E28.71%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.13426\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23.89%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.02778\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.16667\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E14.15%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.49%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-1.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.77%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-1.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Etotal all scenarios\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E100.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.14288\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EShould I Hit on 19?\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EIf you Hit on 19, there\\u0026#39;s a...\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E1/6 chance that you will improve to 21. As we see above, once you improve to 21, you should now Stand. This has an EV of +0.71403.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E1/6 chance that you will improve to 20. As we see above, once you improve to 20, you should now Stand. This has an EV of +0.23765.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E4/6 chance that you will bust.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003ETherefore, your EV for Hitting on 19 = 0.71403/6 + 0.23765/6 - 4/6 = -0.50805. Therefore, don\\u0026#39;t Hit on 19. Standing gives you a higher EV.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EShould I Stand on 18?\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EYou Stand on 18\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Efrequency\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EEV\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E28.71%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.36111\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23.89%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.16667\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E14.15%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-1.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.49%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-1.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Edealer starts on 21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.77%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-1.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Etotal all scenarios\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E100.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.42759\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EShould I Hit on 18?\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EYou Hit on 18\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Efrequency\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EEV\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eimprove to 19, then Stand\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.14288\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eimprove to 20, then Stand\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.23765\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eimprove to 21, then Stand\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.71403\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Ebust and lose\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E50.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-1.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Etotal all scenarios\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E100.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.36520\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003EYes, you should Hit on 18. It gives you a higher EV.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EShould I Stand on 17?\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ENo. If Standing on 18 was wrong, then clearly Standing on 17 is even more wrong.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EShould I Hit on 17?\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EYou Hit on 17\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Efrequency\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EEV\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eimprove to 18, then Hit\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.36520\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eimprove to 19, then Stand\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.14288\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eimprove to 20, then Stand\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.23765\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eimprove to 21, then Stand\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.71403\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Ebust and lose\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E33.33%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-1.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Etotal all scenarios\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E100.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.1985\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EShould I Hit on 16?\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EYou Hit on 16\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Efrequency\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EEV\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eimprove to 17, then Hit\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.1985\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eimprove to 18, then Hit\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.36520\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eimprove to 19, then Stand\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.14288\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eimprove to 20, then Stand\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.23765\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eimprove to 21, then Stand\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.71403\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Ebust and lose\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E16.67%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-1.00000\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Etotal all scenarios\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E100.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.0927\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003ESo what are the overall results?\\u003C/h1\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EScenario\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EBasic Strategy\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Efrequency\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EEV\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EYou start on 16\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHit\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E28.71%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.0927\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EYou start on 17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHit\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E23.89%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.1985\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EYou start on 18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHit\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E19.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.3652\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EYou start on 19\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EStand\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E14.15%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.1429\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EYou start on 20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EStand\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9.49%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.2377\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EYou start on 21\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EStand\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E4.77%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E+0.7140\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Etotal all scenarios\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E100.00%\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-0.1070\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EConclusions\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EThe worst possible starting hand is 18. Basic Strategy says to Hit on 18 or less and Stand on 19 or better.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis actually jives well with traditional Blackjack. In traditional Blackjack, the worst possible starting hand is 16, which is also the point where your strategy switches from Hitting to Standing. In that sense, your game is remarkably similar to the real game.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn both games, too low of a score is not bad because it makes future Hits safer. A high score is good for obvious reasons. And somewhere in between there exists a \\u201cGoldilocks of bad\\u201d where the score is too high to Hit comfortably and too low to Stand comfortably.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou might be surprised to learn that a score of 19 in your game is actually below average. But then again, that also jives well with amateur Blackjack players who learn that a score of 18 in the real game is also below average.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c0eab5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"blackjack_counter\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c0eab5/dont_mind_me_checking_format/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c0eab5/dont_mind_me_checking_format/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560476506.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://imgur.com/a/mkz8jY1](https://imgur.com/a/mkz8jY1)\\n\\n[dat face u make](https://i.redd.it/aysni9ibp4431.jpg)\", \"author_fullname\": \"t2_14lhsk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Imgur: The magic of the Internet\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"media_metadata\": {\"aysni9ibp4431\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 580, \"x\": 480, \"u\": \"https://i.redd.it/aysni9ibp4431.jpg\"}, \"m\": \"image/jpg\", \"id\": \"aysni9ibp4431\"}}, \"name\": \"t3_c0610r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/RsTzgnKy7_2VFjYY01XCpb56sd_5FaVsdWY9agmlWcE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560462437.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/mkz8jY1\\\"\\u003Ehttps://imgur.com/a/mkz8jY1\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/aysni9ibp4431.jpg\\\"\\u003Edat face u make\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c0610r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Calavera87\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c0610r/imgur_the_magic_of_the_internet/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560433637.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"class Operator:\\n\\ndef \\\\_\\\\_call\\\\_\\\\_(self, x, y):\\n\\nraise NotImplementedErrorclass Sum(Operator):def \\\\_\\\\_call\\\\_\\\\_(self, x, y):return x + y\\n\\nclass Difference(Operator):def \\\\_\\\\_call\\\\_\\\\_(self, x, y):return x - y\", \"author_fullname\": \"t2_jsy6yew\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test code formatting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_c03e6t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1560416242.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560444800.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eclass Operator:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Edef __call__(self, x, y):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eraise NotImplementedErrorclass Sum(Operator):def __call__(self, x, y):return x + y\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eclass Difference(Operator):def __call__(self, x, y):return x - y\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c03e6t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"CaptFugu\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/c03e6t/test_code_formatting/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/c03e6t/test_code_formatting/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560416000.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_a7mkxmh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Comments\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzzep3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560416953.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzzep3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Prexot\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzzep3/comments/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bzzep3/comments/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560388153.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"-Howdy\\n-Hi\\n-Hey fellers\\n- Yeehaw\\n- Moo\", \"author_fullname\": \"t2_1v6f2bm3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzv80h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560394965.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E-Howdy\\n-Hi\\n-Hey fellers\\n- Yeehaw\\n- Moo\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzv80h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"W-eye\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzv80h/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bzv80h/test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560366165.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" [https://i.imgur.com/BcLJd0R.png](https://i.imgur.com/BcLJd0R.png)\", \"author_fullname\": \"t2_10ql04\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"-\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzo7q6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560353902.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/BcLJd0R.png\\\"\\u003Ehttps://i.imgur.com/BcLJd0R.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?auto=webp\\u0026s=4a378a7bc3457274b66b8ee8eb882ff642783683\", \"width\": 1336, \"height\": 1519}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=cbc6f3e7a6ecda90701d73011e3e790d45bbd90c\", \"width\": 108, \"height\": 122}, {\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=03e2f4af6ddf5c8737890b30e79ed72b9901f862\", \"width\": 216, \"height\": 245}, {\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d74a93b14c46489883c5f02c33da450d77ebe37e\", \"width\": 320, \"height\": 363}, {\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=011a46bab1307092be3c2fd323b1b3a8b27656a3\", \"width\": 640, \"height\": 727}, {\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=a549051db6975bc4d42a278dfa5be098628f5ad8\", \"width\": 960, \"height\": 1091}, {\"url\": \"https://external-preview.redd.it/rHJRbLfxhe7phryLrohmqtqO8IK1UeuHnPOOG77UA1Y.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=809198336bfae74a54407360e2b303e1cea27afc\", \"width\": 1080, \"height\": 1227}], \"variants\": {}, \"id\": \"8JTQHHdDgC8_SeALTNL4NU6CLxxL9rjJ8peDHR20b-0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzo7q6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"OverlordMikan\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzo7q6/_/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bzo7q6/_/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560325102.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3k2b5rqg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Imgur test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bzmm85\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D640\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE\\u0026image=https%3A%2F%2Fi.imgur.com%2Fg1bMj4I.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"506\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 506}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views.\", \"title\": \"Imgur\", \"url\": \"https://imgur.com/a/vft9wGE\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 506, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D640\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE\\u0026image=https%3A%2F%2Fi.imgur.com%2Fg1bMj4I.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"506\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2Fg1bMj4I.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D640\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE\\u0026image=https%3A%2F%2Fi.imgur.com%2Fg1bMj4I.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"506\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bzmm85\", \"height\": 506}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/LPwD9l2igDdZHDhVW4SCg24zHEoKuO8JsVd5cLJw9jc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560342095.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/0az18JhjwNYZ250yTYrxHdB4t6VZCsTwWEg_EM1ts0E.jpg?auto=webp\\u0026s=bac5ca929900b55921c0c0fe830ed835ee3f1167\", \"width\": 640, \"height\": 480}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/0az18JhjwNYZ250yTYrxHdB4t6VZCsTwWEg_EM1ts0E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8e23fe990734476d61c7dcd7fd133d31ea6427a0\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/0az18JhjwNYZ250yTYrxHdB4t6VZCsTwWEg_EM1ts0E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=826bd8a95c8478b6530268766d4ae729d7e75c19\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/0az18JhjwNYZ250yTYrxHdB4t6VZCsTwWEg_EM1ts0E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b9c97fc463baaf51df71b79e46a52dedd84737d9\", \"width\": 320, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/0az18JhjwNYZ250yTYrxHdB4t6VZCsTwWEg_EM1ts0E.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=39f67445637d3aae53a663de548a6f13953b9fbb\", \"width\": 640, \"height\": 480}], \"variants\": {}, \"id\": \"SZO-MAwDJE7bvKYpk3YhFlvXU7NsUi0U5Ue1j2BRy2I\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzmm85\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"GloomyTeddyBear96\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzmm85/imgur_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/vft9wGE\", \"subreddit_subscribers\": 720, \"created_utc\": 1560313295.0, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views.\", \"title\": \"Imgur\", \"url\": \"https://imgur.com/a/vft9wGE\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 506, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D640\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fvft9wGE\\u0026image=https%3A%2F%2Fi.imgur.com%2Fg1bMj4I.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"506\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2Fg1bMj4I.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_rdpix\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"bbb\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bzmli2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/IkGhTHeoIfgIa9BSk64I5vVYHeNz_iZUT8uh7GN4DTo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560341954.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"steamcommunity.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/wGJ-JNT0v7Mtd34-V_u3hIVkli-YlvsRGyj5qYTXo5E.jpg?auto=webp\\u0026s=ca5ef1efa04d7fa91aef99f8a1ed5e3ea2543d9d\", \"width\": 512, \"height\": 288}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/wGJ-JNT0v7Mtd34-V_u3hIVkli-YlvsRGyj5qYTXo5E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3fe34f97d5d8131e79975d34f18f4a295a4e4b9a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/wGJ-JNT0v7Mtd34-V_u3hIVkli-YlvsRGyj5qYTXo5E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5c1ad9637a0e7eff8721ea0f10c88857fbfc9ca5\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/wGJ-JNT0v7Mtd34-V_u3hIVkli-YlvsRGyj5qYTXo5E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4fc887ba632a6ec2ef10590131bb511966799c8b\", \"width\": 320, \"height\": 180}], \"variants\": {}, \"id\": \"bST3LtO4WLe18WTKWsz528NxUZxkm8zKaglDuroqD0A\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzmli2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AlexeyZarubin\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzmli2/bbb/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://steamcommunity.com/sharedfiles/filedetails/?id=1767716809\", \"subreddit_subscribers\": 720, \"created_utc\": 1560313154.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_ld4zt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Mhm\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzlm10\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560335552.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"instagram.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzlm10\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Cosdaman\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzlm10/mhm/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.instagram.com/p/ByVkSg_l5bg/?igshid=1wd8oll8o521m\", \"subreddit_subscribers\": 720, \"created_utc\": 1560306752.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2f7row8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bzl5p5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/hWPKGP6n5qk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"MxPx - Secret Weapon (Acoustic Cover)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/hWPKGP6n5qk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Brandon Purvis\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/hWPKGP6n5qk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCqXSdtZuUqYrYZqkhnkrVdg\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/hWPKGP6n5qk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bzl5p5\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/hep0wcXot4ND1fXhvXsgaY8O7uI5gugUVTO_XD-u2O0.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560332827.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/cu2cEiof7NciZiuvQkIezyFYnS1gIN-c00_VtV0d3PI.jpg?auto=webp\\u0026s=aeade8c262ab5aca1dd8641f3fd7b32732607ff1\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cu2cEiof7NciZiuvQkIezyFYnS1gIN-c00_VtV0d3PI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=6bcaae8144d8d5bc729eacae0594cdc667bc2f36\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/cu2cEiof7NciZiuvQkIezyFYnS1gIN-c00_VtV0d3PI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=9bf94a0520cc761000e4e59a6e6fa2758b4be220\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/cu2cEiof7NciZiuvQkIezyFYnS1gIN-c00_VtV0d3PI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=933b120e0eee7baf22aaafe77a90e596302cfc59\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"pIXyrmiEr8L6COWIJr4jJRv6NZ3Ils4jHQMSlGqYKSA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzl5p5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"aegisninja\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzl5p5/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=hWPKGP6n5qk\\u0026feature=youtu.be\", \"subreddit_subscribers\": 720, \"created_utc\": 1560304027.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"MxPx - Secret Weapon (Acoustic Cover)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/hWPKGP6n5qk?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Brandon Purvis\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/hWPKGP6n5qk/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCqXSdtZuUqYrYZqkhnkrVdg\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://i.redd.it/ye5hani0zr331.png\\n\\nMore information on : http://www.cpprs.com/dwgexplore.html\", \"author_fullname\": \"t2_2eju5vig\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"CAD Project Point: Find and Replace Objects in AutoCAD with dwgExplore\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"media_metadata\": {\"ye5hani0zr331\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 628, \"x\": 1200, \"u\": \"https://i.redd.it/ye5hani0zr331.png\"}, \"m\": \"image/png\", \"id\": \"ye5hani0zr331\"}}, \"name\": \"t3_bzgoh3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/euqPf-UcAcSkEHl-5IHGT1NPvHjEnWap5OzoV-dQQsM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560308536.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/ye5hani0zr331.png\\\"\\u003Ehttps://i.redd.it/ye5hani0zr331.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMore information on : \\u003Ca href=\\\"http://www.cpprs.com/dwgexplore.html\\\"\\u003Ehttp://www.cpprs.com/dwgexplore.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzgoh3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ddulovic\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzgoh3/cad_project_point_find_and_replace_objects_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bzgoh3/cad_project_point_find_and_replace_objects_in/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560279736.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2eju5vig\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_bzgihf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/mGn4Vc6DP297nyvjH2WHqjA2PX6KVKGqIlkXdV0tOTE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560307740.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/sl1e3irswr331.png?auto=webp\\u0026s=8f1a29245ef13ce697c3c6b088723e1500787fa2\", \"width\": 1200, \"height\": 628}, \"resolutions\": [{\"url\": \"https://preview.redd.it/sl1e3irswr331.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=dc7892186b1af51dbcdd409fdbad71d1c159a3d4\", \"width\": 108, \"height\": 56}, {\"url\": \"https://preview.redd.it/sl1e3irswr331.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=49bd27f0ddad7e851ddfd0ccaf8e87be2cd5ebcf\", \"width\": 216, \"height\": 113}, {\"url\": \"https://preview.redd.it/sl1e3irswr331.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a84858cbec419335644d37e15f6e9017389cdbdd\", \"width\": 320, \"height\": 167}, {\"url\": \"https://preview.redd.it/sl1e3irswr331.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=ee4132e7f0b0014d810f67c4a60a31b7c7fa98cf\", \"width\": 640, \"height\": 334}, {\"url\": \"https://preview.redd.it/sl1e3irswr331.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=44c3187092c3cec7528b4b193e6df9756360e034\", \"width\": 960, \"height\": 502}, {\"url\": \"https://preview.redd.it/sl1e3irswr331.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=3718112fa4f395202784649dc436da6933c348cd\", \"width\": 1080, \"height\": 565}], \"variants\": {}, \"id\": \"9qwhM2L6d_74xaFCXLMXWooWPS04Ee4XQdXXcES8vKk\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzgihf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ddulovic\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzgihf/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/sl1e3irswr331.png\", \"subreddit_subscribers\": 720, \"created_utc\": 1560278940.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2lrf3og0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A\\u0336\\u030d\\u0311\\u0344\\u0314\\u0315\\u0352\\u034b\\u033f\\u031b\\u0308\\u030b\\u035d\\u0303\\u0327\\u032c\\u032c\\u033cr\\u0338\\u0344\\u0300\\u0324\\u0321\\u0319\\u031f\\u0330\\u032d\\u032f\\u034e\\u032a\\u0339\\u0327\\u0348\\u0330\\u0355\\u0326e\\u0335\\u035d\\u030b\\u0344\\u031a\\u030b\\u034b\\u0344\\u0311\\u0343\\u0307\\u0311\\u031b\\u0309\\u0347\\u0349\\u031f\\u0322\\u0339\\u035c \\u0338\\u0358\\u0352\\u0304\\u0313\\u0352\\u0351\\u0307\\u031b\\u031b\\u030f\\u0349\\u0359\\u0318\\u032f\\u035a\\u0328\\u032f\\u0354\\u0349\\u032d\\u035c\\u0320y\\u0336\\u034a\\u0341\\u030a\\u0344\\u035d\\u0360\\u0345\\u034d\\u031fo\\u0337\\u030f\\u0306\\u0303\\u0332\\u0317\\u0327\\u033a\\u0356\\u0318\\u032f\\u032c\\u0326\\u0319u\\u0334\\u0309\\u0309\\u0358\\u0312\\u033f\\u0358\\u0351\\u0305\\u0308\\u0315\\u0302\\u0313\\u0308\\u0344\\u0313\\u0330\\u0328\\u0355\\u0329\\u0345\\u032b\\u0345\\u0348\\u0323\\u0326\\u0331\\u0354\\u0356 \\u0338\\u0302\\u0351\\u0311\\u030e\\u0301\\u0351\\u0306\\u0308\\u0308\\u0322\\u031d\\u0345\\u032el\\u0338\\u0341\\u030b\\u0314\\u0314\\u0341\\u0357\\u030b\\u0351\\u033d\\u035ai\\u0337\\u0300\\u0344\\u031b\\u0304\\u0302\\u0315\\u032d\\u0323\\u031f\\u0329\\u033b\\u0332\\u032as\\u0334\\u0350\\u030c\\u0323\\u0321\\u0347\\u0349\\u0322\\u034e\\u0339\\u0321t\\u0334\\u0300\\u033e\\u032a\\u032a\\u0348\\u0320\\u032c\\u0318\\u033a\\u035c\\u0355\\u034d\\u0354\\u032ce\\u0337\\u0344\\u0312\\u0346\\u0342\\u031d\\u035c\\u034d\\u0324\\u031e\\u032b\\u032f\\u0354\\u035a\\u0321\\u0317\\u0317n\\u0338\\u034c\\u030c\\u034c\\u034a\\u0304\\u0305\\u0350\\u0346\\u0313\\u0351\\u0309\\u0310\\u031a\\u0307\\u0351\\u0328\\u034ei\\u0338\\u0342\\u0315\\u0309\\u0354\\u0320\\u0329\\u032a\\u0345\\u0331\\u0316\\u0355\\u032c\\u034en\\u0337\\u0344\\u034a\\u033d\\u0306\\u0313\\u0303\\u0352\\u0304\\u0346\\u0360\\u0314\\u0351\\u033f\\u030a\\u0357\\u0327\\u0316\\u0332\\u0323\\u0328\\u0353\\u0326\\u0328\\u032fg\\u0338\\u033d\\u0313\\u0341\\u0312\\u0347 \\u0337\\u034a\\u030d\\u034a\\u0358\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzgebp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560307187.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzgebp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bbtehbuild\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzgebp/are_you_listening/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bzgebp/are_you_listening/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560278387.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2eju5vig\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Find and Replace Objects in AutoCAD with dwgExplore\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzgdhy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560307074.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"cpprs.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzgdhy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ddulovic\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzgdhy/find_and_replace_objects_in_autocad_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"http://www.cpprs.com/dwgexplore.html\", \"subreddit_subscribers\": 720, \"created_utc\": 1560278274.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026\\u0026%%#######%%\\u0026\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@\\u0026*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,(,,,,,,,,,,,,,,,,,,,,/@@@@@@@@@@@\\u0026%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@\\u0026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@/,,,,,,,,,,,,,,,,,,,,,%@@@@@@\\u0026%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@#,**,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*/,,,,,*%@,,,,,,,,,,,,,,,,,,,*@@@@%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@(*,,,,,*@@\\u0026\\u0026@@@@@@@@@@@@@@@@\\u0026%#((//************//////((\\u0026//((/@,,,,(,,,,,,,,,,,(@@@\\u0026%#/(%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@(/,,,,,,,/%@@%%%%%%%%%%%(*,,,,,*(%%%%\\u0026\\u0026\\u0026\\u0026@@@@@@@@@@@@@@@\\u0026@%((/@,,,,%,,,,,,,/\\u0026@@@\\u0026%*,,,,,,%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@#(,,,,,,,,,/(@@\\u0026%%%%%,,,,,,,,,,,,,,,,,/%%%%%%%%%%%%%%%%%%@@#((,,,,,@/,,,/(@@@@%%*,,,,,,,,,%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@%(/,,,,,,,,,,/((@@%%%/,,,,,,,,,,,,,,,,,,,,%%%%%%%%%%%%%%%%%@((*,,,,/@(((@@@@%%%%,,,,,,,,,#%%%,,,,%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@\\u0026((,,*,,,,,,,,,*((@@\\u0026%%%,,,,,,,,,,,,,,,,,,,%%%%%%%%%%%%%%%%%%@(*,,,,\\u0026@@@@@\\u0026%%%%%%%%%%%%%%%%%%%%%%%\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@(((((/,,,,,,,,,,*(((@@%%%%%,,,,,,,,,,,,,*%%%%%%%%%%%%%%%%%%%%@@*,,,(#@((((@@%%%%%%%%%%%%%%%%\\u0026@@@\\u0026%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@(((((((,,,,,,,,,,,/(((%@\\u0026%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@(,,,,,,,*(((#@\\u0026%%%%%%%\\u0026@@@\\u0026(((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@%(((((((*,,,,,,,,,,,/((((@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%(,,,,,#%@@,,,,,,,,,/(((@@@@@@%(((((((/**,,,,,(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@((((((((/,,,,,,,,,,,,/(((((@@%%%%%%%%%%%%%%%%%%%%%%%%%%/,,,,,,%%%@%,,,,,,,,,,@@%(/**,,,,,,,,,,,,,,,,,*(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@((((((((((,,,,,,,,,,,/(((((((%@\\u0026%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\\u0026@@@\\u0026/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,/(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@\\u0026(((((((((((((((((((((((((((((((@@%%%%%%%%%%%%%%%%%%%%%\\u0026@@@@#*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@((((((((((@@#(((((((((((((((((((((@@%%%%%%%%%%%\\u0026@@@@%*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,(((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@%((((((((((@@@@@@@((((((((((((((((((%@@%\\u0026@@@@@%((/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*(\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@(((((((((((@@ @@@@@@\\u0026(((((((((((@@@\\u0026(((((((*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*(\\u0026@@@@@@@\\u0026(. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@((((((((((((@% ,\\u0026@@@@@@#(((((((((((((*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*(%@@@@@@@\\u0026(. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@(((((((((((((((@@ ,, .#@@@@@@@((/////////(#%\\u0026@@@@@@@@@@@@@%/, , @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@((((((((((((((((#@, ,@@@@ .(%\\u0026\\u0026@@@\\u0026\\u0026%#(*,. @@@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@((((((((((((((((((@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@ @@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@(((((((((((((((((((#@@@@@@@ @@@@@@@ #@@@@ @@@@% @@@@@* @@@@@@/ *@@@@@@@# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@(((((((((((((((((((((@@@@@@, @@@@@@@ @@@@@@ @@@@@@% @@@@@@@ (@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@((((((((((((((((((((((%@@@@@@@@@@@@@@@ @@@@@@@ .@@@@@@@ .@@@@@@@\\u0026 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@((((((((((((((((((((((((@@@@@@@@@@@@@@@\\u0026\\u0026@@@@@@@@% \\u0026@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@(((((((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@ #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@(((((((((((((((((((((\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@(((((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@(((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@(((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@#((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026@@@@@@@@@@@@@@@@\\u0026%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%@@@@@@@@@@@@@%%@@@@@%\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026@@@@@@@@@@@\\u0026%%@@@@@%\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%\\u0026@@@//@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026/////@@@((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026@@@@@@\\u0026%%@@@@@@@@@@%@@\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@///////////////@@@(((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026\\u0026@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@//////////////////@@@%((((((((\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026\\u0026@%%\\u0026@@@@@@@@\\u0026%#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@(///\\u0026@@@@@@@@@@@@\\u0026%@@@@@#((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026%\\u0026@@@@@@#####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@%///////%@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@\\u0026\\u0026@@((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@%/////////%@@@\\u0026\\u0026\\u0026\\u0026#@@@,,,@@%(((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,#####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@%%//////////%%@@\\u0026\\u0026\\u0026,@@@,,,,,@@(((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,####,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@%%////////////%%\\u0026@@\\u0026\\u0026\\u0026,@@@@,,,,,@@\\u0026((((((\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026%###/,,,,,*#####,,,\\u0026\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@%%%%%%//////////%%%@@\\u0026\\u0026\\u0026@@@@,,,,,,,@@#(((((\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@%%%%%%(///////////%%%%@@\\u0026\\u0026@@@@##*,,,,@@@(((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@@%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@%%%%%%%////////////%%%%\\u0026@@\\u0026@@@@%######@@@((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026\\u0026@@@@@@%%@@@@@@%%#//%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@%%%%%%%%#////////////%%%%%@@\\u0026\\u0026@@@\\u0026#####@@\\u0026(((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(/@@@\\u0026*@@@////#%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@%%%%%%%%%%/////////////%%%%%%@@\\u0026\\u0026@@\\u0026\\u0026\\u0026\\u0026##@@@(((((@@@@@@@@@@@@@@@@@@@@@@%(@@@@@@@@ (@@/@@ *@@/////%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@%%%%%%%%%%%%//////#%%%%%%%%%%%\\u0026@\\u0026\\u0026@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@(((((@@@@@@@@@@@@@@@@@@@@ @@@@@@\\u0026 ,@@@@@ /@@//////%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@@\\u0026\\u0026@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@%((((\\u0026@@@@@@@\\u0026 @@@@@@@\\u0026 @@@@@@. @@@@. \\u0026@@//////%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%@@@@@%%%%%%%%%%%%%%%%%%%%@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@@@@@@(((((@@@@@@. %@@@@@\\u0026 .@@@@* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%@@ @@@@@@%%%%%%%%%%%%%%%\\u0026@@@@@%%%%%%//@@@((((#@@@@@/ @@@@@ .#@@@@@@@@@@@* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@%%%%%%%%%\\u0026@ @@@@@@@\\u0026%%%%%%%%%%%%%%%%%//////@@@(((((@@@@( (@@@@\\u0026/,,,,,%@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@\\u0026%@@%%%%%%%%%%@@ ,@@@@@@@%%%%%%%%%////////@@@(((((@@ .#@@@@@#*,,,,,,,,,(@@@@ @@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%@@%%%%%%%%%%%@@ @@@@ *@@@@@@@@@@@@@@@@@@%((((@( ,\\u0026@@@@@#*,,**/(((((/,,,%@@@@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%@ @@@@@\\u0026 @@@@ @@@#((((@@@%*//(((((((((((((/,,(@@@ @@@@@@ @@@@@* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%@@@@@@@@ #@@@@@@ @@@ @@@%(((((((((((((((((((((*,#@@@ @@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%@@@@@@@ @@@@@@@ @@@@@@ @@@@@%((((((((((((((((((,#@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@ @@@@@@@@ #@@@@@@ @@@@@@\\u0026((((((((((((((*#@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@( @@@@@@@ %@@@@@@@\\u0026((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@((((((#\\u0026@@@@\\u0026(***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(**********/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#***********//((%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%((((@((((((%@@@@@@@@#*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*@@@@\\u0026%%#######%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@*****@@***/@@%%%###########@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@\\u0026%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@/*****(@*@@(**/@@%#############%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%\\u0026@@@@@@@@@@@@@@@@@@@@@@%*****@*/@/(@@**#@@########@@@%###%@@@@@###@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@**@(***@\\u0026(@%/((@@@**%@%##%@@##########%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%@%%%%@@@@@@@@@@@@@@@@@***%@**\\u0026@(\\u0026@*((@@(((((/@@@%##############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%@@@@@@@@@@@@@@@(****@//@@@@\\u0026@@@@@@@@@@@@@##################\\u0026@(\\u0026(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%@@@@@@@@@@@@@@(****\\u0026%**@@**((@/(%@%\\u0026@\\u0026%%%################\\u0026@@@@(***#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%@@@@@@@@@@@@((***\\u0026%*@@**((@**((%@\\u0026%%%%%%%########\\u0026@@@####%@@@/(@****%@@@@@@@@@@@@@@@@@(@*//#@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%@@@@@@@@@@@#((**@*\\u0026@**((@/**(((@@%%%%%%%%%##%@@###########@@@@\\u0026////*@******@*****\\u0026\\u0026///#@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@%///@@@@@@@@@@@@@@@@@@%%%%%%%%@@@@@@@@@@@(((@@\\u0026@*/@@@*/(((((%@%%%%%%%%\\u0026@@#################@@@@@@@@@\\u0026/////(@////(\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@%/(@@@@@@@@@@@@@@@@@@@@\\u0026%%%%%%%%@@@@@@@@@@@(@@**/(@(((((((((@\\u0026%%%%%@@%%###################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@%////@@@@@@@@@@@@@@@@@@@@@%%%%%%%%@@@@@@@@@@@(#@***(@((((((((((@@%%%@@%%%%####################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@%#///@@@@@@@@@@@@@@@@@@@,,,@@%%%%%%%@@@@@@@@@@@@@@*(@#((((((((((@@%@@%%%%%%%####################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@%%//////////%@@@@@@@@@@@@@@,,@@@%%%%%%%@@@@@@@@@***%@((((((((((((@@@%%%%%%%%%##########%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@%%(///////////%%@@\\u0026\\u0026@@@@@@@@@@@,@@%%%%%%%@@@@@@\\u0026***#@@@@@@@@@@%#((@@\\u0026%%%%%%%%%####@@@@@##########%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@\\u0026%%//#//////////%%@@@\\u0026\\u0026\\u0026@@@@@@@@@@@@@@@%%%%@@@@@@@/#@@@/*********@@@@%%%%%%%%%\\u0026@@@@%#################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@%%%%%#///////////%%%@@\\u0026\\u0026\\u0026@@@@,@@@@@@@@@@@@@@@@%**(@@@@@@@@*********@@%%%%%@@@@#####################%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@%%%%%%%///////////#%%%%@@\\u0026\\u0026@@@%###@@@@@@@@@@@@\\u0026**#@@@@@@@@@@@@\\u0026*****@\\u0026%%@@@\\u0026%%%%#######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@%%%%%%%%(///////////(%%%%\\u0026@@\\u0026@@@\\u0026###@@@@@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%######################%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@%%%%%%%%%////////////(%%%%%@@\\u0026\\u0026@@\\u0026\\u0026\\u0026###@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@%%%%%%%%%%(/////////(%%%%%%%%%@@\\u0026\\u0026@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026%#@@@@@%%%@@@@@@@@@@@@@@@@@\\u0026%%%%%%%%%%%%%%%#####################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\\u0026@\\u0026\\u0026@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@%%%%%@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%#%%%%%%%%%\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%@@@%%%%%%%%%%%%%%%%%%%%%@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@@%%%%%@@@@@@@ @@@%%%%%%%%%%%%%%%%%%%%%\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%@@*@@@@@%%%%%%%%%%%%%%%%%%@@@@@@@@%%%%@@@@%%%%@@@@@@ @@@%%%%%%%%%%%%%%%\\u0026@@@@@@@@ .@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@%%%%%%%%%%@@ \\u0026@@@@@@%%%%%%%%%%%@@@%%%%%%%%////@@@@%%%%@@@@@\\u0026 @@@%%%%%%%%%%\\u0026@@@@@@@@@@@@#///@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@%%%%%%%%%%@@ (@@@@@@@%%%%%%%%%%%%////////@@@%%%%%@@@ @@%%%%%\\u0026@@@@@@@@@@/////////@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%@@%%%%%%%%%%%@@ \\u0026\\u0026 \\u0026@@@@@@@@\\u0026%%%%%%%%%%@@@%%%%%@ @@%\\u0026@@@@@@@@@@@@@(%%%////@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%@%%%%%%%%%%%%@@ \\u0026@@@@ @@@%%%%%@@@@@@@@@@@@@@@@@@%%%#///@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%@%%%%%%%%%%%%@@ @@@@@@ @@@@@@ @@@%%%%%%%%@@@@@@@@@@@@%%%///@@@ @@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%@@@@@@@ @@@@@@@ @@@@@ ,@@@@%%%%%%@@@@@@@@@@@%%%//@@@@ #@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%%@@@@@@# @@@@@@@ @@@@@@ @@@@@@%%%%@@@@@@@@@@%%#/@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@ @@@@@@@ @@@@@@@%%@@@@@@@@@%%/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@#/@@@@@@@@@@@@@@@@@*********@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*********/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((@@@@@@((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(\\u0026@@@#####@@@/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(**@@\\u0026\\u0026\\u0026#########@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(****@@\\u0026############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*(@@@**/@@###########@@@@@@@@@@@@##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((@*((@@***@@#####@@%########@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@((@*((\\u0026@(@((*%@#@@##############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%@@@%%%%%@@@@@@@@@@@@@@@%@@@@@@@@@@@@@((@((((%@@@@################@@*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%@@@@@@@@@@@@@@@@@@@@@@*#@**((@@@@@\\u0026\\u0026@@\\u0026\\u0026#################%@@***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%@@@@@@@@@@@@@@@@@@@@**@(*((@@*((@@@\\u0026\\u0026\\u0026\\u0026\\u0026###########@@@@@@@@@\\u0026(**@*@@@@@@@@@@@@@@@@@@@@@@@/*((@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%@@@@@@@@@@@@@@@@@@**@/*((@@**(((@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026####@@@##########@@@@@@(/***@***#@@@@@@@@@@@@@@\\u0026(@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@@///@@@@@@@@@@@@@@@@@@%%%%%%%@@@@@@@@@@@@@@@@@*@@@@(@@**/(((@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@%##############@@@@@@@(((@(((((/@//(((@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@@@////@@@@@@@@@@@@@@@@@@%%%%%%%%%@@@@@@@@@@@@@@(@***(@\\u0026((((((((@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@##################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@@\\u0026////@@@@@@@@@@@@@@@@@@@@@%%%%%%%%@@@@@@@@@@@@(@***((\\u0026(((((((((@@\\u0026\\u0026\\u0026\\u0026@@\\u0026\\u0026##################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@%%////@@@@@@@@@@@@@@@@@@\\u0026\\u0026@@%%%%%%%%@@@@@@@@@@@@@**(%@((((((((((@@\\u0026\\u0026@@\\u0026\\u0026\\u0026\\u0026###################\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@@%////////@@@@@@@@@@@@@@@,,,,@@%%%%%%@@@@@@@@@@@@*@@@@(((((((((((@@@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026###############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@@%%//////////%%@@\\u0026@@@@@@@@@@@,,@@%%%@@@@@@@@@@@@@@@(@%((((((((((((@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026#####%@@@@@#######@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@@%%////////////%%%@@\\u0026\\u0026\\u0026,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*******(@@@@@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@@@################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@@%%%%%%//////////%%%%@@\\u0026\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**********@@\\u0026\\u0026\\u0026\\u0026\\u0026\\u0026@@@@@#####################\\u0026@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@%%%%%%#///////////%%%%@@\\u0026\\u0026@@@@##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*******@@\\u0026\\u0026\\u0026@@@@\\u0026\\u0026######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n @@@@@@@@@@@@@%%%%%%%////////////%%%%%@@\\u0026\\u0026@@@@@@@@@@@@@@@@@@@*(@@@@@@@@@@@@@@@@@*#@\\u0026@@@@\\u0026\\u0026\\u0026\\u0026\\u0026######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\", \"author_fullname\": \"t2_2lrf3og0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzg352\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560305766.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;%%#######%%\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,(,,,,,,,,,,,,,,,,,,,,/@@@@@@@@@@@\\u0026amp;%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@\\u0026amp;,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@/,,,,,,,,,,,,,,,,,,,,,%@@@@@@\\u0026amp;%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@#,**,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*/,,,,,*%@,,,,,,,,,,,,,,,,,,,*@@@@%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@(*,,,,,*@@\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@@\\u0026amp;%#((//************//////((\\u0026amp;//((/@,,,,(,,,,,,,,,,,(@@@\\u0026amp;%#/(%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@(/,,,,,,,/%@@%%%%%%%%%%%(*,,,,,*(%%%%\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@\\u0026amp;@%((/@,,,,%,,,,,,,/\\u0026amp;@@@\\u0026amp;%*,,,,,,%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@#(,,,,,,,,,/(@@\\u0026amp;%%%%%,,,,,,,,,,,,,,,,,/%%%%%%%%%%%%%%%%%%@@#((,,,,,@/,,,/(@@@@%%*,,,,,,,,,%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@%(/,,,,,,,,,,/((@@%%%/,,,,,,,,,,,,,,,,,,,,%%%%%%%%%%%%%%%%%@((*,,,,/@(((@@@@%%%%,,,,,,,,,#%%%,,,,%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@\\u0026amp;((,,*,,,,,,,,,*((@@\\u0026amp;%%%,,,,,,,,,,,,,,,,,,,%%%%%%%%%%%%%%%%%%@(*,,,,\\u0026amp;@@@@@\\u0026amp;%%%%%%%%%%%%%%%%%%%%%%%\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@(((((/,,,,,,,,,,*(((@@%%%%%,,,,,,,,,,,,,*%%%%%%%%%%%%%%%%%%%%@@*,,,(#@((((@@%%%%%%%%%%%%%%%%\\u0026amp;@@@\\u0026amp;%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@(((((((,,,,,,,,,,,/(((%@\\u0026amp;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@(,,,,,,,*(((#@\\u0026amp;%%%%%%%\\u0026amp;@@@\\u0026amp;(((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@%(((((((*,,,,,,,,,,,/((((@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%(,,,,,#%@@,,,,,,,,,/(((@@@@@@%(((((((/**,,,,,(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@((((((((/,,,,,,,,,,,,/(((((@@%%%%%%%%%%%%%%%%%%%%%%%%%%/,,,,,,%%%@%,,,,,,,,,,@@%(/**,,,,,,,,,,,,,,,,,*(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@((((((((((,,,,,,,,,,,/(((((((%@\\u0026amp;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\\u0026amp;@@@\\u0026amp;/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,/(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@\\u0026amp;(((((((((((((((((((((((((((((((@@%%%%%%%%%%%%%%%%%%%%%\\u0026amp;@@@@#*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@((((((((((@@#(((((((((((((((((((((@@%%%%%%%%%%%\\u0026amp;@@@@%*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,(((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@%((((((((((@@@@@@@((((((((((((((((((%@@%\\u0026amp;@@@@@%((/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*(\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@(((((((((((@@ @@@@@@\\u0026amp;(((((((((((@@@\\u0026amp;(((((((*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*(\\u0026amp;@@@@@@@\\u0026amp;(. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@((((((((((((@% ,\\u0026amp;@@@@@@#(((((((((((((*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*(%@@@@@@@\\u0026amp;(. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@(((((((((((((((@@ ,, .#@@@@@@@((/////////(#%\\u0026amp;@@@@@@@@@@@@@%/, , @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@((((((((((((((((#@, ,@@@@ .(%\\u0026amp;\\u0026amp;@@@\\u0026amp;\\u0026amp;%#(*,. @@@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@((((((((((((((((((@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@ @@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@(((((((((((((((((((#@@@@@@@ @@@@@@@ #@@@@ @@@@% @@@@@* @@@@@@/ *@@@@@@@# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@(((((((((((((((((((((@@@@@@, @@@@@@@ @@@@@@ @@@@@@% @@@@@@@ (@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@((((((((((((((((((((((%@@@@@@@@@@@@@@@ @@@@@@@ .@@@@@@@ .@@@@@@@\\u0026amp; @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@((((((((((((((((((((((((@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;@@@@@@@@% \\u0026amp;@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@(((((((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@ #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@(((((((((((((((((((((\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@(((((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@(((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@(((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@((((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@#((((((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;@@@@@@@@@@@@@@@@\\u0026amp;%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%@@@@@@@@@@@@@%%@@@@@%\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;@@@@@@@@@@@\\u0026amp;%%@@@@@%\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%\\u0026amp;@@@//@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;/////@@@((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;@@@@@@\\u0026amp;%%@@@@@@@@@@%@@\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@///////////////@@@(((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@//////////////////@@@%((((((((\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;@%%\\u0026amp;@@@@@@@@\\u0026amp;%#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@(///\\u0026amp;@@@@@@@@@@@@\\u0026amp;%@@@@@#((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;%\\u0026amp;@@@@@@#####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@%///////%@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@\\u0026amp;\\u0026amp;@@((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@%/////////%@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;#@@@,,,@@%(((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,#####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@%%//////////%%@@\\u0026amp;\\u0026amp;\\u0026amp;,@@@,,,,,@@(((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,####,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@%%////////////%%\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;,@@@@,,,,,@@\\u0026amp;((((((\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;%###/,,,,,*#####,,,\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@%%%%%%//////////%%%@@\\u0026amp;\\u0026amp;\\u0026amp;@@@@,,,,,,,@@#(((((\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@%%%%%%(///////////%%%%@@\\u0026amp;\\u0026amp;@@@@##*,,,,@@@(((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@%%%%%%%////////////%%%%\\u0026amp;@@\\u0026amp;@@@@%######@@@((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;@@@@@@%%@@@@@@%%#//%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@%%%%%%%%#////////////%%%%%@@\\u0026amp;\\u0026amp;@@@\\u0026amp;#####@@\\u0026amp;(((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(/@@@\\u0026amp;*@@@////#%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@%%%%%%%%%%/////////////%%%%%%@@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;##@@@(((((@@@@@@@@@@@@@@@@@@@@@@%(@@@@@@@@ (@@/@@ *@@/////%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@%%%%%%%%%%%%//////#%%%%%%%%%%%\\u0026amp;@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@(((((@@@@@@@@@@@@@@@@@@@@ @@@@@@\\u0026amp; ,@@@@@ /@@//////%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@@\\u0026amp;\\u0026amp;@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@%((((\\u0026amp;@@@@@@@\\u0026amp; @@@@@@@\\u0026amp; @@@@@@. @@@@. \\u0026amp;@@//////%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%@@@@@%%%%%%%%%%%%%%%%%%%%@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@@@@@(((((@@@@@@. %@@@@@\\u0026amp; .@@@@* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%@@ @@@@@@%%%%%%%%%%%%%%%\\u0026amp;@@@@@%%%%%%//@@@((((#@@@@@/ @@@@@ .#@@@@@@@@@@@* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@%%%%%%%%%\\u0026amp;@ @@@@@@@\\u0026amp;%%%%%%%%%%%%%%%%%//////@@@(((((@@@@( (@@@@\\u0026amp;/,,,,,%@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@\\u0026amp;%@@%%%%%%%%%%@@ ,@@@@@@@%%%%%%%%%////////@@@(((((@@ .#@@@@@#*,,,,,,,,,(@@@@ @@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%@@%%%%%%%%%%%@@ @@@@ *@@@@@@@@@@@@@@@@@@%((((@( ,\\u0026amp;@@@@@#*,,**/(((((/,,,%@@@@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%@ @@@@@\\u0026amp; @@@@ @@@#((((@@@%*//(((((((((((((/,,(@@@ @@@@@@ @@@@@* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%@@@@@@@@ #@@@@@@ @@@ @@@%(((((((((((((((((((((*,#@@@ @@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%@@@@@@@ @@@@@@@ @@@@@@ @@@@@%((((((((((((((((((,#@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@ @@@@@@@@ #@@@@@@ @@@@@@\\u0026amp;((((((((((((((*#@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@( @@@@@@@ %@@@@@@@\\u0026amp;((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@((((((#\\u0026amp;@@@@\\u0026amp;(***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(**********/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#***********//((%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%((((@((((((%@@@@@@@@#*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*@@@@\\u0026amp;%%#######%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@*****@@***/@@%%%###########@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@\\u0026amp;%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@/*****(@*@@(**/@@%#############%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@%*****@*/@/(@@**#@@########@@@%###%@@@@@###@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@**@(***@\\u0026amp;(@%/((@@@**%@%##%@@##########%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%@%%%%@@@@@@@@@@@@@@@@@***%@**\\u0026amp;@(\\u0026amp;@*((@@(((((/@@@%##############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%@@@@@@@@@@@@@@@(****@//@@@@\\u0026amp;@@@@@@@@@@@@@##################\\u0026amp;@(\\u0026amp;(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%@@@@@@@@@@@@@@(****\\u0026amp;%**@@**((@/(%@%\\u0026amp;@\\u0026amp;%%%################\\u0026amp;@@@@(***#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%@@@@@@@@@@@@((***\\u0026amp;%*@@**((@**((%@\\u0026amp;%%%%%%%########\\u0026amp;@@@####%@@@/(@****%@@@@@@@@@@@@@@@@@(@*//#@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%@@@@@@@@@@@#((**@*\\u0026amp;@**((@/**(((@@%%%%%%%%%##%@@###########@@@@\\u0026amp;////*@******@*****\\u0026amp;\\u0026amp;///#@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@%///@@@@@@@@@@@@@@@@@@%%%%%%%%@@@@@@@@@@@(((@@\\u0026amp;@*/@@@*/(((((%@%%%%%%%%\\u0026amp;@@#################@@@@@@@@@\\u0026amp;/////(@////(\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@%/(@@@@@@@@@@@@@@@@@@@@\\u0026amp;%%%%%%%%@@@@@@@@@@@(@@**/(@(((((((((@\\u0026amp;%%%%%@@%%###################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@%////@@@@@@@@@@@@@@@@@@@@@%%%%%%%%@@@@@@@@@@@(#@***(@((((((((((@@%%%@@%%%%####################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@%#///@@@@@@@@@@@@@@@@@@@,,,@@%%%%%%%@@@@@@@@@@@@@@*(@#((((((((((@@%@@%%%%%%%####################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@%%//////////%@@@@@@@@@@@@@@,,@@@%%%%%%%@@@@@@@@@***%@((((((((((((@@@%%%%%%%%%##########%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@%%(///////////%%@@\\u0026amp;\\u0026amp;@@@@@@@@@@@,@@%%%%%%%@@@@@@\\u0026amp;***#@@@@@@@@@@%#((@@\\u0026amp;%%%%%%%%%####@@@@@##########%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@\\u0026amp;%%//#//////////%%@@@\\u0026amp;\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@%%%%@@@@@@@/#@@@/*********@@@@%%%%%%%%%\\u0026amp;@@@@%#################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@%%%%%#///////////%%%@@\\u0026amp;\\u0026amp;\\u0026amp;@@@@,@@@@@@@@@@@@@@@@%**(@@@@@@@@*********@@%%%%%@@@@#####################%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@%%%%%%%///////////#%%%%@@\\u0026amp;\\u0026amp;@@@%###@@@@@@@@@@@@\\u0026amp;**#@@@@@@@@@@@@\\u0026amp;*****@\\u0026amp;%%@@@\\u0026amp;%%%%#######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@%%%%%%%%(///////////(%%%%\\u0026amp;@@\\u0026amp;@@@\\u0026amp;###@@@@@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%######################%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@%%%%%%%%%////////////(%%%%%@@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;###@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@%%%%%%%%%%(/////////(%%%%%%%%%@@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;%#@@@@@%%%@@@@@@@@@@@@@@@@@\\u0026amp;%%%%%%%%%%%%%%%#####################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\\u0026amp;@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@%%%%%@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%#%%%%%%%%%\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%@@@%%%%%%%%%%%%%%%%%%%%%@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@%%%%%@@@@@@@ @@@%%%%%%%%%%%%%%%%%%%%%\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%@@*@@@@@%%%%%%%%%%%%%%%%%%@@@@@@@@%%%%@@@@%%%%@@@@@@ @@@%%%%%%%%%%%%%%%\\u0026amp;@@@@@@@@ .@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@%%%%%%%%%%@@ \\u0026amp;@@@@@@%%%%%%%%%%%@@@%%%%%%%%////@@@@%%%%@@@@@\\u0026amp; @@@%%%%%%%%%%\\u0026amp;@@@@@@@@@@@@#///@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@%%%%%%%%%%@@ (@@@@@@@%%%%%%%%%%%%////////@@@%%%%%@@@ @@%%%%%\\u0026amp;@@@@@@@@@@/////////@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%@@%%%%%%%%%%%@@ \\u0026amp;\\u0026amp; \\u0026amp;@@@@@@@@\\u0026amp;%%%%%%%%%%@@@%%%%%@ @@%\\u0026amp;@@@@@@@@@@@@@(%%%////@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%@%%%%%%%%%%%%@@ \\u0026amp;@@@@ @@@%%%%%@@@@@@@@@@@@@@@@@@%%%#///@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%@%%%%%%%%%%%%@@ @@@@@@ @@@@@@ @@@%%%%%%%%@@@@@@@@@@@@%%%///@@@ @@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%@@@@@@@ @@@@@@@ @@@@@ ,@@@@%%%%%%@@@@@@@@@@@%%%//@@@@ #@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%%@@@@@@# @@@@@@@ @@@@@@ @@@@@@%%%%@@@@@@@@@@%%#/@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@ @@@@@@@ @@@@@@@%%@@@@@@@@@%%/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@#/@@@@@@@@@@@@@@@@@*********@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*********/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((@@@@@@((((((((((#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(\\u0026amp;@@@#####@@@/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(**@@\\u0026amp;\\u0026amp;\\u0026amp;#########@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(****@@\\u0026amp;############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*(@@@**/@@###########@@@@@@@@@@@@##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@((@*((@@***@@#####@@%########@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@((@*((\\u0026amp;@(@((*%@#@@##############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%@@@%%%%%@@@@@@@@@@@@@@@%@@@@@@@@@@@@@((@((((%@@@@################@@*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%@@@@@@@@@@@@@@@@@@@@@@*#@**((@@@@@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;#################%@@***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%@@@@@@@@@@@@@@@@@@@@**@(*((@@*((@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;###########@@@@@@@@@\\u0026amp;(**@*@@@@@@@@@@@@@@@@@@@@@@@/*((@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%@@@@@@@@@@@@@@@@@@**@/*((@@**(((@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;####@@@##########@@@@@@(/***@***#@@@@@@@@@@@@@@\\u0026amp;(@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@@///@@@@@@@@@@@@@@@@@@%%%%%%%@@@@@@@@@@@@@@@@@*@@@@(@@**/(((@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@%##############@@@@@@@(((@(((((/@//(((@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@@@////@@@@@@@@@@@@@@@@@@%%%%%%%%%@@@@@@@@@@@@@@(@***(@\\u0026amp;((((((((@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@##################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@@\\u0026amp;////@@@@@@@@@@@@@@@@@@@@@%%%%%%%%@@@@@@@@@@@@(@***((\\u0026amp;(((((((((@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;##################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@%%////@@@@@@@@@@@@@@@@@@\\u0026amp;\\u0026amp;@@%%%%%%%%@@@@@@@@@@@@@**(%@((((((((((@@\\u0026amp;\\u0026amp;@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;###################\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@@%////////@@@@@@@@@@@@@@@,,,,@@%%%%%%@@@@@@@@@@@@*@@@@(((((((((((@@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;###############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@@%%//////////%%@@\\u0026amp;@@@@@@@@@@@,,@@%%%@@@@@@@@@@@@@@@(@%((((((((((((@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;#####%@@@@@#######@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@@%%////////////%%%@@\\u0026amp;\\u0026amp;\\u0026amp;,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*******(@@@@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@@################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@@%%%%%%//////////%%%%@@\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**********@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;@@@@@#####################\\u0026amp;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@%%%%%%#///////////%%%%@@\\u0026amp;\\u0026amp;@@@@##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*******@@\\u0026amp;\\u0026amp;\\u0026amp;@@@@\\u0026amp;\\u0026amp;######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n@@@@@@@@@@@@@%%%%%%%////////////%%%%%@@\\u0026amp;\\u0026amp;@@@@@@@@@@@@@@@@@@@*(@@@@@@@@@@@@@@@@@*#@\\u0026amp;@@@@\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;\\u0026amp;######################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzg352\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bbtehbuild\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzg352/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bzg352/test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560276966.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"There seems to be a lot of confusion on how the Vikings seemingly gave Kyle Rudolph a $1.625M raise in 2019 per Ian Rapoport but seemingly saved $4M against the 2019 cap per Tom Pelissero. \\n\\n*Although the actual contractual breakout will vary from my example (especially in years 3/4 of the extension)*\\n\\nI wanted to show how you can accomplish both a raise and cap savings in a single restructure. \\n\\nWhat I believe the Vikings did was restructure a large portion but not all of Kyle's current base salary of $7.275M. The restructured portion is them prorated across 2019 and the 4 extension years. I also believe the Vikings offered Kyle a small signing bonus (prorated) and a 2019 roster bonus (not prorated) which accounts to the $1.625M raise. \\n\\n\\n\\n**Putting numbers to this I would expect the new deal to look somewhat like this:** \\n\\n\\nYR | Base | SB | Restructure | Roster | Workout | Cap\\n:--: | :--: | :--: | :--: | :--: | :--: | :--: \\n2019 | $1.275M | $205K | $1.2M| $850K| $100K| $3.63M\\n2020 | $4.495M | $205K | $1.2M| $2.5M| $100K| $8.5M\\n2021 | $7.495M | $205K | $1.2M| $850K| $100K| $9.5M\\n2022 | $8.245M | $205K | $1.2M| $850K| $100K| $10.25M\\n2023 | $9.740M | $205K | $1.2M| $850K| $100K| $11.745M\\n\\n**The yearly cap vs. dead cap breakout is** \\n\\n\\nYear | Cap Hit | Dead Cap \\n:--: | :--: | :--: \\n2019 | $3.63M | ($9.25M)\\n2020 | $8.5M | ($5.62M)\\n2021 | $9.5M | ($4.21M)\\n2022 | $10.25M | ($2.81M)\\n2023 | $11.745M | ($1.40M)\\n\\n*Note that this does not include injury guarantees*\\n\\n\\nThe cost of creating salary cap space in 2019 is that you create dead money in the future. Fortunately for the Vikings they can still escape the deal in 2020 if necessary. The post-June 1 number is also attractive in each year giving added flexibility. \\n\\nI would expect Brez's leveling to look nicer than mine and without seeing the actual structure the Vikings could go against their normal restructure precedence. But this should hopefully help explain how they can offer and raise while still reaping the immediate cap benefits.\", \"author_fullname\": \"t2_yy53v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test / Edit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bzeule\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560300359.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere seems to be a lot of confusion on how the Vikings seemingly gave Kyle Rudolph a $1.625M raise in 2019 per Ian Rapoport but seemingly saved $4M against the 2019 cap per Tom Pelissero. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EAlthough the actual contractual breakout will vary from my example (especially in years 3/4 of the extension)\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wanted to show how you can accomplish both a raise and cap savings in a single restructure. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat I believe the Vikings did was restructure a large portion but not all of Kyle\\u0026#39;s current base salary of $7.275M. The restructured portion is them prorated across 2019 and the 4 extension years. I also believe the Vikings offered Kyle a small signing bonus (prorated) and a 2019 roster bonus (not prorated) which accounts to the $1.625M raise. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPutting numbers to this I would expect the new deal to look somewhat like this:\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EYR\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EBase\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ESB\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ERestructure\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ERoster\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EWorkout\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ECap\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$1.275M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$205K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$1.2M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$850K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$100K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$3.63M\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2020\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$4.495M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$205K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$1.2M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$2.5M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$100K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$8.5M\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2021\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$7.495M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$205K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$1.2M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$850K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$100K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$9.5M\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2022\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$8.245M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$205K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$1.2M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$850K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$100K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$10.25M\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2023\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$9.740M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$205K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$1.2M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$850K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$100K\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$11.745M\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThe yearly cap vs. dead cap breakout is\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EYear\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ECap Hit\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EDead Cap\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2019\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$3.63M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E($9.25M)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2020\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$8.5M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E($5.62M)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2021\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$9.5M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E($4.21M)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2022\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$10.25M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E($2.81M)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E2023\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$11.745M\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E($1.40M)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ENote that this does not include injury guarantees\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe cost of creating salary cap space in 2019 is that you create dead money in the future. Fortunately for the Vikings they can still escape the deal in 2020 if necessary. The post-June 1 number is also attractive in each year giving added flexibility. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would expect Brez\\u0026#39;s leveling to look nicer than mine and without seeing the actual structure the Vikings could go against their normal restructure precedence. But this should hopefully help explain how they can offer and raise while still reaping the immediate cap benefits.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzeule\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ShirtlessChampion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzeule/test_edit/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bzeule/test_edit/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560271559.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3x6ve0io\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bzcqna\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/8OzoZyUbXGI?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"1875\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/8OzoZyUbXGI?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Circle J - Topic\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/8OzoZyUbXGI/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCxC6mRdOoP5ACU29HieIHsw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/8OzoZyUbXGI?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bzcqna\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Ki_3gTda5yMUpD7UyxTLnw7TNBZGtiBTApg_DptKvQE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560289856.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ltKZE_1cf9PxqUKZrC83SMc5jye1tkNyoedKX3ZV6oE.jpg?auto=webp\\u0026s=1ddf928a9f18514c12c1805d7f6543b29f7e7708\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ltKZE_1cf9PxqUKZrC83SMc5jye1tkNyoedKX3ZV6oE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b13a9608d454af62a792e8b5c9d56d670c206e69\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/ltKZE_1cf9PxqUKZrC83SMc5jye1tkNyoedKX3ZV6oE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=95874b63e734cc13db7695d39b613f476332f494\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/ltKZE_1cf9PxqUKZrC83SMc5jye1tkNyoedKX3ZV6oE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7af528e967fce2df31c57d70a8261151eb8a89fe\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"R28XQ1nG_AK-Mo2PSWHHz2PwXXNzOHZiu957lwuBLgg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzcqna\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ghostofconnolly\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bzcqna/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=8OzoZyUbXGI\", \"subreddit_subscribers\": 720, \"created_utc\": 1560261056.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"1875\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/8OzoZyUbXGI?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Circle J - Topic\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/8OzoZyUbXGI/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCxC6mRdOoP5ACU29HieIHsw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_kap1l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bz7usj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ql08nT79ILcqqXKhn-7pWvsW_-AFSC4FoHG9mqpKWMA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560255317.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"twitter.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/QvOptX4myzoeJFIZpujlk5tVhsSbUOG-AcrpWJ5Hv5A.jpg?auto=webp\\u0026s=54acfeb6e599e888dc8a257d9823e2cec6e104e0\", \"width\": 1075, \"height\": 1518}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/QvOptX4myzoeJFIZpujlk5tVhsSbUOG-AcrpWJ5Hv5A.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=93cc99e7feb03332adbc7c59728776cf0cb02775\", \"width\": 108, \"height\": 152}, {\"url\": \"https://external-preview.redd.it/QvOptX4myzoeJFIZpujlk5tVhsSbUOG-AcrpWJ5Hv5A.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=63cf7f2cdd58dee0ea10a6ee55e2513015c93806\", \"width\": 216, \"height\": 305}, {\"url\": \"https://external-preview.redd.it/QvOptX4myzoeJFIZpujlk5tVhsSbUOG-AcrpWJ5Hv5A.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=31afadb11cd6bc49337ef9db16402ffadc4135a2\", \"width\": 320, \"height\": 451}, {\"url\": \"https://external-preview.redd.it/QvOptX4myzoeJFIZpujlk5tVhsSbUOG-AcrpWJ5Hv5A.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=ab57d44a9334efea66082729abeda7524188a497\", \"width\": 640, \"height\": 903}, {\"url\": \"https://external-preview.redd.it/QvOptX4myzoeJFIZpujlk5tVhsSbUOG-AcrpWJ5Hv5A.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=965fed616c11aa33c35dc87e533611fabb54639c\", \"width\": 960, \"height\": 1355}], \"variants\": {}, \"id\": \"sMzTXv0XOZb_jqvXr7l0ny73QNXKvoio_OvEN4x7UVs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz7usj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DDTBassG\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bz7usj/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://twitter.com/sioopaoo_7_10/status/1125372700367540224\", \"subreddit_subscribers\": 720, \"created_utc\": 1560226517.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_rlxf3r3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Simple Excel Mapper update | Icons added\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bz5jvk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/I2g9t7YMnop_y5acFmxFQkRTS9r2PvcytScojJRCAZI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560241372.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"goblinshenchman.wordpress.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/WnqCsIv_aQxB13BMb97U2uxBp3IK60qgBeusZgsnwsU.jpg?auto=webp\\u0026s=695300ec4b39e4428c13799835acb835037ed38e\", \"width\": 629, \"height\": 780}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/WnqCsIv_aQxB13BMb97U2uxBp3IK60qgBeusZgsnwsU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4422f9d3b1d1f3ca486afaf00ab0e73e13e3fa7e\", \"width\": 108, \"height\": 133}, {\"url\": \"https://external-preview.redd.it/WnqCsIv_aQxB13BMb97U2uxBp3IK60qgBeusZgsnwsU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fa2f26bdc471a2b5ae16549fee226ccb79a82205\", \"width\": 216, \"height\": 267}, {\"url\": \"https://external-preview.redd.it/WnqCsIv_aQxB13BMb97U2uxBp3IK60qgBeusZgsnwsU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=08f5e8dffda87af3a1e579b26123bfcf20d7c834\", \"width\": 320, \"height\": 396}], \"variants\": {}, \"id\": \"jn3AyyYZ6gpoA4qou8auaW4rCib7LxRMyjJE1sQt0e4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz5jvk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Goblinsh\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bz5jvk/simple_excel_mapper_update_icons_added/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://goblinshenchman.wordpress.com/2019/06/11/simple-excel-mapper-update-icons-added/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560212572.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_u8joa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Profile for Michael\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 73, \"hide_score\": false, \"name\": \"t3_byx5nz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/0EWJv0xSZ7AIFdF61uHexhw9s-shwk4f6dueM12UshE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560197931.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"seacrush.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?auto=webp\\u0026s=d7f994f48ea9d1bb120e7769ffe6e43b8b2cf3e4\", \"width\": 1280, \"height\": 668}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f8ddfe18b3dc72dcb9a14c476425e15260c57d8a\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=2fbba1e53867e15d861efd34b1c6bed7a992a480\", \"width\": 216, \"height\": 112}, {\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=9b0bbbc9a93d0a55f9e87cf372373e3421d765d6\", \"width\": 320, \"height\": 167}, {\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=823d99d7f73686509530e13e61f68c61d7400984\", \"width\": 640, \"height\": 334}, {\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=25711beb33248ed93971d314beea9c1d26b91a71\", \"width\": 960, \"height\": 501}, {\"url\": \"https://external-preview.redd.it/z4NWi2YQMi_fXzTFp2bwLp9CwW36QzqM2Xj9qOf7uxE.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=83d5981d739fca1e19ad6edb9e10a4c03e7b9bb8\", \"width\": 1080, \"height\": 563}], \"variants\": {}, \"id\": \"XPwZO2SrSThdVw6I8H7iQdpi86XUMBB_W3br9h1fIVQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byx5nz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mlake900\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/byx5nz/profile_for_michael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.seacrush.com/u/MichaelLake/en\", \"subreddit_subscribers\": 720, \"created_utc\": 1560169131.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1jz1io\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"This is a test!!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_byre4u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/DiFCnCbOb7xWtIYEmquYTQCBb8PIi2clliM6mV_e0QI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560156350.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"media.giphy.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?format=png8\\u0026s=b94579def98d79022bb4c7c20b48e6889fb5acc4\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=cc3d5ff8106654917c3a8f341402ae925a39c749\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=0986f98a38b759d9bc8050c1c11c40d9ebed67e7\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=f4ac22a4a53caad57d37e0f903111c12d462acce\", \"width\": 320, \"height\": 240}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?s=d7086306be8757bce540e53f1ae5c8498b750318\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=108\\u0026crop=smart\\u0026s=0b8513555b0e97dcc5584531b679ccbc1722efa6\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=216\\u0026crop=smart\\u0026s=35462ce5f76994417b4aabbdeb7ae82e40f040fb\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=320\\u0026crop=smart\\u0026s=8d3a0836c702332cb9086092b5f2c1e1930da874\", \"width\": 320, \"height\": 240}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?format=mp4\\u0026s=77807d6c66232f0401f4ca3f2f667cd5c18cf0cc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=108\\u0026format=mp4\\u0026s=51265f3ca0e892a6512fb6eb6ed06027ed407efb\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=216\\u0026format=mp4\\u0026s=1e9b057d564899ac7fcdb1212ae1c57b1f65cd5d\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/1dLdUC8DlT8jsxpTjXL4kwbp9dsg7yKad_tVoggPvlg.gif?width=320\\u0026format=mp4\\u0026s=265c767a445b30b3e51bfe6db2d33efdee465e01\", \"width\": 320, \"height\": 240}]}}, \"id\": \"6O82RIK323e-OgnkggWAHV_V4_X09JGzsFg2KPGPsTU\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byre4u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lividcargo\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/byre4u/this_is_a_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://media.giphy.com/media/l0uWTCjTVmAckMhRGl/giphy.gif\", \"subreddit_subscribers\": 720, \"created_utc\": 1560127550.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_35kiizw7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test 67 here we go again\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_byphya\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/_tmbNPrkDSY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 459, \"scrolling\": false, \"height\": 344}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"EMULATOR MADNESS VOL.2 - REVENGE OF THE PENTIUM MMX\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 344, \"width\": 459, \"html\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/_tmbNPrkDSY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"\\u3008JMS\\u3009\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/_tmbNPrkDSY/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF2pwSn514FD_JT3AINTHHw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/_tmbNPrkDSY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 459, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/byphya\", \"height\": 344}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/dPhHMnBTb0oytKz8X1xu9VJBychkAQdiKLm00LYvIrc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560145260.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?auto=webp\\u0026s=ac5687faab7f136677f76c88f3dd50c47a38e0a8\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5e77838e388e48a699b0d57de2061427b58adaa9\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6f9a572a4ca6e9836fa46c86192d56b19b9e30d9\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8aa4f2eb893bbebd7ab659d3f8ad6029eca0c96d\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"CRyevw-zBGHRF0Q9UTeHjNpa_bXhg5bApuXVx8P9OW8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byphya\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sleepchao\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/byphya/test_67_here_we_go_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://youtu.be/_tmbNPrkDSY\", \"subreddit_subscribers\": 720, \"created_utc\": 1560116460.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"EMULATOR MADNESS VOL.2 - REVENGE OF THE PENTIUM MMX\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 344, \"width\": 459, \"html\": \"\\u003Ciframe width=\\\"459\\\" height=\\\"344\\\" src=\\\"https://www.youtube.com/embed/_tmbNPrkDSY?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"\\u3008JMS\\u3009\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/_tmbNPrkDSY/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF2pwSn514FD_JT3AINTHHw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://youtu.be/\\\\_tmbNPrkDSY](https://youtu.be/_tmbNPrkDSY)\", \"author_fullname\": \"t2_35kiizw7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test 34. doin it again\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bypdoa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560144600.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/_tmbNPrkDSY\\\"\\u003Ehttps://youtu.be/_tmbNPrkDSY\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?auto=webp\\u0026s=ac5687faab7f136677f76c88f3dd50c47a38e0a8\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5e77838e388e48a699b0d57de2061427b58adaa9\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6f9a572a4ca6e9836fa46c86192d56b19b9e30d9\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/2sT4TKu2CytWdIBIsJ4YbszwKzLcNVvbNEbfRPjIf08.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8aa4f2eb893bbebd7ab659d3f8ad6029eca0c96d\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"CRyevw-zBGHRF0Q9UTeHjNpa_bXhg5bApuXVx8P9OW8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bypdoa\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sleepchao\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bypdoa/test_34_doin_it_again/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bypdoa/test_34_doin_it_again/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560115800.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u003Ca href+=\\\"[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\\"\\u003EUmbrella Monster\\\"\\u003C/a\\u003E\", \"author_fullname\": \"t2_13h189\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"pic test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bykj2c\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560117918.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;a href+=\\u0026quot;[http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz\\\\_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg](http://2.bp.blogspot.com/-SrH57G0YscM/UOtBFa3wz_I/AAAAAAAACYI/cdthOnHCknc/s1600/Not+of+This+Earth+1957+umbrella+monster.jpg)\\u0026quot;\\u0026gt;Umbrella Monster\\u0026quot;\\u0026lt;/a\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bykj2c\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"RockSlyde\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bykj2c/pic_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bykj2c/pic_test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560089118.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nI think I found it!\\n\\n\\u0026#x200B;\\n\\nPretty sure it's \\\"Not of This Earth\\\", circa 1957. Google-sleuthing with the \\\"umbrella\\\" description found a couple of pics.\\n\\n[https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2Fbasementrejects.com%2Fwp-content%2Fuploads%2F2013%2F02%2Fnot-of-this-earth-flying-alien-kill.jpg\\u0026f=1](https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2Fbasementrejects.com%2Fwp-content%2Fuploads%2F2013%2F02%2Fnot-of-this-earth-flying-alien-kill.jpg\\u0026f=1)\", \"author_fullname\": \"t2_13h189\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"NOTE post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bykfrf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560117318.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I found it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPretty sure it\\u0026#39;s \\u0026quot;Not of This Earth\\u0026quot;, circa 1957. Google-sleuthing with the \\u0026quot;umbrella\\u0026quot; description found a couple of pics.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2Fbasementrejects.com%2Fwp-content%2Fuploads%2F2013%2F02%2Fnot-of-this-earth-flying-alien-kill.jpg\\u0026amp;f=1\\\"\\u003Ehttps://proxy.duckduckgo.com/iu/?u=http%3A%2F%2Fbasementrejects.com%2Fwp-content%2Fuploads%2F2013%2F02%2Fnot-of-this-earth-flying-alien-kill.jpg\\u0026amp;f=1\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/oxCEtr9d5pRoxF6Z7UZrkq09Jmvz38uW93EnrD2-NDo.jpg?auto=webp\\u0026s=c0492de19c17db3df4d2b629782d9095b5ea25b4\", \"width\": 600, \"height\": 304}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/oxCEtr9d5pRoxF6Z7UZrkq09Jmvz38uW93EnrD2-NDo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a8087458609e096f60cb4375521de0ed255f73af\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/oxCEtr9d5pRoxF6Z7UZrkq09Jmvz38uW93EnrD2-NDo.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=390e5421884839975e1eb0d7ef842982ede6ea83\", \"width\": 216, \"height\": 109}, {\"url\": \"https://external-preview.redd.it/oxCEtr9d5pRoxF6Z7UZrkq09Jmvz38uW93EnrD2-NDo.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f75357d5ee0ba5c3cb85bf8bf836aa9473f71e47\", \"width\": 320, \"height\": 162}], \"variants\": {}, \"id\": \"alLzwS9aVWNrIw1e55pT8t9rdZ66NyZw9NCMj4OJhl0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bykfrf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"RockSlyde\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bykfrf/note_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bykfrf/note_post/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560088518.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*NOTE: This post is a follow-up to a post I made [HERE](https://old.reddit.com/r/fixingmovies/comments/bnihgj/reimagining_xmen_2000_as_a_modern_superhero_movie/).*\\n\\n*Real talk: I was going to make it a standalone post\\u2014but I ended it with a cliffhanger, and I had a few more ideas stuck in my head. If you enjoyed my last post, hopefully you'll enjoy this one.*\\n\\n*Anyway...*\\n______________________\\n\\n***X-Men: Children of the Atom***\\n______________________\\n\\n***INTRODUCTION:***\\n\\nFive years ago, Jean Grey and her fellow **X-Men** led a daring escape from a US government prison, battled **the Sentinels**, and narrowly survived a confrontation with the Mutant terrorist **Magneto**. Now, their story continues. But the five original X-Men\\u2014now young adults\\u2014face a slough of changes in their private lives.\\n\\nFirst, **Warren Worthington** (\\\"**Angel**\\\") chooses to leave the Xavier Institute to care for his terminally ill father. Then **Hank McCoy** (\\\"**Beast**\\\") chooses to leave to pursue his doctoral studies, planning to devote his life to science. Finally, **Bobby Drake** (\\\"**Iceman**\\\"), who just wants a normal life, decides to settle down with his girlfriend **Lorna**. Only **Scott Summers** (\\\"**Cyclops**\\\") can't envision a life outside of the X-Men; ever since losing his family in a mysterious plane crash at the age of 10, the Xavier Institute has been Scott's only home, and the X-Men are the only family that he has left.\\n\\nAs Scott's relationship with **Jean Grey** develops into a passionate love affair, Jean is torn between her devotion to Scott and her desire to move forward with her life. Though she longs to conceal her powerful psychic abilities and live as an ordinary human, Jean knows that Scott could never leave the Institute, and she feels compelled to stay by his side. This leaves Scott and Jean as the last remaining members of the original X-Men. But that may change soon.\\n\\nAs Professor Xavier turns his eyes to the world at large, it soon becomes clear that the struggle for Mutant Rights is no longer solely an American problem; all over the world, innocent Mutants are being arrested and detained by paranoid government forces, and some are choosing to fight back. Over time, rumors spread of an underground network of Mutant rebels, who supposedly work to shelter and protect fugitive Mutants. Some call them terrorists, and others call them freedom fighters\\u2014but Professor Xavier sees them as potential new recruits.\\n___________________\\n\\n***PROLOGUE:***\\n\\nIn a snowy forest somewhere north of the Canadian border, a squad of Sentinel pilots sets out to bring in a rogue Mutant. As they use heat vision to scan the rows of trees, the squad leader warns his teammates to stay sharp, reminding them that their target could be anywhere. But as the Sentinels close in on a mysterious figure hidden in the shadows, the **mysterious figure** fearlessly steps forward to confront them. As he does, we see a glint of light on metal blades, and we hear a distinctive sound:\\n\\n***SNIKT!***\\n\\nThe Sentinels fire their laser cannons\\u2014but the figure moves with inhuman agility, dodging their blasts with ease. Before they can lock onto him, he scampers up a tree trunk and jumps from branch to branch, then finally leaps at the nearest Sentinel and slices off its arm. Before the Sentinel can ignite its booster jets and fly away, the figure slices through its engine tank with his deadly metal blades, and the Sentinel catches fire and explodes.\\n\\nLasers flash as the Sentinels shoot wildly at the mysterious figure scampers from branch to branch, striking at the armored robots with deadly precision. Finally, when he makes his way to the last one, he takes his time pulling the helpless pilot from his cockpit and pinning him to the ground. As he does, we close in on his hand, and we see\\u2014for the first time\\u2014that the metal blades are actually retractable *claws* attacked to his knuckles.\\n\\n*\\\"Never hunt a hunter...\\\"* the figure whispers.\\n\\nHe slits the pilot's throat, leaving his claws red with blood.\\n_________________\\n\\n***ACT 1:***\\n\\nOn a quiet day in Moscow, a pair of uniformed FSB agents knock on the door of a secluded apartment, flanked by a squad of armed soldiers. When a young blonde woman answer the door, she stares defiantly at the agents.\\n\\n*\\\"There's no use playing the fool, Ms. Rasputin,\\\"* the lead agent says. *\\\"We know that you're sheltering a Mutant here. And you know the penalty for refusing to hand him over.\\\"*\\n\\nThe woman\\u2014**Ilyana Rasputin**\\u2014stares back at them, maintaining her cold composure.\\n\\n*\\\"I would never give my brother to mongrels like you,\\\"* she hisses. *\\\"He's a Mutant, but he's still my brother.\\\"*\\n\\nA tall, dark-haired man appears behind Ilyana and places a comforting hand upon her shoulder.\\n\\n*\\\"It's alright, Ilyana,\\\"* **Piotr Rasputin** says. *\\\"I'll go quietly. But always remember: your quarrel is with me, and me alone. My family is not to be harmed.\\\"*\\n\\nWith that, the agents cuff Piotr's wrists, and the soldiers escort him from the building at gunpoint. Standing at the window of her apartment with tear-streaked eyes, Ilyana can only watch helplessly as her beloved brother is marched into an armored van, softly whispering *\\\"Goodbye\\\"* as they close the doors. But unbeknownst to her, he's being watched from afar...\\n\\nIt turns out that three members of the mysterious **Mutant Freedom Network** have come to Moscow, and they know that a Mutant is about to be imprisoned by government forces. This time, they've sworn to do something about it.\\n\\nWe meet three of them:\\n\\n* **Sean Cassidy** (callsign: \\\"**Banshee**\\\"), a grizzled ex-cop from Dublin who was thrown out of Interpol after he was outed as a Mutant. He possesses a powerful sonic scream that's strong enough to shatter glass, allowing him to fly for limited distances.\\n* **Ororo Munroe** (callsign: \\\"**Storm**\\\"), a young Kenyan-born woman who spent years as a petty thief on the streets of Nairobi, but became accepted as a priestess by a group of Bantu farmers, who realized that she possessed a supernatural ability to control the weather.\\n* **Kurt Wagner** (callsign: \\\"**Nightcrawler**\\\"), a fun-loving young German man of Romani heritage, who grew up as an acrobatic performer in a traveling circus. Possessing the power to vanish and teleport in a puff of smoke, his Mutant abilities give him a bizarre demonic appearance; his body is covered with blue fur, and he has fangs and a prehensile tail.\\n\\nAs Banshee, Storm and Nightcrawler watch the armored van pull into a convoy, a squad of black helicopters appears in the sky, watching the FSB agents from above as they drive Piotr away. At Banshee's command, they bust into action.\\n\\nFirst, Nightcrawler uses his teleporting abilities to jump into the front seat of the armored van, where he kicks the driver into the street and takes the wheel. As he hijacks the van and drives away with Piotr in the back, Storm lashes out with a bolt of lightning and fries the other vans in the convoy before they can drive off after him. Moments later, Banshee tears through the sky and brings down a helicopter with his sonic scream.\\n\\n*\\\"Who the hell are you people?\\\"* Piotr demands. *\\\"And where are you taking me?!\\\"*\\n\\n*\\\"Relax, mein freund,\\\"* Nightcrawler says. *\\\"We're the good guys! And we're taking you where they can't hurt you. After that, you can go where you wish.\\\"*\\n\\nNightcrawler high-tails it to the highway with Storm riding on top of the stolen van, and Banshee follows them from the sky. As the FSB calls for backup, a frantic car chase ensues, and Ororo uses her powers to hold off a squad of pursuing cars while Banshee fights off the helicopters from above. At first, all seems well\\u2014but the escape takes a bad turn when Banshee catches a stray bullet and falls to his death. Pushing their powers to their limit, Nightcrawler and Storm fight for their lives against the pursuing soldiers. After breaking free of his cuffs, Piotr helps them out as he reveals his own Mutant ability: he can transform his body into near-indestructible steel, giving him superhuman strength and invulnerability.\\n\\nBefore long, the escapees receive a radio message from a familiar voice.\\n\\n*\\\"Stay calm,\\\"* Scott Summers says. *\\\"We're right on top of you!\\\"*\\n\\nA shadow appears on the highway. It's **the Blackbird**! Scott is sitting in the cockpit, and Jean is next to him.\\n\\n*\\\"You've gotta jump!\\\"* Jean calls. *\\\"Don't worry, we'll catch you!\\\"*\\n\\nFrom the cockpit of the Blackbird, Jean uses her telekinesis to take control of the van's steering wheel, allowing the trio to clamber onto the roof of the van as it speeds along. As the van drives off the side of a cliff\\u2014where the Blackbird is waiting to pick them up\\u2014they just barely manage to jump into the cargo hold before the van falls and crashes on the ground below. Safe inside the jet, Storm, Nightcrawler and Piotr meet Scott and Jean personally.\\n\\n*\\\"Who are you people, exactly?\\\"* Storm asks.\\n\\n*\\\"We're the X-Men,\\\"* Scott says proudly. *\\\"And if you want to join us...then so are you.\\\"*\\n\\nIt turns out that Professor Xavier has been in touch with the three Mutant freedom fighters for weeks, and he's offered them a place in the Xavier Institute. They accepted, but refused to leave for America before finishing one last rescue. Though the group is saddened by the loss of Banshee, Piotr agrees to join the X-Men along with Storm and Nightcrawler, believing that he has a duty to pay them back for rescuing him. Scott and Jean welcome him to the group with open arms, dubbing him \\\"**Colossus**\\\".\\n\\nBut the X-Men's elation is cut short when the Blackbird mysteriously stops in mid-air. Alarm sirens blare as some mysterious force grips the jet from the outside, and its navigation computers go haywire. As they rush to the cockpit to figure out what's going on, their blood runs cold as they look out the window and see a familiar figure: ***Magneto****!* Showing off the full extent of his powers, he effortlessly hovers in mid-air in a bubble of magnetic energy; with one hand outstretched, he holds the Blackbird in the grip of a magnetic field.\\n\\nIt seems that Magneto has followed Scott and Jean to Russia, eager for a rematch with them. In the five years since he murdered the scientist **Bolivar Trask**, he has had numerous confrontations with the X-Men\\u2014and each time, the X-Men have narrowly escaped with their lives.\\n\\nThinking fast, Scott and Jean clamber onto the roof of the Blackbird and engage Magneto, but he taunts them as he deflects Scott's optic blasts and shrugs off Jean's telepathic attacks\\u2014but the three new X-Men spring into action to aid them. Though Magneto easily subdues Colossus with his magnetic powers, Storm manages to weaken his shield by summoning a massive lightning storm, and Nightcrawler uses his teleportation abilities to land a crushing kick to his midsection. Taking advantage of the distraction, Scott blasts Magneto with his eyes, weakening him enough to free the Blackbird from his magnetic field. Seizing their window of opportunity, the X-Men pile into the jet and make their escape.\\n\\nBack in Westchester, Professor Xavier happily welcomes his three new recruits to the Xavier Institute with open arms. To mark the occasion, he presents the X-Men with a new set of matching uniforms, and he tells them that they'll begin training in the **Danger Room** in the morning. Although Nightcrawler is excited to begin, Storm is visibly uncomfortable about being forced to wear a uniform, and Colossus worries that he'll be forced to use his powers to hurt others.\\n\\nThough unspoken, an uncomfortable question hangs in the air: is the Professor turning them into an *army?*\\n____________________\\n\\nElsewhere, we see that Professor Xavier isn't the only one with new recruits at his disposal. Since we last saw Magneto, he has persuaded a trio of roguish Mutants to join his cause, and they've established a headquarters in an underground bunker. As Magneto returns from his trip to Russia, we meet them:\\n\\n* \\\"**Toad**\\\", a grotesque amphibian Mutant with superhuman reflexes and agility, and a powerful prehensile tongue. His mutation allows him to jump long distances and cling to walls, making him a formidable opponent.\\n* \\\"**The Blob**\\\", a grossly obese Mutant with superhuman strength, a nigh-indestructible body, and a fierce appetite. He and Toad have a clear \\\"Mutt and Jeff\\\" dynamic, and frequently hang out together when not on missions.\\n* \\\"**Pyro**\\\", a psychotic Australian Mutant with the power of pyrokinesis, allowing him to control and manipulate fire. True to his name, he's a shameless pyromaniac, and relishes the opportunity to cause mass chaos with his trusty flamethrowers. Magneto is the only person who can control him, and Toad and Blob are openly terrified of him.\\n\\nOne day, Magneto's three minions launch a surprise attack on a police station in a small American town. After Pyro uses his powers to torch every police officer in sight, Toad and Blob make their way to the jail cells on the lower floor of the building. Locked away in one cell, they find a quiet young blonde-haired man with bruises on his face and tattoos all along his arms. As Toad and Blob greet him, they reveal that they know his entire life story.\\n\\nThe young man\\u2014whose name is \\\"**Alex**\\\"\\u2014was orphaned at a young age, and spent most of his childhood in foster care before running away and joining a street gang. Recently, though, he was busted by the police after his Mutant abilities manifested in public for the first time. Alex has the ability to fire powerful blasts of superheated plasma from his body; unfortunately, he can't *control* his ability, often leading to destructive outbursts.\\n\\nToad and Blob offer to break Alex out of jail, promising that their boss\\u2014Magneto\\u2014will never force him to conceal his powers. To their astonishment, Alex reveals the full extent of his powers as he blasts a hole in the wall of the jail. Before he leaves to meet Magneto, he requests that his new teammates call him by his old street name: \\\"**Havok**\\\".\\n_______________\\n\\nOver the ensuing weeks and months, Storm, Nightcrawler and Colossus bond with Scott and Jean as they continue their grueling training regimen in the Danger Room under Professor Xavier's watchful eye. But tensions soon erupt when the Professor tells them about their first team mission. He suspects that Magneto and his \\\"**Brotherhood of Mutants**\\\" are planning a major coordinated attack on a high-level government target, and he wants the X-Men to stop the attack when it happens.\\n\\nStorm\\u2014who devoted her life to defending Mutants from persecution\\u2014chafes at the idea of using her powers to fight *other* Mutants, particularly if it means defending the US government. By now, the X-Men have deduced that the Professor has a personal history with the mysterious Magneto, and some of them suspect that his rivalry with the Mutant terrorist is far more personal than he's letting on; with that in mind, some of the team wonder if he's exploiting them to settle a personal vendetta.\\n\\nIn a tense argument, the Professor tells the team that he's devoted to the Mutant race's freedom above all else\\u2014but he's playing a \\\"long game\\\", and it will take precision and strategy to achieve that goal. If Magneto isn't stopped, he believes that his terrorist campaign could ultimately spark an all-out war between humans and Mutants, which could end with Mutants being permanently exterminated. For the good of his people, the Professor refuses to let that happen.\\n\\nLater that night, as Scott and Jean lay down to sleep, Scott awoken by a nightmare, where he sees himself falling from the sky in a burning airplane; like countless nights before, his thoughts are plagued by his memories of the plane crash that killed his parents. As Jean tries to calm him down, she asks him if he wants to tell her about the dream\\u2014which he has had many times before. Still visibly shaken by the nightmare, Scott can't bring himself to describe it in words. But, of course, Jean has other ways of seeing the dream for herself.\\n\\n*\\\"Do you want to show me?\\\"* Jean asks, laying her hand upon his head.\\n\\nScott instantly knows what she means. Though slightly apprehensive, he nods his head.\\n\\nUsing her telepathy to scan his mind, Jean sees Scott's last memory of his parents. In the memory, she sees a **dark-haired man in a military uniform**\\u2014**Scott's father**\\u2014sitting in the cockpit of a single-engine aircraft, frantically trying to keep it stable as the fuselage burns. Amid the chaos, a **mysterious voice** issues from the plane's radio, though Jean can't hear what it says. Finally, a **blonde-haired woman**\\u2014**Scott's mother**\\u2014hands him a parachute and opens the nearest door. After strapping the parachute to his back, Scott's mother pushes him to the door and orders him to jump. As the vision ends, a ten-year-old Scott leaps from the plane as it's consumed by flame.\\n\\nAfter finally seeing Scott's worst memory for herself, Jean bursts into tears as she embraces him.\\n\\nMore than 10 years ago, Scott had to watch his entire family die in the span of an hour. Now, as he prepares for an inevitable confrontation with Magneto, he fears that some of his teammates won't make it back alive. After losing one family, he knows that he can't handle losing another. Jean promises him that he won't\\u2014but deep down, she doubts whether she can keep that promise.\\n__________________________\\n\\nFar away from Westchester, somewhere in the American Midwest, we rejoin the mysterious man with the metal claws as he makes his way through the desolate countryside, walking purposefully toward some unknown destination. Suddenly, he sniffs the air and freezes in place. Nearby, he hears the sound of helicopter blades closing in fast.\\n\\nHe runs as fast as his legs will take him, but a sleek Army chopper catches up with him, and a squad of heavily armed soldiers rappel from the helicopter and train their weapons on him. Undaunted, the clawed man charges at the soldiers as they fire their guns, and he effortlessly slices off the barrel of a machine gun with his claws. One soldier scores a lucky shot with his pistol\\u2014but it just makes him angry, and he shrugs off the wound as it heals in seconds.\\n\\nA tense battle ensues, and the clawed man kills every soldier that dares approach him. In the end, as the sole survivor attempts to crawl away, he impales him through the stomach and stakes him to the ground. As the impaled soldier cries out for mercy, the clawed man leans in close and whispers in his ear.\\n\\n*\\\"You're already dead, bub,\\\"* he says. *\\\"But I can make it quick and painless, or I can make it agony. If you want to die with your limbs intact, you'll tell me what I want to know\\u2014and you won't hold back anything!\\\"*\\n\\nThe soldier whimpers and nods.\\n\\n*\\\"Good,\\\"* the clawed man says. *\\\"Now... Tell me everything you know about* ***Weapon X****!\\\"*\\n__________________________\\n***ACT 2:***\\n\\nAfter weeks of training, the call finally arrives from Professor Xavier: Magneto and his minions are mobilizing, and they've launched an attack on a remote US Army base in the Nevada Desert. As an alarm siren rings, the X-Men suit up and pile into the Blackbird, and Scott plots a course for the American Southwest.\\n\\nIn the Nevada Desert, a battle erupts as Magneto moves on the base with the Brotherhood close behind him. Magneto uses his magnetic fields to tear tanks apart with ease, deflecting missiles and mortal shells with his shields; Toad leaps through the air, snapping soldiers' necks left and right; Blob charges through rows of soldiers as bullets bounce harmlessly off of his body; Pyro launches torrents of flame at fleeing soldiers; and Havok launches volleys of glowing plasma at the base, cutting down soldiers by the dozen. \\n\\nThen the Blackbird arrives.\\n\\nThe X-Men pile out, ready for a fight, and a tense battle erupts between the X-Men and the Brotherhood. Colossus and Blob slug it out in a tense fistfight; Toad and Nightcrawler chase each other around the base, showing off their superhuman speed and agility; Storm sends a massive windstorm at Pyro, which results in a massive tornado of fire ripping through the base; Jean pits her telekinesis against Magneto's magnetic fields, and the resulting battle nearly leaves the base in ruins; Scott and Havok launch fearsome energy blasts at each other from afar, blasting through concrete walls and metal armor plating.\\n\\nAs the battle rages on, Toad eventually breaks away from Nightcrawler, and he manages to leap past the guards and make his way into the interior of the base. Moving fast, he eventually finds his way into a massive computer mainframe at the heart of the base. As the guards are occupied with fighting the rest of the Brotherhood, he hacks into the base's computer files, and manages to download a massive cache of digital data onto a disk that he brought with him. Although we don't get a good look at the files, the words ***\\\"Weapon X\\\"*** are clearly visible on the computer screen.\\n\\nBefore Toad can escape with the disk, Nightcrawler catches up with him, and their battle resumes. As Nightcrawler gets the upper hand on Toad and spots the disk in his pocket, he receives a sudden telepathic message from Professor Xavier, who orders him to seize the disk before Toad can escape with it. Though he's perplexed by the Professor's order, Nightcrawler obeys, and he narrowly manages to escape the base with the disk in hand.\\n\\nOutside, the battle turns in the X-Men's favor, and the Brotherhood is forced to retreat as reinforcements arrive. As they scatter, Scott orders the team back to Westchester. Shortly after the Brotherhood makes their escape, an enraged Magneto lambasts Toad for losing the disk to Nightcrawler, but Toad still dutifully reports all that he learned from browsing the base's computer files.\\n\\n*\\\"You were right, boss,\\\"* he says. *\\\"Weapon X is real!\\\"*\\n\\n*\\\"If it's real, then I suppose Charles has some difficult choices to make...\\\"* Magneto muses.\\n___________________\\n\\nA few hours after the battle, as the soldiers attempt to rebuild, a lone figure approaches the base. The soldiers don't notice him, but we instantly recognize the figure as the man with the metal claws.\\n\\nHe keeps his distance from the base. From his expression, it's obvious that he knows what happened, and he knows what the assailants were after. He sniffs the air, and falls silent as he picks up the scent of the intruders. \\n\\nHe leaves, following the scent...\\n____________________\\n\\nAs the X-Men return to the mansion to celebrate their victory, Nightcrawler loyally gives the disk to Professor Xavier, but the Professor refuses to tell the X-Men what's on it. Once again, this reignites tensions between the Professor and his team as the X-Men openly chafe at being kept in the dark.\\n\\nLater that night, when Jean visits the Professor in his study, she finds him holding his old photograph of a young **Erik Lehnsherr** on the grounds of the Xavier Institute. The Professor grows visibly emotional as he recalls his time with his old friend, but he falters when Jean finally addresses the elephant in the room. She asks the Professor how he and Erik Lehnsherr knew each other, and how they became enemies. The Professor can't bring himself to talk about it\\u2014but he knows that Jean has other ways of seeing his past for herself.\\n\\nIn a scene mirroring Jean's earlier scene with Scott, the Professor allows Jean to use her telepathy to scan his mind. As she does, a scene unfolds.\\n\\nSometime in the past\\u2014at least 20 years earlier\\u2014a group of Mutant Rights protestors march down the streets of New York City, waving picket signs and chanting slogans. Suddenly, the police descend on the protestors, and armored police officers begin throwing tear gas canisters at them. Undaunted, they continue to march forward as fist-fights erupt and police sirens blare. As tensions escalate, one officer tackles a protestor and begins beating him with a nightstick until he lies motionless in the streets. Screaming in anguish, another protestor rushes to his friend's aid and cries out for help. When the tear gas clears, we see the protestor cradling his injured friend in his arms, tears streaming down his face. As the camera lingers on them, we recognize the two protestors as a young Charles Xavier and Erik Lehnsherr.\\n\\nHours later, the injured protestor\\u2014Charles\\u2014lies in a hospital bed recovering from his injuries, with Erik sitting by his bedside. Though neither of them speak, it's clear that Charles' injuries have seriously damaged his spine, making it unlikely that he'll ever walk again. As this fact sinks in, Erik's expression slowly shifts from shock, to disbelief, to profound sorrow, to\\u2014finally\\u2014a deep and abiding anger. As Charles lies sedated in his bed, Erik strides from the hospital and walks into the streets; wherever he walks, metal objects rattle and vibrate at his passing.\\n\\nFinally, Erik comes to a stop at a police station, where he raises his hand and effortlessly tears down the front door with his magnetic fields. As he walks inside, we hear screams of fear and agony as he slaughters every police officer he sees. On the other side of town, Charles wakes up in his hospital bed with an expression of pure horror on his face. He doesn't say a word, but it's clear that he knows what his friend has done\\u2014and he's all the more horrified that he did it for *him*.\\n\\nBack in the present day, the Professor hangs his head in sorrow as he remembers Erik's downfall, and Jean puts a comforting hand on his shoulder.\\n________________________\\n\\nIn the dead of night\\u2014hours after the X-Men have gone to sleep for the night\\u2014a mysterious figure approaches the mansion. It's the man with the metal claws! After weeks of fleeing the military, he has finally made his way to Westchester, and he has his sights set on the Xavier Institute.\\n\\nMoving silently, the figure vaults over the gates and creeps across the grounds of the manor, then sneaks into the mansion through a window, moving through the shadowed halls without a sound. Once inside, he heads straight for the Professor's study\\u2014where the disk is hidden away.\\n\\nAs the figure creeps through the mansion, the Professor wakes, having clearly sensed his presence with his telepathy. Thinking fast, he sends a telepathic message to the X-Men, alerting them to the intruder's presence. Moments later, the X-Men awake and scramble to apprehend him. Undaunted, the intruder pops his claws and prepares for a fight.\\n\\nA fight ensues as Cyclops, Jean Grey, Storm, Nightcrawler and Colossus all rush at the intruder\\u2014but he evades them all, and fights off everyone who manages to reach him. With the disk in hand, he runs through the labyrinthine halls of the mansion, rounding corners and clinging to the shadows.\\n\\nAfter a lengthy chase, Storm finally manages to stun the intruder with a well-placed lightning bolt, and Colossus grabs him in his metal embrace, allowing Jean to lull him into a catatonic state with her telepathy. With the intruder out of commission, the X-Men retrieve the disk and lock him in a secure room.\\n\\nIn a fierce argument, Storm confronts the Professor about his constant secret-keeping, and finally demands that he tell the X-Men what's on the disk that Nightcrawler retrieved. After seeing someone break into the X-Men's home searching for the disk, the other X-Men realize how dangerous it really is. Reluctantly, the Professor agrees to tell them the truth.\\n\\nEver since the US government first discovered the existence of Mutants in the 1960s, it's been rumored that the Department of Defense has secretly been conducting experiments on live Mutant test subjects. While most people in the government view the existence of the \\\"X-gene\\\" as a threat to national security, others believe that it could be a powerful weapon in the right hands. The \\\"Weapon X\\\" project was supposedly founded with that in mind. According to persistent rumors, the soldiers and scientists at Weapon X have spent years seeking out the world's deadliest Mutants, and they've forced them to undergo agonizing surgical procedures and mental conditioning intended to turn them into living weapons.\\n\\nUpon hearing the Professor's story, Scott and Jean recoil in horror as they realize that their own government may have been enslaving Mutants since before they were born. But their horror only grows stronger when the Professor tells them why they were sent on their mission to the Nevada Desert: Magneto is trying to prove the existence of the Weapon X project, and he attacked the Army's base because he believed that their computers contained the location of Weapon X's headquarters. But the Professor wanted to *stop* Magneto from discovering the location of the project's headquarters, believing that a direct attack on a high-level military base would spark the human-Mutant war that he's dreaded for years.\\n\\nAfter learning the true purpose of their mission, Storm erupts in anger at the Professor. If she'd known what Magneto was really after, she says, she'd have joined his side and *helped* him bring down Weapon X. As Nightcrawler and Colossus attempt to calm her down, Jean creeps into the secure room where the intruder is held.\\n\\nAs the intruder awakens, Jean carefully approaches him and extends a friendly hand. Having learned the true nature of the mysterious disk, she suspects that the intruder might have understandable reasons for seeking it. She asks the intruder if he'd like to explain himself, but he can't bring himself to speak. But, of course, Jean has other ways of seeing why he's come.\\n\\nFor the third time, Jean uses her telepathy. With the intruder's permission, she looks into his mind, and she's terrified by what she sees. As she learns, he's a fugitive test subject of the Weapon X project, and he was abducted by the US military\\u2014who forcibly coated his skeleton with the indestructible metal alloy **adamantium**. Ever since escaping from the organization's clutches in the Canadian Rockies, he has been on the run from the military, determined to track down the location of Weapon X's headquarters so that he can shut it down permanently.\\n\\nTaking pity on the intruder, Jean promises him that he'll always be safe at the Xavier Institute, and she vows to help him shut down Weapon X. Taken aback by her act of kindness, the intruder finally introduces himself. His name is **Logan**\\u2014but in Weapon X, he was known only by the codename \\\"**Wolverine**\\\".\\n\\nWith Jean by his side, Logan exits the locked room, and he explains himself to the X-Men. Having finally learned the full story of Weapon X, the X-Men show him no hostility; if he's truly serious about taking down Weapon X, they tell him, they're on the same side.\\n\\nFor the very first time, the X-Men openly defy Professor Xavier, and they tell him that they've decided to shut Weapon X down\\u2014with or without his permission. Finally accepting that he won't be able to change his students' minds, the Professor agrees to tell them the location of the project's headquarters: it's located in a base on the remote Pacific island of **Krakoa**, which can't be found on any map. Armed with Krakoa's coordinates, the X-Men resolve to fly to the island to take on Weapon X, and they invite Logan to join them.\\n__________________\\n\\n***ACT 3:***\\n\\nAt dawn, the X-Men pile into the Blackbird and plot a course for Krakoa, and the Professor bids them farewell. A few hours later, they come up on the remote island\\u2014a barren rock patrolled by a platoon of soldiers in unmarked black uniforms.\\n\\nMuch to their surprise, the X-Men find themselves intercepted by the Brotherhood, who've followed them to the island via helicopter. As the X-Men pile out and prepare for a fight, the Brotherhood pile out alongside them. As the soldiers dig in and fire on them, the two enemy teams declare a temporary truce, agreeing to work together as long as it takes to shut down Weapon X.\\n\\nIn a massive battle sequence, the X-Men and the Brotherhood storm Krakoa, fighting an uphill battle against the soldiers. When the dust clears, they realize that they've won\\u2014but there's no base in sight. As far as they can see, the island is nothing but storm-wracked cliffs.\\n\\nAs the two rival teams stare each other down in a tense faceoff, Scott and Logan leave to explore the island. As they investigate their surroundings, they eventually discover a hidden passage between two cliffs, which leads them into a shadowy underground chamber deep beneath the surface of Krakoa. When they light a flashlight, the two men recoil in horror as they realize that they're surrounded by locked jail cells filled with the decaying skeletons of Mutant prisoners, who've clearly been dead for years.\\n\\nTo their dismay, they realize that they're too late: the base on Krakoa is abandoned, and the leaders of Weapon X have long since located. Scott realizes that the soldiers must have *known* that they were coming, and *someone* must have tipped them off.\\n\\nAs he explores the abandoned base, Scott stumbles into a darkened room filled with blank television screens. As he draws near, the power flickers on, and a nightmarish face fills each screen: the face of **a man with deathly pale skin, eyes as black as coal, and a red diamond tattoo in the center of his forehead**. Scott is paralyzed with fear as the pale man laughs, and his voice fills the room.\\n\\n*\\\"I suppose I should congratulate you, Mr. Summers,\\\"* the man says. *\\\"I wasn't going to let you shut our little operation down, but I didn't count on you surviving this long.\\\"*\\n\\nScott's heart pounds in his chest as he stares at the screens, unable to look away. For reasons that he can't explain *something* seems inexplicably familiar about the pale man's voice. He knows that he's heard it before. But *where?*\\n\\nIn an instant, Scott realizes the answer. As he finds himself flashing back to an awful day 10 years gone, all of his repressed memories of the plane crash come flooding back.\\n\\nOnce again, we see a young Scott Summers sitting in the passenger seat of a small single-engine plane, with his parents sitting in the cockpit. But *this* time, we can clearly hear the mysterious voice coming from the plane's radio. It's the voice of the pale man!\\n\\n*\\\"You won't escape me,* ***Major Summers****,\\\"* the voice says. *\\\"By my side, your son could have been great. But now he'll die forgotten. And when you're gone, no one will dare speak your name.\\\"*\\n\\n*\\\"I know what you've done,* ***Essex****!\\\"* Major Summers says defiantly. *\\\"You can't keep this hidden forever!\\\"*\\n\\nThe figure\\u2014\\\"Essex\\\"\\u2014laughs tauntingly.\\n\\n*\\\"I don't intend to, Major Summers,\\\"* he says. *\\\"A new age is dawning. We've accomplished wonders, you and I. Soon, the world will know of all we've done. It's a pity you won't be here to see that day. Goodbye, old friend.\\\"*\\n\\nOn the control panel in front of Major Summers, his radar display shows an object approaching the plane, moving fast. It's a missile\\u2014and it's locked onto the plane. As soon as he sees it, he knows that he won't be able to evade it.\\n\\nHe turns to Scott, his eyes full of sorrow. We don't hear what's said after that. We only see Scott's mother as she hands a parachute to Scott and pushes him towards the door. As the missile hits, and the plane is engulfed in flame, Scott takes one last look at his parents as he jumps into the open air and pulls his ripcord.\\n\\nBack in the present day, Scott sinks to his knees as he confronts the pale man. For the first time in his life, he realizes the truth about his parents' death: ***their plane didn't crash\\u2014it was shot down!***\\n\\n*\\\"As a token of respect, I'll give you a final chance to turn back,\\\"* the pale man says. *\\\"You might have the courage to challenge me, but a weak fool's courage won't destroy all that I've built. I dealt with your father swiftly\\u2014but if* ***you*** *defy me, you'll suffer in ways that your mind can't grasp. This is your only warning, Mr. Summers. If you're wise, you'll never see my face again.\\\"*\\n\\nWith that, the screen goes dark. Screaming with rage, Scott unleashes his optic beams and blasts through the concrete wall.\\n\\nOn the surface, the X-Men climb back into the Blackbird, choosing to let the Brotherhood go in peace. With heavy hearts, they return home to Westchester.\\n___________________\\n\\nBack at the mansion, as the team proudly presents Logan with his own room, Scott confronts Professor Xavier in his study. Finally erupting in anger at the man who raised him like a father, Scott demands to know about everything on the disk that the Professor kept from him. After a moment's pause, the Professor inserts the disk into his computer. After scrolling through pages and pages of files, he finally arrives at a photo of Scott's father in his uniform. Below his picture, six awful words tell Scott everything that he needs to know about his fate.\\n\\n***NAME: Major Christopher Summers***\\n\\n***STATUS: Terminated***\\n\\nYears ago, Major Christopher Summers was a high-ranking Army officer assigned to the Weapon X project, where he worked directly under the project's founder. But when he realized how barbaric their experiments truly were, he swore to tell the world the truth about the shady organization. When he tried to flee Weapon X's base with his family, the project's founder ordered his plane shot down before it could land.\\n\\n*\\\"Who is he?!\\\"* Scott demands. *\\\"Where is he?!\\\"*\\n\\nThe Professor sadly tells Scott that he doesn't know. Whoever he is, the founder of Weapon X didn't leave any clues about his identity in the computer mainframe, and the Professor has found no clues about his whereabouts. Without a miracle, it's unlikely that Scott will ever find him.\\n\\nEnraged that the Professor didn't tell him the full story of what happened to his parents, he storms out of the Professor's study and runs out of the mansion. As the other X-Men watch him leave, he doesn't even give them a *\\\"Goodbye\\\"*.\\n\\nMoments later, Jean runs after Scott and finds him sitting behind the wheel of his car. She begs him to stay, but Scott tells her that he can't. If he can't find his parents' killer and force him to answer for his crimes, he knows that he'll never be able to live with himself. Until he does, the Xavier Institute isn't his home anymore.\\n\\nJean stares at Scott, silently pleading with him.\\n\\n*\\\"You don't think you can change my mind, do you?\\\"* Scott asks.\\n\\n*\\\"No,\\\"* Jean says. *\\\"But I'm not letting you do this alone. I'm coming with you. Whatever happens out there, I'll be by your side.\\\"*\\n\\nShe opens the car door and takes her place in the passenger seat as Scott guns the engine. Together, they pull away from the Xavier Institute and drive into the setting sun.\\n\\nThey may not have a map to follow, but they have a name: \\\"**Essex**\\\".\\n\\nFor now, that's better than nothing...\\n__________________\\n\\n***TL;DR:*** As the X-Men square off against Magneto and the Brotherhood of Mutants, they accidentally discover the existence of \\\"Weapon X\\\", a mysterious military program designed to turn Mutants into living weapons. After crossing paths with a fugitive Weapon X test subject called \\\"Wolverine\\\", they resolve to help him shut the program down for good.\\n\\nIn the climax, Scott Summers discovers that his deceased father was a former Army officer who tried to expose Weapon X's existence to the world, only to be assassinated by the program's founder: a shadowy figure named \\\"Essex\\\". In the end, he chooses to leave the Xavier Institute to track down Essex and avenge his parents, and Jean Grey chooses to join him.\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bye3cz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1560221049.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560066082.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003ENOTE: This post is a follow-up to a post I made \\u003Ca href=\\\"https://old.reddit.com/r/fixingmovies/comments/bnihgj/reimagining_xmen_2000_as_a_modern_superhero_movie/\\\"\\u003EHERE\\u003C/a\\u003E.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EReal talk: I was going to make it a standalone post\\u2014but I ended it with a cliffhanger, and I had a few more ideas stuck in my head. If you enjoyed my last post, hopefully you\\u0026#39;ll enjoy this one.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EAnyway...\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EX-Men: Children of the Atom\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EINTRODUCTION:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFive years ago, Jean Grey and her fellow \\u003Cstrong\\u003EX-Men\\u003C/strong\\u003E led a daring escape from a US government prison, battled \\u003Cstrong\\u003Ethe Sentinels\\u003C/strong\\u003E, and narrowly survived a confrontation with the Mutant terrorist \\u003Cstrong\\u003EMagneto\\u003C/strong\\u003E. Now, their story continues. But the five original X-Men\\u2014now young adults\\u2014face a slough of changes in their private lives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, \\u003Cstrong\\u003EWarren Worthington\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EAngel\\u003C/strong\\u003E\\u0026quot;) chooses to leave the Xavier Institute to care for his terminally ill father. Then \\u003Cstrong\\u003EHank McCoy\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EBeast\\u003C/strong\\u003E\\u0026quot;) chooses to leave to pursue his doctoral studies, planning to devote his life to science. Finally, \\u003Cstrong\\u003EBobby Drake\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EIceman\\u003C/strong\\u003E\\u0026quot;), who just wants a normal life, decides to settle down with his girlfriend \\u003Cstrong\\u003ELorna\\u003C/strong\\u003E. Only \\u003Cstrong\\u003EScott Summers\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003ECyclops\\u003C/strong\\u003E\\u0026quot;) can\\u0026#39;t envision a life outside of the X-Men; ever since losing his family in a mysterious plane crash at the age of 10, the Xavier Institute has been Scott\\u0026#39;s only home, and the X-Men are the only family that he has left.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Scott\\u0026#39;s relationship with \\u003Cstrong\\u003EJean Grey\\u003C/strong\\u003E develops into a passionate love affair, Jean is torn between her devotion to Scott and her desire to move forward with her life. Though she longs to conceal her powerful psychic abilities and live as an ordinary human, Jean knows that Scott could never leave the Institute, and she feels compelled to stay by his side. This leaves Scott and Jean as the last remaining members of the original X-Men. But that may change soon.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Professor Xavier turns his eyes to the world at large, it soon becomes clear that the struggle for Mutant Rights is no longer solely an American problem; all over the world, innocent Mutants are being arrested and detained by paranoid government forces, and some are choosing to fight back. Over time, rumors spread of an underground network of Mutant rebels, who supposedly work to shelter and protect fugitive Mutants. Some call them terrorists, and others call them freedom fighters\\u2014but Professor Xavier sees them as potential new recruits.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EPROLOGUE:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a snowy forest somewhere north of the Canadian border, a squad of Sentinel pilots sets out to bring in a rogue Mutant. As they use heat vision to scan the rows of trees, the squad leader warns his teammates to stay sharp, reminding them that their target could be anywhere. But as the Sentinels close in on a mysterious figure hidden in the shadows, the \\u003Cstrong\\u003Emysterious figure\\u003C/strong\\u003E fearlessly steps forward to confront them. As he does, we see a glint of light on metal blades, and we hear a distinctive sound:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESNIKT!\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Sentinels fire their laser cannons\\u2014but the figure moves with inhuman agility, dodging their blasts with ease. Before they can lock onto him, he scampers up a tree trunk and jumps from branch to branch, then finally leaps at the nearest Sentinel and slices off its arm. Before the Sentinel can ignite its booster jets and fly away, the figure slices through its engine tank with his deadly metal blades, and the Sentinel catches fire and explodes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELasers flash as the Sentinels shoot wildly at the mysterious figure scampers from branch to branch, striking at the armored robots with deadly precision. Finally, when he makes his way to the last one, he takes his time pulling the helpless pilot from his cockpit and pinning him to the ground. As he does, we close in on his hand, and we see\\u2014for the first time\\u2014that the metal blades are actually retractable \\u003Cem\\u003Eclaws\\u003C/em\\u003E attacked to his knuckles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Never hunt a hunter...\\u0026quot;\\u003C/em\\u003E the figure whispers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe slits the pilot\\u0026#39;s throat, leaving his claws red with blood.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 1:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn a quiet day in Moscow, a pair of uniformed FSB agents knock on the door of a secluded apartment, flanked by a squad of armed soldiers. When a young blonde woman answer the door, she stares defiantly at the agents.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;There\\u0026#39;s no use playing the fool, Ms. Rasputin,\\u0026quot;\\u003C/em\\u003E the lead agent says. \\u003Cem\\u003E\\u0026quot;We know that you\\u0026#39;re sheltering a Mutant here. And you know the penalty for refusing to hand him over.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe woman\\u2014\\u003Cstrong\\u003EIlyana Rasputin\\u003C/strong\\u003E\\u2014stares back at them, maintaining her cold composure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I would never give my brother to mongrels like you,\\u0026quot;\\u003C/em\\u003E she hisses. \\u003Cem\\u003E\\u0026quot;He\\u0026#39;s a Mutant, but he\\u0026#39;s still my brother.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA tall, dark-haired man appears behind Ilyana and places a comforting hand upon her shoulder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;It\\u0026#39;s alright, Ilyana,\\u0026quot;\\u003C/em\\u003E \\u003Cstrong\\u003EPiotr Rasputin\\u003C/strong\\u003E says. \\u003Cem\\u003E\\u0026quot;I\\u0026#39;ll go quietly. But always remember: your quarrel is with me, and me alone. My family is not to be harmed.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith that, the agents cuff Piotr\\u0026#39;s wrists, and the soldiers escort him from the building at gunpoint. Standing at the window of her apartment with tear-streaked eyes, Ilyana can only watch helplessly as her beloved brother is marched into an armored van, softly whispering \\u003Cem\\u003E\\u0026quot;Goodbye\\u0026quot;\\u003C/em\\u003E as they close the doors. But unbeknownst to her, he\\u0026#39;s being watched from afar...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt turns out that three members of the mysterious \\u003Cstrong\\u003EMutant Freedom Network\\u003C/strong\\u003E have come to Moscow, and they know that a Mutant is about to be imprisoned by government forces. This time, they\\u0026#39;ve sworn to do something about it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe meet three of them:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESean Cassidy\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003EBanshee\\u003C/strong\\u003E\\u0026quot;), a grizzled ex-cop from Dublin who was thrown out of Interpol after he was outed as a Mutant. He possesses a powerful sonic scream that\\u0026#39;s strong enough to shatter glass, allowing him to fly for limited distances.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EOroro Munroe\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003EStorm\\u003C/strong\\u003E\\u0026quot;), a young Kenyan-born woman who spent years as a petty thief on the streets of Nairobi, but became accepted as a priestess by a group of Bantu farmers, who realized that she possessed a supernatural ability to control the weather.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EKurt Wagner\\u003C/strong\\u003E (callsign: \\u0026quot;\\u003Cstrong\\u003ENightcrawler\\u003C/strong\\u003E\\u0026quot;), a fun-loving young German man of Romani heritage, who grew up as an acrobatic performer in a traveling circus. Possessing the power to vanish and teleport in a puff of smoke, his Mutant abilities give him a bizarre demonic appearance; his body is covered with blue fur, and he has fangs and a prehensile tail.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAs Banshee, Storm and Nightcrawler watch the armored van pull into a convoy, a squad of black helicopters appears in the sky, watching the FSB agents from above as they drive Piotr away. At Banshee\\u0026#39;s command, they bust into action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, Nightcrawler uses his teleporting abilities to jump into the front seat of the armored van, where he kicks the driver into the street and takes the wheel. As he hijacks the van and drives away with Piotr in the back, Storm lashes out with a bolt of lightning and fries the other vans in the convoy before they can drive off after him. Moments later, Banshee tears through the sky and brings down a helicopter with his sonic scream.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who the hell are you people?\\u0026quot;\\u003C/em\\u003E Piotr demands. \\u003Cem\\u003E\\u0026quot;And where are you taking me?!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Relax, mein freund,\\u0026quot;\\u003C/em\\u003E Nightcrawler says. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;re the good guys! And we\\u0026#39;re taking you where they can\\u0026#39;t hurt you. After that, you can go where you wish.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENightcrawler high-tails it to the highway with Storm riding on top of the stolen van, and Banshee follows them from the sky. As the FSB calls for backup, a frantic car chase ensues, and Ororo uses her powers to hold off a squad of pursuing cars while Banshee fights off the helicopters from above. At first, all seems well\\u2014but the escape takes a bad turn when Banshee catches a stray bullet and falls to his death. Pushing their powers to their limit, Nightcrawler and Storm fight for their lives against the pursuing soldiers. After breaking free of his cuffs, Piotr helps them out as he reveals his own Mutant ability: he can transform his body into near-indestructible steel, giving him superhuman strength and invulnerability.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore long, the escapees receive a radio message from a familiar voice.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Stay calm,\\u0026quot;\\u003C/em\\u003E Scott Summers says. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;re right on top of you!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA shadow appears on the highway. It\\u0026#39;s \\u003Cstrong\\u003Ethe Blackbird\\u003C/strong\\u003E! Scott is sitting in the cockpit, and Jean is next to him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;ve gotta jump!\\u0026quot;\\u003C/em\\u003E Jean calls. \\u003Cem\\u003E\\u0026quot;Don\\u0026#39;t worry, we\\u0026#39;ll catch you!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom the cockpit of the Blackbird, Jean uses her telekinesis to take control of the van\\u0026#39;s steering wheel, allowing the trio to clamber onto the roof of the van as it speeds along. As the van drives off the side of a cliff\\u2014where the Blackbird is waiting to pick them up\\u2014they just barely manage to jump into the cargo hold before the van falls and crashes on the ground below. Safe inside the jet, Storm, Nightcrawler and Piotr meet Scott and Jean personally.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who are you people, exactly?\\u0026quot;\\u003C/em\\u003E Storm asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;re the X-Men,\\u0026quot;\\u003C/em\\u003E Scott says proudly. \\u003Cem\\u003E\\u0026quot;And if you want to join us...then so are you.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt turns out that Professor Xavier has been in touch with the three Mutant freedom fighters for weeks, and he\\u0026#39;s offered them a place in the Xavier Institute. They accepted, but refused to leave for America before finishing one last rescue. Though the group is saddened by the loss of Banshee, Piotr agrees to join the X-Men along with Storm and Nightcrawler, believing that he has a duty to pay them back for rescuing him. Scott and Jean welcome him to the group with open arms, dubbing him \\u0026quot;\\u003Cstrong\\u003EColossus\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut the X-Men\\u0026#39;s elation is cut short when the Blackbird mysteriously stops in mid-air. Alarm sirens blare as some mysterious force grips the jet from the outside, and its navigation computers go haywire. As they rush to the cockpit to figure out what\\u0026#39;s going on, their blood runs cold as they look out the window and see a familiar figure: \\u003Cstrong\\u003E\\u003Cem\\u003EMagneto\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E!\\u003C/em\\u003E Showing off the full extent of his powers, he effortlessly hovers in mid-air in a bubble of magnetic energy; with one hand outstretched, he holds the Blackbird in the grip of a magnetic field.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems that Magneto has followed Scott and Jean to Russia, eager for a rematch with them. In the five years since he murdered the scientist \\u003Cstrong\\u003EBolivar Trask\\u003C/strong\\u003E, he has had numerous confrontations with the X-Men\\u2014and each time, the X-Men have narrowly escaped with their lives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThinking fast, Scott and Jean clamber onto the roof of the Blackbird and engage Magneto, but he taunts them as he deflects Scott\\u0026#39;s optic blasts and shrugs off Jean\\u0026#39;s telepathic attacks\\u2014but the three new X-Men spring into action to aid them. Though Magneto easily subdues Colossus with his magnetic powers, Storm manages to weaken his shield by summoning a massive lightning storm, and Nightcrawler uses his teleportation abilities to land a crushing kick to his midsection. Taking advantage of the distraction, Scott blasts Magneto with his eyes, weakening him enough to free the Blackbird from his magnetic field. Seizing their window of opportunity, the X-Men pile into the jet and make their escape.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in Westchester, Professor Xavier happily welcomes his three new recruits to the Xavier Institute with open arms. To mark the occasion, he presents the X-Men with a new set of matching uniforms, and he tells them that they\\u0026#39;ll begin training in the \\u003Cstrong\\u003EDanger Room\\u003C/strong\\u003E in the morning. Although Nightcrawler is excited to begin, Storm is visibly uncomfortable about being forced to wear a uniform, and Colossus worries that he\\u0026#39;ll be forced to use his powers to hurt others.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThough unspoken, an uncomfortable question hangs in the air: is the Professor turning them into an \\u003Cem\\u003Earmy?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EElsewhere, we see that Professor Xavier isn\\u0026#39;t the only one with new recruits at his disposal. Since we last saw Magneto, he has persuaded a trio of roguish Mutants to join his cause, and they\\u0026#39;ve established a headquarters in an underground bunker. As Magneto returns from his trip to Russia, we meet them:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u0026quot;\\u003Cstrong\\u003EToad\\u003C/strong\\u003E\\u0026quot;, a grotesque amphibian Mutant with superhuman reflexes and agility, and a powerful prehensile tongue. His mutation allows him to jump long distances and cling to walls, making him a formidable opponent.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u0026quot;\\u003Cstrong\\u003EThe Blob\\u003C/strong\\u003E\\u0026quot;, a grossly obese Mutant with superhuman strength, a nigh-indestructible body, and a fierce appetite. He and Toad have a clear \\u0026quot;Mutt and Jeff\\u0026quot; dynamic, and frequently hang out together when not on missions.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u0026quot;\\u003Cstrong\\u003EPyro\\u003C/strong\\u003E\\u0026quot;, a psychotic Australian Mutant with the power of pyrokinesis, allowing him to control and manipulate fire. True to his name, he\\u0026#39;s a shameless pyromaniac, and relishes the opportunity to cause mass chaos with his trusty flamethrowers. Magneto is the only person who can control him, and Toad and Blob are openly terrified of him.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EOne day, Magneto\\u0026#39;s three minions launch a surprise attack on a police station in a small American town. After Pyro uses his powers to torch every police officer in sight, Toad and Blob make their way to the jail cells on the lower floor of the building. Locked away in one cell, they find a quiet young blonde-haired man with bruises on his face and tattoos all along his arms. As Toad and Blob greet him, they reveal that they know his entire life story.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe young man\\u2014whose name is \\u0026quot;\\u003Cstrong\\u003EAlex\\u003C/strong\\u003E\\u0026quot;\\u2014was orphaned at a young age, and spent most of his childhood in foster care before running away and joining a street gang. Recently, though, he was busted by the police after his Mutant abilities manifested in public for the first time. Alex has the ability to fire powerful blasts of superheated plasma from his body; unfortunately, he can\\u0026#39;t \\u003Cem\\u003Econtrol\\u003C/em\\u003E his ability, often leading to destructive outbursts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EToad and Blob offer to break Alex out of jail, promising that their boss\\u2014Magneto\\u2014will never force him to conceal his powers. To their astonishment, Alex reveals the full extent of his powers as he blasts a hole in the wall of the jail. Before he leaves to meet Magneto, he requests that his new teammates call him by his old street name: \\u0026quot;\\u003Cstrong\\u003EHavok\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EOver the ensuing weeks and months, Storm, Nightcrawler and Colossus bond with Scott and Jean as they continue their grueling training regimen in the Danger Room under Professor Xavier\\u0026#39;s watchful eye. But tensions soon erupt when the Professor tells them about their first team mission. He suspects that Magneto and his \\u0026quot;\\u003Cstrong\\u003EBrotherhood of Mutants\\u003C/strong\\u003E\\u0026quot; are planning a major coordinated attack on a high-level government target, and he wants the X-Men to stop the attack when it happens.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStorm\\u2014who devoted her life to defending Mutants from persecution\\u2014chafes at the idea of using her powers to fight \\u003Cem\\u003Eother\\u003C/em\\u003E Mutants, particularly if it means defending the US government. By now, the X-Men have deduced that the Professor has a personal history with the mysterious Magneto, and some of them suspect that his rivalry with the Mutant terrorist is far more personal than he\\u0026#39;s letting on; with that in mind, some of the team wonder if he\\u0026#39;s exploiting them to settle a personal vendetta.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a tense argument, the Professor tells the team that he\\u0026#39;s devoted to the Mutant race\\u0026#39;s freedom above all else\\u2014but he\\u0026#39;s playing a \\u0026quot;long game\\u0026quot;, and it will take precision and strategy to achieve that goal. If Magneto isn\\u0026#39;t stopped, he believes that his terrorist campaign could ultimately spark an all-out war between humans and Mutants, which could end with Mutants being permanently exterminated. For the good of his people, the Professor refuses to let that happen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELater that night, as Scott and Jean lay down to sleep, Scott awoken by a nightmare, where he sees himself falling from the sky in a burning airplane; like countless nights before, his thoughts are plagued by his memories of the plane crash that killed his parents. As Jean tries to calm him down, she asks him if he wants to tell her about the dream\\u2014which he has had many times before. Still visibly shaken by the nightmare, Scott can\\u0026#39;t bring himself to describe it in words. But, of course, Jean has other ways of seeing the dream for herself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Do you want to show me?\\u0026quot;\\u003C/em\\u003E Jean asks, laying her hand upon his head.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScott instantly knows what she means. Though slightly apprehensive, he nods his head.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUsing her telepathy to scan his mind, Jean sees Scott\\u0026#39;s last memory of his parents. In the memory, she sees a \\u003Cstrong\\u003Edark-haired man in a military uniform\\u003C/strong\\u003E\\u2014\\u003Cstrong\\u003EScott\\u0026#39;s father\\u003C/strong\\u003E\\u2014sitting in the cockpit of a single-engine aircraft, frantically trying to keep it stable as the fuselage burns. Amid the chaos, a \\u003Cstrong\\u003Emysterious voice\\u003C/strong\\u003E issues from the plane\\u0026#39;s radio, though Jean can\\u0026#39;t hear what it says. Finally, a \\u003Cstrong\\u003Eblonde-haired woman\\u003C/strong\\u003E\\u2014\\u003Cstrong\\u003EScott\\u0026#39;s mother\\u003C/strong\\u003E\\u2014hands him a parachute and opens the nearest door. After strapping the parachute to his back, Scott\\u0026#39;s mother pushes him to the door and orders him to jump. As the vision ends, a ten-year-old Scott leaps from the plane as it\\u0026#39;s consumed by flame.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter finally seeing Scott\\u0026#39;s worst memory for herself, Jean bursts into tears as she embraces him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMore than 10 years ago, Scott had to watch his entire family die in the span of an hour. Now, as he prepares for an inevitable confrontation with Magneto, he fears that some of his teammates won\\u0026#39;t make it back alive. After losing one family, he knows that he can\\u0026#39;t handle losing another. Jean promises him that he won\\u0026#39;t\\u2014but deep down, she doubts whether she can keep that promise.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EFar away from Westchester, somewhere in the American Midwest, we rejoin the mysterious man with the metal claws as he makes his way through the desolate countryside, walking purposefully toward some unknown destination. Suddenly, he sniffs the air and freezes in place. Nearby, he hears the sound of helicopter blades closing in fast.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe runs as fast as his legs will take him, but a sleek Army chopper catches up with him, and a squad of heavily armed soldiers rappel from the helicopter and train their weapons on him. Undaunted, the clawed man charges at the soldiers as they fire their guns, and he effortlessly slices off the barrel of a machine gun with his claws. One soldier scores a lucky shot with his pistol\\u2014but it just makes him angry, and he shrugs off the wound as it heals in seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA tense battle ensues, and the clawed man kills every soldier that dares approach him. In the end, as the sole survivor attempts to crawl away, he impales him through the stomach and stakes him to the ground. As the impaled soldier cries out for mercy, the clawed man leans in close and whispers in his ear.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;re already dead, bub,\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;But I can make it quick and painless, or I can make it agony. If you want to die with your limbs intact, you\\u0026#39;ll tell me what I want to know\\u2014and you won\\u0026#39;t hold back anything!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe soldier whimpers and nods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Good,\\u0026quot;\\u003C/em\\u003E the clawed man says. \\u003Cem\\u003E\\u0026quot;Now... Tell me everything you know about\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EWeapon X\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 2:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter weeks of training, the call finally arrives from Professor Xavier: Magneto and his minions are mobilizing, and they\\u0026#39;ve launched an attack on a remote US Army base in the Nevada Desert. As an alarm siren rings, the X-Men suit up and pile into the Blackbird, and Scott plots a course for the American Southwest.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the Nevada Desert, a battle erupts as Magneto moves on the base with the Brotherhood close behind him. Magneto uses his magnetic fields to tear tanks apart with ease, deflecting missiles and mortal shells with his shields; Toad leaps through the air, snapping soldiers\\u0026#39; necks left and right; Blob charges through rows of soldiers as bullets bounce harmlessly off of his body; Pyro launches torrents of flame at fleeing soldiers; and Havok launches volleys of glowing plasma at the base, cutting down soldiers by the dozen. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen the Blackbird arrives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe X-Men pile out, ready for a fight, and a tense battle erupts between the X-Men and the Brotherhood. Colossus and Blob slug it out in a tense fistfight; Toad and Nightcrawler chase each other around the base, showing off their superhuman speed and agility; Storm sends a massive windstorm at Pyro, which results in a massive tornado of fire ripping through the base; Jean pits her telekinesis against Magneto\\u0026#39;s magnetic fields, and the resulting battle nearly leaves the base in ruins; Scott and Havok launch fearsome energy blasts at each other from afar, blasting through concrete walls and metal armor plating.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the battle rages on, Toad eventually breaks away from Nightcrawler, and he manages to leap past the guards and make his way into the interior of the base. Moving fast, he eventually finds his way into a massive computer mainframe at the heart of the base. As the guards are occupied with fighting the rest of the Brotherhood, he hacks into the base\\u0026#39;s computer files, and manages to download a massive cache of digital data onto a disk that he brought with him. Although we don\\u0026#39;t get a good look at the files, the words \\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;Weapon X\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E are clearly visible on the computer screen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore Toad can escape with the disk, Nightcrawler catches up with him, and their battle resumes. As Nightcrawler gets the upper hand on Toad and spots the disk in his pocket, he receives a sudden telepathic message from Professor Xavier, who orders him to seize the disk before Toad can escape with it. Though he\\u0026#39;s perplexed by the Professor\\u0026#39;s order, Nightcrawler obeys, and he narrowly manages to escape the base with the disk in hand.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOutside, the battle turns in the X-Men\\u0026#39;s favor, and the Brotherhood is forced to retreat as reinforcements arrive. As they scatter, Scott orders the team back to Westchester. Shortly after the Brotherhood makes their escape, an enraged Magneto lambasts Toad for losing the disk to Nightcrawler, but Toad still dutifully reports all that he learned from browsing the base\\u0026#39;s computer files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You were right, boss,\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;Weapon X is real!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;If it\\u0026#39;s real, then I suppose Charles has some difficult choices to make...\\u0026quot;\\u003C/em\\u003E Magneto muses.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EA few hours after the battle, as the soldiers attempt to rebuild, a lone figure approaches the base. The soldiers don\\u0026#39;t notice him, but we instantly recognize the figure as the man with the metal claws.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe keeps his distance from the base. From his expression, it\\u0026#39;s obvious that he knows what happened, and he knows what the assailants were after. He sniffs the air, and falls silent as he picks up the scent of the intruders. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe leaves, following the scent...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EAs the X-Men return to the mansion to celebrate their victory, Nightcrawler loyally gives the disk to Professor Xavier, but the Professor refuses to tell the X-Men what\\u0026#39;s on it. Once again, this reignites tensions between the Professor and his team as the X-Men openly chafe at being kept in the dark.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELater that night, when Jean visits the Professor in his study, she finds him holding his old photograph of a young \\u003Cstrong\\u003EErik Lehnsherr\\u003C/strong\\u003E on the grounds of the Xavier Institute. The Professor grows visibly emotional as he recalls his time with his old friend, but he falters when Jean finally addresses the elephant in the room. She asks the Professor how he and Erik Lehnsherr knew each other, and how they became enemies. The Professor can\\u0026#39;t bring himself to talk about it\\u2014but he knows that Jean has other ways of seeing his past for herself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a scene mirroring Jean\\u0026#39;s earlier scene with Scott, the Professor allows Jean to use her telepathy to scan his mind. As she does, a scene unfolds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESometime in the past\\u2014at least 20 years earlier\\u2014a group of Mutant Rights protestors march down the streets of New York City, waving picket signs and chanting slogans. Suddenly, the police descend on the protestors, and armored police officers begin throwing tear gas canisters at them. Undaunted, they continue to march forward as fist-fights erupt and police sirens blare. As tensions escalate, one officer tackles a protestor and begins beating him with a nightstick until he lies motionless in the streets. Screaming in anguish, another protestor rushes to his friend\\u0026#39;s aid and cries out for help. When the tear gas clears, we see the protestor cradling his injured friend in his arms, tears streaming down his face. As the camera lingers on them, we recognize the two protestors as a young Charles Xavier and Erik Lehnsherr.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHours later, the injured protestor\\u2014Charles\\u2014lies in a hospital bed recovering from his injuries, with Erik sitting by his bedside. Though neither of them speak, it\\u0026#39;s clear that Charles\\u0026#39; injuries have seriously damaged his spine, making it unlikely that he\\u0026#39;ll ever walk again. As this fact sinks in, Erik\\u0026#39;s expression slowly shifts from shock, to disbelief, to profound sorrow, to\\u2014finally\\u2014a deep and abiding anger. As Charles lies sedated in his bed, Erik strides from the hospital and walks into the streets; wherever he walks, metal objects rattle and vibrate at his passing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally, Erik comes to a stop at a police station, where he raises his hand and effortlessly tears down the front door with his magnetic fields. As he walks inside, we hear screams of fear and agony as he slaughters every police officer he sees. On the other side of town, Charles wakes up in his hospital bed with an expression of pure horror on his face. He doesn\\u0026#39;t say a word, but it\\u0026#39;s clear that he knows what his friend has done\\u2014and he\\u0026#39;s all the more horrified that he did it for \\u003Cem\\u003Ehim\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in the present day, the Professor hangs his head in sorrow as he remembers Erik\\u0026#39;s downfall, and Jean puts a comforting hand on his shoulder.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn the dead of night\\u2014hours after the X-Men have gone to sleep for the night\\u2014a mysterious figure approaches the mansion. It\\u0026#39;s the man with the metal claws! After weeks of fleeing the military, he has finally made his way to Westchester, and he has his sights set on the Xavier Institute.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoving silently, the figure vaults over the gates and creeps across the grounds of the manor, then sneaks into the mansion through a window, moving through the shadowed halls without a sound. Once inside, he heads straight for the Professor\\u0026#39;s study\\u2014where the disk is hidden away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the figure creeps through the mansion, the Professor wakes, having clearly sensed his presence with his telepathy. Thinking fast, he sends a telepathic message to the X-Men, alerting them to the intruder\\u0026#39;s presence. Moments later, the X-Men awake and scramble to apprehend him. Undaunted, the intruder pops his claws and prepares for a fight.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA fight ensues as Cyclops, Jean Grey, Storm, Nightcrawler and Colossus all rush at the intruder\\u2014but he evades them all, and fights off everyone who manages to reach him. With the disk in hand, he runs through the labyrinthine halls of the mansion, rounding corners and clinging to the shadows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter a lengthy chase, Storm finally manages to stun the intruder with a well-placed lightning bolt, and Colossus grabs him in his metal embrace, allowing Jean to lull him into a catatonic state with her telepathy. With the intruder out of commission, the X-Men retrieve the disk and lock him in a secure room.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a fierce argument, Storm confronts the Professor about his constant secret-keeping, and finally demands that he tell the X-Men what\\u0026#39;s on the disk that Nightcrawler retrieved. After seeing someone break into the X-Men\\u0026#39;s home searching for the disk, the other X-Men realize how dangerous it really is. Reluctantly, the Professor agrees to tell them the truth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEver since the US government first discovered the existence of Mutants in the 1960s, it\\u0026#39;s been rumored that the Department of Defense has secretly been conducting experiments on live Mutant test subjects. While most people in the government view the existence of the \\u0026quot;X-gene\\u0026quot; as a threat to national security, others believe that it could be a powerful weapon in the right hands. The \\u0026quot;Weapon X\\u0026quot; project was supposedly founded with that in mind. According to persistent rumors, the soldiers and scientists at Weapon X have spent years seeking out the world\\u0026#39;s deadliest Mutants, and they\\u0026#39;ve forced them to undergo agonizing surgical procedures and mental conditioning intended to turn them into living weapons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpon hearing the Professor\\u0026#39;s story, Scott and Jean recoil in horror as they realize that their own government may have been enslaving Mutants since before they were born. But their horror only grows stronger when the Professor tells them why they were sent on their mission to the Nevada Desert: Magneto is trying to prove the existence of the Weapon X project, and he attacked the Army\\u0026#39;s base because he believed that their computers contained the location of Weapon X\\u0026#39;s headquarters. But the Professor wanted to \\u003Cem\\u003Estop\\u003C/em\\u003E Magneto from discovering the location of the project\\u0026#39;s headquarters, believing that a direct attack on a high-level military base would spark the human-Mutant war that he\\u0026#39;s dreaded for years.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter learning the true purpose of their mission, Storm erupts in anger at the Professor. If she\\u0026#39;d known what Magneto was really after, she says, she\\u0026#39;d have joined his side and \\u003Cem\\u003Ehelped\\u003C/em\\u003E him bring down Weapon X. As Nightcrawler and Colossus attempt to calm her down, Jean creeps into the secure room where the intruder is held.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the intruder awakens, Jean carefully approaches him and extends a friendly hand. Having learned the true nature of the mysterious disk, she suspects that the intruder might have understandable reasons for seeking it. She asks the intruder if he\\u0026#39;d like to explain himself, but he can\\u0026#39;t bring himself to speak. But, of course, Jean has other ways of seeing why he\\u0026#39;s come.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the third time, Jean uses her telepathy. With the intruder\\u0026#39;s permission, she looks into his mind, and she\\u0026#39;s terrified by what she sees. As she learns, he\\u0026#39;s a fugitive test subject of the Weapon X project, and he was abducted by the US military\\u2014who forcibly coated his skeleton with the indestructible metal alloy \\u003Cstrong\\u003Eadamantium\\u003C/strong\\u003E. Ever since escaping from the organization\\u0026#39;s clutches in the Canadian Rockies, he has been on the run from the military, determined to track down the location of Weapon X\\u0026#39;s headquarters so that he can shut it down permanently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETaking pity on the intruder, Jean promises him that he\\u0026#39;ll always be safe at the Xavier Institute, and she vows to help him shut down Weapon X. Taken aback by her act of kindness, the intruder finally introduces himself. His name is \\u003Cstrong\\u003ELogan\\u003C/strong\\u003E\\u2014but in Weapon X, he was known only by the codename \\u0026quot;\\u003Cstrong\\u003EWolverine\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith Jean by his side, Logan exits the locked room, and he explains himself to the X-Men. Having finally learned the full story of Weapon X, the X-Men show him no hostility; if he\\u0026#39;s truly serious about taking down Weapon X, they tell him, they\\u0026#39;re on the same side.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the very first time, the X-Men openly defy Professor Xavier, and they tell him that they\\u0026#39;ve decided to shut Weapon X down\\u2014with or without his permission. Finally accepting that he won\\u0026#39;t be able to change his students\\u0026#39; minds, the Professor agrees to tell them the location of the project\\u0026#39;s headquarters: it\\u0026#39;s located in a base on the remote Pacific island of \\u003Cstrong\\u003EKrakoa\\u003C/strong\\u003E, which can\\u0026#39;t be found on any map. Armed with Krakoa\\u0026#39;s coordinates, the X-Men resolve to fly to the island to take on Weapon X, and they invite Logan to join them.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 3:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt dawn, the X-Men pile into the Blackbird and plot a course for Krakoa, and the Professor bids them farewell. A few hours later, they come up on the remote island\\u2014a barren rock patrolled by a platoon of soldiers in unmarked black uniforms.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMuch to their surprise, the X-Men find themselves intercepted by the Brotherhood, who\\u0026#39;ve followed them to the island via helicopter. As the X-Men pile out and prepare for a fight, the Brotherhood pile out alongside them. As the soldiers dig in and fire on them, the two enemy teams declare a temporary truce, agreeing to work together as long as it takes to shut down Weapon X.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a massive battle sequence, the X-Men and the Brotherhood storm Krakoa, fighting an uphill battle against the soldiers. When the dust clears, they realize that they\\u0026#39;ve won\\u2014but there\\u0026#39;s no base in sight. As far as they can see, the island is nothing but storm-wracked cliffs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the two rival teams stare each other down in a tense faceoff, Scott and Logan leave to explore the island. As they investigate their surroundings, they eventually discover a hidden passage between two cliffs, which leads them into a shadowy underground chamber deep beneath the surface of Krakoa. When they light a flashlight, the two men recoil in horror as they realize that they\\u0026#39;re surrounded by locked jail cells filled with the decaying skeletons of Mutant prisoners, who\\u0026#39;ve clearly been dead for years.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo their dismay, they realize that they\\u0026#39;re too late: the base on Krakoa is abandoned, and the leaders of Weapon X have long since located. Scott realizes that the soldiers must have \\u003Cem\\u003Eknown\\u003C/em\\u003E that they were coming, and \\u003Cem\\u003Esomeone\\u003C/em\\u003E must have tipped them off.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs he explores the abandoned base, Scott stumbles into a darkened room filled with blank television screens. As he draws near, the power flickers on, and a nightmarish face fills each screen: the face of \\u003Cstrong\\u003Ea man with deathly pale skin, eyes as black as coal, and a red diamond tattoo in the center of his forehead\\u003C/strong\\u003E. Scott is paralyzed with fear as the pale man laughs, and his voice fills the room.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I suppose I should congratulate you, Mr. Summers,\\u0026quot;\\u003C/em\\u003E the man says. \\u003Cem\\u003E\\u0026quot;I wasn\\u0026#39;t going to let you shut our little operation down, but I didn\\u0026#39;t count on you surviving this long.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScott\\u0026#39;s heart pounds in his chest as he stares at the screens, unable to look away. For reasons that he can\\u0026#39;t explain \\u003Cem\\u003Esomething\\u003C/em\\u003E seems inexplicably familiar about the pale man\\u0026#39;s voice. He knows that he\\u0026#39;s heard it before. But \\u003Cem\\u003Ewhere?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn an instant, Scott realizes the answer. As he finds himself flashing back to an awful day 10 years gone, all of his repressed memories of the plane crash come flooding back.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce again, we see a young Scott Summers sitting in the passenger seat of a small single-engine plane, with his parents sitting in the cockpit. But \\u003Cem\\u003Ethis\\u003C/em\\u003E time, we can clearly hear the mysterious voice coming from the plane\\u0026#39;s radio. It\\u0026#39;s the voice of the pale man!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You won\\u0026#39;t escape me,\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EMajor Summers\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E,\\u0026quot;\\u003C/em\\u003E the voice says. \\u003Cem\\u003E\\u0026quot;By my side, your son could have been great. But now he\\u0026#39;ll die forgotten. And when you\\u0026#39;re gone, no one will dare speak your name.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I know what you\\u0026#39;ve done,\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003EEssex\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E!\\u0026quot;\\u003C/em\\u003E Major Summers says defiantly. \\u003Cem\\u003E\\u0026quot;You can\\u0026#39;t keep this hidden forever!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe figure\\u2014\\u0026quot;Essex\\u0026quot;\\u2014laughs tauntingly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I don\\u0026#39;t intend to, Major Summers,\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;A new age is dawning. We\\u0026#39;ve accomplished wonders, you and I. Soon, the world will know of all we\\u0026#39;ve done. It\\u0026#39;s a pity you won\\u0026#39;t be here to see that day. Goodbye, old friend.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the control panel in front of Major Summers, his radar display shows an object approaching the plane, moving fast. It\\u0026#39;s a missile\\u2014and it\\u0026#39;s locked onto the plane. As soon as he sees it, he knows that he won\\u0026#39;t be able to evade it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe turns to Scott, his eyes full of sorrow. We don\\u0026#39;t hear what\\u0026#39;s said after that. We only see Scott\\u0026#39;s mother as she hands a parachute to Scott and pushes him towards the door. As the missile hits, and the plane is engulfed in flame, Scott takes one last look at his parents as he jumps into the open air and pulls his ripcord.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in the present day, Scott sinks to his knees as he confronts the pale man. For the first time in his life, he realizes the truth about his parents\\u0026#39; death: \\u003Cstrong\\u003E\\u003Cem\\u003Etheir plane didn\\u0026#39;t crash\\u2014it was shot down!\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;As a token of respect, I\\u0026#39;ll give you a final chance to turn back,\\u0026quot;\\u003C/em\\u003E the pale man says. \\u003Cem\\u003E\\u0026quot;You might have the courage to challenge me, but a weak fool\\u0026#39;s courage won\\u0026#39;t destroy all that I\\u0026#39;ve built. I dealt with your father swiftly\\u2014but if\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003Eyou\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003Edefy me, you\\u0026#39;ll suffer in ways that your mind can\\u0026#39;t grasp. This is your only warning, Mr. Summers. If you\\u0026#39;re wise, you\\u0026#39;ll never see my face again.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith that, the screen goes dark. Screaming with rage, Scott unleashes his optic beams and blasts through the concrete wall.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the surface, the X-Men climb back into the Blackbird, choosing to let the Brotherhood go in peace. With heavy hearts, they return home to Westchester.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBack at the mansion, as the team proudly presents Logan with his own room, Scott confronts Professor Xavier in his study. Finally erupting in anger at the man who raised him like a father, Scott demands to know about everything on the disk that the Professor kept from him. After a moment\\u0026#39;s pause, the Professor inserts the disk into his computer. After scrolling through pages and pages of files, he finally arrives at a photo of Scott\\u0026#39;s father in his uniform. Below his picture, six awful words tell Scott everything that he needs to know about his fate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENAME: Major Christopher Summers\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESTATUS: Terminated\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYears ago, Major Christopher Summers was a high-ranking Army officer assigned to the Weapon X project, where he worked directly under the project\\u0026#39;s founder. But when he realized how barbaric their experiments truly were, he swore to tell the world the truth about the shady organization. When he tried to flee Weapon X\\u0026#39;s base with his family, the project\\u0026#39;s founder ordered his plane shot down before it could land.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Who is he?!\\u0026quot;\\u003C/em\\u003E Scott demands. \\u003Cem\\u003E\\u0026quot;Where is he?!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Professor sadly tells Scott that he doesn\\u0026#39;t know. Whoever he is, the founder of Weapon X didn\\u0026#39;t leave any clues about his identity in the computer mainframe, and the Professor has found no clues about his whereabouts. Without a miracle, it\\u0026#39;s unlikely that Scott will ever find him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEnraged that the Professor didn\\u0026#39;t tell him the full story of what happened to his parents, he storms out of the Professor\\u0026#39;s study and runs out of the mansion. As the other X-Men watch him leave, he doesn\\u0026#39;t even give them a \\u003Cem\\u003E\\u0026quot;Goodbye\\u0026quot;\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoments later, Jean runs after Scott and finds him sitting behind the wheel of his car. She begs him to stay, but Scott tells her that he can\\u0026#39;t. If he can\\u0026#39;t find his parents\\u0026#39; killer and force him to answer for his crimes, he knows that he\\u0026#39;ll never be able to live with himself. Until he does, the Xavier Institute isn\\u0026#39;t his home anymore.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJean stares at Scott, silently pleading with him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You don\\u0026#39;t think you can change my mind, do you?\\u0026quot;\\u003C/em\\u003E Scott asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;No,\\u0026quot;\\u003C/em\\u003E Jean says. \\u003Cem\\u003E\\u0026quot;But I\\u0026#39;m not letting you do this alone. I\\u0026#39;m coming with you. Whatever happens out there, I\\u0026#39;ll be by your side.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe opens the car door and takes her place in the passenger seat as Scott guns the engine. Together, they pull away from the Xavier Institute and drive into the setting sun.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThey may not have a map to follow, but they have a name: \\u0026quot;\\u003Cstrong\\u003EEssex\\u003C/strong\\u003E\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor now, that\\u0026#39;s better than nothing...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ETL;DR:\\u003C/em\\u003E\\u003C/strong\\u003E As the X-Men square off against Magneto and the Brotherhood of Mutants, they accidentally discover the existence of \\u0026quot;Weapon X\\u0026quot;, a mysterious military program designed to turn Mutants into living weapons. After crossing paths with a fugitive Weapon X test subject called \\u0026quot;Wolverine\\u0026quot;, they resolve to help him shut the program down for good.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the climax, Scott Summers discovers that his deceased father was a former Army officer who tried to expose Weapon X\\u0026#39;s existence to the world, only to be assassinated by the program\\u0026#39;s founder: a shadowy figure named \\u0026quot;Essex\\u0026quot;. In the end, he chooses to leave the Xavier Institute to track down Essex and avenge his parents, and Jean Grey chooses to join him.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bye3cz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bye3cz/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bye3cz/test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560037282.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test 300ppi tinypng\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bydio9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/pEQby3AcrTh8OYsL6nqyADWsfJ0xYVzp6eU-Tg2YT5I.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560062426.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/g63xs5ndn7331.png?auto=webp\\u0026s=034dc50f43b87db78bcde504ad0c707f4d2a479e\", \"width\": 944, \"height\": 1204}, \"resolutions\": [{\"url\": \"https://preview.redd.it/g63xs5ndn7331.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=59917eede6b2741b9b279aa8942bf35aba1a47f2\", \"width\": 108, \"height\": 137}, {\"url\": \"https://preview.redd.it/g63xs5ndn7331.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=8546355fbbe6164f40839c406e69ef1e000f391d\", \"width\": 216, \"height\": 275}, {\"url\": \"https://preview.redd.it/g63xs5ndn7331.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=13881e27baccea313d855db982f24da3cdd2d05f\", \"width\": 320, \"height\": 408}, {\"url\": \"https://preview.redd.it/g63xs5ndn7331.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5c6ee136a87bc59bc89c7b4ce9f190e95d5979f1\", \"width\": 640, \"height\": 816}], \"variants\": {}, \"id\": \"LMVKTv4382UozUz1Dh1RTY8TetFojLyOesyTobf9Aqs\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bydio9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bydio9/test_300ppi_tinypng/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/g63xs5ndn7331.png\", \"subreddit_subscribers\": 720, \"created_utc\": 1560033626.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"tinypng test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bybucw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/_shnynGiA1jaSDVRdq7WI5OyXySYV8QjkCyAU1F8DTY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560052398.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/n715q8p3s6331.png?auto=webp\\u0026s=9bcddff2909335363538563684e65b3ec2567c6f\", \"width\": 944, \"height\": 1204}, \"resolutions\": [{\"url\": \"https://preview.redd.it/n715q8p3s6331.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=14b34d0c561293814708870b68107a0a61824c06\", \"width\": 108, \"height\": 137}, {\"url\": \"https://preview.redd.it/n715q8p3s6331.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=aa5e0498362e605b24b19637c9cc158b7af4e48d\", \"width\": 216, \"height\": 275}, {\"url\": \"https://preview.redd.it/n715q8p3s6331.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=448d39237ceecc7eccbafed875c382bb34bb1a01\", \"width\": 320, \"height\": 408}, {\"url\": \"https://preview.redd.it/n715q8p3s6331.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f8d7d87897cd827363a7aa9bf7aa31c79913e0d0\", \"width\": 640, \"height\": 816}], \"variants\": {}, \"id\": \"O2bsYWki79GbGUg-afk8nn9KmOH90ETGRR4-3hNGC88\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bybucw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bybucw/tinypng_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/n715q8p3s6331.png\", \"subreddit_subscribers\": 720, \"created_utc\": 1560023598.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test larger jpeg\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bybgq8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/yA6veEQjlDPpzR3KTUhH9UDAoVfmR1ccf_hkur45OVU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560050176.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?auto=webp\\u0026s=05bd9f836acdda53db002b3fdef86c069fef270c\", \"width\": 1346, \"height\": 1718}, \"resolutions\": [{\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ed0a8c0e8a4cad5f54a6df1014b8804249816b7b\", \"width\": 108, \"height\": 137}, {\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=7c6e46659169f0c56cc03a227af6d8076e4bb3dd\", \"width\": 216, \"height\": 275}, {\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=09749e084917ed29b5613e74e017a4e92bdb3eda\", \"width\": 320, \"height\": 408}, {\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5ec1fa40530e1129a1eba9855cdad77bef1380d5\", \"width\": 640, \"height\": 816}, {\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=b69ebbd0e816a976161b9361e4ff920df8d30ee7\", \"width\": 960, \"height\": 1225}, {\"url\": \"https://preview.redd.it/ei1vdxvml6331.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=4e6b46666f1aaeac9b7f566e70ca574e53e88b61\", \"width\": 1080, \"height\": 1378}], \"variants\": {}, \"id\": \"ulvqbEnezYaEsaP_DvXiRTRAhLheygBDK6JPPX-Std4\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bybgq8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bybgq8/test_larger_jpeg/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/ei1vdxvml6331.jpg\", \"subreddit_subscribers\": 720, \"created_utc\": 1560021376.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test smaller img\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bybbep\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/-ZPF5NJ2BCySgq7bxtYyue8zltxwRUIH-HfJZO2bDZg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560049304.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/iehia1npi6331.jpg?auto=webp\\u0026s=e730788b5b26b077198112ee64742f124101d68d\", \"width\": 755, \"height\": 963}, \"resolutions\": [{\"url\": \"https://preview.redd.it/iehia1npi6331.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3c313941362e3097ae2b6050f12d410fb82767b5\", \"width\": 108, \"height\": 137}, {\"url\": \"https://preview.redd.it/iehia1npi6331.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=98df36c895382c4e66af3dca3eedf6c1bedca176\", \"width\": 216, \"height\": 275}, {\"url\": \"https://preview.redd.it/iehia1npi6331.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ba8c6a86538306eab817a8312e37288bb1b82ed7\", \"width\": 320, \"height\": 408}, {\"url\": \"https://preview.redd.it/iehia1npi6331.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=9ff2df65c116797c9b903048e7a03a4a4ac92120\", \"width\": 640, \"height\": 816}], \"variants\": {}, \"id\": \"-EAXgBEx7oLSvGtPqNgPn1_dW8C88iWDNIyzYGzbggs\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bybbep\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bybbep/test_smaller_img/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/iehia1npi6331.jpg\", \"subreddit_subscribers\": 720, \"created_utc\": 1560020504.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"jpeg test link\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_byb52e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/MAPgHAvnKVmgM5ydCxFzd0a_0NQDNmfLXWuzPuGm6c8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560048276.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"shroomposter.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/UWlt9Svy8BBa_kb2lF3U-LMSOT5jFSebHLMNdi6MZGk.jpg?auto=webp\\u0026s=e1039fcd6f7412d172bcea640e1524bb1180d115\", \"width\": 941, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/UWlt9Svy8BBa_kb2lF3U-LMSOT5jFSebHLMNdi6MZGk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d0ca83bd344d0a712bcb84219c7afeca5594f64f\", \"width\": 108, \"height\": 137}, {\"url\": \"https://external-preview.redd.it/UWlt9Svy8BBa_kb2lF3U-LMSOT5jFSebHLMNdi6MZGk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fa63c09bc4073fc0bc0e6555ad04b1f085d9b44a\", \"width\": 216, \"height\": 275}, {\"url\": \"https://external-preview.redd.it/UWlt9Svy8BBa_kb2lF3U-LMSOT5jFSebHLMNdi6MZGk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ff5979b14ff19a26ba7d1bf1a8b8bc7256016786\", \"width\": 320, \"height\": 408}, {\"url\": \"https://external-preview.redd.it/UWlt9Svy8BBa_kb2lF3U-LMSOT5jFSebHLMNdi6MZGk.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=72290ef6fc76dc46a98ec0380541bae66cdccea4\", \"width\": 640, \"height\": 816}], \"variants\": {}, \"id\": \"wj6j-IHg_RN7kdS523omYeMAijS04-wGOmosfYNqTjQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byb52e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/byb52e/jpeg_test_link/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://shroomposter.com\", \"subreddit_subscribers\": 720, \"created_utc\": 1560019476.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test text\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test 2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_byatgq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560046407.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest text\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byatgq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/byatgq/test_2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/byatgq/test_2/\", \"subreddit_subscribers\": 720, \"created_utc\": 1560017607.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3wp9tjx2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"jpeg test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_byamfk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/twu8B5AYT15-fC71lG9N25NJ3B2n8Dn2lMnf62rdZLY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1560045311.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/iwrzauii36331.jpg?auto=webp\\u0026s=bd0c38b20f9f4fd60baa5415f4b4199defd5453d\", \"width\": 944, \"height\": 1204}, \"resolutions\": [{\"url\": \"https://preview.redd.it/iwrzauii36331.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d735630ad97c0c8b53d1546ba9ea2cff8a32c8dd\", \"width\": 108, \"height\": 137}, {\"url\": \"https://preview.redd.it/iwrzauii36331.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=27e87910ff9dabe908e89247e985af3f276d72e5\", \"width\": 216, \"height\": 275}, {\"url\": \"https://preview.redd.it/iwrzauii36331.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=015166301b216ee1f29f47595c86b6a5cfac2a41\", \"width\": 320, \"height\": 408}, {\"url\": \"https://preview.redd.it/iwrzauii36331.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=399d26d173370b3a37b32e3c28246207a1424771\", \"width\": 640, \"height\": 816}], \"variants\": {}, \"id\": \"_k785rA0HaHApZNM2nYTVDiJZCRmaJ9GJTjplbOTkQw\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byamfk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pd50\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/byamfk/jpeg_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/iwrzauii36331.jpg\", \"subreddit_subscribers\": 720, \"created_utc\": 1560016511.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"You can choose to make this a combat encounter or a roleplaying opportunity. There are good and evil versions of Lady Kazimir also known as The Lady of the Lake. Both are described at the end of this post. The home-brewed monster (modified wraith) is intended for a mid to high level party as they will most likely be fighting in water. That means melee attacks are at disadvantage. You can only hold your breath for so long. She has neither of these problems as she is ethereal in nature. That and she can deal nasty numbers of damage if they aren't careful.\\n\\nThis encounter is intended to be after dealing with Bluto and Arabelle. The Lady of the Lake can make an appearance with or without their involvement, but the text for this event has been written with them in mind.\\n\\n# A story of misguided jealousy\\n\\nLady Karina Kazimir was a beautiful woman of noble birth and the last of her house while Strahd was still a boy. She was to marry Lord Varik Krezkov. The two spent much time together including multiple trips the calming, peaceful waters of Lake Zarovich.\\n\\nHowever another man, Lord Nikolai Duskin, took interest in Karina. Against her will, Nikolai took her in secret. Eventually, Nikolai paraded Karina around as a trophy for all to see. She dared not defy him because of threats he had made against her and those she loved. For months, Lord Duskin and Lady Kazimir were seen together all while Varik sat and watched. Varik knew none of the maltreatment Karina had suffered. He was convinced she had betrayed his love for her and his heart became rotten with jealousy.\\n\\nThere were times when Nikolai would attempt to force himself on Karina, but she fought him off every time using her words and infectious smile to calm him. After several of Nikolai's advances and their gradual increase in physical violence, Lady Kazimir escaped Nikolai's grasp and returned to Varik, but he would have none of her explanations.\\n\\nWith his heart broken and wilted, he walked her to the lake where they had spent so much time before. She thought he had accepted her return. She would find out too late that she was wrong. During the night, he took her out to the center of Lake Zarovich and there he plunged his dagger into her heart. In his mind, it was a physical manifestation of what she had done to him. He cursed her name and let her body sink beneath the still water. Realizing what he had done, Varik was overwhelmed with grief and hung himself at the River Ivlis Crossroads.\\n\\nLady Kazimir has been bound to the waters of Lake Zarovich ever since. The true nature of her freedom lies in the remains of her dead lover, Varik. Varik's body can be found either at the River Ivlis Crossroads or in Krezk (whichever you choose). If they bring the remains to the lake, Lady Kazimir's curse will break and she will pass into the afterlife (or not depending on how you're running death and the soul in CoS).\\n\\nSightings of her over the years have earned her the title of \\\"the Lady of the Lake.\\\" Lack of understanding led the locals of the time to believe her to be an evil spirit that haunts the lake. Since people refuse to travel across the lake, the Lady of the Lake has not been seen for some time as the mist hangs above the waters.\\n\\nIt's an old story that has been long forgotten by the general populous of Barovia, but the Vistani being a well-traveled people and enchanting storytellers have heard this story before. Rictavio may have heard of this tale during his study of Strahd and Barovia. The Krezkovs would know of this story due to their family's involvement. All parties can introduce the story/song to the adventurers as a means of foreshadowing their encounter.\\n\\nA song was written in remembrance of the sad tale. (I can't songs or poetry to so be nice!)\\n\\n\\u0026#x200B;\\n\\n*An ancient land before the Devil's hold*\\n\\n*Graced with an angel wreathed in gold*\\n\\n*Her purity like that of a child*\\n\\n*Her heart filled with love, she always smiled*\\n\\n\\u0026#x200B;\\n\\n*A beast sought her heart*\\n\\n*But she would not take part*\\n\\n*Her true love grew sick with quiet jealousy*\\n\\n*His mind corrupted, he could no longer see*\\n\\n\\u0026#x200B;\\n\\n*In the end her love betrayed*\\n\\n*Her chest pierced by cold blade*\\n\\n*Forever cursed and bound to the lake*\\n\\n*From a sleep she would never wake*\\n\\n*Lady Kazimir*\\n\\n\\u0026#x200B;\\n\\nAnyone who knows the story of Lady Kazimir knows the song as well. Rictavio may sing it as part of his act. The Vistani may use the song as part of their storytelling. The Krezkovs may not be so inclined to reveal the tale because it reveals a darker side of their family they would rather keep quiet.\\n\\nAs you may have noticed some of the parts of the song don't fit the story. That is intentional. Stories passed from generation to generation change. Some parts are added. Others are changed or removed\\n\\n# Now begins the adventure for the party\\n\\n***As you cross the dark, crystalline water, a low-laying fog creeps over the glass-like surface. (Player), you look down to see a perfect reflection of your face against the lake. You squint your eyes for a second, and you see a porcelain face hiding just behind yours. As you quickly as you noticed it, the face sinks beneath the waves of the boat and out of sight.***\\n\\nLet the players discuss what was seen and what to do. If they push forward, read:\\n\\n***The fog clears to reveal a lone cluster of weathered stones that pierces the mirrored surface of the lake. Atop the stones sits a feminine figure. Her hair is dark and matted. Her clothes are worn. Her head stares down at her lap while her feet are held close to her form.***\\n\\nIf they players get closer, she immediately notices them and calls out in desperation, ***\\\"Please! Help me!\\\"*** The terrorized woman cries out incessantly until the players approach.\\n\\nThe woman calls herself Madri Kolskov (not her real name as mentioned above). She explains she's been there for days. She was travelling with the Vistani and she walked away from the camp to attend to personal matters when she was struck over the head. Next time she woke she was in a bag and being tossed overboard. She managed to escape the sack and flee the terrors that lie beneath the water. However she was left stranded on the rocks.\\n\\nIf the players decide to help the poor woman, a few moments of silence will prompt her to begin singing softly. A beautiful but sad melodic tone escapes her lips with the lyrics of the song mentioned above.\\n\\n# Good Lady Kazimir\\n\\nLady Kazimir despite her time in solitude has kept her mind and soul intact from the influence of Strahd and the Dark Powers. While she was betrayed by the one she loved most, she still seeks kindness in the hearts of others. Those who aid her are bestowed with a special gift. Each one who refuses leaves behind another scar that leads her to become **Evil Lady Kazimir.**\\n\\n\\u0026#x200B;\\n\\n**For the adventurers**\\n\\nOnce the players have reached the shore of Lake Zarovich, she will debark with them party but will not set foot out of the water. Depending on the party, she will thank them for being a reminder to her that there are still kind people in Barovia despite the darkness that surrounds the land. At some point she will also pull her part of her clothing aside revealing the small wound leading to her heart. She will be open to answering questions of her past life. If questioned about her release, she mentions she believes being reunited with her love will end her undeath.\\n\\nShe will give them a magic item for their trouble and their kindness. You can choose an item to give them or use the one provided below.\\n\\n|The Water's Song|\\n|:-|\\n|*Wondrous Item, very rare (attunement)*|\\n|2000 gp|\\n|The beautifully crafted silver necklace features tendrils of the precious metal weaving in and out of one another creating a eye-catching design. A perfectly carved teardrop sapphire is held firmly in the center. Flanking the ocean-colored gem are two smaller teardrop blue topaz gemstones. While attuned to this item, the wearer's Charisma ability score is increased to 19. This is not in addition to their current Charisma score. The wearer of this item can cast the Charm Person spell. The item has 2 charges and regains all charges at dawn.|\\n\\n# Evil Lady Kazimir\\n\\nLady Kazimir has been bound to Lake Zarovich for hundreds of years. The solitary confinement of the lake has let her mind wander. Her existence after death has been agonizing. Her mind and soul have slowly deteriorated with the Dark Powers' promise of the sweet release that is death. She fervently believes sacrificing innocent hearts will bring about this end and she will finally be able to pass.\\n\\nLady Kazimir has been manipulating Bluto every time he comes to the lake. She has him convinced she controls the creatures of the lake. She tells him if he brings her sacrifices, the fish will be jumping into his boat. The drunken fool that Bluto is complies. This is when he takes the Vistani child, Arabelle, and attempts to toss her overboard.\\n\\n\\u0026#x200B;\\n\\n**For the adventurers**\\n\\nThis portion begins just as the song ends. Lady Kazimir remembers someone taking her child sacrifice from her and someone is going to pay for it. In the potential silence to follow, read:\\n\\n***The fog of the lake returns making it nearly impossible to see. As the fog continues to close in, Madri says in a low, bone-chilling tone, \\\"You took the girl from me. I needed her for my release, but you should be an adequate replacement.\\\"***\\n\\nLady Kazimir attempts to grab the adventurer closest to her and take them into the water with her. There her true form is revealed be much more sinister.\\n\\n***Cracks form and travel along her porcelain skin. Pieces break and dissolve into the water revealing bloated, rotten flesh and bone. Her blank, glassy eyes glare into yours almost reaching your soul. Despite being underwater, her wails of agony pierce your ears clearly. Your thoughts are blurred with the screams of her pain.***\\n\\n[Lady of the Lake stat block](https://imgur.com/OEg6Ofb) and a [reference image](https://cdnb.artstation.com/p/assets/images/images/001/103/573/large/marek-madej-wraith-by-marek-madej.jpg?1440110663).\\n\\nShe will attempt to take down as many as she can. The more blood the better it is for her. Defeating Lady Kazimir will not relieve her from her state of undeath. The Dark Powers will begin working to bring her back. Her agony is their amusement.\\n\\nAny loot is up to you.\", \"author_fullname\": \"t2_fejcc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_by2v3z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559960981.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559988725.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can choose to make this a combat encounter or a roleplaying opportunity. There are good and evil versions of Lady Kazimir also known as The Lady of the Lake. Both are described at the end of this post. The home-brewed monster (modified wraith) is intended for a mid to high level party as they will most likely be fighting in water. That means melee attacks are at disadvantage. You can only hold your breath for so long. She has neither of these problems as she is ethereal in nature. That and she can deal nasty numbers of damage if they aren\\u0026#39;t careful.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis encounter is intended to be after dealing with Bluto and Arabelle. The Lady of the Lake can make an appearance with or without their involvement, but the text for this event has been written with them in mind.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EA story of misguided jealousy\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ELady Karina Kazimir was a beautiful woman of noble birth and the last of her house while Strahd was still a boy. She was to marry Lord Varik Krezkov. The two spent much time together including multiple trips the calming, peaceful waters of Lake Zarovich.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever another man, Lord Nikolai Duskin, took interest in Karina. Against her will, Nikolai took her in secret. Eventually, Nikolai paraded Karina around as a trophy for all to see. She dared not defy him because of threats he had made against her and those she loved. For months, Lord Duskin and Lady Kazimir were seen together all while Varik sat and watched. Varik knew none of the maltreatment Karina had suffered. He was convinced she had betrayed his love for her and his heart became rotten with jealousy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere were times when Nikolai would attempt to force himself on Karina, but she fought him off every time using her words and infectious smile to calm him. After several of Nikolai\\u0026#39;s advances and their gradual increase in physical violence, Lady Kazimir escaped Nikolai\\u0026#39;s grasp and returned to Varik, but he would have none of her explanations.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith his heart broken and wilted, he walked her to the lake where they had spent so much time before. She thought he had accepted her return. She would find out too late that she was wrong. During the night, he took her out to the center of Lake Zarovich and there he plunged his dagger into her heart. In his mind, it was a physical manifestation of what she had done to him. He cursed her name and let her body sink beneath the still water. Realizing what he had done, Varik was overwhelmed with grief and hung himself at the River Ivlis Crossroads.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELady Kazimir has been bound to the waters of Lake Zarovich ever since. The true nature of her freedom lies in the remains of her dead lover, Varik. Varik\\u0026#39;s body can be found either at the River Ivlis Crossroads or in Krezk (whichever you choose). If they bring the remains to the lake, Lady Kazimir\\u0026#39;s curse will break and she will pass into the afterlife (or not depending on how you\\u0026#39;re running death and the soul in CoS).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESightings of her over the years have earned her the title of \\u0026quot;the Lady of the Lake.\\u0026quot; Lack of understanding led the locals of the time to believe her to be an evil spirit that haunts the lake. Since people refuse to travel across the lake, the Lady of the Lake has not been seen for some time as the mist hangs above the waters.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s an old story that has been long forgotten by the general populous of Barovia, but the Vistani being a well-traveled people and enchanting storytellers have heard this story before. Rictavio may have heard of this tale during his study of Strahd and Barovia. The Krezkovs would know of this story due to their family\\u0026#39;s involvement. All parties can introduce the story/song to the adventurers as a means of foreshadowing their encounter.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA song was written in remembrance of the sad tale. (I can\\u0026#39;t songs or poetry to so be nice!)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EAn ancient land before the Devil\\u0026#39;s hold\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EGraced with an angel wreathed in gold\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EHer purity like that of a child\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EHer heart filled with love, she always smiled\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EA beast sought her heart\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EBut she would not take part\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EHer true love grew sick with quiet jealousy\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EHis mind corrupted, he could no longer see\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EIn the end her love betrayed\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EHer chest pierced by cold blade\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EForever cursed and bound to the lake\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EFrom a sleep she would never wake\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ELady Kazimir\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone who knows the story of Lady Kazimir knows the song as well. Rictavio may sing it as part of his act. The Vistani may use the song as part of their storytelling. The Krezkovs may not be so inclined to reveal the tale because it reveals a darker side of their family they would rather keep quiet.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs you may have noticed some of the parts of the song don\\u0026#39;t fit the story. That is intentional. Stories passed from generation to generation change. Some parts are added. Others are changed or removed\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003ENow begins the adventure for the party\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EAs you cross the dark, crystalline water, a low-laying fog creeps over the glass-like surface. (Player), you look down to see a perfect reflection of your face against the lake. You squint your eyes for a second, and you see a porcelain face hiding just behind yours. As you quickly as you noticed it, the face sinks beneath the waves of the boat and out of sight.\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet the players discuss what was seen and what to do. If they push forward, read:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe fog clears to reveal a lone cluster of weathered stones that pierces the mirrored surface of the lake. Atop the stones sits a feminine figure. Her hair is dark and matted. Her clothes are worn. Her head stares down at her lap while her feet are held close to her form.\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf they players get closer, she immediately notices them and calls out in desperation, \\u003Cstrong\\u003E\\u003Cem\\u003E\\u0026quot;Please! Help me!\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E The terrorized woman cries out incessantly until the players approach.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe woman calls herself Madri Kolskov (not her real name as mentioned above). She explains she\\u0026#39;s been there for days. She was travelling with the Vistani and she walked away from the camp to attend to personal matters when she was struck over the head. Next time she woke she was in a bag and being tossed overboard. She managed to escape the sack and flee the terrors that lie beneath the water. However she was left stranded on the rocks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the players decide to help the poor woman, a few moments of silence will prompt her to begin singing softly. A beautiful but sad melodic tone escapes her lips with the lyrics of the song mentioned above.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EGood Lady Kazimir\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ELady Kazimir despite her time in solitude has kept her mind and soul intact from the influence of Strahd and the Dark Powers. While she was betrayed by the one she loved most, she still seeks kindness in the hearts of others. Those who aid her are bestowed with a special gift. Each one who refuses leaves behind another scar that leads her to become \\u003Cstrong\\u003EEvil Lady Kazimir.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EFor the adventurers\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce the players have reached the shore of Lake Zarovich, she will debark with them party but will not set foot out of the water. Depending on the party, she will thank them for being a reminder to her that there are still kind people in Barovia despite the darkness that surrounds the land. At some point she will also pull her part of her clothing aside revealing the small wound leading to her heart. She will be open to answering questions of her past life. If questioned about her release, she mentions she believes being reunited with her love will end her undeath.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe will give them a magic item for their trouble and their kindness. You can choose an item to give them or use the one provided below.\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EThe Water\\u0026#39;s Song\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cem\\u003EWondrous Item, very rare (attunement)\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2000 gp\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EThe beautifully crafted silver necklace features tendrils of the precious metal weaving in and out of one another creating a eye-catching design. A perfectly carved teardrop sapphire is held firmly in the center. Flanking the ocean-colored gem are two smaller teardrop blue topaz gemstones. While attuned to this item, the wearer\\u0026#39;s Charisma ability score is increased to 19. This is not in addition to their current Charisma score. The wearer of this item can cast the Charm Person spell. The item has 2 charges and regains all charges at dawn.\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Ch1\\u003EEvil Lady Kazimir\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ELady Kazimir has been bound to Lake Zarovich for hundreds of years. The solitary confinement of the lake has let her mind wander. Her existence after death has been agonizing. Her mind and soul have slowly deteriorated with the Dark Powers\\u0026#39; promise of the sweet release that is death. She fervently believes sacrificing innocent hearts will bring about this end and she will finally be able to pass.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELady Kazimir has been manipulating Bluto every time he comes to the lake. She has him convinced she controls the creatures of the lake. She tells him if he brings her sacrifices, the fish will be jumping into his boat. The drunken fool that Bluto is complies. This is when he takes the Vistani child, Arabelle, and attempts to toss her overboard.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EFor the adventurers\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis portion begins just as the song ends. Lady Kazimir remembers someone taking her child sacrifice from her and someone is going to pay for it. In the potential silence to follow, read:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EThe fog of the lake returns making it nearly impossible to see. As the fog continues to close in, Madri says in a low, bone-chilling tone, \\u0026quot;You took the girl from me. I needed her for my release, but you should be an adequate replacement.\\u0026quot;\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELady Kazimir attempts to grab the adventurer closest to her and take them into the water with her. There her true form is revealed be much more sinister.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ECracks form and travel along her porcelain skin. Pieces break and dissolve into the water revealing bloated, rotten flesh and bone. Her blank, glassy eyes glare into yours almost reaching your soul. Despite being underwater, her wails of agony pierce your ears clearly. Your thoughts are blurred with the screams of her pain.\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/OEg6Ofb\\\"\\u003ELady of the Lake stat block\\u003C/a\\u003E and a \\u003Ca href=\\\"https://cdnb.artstation.com/p/assets/images/images/001/103/573/large/marek-madej-wraith-by-marek-madej.jpg?1440110663\\\"\\u003Ereference image\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe will attempt to take down as many as she can. The more blood the better it is for her. Defeating Lady Kazimir will not relieve her from her state of undeath. The Dark Powers will begin working to bring her back. Her agony is their amusement.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny loot is up to you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?auto=webp\\u0026s=141181d691587db10380ee8127a69585ddefa69b\", \"width\": 1400, \"height\": 932}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a21aba9ab1d1172c5f814729e7fe4128997eef9\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=62a7202ed45dcf87c4a55b17b50b4fd4e0b9e5d7\", \"width\": 216, \"height\": 143}, {\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cd75fd3ff5cc0cc58b5fa77b524211196bcdbe12\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=47b26571236b6e0e0992fd573382dd23da0aafb7\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2733e75c1ce97db253f6876cbac962a20f5dcf52\", \"width\": 960, \"height\": 639}, {\"url\": \"https://external-preview.redd.it/e84X2N-uYuD_TjZWU0yP0zkLVDJwU2UloHlT1FD3XXM.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=dd0f797ebde3338d64d34858f39c4f34c602a8e6\", \"width\": 1080, \"height\": 718}], \"variants\": {}, \"id\": \"4eTeSdqqMnDkjavSrUgbfQo6aocWfjarcOgzb6js6e0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"by2v3z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"theswordsecho\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/by2v3z/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/by2v3z/test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559959925.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_3um52nx7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test baby test baby 1 2 3\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxw8jy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559951688.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": true, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"rte_mode\": \"markdown\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxw8jy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxw8jy/test_baby_test_baby_1_2_3/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxw8jy/test_baby_test_baby_1_2_3/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559922888.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_b3enc15\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing handcheck\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bxw44n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/g-Vn8VE84ZMavft5yVbO-OWrqIxHFF_NiISN--__m04.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559951048.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?auto=webp\\u0026s=2a78e498199bb112ae49fd0c0d4db4a1e8cfdfdb\", \"width\": 1960, \"height\": 2614}, \"resolutions\": [{\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b2a2268872616021eba1b51f6a6d7fdd5f764d58\", \"width\": 108, \"height\": 144}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=8b9498ea5106e39ee9c17005a4b74d64ca19e02c\", \"width\": 216, \"height\": 288}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4c3181062de4fc49679215d86bc8318a42abe2bf\", \"width\": 320, \"height\": 426}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=cb4aff5dd8d61b19c53910f6a89eb0dd78ed09e9\", \"width\": 640, \"height\": 853}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=7e0f25346dbee5f27d783b741867c0abaaaf929b\", \"width\": 960, \"height\": 1280}, {\"url\": \"https://preview.redd.it/uv7goq47gy231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=f695bd8b64887728d8310ede4110d5b78d12da3e\", \"width\": 1080, \"height\": 1440}], \"variants\": {}, \"id\": \"tKhMAgZ09nb048tGiceyYag9boiLSkfCGWrTKlLmyYY\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxw44n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ymsalem\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxw44n/testing_handcheck/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/uv7goq47gy231.jpg\", \"subreddit_subscribers\": 720, \"created_utc\": 1559922248.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_x9hgy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Orleans Funk and Soul Comp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bxu0h7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/HZGF8jwxJvb-kmQ0VHxmPmJwsj7cME_lUiJh0tMOdyA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559939195.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?auto=webp\\u0026s=63435ce5b9021c26f3f3361832bee85120b95da7\", \"width\": 2997, \"height\": 3000}, \"resolutions\": [{\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4f2d78539e84109eff8c55ef3881fc5cd9895610\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=36b248b4534ebb7224b313476f08bfaeac231423\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d14878565506f79f9a565575c94dd15cb87b126f\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b8599670803f247e3567c308259e0e008d6ade54\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5f099f6836672fd6e14fc584d919502251a20062\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/st657dn4fx231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=80dc7ae6be61b47e33fb9efb8e6396ee20665a72\", \"width\": 1080, \"height\": 1081}], \"variants\": {}, \"id\": \"oOKJ7WqkVkUAvpB0GW3QoNctvySrbQLkpEE891MLydk\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu0h7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"branch_immersion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxu0h7/new_orleans_funk_and_soul_comp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/st657dn4fx231.jpg\", \"subreddit_subscribers\": 720, \"created_utc\": 1559910395.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Very sad news about the passing of Dr John. I took out a couple of his records this lunchtime and gave them a spin. \\n\\n\\u0026#x200B;\\n\\nI also dug out a copy of this compilation Saturday Night Fish Fry (New Orleans Funk And Soul). There was a post earlier this week about Betty Harris and the drums on her record. And I think generally, within this subreddit and elsewhere, there is a huge appetite for the New Orleans funk and blues. Some people may even correct me that sometimes the genre is referred to in more granular terms as fonk, I don't know. In his autobiography Dr. John put this distinct musical signature down to the unique geographic location of the City to absorb and conjoin different artistic ideas from America and the Caribbean. \\n\\n\\u0026#x200B;\\n\\nThis double lp is a collection of New Orleans funk and really gets my groove on. If you want to find out more about this City's musical heritage you could do a lot worse than get an overview from this selection.\", \"author_fullname\": \"t2_x9hgy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"New Orleans Funk and Soul Comp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxtvoq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559938349.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVery sad news about the passing of Dr John. I took out a couple of his records this lunchtime and gave them a spin. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also dug out a copy of this compilation Saturday Night Fish Fry (New Orleans Funk And Soul). There was a post earlier this week about Betty Harris and the drums on her record. And I think generally, within this subreddit and elsewhere, there is a huge appetite for the New Orleans funk and blues. Some people may even correct me that sometimes the genre is referred to in more granular terms as fonk, I don\\u0026#39;t know. In his autobiography Dr. John put this distinct musical signature down to the unique geographic location of the City to absorb and conjoin different artistic ideas from America and the Caribbean. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis double lp is a collection of New Orleans funk and really gets my groove on. If you want to find out more about this City\\u0026#39;s musical heritage you could do a lot worse than get an overview from this selection.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxtvoq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"branch_immersion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxtvoq/new_orleans_funk_and_soul_comp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxtvoq/new_orleans_funk_and_soul_comp/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559909549.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_288py4gj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Text\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxsgv0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559928038.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxsgv0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Heroquetarro10\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxsgv0/text/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxsgv0/text/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559899238.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Text Area \\\\_\\\\_\\\\_ 1234567890\", \"author_fullname\": \"t2_3l1yc231\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Testing format of post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxqfkz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559910553.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EText Area ___ 1234567890\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxqfkz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"denHting\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxqfkz/testing_format_of_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxqfkz/testing_format_of_post/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559881753.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"this is a test\", \"author_fullname\": \"t2_3um52nx7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"get get get out\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bxprj4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559906146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is a test\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": true, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"rte_mode\": \"markdown\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxprj4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxprj4/get_get_get_out/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bxprj4/get_get_get_out/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559877346.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_5ijtn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 12, \"hide_score\": false, \"name\": \"t3_bxfqen\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ZMjeoipMxQ3bRu7Gbso5AMjI0QnyRUvbys50zzeSRHg.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559850058.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?auto=webp\\u0026s=6d88313f2c01fb65fd4dfac7f372dd58761154d8\", \"width\": 1985, \"height\": 184}, \"resolutions\": [{\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ef14c58b5359e5cee2e44484a1445c24cbcb6c74\", \"width\": 108, \"height\": 10}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5c10e0ab3c5c459950fd8b2b53afc9550ada288e\", \"width\": 216, \"height\": 20}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=04da7a02871577f68e7b8f226ace537039186d1f\", \"width\": 320, \"height\": 29}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5798b9ac875f896439e407b4be792746ac5af021\", \"width\": 640, \"height\": 59}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2a6b88d3275179016bbc16a31c84fab844a21611\", \"width\": 960, \"height\": 88}, {\"url\": \"https://preview.redd.it/ol16qrsw3q231.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ac41548df3abfb57153e76f1acf77aad1ea06881\", \"width\": 1080, \"height\": 100}], \"variants\": {}, \"id\": \"37BQwgGDDek1wnbE0TCNlewSvltCJFOhbRB1kfNUMhA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfqen\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"killroy200\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxfqen/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/ol16qrsw3q231.png\", \"subreddit_subscribers\": 720, \"created_utc\": 1559821258.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_j843ij2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"David baldeon\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bxetqt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/m3rUKYfsSdlyGoaGh5wvUvrM1c4STiyplCNdlfpQRhk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559843173.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"pbs.twimg.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?auto=webp\\u0026s=43c066330a06d2d8d5bca251a8a4811882c33423\", \"width\": 1840, \"height\": 2048}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0bdafd5b0f83d3ec2b33853ea6562f883e0397c2\", \"width\": 108, \"height\": 120}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1f2a430d8f9d494b3d60dab91709ae43cece167f\", \"width\": 216, \"height\": 240}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=0fe60b0fa60898cc650a2d809feb39a7d2ce2591\", \"width\": 320, \"height\": 356}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=77a93a8b1083aa79c8639a40bb83dd9872e1788e\", \"width\": 640, \"height\": 712}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=03aa15e18e660b2763ea2a3b471f9d19e083dd9b\", \"width\": 960, \"height\": 1068}, {\"url\": \"https://external-preview.redd.it/eWGnU_-uAPEpJ85gooKkHiic0b35n8EQEC6H-hoEC1E.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c7767c724137a83b643d47906adb4f9165dce0b0\", \"width\": 1080, \"height\": 1202}], \"variants\": {}, \"id\": \"5Tr0M7lNan8uCLe6JLeIcnoU05eiHN8ApgBANUjkHug\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxetqt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mothman232\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bxetqt/david_baldeon/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://pbs.twimg.com/media/D7lJtTCXkAI0O3E.jpg:large\", \"subreddit_subscribers\": 720, \"created_utc\": 1559814373.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I CAN GO 15 SECONDS WITH ANYTHING. Howard looks like he is going to make doodie in his pants when GB hijacks his mic. Would GB walk away from this encounter if he bullied Howard in 2019? T O P L E S S\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bwsi3l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwsi3l\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Vkisu9g-VZo3thxeoTEh7_sHe6pgucV1XMkDjc08RY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559703482.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?auto=webp\\u0026s=3e2a10eb30c9a5b77b30a241735e3e8b8e1cfccc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a22b052dedffebf783ba26dae6003cd3c55a250\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcf039e2e79b58782dfd536386b50fa8b338f1d2\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=77375886fab998dde88f536da5c4503437f4c152\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"bdEz7hRKzTsVVn3Vyr7qozX0OUrbARsbBsUoqJKdw7M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwsi3l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwsi3l/i_can_go_15_seconds_with_anything_howard_looks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\\u0026t=2s\", \"subreddit_subscribers\": 720, \"created_utc\": 1559674682.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?start=2\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_11r26z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Image test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_bwl0fm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/kksd_8fx216qsy4gL0wzul47ods9QoCbZqBfN9_5nP8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559654591.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?auto=webp\\u0026s=ec79ffaf9e22e32c6e41f6946737e14d55a3b940\", \"width\": 2896, \"height\": 2896}, \"resolutions\": [{\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c3c8dfece59ca2a351d51df624d7beaabb02863c\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1b1a7dac32dd046927c2c8fc65bb58d81ac0c932\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3e8cd8af164b2b78530a4168875c3ab407422677\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=bf806ec58298e63494dd4d00966bde0c369f6c7a\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e8fc39dbf7e1348397f5a9836f13473aeff79ad1\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/8mrszs4py9231.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=86615f13d9764a381a194c798b715a78a43db6b6\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"xjLAgIF4juxLsEPnfXluO5CqMIQxaAYzHRiXsdAzPMg\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwl0fm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Syclowave\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwl0fm/image_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/8mrszs4py9231.jpg\", \"subreddit_subscribers\": 720, \"created_utc\": 1559625791.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[France](#bar-10-blue) , via u/BuzzBuzz01\\n\\n#[](#icon-info-big) About\\n\\n - **Nickname(s)**: Les Bleues\\n\\n - **Women's World Cup Appearances**: 4\\n\\n - **Best Finish**: 4th (2001)\\n\\n - **FIFA Ranking**: 4 (3rd in Europe)\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nFrance has been building it's women's football for years on years on years. With parallels to men's team (which are addressed in the P.O.D) combined with being the hosts, is expected to at the very least contest in the final. After building up from the ground up year on year on year, this seems the exact right for them to be hosting the World Cup. They're excellent in every department, with strong centrebacks who can both play out the back, proven and experienced goal scorers up top, technical midfielders, and creative wingers. France has 12 wins in the last 13 matches since the SheBelievesCup (including 3-1 against Brazil, the USA and Japan and 4-0 against Denmark + one defeat against Germany 0-1). Is this the year that France finally puts it all together to become the first ever country to hold both the men's and women's World Cups?\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager:** Corinne Diacre (France)\\n\\n**Goalkeepers:** Sarah BOUHADDI (Olympique Lyonnais), Sol\\u00e8ne DURAND (EA Guingamp), Pauline PEYRAUD-MAGNIN (Arsenal)\\n\\n**Defenders:** Julie DEBEVER (EA Guingamp), Sakina KARCHAOUI (Montpellier HSC), Amel MAJRI (Olympique Lyonnais), Griedge MBOCK (Olympique Lyonnais), \\u00c8ve P\\u00c9RISSET (Paris Saint-Germain), Wendie RENARD (Olympique Lyonnais), Marion TORRENT (Montpellier HSC), A\\u00efssatou TOUNKARA (Atl\\u00e9tico Madrid)\\n\\n**Midfielders:** Charlotte BILBAULT (Paris FC), \\u00c9lise BUSSAGLIA (Dijon FCO), Ma\\u00e9va CLEMARON (FC Fleury 91), Grace GEYORO (Paris Saint-Germain), Amandine HENRY (Olympique Lyonnais), Ga\\u00ebtane THINEY (Paris FC)\\n\\n**Forwards:** Viviane ASSEYI (Girondins de Bordeaux), Delphine CASCARINO (Olympique Lyonnais), Kadidiatou DIANI (Paris Saint-Germain), Val\\u00e9rie GAUVIN (Montpellier HSC), Emelyne LAURENT (EA Guingamp), Eug\\u00e9nie LE SOMMER (Olympique Lyonnais)\\n\\n#[](#icon-whistle-big) [Potential Starting 11](https://imgur.com/a/hMH9Gy8)\\n\\n Bouhaddi\\n\\n Torrent Renard Mbock Bathy Majri\\n\\n Bussaglia Henry (C)\\n\\n Cascarino Thiney Diani\\n\\n Le Sommer\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n[Eug\\u00e9nie Le Sommer (ST):](https://cdn-media.rtl.fr/cache/YFtm3Fv-bsG7aM6_D8KqTw/880v587-0/online/image/2018/1228/7796070733_l-attaquante-francaise-eugenie-le-sommer-le-1er-septembre-2018.jpg)\\n\\nLe Sommer usually plays up top as the out and out striker and is without a doubt the star attacking player. With 74 goals in 159 caps, Le Sommer is only 7 goals off of being the country's all time top goal scorer. Le Sommer is not simply just some poacher and can score in a multitude of ways, whether with her fox-in-the-box instincts (either her feet or her head), ability to get past defenders with her adept dribbling, or just absolutely lacing one from outside the box, Le Sommer has it all.\\n\\n[Here is a short highlight video of hers](https://www.youtube.com/watch?v=CCC4eK4aEdA)\\n\\n\\n[Amandine Henry (DM)](https://c.static-nike.com/a/images/w_960,c_limit,f_auto/x7ycyrbgveskryrkkpyy/athlete-stories-amandine-henry.jpg)\\n\\nThe 29 year old captain has 83 appearances and 11 goals for the national team. With the ability to launch a belter outside the box, Henry is the calm metronome in midfield for France. If you were to compare her to a player it would have to be a prime Sergio Busquets. A very one-touch oriented style of play, Henry uses her calmness and series of fakes and feints to swivel and alleviate pressure with ease. And if she does somehow manage to lose the ball, she's quick and strong to recover and win it back.\\n\\n[Here is a featurette on Henry done by France's official YouTube channel](https://www.youtube.com/watch?v=YMUzaTan7mM)\\n\\n[Here is a Henry highlight video in France's 3-1 win over the USA in January](https://www.youtube.com/watch?v=ry4Ed25fCu8)\\n\\nQuite literally the heart of the midfielder and always in the right spot, Henry will play a key role for France. If they do happen to match up against the USA in the quarterfinal if all goes accepted, her matchup against Julie Ertz should definitely be one to watch out for.\\n\\n\\n[Wendie Renard (CB)](https://i.pinimg.com/originals/51/75/7f/51757f3bb7e30e196793fcf928a1e884.jpg)\\n\\nThe former captain, Renard is without a doubt one of the best defenders in the world. At 6'2\\\" (188 cm), Renard is one of the biggest and tallest players at the tournament, which makes a particular threat on set pieces in defence and attack, seen with her 12 goals in 26 matches across the league and Champions League with the oh so dominant Lyon. Though don't be fooled, Renard is not just a French Gareth McAuley, she also provides an excellent Plan B with her pinpoint long balls from the back. If a team happens to be pressuring France extensively, just get to Renard and she'll knock one into the channels or over the top with Bonnucci/van Dijk levels of precision.\\n\\n#[](#icon-discuss-big) Points of Discussion\\n\\n - **The Seeming Parallels to the Men's Team**\\nLet's look back at the discussion points surrounding the men's team. \\nManaged by a former player, Didier Deschamps for the men's and Corinne Diacre for the women, the latter of which became the first woman to manage a men's professional football match, when she took charge of Clermont Foot.\\nAbsolutely loaded with talent. experience plus up and coming stars\\nLeft some talent at home to try and fit together players who fit the system, in the case of the men's it was Lacazette and with the women's it's with Division 1 F\\u00e9minine's top goalscorer Marie-Antoinette Katoto, who had 22 goals in 22 games at only 20 years old\\nHaven't made nearly as far as they should have in previous tournaments and have lots of pressure to turn that around this time around, with the women having more pressure being the hosts\\n\\n\\n - **Lyon Dominant**\\nIf they trot out with the expected XI, seven of their starting XI are a part of the Champions League winning Lyon, who are blessed with stars from across the planet. Since Lyon put money into women's football quite early on, they've seemed to reap the benefits immensely. Lyon have won 13 straight league titles and 4 straight Champions League's. They scored 89 goals and allowed only 6 in 22 matches this season, going 20-2-0 and 62 points, and PSG were still hot on their tail with 57. With a core of players playing with one another week in week out, this is a definite positive heading into the tournament\\n\\n\\n- **Their Style of Play**\\nFrance are no one-dimensional team, being able to attack in a number of ways, with a particular emphasis on attacking the wings and overloading one side to make space in the middle to get to their goal scorers. The left overload is one to be particularly terrified of, as Henry drifts out to the channels to support an overlapping Majri, who is one of the most technically gifted defenders at the tournament, coupled with Diani and Thiney, a combination of very high skilled players that teams will be forced to double up with, leaving the deadly Le Sommer room to manuever in and around the box\\n\\nOther players to look out for include Amel Majri (LB) , a converted midfielder turned fullback, and with her technical ability making her one of if not the best in her position, Delphine Cascarino (RW) a typical young tricky winger who loves a little stepover or two, and the experienced 33 year old Ga\\u00ebtane Thiney (AM), who has 155 caps and 58 goals for Les Blues\\n\\n---\\n\\n[South Korea](#bar-10-red) , via u/loser0001\\n\\n#[](#icon-info-big) About\\n\\n- **Nickname(s)**: Taegeuk Ladies\\n\\n- **Appearances**: 2\\n\\n- **Best Finish**: Round of 16 (2015)\\n\\n- **FIFA Ranking**: 14\\n\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nSouth Korea women's team played their first international in 1990, when they were unsurprisingly hammered by Japan in what remains their heaviest-ever defeat. Thankfully things have improved since then. In more recent history, they finished runners-up in their group at the 2015 World Cup, behind Brazil but ahead of Costa Rica and Spain; in the Round of 16 they were knocked out by future 2019 opponents France.\\n\\n**Route to the 2019 World Cup**\\n\\nTL;DR: North South Korea best Korea\\n\\nI'm sure there are a few stories in this World Cup of teams qualifying against the odds, but South Korea's may be up there, amid unusual circumstances.\\n\\nFor background, the Asian Football Confederation (AFC) has 5 spots for the World Cup. Qualification is done via the AFC's regional tournament - the Asian Cup - held every four years, in the year before the World Cup. That makes qualification for the Asian Cup doubly important - miss out on qualifying for the Asian Cup, and you absolutely won't be going to the World Cup.\\n\\nIn the 2017 Asian Cup qualifying, South Korea were the top seeds ahead of the group draw (Japan, Australia, and China were the 1-2-3 of the previous Asian Cup and so did not participate in qualifying). Rather than the standard home and away fixtures, all group games are played in a selected 'host nation' with just 2 or 3 days rest in between games. Only the group winner qualifies for the Asian Cup proper.\\n\\nSouth Korea were drawn in a group with North Korea, then ranked #10 in the world, 7 places above them in the FIFA rankings. To make matters worse, North Korea were the selected host nation and would be playing all games on home soil. Unlucky to say the least, but how did this happen if South Korea were the top seeds?\\nFollowing the North Korean doping scandal in 2011, North Korea were banned from participating in the 2015 World Cup, and the 2014 Asian Cup (and qualifying). Because they hadn't taken part in the previous Asian Cup at all, they had the lowest seeding, being drawn from pot 5.\\n\\nBoth North and South Korea won their early group games comfortably. For the probable group-deciding match against each other, I could find exactly two highlights videos, corresponding to the respective North and South Korean broadcasts of the match. The South Korean source has an interesting camera angle but I recommend watching just the start to see the atmosphere created by a few tens of thousand of well-co-ordinated North Korean fans (attendance was reported to be 42,500). The North Korean source is in some ways much better - it has replays, alternate angles, and commentary - but the video quality makes it look like it's from a broadcast in the 90's. If you want to watch this one, the goals are at 29:00 and 51:20. There's also a penalty given and saved starting from 6:00. The match finished 1-1.\\n\\nThose were the only goals that either Korea would concede, and in the end it was South Korea that topped the group with a goal difference of +20 to North Korea's +17.\\n\\nIn the 2018 Asian Cup South Korea were once again slightly unlucky with their group draw, finding themselves with both Australia and Japan. They drew against both and finished level on points with both, but found themselves in 3rd place based on goal difference and goals scored. Thankfully this was enough to get them to a play-off against Phillipines for that last World Cup spot, whom they dispatched 5-0.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\nThe majority of the national team play their club football in the domestic WK League, with two playing in England's WSL and one in Japan. Incheon Red Angels are the dominant force in Korea, having won the past 6 league titles and are on course to make that 7 this season.\\n\\nThe team has a handful of players who were part of the U-17 World Cup winning squad from 2010.\\n\\n**Manager**: Yoon Deok-yeo (South Korea)\\n\\n**Goalkeepers:** Kang Ga-ae (Gumi), Jung Bo-ram (Hwacheon), \\tKim Min-jeong (Incheon)\\n\\n**Defenders:** Kim Hye-ri (Incheon), Shin Dam-yeong (Incheon), Lim Seon-joo (Incheon), Lee Eun-mi (Suwon), Kim Do-yeon (Incheon), Jang Sel-gi (Incheon), Jeong Yeong-a (Gyeonju), Hwang Bo-ram (Hwacheon)\\n\\n**Midfielders:** Lee Young-ju (Incheon), Kang Yu-mi (Hwacheon), Lee So-dam (Incheon), Moon Mi-ra (Suwon), Cho So-hyun (West Ham), Lee Min-a (INAC Kobe), Kang Chae-rim (Incheon)\\n\\n**Forwards:** Jung Seol-bin (Incheon), Ji So-yun (Chelsea), Lee Geum-min (Gyeonju), Yeo Min-ji (Suwon), Son Hwa-yeon (Changnyeon)\\n\\n#[](#icon-whistle-big) [Potential Starting 11](https://i.imgur.com/ejiZpWV.jpg)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**[Ji So-yun](http://photo.hankooki.com/newsphoto/v001/2019/04/09/holic20190409183756_P_02_C_1.jpg)**: Korean prodigy - youngest senior national team debut and goal, both at the age of 15, and highest ever goal scorer (54 in 116 appearances). Unusual in that she did not start her senior club career in Korea, being signed early by INAC Kobe Leonessa. In her 3 years in Japan she won three League titles, and just before leaving for Chelsea she managed to score against them in the final of the International Women's Club Championship (Japan's attempt to get a Club World Cup going). Since moving to England with Chelsea, she has added another few titles to the collection, and is a regular nominee and occasional winner for PFA player of the year. Has excellent dead ball skills and is just generally a class above. Is hugely important to the team - more so than Son Heung-min is to the men's team.\\n\\n**[Cho So-hyun](https://img.sbs.co.kr/newimg/news/20181229/201266238_1280.jpg)**: Korea's captain and most capped player ever with 121 appearances. Spent the majority of her career with Incheon in the WK League, but in the past few years has played in Japan, Norway, and signed for West Ham at the start of 2019. Usually plays as DM between the defensive and midfield lines. The coach has sometimes started her in a CB position for extra reliability, but midfield is her natural position.\\n\\n---\\n\\n\\n#[](#icon-discuss-big) Points of Discussion\\n\\n - **Norway**\\n\\nThe main point of discussion is trying to work out how good this South Korean team really is. They didn't actually lose a single game during qualifying, drawing with teams who on paper were much better - North Korea, Australia, and Japan. This has seen their FIFA ranking steadily rise, and I'm not sure if it has settled on its 'true' value yet. Progressing to the group stage again is the target for this team, and to do that, picking up points against Norway is probably required. To get a win against Norway and take the 2nd spot (barring any other upsets in the group) would be enough to label this World Cup a success.\\n\\nThe focus on Norway is evident in their pre-tournament friendlies, as they arranged two matches against Iceland and two against Sweden under the assumption that the Northern European teams will have a similar physicality to their game. In the first game against Iceland, Korea were dominant, and yet lost 3-2 as Iceland scored with their only 3 attempts on goal (to Korea's 22 shots), leading the coach to rather publicly bemoan the state of his goalkeepers and defence. At least in the goalkeeper department, his hand has been forced as veteran keeper Kim Jung-mi suffered an Achilles tendon injury in training.\\n\\n - **Future retirements?**\\n\\n\\nThis is now just my personal speculation, but the two current stars Ji So-yun and Cho So-hyun are now 28 and 30 respectively, and while they may still play in another World Cup, they also may not. With these two being so important to the team, could this be the peak of this generation of players? A lot of the current core of players are hovering around 26/27 years old, standout fullback Jang Sel-gi (KFA player of the year 2018) is 25. If South Korea won't be fielding a team of 30-year-olds in 4 years time, the team will look very different, and it's not clear who the young rising stars are now.\\n\\n---\\n\\n[Norway](#bar-10-red) , via u/Crusarius28\\n\\n#[](#icon-info-big) About\\n\\n- **Appearances**: 7 (All Editions)\\n\\n- **Best Finish**: Champions (1995)\\n\\n- **FIFA Ranking**: 12\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nFormer World and Olympic Champions Norway have fallen from power in the past decade. The team comes to France with big expectations after having qualified for another World Cup in dramatic fashion. The Norwegians left it all to the last match-day and had to earn a hard fought victory over EURO Champions Netherlands to earn automatic qualification.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager**: Martin Sjogren (Sweden)\\n\\n**Goalkeepers:** Ingrid Hjelmseth (Stabaek), Cecilie Fiskerstrand (LSK), Oda Bogstad (Arna-Bjomar)\\n\\n**Defenders:** Ingrid Wold (LSK), Maria Thorisdottir (Chelsea), Stine Hovland (Sandviken), Maren Mjelde (Chelsea), Cecilie Kvamme (Sandviken)\\n\\n**Midfielders:** Synne Hansen (LSK), Vilde Boe Risa (Kopparbergs), Caroline Hansen (Wolfsburg/Barca), Ingrid Engen (LSK), Guro Reiten (LSK), Kristine Minde (Wolfsburg), Frida Maanum (Linkoping), Karina Saevik (Kolbotn)\\n\\n**Forwards:** Elise Thorsnes (LSK), Isabell Herlovsen (Kotbotn), Lisa-Marie Utland (Rosengard), Therese Asland (LSK), amalie Eikeland (Sandviken), Emilie Haavi (LSK), Emilie Nautnes (Arna-Bjonar)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**Caroline Graham Hansen:** Completing a move to Barcelona just weeks before appearing in her first World Cup, Hansen will be Noway's most important player. The 24 yr old is the full midfield package that can control games, deliver pin point passes and score whenever needed. Ruled out of the 2015 World Cup due to a knee injury, she's back and stronger than ever. Forming a team around this future superstar was one of the headaches Coach Sjogren had this year, but it's a good headache to have.\\n\\n**Isabell Herlovsen:** 30 yr old Herlovsen is a constant goal threat. The brunt of all goals scored will be on Herlovsen's shoulders this summer. Her uncanny sense to be at the right place at the right time has paid dividends, including scoring the winner in the decider against the Netherlands. Her finishing skills will be a major key for Norway's progression.\\n\\n---\\n\\n#[](#icon-discuss) Points of Discussion\\n\\n**Turning Experience into Results**\\n\\nNorway are no strangers to winning and a realistic goal this year will be to get a medal. High expectations come from a storied past but following in the footsteps of legends proves no easy task. In terms of quality, Norway aren't able to best the top teams, but are certainly best of the rest and managing to utilize all their experience and hunger to put together performances early on versus Nigeria and France in the toughest qualifying group will be important to building momentum for Norway.\\n\\n**Defense**\\n\\nDefense wins championships, and true to the old adage, Norway's defense will be key. Chelsea duo Mjelde and Thorisd\\u00f3ttir are important in the back but Thorisdottir has missed half the season due to injury and may not be fully fit. Mjelde's responsibilities will extend to organizing the midfield during transitions, even more importantly as she herself likes to get forward and score goals. She's scored 19 goals for Norway from the fullback position thus far.\\n\\n**Ada Hedgerberg**\\n\\nThe world's best female player Ada Hedgerberg has refused to play for Norway since 2017 (think Messi refusing to play for Argentina), and the current team has done well to step up in her absence. While Hedgerberg has taken headlines this summer due to her stance on the treatment of women's footballers in Norway, the team has to continue doing what they've been doing for the past two years and not let any of the new found media attention affect their performances.\\n\\n---\\n[Nigeria](#bar-10-green) , via u/Crusarius28\\n\\n#[](#icon-info-big) About\\n\\n- **Appearances**: 7 (All Editions)\\n\\n- **Best Finish**: Quarter Finals (1999)\\n\\n- **FIFA Ranking**: 38\\n\\n\\n---\\n\\n#[](#icon-notes-big) Introduction\\n\\nNigeria have dominated Africa with 9 out of 11 Women's African Cup of Nations. But turning continental results into intercontinental ones proves tough, they haven't progressed past the group stages since 1999. Their search for more will be toughened by the hardest group in the World Cup with games versus France, Nigeria and Norway proving a major hurdle.\\n\\n---\\n\\n#[](#icon-news-big) Manager and Squad\\n\\n**Manager**: Thoms Dennerby (Sweden)\\n\\n**Goalkeepers:** Tochukwu Oluehi (Rivers Angels), Chiamaka Nnadozie (Rivers Angels), Alaba Jonathan (Bayelsa Queens)\\n\\n**Defenders:** Osinachi Ohale (Vaxjo), Ngozi Ebere (Arna-Bjomar), Onome Ebi (Henan Huishang), Faith Michael (Pitea), Chidinma Okeke (Robo Queens)\\n\\n**Midfielders:** Amarachi Okoronkwo (Nasarawa Amazons), Evelyn Nwabuoku (Rivers Angels), Rita Chikwelu (Kristianstads), Ngozi Okobi-Okeoghene (Eskilstuna Utd), Halimatu Ayinde (Eskilstuna Utd), oganna Chukwudi (Djurgarden)\\n\\n**Forwards:** Anam Imo (Rosengard), Asisat Oshoala (Barcelona), Desire oparanozie (Guingamp), Chinaza Uchendu (Braga), Uchenna Kanu (Southeastern Fire), Rasheedat Ajibade (Avaldsnes), Francisca Ordega (Shangai), Chinwendu Ihezuo (Henan Huishang), Alice Ogebe (Rivers Angels)\\n\\n---\\n\\n#[](#icon-info-big) Players to Watch\\n\\n**Asisat Oshoala:** \\u201cSuperzee\\u201d has added Women's African Footballer of the Year award to her title. Three time Women's African Footballer of the year in fact. Her clinical ability in front of goal, raw pace and power put her on the map back in 2014 and now she's leading the line at Barcelona and helping them to their first ever Women's Champions League Final in history.\\n\\n**Onome Ebi:** Playing in China hasn't hampered the 36yr old Nigerian. Her game reading and anticipation makes her a striker's nightmare. Add that to her supreme strength and you have a player that can shut down all but the fastest forwards in the game. Ebi will be representing the Super Eagles for the 5th time this summer.\\n\\n---\\n\\n#[](#icon-discuss) Points of Discussion\\n\\n**Preparation for Tournaments**\\n\\nThe Ladies of Nigeria have been underfunded and their tournament preparations have always been the absolute minimum if non existent. They went 2 full years without playing a game from May 2016 to April 2018, months before the next major tournament. They've fixed that issue this time around and have participated in several tournaments, friendlies and training camps that hopefully give them the push they need to defeat the group stage this time around.\\n\\n**Set Pieces and Defensive Gaps**\\n\\nThe Nigerians play a high defensive line and leave gaps but yet they only conceded 1 goal the entire AFCON tournament in 2018. Plugging those holes are important but recent friendlies and showings at the Algarve Cup exposed a weakness to set pieces as well. Ebi is 36 yrs old and even though her mind is quick, her feet are not and it will be the responsibility of the midfield to plug the gaps and not allow teams to get the ball to their forwards looking to make run behind.\\n\\n**Quick Transitions**\\n\\nThe midfield not only has to cover for gaps but quickly move the ball forward during transitions to the forwards. Nigeria's strengths and speed comes from their star strikers and they'll get the ball at every opportunity. Their top heavy system works when the ball is constantly up the pitch to the final third where their creative offense can shine.\", \"author_fullname\": \"t2_pasw0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"2019 Women's World Cup Group A Profile: France, South Korea, Norway, Nigeria\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwkei5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559621947.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559650215.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-blue\\\"\\u003EFrance\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/BuzzBuzz01\\\"\\u003Eu/BuzzBuzz01\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ENickname(s)\\u003C/strong\\u003E: Les Bleues\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWomen\\u0026#39;s World Cup Appearances\\u003C/strong\\u003E: 4\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: 4th (2001)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 4 (3rd in Europe)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFrance has been building it\\u0026#39;s women\\u0026#39;s football for years on years on years. With parallels to men\\u0026#39;s team (which are addressed in the P.O.D) combined with being the hosts, is expected to at the very least contest in the final. After building up from the ground up year on year on year, this seems the exact right for them to be hosting the World Cup. They\\u0026#39;re excellent in every department, with strong centrebacks who can both play out the back, proven and experienced goal scorers up top, technical midfielders, and creative wingers. France has 12 wins in the last 13 matches since the SheBelievesCup (including 3-1 against Brazil, the USA and Japan and 4-0 against Denmark + one defeat against Germany 0-1). Is this the year that France finally puts it all together to become the first ever country to hold both the men\\u0026#39;s and women\\u0026#39;s World Cups?\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager:\\u003C/strong\\u003E Corinne Diacre (France)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Sarah BOUHADDI (Olympique Lyonnais), Sol\\u00e8ne DURAND (EA Guingamp), Pauline PEYRAUD-MAGNIN (Arsenal)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Julie DEBEVER (EA Guingamp), Sakina KARCHAOUI (Montpellier HSC), Amel MAJRI (Olympique Lyonnais), Griedge MBOCK (Olympique Lyonnais), \\u00c8ve P\\u00c9RISSET (Paris Saint-Germain), Wendie RENARD (Olympique Lyonnais), Marion TORRENT (Montpellier HSC), A\\u00efssatou TOUNKARA (Atl\\u00e9tico Madrid)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Charlotte BILBAULT (Paris FC), \\u00c9lise BUSSAGLIA (Dijon FCO), Ma\\u00e9va CLEMARON (FC Fleury 91), Grace GEYORO (Paris Saint-Germain), Amandine HENRY (Olympique Lyonnais), Ga\\u00ebtane THINEY (Paris FC)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Viviane ASSEYI (Girondins de Bordeaux), Delphine CASCARINO (Olympique Lyonnais), Kadidiatou DIANI (Paris Saint-Germain), Val\\u00e9rie GAUVIN (Montpellier HSC), Emelyne LAURENT (EA Guingamp), Eug\\u00e9nie LE SOMMER (Olympique Lyonnais)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-whistle-big\\\"\\u003E\\u003C/a\\u003E \\u003Ca href=\\\"https://imgur.com/a/hMH9Gy8\\\"\\u003EPotential Starting 11\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Bouhaddi\\n\\n Torrent Renard Mbock Bathy Majri\\n\\n Bussaglia Henry (C)\\n\\n Cascarino Thiney Diani\\n\\n Le Sommer\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cdn-media.rtl.fr/cache/YFtm3Fv-bsG7aM6_D8KqTw/880v587-0/online/image/2018/1228/7796070733_l-attaquante-francaise-eugenie-le-sommer-le-1er-septembre-2018.jpg\\\"\\u003EEug\\u00e9nie Le Sommer (ST):\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELe Sommer usually plays up top as the out and out striker and is without a doubt the star attacking player. With 74 goals in 159 caps, Le Sommer is only 7 goals off of being the country\\u0026#39;s all time top goal scorer. Le Sommer is not simply just some poacher and can score in a multitude of ways, whether with her fox-in-the-box instincts (either her feet or her head), ability to get past defenders with her adept dribbling, or just absolutely lacing one from outside the box, Le Sommer has it all.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=CCC4eK4aEdA\\\"\\u003EHere is a short highlight video of hers\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://c.static-nike.com/a/images/w_960,c_limit,f_auto/x7ycyrbgveskryrkkpyy/athlete-stories-amandine-henry.jpg\\\"\\u003EAmandine Henry (DM)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe 29 year old captain has 83 appearances and 11 goals for the national team. With the ability to launch a belter outside the box, Henry is the calm metronome in midfield for France. If you were to compare her to a player it would have to be a prime Sergio Busquets. A very one-touch oriented style of play, Henry uses her calmness and series of fakes and feints to swivel and alleviate pressure with ease. And if she does somehow manage to lose the ball, she\\u0026#39;s quick and strong to recover and win it back.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=YMUzaTan7mM\\\"\\u003EHere is a featurette on Henry done by France\\u0026#39;s official YouTube channel\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=ry4Ed25fCu8\\\"\\u003EHere is a Henry highlight video in France\\u0026#39;s 3-1 win over the USA in January\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuite literally the heart of the midfielder and always in the right spot, Henry will play a key role for France. If they do happen to match up against the USA in the quarterfinal if all goes accepted, her matchup against Julie Ertz should definitely be one to watch out for.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.pinimg.com/originals/51/75/7f/51757f3bb7e30e196793fcf928a1e884.jpg\\\"\\u003EWendie Renard (CB)\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe former captain, Renard is without a doubt one of the best defenders in the world. At 6\\u0026#39;2\\u0026quot; (188 cm), Renard is one of the biggest and tallest players at the tournament, which makes a particular threat on set pieces in defence and attack, seen with her 12 goals in 26 matches across the league and Champions League with the oh so dominant Lyon. Though don\\u0026#39;t be fooled, Renard is not just a French Gareth McAuley, she also provides an excellent Plan B with her pinpoint long balls from the back. If a team happens to be pressuring France extensively, just get to Renard and she\\u0026#39;ll knock one into the channels or over the top with Bonnucci/van Dijk levels of precision.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss-big\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EThe Seeming Parallels to the Men\\u0026#39;s Team\\u003C/strong\\u003E\\nLet\\u0026#39;s look back at the discussion points surrounding the men\\u0026#39;s team. \\nManaged by a former player, Didier Deschamps for the men\\u0026#39;s and Corinne Diacre for the women, the latter of which became the first woman to manage a men\\u0026#39;s professional football match, when she took charge of Clermont Foot.\\nAbsolutely loaded with talent. experience plus up and coming stars\\nLeft some talent at home to try and fit together players who fit the system, in the case of the men\\u0026#39;s it was Lacazette and with the women\\u0026#39;s it\\u0026#39;s with Division 1 F\\u00e9minine\\u0026#39;s top goalscorer Marie-Antoinette Katoto, who had 22 goals in 22 games at only 20 years old\\nHaven\\u0026#39;t made nearly as far as they should have in previous tournaments and have lots of pressure to turn that around this time around, with the women having more pressure being the hosts\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ELyon Dominant\\u003C/strong\\u003E\\nIf they trot out with the expected XI, seven of their starting XI are a part of the Champions League winning Lyon, who are blessed with stars from across the planet. Since Lyon put money into women\\u0026#39;s football quite early on, they\\u0026#39;ve seemed to reap the benefits immensely. Lyon have won 13 straight league titles and 4 straight Champions League\\u0026#39;s. They scored 89 goals and allowed only 6 in 22 matches this season, going 20-2-0 and 62 points, and PSG were still hot on their tail with 57. With a core of players playing with one another week in week out, this is a definite positive heading into the tournament\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ETheir Style of Play\\u003C/strong\\u003E\\nFrance are no one-dimensional team, being able to attack in a number of ways, with a particular emphasis on attacking the wings and overloading one side to make space in the middle to get to their goal scorers. The left overload is one to be particularly terrified of, as Henry drifts out to the channels to support an overlapping Majri, who is one of the most technically gifted defenders at the tournament, coupled with Diani and Thiney, a combination of very high skilled players that teams will be forced to double up with, leaving the deadly Le Sommer room to manuever in and around the box\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EOther players to look out for include Amel Majri (LB) , a converted midfielder turned fullback, and with her technical ability making her one of if not the best in her position, Delphine Cascarino (RW) a typical young tricky winger who loves a little stepover or two, and the experienced 33 year old Ga\\u00ebtane Thiney (AM), who has 155 caps and 58 goals for Les Blues\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-red\\\"\\u003ESouth Korea\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/loser0001\\\"\\u003Eu/loser0001\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003ENickname(s)\\u003C/strong\\u003E: Taegeuk Ladies\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 2\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Round of 16 (2015)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 14\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ESouth Korea women\\u0026#39;s team played their first international in 1990, when they were unsurprisingly hammered by Japan in what remains their heaviest-ever defeat. Thankfully things have improved since then. In more recent history, they finished runners-up in their group at the 2015 World Cup, behind Brazil but ahead of Costa Rica and Spain; in the Round of 16 they were knocked out by future 2019 opponents France.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERoute to the 2019 World Cup\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETL;DR: North South Korea best Korea\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sure there are a few stories in this World Cup of teams qualifying against the odds, but South Korea\\u0026#39;s may be up there, amid unusual circumstances.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor background, the Asian Football Confederation (AFC) has 5 spots for the World Cup. Qualification is done via the AFC\\u0026#39;s regional tournament - the Asian Cup - held every four years, in the year before the World Cup. That makes qualification for the Asian Cup doubly important - miss out on qualifying for the Asian Cup, and you absolutely won\\u0026#39;t be going to the World Cup.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the 2017 Asian Cup qualifying, South Korea were the top seeds ahead of the group draw (Japan, Australia, and China were the 1-2-3 of the previous Asian Cup and so did not participate in qualifying). Rather than the standard home and away fixtures, all group games are played in a selected \\u0026#39;host nation\\u0026#39; with just 2 or 3 days rest in between games. Only the group winner qualifies for the Asian Cup proper.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESouth Korea were drawn in a group with North Korea, then ranked #10 in the world, 7 places above them in the FIFA rankings. To make matters worse, North Korea were the selected host nation and would be playing all games on home soil. Unlucky to say the least, but how did this happen if South Korea were the top seeds?\\nFollowing the North Korean doping scandal in 2011, North Korea were banned from participating in the 2015 World Cup, and the 2014 Asian Cup (and qualifying). Because they hadn\\u0026#39;t taken part in the previous Asian Cup at all, they had the lowest seeding, being drawn from pot 5.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth North and South Korea won their early group games comfortably. For the probable group-deciding match against each other, I could find exactly two highlights videos, corresponding to the respective North and South Korean broadcasts of the match. The South Korean source has an interesting camera angle but I recommend watching just the start to see the atmosphere created by a few tens of thousand of well-co-ordinated North Korean fans (attendance was reported to be 42,500). The North Korean source is in some ways much better - it has replays, alternate angles, and commentary - but the video quality makes it look like it\\u0026#39;s from a broadcast in the 90\\u0026#39;s. If you want to watch this one, the goals are at 29:00 and 51:20. There\\u0026#39;s also a penalty given and saved starting from 6:00. The match finished 1-1.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThose were the only goals that either Korea would concede, and in the end it was South Korea that topped the group with a goal difference of +20 to North Korea\\u0026#39;s +17.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the 2018 Asian Cup South Korea were once again slightly unlucky with their group draw, finding themselves with both Australia and Japan. They drew against both and finished level on points with both, but found themselves in 3rd place based on goal difference and goals scored. Thankfully this was enough to get them to a play-off against Phillipines for that last World Cup spot, whom they dispatched 5-0.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EThe majority of the national team play their club football in the domestic WK League, with two playing in England\\u0026#39;s WSL and one in Japan. Incheon Red Angels are the dominant force in Korea, having won the past 6 league titles and are on course to make that 7 this season.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe team has a handful of players who were part of the U-17 World Cup winning squad from 2010.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Yoon Deok-yeo (South Korea)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Kang Ga-ae (Gumi), Jung Bo-ram (Hwacheon), Kim Min-jeong (Incheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Kim Hye-ri (Incheon), Shin Dam-yeong (Incheon), Lim Seon-joo (Incheon), Lee Eun-mi (Suwon), Kim Do-yeon (Incheon), Jang Sel-gi (Incheon), Jeong Yeong-a (Gyeonju), Hwang Bo-ram (Hwacheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Lee Young-ju (Incheon), Kang Yu-mi (Hwacheon), Lee So-dam (Incheon), Moon Mi-ra (Suwon), Cho So-hyun (West Ham), Lee Min-a (INAC Kobe), Kang Chae-rim (Incheon)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Jung Seol-bin (Incheon), Ji So-yun (Chelsea), Lee Geum-min (Gyeonju), Yeo Min-ji (Suwon), Son Hwa-yeon (Changnyeon)\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-whistle-big\\\"\\u003E\\u003C/a\\u003E \\u003Ca href=\\\"https://i.imgur.com/ejiZpWV.jpg\\\"\\u003EPotential Starting 11\\u003C/a\\u003E\\u003C/h1\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"http://photo.hankooki.com/newsphoto/v001/2019/04/09/holic20190409183756_P_02_C_1.jpg\\\"\\u003EJi So-yun\\u003C/a\\u003E\\u003C/strong\\u003E: Korean prodigy - youngest senior national team debut and goal, both at the age of 15, and highest ever goal scorer (54 in 116 appearances). Unusual in that she did not start her senior club career in Korea, being signed early by INAC Kobe Leonessa. In her 3 years in Japan she won three League titles, and just before leaving for Chelsea she managed to score against them in the final of the International Women\\u0026#39;s Club Championship (Japan\\u0026#39;s attempt to get a Club World Cup going). Since moving to England with Chelsea, she has added another few titles to the collection, and is a regular nominee and occasional winner for PFA player of the year. Has excellent dead ball skills and is just generally a class above. Is hugely important to the team - more so than Son Heung-min is to the men\\u0026#39;s team.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"https://img.sbs.co.kr/newimg/news/20181229/201266238_1280.jpg\\\"\\u003ECho So-hyun\\u003C/a\\u003E\\u003C/strong\\u003E: Korea\\u0026#39;s captain and most capped player ever with 121 appearances. Spent the majority of her career with Incheon in the WK League, but in the past few years has played in Japan, Norway, and signed for West Ham at the start of 2019. Usually plays as DM between the defensive and midfield lines. The coach has sometimes started her in a CB position for extra reliability, but midfield is her natural position.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss-big\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ENorway\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThe main point of discussion is trying to work out how good this South Korean team really is. They didn\\u0026#39;t actually lose a single game during qualifying, drawing with teams who on paper were much better - North Korea, Australia, and Japan. This has seen their FIFA ranking steadily rise, and I\\u0026#39;m not sure if it has settled on its \\u0026#39;true\\u0026#39; value yet. Progressing to the group stage again is the target for this team, and to do that, picking up points against Norway is probably required. To get a win against Norway and take the 2nd spot (barring any other upsets in the group) would be enough to label this World Cup a success.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe focus on Norway is evident in their pre-tournament friendlies, as they arranged two matches against Iceland and two against Sweden under the assumption that the Northern European teams will have a similar physicality to their game. In the first game against Iceland, Korea were dominant, and yet lost 3-2 as Iceland scored with their only 3 attempts on goal (to Korea\\u0026#39;s 22 shots), leading the coach to rather publicly bemoan the state of his goalkeepers and defence. At least in the goalkeeper department, his hand has been forced as veteran keeper Kim Jung-mi suffered an Achilles tendon injury in training.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFuture retirements?\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThis is now just my personal speculation, but the two current stars Ji So-yun and Cho So-hyun are now 28 and 30 respectively, and while they may still play in another World Cup, they also may not. With these two being so important to the team, could this be the peak of this generation of players? A lot of the current core of players are hovering around 26/27 years old, standout fullback Jang Sel-gi (KFA player of the year 2018) is 25. If South Korea won\\u0026#39;t be fielding a team of 30-year-olds in 4 years time, the team will look very different, and it\\u0026#39;s not clear who the young rising stars are now.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-red\\\"\\u003ENorway\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/Crusarius28\\\"\\u003Eu/Crusarius28\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 7 (All Editions)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Champions (1995)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 12\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EFormer World and Olympic Champions Norway have fallen from power in the past decade. The team comes to France with big expectations after having qualified for another World Cup in dramatic fashion. The Norwegians left it all to the last match-day and had to earn a hard fought victory over EURO Champions Netherlands to earn automatic qualification.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Martin Sjogren (Sweden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Ingrid Hjelmseth (Stabaek), Cecilie Fiskerstrand (LSK), Oda Bogstad (Arna-Bjomar)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Ingrid Wold (LSK), Maria Thorisdottir (Chelsea), Stine Hovland (Sandviken), Maren Mjelde (Chelsea), Cecilie Kvamme (Sandviken)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Synne Hansen (LSK), Vilde Boe Risa (Kopparbergs), Caroline Hansen (Wolfsburg/Barca), Ingrid Engen (LSK), Guro Reiten (LSK), Kristine Minde (Wolfsburg), Frida Maanum (Linkoping), Karina Saevik (Kolbotn)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Elise Thorsnes (LSK), Isabell Herlovsen (Kotbotn), Lisa-Marie Utland (Rosengard), Therese Asland (LSK), amalie Eikeland (Sandviken), Emilie Haavi (LSK), Emilie Nautnes (Arna-Bjonar)\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECaroline Graham Hansen:\\u003C/strong\\u003E Completing a move to Barcelona just weeks before appearing in her first World Cup, Hansen will be Noway\\u0026#39;s most important player. The 24 yr old is the full midfield package that can control games, deliver pin point passes and score whenever needed. Ruled out of the 2015 World Cup due to a knee injury, she\\u0026#39;s back and stronger than ever. Forming a team around this future superstar was one of the headaches Coach Sjogren had this year, but it\\u0026#39;s a good headache to have.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EIsabell Herlovsen:\\u003C/strong\\u003E 30 yr old Herlovsen is a constant goal threat. The brunt of all goals scored will be on Herlovsen\\u0026#39;s shoulders this summer. Her uncanny sense to be at the right place at the right time has paid dividends, including scoring the winner in the decider against the Netherlands. Her finishing skills will be a major key for Norway\\u0026#39;s progression.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETurning Experience into Results\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENorway are no strangers to winning and a realistic goal this year will be to get a medal. High expectations come from a storied past but following in the footsteps of legends proves no easy task. In terms of quality, Norway aren\\u0026#39;t able to best the top teams, but are certainly best of the rest and managing to utilize all their experience and hunger to put together performances early on versus Nigeria and France in the toughest qualifying group will be important to building momentum for Norway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefense\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDefense wins championships, and true to the old adage, Norway\\u0026#39;s defense will be key. Chelsea duo Mjelde and Thorisd\\u00f3ttir are important in the back but Thorisdottir has missed half the season due to injury and may not be fully fit. Mjelde\\u0026#39;s responsibilities will extend to organizing the midfield during transitions, even more importantly as she herself likes to get forward and score goals. She\\u0026#39;s scored 19 goals for Norway from the fullback position thus far.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAda Hedgerberg\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe world\\u0026#39;s best female player Ada Hedgerberg has refused to play for Norway since 2017 (think Messi refusing to play for Argentina), and the current team has done well to step up in her absence. While Hedgerberg has taken headlines this summer due to her stance on the treatment of women\\u0026#39;s footballers in Norway, the team has to continue doing what they\\u0026#39;ve been doing for the past two years and not let any of the new found media attention affect their performances.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"#bar-10-green\\\"\\u003ENigeria\\u003C/a\\u003E , via \\u003Ca href=\\\"/u/Crusarius28\\\"\\u003Eu/Crusarius28\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E About\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EAppearances\\u003C/strong\\u003E: 7 (All Editions)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBest Finish\\u003C/strong\\u003E: Quarter Finals (1999)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EFIFA Ranking\\u003C/strong\\u003E: 38\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-notes-big\\\"\\u003E\\u003C/a\\u003E Introduction\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003ENigeria have dominated Africa with 9 out of 11 Women\\u0026#39;s African Cup of Nations. But turning continental results into intercontinental ones proves tough, they haven\\u0026#39;t progressed past the group stages since 1999. Their search for more will be toughened by the hardest group in the World Cup with games versus France, Nigeria and Norway proving a major hurdle.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-news-big\\\"\\u003E\\u003C/a\\u003E Manager and Squad\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EManager\\u003C/strong\\u003E: Thoms Dennerby (Sweden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGoalkeepers:\\u003C/strong\\u003E Tochukwu Oluehi (Rivers Angels), Chiamaka Nnadozie (Rivers Angels), Alaba Jonathan (Bayelsa Queens)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDefenders:\\u003C/strong\\u003E Osinachi Ohale (Vaxjo), Ngozi Ebere (Arna-Bjomar), Onome Ebi (Henan Huishang), Faith Michael (Pitea), Chidinma Okeke (Robo Queens)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidfielders:\\u003C/strong\\u003E Amarachi Okoronkwo (Nasarawa Amazons), Evelyn Nwabuoku (Rivers Angels), Rita Chikwelu (Kristianstads), Ngozi Okobi-Okeoghene (Eskilstuna Utd), Halimatu Ayinde (Eskilstuna Utd), oganna Chukwudi (Djurgarden)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EForwards:\\u003C/strong\\u003E Anam Imo (Rosengard), Asisat Oshoala (Barcelona), Desire oparanozie (Guingamp), Chinaza Uchendu (Braga), Uchenna Kanu (Southeastern Fire), Rasheedat Ajibade (Avaldsnes), Francisca Ordega (Shangai), Chinwendu Ihezuo (Henan Huishang), Alice Ogebe (Rivers Angels)\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-info-big\\\"\\u003E\\u003C/a\\u003E Players to Watch\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAsisat Oshoala:\\u003C/strong\\u003E \\u201cSuperzee\\u201d has added Women\\u0026#39;s African Footballer of the Year award to her title. Three time Women\\u0026#39;s African Footballer of the year in fact. Her clinical ability in front of goal, raw pace and power put her on the map back in 2014 and now she\\u0026#39;s leading the line at Barcelona and helping them to their first ever Women\\u0026#39;s Champions League Final in history.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EOnome Ebi:\\u003C/strong\\u003E Playing in China hasn\\u0026#39;t hampered the 36yr old Nigerian. Her game reading and anticipation makes her a striker\\u0026#39;s nightmare. Add that to her supreme strength and you have a player that can shut down all but the fastest forwards in the game. Ebi will be representing the Super Eagles for the 5th time this summer.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch1\\u003E\\u003Ca href=\\\"#icon-discuss\\\"\\u003E\\u003C/a\\u003E Points of Discussion\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPreparation for Tournaments\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Ladies of Nigeria have been underfunded and their tournament preparations have always been the absolute minimum if non existent. They went 2 full years without playing a game from May 2016 to April 2018, months before the next major tournament. They\\u0026#39;ve fixed that issue this time around and have participated in several tournaments, friendlies and training camps that hopefully give them the push they need to defeat the group stage this time around.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESet Pieces and Defensive Gaps\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Nigerians play a high defensive line and leave gaps but yet they only conceded 1 goal the entire AFCON tournament in 2018. Plugging those holes are important but recent friendlies and showings at the Algarve Cup exposed a weakness to set pieces as well. Ebi is 36 yrs old and even though her mind is quick, her feet are not and it will be the responsibility of the midfield to plug the gaps and not allow teams to get the ball to their forwards looking to make run behind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick Transitions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe midfield not only has to cover for gaps but quickly move the ball forward during transitions to the forwards. Nigeria\\u0026#39;s strengths and speed comes from their star strikers and they\\u0026#39;ll get the ball at every opportunity. Their top heavy system works when the ball is constantly up the pitch to the final third where their creative offense can shine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?auto=webp\\u0026s=8536a1bab8642c35f8f8ce6ff0d2c225f742f0df\", \"width\": 431, \"height\": 536}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5222659d4531a310385f7ad45a6a1bee0807dcf5\", \"width\": 108, \"height\": 134}, {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b0a822a359f7492a7b1263a92b9767518ec53b66\", \"width\": 216, \"height\": 268}, {\"url\": \"https://external-preview.redd.it/NLbEchP1YYIygS9siIpsH2QEoth8ykN9XGyi402w4Ck.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c3be09db027cef0fcc3a3b228935acf88e5d6893\", \"width\": 320, \"height\": 397}], \"variants\": {}, \"id\": \"dYE-hpAiNCPKZeSNCQxv6JlVTRpt6ovh8CLxMWBANYM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwkei5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"riskyrofl\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwkei5/2019_womens_world_cup_group_a_profile_france/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwkei5/2019_womens_world_cup_group_a_profile_france/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559621415.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_31cl0lso\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TEST TELATT ITEAT - DOSEA ALRJ AR A A ER A REEE ARE A? AERE?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_bwhpb9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwhpb9\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9Vkisu9g-VZo3thxeoTEh7_sHe6pgucV1XMkDjc08RY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559633760.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?auto=webp\\u0026s=3e2a10eb30c9a5b77b30a241735e3e8b8e1cfccc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a22b052dedffebf783ba26dae6003cd3c55a250\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcf039e2e79b58782dfd536386b50fa8b338f1d2\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/z0NOMdciui0a0HAt4UadBQ-hRYrfH3LX5D56cGM4q_k.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=77375886fab998dde88f536da5c4503437f4c152\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"bdEz7hRKzTsVVn3Vyr7qozX0OUrbARsbBsUoqJKdw7M\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwhpb9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Gooforme\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwhpb9/test_telatt_iteat_dosea_alrj_ar_a_a_er_a_reee_are/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=ddXOGTmpNPA\", \"subreddit_subscribers\": 720, \"created_utc\": 1559604960.0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Gary Busey goes insane and ATTACKS Howard Stern...\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/ddXOGTmpNPA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Bens 25\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/ddXOGTmpNPA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCF7Ufxs7z-cGodzBM7RPC6A\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://i.redd.it/n6wnbnoq68231.png\\n\\nWelcome to Eternal Aegis! We are a close-knit clan dedicated to keeping a casual, fun, and welcoming atmosphere. We strive to give our members the best clan experience Warframe has to offer. If you are interested in joining, please leave a comment below or message one of us in game!\\u00a0Here is our official Warframe clan group which you can join now:\\u00a0[https://forums.warframe.com/clubs/1730-eternal-aegis/](https://forums.warframe.com/clubs/1730-eternal-aegis/)\\n\\n# What We Offer\\n\\n* A very active, friendly, and helpful community\\n* An international community with members from all over the world. Most of our players are based in North America and Western Europe\\n* Large and well-designed dojo\\u00a0[Photos of our Dojo](https://imgur.com/a/h04Gk3N)\\n* 100% Completed Clan research\\n* Casually Competitive - we do well on leaderboards, and have no minimum quota for our members.\\u00a0[http://content.warframe.com/dynamic/hostileMergers.php](http://content.warframe.com/dynamic/hostileMergers.php)\\n* Eidolon hunting, Arbitrations, and other types of content are regularly hosted\\n* We are a Moon clan with over 980+ members at any time\\n* An organized discord server with alerts, guides, announcements, and more!\\n* We frequently host clan events, contests, and giveaways\\n* We are a member of the Moonlapse Alliance, a close-knit alliance with friendly clans.\\n\\n# Our Rules\\n\\n* Be polite and respect each other. Harassment, sexism, racism, bullying, and excessive profanity will not be tolerated.\\n* No Sexual, political, or obscene discussions in clan chat or discord.\\n* Our inactivity policy is 10\\u00a0days (members gone for longer can contact a mod).\\n* Currently, we require new recruits to be MR12+ (But friends of clanmates are only required to be MR8+).\\n\\n# Join Now!\\n\\nWe will need interested Tenno to comment below with the following information:\\n\\n1. Your in-game name\\n2. Your Mastery Rank (Note: Mastery Rank MR12+ is required but friends can join at MR 8+)\\n3. Your Region\\u00a0\\n4. The length of time you have been playing the game for\\n5. What you are looking for in a clan\\n6. How often are you able to play during a typical week\\n7. Have you been in a clan before? If so, which ones and why did you choose to leave?\\n\\nWe will respond as soon as possible! Reminder:\\u00a0Make sure you exit your clan before leaving a comment.\\n\\n# Contact List:\\n\\n\\\\--Aegis--Dandy\\u00a0| Nightressa | --Aegis--Paikoo | Bhesus | --Aegis--Silberon | Myzhari |\\u00a0Valkor | --Aegis--Dragunova2018 | Komi |\\u00a0Sebas\\\\_Sal12| --Aegis--Tetsuni | JohnSaint | ChaoticJiggles | Renzashi\\ufeff\", \"author_fullname\": \"t2_1gb0jvk5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[INT][PC][Clan] Eternal Aegis | 100% Research | 990+ Members | 10 Day Inactivity | MR12+ Req. | Complete Dojo | Active Discord | Organized Clan Events | Moonlapse Alliance\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"n6wnbnoq68231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 98, \"x\": 600, \"u\": \"https://i.redd.it/n6wnbnoq68231.png\"}, \"m\": \"image/png\", \"id\": \"n6wnbnoq68231\"}}, \"name\": \"t3_bwhl33\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N\\u0026image=https%3A%2F%2Fi.imgur.com%2FivbyY3D.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"377\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 377}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 1748 views. Shared by DanDay21. Eternal Aegis Dojo\", \"title\": \"Eternal Aegis Dojo\", \"url\": \"https://imgur.com/a/h04Gk3N\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 377, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N\\u0026image=https%3A%2F%2Fi.imgur.com%2FivbyY3D.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"377\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.imgur.com/ivbyY3D.jpg?fb\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N\\u0026image=https%3A%2F%2Fi.imgur.com%2FivbyY3D.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"377\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bwhl33\", \"height\": 377}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/AdMg7EUd91sNRMaEDemva54vXtcz7xPbLvAxLgMqUVg.jpg\", \"edited\": 1560367304.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559633092.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/n6wnbnoq68231.png\\\"\\u003Ehttps://i.redd.it/n6wnbnoq68231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWelcome to Eternal Aegis! We are a close-knit clan dedicated to keeping a casual, fun, and welcoming atmosphere. We strive to give our members the best clan experience Warframe has to offer. If you are interested in joining, please leave a comment below or message one of us in game!\\u00a0Here is our official Warframe clan group which you can join now:\\u00a0\\u003Ca href=\\\"https://forums.warframe.com/clubs/1730-eternal-aegis/\\\"\\u003Ehttps://forums.warframe.com/clubs/1730-eternal-aegis/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EWhat We Offer\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EA very active, friendly, and helpful community\\u003C/li\\u003E\\n\\u003Cli\\u003EAn international community with members from all over the world. Most of our players are based in North America and Western Europe\\u003C/li\\u003E\\n\\u003Cli\\u003ELarge and well-designed dojo\\u00a0\\u003Ca href=\\\"https://imgur.com/a/h04Gk3N\\\"\\u003EPhotos of our Dojo\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E100% Completed Clan research\\u003C/li\\u003E\\n\\u003Cli\\u003ECasually Competitive - we do well on leaderboards, and have no minimum quota for our members.\\u00a0\\u003Ca href=\\\"http://content.warframe.com/dynamic/hostileMergers.php\\\"\\u003Ehttp://content.warframe.com/dynamic/hostileMergers.php\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EEidolon hunting, Arbitrations, and other types of content are regularly hosted\\u003C/li\\u003E\\n\\u003Cli\\u003EWe are a Moon clan with over 980+ members at any time\\u003C/li\\u003E\\n\\u003Cli\\u003EAn organized discord server with alerts, guides, announcements, and more!\\u003C/li\\u003E\\n\\u003Cli\\u003EWe frequently host clan events, contests, and giveaways\\u003C/li\\u003E\\n\\u003Cli\\u003EWe are a member of the Moonlapse Alliance, a close-knit alliance with friendly clans.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EOur Rules\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EBe polite and respect each other. Harassment, sexism, racism, bullying, and excessive profanity will not be tolerated.\\u003C/li\\u003E\\n\\u003Cli\\u003ENo Sexual, political, or obscene discussions in clan chat or discord.\\u003C/li\\u003E\\n\\u003Cli\\u003EOur inactivity policy is 10\\u00a0days (members gone for longer can contact a mod).\\u003C/li\\u003E\\n\\u003Cli\\u003ECurrently, we require new recruits to be MR12+ (But friends of clanmates are only required to be MR8+).\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EJoin Now!\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EWe will need interested Tenno to comment below with the following information:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EYour in-game name\\u003C/li\\u003E\\n\\u003Cli\\u003EYour Mastery Rank (Note: Mastery Rank MR12+ is required but friends can join at MR 8+)\\u003C/li\\u003E\\n\\u003Cli\\u003EYour Region\\u00a0\\u003C/li\\u003E\\n\\u003Cli\\u003EThe length of time you have been playing the game for\\u003C/li\\u003E\\n\\u003Cli\\u003EWhat you are looking for in a clan\\u003C/li\\u003E\\n\\u003Cli\\u003EHow often are you able to play during a typical week\\u003C/li\\u003E\\n\\u003Cli\\u003EHave you been in a clan before? If so, which ones and why did you choose to leave?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWe will respond as soon as possible! Reminder:\\u00a0Make sure you exit your clan before leaving a comment.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EContact List:\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E--Aegis--Dandy\\u00a0| Nightressa | --Aegis--Paikoo | Bhesus | --Aegis--Silberon | Myzhari |\\u00a0Valkor | --Aegis--Dragunova2018 | Komi |\\u00a0Sebas_Sal12| --Aegis--Tetsuni | JohnSaint | ChaoticJiggles | Renzashi\\ufeff\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?auto=webp\\u0026s=e98d685d9fcf12f7f7392b525e415ac027917600\", \"width\": 2560, \"height\": 1440}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=59342af73454d35034c3c2d4f475ac9a0769342f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=33b993e87781a7e2cc16124014a2db665ad1dcf3\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=067ceadbbab70f2e7568b6194ddd308d85bf70f3\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d65ab11bab91d92431c27e891c04d4f39dd66a19\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=92623901f6db2b25568baf6fcaf5db221626276e\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/IfevmGd7ieP3X-DnbeUuONh6kuVJa_MaN8mf-WXUFdM.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=32b5ff6ab01a5aae5c9bd70cb394bfe77ac67e3b\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"O2SqmsxqqImr7fOGU_I228obe-zxqR6BfpRXHbSRU7s\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwhl33\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"EternalAegisWarframe\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwhl33/intpcclan_eternal_aegis_100_research_990_members/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwhl33/intpcclan_eternal_aegis_100_research_990_members/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559604292.0, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 1748 views. Shared by DanDay21. Eternal Aegis Dojo\", \"title\": \"Eternal Aegis Dojo\", \"url\": \"https://imgur.com/a/h04Gk3N\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 377, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2Fh04Gk3N\\u0026image=https%3A%2F%2Fi.imgur.com%2FivbyY3D.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"377\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.imgur.com/ivbyY3D.jpg?fb\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**Item #: SCP-4260**\\n\\n**Object Class: Euclid**\\n\\n**Author: Nagiros**\\n\\n\\\"*And with strange aeons even death may die.\\\"*\\n\\nHello SCPDeclassified, Brewsterion here. Today, I wanted to cover [SCP-4260](http://www.scp-wiki.net/scp-4260) at the request of the author and a few users who talked to me about it. So, let's get into it.\\n\\nWe can't get into containment procedures yet, however, as there's something very important at the top of the page.\\n\\n\\u003EThis document has been significantly edited in order to obfuscate the identity of SCP-4260; several addenda have been omitted, and are only available with **Level 5/4260 Clearance**.\\n\\nWell, this is interesting. You would think the omitting of the identity makes it an infohazard, but that's not one of the tags so we can rule that out. What it does tell us is that this thing is extremely important to the Foundation, since basically only the O5s have Level 5 clearance. Let's see what we can tell from this version, though.\\n\\n**Special Containment Procedures**\\n\\nThe first paragraph of the containment procedures isn't too weird, but some sentences do stick out. Area-03 is located 2 kilometers beneath Hong Kong, specifically to contain 4260.\\n\\n\\u003EThe containment chamber housing SCP-4260 has been augmented with a Strayer Density Matrix designed to coalesce and bind its disparate elements.\\n\\nThis is a device we haven't seen before. Disparate elements would imply an anomaly of multiple parts, however we don't seen mentions of components here. Rather this line means that whatever 4260 is, it's greatly spread out over a very large area, similar to SCP-3125, and the Foundation needs a condensed form to contain it.\\n\\n\\u003EMaintenance of the Strayer Density Matrix is integral to SCP-4260's containment and requires a specialized team of technicians and speculative ultraphysicalists.\\n\\nOh boy, new concepts. There's a footnote here that says that ultraphysicalists deal with a science of entities that produce an effect on the universe by simply existing. How this differs from normal reality benders will be explained later, but for now let's say that these things don't try to produce an effect, they just do.\\n\\nThe next sentence explains that there is a Procedure 8917 associated with 4260, and it requires joint operation of three separate MTFs. Gamma-8 uses the Density Matrices to summon 4260. Xi-2 apparently terminates 4260, but don't worry, that will be explained shortly. Tau-900 locates and terminates civilians affected by a successful termination of 4260, and remove evidence Procedure 8917 ever happened. Apparently, terminating 4260 affects people in a specific way. Not to give much away, but Tau-900's nickname is \\\"Deliverance\\\". Just wait and see.\\n\\nIt then goes on to say that Procedure 8917 is considered complete when the following steps have been met:\\n\\n1. SCP-4260 has been successfully terminated.2. The Strayer Density Matrix is fully operational.3. All affected civilians have been located and terminated.4. All evidence of Procedure 8917 has been removed.5. SCP-4260 has been resurrected.\\n\\nWell that's straightforward, if not simple. From what this tells us, between the time 4260 is terminated and brought back, civilians are affected in some way. We don't know how, or what conditions for being affected are, but we'll find out soon. More emphasis is also placed on the Density Matrix, reinforcing that the Foundation needs this, and it once again mentions removing evidence of Procedure 8917 ever happening. Basically, terminating this thing is useful for the Foundation, but it can't stay dead for long, as it has side effects. Alright.\\n\\nThe last line before the description says that the unclassified version is gonna be filled with omissions to hide the identity of 4260. As if we couldn't tell.\\n\\n**Description**\\n\\n\\u003ESCP-4260 refers to the consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. The effect of SCP-4260's existence has been well documented by almost every sapient culture. Termination of SCP-4260 has resulted in the neutralization of its primary anomalous effect until its resurrection during Procedure 8917.\\n\\nAlright, so 4260 refers to the consciousness of an entity that is present throughout the entire universe. The effect of it's existence has been documented by every sapient culture. It's kind of implied this includes aliens, which narrows it down. It's not some sort of emotional construct, it's something that effects everything, like time or gravity. Terminating it neutralizes the effect until resurrection.\\n\\nThat's it. That's the entire description. Yeah, omissions is a bit of an understatement. But there's another addendum here.\\n\\n**Addendum.4260.1**\\n\\nIt's a list of all activations of Procedure 8917. Let's try to get some answers.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 1999 \\n\\u003E \\n\\u003EMethod: Fatal puncture wounds and blood loss, administered by MTF Xi-2. \\n\\u003E \\n\\u003EReason: A massive containment failure at [Site-62C](http://www.scp-wiki.net/scp-579). \\n\\u003E \\n\\u003EDuration:110 seconds \\n\\u003E \\n\\u003EAffected: 3 civilians \\n\\u003E \\n\\u003EStatus: Recontained\\n\\nA crosslink to SCP-579, an old article where the description is literally \\\\[DATA EXPUNGED\\\\]. Not truly linked to this article, but it tells us that 4260 was killed because of a breach of some terrifyingly dangerous entity.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2003 \\n\\u003E \\n\\u003EMethod: Blunt force trauma by a member of MTF Xi-2. \\n\\u003E \\n\\u003EReason: The nuclear bombardment of Site-001. \\n\\u003E \\n\\u003EDuration: 25 seconds \\n\\u003E \\n\\u003EAffected: 1 civilian \\n\\u003E \\n\\u003EStatus: Recontained. SCP-4260's consciousness replicated and reproduced as *Tantalus.aic*.\\n\\nXi-2 bashed this thing's head in as a rush job while Site-001 was getting nuked, and resurrected them as soon as they could. Interestingly, Tantalus is a Greek mythological figure most famous for his punishment after death. Remember that.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2008 \\n\\u003E \\n\\u003EMethod: Destruction of SCP-4260's hard drive, completed by MTF Xi-2. \\n\\u003E \\n\\u003EReason: An imminent [ZK-Class (\\\"End-of-Reality\\\") Scenario](http://www.scp-wiki.net/scp-2975). \\n\\u003E \\n\\u003EDuration: Indeterminate \\n\\u003E \\n\\u003EAffected: 7,213,426,000 individuals, termination unnecessary. \\n\\u003E \\n\\u003EStatus: Recontained. A copy of *Tantalus.aic* uploaded into an appropriated [Peregrine Series Humanoid Utility Droid](http://www.scp-wiki.net/scp-1360).\\n\\nA crosslink to both SCP-2975, an interactive article meant to represent after-action report of various CK shifts and an almost ZK end of reality, and SCP-1360, one of the earlier Anderson Robotics articles. This one gives us something very vital; this procedure was activated to save the planet from destruction. This gives us as close to an answer as to what Procedure 8917 is for: saving people's asses and letting them skip through destruction easily. The next one is just the same idea with something about O5-6, but the final one is interesting.\\n\\n\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2016 \\n\\u003E \\n\\u003EMethod: Incineration, committed by MTF Xi-2 during Experimental Operation \\u201cMany-Crowned Serpent\\u201d. \\n\\u003E \\n\\u003EReason: The insufficiency of SCP-4260's containment procedures. \\n\\u003E \\n\\u003EDuration: 415 seconds \\n\\u003E \\n\\u003EAffected: 10 civilians \\n\\u003E \\n\\u003EStatus: *N/A*\\n\\nUhhh....shit.\\n\\nApparently, they didn't bring 4260 back after this one for this Operation Many-Crowned Serpent. This opens a whole new load of questions. What is Many-Crowned Serpent? Why is 4260 staying dead? Why were the containment procedures insufficient? This iteration doesn't answer them, because it ends here.\\n\\nYou'd assume we're in trouble, but there's a prompt at the bottom of the page. Apparently, we're O5-9, and Iteration Beta of the file, the Level 5 version, is available to us to read. Now, I get if you're confused on why I just went through all of that if it's not the real version. The answer is that some of the information here, such as the times it was used and the purposes of the MTFs, are not present in Iteration Beta. And we needed to know those things before we went into Iteration Beta, as well as know how classified among the Foundation this was. Anyways, let's get into Iteration Beta.\\n\\nI'm gonna skip the containment procedures for this one, as all they tell us is just that Iteration Alpha's containment procedures, the first ones we read, were insufficient and that Operation Many-Crowned Serpent was executed to fix that. As such, this version's technically outdated too, as it doesn't reflect the changes that Operation Many-Crowned Serpent caused to 4260, but we can still use it.\\n\\n**Description 2: Electric Boogaloo**\\n\\n\\u003ESCP-4260 is the collective consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. SCP-4260's existence has resulted in the universally entropic decline of sentient organisms and is the direct cause of any organism's cessation of life functions. \\n\\u003E \\n\\u003E**Note:** \\\"Entropic decline\\\" refers to an organism\\u2019s eventual abatement into infirmity when it achieves an advanced age for its species.\\n\\nIt's Death. Well, really more Entropy than Death, but 4260 is literally Death. We could have probably inferred it from Iteration Alpha, but that document served a different purpose, and it was kind of obvious we were dealing with Death near the end and from the quote I put.\\n\\n\\u003ESCP-4260 itself is subject to its own entropy, and its anomalous influence on the universe has notably diminished in the preceding millennia. It is projected that SCP-4260 will expire by achieving an ultraphysical null-state at approximately 2017 CE. The former containment procedures of SCP-4260 proved both incapable of halting this effect and its primary anomalous trait, although complete physical containment was achieved.\\n\\n*Oh shit.*\\n\\nNow the quote at the top of this declass makes a little more sense, doesn't it? The entropy and decay 4260 inflicts upon the universe hurts itself as well, and death is inescapable. It says that by 2017, 4260's gonna be dead, but if you recall from the Procedure 8917 logs, Operation Many-Crowned Serpent was executed in 2016. Now you see why we looked through those logs.\\n\\nThe next line says that our earlier assumption about Procedure 8917 was correct in it's purpose of saving people. By temporarily killing 4260, they create an Omega-K End Of Death Scenario for long enough to save Foundation personnel or prevent global extinction, both of which we saw in the logs. This also explains why civilians are affected, as they need to take care of people that should have died but didn't during the duration of the Omega-K. ^(Hey didn't you just declass something from End of Death?) This isn't part of the central canon, it's just a reference, so don't worry about the EoD storyline.\\n\\n**Addenda 4260-1 and 4260-2**\\n\\nI'm going to group these two addenda together since they're very closely related. Addendum 1 is just a recovery log of 4260 first being recovered by the Foundation, but it's a bit odd. 4260 willingly manifested itself as a young woman at Site-76 and asked to be contained and medically treated. This is further elaborated in Addendum 2, where we also learn some more about ultraphysical entities, or Intrinsics, as the nickname goes. The Foundation doesn't know much about them, but 4260 has told them a few things, namely that they're not omnipotent, because 4260 came to them to help save it, and that they have no personality traits or goals beyond self-preservation. This desire for self-preservation extends to trying to escape it's own effect, and how this actually ended up letting life exist as a whole. The addendum ends with the statement that Death's dying is both the best and worst news humanity could have.\\n\\nOkay, so basically, Death itself is starting to fade into nothingness while the Foundation keeps killing and resurrecting them to save high-ranking personnel. This seems to be both good and bad news for the Foundation, for obvious reasons. Oh, but what's this? ANOTHER iteration? This one, Iteration Gamma, is apparently pending approval and reflects the changes caused by Operation Many-Crowned Serpent to 4260. Let's check it out and see if we finally get an answer for what Operation Many-Crowned Serpent is. \\n\\n**Special Containment Procedures 3: The Securing**\\n\\nThese containment procedures are similar to the ones from Iteration Alpha, but much stricter. This version of 4260 is locked up in a massive nuclear bunker made to withstand every K-Class Scenario the Foundation knows of, with seven Strayer Density Matrices all around the chamber and as few people as possible staffing the place. If it gets out, O5-1, O5-7, and O5-13 are to be alerted as soon as possible. This thing is even more dangerous that the prior version of 4260, and they don't seem to be planning on using Procedure 8917 on it anytime soon. It also seems to be much stronger than previous 4260, as this version needs seven Density Matrices as opposed to only one being needed for Iteration Alpha. Time to see if the description matches this guess. \\n\\n**Description 3: Describe Harder**\\n\\n\\u003E SCP-4260 is Foundation Administrator Ethan Horowitz, who has undergone considerable physical augmentation as a result of Operation \\\"Many-Crowned Serpent\\\". \\n\\nWell I know the Administrator is often seen as anomalous himself but this is very new. Apparently Operation Many-Crowned Serpent involved doing weird stuff to the Administrator. Collapsibles that follow state that this new 4260 has a large amount of limbs, stands 130 meters tall, can manipulate it's physical form as well, and apparently has the ultraphysical abilities from the old 4260. It's also mentioned that it's more resistant to the Density Matrices, and that if five out of seven Matrices fail, we'll be enjoying a Chi-K Class \\\"Crowning Of Death\\\" scenario, which I'll try to elaborate more on after the upcoming quote. \\n\\n\\u003E The ultraphysical entity previously cataloged as SCP-4260, prior to its neutralization in Operation \\\"Many-Crowned Serpent\\\", exhibited several of these anomalous traits to a more limited degree. After its termination, Foundation Administrator Ethan Horowitz elected to transfer its anomalous properties onto his own person, in accordance with the contractual and ritualistic nature of Operation \\\"Many-Crowned Serpent\\\". \\n\\nFinally, an answer to what Operation Many-Crowned Serpent is. After the old 4260 was finally terminated, their properties were transferred to Horowitz so that we don't have to worry about Death dying anymore. That Chi-K scenario is likely the threat of Death's strength returning to what it was at the beginning of the universe, causing all living beings to die. This fits the name, as crowning implies something good happening to them. Well, good is relative in these circumstances. \\n\\nThere's one final addendum to the article, and I promise it's the last addendum. Let's get through it. \\n\\n**Addendum 4260-1: The Finale**\\n\\nThis addendum, written by Horowitz himself before Operation Many-Crowned Serpent was executed, opens with a restatement of the Foundation's Prime Directives; lock up anomalies, keep them secret, make sure they don't return, and prioritize everything except reality itself below the preservation of life. Things get interesting very quickly after that, though. \\n\\n\\u003E**This is the Subdirective of the Foundation:** to terminate the primary anomalous phenomenon which has plagued life since life\\u2019s conception, or to facilitate the termination thereof. \\n\\u003E \\n\\u003E**This is the prime anomaly:** Death.\\n\\nTitle drop. They just said they hold almost everything above life, and this is proof of that. \\n\\n\\u003E The Subdirective was never meant to be feasible, at least not in the day and age of our founding. We cannot hope to mitigate the disasters that this would result in: overpopulation, species stagnation, and susceptibility to cataclysmic extra-dimensional forces which can only be contained via euthanization of those affected. \\n\\u003E \\n\\u003E Now, over a century later, we could achieve the Subdirective at any moment with only a missive sent to the lead of Amalgamate Force Omicron-45. I suppose it would be marvelous to see: a world without death and infirmity, each person freed from the dread of uncertainty and peril. Maybe, one day, we will find a way to make that world. \\n\\u003E \\n\\u003EUntil such a time, we must secure the perpetual containment of Death. This is the nature of Operation \\u201cMany-Crowned Serpent\\u201d: to fulfill the first steps of the Foundation\\u2019s subdirective. \\n\\u003E \\n\\u003EAs it stands now, Death is a hostile entity intent on its own self-preservation at any cost. We spoke, once, and I began to realize that if it could feel anything at all, it would feel the same fear we must face under its tyranny. We could not save Death from itself; as far as our science has elevated us, there is still so much we do not understand. I told this to SCP-4260, and it smiled. \\\"Administrator,\\\" it said, \\\"How can I die when I will live on through you?\\\" \\n\\u003E \\n\\u003EDeath has struck a deal with us. In all its arcane knowledge, it knows a way to live on after its death: it has chosen me to be its heir. It is a choice between the eternal agony of humanity and a pain suffered only until we know enough to repair our tired species. It is not a choice at all. \\n\\u003E \\n\\u003EOn this day, I will become Death. This last evil I must allow us all to suffer patiently. Be bold, for one day soon, we will have won the battle waged by both us and our ancestors emerging from the primordial soup: the struggle for Life Everlasting.\\n\\nThis gives some more answers. Everything that the Foundation's done and is doing is all for the purpose of facilitating this Subdirective, the end of the threat of Death to all living beings, freeing the world from fear and uncertainty. But then why aren't they just doing that now? \\n\\nWell, have you ever read any tales from the [End Of Death canon?](http://www.scp-wiki.net/end-of-death-hub) There's your answer. When humans are faced with immortality, there's a whole lot of complications. Aging, decay, population, all the other lifeforms not dying. If humans were to all become immortal tomorrow, it wouldn't end well. That's why the Foundation's delaying the Subdirective. They need to find answers to the questions posed by immortality, making sure that when Death is no more, it will be a true paradise, not one with catches and people left out, suffering as the few enjoy true immortality. They're waiting until they have the technology, and then they'll terminate 4260 for good, kicking in an Omega-K that hopefully won't be an issue. Do they like waiting? No. The Subdirective is in their grasp. But they know they have to. \\n\\nAnd thus ends SCP-4260, a tale of the Foundation's ultimate goal and the means to get there. I hope this helped you understand this SCP better. Thank you all for reading, and memento mori.\", \"author_fullname\": \"t2_118qqr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"SCP-4260, \\\"The Subdirective\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwfesx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559621697.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EItem #: SCP-4260\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EObject Class: Euclid\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAuthor: Nagiros\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;\\u003Cem\\u003EAnd with strange aeons even death may die.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHello SCPDeclassified, Brewsterion here. Today, I wanted to cover \\u003Ca href=\\\"http://www.scp-wiki.net/scp-4260\\\"\\u003ESCP-4260\\u003C/a\\u003E at the request of the author and a few users who talked to me about it. So, let\\u0026#39;s get into it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe can\\u0026#39;t get into containment procedures yet, however, as there\\u0026#39;s something very important at the top of the page.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThis document has been significantly edited in order to obfuscate the identity of SCP-4260; several addenda have been omitted, and are only available with \\u003Cstrong\\u003ELevel 5/4260 Clearance\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell, this is interesting. You would think the omitting of the identity makes it an infohazard, but that\\u0026#39;s not one of the tags so we can rule that out. What it does tell us is that this thing is extremely important to the Foundation, since basically only the O5s have Level 5 clearance. Let\\u0026#39;s see what we can tell from this version, though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first paragraph of the containment procedures isn\\u0026#39;t too weird, but some sentences do stick out. Area-03 is located 2 kilometers beneath Hong Kong, specifically to contain 4260.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe containment chamber housing SCP-4260 has been augmented with a Strayer Density Matrix designed to coalesce and bind its disparate elements.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is a device we haven\\u0026#39;t seen before. Disparate elements would imply an anomaly of multiple parts, however we don\\u0026#39;t seen mentions of components here. Rather this line means that whatever 4260 is, it\\u0026#39;s greatly spread out over a very large area, similar to SCP-3125, and the Foundation needs a condensed form to contain it.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EMaintenance of the Strayer Density Matrix is integral to SCP-4260\\u0026#39;s containment and requires a specialized team of technicians and speculative ultraphysicalists.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOh boy, new concepts. There\\u0026#39;s a footnote here that says that ultraphysicalists deal with a science of entities that produce an effect on the universe by simply existing. How this differs from normal reality benders will be explained later, but for now let\\u0026#39;s say that these things don\\u0026#39;t try to produce an effect, they just do.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next sentence explains that there is a Procedure 8917 associated with 4260, and it requires joint operation of three separate MTFs. Gamma-8 uses the Density Matrices to summon 4260. Xi-2 apparently terminates 4260, but don\\u0026#39;t worry, that will be explained shortly. Tau-900 locates and terminates civilians affected by a successful termination of 4260, and remove evidence Procedure 8917 ever happened. Apparently, terminating 4260 affects people in a specific way. Not to give much away, but Tau-900\\u0026#39;s nickname is \\u0026quot;Deliverance\\u0026quot;. Just wait and see.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt then goes on to say that Procedure 8917 is considered complete when the following steps have been met:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ESCP-4260 has been successfully terminated.2. The Strayer Density Matrix is fully operational.3. All affected civilians have been located and terminated.4. All evidence of Procedure 8917 has been removed.5. SCP-4260 has been resurrected.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EWell that\\u0026#39;s straightforward, if not simple. From what this tells us, between the time 4260 is terminated and brought back, civilians are affected in some way. We don\\u0026#39;t know how, or what conditions for being affected are, but we\\u0026#39;ll find out soon. More emphasis is also placed on the Density Matrix, reinforcing that the Foundation needs this, and it once again mentions removing evidence of Procedure 8917 ever happening. Basically, terminating this thing is useful for the Foundation, but it can\\u0026#39;t stay dead for long, as it has side effects. Alright.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last line before the description says that the unclassified version is gonna be filled with omissions to hide the identity of 4260. As if we couldn\\u0026#39;t tell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 refers to the consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. The effect of SCP-4260\\u0026#39;s existence has been well documented by almost every sapient culture. Termination of SCP-4260 has resulted in the neutralization of its primary anomalous effect until its resurrection during Procedure 8917.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAlright, so 4260 refers to the consciousness of an entity that is present throughout the entire universe. The effect of it\\u0026#39;s existence has been documented by every sapient culture. It\\u0026#39;s kind of implied this includes aliens, which narrows it down. It\\u0026#39;s not some sort of emotional construct, it\\u0026#39;s something that effects everything, like time or gravity. Terminating it neutralizes the effect until resurrection.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s it. That\\u0026#39;s the entire description. Yeah, omissions is a bit of an understatement. But there\\u0026#39;s another addendum here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum.4260.1\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a list of all activations of Procedure 8917. Let\\u0026#39;s try to get some answers.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 1999 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Fatal puncture wounds and blood loss, administered by MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: A massive containment failure at \\u003Ca href=\\\"http://www.scp-wiki.net/scp-579\\\"\\u003ESite-62C\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration:110 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 3 civilians \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EA crosslink to SCP-579, an old article where the description is literally [DATA EXPUNGED]. Not truly linked to this article, but it tells us that 4260 was killed because of a breach of some terrifyingly dangerous entity.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2003 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Blunt force trauma by a member of MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: The nuclear bombardment of Site-001. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: 25 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 1 civilian \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained. SCP-4260\\u0026#39;s consciousness replicated and reproduced as \\u003Cem\\u003ETantalus.aic\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EXi-2 bashed this thing\\u0026#39;s head in as a rush job while Site-001 was getting nuked, and resurrected them as soon as they could. Interestingly, Tantalus is a Greek mythological figure most famous for his punishment after death. Remember that.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2008 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Destruction of SCP-4260\\u0026#39;s hard drive, completed by MTF Xi-2. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: An imminent \\u003Ca href=\\\"http://www.scp-wiki.net/scp-2975\\\"\\u003EZK-Class (\\u0026quot;End-of-Reality\\u0026quot;) Scenario\\u003C/a\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: Indeterminate \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 7,213,426,000 individuals, termination unnecessary. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: Recontained. A copy of \\u003Cem\\u003ETantalus.aic\\u003C/em\\u003E uploaded into an appropriated \\u003Ca href=\\\"http://www.scp-wiki.net/scp-1360\\\"\\u003EPeregrine Series Humanoid Utility Droid\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EA crosslink to both SCP-2975, an interactive article meant to represent after-action report of various CK shifts and an almost ZK end of reality, and SCP-1360, one of the earlier Anderson Robotics articles. This one gives us something very vital; this procedure was activated to save the planet from destruction. This gives us as close to an answer as to what Procedure 8917 is for: saving people\\u0026#39;s asses and letting them skip through destruction easily. The next one is just the same idea with something about O5-6, but the final one is interesting.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDate: \\u2588\\u2588\\u2588\\u2588, 2016 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMethod: Incineration, committed by MTF Xi-2 during Experimental Operation \\u201cMany-Crowned Serpent\\u201d. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReason: The insufficiency of SCP-4260\\u0026#39;s containment procedures. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuration: 415 seconds \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAffected: 10 civilians \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStatus: \\u003Cem\\u003EN/A\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EUhhh....shit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EApparently, they didn\\u0026#39;t bring 4260 back after this one for this Operation Many-Crowned Serpent. This opens a whole new load of questions. What is Many-Crowned Serpent? Why is 4260 staying dead? Why were the containment procedures insufficient? This iteration doesn\\u0026#39;t answer them, because it ends here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;d assume we\\u0026#39;re in trouble, but there\\u0026#39;s a prompt at the bottom of the page. Apparently, we\\u0026#39;re O5-9, and Iteration Beta of the file, the Level 5 version, is available to us to read. Now, I get if you\\u0026#39;re confused on why I just went through all of that if it\\u0026#39;s not the real version. The answer is that some of the information here, such as the times it was used and the purposes of the MTFs, are not present in Iteration Beta. And we needed to know those things before we went into Iteration Beta, as well as know how classified among the Foundation this was. Anyways, let\\u0026#39;s get into Iteration Beta.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m gonna skip the containment procedures for this one, as all they tell us is just that Iteration Alpha\\u0026#39;s containment procedures, the first ones we read, were insufficient and that Operation Many-Crowned Serpent was executed to fix that. As such, this version\\u0026#39;s technically outdated too, as it doesn\\u0026#39;t reflect the changes that Operation Many-Crowned Serpent caused to 4260, but we can still use it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription 2: Electric Boogaloo\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 is the collective consciousness of an ultraphysical, omnipresent entity, which has permeated itself through the known universe. SCP-4260\\u0026#39;s existence has resulted in the universally entropic decline of sentient organisms and is the direct cause of any organism\\u0026#39;s cessation of life functions. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E \\u0026quot;Entropic decline\\u0026quot; refers to an organism\\u2019s eventual abatement into infirmity when it achieves an advanced age for its species.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s Death. Well, really more Entropy than Death, but 4260 is literally Death. We could have probably inferred it from Iteration Alpha, but that document served a different purpose, and it was kind of obvious we were dealing with Death near the end and from the quote I put.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 itself is subject to its own entropy, and its anomalous influence on the universe has notably diminished in the preceding millennia. It is projected that SCP-4260 will expire by achieving an ultraphysical null-state at approximately 2017 CE. The former containment procedures of SCP-4260 proved both incapable of halting this effect and its primary anomalous trait, although complete physical containment was achieved.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EOh shit.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow the quote at the top of this declass makes a little more sense, doesn\\u0026#39;t it? The entropy and decay 4260 inflicts upon the universe hurts itself as well, and death is inescapable. It says that by 2017, 4260\\u0026#39;s gonna be dead, but if you recall from the Procedure 8917 logs, Operation Many-Crowned Serpent was executed in 2016. Now you see why we looked through those logs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next line says that our earlier assumption about Procedure 8917 was correct in it\\u0026#39;s purpose of saving people. By temporarily killing 4260, they create an Omega-K End Of Death Scenario for long enough to save Foundation personnel or prevent global extinction, both of which we saw in the logs. This also explains why civilians are affected, as they need to take care of people that should have died but didn\\u0026#39;t during the duration of the Omega-K. \\u003Csup\\u003EHey didn\\u0026#39;t you just declass something from End of Death?\\u003C/sup\\u003E This isn\\u0026#39;t part of the central canon, it\\u0026#39;s just a reference, so don\\u0026#39;t worry about the EoD storyline.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddenda 4260-1 and 4260-2\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m going to group these two addenda together since they\\u0026#39;re very closely related. Addendum 1 is just a recovery log of 4260 first being recovered by the Foundation, but it\\u0026#39;s a bit odd. 4260 willingly manifested itself as a young woman at Site-76 and asked to be contained and medically treated. This is further elaborated in Addendum 2, where we also learn some more about ultraphysical entities, or Intrinsics, as the nickname goes. The Foundation doesn\\u0026#39;t know much about them, but 4260 has told them a few things, namely that they\\u0026#39;re not omnipotent, because 4260 came to them to help save it, and that they have no personality traits or goals beyond self-preservation. This desire for self-preservation extends to trying to escape it\\u0026#39;s own effect, and how this actually ended up letting life exist as a whole. The addendum ends with the statement that Death\\u0026#39;s dying is both the best and worst news humanity could have.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOkay, so basically, Death itself is starting to fade into nothingness while the Foundation keeps killing and resurrecting them to save high-ranking personnel. This seems to be both good and bad news for the Foundation, for obvious reasons. Oh, but what\\u0026#39;s this? ANOTHER iteration? This one, Iteration Gamma, is apparently pending approval and reflects the changes caused by Operation Many-Crowned Serpent to 4260. Let\\u0026#39;s check it out and see if we finally get an answer for what Operation Many-Crowned Serpent is. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpecial Containment Procedures 3: The Securing\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThese containment procedures are similar to the ones from Iteration Alpha, but much stricter. This version of 4260 is locked up in a massive nuclear bunker made to withstand every K-Class Scenario the Foundation knows of, with seven Strayer Density Matrices all around the chamber and as few people as possible staffing the place. If it gets out, O5-1, O5-7, and O5-13 are to be alerted as soon as possible. This thing is even more dangerous that the prior version of 4260, and they don\\u0026#39;t seem to be planning on using Procedure 8917 on it anytime soon. It also seems to be much stronger than previous 4260, as this version needs seven Density Matrices as opposed to only one being needed for Iteration Alpha. Time to see if the description matches this guess. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDescription 3: Describe Harder\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4260 is Foundation Administrator Ethan Horowitz, who has undergone considerable physical augmentation as a result of Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWell I know the Administrator is often seen as anomalous himself but this is very new. Apparently Operation Many-Crowned Serpent involved doing weird stuff to the Administrator. Collapsibles that follow state that this new 4260 has a large amount of limbs, stands 130 meters tall, can manipulate it\\u0026#39;s physical form as well, and apparently has the ultraphysical abilities from the old 4260. It\\u0026#39;s also mentioned that it\\u0026#39;s more resistant to the Density Matrices, and that if five out of seven Matrices fail, we\\u0026#39;ll be enjoying a Chi-K Class \\u0026quot;Crowning Of Death\\u0026quot; scenario, which I\\u0026#39;ll try to elaborate more on after the upcoming quote. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe ultraphysical entity previously cataloged as SCP-4260, prior to its neutralization in Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;, exhibited several of these anomalous traits to a more limited degree. After its termination, Foundation Administrator Ethan Horowitz elected to transfer its anomalous properties onto his own person, in accordance with the contractual and ritualistic nature of Operation \\u0026quot;Many-Crowned Serpent\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFinally, an answer to what Operation Many-Crowned Serpent is. After the old 4260 was finally terminated, their properties were transferred to Horowitz so that we don\\u0026#39;t have to worry about Death dying anymore. That Chi-K scenario is likely the threat of Death\\u0026#39;s strength returning to what it was at the beginning of the universe, causing all living beings to die. This fits the name, as crowning implies something good happening to them. Well, good is relative in these circumstances. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere\\u0026#39;s one final addendum to the article, and I promise it\\u0026#39;s the last addendum. Let\\u0026#39;s get through it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAddendum 4260-1: The Finale\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis addendum, written by Horowitz himself before Operation Many-Crowned Serpent was executed, opens with a restatement of the Foundation\\u0026#39;s Prime Directives; lock up anomalies, keep them secret, make sure they don\\u0026#39;t return, and prioritize everything except reality itself below the preservation of life. Things get interesting very quickly after that, though. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis is the Subdirective of the Foundation:\\u003C/strong\\u003E to terminate the primary anomalous phenomenon which has plagued life since life\\u2019s conception, or to facilitate the termination thereof. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThis is the prime anomaly:\\u003C/strong\\u003E Death.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETitle drop. They just said they hold almost everything above life, and this is proof of that. \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThe Subdirective was never meant to be feasible, at least not in the day and age of our founding. We cannot hope to mitigate the disasters that this would result in: overpopulation, species stagnation, and susceptibility to cataclysmic extra-dimensional forces which can only be contained via euthanization of those affected. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, over a century later, we could achieve the Subdirective at any moment with only a missive sent to the lead of Amalgamate Force Omicron-45. I suppose it would be marvelous to see: a world without death and infirmity, each person freed from the dread of uncertainty and peril. Maybe, one day, we will find a way to make that world. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUntil such a time, we must secure the perpetual containment of Death. This is the nature of Operation \\u201cMany-Crowned Serpent\\u201d: to fulfill the first steps of the Foundation\\u2019s subdirective. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it stands now, Death is a hostile entity intent on its own self-preservation at any cost. We spoke, once, and I began to realize that if it could feel anything at all, it would feel the same fear we must face under its tyranny. We could not save Death from itself; as far as our science has elevated us, there is still so much we do not understand. I told this to SCP-4260, and it smiled. \\u0026quot;Administrator,\\u0026quot; it said, \\u0026quot;How can I die when I will live on through you?\\u0026quot; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeath has struck a deal with us. In all its arcane knowledge, it knows a way to live on after its death: it has chosen me to be its heir. It is a choice between the eternal agony of humanity and a pain suffered only until we know enough to repair our tired species. It is not a choice at all. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn this day, I will become Death. This last evil I must allow us all to suffer patiently. Be bold, for one day soon, we will have won the battle waged by both us and our ancestors emerging from the primordial soup: the struggle for Life Everlasting.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis gives some more answers. Everything that the Foundation\\u0026#39;s done and is doing is all for the purpose of facilitating this Subdirective, the end of the threat of Death to all living beings, freeing the world from fear and uncertainty. But then why aren\\u0026#39;t they just doing that now? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWell, have you ever read any tales from the \\u003Ca href=\\\"http://www.scp-wiki.net/end-of-death-hub\\\"\\u003EEnd Of Death canon?\\u003C/a\\u003E There\\u0026#39;s your answer. When humans are faced with immortality, there\\u0026#39;s a whole lot of complications. Aging, decay, population, all the other lifeforms not dying. If humans were to all become immortal tomorrow, it wouldn\\u0026#39;t end well. That\\u0026#39;s why the Foundation\\u0026#39;s delaying the Subdirective. They need to find answers to the questions posed by immortality, making sure that when Death is no more, it will be a true paradise, not one with catches and people left out, suffering as the few enjoy true immortality. They\\u0026#39;re waiting until they have the technology, and then they\\u0026#39;ll terminate 4260 for good, kicking in an Omega-K that hopefully won\\u0026#39;t be an issue. Do they like waiting? No. The Subdirective is in their grasp. But they know they have to. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd thus ends SCP-4260, a tale of the Foundation\\u0026#39;s ultimate goal and the means to get there. I hope this helped you understand this SCP better. Thank you all for reading, and memento mori.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?auto=webp\\u0026s=eb7e84b6777b9441cff986b491b9c844d2574ddb\", \"width\": 500, \"height\": 364}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bcae4878a092d9b918d961b1622fd9666b9ca968\", \"width\": 108, \"height\": 78}, {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=68c2ffe78e81071d4f95d8923cdb4f9e7a55c182\", \"width\": 216, \"height\": 157}, {\"url\": \"https://external-preview.redd.it/mDI6prSah9tWDlNRioC2NgA16C8Y91fJ4m_2z1XlUcQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a9ffa511f3dab1524f43720275a5f4e58c725258\", \"width\": 320, \"height\": 232}], \"variants\": {}, \"id\": \"wqpxqRTyCw4m0-4ES2XLY4f4UxAxlhBTybhU-CTz2uo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwfesx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Brewsterion\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwfesx/scp4260_the_subdirective/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwfesx/scp4260_the_subdirective/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559592897.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello everyone,\\n\\n\\u0026#x200B;\\n\\nI wanted to talk a bit about the rift between the performance of Beams and Cannons that is getting bigger and bigger.\\n\\n\\u0026#x200B;\\n\\nAs some who have longer played the game will remember, when the game was lunched it quickly got the nickname Cannons Online. Later on we had the Beam and Plasma Console Meta and now we are back to Cannons.\\n\\n\\u0026#x200B;\\n\\nIf we compare the average setup of today, an Epic Beam Array and an Epic Dual Cannon (both Phasers and the same Mods CrtD/Dm\\\\] \\\\[Dmg\\\\]x4) we can see a difference of 951 or generously rounded 1K DPS.\\n\\n\\u0026#x200B;\\n\\n(**Note:** I used Beam Arrays to show the difference because we still don't have enough variants of Omni-Dicretional Beams of every Energy type to be able to equip a 4x4 ship and have an efficient Dual Beam Bank Setup.)\\n\\n\\u0026#x200B;\\n\\nIn the past we argued that the difference was due to the ease of using Beams and to be fair a Beam Boat is easier to fly, but how to learn to use cannons is also no mystery.\\n\\n\\u0026#x200B;\\n\\nWhat has changed however are the Traits that support Beams vs. Cannons and the Cannon Traits have become severely better not to mention that the Boff ability of Beam Fire at Will with it's duration of 10 seconds and 20 seconds global cooldown is worse than the one for Rapid Fire or Scatter Volley with the same duration of 10 seconds but only a global cooldown of 15 seconds.\\n\\n\\u0026#x200B;\\n\\nIf we now look at the Traits we have for Cannons \\\"Go for the Kill\\\", \\\"Preferential Targeting\\\", \\\"Withering Barrage\\\", and for Beams \\\"Redirecting Arrays\\\" and \\\"Entwined Tactical Matrices\\\".\\n\\n\\u0026#x200B;\\n\\nSo for once we have a fantastic combo for Rapid Fire, with Go for the Kill and Preferential Targeting and the same is true for Scatter Volley with Withering Barrage both extends the duration of Rapid Fire (indefinitely by causing critical hits) and Scatter Volley (for four seconds).\\n\\n\\u0026#x200B;\\n\\n(**Note:** I know that Go for the Kill is super expensive and most players will never get it, but Withering Barrage is not and since it is an AOE attack it is most of the time the preferred Trait for cannons and you can buy the ships that have it in the C-Store.)\\n\\n\\u0026#x200B;\\n\\nOn the other side for Beams we have Redirecting Arrays which extends the duration of Beam Fire at Will by a Max of 15 seconds if you take constant damage, the problem however is that targets are dying so quickly that you basically never can take advantage of the duration increase.\\n\\n\\u0026#x200B;\\n\\nEntwined Tactical Matrices is an interesting Trait but I would only use it if I had none of the other Traits for Beams and Cannons but it really shines for Torp Builds allowing you to rain Torp Spreads on your target.\\n\\n\\u0026#x200B;\\n\\nSo why is it important to buff Beams, so for once there are a lot of ships that can only use Beams, and other ships that could potentially use cannons are so sluggish they simply can't move/turn fast enough to keep up and second it's not that great of an experience when you enter a STF and everything is dead in seconds.\\n\\nI have been on both sides nuke everything with my cannons before the rest of the team had a chance to do anything and I have seen the other side being the 5th wheel on the car.\\n\\n\\u0026#x200B;\\n\\n**At this point what can be done:**\\n\\nIncrease the base damage of Beams\\n\\nReduce the global cooldown of FAW to 15 seconds\\n\\nAlter Redirecting Arrays so the duration increase is reduced by maybe 50% but is not depending on taking constant damage.\\n\\n(I know this is very unlikely)\", \"author_fullname\": \"t2_gfwd5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The growing gab between Beams and Cannons\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bwbfv6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559601797.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wanted to talk a bit about the rift between the performance of Beams and Cannons that is getting bigger and bigger.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs some who have longer played the game will remember, when the game was lunched it quickly got the nickname Cannons Online. Later on we had the Beam and Plasma Console Meta and now we are back to Cannons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf we compare the average setup of today, an Epic Beam Array and an Epic Dual Cannon (both Phasers and the same Mods CrtD/Dm] [Dmg]x4) we can see a difference of 951 or generously rounded 1K DPS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E I used Beam Arrays to show the difference because we still don\\u0026#39;t have enough variants of Omni-Dicretional Beams of every Energy type to be able to equip a 4x4 ship and have an efficient Dual Beam Bank Setup.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the past we argued that the difference was due to the ease of using Beams and to be fair a Beam Boat is easier to fly, but how to learn to use cannons is also no mystery.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat has changed however are the Traits that support Beams vs. Cannons and the Cannon Traits have become severely better not to mention that the Boff ability of Beam Fire at Will with it\\u0026#39;s duration of 10 seconds and 20 seconds global cooldown is worse than the one for Rapid Fire or Scatter Volley with the same duration of 10 seconds but only a global cooldown of 15 seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf we now look at the Traits we have for Cannons \\u0026quot;Go for the Kill\\u0026quot;, \\u0026quot;Preferential Targeting\\u0026quot;, \\u0026quot;Withering Barrage\\u0026quot;, and for Beams \\u0026quot;Redirecting Arrays\\u0026quot; and \\u0026quot;Entwined Tactical Matrices\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for once we have a fantastic combo for Rapid Fire, with Go for the Kill and Preferential Targeting and the same is true for Scatter Volley with Withering Barrage both extends the duration of Rapid Fire (indefinitely by causing critical hits) and Scatter Volley (for four seconds).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(\\u003Cstrong\\u003ENote:\\u003C/strong\\u003E I know that Go for the Kill is super expensive and most players will never get it, but Withering Barrage is not and since it is an AOE attack it is most of the time the preferred Trait for cannons and you can buy the ships that have it in the C-Store.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the other side for Beams we have Redirecting Arrays which extends the duration of Beam Fire at Will by a Max of 15 seconds if you take constant damage, the problem however is that targets are dying so quickly that you basically never can take advantage of the duration increase.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEntwined Tactical Matrices is an interesting Trait but I would only use it if I had none of the other Traits for Beams and Cannons but it really shines for Torp Builds allowing you to rain Torp Spreads on your target.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo why is it important to buff Beams, so for once there are a lot of ships that can only use Beams, and other ships that could potentially use cannons are so sluggish they simply can\\u0026#39;t move/turn fast enough to keep up and second it\\u0026#39;s not that great of an experience when you enter a STF and everything is dead in seconds.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been on both sides nuke everything with my cannons before the rest of the team had a chance to do anything and I have seen the other side being the 5th wheel on the car.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAt this point what can be done:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIncrease the base damage of Beams\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EReduce the global cooldown of FAW to 15 seconds\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlter Redirecting Arrays so the duration increase is reduced by maybe 50% but is not depending on taking constant damage.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(I know this is very unlikely)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwbfv6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Bridgern\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bwbfv6/the_growing_gab_between_beams_and_cannons/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bwbfv6/the_growing_gab_between_beams_and_cannons/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559572997.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test avoid 401\", \"author_fullname\": \"t2_gbhji\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testagain3\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bw86r0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559578081.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest avoid 401\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw86r0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"erebusmaster\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bw86r0/testagain3/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bw86r0/testagain3/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559549281.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_teik0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"X5xjg5755\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 77, \"hide_score\": false, \"name\": \"t3_bw5s73\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_240?source=fallback\", \"height\": 234, \"width\": 426, \"scrubber_media_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_96\", \"dash_url\": \"https://v.redd.it/s7j0qhnb32231/DASHPlaylist.mpd\", \"duration\": 19, \"hls_url\": \"https://v.redd.it/s7j0qhnb32231/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UgBdgvQL7CGZ0x20Wf7IMOnF3wkO1xtpNXL1W4skdSE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559559448.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?format=pjpg\\u0026auto=webp\\u0026s=8f3632625940d92614b86de3baa00b4e513e4ca1\", \"width\": 640, \"height\": 352}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=9cd6401c64efd76cdecb4102c7eb0c424fe3dc67\", \"width\": 108, \"height\": 59}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=ecbb4c746658195f9309c3633bf1afb403d5f8d0\", \"width\": 216, \"height\": 118}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=e8f6509d25875f11e236b6291f30fb78f2650b85\", \"width\": 320, \"height\": 176}, {\"url\": \"https://external-preview.redd.it/x1_O2XA1UDxnx5QBQ4f_Ag0pKZZBSwGPvK1bed8xtEs.png?width=640\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=22a48248e037066d331290b3d7364be1a7615e04\", \"width\": 640, \"height\": 352}], \"variants\": {}, \"id\": \"-8_XkWX0CM_gb4MCXRpMpYFxNStsuDQsz1Bh8NYJiD0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bw5s73\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ShiftyRider\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bw5s73/x5xjg5755/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/s7j0qhnb32231\", \"subreddit_subscribers\": 720, \"created_utc\": 1559530648.0, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_240?source=fallback\", \"height\": 234, \"width\": 426, \"scrubber_media_url\": \"https://v.redd.it/s7j0qhnb32231/DASH_96\", \"dash_url\": \"https://v.redd.it/s7j0qhnb32231/DASHPlaylist.mpd\", \"duration\": 19, \"hls_url\": \"https://v.redd.it/s7j0qhnb32231/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_rpmhm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"whoaaa does the link work\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bvzhmk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/iTnjKpbA4mac1jgFlLry3EAicfoVm_TDGlxj83mJerc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559523455.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gifyourgame.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?auto=webp\\u0026s=11f7e16039a632def2a5529d21aa1417c31b3b23\", \"width\": 448, \"height\": 252}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=8f2b73431c3a3affc064af6e24a3b5b2f276f220\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d32ebeb37a2315a6fd90ca7d96bfd47b34bd4dfb\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/SIx4vkHeiffIK1fqiRg36x4MxiwH8cajz-4mtH4_XV4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3b6b217ff52246acb0e9a98b30d81afaa91d415b\", \"width\": 320, \"height\": 180}], \"variants\": {}, \"id\": \"Yl6MCedx3BkJMCf4V29laFNcXVd7gNJz8-4LknIKiZg\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvzhmk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"snowguy13\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvzhmk/whoaaa_does_the_link_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.gifyourgame.com/ComposedBalmyQuale\", \"subreddit_subscribers\": 720, \"created_utc\": 1559494655.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Defesa do Botafogo\\n\\n\\u003EA defesa do Botafogo apresentou imagens de v\\u00eddeo ao Tribunal que comprovariam que o \\u00e1rbitro autorizou o rein\\u00edcio da partida antes de ser chamado pelo VAR para mudar sua decis\\u00e3o. E por j\\u00e1 ter reiniciado o jogo, ele n\\u00e3o poderia mais voltar atr\\u00e1s e marcar o p\\u00eanalti contra o Botafogo.\\n\\nDefesa da CBF\\n\\n\\u003EAs imagens mostram que o \\u00e1rbitro pode sim ter induzido o rein\\u00edcio ao abaixar o bra\\u00e7o que indicava tiro livre indireto e ao correr na dire\\u00e7\\u00e3o do meio campo.\\n\\n\\u003EO problema \\u00e9 que as regras do jogo, as mesmas que o Botafogo cita para sustentar sua den\\u00fancia, estabelecem que o uso do apito \\u00e9 necess\\u00e1rio para reiniciar o jogo ap\\u00f3s um cart\\u00e3o amarelo ou vermelho.\", \"author_fullname\": \"t2_itdhw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvz153\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559520978.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDefesa do Botafogo\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA defesa do Botafogo apresentou imagens de v\\u00eddeo ao Tribunal que comprovariam que o \\u00e1rbitro autorizou o rein\\u00edcio da partida antes de ser chamado pelo VAR para mudar sua decis\\u00e3o. E por j\\u00e1 ter reiniciado o jogo, ele n\\u00e3o poderia mais voltar atr\\u00e1s e marcar o p\\u00eanalti contra o Botafogo.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EDefesa da CBF\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAs imagens mostram que o \\u00e1rbitro pode sim ter induzido o rein\\u00edcio ao abaixar o bra\\u00e7o que indicava tiro livre indireto e ao correr na dire\\u00e7\\u00e3o do meio campo.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EO problema \\u00e9 que as regras do jogo, as mesmas que o Botafogo cita para sustentar sua den\\u00fancia, estabelecem que o uso do apito \\u00e9 necess\\u00e1rio para reiniciar o jogo ap\\u00f3s um cart\\u00e3o amarelo ou vermelho.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvz153\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"heronb\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvz153/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvz153/test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559492178.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\[test.\\\\]\\\\[[https://www.youtube.com/watch?v=bV87CcSYqdY](https://www.youtube.com/watch?v=bV87CcSYqdY)\\\\]\", \"author_fullname\": \"t2_biesn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvks18\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559424409.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[test.][\\u003Ca href=\\\"https://www.youtube.com/watch?v=bV87CcSYqdY\\\"\\u003Ehttps://www.youtube.com/watch?v=bV87CcSYqdY\\u003C/a\\u003E]\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?auto=webp\\u0026s=4fcf18ab1d69228f991ceb9d9f5606e2386868fb\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3bb1140dbbc2d30590d93de9a8b7230bd25bf14a\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5eb48232b460293d9b5be807983a1aea3f5d2918\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/it80m7G1Xl4Bnlprn9MUjY8siBRqmpGBTFxx71_xVi0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ab14b38064578527c909effc6801637092d4e28f\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"qgPzrYjBE0VHRhxPsGYR8V92NeWVLuVmSZC7vhukjek\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvks18\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dramaticablacka\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvks18/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvks18/test/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559395609.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"My Ryzentosh is currently very stable, with the only 'non-workers' being iMessage, Siri, FaceTime and sort of Handoff (only works one way).\\n\\n\\u0026#x200B;\\n\\nAnyhow, regarding the issue I described the title, two settings in System Preferences, namely:\\n\\n\\u0026#x200B;\\n\\n1. **Find my Mac** under the iCloud tab\\n2. **Allow guest user to use this computer** under the Users \\u0026 Groups tab\\n\\n\\u0026#x200B;\\n\\nalways get reset to their defaults after a restart, or powering up after a full shutdown. The 'Find my Mac' option always gets unchecked and 'Allow guest user to use this computer' gets checked.\\n\\n\\u0026#x200B;\\n\\nI would like to keep the Find my Mac setting permanently on and to keep the guest account permanently off. Is there a way I can achieve this?\\n\\n\\u0026#x200B;\\n\\nAny help is appreciated, specs are summed up in the table below. \\ud83d\\udda5\\ud83d\\udda5\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n|**CPU**|AMD Ryzen 1800x|\\n|:-:|:-:|\\n|**Motherboard**|ASUS Crosshair VI Hero|\\n|**GPU**|Zotac Nvidia gtx 1070 (reference cooler)|\\n|**Memory**|16gb - 2x Corsair dominator platinum 8gb 3200mhz|\\n|**OS install drive**|Crucial MX500 250gb SSD|\\n|**Wifi \\u0026 Bluetooth**|iMac A1419BCM94360CD card with PCI-e adapter|\", \"author_fullname\": \"t2_ttqmp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Settings under System Preferences get rest after shutdown \\u0026 restarts\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_bvk747\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1559391772.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559420174.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy Ryzentosh is currently very stable, with the only \\u0026#39;non-workers\\u0026#39; being iMessage, Siri, FaceTime and sort of Handoff (only works one way).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyhow, regarding the issue I described the title, two settings in System Preferences, namely:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EFind my Mac\\u003C/strong\\u003E under the iCloud tab\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EAllow guest user to use this computer\\u003C/strong\\u003E under the Users \\u0026amp; Groups tab\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealways get reset to their defaults after a restart, or powering up after a full shutdown. The \\u0026#39;Find my Mac\\u0026#39; option always gets unchecked and \\u0026#39;Allow guest user to use this computer\\u0026#39; gets checked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to keep the Find my Mac setting permanently on and to keep the guest account permanently off. Is there a way I can achieve this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help is appreciated, specs are summed up in the table below. \\ud83d\\udda5\\ud83d\\udda5\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EAMD Ryzen 1800x\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EASUS Crosshair VI Hero\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EGPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EZotac Nvidia gtx 1070 (reference cooler)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E16gb - 2x Corsair dominator platinum 8gb 3200mhz\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EOS install drive\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECrucial MX500 250gb SSD\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Cstrong\\u003EWifi \\u0026amp; Bluetooth\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EiMac A1419BCM94360CD card with PCI-e adapter\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvk747\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Pepi28t-50\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvk747/settings_under_system_preferences_get_rest_after/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/bvk747/settings_under_system_preferences_get_rest_after/\", \"subreddit_subscribers\": 720, \"created_utc\": 1559391374.0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1141dc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Graphic found in a 2015 Terra Prime preview is the same as the ones around Area 18\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_bvf8q3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit) GIF by @robotdude on Gfycat. Discover more starcitizen GIFs on Gfycat\", \"title\": \"Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit)\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ActualRightColt-size_restricted.gif\", \"thumbnail_height\": 250}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/bvf8q3\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/c9_Wg6yf03hoBaNzKW8V4C6c3LjGbX6dNXDj3mUHy7c.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559379402.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gfycat.com\", \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?format=png8\\u0026s=c0569ed9f587376e57d01e8ef5ba86d518df8771\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=3ccb8ac692e06a59918fb1799b6990e338172f5f\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=16d097c9fe9c24465632bcd6e014f66b8b1bd2fa\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=d46c61ee71e7f625e6f8ca58551a1b74847abe98\", \"width\": 320, \"height\": 179}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?s=634e3b5adfe3dcaef794e3b30a8b35216951ab36\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026crop=smart\\u0026s=c163952d7527278194216f9845477ed70ede7fca\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026crop=smart\\u0026s=f3ef9b10b9219bffbead65215e7f8a4949f67aba\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026crop=smart\\u0026s=04ce94a6ab48fe49f6b9265bc3583d2f18cbe921\", \"width\": 320, \"height\": 179}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?format=mp4\\u0026s=7a2fa61a333d02e104ffc485e595b9f04824ea67\", \"width\": 445, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=108\\u0026format=mp4\\u0026s=b008d417dc5bc1f2f9203612293cd38c9f98dade\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=216\\u0026format=mp4\\u0026s=2d9f8c04c8ab09d0abdc59a8ea407b593d82ad82\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/M2Grix6JWe6WqGPh7bB4hTKfbLr0kcUd49VFdSUmDTg.gif?width=320\\u0026format=mp4\\u0026s=2ac9548358af384cf7bf04397f61fea396a9bda5\", \"width\": 320, \"height\": 179}]}}, \"id\": \"OA1SrhwRQdwHUJgo4zOwQTEZegw59-SLQj-ZypHdhoM\"}], \"reddit_video_preview\": {\"fallback_url\": \"https://v.redd.it/oc4537uf8n131/DASH_360\", \"height\": 360, \"width\": 640, \"scrubber_media_url\": \"https://v.redd.it/oc4537uf8n131/DASH_96\", \"dash_url\": \"https://v.redd.it/oc4537uf8n131/DASHPlaylist.mpd\", \"duration\": 9, \"hls_url\": \"https://v.redd.it/oc4537uf8n131/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bvf8q3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ehriqhck\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/bvf8q3/graphic_found_in_a_2015_terra_prime_preview_is/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://gfycat.com/actualrightcolt\", \"subreddit_subscribers\": 720, \"created_utc\": 1559350602.0, \"media\": {\"type\": \"gfycat.com\", \"oembed\": {\"provider_url\": \"https://gfycat.com\", \"description\": \"Watch Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit) GIF by @robotdude on Gfycat. Discover more starcitizen GIFs on Gfycat\", \"title\": \"Terra Prime - Terrace Sneak Peak - 10ftC 57 (reddit)\", \"type\": \"video\", \"thumbnail_width\": 445, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fgfycat.com%2Fifr%2Factualrightcolt\\u0026url=https%3A%2F%2Fgfycat.com%2Factualrightcolt-starcitizen\\u0026image=https%3A%2F%2Fthumbs.gfycat.com%2FActualRightColt-size_restricted.gif\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=gfycat\\\" width=\\\"600\\\" height=\\\"338\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Gfycat\", \"thumbnail_url\": \"https://thumbs.gfycat.com/ActualRightColt-size_restricted.gif\", \"thumbnail_height\": 250}}, \"is_video\": false}}], \"after\": \"t3_bvf8q3\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["832426"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:49 GMT"], "x-ratelimit-remaining": ["587.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["13"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643988.225006,VS0,VE1014"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["12"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "recorded_at": "2019-06-27T13:59:49"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_c61a3f"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:49 GMT"], "x-ratelimit-remaining": ["586.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["14"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643990.506772,VS0,VE75"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["11"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_c61a3f"}, "recorded_at": "2019-06-27T13:59:49"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/api/v1/me?raw_json=1"}, "response": {"body": {"string": "{\"is_employee\": false, \"seen_layout_switch\": true, \"has_visited_new_profile\": false, \"pref_no_profanity\": true, \"has_external_account\": false, \"pref_geopopular\": \"\", \"seen_redesign_modal\": true, \"pref_show_trending\": true, \"subreddit\": {\"default_set\": true, \"user_is_contributor\": false, \"banner_img\": \"\", \"disable_contributor_requests\": false, \"user_is_banned\": false, \"free_form_reports\": true, \"community_icon\": \"\", \"show_media\": true, \"icon_color\": \"#25B79F\", \"user_is_muted\": false, \"display_name\": \"u_nnreddit-user\", \"header_img\": null, \"title\": \"\", \"over_18\": false, \"icon_size\": [256, 256], \"primary_color\": \"\", \"icon_img\": \"https://www.redditstatic.com/avatars/avatar_default_16_25B79F.png\", \"description\": \"\", \"header_size\": null, \"restrict_posting\": true, \"restrict_commenting\": false, \"subscribers\": 0, \"is_default_icon\": true, \"link_flair_position\": \"\", \"display_name_prefixed\": \"u/nnreddit-user\", \"key_color\": \"\", \"name\": \"t5_125o8u\", \"is_default_banner\": true, \"url\": \"/user/nnreddit-user/\", \"banner_size\": null, \"user_is_moderator\": true, \"public_description\": \"\", \"link_flair_enabled\": false, \"subreddit_type\": \"user\", \"user_is_subscriber\": false}, \"is_sponsor\": false, \"gold_expiration\": null, \"has_gold_subscription\": false, \"num_friends\": 0, \"features\": {\"chat_subreddit\": true, \"show_amp_link\": true, \"read_from_pref_service\": true, \"chat_rollout\": true, \"chat_reddar_reports\": true, \"default_srs_holdout\": {\"owner\": \"relevance\", \"variant\": \"popular\", \"experiment_id\": 171}, \"is_email_permission_required\": false, \"richtext_previews\": true, \"email_verification\": {\"owner\": \"growth\", \"variant\": \"variant_3\", \"experiment_id\": 1038}, \"mweb_xpromo_revamp_v3\": {\"owner\": \"growth\", \"variant\": \"control_2\", \"experiment_id\": 480}, \"mweb_xpromo_revamp_v2\": {\"owner\": \"growth\", \"variant\": \"treatment_5\", \"experiment_id\": 457}, \"mweb_xpromo_modal_listing_click_daily_dismissible_ios\": true, \"community_awards\": true, \"dual_write_user_prefs\": true, \"do_not_track\": true, \"chat_user_settings\": true, \"mweb_xpromo_interstitial_comments_ios\": true, \"mweb_xpromo_modal_listing_click_daily_dismissible_android\": true, \"mweb_xpromo_interstitial_comments_android\": true, \"mweb_sharing_web_share_api\": {\"owner\": \"growth\", \"variant\": \"control_1\", \"experiment_id\": 314}, \"chat_group_rollout\": true, \"custom_feeds\": true, \"spez_modal\": true, \"mweb_link_tab\": {\"owner\": \"growth\", \"variant\": \"control_1\", \"experiment_id\": 404}}, \"has_android_subscription\": false, \"verified\": true, \"new_modmail_exists\": null, \"pref_autoplay\": true, \"coins\": 0, \"has_paypal_subscription\": false, \"has_subscribed_to_premium\": false, \"id\": \"3um52nx7\", \"has_stripe_subscription\": false, \"seen_premium_adblock_modal\": false, \"can_create_subreddit\": false, \"over_18\": false, \"is_gold\": false, \"is_mod\": false, \"suspension_expiration_utc\": null, \"has_verified_email\": true, \"is_suspended\": false, \"pref_video_autoplay\": true, \"in_redesign_beta\": true, \"icon_img\": \"https://www.redditstatic.com/avatars/avatar_default_16_25B79F.png\", \"has_mod_mail\": false, \"pref_nightmode\": false, \"oauth_client_id\": \"KBV2seGZgHOa9g\", \"hide_from_robots\": false, \"link_karma\": 2, \"force_password_reset\": false, \"inbox_count\": 0, \"pref_top_karma_subreddits\": true, \"has_mail\": false, \"pref_show_snoovatar\": false, \"name\": \"nnreddit-user\", \"pref_clickgadget\": 5, \"created\": 1559101744.0, \"gold_creddits\": 0, \"created_utc\": 1559072944.0, \"has_ios_subscription\": false, \"pref_show_twitter\": false, \"in_beta\": false, \"comment_karma\": 0, \"has_subscribed\": true, \"seen_subreddit_chat_ftux\": false}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["3545"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:50 GMT"], "x-ratelimit-remaining": ["585.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["15"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643990.288478,VS0,VE87"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["10"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/api/v1/me?raw_json=1"}, "recorded_at": "2019-06-27T13:59:50"}, {"request": {"body": {"string": "api_type=json&text=edit%3A+%0A&thing_id=t1_eqwe7dx", "encoding": "utf-8"}, "headers": {"Content-Length": ["50"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=TstivKR87WOXdTfyS3"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["bearer **********"]}, "method": "POST", "uri": "https://oauth.reddit.com/api/editusertext/?raw_json=1"}, "response": {"body": {"string": "{\"json\": {\"errors\": [], \"data\": {\"things\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"distinguished\": null, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bzl5p5\", \"author_flair_template_id\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eqwe7dx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"report_reasons\": null, \"author\": \"nnreddit-user\", \"can_mod_post\": false, \"created_utc\": 1560356100.0, \"send_replies\": true, \"parent_id\": \"t3_bzl5p5\", \"score\": 1, \"author_fullname\": \"t2_3um52nx7\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"edit:\", \"edited\": 1561643990.0, \"author_flair_css_class\": null, \"name\": \"t1_eqwe7dx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"collapsed_reason\": null, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eedit:\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"stickied\": false, \"can_gild\": false, \"gildings\": {}, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bzl5p5/test/eqwe7dx/\", \"num_reports\": null, \"locked\": false, \"no_follow\": false, \"created\": 1560384900.0, \"subreddit\": \"PostPreview\", \"author_flair_text\": null, \"rte_mode\": \"markdown\", \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"author_flair_background_color\": null, \"mod_reports\": [], \"subreddit_type\": \"public\", \"ups\": 1}}]}}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["1577"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Thu, 27 Jun 2019 13:59:50 GMT"], "x-ratelimit-remaining": ["584.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["16"], "Via": ["1.1 varnish"], "X-Timer": ["S1561643990.448902,VS0,VE124"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["10"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/api/editusertext/?raw_json=1"}, "recorded_at": "2019-06-27T13:59:50"}], "recorded_with": "betamax/0.8.1"} \ No newline at end of file diff --git a/tests/cassettes/test_oauth.yaml b/tests/cassettes/test_oauth.yaml new file mode 100644 index 0000000..35ec7be --- /dev/null +++ b/tests/cassettes/test_oauth.yaml @@ -0,0 +1,40 @@ +interactions: +- request: + body: !!python/unicode code=**********&grant_type=authorization_code&redirect_uri=http%3A%2F%2F127.0.0.1%3A17973 + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + !!python/unicode Authorization: [!!python/unicode '**********'] + Connection: [keep-alive] + Content-Length: ['106'] + Content-Type: [application/x-www-form-urlencoded] + User-Agent: ['Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1'] + method: POST + uri: https://www.reddit.com/api/v1/access_token + response: + body: {string: !!python/unicode '{"access_token": "**********", "token_type": + "bearer", "expires_in": 3600, "refresh_token": "**********", "scope": "edit + history identity mysubreddits privatemessages read report save submit subscribe + vote"}'} + headers: + accept-ranges: [bytes] + cache-control: ['max-age=0, must-revalidate'] + connection: [keep-alive] + content-length: ['267'] + content-type: [application/json; charset=UTF-8] + date: ['Fri, 07 Jun 2019 04:38:25 GMT'] + server: [snooserv] + set-cookie: [edgebucket=y1FPYeim4TI9gnt5xY; Domain=reddit.com; Max-Age=63071999; + Path=/; secure] + strict-transport-security: [max-age=15552000; includeSubDomains; preload] + via: [1.1 varnish] + x-cache: [MISS] + x-cache-hits: ['0'] + x-content-type-options: [nosniff] + x-frame-options: [SAMEORIGIN] + x-moose: [majestic] + x-served-by: [cache-ewr18125-EWR] + x-timer: ['S1559882305.241736,VS0,VE62'] + x-xss-protection: [1; mode=block] + status: {code: 200, message: OK} +version: 1 diff --git a/tests/cassettes/vote.json b/tests/cassettes/vote.json new file mode 100644 index 0000000..d46afb0 --- /dev/null +++ b/tests/cassettes/vote.json @@ -0,0 +1 @@ +{"http_interactions": [{"request": {"body": {"string": "grant_type=refresh_token&refresh_token=**********", "encoding": "utf-8"}, "headers": {"Content-Length": ["79"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["**********"]}, "method": "POST", "uri": "https://www.reddit.com/api/v1/access_token"}, "response": {"body": {"string": "{\"access_token\": \"**********\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"edit history identity mysubreddits privatemessages read report save submit subscribe vote\"}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["206"], "x-xss-protection": ["1; mode=block"], "X-Cache": ["MISS"], "x-content-type-options": ["nosniff"], "Set-Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3; Domain=reddit.com; Max-Age=63071999; Path=/; secure"], "Accept-Ranges": ["bytes"], "X-Timer": ["S1565579396.084407,VS0,VE35"], "X-Served-By": ["cache-lga21927-LGA"], "X-Moose": ["majestic"], "Connection": ["keep-alive"], "Via": ["1.1 varnish"], "X-Cache-Hits": ["0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "cache-control": ["max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:09:56 GMT"], "x-frame-options": ["SAMEORIGIN"], "Server": ["snooserv"], "Content-Type": ["application/json; charset=UTF-8"]}, "status": {"message": "OK", "code": 200}, "url": "https://www.reddit.com/api/v1/access_token"}, "recorded_at": "2019-08-12T03:09:56"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 3, \"children\": [{\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"emacs\", \"header_img\": \"https://f.thumbs.redditmedia.com/1CBmBnoqVxNCXdVS.png\", \"title\": \"M-x emacs-reddit\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/emacs\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 31522, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2qhwu\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"The extensible, customizable, self-documenting real-time display editor.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA sub-reddit for the timeless and infinitely powerful editor. \\u003Ca href=\\\"http://emacsrocks.com/\\\"\\u003EWant to see what Emacs is capable of?!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EGet Emacs\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://ftp.gnu.org/gnu/emacs/windows/\\\"\\u003EWindows\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://emacsformacosx.com/\\\"\\u003EMac OS X\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGNU/Linux and BSD (Just get it from your distribution\\u0026#39;s package manager)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.gnu.org/software/emacs/#Obtaining\\\"\\u003EBuild it from source\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Resources\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/\\\"\\u003EEmacs Wiki\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://wikemacs.org/\\\"\\u003EWikEmacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://emacs.zeef.com/ehartc\\\"\\u003EEmacs Reference\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://shop.oreilly.com/product/9780596006488.do\\\"\\u003ELearning GNU Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf\\\"\\u003EEmacs Reference Card\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026amp;restrict_sr=on\\u0026amp;sort=new\\u0026amp;t=all\\\"\\u003EWeekly tips/tricks/etc threads\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EEmacs Tutorials\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/\\\"\\u003EBeginner\\u2019s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/\\\"\\u003EAbsolute Beginner\\u0026#39;s Guide to Emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/\\\"\\u003EHow to Learn Emacs: A Hand-drawn One-pager for Beginners\\n\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ERelated Subreddits\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/orgmode\\\"\\u003Er/orgmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/evilmode\\\"\\u003Er/evilmode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/spacemacs\\\"\\u003Er/spacemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/planetemacs\\\"\\u003Er/planetemacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUseful Emacs configuration files and distributions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/technomancy/better-defaults\\\"\\u003EBetter Defaults\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EQuick pain-saver tip\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://www.emacswiki.org/emacs/MovingTheCtrlKey\\\"\\u003EPut the Caps Lock key to better use!\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": [152, 50], \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1210079411.0, \"wls\": 6, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe extensible, customizable, self-documenting real-time display editor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2qhwu\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"A sub-reddit for the timeless and infinitely powerful editor. [Want to see what Emacs is capable of?!](http://emacsrocks.com/)\\n\\n**Get Emacs**\\n\\n* [Windows](http://ftp.gnu.org/gnu/emacs/windows/)\\n* [Mac OS X](http://emacsformacosx.com/)\\n* GNU/Linux and BSD (Just get it from your distribution's package manager)\\n* [Build it from source] (http://www.gnu.org/software/emacs/#Obtaining)\\n\\n**Emacs Resources**\\n\\n* [Emacs Wiki](http://www.emacswiki.org/)\\n* [WikEmacs](http://wikemacs.org/)\\n* [Emacs Reference](https://emacs.zeef.com/ehartc)\\n* [Learning GNU Emacs](http://shop.oreilly.com/product/9780596006488.do)\\n* [Emacs Reference Card](https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf)\\n* [Weekly tips/tricks/etc threads](/r/emacs/search?q=Weekly+tips+trick+etc+thread\\u0026restrict_sr=on\\u0026sort=new\\u0026t=all)\\n\\n**Emacs Tutorials**\\n\\n* [Beginner\\u2019s Guide to Emacs](http://www.masteringemacs.org/articles/2010/10/04/beginners-guide-to-emacs/)\\n* [Absolute Beginner's Guide to Emacs](http://www.jesshamrick.com/2012/09/10/absolute-beginners-guide-to-emacs/)\\n* [How to Learn Emacs: A Hand-drawn One-pager for Beginners\\n](http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/)\\n\\n**Related Subreddits**\\n\\n* r/orgmode\\n* r/evilmode\\n* r/spacemacs\\n* r/planetemacs\\n\\n**Useful Emacs configuration files and distributions**\\n\\n* [Better Defaults](https://github.com/technomancy/better-defaults)\\n\\n**Quick pain-saver tip**\\n\\n* [Put the Caps Lock key to better use!](http://www.emacswiki.org/emacs/MovingTheCtrlKey)\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": \"all_ads\", \"url\": \"/r/emacs/\", \"created_utc\": 1210050611.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": true, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"orgmode\", \"header_img\": null, \"title\": \"Org-mode\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/orgmode\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 5084, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2s5ak\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"[Org-mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EAbout Org mode\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EResources\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://orgmode.org/#docs\\\"\\u003EOfficial Documentation\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/worg/\\\"\\u003ECommunity Documentation (Worg)\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://orgmode.org/guide/\\\"\\u003ECompact Org-mode Guide\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"http://lists.gnu.org/archive/html/emacs-orgmode/\\\"\\u003EOfficial Mailing list\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EIRC Channel: #org-mode on \\u003Ca href=\\\"http://freenode.net/\\\"\\u003EFreenode\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMatrix: \\u003Ca href=\\\"https://matrix.to/#/#org-mode:matrix.org\\\"\\u003E#org-mode:matrix.org\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003ERelated Subreddits\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"\", \"can_assign_user_flair\": true, \"created\": 1287182517.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://orgmode.org/\\\"\\u003EOrg-mode\\u003C/a\\u003E is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": null, \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": null, \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": false, \"id\": \"2s5ak\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"# About Org mode\\n\\n[Org mode](http://orgmode.org/) is an Emacs major mode for taking notes, managing to-do lists, planning projects, authoring documents, literate programming and devops, and more, using a fast and effective plain-text system.\\n\\n# Resources\\n\\n* [Official Documentation](http://orgmode.org/#docs)\\n* [Community Documentation (Worg)](https://orgmode.org/worg/)\\n* [Compact Org-mode Guide](https://orgmode.org/guide/)\\n* [Official Mailing list](http://lists.gnu.org/archive/html/emacs-orgmode/)\\n* IRC Channel: #org-mode on [Freenode](http://freenode.net/)\\n* Matrix: [#org-mode:matrix.org](https://matrix.to/#/#org-mode:matrix.org)\\n\\n# Related Subreddits\\n\\n* /r/emacs\", \"submit_link_label\": null, \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/orgmode/\", \"created_utc\": 1287153717.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}, {\"kind\": \"t5\", \"data\": {\"user_flair_background_color\": null, \"submit_text_html\": null, \"restrict_posting\": true, \"user_is_banned\": false, \"free_form_reports\": true, \"wiki_enabled\": null, \"user_is_muted\": false, \"user_can_flair_in_sr\": null, \"display_name\": \"PostPreview\", \"header_img\": null, \"title\": \"Preview your Reddit posts\", \"icon_size\": null, \"primary_color\": \"\", \"active_user_count\": null, \"icon_img\": \"\", \"display_name_prefixed\": \"r/PostPreview\", \"accounts_active\": null, \"public_traffic\": false, \"subscribers\": 777, \"user_flair_richtext\": [], \"videostream_links_count\": 0, \"name\": \"t5_2waml\", \"quarantine\": false, \"hide_ads\": false, \"emojis_enabled\": false, \"advertiser_category\": \"\", \"public_description\": \"A place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\", \"comment_score_hide_mins\": 0, \"user_has_favorited\": false, \"user_flair_template_id\": null, \"community_icon\": \"\", \"banner_background_image\": \"\", \"original_content_tag_enabled\": false, \"submit_text\": \"\", \"description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EWhat this is\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAllowed posts\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYou can post whatever and however much you\\u0026#39;d like here, \\u003Cstrong\\u003Eas long as it conforms to \\u003Ca href=\\\"http://www.reddit.com/rules\\\"\\u003Ereddiquette\\u003C/a\\u003E\\u003C/strong\\u003E (eg. NO personal info, no alt accounts, etc). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPlease\\u003C/strong\\u003E utilize the Report button for content you feel breaks these rules, we can\\u0026#39;t sift through EVERYTHING, so your help is greatly appreciated.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESpam filter\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESome posts/comments may be auto-rejected by Reddit\\u0026#39;s spam filter, despite the threshold set to \\u0026quot;Minimal\\u0026quot; here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you don\\u0026#39;t see you post show up, it\\u0026#39;s likely it got rejected. Message the mod mail and we can override it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHave fun previewing!\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"spoilers_enabled\": true, \"header_title\": null, \"header_size\": null, \"user_flair_position\": \"right\", \"all_original_content\": false, \"has_menu_widget\": false, \"is_enrolled_in_new_modmail\": null, \"key_color\": \"#24a0ed\", \"can_assign_user_flair\": true, \"created\": 1360563027.0, \"wls\": null, \"show_media_preview\": true, \"submission_type\": \"any\", \"user_is_subscriber\": true, \"disable_contributor_requests\": false, \"allow_videogifs\": true, \"user_flair_type\": \"text\", \"collapse_deleted_comments\": false, \"emojis_custom_size\": null, \"public_description_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA place to see what your Reddit posts will look like, before you actually post them. Helpful for formatting errors and such.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"allow_videos\": true, \"notification_level\": \"low\", \"can_assign_link_flair\": true, \"accounts_active_is_fuzzed\": false, \"submit_text_label\": \"Try a text post!\", \"link_flair_position\": \"left\", \"user_sr_flair_enabled\": null, \"user_flair_enabled_in_sr\": false, \"allow_discovery\": true, \"user_sr_theme_enabled\": true, \"link_flair_enabled\": true, \"subreddit_type\": \"public\", \"suggested_comment_sort\": \"confidence\", \"banner_img\": \"\", \"user_flair_text\": null, \"banner_background_color\": \"\", \"show_media\": true, \"id\": \"2waml\", \"user_is_moderator\": false, \"over18\": false, \"description\": \"**What this is** \\n\\u003E A place to see what your Reddit posts will look like, before you submit them elsewhere. This could be helpful for getting your post/comment formatting just right. \\n \\n**Allowed posts**\\n\\u003E You can post whatever and however much you'd like here, **as long as it conforms to [reddiquette](http://www.reddit.com/rules)** (eg. NO personal info, no alt accounts, etc). \\n\\u003E \\n\\u003E **Please** utilize the Report button for content you feel breaks these rules, we can't sift through EVERYTHING, so your help is greatly appreciated.\\n \\n**Spam filter** \\n\\u003E Some posts/comments may be auto-rejected by Reddit's spam filter, despite the threshold set to \\\"Minimal\\\" here. \\n\\u003E \\n\\u003E If you don't see you post show up, it's likely it got rejected. Message the mod mail and we can override it.\\n\\n**Have fun previewing!**\\n\\n \\n \", \"submit_link_label\": \"Test out a link!\", \"user_flair_text_color\": null, \"restrict_commenting\": false, \"user_flair_css_class\": null, \"allow_images\": true, \"lang\": \"en\", \"whitelist_status\": null, \"url\": \"/r/PostPreview/\", \"created_utc\": 1360534227.0, \"banner_size\": null, \"mobile_banner_image\": \"\", \"user_is_contributor\": false}}], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["18143"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:09:56 GMT"], "x-ratelimit-remaining": ["599.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["1"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579396.192577,VS0,VE137"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["4"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/subreddits/mine/subscriber/?raw_json=1&limit=100"}, "recorded_at": "2019-08-12T03:09:56"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ce1o53\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewni8xw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ancientweird\", \"num_comments\": 28, \"can_mod_post\": false, \"created_utc\": 1565578991.0, \"send_replies\": true, \"parent_id\": \"t1_eu0q68z\", \"score\": 1, \"author_fullname\": \"t2_31afc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Until Emacs takes over Linux and then itself.\", \"link_title\": \"Emacs on Linux is an amazing environment\", \"author_flair_css_class\": null, \"name\": \"t1_ewni8xw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUntil Emacs takes over Linux and then itself.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/ce1o53/emacs_on_linux_is_an_amazing_environment/ewni8xw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/ce1o53/emacs_on_linux_is_an_amazing_environment/\", \"report_reasons\": null, \"link_author\": \"FOSHavoc\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/ce1o53/emacs_on_linux_is_an_amazing_environment/\", \"created\": 1565607791.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cp4msp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewnfqhn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"danderzei\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1565576957.0, \"send_replies\": true, \"parent_id\": \"t3_cp4msp\", \"score\": 1, \"author_fullname\": \"t2_15ae6r\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'd love a better blogging workflow. I write in org, copy to blog and optimise for SEO. Something like Toast in lisp would be great. I need to learn lisp ...\", \"link_title\": \"Interested in testing Org2Blog v1.1.0?\", \"author_flair_css_class\": null, \"name\": \"t1_ewnfqhn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d love a better blogging workflow. I write in org, copy to blog and optimise for SEO. Something like Toast in lisp would be great. I need to learn lisp ...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cp4msp/interested_in_testing_org2blog_v110/ewnfqhn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cp4msp/interested_in_testing_org2blog_v110/\", \"report_reasons\": null, \"link_author\": \"grettke\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cp4msp/interested_in_testing_org2blog_v110/\", \"created\": 1565605757.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmrhgs\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewne8jf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"human_banana\", \"num_comments\": 41, \"can_mod_post\": false, \"created_utc\": 1565575797.0, \"send_replies\": true, \"parent_id\": \"t1_ewnds8r\", \"score\": 1, \"author_fullname\": \"t2_3rmfbzpt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"No idea. I literally did the same thing and it didn't work one day but it has ever since.\\n\\nI wish I knew why, sorry.\", \"link_title\": \"`emacs-libvterm` is awesome\", \"author_flair_css_class\": null, \"name\": \"t1_ewne8jf\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo idea. I literally did the same thing and it didn\\u0026#39;t work one day but it has ever since.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wish I knew why, sorry.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cmrhgs/emacslibvterm_is_awesome/ewne8jf/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cmrhgs/emacslibvterm_is_awesome/\", \"report_reasons\": null, \"link_author\": \"k_thenuclear_b\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cmrhgs/emacslibvterm_is_awesome/\", \"created\": 1565604597.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmrhgs\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewnds8r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"quotient_type\", \"num_comments\": 41, \"can_mod_post\": false, \"created_utc\": 1565575450.0, \"send_replies\": true, \"parent_id\": \"t1_ewdsywz\", \"score\": 1, \"author_fullname\": \"t2_1zzmppwx\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Do you have any idea what you did to fix this issue? I'm facing the same thing.\", \"link_title\": \"`emacs-libvterm` is awesome\", \"author_flair_css_class\": null, \"name\": \"t1_ewnds8r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDo you have any idea what you did to fix this issue? I\\u0026#39;m facing the same thing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cmrhgs/emacslibvterm_is_awesome/ewnds8r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cmrhgs/emacslibvterm_is_awesome/\", \"report_reasons\": null, \"link_author\": \"k_thenuclear_b\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cmrhgs/emacslibvterm_is_awesome/\", \"created\": 1565604250.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosddh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewnayzg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"202700000000\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1565573316.0, \"send_replies\": true, \"parent_id\": \"t1_ewlvr46\", \"score\": 1, \"author_fullname\": \"t2_c4blft1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm been using `:hook` but I didn't know there was a `:mode` defer as well, nice! Thanks.\", \"link_title\": \"Does anyone have javascript autocomplete working with company-mode? What's your setup like?\", \"author_flair_css_class\": null, \"name\": \"t1_ewnayzg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m been using \\u003Ccode\\u003E:hook\\u003C/code\\u003E but I didn\\u0026#39;t know there was a \\u003Ccode\\u003E:mode\\u003C/code\\u003E defer as well, nice! Thanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/ewnayzg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"report_reasons\": null, \"link_author\": \"202700000000\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"created\": 1565602116.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cov6lp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewn7u7e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"00-11\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565570901.0, \"send_replies\": true, \"parent_id\": \"t3_cov6lp\", \"score\": 1, \"author_fullname\": \"t2_3upsyt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"**Moral:** Don't let Customize fiddle with your init file. Use variable `custom-file`; that's what it's for. Your init file is for *you* to fiddle with.\\n\\n[(emacs) Saving Customizations](https://www.gnu.org/software/emacs/manual/html_node/emacs/Saving-Customizations.html)\", \"link_title\": \"deleted custom-set-variables in init file =/\", \"author_flair_css_class\": null, \"name\": \"t1_ewn7u7e\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EMoral:\\u003C/strong\\u003E Don\\u0026#39;t let Customize fiddle with your init file. Use variable \\u003Ccode\\u003Ecustom-file\\u003C/code\\u003E; that\\u0026#39;s what it\\u0026#39;s for. Your init file is for \\u003Cem\\u003Eyou\\u003C/em\\u003E to fiddle with.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/emacs/Saving-Customizations.html\\\"\\u003E(emacs) Saving Customizations\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/ewn7u7e/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/\", \"report_reasons\": null, \"link_author\": \"Sewing31\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/\", \"created\": 1565599701.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewn79n9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gepheir6yoF\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565570460.0, \"send_replies\": true, \"parent_id\": \"t1_ewmunxy\", \"score\": 1, \"author_fullname\": \"t2_41b44oy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E It seems a bit impolite for you to appear here, posting a \\\"proof of concept,\\\" implying an exploit or vulnerability that should be fixed, without having participated in the extensive discussions of the issues over the last several years.\\n\\nI must say I feel offended to be accused of trying to cause alarm, and no, using soft words like \\\"implying\\\" or \\\"seems like\\\" doesn't change the fact that this is an accusation. Is it wrong to remind or warn people to not store passwords in plaintext, or any other bad practices? This is simply a concrete warning that merely installing an Emacs package is dangerous and inspecting the package after installing it is not enough to detect this, as well as an example (a proof of concept) if anyone wants to see how it could work.\\n\\nI don't feel comfortable answering your question, and I don't see how this is relevant to presenting a proof of concept of a self-hiding malicious package.\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewn79n9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIt seems a bit impolite for you to appear here, posting a \\u0026quot;proof of concept,\\u0026quot; implying an exploit or vulnerability that should be fixed, without having participated in the extensive discussions of the issues over the last several years.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI must say I feel offended to be accused of trying to cause alarm, and no, using soft words like \\u0026quot;implying\\u0026quot; or \\u0026quot;seems like\\u0026quot; doesn\\u0026#39;t change the fact that this is an accusation. Is it wrong to remind or warn people to not store passwords in plaintext, or any other bad practices? This is simply a concrete warning that merely installing an Emacs package is dangerous and inspecting the package after installing it is not enough to detect this, as well as an example (a proof of concept) if anyone wants to see how it could work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t feel comfortable answering your question, and I don\\u0026#39;t see how this is relevant to presenting a proof of concept of a self-hiding malicious package.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewn79n9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565599260.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosl13\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewn7413\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MrBojanglesReturns\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1565570340.0, \"send_replies\": true, \"parent_id\": \"t1_ewkz4so\", \"score\": 1, \"author_fullname\": \"t2_bjc1mj3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That is a really cool package, but I wanted to create a more complete workflow so I went to emacs + other tools path.\\n\\nI created a function to call a python file that uses the [Python Keyboard](https://github.com/boppreh/keyboard) package. Managed to extend it to type at random delays to look less simulated.\\n\\nThis elisp func sets some buffer settings to copy the text from another file without errors, and waits the process to complete to reset the its settings. This is a sketch that currently works:\\n\\n (defun auto-type-to-buffer ()\\n \\\"Simulates typing in current buffer using text in other file\\\"\\n (interactive)\\n (setq-local python-indent-offset 0)\\n (with-current-buffer (current-buffer)\\n (smartparens-mode -1))\\n (let ((proc (start-process \\\"auto-write-process\\\" \\\"main.py\\\" \\\"python\\\" \\\"/home/martin/Documentos/Programming/Python/Projetos/Text-To-Keyboard/main.py\\\"))))\\n (set-process-sentinel (get-process \\\"auto-write-process\\\")\\n (lambda (p e)\\n (when (= 0 (process-exit-status p))\\n (message \\\"ok\\\")\\n (smartparens-mode)\\n ))))\\n\\nThen I am going to create a file type, that copy the text that I want it typed, and let me annotate it with the correct order. It then will be parsed and typed at the correct buffer.\\n\\nThanks for the help!\", \"link_title\": \"Help to deal with Async delays for \\u201cSimulated Typing\\u201d effect\", \"author_flair_css_class\": null, \"name\": \"t1_ewn7413\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat is a really cool package, but I wanted to create a more complete workflow so I went to emacs + other tools path.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI created a function to call a python file that uses the \\u003Ca href=\\\"https://github.com/boppreh/keyboard\\\"\\u003EPython Keyboard\\u003C/a\\u003E package. Managed to extend it to type at random delays to look less simulated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis elisp func sets some buffer settings to copy the text from another file without errors, and waits the process to complete to reset the its settings. This is a sketch that currently works:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun auto-type-to-buffer ()\\n \\u0026quot;Simulates typing in current buffer using text in other file\\u0026quot;\\n (interactive)\\n (setq-local python-indent-offset 0)\\n (with-current-buffer (current-buffer)\\n (smartparens-mode -1))\\n (let ((proc (start-process \\u0026quot;auto-write-process\\u0026quot; \\u0026quot;main.py\\u0026quot; \\u0026quot;python\\u0026quot; \\u0026quot;/home/martin/Documentos/Programming/Python/Projetos/Text-To-Keyboard/main.py\\u0026quot;))))\\n (set-process-sentinel (get-process \\u0026quot;auto-write-process\\u0026quot;)\\n (lambda (p e)\\n (when (= 0 (process-exit-status p))\\n (message \\u0026quot;ok\\u0026quot;)\\n (smartparens-mode)\\n ))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThen I am going to create a file type, that copy the text that I want it typed, and let me annotate it with the correct order. It then will be parsed and typed at the correct buffer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for the help!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosl13/help_to_deal_with_async_delays_for_simulated/ewn7413/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosl13/help_to_deal_with_async_delays_for_simulated/\", \"report_reasons\": null, \"link_author\": \"MrBojanglesReturns\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cosl13/help_to_deal_with_async_delays_for_simulated/\", \"created\": 1565599140.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewn6gc2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gepheir6yoF\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565569833.0, \"send_replies\": true, \"parent_id\": \"t1_ewmvh2z\", \"score\": 1, \"author_fullname\": \"t2_41b44oy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E If a package author were malicious, of what benefit would making a self-modifying package be?\\n\\nTo hide. This is notable because package.el does not provide a way to inspect a package before running it. If you're inspecting the package after installing it, this is a PoC that that does not work.\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewn6gc2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIf a package author were malicious, of what benefit would making a self-modifying package be?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ETo hide. This is notable because package.el does not provide a way to inspect a package before running it. If you\\u0026#39;re inspecting the package after installing it, this is a PoC that that does not work.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewn6gc2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565598633.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cp0ph7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewn3jzc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565567581.0, \"send_replies\": true, \"parent_id\": \"t1_ewmw43h\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E There is no need to use the overlay-arrow-variable-list or the overlay-arrow-bitmap.\\n\\nVery good to know, the manual is extremely misleading on that point.\", \"link_title\": \"Putting indicators in the fringe?\", \"author_flair_css_class\": null, \"name\": \"t1_ewn3jzc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThere is no need to use the overlay-arrow-variable-list or the overlay-arrow-bitmap.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EVery good to know, the manual is extremely misleading on that point.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/ewn3jzc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/\", \"created\": 1565596381.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cp0ph7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewn2yma\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phalp\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565567129.0, \"send_replies\": true, \"parent_id\": \"t1_ewmzaqm\", \"score\": 1, \"author_fullname\": \"t2_ajc92\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks! That's perfect.\", \"link_title\": \"Putting indicators in the fringe?\", \"author_flair_css_class\": null, \"name\": \"t1_ewn2yma\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks! That\\u0026#39;s perfect.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/ewn2yma/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/\", \"created\": 1565595929.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cp0ph7\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmzaqm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565564363.0, \"send_replies\": true, \"parent_id\": \"t3_cp0ph7\", \"score\": 3, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Here is a quick hack which does this: \\n\\n (advice-add 'shell-command--save-pos-or-erase\\n :after (defun shell-command-print-sparator+ ()\\n (overlay-put (make-overlay (point-max) (point-max))\\n 'before-string\\n (propertize \\\"!\\\" 'display \\n (list 'left-fringe\\n 'right-triangle)))))\", \"link_title\": \"Putting indicators in the fringe?\", \"author_flair_css_class\": null, \"name\": \"t1_ewmzaqm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is a quick hack which does this: \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(advice-add \\u0026#39;shell-command--save-pos-or-erase\\n :after (defun shell-command-print-sparator+ ()\\n (overlay-put (make-overlay (point-max) (point-max))\\n \\u0026#39;before-string\\n (propertize \\u0026quot;!\\u0026quot; \\u0026#39;display \\n (list \\u0026#39;left-fringe\\n \\u0026#39;right-triangle)))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/ewmzaqm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/\", \"created\": 1565593163.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565575733.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cou94v\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmxi4z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sizur\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1565563022.0, \"send_replies\": true, \"parent_id\": \"t1_ewmnra9\", \"score\": 3, \"author_fullname\": \"t2_b6ekd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Your opinion will change when you'll be needing to navigate millions of lines projects with hundreds of changes daily. 'ag' doesn't understand generics variance.\", \"link_title\": \"Lennart Borgman emacs32 author?\", \"author_flair_css_class\": null, \"name\": \"t1_ewmxi4z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYour opinion will change when you\\u0026#39;ll be needing to navigate millions of lines projects with hundreds of changes daily. \\u0026#39;ag\\u0026#39; doesn\\u0026#39;t understand generics variance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/ewmxi4z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"report_reasons\": null, \"link_author\": \"xah\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"created\": 1565591822.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565562192.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cp0ph7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmw43h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"lawlist\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565562006.0, \"send_replies\": true, \"parent_id\": \"t3_cp0ph7\", \"score\": 1, \"author_fullname\": \"t2_n4mmo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"On each visible line, a user can place an overlay in the form of a left-fringe or right-fringe bitmap and it can be colored as desired. The overlays can be moved or deleted as needed. There is no need to use the `overlay-arrow-variable-list` or the `overlay-arrow-bitmap`. I am having difficulty thinking of a simple example at the moment and would need to spend some time reviewing a custom library of mine that I used a few years ago, with an eye towards coming up with a simple example. I'll check back from time to time to see if anyone else has a simple example for you to use as a guide.\", \"link_title\": \"Putting indicators in the fringe?\", \"author_flair_css_class\": null, \"name\": \"t1_ewmw43h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn each visible line, a user can place an overlay in the form of a left-fringe or right-fringe bitmap and it can be colored as desired. The overlays can be moved or deleted as needed. There is no need to use the \\u003Ccode\\u003Eoverlay-arrow-variable-list\\u003C/code\\u003E or the \\u003Ccode\\u003Eoverlay-arrow-bitmap\\u003C/code\\u003E. I am having difficulty thinking of a simple example at the moment and would need to spend some time reviewing a custom library of mine that I used a few years ago, with an eye towards coming up with a simple example. I\\u0026#39;ll check back from time to time to see if anyone else has a simple example for you to use as a guide.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/ewmw43h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/\", \"report_reasons\": null, \"link_author\": \"phalp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/\", \"created\": 1565590806.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565562810.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cov34c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmvnpm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565561676.0, \"send_replies\": true, \"parent_id\": \"t1_ewllimw\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Helm doesn't have cooties. `helm-imenu` also fulfills your requirement.\", \"link_title\": \"Navigating between document sections\", \"author_flair_css_class\": null, \"name\": \"t1_ewmvnpm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHelm doesn\\u0026#39;t have cooties. \\u003Ccode\\u003Ehelm-imenu\\u003C/code\\u003E also fulfills your requirement.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cov34c/navigating_between_document_sections/ewmvnpm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cov34c/navigating_between_document_sections/\", \"report_reasons\": null, \"link_author\": \"ideasman_42\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cov34c/navigating_between_document_sections/\", \"created\": 1565590476.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cox716\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmvlsc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565561636.0, \"send_replies\": true, \"parent_id\": \"t1_ewmgawy\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I just export Org to Markdown. Works fine.\", \"link_title\": \"What's your emacs workflow for writing posts on reddit?\", \"author_flair_css_class\": null, \"name\": \"t1_ewmvlsc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just export Org to Markdown. Works fine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/ewmvlsc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"report_reasons\": null, \"link_author\": \"ouroboroslisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"created\": 1565590436.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmvh2z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565561541.0, \"send_replies\": true, \"parent_id\": \"t1_ewmtggj\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E a package can modify itself when it's being installed\\n\\nI think that describing it that way obscures the real issue, which is code execution. It makes the issue sound more arcane or mysterious than it is.\\n\\nIf a package author were malicious, of what benefit would making a self-modifying package be? He could just run the malicious code immediately.\\n\\nThe bottom line is that Emacs Lisp packages are executable code which runs with the permission of the user, just like other software. No one should run software he doesn't trust. But no one can audit all the software he runs. This issue is not unique to Emacs Lisp packages.\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewmvh2z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ea package can modify itself when it\\u0026#39;s being installed\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI think that describing it that way obscures the real issue, which is code execution. It makes the issue sound more arcane or mysterious than it is.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf a package author were malicious, of what benefit would making a self-modifying package be? He could just run the malicious code immediately.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe bottom line is that Emacs Lisp packages are executable code which runs with the permission of the user, just like other software. No one should run software he doesn\\u0026#39;t trust. But no one can audit all the software he runs. This issue is not unique to Emacs Lisp packages.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewmvh2z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565590341.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmunxy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565560962.0, \"send_replies\": true, \"parent_id\": \"t1_ewmsuja\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Yes, this package demonstrates that.\\n\\nThinking about the problem also demonstrates it. It's no secret. We've been talking about it for years.\\n\\n\\u003E Restarting is not necessary; simply installing the package is enough.\\n\\nYes, because package.el byte-compiles packages, and that executes code. Again, not news.\\n\\n\\u003E I don't consider this to be an exploit. This is an obvious consequence of executing code on package installation.\\n\\nIt's a lisp, all right.\\n\\nI notice that you didn't answer my question:\\n\\n\\u003E \\u003E Having said all that, I'm curious: have you (if you're github/@darkfeline) participated in the discussions on the MELPA tracker over the past few years? Or did you just suddenly dump an exploit PoC on /r/emacs? I don't recognize your nickname, but I may have overlooked or forgotten it.\\n\\nIt seems a bit impolite for you to appear here, posting a \\\"proof of concept,\\\" implying an exploit or vulnerability that should be fixed, without having participated in the extensive discussions of the issues over the last several years. If you have expertise that you could lend to the problem, please join the discussions on MELPA. Otherwise, suddenly dumping this here seems like trying to cause alarm, which doesn't help anyone.\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewmunxy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYes, this package demonstrates that.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThinking about the problem also demonstrates it. It\\u0026#39;s no secret. We\\u0026#39;ve been talking about it for years.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERestarting is not necessary; simply installing the package is enough.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYes, because package.el byte-compiles packages, and that executes code. Again, not news.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI don\\u0026#39;t consider this to be an exploit. This is an obvious consequence of executing code on package installation.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s a lisp, all right.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI notice that you didn\\u0026#39;t answer my question:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EHaving said all that, I\\u0026#39;m curious: have you (if you\\u0026#39;re github/@darkfeline) participated in the discussions on the MELPA tracker over the past few years? Or did you just suddenly dump an exploit PoC on \\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E? I don\\u0026#39;t recognize your nickname, but I may have overlooked or forgotten it.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt seems a bit impolite for you to appear here, posting a \\u0026quot;proof of concept,\\u0026quot; implying an exploit or vulnerability that should be fixed, without having participated in the extensive discussions of the issues over the last several years. If you have expertise that you could lend to the problem, please join the discussions on MELPA. Otherwise, suddenly dumping this here seems like trying to cause alarm, which doesn\\u0026#39;t help anyone.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewmunxy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565589762.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmu1c5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565560512.0, \"send_replies\": true, \"parent_id\": \"t1_ewmabge\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes, it is unsatisfactory. Many things are. And this problem is hardly unique to Emacs packages.\\n\\nIf you would like to help, please contribute to the discussions on MELPA.\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewmu1c5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, it is unsatisfactory. Many things are. And this problem is hardly unique to Emacs packages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you would like to help, please contribute to the discussions on MELPA.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewmu1c5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565589312.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmtzkg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565560478.0, \"send_replies\": true, \"parent_id\": \"t1_ewlxft2\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I'm sure you can understand that I don't feel like re-explaining the things that have been explained here and on the MELPA discussions many times before. Please consult them and you'll find answers.\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewmtzkg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m sure you can understand that I don\\u0026#39;t feel like re-explaining the things that have been explained here and on the MELPA discussions many times before. Please consult them and you\\u0026#39;ll find answers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewmtzkg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565589278.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmtggj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gepheir6yoF\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565560107.0, \"send_replies\": true, \"parent_id\": \"t1_ewlah0l\", \"score\": 2, \"author_fullname\": \"t2_41b44oy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is what I do:\\n\\nFirst, I commit all of my installed packages along with my personal Emacs files. This allows me to track and pin the package code.\\n\\nSecond, I disable package activation after startup with `(advice-add 'package--load-files-for-activation :override #'ignore)`. That way, installing new packages will not execute any code.\\n\\nThird, I do a basic audit of all newly installed and upgraded package before committing them. I would probably not be able to catch sophisticated attacks, but something like this package I would be able to catch. It's crucial that you disable package activation, because a package can modify itself when it's being installed, as this package shows.\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewmtggj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is what I do:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst, I commit all of my installed packages along with my personal Emacs files. This allows me to track and pin the package code.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESecond, I disable package activation after startup with \\u003Ccode\\u003E(advice-add \\u0026#39;package--load-files-for-activation :override #\\u0026#39;ignore)\\u003C/code\\u003E. That way, installing new packages will not execute any code.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThird, I do a basic audit of all newly installed and upgraded package before committing them. I would probably not be able to catch sophisticated attacks, but something like this package I would be able to catch. It\\u0026#39;s crucial that you disable package activation, because a package can modify itself when it\\u0026#39;s being installed, as this package shows.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewmtggj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565588907.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmsuja\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gepheir6yoF\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565559676.0, \"send_replies\": true, \"parent_id\": \"t1_ewllsmn\", \"score\": 1, \"author_fullname\": \"t2_41b44oy4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Okay, but a package doesn't need to be particularly crafty to do evil.\\n\\nYes, this package demonstrates that.\\n\\n\\u003E Wait for users to update the package and restart their Emacs and see their stuff deleted.\\n\\nRestarting is not necessary; simply installing the package is enough.\\n\\n\\u003E did you just suddenly dump an exploit PoC\\n\\nI don't consider this to be an exploit. This is an obvious consequence of executing code on package installation.\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewmsuja\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EOkay, but a package doesn\\u0026#39;t need to be particularly crafty to do evil.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYes, this package demonstrates that.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWait for users to update the package and restart their Emacs and see their stuff deleted.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ERestarting is not necessary; simply installing the package is enough.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Edid you just suddenly dump an exploit PoC\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t consider this to be an exploit. This is an obvious consequence of executing code on package installation.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewmsuja/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565588476.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_coyyzb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmpigw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zakmetternich\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565557325.0, \"send_replies\": true, \"parent_id\": \"t3_coyyzb\", \"score\": 1, \"author_fullname\": \"t2_nnczm\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I looked up the spinner source and did an install from buffer .\", \"link_title\": \"\\\"Package \\u2018spinner-1.7.3\\u2019 is unavailable\\\" after doing \\\"cask install\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ewmpigw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI looked up the spinner source and did an install from buffer .\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/coyyzb/package_spinner173_is_unavailable_after_doing/ewmpigw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/coyyzb/package_spinner173_is_unavailable_after_doing/\", \"report_reasons\": null, \"link_author\": \"dmartincy\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/coyyzb/package_spinner173_is_unavailable_after_doing/\", \"created\": 1565586125.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cou94v\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmnra9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Skaibae\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1565556105.0, \"send_replies\": true, \"parent_id\": \"t1_ewlw0f0\", \"score\": 2, \"author_fullname\": \"t2_s1xqh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Maybe I'm old fashioned, but I've no problem with writing in a text editor and reading compiler errors. I don't see the appeal of the very specific IDEs for Java when Emacs has more than enough for any task.\", \"link_title\": \"Lennart Borgman emacs32 author?\", \"author_flair_css_class\": null, \"name\": \"t1_ewmnra9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe I\\u0026#39;m old fashioned, but I\\u0026#39;ve no problem with writing in a text editor and reading compiler errors. I don\\u0026#39;t see the appeal of the very specific IDEs for Java when Emacs has more than enough for any task.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/ewmnra9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"report_reasons\": null, \"link_author\": \"xah\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"created\": 1565584905.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmjppd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kcin\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565553309.0, \"send_replies\": true, \"parent_id\": \"t1_ewmabge\", \"score\": 1, \"author_fullname\": \"t2_2z9w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Is there an other way? If users don't want to check packages then they should pool money to pay someone to do it.\\n\\nThere are lots of packages, some of them getting frequent upgrades, so it's like a full time job to check every update.\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewmjppd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there an other way? If users don\\u0026#39;t want to check packages then they should pool money to pay someone to do it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere are lots of packages, some of them getting frequent upgrades, so it\\u0026#39;s like a full time job to check every update.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewmjppd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565582109.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_coyyzb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmje6j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gahagg\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565553090.0, \"send_replies\": true, \"parent_id\": \"t3_coyyzb\", \"score\": 1, \"author_fullname\": \"t2_x34tgn5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I have had problems installing spinner too.\", \"link_title\": \"\\\"Package \\u2018spinner-1.7.3\\u2019 is unavailable\\\" after doing \\\"cask install\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ewmje6j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have had problems installing spinner too.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/coyyzb/package_spinner173_is_unavailable_after_doing/ewmje6j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/coyyzb/package_spinner173_is_unavailable_after_doing/\", \"report_reasons\": null, \"link_author\": \"dmartincy\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/coyyzb/package_spinner173_is_unavailable_after_doing/\", \"created\": 1565581890.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cox716\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmgawy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565550957.0, \"send_replies\": true, \"parent_id\": \"t3_cox716\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I tried md4rd MELPA package, but it's too buggy. I see, but not tried, nnreddit Gnus backend.\\nActually I simply write in Firefox, inside EXWM. Using Firejail few extensions does not work\\nwithout a dedicated policy I do not want to invest time in...\", \"link_title\": \"What's your emacs workflow for writing posts on reddit?\", \"author_flair_css_class\": null, \"name\": \"t1_ewmgawy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI tried md4rd MELPA package, but it\\u0026#39;s too buggy. I see, but not tried, nnreddit Gnus backend.\\nActually I simply write in Firefox, inside EXWM. Using Firejail few extensions does not work\\nwithout a dedicated policy I do not want to invest time in...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/ewmgawy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"report_reasons\": null, \"link_author\": \"ouroboroslisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"created\": 1565579757.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cony9u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmgaki\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"todo-anonymize-self\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1565550950.0, \"send_replies\": true, \"parent_id\": \"t1_ewlm15m\", \"score\": 1, \"author_fullname\": \"t2_230w61jp\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Well it's emacs, so if that's not good enough you can go into the code and pick it to bits or redef something or defadvice...\\n\\n\\\\`org-schedule\\\\` calls \\\\`org--deadline-or-schedule\\\\` with the input string (arg).\", \"link_title\": \"Is possible to modify the timestamps input prompt format?\", \"author_flair_css_class\": null, \"name\": \"t1_ewmgaki\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell it\\u0026#39;s emacs, so if that\\u0026#39;s not good enough you can go into the code and pick it to bits or redef something or defadvice...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E`org-schedule` calls `org--deadline-or-schedule` with the input string (arg).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cony9u/is_possible_to_modify_the_timestamps_input_prompt/ewmgaki/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cony9u/is_possible_to_modify_the_timestamps_input_prompt/\", \"report_reasons\": null, \"link_author\": \"Cobaya_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cony9u/is_possible_to_modify_the_timestamps_input_prompt/\", \"created\": 1565579750.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cox716\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmg1mz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JadElClemens\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565550778.0, \"send_replies\": true, \"parent_id\": \"t3_cox716\", \"score\": 1, \"author_fullname\": \"t2_girye\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Qutebrowser can edit (most) form fields with an external editor. I don't use it a whole lot but I can see it being useful.\", \"link_title\": \"What's your emacs workflow for writing posts on reddit?\", \"author_flair_css_class\": null, \"name\": \"t1_ewmg1mz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EQutebrowser can edit (most) form fields with an external editor. I don\\u0026#39;t use it a whole lot but I can see it being useful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/ewmg1mz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"report_reasons\": null, \"link_author\": \"ouroboroslisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"created\": 1565579578.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cov6lp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmfyef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fredeB\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565550715.0, \"send_replies\": true, \"parent_id\": \"t1_ewlwwmj\", \"score\": 1, \"author_fullname\": \"t2_8lqjy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I've never seen it done like that before. Maybe it doesn't like that you're pulling things from the web?\\n\\nThere's no real reason to get it from the web though as you could just use the unicode characters and install a font like Fira Code or Iosevka, and have the icons locally.\", \"link_title\": \"deleted custom-set-variables in init file =/\", \"author_flair_css_class\": null, \"name\": \"t1_ewmfyef\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve never seen it done like that before. Maybe it doesn\\u0026#39;t like that you\\u0026#39;re pulling things from the web?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere\\u0026#39;s no real reason to get it from the web though as you could just use the unicode characters and install a font like Fira Code or Iosevka, and have the icons locally.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/ewmfyef/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/\", \"report_reasons\": null, \"link_author\": \"Sewing31\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/\", \"created\": 1565579515.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cox716\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewme3eu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ouroboroslisp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565549421.0, \"send_replies\": true, \"parent_id\": \"t1_ewm7j69\", \"score\": 1, \"author_fullname\": \"t2_3eye434e\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Wow! this sounds very promising. :D\", \"link_title\": \"What's your emacs workflow for writing posts on reddit?\", \"author_flair_css_class\": null, \"name\": \"t1_ewme3eu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWow! this sounds very promising. :D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/ewme3eu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"report_reasons\": null, \"link_author\": \"ouroboroslisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"created\": 1565578221.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cnkoll\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmcx7l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rcdwealth\", \"num_comments\": 96, \"can_mod_post\": false, \"created_utc\": 1565548626.0, \"send_replies\": true, \"parent_id\": \"t1_ewio1io\", \"score\": 1, \"author_fullname\": \"t2_u86pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I am sorry for that, I hope one day you get in better conditions. ;-)\", \"link_title\": \"What are the worst default emacs bindings that we usually don't change?\", \"author_flair_css_class\": null, \"name\": \"t1_ewmcx7l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am sorry for that, I hope one day you get in better conditions. ;-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cnkoll/what_are_the_worst_default_emacs_bindings_that_we/ewmcx7l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cnkoll/what_are_the_worst_default_emacs_bindings_that_we/\", \"report_reasons\": null, \"link_author\": \"forppinrange\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cnkoll/what_are_the_worst_default_emacs_bindings_that_we/\", \"created\": 1565577426.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_coi8n9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmbv5y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"CitrusLizard\", \"num_comments\": 61, \"can_mod_post\": false, \"created_utc\": 1565547914.0, \"send_replies\": true, \"parent_id\": \"t1_ewjyd01\", \"score\": 1, \"author_fullname\": \"t2_cc7no\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I use WSL1 on the work machine - no insider ring there, I'm afraid! I runs fine - I've experimented with a few different ways of running it, but keep going back to just using the native linux build and running a separate X server on the windows side (VcXsrv, specifically).\\n\\nPerformance could be better, but is perfectly usable.\", \"link_title\": \"Does anyone else much prefer emacs itself to GNU/Linux?\", \"author_flair_css_class\": null, \"name\": \"t1_ewmbv5y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use WSL1 on the work machine - no insider ring there, I\\u0026#39;m afraid! I runs fine - I\\u0026#39;ve experimented with a few different ways of running it, but keep going back to just using the native linux build and running a separate X server on the windows side (VcXsrv, specifically).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPerformance could be better, but is perfectly usable.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/ewmbv5y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/\", \"report_reasons\": null, \"link_author\": \"LukeFL\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/\", \"created\": 1565576714.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmabge\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jmercouris\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565546859.0, \"send_replies\": true, \"parent_id\": \"t1_ewlm0is\", \"score\": 1, \"author_fullname\": \"t2_9b1sjpd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"this is an unsatisfactory solution, you can't reasonably expect everyone to audit every single package they install, and whatever changes it makes...\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewmabge\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethis is an unsatisfactory solution, you can\\u0026#39;t reasonably expect everyone to audit every single package they install, and whatever changes it makes...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewmabge/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565575659.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cox716\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewm7j69\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"prawnandcocktail\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565544998.0, \"send_replies\": true, \"parent_id\": \"t3_cox716\", \"score\": 4, \"author_fullname\": \"t2_8zx2q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"[https://github.com/agzam/exwm-edit](https://github.com/agzam/exwm-edit)\", \"link_title\": \"What's your emacs workflow for writing posts on reddit?\", \"author_flair_css_class\": null, \"name\": \"t1_ewm7j69\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/agzam/exwm-edit\\\"\\u003Ehttps://github.com/agzam/exwm-edit\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/ewm7j69/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"report_reasons\": null, \"link_author\": \"ouroboroslisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"created\": 1565573798.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmnumy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewm6rg0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nightblair\", \"num_comments\": 33, \"can_mod_post\": false, \"created_utc\": 1565544492.0, \"send_replies\": true, \"parent_id\": \"t1_ewm35uv\", \"score\": 1, \"author_fullname\": \"t2_6rwvd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks, that might be the solution for me!\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_ewm6rg0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, that might be the solution for me!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/ewm6rg0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/\", \"created\": 1565573292.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_coz46g\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewm54gs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1565543422.0, \"send_replies\": true, \"parent_id\": \"t3_coz46g\", \"score\": 2, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"To adjust display behavior of buffers you need to customize `display-buffer-alist`. Here is an example:\\n\\n (defun display-buffer-pop-up-window-select+ (buf alist)\\n \\\"Like `display-buffer-pop-up-window' but select it.\\\"\\n (let ((w (display-buffer-pop-up-window buf alist)))\\n (when (windowp w)\\n (select-window w))))\\n\\n\\n (push `(,(rx \\\"*my-bufferr*\\\")\\n display-buffer-pop-up-window-select+)\\n display-buffer-alist)\", \"link_title\": \"Warning hook or ways to auto kill the warning buffer?\", \"author_flair_css_class\": null, \"name\": \"t1_ewm54gs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETo adjust display behavior of buffers you need to customize \\u003Ccode\\u003Edisplay-buffer-alist\\u003C/code\\u003E. Here is an example:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E (defun display-buffer-pop-up-window-select+ (buf alist)\\n \\u0026quot;Like `display-buffer-pop-up-window\\u0026#39; but select it.\\u0026quot;\\n (let ((w (display-buffer-pop-up-window buf alist)))\\n (when (windowp w)\\n (select-window w))))\\n\\n\\n(push `(,(rx \\u0026quot;*my-bufferr*\\u0026quot;)\\n display-buffer-pop-up-window-select+)\\n display-buffer-alist)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/coz46g/warning_hook_or_ways_to_auto_kill_the_warning/ewm54gs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/coz46g/warning_hook_or_ways_to_auto_kill_the_warning/\", \"report_reasons\": null, \"link_author\": \"w3_ar3_l3g10n\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/coz46g/warning_hook_or_ways_to_auto_kill_the_warning/\", \"created\": 1565572222.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmnumy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewm35uv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yantar92\", \"num_comments\": 33, \"can_mod_post\": false, \"created_utc\": 1565542136.0, \"send_replies\": true, \"parent_id\": \"t1_ewm2iqj\", \"score\": 1, \"author_fullname\": \"t2_qh3te\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You can define your own keyboard layouts in emacs. See `quail` minor mode. Example configuration is [here](https://github.com/cadadr/configuration/blob/master/emacs.d/init.el) (search `quail-keyboard-layout-alist`).\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_ewm35uv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can define your own keyboard layouts in emacs. See \\u003Ccode\\u003Equail\\u003C/code\\u003E minor mode. Example configuration is \\u003Ca href=\\\"https://github.com/cadadr/configuration/blob/master/emacs.d/init.el\\\"\\u003Ehere\\u003C/a\\u003E (search \\u003Ccode\\u003Equail-keyboard-layout-alist\\u003C/code\\u003E).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/ewm35uv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/\", \"created\": 1565570936.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cox716\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewm35kv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"oantolin\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565542131.0, \"send_replies\": true, \"parent_id\": \"t3_cox716\", \"score\": 2, \"author_fullname\": \"t2_3fxjo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Comments of about 2 lines I usually type directly into Reddit, often on my phone while riding the subway. Longer posts I type into a temporary markdown-mode buffer in Emacs and then copy and paste to the Reddit website.\\n\\nI used to write a lot in markdown, but I switched to Org mode for most of that. I think I pretty much only use markdown-mode for Reddit now.\", \"link_title\": \"What's your emacs workflow for writing posts on reddit?\", \"author_flair_css_class\": null, \"name\": \"t1_ewm35kv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EComments of about 2 lines I usually type directly into Reddit, often on my phone while riding the subway. Longer posts I type into a temporary markdown-mode buffer in Emacs and then copy and paste to the Reddit website.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI used to write a lot in markdown, but I switched to Org mode for most of that. I think I pretty much only use markdown-mode for Reddit now.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/ewm35kv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"report_reasons\": null, \"link_author\": \"ouroboroslisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"created\": 1565570931.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmnumy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewm2iqj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nightblair\", \"num_comments\": 33, \"can_mod_post\": false, \"created_utc\": 1565541692.0, \"send_replies\": true, \"parent_id\": \"t1_ewlymfy\", \"score\": 1, \"author_fullname\": \"t2_6rwvd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I've tried this before and it would be fine, but sadly Emacs does not have my obscure country keyboard variant layout I need. (it has QWERTZ layout only)\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_ewm2iqj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve tried this before and it would be fine, but sadly Emacs does not have my obscure country keyboard variant layout I need. (it has QWERTZ layout only)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/ewm2iqj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/\", \"created\": 1565570492.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cnkbth\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlyn6k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 22, \"can_mod_post\": false, \"created_utc\": 1565539086.0, \"send_replies\": true, \"parent_id\": \"t1_ewltqx4\", \"score\": 1, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks, here is my current version again using completion at point and trying to be more generic so you could use it with helm/and friends:\\n\\n ;; -*- lexical-binding: t; -*-\\n\\n (add-hook 'prog-mode-hook #'counsel-fc-setup)\\n\\n (defun counsel-fc-setup ()\\n ;; add to front, the function checks for ./\\n ;; based on counsel-fc-fap-function and counsel-fc-default-function\\n ;; if not appropriate later completion functions are tried\\n (add-hook 'completion-at-point-functions\\n 'counsel-fc-complete-file-name-at-point nil t))\\n\\n (defvar counsel-fc-fap-function #'counsel-fc--fap\\n \\\"Function to get fap data at point. When path is found at point\\n the function should return:\\n\\n (list start end path).\\\")\\n\\n (defvar counsel-fc-default-function #'counsel-fc--default\\n \\\"When not file path at point this function can return non-nil\\n to invoke file completion from current `default-directory'.\\\")\\n\\n\\n (defun counsel-fc--fap ()\\n \\\"Return fap data at point.\\n\\n File fap has to look like a UNIX pathname to be accepted.\\\"\\n (let* ((fn (thing-at-point 'filename))\\n (fap (and fn\\n (or (counsel-fc--in-string-p)\\n (counsel-fc--in-comment-p))\\n (or (string-match \\\"\\\\\\\\`[./~]\\\" fn)\\n (string-match \\\"/\\\\\\\\'\\\" fn))\\n fn)))\\n (when (and fap\\n (or (looking-back (regexp-quote fap)\\n (line-beginning-position))\\n (looking-back (regexp-quote\\n (expand-file-name fap)))))\\n (list (match-beginning 0) (match-end 0) (match-string 0)))))\\n\\n (defun counsel-fc--default ()\\n (let ((beg (counsel-fc--in-string-p)))\\n (and beg\\n (= beg (1- (point))))))\\n\\n\\n (defun counsel-fc--in-string-p (\\u0026optional sp)\\n \\\"Return beg of string if point inside string.\\n\\n If SP is given it should be the `parse-partial-sexp' state.\\\"\\n (counsel-fc--in-comment-or-string-p 3 sp))\\n\\n\\n (defun counsel-fc--in-comment-p (\\u0026optional sp)\\n \\\"Return beg of comment if point inside comment.\\n\\n If SP is given it should be the `parse-partial-sexp' state.\\\"\\n (counsel-fc--in-comment-or-string-p 4 sp))\\n\\n (defun counsel-fc--in-comment-or-string-p (n \\u0026optional sp)\\n (when (or sp (derived-mode-p 'prog-mode))\\n (let* ((sp (or sp (syntax-ppss)))\\n (begin (nth 8 sp)))\\n (when (nth n sp)\\n begin))))\\n\\n (defun counsel-fc-complete-file-name-at-point ()\\n \\\"Function used for `completion-at-point-functions' for `counsel-fc'.\\\"\\n (cond ((let ((fap (funcall counsel-fc-fap-function)))\\n (when fap\\n (let* ((start (pop fap))\\n (end (pop fap))\\n (fap (pop fap)))\\n (lambda ()\\n (counsel-fc fap)\\n ;; FIXME: better way to check for default action?\\n (unless (memq this-command\\n '(ivy-dispatching-done ivy-posframe-dispatching-done))\\n (delete-region start end)))))))\\n ;; start default without text before point\\n ((funcall counsel-fc-default-function)\\n ;; at string start use file completion in default dir\\n #'counsel-fc)\\n (t\\n ;; no fap, proceed with other completion funs\\n (list (point) (point) nil :exclusive 'no))))\\n\\n\\n (defvar counsel-fc-ivy-posframe-display-func 'ivy-posframe-display-at-point)\\n (defvar counsel-fc-ivy-display-func nil)\\n\\n (defun counsel-fc (\\u0026optional path)\\n \\\"Completing read a file name with `\\u00ecvy' and insert it.\\n\\n When PATH is given completion starts at PATH, otherwise\\n completion starts at `default-directory'.\\\"\\n (interactive)\\n (let* ((compdir (cond ((or (not path)\\n (not (file-name-directory path)))\\n (file-name-directory default-directory))\\n (t\\n (expand-file-name (file-name-directory path)))))\\n (initial (and path (file-name-nondirectory path)))\\n (dd default-directory))\\n (minibuffer-with-setup-hook (if initial (lambda () (insert initial))\\n #'ignore)\\n (let ((default-directory compdir)\\n ;; read-file-name-internal is the collection function\\n ;; which ivy priorities over everything else but for\\n ;; file completion at point one might use another display funciton\\n ;; as for regular file opening\\n (ivy-display-functions-alist\\n (when (boundp 'ivy-display-functions-alist)\\n (append `((read-file-name-internal . ,counsel-fc-ivy-display-func))\\n ivy-display-functions-alist)))\\n ;; if ivy-posframe-mode overrides ivy-display-function-alist\\n ;; so bind this here as well to let the user configure\\n (ivy-posframe-display-functions-alist\\n (when (boundp 'ivy-posframe-display-functions-alist)\\n (append `((read-file-name-internal . ,counsel-fc-ivy-posframe-display-func))\\n ivy-posframe-display-functions-alist))))\\n (let* ((x (read-file-name \\\"File: \\\"))\\n (completion (cond ((not path)\\n (file-relative-name x dd))\\n ((string-match \\\"^/\\\" path)\\n x)\\n ((string-match \\\"^~\\\" path)\\n (abbreviate-file-name x))\\n ((string-match \\\"^./\\\" path)\\n ;; keep prefix if user had used it\\n (concat \\\"./\\\"\\n (file-relative-name x dd)))\\n (t\\n (file-relative-name x dd)))))\\n (insert completion))))))\", \"link_title\": \"What is your favorite method to insert a filename at point?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlyn6k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, here is my current version again using completion at point and trying to be more generic so you could use it with helm/and friends:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; -*- lexical-binding: t; -*-\\n\\n(add-hook \\u0026#39;prog-mode-hook #\\u0026#39;counsel-fc-setup)\\n\\n(defun counsel-fc-setup ()\\n ;; add to front, the function checks for ./\\n ;; based on counsel-fc-fap-function and counsel-fc-default-function\\n ;; if not appropriate later completion functions are tried\\n (add-hook \\u0026#39;completion-at-point-functions\\n \\u0026#39;counsel-fc-complete-file-name-at-point nil t))\\n\\n(defvar counsel-fc-fap-function #\\u0026#39;counsel-fc--fap\\n \\u0026quot;Function to get fap data at point. When path is found at point\\nthe function should return:\\n\\n (list start end path).\\u0026quot;)\\n\\n(defvar counsel-fc-default-function #\\u0026#39;counsel-fc--default\\n \\u0026quot;When not file path at point this function can return non-nil\\nto invoke file completion from current `default-directory\\u0026#39;.\\u0026quot;)\\n\\n\\n(defun counsel-fc--fap ()\\n \\u0026quot;Return fap data at point.\\n\\nFile fap has to look like a UNIX pathname to be accepted.\\u0026quot;\\n (let* ((fn (thing-at-point \\u0026#39;filename))\\n (fap (and fn\\n (or (counsel-fc--in-string-p)\\n (counsel-fc--in-comment-p))\\n (or (string-match \\u0026quot;\\\\\\\\`[./~]\\u0026quot; fn)\\n (string-match \\u0026quot;/\\\\\\\\\\u0026#39;\\u0026quot; fn))\\n fn)))\\n (when (and fap\\n (or (looking-back (regexp-quote fap)\\n (line-beginning-position))\\n (looking-back (regexp-quote\\n (expand-file-name fap)))))\\n (list (match-beginning 0) (match-end 0) (match-string 0)))))\\n\\n(defun counsel-fc--default ()\\n (let ((beg (counsel-fc--in-string-p)))\\n (and beg\\n (= beg (1- (point))))))\\n\\n\\n(defun counsel-fc--in-string-p (\\u0026amp;optional sp)\\n \\u0026quot;Return beg of string if point inside string.\\n\\nIf SP is given it should be the `parse-partial-sexp\\u0026#39; state.\\u0026quot;\\n (counsel-fc--in-comment-or-string-p 3 sp))\\n\\n\\n(defun counsel-fc--in-comment-p (\\u0026amp;optional sp)\\n \\u0026quot;Return beg of comment if point inside comment.\\n\\nIf SP is given it should be the `parse-partial-sexp\\u0026#39; state.\\u0026quot;\\n (counsel-fc--in-comment-or-string-p 4 sp))\\n\\n(defun counsel-fc--in-comment-or-string-p (n \\u0026amp;optional sp)\\n (when (or sp (derived-mode-p \\u0026#39;prog-mode))\\n (let* ((sp (or sp (syntax-ppss)))\\n (begin (nth 8 sp)))\\n (when (nth n sp)\\n begin))))\\n\\n(defun counsel-fc-complete-file-name-at-point ()\\n \\u0026quot;Function used for `completion-at-point-functions\\u0026#39; for `counsel-fc\\u0026#39;.\\u0026quot;\\n (cond ((let ((fap (funcall counsel-fc-fap-function)))\\n (when fap\\n (let* ((start (pop fap))\\n (end (pop fap))\\n (fap (pop fap)))\\n (lambda ()\\n (counsel-fc fap)\\n ;; FIXME: better way to check for default action?\\n (unless (memq this-command\\n \\u0026#39;(ivy-dispatching-done ivy-posframe-dispatching-done))\\n (delete-region start end)))))))\\n ;; start default without text before point\\n ((funcall counsel-fc-default-function)\\n ;; at string start use file completion in default dir\\n #\\u0026#39;counsel-fc)\\n (t\\n ;; no fap, proceed with other completion funs\\n (list (point) (point) nil :exclusive \\u0026#39;no))))\\n\\n\\n(defvar counsel-fc-ivy-posframe-display-func \\u0026#39;ivy-posframe-display-at-point)\\n(defvar counsel-fc-ivy-display-func nil)\\n\\n(defun counsel-fc (\\u0026amp;optional path)\\n \\u0026quot;Completing read a file name with `\\u00ecvy\\u0026#39; and insert it.\\n\\n When PATH is given completion starts at PATH, otherwise\\n completion starts at `default-directory\\u0026#39;.\\u0026quot;\\n (interactive)\\n (let* ((compdir (cond ((or (not path)\\n (not (file-name-directory path)))\\n (file-name-directory default-directory))\\n (t\\n (expand-file-name (file-name-directory path)))))\\n (initial (and path (file-name-nondirectory path)))\\n (dd default-directory))\\n (minibuffer-with-setup-hook (if initial (lambda () (insert initial))\\n #\\u0026#39;ignore)\\n (let ((default-directory compdir)\\n ;; read-file-name-internal is the collection function\\n ;; which ivy priorities over everything else but for\\n ;; file completion at point one might use another display funciton\\n ;; as for regular file opening\\n (ivy-display-functions-alist\\n (when (boundp \\u0026#39;ivy-display-functions-alist)\\n (append `((read-file-name-internal . ,counsel-fc-ivy-display-func))\\n ivy-display-functions-alist)))\\n ;; if ivy-posframe-mode overrides ivy-display-function-alist\\n ;; so bind this here as well to let the user configure\\n (ivy-posframe-display-functions-alist\\n (when (boundp \\u0026#39;ivy-posframe-display-functions-alist)\\n (append `((read-file-name-internal . ,counsel-fc-ivy-posframe-display-func))\\n ivy-posframe-display-functions-alist))))\\n (let* ((x (read-file-name \\u0026quot;File: \\u0026quot;))\\n (completion (cond ((not path)\\n (file-relative-name x dd))\\n ((string-match \\u0026quot;^/\\u0026quot; path)\\n x)\\n ((string-match \\u0026quot;^~\\u0026quot; path)\\n (abbreviate-file-name x))\\n ((string-match \\u0026quot;^./\\u0026quot; path)\\n ;; keep prefix if user had used it\\n (concat \\u0026quot;./\\u0026quot;\\n (file-relative-name x dd)))\\n (t\\n (file-relative-name x dd)))))\\n (insert completion))))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/ewlyn6k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/\", \"report_reasons\": null, \"link_author\": \"clemera\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/\", \"created\": 1565567886.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmnumy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlymfy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yantar92\", \"num_comments\": 33, \"can_mod_post\": false, \"created_utc\": 1565539071.0, \"send_replies\": true, \"parent_id\": \"t1_ewldfct\", \"score\": 1, \"author_fullname\": \"t2_qh3te\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You can also use built-in emacs input method functionality. \\n\\nMy setup for pinyin:\\n\\n (use-package pyim :straight t :demand t)\\n (use-package pyim-basedict\\n :after pyim\\n :requires pyim\\n :config\\n (pyim-basedict-enable)\\n (setq default-input-method \\\"pyim\\\")\\n (setq-default pyim-english-input-switch-functions\\n '(pyim-probe-isearch-mode\\n pyim-probe-program-mode\\n pyim-probe-org-structure-template))\\n (setq pyim-page-tooltip 'tooltip)\\n (setq pyim-page-length 5))\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_ewlymfy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can also use built-in emacs input method functionality. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy setup for pinyin:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package pyim :straight t :demand t)\\n(use-package pyim-basedict\\n :after pyim\\n :requires pyim\\n :config\\n (pyim-basedict-enable)\\n (setq default-input-method \\u0026quot;pyim\\u0026quot;)\\n (setq-default pyim-english-input-switch-functions\\n \\u0026#39;(pyim-probe-isearch-mode\\n pyim-probe-program-mode\\n pyim-probe-org-structure-template))\\n (setq pyim-page-tooltip \\u0026#39;tooltip)\\n (setq pyim-page-length 5))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/ewlymfy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/\", \"created\": 1565567871.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlxft2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kcin\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565538294.0, \"send_replies\": true, \"parent_id\": \"t1_ewlm0is\", \"score\": 1, \"author_fullname\": \"t2_2z9w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E There is only one way: don't upgrade packages en masse, and review code changes manually. The problem is that no one really has time for this, because there are too many changes for one or a few people to review them all.\\n\\nI guess with known authors there is no real dangers they add malicious code to their packages. Is there some additional protection when the package transferred to MELPA? Or is it only using HTTPS and fetching from the official repository? \\n\\nI guess with a HTTPS connection and Github there is no way to divert updates to some rogue repository.\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewlxft2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThere is only one way: don\\u0026#39;t upgrade packages en masse, and review code changes manually. The problem is that no one really has time for this, because there are too many changes for one or a few people to review them all.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI guess with known authors there is no real dangers they add malicious code to their packages. Is there some additional protection when the package transferred to MELPA? Or is it only using HTTPS and fetching from the official repository? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI guess with a HTTPS connection and Github there is no way to divert updates to some rogue repository.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewlxft2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565567094.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cnkbth\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlx9kq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 22, \"can_mod_post\": false, \"created_utc\": 1565538181.0, \"send_replies\": true, \"parent_id\": \"t1_ewln7x9\", \"score\": 1, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E I tried calling the counsel function itself and though it worked for most paths, it didn't work for absolute paths. \\n\\nThe counsel command itself does not try to guess the path at point, that logic is inside `counsel-fc-complete-file-name-at-point` for the completion-at-point feature. Not sure why it does not work for you. Have you called `(counsel-fc-setup)` before? After that you should be able to press TAB inside a string or comment (after a path) and it should show the completions (if you have set `tab-always-indent` to `complete` otherwise you need to press `C-M-i` for `completion-at-point` command).\\n\\n\\u003E It seems like we could serve this simpler by taking your ivy action and just adding it to ivy actions for counsel-find-file. \\n\\nThis is a nice idea, too. But than you would need to `C-x C-f M-n \\u003C...navigate\\u003E M-o \\u003Cactionkey\\u003E` instead of `TAB \\u003Cnavigate\\u003E RET` which I would prefer.\", \"link_title\": \"What is your favorite method to insert a filename at point?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlx9kq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI tried calling the counsel function itself and though it worked for most paths, it didn\\u0026#39;t work for absolute paths. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe counsel command itself does not try to guess the path at point, that logic is inside \\u003Ccode\\u003Ecounsel-fc-complete-file-name-at-point\\u003C/code\\u003E for the completion-at-point feature. Not sure why it does not work for you. Have you called \\u003Ccode\\u003E(counsel-fc-setup)\\u003C/code\\u003E before? After that you should be able to press TAB inside a string or comment (after a path) and it should show the completions (if you have set \\u003Ccode\\u003Etab-always-indent\\u003C/code\\u003E to \\u003Ccode\\u003Ecomplete\\u003C/code\\u003E otherwise you need to press \\u003Ccode\\u003EC-M-i\\u003C/code\\u003E for \\u003Ccode\\u003Ecompletion-at-point\\u003C/code\\u003E command).\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EIt seems like we could serve this simpler by taking your ivy action and just adding it to ivy actions for counsel-find-file. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is a nice idea, too. But than you would need to \\u003Ccode\\u003EC-x C-f M-n \\u0026lt;...navigate\\u0026gt; M-o \\u0026lt;actionkey\\u0026gt;\\u003C/code\\u003E instead of \\u003Ccode\\u003ETAB \\u0026lt;navigate\\u0026gt; RET\\u003C/code\\u003E which I would prefer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/ewlx9kq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/\", \"report_reasons\": null, \"link_author\": \"clemera\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/\", \"created\": 1565566981.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565540000.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosddh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlwyhw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"alexander_barbosa\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1565537976.0, \"send_replies\": true, \"parent_id\": \"t1_ewlb512\", \"score\": 0, \"author_fullname\": \"t2_4a0oj1c2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Nope.\\n\\nEmacs default completion, uses whatever list of candidates(skeletons) entries set by major and minor modes, mostly using minibuffer. \\n\\nDabbrev, and late, Hippie is a front-end that use all sort of \\\"guesses\\\" algorithms and expasion of abbreviations like `er` -\\u003E `emacs rocks`, or usually dictionary completions. But it lets you choose the order of completion and even lets you to append your own on-the-fly.\\n\\nCompany has shiny features but I think its price is too big a hassle than it should be. And even worse, it mitigate efforts that should be aiming Emacs default completion. \\n\\nI hope more front-end packages adding shiny features to Emacs default completion arrive.\\n\\nFor now, ido packages are what we have.\", \"link_title\": \"Does anyone have javascript autocomplete working with company-mode? What's your setup like?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlwyhw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENope.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmacs default completion, uses whatever list of candidates(skeletons) entries set by major and minor modes, mostly using minibuffer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDabbrev, and late, Hippie is a front-end that use all sort of \\u0026quot;guesses\\u0026quot; algorithms and expasion of abbreviations like \\u003Ccode\\u003Eer\\u003C/code\\u003E -\\u0026gt; \\u003Ccode\\u003Eemacs rocks\\u003C/code\\u003E, or usually dictionary completions. But it lets you choose the order of completion and even lets you to append your own on-the-fly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECompany has shiny features but I think its price is too big a hassle than it should be. And even worse, it mitigate efforts that should be aiming Emacs default completion. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI hope more front-end packages adding shiny features to Emacs default completion arrive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor now, ido packages are what we have.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/ewlwyhw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"report_reasons\": null, \"link_author\": \"202700000000\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"created\": 1565566776.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cov6lp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlwwmj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Sewing31\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565537941.0, \"send_replies\": true, \"parent_id\": \"t1_ewlgxli\", \"score\": 1, \"author_fullname\": \"t2_3p3qqcr1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"found the culprit. How can this line mess up my code highlighting of my config file???\\n\\n\\u0026#x200B;\\n\\n (setq org-todo-keywords '((sequence \\\"\\u261b TODO(t)\\\" \\\"|\\\" \\\"\\u003Cimg draggable=\\\"false\\\" class=\\\"emoji\\\" alt=\\\"\\u2714\\\" src=\\\"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/svg/2714.svg\\\"\\u003E DONE(d)\\\")(sequence \\\"\\u2691 WAITING(w)\\\" \\\"|\\\")(sequence \\\"|\\\" \\\"\\u2718 CANCELED(c)\\\")))\", \"link_title\": \"deleted custom-set-variables in init file =/\", \"author_flair_css_class\": null, \"name\": \"t1_ewlwwmj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efound the culprit. How can this line mess up my code highlighting of my config file???\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-todo-keywords \\u0026#39;((sequence \\u0026quot;\\u261b TODO(t)\\u0026quot; \\u0026quot;|\\u0026quot; \\u0026quot;\\u0026lt;img draggable=\\u0026quot;false\\u0026quot; class=\\u0026quot;emoji\\u0026quot; alt=\\u0026quot;\\u2714\\u0026quot; src=\\u0026quot;https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/svg/2714.svg\\u0026quot;\\u0026gt; DONE(d)\\u0026quot;)(sequence \\u0026quot;\\u2691 WAITING(w)\\u0026quot; \\u0026quot;|\\u0026quot;)(sequence \\u0026quot;|\\u0026quot; \\u0026quot;\\u2718 CANCELED(c)\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/ewlwwmj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/\", \"report_reasons\": null, \"link_author\": \"Sewing31\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/\", \"created\": 1565566741.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cou94v\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlw0f0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kcin\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1565537312.0, \"send_replies\": true, \"parent_id\": \"t1_ewlvocs\", \"score\": 1, \"author_fullname\": \"t2_2z9w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Thanks. Then it's likely he moved on to some Java IDE, because emacs support for java lags behind IDEs. Maybe with language servers now it's different, but then emacs java support was rudimentary compared to Java IDEs.\", \"link_title\": \"Lennart Borgman emacs32 author?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlw0f0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks. Then it\\u0026#39;s likely he moved on to some Java IDE, because emacs support for java lags behind IDEs. Maybe with language servers now it\\u0026#39;s different, but then emacs java support was rudimentary compared to Java IDEs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/ewlw0f0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"report_reasons\": null, \"link_author\": \"xah\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"created\": 1565566112.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosddh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlvr46\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Oroborous1313\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1565537127.0, \"send_replies\": true, \"parent_id\": \"t1_ewl3doj\", \"score\": 2, \"author_fullname\": \"t2_3oon0j3f\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I see that you have it working. Since you use `use-package`, you can add the following line to it:\\n \\n (use-package lsp-mode\\n :ensure t\\n :mode (\\\\\\\\.js$ . lsp)\\n\\nThis will start lsp-mode automatically when you open a javascript file. Addiitionally,take a look at [yasnippet](https://github.com/joaotavora/yasnippet) for a snippet engine and [yasnippet-snippets](https://github.com/AndreaCrotti/yasnippet-snippets) for snippets which cover almost any language. I am not too sure if you are familiar with them but if you need snippets, they are the best. Use `yas/describe-tables` to see all snippets for the current mode.\", \"link_title\": \"Does anyone have javascript autocomplete working with company-mode? What's your setup like?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlvr46\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see that you have it working. Since you use \\u003Ccode\\u003Euse-package\\u003C/code\\u003E, you can add the following line to it:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E (use-package lsp-mode\\n :ensure t\\n :mode (\\\\\\\\.js$ . lsp)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis will start lsp-mode automatically when you open a javascript file. Addiitionally,take a look at \\u003Ca href=\\\"https://github.com/joaotavora/yasnippet\\\"\\u003Eyasnippet\\u003C/a\\u003E for a snippet engine and \\u003Ca href=\\\"https://github.com/AndreaCrotti/yasnippet-snippets\\\"\\u003Eyasnippet-snippets\\u003C/a\\u003E for snippets which cover almost any language. I am not too sure if you are familiar with them but if you need snippets, they are the best. Use \\u003Ccode\\u003Eyas/describe-tables\\u003C/code\\u003E to see all snippets for the current mode.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/ewlvr46/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"report_reasons\": null, \"link_author\": \"202700000000\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"created\": 1565565927.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cou94v\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlvocs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xah\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1565537071.0, \"send_replies\": true, \"parent_id\": \"t1_ewlaob2\", \"score\": 3, \"author_fullname\": \"t2_3dm7g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"last i heard of Kai Grossjohann is on newsgroup comp.emacs maybe in 2008 or earlier, that he was looking for a job and found it, coding java.\", \"link_title\": \"Lennart Borgman emacs32 author?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlvocs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Elast i heard of Kai Grossjohann is on newsgroup comp.emacs maybe in 2008 or earlier, that he was looking for a job and found it, coding java.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/ewlvocs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"report_reasons\": null, \"link_author\": \"xah\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"created\": 1565565871.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cou94v\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlvikw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xah\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1565536953.0, \"send_replies\": true, \"parent_id\": \"t1_ewlkcm3\", \"score\": 2, \"author_fullname\": \"t2_3dm7g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"great. thanks.\", \"link_title\": \"Lennart Borgman emacs32 author?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlvikw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Egreat. thanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/ewlvikw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"report_reasons\": null, \"link_author\": \"xah\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"created\": 1565565753.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cox716\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlun4r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ouroboroslisp\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565536309.0, \"send_replies\": true, \"parent_id\": \"t1_ewlu8gj\", \"score\": 1, \"author_fullname\": \"t2_3eye434e\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's a really good idea! I've always disliked editing my posts on this site.\", \"link_title\": \"What's your emacs workflow for writing posts on reddit?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlun4r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s a really good idea! I\\u0026#39;ve always disliked editing my posts on this site.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/ewlun4r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"report_reasons\": null, \"link_author\": \"ouroboroslisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"created\": 1565565109.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cox716\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlu8gj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"agree-with-you\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565536003.0, \"send_replies\": true, \"parent_id\": \"t1_ewlu8b5\", \"score\": 1, \"author_fullname\": \"t2_sgypdwq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I agree, this does seem possible.\", \"link_title\": \"What's your emacs workflow for writing posts on reddit?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlu8gj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI agree, this does seem possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/ewlu8gj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"report_reasons\": null, \"link_author\": \"ouroboroslisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"created\": 1565564803.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cox716\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlu8b5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"set-eirc\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565535999.0, \"send_replies\": true, \"parent_id\": \"t3_cox716\", \"score\": 3, \"author_fullname\": \"t2_19f332u8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It's possible do use org-mode (which is great) and export it to ascii text or MD\", \"link_title\": \"What's your emacs workflow for writing posts on reddit?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlu8b5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s possible do use org-mode (which is great) and export it to ascii text or MD\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/ewlu8b5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"report_reasons\": null, \"link_author\": \"ouroboroslisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"created\": 1565564799.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565537040.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cnkbth\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewltqx4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"celeritasCelery\", \"num_comments\": 22, \"can_mod_post\": false, \"created_utc\": 1565535635.0, \"send_replies\": true, \"parent_id\": \"t1_ewfjpay\", \"score\": 1, \"author_fullname\": \"t2_z9rto\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Here is what I put together based on what you provided. Just bind `$counsel-ffap` to a key and use that to complete files. Still to test it more.\\n\\n\\n\\n (defun $ivy-complete-file (x)\\n (let ((path (ffap-file-at-point)))\\n (insert (cond ((not path)\\n (file-relative-name x default-directory))\\n ((string-match \\\"^/\\\" path)\\n (string-remove-prefix path x))\\n ((string-match \\\"^~\\\" path)\\n (string-remove-prefix path (abbreviate-file-name x)))\\n (t\\n (file-relative-name x default-directory))))))\\n \\n (defun $counsel-ffap ()\\n (interactive)\\n (let ((default-directory (expand-file-name (or (ffap-file-at-point) \\\"./\\\"))))\\n (counsel--find-file-1 \\\"Complete File: \\\" nil\\n #'$ivy-complete-file\\n 'counsel-find-file)))\", \"link_title\": \"What is your favorite method to insert a filename at point?\", \"author_flair_css_class\": null, \"name\": \"t1_ewltqx4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is what I put together based on what you provided. Just bind \\u003Ccode\\u003E$counsel-ffap\\u003C/code\\u003E to a key and use that to complete files. Still to test it more.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun $ivy-complete-file (x)\\n (let ((path (ffap-file-at-point)))\\n (insert (cond ((not path)\\n (file-relative-name x default-directory))\\n ((string-match \\u0026quot;^/\\u0026quot; path)\\n (string-remove-prefix path x))\\n ((string-match \\u0026quot;^~\\u0026quot; path)\\n (string-remove-prefix path (abbreviate-file-name x)))\\n (t\\n (file-relative-name x default-directory))))))\\n\\n(defun $counsel-ffap ()\\n (interactive)\\n (let ((default-directory (expand-file-name (or (ffap-file-at-point) \\u0026quot;./\\u0026quot;))))\\n (counsel--find-file-1 \\u0026quot;Complete File: \\u0026quot; nil\\n #\\u0026#39;$ivy-complete-file\\n \\u0026#39;counsel-find-file)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/ewltqx4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/\", \"report_reasons\": null, \"link_author\": \"clemera\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/\", \"created\": 1565564435.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565534614.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cox716\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewls4l0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"redblobgames\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565534428.0, \"send_replies\": true, \"parent_id\": \"t3_cox716\", \"score\": 4, \"author_fullname\": \"t2_bz8sn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I used to use It's All Text but now I use [GhostText](https://github.com/GhostText/GhostText), when I remember to. Sometimes though, I just open up `/tmp/foo.md` in Emacs, write my post, and then paste it into Reddit.\", \"link_title\": \"What's your emacs workflow for writing posts on reddit?\", \"author_flair_css_class\": null, \"name\": \"t1_ewls4l0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI used to use It\\u0026#39;s All Text but now I use \\u003Ca href=\\\"https://github.com/GhostText/GhostText\\\"\\u003EGhostText\\u003C/a\\u003E, when I remember to. Sometimes though, I just open up \\u003Ccode\\u003E/tmp/foo.md\\u003C/code\\u003E in Emacs, write my post, and then paste it into Reddit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/ewls4l0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"report_reasons\": null, \"link_author\": \"ouroboroslisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"created\": 1565563228.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cox716\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlrobp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jungleboydotca\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565534087.0, \"send_replies\": true, \"parent_id\": \"t3_cox716\", \"score\": 2, \"author_fullname\": \"t2_8cmnq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I don't, but if I did I'd use something like the options suggested here:\\nhttps://superuser.com/questions/261689/its-all-text-for-chrome\", \"link_title\": \"What's your emacs workflow for writing posts on reddit?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlrobp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t, but if I did I\\u0026#39;d use something like the options suggested here:\\n\\u003Ca href=\\\"https://superuser.com/questions/261689/its-all-text-for-chrome\\\"\\u003Ehttps://superuser.com/questions/261689/its-all-text-for-chrome\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/ewlrobp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"report_reasons\": null, \"link_author\": \"ouroboroslisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"created\": 1565562887.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_coi8n9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlphg6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"KrishnaKrGopal\", \"num_comments\": 61, \"can_mod_post\": false, \"created_utc\": 1565532355.0, \"send_replies\": true, \"parent_id\": \"t1_ewilvk4\", \"score\": 1, \"author_fullname\": \"t2_1zt5mges\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Yes, everything is painfully slow. I think this helped me a lot, but I am not sure why, or the technical details :\\n (setq w32-pipe-read-delay 0)\\n\\nCould even be a placebo effect, please check.\", \"link_title\": \"Does anyone else much prefer emacs itself to GNU/Linux?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlphg6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, everything is painfully slow. I think this helped me a lot, but I am not sure why, or the technical details :\\n (setq w32-pipe-read-delay 0)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECould even be a placebo effect, please check.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/ewlphg6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/\", \"report_reasons\": null, \"link_author\": \"LukeFL\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/\", \"created\": 1565561155.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cotwf1\", \"author_flair_template_id\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewloe5s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"nnreddit-user\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565531446.0, \"send_replies\": true, \"parent_id\": \"t3_cotwf1\", \"score\": 1, \"author_fullname\": \"t2_3um52nx7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You should really ask on github.\\n\\nThe README overpromises on lsp working out of the box with EIN. That interaction has never been tested. We'll change the README.\\n\\nI personally use elpy with some success. There's no doubt code needs to be written to mesh EIN, polymode, and lsp. I would not use lsp with EIN unless you want to make a highly nontrivial contribution.\", \"link_title\": \"lsp-mode within Emacs Ipython Notebook\", \"author_flair_css_class\": null, \"name\": \"t1_ewloe5s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou should really ask on github.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe README overpromises on lsp working out of the box with EIN. That interaction has never been tested. We\\u0026#39;ll change the README.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI personally use elpy with some success. There\\u0026#39;s no doubt code needs to be written to mesh EIN, polymode, and lsp. I would not use lsp with EIN unless you want to make a highly nontrivial contribution.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": false, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/ewloe5s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"report_reasons\": null, \"link_author\": \"pufdo\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"created\": 1565560246.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"rte_mode\": \"richtext\", \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cok7e4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlnowp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fragglestickcar0\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565530855.0, \"send_replies\": true, \"parent_id\": \"t1_ewlbg99\", \"score\": 1, \"author_fullname\": \"t2_226murc6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Forcing group-think is much more damaging\\n\\nYou're missing the point of flycheck and friends which is to remove from the\\nprogramming enterprise as much thinking as possible.\\n\\n1. Making everything look the same capitalizes on the human brain's wonderful\\ncapacity to pattern match.\\n2. Don't discount the real sense of security stemming from automated\\nneatness. Compilers don't care, but humans do.\\n\\nNone of this applies to one-off python scripts.\", \"link_title\": \"Tell Elpy to shut up?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlnowp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EForcing group-think is much more damaging\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYou\\u0026#39;re missing the point of flycheck and friends which is to remove from the\\nprogramming enterprise as much thinking as possible.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EMaking everything look the same capitalizes on the human brain\\u0026#39;s wonderful\\ncapacity to pattern match.\\u003C/li\\u003E\\n\\u003Cli\\u003EDon\\u0026#39;t discount the real sense of security stemming from automated\\nneatness. Compilers don\\u0026#39;t care, but humans do.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003ENone of this applies to one-off python scripts.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/ewlnowp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"report_reasons\": null, \"link_author\": \"nagora\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"created\": 1565559655.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cnkbth\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewln7x9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"celeritasCelery\", \"num_comments\": 22, \"can_mod_post\": false, \"created_utc\": 1565530447.0, \"send_replies\": true, \"parent_id\": \"t1_ewfjpay\", \"score\": 1, \"author_fullname\": \"t2_z9rto\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That is quite some impressive work! I could never get the capf version of it to work, it would not activate. I tried calling the counsel function itself and though it worked for most paths, it didn't work for absolute paths. \\n\\nIt seems like we could serve this simpler by taking your ivy action and just adding it to ivy actions for `counsel-find-file`. That way you could use `C-x C-f`, `M-n`, select the path then dispatch to your action to add completion to path at point. That would cut down on the amount of code required, but still accomplish the same thing. Though it would not trigger automatically, but that part did not work for me.\", \"link_title\": \"What is your favorite method to insert a filename at point?\", \"author_flair_css_class\": null, \"name\": \"t1_ewln7x9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat is quite some impressive work! I could never get the capf version of it to work, it would not activate. I tried calling the counsel function itself and though it worked for most paths, it didn\\u0026#39;t work for absolute paths. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt seems like we could serve this simpler by taking your ivy action and just adding it to ivy actions for \\u003Ccode\\u003Ecounsel-find-file\\u003C/code\\u003E. That way you could use \\u003Ccode\\u003EC-x C-f\\u003C/code\\u003E, \\u003Ccode\\u003EM-n\\u003C/code\\u003E, select the path then dispatch to your action to add completion to path at point. That would cut down on the amount of code required, but still accomplish the same thing. Though it would not trigger automatically, but that part did not work for me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/ewln7x9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/\", \"report_reasons\": null, \"link_author\": \"clemera\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/\", \"created\": 1565559247.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cony9u\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlm15m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Cobaya_\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1565529370.0, \"send_replies\": true, \"parent_id\": \"t1_ewknnou\", \"score\": 3, \"author_fullname\": \"t2_tzvhz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Searching on the mailing list I've found the following thread:\\n\\n[https://lists.gnu.org/archive/html/emacs-orgmode/2012-03/msg00578.html](https://lists.gnu.org/archive/html/emacs-orgmode/2012-03/msg00578.html)\\n\\nWhich suggest to configure `calendar-date-style` to `european`. This allows to input dd.mm.yyyy, but not dd.mm.yy nor dd-mm-yy{yy}.\\n\\nIt's not ideal but works.\\n\\nThanks for pointing me to the mailing list!\", \"link_title\": \"Is possible to modify the timestamps input prompt format?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlm15m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESearching on the mailing list I\\u0026#39;ve found the following thread:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://lists.gnu.org/archive/html/emacs-orgmode/2012-03/msg00578.html\\\"\\u003Ehttps://lists.gnu.org/archive/html/emacs-orgmode/2012-03/msg00578.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhich suggest to configure \\u003Ccode\\u003Ecalendar-date-style\\u003C/code\\u003E to \\u003Ccode\\u003Eeuropean\\u003C/code\\u003E. This allows to input dd.mm.yyyy, but not dd.mm.yy nor dd-mm-yy{yy}.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s not ideal but works.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for pointing me to the mailing list!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cony9u/is_possible_to_modify_the_timestamps_input_prompt/ewlm15m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cony9u/is_possible_to_modify_the_timestamps_input_prompt/\", \"report_reasons\": null, \"link_author\": \"Cobaya_\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cony9u/is_possible_to_modify_the_timestamps_input_prompt/\", \"created\": 1565558170.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlm0is\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565529353.0, \"send_replies\": true, \"parent_id\": \"t1_ewlah0l\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"We've been talking about this for years on the MELPA tracker. There is only one way: don't upgrade packages *en masse*, and review code changes manually. The problem is that no one really has time for this, because there are too many changes for one or a few people to review them all.\\n\\nMaybe your best chance now would be to use ELPA/MELPA packages that are distributed in Guix or Nix. I've seen that they're publishing some Emacs Lisp packages that way, and I think they don't get automatically updated when the package author pushes updates, so maybe Guix and Nix package maintainers review the changes before updating the Guix/Nix packages. And maybe their downstream packages aren't excessively outdated. But I don't know that for certain, so check for yourself.\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewlm0is\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe\\u0026#39;ve been talking about this for years on the MELPA tracker. There is only one way: don\\u0026#39;t upgrade packages \\u003Cem\\u003Een masse\\u003C/em\\u003E, and review code changes manually. The problem is that no one really has time for this, because there are too many changes for one or a few people to review them all.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaybe your best chance now would be to use ELPA/MELPA packages that are distributed in Guix or Nix. I\\u0026#39;ve seen that they\\u0026#39;re publishing some Emacs Lisp packages that way, and I think they don\\u0026#39;t get automatically updated when the package author pushes updates, so maybe Guix and Nix package maintainers review the changes before updating the Guix/Nix packages. And maybe their downstream packages aren\\u0026#39;t excessively outdated. But I don\\u0026#39;t know that for certain, so check for yourself.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewlm0is/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565558153.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewllsmn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565529144.0, \"send_replies\": true, \"parent_id\": \"t3_cosqjy\", \"score\": 4, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Okay, but a package doesn't need to be particularly crafty to do evil. When a package is loaded, all the lisp forms in it are evaluated. So the steps to do evil would be approximately:\\n\\n1. Publish innocent package to MELPA.\\n2. Wait for people to install it.\\n3. Add `(shell-command \\\"rm -f blahblah\\\")` as a top-level form in the file.\\n4. Push the update.\\n5. Wait for users to update the package and restart their Emacs and see their stuff deleted.\\n\\nAnd, of course, it could also do anything else, like download and install a trojan in the background.\\n\\nAnd not all MELPA packages are linked to a real-world identity--some people publish them pseudonymously. No one's package is rejected because of no one having heard of the author before.\\n\\nHaving said all that, I'm curious: have you (if you're github/@darkfeline) participated in the discussions on the MELPA tracker over the past few years? Or did you just suddenly dump an exploit PoC on /r/emacs? I don't recognize your nickname, but I may have overlooked or forgotten it.\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewllsmn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOkay, but a package doesn\\u0026#39;t need to be particularly crafty to do evil. When a package is loaded, all the lisp forms in it are evaluated. So the steps to do evil would be approximately:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E Publish innocent package to MELPA.\\u003C/li\\u003E\\n\\u003Cli\\u003E Wait for people to install it.\\u003C/li\\u003E\\n\\u003Cli\\u003E Add \\u003Ccode\\u003E(shell-command \\u0026quot;rm -f blahblah\\u0026quot;)\\u003C/code\\u003E as a top-level form in the file.\\u003C/li\\u003E\\n\\u003Cli\\u003E Push the update.\\u003C/li\\u003E\\n\\u003Cli\\u003E Wait for users to update the package and restart their Emacs and see their stuff deleted.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EAnd, of course, it could also do anything else, like download and install a trojan in the background.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd not all MELPA packages are linked to a real-world identity--some people publish them pseudonymously. No one\\u0026#39;s package is rejected because of no one having heard of the author before.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHaving said all that, I\\u0026#39;m curious: have you (if you\\u0026#39;re github/@darkfeline) participated in the discussions on the MELPA tracker over the past few years? Or did you just suddenly dump an exploit PoC on \\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E? I don\\u0026#39;t recognize your nickname, but I may have overlooked or forgotten it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewllsmn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565557944.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cov34c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewllimw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ideasman_42\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565528873.0, \"send_replies\": true, \"parent_id\": \"t1_ewll174\", \"score\": 0, \"author_fullname\": \"t2_jwv34\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"eh, does helm-navi require using helm? Currently using ivy.\", \"link_title\": \"Navigating between document sections\", \"author_flair_css_class\": null, \"name\": \"t1_ewllimw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eeh, does helm-navi require using helm? Currently using ivy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cov34c/navigating_between_document_sections/ewllimw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cov34c/navigating_between_document_sections/\", \"report_reasons\": null, \"link_author\": \"ideasman_42\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cov34c/navigating_between_document_sections/\", \"created\": 1565557673.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565528685.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosl13\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewll422\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1565528469.0, \"send_replies\": true, \"parent_id\": \"t3_cosl13\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Try https://github.com/DarwinAwardWinner/with-simulated-input\\n\\n\\u003E This package provides an Emacs Lisp macro, with-simulated-input, which evaluates one or more forms while simulating a sequence of input events for those forms to read. The result is the same as if you had evaluated the forms and then manually typed in the same input. This macro is useful for non-interactive testing of normally interactive commands and functions, such as completing-read.\", \"link_title\": \"Help to deal with Async delays for \\u201cSimulated Typing\\u201d effect\", \"author_flair_css_class\": null, \"name\": \"t1_ewll422\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETry \\u003Ca href=\\\"https://github.com/DarwinAwardWinner/with-simulated-input\\\"\\u003Ehttps://github.com/DarwinAwardWinner/with-simulated-input\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThis package provides an Emacs Lisp macro, with-simulated-input, which evaluates one or more forms while simulating a sequence of input events for those forms to read. The result is the same as if you had evaluated the forms and then manually typed in the same input. This macro is useful for non-interactive testing of normally interactive commands and functions, such as completing-read.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosl13/help_to_deal_with_async_delays_for_simulated/ewll422/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosl13/help_to_deal_with_async_delays_for_simulated/\", \"report_reasons\": null, \"link_author\": \"MrBojanglesReturns\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cosl13/help_to_deal_with_async_delays_for_simulated/\", \"created\": 1565557269.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cov34c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewll174\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565528392.0, \"send_replies\": true, \"parent_id\": \"t3_cov34c\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Check out the package `helm-navi`, which fulfills, \\\"When the menu items the active item is the heading above the cursor.\\\"\\n\\nAlso, for defining navigation functions, you may find the package `mosey` helpful.\", \"link_title\": \"Navigating between document sections\", \"author_flair_css_class\": null, \"name\": \"t1_ewll174\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECheck out the package \\u003Ccode\\u003Ehelm-navi\\u003C/code\\u003E, which fulfills, \\u0026quot;When the menu items the active item is the heading above the cursor.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, for defining navigation functions, you may find the package \\u003Ccode\\u003Emosey\\u003C/code\\u003E helpful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cov34c/navigating_between_document_sections/ewll174/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cov34c/navigating_between_document_sections/\", \"report_reasons\": null, \"link_author\": \"ideasman_42\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cov34c/navigating_between_document_sections/\", \"created\": 1565557192.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cov6lp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlkorz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Sewing31\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565528043.0, \"send_replies\": true, \"parent_id\": \"t1_ewlgxli\", \"score\": 1, \"author_fullname\": \"t2_3p3qqcr1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"thank you, thats what I figured also. Often times I find that changing stuff in my config really only takes effect after basically deleting everything in my .emacs.d directory except for the config file itself. that is cumbersome, as it usually requires all packages to be downloaded again, is there a way around that? Restarting emacs or reloading it does not seem to work...\", \"link_title\": \"deleted custom-set-variables in init file =/\", \"author_flair_css_class\": null, \"name\": \"t1_ewlkorz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethank you, thats what I figured also. Often times I find that changing stuff in my config really only takes effect after basically deleting everything in my .emacs.d directory except for the config file itself. that is cumbersome, as it usually requires all packages to be downloaded again, is there a way around that? Restarting emacs or reloading it does not seem to work...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/ewlkorz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/\", \"report_reasons\": null, \"link_author\": \"Sewing31\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/\", \"created\": 1565556843.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cou94v\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlkcm3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"npostavs\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1565527689.0, \"send_replies\": true, \"parent_id\": \"t3_cou94v\", \"score\": 15, \"author_fullname\": \"t2_5ha0gu1\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"He made a post to emacs-devel about 2 and a half years ago: https://lists.gnu.org/r/emacs-devel/2017-02/msg00239.html\", \"link_title\": \"Lennart Borgman emacs32 author?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlkcm3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe made a post to emacs-devel about 2 and a half years ago: \\u003Ca href=\\\"https://lists.gnu.org/r/emacs-devel/2017-02/msg00239.html\\\"\\u003Ehttps://lists.gnu.org/r/emacs-devel/2017-02/msg00239.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/ewlkcm3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"report_reasons\": null, \"link_author\": \"xah\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"created\": 1565556489.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 15}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cou94v\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewljani\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"prawnandcocktail\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1565526556.0, \"send_replies\": true, \"parent_id\": \"t3_cou94v\", \"score\": 3, \"author_fullname\": \"t2_8zx2q\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"He's an hero\", \"link_title\": \"Lennart Borgman emacs32 author?\", \"author_flair_css_class\": null, \"name\": \"t1_ewljani\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe\\u0026#39;s an hero\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/ewljani/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"report_reasons\": null, \"link_author\": \"xah\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"created\": 1565555356.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 1, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cov34c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlhoph\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"dwimzone\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565524695.0, \"send_replies\": true, \"parent_id\": \"t3_cov34c\", \"score\": 2, \"author_fullname\": \"t2_8drfimu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I also use my own scripts to address this domain. I haven't got around to try out [outshine](https://github.com/alphapapa/outshine) yet, but I suspect it takes a more general approach which I would probably like.\", \"link_title\": \"Navigating between document sections\", \"author_flair_css_class\": null, \"name\": \"t1_ewlhoph\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI also use my own scripts to address this domain. I haven\\u0026#39;t got around to try out \\u003Ca href=\\\"https://github.com/alphapapa/outshine\\\"\\u003Eoutshine\\u003C/a\\u003E yet, but I suspect it takes a more general approach which I would probably like.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cov34c/navigating_between_document_sections/ewlhoph/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cov34c/navigating_between_document_sections/\", \"report_reasons\": null, \"link_author\": \"ideasman_42\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cov34c/navigating_between_document_sections/\", \"created\": 1565553495.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_couno1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlh406\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"_priyadarshan\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1565523981.0, \"send_replies\": true, \"parent_id\": \"t1_ewlfllb\", \"score\": 1, \"author_fullname\": \"t2_1cqjsfrj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Very nice, thanks.\", \"link_title\": \"cus-edit+ - Let Customize know about changes made outside it [emacsmirror/GitHub]\", \"author_flair_css_class\": null, \"name\": \"t1_ewlh406\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVery nice, thanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/couno1/cusedit_let_customize_know_about_changes_made/ewlh406/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/couno1/cusedit_let_customize_know_about_changes_made/\", \"report_reasons\": null, \"link_author\": \"_priyadarshan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/emacsmirror/emacswiki.org/blob/master/cus-edit%2b.el\", \"created\": 1565552781.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cotwf1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlgyi1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yyoncho\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565523786.0, \"send_replies\": true, \"parent_id\": \"t1_ewlbmy2\", \"score\": 1, \"author_fullname\": \"t2_4s4u03u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E Although it seems more like a workaround, perhaps this should be reported to the ein devs or to the lsp devs? What's your opinion on this?\\n\\nI am `lsp-mode` maintainer - from our point of view, there is not much we can do on our side. Having a file name guard us against starting the language server in several situations - e. g. when you are in org-mode file and you have python SRC section. I am not familiar with `ein` and whether not having a file name is intentional or it is a bug.\", \"link_title\": \"lsp-mode within Emacs Ipython Notebook\", \"author_flair_css_class\": null, \"name\": \"t1_ewlgyi1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAlthough it seems more like a workaround, perhaps this should be reported to the ein devs or to the lsp devs? What\\u0026#39;s your opinion on this?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI am \\u003Ccode\\u003Elsp-mode\\u003C/code\\u003E maintainer - from our point of view, there is not much we can do on our side. Having a file name guard us against starting the language server in several situations - e. g. when you are in org-mode file and you have python SRC section. I am not familiar with \\u003Ccode\\u003Eein\\u003C/code\\u003E and whether not having a file name is intentional or it is a bug.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/ewlgyi1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"report_reasons\": null, \"link_author\": \"pufdo\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"created\": 1565552586.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cov6lp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlgxli\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"fredeB\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565523752.0, \"send_replies\": true, \"parent_id\": \"t3_cov6lp\", \"score\": 2, \"author_fullname\": \"t2_8lqjy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"The thing about `custom-set-varibles` is that they don't always update to reflect changes you make to your org config. I'm running the same setup, and I think it's more likely to be a change in your org config that is messing with you\", \"link_title\": \"deleted custom-set-variables in init file =/\", \"author_flair_css_class\": null, \"name\": \"t1_ewlgxli\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe thing about \\u003Ccode\\u003Ecustom-set-varibles\\u003C/code\\u003E is that they don\\u0026#39;t always update to reflect changes you make to your org config. I\\u0026#39;m running the same setup, and I think it\\u0026#39;s more likely to be a change in your org config that is messing with you\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/ewlgxli/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/\", \"report_reasons\": null, \"link_author\": \"Sewing31\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/\", \"created\": 1565552552.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cok7e4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlg31o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grimscythe_\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565522610.0, \"send_replies\": true, \"parent_id\": \"t1_ewlfc0r\", \"score\": 1, \"author_fullname\": \"t2_17fhdh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Seem very biased against python. Give it time and some tlc and you'll see that it's a fantastic language. I sincerely think that all of those formatting rules exist because there is a limited freedom to how python can be formatted, it's an attempt at uniformity. I understand that different people have different wants and needs, and thus Good luck \\u263a\\ufe0f\", \"link_title\": \"Tell Elpy to shut up?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlg31o\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESeem very biased against python. Give it time and some tlc and you\\u0026#39;ll see that it\\u0026#39;s a fantastic language. I sincerely think that all of those formatting rules exist because there is a limited freedom to how python can be formatted, it\\u0026#39;s an attempt at uniformity. I understand that different people have different wants and needs, and thus Good luck \\u263a\\ufe0f\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/ewlg31o/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"report_reasons\": null, \"link_author\": \"nagora\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"created\": 1565551410.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosddh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlflvv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zobi8225\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1565521934.0, \"send_replies\": true, \"parent_id\": \"t3_cosddh\", \"score\": 0, \"author_fullname\": \"t2_4ssme\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I also use elgot , the classical LSP , don't works for me.\\nMy dot emacs : \\nhttps://github.com/thomasluquet/dot-stuff/blob/master/init.el\", \"link_title\": \"Does anyone have javascript autocomplete working with company-mode? What's your setup like?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlflvv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI also use elgot , the classical LSP , don\\u0026#39;t works for me.\\nMy dot emacs : \\n\\u003Ca href=\\\"https://github.com/thomasluquet/dot-stuff/blob/master/init.el\\\"\\u003Ehttps://github.com/thomasluquet/dot-stuff/blob/master/init.el\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/ewlflvv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"report_reasons\": null, \"link_author\": \"202700000000\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"created\": 1565550734.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_couno1\", \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlfllb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"clemera\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1565521923.0, \"send_replies\": true, \"parent_id\": \"t1_ewlaxz9\", \"score\": 3, \"author_fullname\": \"t2_2iah8sv2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I use this macro to set variables in my config, which I have stolen somewhere:\\n\\n (defmacro csetq (\\u0026rest pairs)\\n \\\"A setq that is aware of the custom-set property of a variable.\\n\\n For each SYMBOL VALUE pair, calls either `custom-set' or `set-default'.\\\"\\n (let (forms)\\n (while pairs\\n (let ((variable (pop pairs))\\n (value (pop pairs)))\\n (push `(funcall (or (get ',variable 'custom-set) 'set-default)\\n ',variable ,value)\\n forms)))\\n `(progn ,@(nreverse forms))))\", \"link_title\": \"cus-edit+ - Let Customize know about changes made outside it [emacsmirror/GitHub]\", \"author_flair_css_class\": null, \"name\": \"t1_ewlfllb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use this macro to set variables in my config, which I have stolen somewhere:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defmacro csetq (\\u0026amp;rest pairs)\\n \\u0026quot;A setq that is aware of the custom-set property of a variable.\\n\\nFor each SYMBOL VALUE pair, calls either `custom-set\\u0026#39; or `set-default\\u0026#39;.\\u0026quot;\\n (let (forms)\\n (while pairs\\n (let ((variable (pop pairs))\\n (value (pop pairs)))\\n (push `(funcall (or (get \\u0026#39;,variable \\u0026#39;custom-set) \\u0026#39;set-default)\\n \\u0026#39;,variable ,value)\\n forms)))\\n `(progn ,@(nreverse forms))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/couno1/cusedit_let_customize_know_about_changes_made/ewlfllb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/couno1/cusedit_let_customize_know_about_changes_made/\", \"report_reasons\": null, \"link_author\": \"_priyadarshan\", \"author_flair_text\": \"(with-emacs.com\", \"link_url\": \"https://github.com/emacsmirror/emacswiki.org/blob/master/cus-edit%2b.el\", \"created\": 1565550723.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cok7e4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlfc0r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nagora\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565521531.0, \"send_replies\": true, \"parent_id\": \"t1_ewldq7n\", \"score\": 0, \"author_fullname\": \"t2_rrtp7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Well, I've been coding in teams for 35 years now and the lack of a space after a comma has never bothered me or anyone else.\\n\\nNot that I would object to *you* putting the space in your own code. I've always worked with people who had their own styles of doing things like that. Even some people who always take a new line when they use a comma - that's preferable to the people who make 300 character-long lines.\\n\\nI'm just finding python's fascistic approach rather tiresome, especially when there are so many more important problems with the syntax of the language in general. You know - look to the beam in your own eye. It's a remarkably ugly language with uncomfortable reminders of PHP's half-arsed OOP model (at least it has decent meta-programming, though).\\n\\nAnyway, I'll try to get autoformating working with elpy so I don't have to waste time on these distractions.\", \"link_title\": \"Tell Elpy to shut up?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlfc0r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, I\\u0026#39;ve been coding in teams for 35 years now and the lack of a space after a comma has never bothered me or anyone else.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot that I would object to \\u003Cem\\u003Eyou\\u003C/em\\u003E putting the space in your own code. I\\u0026#39;ve always worked with people who had their own styles of doing things like that. Even some people who always take a new line when they use a comma - that\\u0026#39;s preferable to the people who make 300 character-long lines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m just finding python\\u0026#39;s fascistic approach rather tiresome, especially when there are so many more important problems with the syntax of the language in general. You know - look to the beam in your own eye. It\\u0026#39;s a remarkably ugly language with uncomfortable reminders of PHP\\u0026#39;s half-arsed OOP model (at least it has decent meta-programming, though).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway, I\\u0026#39;ll try to get autoformating working with elpy so I don\\u0026#39;t have to waste time on these distractions.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/ewlfc0r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"report_reasons\": null, \"link_author\": \"nagora\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"created\": 1565550331.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_coi8n9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlew6n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"NonreciprocatingCrow\", \"num_comments\": 61, \"can_mod_post\": false, \"created_utc\": 1565520886.0, \"send_replies\": true, \"parent_id\": \"t1_ewkx7r8\", \"score\": 1, \"author_fullname\": \"t2_ijjatn4\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Ahh. Don't usually think of multiprocessing. Which is odd. \\u00af\\\\\\\\\\\\_(\\u30c4)\\\\_/\\u00af\", \"link_title\": \"Does anyone else much prefer emacs itself to GNU/Linux?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlew6n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAhh. Don\\u0026#39;t usually think of multiprocessing. Which is odd. \\u00af\\\\_(\\u30c4)_/\\u00af\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/ewlew6n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/\", \"report_reasons\": null, \"link_author\": \"LukeFL\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/\", \"created\": 1565549686.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cok7e4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewldq7n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grimscythe_\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565519112.0, \"send_replies\": true, \"parent_id\": \"t1_ewlbg99\", \"score\": 2, \"author_fullname\": \"t2_17fhdh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"You'll find out one day how wrong you are.\\n\\nPS. No whitespace around = or no space after a comma is pretty bad man. Never seen cramped formatting like this before.\", \"link_title\": \"Tell Elpy to shut up?\", \"author_flair_css_class\": null, \"name\": \"t1_ewldq7n\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;ll find out one day how wrong you are.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS. No whitespace around = or no space after a comma is pretty bad man. Never seen cramped formatting like this before.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/ewldq7n/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"report_reasons\": null, \"link_author\": \"nagora\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"created\": 1565547912.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_coi8n9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewldld0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grimscythe_\", \"num_comments\": 61, \"can_mod_post\": false, \"created_utc\": 1565518902.0, \"send_replies\": true, \"parent_id\": \"t1_ewjwpbf\", \"score\": 1, \"author_fullname\": \"t2_17fhdh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"That's why I called it \\\"original\\\" (so to speak) \\ud83e\\udd23\", \"link_title\": \"Does anyone else much prefer emacs itself to GNU/Linux?\", \"author_flair_css_class\": null, \"name\": \"t1_ewldld0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s why I called it \\u0026quot;original\\u0026quot; (so to speak) \\ud83e\\udd23\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/ewldld0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/\", \"report_reasons\": null, \"link_author\": \"LukeFL\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/\", \"created\": 1565547702.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosddh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewldix7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"grimscythe_\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1565518797.0, \"send_replies\": true, \"parent_id\": \"t3_cosddh\", \"score\": 1, \"author_fullname\": \"t2_17fhdh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I managed to get lsp-mode to work, but indexing was waaaaay too slow. Eglot worked out of the box, just followed the setup on the GitHub page. But I had best results with tern, setup [here] (https://emacs.cafe/emacs/javascript/setup/2017/04/23/emacs-setup-javascript.html)\", \"link_title\": \"Does anyone have javascript autocomplete working with company-mode? What's your setup like?\", \"author_flair_css_class\": null, \"name\": \"t1_ewldix7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI managed to get lsp-mode to work, but indexing was waaaaay too slow. Eglot worked out of the box, just followed the setup on the GitHub page. But I had best results with tern, setup \\u003Ca href=\\\"https://emacs.cafe/emacs/javascript/setup/2017/04/23/emacs-setup-javascript.html\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/ewldix7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"report_reasons\": null, \"link_author\": \"202700000000\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"created\": 1565547597.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmnumy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewldfct\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nightblair\", \"num_comments\": 33, \"can_mod_post\": false, \"created_utc\": 1565518634.0, \"send_replies\": true, \"parent_id\": \"t1_ew74yr4\", \"score\": 1, \"author_fullname\": \"t2_6rwvd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Sadly, setting the locale don't work for me. I've found numerous possible solutions on the web, however nothing really works. Emacs is pretty unusable for me in that case.\", \"link_title\": \"Weekly tips/trick/etc/ thread\", \"author_flair_css_class\": null, \"name\": \"t1_ewldfct\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESadly, setting the locale don\\u0026#39;t work for me. I\\u0026#39;ve found numerous possible solutions on the web, however nothing really works. Emacs is pretty unusable for me in that case.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/ewldfct/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/\", \"created\": 1565547434.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_couaey\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlcpzo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PendHackcat\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565517527.0, \"send_replies\": true, \"parent_id\": \"t1_ewlclfq\", \"score\": 1, \"author_fullname\": \"t2_2x5fxntc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"yes,i create a issue ,but dont get reply . so i ask for help in reddit. meet you\", \"link_title\": \"How to set color of flycheck-posframe\", \"author_flair_css_class\": null, \"name\": \"t1_ewlcpzo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyes,i create a issue ,but dont get reply . so i ask for help in reddit. meet you\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/ewlcpzo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"report_reasons\": null, \"link_author\": \"PendHackcat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"created\": 1565546327.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_couaey\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlclfq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565517323.0, \"send_replies\": true, \"parent_id\": \"t1_ewlbh7g\", \"score\": 1, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I assume that is your post on github?\\n\\nPerhaps we will get some ideas there.....\", \"link_title\": \"How to set color of flycheck-posframe\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_ewlclfq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI assume that is your post on github?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPerhaps we will get some ideas there.....\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/ewlclfq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"report_reasons\": null, \"link_author\": \"PendHackcat\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"created\": 1565546123.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_couaey\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlciy6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565517214.0, \"send_replies\": true, \"parent_id\": \"t1_ewlbfbz\", \"score\": 1, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I can change the background, but I cannot change the foreground....\", \"link_title\": \"How to set color of flycheck-posframe\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_ewlciy6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can change the background, but I cannot change the foreground....\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/ewlciy6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"report_reasons\": null, \"link_author\": \"PendHackcat\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"created\": 1565546014.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565517127.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cotwf1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlbmy2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pufdo\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565515821.0, \"send_replies\": true, \"parent_id\": \"t1_ewlb9m0\", \"score\": 1, \"author_fullname\": \"t2_1qc1d9iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"It returns nil. I'll try to change the buffer file name; there is a function in ein called `ein:set-buffer-file-name` \\n\\nEdit: I ran `(setq buffer-file-name \\\"test\\\")` and everything seems to be working fine. I will update the post with instructions to get this working and running something like `(setq buffer-file-name \\\"test\\\")` automatically. Although it seems more like a workaround, perhaps this should be reported to the ein devs or to the lsp devs? What's your opinion on this?\\n\\nMany thanks for the help!\", \"link_title\": \"lsp-mode within Emacs Ipython Notebook\", \"author_flair_css_class\": null, \"name\": \"t1_ewlbmy2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt returns nil. I\\u0026#39;ll try to change the buffer file name; there is a function in ein called \\u003Ccode\\u003Eein:set-buffer-file-name\\u003C/code\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: I ran \\u003Ccode\\u003E(setq buffer-file-name \\u0026quot;test\\u0026quot;)\\u003C/code\\u003E and everything seems to be working fine. I will update the post with instructions to get this working and running something like \\u003Ccode\\u003E(setq buffer-file-name \\u0026quot;test\\u0026quot;)\\u003C/code\\u003E automatically. Although it seems more like a workaround, perhaps this should be reported to the ein devs or to the lsp devs? What\\u0026#39;s your opinion on this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks for the help!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/ewlbmy2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"report_reasons\": null, \"link_author\": \"pufdo\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"created\": 1565544621.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_couaey\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlbh7g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PendHackcat\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565515572.0, \"send_replies\": true, \"parent_id\": \"t1_ewlbfbz\", \"score\": 1, \"author_fullname\": \"t2_2x5fxntc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"wow, awesome thanks for you help bro!\", \"link_title\": \"How to set color of flycheck-posframe\", \"author_flair_css_class\": null, \"name\": \"t1_ewlbh7g\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewow, awesome thanks for you help bro!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/ewlbh7g/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"report_reasons\": null, \"link_author\": \"PendHackcat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"created\": 1565544372.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cok7e4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlbg99\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nagora\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565515530.0, \"send_replies\": true, \"parent_id\": \"t1_ewjo1ux\", \"score\": 0, \"author_fullname\": \"t2_rrtp7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E You should not dismiss them as trivial, all of the warnings lead to increased code readability\\n\\nThey really don't. Most of them are a waste of time even mentioning. I'm not writing messy code here. Indeed, I'm writing code which is less messy than the warnings are demanding.\\n\\nI certainly understand the idea of unreadable or badly formatted code, but whoever wrote this standard was more interested in making everyone format code exactly the same way as they do than in genuine readability issues. The idea that \\n\\n myList=[1,2,3,4]\\n\\nis badly formatted to the point where the system issues four warnings is amateurish nonsense.\\n\\n\\u003E Just imagine the world where each coder has his/hers own style. \\n\\nNothing wrong with that up to a point. Variance is the source of evolution. Forcing group-think is much more damaging than letting some people put three blank lines after a class definition (something it's just warned me about).\", \"link_title\": \"Tell Elpy to shut up?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlbg99\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EYou should not dismiss them as trivial, all of the warnings lead to increased code readability\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThey really don\\u0026#39;t. Most of them are a waste of time even mentioning. I\\u0026#39;m not writing messy code here. Indeed, I\\u0026#39;m writing code which is less messy than the warnings are demanding.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI certainly understand the idea of unreadable or badly formatted code, but whoever wrote this standard was more interested in making everyone format code exactly the same way as they do than in genuine readability issues. The idea that \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EmyList=[1,2,3,4]\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eis badly formatted to the point where the system issues four warnings is amateurish nonsense.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EJust imagine the world where each coder has his/hers own style. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ENothing wrong with that up to a point. Variance is the source of evolution. Forcing group-think is much more damaging than letting some people put three blank lines after a class definition (something it\\u0026#39;s just warned me about).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/ewlbg99/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"report_reasons\": null, \"link_author\": \"nagora\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"created\": 1565544330.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_couaey\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlbfbz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565515491.0, \"send_replies\": true, \"parent_id\": \"t1_ewla74c\", \"score\": 1, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"```\\n(use-package flycheck-posframe\\n :ensure t\\n :after flycheck\\n :config (add-hook 'flycheck-mode-hook #'flycheck-posframe-mode)\\n :custom-face (flycheck-posframe-error-face ((t (:background \\\"DarkSlateBlue\\\"))))\\n :custom-face (flycheck-posframe-warning-face ((t (:background \\\"DarkSlateBlue\\\"))))\\n :custom-face (flycheck-posframe-border-face ((t (:background \\\"DarkBlue\\\")))))\\n```\\nWorks, with shit colours :D\", \"link_title\": \"How to set color of flycheck-posframe\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_ewlbfbz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003E\\n(use-package flycheck-posframe\\n :ensure t\\n :after flycheck\\n :config (add-hook \\u0026#39;flycheck-mode-hook #\\u0026#39;flycheck-posframe-mode)\\n :custom-face (flycheck-posframe-error-face ((t (:background \\u0026quot;DarkSlateBlue\\u0026quot;))))\\n :custom-face (flycheck-posframe-warning-face ((t (:background \\u0026quot;DarkSlateBlue\\u0026quot;))))\\n :custom-face (flycheck-posframe-border-face ((t (:background \\u0026quot;DarkBlue\\u0026quot;)))))\\n\\u003C/code\\u003E\\nWorks, with shit colours :D\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/ewlbfbz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"report_reasons\": null, \"link_author\": \"PendHackcat\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"created\": 1565544291.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cotwf1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlb9m0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yyoncho\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565515240.0, \"send_replies\": true, \"parent_id\": \"t1_ewlb1dw\", \"score\": 1, \"author_fullname\": \"t2_4s4u03u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"\\u003E and again nothing happens after running C-u M-x lsp.\\n\\n`lsp` does one check before starting - it checks whether `(buffer-file-name)` is not `nil`. Can you do `M-: (buffer-file-name) RET` when you are in the polymode state and tell me whether it returns something?\", \"link_title\": \"lsp-mode within Emacs Ipython Notebook\", \"author_flair_css_class\": null, \"name\": \"t1_ewlb9m0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eand again nothing happens after running C-u M-x lsp.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elsp\\u003C/code\\u003E does one check before starting - it checks whether \\u003Ccode\\u003E(buffer-file-name)\\u003C/code\\u003E is not \\u003Ccode\\u003Enil\\u003C/code\\u003E. Can you do \\u003Ccode\\u003EM-: (buffer-file-name) RET\\u003C/code\\u003E when you are in the polymode state and tell me whether it returns something?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/ewlb9m0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"report_reasons\": null, \"link_author\": \"pufdo\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"created\": 1565544040.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosddh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlb512\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"boisdeb\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1565515038.0, \"send_replies\": true, \"parent_id\": \"t1_ewl6xno\", \"score\": 1, \"author_fullname\": \"t2_p36m7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"The default one is like dabbrev, where you cycle through each candidate?\", \"link_title\": \"Does anyone have javascript autocomplete working with company-mode? What's your setup like?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlb512\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe default one is like dabbrev, where you cycle through each candidate?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/ewlb512/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"report_reasons\": null, \"link_author\": \"202700000000\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"created\": 1565543838.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cotwf1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlb1dw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"pufdo\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565514881.0, \"send_replies\": true, \"parent_id\": \"t1_ewl9pbz\", \"score\": 1, \"author_fullname\": \"t2_1qc1d9iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I tried a few things:\\n\\n* Open a notebook in ein:notebook-mode, nothing happens with `C-u M-x lsp`. If I change the major mode to python mode and remove the only minor mode related to EIN it still does not work. \\n* Open a regular file, change major mode to python and then `C-u M-x lsp` works and a menu pops up.\\n* Open a notebook with polymode (so basically describe mode tells me that the major mode is python when the cursor is in a code cell and fundamental outside, also there is an extra minor mode Poly-Ein that wasn't there before) and again nothing happens after running `C-u M-x lsp`. \\n\\nI guess something happens when loading the notebooks because the major and minor modes in the first bullet point and second were identical and in the first case it didn't work and in the second it did\", \"link_title\": \"lsp-mode within Emacs Ipython Notebook\", \"author_flair_css_class\": null, \"name\": \"t1_ewlb1dw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI tried a few things:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EOpen a notebook in ein:notebook-mode, nothing happens with \\u003Ccode\\u003EC-u M-x lsp\\u003C/code\\u003E. If I change the major mode to python mode and remove the only minor mode related to EIN it still does not work. \\u003C/li\\u003E\\n\\u003Cli\\u003EOpen a regular file, change major mode to python and then \\u003Ccode\\u003EC-u M-x lsp\\u003C/code\\u003E works and a menu pops up.\\u003C/li\\u003E\\n\\u003Cli\\u003EOpen a notebook with polymode (so basically describe mode tells me that the major mode is python when the cursor is in a code cell and fundamental outside, also there is an extra minor mode Poly-Ein that wasn\\u0026#39;t there before) and again nothing happens after running \\u003Ccode\\u003EC-u M-x lsp\\u003C/code\\u003E. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI guess something happens when loading the notebooks because the major and minor modes in the first bullet point and second were identical and in the first case it didn\\u0026#39;t work and in the second it did\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/ewlb1dw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"report_reasons\": null, \"link_author\": \"pufdo\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"created\": 1565543681.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565515045.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cok7e4\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlayif\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nagora\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565514758.0, \"send_replies\": true, \"parent_id\": \"t1_ewj2h38\", \"score\": 1, \"author_fullname\": \"t2_rrtp7\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Ah, is that what autopep is for? I'll look at that. Thanks.\", \"link_title\": \"Tell Elpy to shut up?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlayif\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAh, is that what autopep is for? I\\u0026#39;ll look at that. Thanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/ewlayif/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"report_reasons\": null, \"link_author\": \"nagora\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"created\": 1565543558.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_couno1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlaxz9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"_priyadarshan\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1565514734.0, \"send_replies\": true, \"parent_id\": \"t3_couno1\", \"score\": 2, \"author_fullname\": \"t2_1cqjsfrj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"From the nicely written [documentation in the code](https://github.com/emacsmirror/emacswiki.org/blob/master/cus-edit+.el#L74):\\n\\n\\u003E There are various ways to change preferences outside of Customize,\\n\\u003E and Customize unfortunately doesn't recognize these changes as\\n\\u003E preference settings - it considers them to be \\\"changed outside the\\n\\u003E customize buffer\\\", which really means that it just throws up its\\n\\u003E hands.\\n\\u003E\\n\\u003E The main idea here is to let Customize know about changes made\\n\\u003E outside it, to make Customize think that they were made inside\\n\\u003E Customize. In this way, there is no such outside/inside\\n\\u003E distinction (for user preferences), and it doesn't matter where or\\n\\u003E how a preference is changed.\", \"link_title\": \"cus-edit+ - Let Customize know about changes made outside it [emacsmirror/GitHub]\", \"author_flair_css_class\": null, \"name\": \"t1_ewlaxz9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFrom the nicely written \\u003Ca href=\\\"https://github.com/emacsmirror/emacswiki.org/blob/master/cus-edit+.el#L74\\\"\\u003Edocumentation in the code\\u003C/a\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThere are various ways to change preferences outside of Customize,\\n and Customize unfortunately doesn\\u0026#39;t recognize these changes as\\n preference settings - it considers them to be \\u0026quot;changed outside the\\n customize buffer\\u0026quot;, which really means that it just throws up its\\n hands.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe main idea here is to let Customize know about changes made\\n outside it, to make Customize think that they were made inside\\n Customize. In this way, there is no such outside/inside\\n distinction (for user preferences), and it doesn\\u0026#39;t matter where or\\n how a preference is changed.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/couno1/cusedit_let_customize_know_about_changes_made/ewlaxz9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/couno1/cusedit_let_customize_know_about_changes_made/\", \"report_reasons\": null, \"link_author\": \"_priyadarshan\", \"author_flair_text\": null, \"link_url\": \"https://github.com/emacsmirror/emacswiki.org/blob/master/cus-edit%2b.el\", \"created\": 1565543534.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cou94v\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlaob2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"kcin\", \"num_comments\": 8, \"can_mod_post\": false, \"created_utc\": 1565514313.0, \"send_replies\": true, \"parent_id\": \"t3_cou94v\", \"score\": 13, \"author_fullname\": \"t2_2z9w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I also wonder where some of the guys who were very active on emacs lists on the past went. Like Lennart Borgman, Kai Grossjohann, etc. Did they leave emacs behind or they still use it, just have no time or inclination to work on it anymore?\", \"link_title\": \"Lennart Borgman emacs32 author?\", \"author_flair_css_class\": null, \"name\": \"t1_ewlaob2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI also wonder where some of the guys who were very active on emacs lists on the past went. Like Lennart Borgman, Kai Grossjohann, etc. Did they leave emacs behind or they still use it, just have no time or inclination to work on it anymore?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/ewlaob2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"report_reasons\": null, \"link_author\": \"xah\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"created\": 1565543113.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 13}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cosqjy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlah0l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jmercouris\", \"num_comments\": 14, \"can_mod_post\": false, \"created_utc\": 1565514005.0, \"send_replies\": true, \"parent_id\": \"t3_cosqjy\", \"score\": 1, \"author_fullname\": \"t2_9b1sjpd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Interesting demonstration, do you have any ideas how this might be prevented, any way a user can protect themselves?\", \"link_title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"author_flair_css_class\": null, \"name\": \"t1_ewlah0l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EInteresting demonstration, do you have any ideas how this might be prevented, any way a user can protect themselves?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/ewlah0l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"report_reasons\": null, \"link_author\": \"gepheir6yoF\", \"author_flair_text\": null, \"link_url\": \"https://github.com/darkfeline/mimic.el\", \"created\": 1565542805.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_couaey\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewla74c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PendHackcat\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565513589.0, \"send_replies\": true, \"parent_id\": \"t1_ewla4nu\", \"score\": 1, \"author_fullname\": \"t2_2x5fxntc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"thanks for your help , i will try this\", \"link_title\": \"How to set color of flycheck-posframe\", \"author_flair_css_class\": null, \"name\": \"t1_ewla74c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethanks for your help , i will try this\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/ewla74c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"report_reasons\": null, \"link_author\": \"PendHackcat\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"created\": 1565542389.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_couaey\", \"author_flair_template_id\": \"62600d62-1fb4-11e9-aff8-0e4cdb35d064\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewla4nu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"xircon\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565513486.0, \"send_replies\": true, \"parent_id\": \"t3_couaey\", \"score\": 1, \"author_fullname\": \"t2_6zxya\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"This is what I use:\\n\\n (set-face-attribute 'ivy-posframe nil :foreground \\\"white\\\" :background \\\"DarkSlateBlue\\\")\\n\\nWorks for ivy\\n\\n (use-package hydra-posframe\\n :load-path \\\"~/.emacs.d/lisp/\\\"\\n :hook (after-init . hydra-posframe-enable)\\n :custom-face (hydra-posframe-face ((t (:background \\\"DarkSlateBlue\\\"))))\\n :custom-face (hydra-posframe-border-face ((t (:background \\\"DarkBlue\\\")))))\\n\\nWorks for Hydra. Maybe it can give you some ideas.\", \"link_title\": \"How to set color of flycheck-posframe\", \"author_flair_css_class\": \"purple\", \"name\": \"t1_ewla4nu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is what I use:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(set-face-attribute \\u0026#39;ivy-posframe nil :foreground \\u0026quot;white\\u0026quot; :background \\u0026quot;DarkSlateBlue\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWorks for ivy\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package hydra-posframe\\n :load-path \\u0026quot;~/.emacs.d/lisp/\\u0026quot;\\n :hook (after-init . hydra-posframe-enable)\\n :custom-face (hydra-posframe-face ((t (:background \\u0026quot;DarkSlateBlue\\u0026quot;))))\\n :custom-face (hydra-posframe-border-face ((t (:background \\u0026quot;DarkBlue\\u0026quot;)))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWorks for Hydra. Maybe it can give you some ideas.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/ewla4nu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"report_reasons\": null, \"link_author\": \"PendHackcat\", \"author_flair_text\": \"GNU Emacs\", \"link_url\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"created\": 1565542286.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_coi8n9\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewla3od\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TLATER\", \"num_comments\": 61, \"can_mod_post\": false, \"created_utc\": 1565513443.0, \"send_replies\": true, \"parent_id\": \"t1_ewl1wlf\", \"score\": 0, \"author_fullname\": \"t2_g3e0g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"Emacs lost DOS support only a couple of months ago. Emacs in a form similar to today's existed 15 years before Linux - and at least half a decade before GNU. Emacs still has support for a number of ancient platforms.\\n\\nEmacs is about as platform agnostic as it gets. Even if it *was* designed for a specific OS, it'd be GNU, with a Hurd kernel.\\n\\nAs open source projects go, the users decide what is supported and how - this might make it seem like Unix platforms are where Emacs is \\\"native\\\", because more people help make it work with it, but that's simply not true.\", \"link_title\": \"Does anyone else much prefer emacs itself to GNU/Linux?\", \"author_flair_css_class\": null, \"name\": \"t1_ewla3od\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEmacs lost DOS support only a couple of months ago. Emacs in a form similar to today\\u0026#39;s existed 15 years before Linux - and at least half a decade before GNU. Emacs still has support for a number of ancient platforms.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEmacs is about as platform agnostic as it gets. Even if it \\u003Cem\\u003Ewas\\u003C/em\\u003E designed for a specific OS, it\\u0026#39;d be GNU, with a Hurd kernel.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs open source projects go, the users decide what is supported and how - this might make it seem like Unix platforms are where Emacs is \\u0026quot;native\\u0026quot;, because more people help make it work with it, but that\\u0026#39;s simply not true.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/ewla3od/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/\", \"report_reasons\": null, \"link_author\": \"LukeFL\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/\", \"created\": 1565542243.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cotwf1\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewl9pbz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yyoncho\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1565512834.0, \"send_replies\": true, \"parent_id\": \"t1_ewl9i1e\", \"score\": 0, \"author_fullname\": \"t2_4s4u03u\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qhwu\", \"body\": \"I am not very familiar with polymode. But based on the fact that `*lsp-log*` is not created I think that polymode is the currently effective major mode. `lsp-mode` picks up the language server primarily based on the major mode. Can you try `C-u M-x lsp` and select the `pyls` language server? This will force lsp-mode to start that particular language server.\", \"link_title\": \"lsp-mode within Emacs Ipython Notebook\", \"author_flair_css_class\": null, \"name\": \"t1_ewl9pbz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am not very familiar with polymode. But based on the fact that \\u003Ccode\\u003E*lsp-log*\\u003C/code\\u003E is not created I think that polymode is the currently effective major mode. \\u003Ccode\\u003Elsp-mode\\u003C/code\\u003E picks up the language server primarily based on the major mode. Can you try \\u003Ccode\\u003EC-u M-x lsp\\u003C/code\\u003E and select the \\u003Ccode\\u003Epyls\\u003C/code\\u003E language server? This will force lsp-mode to start that particular language server.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"emacs\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/ewl9pbz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"report_reasons\": null, \"link_author\": \"pufdo\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"created\": 1565541634.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/emacs\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 0}}], \"after\": \"t1_ewl9pbz\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["273070"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:09:56 GMT"], "x-ratelimit-remaining": ["598.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["2"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579396.359957,VS0,VE474"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["4"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-08-12T03:09:56"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_ewni8xw"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:09:56 GMT"], "x-ratelimit-remaining": ["597.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["3"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579397.901583,VS0,VE91"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["4"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/comments/?raw_json=1&limit=100&before=t1_ewni8xw"}, "recorded_at": "2019-08-12T03:09:56"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Finder-like copy/paste/move on Mac: [https://github.com/casouri/trivial-copy](https://github.com/casouri/trivial-copy)\\n\\nBasically you can copy files to system pasteboard and paste from it in dired, instead of typing path.\", \"author_fullname\": \"t2_14cg51\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Trivial-copy\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_cp6bsn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565606610.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFinder-like copy/paste/move on Mac: \\u003Ca href=\\\"https://github.com/casouri/trivial-copy\\\"\\u003Ehttps://github.com/casouri/trivial-copy\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically you can copy files to system pasteboard and paste from it in dired, instead of typing path.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cp6bsn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"casouri\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cp6bsn/trivialcopy/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cp6bsn/trivialcopy/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565577810.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am having a confusing moment with Helm M-x. I forgot my key binding for org-agenda, so naturally I M-x and type in \\\"org agenda\\\" (note the space). I don't see the entry anywhere! But when I redo it with \\\"org-agenda\\\" (the actual command name) it's right there on top, of course.\\n\\nAm I missing something normal in Helm (I blanked on one of my most used bindings, so it's possible I'm having some very specific amnesia)? Or does this seem like a bug to anyone else?\", \"author_fullname\": \"t2_b6zh5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Helm M-x confusion (\\\"org agenda\\\" vs. \\\"org-agenda\\\")\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": true, \"name\": \"t3_cp5wvr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565604391.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am having a confusing moment with Helm M-x. I forgot my key binding for org-agenda, so naturally I M-x and type in \\u0026quot;org agenda\\u0026quot; (note the space). I don\\u0026#39;t see the entry anywhere! But when I redo it with \\u0026quot;org-agenda\\u0026quot; (the actual command name) it\\u0026#39;s right there on top, of course.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAm I missing something normal in Helm (I blanked on one of my most used bindings, so it\\u0026#39;s possible I\\u0026#39;m having some very specific amnesia)? Or does this seem like a bug to anyone else?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cp5wvr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"loopsdeer\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cp5wvr/helm_mx_confusion_org_agenda_vs_orgagenda/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cp5wvr/helm_mx_confusion_org_agenda_vs_orgagenda/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565575591.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Good evening. \\n\\nOrg2Blog v1.1.0 has some improvements to it. The README has a lot more in it. There is a user interface (Hydra) now that makes all of the features very visible and easy to use. Some code was refactored and some features were implemented and completed. There are a a lot more status and Interested in testing Org2Blog v1.1.0?error messages to help make sense of what the application is doing. There is a [Test Plan](https://github.com/org2blog/org2blog/blob/v1.1.0/docs/TestPlan.org) and notes about [Contributing](https://github.com/org2blog/org2blog/blob/v1.1.0/docs/CONTRIBUTING.org).\\n\\nTonight I finished coding and testing [Org2Blog 1.1.0](https://github.com/org2blog/org2blog/tree/v1.1.0) as far as I can take it. You know the point where you lose the ability to see the artifacts anymore? That is where I am. Everything seems to work, I've been using so \\\"it works on my computer\\\" lol. It is ready for folks that feel like trying out the new version. Folks who are patient and curious and pretty OK with bugs ranging from the dumb to the painful along with suggesting improvements for better documentation and even new functionality might enjoy this sort of thing.\\n\\nThe source code is [here](https://github.com/org2blog/org2blog/tree/v1.1.0). If you want to try it out from a package it is [here](https://github.com/org2blog/org2blog/tree/v1.1.0/package) v1.1.0; just delete the other version of your ELPA dir and use `package-install-file`.\\n\\nThanks for your time reading this. Have a great evening.\", \"author_fullname\": \"t2_3fcko\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Interested in testing Org2Blog v1.1.0?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cp4msp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565597536.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood evening. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg2Blog v1.1.0 has some improvements to it. The README has a lot more in it. There is a user interface (Hydra) now that makes all of the features very visible and easy to use. Some code was refactored and some features were implemented and completed. There are a a lot more status and Interested in testing Org2Blog v1.1.0?error messages to help make sense of what the application is doing. There is a \\u003Ca href=\\\"https://github.com/org2blog/org2blog/blob/v1.1.0/docs/TestPlan.org\\\"\\u003ETest Plan\\u003C/a\\u003E and notes about \\u003Ca href=\\\"https://github.com/org2blog/org2blog/blob/v1.1.0/docs/CONTRIBUTING.org\\\"\\u003EContributing\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETonight I finished coding and testing \\u003Ca href=\\\"https://github.com/org2blog/org2blog/tree/v1.1.0\\\"\\u003EOrg2Blog 1.1.0\\u003C/a\\u003E as far as I can take it. You know the point where you lose the ability to see the artifacts anymore? That is where I am. Everything seems to work, I\\u0026#39;ve been using so \\u0026quot;it works on my computer\\u0026quot; lol. It is ready for folks that feel like trying out the new version. Folks who are patient and curious and pretty OK with bugs ranging from the dumb to the painful along with suggesting improvements for better documentation and even new functionality might enjoy this sort of thing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe source code is \\u003Ca href=\\\"https://github.com/org2blog/org2blog/tree/v1.1.0\\\"\\u003Ehere\\u003C/a\\u003E. If you want to try it out from a package it is \\u003Ca href=\\\"https://github.com/org2blog/org2blog/tree/v1.1.0/package\\\"\\u003Ehere\\u003C/a\\u003E v1.1.0; just delete the other version of your ELPA dir and use \\u003Ccode\\u003Epackage-install-file\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for your time reading this. Have a great evening.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Org2Blog Maintainer\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cp4msp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"grettke\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/cp4msp/interested_in_testing_org2blog_v110/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cp4msp/interested_in_testing_org2blog_v110/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565568736.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'd like to enhance the shell-command-dont-erase-buffer option to indicate, in the fringe, where the output of each command begins. Well that's easy enough with an overlay arrow, but ideally multiple arrows would be shown, rather than only an arrow for the most recent command. Is there a nice way to do that, other than making a bunch of variables to add to overlay-arrow-variable-list?\", \"author_fullname\": \"t2_ajc92\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Putting indicators in the fringe?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cp0ph7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565578527.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d like to enhance the shell-command-dont-erase-buffer option to indicate, in the fringe, where the output of each command begins. Well that\\u0026#39;s easy enough with an overlay arrow, but ideally multiple arrows would be shown, rather than only an arrow for the most recent command. Is there a nice way to do that, other than making a bunch of variables to add to overlay-arrow-variable-list?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cp0ph7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"phalp\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cp0ph7/putting_indicators_in_the_fringe/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565549727.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I really don\\u2019t like that (warn) just pops up a new window that I have to first navigate to and then kill. It would be \\u2460 thing if focus auto switched to it on warning so I could make it go away with a single key press, but what I\\u2019d prefer even more is for the window to just kill itself after, say, 5 seconds. Now to do that, I\\u2019d need a post warning hook, but I can\\u2019t find something like that in emacs. The closest I\\u2019ve found is delayed-warnings-hook and I tried to add a method to it, but it didn\\u2019t seem to do anything when I call (warn) so I assume it\\u2019s for something else. Is there a hook for displaying warnings?\", \"author_fullname\": \"t2_42lfkqcf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Warning hook or ways to auto kill the warning buffer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_coz46g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565571112.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI really don\\u2019t like that (warn) just pops up a new window that I have to first navigate to and then kill. It would be \\u2460 thing if focus auto switched to it on warning so I could make it go away with a single key press, but what I\\u2019d prefer even more is for the window to just kill itself after, say, 5 seconds. Now to do that, I\\u2019d need a post warning hook, but I can\\u2019t find something like that in emacs. The closest I\\u2019ve found is delayed-warnings-hook and I tried to add a method to it, but it didn\\u2019t seem to do anything when I call (warn) so I assume it\\u2019s for something else. Is there a hook for displaying warnings?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"coz46g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"w3_ar3_l3g10n\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/coz46g/warning_hook_or_ways_to_auto_kill_the_warning/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/coz46g/warning_hook_or_ways_to_auto_kill_the_warning/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565542312.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have a Cask package with a pretty standard Cask file:\\n\\n```\\n(source gnu)\\n(source melpa)\\n\\n(package-file \\\"my-package.el\\\")\\n\\n(development\\n (depends-on \\\"ert-runner\\\"))\\n```\\n\\n`my-package.el` requires `lsp-mode`, which transitively depends on `spinner`.\\n\\nHowever, when I do `cask install` I get the following error:\\n\\n```\\nDependency lsp-mode failed to install: Package \\u2018spinner-1.7.3\\u2019 is unavailable\\nOutput:\\nSetting `package-selected-packages' temporarily since \\\"emacs -q\\\" would overwrite customizations\\nSetting `package-selected-packages' temporarily since \\\"emacs -q\\\" would overwrite customizations\\n```\\n\\nand no dependency is installed.\\n\\nI'm using Emacs 26.2 on macOS 10.14.6.\\n\\nI remember similar problems when installing GNU packages that were resolved by\\n\\n```\\n(setq gnutls-algorithm-priority \\\"NORMAL:-VERS-TLS1.3\\\")\\n```\\n\\nHowever, I'm not exactly sure how to change this variable in the context of a `cask install`. I've tried `cask eval` before a `cask install` but it does not work. Any ideas about how to solve this issue?\", \"author_fullname\": \"t2_108hfs\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\\"Package \\u2018spinner-1.7.3\\u2019 is unavailable\\\" after doing \\\"cask install\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_coyyzb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565570422.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a Cask package with a pretty standard Cask file:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\n(source gnu)\\n(source melpa)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(package-file \\u0026quot;my-package.el\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(development\\n (depends-on \\u0026quot;ert-runner\\u0026quot;))\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Emy-package.el\\u003C/code\\u003E requires \\u003Ccode\\u003Elsp-mode\\u003C/code\\u003E, which transitively depends on \\u003Ccode\\u003Espinner\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, when I do \\u003Ccode\\u003Ecask install\\u003C/code\\u003E I get the following error:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\nDependency lsp-mode failed to install: Package \\u2018spinner-1.7.3\\u2019 is unavailable\\nOutput:\\nSetting `package-selected-packages\\u0026#39; temporarily since \\u0026quot;emacs -q\\u0026quot; would overwrite customizations\\nSetting `package-selected-packages\\u0026#39; temporarily since \\u0026quot;emacs -q\\u0026quot; would overwrite customizations\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand no dependency is installed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using Emacs 26.2 on macOS 10.14.6.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI remember similar problems when installing GNU packages that were resolved by\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(setq gnutls-algorithm-priority \\u0026quot;NORMAL:-VERS-TLS1.3\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I\\u0026#39;m not exactly sure how to change this variable in the context of a \\u003Ccode\\u003Ecask install\\u003C/code\\u003E. I\\u0026#39;ve tried \\u003Ccode\\u003Ecask eval\\u003C/code\\u003E before a \\u003Ccode\\u003Ecask install\\u003C/code\\u003E but it does not work. Any ideas about how to solve this issue?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"coyyzb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dmartincy\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/coyyzb/package_spinner173_is_unavailable_after_doing/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/coyyzb/package_spinner173_is_unavailable_after_doing/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565541622.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've had some frustrating experiences writing posts into reddit in general. I'd be midway into my post and accidentally close the tab (and loose everything) I was working on or I'd miss an editing command I have in emacs. In a nutshell, it's the common problem of not being able to do my stuff in emacs, where I can use my editing commands, and easily backup what I'm writing. Do you guys use [md4rd](https://github.com/ahungry/md4rd) or something else? What's your workflow for efficiently creating posts on reddit?\", \"author_fullname\": \"t2_3eye434e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What's your emacs workflow for writing posts on reddit?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cox716\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565561584.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve had some frustrating experiences writing posts into reddit in general. I\\u0026#39;d be midway into my post and accidentally close the tab (and loose everything) I was working on or I\\u0026#39;d miss an editing command I have in emacs. In a nutshell, it\\u0026#39;s the common problem of not being able to do my stuff in emacs, where I can use my editing commands, and easily backup what I\\u0026#39;m writing. Do you guys use \\u003Ca href=\\\"https://github.com/ahungry/md4rd\\\"\\u003Emd4rd\\u003C/a\\u003E or something else? What\\u0026#39;s your workflow for efficiently creating posts on reddit?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cox716\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ouroboroslisp\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cox716/whats_your_emacs_workflow_for_writing_posts_on/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565532784.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I did that before and never hat any problems, but recently my emacs started to behave strangely. My init.el file is just reading in my .org config file via org-babel. Any this file is parsed correctly, but neither org-bullets are rendered nor is elisp code highlighted correctly, it is just displayed as plain text. Why is that and how can I restore it to \\\"normal\\\"?\\n\\n\\u0026#x200B;\\n\\nmy init file \\n\\n\\u0026#x200B;\\n\\n \\n ;; Bootstrap straight as the package manager of choice\\n (defvar bootstrap-version)\\n (let ((bootstrap-file\\n (expand-file-name \\\"straight/repos/straight.el/bootstrap.el\\\" user-emacs-directory))\\n (bootstrap-version 5))\\n (unless (file-exists-p bootstrap-file)\\n (with-current-buffer\\n (url-retrieve-synchronously\\n \\\"https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el\\\"\\n 'silent 'inhibit-cookies)\\n (goto-char (point-max))\\n (eval-print-last-sexp)))\\n (load bootstrap-file nil 'nomessage))\\n \\n ;; Use-package as the package configuration tool of choice\\n ;; Effectively replace use-package with straight-use-package\\n ;; https://github.com/raxod502/straight.el/blob/develop/README.md#integration-with-use-package\\n (straight-use-package 'use-package)\\n ;; Force use-package to use straight.el to automatically install missing packages\\n (setq straight-use-package-by-default t)\\n \\n \\n \\n ;;; This is the actual config file. It is omitted if it doesn't exist so emacs won't refuse to launch.\\n (when (file-readable-p \\\"~/.emacs.d/config.org\\\")\\n (org-babel-load-file (expand-file-name \\\"~/.emacs.d/config.org\\\")))\", \"author_fullname\": \"t2_3p3qqcr1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"deleted custom-set-variables in init file =/\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cov6lp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565547943.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI did that before and never hat any problems, but recently my emacs started to behave strangely. My init.el file is just reading in my .org config file via org-babel. Any this file is parsed correctly, but neither org-bullets are rendered nor is elisp code highlighted correctly, it is just displayed as plain text. Why is that and how can I restore it to \\u0026quot;normal\\u0026quot;?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Emy init file \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Bootstrap straight as the package manager of choice\\n(defvar bootstrap-version)\\n(let ((bootstrap-file\\n (expand-file-name \\u0026quot;straight/repos/straight.el/bootstrap.el\\u0026quot; user-emacs-directory))\\n (bootstrap-version 5))\\n (unless (file-exists-p bootstrap-file)\\n (with-current-buffer\\n (url-retrieve-synchronously\\n \\u0026quot;https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el\\u0026quot;\\n \\u0026#39;silent \\u0026#39;inhibit-cookies)\\n (goto-char (point-max))\\n (eval-print-last-sexp)))\\n (load bootstrap-file nil \\u0026#39;nomessage))\\n\\n;; Use-package as the package configuration tool of choice\\n;; Effectively replace use-package with straight-use-package\\n;; https://github.com/raxod502/straight.el/blob/develop/README.md#integration-with-use-package\\n(straight-use-package \\u0026#39;use-package)\\n;; Force use-package to use straight.el to automatically install missing packages\\n(setq straight-use-package-by-default t)\\n\\n\\n\\n;;; This is the actual config file. It is omitted if it doesn\\u0026#39;t exist so emacs won\\u0026#39;t refuse to launch.\\n(when (file-readable-p \\u0026quot;~/.emacs.d/config.org\\u0026quot;)\\n (org-babel-load-file (expand-file-name \\u0026quot;~/.emacs.d/config.org\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cov6lp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sewing31\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cov6lp/deleted_customsetvariables_in_init_file/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565519143.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've written my own script to navigate between sections in a document, in the case of C/C++ this uses doxygen sections, in other cases I use some add-hoc conventions (something like mark-down headings, within comments).\\n\\nIt's quite useful, and has some advantages over imenu.\\n\\n* When the menu items the active item is the heading above the cursor.\\n* The ability to jump to next/previous section is useful too.\\n\\nAre there more general packages that handle this, or are there ways to do this better?\\n\\nIf not, I could make this into a package.\\n\\n* Here's a [video showing it in use with C \\u0026 doxygen](https://www.youtube.com/watch?v=DU91dHuJhwM\\u0026feature=youtu.be\\u0026t=48).\\n* [This is the basic logic used.](https://emacs.stackexchange.com/a/38752/2418)\", \"author_fullname\": \"t2_jwv34\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Navigating between document sections\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cov34c\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565547146.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve written my own script to navigate between sections in a document, in the case of C/C++ this uses doxygen sections, in other cases I use some add-hoc conventions (something like mark-down headings, within comments).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s quite useful, and has some advantages over imenu.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EWhen the menu items the active item is the heading above the cursor.\\u003C/li\\u003E\\n\\u003Cli\\u003EThe ability to jump to next/previous section is useful too.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAre there more general packages that handle this, or are there ways to do this better?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf not, I could make this into a package.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EHere\\u0026#39;s a \\u003Ca href=\\\"https://www.youtube.com/watch?v=DU91dHuJhwM\\u0026amp;feature=youtu.be\\u0026amp;t=48\\\"\\u003Evideo showing it in use with C \\u0026amp; doxygen\\u003C/a\\u003E.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://emacs.stackexchange.com/a/38752/2418\\\"\\u003EThis is the basic logic used.\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cov34c\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ideasman_42\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cov34c/navigating_between_document_sections/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cov34c/navigating_between_document_sections/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565518346.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I can use this minal config to reproduce this problem, i tested it on emacs-mac emacs for osx. \\n\\n (package-initialize)\\n \\n ; (load-file (concat (file-name-directory user-emacs-directory)\\n \\t; \\\"core/core-load-paths.el\\\"))\\n (setq use-package-always-ensure t)\\n \\n \\n (defun hardcore/init-use-package ()\\n (setq package-archives'((\\\"melpa\\\" . \\\"http://elpa.emacs-china.org/melpa/\\\")\\n (\\\"gnu\\\" . \\\"http://elpa.emacs-china.org/gnu/\\\")))\\n (unless (package-installed-p 'use-package)\\n (package-refresh-contents)\\n (package-install 'use-package))\\n (eval-when-compile\\n (require 'use-package))\\n (setq use-package-always-ensure t)\\n (use-package use-package-ensure-system-package))\\n \\n (hardcore/init-use-package)\\n \\n (use-package dashboard\\n :ensure t\\n :diminish (dashboard-mode page-break-lines-mode)\\n :config\\n (dashboard-setup-startup-hook))\\n \\n ;; init.el ends here\\n\\nhttps://i.redd.it/vxibthifgsf31.png\", \"author_fullname\": \"t2_2x5fxntc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"the line of dashboard show a half, anyone has this problem\\uff1f\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"vxibthifgsf31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 592, \"x\": 604, \"u\": \"https://i.redd.it/vxibthifgsf31.png\"}, \"m\": \"image/png\", \"id\": \"vxibthifgsf31\"}}, \"name\": \"t3_cous0m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565544541.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can use this minal config to reproduce this problem, i tested it on emacs-mac emacs for osx. \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(package-initialize)\\n\\n; (load-file (concat (file-name-directory user-emacs-directory)\\n ; \\u0026quot;core/core-load-paths.el\\u0026quot;))\\n(setq use-package-always-ensure t)\\n\\n\\n(defun hardcore/init-use-package ()\\n (setq package-archives\\u0026#39;((\\u0026quot;melpa\\u0026quot; . \\u0026quot;http://elpa.emacs-china.org/melpa/\\u0026quot;)\\n (\\u0026quot;gnu\\u0026quot; . \\u0026quot;http://elpa.emacs-china.org/gnu/\\u0026quot;)))\\n (unless (package-installed-p \\u0026#39;use-package)\\n (package-refresh-contents)\\n (package-install \\u0026#39;use-package))\\n (eval-when-compile\\n (require \\u0026#39;use-package))\\n (setq use-package-always-ensure t)\\n (use-package use-package-ensure-system-package))\\n\\n(hardcore/init-use-package)\\n\\n (use-package dashboard\\n :ensure t\\n :diminish (dashboard-mode page-break-lines-mode)\\n :config\\n (dashboard-setup-startup-hook))\\n\\n;; init.el ends here\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/vxibthifgsf31.png\\\"\\u003Ehttps://i.redd.it/vxibthifgsf31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cous0m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PendHackcat\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cous0m/the_line_of_dashboard_show_a_half_anyone_has_this/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cous0m/the_line_of_dashboard_show_a_half_anyone_has_this/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565515741.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_1cqjsfrj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"cus-edit+ - Let Customize know about changes made outside it [emacsmirror/GitHub]\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_couno1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565543483.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"couno1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_priyadarshan\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/couno1/cusedit_let_customize_know_about_changes_made/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/emacsmirror/emacswiki.org/blob/master/cus-edit%2b.el\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565514683.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am new come to emacs, but now got some problems, i cant set color of flycheck-posframe , what is correct way to set it.i had try write this but it cant work. thanks\\n\\n (setq flycheck-posframe-warning-prefix \\\"\\ud83d\\ude05\\\"\\n flycheck-posframe-error-prefix \\\"\\ud83d\\ude21\\\"\\n flycheck-posframe-border-width 5\\n flycheck-posframe-error-face '((t :inherit nil :foreground \\\"red\\\"))\\n flycheck-posframe-warning-face `(:foreground \\\"orange\\\")\\n flycheck-posframe-info-face '((t (:foreground \\\"blue\\\")))\\n flycheck-posframe-border-face '(:foreground \\\"#dc752f\\\")))\", \"author_fullname\": \"t2_2x5fxntc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to set color of flycheck-posframe\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_couaey\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565540316.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am new come to emacs, but now got some problems, i cant set color of flycheck-posframe , what is correct way to set it.i had try write this but it cant work. thanks\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E (setq flycheck-posframe-warning-prefix \\u0026quot;\\ud83d\\ude05\\u0026quot;\\n flycheck-posframe-error-prefix \\u0026quot;\\ud83d\\ude21\\u0026quot;\\n flycheck-posframe-border-width 5\\n flycheck-posframe-error-face \\u0026#39;((t :inherit nil :foreground \\u0026quot;red\\u0026quot;))\\n flycheck-posframe-warning-face `(:foreground \\u0026quot;orange\\u0026quot;)\\n flycheck-posframe-info-face \\u0026#39;((t (:foreground \\u0026quot;blue\\u0026quot;)))\\n flycheck-posframe-border-face \\u0026#39;(:foreground \\u0026quot;#dc752f\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"couaey\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"PendHackcat\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/couaey/how_to_set_color_of_flycheckposframe/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565511516.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"any know how Lennart Borgman is doing? [https://www.emacswiki.org/emacs/LennartBorgman](https://www.emacswiki.org/emacs/LennartBorgman) He's creator of the emacsW32 distribution for Windows, very popular in late 2000s. I haven't heard from him for maybe 7 years. His website is gone.\", \"author_fullname\": \"t2_3dm7g\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Lennart Borgman emacs32 author?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cou94v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 41, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 41, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565540021.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eany know how Lennart Borgman is doing? \\u003Ca href=\\\"https://www.emacswiki.org/emacs/LennartBorgman\\\"\\u003Ehttps://www.emacswiki.org/emacs/LennartBorgman\\u003C/a\\u003E He\\u0026#39;s creator of the emacsW32 distribution for Windows, very popular in late 2000s. I haven\\u0026#39;t heard from him for maybe 7 years. His website is gone.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cou94v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"xah\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cou94v/lennart_borgman_emacs32_author/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565511221.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"For many tasks I do in python I use the [Emacs Ipython Notebook (EIN)](https://github.com/millejoh/emacs-ipython-notebook). I would like to be able to use [lsp-mode](https://github.com/emacs-lsp/lsp-mode) while working in one of those emacs notebooks. So far I have been unable to. I have tried two ways:\\n\\n* Following the documentation of EIN for lsp: [https://github.com/millejoh/emacs-ipython-notebook#i-want-to-use-elpy-ess-lsp-julia-mode](https://github.com/millejoh/emacs-ipython-notebook#i-want-to-use-elpy-ess-lsp-julia-mode), I have enabled polymode. In polymode the python code is in python-mode as the major mode and the rest is on fundamental-mode. When i run manually lsp-mode it says in the modeline that the server is disconnected (for a regular python file it works fine)\\n* Without polymode (the default mode), the notebook is in the major mode ein:notebook-mode and when I call lsp-mode manually it says again that is disconnected. I have also followed the documentation to try to register a new server for lsp mode: [https://github.com/emacs-lsp/lsp-mode#registering-server](https://github.com/emacs-lsp/lsp-mode#registering-server) but with no success. \\n\\nHas anyone been able to do so? Any ideas? Many thanks!\", \"author_fullname\": \"t2_1qc1d9iy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"lsp-mode within Emacs Ipython Notebook\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cotwf1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565537071.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor many tasks I do in python I use the \\u003Ca href=\\\"https://github.com/millejoh/emacs-ipython-notebook\\\"\\u003EEmacs Ipython Notebook (EIN)\\u003C/a\\u003E. I would like to be able to use \\u003Ca href=\\\"https://github.com/emacs-lsp/lsp-mode\\\"\\u003Elsp-mode\\u003C/a\\u003E while working in one of those emacs notebooks. So far I have been unable to. I have tried two ways:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EFollowing the documentation of EIN for lsp: \\u003Ca href=\\\"https://github.com/millejoh/emacs-ipython-notebook#i-want-to-use-elpy-ess-lsp-julia-mode\\\"\\u003Ehttps://github.com/millejoh/emacs-ipython-notebook#i-want-to-use-elpy-ess-lsp-julia-mode\\u003C/a\\u003E, I have enabled polymode. In polymode the python code is in python-mode as the major mode and the rest is on fundamental-mode. When i run manually lsp-mode it says in the modeline that the server is disconnected (for a regular python file it works fine)\\u003C/li\\u003E\\n\\u003Cli\\u003EWithout polymode (the default mode), the notebook is in the major mode ein:notebook-mode and when I call lsp-mode manually it says again that is disconnected. I have also followed the documentation to try to register a new server for lsp mode: \\u003Ca href=\\\"https://github.com/emacs-lsp/lsp-mode#registering-server\\\"\\u003Ehttps://github.com/emacs-lsp/lsp-mode#registering-server\\u003C/a\\u003E but with no success. \\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EHas anyone been able to do so? Any ideas? Many thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cotwf1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pufdo\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cotwf1/lspmode_within_emacs_ipython_notebook/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565508271.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi All,\\n\\n\\u0026#x200B;\\n\\nI am continuously hitting a wall trying to get debugging to work for a Go project. Any guidance is appreciated :)\\n\\n\\u0026#x200B;\\n\\nMy configuration:\\n\\n`(use-package dap-mode`\\n\\n`:config`\\n\\n`(dap-mode 1)`\\n\\n`(require 'dap-go)`\\n\\n`(require 'dap-hydra))`\\n\\n\\u0026#x200B;\\n\\n`;;(require 'dap-php)`\\n\\n\\u0026#x200B;\\n\\n`(use-package dap-ui`\\n\\n`:ensure nil`\\n\\n`:config`\\n\\n`(dap-ui-mode 1))`\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/bq42340qkrf31.png\\n\\nPlease ignore the typo in the title\", \"author_fullname\": \"t2_77u8i\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tring to get dap-debug to work with Golang\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"bq42340qkrf31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1500, \"x\": 1692, \"u\": \"https://i.redd.it/bq42340qkrf31.png\"}, \"m\": \"image/png\", \"id\": \"bq42340qkrf31\"}}, \"name\": \"t3_coti6b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565533962.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi All,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am continuously hitting a wall trying to get debugging to work for a Go project. Any guidance is appreciated :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy configuration:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(use-package dap-mode\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:config\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(dap-mode 1)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(require \\u0026#39;dap-go)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(require \\u0026#39;dap-hydra))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E;;(require \\u0026#39;dap-php)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(use-package dap-ui\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:ensure nil\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E:config\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(dap-ui-mode 1))\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/bq42340qkrf31.png\\\"\\u003Ehttps://i.redd.it/bq42340qkrf31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease ignore the typo in the title\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"coti6b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tech87freak\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/coti6b/tring_to_get_dapdebug_to_work_with_golang/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/coti6b/tring_to_get_dapdebug_to_work_with_golang/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565505162.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_41b44oy4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"PoC malicious package that runs on installation and self-modifies to hide itself\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cosqjy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565528471.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cosqjy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gepheir6yoF\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cosqjy/poc_malicious_package_that_runs_on_installation/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/darkfeline/mimic.el\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565499671.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am trying to build a function, that takes a body of text from a buffer or a file, and \\\"simulates typing\\\" in another buffer. This will serve me towards recording programming videos where the code appears to be written in real-time.\\n\\nThe main issue I am dealing with is the delay which needs to happen between each character printed. I have tried using timers such as run-at-time and async-start with sleep-for events. \\n\\nrun-at-time is printing every character from the string after the chosen delay, despite being inside a dolist.\\n\\nI am quite a noob on elisp, maybe someone could give me a hand? I am using Spacemacs. If someone is wondering, the effect that I want to achieve would be something similar of the youtuber Biskwit, but much simpler of course. [Link to video](https://www.youtube.com/watch?v=SktXhGElf7w)\", \"author_fullname\": \"t2_bjc1mj3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help to deal with Async delays for \\u201cSimulated Typing\\u201d effect\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cosl13\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565527457.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to build a function, that takes a body of text from a buffer or a file, and \\u0026quot;simulates typing\\u0026quot; in another buffer. This will serve me towards recording programming videos where the code appears to be written in real-time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe main issue I am dealing with is the delay which needs to happen between each character printed. I have tried using timers such as run-at-time and async-start with sleep-for events. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Erun-at-time is printing every character from the string after the chosen delay, despite being inside a dolist.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am quite a noob on elisp, maybe someone could give me a hand? I am using Spacemacs. If someone is wondering, the effect that I want to achieve would be something similar of the youtuber Biskwit, but much simpler of course. \\u003Ca href=\\\"https://www.youtube.com/watch?v=SktXhGElf7w\\\"\\u003ELink to video\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cosl13\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MrBojanglesReturns\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cosl13/help_to_deal_with_async_delays_for_simulated/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cosl13/help_to_deal_with_async_delays_for_simulated/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565498657.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've tried tern-mode with company-tern, and it's not working.\\n\\nI'm tried ac-js2 as well, and can't get that to work either.\\n\\nAnd I can't find any alternatives to these two.\\n\\nIt's driving me mad, mad I tell you.\\n\\n\\u003Cedit\\u003E\\n\\nThanks to the helpful replies, I finally got it working with `lsp-mode` and `javascript-typescript-langserver`.\\n\\nIf anyone else runs into this, put this in your Emacs startup file (using use-package):\\n\\n (use-package lsp-mode\\n :ensure t)\\n \\n (use-package company-lsp\\n :ensure t\\n :config\\n (add-to-list 'company-backends 'company-lsp))\\n\\nAnd run this in shell:\\n\\n npm install -g javascript-typescript-langserver\\n\\nWith your .js file open (or whatever) `M-x lsp` (`:lsp` for us Vim fanatics).\\n\\nThis is just boilerplate, you can make this config pretty yourself.\", \"author_fullname\": \"t2_c4blft1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Does anyone have javascript autocomplete working with company-mode? What's your setup like?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cosddh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565509894.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565526085.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve tried tern-mode with company-tern, and it\\u0026#39;s not working.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m tried ac-js2 as well, and can\\u0026#39;t get that to work either.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd I can\\u0026#39;t find any alternatives to these two.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s driving me mad, mad I tell you.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;edit\\u0026gt;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks to the helpful replies, I finally got it working with \\u003Ccode\\u003Elsp-mode\\u003C/code\\u003E and \\u003Ccode\\u003Ejavascript-typescript-langserver\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf anyone else runs into this, put this in your Emacs startup file (using use-package):\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(use-package lsp-mode\\n :ensure t)\\n\\n(use-package company-lsp\\n :ensure t\\n :config\\n (add-to-list \\u0026#39;company-backends \\u0026#39;company-lsp))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnd run this in shell:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Enpm install -g javascript-typescript-langserver\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith your .js file open (or whatever) \\u003Ccode\\u003EM-x lsp\\u003C/code\\u003E (\\u003Ccode\\u003E:lsp\\u003C/code\\u003E for us Vim fanatics).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is just boilerplate, you can make this config pretty yourself.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cosddh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"202700000000\", \"num_crossposts\": 0, \"num_comments\": 10, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cosddh/does_anyone_have_javascript_autocomplete_working/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565497285.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've added the following lines to my `init.el` to modify the format of the timestamps displayed by org-mode to a more European friendly way.\\n\\n```\\n(setq-default org-display-custom-times t)\\n(setq org-time-stamp-custom-formats '(\\\"\\u003C%e-%m-%Y, %a\\u003E\\\" . \\\"\\u003C%e-%m-%Y, %a %H:%M\\u003E\\\"))\\n```\\nHowever, when calling `org-schedule` or similar functions I need to input a date in the default format in order for it to be recognized properly. In [this manual page](https://www.gnu.org/software/emacs/manual/html_node/org/Custom-time-format.html#Custom-time-format) there is no mention of the input prompt, nor I am able to find info about it in the documentation.\\n\\nIs there any way to modify the input prompt to interpret dates in a day-month-year order? Could someone point me in the right direction? \\n\\nThank you in advance for helping a newly *introduced to emacs* human.\", \"author_fullname\": \"t2_tzvhz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is possible to modify the timestamps input prompt format?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cony9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565501452.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve added the following lines to my \\u003Ccode\\u003Einit.el\\u003C/code\\u003E to modify the format of the timestamps displayed by org-mode to a more European friendly way.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(setq-default org-display-custom-times t)\\n(setq org-time-stamp-custom-formats \\u0026#39;(\\u0026quot;\\u0026lt;%e-%m-%Y, %a\\u0026gt;\\u0026quot; . \\u0026quot;\\u0026lt;%e-%m-%Y, %a %H:%M\\u0026gt;\\u0026quot;))\\n\\u003C/code\\u003E\\nHowever, when calling \\u003Ccode\\u003Eorg-schedule\\u003C/code\\u003E or similar functions I need to input a date in the default format in order for it to be recognized properly. In \\u003Ca href=\\\"https://www.gnu.org/software/emacs/manual/html_node/org/Custom-time-format.html#Custom-time-format\\\"\\u003Ethis manual page\\u003C/a\\u003E there is no mention of the input prompt, nor I am able to find info about it in the documentation.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way to modify the input prompt to interpret dates in a day-month-year order? Could someone point me in the right direction? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you in advance for helping a newly \\u003Cem\\u003Eintroduced to emacs\\u003C/em\\u003E human.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cony9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Cobaya_\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cony9u/is_possible_to_modify_the_timestamps_input_prompt/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cony9u/is_possible_to_modify_the_timestamps_input_prompt/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565472652.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm just starting out with Python (for a job) and Elpy is marking lots of things that don't matter with warnings (\\\"E231 missing whitespace after ','\\\" for example). This makes the screen messy and distracting to read (ironically enough).\\n\\nI want elpy to only warn me about straight-up syntax errors. Can that be done?\\n\\nAlternatively, can eply just *do* the formatting it thinks is needed and stop hassling me?\", \"author_fullname\": \"t2_rrtp7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tell Elpy to shut up?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cok7e4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565457058.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565483485.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m just starting out with Python (for a job) and Elpy is marking lots of things that don\\u0026#39;t matter with warnings (\\u0026quot;E231 missing whitespace after \\u0026#39;,\\u0026#39;\\u0026quot; for example). This makes the screen messy and distracting to read (ironically enough).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want elpy to only warn me about straight-up syntax errors. Can that be done?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlternatively, can eply just \\u003Cem\\u003Edo\\u003C/em\\u003E the formatting it thinks is needed and stop hassling me?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cok7e4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nagora\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cok7e4/tell_elpy_to_shut_up/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565454685.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I know they are different things, but some emacs users, especially Lisp aficionados, use it like an OS.\\n\\nI've been using emacs for C++ development (and a bit of Clojure) and just love it. It's a steep learning curve at the beginning but is actually quite usable and wonderfully extensible. I've got autocomplete working through Irony, I type documents using Olivetti, and manage to use the very nice gdb mode and be more productive in it than I would be in an IDE.\\n\\nI've been doing all that in Windows. I've tried using GNU/Linux for nearly ten years now, off and on, and there are always serious and frustrating problems. I'm struggling right now to get hybrid graphics working on Manjaro. I've broken several installs in the past trying to get various things to work and always get lost in googling for resolutions. A lot of terminal commands feel obscure to me, like voodoo incantations. I would definitely prefer if the terminal had a more structured Lisp syntax, like Alt : in emacs. It would ease my confusion and pain haha.\\n\\nIs anyone else with me on this? emacs love, quite rightly I guess, tends to go along with love of GNU in general. I just don't feel it.\", \"author_fullname\": \"t2_jtjn3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Does anyone else much prefer emacs itself to GNU/Linux?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_coi8n9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 30, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 30, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565473620.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know they are different things, but some emacs users, especially Lisp aficionados, use it like an OS.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been using emacs for C++ development (and a bit of Clojure) and just love it. It\\u0026#39;s a steep learning curve at the beginning but is actually quite usable and wonderfully extensible. I\\u0026#39;ve got autocomplete working through Irony, I type documents using Olivetti, and manage to use the very nice gdb mode and be more productive in it than I would be in an IDE.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve been doing all that in Windows. I\\u0026#39;ve tried using GNU/Linux for nearly ten years now, off and on, and there are always serious and frustrating problems. I\\u0026#39;m struggling right now to get hybrid graphics working on Manjaro. I\\u0026#39;ve broken several installs in the past trying to get various things to work and always get lost in googling for resolutions. A lot of terminal commands feel obscure to me, like voodoo incantations. I would definitely prefer if the terminal had a more structured Lisp syntax, like Alt : in emacs. It would ease my confusion and pain haha.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs anyone else with me on this? emacs love, quite rightly I guess, tends to go along with love of GNU in general. I just don\\u0026#39;t feel it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"coi8n9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"LukeFL\", \"num_crossposts\": 0, \"num_comments\": 61, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/coi8n9/does_anyone_else_much_prefer_emacs_itself_to/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565444820.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am very disappointed in the psychotherapist included in GNU Emacs. It's advice has never satisfied me; it seems very simplistic. With the dawn of deep learning why have we seen no progression here?\", \"author_fullname\": \"t2_8zx2q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"M-x doctor\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cofg77\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565453913.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am very disappointed in the psychotherapist included in GNU Emacs. It\\u0026#39;s advice has never satisfied me; it seems very simplistic. With the dawn of deep learning why have we seen no progression here?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cofg77\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"prawnandcocktail\", \"num_crossposts\": 0, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cofg77/mx_doctor/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cofg77/mx_doctor/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565425113.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have tried `exwm-input-release-keyboard`, but `M-x` still can be called. IIUC, if I enter char mode, `M-x` will not work, so vim can work(quit) as except.\", \"author_fullname\": \"t2_1rpvrrin\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to quit vim which is opened from multi-term in exwm?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cof6wq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565423341.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565451931.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have tried \\u003Ccode\\u003Eexwm-input-release-keyboard\\u003C/code\\u003E, but \\u003Ccode\\u003EM-x\\u003C/code\\u003E still can be called. IIUC, if I enter char mode, \\u003Ccode\\u003EM-x\\u003C/code\\u003E will not work, so vim can work(quit) as except.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cof6wq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"FirstLoveLife\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cof6wq/how_to_quit_vim_which_is_opened_from_multiterm_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cof6wq/how_to_quit_vim_which_is_opened_from_multiterm_in/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565423131.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_4a96d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GitHub - ahungry/fast-scroll: Emacs package to ensure scrolling remains fast\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_coc27n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 33, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 33, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565431703.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"coc27n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"xenow\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/coc27n/github_ahungryfastscroll_emacs_package_to_ensure/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/ahungry/fast-scroll\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565402903.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_u86pa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs and kissing Johnny Depp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co9r2a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/v9x6d4uz3if31/DASH_720?source=fallback\", \"height\": 716, \"width\": 1280, \"scrubber_media_url\": \"https://v.redd.it/v9x6d4uz3if31/DASH_96\", \"dash_url\": \"https://v.redd.it/v9x6d4uz3if31/DASHPlaylist.mpd\", \"duration\": 11, \"hls_url\": \"https://v.redd.it/v9x6d4uz3if31/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565419304.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co9r2a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rcdwealth\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co9r2a/emacs_and_kissing_johnny_depp/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://v.redd.it/v9x6d4uz3if31\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565390504.0, \"discussion_type\": null, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/v9x6d4uz3if31/DASH_720?source=fallback\", \"height\": 716, \"width\": 1280, \"scrubber_media_url\": \"https://v.redd.it/v9x6d4uz3if31/DASH_96\", \"dash_url\": \"https://v.redd.it/v9x6d4uz3if31/DASHPlaylist.mpd\", \"duration\": 11, \"hls_url\": \"https://v.redd.it/v9x6d4uz3if31/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to figure out if I can have Emacs do this:\\n\\n1. Download or save a webpage from firefox\\n2. Look for specific text strings \\n3. Pass these text strings into orgmode as properties inside capture, and append to an org file using capture template. \\n\\nI'm not a programmer, i know very basic things in emacs. Is that possible? Something like this exists?\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Automate text grab from webpage?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co9a8q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565417040.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to figure out if I can have Emacs do this:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EDownload or save a webpage from firefox\\u003C/li\\u003E\\n\\u003Cli\\u003ELook for specific text strings \\u003C/li\\u003E\\n\\u003Cli\\u003EPass these text strings into orgmode as properties inside capture, and append to an org file using capture template. \\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not a programmer, i know very basic things in emacs. Is that possible? Something like this exists?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co9a8q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co9a8q/automate_text_grab_from_webpage/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/co9a8q/automate_text_grab_from_webpage/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565388240.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3qqp8kb2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anything I can do about repeated lines in shell mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co7n14\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565409519.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co7n14\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"scott_pgh\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co7n14/anything_i_can_do_about_repeated_lines_in_shell/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/fwmoz30lahf31.png\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565380719.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_5t62phw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I created a \\\"Graduation Planner\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co781k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"After graduating a few years ago I decided to back to college. I'll be pursing an Associates in Cybersecurity because it will be a career change for me. So to help me get organized I used...that's right you guessed it! **Org-mode**! \\n\\n\\nBasically I created a template where I can add all my degree plan information. Plus I created templates to write down class notes, create presentations with *org-reveal*, and write term papers. It's still a work in progress but I figured I'd share since many college students will begin going back to school soon. \\n\\n\\nHope you all find it useful! \\n\\n\\n[https://github.com/eduardo-robles/graduationplanner](https://github.com/eduardo-robles/graduationplanner)\", \"author_fullname\": \"t2_5t62phw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I created a \\\"Graduation Planner\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmiyzt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565077658.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter graduating a few years ago I decided to back to college. I\\u0026#39;ll be pursing an Associates in Cybersecurity because it will be a career change for me. So to help me get organized I used...that\\u0026#39;s right you guessed it! \\u003Cstrong\\u003EOrg-mode\\u003C/strong\\u003E! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically I created a template where I can add all my degree plan information. Plus I created templates to write down class notes, create presentations with \\u003Cem\\u003Eorg-reveal\\u003C/em\\u003E, and write term papers. It\\u0026#39;s still a work in progress but I figured I\\u0026#39;d share since many college students will begin going back to school soon. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHope you all find it useful! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/eduardo-robles/graduationplanner\\\"\\u003Ehttps://github.com/eduardo-robles/graduationplanner\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmiyzt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tacosandlinux\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1565048858.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1565407647.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co781k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tacosandlinux\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_cmiyzt\", \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co781k/i_created_a_graduation_planner/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565378847.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ANN: helm-org-rifle 1.7.0, and upcoming org-rifle 2.0\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co6l42\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Version 1.7.0 of [helm-org-rifle](https://github.com/alphapapa/helm-org-rifle) has been tagged. It adds a few features since the last stable release. Users of regular MELPA (as opposed to MELPA Stable) won't notice anything new today.\\n\\nThe next release will be version 2.0, which will be split into two packages: `org-rifle` and `helm-org-rifle`, which moves Helm support into a separate package. If anyone is willing to help test it before release, I would appreciate it. The branch is available at https://github.com/alphapapa/org-rifle/tree/wip/org-rifle, and the easiest way to install it is by using `quelpa-use-package`, like this:\\n\\n (require 'quelpa-use-package)\\n (use-package org-rifle\\n :quelpa (org-rifle :fetcher github\\n :repo \\\"alphapapa/org-rifle\\\"\\n :branch \\\"wip/org-rifle\\\"))\\n (use-package helm-org-rifle\\n :quelpa (helm-org-rifle :fetcher github\\n :repo \\\"alphapapa/org-rifle\\\"\\n :branch \\\"wip/org-rifle\\\"))\\n\\nThanks.\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ANN: helm-org-rifle 1.7.0\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co6jy7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565404694.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVersion 1.7.0 of \\u003Ca href=\\\"https://github.com/alphapapa/helm-org-rifle\\\"\\u003Ehelm-org-rifle\\u003C/a\\u003E has been tagged. It adds a few features since the last stable release. Users of regular MELPA (as opposed to MELPA Stable) won\\u0026#39;t notice anything new today.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next release will be version 2.0, which will be split into two packages: \\u003Ccode\\u003Eorg-rifle\\u003C/code\\u003E and \\u003Ccode\\u003Ehelm-org-rifle\\u003C/code\\u003E, which moves Helm support into a separate package. If anyone is willing to help test it before release, I would appreciate it. The branch is available at \\u003Ca href=\\\"https://github.com/alphapapa/org-rifle/tree/wip/org-rifle\\\"\\u003Ehttps://github.com/alphapapa/org-rifle/tree/wip/org-rifle\\u003C/a\\u003E, and the easiest way to install it is by using \\u003Ccode\\u003Equelpa-use-package\\u003C/code\\u003E, like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;quelpa-use-package)\\n(use-package org-rifle\\n :quelpa (org-rifle :fetcher github\\n :repo \\u0026quot;alphapapa/org-rifle\\u0026quot;\\n :branch \\u0026quot;wip/org-rifle\\u0026quot;))\\n(use-package helm-org-rifle\\n :quelpa (helm-org-rifle :fetcher github\\n :repo \\u0026quot;alphapapa/org-rifle\\u0026quot;\\n :branch \\u0026quot;wip/org-rifle\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co6jy7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1565375894.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1565404842.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co6l42\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_co6jy7\", \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co6l42/ann_helmorgrifle_170_and_upcoming_orgrifle_20/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565376042.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"i get this error in emacs when runing a rust file (have rust and cargo): \\n\\ncargo run \\n/bin/bash: cargo: command not found \\n\\nCompilation exited abnormally with code 127 at Thu Aug 8 20:28:50 \\n\\nyet i have cargo : \\ncargo --version \\ncargo 1.36.0 (c4fcfb725 2019-05-15) \\n\\n\\n\\n type -a cargo \\ncargo is /var/root/.cargo/bin/cargo\", \"author_fullname\": \"t2_kmz6m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"help : bin bash error in emacs for rust/cargo\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co5u0c\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565401566.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei get this error in emacs when runing a rust file (have rust and cargo): \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ecargo run \\n/bin/bash: cargo: command not found \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECompilation exited abnormally with code 127 at Thu Aug 8 20:28:50 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eyet i have cargo : \\ncargo --version \\ncargo 1.36.0 (c4fcfb725 2019-05-15) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etype -a cargo \\ncargo is /var/root/.cargo/bin/cargo\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co5u0c\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rmpbklyn\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co5u0c/help_bin_bash_error_in_emacs_for_rustcargo/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/co5u0c/help_bin_bash_error_in_emacs_for_rustcargo/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565372766.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi group, I'm trying to gather at this Reddit point all tutorials I could or any info related to any **Lisp**, **Elisp**, **Clojure**, **Scheme** implementation of the [perceptron,](https://en.wikipedia.org/wiki/Perceptron) any help would be appreciated.\", \"author_fullname\": \"t2_15mmy8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Perceptron: a Lisp, Elisp, Clojure, Scheme implementation tutorial\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co5aqi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565399270.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi group, I\\u0026#39;m trying to gather at this Reddit point all tutorials I could or any info related to any \\u003Cstrong\\u003ELisp\\u003C/strong\\u003E, \\u003Cstrong\\u003EElisp\\u003C/strong\\u003E, \\u003Cstrong\\u003EClojure\\u003C/strong\\u003E, \\u003Cstrong\\u003EScheme\\u003C/strong\\u003E implementation of the \\u003Ca href=\\\"https://en.wikipedia.org/wiki/Perceptron\\\"\\u003Eperceptron,\\u003C/a\\u003E any help would be appreciated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co5aqi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"xeyenn\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co5aqi/perceptron_a_lisp_elisp_clojure_scheme/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/co5aqi/perceptron_a_lisp_elisp_clojure_scheme/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565370470.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello,\\n\\nIm trying to add some dead keys to iso-transl (for example the dead caron) and I'm having some trouble figuring out how to do as such. I need to use the dead caron for letters like \\u0161, without emacs complaining that dead-caron isn't bound. \\n\\nMy searches don't turn up much, just help posts about getting dead keys to work in insert-DE-here and posts that mention `(require 'iso-transl)`.\\n\\nI have tried the following in my init file:\\n\\n\\n (Setq iso-transl-dead-key-alist (cons '(35 . dead-caron) iso-transl-dead-key-alist))\\n\\n\\nBut it doesn't seem to have any effect. \\n\\nAdditionally, I have bound in my xmodmap file dead slash, yet emacs doesn't register it at all - not even to tell me it is unbound. Dead slash is for making characters like \\u00f8. \\n\\nSo, is there a way to add diacritics to iso-transl, or is it a pipe dream? Hell, I'd pay for emacs to play nice with ibus, instead of mucking about with iso-transl!\\n\\nAny help is much appreciated, thanks!\", \"author_fullname\": \"t2_3hfq9yj2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Add keys to iso-transl-dead-key-alist, and unrecognized dead key\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co57tx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565398942.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIm trying to add some dead keys to iso-transl (for example the dead caron) and I\\u0026#39;m having some trouble figuring out how to do as such. I need to use the dead caron for letters like \\u0161, without emacs complaining that dead-caron isn\\u0026#39;t bound. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy searches don\\u0026#39;t turn up much, just help posts about getting dead keys to work in insert-DE-here and posts that mention \\u003Ccode\\u003E(require \\u0026#39;iso-transl)\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have tried the following in my init file:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(Setq iso-transl-dead-key-alist (cons \\u0026#39;(35 . dead-caron) iso-transl-dead-key-alist))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBut it doesn\\u0026#39;t seem to have any effect. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAdditionally, I have bound in my xmodmap file dead slash, yet emacs doesn\\u0026#39;t register it at all - not even to tell me it is unbound. Dead slash is for making characters like \\u00f8. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, is there a way to add diacritics to iso-transl, or is it a pipe dream? Hell, I\\u0026#39;d pay for emacs to play nice with ibus, instead of mucking about with iso-transl!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help is much appreciated, thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co57tx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"manjtemp\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co57tx/add_keys_to_isotransldeadkeyalist_and/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/co57tx/add_keys_to_isotransldeadkeyalist_and/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565370142.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_u86pa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Submitting GNU Social status directly from GNU Emacs via XMPP/Jabber network\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co553l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/t627bomjegf31/DASH_720?source=fallback\", \"height\": 716, \"width\": 1280, \"scrubber_media_url\": \"https://v.redd.it/t627bomjegf31/DASH_96\", \"dash_url\": \"https://v.redd.it/t627bomjegf31/DASHPlaylist.mpd\", \"duration\": 121, \"hls_url\": \"https://v.redd.it/t627bomjegf31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565398600.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co553l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rcdwealth\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co553l/submitting_gnu_social_status_directly_from_gnu/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://v.redd.it/t627bomjegf31\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565369800.0, \"discussion_type\": null, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/t627bomjegf31/DASH_720?source=fallback\", \"height\": 716, \"width\": 1280, \"scrubber_media_url\": \"https://v.redd.it/t627bomjegf31/DASH_96\", \"dash_url\": \"https://v.redd.it/t627bomjegf31/DASHPlaylist.mpd\", \"duration\": 121, \"hls_url\": \"https://v.redd.it/t627bomjegf31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Trying to edit files on an ec2 instance using Tramp on Windows. \\n\\nGit for Windows installed, which has a bash shell and an ssh.exe. Ssh-agent started, the key for the ec2 is in the .ssh directory. Git's ssh.exe is in the Windows path that emacs picks up.\\n\\nFrom Git's bash, can ssh into the ec2 no problem. \\n\\nBut when trying Tramp from emacs, it just hangs.\\n\\nHas anyone used this specific configuration? I know that putty is an option, but the bash and ssh in git for Windows seems like it would be a lot more useful. Can't help but feeling I'm missing something obvious.\", \"author_fullname\": \"t2_9xx1ecc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tramp to EC2 on Windows 7 Using Git's Bash and SSH\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co4gs5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565395674.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETrying to edit files on an ec2 instance using Tramp on Windows. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGit for Windows installed, which has a bash shell and an ssh.exe. Ssh-agent started, the key for the ec2 is in the .ssh directory. Git\\u0026#39;s ssh.exe is in the Windows path that emacs picks up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom Git\\u0026#39;s bash, can ssh into the ec2 no problem. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut when trying Tramp from emacs, it just hangs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHas anyone used this specific configuration? I know that putty is an option, but the bash and ssh in git for Windows seems like it would be a lot more useful. Can\\u0026#39;t help but feeling I\\u0026#39;m missing something obvious.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co4gs5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rsmoot9433\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co4gs5/tramp_to_ec2_on_windows_7_using_gits_bash_and_ssh/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/co4gs5/tramp_to_ec2_on_windows_7_using_gits_bash_and_ssh/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565366874.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Following up on a post from a few days ago, I was trying to create time dependencies so that if the time of a master deadline changes, the time of other designated deadlines changes as well.\\n\\nThis solution is 100% hacky and a quick first stab. It works by calling org-td-set-dependency when you want to make a deadline dependent on another. That will:\\n\\n1. ask for the number of days to offset from the master deadline\\n2. have the user goto the heading with the master deadline (via org-goto; likely a better way to do this?)\\n3. create an ID for the master heading if it does not have one; get the ID\\n4. jump back to the dependent heading, insert a property with the master ID and the number of days to offset\\n\\nThe update function goes through the org agenda files to find any dependent headings and updates them if encountered.\\n\\nI could not find a good hook to attach to the update function. It seems org-shiftleft-hook and org-shiftright-hook might be the only viable candidates?\\n\\nI don't think this could be trustworthy if it depends on the user running the update function.\\n\\n\\u0026#x200B;\\n\\nDoes anyone have feedback on this? Either on the merits of it, or anything stupid I am doing in elisp?\\n\\n ;;; License:\\n \\n ;; This program is free software; you can redistribute it and/or modify\\n ;; it under the terms of the GNU General Public License as published by\\n ;; the Free Software Foundation, either version 3 of the License, or\\n ;; (at your option) any later version.\\n \\n ;; This program is distributed in the hope that it will be useful,\\n ;; but WITHOUT ANY WARRANTY; without even the implied warranty of\\n ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\\n ;; GNU General Public License for more details.\\n \\n ;; You should have received a copy of the GNU General Public License\\n ;; along with this program. If not, see \\u003Chttps://www.gnu.org/licenses/\\u003E.\\n \\n (require 's)\\n (require 'ts)\\n \\n (defun org-td-set-dependency ()\\n (interactive)\\n (setq org-td--offset nil)\\n (setq org-td--master-deadline nil)\\n (setq org-td--offset (read-number \\\"Number of days to offset: \\\"))\\n (save-excursion \\n (org-goto)\\n (setq org-td--master-deadline (cdar (org-entry-properties (point) \\\"DEADLINE\\\")))\\n (when (not org-td--master-deadline)\\n (user-error \\\"There is no deadline in this node\\\"))\\n (setq org-td--master-id (cadr (org-entry-properties (point) \\\"ID\\\")))\\n (when (not org-td--master-id)\\n (setq org-td--master-id (org-id-get-create))))\\n (org-set-property \\\"ORG-TD-LINK\\\" org-td--master-id)\\n (org-set-property \\\"ORG-TD-OFFSET\\\" (number-to-string org-td--offset))\\n (org-set-property \\\"ORG-TD-ACTIVE\\\" \\\"t\\\")\\n (org-td-update-dependencies))\\n \\n (defun org-td-update-dependencies ()\\n (interactive)\\n (org-map-entries (lambda ()\\n \\t\\t (let ((org-td--link (cdar (org-entry-properties (point) \\\"ORG-TD-LINK\\\")))\\n \\t\\t\\t (org-td--offset (cdar (org-entry-properties (point) \\\"ORG-TD-OFFSET\\\"))))\\n \\t\\t (when (and org-td--link\\n \\t\\t\\t\\t org-td--offset\\n \\t\\t\\t\\t (string= (cdar (org-entry-properties (point) \\\"ORG-TD-ACTIVE\\\")) \\\"t\\\"))\\n \\t\\t\\t (save-excursion\\n \\t\\t\\t (org-id-goto org-td--link)\\n \\t\\t\\t (setq org-td--master-deadline (cdar (org-entry-properties (point) \\\"DEADLINE\\\"))))\\n \\t\\t\\t (org-deadline nil (ts-format \\\"%Y-%m-%d\\\" (ts-adjust 'day (string-to-number org-td--offset) (ts-parse org-td--master-deadline)))))))\\n \\t\\t nil 'agenda))\\n \\n \\n (define-minor-mode org-time-dependencies\\n \\\"Create deadline dependencies for org headings\\\"\\n :lighter \\\" ORG-TD\\\"\\n :group 'org-time-dependencies)\\n \\n (defvar org-td-mode nil\\n \\\"Mode variable for org-outline-numbering mode.\\\")\\n (make-variable-buffer-local 'org-td-mode)\\n \\n (defun org-td-mode (\\u0026optional arg)\\n \\\"org time dependencies\\\"\\n (interactive \\\"P\\\")\\n (setq org-td-mode\\n \\t(if (null arg)\\n \\t (not org-td-mode)\\n \\t (\\u003E (prefix-numberic-value arg) 0)))\\n \\n ;;none of this seems to work \\n ;; (if org-td-mode\\n ;; (progn\\n ;; \\t(add-hook 'org-shiftleft-final-hook 'org-td-update-dependencies nil t)\\n ;; \\t(add-hook 'org-shiftright-final-hook 'org-td-update-dependencies nil t)\\n ;; \\t(add-hook 'org-agenda-mode-hook 'org-td-update-dependencies nil t))\\n ;; (remove-hook 'org-shiftleft-hook 'org-td-update-dependencies t)\\n ;; (remove-hook 'org-shiftright-hook 'org-td-update-dependencies t)\\n ;; (remove-hook 'org-agenda-mode-hook 'org-td-update-dependencies t)))\\n \\n (if (not (assq 'org-td-mode minor-mode-alist))\\n (setq minor-mode-alist\\n \\t (cons '(org-td-mode \\\" ORG-TD\\\")\\n \\t\\tminor-mode-alist)))\\n \\n (provide 'org-td)\", \"author_fullname\": \"t2_3gjjtpnq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"orgmode time dependencies -- help!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co4gbj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565373080.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565395622.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFollowing up on a post from a few days ago, I was trying to create time dependencies so that if the time of a master deadline changes, the time of other designated deadlines changes as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis solution is 100% hacky and a quick first stab. It works by calling org-td-set-dependency when you want to make a deadline dependent on another. That will:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003Eask for the number of days to offset from the master deadline\\u003C/li\\u003E\\n\\u003Cli\\u003Ehave the user goto the heading with the master deadline (via org-goto; likely a better way to do this?)\\u003C/li\\u003E\\n\\u003Cli\\u003Ecreate an ID for the master heading if it does not have one; get the ID\\u003C/li\\u003E\\n\\u003Cli\\u003Ejump back to the dependent heading, insert a property with the master ID and the number of days to offset\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThe update function goes through the org agenda files to find any dependent headings and updates them if encountered.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI could not find a good hook to attach to the update function. It seems org-shiftleft-hook and org-shiftright-hook might be the only viable candidates?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t think this could be trustworthy if it depends on the user running the update function.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have feedback on this? Either on the merits of it, or anything stupid I am doing in elisp?\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;;; License:\\n\\n;; This program is free software; you can redistribute it and/or modify\\n;; it under the terms of the GNU General Public License as published by\\n;; the Free Software Foundation, either version 3 of the License, or\\n;; (at your option) any later version.\\n\\n;; This program is distributed in the hope that it will be useful,\\n;; but WITHOUT ANY WARRANTY; without even the implied warranty of\\n;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\\n;; GNU General Public License for more details.\\n\\n;; You should have received a copy of the GNU General Public License\\n;; along with this program. If not, see \\u0026lt;https://www.gnu.org/licenses/\\u0026gt;.\\n\\n(require \\u0026#39;s)\\n(require \\u0026#39;ts)\\n\\n(defun org-td-set-dependency ()\\n (interactive)\\n (setq org-td--offset nil)\\n (setq org-td--master-deadline nil)\\n (setq org-td--offset (read-number \\u0026quot;Number of days to offset: \\u0026quot;))\\n (save-excursion \\n (org-goto)\\n (setq org-td--master-deadline (cdar (org-entry-properties (point) \\u0026quot;DEADLINE\\u0026quot;)))\\n (when (not org-td--master-deadline)\\n (user-error \\u0026quot;There is no deadline in this node\\u0026quot;))\\n (setq org-td--master-id (cadr (org-entry-properties (point) \\u0026quot;ID\\u0026quot;)))\\n (when (not org-td--master-id)\\n (setq org-td--master-id (org-id-get-create))))\\n (org-set-property \\u0026quot;ORG-TD-LINK\\u0026quot; org-td--master-id)\\n (org-set-property \\u0026quot;ORG-TD-OFFSET\\u0026quot; (number-to-string org-td--offset))\\n (org-set-property \\u0026quot;ORG-TD-ACTIVE\\u0026quot; \\u0026quot;t\\u0026quot;)\\n (org-td-update-dependencies))\\n\\n(defun org-td-update-dependencies ()\\n (interactive)\\n (org-map-entries (lambda ()\\n (let ((org-td--link (cdar (org-entry-properties (point) \\u0026quot;ORG-TD-LINK\\u0026quot;)))\\n (org-td--offset (cdar (org-entry-properties (point) \\u0026quot;ORG-TD-OFFSET\\u0026quot;))))\\n (when (and org-td--link\\n org-td--offset\\n (string= (cdar (org-entry-properties (point) \\u0026quot;ORG-TD-ACTIVE\\u0026quot;)) \\u0026quot;t\\u0026quot;))\\n (save-excursion\\n (org-id-goto org-td--link)\\n (setq org-td--master-deadline (cdar (org-entry-properties (point) \\u0026quot;DEADLINE\\u0026quot;))))\\n (org-deadline nil (ts-format \\u0026quot;%Y-%m-%d\\u0026quot; (ts-adjust \\u0026#39;day (string-to-number org-td--offset) (ts-parse org-td--master-deadline)))))))\\n nil \\u0026#39;agenda))\\n\\n\\n(define-minor-mode org-time-dependencies\\n \\u0026quot;Create deadline dependencies for org headings\\u0026quot;\\n :lighter \\u0026quot; ORG-TD\\u0026quot;\\n :group \\u0026#39;org-time-dependencies)\\n\\n(defvar org-td-mode nil\\n \\u0026quot;Mode variable for org-outline-numbering mode.\\u0026quot;)\\n(make-variable-buffer-local \\u0026#39;org-td-mode)\\n\\n(defun org-td-mode (\\u0026amp;optional arg)\\n \\u0026quot;org time dependencies\\u0026quot;\\n (interactive \\u0026quot;P\\u0026quot;)\\n (setq org-td-mode\\n (if (null arg)\\n (not org-td-mode)\\n (\\u0026gt; (prefix-numberic-value arg) 0)))\\n\\n ;;none of this seems to work \\n ;; (if org-td-mode\\n ;; (progn\\n ;; (add-hook \\u0026#39;org-shiftleft-final-hook \\u0026#39;org-td-update-dependencies nil t)\\n ;; (add-hook \\u0026#39;org-shiftright-final-hook \\u0026#39;org-td-update-dependencies nil t)\\n ;; (add-hook \\u0026#39;org-agenda-mode-hook \\u0026#39;org-td-update-dependencies nil t))\\n ;; (remove-hook \\u0026#39;org-shiftleft-hook \\u0026#39;org-td-update-dependencies t)\\n ;; (remove-hook \\u0026#39;org-shiftright-hook \\u0026#39;org-td-update-dependencies t)\\n ;; (remove-hook \\u0026#39;org-agenda-mode-hook \\u0026#39;org-td-update-dependencies t)))\\n\\n(if (not (assq \\u0026#39;org-td-mode minor-mode-alist))\\n (setq minor-mode-alist\\n (cons \\u0026#39;(org-td-mode \\u0026quot; ORG-TD\\u0026quot;)\\n minor-mode-alist)))\\n\\n(provide \\u0026#39;org-td)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co4gbj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"itistheblurstoftimes\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co4gbj/orgmode_time_dependencies_help/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/co4gbj/orgmode_time_dependencies_help/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565366822.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"URL: \\u003Chttps://gnu.support/gnu-emacs/emacs-lisp/Emacs-Lisp-Record-screen-within-GNU-Emacs.html\\u003E\\n\\nThe program third party program `recordmydesktop` is used for this function to invoke screen recording within GNU Emacs. You may wish to make a demonstration in video and publish such online. Record it while using few keybindings or `M-x record-screen`. This page is giving you the concept of a workflow. I consider workflow more important then the function itself. You please modify it to suit your own needs. The `screen-record-command` is spitting out the actual screen recording command, customize it as you wish.\\n\\nYou are maybe doing something and wish to record the screen. You could record video to report GNU Emacs bug. You could make a presentation by using your GNU Emacs. Everything is possible. You can teach people your GNU Emacs skills or programming skills. Think about the screen cast within GNU Emacs. I know that some packages exists for this purpose and I have never tried them. Few functions are enough to have nice video recording. Publish your videos to decentralized social networks. Visit us as \\u003Chttps://gnusocial.club\\u003E or publish your videos over Indieweb.\\n\\n## How to use the function?\\n\\nYou would first make sure that you have the shell command `recordmydesktop`. Once you have that one, you install the functions somewhere in your GNU Emacs environment. You could place it in the init file or special `media-utilities.el` if you wish.\\n\\nI have bound the function to Hyper key and z. It means when I press `s-z` the screen recording starts. If I wish to quit screen recording, I press `s-u`.\\n\\nAt that point you are brought to the output of `recordmydesktop`. Wait for output to finish and that process has finished.\\n\\nAt that moment, press `q` two times. You will be brought to the recorded video.\\n\\nCustomize the directory for recorded videos as you wish. Be careful with your file system.\\n\\nYou may also get other video formats, change the video extension to suit your needs.\\n\\nHappy recordings!\\n\\n\\n (defvar video-recordings-dir \\\"/home/data1/protected/Media/Video/Recordings/\\\"\\n \\\"This is your video recording directory. Keep slash on the end\\\")\\n\\n (defvar video-recording-extension \\\".ogv\\\"\\n \\\"This is your video file extension\\\")\\n\\n (defun record-screen ()\\n \\\"Records screencast. It is recommended to bind the function to\\n a key. Press key to start screen recording. Program\\n `recordmydesktop` is used but other screen recording command\\n could be used as well. You could modify the keybinding to stop\\n the recording. It is set to be Hyper-u. See below. Once you stop\\n recording the video is being prepared. Wait that process\\n finishes, then press `q` two times to remove the buffer and get\\n to the recorded file.\\\"\\n (interactive)\\n (let* ((filepath (concat video-recordings-dir (format-time-string \\\"%Y/%m/%Y-%m-%d/\\\")))\\n\\t (filename (concat filepath (format-time-string \\\"%Y-%m-%d-%H:%M:%S\\\") video-recording-extension))\\n\\t (command-1 (screen-record-command filename))\\n\\t (current-buffer (current-buffer))\\n\\t (keybinding-stop (kbd \\\"s-u\\\"))\\n\\t (buffer \\\"*Screen Recording*\\\"))\\n\\t(make-directory filepath t)\\n\\t(switch-to-buffer buffer)\\n\\t(erase-buffer)\\n\\t(setq-local header-line-format \\\"\\u279c Screen recording, use 'q' when process finishes to get the recorded file, use globally s-u to stop recording.\\\")\\n\\t(let* ((process (start-process-shell-command buffer buffer command-1)))\\n\\t (message (prin1-to-string process))\\n\\t (local-set-key \\\"q\\\" `(lambda () (interactive) (signal-process ,process 'TERM)\\n\\t\\t\\t\\t(local-set-key \\\"q\\\" (lambda () (interactive)\\n\\t\\t\\t\\t\\t\\t (kill-current-buffer)\\n\\t\\t\\t\\t\\t\\t (find-file ,filepath)\\n\\t\\t\\t\\t\\t\\t (revert-buffer)))))\\n\\t (switch-to-buffer current-buffer)\\n\\t (global-set-key keybinding-stop `(lambda () (interactive) (signal-process ,process 'TERM)\\n\\t\\t\\t\\t\\t (switch-to-buffer ,buffer))))))\\n\\n (defun screen-record-command (filename \\u0026optional device)\\n \\\"Record screen with the default device\\\"\\n (let* ((device (if device device \\\"pulse\\\"))\\n\\t (command (format \\\"recordmydesktop --pause-shortcut Alt-p --stop-shortcut Alt-n --workdir '%s' --no-frame --device %s -o \\\\\\\"%s\\\\\\\"\\\" temporary-file-directory device filename)))\\n\\tcommand))\\n\\n (global-set-key (kbd \\\"s-z\\\") 'record-screen)\\n\\n\\nThe workflow concept could be improved so that video and voice files are quickly sent to the recipient by email. Maybe you wish to publish the GNU Emacs video screen cast to GNU Social network via Jabber or XMPP. You could improve the workflow to automatically publish the video to the web server and publish the status to GNU Social network. This demonstration presents a concept of chaining of various actions, so that we work with less keys, more productivity.\", \"author_fullname\": \"t2_u86pa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Lisp: Record screen within GNU Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co3uyx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 36, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 36, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565393034.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EURL: \\u003Ca href=\\\"https://gnu.support/gnu-emacs/emacs-lisp/Emacs-Lisp-Record-screen-within-GNU-Emacs.html\\\"\\u003Ehttps://gnu.support/gnu-emacs/emacs-lisp/Emacs-Lisp-Record-screen-within-GNU-Emacs.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe program third party program \\u003Ccode\\u003Erecordmydesktop\\u003C/code\\u003E is used for this function to invoke screen recording within GNU Emacs. You may wish to make a demonstration in video and publish such online. Record it while using few keybindings or \\u003Ccode\\u003EM-x record-screen\\u003C/code\\u003E. This page is giving you the concept of a workflow. I consider workflow more important then the function itself. You please modify it to suit your own needs. The \\u003Ccode\\u003Escreen-record-command\\u003C/code\\u003E is spitting out the actual screen recording command, customize it as you wish.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou are maybe doing something and wish to record the screen. You could record video to report GNU Emacs bug. You could make a presentation by using your GNU Emacs. Everything is possible. You can teach people your GNU Emacs skills or programming skills. Think about the screen cast within GNU Emacs. I know that some packages exists for this purpose and I have never tried them. Few functions are enough to have nice video recording. Publish your videos to decentralized social networks. Visit us as \\u003Ca href=\\\"https://gnusocial.club\\\"\\u003Ehttps://gnusocial.club\\u003C/a\\u003E or publish your videos over Indieweb.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003EHow to use the function?\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003EYou would first make sure that you have the shell command \\u003Ccode\\u003Erecordmydesktop\\u003C/code\\u003E. Once you have that one, you install the functions somewhere in your GNU Emacs environment. You could place it in the init file or special \\u003Ccode\\u003Emedia-utilities.el\\u003C/code\\u003E if you wish.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have bound the function to Hyper key and z. It means when I press \\u003Ccode\\u003Es-z\\u003C/code\\u003E the screen recording starts. If I wish to quit screen recording, I press \\u003Ccode\\u003Es-u\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt that point you are brought to the output of \\u003Ccode\\u003Erecordmydesktop\\u003C/code\\u003E. Wait for output to finish and that process has finished.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt that moment, press \\u003Ccode\\u003Eq\\u003C/code\\u003E two times. You will be brought to the recorded video.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECustomize the directory for recorded videos as you wish. Be careful with your file system.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou may also get other video formats, change the video extension to suit your needs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHappy recordings!\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defvar video-recordings-dir \\u0026quot;/home/data1/protected/Media/Video/Recordings/\\u0026quot;\\n \\u0026quot;This is your video recording directory. Keep slash on the end\\u0026quot;)\\n\\n(defvar video-recording-extension \\u0026quot;.ogv\\u0026quot;\\n \\u0026quot;This is your video file extension\\u0026quot;)\\n\\n(defun record-screen ()\\n \\u0026quot;Records screencast. It is recommended to bind the function to\\na key. Press key to start screen recording. Program\\n`recordmydesktop` is used but other screen recording command\\ncould be used as well. You could modify the keybinding to stop\\nthe recording. It is set to be Hyper-u. See below. Once you stop\\nrecording the video is being prepared. Wait that process\\nfinishes, then press `q` two times to remove the buffer and get\\nto the recorded file.\\u0026quot;\\n (interactive)\\n (let* ((filepath (concat video-recordings-dir (format-time-string \\u0026quot;%Y/%m/%Y-%m-%d/\\u0026quot;)))\\n (filename (concat filepath (format-time-string \\u0026quot;%Y-%m-%d-%H:%M:%S\\u0026quot;) video-recording-extension))\\n (command-1 (screen-record-command filename))\\n (current-buffer (current-buffer))\\n (keybinding-stop (kbd \\u0026quot;s-u\\u0026quot;))\\n (buffer \\u0026quot;*Screen Recording*\\u0026quot;))\\n(make-directory filepath t)\\n(switch-to-buffer buffer)\\n(erase-buffer)\\n(setq-local header-line-format \\u0026quot;\\u279c Screen recording, use \\u0026#39;q\\u0026#39; when process finishes to get the recorded file, use globally s-u to stop recording.\\u0026quot;)\\n(let* ((process (start-process-shell-command buffer buffer command-1)))\\n (message (prin1-to-string process))\\n (local-set-key \\u0026quot;q\\u0026quot; `(lambda () (interactive) (signal-process ,process \\u0026#39;TERM)\\n (local-set-key \\u0026quot;q\\u0026quot; (lambda () (interactive)\\n (kill-current-buffer)\\n (find-file ,filepath)\\n (revert-buffer)))))\\n (switch-to-buffer current-buffer)\\n (global-set-key keybinding-stop `(lambda () (interactive) (signal-process ,process \\u0026#39;TERM)\\n (switch-to-buffer ,buffer))))))\\n\\n(defun screen-record-command (filename \\u0026amp;optional device)\\n \\u0026quot;Record screen with the default device\\u0026quot;\\n (let* ((device (if device device \\u0026quot;pulse\\u0026quot;))\\n (command (format \\u0026quot;recordmydesktop --pause-shortcut Alt-p --stop-shortcut Alt-n --workdir \\u0026#39;%s\\u0026#39; --no-frame --device %s -o \\\\\\u0026quot;%s\\\\\\u0026quot;\\u0026quot; temporary-file-directory device filename)))\\ncommand))\\n\\n(global-set-key (kbd \\u0026quot;s-z\\u0026quot;) \\u0026#39;record-screen)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe workflow concept could be improved so that video and voice files are quickly sent to the recipient by email. Maybe you wish to publish the GNU Emacs video screen cast to GNU Social network via Jabber or XMPP. You could improve the workflow to automatically publish the video to the web server and publish the status to GNU Social network. This demonstration presents a concept of chaining of various actions, so that we work with less keys, more productivity.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co3uyx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rcdwealth\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co3uyx/emacs_lisp_record_screen_within_gnu_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/co3uyx/emacs_lisp_record_screen_within_gnu_emacs/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565364234.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_euy5b\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is this black sidebar and how do I change it? Can I do anything cool with it.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co3dde\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565390885.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co3dde\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dericbytes\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co3dde/what_is_this_black_sidebar_and_how_do_i_change_it/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/kelpi6earff31.jpg\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565362085.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have a german keyboard and would like so use Isearch on C-\\u00f6. \\n\\n\\u0026#x200B;\\n\\nBut I cant find how to facilitate this keybinding. \\n\\n\\u0026#x200B;\\n\\nCan you help me out?\", \"author_fullname\": \"t2_3p3qqcr1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"bind german mutated vowel keys to functions\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co1vf2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565383512.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a german keyboard and would like so use Isearch on C-\\u00f6. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut I cant find how to facilitate this keybinding. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECan you help me out?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co1vf2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sewing31\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co1vf2/bind_german_mutated_vowel_keys_to_functions/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/co1vf2/bind_german_mutated_vowel_keys_to_functions/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565354712.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I use `ivy` and `which-key` which seem to be the reason of this issue. How to disable this feature?\\n\\n[Able to edit a buffer in the minibuffer in Emacs. How is this even possible?](https://i.redd.it/ikqs6vdb2ff31.png)\", \"author_fullname\": \"t2_3cvn0zxc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Somehow I switched to a buffer in minibuffer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"ikqs6vdb2ff31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 768, \"x\": 1366, \"u\": \"https://i.redd.it/ikqs6vdb2ff31.png\"}, \"m\": \"image/png\", \"id\": \"ikqs6vdb2ff31\"}}, \"name\": \"t3_co1own\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565382497.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use \\u003Ccode\\u003Eivy\\u003C/code\\u003E and \\u003Ccode\\u003Ewhich-key\\u003C/code\\u003E which seem to be the reason of this issue. How to disable this feature?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/ikqs6vdb2ff31.png\\\"\\u003EAble to edit a buffer in the minibuffer in Emacs. How is this even possible?\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co1own\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"comproprasad\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co1own/somehow_i_switched_to_a_buffer_in_minibuffer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/co1own/somehow_i_switched_to_a_buffer_in_minibuffer/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565353697.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hey All!\\n\\nNot sure if anyone ran into this before, but I'm trying to get set up on a new MacOS Mojave installation and running into this error:\\n\\n```\\nScan error: \\\"Containing expression ends prematurely\\\", 4000, 4001\\n```\\n\\nThis seems to be consistent with every package I attempt to download from either tromey or melpa.\\n\\nHas anyone seen this issue before and could advise if there's a setting that I need to change?\\n\\nThanks in advance!\\n\\nEDIT:\\nThe full line would look like this, now that I had downloaded a git clone of use-package and tried to use that to load all of my dependencies:\\n```\\nError (use-package): Failed to install diminish: Scan error: \\\"Containing expression ends prematurely\\\", 4000, 4001\\n```\", \"author_fullname\": \"t2_lu0aj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs 26.2 on MacOS Mojave, Scan error: \\\"Containing expression ends prematurely\\\", 4000, 4001\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co19b1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565380031.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey All!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot sure if anyone ran into this before, but I\\u0026#39;m trying to get set up on a new MacOS Mojave installation and running into this error:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\nScan error: \\u0026quot;Containing expression ends prematurely\\u0026quot;, 4000, 4001\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis seems to be consistent with every package I attempt to download from either tromey or melpa.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHas anyone seen this issue before and could advise if there\\u0026#39;s a setting that I need to change?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT:\\nThe full line would look like this, now that I had downloaded a git clone of use-package and tried to use that to load all of my dependencies:\\n\\u003Ccode\\u003E\\nError (use-package): Failed to install diminish: Scan error: \\u0026quot;Containing expression ends prematurely\\u0026quot;, 4000, 4001\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co19b1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"friedbun\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co19b1/emacs_262_on_macos_mojave_scan_error_containing/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/co19b1/emacs_262_on_macos_mojave_scan_error_containing/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565351231.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm trying to build ac-clang for emacs and when it starts \\\"Building CXX object CMakeFiles/clang-server.dir/Common.cpp.o\\\" throws an error that says \\\"No rule to make target libclang-NOTFOUND\\\"\", \"author_fullname\": \"t2_3fz7z9wp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Clang not found\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co08zo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565373719.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to build ac-clang for emacs and when it starts \\u0026quot;Building CXX object CMakeFiles/clang-server.dir/Common.cpp.o\\u0026quot; throws an error that says \\u0026quot;No rule to make target libclang-NOTFOUND\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co08zo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Viko9604\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/co08zo/clang_not_found/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/co08zo/clang_not_found/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565344919.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nI just started using tide for working with typescript and everything was really nice until I had to use ES6 template strings : \\\\` \\\\`\\n\\nThe indentation looks broken and I am obliged to use space to make the code looks nice to read.\\n\\nThis is what I have when I just hit enter after \\\\` , and no way to 'tab' the next line:\\n\\n console.log(`\\n The Todo with ID: ${id}\\n Has a title: ${title}\\n Is finished: ${finished}\\n `)\\n\\nThis is what I want (or something similar):\\n\\n console.log(`\\n The Todo with ID: ${id}\\n Has a title: ${title}\\n Is finished: ${finished}\\n `)\\n\\nPreviously I had the same issue working with Vue.js using js2-mode.\\n\\nThe only way to solve this was to use web-mode which make sense for vue. \\nBut I am working on a ES6 typescript project and using web-mode seems overkill because I dont need any HTML here.\\n\\nWhat you guys are using to solve this? \\n\\n\\nThanks,\\n\\nBen\", \"author_fullname\": \"t2_2tffz6ir\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ES6 template strings with typescript-mode or js2-mode (using tide)?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnzyhx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565371680.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI just started using tide for working with typescript and everything was really nice until I had to use ES6 template strings : ` `\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe indentation looks broken and I am obliged to use space to make the code looks nice to read.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is what I have when I just hit enter after ` , and no way to \\u0026#39;tab\\u0026#39; the next line:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E console.log(`\\nThe Todo with ID: ${id}\\nHas a title: ${title}\\nIs finished: ${finished}\\n`)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis is what I want (or something similar):\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E console.log(`\\n The Todo with ID: ${id}\\n Has a title: ${title}\\n Is finished: ${finished}\\n `)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EPreviously I had the same issue working with Vue.js using js2-mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe only way to solve this was to use web-mode which make sense for vue.\\u003Cbr/\\u003E\\nBut I am working on a ES6 typescript project and using web-mode seems overkill because I dont need any HTML here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat you guys are using to solve this? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBen\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnzyhx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Ben-Boyer\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnzyhx/es6_template_strings_with_typescriptmode_or/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cnzyhx/es6_template_strings_with_typescriptmode_or/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565342880.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_4a21ary1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs icon is pixelated in KDE Plasma\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnzqkl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565370122.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnzqkl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Skaligulavi\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnzqkl/emacs_icon_is_pixelated_in_kde_plasma/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/kde/comments/cnyuzw/some_icons_in_alt_tab_switcher_are_pixelated_for/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565341322.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"EDIT: My mistake: Conversation below answered my questions and showed me the error of my ways. Thanks all for the answers (especially to alphapapa!)\\n\\nHey Everyone,\\n\\nJust curious: Did the latest Org-Mode update from a few days ago break org-capture for anyone else? When I hit org-capture now, I get the:\\n\\n\\\"Error:\\n\\nThere was an error in the Python parsing script.\\\"\\n\\nPop up from Firefox. Then it does go to Emacs but it doesn't do anything. I'm running Mac with emacs 26.2 railwaycat build.\\n\\nJust curious if it's just me. I'll try reinstalling org-capture later this weekend or something, but was just checking.\", \"author_fullname\": \"t2_dmarn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org Mode Update Broke Org-Capture?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnzj7d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565391995.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565368601.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEDIT: My mistake: Conversation below answered my questions and showed me the error of my ways. Thanks all for the answers (especially to alphapapa!)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHey Everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust curious: Did the latest Org-Mode update from a few days ago break org-capture for anyone else? When I hit org-capture now, I get the:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;Error:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere was an error in the Python parsing script.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPop up from Firefox. Then it does go to Emacs but it doesn\\u0026#39;t do anything. I\\u0026#39;m running Mac with emacs 26.2 railwaycat build.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust curious if it\\u0026#39;s just me. I\\u0026#39;ll try reinstalling org-capture later this weekend or something, but was just checking.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnzj7d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TyrionBean\", \"num_crossposts\": 0, \"num_comments\": 18, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnzj7d/org_mode_update_broke_orgcapture/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cnzj7d/org_mode_update_broke_orgcapture/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565339801.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3ixmiy8z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"(emacs-init-time): what's your emacs init time?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnyzj1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565364491.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnyzj1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"forppinrange\", \"num_crossposts\": 0, \"num_comments\": 37, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnyzj1/emacsinittime_whats_your_emacs_init_time/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cnyzj1/emacsinittime_whats_your_emacs_init_time/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565335691.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_u86pa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"EMACS! \\u2014 Goblin Refuge\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnu1h0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565336425.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"goblinrefuge.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnu1h0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rcdwealth\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnu1h0/emacs_goblin_refuge/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://goblinrefuge.com/mediagoblin/u/theemacsshibe/m/emacs/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565307625.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_u86pa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs learning curve\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnu18u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565336396.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"goblinrefuge.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnu18u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rcdwealth\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnu18u/emacs_learning_curve/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://goblinrefuge.com/mediagoblin/u/farliz/m/emacs-learning-curve/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565307596.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"URL: https://gnu.support/gnu-emacs/emacs-lisp/Emacs-Lisp-Record-voice-notes-within-GNU-Emacs.html\\n\\nSometimes you have no time to write and maybe you are talking or maybe you simply wish to record a voice note. Maybe you wish to send a voice message to somebody by email. Just use the `record-voice-note` function and it will invoke the shell command `rec` from SOX sound tools system package. Yes, you must have it or this will not work. It will record a sound note and open it in Dired. Press `q` to finish recording the sound.\\n\\nRecording sound notes is very common on mobile devices. A function to record sound notes shall be available within GNU Emacs too, it helps to record important conversations or simple to prepare the voice message to be sent by email. Tuning these functions is left to the reader. Low quality recording here have been so set for reasons of sending voice notes by email and having smaller files. Tune the rate of recording for better quality if you wish.\\n\\n (defvar sound-recordings-dir \\\"/home/data1/protected/Media/Sound/Recordings/\\\"\\n \\\"This is your sound recording directory. Keep slash on the end\\\")\\n\\n (defvar sound-recording-extension \\\".ogg\\\"\\n \\\"This is your sound file extension\\\")\\n\\n (defun record-voice-note ()\\n \\\"This function uses SOX sound tools to record voice notes. The\\n concept is more important than which tools are used. It starts\\n recording the sound file within emacs. It can be your sound\\n note. Once you press `q` it will stop recording, and open up the\\n directory with sound files\\\"\\n (interactive)\\n (let* ((filepath (concat sound-recordings-dir (format-time-string \\\"%Y/%m/%Y-%m-%d/\\\")))\\n\\t (filename (concat filepath (format-time-string \\\"%Y-%m-%d-%H:%M:%S\\\") sound-recording-extension))\\n\\t (command-1 (voice-record-command filename))\\n\\t (buffer \\\"*Sound Recording*\\\"))\\n\\t(make-directory filepath t)\\n\\t(switch-to-buffer buffer)\\n\\t(erase-buffer)\\n\\t(setq-local header-line-format \\\"\\u279c Finish recording with 'q'\\\")\\n\\t(let* ((process (start-process-shell-command buffer buffer command-1)))\\n\\t (local-set-key \\\"q\\\" (lambda () (interactive) (kill-process process nil)\\n\\t\\t\\t (local-set-key \\\"q\\\" 'kill-current-buffer)\\n\\t\\t\\t (find-file filepath)\\n\\t\\t\\t (revert-buffer)))\\n\\t (recursive-edit))))\\n\\n (defun voice-record-command (filename \\u0026optional rate channels)\\n \\\"Returns sound recording command with default rate and channels\\\"\\n (let* ((rate (if rate rate 16000))\\n\\t (channels (if channels channels 1))\\n\\t (command (format \\\"rec --comment \\\\\\\"Voice of %s: %s\\\\\\\" -r %s -c %s \\\\\\\"%s\\\\\\\"\\\" user-full-name filename rate channels filename)))\\n\\tcommand))\\n\\n\\nYou should be able to quickly record voice notes. Bind the function to a key, and make your voice notes handy for future. It is possible to make an Org mode link to sound file, so that you can listen to certain voice notes. Or make your own podcasting if you wish. The concept of quick recording voice notes and sending them to friends and family is underused. So many people write emails, but you can speak emails. You do not need to write them. I will provide concept of sending voice notes from GNU Emacs automatically in one of next lessons.\", \"author_fullname\": \"t2_u86pa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Lisp: Record voice notes within GNU Emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cntr3o\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 41, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 41, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565307335.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565334995.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EURL: \\u003Ca href=\\\"https://gnu.support/gnu-emacs/emacs-lisp/Emacs-Lisp-Record-voice-notes-within-GNU-Emacs.html\\\"\\u003Ehttps://gnu.support/gnu-emacs/emacs-lisp/Emacs-Lisp-Record-voice-notes-within-GNU-Emacs.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESometimes you have no time to write and maybe you are talking or maybe you simply wish to record a voice note. Maybe you wish to send a voice message to somebody by email. Just use the \\u003Ccode\\u003Erecord-voice-note\\u003C/code\\u003E function and it will invoke the shell command \\u003Ccode\\u003Erec\\u003C/code\\u003E from SOX sound tools system package. Yes, you must have it or this will not work. It will record a sound note and open it in Dired. Press \\u003Ccode\\u003Eq\\u003C/code\\u003E to finish recording the sound.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERecording sound notes is very common on mobile devices. A function to record sound notes shall be available within GNU Emacs too, it helps to record important conversations or simple to prepare the voice message to be sent by email. Tuning these functions is left to the reader. Low quality recording here have been so set for reasons of sending voice notes by email and having smaller files. Tune the rate of recording for better quality if you wish.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defvar sound-recordings-dir \\u0026quot;/home/data1/protected/Media/Sound/Recordings/\\u0026quot;\\n \\u0026quot;This is your sound recording directory. Keep slash on the end\\u0026quot;)\\n\\n(defvar sound-recording-extension \\u0026quot;.ogg\\u0026quot;\\n \\u0026quot;This is your sound file extension\\u0026quot;)\\n\\n(defun record-voice-note ()\\n \\u0026quot;This function uses SOX sound tools to record voice notes. The\\nconcept is more important than which tools are used. It starts\\nrecording the sound file within emacs. It can be your sound\\nnote. Once you press `q` it will stop recording, and open up the\\ndirectory with sound files\\u0026quot;\\n (interactive)\\n (let* ((filepath (concat sound-recordings-dir (format-time-string \\u0026quot;%Y/%m/%Y-%m-%d/\\u0026quot;)))\\n (filename (concat filepath (format-time-string \\u0026quot;%Y-%m-%d-%H:%M:%S\\u0026quot;) sound-recording-extension))\\n (command-1 (voice-record-command filename))\\n (buffer \\u0026quot;*Sound Recording*\\u0026quot;))\\n(make-directory filepath t)\\n(switch-to-buffer buffer)\\n(erase-buffer)\\n(setq-local header-line-format \\u0026quot;\\u279c Finish recording with \\u0026#39;q\\u0026#39;\\u0026quot;)\\n(let* ((process (start-process-shell-command buffer buffer command-1)))\\n (local-set-key \\u0026quot;q\\u0026quot; (lambda () (interactive) (kill-process process nil)\\n (local-set-key \\u0026quot;q\\u0026quot; \\u0026#39;kill-current-buffer)\\n (find-file filepath)\\n (revert-buffer)))\\n (recursive-edit))))\\n\\n(defun voice-record-command (filename \\u0026amp;optional rate channels)\\n \\u0026quot;Returns sound recording command with default rate and channels\\u0026quot;\\n (let* ((rate (if rate rate 16000))\\n (channels (if channels channels 1))\\n (command (format \\u0026quot;rec --comment \\\\\\u0026quot;Voice of %s: %s\\\\\\u0026quot; -r %s -c %s \\\\\\u0026quot;%s\\\\\\u0026quot;\\u0026quot; user-full-name filename rate channels filename)))\\ncommand))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EYou should be able to quickly record voice notes. Bind the function to a key, and make your voice notes handy for future. It is possible to make an Org mode link to sound file, so that you can listen to certain voice notes. Or make your own podcasting if you wish. The concept of quick recording voice notes and sending them to friends and family is underused. So many people write emails, but you can speak emails. You do not need to write them. I will provide concept of sending voice notes from GNU Emacs automatically in one of next lessons.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cntr3o\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rcdwealth\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cntr3o/emacs_lisp_record_voice_notes_within_gnu_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cntr3o/emacs_lisp_record_voice_notes_within_gnu_emacs/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565306195.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've pushed a new feature to `org-ql`, custom agenda blocks, which allows `org-ql` queries to be integrated into Org Agenda views. So rather than having to rewrite your agenda view entirely using `org-ql-agenda` (which doesn't provide all the features, such as weekly views), you can use `org-ql-block` to complement the standard Org Agenda.\\n\\n\\u003Chttps://github.com/alphapapa/org-ql#function-org-ql-block\\u003E\\n\\nFor example, these two custom agenda commands are equivalent:\\n\\n ;; Standard Org Agenda tags-todo version:\\n (setq org-agenda-custom-commands\\n '((\\\"ces\\\" \\\"Custom: Agenda and Emacs SOMEDAY [#A] items\\\"\\n ((tags-todo \\\"PRIORITY=\\\\\\\"A\\\\\\\"+Emacs/!SOMEDAY\\\")\\n (agenda)))))\\n \\n ;; org-ql version:\\n (setq org-agenda-custom-commands\\n '((\\\"ces\\\" \\\"Custom: Agenda and Emacs SOMEDAY [#A] items\\\"\\n ((org-ql-block '(and (todo \\\"SOMEDAY\\\")\\n (tags \\\"Emacs\\\")\\n (priority \\\"A\\\")))\\n (agenda)))))\\n\\nHowever, the `org-ql-block` version runs in about 1/5th the time (0.7 seconds compared to 3.45 seconds on my collection of `org-agenda-files`).\\n\\nPlease let me know if you have any feedback. Thanks.\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-ql-block integrates org-ql into Org Agenda custom commands\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnrt2d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565326206.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve pushed a new feature to \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E, custom agenda blocks, which allows \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E queries to be integrated into Org Agenda views. So rather than having to rewrite your agenda view entirely using \\u003Ccode\\u003Eorg-ql-agenda\\u003C/code\\u003E (which doesn\\u0026#39;t provide all the features, such as weekly views), you can use \\u003Ccode\\u003Eorg-ql-block\\u003C/code\\u003E to complement the standard Org Agenda.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/org-ql#function-org-ql-block\\\"\\u003Ehttps://github.com/alphapapa/org-ql#function-org-ql-block\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example, these two custom agenda commands are equivalent:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Standard Org Agenda tags-todo version:\\n(setq org-agenda-custom-commands\\n \\u0026#39;((\\u0026quot;ces\\u0026quot; \\u0026quot;Custom: Agenda and Emacs SOMEDAY [#A] items\\u0026quot;\\n ((tags-todo \\u0026quot;PRIORITY=\\\\\\u0026quot;A\\\\\\u0026quot;+Emacs/!SOMEDAY\\u0026quot;)\\n (agenda)))))\\n\\n;; org-ql version:\\n(setq org-agenda-custom-commands\\n \\u0026#39;((\\u0026quot;ces\\u0026quot; \\u0026quot;Custom: Agenda and Emacs SOMEDAY [#A] items\\u0026quot;\\n ((org-ql-block \\u0026#39;(and (todo \\u0026quot;SOMEDAY\\u0026quot;)\\n (tags \\u0026quot;Emacs\\u0026quot;)\\n (priority \\u0026quot;A\\u0026quot;)))\\n (agenda)))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHowever, the \\u003Ccode\\u003Eorg-ql-block\\u003C/code\\u003E version runs in about 1/5th the time (0.7 seconds compared to 3.45 seconds on my collection of \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease let me know if you have any feedback. Thanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnrt2d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 1, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnrt2d/orgqlblock_integrates_orgql_into_org_agenda/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cnrt2d/orgqlblock_integrates_orgql_into_org_agenda/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565297406.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi\\n\\nI'm trying to use the VHDL LSP server from [www.vhdltool.com](https://www.vhdltool.com) but cannot figure out how to specify additional arguments when launching the server binary (e.g. \\\"./vhdl-tool server --config ./filelist.yaml\\\")\\n\\nThe relevant code from my init file is below.\\n\\n (add-hook 'vhdl-mode-hook #'lsp)\\n (add-to-list 'lsp-language-id-configuration '(vhdl-mode . \\\"vhdl\\\"))\\n (lsp-register-client\\n (make-lsp-client :new-connection (lsp-stdio-connection \\\"~/tmp/vhdl-tool\\\")\\n :major-modes '(vhdl-mode)\\n :priority -1\\n :language-id \\\"VHDL\\\"\\n :initialization-options \\\"server --config ./filelist.yaml\\\"\\n :server-id 'lsp-vhdl-mode))\\n \\n\\nFrom the error messages below I can see that the additional arguments are not passed to the server:\\n\\n\\\\*Messages\\\\*\\n\\n VHDL Mode 3.38.1. See menu for documentation and release notes.\\n LSP :: Connected to [lsp-vhdl-mode:17903 status:starting].\\n LSP :: lsp-vhdl-mode has exited (exited abnormally with code 1)\\n Server lsp-vhdl-mode:17903 status:starting exited with status exit. Do you want to restart it? (y or n)\\n\\n\\\\*lsp-vhdl-mode::stderr\\\\*\\n\\n Missing: ((-v|--version) | COMMAND)\\n \\n VHDL Tool\\n \\n Usage: vhdl-tool ((-v|--version) | [-c|--config FILE] COMMAND)\\n \\n Available options:\\n -h,--help Show this help text\\n -v,--version Show version information\\n \\n Available commands:\\n ctags Generate ctags file\\n lint Lint\\n server Server\\n lsp Language Server Protocol server\\n client Client\\n rpc RPC\\n check-config Check configuration file\\n \\n Process lsp-vhdl-mode stderr finished\\n\\nI assumed that initialization-options are for setting extra launch arguments for the server but maybe I have misunderstood that? Also, I cannot find any documentation for the arguments to make-lsp-client anywhere.\", \"author_fullname\": \"t2_4w9az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Initialization options for make-lsp-client\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnpmm1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565316915.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to use the VHDL LSP server from \\u003Ca href=\\\"https://www.vhdltool.com\\\"\\u003Ewww.vhdltool.com\\u003C/a\\u003E but cannot figure out how to specify additional arguments when launching the server binary (e.g. \\u0026quot;./vhdl-tool server --config ./filelist.yaml\\u0026quot;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe relevant code from my init file is below.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(add-hook \\u0026#39;vhdl-mode-hook #\\u0026#39;lsp)\\n (add-to-list \\u0026#39;lsp-language-id-configuration \\u0026#39;(vhdl-mode . \\u0026quot;vhdl\\u0026quot;))\\n (lsp-register-client\\n (make-lsp-client :new-connection (lsp-stdio-connection \\u0026quot;~/tmp/vhdl-tool\\u0026quot;)\\n :major-modes \\u0026#39;(vhdl-mode)\\n :priority -1\\n :language-id \\u0026quot;VHDL\\u0026quot;\\n :initialization-options \\u0026quot;server --config ./filelist.yaml\\u0026quot;\\n :server-id \\u0026#39;lsp-vhdl-mode))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EFrom the error messages below I can see that the additional arguments are not passed to the server:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*Messages*\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EVHDL Mode 3.38.1. See menu for documentation and release notes.\\nLSP :: Connected to [lsp-vhdl-mode:17903 status:starting].\\nLSP :: lsp-vhdl-mode has exited (exited abnormally with code 1)\\nServer lsp-vhdl-mode:17903 status:starting exited with status exit. Do you want to restart it? (y or n)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E*lsp-vhdl-mode::stderr*\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EMissing: ((-v|--version) | COMMAND)\\n\\nVHDL Tool\\n\\nUsage: vhdl-tool ((-v|--version) | [-c|--config FILE] COMMAND)\\n\\nAvailable options:\\n -h,--help Show this help text\\n -v,--version Show version information\\n\\nAvailable commands:\\n ctags Generate ctags file\\n lint Lint\\n server Server\\n lsp Language Server Protocol server\\n client Client\\n rpc RPC\\n check-config Check configuration file\\n\\nProcess lsp-vhdl-mode stderr finished\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI assumed that initialization-options are for setting extra launch arguments for the server but maybe I have misunderstood that? Also, I cannot find any documentation for the arguments to make-lsp-client anywhere.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnpmm1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"IRCMonkey\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnpmm1/initialization_options_for_makelspclient/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cnpmm1/initialization_options_for_makelspclient/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565288115.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello,\\ni'm using Linux Mint 19.1 with Emacs 26 or 27.\\nInside Mint i can access my smartphone with no problem.\\nBut unfortunately inside Emacs Dired or Dired+ i do not see it.\\nIf it is a directory or mountpount outside my home, how could i jump there?\\n\\nAny clues?\\nRegards\\nspaceheld\", \"author_fullname\": \"t2_8bauomf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Dired or Dired+: How access mtp Smartphone?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnpmfp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565316895.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello,\\ni\\u0026#39;m using Linux Mint 19.1 with Emacs 26 or 27.\\nInside Mint i can access my smartphone with no problem.\\nBut unfortunately inside Emacs Dired or Dired+ i do not see it.\\nIf it is a directory or mountpount outside my home, how could i jump there?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny clues?\\nRegards\\nspaceheld\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnpmfp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"space_held\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnpmfp/dired_or_dired_how_access_mtp_smartphone/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cnpmfp/dired_or_dired_how_access_mtp_smartphone/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565288095.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Often when typing in the minibuffer I want to reuse some old\\nentry. This is common and since the built in history tools can be\\nimproved upon, many people bind a command like\\nhelm-minibuffer-history or similar in the minibuffer.\\n\\nI just want to share an additional improvement for lazy people\\nlike me. Sometimes I start to type something in the minibuffer\\nand then I realize I wanted to fetch this entry from the history\\ninstead. I could retype the string in helm-minibuffer-history to\\nsearch for it, but why should I when emacs can preseed the\\nhistory search for me automatically?\\n\\nThat's what this little code does. It binds history search to a key\\nin the minibuffer as usual, but if there is already an input\\ntyped in the minibuffer then it picks it up and passes it to the\\nsearch:\\n\\n (define-key minibuffer-local-map\\n (kbd \\\"\\u003Cinsert\\u003E\\\")\\n (lambda ()\\n (interactive)\\n (if (string-match \\\"[-a-z0-9 ]+$\\\" (minibuffer-contents))\\n (mapc (lambda (char)\\n (push char unread-command-events))\\n (reverse (match-string 0 (minibuffer-contents)))))\\n (helm-minibuffer-history)))\", \"author_fullname\": \"t2_3xqifjws\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Quick history lookup from the minibuffer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cno4jq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565310568.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOften when typing in the minibuffer I want to reuse some old\\nentry. This is common and since the built in history tools can be\\nimproved upon, many people bind a command like\\nhelm-minibuffer-history or similar in the minibuffer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI just want to share an additional improvement for lazy people\\nlike me. Sometimes I start to type something in the minibuffer\\nand then I realize I wanted to fetch this entry from the history\\ninstead. I could retype the string in helm-minibuffer-history to\\nsearch for it, but why should I when emacs can preseed the\\nhistory search for me automatically?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s what this little code does. It binds history search to a key\\nin the minibuffer as usual, but if there is already an input\\ntyped in the minibuffer then it picks it up and passes it to the\\nsearch:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(define-key minibuffer-local-map\\n (kbd \\u0026quot;\\u0026lt;insert\\u0026gt;\\u0026quot;)\\n (lambda ()\\n (interactive)\\n (if (string-match \\u0026quot;[-a-z0-9 ]+$\\u0026quot; (minibuffer-contents))\\n (mapc (lambda (char)\\n (push char unread-command-events))\\n (reverse (match-string 0 (minibuffer-contents)))))\\n (helm-minibuffer-history)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cno4jq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ndamee\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cno4jq/quick_history_lookup_from_the_minibuffer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cno4jq/quick_history_lookup_from_the_minibuffer/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565281768.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_14cz4w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I precise I love emacs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"pink\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnmwx5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 42, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"emacs-fu\", \"can_mod_post\": false, \"score\": 42, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565305137.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b862c57e-6b8a-11e5-8194-0e1d3ee68d31\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnmwx5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"phineas0fog\", \"num_crossposts\": 0, \"num_comments\": 20, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnmwx5/i_precise_i_love_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://i.redd.it/0u9pijelo8f31.png\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565276337.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_heb06\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Demo of integration between org-noter and org-pdftools\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnm3vk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 49, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/lCc3UoQku-E?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"org-pdftools \\u0026 org-noter demo\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/lCc3UoQku-E?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"Alexander Fu\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/lCc3UoQku-E/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCUF4bHszxd8T4ulrvLejumA\"}, \"type\": \"youtube.com\"}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/lCc3UoQku-E?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cnm3vk\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 49, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565301314.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnm3vk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fuxialexander\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnm3vk/demo_of_integration_between_orgnoter_and/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=lCc3UoQku-E\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565272514.0, \"discussion_type\": null, \"media\": {\"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"title\": \"org-pdftools \\u0026 org-noter demo\", \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/lCc3UoQku-E?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"version\": \"1.0\", \"author_name\": \"Alexander Fu\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/lCc3UoQku-E/hqdefault.jpg\", \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCUF4bHszxd8T4ulrvLejumA\"}, \"type\": \"youtube.com\"}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I need to debug a program which requires being a super user. To debug it I tried adding sudo to the command line:\\n\\n M-x: gdb\\n \\n Run gdb (like this): sudo gdb -i=mi\\n\\nHowever, I get this error followed by the password prompts:\\n\\n Error: you did not specify -i=mi on GDB's command line!\\n \\n [sudo] password for username:\\n \\n Sorry, try again.\\n \\n [sudo] password for username:\\n \\n Sorry, try again.\\n \\n [sudo] password for username:\\n \\n Debugger exited abnormally with code\\n\\nThen, it complains that the password is incorrect and exit. \\n\\nDoes anyone know how to solve this issue or escalate the privileges of gdb in emacs? \\n\\nThanks.\", \"author_fullname\": \"t2_484bfhmb\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Start gdb-mi with sudo\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnl7dh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565296844.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI need to debug a program which requires being a super user. To debug it I tried adding sudo to the command line:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E M-x: gdb\\n\\n Run gdb (like this): sudo gdb -i=mi\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHowever, I get this error followed by the password prompts:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E Error: you did not specify -i=mi on GDB\\u0026#39;s command line!\\n\\n [sudo] password for username:\\n\\n Sorry, try again.\\n\\n [sudo] password for username:\\n\\n Sorry, try again.\\n\\n [sudo] password for username:\\n\\n Debugger exited abnormally with code\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThen, it complains that the password is incorrect and exit. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone know how to solve this issue or escalate the privileges of gdb in emacs? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnl7dh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"abstack366\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnl7dh/start_gdbmi_with_sudo/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cnl7dh/start_gdbmi_with_sudo/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565268044.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I noticed that there are some not-so-good default bindings that I really didn't change until recently. Here are some bindings that I don't like so much. \\n\\nI would like if others can share some default bindings they don't like and show alternatives.\\n\\n* `C-x o` bound to `other-window` Really? I personally started using `C-o`\\n* `C-x k \\u003CRET\\u003E` to kill the current buffer, that's way too long I use `C-q`\\n* `C-x b` to change to a different buffer, I like `s-SPC` better\\n\\nThis is my opinion of course what's yours?\", \"author_fullname\": \"t2_3ixmiy8z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What are the worst default emacs bindings that we usually don't change?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnkoll\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 55, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 55, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565294040.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI noticed that there are some not-so-good default bindings that I really didn\\u0026#39;t change until recently. Here are some bindings that I don\\u0026#39;t like so much. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like if others can share some default bindings they don\\u0026#39;t like and show alternatives.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EC-x o\\u003C/code\\u003E bound to \\u003Ccode\\u003Eother-window\\u003C/code\\u003E Really? I personally started using \\u003Ccode\\u003EC-o\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EC-x k \\u0026lt;RET\\u0026gt;\\u003C/code\\u003E to kill the current buffer, that\\u0026#39;s way too long I use \\u003Ccode\\u003EC-q\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EC-x b\\u003C/code\\u003E to change to a different buffer, I like \\u003Ccode\\u003Es-SPC\\u003C/code\\u003E better\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThis is my opinion of course what\\u0026#39;s yours?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnkoll\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"forppinrange\", \"num_crossposts\": 0, \"num_comments\": 96, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnkoll/what_are_the_worst_default_emacs_bindings_that_we/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cnkoll/what_are_the_worst_default_emacs_bindings_that_we/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565265240.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm currently working on a `completion-at-point` function using ivy to do that. Completion should be done based on context (that is file path at point and current dir). It looks like a very common task so I'm wondering what everybody else uses? \\n\\nThere is `try-complete-file-name` for `hippie-expand` but it completes only step by step. I would like to navigate the file system like with `counsel-find-file` and then insert it. I know I could also use the insert action in `counsel-find-file` but it's not very efficient for completing a file name at point.\", \"author_fullname\": \"t2_2iah8sv2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What is your favorite method to insert a filename at point?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnkbth\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": \"130d74de-1fb4-11e9-966a-0e83bbba460e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565263478.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565292017.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m currently working on a \\u003Ccode\\u003Ecompletion-at-point\\u003C/code\\u003E function using ivy to do that. Completion should be done based on context (that is file path at point and current dir). It looks like a very common task so I\\u0026#39;m wondering what everybody else uses? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is \\u003Ccode\\u003Etry-complete-file-name\\u003C/code\\u003E for \\u003Ccode\\u003Ehippie-expand\\u003C/code\\u003E but it completes only step by step. I would like to navigate the file system like with \\u003Ccode\\u003Ecounsel-find-file\\u003C/code\\u003E and then insert it. I know I could also use the insert action in \\u003Ccode\\u003Ecounsel-find-file\\u003C/code\\u003E but it\\u0026#39;s not very efficient for completing a file name at point.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"(with-emacs.com\", \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnkbth\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"clemera\", \"num_crossposts\": 0, \"num_comments\": 22, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cnkbth/what_is_your_favorite_method_to_insert_a_filename/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565263217.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_38mg40l9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Keyboard issue, \\u003CXF86AudioPrev\\u003E is undefined.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnicw0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"Ubuntu\", \"selftext\": \"From yesterday I'm facing this issue. Keyboard gets frozen often and Emacs gives me message that `\\u003CXF86AudioPrev\\u003E is undefined` \\\\[Have a look at the images please\\\\]\\n\\n[When my Ubuntu boots...](https://i.redd.it/w0aanm7xg6f31.jpg)\\n\\nThese lots of `^@^@^@^@^@^@^@^@^@^@....` appear when my Ubuntu is booting.\\n\\nAnd here is the message given by Emacs.... `\\u003CXF86AudioPrev\\u003E is undefined`\\n\\n\\u003ENB. I've tried with vanilla Emacs and the message appeared there too.\\n\\n\\u0026#x200B;\\n\\n[Emacs with the message....](https://i.redd.it/qjc5yjy2h6f31.png)\\n\\n My PC Configuration-\\n Lenovo Ideapad 320\\n Processor: Core i3 (7th Gen)\\n RAM: 8GB\\n Ubuntu 18.04 LTS with Kernel 5.2.7 ( This issues happened with Kernel 4.*.* too )\\n LightDM with XFCE\\n\\nThanks in advance for your supports.\\n\\n\\u0026#x200B;\\n\\n**Update (09 Aug 2019):**\\n\\nThere is a bug report for the same issue which also happened to a Lenovo machine. So seems like the issues is with Linux Kernel for Ubuntu and Lenovo. \\n[https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1760013](https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1760013)\", \"author_fullname\": \"t2_38mg40l9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Keyboard issue, \\u003CXF86AudioPrev\\u003E is undefined.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/Ubuntu\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"w0aanm7xg6f31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 263, \"x\": 1278, \"u\": \"https://i.redd.it/w0aanm7xg6f31.jpg\"}, \"m\": \"image/jpg\", \"id\": \"w0aanm7xg6f31\"}, \"qjc5yjy2h6f31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 94, \"x\": 507, \"u\": \"https://i.redd.it/qjc5yjy2h6f31.png\"}, \"m\": \"image/png\", \"id\": \"qjc5yjy2h6f31\"}}, \"name\": \"t3_cni7ab\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565323836.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565277435.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.Ubuntu\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFrom yesterday I\\u0026#39;m facing this issue. Keyboard gets frozen often and Emacs gives me message that \\u003Ccode\\u003E\\u0026lt;XF86AudioPrev\\u0026gt; is undefined\\u003C/code\\u003E [Have a look at the images please]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/w0aanm7xg6f31.jpg\\\"\\u003EWhen my Ubuntu boots...\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThese lots of \\u003Ccode\\u003E^@^@^@^@^@^@^@^@^@^@....\\u003C/code\\u003E appear when my Ubuntu is booting.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd here is the message given by Emacs.... \\u003Ccode\\u003E\\u0026lt;XF86AudioPrev\\u0026gt; is undefined\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENB. I\\u0026#39;ve tried with vanilla Emacs and the message appeared there too.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/qjc5yjy2h6f31.png\\\"\\u003EEmacs with the message....\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EMy PC Configuration-\\nLenovo Ideapad 320\\nProcessor: Core i3 (7th Gen)\\nRAM: 8GB\\nUbuntu 18.04 LTS with Kernel 5.2.7 ( This issues happened with Kernel 4.*.* too )\\nLightDM with XFCE\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThanks in advance for your supports.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EUpdate (09 Aug 2019):\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is a bug report for the same issue which also happened to a Lenovo machine. So seems like the issues is with Linux Kernel for Ubuntu and Lenovo.\\u003Cbr/\\u003E\\n\\u003Ca href=\\\"https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1760013\\\"\\u003Ehttps://bugs.launchpad.net/ubuntu/+source/linux/+bug/1760013\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh62\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cni7ab\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"codemascot\", \"num_crossposts\": 1, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/Ubuntu/comments/cni7ab/keyboard_issue_xf86audioprev_is_undefined/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/Ubuntu/comments/cni7ab/keyboard_issue_xf86audioprev_is_undefined/\", \"subreddit_subscribers\": 121296, \"created_utc\": 1565248635.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1565278500.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.Ubuntu\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnicw0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"codemascot\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_cni7ab\", \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnicw0/keyboard_issue_xf86audioprev_is_undefined/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/Ubuntu/comments/cni7ab/keyboard_issue_xf86audioprev_is_undefined/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565249700.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have an org buffer in which I would like to replace the characters\\n\\n ( ) [ ] { }\\n\\nwith\\n\\n \\\\textnormal{(}\\n \\\\textnormal{[}\\n\\netc. on export using\\n\\n (replace-string \\\"(\\\" \\\"\\\\\\\\textnormal{(}\\\")\\n\\netc. This works fine for\\n\\n ( )\\n\\nbut not for\\n\\n [ ] { }\\n\\nI tried various ways of escaping those, but none did the trick. What do I need to do?\\n\\n(The specific way I go about it is with the following at the end of the file\\n\\n # Local Variables:\\n # eval: (setq org-export-before-processing-hook '(lambda (x) (replace-string \\\"(\\\" \\\"\\\\\\\\textnormal{(}\\\") (beginning-of-buffer) (replace-string \\\")\\\" \\\"\\\\\\\\textnormal{)}\\\") (beginning-of-buffer) (replace-string \\\"(\\\" \\\"\\\\\\\\textnormal{[}\\\") (beginning-of-buffer) (replace-string \\\")\\\" \\\"\\\\\\\\textnormal{]}\\\")))\\n # End:\\n\\nI am not sure this is relevant to the problem.)\", \"author_fullname\": \"t2_4rfgs1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Escaping characters for replace-string\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cni2k1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565247983.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565276582.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have an org buffer in which I would like to replace the characters\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E( ) [ ] { }\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ewith\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\\\textnormal{(}\\n\\\\textnormal{[}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eetc. on export using\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(replace-string \\u0026quot;(\\u0026quot; \\u0026quot;\\\\\\\\textnormal{(}\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eetc. This works fine for\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E( )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ebut not for\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E[ ] { }\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI tried various ways of escaping those, but none did the trick. What do I need to do?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(The specific way I go about it is with the following at the end of the file\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E# Local Variables:\\n# eval: (setq org-export-before-processing-hook \\u0026#39;(lambda (x) (replace-string \\u0026quot;(\\u0026quot; \\u0026quot;\\\\\\\\textnormal{(}\\u0026quot;) (beginning-of-buffer) (replace-string \\u0026quot;)\\u0026quot; \\u0026quot;\\\\\\\\textnormal{)}\\u0026quot;) (beginning-of-buffer) (replace-string \\u0026quot;(\\u0026quot; \\u0026quot;\\\\\\\\textnormal{[}\\u0026quot;) (beginning-of-buffer) (replace-string \\u0026quot;)\\u0026quot; \\u0026quot;\\\\\\\\textnormal{]}\\u0026quot;)))\\n# End:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI am not sure this is relevant to the problem.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cni2k1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"stfnbms\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cni2k1/escaping_characters_for_replacestring/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cni2k1/escaping_characters_for_replacestring/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565247782.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I would like to have all of the themes on my system, and be able to change between them upon startup, or later on, or whenever.\\n\\nThis gist https://gist.github.com/burke/341879 is no longer working, as http://inspiration.sweyla.com is not a working site. \\n\\nI didn't see a way to get a random theme from https://emacsthemes.com/ . Has anyone done this? One way might be to submit a patch to https://github.com/emacs-themes/emacs-themes-site to build an API, or to have a text file with the names of all of the themes in it.\\n\\nThanks\", \"author_fullname\": \"t2_f6sq1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Random theming\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnh056\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565269619.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to have all of the themes on my system, and be able to change between them upon startup, or later on, or whenever.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis gist \\u003Ca href=\\\"https://gist.github.com/burke/341879\\\"\\u003Ehttps://gist.github.com/burke/341879\\u003C/a\\u003E is no longer working, as \\u003Ca href=\\\"http://inspiration.sweyla.com\\\"\\u003Ehttp://inspiration.sweyla.com\\u003C/a\\u003E is not a working site. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI didn\\u0026#39;t see a way to get a random theme from \\u003Ca href=\\\"https://emacsthemes.com/\\\"\\u003Ehttps://emacsthemes.com/\\u003C/a\\u003E . Has anyone done this? One way might be to submit a patch to \\u003Ca href=\\\"https://github.com/emacs-themes/emacs-themes-site\\\"\\u003Ehttps://github.com/emacs-themes/emacs-themes-site\\u003C/a\\u003E to build an API, or to have a text file with the names of all of the themes in it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnh056\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"littlerustle\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnh056/random_theming/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cnh056/random_theming/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565240819.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Having run into corrupt undo-history with both undo-tree \\u0026 redo+, I thought I'd try using Emacs undo.\\n\\nHowever, I like convenient undo/redo key bindings \\u0026 found pressing `Ctrl-G` to redo annoying.\\n\\nI came up with a simple wrapper to avoid this, and it works surprisingly convenient.\\n\\n (defun my-redo ()\\n (interactive)\\n ;; Break undo chain, avoid having to press Ctrl-G.\\n (when (string= last-command 'my-undo)\\n (setq last-command 'ignore))\\n (undo))\\n \\n (defun my-undo ()\\n (interactive)\\n (undo-only)\\n (setq this-command 'my-undo))\\n \\n (define-key evil-normal-state-map (kbd \\\"u\\\") 'my-undo)\\n (define-key evil-normal-state-map (kbd \\\"C-r\\\") 'my-redo))\\n\\nThe main drawback is holding down the redo key will redo up until a point, then start to undo.\\n\\nAnyone else wrapping Emacs undo logic?\\n\\nAny hints on how this could be improved without doing error-prone edits to the internal undo state?\", \"author_fullname\": \"t2_jwv34\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Simple Undo/Redo Wrapper Emacs Undo?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cngeff\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565239381.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565266004.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHaving run into corrupt undo-history with both undo-tree \\u0026amp; redo+, I thought I\\u0026#39;d try using Emacs undo.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I like convenient undo/redo key bindings \\u0026amp; found pressing \\u003Ccode\\u003ECtrl-G\\u003C/code\\u003E to redo annoying.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI came up with a simple wrapper to avoid this, and it works surprisingly convenient.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun my-redo ()\\n (interactive)\\n ;; Break undo chain, avoid having to press Ctrl-G.\\n (when (string= last-command \\u0026#39;my-undo)\\n (setq last-command \\u0026#39;ignore))\\n (undo))\\n\\n(defun my-undo ()\\n (interactive)\\n (undo-only)\\n (setq this-command \\u0026#39;my-undo))\\n\\n(define-key evil-normal-state-map (kbd \\u0026quot;u\\u0026quot;) \\u0026#39;my-undo)\\n(define-key evil-normal-state-map (kbd \\u0026quot;C-r\\u0026quot;) \\u0026#39;my-redo))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe main drawback is holding down the redo key will redo up until a point, then start to undo.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone else wrapping Emacs undo logic?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny hints on how this could be improved without doing error-prone edits to the internal undo state?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cngeff\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ideasman_42\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cngeff/simple_undoredo_wrapper_emacs_undo/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cngeff/simple_undoredo_wrapper_emacs_undo/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565237204.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As an org file gets bigger, Emacs gets much much slower. I have thought about storing the Org trees in a database like SQLite, but not sure how this would work.\\n\\nI'm wondering if anyone has any recommendations on how something like this would be done / could be done?\\n\\nThanks.\", \"author_fullname\": \"t2_p2aez7v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode backed by SQLite / database?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnebxn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565254226.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs an org file gets bigger, Emacs gets much much slower. I have thought about storing the Org trees in a database like SQLite, but not sure how this would work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m wondering if anyone has any recommendations on how something like this would be done / could be done?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnebxn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"golden_bear_2016\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnebxn/org_mode_backed_by_sqlite_database/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cnebxn/org_mode_backed_by_sqlite_database/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565225426.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"If I run `ag something ~` in eshell, it works as expected, i.e. it runs `ag` and finds instances of `something` in my home directory. But if I do `ls ~ | ag something` it does not work as in my regular shell. I get no output in eshell, even though the same command in my regular shell does have output. `ls ~ | grep something` works in eshell though. So, how come `ag something ~` and `ls ~ | grep something` work, but not `ls ~ | ag something`?\", \"author_fullname\": \"t2_bqrmd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Eshell confusion: `ag` does not work after pipe\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cndz2s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565252273.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I run \\u003Ccode\\u003Eag something ~\\u003C/code\\u003E in eshell, it works as expected, i.e. it runs \\u003Ccode\\u003Eag\\u003C/code\\u003E and finds instances of \\u003Ccode\\u003Esomething\\u003C/code\\u003E in my home directory. But if I do \\u003Ccode\\u003Els ~ | ag something\\u003C/code\\u003E it does not work as in my regular shell. I get no output in eshell, even though the same command in my regular shell does have output. \\u003Ccode\\u003Els ~ | grep something\\u003C/code\\u003E works in eshell though. So, how come \\u003Ccode\\u003Eag something ~\\u003C/code\\u003E and \\u003Ccode\\u003Els ~ | grep something\\u003C/code\\u003E work, but not \\u003Ccode\\u003Els ~ | ag something\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cndz2s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tufflax\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cndz2s/eshell_confusion_ag_does_not_work_after_pipe/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cndz2s/eshell_confusion_ag_does_not_work_after_pipe/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565223473.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_4bm9nkxw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"CalcTex: turn Emacs into a WYSIWYG LaTeX equation editor\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnabox\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 85, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 85, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565234662.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnabox\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"chronicfields\", \"num_crossposts\": 0, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnabox/calctex_turn_emacs_into_a_wysiwyg_latex_equation/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/johnbcoughlin/calctex\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565205862.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Emacs Lisp: Send Status to your GNU Social instance via XMPP or Jabber protocol\\n===============================================================================\\n\\nURL: \\u003Chttps://gnu.support/gnu-emacs/emacs-lisp/Emacs-Lisp-Send-Status-to-your-GNU-Social-instance-via-XMPP-or-Jabber-protocol.html\\u003E\\n\\nThis is simple customization that helps the user to send status to GNU Social instance by using XMPP protocol. It means you could get notices over messenger from GNU Social and you could send notices over any XMPP or Jabber messenger to GNU Social instance. You are getting connected wherever you are. XMPP is much easier to use then web browser. The username `update@gnusocial.club` is your GNU social instance virtual friend. That is something you set up in your GNU Social profile under IM menu. Requirement is that administrator has enabled the menu and XMPP plugin for the GNU Social instance. As of now 2019-08-07 I just guess there are not so many GNU Social instances with XMPP connection. And then you need to have your own XMPP username or Jabber ID. Such need not be on GNU Social instance, it can be anywhere you wish, on any server, if you already have it, you can use your own Jabber ID to send status updates to GNU Social instance and vice versa, you can also receive messages over GNU Social instance. Change it to suit you. It is just a simplification of the `jabber-send-message` function in the Emacs Lisp package `jabber.el`. Great one! Coordinate with your team members, assign tasks directly from GNU Emacs to their messengers. Possibilities are wide to help in communication and coordination in any team. Otherwise have fun with decentralized GNU Social networks!\\n\\nIt is best if you can install you own [GNU Social](https://gnusocial.club) software. The virtual private server at [Digital Ocean](https://m.do.co/c/564f4aeba6a8) may cost you just US $5 to US $10 per month.\\n\\nI may provide you service to install your GNU Social service for US $10 on your own [VPS](https://m.do.co/c/564f4aeba6a8) or [Virtual Private Server](https://m.do.co/c/564f4aeba6a8) just contact me below. Installation of Prosody chat server for your or your organization is also a service that you may need. \\n\\nI will help you install your own decentralized social and chatting network.\\n\\n (require 'jabber)\\n\\n (defun jabber-gnu-social-status (message)\\n \\\"Sends statuts to GNU Social instance via XMPP connection\\\"\\n (let ((jc (jabber-find-connection \\\"louis@gnusocial.club\\\"))\\n\\t (to \\\"update@gnusocial.club\\\")\\n\\t (type nil))\\n\\t(jabber-send-message jc to nil message nil)))\\n\\n (defun gnusocial-status (message)\\n \\\"Send GNU Social status interactively\\\"\\n (interactive \\\"sStatus: \\\")\\n (jabber-gnu-social-status message))\\n\\nDue to Facebook and large providers such as Google, Twitter, in last decades Internet lost to a great degree its decentralization capabilities. People are less and less aware that everybody can run their own decentralized servers, chat servers, websites, and have their own email addresses. GNU Social network software is made to liberalize Internet from centralized servers and to help to connect to each other regardless of which software, network, website, is person using. We are free to communicate without borders, without corporate powers and limits set by abusive large companies such as Facebook and others.\", \"author_fullname\": \"t2_u86pa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Lisp: Send Status to your GNU Social instance via XMPP or Jabber protocol\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cn7vxw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565223534.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EEmacs Lisp: Send Status to your GNU Social instance via XMPP or Jabber protocol\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EURL: \\u003Ca href=\\\"https://gnu.support/gnu-emacs/emacs-lisp/Emacs-Lisp-Send-Status-to-your-GNU-Social-instance-via-XMPP-or-Jabber-protocol.html\\\"\\u003Ehttps://gnu.support/gnu-emacs/emacs-lisp/Emacs-Lisp-Send-Status-to-your-GNU-Social-instance-via-XMPP-or-Jabber-protocol.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is simple customization that helps the user to send status to GNU Social instance by using XMPP protocol. It means you could get notices over messenger from GNU Social and you could send notices over any XMPP or Jabber messenger to GNU Social instance. You are getting connected wherever you are. XMPP is much easier to use then web browser. The username \\u003Ccode\\u003Eupdate@gnusocial.club\\u003C/code\\u003E is your GNU social instance virtual friend. That is something you set up in your GNU Social profile under IM menu. Requirement is that administrator has enabled the menu and XMPP plugin for the GNU Social instance. As of now 2019-08-07 I just guess there are not so many GNU Social instances with XMPP connection. And then you need to have your own XMPP username or Jabber ID. Such need not be on GNU Social instance, it can be anywhere you wish, on any server, if you already have it, you can use your own Jabber ID to send status updates to GNU Social instance and vice versa, you can also receive messages over GNU Social instance. Change it to suit you. It is just a simplification of the \\u003Ccode\\u003Ejabber-send-message\\u003C/code\\u003E function in the Emacs Lisp package \\u003Ccode\\u003Ejabber.el\\u003C/code\\u003E. Great one! Coordinate with your team members, assign tasks directly from GNU Emacs to their messengers. Possibilities are wide to help in communication and coordination in any team. Otherwise have fun with decentralized GNU Social networks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is best if you can install you own \\u003Ca href=\\\"https://gnusocial.club\\\"\\u003EGNU Social\\u003C/a\\u003E software. The virtual private server at \\u003Ca href=\\\"https://m.do.co/c/564f4aeba6a8\\\"\\u003EDigital Ocean\\u003C/a\\u003E may cost you just US $5 to US $10 per month.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI may provide you service to install your GNU Social service for US $10 on your own \\u003Ca href=\\\"https://m.do.co/c/564f4aeba6a8\\\"\\u003EVPS\\u003C/a\\u003E or \\u003Ca href=\\\"https://m.do.co/c/564f4aeba6a8\\\"\\u003EVirtual Private Server\\u003C/a\\u003E just contact me below. Installation of Prosody chat server for your or your organization is also a service that you may need. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI will help you install your own decentralized social and chatting network.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;jabber)\\n\\n(defun jabber-gnu-social-status (message)\\n \\u0026quot;Sends statuts to GNU Social instance via XMPP connection\\u0026quot;\\n (let ((jc (jabber-find-connection \\u0026quot;louis@gnusocial.club\\u0026quot;))\\n (to \\u0026quot;update@gnusocial.club\\u0026quot;)\\n (type nil))\\n(jabber-send-message jc to nil message nil)))\\n\\n(defun gnusocial-status (message)\\n \\u0026quot;Send GNU Social status interactively\\u0026quot;\\n (interactive \\u0026quot;sStatus: \\u0026quot;)\\n (jabber-gnu-social-status message))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EDue to Facebook and large providers such as Google, Twitter, in last decades Internet lost to a great degree its decentralization capabilities. People are less and less aware that everybody can run their own decentralized servers, chat servers, websites, and have their own email addresses. GNU Social network software is made to liberalize Internet from centralized servers and to help to connect to each other regardless of which software, network, website, is person using. We are free to communicate without borders, without corporate powers and limits set by abusive large companies such as Facebook and others.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn7vxw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"rcdwealth\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cn7vxw/emacs_lisp_send_status_to_your_gnu_social/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cn7vxw/emacs_lisp_send_status_to_your_gnu_social/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565194734.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I assume this is to do with hydra poping up a buffer and causing some kind of redraw, its a bit annoying everything works still just the line is repeated multiple times when ever the hydra is popped up.\\n\\nyou can see in the line with =In \\\\[5\\\\]:= the result of the hydra poping up repeating that line in the comint buffer.\\n\\n\\u0026#x200B;\\n\\n[Hydra example](https://i.redd.it/wign6crkp1f31.gif)\\n\\nAny idea on what is actually happening here ?\\n\\n\\u0026#x200B;\\n\\nif the uploaded image does not work see this link [https://pasteboard.co/IrBUtvt.gif](https://pasteboard.co/IrBUtvt.gif)\", \"author_fullname\": \"t2_lyfoaxy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"After some help with a wierd hydra comint buffer interactions.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"wign6crkp1f31\": {\"status\": \"valid\", \"e\": \"AnimatedImage\", \"s\": {\"y\": 1144, \"gif\": \"https://i.redd.it/wign6crkp1f31.gif\", \"mp4\": \"https://external-preview.redd.it/wign6crkp1f31.gif?format=mp4\\u0026s=9e97c322dc5147077ccb8f74b9d7516c1eef43fb\", \"x\": 1920}, \"m\": \"image/gif\", \"id\": \"wign6crkp1f31\"}}, \"name\": \"t3_cn7akd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565193841.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565220791.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI assume this is to do with hydra poping up a buffer and causing some kind of redraw, its a bit annoying everything works still just the line is repeated multiple times when ever the hydra is popped up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eyou can see in the line with =In [5]:= the result of the hydra poping up repeating that line in the comint buffer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/wign6crkp1f31.gif\\\"\\u003EHydra example\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny idea on what is actually happening here ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eif the uploaded image does not work see this link \\u003Ca href=\\\"https://pasteboard.co/IrBUtvt.gif\\\"\\u003Ehttps://pasteboard.co/IrBUtvt.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn7akd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"olymk2\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cn7akd/after_some_help_with_a_wierd_hydra_comint_buffer/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cn7akd/after_some_help_with_a_wierd_hydra_comint_buffer/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565191991.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have the following key bindings in org-edit-src mode.\\n\\n (general-evil-define-key\\n 'normal org-src-mode-map\\n :prefix \\\"SPC\\\"\\n \\\"ce\\\" 'org-edit-src-exit\\n \\\"cc\\\" 'org-edit-src-abort\\n )\\n\\nThe problem is that if I go into org-edit-src and don't do anything, the key bindings don't work. I have to make a change for the key bindings to work. If I press `C-h k SPC c e` for example, before making a change, nothing happens, it expects more characters, as if nothing was bound to `SPC c e`.\\n\\nDoes anybody know what's going on?\", \"author_fullname\": \"t2_bqrmd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Problem with org-edit-src: key bindings don't work until I make an edit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cn6pl6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565217990.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have the following key bindings in org-edit-src mode.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(general-evil-define-key\\n \\u0026#39;normal org-src-mode-map\\n :prefix \\u0026quot;SPC\\u0026quot;\\n \\u0026quot;ce\\u0026quot; \\u0026#39;org-edit-src-exit\\n \\u0026quot;cc\\u0026quot; \\u0026#39;org-edit-src-abort\\n )\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe problem is that if I go into org-edit-src and don\\u0026#39;t do anything, the key bindings don\\u0026#39;t work. I have to make a change for the key bindings to work. If I press \\u003Ccode\\u003EC-h k SPC c e\\u003C/code\\u003E for example, before making a change, nothing happens, it expects more characters, as if nothing was bound to \\u003Ccode\\u003ESPC c e\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anybody know what\\u0026#39;s going on?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn6pl6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tufflax\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cn6pl6/problem_with_orgeditsrc_key_bindings_dont_work/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cn6pl6/problem_with_orgeditsrc_key_bindings_dont_work/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565189190.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Ive been trying to restore undo history with Undo-tree, but without luck. \\nThis is current configuration:\\n\\n (defconst emacs-cache-directory\\n (expand-file-name (expand-file-name (concat user-emacs-directory \\\".cache/\\\"))))\\n\\n (use-package undo-tree\\n :diminish undo-tree-mode\\n :defer 2\\n :config\\n (progn\\n (global-undo-tree-mode t)\\n (setq undo-tree-visualizer-timestamps t)\\n (setq undo-tree-visualizer-diff t)\\n (setq undo-tree-auto-save-history t)\\n (setq undo-tree-history-directory-alist\\n `((\\\".*\\\" . ,(concat emacs-cache-directory \\\"undo\\\"))))))\\n\\nWhen opening a previous used file, undo-tree gives me the following error:\\n\\n Error reading undo-tree history from \\\"/Users/sysreboot/.emacs.d/.cache/undo/.!Users!sysreboot!workspace!ckl!weebble_backend!src!service!models.py.~undo-tree~\\\"\\n\\nAny idea why this happens and how can I solve it?\\n\\nUpdate: Enabling toggle-debug-on-error does not popup any errors. The previous error is what I get in *messages*\", \"author_fullname\": \"t2_34upsrew\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Undo-tree: Reading saved history error\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cn5rdy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565213116.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIve been trying to restore undo history with Undo-tree, but without luck. \\nThis is current configuration:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defconst emacs-cache-directory\\n (expand-file-name (expand-file-name (concat user-emacs-directory \\u0026quot;.cache/\\u0026quot;))))\\n\\n(use-package undo-tree\\n :diminish undo-tree-mode\\n :defer 2\\n :config\\n (progn\\n (global-undo-tree-mode t)\\n (setq undo-tree-visualizer-timestamps t)\\n (setq undo-tree-visualizer-diff t)\\n (setq undo-tree-auto-save-history t)\\n (setq undo-tree-history-directory-alist\\n `((\\u0026quot;.*\\u0026quot; . ,(concat emacs-cache-directory \\u0026quot;undo\\u0026quot;))))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen opening a previous used file, undo-tree gives me the following error:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EError reading undo-tree history from \\u0026quot;/Users/sysreboot/.emacs.d/.cache/undo/.!Users!sysreboot!workspace!ckl!weebble_backend!src!service!models.py.~undo-tree~\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAny idea why this happens and how can I solve it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUpdate: Enabling toggle-debug-on-error does not popup any errors. The previous error is what I get in \\u003Cem\\u003Emessages\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn5rdy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sys_reboot\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cn5rdy/undotree_reading_saved_history_error/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cn5rdy/undotree_reading_saved_history_error/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565184316.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_10cocd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Pandoc support for DocView: editing Markdown with preview\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cn57jp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 67, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/ndvsxpbqt0f31/DASH_720?source=fallback\", \"height\": 720, \"width\": 706, \"scrubber_media_url\": \"https://v.redd.it/ndvsxpbqt0f31/DASH_96\", \"dash_url\": \"https://v.redd.it/ndvsxpbqt0f31/DASHPlaylist.mpd\", \"duration\": 36, \"hls_url\": \"https://v.redd.it/ndvsxpbqt0f31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 67, \"approved_by\": null, \"thumbnail\": \"\", \"author_cakeday\": true, \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565210063.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn57jp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"flyin1501\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cn57jp/pandoc_support_for_docview_editing_markdown_with/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://v.redd.it/ndvsxpbqt0f31\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565181263.0, \"discussion_type\": null, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/ndvsxpbqt0f31/DASH_720?source=fallback\", \"height\": 720, \"width\": 706, \"scrubber_media_url\": \"https://v.redd.it/ndvsxpbqt0f31/DASH_96\", \"dash_url\": \"https://v.redd.it/ndvsxpbqt0f31/DASHPlaylist.mpd\", \"duration\": 36, \"hls_url\": \"https://v.redd.it/ndvsxpbqt0f31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi,\\n\\nI have a problem in Emacs that has been bugging me for a year, and I've got fed up with it enough that I'm asking for help here. :-)\\n\\nSo, when I'm at work and behind a proxy, i can do some things but not others. For example, I can update my packages, but I cannot open a website with `eww`.\\n\\nHere are the things I've set:\\n\\n- The `http_proxy` and `https_proxy` variables and their upper-case counterparts are set to my corporate proxy\\n- The `url-proxy-services` variable is set to `((http . \\\"my-proxy\\\") (https . \\\"my-proxy\\\"))`.\\n\\nHere is the contents of the `*url-debug*` buffer when I try to open `https://www.google.com/` with `eww`:\\n\\n```\\nhttp -\\u003E Contacting host: www.google.com:443\\nhttp -\\u003E Marking connection as busy: www.google.com:443 #\\u003Cprocess www.google.com\\u003E\\nhttp -\\u003E getting referer from buffer: buffer:#\\u003Cbuffer *eww*\\u003E target-url:#s(url \\\"https\\\" nil nil \\\"www.google.com\\\" nil \\\"/\\\" nil nil t nil t t) lastloc:nil\\nhttp -\\u003E Calling after change function `url-https-proxy-after-change-function' for `#\\u003Cprocess www.google.com\\u003E'\\nhttp -\\u003E url-http-parse-response called in ( *http www.google.com:443*)\\nhttp -\\u003E Request is: \\nGET / HTTP/1.1\\nMIME-Version: 1.0\\nConnection: keep-alive\\nExtension: Security/Digest Security/SSL\\nHost: www.google.com\\nAccept-encoding: gzip\\nAccept: */*\\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3724.8 Safari/537.36\\n\\n\\nhttp -\\u003E url-http-end-of-document-sentinel in buffer ( *http www.google.com:443*)\\nhttp -\\u003E Marking connection as free: www.google.com:443 #\\u003Cprocess www.google.com\\u003E\\nhttp -\\u003E Activating callback in buffer ( *http www.google.com:443*): eww-render (nil \\\"https://www.google.com/\\\" nil #\\u003Cbuffer *eww*\\u003E)\\n```\\n\\nWhen I do a normal `curl` from the command line in a `shell` buffer, it works, whether or not I have the `http_proxy` and `https_proxy` variables set.\\n\\nHow can I debug this annoying issue further?\", \"author_fullname\": \"t2_e1kng\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I debug a proxy issue in Emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cn45vd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565203226.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a problem in Emacs that has been bugging me for a year, and I\\u0026#39;ve got fed up with it enough that I\\u0026#39;m asking for help here. :-)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, when I\\u0026#39;m at work and behind a proxy, i can do some things but not others. For example, I can update my packages, but I cannot open a website with \\u003Ccode\\u003Eeww\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are the things I\\u0026#39;ve set:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EThe \\u003Ccode\\u003Ehttp_proxy\\u003C/code\\u003E and \\u003Ccode\\u003Ehttps_proxy\\u003C/code\\u003E variables and their upper-case counterparts are set to my corporate proxy\\u003C/li\\u003E\\n\\u003Cli\\u003EThe \\u003Ccode\\u003Eurl-proxy-services\\u003C/code\\u003E variable is set to \\u003Ccode\\u003E((http . \\u0026quot;my-proxy\\u0026quot;) (https . \\u0026quot;my-proxy\\u0026quot;))\\u003C/code\\u003E.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EHere is the contents of the \\u003Ccode\\u003E*url-debug*\\u003C/code\\u003E buffer when I try to open \\u003Ccode\\u003Ehttps://www.google.com/\\u003C/code\\u003E with \\u003Ccode\\u003Eeww\\u003C/code\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E``\\u003Ccode\\u003E\\nhttp -\\u0026gt; Contacting host: www.google.com:443\\nhttp -\\u0026gt; Marking connection as busy: www.google.com:443 #\\u0026lt;process www.google.com\\u0026gt;\\nhttp -\\u0026gt; getting referer from buffer: buffer:#\\u0026lt;buffer *eww*\\u0026gt; target-url:#s(url \\u0026quot;https\\u0026quot; nil nil \\u0026quot;www.google.com\\u0026quot; nil \\u0026quot;/\\u0026quot; nil nil t nil t t) lastloc:nil\\nhttp -\\u0026gt; Calling after change function\\u003C/code\\u003Eurl-https-proxy-after-change-function\\u0026#39; for `#\\u0026lt;process www.google.com\\u0026gt;\\u0026#39;\\nhttp -\\u0026gt; url-http-parse-response called in ( \\u003Cem\\u003Ehttp \\u003Ca href=\\\"http://www.google.com:443\\\"\\u003Ewww.google.com:443\\u003C/a\\u003E\\u003C/em\\u003E)\\nhttp -\\u0026gt; Request is: \\nGET / HTTP/1.1\\nMIME-Version: 1.0\\nConnection: keep-alive\\nExtension: Security/Digest Security/SSL\\nHost: \\u003Ca href=\\\"http://www.google.com\\\"\\u003Ewww.google.com\\u003C/a\\u003E\\nAccept-encoding: gzip\\nAccept: \\u003Cem\\u003E/\\u003C/em\\u003E\\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3724.8 Safari/537.36\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ehttp -\\u0026gt; url-http-end-of-document-sentinel in buffer ( \\u003Cem\\u003Ehttp \\u003Ca href=\\\"http://www.google.com:443\\\"\\u003Ewww.google.com:443\\u003C/a\\u003E\\u003C/em\\u003E)\\nhttp -\\u0026gt; Marking connection as free: \\u003Ca href=\\\"http://www.google.com:443\\\"\\u003Ewww.google.com:443\\u003C/a\\u003E #\\u0026lt;process www.google.com\\u0026gt;\\nhttp -\\u0026gt; Activating callback in buffer ( \\u003Cem\\u003Ehttp \\u003Ca href=\\\"http://www.google.com:443\\\"\\u003Ewww.google.com:443\\u003C/a\\u003E\\u003C/em\\u003E): eww-render (nil \\u0026quot;\\u003Ca href=\\\"https://www.google.com/\\\"\\u003Ehttps://www.google.com/\\u003C/a\\u003E\\u0026quot; nil #\\u0026lt;buffer *eww*\\u0026gt;)\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I do a normal \\u003Ccode\\u003Ecurl\\u003C/code\\u003E from the command line in a \\u003Ccode\\u003Eshell\\u003C/code\\u003E buffer, it works, whether or not I have the \\u003Ccode\\u003Ehttp_proxy\\u003C/code\\u003E and \\u003Ccode\\u003Ehttps_proxy\\u003C/code\\u003E variables set.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I debug this annoying issue further?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn45vd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"parham90\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cn45vd/how_can_i_debug_a_proxy_issue_in_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cn45vd/how_can_i_debug_a_proxy_issue_in_emacs/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565174426.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_583ld\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Pairing on simple todos and literate programming in org-mode with a vscode user\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cn3fyk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/JtmXKqNOvAc?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Learning emacs (part 2) \\u2013 \\\"Org mode is like plaintext on steroids\\\"\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/JtmXKqNOvAc?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"stefan judis\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/JtmXKqNOvAc/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/stefanjudis\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/JtmXKqNOvAc?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cn3fyk\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565197963.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn3fyk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"uglyBaby\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cn3fyk/pairing_on_simple_todos_and_literate_programming/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/JtmXKqNOvAc\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565169163.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Learning emacs (part 2) \\u2013 \\\"Org mode is like plaintext on steroids\\\"\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/JtmXKqNOvAc?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"stefan judis\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/JtmXKqNOvAc/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/stefanjudis\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_6slii\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a major-mode for Steam \\\"vdf\\\" files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cn3drs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565197480.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn3drs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pimiddy\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cn3drs/is_there_a_majormode_for_steam_vdf_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cn3drs/is_there_a_majormode_for_steam_vdf_files/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565168680.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_1zgvtvsa\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"A stupid completion definer - Is it even worth putting on MELPA?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cn25sj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 38, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 38, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565187883.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"gitlab.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn25sj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jjzmajic\", \"num_crossposts\": 0, \"num_comments\": 23, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cn25sj/a_stupid_completion_definer_is_it_even_worth/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://gitlab.com/jjzmajic/compdef/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565159083.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"How can I set up elisp autocompletion ? I have slime installed and it works fine with sbcl. Also installed company and it doesn't work\", \"author_fullname\": \"t2_3fz7z9wp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Elisp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cn0dlc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565176145.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can I set up elisp autocompletion ? I have slime installed and it works fine with sbcl. Also installed company and it doesn\\u0026#39;t work\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn0dlc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Viko9604\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cn0dlc/elisp/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cn0dlc/elisp/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565147345.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_wp20q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Running Mythic in Emacs' orgmode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmzimt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"mythic_gme\", \"selftext\": \"Preface: I am very new to Mythic and the whole solo-RPG'ing.\\n\\nI have written some Emacs Lisp code to integrate Mythic (specifically Variations II + Creature crafter) in Emacs+orgmode.\\n\\nThe code still needs some minor tweaking, but I would love some feedback. Any Emacs users in this sub who could help me test the code and provide feedback and criticism?\\n\\nLet me know if anyone's interested and I'll share the code :D\\n\\nEDIT: Here comes the code. I have added a short documentation at the beginning of the file, although most functions' names should be self-explanatory. Bear in mind this is the first semi-serious thing I write in Emacs Lisp, so probably it's not going to be the best Elisp you've seen. Feedback/bugs reports very welcome :D\\n\\n\\u0026#x200B;\\n\\n ;; mythic.el\\n ;;\\n ;; A set of functions to aid in running solo RPG sessions/campaigns on\\n ;; top of Emacs' orgmode.\\n ;;\\n ;; It uses the rules from Variations II.\\n ;;\\n ;; A quick primer on how to use it:\\n ;;\\n ;; 1) start a new session with `M-x mythic-init`. It will ask if you\\n ;; want to load from a file.\\n ;;\\n ;; 2) Play the session (more on this later)\\n ;;\\n ;; 3) `mythic-quit` will kill all temporary buffers, as well as ask to\\n ;; save the current session to a file.\\n ;;\\n ;; You have the following interactive functions at your disposal:\\n ;;\\n ;; - mythic-init : initializes a new session\\n ;;\\n ;; - mythic quit : quits the current session\\n ;;\\n ;; - mythic-check-disposition : check what modifier an NPC's\\n ;; disposition gives (useful when\\n ;; altering the disposition)\\n ;;\\n ;; - mythic-creature-ability : generates a special ability for a\\n ;; creature\\n ;;\\n ;; - mythic-creature-crafter : crafts a new, random creature\\n ;;\\n ;; - mythic-detail-check : asnwer a complex question\\n ;; \\n ;; - mythic-event : generate a new random event\\n ;;\\n ;; - mythic-fate-check : asnwer a yes/no question\\n ;;\\n ;; - mythic-meaning-check : further details a complex question's\\n ;; answer\\n ;;\\n ;; - mythic-new-npc : generate a new NPC (adds it to the NPC temp\\n ;; buffer)\\n ;;\\n ;; - mythic-new-scene : generate a new scene (adds it to the Scenes\\n ;; temp buffer)\\n ;;\\n ;; - mythic-npc-action : makes an NPC do something\\n ;; \\n ;; - mythic-npc-action-2 : further actions for NPCs (usually not\\n ;; needed to call manually)\\n ;;\\n ;; - mythic-npc-disposition : generates an NPC's disposition randomly\\n ;;\\n ;; - mythic-statistic-check : generates a new statistic level\\n ;;\\n \\n (require 'seq)\\n (require 'subr-x)\\n \\n (defvar mythic-buffer-names '(\\\"Threads\\\"\\n \\t\\t\\t \\\"NPCs\\\"\\n \\t\\t\\t \\\"Player\\\"\\n \\t\\t\\t \\\"Scenes\\\")\\n \\\"Defines which buffers are to be created as temp-buffers.\\\")\\n \\n (defvar mythic-active-session\\n nil\\n \\\"The mythic's active session name.\\n Only one session at a time can be active\\\")\\n \\n (defun mythic-get-buffers-names (\\u0026optional session-name filter)\\n \\\"Returns a list of temp-buffers' name using SESSION-NAME.\\n If SESSION-NAME is nil and mythic-active-session is not nil, use\\n that as SESSION-NAME. If both are nil, show a message and return\\n nil.\\\"\\n (if (and (not session-name) (not mythic-active-session))\\n (progn (message \\\"No session name specified, nor mythic-active-session set!\\\")\\n \\t nil)\\n (progn\\n (when (and (not session-name) mythic-active-session)\\n \\t(setq session-name mythic-active-session))\\n (let (result)\\n \\t(dolist (buffer mythic-buffer-names result)\\n \\t (setq result (cons (format \\\"*%s-%s*\\\" session-name buffer)\\n \\t\\t\\t result)))\\n \\t(if (not filter)\\n \\t result\\n \\t (nth 0 (seq-filter (lambda (x)\\n \\t\\t\\t (string-match-p filter x))\\n \\t\\t\\t result)))))))\\n \\n (defun mythic-buffers-exist-p (\\u0026optional session-name)\\n \\\"Checks if any tempbuffer exists for the given SESSION-NAME, or\\n mythic-active-session if no SESSION-NAME is given.\\\"\\n (let (result\\n \\t(buffers (mapcar 'buffer-name (buffer-list))))\\n (dolist (buffer\\n \\t (mythic-get-buffers-names session-name)\\n \\t result)\\n (when (member buffer buffers)\\n \\t(setq result t)))))\\n \\n (defun mythic-init (session-name)\\n \\\"Starts a new mythic session.\\\"\\n (interactive \\\"sSession name: \\\")\\n (when (string= \\\"\\\" session-name)\\n (setq session-name \\\"default-mythic-session\\\"))\\n (cond (mythic-active-session\\n \\t (progn (message \\\"A session is already active!\\\")\\n \\t\\tnil))\\n \\t((mythic-buffers-exist-p session-name)\\n \\t (progn (message \\\"Buffers already present!\\\")\\n \\t\\tnil))\\n \\t(t (progn\\n \\t (setq mythic-active-session session-name)\\n \\t (delete-other-windows)\\n \\t (split-window-horizontally)\\n \\t (other-window 1)\\n \\t (split-window-vertically)\\n \\t (other-window 1)\\n \\t (split-window-vertically)\\n \\t (other-window 1)\\n \\t (balance-windows)\\n \\t (other-window 1)\\n \\t (dolist (buffer (mythic-get-buffers-names))\\n \\t (generate-new-buffer buffer)\\n \\t (switch-to-buffer buffer)\\n \\t (org-mode)\\n \\t (org-insert-heading)\\n \\t (insert buffer)\\n \\t (other-window 1))\\n \\t (save-excursion\\n \\t (set-buffer (mythic-get-buffers-names nil \\\"Scenes\\\"))\\n \\t (org-entry-put (point) \\\"chaos_ALL\\\" \\\"3 4 5 6\\\")\\n \\t (org-entry-put (point) \\\"chaos\\\" \\\"4\\\"))\\n \\t (when (y-or-n-p \\\"Load from a file? \\\")\\n \\t (with-temp-buffer\\n \\t\\t (insert-file-contents (read-file-name \\\"Which file to load? \\\"))\\n \\t\\t (dolist (section mythic-buffer-names)\\n \\t\\t (goto-char (point-min))\\n \\t\\t (search-forward-regexp (format \\\"^\\\\\\\\*+.*%s\\\" section))\\n \\t\\t (org-mark-subtree)\\n \\t\\t (setq content (buffer-substring (point) (mark)))\\n \\t\\t (save-excursion\\n \\t\\t (set-buffer (mythic-get-buffers-names nil section))\\n \\t\\t (set-mark (point-min))\\n \\t\\t (goto-char (point-max))\\n \\t\\t (delete-region (point) (mark))\\n \\t\\t (insert content)))))))))\\n \\n (defun mythic-quit ()\\n \\\"Quits an active mythic session.\\\"\\n (interactive)\\n (let* ((buffers (mapcar 'buffer-name (buffer-list)))\\n \\t (save-p (y-or-n-p \\\"Save to file? \\\"))\\n \\t (save-path (if save-p (read-file-name \\\"Where to save? \\\")\\n \\t\\t nil))\\n \\tsave-strings)\\n (dolist (buffer (mythic-get-buffers-names))\\n (when (member buffer buffers)\\n \\t(when save-p\\n \\t (save-excursion\\n \\t (set-buffer buffer)\\n \\t (setq save-strings (cons (buffer-string) save-strings))))\\n \\t(kill-buffer buffer)))\\n (setq mythic-active-session nil)\\n (delete-other-windows)\\n (when save-p\\n (setq save-strings (string-join save-strings \\\"\\\\n\\\"))\\n (with-temp-buffer\\n \\t(insert save-strings)\\n \\t(write-region (point-min) (point-max) save-path)))))\\n \\n (defun mythic-get-chaos ()\\n \\\"Returns the chaos factor of the current (latest) scene as a\\n number.\\\"\\n (when mythic-active-session\\n (save-excursion\\n (set-buffer (mythic-get-buffers-names nil \\\"Scenes\\\"))\\n (goto-char (point-max))\\n (string-to-number (org-entry-get (point) \\\"chaos\\\" t)))))\\n \\n (defun mythic-new-scene ()\\n \\\"Initializes a new scene.\\\"\\n (interactive)\\n (save-excursion\\n (set-buffer (mythic-get-buffers-names nil \\\"Scenes\\\"))\\n (goto-char (point-max))\\n (unless (zerop (current-column))\\n (insert \\\"\\\\n\\\"))\\n (insert (format \\\"** %s\\\\n\\\" (read-string \\\"Scene title: \\\")))\\n (org-entry-put (point) \\\"chaos\\\"\\n \\t\\t (ido-completing-read \\\"Chaos factor: \\\"\\n \\t\\t\\t\\t\\t'(\\\"3\\\" \\\"4\\\" \\\"5\\\" \\\"6\\\")\\n \\t\\t\\t\\t\\tnil t))\\n (org-cycle)\\n (let ((check-roll (mythic-roll-dice 10)))\\n (when (and (\\u003C= check-roll (mythic-get-chaos))\\n \\t\\t (mythic-evenp check-roll))\\n \\t(insert \\\"SCENE INTERRUPT\\\\n\\\")\\n \\t(org-cycle)\\n \\t(insert (mythic-event-check))))))\\n \\n (defun mythic-event ()\\n (interactive)\\n (insert (format \\\"%s\\\\n\\\" (mythic-event-check))))\\n \\n (defun mythic-event-check ()\\n (let* ((roll (mythic-roll-dice 100))\\n \\t (result (format \\\"Event: %s.\\\"\\n \\t\\t\\t (cond\\n \\t\\t\\t ((and (\\u003E= roll 1)\\n \\t\\t\\t\\t(\\u003C= roll 7)) \\\"Remote Event\\\")\\n \\t\\t\\t ((and (\\u003E= roll 8)\\n \\t\\t\\t\\t(\\u003C= roll 28)) (format \\\"NPC action: %s\\\"\\n \\t\\t\\t\\t\\t\\t (mythic-get-npc)))\\n \\t\\t\\t ((and (\\u003E= roll 29)\\n \\t\\t\\t\\t(\\u003C= roll 35)) \\\"Introduce a new NPC\\\")\\n \\t\\t\\t ((and (\\u003E= roll 36)\\n \\t\\t\\t\\t(\\u003C= roll 45)) (format \\\"Move towards a thread: %s\\\"\\n \\t\\t\\t\\t\\t\\t (mythic-get-thread)))\\n \\t\\t\\t ((and (\\u003E= roll 46)\\n \\t\\t\\t\\t(\\u003C= roll 52)) (format \\\"Move away from a thread: %s\\\"\\n \\t\\t\\t\\t\\t\\t (mythic-get-thread)))\\n \\t\\t\\t ((and (\\u003E= roll 53)\\n \\t\\t\\t\\t(\\u003C= roll 55)) (format \\\"Close a thread: %s\\\"\\n \\t\\t\\t\\t\\t\\t (mythic-get-thread)))\\n \\t\\t\\t ((and (\\u003E= roll 56)\\n \\t\\t\\t\\t(\\u003C= roll 67)) \\\"PC negative\\\")\\n \\t\\t\\t ((and (\\u003E= roll 68)\\n \\t\\t\\t\\t(\\u003C= roll 75)) \\\"PC positive\\\")\\n \\t\\t\\t ((and (\\u003E= roll 76)\\n \\t\\t\\t\\t(\\u003C= roll 83)) \\\"Ambiguous event\\\")\\n \\t\\t\\t ((and (\\u003E= roll 84)\\n \\t\\t\\t\\t(\\u003C= roll 92)) (format \\\"NPC negative: %s\\\"\\n \\t\\t\\t\\t\\t\\t (mythic-get-npc)))\\n \\t\\t\\t ((and (\\u003E= roll 93)\\n \\t\\t\\t\\t(\\u003C= roll 100)) (format \\\"NPC positive: %s\\\"\\n \\t\\t\\t\\t\\t\\t (mythic-get-npc)))))))\\n result))\\n \\n (defun mythic-get-thread ()\\n \\\"Returns a random thread from the session.\\\"\\n (save-excursion\\n (set-buffer (mythic-get-buffers-names nil \\\"Threads\\\"))\\n (goto-char (point-min))\\n (let (threads\\n \\t (match (search-forward-regexp \\\"^\\\\\\\\*\\\\\\\\* \\\" nil t)))\\n (while match\\n \\t(set-mark (point))\\n \\t(end-of-line)\\n \\t(setq threads (cons (buffer-substring-no-properties\\n \\t\\t\\t (point) (mark))\\n \\t\\t\\t threads))\\n \\t(setq match (search-forward-regexp \\\"^\\\\\\\\*\\\\\\\\* \\\" nil t)))\\n (if (= (length threads) 0)\\n \\t \\\"No threads found!\\\"\\n \\t(nth (random (length threads)) threads)))))\\n \\n (defun mythic-get-npc ()\\n \\\"Returns a random NPC from the session.\\\"\\n (save-excursion\\n (set-buffer (mythic-get-buffers-names nil \\\"NPCs\\\"))\\n (goto-char (point-min))\\n (let (npcs\\n \\t (match (search-forward-regexp \\\"^\\\\\\\\*\\\\\\\\* \\\" nil t)))\\n (while match\\n \\t(set-mark (point))\\n \\t(end-of-line)\\n \\t(setq npcs (cons (buffer-substring-no-properties\\n \\t\\t\\t (point) (mark))\\n \\t\\t\\t npcs))\\n \\t(setq match (search-forward-regexp \\\"^\\\\\\\\*\\\\\\\\* \\\" nil t)))\\n (if (= (length npcs) 0)\\n \\t \\\"No NPCs found!\\\"\\n \\t(nth (random (length npcs)) npcs)))))\\n \\n (defun mythic-fate-check ()\\n (interactive)\\n (let ((modifier (string-to-number\\n \\t\\t (ido-completing-read \\\"Modifier: \\\"\\n \\t\\t\\t\\t\\t'(\\\"-8\\\" \\\"-6\\\" \\\"-4\\\" \\\"-2\\\" \\\"0\\\"\\n \\t\\t\\t\\t\\t \\\"2\\\" \\\"4\\\" \\\"6\\\" \\\"8\\\"))))\\n \\t(chaos (mythic-get-chaos))\\n \\t(r1 (mythic-roll-dice 10))\\n \\t(r2 (mythic-roll-dice 10))\\n \\t(r3 (mythic-roll-dice 10))\\n \\tsuccess exceptional random-event)\\n ;; TODO : the chaos factor modifier for chaos factors 3 and 6 is\\n ;; ignored in this version, but may be introduced in a future\\n ;; one. This is mostly due to the extra step of deciding which\\n ;; direction it is favourable and which unfavourable.\\n (setq success (\\u003E= (+ r1 r2 modifier) 11))\\n (when (\\u003C= r3 chaos)\\n (cond ((= r1 r2)\\n \\t (progn\\n \\t (setq exceptional t)\\n \\t (setq random-event t)))\\n \\t ((and (mythic-evenp r1)\\n \\t\\t (mythic-evenp r2))\\n \\t (setq random-event t))\\n \\t ((and (mythic-oddp r1)\\n \\t\\t (mythic-oddp r2))\\n \\t (setq exceptional t))))\\n (org-cycle)\\n (insert \\\"Fate: \\\")\\n (insert (format \\\"%s%s \\\"\\n \\t\\t (if exceptional\\n \\t\\t\\t\\\"Exceptional \\\"\\n \\t\\t \\\"\\\")\\n \\t\\t (if success\\n \\t\\t\\t\\\"Yes\\\"\\n \\t\\t \\\"No\\\")))\\n (when random-event\\n (insert \\\"\\\\n\\\")\\n (org-cycle)\\n (insert (mythic-event-check)))))\\n \\n (defun mythic-detail-check ()\\n \\\"\\\"\\n (interactive)\\n (let* ((chaos (mythic-get-chaos))\\n \\t (roll (+ (mythic-roll-dice 10)\\n \\t\\t (mythic-roll-dice 10)\\n \\t\\t (mythic-roll-dice 10)\\n \\t\\t (cond\\n \\t\\t ((= chaos 3)\\n \\t\\t 2)\\n \\t\\t ((= chaos 6)\\n \\t\\t -2)\\n \\t\\t (t 0))))\\n \\t (result (cond\\n \\t\\t ((\\u003C= roll 4)\\n \\t\\t \\\"anger\\\")\\n \\t\\t ((= roll 5)\\n \\t\\t \\\"sadness\\\")\\n \\t\\t ((= roll 6)\\n \\t\\t \\\"fear\\\")\\n \\t\\t ((= roll 7)\\n \\t\\t (format \\\"disavours thread: %s\\\"\\n \\t\\t\\t (mythic-get-thread)))\\n \\t\\t ((= roll 8)\\n \\t\\t \\\"disfavours pc\\\")\\n \\t\\t ((= roll 9)\\n \\t\\t (format\\n \\t\\t \\\"focus npc: %s\\\" (mythic-get-npc)))\\n \\t\\t ((= roll 10)\\n \\t\\t (format\\n \\t\\t \\\"favours npc: %s\\\" (mythic-get-npc)))\\n \\t\\t ((= roll 11)\\n \\t\\t \\\"focus pc\\\")\\n \\t\\t ((= roll 12)\\n \\t\\t (format\\n \\t\\t \\\"disfavours npc: %s\\\" (mythic-get-npc)))\\n \\t\\t ((= roll 13)\\n \\t\\t (format \\\"focus thread: %s\\\"\\n \\t\\t\\t (mythic-get-thread)))\\n \\t\\t ((= roll 14)\\n \\t\\t \\\"favours pc\\\")\\n \\t\\t ((= roll 15)\\n \\t\\t (format \\\"favours thread: %s\\\"\\n \\t\\t\\t (mythic-get-thread)))\\n \\t\\t ((= roll 16)\\n \\t\\t \\\"courage\\\")\\n \\t\\t ((= roll 17)\\n \\t\\t \\\"happiness\\\")\\n \\t\\t ((\\u003E= roll 18)\\n \\t\\t \\\"calm\\\"))))\\n (org-cycle)\\n (insert (format \\\"Detail: %s\\\" result))))\\n \\n (setq mythic-descriptors-1 '(abnormally adventurously\\n aggressivley angirly anxiously awkwardly beautifully\\n bleakly boldly bravely busily calmly carefully carelessly\\n cautiously ceaselessly cheefrully combatively coolly\\n crazily curiously daintly dangerously defiantly deliberatly\\n delightfully dimly efficiently energetically enormously\\n enthusiastically excitedly fearfully ferociously fiercely\\n foolishly fortunately frantically freely frighteningly\\n fully generously gently gladly gracefully gratefully\\n happily hastily healthily helpfully helplessly hopelessly\\n innocently intensely interestingly irritatingly jovially\\n joyfully judgementally kindly kookily lazily lightly\\n loosely loudly lovingly loyally majestically meaningfully\\n mechanically miserably mockingly misteriously naturally\\n neatly nicely oddly offensively officially partially\\n peacefully perfectly playfully politely positively\\n powerfully quaintly quarrelsomely quietly roughly rudely\\n ruthlessly slowly softly swiftly threateningly very\\n violently wildly yieldingly))\\n \\n (setq mythic-descriptors-2 '(abandoned abnormal amusing ancient\\n aromatic average beautiful bizzarre classy clean cold\\n colorful creepy cute damaged dark defeated delicate\\n delightful dirty disagreeable disgusting drab dry dull\\n empty enormous exotic faded familiar fancy fat feeble\\n feminine festive flawless fresh full glorious good graceful\\n hard harsh healthy heavy historical horrible important\\n interesting juvenile lacking lame large lavish lean less\\n lethal lonely lovely macabre magnificent masculine mature\\n messy mighty military modern extravagant mundane misterious\\n natural nondescript odd pale petite poor powerful quaint\\n rare reassuring remarkable rotten rough ruined rustic scary\\n simple small smelly smooth soft strong tranquil ugly\\n valuable warlike warm watery weak young))\\n \\n (setq mythic-actions-1 '(attainment starting neglect fight\\n recruit triumph violate oppose malice communicate persecute\\n increase decrease abandon gratify inquire antagonize move\\n waste truce release befriend judge desert dominate\\n procrastinate praise dseparate take break heal delay stop\\n lie return imitate struggle inform bestow postpone expose\\n haggle imprison release celebrate develop travel block harm\\n debase overindulge adjourn adversity kill distrupt usurp\\n create betray agree abuse oppress inspect ambush spy attach\\n carry open carelessness ruin extravagance trick arrive\\n propose divide refuse mistrust deceive cruelty intolerance\\n trust excitement activity assist care negligence passion\\n work control attract failure pursue vengeance proceedings\\n dispute punish guide transform overthrow oppress change))\\n \\n (setq mythic-actions-2 '(goals dreams environment outside inside\\n reality allies enemies evil good emotions opposition war\\n peace innocent love spirit intellect ideas joy messages\\n energy balance tension friendship physical project\\n pleasures pain possessions benefits plans lies expectations\\n legal bureaucracy business path news exterior advice plot\\n competition prison illness food attention success failure\\n travel jealousy dispute home investment suffering wishes\\n tactics stalemate randomness misfortune death disruption\\n power burden intrigues fears ambush rumor wounds\\n extravagance representative adversities opulence liberty\\n military mundane trials masses vehicle art victory dispute\\n riches normal technology hope magic illusions portals\\n danger weapons animals weather elements nature masses\\n leadership fame anger information))\\n \\n (defun mythic-meaning-check ()\\n \\\"\\\"\\n (interactive)\\n (let ((mode (ido-completing-read \\\"What kind of lookup: \\\"\\n \\t\\t\\t\\t '(\\\"Descriptors\\\" \\\"Actions\\\") nil t))\\n \\t(index1 (1- (mythic-roll-dice 100)))\\n \\t(index2 (1- (mythic-roll-dice 100)))\\n \\tresult)\\n (if (string= mode \\\"Descriptors\\\")\\n \\t(setq result (format \\\"%s %s\\\"\\n \\t\\t\\t (nth index1 mythic-descriptors-1)\\n \\t\\t\\t (nth index2 mythic-descriptors-2)))\\n (setq result (format \\\"%s %s\\\"\\n \\t\\t\\t (nth index1 mythic-actions-1)\\n \\t\\t\\t (nth index2 mythic-actions-2))))\\n (org-cycle)\\n (insert (format \\\"%s check: %s\\\" mode result))))\\n \\n (defun mythic-npc-disposition ()\\n \\\"\\\"\\n (interactive)\\n (let* ((modifier (read-number \\\"Modifier: \\\" 0))\\n \\t (roll (+ modifier (mythic-roll-dice 6)\\n \\t\\t (mythic-roll-dice 6)))\\n \\t (result (cond ((\\u003C= roll 5) \\\"passive (-2)\\\")\\n \\t\\t ((and (\\u003E= roll 6)\\n \\t\\t\\t (\\u003C= roll 10)) \\\"moderate (0)\\\")\\n \\t\\t ((and (\\u003E= roll 11)\\n \\t\\t\\t (\\u003C= roll 15)) \\\"active (+2)\\\")\\n \\t\\t ((\\u003E= roll 16) \\\"aggressive (+4)\\\"))))\\n (org-cycle)\\n (insert (format \\\"%s - %d\\\" result roll))))\\n \\n (defun mythic-check-disposition (disposition)\\n \\\"\\\"\\n (interactive \\\"nDisposition: \\\")\\n (let ((result (cond ((\\u003C= disposition 5) \\\"passive (-2)\\\")\\n \\t\\t ((and (\\u003E= disposition 6)\\n \\t\\t\\t (\\u003C= disposition 10)) \\\"moderate (0)\\\")\\n \\t\\t ((and (\\u003E= disposition 11)\\n \\t\\t\\t (\\u003C= disposition 15)) \\\"active (+2)\\\")\\n \\t\\t ((\\u003E= disposition 16) \\\"aggressive (+4)\\\"))))\\n (message result)))\\n \\n (defun mythic-npc-action ()\\n \\\"\\\"\\n (interactive)\\n (let* ((roll (mythic-roll-dice 10))\\n \\t (result (cond ((\\u003C= roll 3) \\\"theme action\\\")\\n \\t\\t ((and (\\u003E= roll 4)\\n \\t\\t\\t (\\u003C= roll 5)) \\\"npc continues\\\")\\n \\t\\t ((= roll 6) \\\"npc continues +2\\\")\\n \\t\\t ((= roll 7) \\\"npc continues -2\\\")\\n \\t\\t ((= roll 8) \\\"npc action\\\")\\n \\t\\t ((= roll 9) \\\"npc action -4\\\")\\n \\t\\t ((= roll 10) \\\"npc action +4\\\"))))\\n (org-cycle)\\n (insert (format \\\"NPC: %s\\\" result))\\n (when (and (\\u003E= roll 8)\\n \\t (\\u003C= roll 10))\\n (mythic-npc-action-2))))\\n \\n (defun mythic-npc-action-2 ()\\n \\\"\\\"\\n (interactive)\\n (let* ((modifier (read-number \\\"Modifier: \\\" 0))\\n \\t (roll (+ modifier (mythic-roll-dice 10)\\n \\t\\t (mythic-roll-dice 10)))\\n \\t (result (cond ((\\u003C= roll 6) \\\"talks, exposition\\\")\\n \\t\\t ((and (\\u003E= roll 7)\\n \\t\\t\\t (\\u003C= roll 8)) \\\"performs an ambiguous action\\\")\\n \\t\\t ((and (\\u003E= roll 9)\\n \\t\\t\\t (\\u003C= roll 10)) \\\"acts out of pc interest\\\")\\n \\t\\t ((= roll 11) \\\"gives something\\\")\\n \\t\\t ((= roll 12) \\\"seeks to end encounter\\\")\\n \\t\\t ((= roll 13) \\\"changes the theme\\\")\\n \\t\\t ((= roll 14) \\\"changes descriptor\\\")\\n \\t\\t ((and (\\u003E= roll 15)\\n \\t\\t\\t (\\u003C= roll 17)) \\\"acts out of self interest\\\")\\n \\t\\t ((= roll 18) \\\"takes something\\\")\\n \\t\\t ((\\u003E= roll ) \\\"causes harm\\\"))))\\n (insert \\\"\\\\n\\\")\\n (org-cycle)\\n (insert (format \\\"NPC: %s\\\" result)))) \\n \\n (defun mythic-evenp (number)\\n (zerop (% number 2)))\\n \\n (defun mythic-oddp (number)\\n (not (mythic-evenp number)))\\n \\t\\n (defun mythic-roll-dice (faces)\\n \\\"Rolls a FACES-faced dice.\\\"\\n (1+ (random faces)))\\n \\n (defun mythic-new-npc ()\\n \\\"\\\"\\n (interactive)\\n (save-excursion\\n (set-buffer (mythic-get-buffers-names nil \\\"NPCs\\\"))\\n (goto-char (point-max))\\n (unless (zerop (current-column))\\n (insert \\\"\\\\n\\\"))\\n (insert (format \\\"** %s\\\\n\\\" (read-string \\\"NPC name: \\\")))\\n (org-cycle)\\n (insert \\\"- Identity: \\\")\\n (insert (read-string \\\"NPC identity: \\\"))\\n (insert \\\"\\\\n\\\")\\n (org-cycle)\\n (insert \\\"- Personality: \\\")\\n (insert (read-string \\\"NPC personality: \\\"))\\n (org-metaleft)\\n (insert \\\"\\\\n\\\")\\n (org-cycle)\\n (insert \\\"- Activity: \\\")\\n (insert (read-string \\\"NPC activity: \\\"))\\n (org-metaleft)\\n (insert \\\"\\\\n\\\")\\n (org-cycle)\\n (insert \\\"- Disposition: \\\")\\n (mythic-npc-disposition)\\n (org-metaleft)\\n (insert \\\"\\\\n\\\")\\n (org-cycle)\\n (insert \\\"- Notes: \\\")\\n (org-metaleft)))\\n \\n (defun mythic-statistic-check ()\\n \\\"\\\"\\n (interactive)\\n (let* ((important (y-or-n-p \\\"Is the NPC important? \\\"))\\n \\t (mod (ido-completing-read\\n \\t \\\"How would you describe the attribute? \\\"\\n \\t '(\\\"weak\\\" \\\"average\\\" \\\"strong\\\" \\\"prime\\\") nil t))\\n \\t (modifier (cond ((string= mod \\\"weak\\\") -2)\\n \\t\\t\\t ((string= mod \\\"average\\\") 0)\\n \\t\\t\\t ((string= mod \\\"strong\\\") 2)\\n \\t\\t\\t ((string= mod \\\"prime\\\") 4)))\\n \\t (roll (+ modifier\\n \\t\\t (mythic-roll-dice 10)\\n \\t\\t (mythic-roll-dice 10)\\n \\t\\t (if important\\n \\t\\t 2\\n \\t\\t 0))))\\n (org-cycle)\\n (insert (format \\\"Stat check: %s\\\"\\n \\t\\t (cond ((\\u003C= roll 2) \\\"very weak -75%\\\")\\n \\t\\t\\t ((and (\\u003E= roll 3) (\\u003C= roll 4)) \\\"weak -50%\\\")\\n \\t\\t\\t ((and (\\u003E= roll 5) (\\u003C= roll 6)) \\\"less -10%\\\")\\n \\t\\t\\t ((and (\\u003E= roll 7) (\\u003C= roll 11)) \\\"expected baseline\\\")\\n \\t\\t\\t ((and (\\u003E= roll 12) (\\u003C= roll 14)) \\\"more +10%\\\")\\n \\t\\t\\t ((and (\\u003E= roll 15) (\\u003C= roll 16)) \\\"strong +50%\\\")\\n \\t\\t\\t ((and (\\u003E= roll 17) (\\u003C= roll 18)) \\\"very strong +100%\\\")\\n \\t\\t\\t ((and (\\u003E= roll 19) (\\u003C= roll 20)) \\\"PC baseline\\\")\\n \\t\\t\\t ((and (\\u003E= roll 21) (\\u003C= roll 22)) \\\"PC more +10%\\\")\\n \\t\\t\\t ((and (\\u003E= roll 23) (\\u003C= roll 24)) \\\"PC strong +50%\\\")\\n \\t\\t\\t ((\\u003E= roll 25) \\\"PC very strong +100%\\\"))))))\\n \\n (defun mythic-get-creature-look (class)\\n \\\"\\\"\\n (let* ((look-roll (mythic-roll-dice 100))\\n \\t (look (cdr\\n \\t\\t(cond ((\\u003C= look-roll 5) (assoc class '((\\\"alien\\\" . \\\"fishlike\\\")\\n \\t\\t\\t\\t\\t\\t (\\\"animal\\\" . \\\"furry\\\")\\n \\t\\t\\t\\t\\t\\t (\\\"animated\\\" . \\\"humanoid\\\")\\n \\t\\t\\t\\t\\t\\t (\\\"elemental\\\" . \\\"air-based\\\")\\n \\t\\t\\t\\t\\t\\t (\\\"humanoid\\\" . \\\"very ugly\\\")\\n \\t\\t\\t\\t\\t\\t (\\\"insect\\\" . \\\"insect-like\\\")\\n \\t\\t\\t\\t\\t\\t (\\\"supernatural beast\\\" . (mythic-get-creature-look \\\"animal\\\"))\\n \\t\\t\\t\\t\\t\\t (\\\"amorphous\\\" . \\\"liquid\\\")\\n \\t\\t\\t\\t\\t\\t (\\\"plant\\\" . \\\"tree-like\\\")\\n \\t\\t\\t\\t\\t\\t (\\\"undead\\\" . \\\"decayed\\\"))))\\n \\t\\t ((\\u003C= look-roll 10) (assoc class '((\\\"alien\\\" . \\\"stinky\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"clawed\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"humanoid-like\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . (mythic-get-creature-look \\\"alien\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . (mythic-get-creature-look \\\"animal\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . (mythic-get-creature-look \\\"alien\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . (mythic-get-creature-look \\\"alien\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . (mythic-get-creature-look \\\"elemental\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"vines/tentacles\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"skeletal\\\"))))\\n \\t\\t ((\\u003C= look-roll 15) (assoc class '((\\\"alien\\\" . \\\"tentacled\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"sharp teeth\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"make of wood\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . (mythic-get-creature-look \\\"humanoid\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . (mythic-get-creature-look \\\"supernatural beast\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"carapace\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . (mythic-get-creature-look \\\"elemental\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"Amorphous\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . (mythic-get-creature-look \\\"amorphous\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"Insubstantial\\\"))))\\n \\t\\t ((\\u003C= look-roll 20) (assoc class '((\\\"alien\\\" . (mythic-get-creature-look \\\"animal\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"tail\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"made of stone\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"fire-based\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"toothy\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"bug-like\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . (mythic-get-creature-look \\\"insect\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"multiple eyes\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"mushroom-like\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"shadowy\\\"))))\\n \\t\\t ((\\u003C= look-roll 25) (assoc class '((\\\"alien\\\" . \\\"extra limbs\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"long-haired\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"inscribed with symbols\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . (mythic-get-creature-look \\\"amorphous\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"primitive\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"furry\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"sharp teeth\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"clingy/sticky\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"thorny\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"cold\\\"))))\\n \\t\\t ((\\u003C= look-roll 30) (assoc class '((\\\"alien\\\" . \\\"clothed\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"ugly\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"exudes steam/smoke\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"cloud-like\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"tusks\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"mandibles\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"glowing eyes\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"tentacles\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"colorful\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . (mythic-get-creature-look \\\"humanoid\\\")))))\\n \\t\\t ((\\u003C= look-roll 35) (assoc class '((\\\"alien\\\" . \\\"nightmarish\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"bird-like\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"made of common items\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"water-based\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"pointed ears\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"multiple legs\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"combination of animals\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"bubbling\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"aquatic\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"foul smelling\\\"))))\\n \\t\\t ((\\u003C= look-roll 40) (assoc class '((\\\"alien\\\" . \\\"multi-eyed\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"odd color\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"shaped like an animal\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"levitating/flying\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"fine features\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"worm-like\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"winged\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"cloud-like\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"toothy maw\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"silent\\\"))))\\n \\t\\t ((\\u003C= look-roll 45) (assoc class '((\\\"alien\\\" . \\\"dripping\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"growling\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . (mythic-get-creature-look \\\"animal\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . (mythic-get-creature-look \\\"animal\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"crude clothing\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"humanoid\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"horned\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"transparent\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"rowered\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"filthy\\\"))))\\n \\t\\t ((\\u003C= look-roll 50) (assoc class '((\\\"alien\\\" . (mythic-get-creature-look \\\"supernatural beast\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"hopping\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . (mythic-get-creature-look \\\"insect\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"noisy\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"wielding a weapon\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"pincers/claws\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"bird-like\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"floating/levitating\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"rooted in the ground\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"looks alive\\\"))))\\n \\t\\t ((\\u003C= look-roll 55) (assoc class '((\\\"alien\\\" . \\\"levitating\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"tusks\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"made of unusual substance\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"earth-based\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"wearing armour\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"wall-crawling\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"mammalian\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"inky black\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"can fly/float\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . (mythic-get-creature-look \\\"animal\\\")))))\\n \\t\\t ((\\u003C= look-roll 60) (assoc class '((\\\"alien\\\" . \\\"insectlike\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"hooves\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"wields a weapon\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"unusual substance\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"horned\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"eyes on stalks\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"reptilian\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"green\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"humanoid shape\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"twisted human\\\"))))\\n \\t\\t ((\\u003C= look-roll 65) (assoc class '((\\\"alien\\\" . (mythic-get-creature-look \\\"insect\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"mammalian\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"glowing eyes\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"humanoid\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . (mythic-get-creature-look \\\"alien\\\"))\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"multiple eyes\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"aquatic\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"purple\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"collection of smaller plants\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"mummified\\\"))))\\n \\t\\t ((\\u003C= look-roll 70) (assoc class '((\\\"alien\\\" . \\\"wormlike\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"spotted\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"noisy\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"flowing shape\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"odd skin color\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"aquatic\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"has a tail\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"brown\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"covered with leaves\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"glowing eyes\\\"))))\\n \\t\\t ((\\u003C= look-roll 75) (assoc class '((\\\"alien\\\" . \\\"humanoid looking\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"reptilian\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"made of metal\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"solid\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"very intelligent\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"spider-like\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"multiple eyes\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"blob-like\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"stinks\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"howling/growling\\\"))))\\n \\t\\t ((\\u003C= look-roll 80) (assoc class '((\\\"alien\\\" . \\\"bony\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"aquatic\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"falling apart, in ill repair\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"clawed\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"dumb\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"agile\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"tentacles\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"shape shifts\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"ambulatory legs\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"claws\\\"))))\\n \\t\\t ((\\u003C= look-roll 85) (assoc class '((\\\"alien\\\" . \\\"odd colored\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"amphibious\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"shape changing\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"has facial features\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"reptilian\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"winged\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"odd colored\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"forms a simple shape\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"moving roots\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"fangs\\\"))))\\n \\t\\t ((\\u003C= look-roll 90) (assoc class '((\\\"alien\\\" . \\\"serpent-like\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"winged\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"levitating\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"liquid\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"has a taild\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"odd colored\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"extra limbs\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"pulsating\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"coated in bark\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"ghoulish\\\"))))\\n \\t\\t ((\\u003C= look-roll 95) (assoc class '((\\\"alien\\\" . \\\"aquatic\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animal\\\" . \\\"horns/antlers\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"animated\\\" . \\\"robotic\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"elemental\\\" . \\\"composed of small items\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"humanoid\\\" . \\\"beautiful\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"insect\\\" . \\\"has a stinger\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"supernatural beast\\\" . \\\"furry\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"amorphous\\\" . \\\"wall-crawling\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"plant\\\" . \\\"fungus\\\")\\n \\t\\t\\t\\t\\t\\t\\t(\\\"undead\\\" . \\\"gaunt\\\"))))\\n \\t\\t ((\\u003C= look-roll 100) '( nil .\\\"GM decision\\\"))))))\\n (when (listp look)\\n (setq look (eval look)))\\n look))\\n \\n (defun mythic-creature-crafter ()\\n \\\"\\\"\\n (interactive)\\n (let* ((size-roll (mythic-roll-dice 100))\\n \\t (size (cond ((\\u003C= size-roll 5) \\\"tiny\\\")\\n \\t\\t ((and (\\u003E= size-roll 6)\\n \\t\\t\\t (\\u003C= size-roll 20)) \\\"small\\\")\\n \\t\\t ((and (\\u003E= size-roll 21)\\n \\t\\t\\t (\\u003C= size-roll 70)) \\\"human-sized\\\")\\n \\t\\t ((and (\\u003E= size-roll 71)\\n \\t\\t\\t (\\u003C= size-roll 85)) \\\"large\\\")\\n \\t\\t ((and (\\u003E= size-roll 86)\\n \\t\\t\\t (\\u003C= size-roll 95)) \\\"very large\\\")\\n \\t\\t ((\\u003E= size-roll 96) \\\"gigantic\\\")))\\n \\t (class-roll (mythic-roll-dice 100))\\n \\t (class (cond ((\\u003C= class-roll 10) \\\"alien\\\")\\n \\t\\t ((and (\\u003E= class-roll 11)\\n \\t\\t\\t (\\u003C= class-roll 20)) \\\"animal\\\")\\n \\t\\t ((and (\\u003E= class-roll 21)\\n \\t\\t\\t (\\u003C= class-roll 30)) \\\"animated\\\")\\n \\t\\t ((and (\\u003E= class-roll 31)\\n \\t\\t\\t (\\u003C= class-roll 40)) \\\"elemental\\\")\\n \\t\\t ((and (\\u003E= class-roll 41)\\n \\t\\t\\t (\\u003C= class-roll 50)) \\\"humanoid\\\")\\n \\t\\t ((and (\\u003E= class-roll 51)\\n \\t\\t\\t (\\u003C= class-roll 60))\\n \\t\\t \\\"supernatural beast\\\")\\n \\t\\t ((and (\\u003E= class-roll 61)\\n \\t\\t\\t (\\u003C= class-roll 70)) \\\"amorphous\\\")\\n \\t\\t ((and (\\u003E= class-roll 71)\\n \\t\\t\\t (\\u003C= class-roll 80)) \\\"plant\\\")\\n \\t\\t ((and (\\u003E= class-roll 81)\\n \\t\\t\\t (\\u003C= class-roll 90)) \\\"undead\\\")\\n \\t\\t ((and (\\u003E= class-roll 91)\\n \\t\\t\\t (\\u003C= class-roll 100)) \\\"insect\\\")))\\n \\t (look (mythic-get-creature-look class))\\n \\t (look2 (mythic-get-creature-look class)))\\n (insert (format \\\"Creature: %s, %s: %s, %s\\\" size class look look2))))\\n \\n (defun mythic-creature-ability ()\\n \\\"\\\"\\n (interactive)\\n (let* ((roll (mythic-roll-dice 100))\\n \\t (ability (cond\\n \\t\\t ((\\u003C= roll 30) \\\"No special ability\\\")\\n \\t\\t ((= roll 31) \\\"Gaze attack\\\")\\n \\t\\t ((\\u003C= roll 35) \\\"Resist damage\\\")\\n \\t\\t ((= roll 36) \\\"Burst of speed\\\")\\n \\t\\t ((\\u003C= roll 39) \\\"Flight\\\")\\n \\t\\t ((= roll 40) \\\"Swim\\\")\\n \\t\\t ((\\u003C= roll 44) \\\"Enhanced sense\\\")\\n \\t\\t ((\\u003C= roll 46) \\\"Concealment\\\")\\n \\t\\t ((= roll 47) \\\"Paralysis\\\")\\n \\t\\t ((\\u003C= roll 51) \\\"Natural weaponry\\\")\\n \\t\\t ((\\u003C= roll 54) \\\"Climber\\\")\\n \\t\\t ((\\u003C= roll 56) \\\"Poison\\\")\\n \\t\\t ((= roll 57) \\\"Charge\\\")\\n \\t\\t ((= roll 58) \\\"Distraction\\\")\\n \\t\\t ((= roll 59) \\\"Entangle\\\")\\n \\t\\t ((\\u003C= roll 61) \\\"Specific vulnerability\\\")\\n \\t\\t ((\\u003C= roll 63) \\\"Unusual sense\\\")\\n \\t\\t ((\\u003C= roll 65) \\\"Extra defense\\\")\\n \\t\\t ((= roll 66) \\\"Telepathy\\\")\\n \\t\\t ((\\u003C= roll 70) \\\"Limited use\\\")\\n \\t\\t ((\\u003C= roll 74) \\\"Grievous attack\\\")\\n \\t\\t ((= roll 75) \\\"Summon\\\")\\n \\t\\t ((\\u003C= roll 77) \\\"Immunity\\\")\\n \\t\\t ((= roll 78) \\\"Tunneling\\\")\\n \\t\\t ((= roll 79) \\\"Targeted attack\\\")\\n \\t\\t ((\\u003C= roll 82) \\\"Meta power\\\")\\n \\t\\t ((\\u003C= roll 86) \\\"Ranged attack\\\")\\n \\t\\t ((\\u003C= roll 88) \\\"Alternate form of attack\\\")\\n \\t\\t ((\\u003C= roll 90) \\\"Frightening\\\")\\n \\t\\t ((= roll 91) \\\"Life force drain\\\")\\n \\t\\t ((\\u003C= roll 93) \\\"Fast healing\\\")\\n \\t\\t ((= roll 94) \\\"Attribute damage\\\")\\n \\t\\t ((= roll 95) \\\"Dual classification\\\")\\n \\t\\t ((= roll 96) \\\"Defensive perimeter\\\")\\n \\t\\t ((= roll 97) \\\"Incorporeal\\\")\\n \\t\\t ((= roll 98) \\\"Animate\\\")\\n \\t\\t ((= roll 99) \\\"Multi-environment\\\")\\n \\t\\t ((= roll 100) \\\"Transformation\\\"))))\\n (insert\\n (format \\\"Special ability: %s\\\" ability))))\", \"author_fullname\": \"t2_1cs6c64s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Running Mythic in Emacs' orgmode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/mythic_gme\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmo63z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565172297.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565110862.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.mythic_gme\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPreface: I am very new to Mythic and the whole solo-RPG\\u0026#39;ing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have written some Emacs Lisp code to integrate Mythic (specifically Variations II + Creature crafter) in Emacs+orgmode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code still needs some minor tweaking, but I would love some feedback. Any Emacs users in this sub who could help me test the code and provide feedback and criticism?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet me know if anyone\\u0026#39;s interested and I\\u0026#39;ll share the code :D\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Here comes the code. I have added a short documentation at the beginning of the file, although most functions\\u0026#39; names should be self-explanatory. Bear in mind this is the first semi-serious thing I write in Emacs Lisp, so probably it\\u0026#39;s not going to be the best Elisp you\\u0026#39;ve seen. Feedback/bugs reports very welcome :D\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; mythic.el\\n;;\\n;; A set of functions to aid in running solo RPG sessions/campaigns on\\n;; top of Emacs\\u0026#39; orgmode.\\n;;\\n;; It uses the rules from Variations II.\\n;;\\n;; A quick primer on how to use it:\\n;;\\n;; 1) start a new session with `M-x mythic-init`. It will ask if you\\n;; want to load from a file.\\n;;\\n;; 2) Play the session (more on this later)\\n;;\\n;; 3) `mythic-quit` will kill all temporary buffers, as well as ask to\\n;; save the current session to a file.\\n;;\\n;; You have the following interactive functions at your disposal:\\n;;\\n;; - mythic-init : initializes a new session\\n;;\\n;; - mythic quit : quits the current session\\n;;\\n;; - mythic-check-disposition : check what modifier an NPC\\u0026#39;s\\n;; disposition gives (useful when\\n;; altering the disposition)\\n;;\\n;; - mythic-creature-ability : generates a special ability for a\\n;; creature\\n;;\\n;; - mythic-creature-crafter : crafts a new, random creature\\n;;\\n;; - mythic-detail-check : asnwer a complex question\\n;; \\n;; - mythic-event : generate a new random event\\n;;\\n;; - mythic-fate-check : asnwer a yes/no question\\n;;\\n;; - mythic-meaning-check : further details a complex question\\u0026#39;s\\n;; answer\\n;;\\n;; - mythic-new-npc : generate a new NPC (adds it to the NPC temp\\n;; buffer)\\n;;\\n;; - mythic-new-scene : generate a new scene (adds it to the Scenes\\n;; temp buffer)\\n;;\\n;; - mythic-npc-action : makes an NPC do something\\n;; \\n;; - mythic-npc-action-2 : further actions for NPCs (usually not\\n;; needed to call manually)\\n;;\\n;; - mythic-npc-disposition : generates an NPC\\u0026#39;s disposition randomly\\n;;\\n;; - mythic-statistic-check : generates a new statistic level\\n;;\\n\\n(require \\u0026#39;seq)\\n(require \\u0026#39;subr-x)\\n\\n(defvar mythic-buffer-names \\u0026#39;(\\u0026quot;Threads\\u0026quot;\\n \\u0026quot;NPCs\\u0026quot;\\n \\u0026quot;Player\\u0026quot;\\n \\u0026quot;Scenes\\u0026quot;)\\n \\u0026quot;Defines which buffers are to be created as temp-buffers.\\u0026quot;)\\n\\n(defvar mythic-active-session\\n nil\\n \\u0026quot;The mythic\\u0026#39;s active session name.\\nOnly one session at a time can be active\\u0026quot;)\\n\\n(defun mythic-get-buffers-names (\\u0026amp;optional session-name filter)\\n \\u0026quot;Returns a list of temp-buffers\\u0026#39; name using SESSION-NAME.\\nIf SESSION-NAME is nil and mythic-active-session is not nil, use\\nthat as SESSION-NAME. If both are nil, show a message and return\\nnil.\\u0026quot;\\n (if (and (not session-name) (not mythic-active-session))\\n (progn (message \\u0026quot;No session name specified, nor mythic-active-session set!\\u0026quot;)\\n nil)\\n (progn\\n (when (and (not session-name) mythic-active-session)\\n (setq session-name mythic-active-session))\\n (let (result)\\n (dolist (buffer mythic-buffer-names result)\\n (setq result (cons (format \\u0026quot;*%s-%s*\\u0026quot; session-name buffer)\\n result)))\\n (if (not filter)\\n result\\n (nth 0 (seq-filter (lambda (x)\\n (string-match-p filter x))\\n result)))))))\\n\\n(defun mythic-buffers-exist-p (\\u0026amp;optional session-name)\\n \\u0026quot;Checks if any tempbuffer exists for the given SESSION-NAME, or\\nmythic-active-session if no SESSION-NAME is given.\\u0026quot;\\n (let (result\\n (buffers (mapcar \\u0026#39;buffer-name (buffer-list))))\\n (dolist (buffer\\n (mythic-get-buffers-names session-name)\\n result)\\n (when (member buffer buffers)\\n (setq result t)))))\\n\\n(defun mythic-init (session-name)\\n \\u0026quot;Starts a new mythic session.\\u0026quot;\\n (interactive \\u0026quot;sSession name: \\u0026quot;)\\n (when (string= \\u0026quot;\\u0026quot; session-name)\\n (setq session-name \\u0026quot;default-mythic-session\\u0026quot;))\\n (cond (mythic-active-session\\n (progn (message \\u0026quot;A session is already active!\\u0026quot;)\\n nil))\\n ((mythic-buffers-exist-p session-name)\\n (progn (message \\u0026quot;Buffers already present!\\u0026quot;)\\n nil))\\n (t (progn\\n (setq mythic-active-session session-name)\\n (delete-other-windows)\\n (split-window-horizontally)\\n (other-window 1)\\n (split-window-vertically)\\n (other-window 1)\\n (split-window-vertically)\\n (other-window 1)\\n (balance-windows)\\n (other-window 1)\\n (dolist (buffer (mythic-get-buffers-names))\\n (generate-new-buffer buffer)\\n (switch-to-buffer buffer)\\n (org-mode)\\n (org-insert-heading)\\n (insert buffer)\\n (other-window 1))\\n (save-excursion\\n (set-buffer (mythic-get-buffers-names nil \\u0026quot;Scenes\\u0026quot;))\\n (org-entry-put (point) \\u0026quot;chaos_ALL\\u0026quot; \\u0026quot;3 4 5 6\\u0026quot;)\\n (org-entry-put (point) \\u0026quot;chaos\\u0026quot; \\u0026quot;4\\u0026quot;))\\n (when (y-or-n-p \\u0026quot;Load from a file? \\u0026quot;)\\n (with-temp-buffer\\n (insert-file-contents (read-file-name \\u0026quot;Which file to load? \\u0026quot;))\\n (dolist (section mythic-buffer-names)\\n (goto-char (point-min))\\n (search-forward-regexp (format \\u0026quot;^\\\\\\\\*+.*%s\\u0026quot; section))\\n (org-mark-subtree)\\n (setq content (buffer-substring (point) (mark)))\\n (save-excursion\\n (set-buffer (mythic-get-buffers-names nil section))\\n (set-mark (point-min))\\n (goto-char (point-max))\\n (delete-region (point) (mark))\\n (insert content)))))))))\\n\\n(defun mythic-quit ()\\n \\u0026quot;Quits an active mythic session.\\u0026quot;\\n (interactive)\\n (let* ((buffers (mapcar \\u0026#39;buffer-name (buffer-list)))\\n (save-p (y-or-n-p \\u0026quot;Save to file? \\u0026quot;))\\n (save-path (if save-p (read-file-name \\u0026quot;Where to save? \\u0026quot;)\\n nil))\\n save-strings)\\n (dolist (buffer (mythic-get-buffers-names))\\n (when (member buffer buffers)\\n (when save-p\\n (save-excursion\\n (set-buffer buffer)\\n (setq save-strings (cons (buffer-string) save-strings))))\\n (kill-buffer buffer)))\\n (setq mythic-active-session nil)\\n (delete-other-windows)\\n (when save-p\\n (setq save-strings (string-join save-strings \\u0026quot;\\\\n\\u0026quot;))\\n (with-temp-buffer\\n (insert save-strings)\\n (write-region (point-min) (point-max) save-path)))))\\n\\n(defun mythic-get-chaos ()\\n \\u0026quot;Returns the chaos factor of the current (latest) scene as a\\nnumber.\\u0026quot;\\n (when mythic-active-session\\n (save-excursion\\n (set-buffer (mythic-get-buffers-names nil \\u0026quot;Scenes\\u0026quot;))\\n (goto-char (point-max))\\n (string-to-number (org-entry-get (point) \\u0026quot;chaos\\u0026quot; t)))))\\n\\n(defun mythic-new-scene ()\\n \\u0026quot;Initializes a new scene.\\u0026quot;\\n (interactive)\\n (save-excursion\\n (set-buffer (mythic-get-buffers-names nil \\u0026quot;Scenes\\u0026quot;))\\n (goto-char (point-max))\\n (unless (zerop (current-column))\\n (insert \\u0026quot;\\\\n\\u0026quot;))\\n (insert (format \\u0026quot;** %s\\\\n\\u0026quot; (read-string \\u0026quot;Scene title: \\u0026quot;)))\\n (org-entry-put (point) \\u0026quot;chaos\\u0026quot;\\n (ido-completing-read \\u0026quot;Chaos factor: \\u0026quot;\\n \\u0026#39;(\\u0026quot;3\\u0026quot; \\u0026quot;4\\u0026quot; \\u0026quot;5\\u0026quot; \\u0026quot;6\\u0026quot;)\\n nil t))\\n (org-cycle)\\n (let ((check-roll (mythic-roll-dice 10)))\\n (when (and (\\u0026lt;= check-roll (mythic-get-chaos))\\n (mythic-evenp check-roll))\\n (insert \\u0026quot;SCENE INTERRUPT\\\\n\\u0026quot;)\\n (org-cycle)\\n (insert (mythic-event-check))))))\\n\\n(defun mythic-event ()\\n (interactive)\\n (insert (format \\u0026quot;%s\\\\n\\u0026quot; (mythic-event-check))))\\n\\n(defun mythic-event-check ()\\n (let* ((roll (mythic-roll-dice 100))\\n (result (format \\u0026quot;Event: %s.\\u0026quot;\\n (cond\\n ((and (\\u0026gt;= roll 1)\\n (\\u0026lt;= roll 7)) \\u0026quot;Remote Event\\u0026quot;)\\n ((and (\\u0026gt;= roll 8)\\n (\\u0026lt;= roll 28)) (format \\u0026quot;NPC action: %s\\u0026quot;\\n (mythic-get-npc)))\\n ((and (\\u0026gt;= roll 29)\\n (\\u0026lt;= roll 35)) \\u0026quot;Introduce a new NPC\\u0026quot;)\\n ((and (\\u0026gt;= roll 36)\\n (\\u0026lt;= roll 45)) (format \\u0026quot;Move towards a thread: %s\\u0026quot;\\n (mythic-get-thread)))\\n ((and (\\u0026gt;= roll 46)\\n (\\u0026lt;= roll 52)) (format \\u0026quot;Move away from a thread: %s\\u0026quot;\\n (mythic-get-thread)))\\n ((and (\\u0026gt;= roll 53)\\n (\\u0026lt;= roll 55)) (format \\u0026quot;Close a thread: %s\\u0026quot;\\n (mythic-get-thread)))\\n ((and (\\u0026gt;= roll 56)\\n (\\u0026lt;= roll 67)) \\u0026quot;PC negative\\u0026quot;)\\n ((and (\\u0026gt;= roll 68)\\n (\\u0026lt;= roll 75)) \\u0026quot;PC positive\\u0026quot;)\\n ((and (\\u0026gt;= roll 76)\\n (\\u0026lt;= roll 83)) \\u0026quot;Ambiguous event\\u0026quot;)\\n ((and (\\u0026gt;= roll 84)\\n (\\u0026lt;= roll 92)) (format \\u0026quot;NPC negative: %s\\u0026quot;\\n (mythic-get-npc)))\\n ((and (\\u0026gt;= roll 93)\\n (\\u0026lt;= roll 100)) (format \\u0026quot;NPC positive: %s\\u0026quot;\\n (mythic-get-npc)))))))\\n result))\\n\\n(defun mythic-get-thread ()\\n \\u0026quot;Returns a random thread from the session.\\u0026quot;\\n (save-excursion\\n (set-buffer (mythic-get-buffers-names nil \\u0026quot;Threads\\u0026quot;))\\n (goto-char (point-min))\\n (let (threads\\n (match (search-forward-regexp \\u0026quot;^\\\\\\\\*\\\\\\\\* \\u0026quot; nil t)))\\n (while match\\n (set-mark (point))\\n (end-of-line)\\n (setq threads (cons (buffer-substring-no-properties\\n (point) (mark))\\n threads))\\n (setq match (search-forward-regexp \\u0026quot;^\\\\\\\\*\\\\\\\\* \\u0026quot; nil t)))\\n (if (= (length threads) 0)\\n \\u0026quot;No threads found!\\u0026quot;\\n (nth (random (length threads)) threads)))))\\n\\n(defun mythic-get-npc ()\\n \\u0026quot;Returns a random NPC from the session.\\u0026quot;\\n (save-excursion\\n (set-buffer (mythic-get-buffers-names nil \\u0026quot;NPCs\\u0026quot;))\\n (goto-char (point-min))\\n (let (npcs\\n (match (search-forward-regexp \\u0026quot;^\\\\\\\\*\\\\\\\\* \\u0026quot; nil t)))\\n (while match\\n (set-mark (point))\\n (end-of-line)\\n (setq npcs (cons (buffer-substring-no-properties\\n (point) (mark))\\n npcs))\\n (setq match (search-forward-regexp \\u0026quot;^\\\\\\\\*\\\\\\\\* \\u0026quot; nil t)))\\n (if (= (length npcs) 0)\\n \\u0026quot;No NPCs found!\\u0026quot;\\n (nth (random (length npcs)) npcs)))))\\n\\n(defun mythic-fate-check ()\\n (interactive)\\n (let ((modifier (string-to-number\\n (ido-completing-read \\u0026quot;Modifier: \\u0026quot;\\n \\u0026#39;(\\u0026quot;-8\\u0026quot; \\u0026quot;-6\\u0026quot; \\u0026quot;-4\\u0026quot; \\u0026quot;-2\\u0026quot; \\u0026quot;0\\u0026quot;\\n \\u0026quot;2\\u0026quot; \\u0026quot;4\\u0026quot; \\u0026quot;6\\u0026quot; \\u0026quot;8\\u0026quot;))))\\n (chaos (mythic-get-chaos))\\n (r1 (mythic-roll-dice 10))\\n (r2 (mythic-roll-dice 10))\\n (r3 (mythic-roll-dice 10))\\n success exceptional random-event)\\n ;; TODO : the chaos factor modifier for chaos factors 3 and 6 is\\n ;; ignored in this version, but may be introduced in a future\\n ;; one. This is mostly due to the extra step of deciding which\\n ;; direction it is favourable and which unfavourable.\\n (setq success (\\u0026gt;= (+ r1 r2 modifier) 11))\\n (when (\\u0026lt;= r3 chaos)\\n (cond ((= r1 r2)\\n (progn\\n (setq exceptional t)\\n (setq random-event t)))\\n ((and (mythic-evenp r1)\\n (mythic-evenp r2))\\n (setq random-event t))\\n ((and (mythic-oddp r1)\\n (mythic-oddp r2))\\n (setq exceptional t))))\\n (org-cycle)\\n (insert \\u0026quot;Fate: \\u0026quot;)\\n (insert (format \\u0026quot;%s%s \\u0026quot;\\n (if exceptional\\n \\u0026quot;Exceptional \\u0026quot;\\n \\u0026quot;\\u0026quot;)\\n (if success\\n \\u0026quot;Yes\\u0026quot;\\n \\u0026quot;No\\u0026quot;)))\\n (when random-event\\n (insert \\u0026quot;\\\\n\\u0026quot;)\\n (org-cycle)\\n (insert (mythic-event-check)))))\\n\\n(defun mythic-detail-check ()\\n \\u0026quot;\\u0026quot;\\n (interactive)\\n (let* ((chaos (mythic-get-chaos))\\n (roll (+ (mythic-roll-dice 10)\\n (mythic-roll-dice 10)\\n (mythic-roll-dice 10)\\n (cond\\n ((= chaos 3)\\n 2)\\n ((= chaos 6)\\n -2)\\n (t 0))))\\n (result (cond\\n ((\\u0026lt;= roll 4)\\n \\u0026quot;anger\\u0026quot;)\\n ((= roll 5)\\n \\u0026quot;sadness\\u0026quot;)\\n ((= roll 6)\\n \\u0026quot;fear\\u0026quot;)\\n ((= roll 7)\\n (format \\u0026quot;disavours thread: %s\\u0026quot;\\n (mythic-get-thread)))\\n ((= roll 8)\\n \\u0026quot;disfavours pc\\u0026quot;)\\n ((= roll 9)\\n (format\\n \\u0026quot;focus npc: %s\\u0026quot; (mythic-get-npc)))\\n ((= roll 10)\\n (format\\n \\u0026quot;favours npc: %s\\u0026quot; (mythic-get-npc)))\\n ((= roll 11)\\n \\u0026quot;focus pc\\u0026quot;)\\n ((= roll 12)\\n (format\\n \\u0026quot;disfavours npc: %s\\u0026quot; (mythic-get-npc)))\\n ((= roll 13)\\n (format \\u0026quot;focus thread: %s\\u0026quot;\\n (mythic-get-thread)))\\n ((= roll 14)\\n \\u0026quot;favours pc\\u0026quot;)\\n ((= roll 15)\\n (format \\u0026quot;favours thread: %s\\u0026quot;\\n (mythic-get-thread)))\\n ((= roll 16)\\n \\u0026quot;courage\\u0026quot;)\\n ((= roll 17)\\n \\u0026quot;happiness\\u0026quot;)\\n ((\\u0026gt;= roll 18)\\n \\u0026quot;calm\\u0026quot;))))\\n (org-cycle)\\n (insert (format \\u0026quot;Detail: %s\\u0026quot; result))))\\n\\n(setq mythic-descriptors-1 \\u0026#39;(abnormally adventurously\\n aggressivley angirly anxiously awkwardly beautifully\\n bleakly boldly bravely busily calmly carefully carelessly\\n cautiously ceaselessly cheefrully combatively coolly\\n crazily curiously daintly dangerously defiantly deliberatly\\n delightfully dimly efficiently energetically enormously\\n enthusiastically excitedly fearfully ferociously fiercely\\n foolishly fortunately frantically freely frighteningly\\n fully generously gently gladly gracefully gratefully\\n happily hastily healthily helpfully helplessly hopelessly\\n innocently intensely interestingly irritatingly jovially\\n joyfully judgementally kindly kookily lazily lightly\\n loosely loudly lovingly loyally majestically meaningfully\\n mechanically miserably mockingly misteriously naturally\\n neatly nicely oddly offensively officially partially\\n peacefully perfectly playfully politely positively\\n powerfully quaintly quarrelsomely quietly roughly rudely\\n ruthlessly slowly softly swiftly threateningly very\\n violently wildly yieldingly))\\n\\n(setq mythic-descriptors-2 \\u0026#39;(abandoned abnormal amusing ancient\\n aromatic average beautiful bizzarre classy clean cold\\n colorful creepy cute damaged dark defeated delicate\\n delightful dirty disagreeable disgusting drab dry dull\\n empty enormous exotic faded familiar fancy fat feeble\\n feminine festive flawless fresh full glorious good graceful\\n hard harsh healthy heavy historical horrible important\\n interesting juvenile lacking lame large lavish lean less\\n lethal lonely lovely macabre magnificent masculine mature\\n messy mighty military modern extravagant mundane misterious\\n natural nondescript odd pale petite poor powerful quaint\\n rare reassuring remarkable rotten rough ruined rustic scary\\n simple small smelly smooth soft strong tranquil ugly\\n valuable warlike warm watery weak young))\\n\\n(setq mythic-actions-1 \\u0026#39;(attainment starting neglect fight\\n recruit triumph violate oppose malice communicate persecute\\n increase decrease abandon gratify inquire antagonize move\\n waste truce release befriend judge desert dominate\\n procrastinate praise dseparate take break heal delay stop\\n lie return imitate struggle inform bestow postpone expose\\n haggle imprison release celebrate develop travel block harm\\n debase overindulge adjourn adversity kill distrupt usurp\\n create betray agree abuse oppress inspect ambush spy attach\\n carry open carelessness ruin extravagance trick arrive\\n propose divide refuse mistrust deceive cruelty intolerance\\n trust excitement activity assist care negligence passion\\n work control attract failure pursue vengeance proceedings\\n dispute punish guide transform overthrow oppress change))\\n\\n(setq mythic-actions-2 \\u0026#39;(goals dreams environment outside inside\\n reality allies enemies evil good emotions opposition war\\n peace innocent love spirit intellect ideas joy messages\\n energy balance tension friendship physical project\\n pleasures pain possessions benefits plans lies expectations\\n legal bureaucracy business path news exterior advice plot\\n competition prison illness food attention success failure\\n travel jealousy dispute home investment suffering wishes\\n tactics stalemate randomness misfortune death disruption\\n power burden intrigues fears ambush rumor wounds\\n extravagance representative adversities opulence liberty\\n military mundane trials masses vehicle art victory dispute\\n riches normal technology hope magic illusions portals\\n danger weapons animals weather elements nature masses\\n leadership fame anger information))\\n\\n(defun mythic-meaning-check ()\\n \\u0026quot;\\u0026quot;\\n (interactive)\\n (let ((mode (ido-completing-read \\u0026quot;What kind of lookup: \\u0026quot;\\n \\u0026#39;(\\u0026quot;Descriptors\\u0026quot; \\u0026quot;Actions\\u0026quot;) nil t))\\n (index1 (1- (mythic-roll-dice 100)))\\n (index2 (1- (mythic-roll-dice 100)))\\n result)\\n (if (string= mode \\u0026quot;Descriptors\\u0026quot;)\\n (setq result (format \\u0026quot;%s %s\\u0026quot;\\n (nth index1 mythic-descriptors-1)\\n (nth index2 mythic-descriptors-2)))\\n (setq result (format \\u0026quot;%s %s\\u0026quot;\\n (nth index1 mythic-actions-1)\\n (nth index2 mythic-actions-2))))\\n (org-cycle)\\n (insert (format \\u0026quot;%s check: %s\\u0026quot; mode result))))\\n\\n(defun mythic-npc-disposition ()\\n \\u0026quot;\\u0026quot;\\n (interactive)\\n (let* ((modifier (read-number \\u0026quot;Modifier: \\u0026quot; 0))\\n (roll (+ modifier (mythic-roll-dice 6)\\n (mythic-roll-dice 6)))\\n (result (cond ((\\u0026lt;= roll 5) \\u0026quot;passive (-2)\\u0026quot;)\\n ((and (\\u0026gt;= roll 6)\\n (\\u0026lt;= roll 10)) \\u0026quot;moderate (0)\\u0026quot;)\\n ((and (\\u0026gt;= roll 11)\\n (\\u0026lt;= roll 15)) \\u0026quot;active (+2)\\u0026quot;)\\n ((\\u0026gt;= roll 16) \\u0026quot;aggressive (+4)\\u0026quot;))))\\n (org-cycle)\\n (insert (format \\u0026quot;%s - %d\\u0026quot; result roll))))\\n\\n(defun mythic-check-disposition (disposition)\\n \\u0026quot;\\u0026quot;\\n (interactive \\u0026quot;nDisposition: \\u0026quot;)\\n (let ((result (cond ((\\u0026lt;= disposition 5) \\u0026quot;passive (-2)\\u0026quot;)\\n ((and (\\u0026gt;= disposition 6)\\n (\\u0026lt;= disposition 10)) \\u0026quot;moderate (0)\\u0026quot;)\\n ((and (\\u0026gt;= disposition 11)\\n (\\u0026lt;= disposition 15)) \\u0026quot;active (+2)\\u0026quot;)\\n ((\\u0026gt;= disposition 16) \\u0026quot;aggressive (+4)\\u0026quot;))))\\n (message result)))\\n\\n(defun mythic-npc-action ()\\n \\u0026quot;\\u0026quot;\\n (interactive)\\n (let* ((roll (mythic-roll-dice 10))\\n (result (cond ((\\u0026lt;= roll 3) \\u0026quot;theme action\\u0026quot;)\\n ((and (\\u0026gt;= roll 4)\\n (\\u0026lt;= roll 5)) \\u0026quot;npc continues\\u0026quot;)\\n ((= roll 6) \\u0026quot;npc continues +2\\u0026quot;)\\n ((= roll 7) \\u0026quot;npc continues -2\\u0026quot;)\\n ((= roll 8) \\u0026quot;npc action\\u0026quot;)\\n ((= roll 9) \\u0026quot;npc action -4\\u0026quot;)\\n ((= roll 10) \\u0026quot;npc action +4\\u0026quot;))))\\n (org-cycle)\\n (insert (format \\u0026quot;NPC: %s\\u0026quot; result))\\n (when (and (\\u0026gt;= roll 8)\\n (\\u0026lt;= roll 10))\\n (mythic-npc-action-2))))\\n\\n(defun mythic-npc-action-2 ()\\n \\u0026quot;\\u0026quot;\\n (interactive)\\n (let* ((modifier (read-number \\u0026quot;Modifier: \\u0026quot; 0))\\n (roll (+ modifier (mythic-roll-dice 10)\\n (mythic-roll-dice 10)))\\n (result (cond ((\\u0026lt;= roll 6) \\u0026quot;talks, exposition\\u0026quot;)\\n ((and (\\u0026gt;= roll 7)\\n (\\u0026lt;= roll 8)) \\u0026quot;performs an ambiguous action\\u0026quot;)\\n ((and (\\u0026gt;= roll 9)\\n (\\u0026lt;= roll 10)) \\u0026quot;acts out of pc interest\\u0026quot;)\\n ((= roll 11) \\u0026quot;gives something\\u0026quot;)\\n ((= roll 12) \\u0026quot;seeks to end encounter\\u0026quot;)\\n ((= roll 13) \\u0026quot;changes the theme\\u0026quot;)\\n ((= roll 14) \\u0026quot;changes descriptor\\u0026quot;)\\n ((and (\\u0026gt;= roll 15)\\n (\\u0026lt;= roll 17)) \\u0026quot;acts out of self interest\\u0026quot;)\\n ((= roll 18) \\u0026quot;takes something\\u0026quot;)\\n ((\\u0026gt;= roll ) \\u0026quot;causes harm\\u0026quot;))))\\n (insert \\u0026quot;\\\\n\\u0026quot;)\\n (org-cycle)\\n (insert (format \\u0026quot;NPC: %s\\u0026quot; result)))) \\n\\n(defun mythic-evenp (number)\\n (zerop (% number 2)))\\n\\n(defun mythic-oddp (number)\\n (not (mythic-evenp number)))\\n\\n(defun mythic-roll-dice (faces)\\n \\u0026quot;Rolls a FACES-faced dice.\\u0026quot;\\n (1+ (random faces)))\\n\\n(defun mythic-new-npc ()\\n \\u0026quot;\\u0026quot;\\n (interactive)\\n (save-excursion\\n (set-buffer (mythic-get-buffers-names nil \\u0026quot;NPCs\\u0026quot;))\\n (goto-char (point-max))\\n (unless (zerop (current-column))\\n (insert \\u0026quot;\\\\n\\u0026quot;))\\n (insert (format \\u0026quot;** %s\\\\n\\u0026quot; (read-string \\u0026quot;NPC name: \\u0026quot;)))\\n (org-cycle)\\n (insert \\u0026quot;- Identity: \\u0026quot;)\\n (insert (read-string \\u0026quot;NPC identity: \\u0026quot;))\\n (insert \\u0026quot;\\\\n\\u0026quot;)\\n (org-cycle)\\n (insert \\u0026quot;- Personality: \\u0026quot;)\\n (insert (read-string \\u0026quot;NPC personality: \\u0026quot;))\\n (org-metaleft)\\n (insert \\u0026quot;\\\\n\\u0026quot;)\\n (org-cycle)\\n (insert \\u0026quot;- Activity: \\u0026quot;)\\n (insert (read-string \\u0026quot;NPC activity: \\u0026quot;))\\n (org-metaleft)\\n (insert \\u0026quot;\\\\n\\u0026quot;)\\n (org-cycle)\\n (insert \\u0026quot;- Disposition: \\u0026quot;)\\n (mythic-npc-disposition)\\n (org-metaleft)\\n (insert \\u0026quot;\\\\n\\u0026quot;)\\n (org-cycle)\\n (insert \\u0026quot;- Notes: \\u0026quot;)\\n (org-metaleft)))\\n\\n(defun mythic-statistic-check ()\\n \\u0026quot;\\u0026quot;\\n (interactive)\\n (let* ((important (y-or-n-p \\u0026quot;Is the NPC important? \\u0026quot;))\\n (mod (ido-completing-read\\n \\u0026quot;How would you describe the attribute? \\u0026quot;\\n \\u0026#39;(\\u0026quot;weak\\u0026quot; \\u0026quot;average\\u0026quot; \\u0026quot;strong\\u0026quot; \\u0026quot;prime\\u0026quot;) nil t))\\n (modifier (cond ((string= mod \\u0026quot;weak\\u0026quot;) -2)\\n ((string= mod \\u0026quot;average\\u0026quot;) 0)\\n ((string= mod \\u0026quot;strong\\u0026quot;) 2)\\n ((string= mod \\u0026quot;prime\\u0026quot;) 4)))\\n (roll (+ modifier\\n (mythic-roll-dice 10)\\n (mythic-roll-dice 10)\\n (if important\\n 2\\n 0))))\\n (org-cycle)\\n (insert (format \\u0026quot;Stat check: %s\\u0026quot;\\n (cond ((\\u0026lt;= roll 2) \\u0026quot;very weak -75%\\u0026quot;)\\n ((and (\\u0026gt;= roll 3) (\\u0026lt;= roll 4)) \\u0026quot;weak -50%\\u0026quot;)\\n ((and (\\u0026gt;= roll 5) (\\u0026lt;= roll 6)) \\u0026quot;less -10%\\u0026quot;)\\n ((and (\\u0026gt;= roll 7) (\\u0026lt;= roll 11)) \\u0026quot;expected baseline\\u0026quot;)\\n ((and (\\u0026gt;= roll 12) (\\u0026lt;= roll 14)) \\u0026quot;more +10%\\u0026quot;)\\n ((and (\\u0026gt;= roll 15) (\\u0026lt;= roll 16)) \\u0026quot;strong +50%\\u0026quot;)\\n ((and (\\u0026gt;= roll 17) (\\u0026lt;= roll 18)) \\u0026quot;very strong +100%\\u0026quot;)\\n ((and (\\u0026gt;= roll 19) (\\u0026lt;= roll 20)) \\u0026quot;PC baseline\\u0026quot;)\\n ((and (\\u0026gt;= roll 21) (\\u0026lt;= roll 22)) \\u0026quot;PC more +10%\\u0026quot;)\\n ((and (\\u0026gt;= roll 23) (\\u0026lt;= roll 24)) \\u0026quot;PC strong +50%\\u0026quot;)\\n ((\\u0026gt;= roll 25) \\u0026quot;PC very strong +100%\\u0026quot;))))))\\n\\n(defun mythic-get-creature-look (class)\\n \\u0026quot;\\u0026quot;\\n (let* ((look-roll (mythic-roll-dice 100))\\n (look (cdr\\n (cond ((\\u0026lt;= look-roll 5) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;fishlike\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;furry\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;humanoid\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;air-based\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;very ugly\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;insect-like\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . (mythic-get-creature-look \\u0026quot;animal\\u0026quot;))\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;liquid\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;tree-like\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;decayed\\u0026quot;))))\\n ((\\u0026lt;= look-roll 10) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;stinky\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;clawed\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;humanoid-like\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . (mythic-get-creature-look \\u0026quot;alien\\u0026quot;))\\n (\\u0026quot;humanoid\\u0026quot; . (mythic-get-creature-look \\u0026quot;animal\\u0026quot;))\\n (\\u0026quot;insect\\u0026quot; . (mythic-get-creature-look \\u0026quot;alien\\u0026quot;))\\n (\\u0026quot;supernatural beast\\u0026quot; . (mythic-get-creature-look \\u0026quot;alien\\u0026quot;))\\n (\\u0026quot;amorphous\\u0026quot; . (mythic-get-creature-look \\u0026quot;elemental\\u0026quot;))\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;vines/tentacles\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;skeletal\\u0026quot;))))\\n ((\\u0026lt;= look-roll 15) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;tentacled\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;sharp teeth\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;make of wood\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . (mythic-get-creature-look \\u0026quot;humanoid\\u0026quot;))\\n (\\u0026quot;humanoid\\u0026quot; . (mythic-get-creature-look \\u0026quot;supernatural beast\\u0026quot;))\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;carapace\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . (mythic-get-creature-look \\u0026quot;elemental\\u0026quot;))\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;Amorphous\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . (mythic-get-creature-look \\u0026quot;amorphous\\u0026quot;))\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;Insubstantial\\u0026quot;))))\\n ((\\u0026lt;= look-roll 20) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . (mythic-get-creature-look \\u0026quot;animal\\u0026quot;))\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;tail\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;made of stone\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;fire-based\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;toothy\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;bug-like\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . (mythic-get-creature-look \\u0026quot;insect\\u0026quot;))\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;multiple eyes\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;mushroom-like\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;shadowy\\u0026quot;))))\\n ((\\u0026lt;= look-roll 25) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;extra limbs\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;long-haired\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;inscribed with symbols\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . (mythic-get-creature-look \\u0026quot;amorphous\\u0026quot;))\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;primitive\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;furry\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;sharp teeth\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;clingy/sticky\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;thorny\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;cold\\u0026quot;))))\\n ((\\u0026lt;= look-roll 30) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;clothed\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;ugly\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;exudes steam/smoke\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;cloud-like\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;tusks\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;mandibles\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;glowing eyes\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;tentacles\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;colorful\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . (mythic-get-creature-look \\u0026quot;humanoid\\u0026quot;)))))\\n ((\\u0026lt;= look-roll 35) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;nightmarish\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;bird-like\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;made of common items\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;water-based\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;pointed ears\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;multiple legs\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;combination of animals\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;bubbling\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;aquatic\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;foul smelling\\u0026quot;))))\\n ((\\u0026lt;= look-roll 40) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;multi-eyed\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;odd color\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;shaped like an animal\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;levitating/flying\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;fine features\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;worm-like\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;winged\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;cloud-like\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;toothy maw\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;silent\\u0026quot;))))\\n ((\\u0026lt;= look-roll 45) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;dripping\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;growling\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . (mythic-get-creature-look \\u0026quot;animal\\u0026quot;))\\n (\\u0026quot;elemental\\u0026quot; . (mythic-get-creature-look \\u0026quot;animal\\u0026quot;))\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;crude clothing\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;humanoid\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;horned\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;transparent\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;rowered\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;filthy\\u0026quot;))))\\n ((\\u0026lt;= look-roll 50) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . (mythic-get-creature-look \\u0026quot;supernatural beast\\u0026quot;))\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;hopping\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . (mythic-get-creature-look \\u0026quot;insect\\u0026quot;))\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;noisy\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;wielding a weapon\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;pincers/claws\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;bird-like\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;floating/levitating\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;rooted in the ground\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;looks alive\\u0026quot;))))\\n ((\\u0026lt;= look-roll 55) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;levitating\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;tusks\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;made of unusual substance\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;earth-based\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;wearing armour\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;wall-crawling\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;mammalian\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;inky black\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;can fly/float\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . (mythic-get-creature-look \\u0026quot;animal\\u0026quot;)))))\\n ((\\u0026lt;= look-roll 60) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;insectlike\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;hooves\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;wields a weapon\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;unusual substance\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;horned\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;eyes on stalks\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;reptilian\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;green\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;humanoid shape\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;twisted human\\u0026quot;))))\\n ((\\u0026lt;= look-roll 65) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . (mythic-get-creature-look \\u0026quot;insect\\u0026quot;))\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;mammalian\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;glowing eyes\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;humanoid\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . (mythic-get-creature-look \\u0026quot;alien\\u0026quot;))\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;multiple eyes\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;aquatic\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;purple\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;collection of smaller plants\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;mummified\\u0026quot;))))\\n ((\\u0026lt;= look-roll 70) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;wormlike\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;spotted\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;noisy\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;flowing shape\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;odd skin color\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;aquatic\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;has a tail\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;brown\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;covered with leaves\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;glowing eyes\\u0026quot;))))\\n ((\\u0026lt;= look-roll 75) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;humanoid looking\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;reptilian\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;made of metal\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;solid\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;very intelligent\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;spider-like\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;multiple eyes\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;blob-like\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;stinks\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;howling/growling\\u0026quot;))))\\n ((\\u0026lt;= look-roll 80) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;bony\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;aquatic\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;falling apart, in ill repair\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;clawed\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;dumb\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;agile\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;tentacles\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;shape shifts\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;ambulatory legs\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;claws\\u0026quot;))))\\n ((\\u0026lt;= look-roll 85) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;odd colored\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;amphibious\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;shape changing\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;has facial features\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;reptilian\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;winged\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;odd colored\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;forms a simple shape\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;moving roots\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;fangs\\u0026quot;))))\\n ((\\u0026lt;= look-roll 90) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;serpent-like\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;winged\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;levitating\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;liquid\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;has a taild\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;odd colored\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;extra limbs\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;pulsating\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;coated in bark\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;ghoulish\\u0026quot;))))\\n ((\\u0026lt;= look-roll 95) (assoc class \\u0026#39;((\\u0026quot;alien\\u0026quot; . \\u0026quot;aquatic\\u0026quot;)\\n (\\u0026quot;animal\\u0026quot; . \\u0026quot;horns/antlers\\u0026quot;)\\n (\\u0026quot;animated\\u0026quot; . \\u0026quot;robotic\\u0026quot;)\\n (\\u0026quot;elemental\\u0026quot; . \\u0026quot;composed of small items\\u0026quot;)\\n (\\u0026quot;humanoid\\u0026quot; . \\u0026quot;beautiful\\u0026quot;)\\n (\\u0026quot;insect\\u0026quot; . \\u0026quot;has a stinger\\u0026quot;)\\n (\\u0026quot;supernatural beast\\u0026quot; . \\u0026quot;furry\\u0026quot;)\\n (\\u0026quot;amorphous\\u0026quot; . \\u0026quot;wall-crawling\\u0026quot;)\\n (\\u0026quot;plant\\u0026quot; . \\u0026quot;fungus\\u0026quot;)\\n (\\u0026quot;undead\\u0026quot; . \\u0026quot;gaunt\\u0026quot;))))\\n ((\\u0026lt;= look-roll 100) \\u0026#39;( nil .\\u0026quot;GM decision\\u0026quot;))))))\\n (when (listp look)\\n (setq look (eval look)))\\n look))\\n\\n(defun mythic-creature-crafter ()\\n \\u0026quot;\\u0026quot;\\n (interactive)\\n (let* ((size-roll (mythic-roll-dice 100))\\n (size (cond ((\\u0026lt;= size-roll 5) \\u0026quot;tiny\\u0026quot;)\\n ((and (\\u0026gt;= size-roll 6)\\n (\\u0026lt;= size-roll 20)) \\u0026quot;small\\u0026quot;)\\n ((and (\\u0026gt;= size-roll 21)\\n (\\u0026lt;= size-roll 70)) \\u0026quot;human-sized\\u0026quot;)\\n ((and (\\u0026gt;= size-roll 71)\\n (\\u0026lt;= size-roll 85)) \\u0026quot;large\\u0026quot;)\\n ((and (\\u0026gt;= size-roll 86)\\n (\\u0026lt;= size-roll 95)) \\u0026quot;very large\\u0026quot;)\\n ((\\u0026gt;= size-roll 96) \\u0026quot;gigantic\\u0026quot;)))\\n (class-roll (mythic-roll-dice 100))\\n (class (cond ((\\u0026lt;= class-roll 10) \\u0026quot;alien\\u0026quot;)\\n ((and (\\u0026gt;= class-roll 11)\\n (\\u0026lt;= class-roll 20)) \\u0026quot;animal\\u0026quot;)\\n ((and (\\u0026gt;= class-roll 21)\\n (\\u0026lt;= class-roll 30)) \\u0026quot;animated\\u0026quot;)\\n ((and (\\u0026gt;= class-roll 31)\\n (\\u0026lt;= class-roll 40)) \\u0026quot;elemental\\u0026quot;)\\n ((and (\\u0026gt;= class-roll 41)\\n (\\u0026lt;= class-roll 50)) \\u0026quot;humanoid\\u0026quot;)\\n ((and (\\u0026gt;= class-roll 51)\\n (\\u0026lt;= class-roll 60))\\n \\u0026quot;supernatural beast\\u0026quot;)\\n ((and (\\u0026gt;= class-roll 61)\\n (\\u0026lt;= class-roll 70)) \\u0026quot;amorphous\\u0026quot;)\\n ((and (\\u0026gt;= class-roll 71)\\n (\\u0026lt;= class-roll 80)) \\u0026quot;plant\\u0026quot;)\\n ((and (\\u0026gt;= class-roll 81)\\n (\\u0026lt;= class-roll 90)) \\u0026quot;undead\\u0026quot;)\\n ((and (\\u0026gt;= class-roll 91)\\n (\\u0026lt;= class-roll 100)) \\u0026quot;insect\\u0026quot;)))\\n (look (mythic-get-creature-look class))\\n (look2 (mythic-get-creature-look class)))\\n (insert (format \\u0026quot;Creature: %s, %s: %s, %s\\u0026quot; size class look look2))))\\n\\n(defun mythic-creature-ability ()\\n \\u0026quot;\\u0026quot;\\n (interactive)\\n (let* ((roll (mythic-roll-dice 100))\\n (ability (cond\\n ((\\u0026lt;= roll 30) \\u0026quot;No special ability\\u0026quot;)\\n ((= roll 31) \\u0026quot;Gaze attack\\u0026quot;)\\n ((\\u0026lt;= roll 35) \\u0026quot;Resist damage\\u0026quot;)\\n ((= roll 36) \\u0026quot;Burst of speed\\u0026quot;)\\n ((\\u0026lt;= roll 39) \\u0026quot;Flight\\u0026quot;)\\n ((= roll 40) \\u0026quot;Swim\\u0026quot;)\\n ((\\u0026lt;= roll 44) \\u0026quot;Enhanced sense\\u0026quot;)\\n ((\\u0026lt;= roll 46) \\u0026quot;Concealment\\u0026quot;)\\n ((= roll 47) \\u0026quot;Paralysis\\u0026quot;)\\n ((\\u0026lt;= roll 51) \\u0026quot;Natural weaponry\\u0026quot;)\\n ((\\u0026lt;= roll 54) \\u0026quot;Climber\\u0026quot;)\\n ((\\u0026lt;= roll 56) \\u0026quot;Poison\\u0026quot;)\\n ((= roll 57) \\u0026quot;Charge\\u0026quot;)\\n ((= roll 58) \\u0026quot;Distraction\\u0026quot;)\\n ((= roll 59) \\u0026quot;Entangle\\u0026quot;)\\n ((\\u0026lt;= roll 61) \\u0026quot;Specific vulnerability\\u0026quot;)\\n ((\\u0026lt;= roll 63) \\u0026quot;Unusual sense\\u0026quot;)\\n ((\\u0026lt;= roll 65) \\u0026quot;Extra defense\\u0026quot;)\\n ((= roll 66) \\u0026quot;Telepathy\\u0026quot;)\\n ((\\u0026lt;= roll 70) \\u0026quot;Limited use\\u0026quot;)\\n ((\\u0026lt;= roll 74) \\u0026quot;Grievous attack\\u0026quot;)\\n ((= roll 75) \\u0026quot;Summon\\u0026quot;)\\n ((\\u0026lt;= roll 77) \\u0026quot;Immunity\\u0026quot;)\\n ((= roll 78) \\u0026quot;Tunneling\\u0026quot;)\\n ((= roll 79) \\u0026quot;Targeted attack\\u0026quot;)\\n ((\\u0026lt;= roll 82) \\u0026quot;Meta power\\u0026quot;)\\n ((\\u0026lt;= roll 86) \\u0026quot;Ranged attack\\u0026quot;)\\n ((\\u0026lt;= roll 88) \\u0026quot;Alternate form of attack\\u0026quot;)\\n ((\\u0026lt;= roll 90) \\u0026quot;Frightening\\u0026quot;)\\n ((= roll 91) \\u0026quot;Life force drain\\u0026quot;)\\n ((\\u0026lt;= roll 93) \\u0026quot;Fast healing\\u0026quot;)\\n ((= roll 94) \\u0026quot;Attribute damage\\u0026quot;)\\n ((= roll 95) \\u0026quot;Dual classification\\u0026quot;)\\n ((= roll 96) \\u0026quot;Defensive perimeter\\u0026quot;)\\n ((= roll 97) \\u0026quot;Incorporeal\\u0026quot;)\\n ((= roll 98) \\u0026quot;Animate\\u0026quot;)\\n ((= roll 99) \\u0026quot;Multi-environment\\u0026quot;)\\n ((= roll 100) \\u0026quot;Transformation\\u0026quot;))))\\n (insert\\n (format \\u0026quot;Special ability: %s\\u0026quot; ability))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_cmatr\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmo63z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"LazyAmphibian\", \"num_crossposts\": 1, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/mythic_gme/comments/cmo63z/running_mythic_in_emacs_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/mythic_gme/comments/cmo63z/running_mythic_in_emacs_orgmode/\", \"subreddit_subscribers\": 552, \"created_utc\": 1565082062.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1565171237.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.mythic_gme\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmzimt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BlindGuyNW\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_cmo63z\", \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmzimt/running_mythic_in_emacs_orgmode/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/mythic_gme/comments/cmo63z/running_mythic_in_emacs_orgmode/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565142437.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I recently discovered the org-agenda option to put time lapses by adding two hyphens between two dates (\\u003C2019-08-06\\u003E--\\u003C2019-08-09\\u003E). Adding lapses in this way the agenda shows each day with a type counter (2/3) and I like this a lot. \\n\\nHowever, for the use I want to give it would be better to exclude certain days, for example, weekends. I would like you to show me:\\n\\n```\\n- Friday (2/5)\\n- Monday (3/5)\\n```\\n\\nThe `org-agenda-span` variable doesn't do what I'm looking for, it just defines how many days to show on each page. Is it possible to do this with the org-mode agenda? Thanks!\", \"author_fullname\": \"t2_nklq0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"It's possible to exclude days in org-agenda?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmzg73\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565170872.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI recently discovered the org-agenda option to put time lapses by adding two hyphens between two dates (\\u0026lt;2019-08-06\\u0026gt;--\\u0026lt;2019-08-09\\u0026gt;). Adding lapses in this way the agenda shows each day with a type counter (2/3) and I like this a lot. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, for the use I want to give it would be better to exclude certain days, for example, weekends. I would like you to show me:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n- Friday (2/5)\\n- Monday (3/5)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe \\u003Ccode\\u003Eorg-agenda-span\\u003C/code\\u003E variable doesn\\u0026#39;t do what I\\u0026#39;m looking for, it just defines how many days to show on each page. Is it possible to do this with the org-mode agenda? Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmzg73\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"juacq97\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmzg73/its_possible_to_exclude_days_in_orgagenda/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmzg73/its_possible_to_exclude_days_in_orgagenda/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565142072.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have an org file with source block of Dart language. I verified that once I have the source code block, then the export to PDF would not produce a table of content, and the source code block would be just treated as an ordinary paragraph, not properly formatted source code. How can I debug the problem?\\n\\nI tried to export as HTML, it works as expected in terms of content and format. \\n\\nHere is the content of the file:\\n\\n #+TITLE: A Document with Dart Source Code\\n \\n * Introduction\\n \\n Bla...bla...\\n * Designs\\n \\n #+NAME:map_example\\n #+BEGIN_SRC dart\\n void main() {\\n }\\n #+END_SRC\\n \\n * Top Section 1\\n \\n ** Subsection 1.1\\n \\n * Top Section 2\\n \\n ** Subsection 2.1\\n\\nhttps://i.redd.it/mmy3rrl2bxe31.png\", \"author_fullname\": \"t2_npp5h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to debug org export to PDF no table of content, and source code of Dart language formated as ordinary paragraph?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"mmy3rrl2bxe31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 790, \"x\": 845, \"u\": \"https://i.redd.it/mmy3rrl2bxe31.png\"}, \"m\": \"image/png\", \"id\": \"mmy3rrl2bxe31\"}}, \"name\": \"t3_cmytgt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565167418.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have an org file with source block of Dart language. I verified that once I have the source code block, then the export to PDF would not produce a table of content, and the source code block would be just treated as an ordinary paragraph, not properly formatted source code. How can I debug the problem?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to export as HTML, it works as expected in terms of content and format. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is the content of the file:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+TITLE: A Document with Dart Source Code\\n\\n* Introduction\\n\\n Bla...bla...\\n* Designs\\n\\n#+NAME:map_example\\n#+BEGIN_SRC dart\\nvoid main() {\\n}\\n#+END_SRC\\n\\n* Top Section 1\\n\\n** Subsection 1.1\\n\\n* Top Section 2\\n\\n** Subsection 2.1\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/mmy3rrl2bxe31.png\\\"\\u003Ehttps://i.redd.it/mmy3rrl2bxe31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmytgt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"yubrshen\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmytgt/how_to_debug_org_export_to_pdf_no_table_of/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmytgt/how_to_debug_org_export_to_pdf_no_table_of/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565138618.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello,\\n\\nWhen I am evaluating source blocks in org-mode they produce some weird output.\\n\\nIn case of Scala, I presume, the problem occurs because of the coloured output.\\n\\n```\\n#+BEGIN_SRC scala\\n1 + 1\\n#+END_SRC\\n\\n#+RESULTS:\\n: \\u001b[1m\\u001b[34mres10\\u001b[0m: \\u001b[1m\\u001b[32mInt\\u001b[0m = 2\\n: \\n: ob_scala_eol\\u001b[35m\\n: scala\\u003E \\u001b[0m\\u001b[35m\\n: scala\\u003E \\u001b[0m\\n```\\n\\nGoogling led me nowhere :(\\nI don't understand why does it use colours at all.\\n\\nAny ideas?\", \"author_fullname\": \"t2_i0izy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[org-mode] colour codes in source output\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmw3k3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565153969.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I am evaluating source blocks in org-mode they produce some weird output.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn case of Scala, I presume, the problem occurs because of the coloured output.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+BEGIN_SRC scala\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E1 + 1\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+END_SRC\\u003C/h1\\u003E\\n\\n\\u003Ch1\\u003E+RESULTS:\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E: [1m[34mres10[0m: [1m[32mInt[0m = 2\\n: \\n: ob_scala_eol[35m\\n: scala\\u0026gt; [0m[35m\\n: scala\\u0026gt; [0m\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGoogling led me nowhere :(\\nI don\\u0026#39;t understand why does it use colours at all.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmw3k3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Nondv\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmw3k3/orgmode_colour_codes_in_source_output/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmw3k3/orgmode_colour_codes_in_source_output/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565125169.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, on my current job I'm going to start developing using the lit-html library, which uses javascript template literals to render html and css. Given that files are native javascript, I have no problem with completion there. But all the code inside `\\\\`` backticks is colored as a normal strings and I get no completion for html nor css. It doesn't work exactly like React so rjsx does not work. Anybody got any ideas?\", \"author_fullname\": \"t2_s7o4rj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a plugin to work on lit-html?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmtvib\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565142689.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, on my current job I\\u0026#39;m going to start developing using the lit-html library, which uses javascript template literals to render html and css. Given that files are native javascript, I have no problem with completion there. But all the code inside \\u003Ccode\\u003E\\\\\\u003C/code\\u003E` backticks is colored as a normal strings and I get no completion for html nor css. It doesn\\u0026#39;t work exactly like React so rjsx does not work. Anybody got any ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmtvib\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eliseven\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmtvib/is_there_a_plugin_to_work_on_lithtml/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmtvib/is_there_a_plugin_to_work_on_lithtml/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565113889.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Just wanted to make a post about how much I've been enjoying [vterm.el](https://github.com/akermu/emacs-libvterm) after switching to it at the beginning of last week. I was looking for a better shell solution for inside emacs and my coworker mentioned that vim had support for something called `libvterm`. Not knowing what it was, I did some research and later found out that someone was working on an emacs mode for `libvterm`.\\n\\nI tried it out but at that point it was very buggy and caused emacs to crash very often. I shelved the idea for a few months and decided to try it again at the beginning of last week. All I have to say is: wow. It's awesome! It's everything I could ever want from a shell mode in emacs. You can run any program (alasmixer, nethack, npm, etc.) and it all displays fine and works fine - *without disrupting my emacs flow.* You can set certain keybindings to not register in the terminal such as `C-x` or `M-o`, which allows you to have an unhindered emacs experience (I haven't figured out how to get `ESC` commands to work yet). I'm not sure how well it would work with a really complex program such as expo (for React Native developers) since it generates a QR code and displays it in shell (when ran in the standard macOS terminal). I don't use expo, so I'm not sure.\\n\\nAnyways, if you're looking for a really excellent shell for inside emacs, look no farther! :)\\n\\n\\u0026#x200B;\\n\\nPS: It is still in alpha stage, I believe, so your mileage may vary. I have had a few bugs where a black box appears in the top right corner and when changing to the buffer the screen being blank until a button is pressed. However, these are very minor, IMO.\", \"author_fullname\": \"t2_og1o5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"`emacs-libvterm` is awesome\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmrhgs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 87, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 87, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565131522.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust wanted to make a post about how much I\\u0026#39;ve been enjoying \\u003Ca href=\\\"https://github.com/akermu/emacs-libvterm\\\"\\u003Evterm.el\\u003C/a\\u003E after switching to it at the beginning of last week. I was looking for a better shell solution for inside emacs and my coworker mentioned that vim had support for something called \\u003Ccode\\u003Elibvterm\\u003C/code\\u003E. Not knowing what it was, I did some research and later found out that someone was working on an emacs mode for \\u003Ccode\\u003Elibvterm\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried it out but at that point it was very buggy and caused emacs to crash very often. I shelved the idea for a few months and decided to try it again at the beginning of last week. All I have to say is: wow. It\\u0026#39;s awesome! It\\u0026#39;s everything I could ever want from a shell mode in emacs. You can run any program (alasmixer, nethack, npm, etc.) and it all displays fine and works fine - \\u003Cem\\u003Ewithout disrupting my emacs flow.\\u003C/em\\u003E You can set certain keybindings to not register in the terminal such as \\u003Ccode\\u003EC-x\\u003C/code\\u003E or \\u003Ccode\\u003EM-o\\u003C/code\\u003E, which allows you to have an unhindered emacs experience (I haven\\u0026#39;t figured out how to get \\u003Ccode\\u003EESC\\u003C/code\\u003E commands to work yet). I\\u0026#39;m not sure how well it would work with a really complex program such as expo (for React Native developers) since it generates a QR code and displays it in shell (when ran in the standard macOS terminal). I don\\u0026#39;t use expo, so I\\u0026#39;m not sure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyways, if you\\u0026#39;re looking for a really excellent shell for inside emacs, look no farther! :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: It is still in alpha stage, I believe, so your mileage may vary. I have had a few bugs where a black box appears in the top right corner and when changing to the buffer the screen being blank until a button is pressed. However, these are very minor, IMO.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmrhgs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"k_thenuclear_b\", \"num_crossposts\": 0, \"num_comments\": 41, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmrhgs/emacslibvterm_is_awesome/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmrhgs/emacslibvterm_is_awesome/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565102722.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3hnit\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Great option for editing Org mode files on the go: org-web\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmr1n3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 35, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 35, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565129315.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"200ok.ch\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmr1n3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"preek\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmr1n3/great_option_for_editing_org_mode_files_on_the_go/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://200ok.ch/posts/2019-08-05_great_option_for_editing_org_mode_files_on_the_go.html\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565100515.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_ybflf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GitHub - wandersoncferreira/ivy-clojuredocs: Searching for help in ClojureDocs.org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmpwvi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565123099.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmpwvi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bartuka\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmpwvi/github_wandersoncferreiraivyclojuredocs_searching/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/wandersoncferreira/ivy-clojuredocs\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565094299.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_fxo206v\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Playing emacs like an instrument - amazing video that covers emacs capabilities\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmpkm3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 84, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/gfZDwYeBlO4?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Play Emacs like an instrument\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/gfZDwYeBlO4?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Alain M. Lafon\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/gfZDwYeBlO4/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/preek666\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/gfZDwYeBlO4?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cmpkm3\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 84, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565121057.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmpkm3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mykyta-shyrin\", \"num_crossposts\": 0, \"num_comments\": 22, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmpkm3/playing_emacs_like_an_instrument_amazing_video/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://youtu.be/gfZDwYeBlO4\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565092257.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Play Emacs like an instrument\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/gfZDwYeBlO4?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Alain M. Lafon\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/gfZDwYeBlO4/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/preek666\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am using ivy-switch-buffer and all-the-icons-ivy to switch between buffers. However, I noticed that the font size differs from entry to entry and also some buffers are shown with their absolute paths while for others only the buffer name is shown. \\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/i4td2q24fse31.png\\n\\nWhy is that and how can I fix that? Also what do the red entries mean?\", \"author_fullname\": \"t2_3p3qqcr1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ivy-switch-buffer path display\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"i4td2q24fse31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 592, \"x\": 948, \"u\": \"https://i.redd.it/i4td2q24fse31.png\"}, \"m\": \"image/png\", \"id\": \"i4td2q24fse31\"}}, \"name\": \"t3_cmnuru\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565108213.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am using ivy-switch-buffer and all-the-icons-ivy to switch between buffers. However, I noticed that the font size differs from entry to entry and also some buffers are shown with their absolute paths while for others only the buffer name is shown. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/i4td2q24fse31.png\\\"\\u003Ehttps://i.redd.it/i4td2q24fse31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy is that and how can I fix that? Also what do the red entries mean?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmnuru\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sewing31\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmnuru/ivyswitchbuffer_path_display/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmnuru/ivyswitchbuffer_path_display/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565079413.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"As in the previous thread don't feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly tips/trick/etc/ thread\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmnumy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565108185.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs in the previous thread don\\u0026#39;t feel constrained in regards to what you post, just keep your post in the spirit of weekly threads like those in other subreddits.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmnumy\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 33, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": true, \"url\": \"https://www.reddit.com/r/emacs/comments/cmnumy/weekly_tipstricketc_thread/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565079385.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I like my cursor to blink, but I've noticed that if I enable the cursor to blink on xterm it won't blink on Emacs running on the same xterm (I use emacs-nox). \\nIf I disable the blinking cursor on xterm, it does blink on Emacs. \\nSo, what I'm doing is disabling blinking on xterm, start Emacs and then enable blinking on xterm again, but it is sort of a PITA... Does anyone like its cursor to blink and have another solution to this?\\n\\nI'm running Emacs 26.1 (emacs-nox), XTerm(344) on Debian Buster.\", \"author_fullname\": \"t2_10q2tn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Blinking Cursor and Xterm\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmk7hj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565084378.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like my cursor to blink, but I\\u0026#39;ve noticed that if I enable the cursor to blink on xterm it won\\u0026#39;t blink on Emacs running on the same xterm (I use emacs-nox).\\u003Cbr/\\u003E\\nIf I disable the blinking cursor on xterm, it does blink on Emacs.\\u003Cbr/\\u003E\\nSo, what I\\u0026#39;m doing is disabling blinking on xterm, start Emacs and then enable blinking on xterm again, but it is sort of a PITA... Does anyone like its cursor to blink and have another solution to this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m running Emacs 26.1 (emacs-nox), XTerm(344) on Debian Buster.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmk7hj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hictio\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmk7hj/blinking_cursor_and_xterm/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmk7hj/blinking_cursor_and_xterm/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565055578.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I tried customizing the mode line in emacs. Tried to create it from scratch without any packages and with [telephone-line](https://github.com/dbordak/telephone-line).\\n\\nWith the default configuration, there were no issues. Except that I didn't like it.\\n\\nI tried creating a custom config using mode-line-format and telephone-line ([as in this example](https://github.com/dbordak/telephone-line/blob/master/examples.org)).\\n\\nThey both sort of worked, the mode line changed how I specified, but it didn't update to reflect changes, like a modified buffer or actually changing buffers.\\n\\nI put both configs in the .emacs file.\\n\\nAt this point, I am very confused as to what I should do to fix \\n\\nEDIT:\\n\\nMy entire [.emacs](https://pastebin.com/cNtiXMke) file. The `mode-line-format` is commented out as to not interfere with `telephone-line` customization.\\n\\nThe config for the mode line is at the very bottom.\", \"author_fullname\": \"t2_tq7ct\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Mode line doesn't update when customized\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"green\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmjpkl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Solved\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565059164.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565081674.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI tried customizing the mode line in emacs. Tried to create it from scratch without any packages and with \\u003Ca href=\\\"https://github.com/dbordak/telephone-line\\\"\\u003Etelephone-line\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith the default configuration, there were no issues. Except that I didn\\u0026#39;t like it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried creating a custom config using mode-line-format and telephone-line (\\u003Ca href=\\\"https://github.com/dbordak/telephone-line/blob/master/examples.org\\\"\\u003Eas in this example\\u003C/a\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThey both sort of worked, the mode line changed how I specified, but it didn\\u0026#39;t update to reflect changes, like a modified buffer or actually changing buffers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI put both configs in the .emacs file.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt this point, I am very confused as to what I should do to fix \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy entire \\u003Ca href=\\\"https://pastebin.com/cNtiXMke\\\"\\u003E.emacs\\u003C/a\\u003E file. The \\u003Ccode\\u003Emode-line-format\\u003C/code\\u003E is commented out as to not interfere with \\u003Ccode\\u003Etelephone-line\\u003C/code\\u003E customization.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe config for the mode line is at the very bottom.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"41a4184e-cea7-11e6-9575-0eff92f5bd12\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmjpkl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Muscle_Man1993\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmjpkl/mode_line_doesnt_update_when_customized/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmjpkl/mode_line_doesnt_update_when_customized/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565052874.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm quite perplexed by flymake.\\n\\nI thought it was built-in to emacs. It seems like it already installed because `apropos-command` shows a number of \\\"flymake\\\" functions already available.\\n\\n`list-packages` shows that it is *available* to install:\\n\\n\\u003E flymake 1.0.8 available gnu A universal on-the-fly syntax checker\\n\\nBut then `use-package` fails to install eglot package by claiming that flymake isn't on ELPA (and it is, I checked the url in my web browser):\\n\\n\\u003EDebugger entered--Lisp error: (file-error \\\"[https://elpa.gnu.org/packages/flymake-1.0.8.el](https://elpa.gnu.org/packages/flymake-1.0.8.el)\\\" \\\"Bad Request\\\")\\n\\nSo I'm left wondering about flymake's status: Is it actually built into emacs as it seems? Then why does it say it isn't installed? Why can't it be installed as a dependency for another package?\\n\\nMy emacs version is:\\n\\n\\u003EGNU Emacs 26.2 (build 1, x86\\\\_64-pc-linux-gnu, GTK+ Version 3.24.8) of 2019-04-13\", \"author_fullname\": \"t2_zqq5m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"flymake's status is unclear\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmjfqf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565080167.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m quite perplexed by flymake.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought it was built-in to emacs. It seems like it already installed because \\u003Ccode\\u003Eapropos-command\\u003C/code\\u003E shows a number of \\u0026quot;flymake\\u0026quot; functions already available.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elist-packages\\u003C/code\\u003E shows that it is \\u003Cem\\u003Eavailable\\u003C/em\\u003E to install:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eflymake 1.0.8 available gnu A universal on-the-fly syntax checker\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EBut then \\u003Ccode\\u003Euse-package\\u003C/code\\u003E fails to install eglot package by claiming that flymake isn\\u0026#39;t on ELPA (and it is, I checked the url in my web browser):\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDebugger entered--Lisp error: (file-error \\u0026quot;\\u003Ca href=\\\"https://elpa.gnu.org/packages/flymake-1.0.8.el\\\"\\u003Ehttps://elpa.gnu.org/packages/flymake-1.0.8.el\\u003C/a\\u003E\\u0026quot; \\u0026quot;Bad Request\\u0026quot;)\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;m left wondering about flymake\\u0026#39;s status: Is it actually built into emacs as it seems? Then why does it say it isn\\u0026#39;t installed? Why can\\u0026#39;t it be installed as a dependency for another package?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy emacs version is:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EGNU Emacs 26.2 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.8) of 2019-04-13\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmjfqf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"dukereg\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmjfqf/flymakes_status_is_unclear/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmjfqf/flymakes_status_is_unclear/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565051367.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is it possible to run GUI programs inside a regular Emacs session without having to run EXWM as your (main) window manager?\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"EXWM inside a WM? or EXWM as GUI tmux\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmh0qf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565068146.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to run GUI programs inside a regular Emacs session without having to run EXWM as your (main) window manager?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmh0qf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmh0qf/exwm_inside_a_wm_or_exwm_as_gui_tmux/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmh0qf/exwm_inside_a_wm_or_exwm_as_gui_tmux/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565039346.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[WIP] prism.el: Highlight Lisp forms according to depth\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmfow2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 19, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 19, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565062283.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmfow2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmfow2/wip_prismel_highlight_lisp_forms_according_to/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/alphapapa/prism.el\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565033483.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Is there a recommended touch typing tutor for emacs?\\n\\nI\\u2019ve found https://github.com/hagleitn/speed-type, but it pretty stale for years now. I haven\\u2019t tested it yet, but anyone here using it? Or any other package to recommend?\", \"author_fullname\": \"t2_cwb51\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Touch typing tutor for emacs?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmf1m2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565059479.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a recommended touch typing tutor for emacs?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ve found \\u003Ca href=\\\"https://github.com/hagleitn/speed-type\\\"\\u003Ehttps://github.com/hagleitn/speed-type\\u003C/a\\u003E, but it pretty stale for years now. I haven\\u2019t tested it yet, but anyone here using it? Or any other package to recommend?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmf1m2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"to1ne\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmf1m2/touch_typing_tutor_for_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmf1m2/touch_typing_tutor_for_emacs/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565030679.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I haven't found anything yet\", \"author_fullname\": \"t2_3ixmiy8z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"All the icons integration with helm?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmeksr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565057379.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI haven\\u0026#39;t found anything yet\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmeksr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"forppinrange\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmeksr/all_the_icons_integration_with_helm/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmeksr/all_the_icons_integration_with_helm/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565028579.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \" \\nVarious users out there (including myself) found it difficult to bind the C-= mentioned in official README. \\n.. - did anybody use karabiner or some hack/workaround?\", \"author_fullname\": \"t2_1szauu7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"folks using Terminal.app, what did you bind expand-region to?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cme1cw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565055009.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVarious users out there (including myself) found it difficult to bind the C-= mentioned in official README.\\u003Cbr/\\u003E\\n.. - did anybody use karabiner or some hack/workaround?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cme1cw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"oystersauce8\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cme1cw/folks_using_terminalapp_what_did_you_bind/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cme1cw/folks_using_terminalapp_what_did_you_bind/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565026209.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3cvn0zxc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Customize color theme in Spacemacs - Seorenn\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmdhat\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 15, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/Egx4jQPt1jM?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Spacemacs #24 Customize Color Theme | \\uceec\\ub7ec \\ud14c\\ub9c8 \\ucee4\\uc2a4\\ud130\\ub9c8\\uc774\\uc9d5\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/Egx4jQPt1jM?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Seorenn\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/Egx4jQPt1jM/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/Seorenn\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/Egx4jQPt1jM?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cmdhat\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 15, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565052574.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmdhat\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"comproprasad\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmdhat/customize_color_theme_in_spacemacs_seorenn/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=Egx4jQPt1jM\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565023774.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Spacemacs #24 Customize Color Theme | \\uceec\\ub7ec \\ud14c\\ub9c8 \\ucee4\\uc2a4\\ud130\\ub9c8\\uc774\\uc9d5\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/Egx4jQPt1jM?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Seorenn\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/Egx4jQPt1jM/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/Seorenn\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hello friends,\\n\\nI was wondering if anyone knows how can I regain the control of Emacs (using EXWM) after pressing `C-z` (`suspend-frame`). I usually have to restart Emacs (and therefore X) after I press it by error.\\n\\nI know I can rebind it so I don't have to worry about it, but I was wondering if it is actually possible to do this without restarting Emacs.\\n\\nThanks in advance!\", \"author_fullname\": \"t2_3xj7454j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"C-z (suspend-frame) on EXWM\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmclva\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565048663.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello friends,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was wondering if anyone knows how can I regain the control of Emacs (using EXWM) after pressing \\u003Ccode\\u003EC-z\\u003C/code\\u003E (\\u003Ccode\\u003Esuspend-frame\\u003C/code\\u003E). I usually have to restart Emacs (and therefore X) after I press it by error.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know I can rebind it so I don\\u0026#39;t have to worry about it, but I was wondering if it is actually possible to do this without restarting Emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmclva\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Desmesura\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmclva/cz_suspendframe_on_exwm/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmclva/cz_suspendframe_on_exwm/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565019863.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_8dk3r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Doom E14: Org Mode, Getting Organized with Tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmbtw5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 33, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/DxygfqLrFSU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E14: Org Mode, Getting Organized with Tasks\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/DxygfqLrFSU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/DxygfqLrFSU/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/DxygfqLrFSU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cmbtw5\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 33, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565044945.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmbtw5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zaiste\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmbtw5/emacs_doom_e14_org_mode_getting_organized_with/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=DxygfqLrFSU\\u0026feature=youtu.be\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565016145.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Emacs Doom E14: Org Mode, Getting Organized with Tasks\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/DxygfqLrFSU?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Zaiste\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/DxygfqLrFSU/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/ohzaiste\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Does anyone here work with Terraform? I've written the terraform-doc package to look up the docs.\\n\\n[https://github.com/TxGVNN/terraform-doc](https://github.com/TxGVNN/terraform-doc)\\n\\nHope it could be useful for someones\", \"author_fullname\": \"t2_zdwax\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"terraform-doc, look up the Terraform documentation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmb8zl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565041988.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone here work with Terraform? I\\u0026#39;ve written the terraform-doc package to look up the docs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/TxGVNN/terraform-doc\\\"\\u003Ehttps://github.com/TxGVNN/terraform-doc\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHope it could be useful for someones\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmb8zl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"txgvnn\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmb8zl/terraformdoc_look_up_the_terraform_documentation/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmb8zl/terraformdoc_look_up_the_terraform_documentation/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565013188.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_8dabp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Turtle+Notation3 mode for Emacs!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmalyp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565038403.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmalyp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"real_jeeger\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmalyp/turtlenotation3_mode_for_emacs/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://github.com/jeeger/ttl-mode\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565009603.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I'm happy to announce the release of Next 1.3.0, the Emacs of browsers! Native with Emacs keybindings (also VI).\\n\\n\\u0026#x200B;\\n\\nAbout Next:\\n\\nNext is a keyboard-oriented, extensible web-browser designed for power users. It's fully configurable and extensible in Common Lisp (very easy to get started if you know Elisp). Hack your browser live while it runs!\\n\\n\\u0026#x200B;\\n\\nNew in this release:\\n\\nIn this release we have made strides in turning Next into a daily driver! We have implemented ad-blocking, downloads, a Qt webengine port (blink renderer), text search, and more! To see the full list, please view the changelog here: [https://github.com/atlas-engineer/next/blob/master/documents/CHANGELOG.org](https://github.com/atlas-engineer/next/blob/master/documents/CHANGELOG.org)\\n\\n\\u0026#x200B;\\n\\nFuture work:\\n\\nWe plan to add ivy/helm like interface enhancements, explorability, and documentation.\\n\\n\\u0026#x200B;\\n\\nIf you would like to support Next and be a part of our project, please find our campaign for version 1.4.0: [https://www.indiegogo.com/projects/next-browser-v1-4-0#/](https://www.indiegogo.com/projects/next-browser-v1-4-0#/)\\n\\nstars on GitHub are also appreciated!\\n\\n\\u0026#x200B;\\n\\nThanks for your support :)!\", \"author_fullname\": \"t2_9b1sjpd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Next browser v1.3.0 release\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmak12\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 94, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 94, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565038087.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m happy to announce the release of Next 1.3.0, the Emacs of browsers! Native with Emacs keybindings (also VI).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAbout Next:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext is a keyboard-oriented, extensible web-browser designed for power users. It\\u0026#39;s fully configurable and extensible in Common Lisp (very easy to get started if you know Elisp). Hack your browser live while it runs!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENew in this release:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn this release we have made strides in turning Next into a daily driver! We have implemented ad-blocking, downloads, a Qt webengine port (blink renderer), text search, and more! To see the full list, please view the changelog here: \\u003Ca href=\\\"https://github.com/atlas-engineer/next/blob/master/documents/CHANGELOG.org\\\"\\u003Ehttps://github.com/atlas-engineer/next/blob/master/documents/CHANGELOG.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFuture work:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe plan to add ivy/helm like interface enhancements, explorability, and documentation.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you would like to support Next and be a part of our project, please find our campaign for version 1.4.0: \\u003Ca href=\\\"https://www.indiegogo.com/projects/next-browser-v1-4-0#/\\\"\\u003Ehttps://www.indiegogo.com/projects/next-browser-v1-4-0#/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Estars on GitHub are also appreciated!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for your support :)!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmak12\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jmercouris\", \"num_crossposts\": 0, \"num_comments\": 37, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cmak12/next_browser_v130_release/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cmak12/next_browser_v130_release/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565009287.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I have created the below snippet others can run, this has been frustrating me for days now, can anyone highlight when this prints out of order and turn it into a working example ?\\n\\n ;; attempt to send text in correct order\\n (defun test-repl-send-to-process (buffer process text)\\n (with-current-buffer buffer\\n (pop-to-buffer buffer)\\n (setq comint-process-echoes t)\\n (setq comint-scroll-to-bottom-on-input t)\\n \\n ;; go to end of buffer and insert text to buffer\\n (goto-char (point-max))\\n (insert text)\\n (newline)\\n \\n ;; make sure we are at the end send same text to process\\n ;; result should appear under text sent to buffer\\n (goto-char (point-max))\\n (comint-send-string (get-buffer-process buffer) text)\\n (comint-send-string (get-buffer-process buffer) \\\"\\\\n\\\")\\n (goto-char (point-max))))\\n \\n \\n ;; create the buffer and process\\n (defun test-repl-launch ()\\n (let* ((cmd \\\"python\\\")\\n (process (get-buffer-process \\\"*PythonTest*\\\"))\\n (buffer (get-buffer-create \\\"*PythonTest*\\\")))\\n (with-current-buffer buffer\\n (comint-mode)\\n (setq comint-process-echoes t)\\n (setq comint-scroll-to-bottom-on-input t)\\n (pop-to-buffer buffer)\\n (if (not (process-live-p (get-buffer-process \\\"*PythonTest*\\\")))\\n (start-process \\\"pythontest\\\" buffer \\\"python\\\" \\\"-i\\\")\\n (set-process-filter (get-buffer-process \\\"*PythonTest*\\\") (lambda (process string) string))))))\\n \\n ;; test it out\\n (let* ((cmd \\\"python\\\")\\n (buffer \\\"*PythonTest*\\\")\\n (process \\\"pythontest\\\"))\\n (test-repl-launch)\\n (sit-for 1)\\n (test-repl-send-to-process buffer process \\\"1 + 4;\\\\n\\\"))\\n \\n\\nThe above example outputs this.\\n\\n\\u0026#x200B;\\n\\n[Out of order text](https://i.redd.it/y84h5wt87le31.png)\\n\\nObviously I am after this output.\\n\\n\\u003E\\\\\\u003E\\u003E\\u003E 1 + 4; \\n\\u003E \\n\\u003E\\\\\\u003E\\u003E\\u003E 5 \\n\\u003E \\n\\u003E\\\\\\u003E\\u003E\\u003E\\n\\n\\u0026#x200B;\\n\\nI know there is a python mode and helpers from the comint library, but I would actually like to understand what is happening, this is a massive simplification of what I am trying to do so its easy to run and test with.\\n\\n\\u0026#x200B;\\n\\nAnyone have any pointers and able to explain whats happening here ?\", \"author_fullname\": \"t2_lyfoaxy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"After some help with controlling processes in elisp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"purple\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"y84h5wt87le31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 604, \"x\": 1448, \"u\": \"https://i.redd.it/y84h5wt87le31.png\"}, \"m\": \"image/png\", \"id\": \"y84h5wt87le31\"}}, \"name\": \"t3_cm85ta\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Question\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565021142.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have created the below snippet others can run, this has been frustrating me for days now, can anyone highlight when this prints out of order and turn it into a working example ?\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; attempt to send text in correct order\\n(defun test-repl-send-to-process (buffer process text)\\n (with-current-buffer buffer\\n (pop-to-buffer buffer)\\n (setq comint-process-echoes t)\\n (setq comint-scroll-to-bottom-on-input t)\\n\\n ;; go to end of buffer and insert text to buffer\\n (goto-char (point-max))\\n (insert text)\\n (newline)\\n\\n ;; make sure we are at the end send same text to process\\n ;; result should appear under text sent to buffer\\n (goto-char (point-max))\\n (comint-send-string (get-buffer-process buffer) text)\\n (comint-send-string (get-buffer-process buffer) \\u0026quot;\\\\n\\u0026quot;)\\n (goto-char (point-max))))\\n\\n\\n;; create the buffer and process\\n(defun test-repl-launch ()\\n (let* ((cmd \\u0026quot;python\\u0026quot;)\\n (process (get-buffer-process \\u0026quot;*PythonTest*\\u0026quot;))\\n (buffer (get-buffer-create \\u0026quot;*PythonTest*\\u0026quot;)))\\n (with-current-buffer buffer\\n (comint-mode)\\n (setq comint-process-echoes t)\\n (setq comint-scroll-to-bottom-on-input t)\\n (pop-to-buffer buffer)\\n (if (not (process-live-p (get-buffer-process \\u0026quot;*PythonTest*\\u0026quot;)))\\n (start-process \\u0026quot;pythontest\\u0026quot; buffer \\u0026quot;python\\u0026quot; \\u0026quot;-i\\u0026quot;)\\n (set-process-filter (get-buffer-process \\u0026quot;*PythonTest*\\u0026quot;) (lambda (process string) string))))))\\n\\n;; test it out\\n(let* ((cmd \\u0026quot;python\\u0026quot;)\\n (buffer \\u0026quot;*PythonTest*\\u0026quot;)\\n (process \\u0026quot;pythontest\\u0026quot;))\\n (test-repl-launch)\\n (sit-for 1)\\n (test-repl-send-to-process buffer process \\u0026quot;1 + 4;\\\\n\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe above example outputs this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/y84h5wt87le31.png\\\"\\u003EOut of order text\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EObviously I am after this output.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u0026gt;\\u0026gt;\\u0026gt; 1 + 4; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026gt;\\u0026gt;\\u0026gt; 5 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026gt;\\u0026gt;\\u0026gt;\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know there is a python mode and helpers from the comint library, but I would actually like to understand what is happening, this is a massive simplification of what I am trying to do so its easy to run and test with.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone have any pointers and able to explain whats happening here ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"b1691750-7a49-11e5-8c34-0e66dfbe79eb\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cm85ta\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"olymk2\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cm85ta/after_some_help_with_controlling_processes_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cm85ta/after_some_help_with_controlling_processes_in/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1564992342.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}], \"after\": \"t3_cm85ta\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["516446"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:09:57 GMT"], "x-ratelimit-remaining": ["596.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["4"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579397.108357,VS0,VE703"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["3"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100"}, "recorded_at": "2019-08-12T03:09:57"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_cp6bsn"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:09:57 GMT"], "x-ratelimit-remaining": ["595.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["5"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579398.905982,VS0,VE70"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["3"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/emacs/new?raw_json=1&limit=100&before=t3_cp6bsn"}, "recorded_at": "2019-08-12T03:09:57"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cny3ny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewn7v74\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jalihal\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565570922.0, \"send_replies\": true, \"parent_id\": \"t1_ewn61m7\", \"score\": 1, \"author_fullname\": \"t2_lbvyqif\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Oops I meant your ox-ipynb.el! Thanks for the useful package!\", \"link_title\": \"Shout-out to org mode for enabling seamless collaboration!\", \"author_flair_css_class\": null, \"name\": \"t1_ewn7v74\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOops I meant your ox-ipynb.el! Thanks for the useful package!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/ewn7v74/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/\", \"report_reasons\": null, \"link_author\": \"jalihal\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/\", \"created\": 1565599722.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cny3ny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewn61m7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jkitchin\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565569521.0, \"send_replies\": true, \"parent_id\": \"t3_cny3ny\", \"score\": 1, \"author_fullname\": \"t2_sp7ej\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"is ox-ipython a thing? Where is it?\", \"link_title\": \"Shout-out to org mode for enabling seamless collaboration!\", \"author_flair_css_class\": null, \"name\": \"t1_ewn61m7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eis ox-ipython a thing? Where is it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/ewn61m7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/\", \"report_reasons\": null, \"link_author\": \"jalihal\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/\", \"created\": 1565598321.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cohikz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlq0tg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1565532800.0, \"send_replies\": true, \"parent_id\": \"t1_ewj0vq1\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Ok, so looking into [disabling visual-line-mode](https://superuser.com/questions/530363/emacs-org-mode-how-to-disable-visual-line-wrap-for-agenda-buffers-only/531670), which I have turned on globally, is kind of a work around: it solves the problem because the lines don't wrap, but Emacs still \\\"thinks\\\" there's an extra line there, and puts an arrow right after the tag. It's a bit of an annoyance, but better than having it in a new line. \\n\\nQuestion is though, how can I \\\"fix\\\" how Emacs sees the line? Perhaps the idea of having different size fonts (which is the case with my theme) is not intended to work for org-agenda anyway, which I can understand.\", \"link_title\": \"Tags in agenda start in a new line\", \"author_flair_css_class\": null, \"name\": \"t1_ewlq0tg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOk, so looking into \\u003Ca href=\\\"https://superuser.com/questions/530363/emacs-org-mode-how-to-disable-visual-line-wrap-for-agenda-buffers-only/531670\\\"\\u003Edisabling visual-line-mode\\u003C/a\\u003E, which I have turned on globally, is kind of a work around: it solves the problem because the lines don\\u0026#39;t wrap, but Emacs still \\u0026quot;thinks\\u0026quot; there\\u0026#39;s an extra line there, and puts an arrow right after the tag. It\\u0026#39;s a bit of an annoyance, but better than having it in a new line. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuestion is though, how can I \\u0026quot;fix\\u0026quot; how Emacs sees the line? Perhaps the idea of having different size fonts (which is the case with my theme) is not intended to work for org-agenda anyway, which I can understand.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/ewlq0tg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"created\": 1565561600.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_co1x1v\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewlcexh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gtuckerkellogg\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1565517038.0, \"send_replies\": true, \"parent_id\": \"t3_co1x1v\", \"score\": 1, \"author_fullname\": \"t2_4zkpc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Do I have to do anything special to activate `org-export-smart-quotes-alist`? \\n\\nI have an simple org file with `#+LANGUAGE: en` and a single line\\n\\n\\u003E * heading\\n\\u003E This is a section that should be converted to \\u201c\\\\LaTeX-style quotes\\u201d\\n\\nThe exporter converts that to \\n\\n\\u003E \\\\section{heading}\\n\\u003E \\\\label{sec:orgd92cd47}\\n\\n\\u003E This is a section that should be converted to \\u201c\\\\LaTeX-style quotes\\u201d\\n\\nIn other words, nothing happens, though value of `org-export-smart-quotes-alist` indicates that it should be converted to \\n\\n\\u003E This is a section that should be converted to ``\\\\LaTeX-style quotes''\\n\\nI'm using Org 9.2.4\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - August 09, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ewlcexh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDo I have to do anything special to activate \\u003Ccode\\u003Eorg-export-smart-quotes-alist\\u003C/code\\u003E? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have an simple org file with \\u003Ccode\\u003E#+LANGUAGE: en\\u003C/code\\u003E and a single line\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Eheading\\nThis is a section that should be converted to \\u201c\\\\LaTeX-style quotes\\u201d\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe exporter converts that to \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\\\section{heading}\\n\\\\label{sec:orgd92cd47}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is a section that should be converted to \\u201c\\\\LaTeX-style quotes\\u201d\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIn other words, nothing happens, though value of \\u003Ccode\\u003Eorg-export-smart-quotes-alist\\u003C/code\\u003E indicates that it should be converted to \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThis is a section that should be converted to ``\\\\LaTeX-style quotes\\u0026#39;\\u0026#39;\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using Org 9.2.4\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/co1x1v/weekly_rorgmode_open_discussion_august_09_2019/ewlcexh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/co1x1v/weekly_rorgmode_open_discussion_august_09_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/co1x1v/weekly_rorgmode_open_discussion_august_09_2019/\", \"created\": 1565545838.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565471224.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cohikz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewjptue\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1565470207.0, \"send_replies\": true, \"parent_id\": \"t1_ewiwqb9\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Now that bug hunter is installed, \\n\\nthe problem it reports is:\\n\\n\\u0026#x200B;\\n\\n\\u003E\\\"/home/jr121/.emacs\\\", line 16 pos 0: \\n\\u003E \\n\\u003E The following error was signaled here: \\n\\u003E \\n\\u003E(error \\\"Unknown terminal type\\\") \\n\\u003E \\n\\u003E Caused by the following expression: \\n\\u003E \\n\\u003E(org-babel-load-file \\n\\u003E \\n\\u003E(expand-file-name \\\"/mnt/veracrypt1/Public/settings-det.org\\\"))\\n\\nOh yeah, I use org for my init to explain to myself what the different options do.\", \"link_title\": \"Tags in agenda start in a new line\", \"author_flair_css_class\": null, \"name\": \"t1_ewjptue\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENow that bug hunter is installed, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethe problem it reports is:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u0026quot;/home/jr121/.emacs\\u0026quot;, line 16 pos 0: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe following error was signaled here: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(error \\u0026quot;Unknown terminal type\\u0026quot;) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECaused by the following expression: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(org-babel-load-file \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(expand-file-name \\u0026quot;/mnt/veracrypt1/Public/settings-det.org\\u0026quot;))\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOh yeah, I use org for my init to explain to myself what the different options do.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/ewjptue/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"created\": 1565499007.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cohikz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewjp7sc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1565469970.0, \"send_replies\": true, \"parent_id\": \"t1_ewjnzj3\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \".... fixed.\", \"link_title\": \"Tags in agenda start in a new line\", \"author_flair_css_class\": null, \"name\": \"t1_ewjp7sc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E.... fixed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/ewjp7sc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"created\": 1565498770.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565469804.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cohikz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewjnzj3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1565469459.0, \"send_replies\": true, \"parent_id\": \"t1_ewj046i\", \"score\": 2, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm Googling (ok, duck duck going...?) it right now but it doesn't make sense. Not sure I understand what TLS is in terms of Emacs. Can you just direct me in the right direction? I'll read up.\\n\\n\\u0026#x200B;\\n\\n\\\\- - - -\\n\\n\\u0026#x200B;\\n\\nok you probably mean [this](https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34341). and [this](https://www.reddit.com/r/emacs/comments/cdei4p/failed_to_download_gnu_archive_bad_request/).\", \"link_title\": \"Tags in agenda start in a new line\", \"author_flair_css_class\": null, \"name\": \"t1_ewjnzj3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m Googling (ok, duck duck going...?) it right now but it doesn\\u0026#39;t make sense. Not sure I understand what TLS is in terms of Emacs. Can you just direct me in the right direction? I\\u0026#39;ll read up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- - - -\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eok you probably mean \\u003Ca href=\\\"https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34341\\\"\\u003Ethis\\u003C/a\\u003E. and \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/cdei4p/failed_to_download_gnu_archive_bad_request/\\\"\\u003Ethis\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/ewjnzj3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"created\": 1565498259.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cohikz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewj0vq1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1565459712.0, \"send_replies\": true, \"parent_id\": \"t1_ewj0bl3\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"The tags being aligned to the edge of the window depends on being able to accurately calculate the width of the window in characters. If a theme makes some faces larger or wider than others, and those faces are displayed in the agenda on the same line, it will throw off the calculation. visual-line-mode causes lines to wrap instead of being truncated at the window edge.\\n\\nExplore the `org-agenda` customization options.\", \"link_title\": \"Tags in agenda start in a new line\", \"author_flair_css_class\": null, \"name\": \"t1_ewj0vq1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe tags being aligned to the edge of the window depends on being able to accurately calculate the width of the window in characters. If a theme makes some faces larger or wider than others, and those faces are displayed in the agenda on the same line, it will throw off the calculation. visual-line-mode causes lines to wrap instead of being truncated at the window edge.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExplore the \\u003Ccode\\u003Eorg-agenda\\u003C/code\\u003E customization options.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/ewj0vq1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"created\": 1565488512.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cohikz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewj0bl3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1565459480.0, \"send_replies\": true, \"parent_id\": \"t1_ewj030c\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I see, and this theme (Luevel) is doing a lot. So killing visual line mode might affect it? I'll take a look.\", \"link_title\": \"Tags in agenda start in a new line\", \"author_flair_css_class\": null, \"name\": \"t1_ewj0bl3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see, and this theme (Luevel) is doing a lot. So killing visual line mode might affect it? I\\u0026#39;ll take a look.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/ewj0bl3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"created\": 1565488280.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cohikz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewj046i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1565459395.0, \"send_replies\": true, \"parent_id\": \"t1_ewiwqb9\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"See recent discussions about Emacs and TLS.\", \"link_title\": \"Tags in agenda start in a new line\", \"author_flair_css_class\": null, \"name\": \"t1_ewj046i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESee recent discussions about Emacs and TLS.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/ewj046i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"created\": 1565488195.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cohikz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewj030c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1565459382.0, \"send_replies\": true, \"parent_id\": \"t1_ewiwsoe\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Themes in Emacs are collections of variables. They can modify more than just faces. Sometimes they even have customization groups.\", \"link_title\": \"Tags in agenda start in a new line\", \"author_flair_css_class\": null, \"name\": \"t1_ewj030c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThemes in Emacs are collections of variables. They can modify more than just faces. Sometimes they even have customization groups.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/ewj030c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"created\": 1565488182.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cohikz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewiwsoe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1565457973.0, \"send_replies\": true, \"parent_id\": \"t1_ewitd5f\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yes I do, but why will it cause an issue now and not in the previous theme?\", \"link_title\": \"Tags in agenda start in a new line\", \"author_flair_css_class\": null, \"name\": \"t1_ewiwsoe\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes I do, but why will it cause an issue now and not in the previous theme?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/ewiwsoe/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"created\": 1565486773.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cohikz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewiwqb9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1565457943.0, \"send_replies\": true, \"parent_id\": \"t1_ewik14l\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This is specific to this theme (there was no issue with the previous theme). It's hard to run emacs -q because it ignores my org mode settings and agenda files, which populate the agenda dispatcher. I'll have to do it manually. \\n\\nI get a bad request when I try to download bug-hunter: \\n`package-install-from-archive:` [`https://elpa.gnu.org/packages/bug-hunter-1.3.1.el:`](https://elpa.gnu.org/packages/bug-hunter-1.3.1.el:) `Bad Request`\\n\\nWhat's next?\", \"link_title\": \"Tags in agenda start in a new line\", \"author_flair_css_class\": null, \"name\": \"t1_ewiwqb9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is specific to this theme (there was no issue with the previous theme). It\\u0026#39;s hard to run emacs -q because it ignores my org mode settings and agenda files, which populate the agenda dispatcher. I\\u0026#39;ll have to do it manually. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI get a bad request when I try to download bug-hunter:\\u003Cbr/\\u003E\\n\\u003Ccode\\u003Epackage-install-from-archive:\\u003C/code\\u003E \\u003Ca href=\\\"https://elpa.gnu.org/packages/bug-hunter-1.3.1.el:\\\"\\u003E\\u003Ccode\\u003Ehttps://elpa.gnu.org/packages/bug-hunter-1.3.1.el:\\u003C/code\\u003E\\u003C/a\\u003E \\u003Ccode\\u003EBad Request\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat\\u0026#39;s next?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/ewiwqb9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"created\": 1565486743.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cohikz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewitd5f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nv-elisp\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1565456365.0, \"send_replies\": true, \"parent_id\": \"t3_cohikz\", \"score\": 2, \"author_fullname\": \"t2_2dw7h444\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Do you have visual-line-mode enabled?\", \"link_title\": \"Tags in agenda start in a new line\", \"author_flair_css_class\": null, \"name\": \"t1_ewitd5f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDo you have visual-line-mode enabled?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/ewitd5f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"created\": 1565485165.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cny3ny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewipbie\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"HumanBrainMapper\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565454055.0, \"send_replies\": true, \"parent_id\": \"t1_ewg6kqs\", \"score\": 1, \"author_fullname\": \"t2_q43ft\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks!\", \"link_title\": \"Shout-out to org mode for enabling seamless collaboration!\", \"author_flair_css_class\": null, \"name\": \"t1_ewipbie\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/ewipbie/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/\", \"report_reasons\": null, \"link_author\": \"jalihal\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/\", \"created\": 1565482855.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cohikz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewik14l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 12, \"can_mod_post\": false, \"created_utc\": 1565450920.0, \"send_replies\": true, \"parent_id\": \"t3_cohikz\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"It would help if you'd answer the question I asked the guy in that thread, which he never answered. ;)\\n\\nMy suggestion is to try to reproduce with `emacs -q`. \\n\\n* If you can't, use the `bug-hunter` package to isolate which part of your config is causing the problem.\\n* If you can, it might be worth discussing on the Org mailing list.\", \"link_title\": \"Tags in agenda start in a new line\", \"author_flair_css_class\": null, \"name\": \"t1_ewik14l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt would help if you\\u0026#39;d answer the question I asked the guy in that thread, which he never answered. ;)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy suggestion is to try to reproduce with \\u003Ccode\\u003Eemacs -q\\u003C/code\\u003E. \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EIf you can\\u0026#39;t, use the \\u003Ccode\\u003Ebug-hunter\\u003C/code\\u003E package to isolate which part of your config is causing the problem.\\u003C/li\\u003E\\n\\u003Cli\\u003EIf you can, it might be worth discussing on the Org mailing list.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/ewik14l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"created\": 1565479720.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_co6jy7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewi6lvw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"poiu-\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565440432.0, \"send_replies\": true, \"parent_id\": \"t1_ewgrzie\", \"score\": 1, \"author_fullname\": \"t2_dcfnv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Full Text search iirc\", \"link_title\": \"ANN: helm-org-rifle 1.7.0\", \"author_flair_css_class\": null, \"name\": \"t1_ewi6lvw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFull Text search iirc\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/ewi6lvw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/\", \"report_reasons\": null, \"link_author\": \"github-alphapapa\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/\", \"created\": 1565469232.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c4mjyk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewi53kr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"melikesem\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1565438723.0, \"send_replies\": true, \"parent_id\": \"t3_c4mjyk\", \"score\": 1, \"author_fullname\": \"t2_3v57dbza\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"In an earlier edition of Dave Allen's book (I can't speak for any edition published since about 2006), it also mentions that @ prefixes can help ensure items appear at the top of sorted tag/folder lists.\", \"link_title\": \"Why some tags start with \\\"@\\\"?\", \"author_flair_css_class\": null, \"name\": \"t1_ewi53kr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn an earlier edition of Dave Allen\\u0026#39;s book (I can\\u0026#39;t speak for any edition published since about 2006), it also mentions that @ prefixes can help ensure items appear at the top of sorted tag/folder lists.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/c4mjyk/why_some_tags_start_with/ewi53kr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/c4mjyk/why_some_tags_start_with/\", \"report_reasons\": null, \"link_author\": \"Pipiyedu\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/c4mjyk/why_some_tags_start_with/\", \"created\": 1565467523.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgxw32\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewhpevy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rcdwealth\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565416312.0, \"send_replies\": true, \"parent_id\": \"t3_cgxw32\", \"score\": 1, \"author_fullname\": \"t2_u86pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Make it in Emacs Lisp and it will be integrated with Org and Emacs. To me it makes no sense that I need Python dependency to edit simple file on a web server. Python is huge and not everbody has it.\", \"link_title\": \"I made a small script to edit all my nextclod notes in a single org file\", \"author_flair_css_class\": null, \"name\": \"t1_ewhpevy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMake it in Emacs Lisp and it will be integrated with Org and Emacs. To me it makes no sense that I need Python dependency to edit simple file on a web server. Python is huge and not everbody has it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cgxw32/i_made_a_small_script_to_edit_all_my_nextclod/ewhpevy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cgxw32/i_made_a_small_script_to_edit_all_my_nextclod/\", \"report_reasons\": null, \"link_author\": \"AndyDrop\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cgxw32/i_made_a_small_script_to_edit_all_my_nextclod/\", \"created\": 1565445112.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ch7wxc\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewhp6rp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rcdwealth\", \"num_comments\": 21, \"can_mod_post\": false, \"created_utc\": 1565416047.0, \"send_replies\": true, \"parent_id\": \"t1_euqd5q2\", \"score\": 1, \"author_fullname\": \"t2_u86pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E Don't use org mode for project management if you have to work with\\n\\u003E other people (as in they report to you). Org mode isn't really used in\\n\\u003E the corporate world and when I do use it, it's really for making quick\\n\\u003E notes that are for my eyes only.\\n\\nI would say, better suggest to people those successful activities you\\nhave done and teach them what works.\\n\\nAre you really sure you should suggest people not to do something just\\nbecause you cannot do it? \\n\\nSince years already I am managing staff members in several countries\\nby using Org mode and thus projects, everything moves forward due to\\nsuch management.\\n\\nAnd now I hear this surprising view point of you.\\n\\nPlans, project, tasks can be assigned to people, and such can be\\neasily delegated. Every person can get a printed project on the field\\nand execute them. On the end of the project, report can be done to\\nconclude the states of completion of projects, tasks, etc.\\n\\nTasks, projects, etc. can be sent and delegated quickly to people by\\nusing email, letter, SMS. I know this feature is not in official Org,\\nbut quick delegation can be programmed with few simple functions.\\n\\nWhat you speak about is not my reality.\\n\\nAgain, I cannot agree less. Still I wish you great deal and that you\\nget a chance to enligthenment.\", \"link_title\": \"How to best use org-mode for project management\", \"author_flair_css_class\": null, \"name\": \"t1_ewhp6rp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDon\\u0026#39;t use org mode for project management if you have to work with\\nother people (as in they report to you). Org mode isn\\u0026#39;t really used in\\nthe corporate world and when I do use it, it\\u0026#39;s really for making quick\\nnotes that are for my eyes only.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI would say, better suggest to people those successful activities you\\nhave done and teach them what works.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAre you really sure you should suggest people not to do something just\\nbecause you cannot do it? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince years already I am managing staff members in several countries\\nby using Org mode and thus projects, everything moves forward due to\\nsuch management.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd now I hear this surprising view point of you.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlans, project, tasks can be assigned to people, and such can be\\neasily delegated. Every person can get a printed project on the field\\nand execute them. On the end of the project, report can be done to\\nconclude the states of completion of projects, tasks, etc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETasks, projects, etc. can be sent and delegated quickly to people by\\nusing email, letter, SMS. I know this feature is not in official Org,\\nbut quick delegation can be programmed with few simple functions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat you speak about is not my reality.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAgain, I cannot agree less. Still I wish you great deal and that you\\nget a chance to enligthenment.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ch7wxc/how_to_best_use_orgmode_for_project_management/ewhp6rp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ch7wxc/how_to_best_use_orgmode_for_project_management/\", \"report_reasons\": null, \"link_author\": \"FOSHavoc\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ch7wxc/how_to_best_use_orgmode_for_project_management/\", \"created\": 1565444847.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmiyzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewhohdn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rcdwealth\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565415240.0, \"send_replies\": true, \"parent_id\": \"t1_ewgv80y\", \"score\": 1, \"author_fullname\": \"t2_u86pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Since it is a template I would not bother people and would release it as public domain. Such templates are used in private, but if given away to third parties I would not have control anyway. So creative commons makes no sense to me.\", \"link_title\": \"I created a \\\"Graduation Planner\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ewhohdn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESince it is a template I would not bother people and would release it as public domain. Such templates are used in private, but if given away to third parties I would not have control anyway. So creative commons makes no sense to me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/ewhohdn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"report_reasons\": null, \"link_author\": \"tacosandlinux\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"created\": 1565444040.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_coahxb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewhfivm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"divideByNulls\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565406496.0, \"send_replies\": true, \"parent_id\": \"t1_ewhesms\", \"score\": 2, \"author_fullname\": \"t2_g1ubb1e\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E\\\\#+TBLFM: $3=$1\\\\*$2\\n\\nI knew I would have to say sorry at some point, and now it comes. Sorry. I thought it would not work because it was too simple. Also tried it but looking through my history I can now see I forgot the '+', witch lead me to believe it was some complex elisp formula. Thank you!\", \"link_title\": \"How do I multiply two columns into a third with TBLFM?\", \"author_flair_css_class\": null, \"name\": \"t1_ewhfivm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E#+TBLFM: $3=$1*$2\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI knew I would have to say sorry at some point, and now it comes. Sorry. I thought it would not work because it was too simple. Also tried it but looking through my history I can now see I forgot the \\u0026#39;+\\u0026#39;, witch lead me to believe it was some complex elisp formula. Thank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/coahxb/how_do_i_multiply_two_columns_into_a_third_with/ewhfivm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/coahxb/how_do_i_multiply_two_columns_into_a_third_with/\", \"report_reasons\": null, \"link_author\": \"divideByNulls\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/coahxb/how_do_i_multiply_two_columns_into_a_third_with/\", \"created\": 1565435296.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_coahxb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewhesms\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"chelya\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565405879.0, \"send_replies\": true, \"parent_id\": \"t3_coahxb\", \"score\": 5, \"author_fullname\": \"t2_pnn88\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"On the line directly below the table add (without the quotes):\\n\\\"#+TBLFM: $3=$1*$2\\\"\\n\\n\\nhttps://orgmode.org/manual/Column-formulas.html#Column-formulas\", \"link_title\": \"How do I multiply two columns into a third with TBLFM?\", \"author_flair_css_class\": null, \"name\": \"t1_ewhesms\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn the line directly below the table add (without the quotes):\\n\\u0026quot;#+TBLFM: $3=$1*$2\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://orgmode.org/manual/Column-formulas.html#Column-formulas\\\"\\u003Ehttps://orgmode.org/manual/Column-formulas.html#Column-formulas\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/coahxb/how_do_i_multiply_two_columns_into_a_third_with/ewhesms/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/coahxb/how_do_i_multiply_two_columns_into_a_third_with/\", \"report_reasons\": null, \"link_author\": \"divideByNulls\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/coahxb/how_do_i_multiply_two_columns_into_a_third_with/\", \"created\": 1565434679.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_co6jy7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewh4ozc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bakton\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565397782.0, \"send_replies\": true, \"parent_id\": \"t1_ewgsetd\", \"score\": 1, \"author_fullname\": \"t2_26w6dkj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Refile interface, I meant to say\", \"link_title\": \"ANN: helm-org-rifle 1.7.0\", \"author_flair_css_class\": null, \"name\": \"t1_ewh4ozc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERefile interface, I meant to say\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/ewh4ozc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/\", \"report_reasons\": null, \"link_author\": \"github-alphapapa\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/\", \"created\": 1565426582.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmiyzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewgv80y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tacosandlinux\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565391119.0, \"send_replies\": true, \"parent_id\": \"t1_ewgu2gm\", \"score\": 1, \"author_fullname\": \"t2_5t62phw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yes. I consider it \\\"free\\\" as in \\\"freedom\\\". Adding a license is on my TODO list. Not sure what to go with since it's a \\\"template\\\" not code. Creative Commons, maybe?\", \"link_title\": \"I created a \\\"Graduation Planner\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ewgv80y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes. I consider it \\u0026quot;free\\u0026quot; as in \\u0026quot;freedom\\u0026quot;. Adding a license is on my TODO list. Not sure what to go with since it\\u0026#39;s a \\u0026quot;template\\u0026quot; not code. Creative Commons, maybe?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/ewgv80y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"report_reasons\": null, \"link_author\": \"tacosandlinux\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"created\": 1565419919.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmiyzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewgu2gm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rcdwealth\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565390390.0, \"send_replies\": true, \"parent_id\": \"t3_cmiyzt\", \"score\": 1, \"author_fullname\": \"t2_u86pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you. Is it free software? I did not find the license file.\", \"link_title\": \"I created a \\\"Graduation Planner\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ewgu2gm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you. Is it free software? I did not find the license file.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/ewgu2gm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"report_reasons\": null, \"link_author\": \"tacosandlinux\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"created\": 1565419190.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_co6jy7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewgsetd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565389318.0, \"send_replies\": true, \"parent_id\": \"t1_ewgrzie\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have no idea what reef is. But if you look at the animations in the readme, they demonstrate it thoroughly.\", \"link_title\": \"ANN: helm-org-rifle 1.7.0\", \"author_flair_css_class\": null, \"name\": \"t1_ewgsetd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have no idea what reef is. But if you look at the animations in the readme, they demonstrate it thoroughly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/ewgsetd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/\", \"report_reasons\": null, \"link_author\": \"github-alphapapa\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/\", \"created\": 1565418118.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565397765.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_co6jy7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewgrzie\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Bakton\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565389040.0, \"send_replies\": true, \"parent_id\": \"t3_co6jy7\", \"score\": 1, \"author_fullname\": \"t2_26w6dkj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm intrigued, but could someone outline for me what this has over using the refile interface to jump to a heading? Just fizzy search?\\n\\nEdit 'cause typo\", \"link_title\": \"ANN: helm-org-rifle 1.7.0\", \"author_flair_css_class\": null, \"name\": \"t1_ewgrzie\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m intrigued, but could someone outline for me what this has over using the refile interface to jump to a heading? Just fizzy search?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit \\u0026#39;cause typo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/ewgrzie/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/\", \"report_reasons\": null, \"link_author\": \"github-alphapapa\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/\", \"created\": 1565417840.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmiyzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewgctnv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TotesMessenger\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565378992.0, \"send_replies\": true, \"parent_id\": \"t3_cmiyzt\", \"score\": 1, \"author_fullname\": \"t2_kq14w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm a bot, *bleep*, *bloop*. Someone has linked to this thread from another place on reddit:\\n\\n- [/r/emacs] [I created a \\\"Graduation Planner\\\"](https://www.reddit.com/r/emacs/comments/co781k/i_created_a_graduation_planner/)\\n\\n\\u0026nbsp;*^(If you follow any of the above links, please respect the rules of reddit and don't vote in the other threads.) ^\\\\([Info](/r/TotesMessenger) ^/ ^[Contact](/message/compose?to=/r/TotesMessenger))*\", \"link_title\": \"I created a \\\"Graduation Planner\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ewgctnv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m a bot, \\u003Cem\\u003Ebleep\\u003C/em\\u003E, \\u003Cem\\u003Ebloop\\u003C/em\\u003E. Someone has linked to this thread from another place on reddit:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E[\\u003Ca href=\\\"/r/emacs\\\"\\u003E/r/emacs\\u003C/a\\u003E] \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/co781k/i_created_a_graduation_planner/\\\"\\u003EI created a \\u0026quot;Graduation Planner\\u0026quot;\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003Cem\\u003E\\u003Csup\\u003EIf you follow any of the above links, please respect the rules of reddit and don\\u0026#39;t vote in the other threads.\\u003C/sup\\u003E \\u003Csup\\u003E(\\u003Ca href=\\\"/r/TotesMessenger\\\"\\u003EInfo\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E/\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"/message/compose?to=/r/TotesMessenger\\\"\\u003EContact\\u003C/a\\u003E)\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/ewgctnv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"report_reasons\": null, \"link_author\": \"tacosandlinux\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"created\": 1565407792.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cny3ny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewg6kqs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jalihal\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565375010.0, \"send_replies\": true, \"parent_id\": \"t1_ewg4b4s\", \"score\": 1, \"author_fullname\": \"t2_lbvyqif\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I usually tangle my org file to get a python script at the end of an analysis, and I am not a fan of jupyter notebooks. My experience with ipython blocks has been good in the past, so I don't have a strong reason not to use it, except for the fact that my current yas-snippets have python instead of ipython in them.\", \"link_title\": \"Shout-out to org mode for enabling seamless collaboration!\", \"author_flair_css_class\": null, \"name\": \"t1_ewg6kqs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI usually tangle my org file to get a python script at the end of an analysis, and I am not a fan of jupyter notebooks. My experience with ipython blocks has been good in the past, so I don\\u0026#39;t have a strong reason not to use it, except for the fact that my current yas-snippets have python instead of ipython in them.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/ewg6kqs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/\", \"report_reasons\": null, \"link_author\": \"jalihal\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/\", \"created\": 1565403810.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cny3ny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewg4b4s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"HumanBrainMapper\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565373592.0, \"send_replies\": true, \"parent_id\": \"t3_cny3ny\", \"score\": 1, \"author_fullname\": \"t2_q43ft\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003EAll I had to do was replace the python blocks with ipython blocks from ob-ipython, (...)\\n\\nIs there a reason not to use ipython blocks instead of python blocks by default?\", \"link_title\": \"Shout-out to org mode for enabling seamless collaboration!\", \"author_flair_css_class\": null, \"name\": \"t1_ewg4b4s\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAll I had to do was replace the python blocks with ipython blocks from ob-ipython, (...)\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIs there a reason not to use ipython blocks instead of python blocks by default?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/ewg4b4s/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/\", \"report_reasons\": null, \"link_author\": \"jalihal\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/\", \"created\": 1565402392.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cnwblx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewee5z7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"bloodqc\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565321411.0, \"send_replies\": true, \"parent_id\": \"t3_cnwblx\", \"score\": 1, \"author_fullname\": \"t2_33gj6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have a similar problem where two lines are joined together sometimes. I'm always afraid of doing ctrl+k in the agenda view.\", \"link_title\": \"Funky behavior when adjusting the TODO state of a collapsed item\", \"author_flair_css_class\": null, \"name\": \"t1_ewee5z7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a similar problem where two lines are joined together sometimes. I\\u0026#39;m always afraid of doing ctrl+k in the agenda view.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cnwblx/funky_behavior_when_adjusting_the_todo_state_of_a/ewee5z7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cnwblx/funky_behavior_when_adjusting_the_todo_state_of_a/\", \"report_reasons\": null, \"link_author\": \"thoomfish\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cnwblx/funky_behavior_when_adjusting_the_todo_state_of_a/\", \"created\": 1565350211.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cnwblx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewed30d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JadElClemens\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565320552.0, \"send_replies\": true, \"parent_id\": \"t3_cnwblx\", \"score\": 1, \"author_fullname\": \"t2_girye\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Same issue here, on the develop branch.\", \"link_title\": \"Funky behavior when adjusting the TODO state of a collapsed item\", \"author_flair_css_class\": null, \"name\": \"t1_ewed30d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESame issue here, on the develop branch.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cnwblx/funky_behavior_when_adjusting_the_todo_state_of_a/ewed30d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cnwblx/funky_behavior_when_adjusting_the_todo_state_of_a/\", \"report_reasons\": null, \"link_author\": \"thoomfish\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cnwblx/funky_behavior_when_adjusting_the_todo_state_of_a/\", \"created\": 1565349352.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_caioyu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewcn82j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"hesiii\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565287452.0, \"send_replies\": true, \"parent_id\": \"t1_et96iyt\", \"score\": 1, \"author_fullname\": \"t2_wtfwf\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"There are a whole bunch of keys to navigate the date picker. You can find a list in this section of the manual:\\n\\n[https://orgmode.org/manual/The-date\\\\_002ftime-prompt.html](https://orgmode.org/manual/The-date_002ftime-prompt.html)\", \"link_title\": \"Navigating the date picker using the keyboard\", \"author_flair_css_class\": null, \"name\": \"t1_ewcn82j\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere are a whole bunch of keys to navigate the date picker. You can find a list in this section of the manual:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://orgmode.org/manual/The-date_002ftime-prompt.html\\\"\\u003Ehttps://orgmode.org/manual/The-date_002ftime-prompt.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/caioyu/navigating_the_date_picker_using_the_keyboard/ewcn82j/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/caioyu/navigating_the_date_picker_using_the_keyboard/\", \"report_reasons\": null, \"link_author\": \"primal_buddhist\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/caioyu/navigating_the_date_picker_using_the_keyboard/\", \"created\": 1565316252.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cn43yz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewc9zn0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565280997.0, \"send_replies\": true, \"parent_id\": \"t3_cn43yz\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"BTW, I just added a [new feature](https://github.com/alphapapa/org-ql#function-org-ql-block) to `org-ql` that lets you define a custom agenda block command, like this:\\n\\n (setq org-agenda-custom-commands\\n '((\\\"cn\\\" \\\"Custom: NEXT items and agenda\\\"\\n ((org-ql-block '(todo \\\"NEXT\\\"))\\n (agenda)))))\\n\\nThat should do what you want. You could also use a `todo` block, but the `org-ql-block` one should be faster, especially on subsequent runs, since it uses caching.\", \"link_title\": \"org-super-agenda--modify weekly agenda?\", \"author_flair_css_class\": null, \"name\": \"t1_ewc9zn0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBTW, I just added a \\u003Ca href=\\\"https://github.com/alphapapa/org-ql#function-org-ql-block\\\"\\u003Enew feature\\u003C/a\\u003E to \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E that lets you define a custom agenda block command, like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-custom-commands\\n \\u0026#39;((\\u0026quot;cn\\u0026quot; \\u0026quot;Custom: NEXT items and agenda\\u0026quot;\\n ((org-ql-block \\u0026#39;(todo \\u0026quot;NEXT\\u0026quot;))\\n (agenda)))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThat should do what you want. You could also use a \\u003Ccode\\u003Etodo\\u003C/code\\u003E block, but the \\u003Ccode\\u003Eorg-ql-block\\u003C/code\\u003E one should be faster, especially on subsequent runs, since it uses caching.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cn43yz/orgsuperagendamodify_weekly_agenda/ewc9zn0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cn43yz/orgsuperagendamodify_weekly_agenda/\", \"report_reasons\": null, \"link_author\": \"immortal192\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cn43yz/orgsuperagendamodify_weekly_agenda/\", \"created\": 1565309797.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cn03dl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew752vn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565186295.0, \"send_replies\": true, \"parent_id\": \"t1_ew70lhw\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Yep, it's such a given I forgot to mention it lol\", \"link_title\": \"What blogs / sites do you follow?\", \"author_flair_css_class\": null, \"name\": \"t1_ew752vn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYep, it\\u0026#39;s such a given I forgot to mention it lol\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/ew752vn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/\", \"created\": 1565215095.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cn43yz\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew73zh2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565185772.0, \"send_replies\": true, \"parent_id\": \"t3_cn43yz\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"`org-super-agenda` isn't really relevant here, because all it does is group together entries that Org Agenda gathers.\\n\\nWhat you're asking for is called a \\\"block agenda,\\\" in which the weekly agenda is displayed in one block, and a to-do search is displayed in another block. For this, you'll need to configure a custom agenda command in the `org-agenda-custom-commands` variable. Its docstring explains how to do this in detail.\", \"link_title\": \"org-super-agenda--modify weekly agenda?\", \"author_flair_css_class\": null, \"name\": \"t1_ew73zh2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Eorg-super-agenda\\u003C/code\\u003E isn\\u0026#39;t really relevant here, because all it does is group together entries that Org Agenda gathers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat you\\u0026#39;re asking for is called a \\u0026quot;block agenda,\\u0026quot; in which the weekly agenda is displayed in one block, and a to-do search is displayed in another block. For this, you\\u0026#39;ll need to configure a custom agenda command in the \\u003Ccode\\u003Eorg-agenda-custom-commands\\u003C/code\\u003E variable. Its docstring explains how to do this in detail.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cn43yz/orgsuperagendamodify_weekly_agenda/ew73zh2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cn43yz/orgsuperagendamodify_weekly_agenda/\", \"report_reasons\": null, \"link_author\": \"immortal192\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cn43yz/orgsuperagendamodify_weekly_agenda/\", \"created\": 1565214572.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cn03dl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew71nj8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"matthew-graybosch\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565184653.0, \"send_replies\": true, \"parent_id\": \"t3_cn03dl\", \"score\": 2, \"author_fullname\": \"t2_2w6edh8n\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"[Bradley Taunt](https://bradleytaunt.com/) has an excellent little blog. Covers mostly web design.\", \"link_title\": \"What blogs / sites do you follow?\", \"author_flair_css_class\": null, \"name\": \"t1_ew71nj8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://bradleytaunt.com/\\\"\\u003EBradley Taunt\\u003C/a\\u003E has an excellent little blog. Covers mostly web design.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/ew71nj8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/\", \"created\": 1565213453.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cn03dl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew70r94\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zenshinji\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565184211.0, \"send_replies\": true, \"parent_id\": \"t3_cn03dl\", \"score\": 3, \"author_fullname\": \"t2_3fwog\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Also Planet Emacslife for a good central site: https://planet.emacslife.com/\", \"link_title\": \"What blogs / sites do you follow?\", \"author_flair_css_class\": null, \"name\": \"t1_ew70r94\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAlso Planet Emacslife for a good central site: \\u003Ca href=\\\"https://planet.emacslife.com/\\\"\\u003Ehttps://planet.emacslife.com/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/ew70r94/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/\", \"created\": 1565213011.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cn03dl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew70lhw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"zenshinji\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565184132.0, \"send_replies\": true, \"parent_id\": \"t3_cn03dl\", \"score\": 4, \"author_fullname\": \"t2_3fwog\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Sacha Chua\\u2019s site has a great weekly summary. She still occasionally posts herself. https://sachachua.com/blog/\", \"link_title\": \"What blogs / sites do you follow?\", \"author_flair_css_class\": null, \"name\": \"t1_ew70lhw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESacha Chua\\u2019s site has a great weekly summary. She still occasionally posts herself. \\u003Ca href=\\\"https://sachachua.com/blog/\\\"\\u003Ehttps://sachachua.com/blog/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/ew70lhw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/\", \"created\": 1565212932.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cn03dl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew63eh9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": false, \"author\": \"oantolin\", \"num_comments\": 5, \"can_mod_post\": false, \"created_utc\": 1565152680.0, \"send_replies\": true, \"parent_id\": \"t3_cn03dl\", \"score\": 5, \"author_fullname\": \"t2_3fxjo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I like Christopher Wellons's [null program](https://nullprogram.com/).\", \"link_title\": \"What blogs / sites do you follow?\", \"author_flair_css_class\": null, \"name\": \"t1_ew63eh9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI like Christopher Wellons\\u0026#39;s \\u003Ca href=\\\"https://nullprogram.com/\\\"\\u003Enull program\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/ew63eh9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/\", \"report_reasons\": null, \"link_author\": \"JR121\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/\", \"created\": 1565181480.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmiyzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew3yox1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tacosandlinux\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565098584.0, \"send_replies\": true, \"parent_id\": \"t1_ew37ncn\", \"score\": 1, \"author_fullname\": \"t2_5t62phw\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks.\", \"link_title\": \"I created a \\\"Graduation Planner\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ew3yox1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/ew3yox1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"report_reasons\": null, \"link_author\": \"tacosandlinux\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"created\": 1565127384.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmiyzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew37ncn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gjolleyrogers\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565066944.0, \"send_replies\": true, \"parent_id\": \"t3_cmiyzt\", \"score\": 1, \"author_fullname\": \"t2_a8r1k3r\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Nice\", \"link_title\": \"I created a \\\"Graduation Planner\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ew37ncn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/ew37ncn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"report_reasons\": null, \"link_author\": \"tacosandlinux\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"created\": 1565095744.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cmiyzt\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew31a86\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PeterW1gg1n\", \"num_comments\": 7, \"can_mod_post\": false, \"created_utc\": 1565061236.0, \"send_replies\": true, \"parent_id\": \"t3_cmiyzt\", \"score\": 2, \"author_fullname\": \"t2_isdry\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \" Nice! I always like seeing how other people organize their work\", \"link_title\": \"I created a \\\"Graduation Planner\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ew31a86\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice! I always like seeing how other people organize their work\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/ew31a86/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"report_reasons\": null, \"link_author\": \"tacosandlinux\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"created\": 1565090036.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl3ofg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evy4fmb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564922033.0, \"send_replies\": true, \"parent_id\": \"t3_cl3ofg\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Forgive the promotion of my own project, but I'm looking forward to being able to use [ts.el](https://github.com/alphapapa/ts.el/) in Org-related code, like this:\\n\\nParse an Org timestamp element directly from `org-element-context` and find the difference between it and now:\\n\\n (with-temp-buffer\\n (org-mode)\\n (save-excursion\\n (insert \\\"\\u003C2015-09-24 Thu .+1d\\u003E\\\"))\\n (ts-human-format-duration\\n (ts-difference (ts-now)\\n (ts-parse-org-element (org-element-context)))))\\n ;;=\\u003E \\\"3 years, 308 days, 2 hours, 24 minutes, 21 seconds\\\"\\n\\nParse an Org timestamp string (which has a repeater) and format the year and month:\\n\\n ;; Note the use of `format' rather than `concat', because `ts-year'\\n ;; returns the year as a number rather than a string.\\n \\n (let* ((ts (ts-parse-org \\\"\\u003C2015-09-24 Thu .+1d\\u003E\\\")))\\n (format \\\"%s, %s\\\" (ts-month-name ts) (ts-year ts)))\\n ;;=\\u003E \\\"September, 2015\\\"\\n \\n ;; Or, using dash.el:\\n \\n (--\\u003E (ts-parse-org \\\"\\u003C2015-09-24 Thu .+1d\\u003E\\\")\\n (format \\\"%s, %s\\\" (ts-month-name it) (ts-year it)))\\n ;;=\\u003E \\\"September, 2015\\\"\\n \\n ;; Or, if you remember the format specifiers:\\n \\n (ts-format \\\"%B, %Y\\\" (ts-parse-org \\\"\\u003C2015-09-24 Thu .+1d\\u003E\\\"))\\n ;;=\\u003E \\\"September, 2015\\\"\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - August 02, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_evy4fmb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EForgive the promotion of my own project, but I\\u0026#39;m looking forward to being able to use \\u003Ca href=\\\"https://github.com/alphapapa/ts.el/\\\"\\u003Ets.el\\u003C/a\\u003E in Org-related code, like this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EParse an Org timestamp element directly from \\u003Ccode\\u003Eorg-element-context\\u003C/code\\u003E and find the difference between it and now:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(with-temp-buffer\\n (org-mode)\\n (save-excursion\\n (insert \\u0026quot;\\u0026lt;2015-09-24 Thu .+1d\\u0026gt;\\u0026quot;))\\n (ts-human-format-duration\\n (ts-difference (ts-now)\\n (ts-parse-org-element (org-element-context)))))\\n;;=\\u0026gt; \\u0026quot;3 years, 308 days, 2 hours, 24 minutes, 21 seconds\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EParse an Org timestamp string (which has a repeater) and format the year and month:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Note the use of `format\\u0026#39; rather than `concat\\u0026#39;, because `ts-year\\u0026#39;\\n;; returns the year as a number rather than a string.\\n\\n(let* ((ts (ts-parse-org \\u0026quot;\\u0026lt;2015-09-24 Thu .+1d\\u0026gt;\\u0026quot;)))\\n (format \\u0026quot;%s, %s\\u0026quot; (ts-month-name ts) (ts-year ts)))\\n;;=\\u0026gt; \\u0026quot;September, 2015\\u0026quot;\\n\\n;; Or, using dash.el:\\n\\n(--\\u0026gt; (ts-parse-org \\u0026quot;\\u0026lt;2015-09-24 Thu .+1d\\u0026gt;\\u0026quot;)\\n (format \\u0026quot;%s, %s\\u0026quot; (ts-month-name it) (ts-year it)))\\n;;=\\u0026gt; \\u0026quot;September, 2015\\u0026quot;\\n\\n;; Or, if you remember the format specifiers:\\n\\n(ts-format \\u0026quot;%B, %Y\\u0026quot; (ts-parse-org \\u0026quot;\\u0026lt;2015-09-24 Thu .+1d\\u0026gt;\\u0026quot;))\\n;;=\\u0026gt; \\u0026quot;September, 2015\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/evy4fmb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/\", \"created\": 1564950833.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clown7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evx4ohx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"phineas0fog\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1564881793.0, \"send_replies\": true, \"parent_id\": \"t1_evwv1fr\", \"score\": 1, \"author_fullname\": \"t2_14cz4w\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks :)\\nIt's perfect :)\", \"link_title\": \"headlines to LaTeX\", \"author_flair_css_class\": null, \"name\": \"t1_evx4ohx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks :)\\nIt\\u0026#39;s perfect :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/clown7/headlines_to_latex/evx4ohx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/clown7/headlines_to_latex/\", \"report_reasons\": null, \"link_author\": \"phineas0fog\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/clown7/headlines_to_latex/\", \"created\": 1564910593.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clown7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwv1fr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1564874152.0, \"send_replies\": true, \"parent_id\": \"t3_clown7\", \"score\": 6, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"The default is to export up to three headline levels. You can change it locally with `#+options: H:4` or globally with `(setq org-export-headline-levels 4)` in your init file. Of course, you can also use a higher value, if it makes sense for your document.\", \"link_title\": \"headlines to LaTeX\", \"author_flair_css_class\": null, \"name\": \"t1_evwv1fr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe default is to export up to three headline levels. You can change it locally with \\u003Ccode\\u003E#+options: H:4\\u003C/code\\u003E or globally with \\u003Ccode\\u003E(setq org-export-headline-levels 4)\\u003C/code\\u003E in your init file. Of course, you can also use a higher value, if it makes sense for your document.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/clown7/headlines_to_latex/evwv1fr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/clown7/headlines_to_latex/\", \"report_reasons\": null, \"link_author\": \"phineas0fog\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/clown7/headlines_to_latex/\", \"created\": 1564902952.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnd3r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwnbcj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"takethecannoli4\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564868494.0, \"send_replies\": true, \"parent_id\": \"t1_evwidbj\", \"score\": 2, \"author_fullname\": \"t2_13p6gig2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003E %(buffer-name (org-capture-get :original-buffer))\\n\\nThat's almost perfect! I would prefer for the Org Src Buffers to expand only the original filename, and not the string that identifies it. It's quite short already, though:\\n\\n (defun org-src--construct-edit-buffer-name (org-buffer-name lang)\\n (concat \\\"[S] \\\" org-buffer-name \\\"\\\"))\\n \\nSo if there's no easy way to further perfect this, I'll consider the matter solved. Thanks!\", \"link_title\": \"Can I get `org-capture-templates` to expand the name of the buffer instead of the filename?\", \"author_flair_css_class\": null, \"name\": \"t1_evwnbcj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E%(buffer-name (org-capture-get :original-buffer))\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s almost perfect! I would prefer for the Org Src Buffers to expand only the original filename, and not the string that identifies it. It\\u0026#39;s quite short already, though:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defun org-src--construct-edit-buffer-name (org-buffer-name lang)\\n (concat \\u0026quot;[S] \\u0026quot; org-buffer-name \\u0026quot;\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ESo if there\\u0026#39;s no easy way to further perfect this, I\\u0026#39;ll consider the matter solved. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/evwnbcj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/\", \"report_reasons\": null, \"link_author\": \"takethecannoli4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/\", \"created\": 1564897294.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnd3r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwidbj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564864857.0, \"send_replies\": true, \"parent_id\": \"t1_evwhjn5\", \"score\": 3, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Ah! I think I understood better what you want. Probably it is `%(buffer-name (org-capture-get :original-buffer))`.\", \"link_title\": \"Can I get `org-capture-templates` to expand the name of the buffer instead of the filename?\", \"author_flair_css_class\": null, \"name\": \"t1_evwidbj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAh! I think I understood better what you want. Probably it is \\u003Ccode\\u003E%(buffer-name (org-capture-get :original-buffer))\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/evwidbj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/\", \"report_reasons\": null, \"link_author\": \"takethecannoli4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/\", \"created\": 1564893657.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnd3r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwhqxe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gorloj\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564864404.0, \"send_replies\": true, \"parent_id\": \"t3_clnd3r\", \"score\": 3, \"author_fullname\": \"t2_ydejh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"It seems like org-capture adds the original buffer to a property list, so something like `%(buffer-name (plist-get org-capture-plist :original-buffer))` within the template might work.\", \"link_title\": \"Can I get `org-capture-templates` to expand the name of the buffer instead of the filename?\", \"author_flair_css_class\": null, \"name\": \"t1_evwhqxe\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt seems like org-capture adds the original buffer to a property list, so something like \\u003Ccode\\u003E%(buffer-name (plist-get org-capture-plist :original-buffer))\\u003C/code\\u003E within the template might work.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/evwhqxe/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/\", \"report_reasons\": null, \"link_author\": \"takethecannoli4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/\", \"created\": 1564893204.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnd3r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwhjn5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564864255.0, \"send_replies\": true, \"parent_id\": \"t3_clnd3r\", \"score\": 2, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"How about `%(buffer-name (buffer-base-buffer))`? (That should return \\\"[tasks.org](https://tasks.org)\\\" for your templates, is that what you want?)\", \"link_title\": \"Can I get `org-capture-templates` to expand the name of the buffer instead of the filename?\", \"author_flair_css_class\": null, \"name\": \"t1_evwhjn5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow about \\u003Ccode\\u003E%(buffer-name (buffer-base-buffer))\\u003C/code\\u003E? (That should return \\u0026quot;\\u003Ca href=\\\"https://tasks.org\\\"\\u003Etasks.org\\u003C/a\\u003E\\u0026quot; for your templates, is that what you want?)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/evwhjn5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/\", \"report_reasons\": null, \"link_author\": \"takethecannoli4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/\", \"created\": 1564893055.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cf75it\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evvtbgh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yantar92\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1564846821.0, \"send_replies\": true, \"parent_id\": \"t1_eucn11q\", \"score\": 1, \"author_fullname\": \"t2_qh3te\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Can you reproduce with emacs -Q?\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 19, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_evvtbgh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan you reproduce with emacs -Q?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cf75it/weekly_rorgmode_open_discussion_july_19_2019/evvtbgh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cf75it/weekly_rorgmode_open_discussion_july_19_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cf75it/weekly_rorgmode_open_discussion_july_19_2019/\", \"created\": 1564875621.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bwi4qu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evvskkz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yantar92\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1564846271.0, \"send_replies\": true, \"parent_id\": \"t3_bwi4qu\", \"score\": 1, \"author_fullname\": \"t2_qh3te\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"According to the docstring, \\\"... When called with a prefix argument, include all archive files as well.\\\". Did you try `C-u M-x org-agenda-archives-mode RET`?\", \"link_title\": \"How is org-agenda-archives-mode supposed to work?\", \"author_flair_css_class\": null, \"name\": \"t1_evvskkz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAccording to the docstring, \\u0026quot;... When called with a prefix argument, include all archive files as well.\\u0026quot;. Did you try \\u003Ccode\\u003EC-u M-x org-agenda-archives-mode RET\\u003C/code\\u003E?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/evvskkz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"report_reasons\": null, \"link_author\": \"werzor\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bwi4qu/how_is_orgagendaarchivesmode_supposed_to_work/\", \"created\": 1564875071.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl8gmm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evvg13x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"kaushalmodi\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1564835493.0, \"send_replies\": true, \"parent_id\": \"t3_cl8gmm\", \"score\": 1, \"author_fullname\": \"t2_gmnik\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"This might not 100% solve your problem but have you looked at `#+setupfile`? You can set that keyword to a local Org file, or even a Url pointing to an Org file (say the raw version of an Org file in an online git repo). Then you and the person you are sharing that Org file will always source the same #+setupfile. \\n\\n[Ref][1]\\n\\n[1]: https://orgmode.org/manual/In_002dbuffer-settings.html\", \"link_title\": \"Comitting settings to in-buffer settings\", \"author_flair_css_class\": null, \"name\": \"t1_evvg13x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis might not 100% solve your problem but have you looked at \\u003Ccode\\u003E#+setupfile\\u003C/code\\u003E? You can set that keyword to a local Org file, or even a Url pointing to an Org file (say the raw version of an Org file in an online git repo). Then you and the person you are sharing that Org file will always source the same #+setupfile. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://orgmode.org/manual/In_002dbuffer-settings.html\\\"\\u003ERef\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cl8gmm/comitting_settings_to_inbuffer_settings/evvg13x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cl8gmm/comitting_settings_to_inbuffer_settings/\", \"report_reasons\": null, \"link_author\": \"gorloj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cl8gmm/comitting_settings_to_inbuffer_settings/\", \"created\": 1564864293.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl19sn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evvcg71\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"updatedprocess\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1564831114.0, \"send_replies\": true, \"parent_id\": \"t1_evtbib3\", \"score\": 1, \"author_fullname\": \"t2_1xd9io43\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Ooh didn't see the orgzly update. Will have to check out the breadcrumbs. Thanks for the tips.\", \"link_title\": \"Diary/Journal that works on mobile too\", \"author_flair_css_class\": null, \"name\": \"t1_evvcg71\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOoh didn\\u0026#39;t see the orgzly update. Will have to check out the breadcrumbs. Thanks for the tips.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/evvcg71/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"report_reasons\": null, \"link_author\": \"updatedprocess\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"created\": 1564859914.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1564864706.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl8gmm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evv8fk0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gorloj\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1564825062.0, \"send_replies\": true, \"parent_id\": \"t1_evupud4\", \"score\": 2, \"author_fullname\": \"t2_ydejh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks for the code! It turns out that Org defines a list of startup options and the variables they modify in `org-startup-options`, so implementing this for `#+STARTUP` keywords at least was pretty straightforward:\\n\\n\\n (cl-loop for (str sym val) in org-startup-options\\n when (and (boundp sym) (equal (symbol-value sym) val))\\n do (insert (concat \\\"#+STARTUP: \\\" str \\\"\\\\n\\\")))\\n\\n\\nIf we want to restrict ourselves to non-default variables, then a condition like `(not (equal (symbol-value sym) (get sym 'default-value)))` can be added to the loop body.\\n\\nI'm not sure how this would work for other non-`#+STARTUP` in-buffer settings though.\", \"link_title\": \"Comitting settings to in-buffer settings\", \"author_flair_css_class\": null, \"name\": \"t1_evv8fk0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for the code! It turns out that Org defines a list of startup options and the variables they modify in \\u003Ccode\\u003Eorg-startup-options\\u003C/code\\u003E, so implementing this for \\u003Ccode\\u003E#+STARTUP\\u003C/code\\u003E keywords at least was pretty straightforward:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(cl-loop for (str sym val) in org-startup-options\\n when (and (boundp sym) (equal (symbol-value sym) val))\\n do (insert (concat \\u0026quot;#+STARTUP: \\u0026quot; str \\u0026quot;\\\\n\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf we want to restrict ourselves to non-default variables, then a condition like \\u003Ccode\\u003E(not (equal (symbol-value sym) (get sym \\u0026#39;default-value)))\\u003C/code\\u003E can be added to the loop body.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure how this would work for other non-\\u003Ccode\\u003E#+STARTUP\\u003C/code\\u003E in-buffer settings though.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cl8gmm/comitting_settings_to_inbuffer_settings/evv8fk0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cl8gmm/comitting_settings_to_inbuffer_settings/\", \"report_reasons\": null, \"link_author\": \"gorloj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cl8gmm/comitting_settings_to_inbuffer_settings/\", \"created\": 1564853862.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl3ofg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evus73g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"loopsdeer\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564804508.0, \"send_replies\": true, \"parent_id\": \"t1_evuqts3\", \"score\": 2, \"author_fullname\": \"t2_b6zh5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"What I expected to hear. Thanks for the search link tho, very helpful!\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - August 02, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_evus73g\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat I expected to hear. Thanks for the search link tho, very helpful!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/evus73g/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/\", \"created\": 1564833308.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl3ofg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evuqts3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564803246.0, \"send_replies\": true, \"parent_id\": \"t1_evtk2gn\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I don't think there's a way to do that automatically, short of writing a custom bot. But you can easily search for them: https://www.reddit.com/r/orgmode/search?q=weekly+open+discussion\\u0026restrict_sr=on\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - August 02, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_evuqts3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t think there\\u0026#39;s a way to do that automatically, short of writing a custom bot. But you can easily search for them: \\u003Ca href=\\\"https://www.reddit.com/r/orgmode/search?q=weekly+open+discussion\\u0026amp;restrict_sr=on\\\"\\u003Ehttps://www.reddit.com/r/orgmode/search?q=weekly+open+discussion\\u0026amp;restrict_sr=on\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/evuqts3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/\", \"created\": 1564832046.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl8gmm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evupud4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1564802379.0, \"send_replies\": true, \"parent_id\": \"t3_cl8gmm\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"There isn't such a package, but it would be helpful. It would need to be kept up-to-date with changes in Org, so maybe it ought to be in Org itself.\\n\\nI do something similar in the tests for `org-super-agenda` [here](https://github.com/alphapapa/org-super-agenda/blob/master/test/test.el#L162) and [here](https://github.com/alphapapa/org-super-agenda/blob/master/test/test.el#L239). I insert the default settings for those custom groups. You could use some similar code.\", \"link_title\": \"Comitting settings to in-buffer settings\", \"author_flair_css_class\": null, \"name\": \"t1_evupud4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere isn\\u0026#39;t such a package, but it would be helpful. It would need to be kept up-to-date with changes in Org, so maybe it ought to be in Org itself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI do something similar in the tests for \\u003Ccode\\u003Eorg-super-agenda\\u003C/code\\u003E \\u003Ca href=\\\"https://github.com/alphapapa/org-super-agenda/blob/master/test/test.el#L162\\\"\\u003Ehere\\u003C/a\\u003E and \\u003Ca href=\\\"https://github.com/alphapapa/org-super-agenda/blob/master/test/test.el#L239\\\"\\u003Ehere\\u003C/a\\u003E. I insert the default settings for those custom groups. You could use some similar code.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cl8gmm/comitting_settings_to_inbuffer_settings/evupud4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cl8gmm/comitting_settings_to_inbuffer_settings/\", \"report_reasons\": null, \"link_author\": \"gorloj\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cl8gmm/comitting_settings_to_inbuffer_settings/\", \"created\": 1564831179.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl3ofg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evtk2gn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"loopsdeer\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564772082.0, \"send_replies\": true, \"parent_id\": \"t3_cl3ofg\", \"score\": 2, \"author_fullname\": \"t2_b6zh5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Mods, I just had a thought. I'm about to go searching for the previous one of these. If this post included a link to the last one of these, then you'd have a linked list of all of them. Maybe that's beyond Automod (never used it) but would be cool to see going forward.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - August 02, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_evtk2gn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMods, I just had a thought. I\\u0026#39;m about to go searching for the previous one of these. If this post included a link to the last one of these, then you\\u0026#39;d have a linked list of all of them. Maybe that\\u0026#39;s beyond Automod (never used it) but would be cool to see going forward.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/evtk2gn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/\", \"created\": 1564800882.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl19sn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evtbib3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1564766874.0, \"send_replies\": true, \"parent_id\": \"t1_evt6uwj\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"The secret is orgzly search and widgets. It's quite powerful. You can then use a widget to display it. \\n\\nI do have a looooong list (50+ files per year) but I almost never go in there directly. On the PC I use to agenda, in orgzly there's the widget and breadcrumbs (recently implemented). In addition, there are some things I don't do on orgzly, like writing lengthy journal notes. If I really have to, i dictate by voice (fast and easy) into my generic \\\"inbox\\\" file and just refile later when I'm at the PC. Orgzly is set to schedule whatever I created to todays, so it shows up on my agenda and I know I need to refile.\", \"link_title\": \"Diary/Journal that works on mobile too\", \"author_flair_css_class\": null, \"name\": \"t1_evtbib3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe secret is orgzly search and widgets. It\\u0026#39;s quite powerful. You can then use a widget to display it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI do have a looooong list (50+ files per year) but I almost never go in there directly. On the PC I use to agenda, in orgzly there\\u0026#39;s the widget and breadcrumbs (recently implemented). In addition, there are some things I don\\u0026#39;t do on orgzly, like writing lengthy journal notes. If I really have to, i dictate by voice (fast and easy) into my generic \\u0026quot;inbox\\u0026quot; file and just refile later when I\\u0026#39;m at the PC. Orgzly is set to schedule whatever I created to todays, so it shows up on my agenda and I know I need to refile.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/evtbib3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"report_reasons\": null, \"link_author\": \"updatedprocess\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"created\": 1564795674.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl19sn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evt6uwj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"updatedprocess\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1564764077.0, \"send_replies\": true, \"parent_id\": \"t1_evt1wij\", \"score\": 1, \"author_fullname\": \"t2_1xd9io43\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thankyou once more. So if you have all these org files in orgzly don't you find them difficult to manage? On a desktop /laptop you can use folders but I don't believe that orgzly has folders. Do you have one super long list of org files? Or don't you add all these files onto orgzly?\", \"link_title\": \"Diary/Journal that works on mobile too\", \"author_flair_css_class\": null, \"name\": \"t1_evt6uwj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThankyou once more. So if you have all these org files in orgzly don\\u0026#39;t you find them difficult to manage? On a desktop /laptop you can use folders but I don\\u0026#39;t believe that orgzly has folders. Do you have one super long list of org files? Or don\\u0026#39;t you add all these files onto orgzly?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/evt6uwj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"report_reasons\": null, \"link_author\": \"updatedprocess\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"created\": 1564792877.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl19sn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evt1wij\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1564761062.0, \"send_replies\": true, \"parent_id\": \"t1_evt09ss\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I do have an org with weekly routines, but I \\\"cheat\\\" and put in other things like birthdays etc. \\n\\nI have weekly files (like w31-2019.org) for example, where I put in appointments and tasks etc, split to work and personal. The week division is not really \\\"hardcore\\\" as it sounds, it's basically just a way to not have one huge file and not having archive files, which I don't find that useful. \\n\\nThen i also use a different keyword (\\\"Active\\\") for projects - essentially collection todos under one bigger todo. Events (that comes from a dedicated file I mentioned) or meetings do not have a keyword at all, just a time range. Best little trick make them stand out in the agenda, and also trigger a different notification in orgzly. It makes it easier to distinguish between these and just tasks I'm scheduling. \\n\\nLet me know if you have more questions, I love going into details...\", \"link_title\": \"Diary/Journal that works on mobile too\", \"author_flair_css_class\": null, \"name\": \"t1_evt1wij\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do have an org with weekly routines, but I \\u0026quot;cheat\\u0026quot; and put in other things like birthdays etc. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have weekly files (like w31-2019.org) for example, where I put in appointments and tasks etc, split to work and personal. The week division is not really \\u0026quot;hardcore\\u0026quot; as it sounds, it\\u0026#39;s basically just a way to not have one huge file and not having archive files, which I don\\u0026#39;t find that useful. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen i also use a different keyword (\\u0026quot;Active\\u0026quot;) for projects - essentially collection todos under one bigger todo. Events (that comes from a dedicated file I mentioned) or meetings do not have a keyword at all, just a time range. Best little trick make them stand out in the agenda, and also trigger a different notification in orgzly. It makes it easier to distinguish between these and just tasks I\\u0026#39;m scheduling. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet me know if you have more questions, I love going into details...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/evt1wij/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"report_reasons\": null, \"link_author\": \"updatedprocess\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"created\": 1564789862.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl19sn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evt09ss\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"updatedprocess\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1564760066.0, \"send_replies\": true, \"parent_id\": \"t1_evsfdyb\", \"score\": 1, \"author_fullname\": \"t2_1xd9io43\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks for your detailed reply. I'll take a look at your website too. \\n\\nHow do you manage appointments and anniversaries? Do you have one org file with all appointments and anniversaries or do you split them? I thought about having an org file with contacts in it along with with their birthdays and wedding anniversaries etc. \\n\\nAlso what do you mean by w##.org?\", \"link_title\": \"Diary/Journal that works on mobile too\", \"author_flair_css_class\": null, \"name\": \"t1_evt09ss\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for your detailed reply. I\\u0026#39;ll take a look at your website too. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do you manage appointments and anniversaries? Do you have one org file with all appointments and anniversaries or do you split them? I thought about having an org file with contacts in it along with with their birthdays and wedding anniversaries etc. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso what do you mean by w##.org?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/evt09ss/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"report_reasons\": null, \"link_author\": \"updatedprocess\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"created\": 1564788866.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_az02xi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evsn0pc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"skhairy\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1564751290.0, \"send_replies\": true, \"parent_id\": \"t1_ei9vjcf\", \"score\": 1, \"author_fullname\": \"t2_33r3z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Upon reflection, I find we ususally relate things in our minds based on common characteritics. I don't think we keep classification trees in our minds.\", \"link_title\": \"How to decide when to use tags vs. grouping under a sub-headline?\", \"author_flair_css_class\": null, \"name\": \"t1_evsn0pc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUpon reflection, I find we ususally relate things in our minds based on common characteritics. I don\\u0026#39;t think we keep classification trees in our minds.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/az02xi/how_to_decide_when_to_use_tags_vs_grouping_under/evsn0pc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/az02xi/how_to_decide_when_to_use_tags_vs_grouping_under/\", \"report_reasons\": null, \"link_author\": \"seeminglyugly\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/az02xi/how_to_decide_when_to_use_tags_vs_grouping_under/\", \"created\": 1564780090.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl19sn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evsfdyb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1564744253.0, \"send_replies\": true, \"parent_id\": \"t3_cl19sn\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I have a whole system (my blog is at joshrollinswrites.com) but here's the general idea:\\n\\nI use org capture to generate journal entries with a weekly date tree. It includes a time stamp that shows on my agenda. I can later view my agenda, knowing that all entries starting with \\\"about: xxx\\\" will take me to my journal about this topic. \\n\\nThe capture temple grabs the link from my todo org list, so the journal entry doesn't contain the task itself, but links to it directly if I need to see it (journal is for writing about experiences, taks are keywords, scheduling and properties). The journal file also displays my images in line, and i enjoy having journal entry with a picture from the experience.\\n\\nI don't use diary at all because I don't need to. Upcoming appointments are separated in their own w##.org as well as anything else, it's organic and works well on orgzly since the links can move me from the agenda to the journal entry. I have a shortcut to my journal org file on my homescreen on Android too in a folder if I want to browse.\", \"link_title\": \"Diary/Journal that works on mobile too\", \"author_flair_css_class\": null, \"name\": \"t1_evsfdyb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a whole system (my blog is at joshrollinswrites.com) but here\\u0026#39;s the general idea:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use org capture to generate journal entries with a weekly date tree. It includes a time stamp that shows on my agenda. I can later view my agenda, knowing that all entries starting with \\u0026quot;about: xxx\\u0026quot; will take me to my journal about this topic. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe capture temple grabs the link from my todo org list, so the journal entry doesn\\u0026#39;t contain the task itself, but links to it directly if I need to see it (journal is for writing about experiences, taks are keywords, scheduling and properties). The journal file also displays my images in line, and i enjoy having journal entry with a picture from the experience.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t use diary at all because I don\\u0026#39;t need to. Upcoming appointments are separated in their own w##.org as well as anything else, it\\u0026#39;s organic and works well on orgzly since the links can move me from the agenda to the journal entry. I have a shortcut to my journal org file on my homescreen on Android too in a folder if I want to browse.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/evsfdyb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"report_reasons\": null, \"link_author\": \"updatedprocess\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"created\": 1564773053.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evq1hmq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nickanderson5308\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564684485.0, \"send_replies\": true, \"parent_id\": \"t1_evc2phg\", \"score\": 1, \"author_fullname\": \"t2_13n3c6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks, I added a reference to org-s5 in the presentation.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_evq1hmq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks, I added a reference to org-s5 in the presentation.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/evq1hmq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564713285.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evlny21\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"doolio_\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564597000.0, \"send_replies\": true, \"parent_id\": \"t1_ev29ba2\", \"score\": 1, \"author_fullname\": \"t2_16icig\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"There is also [Emacs-reveal ](https://gitlab.com/oer/emacs-reveal) which builds upon org-reveal.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_evlny21\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is also \\u003Ca href=\\\"https://gitlab.com/oer/emacs-reveal\\\"\\u003EEmacs-reveal \\u003C/a\\u003E which builds upon org-reveal.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/evlny21/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564625800.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1564532423.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgy3v6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evhu45y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yantar92\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564532214.0, \"send_replies\": true, \"parent_id\": \"t1_evgku6l\", \"score\": 1, \"author_fullname\": \"t2_qh3te\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I might also try to introduce a new cache variable. Similar to the code below:\\n\\n (defvar org-att-id-history nil\\n \\\"ID completion history for att-id: link type.\\\")\\n \\n (defvar org-att-id-cache nil\\n \\\"ID completion cache for att-id: link type.\\\")\\n\\n (defun org-att-id-prompt-id ()\\n \\\"Prompt for the id during completion of att-id: link.\\\"\\n (let ((org-refile-history org-att-id-history)\\n \\t(org-refile-cache org-att-id-cache)\\n \\t(org-refile-target-verify-function #'org-att-id-skip-function))\\n (let ((prompt-ans (org-refile-get-location \\\"Link to attachment from\\\")))\\n (prog1\\n \\t (org-id-get (seq-find #'markerp\\n \\t\\t\\t\\tprompt-ans))\\n \\t(setq org-att-id-history org-refile-history)\\n \\t(setq org-att-id-cache org-refile-cache)))))\", \"link_title\": \"Automate refiling according to tag?\", \"author_flair_css_class\": null, \"name\": \"t1_evhu45y\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI might also try to introduce a new cache variable. Similar to the code below:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(defvar org-att-id-history nil\\n \\u0026quot;ID completion history for att-id: link type.\\u0026quot;)\\n\\n(defvar org-att-id-cache nil\\n \\u0026quot;ID completion cache for att-id: link type.\\u0026quot;)\\n\\n(defun org-att-id-prompt-id ()\\n \\u0026quot;Prompt for the id during completion of att-id: link.\\u0026quot;\\n (let ((org-refile-history org-att-id-history)\\n (org-refile-cache org-att-id-cache)\\n (org-refile-target-verify-function #\\u0026#39;org-att-id-skip-function))\\n (let ((prompt-ans (org-refile-get-location \\u0026quot;Link to attachment from\\u0026quot;)))\\n (prog1\\n (org-id-get (seq-find #\\u0026#39;markerp\\n prompt-ans))\\n (setq org-att-id-history org-refile-history)\\n (setq org-att-id-cache org-refile-cache)))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/evhu45y/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"created\": 1564561014.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cjhekv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evhted0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yantar92\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1564531895.0, \"send_replies\": true, \"parent_id\": \"t1_evhlyl9\", \"score\": 1, \"author_fullname\": \"t2_qh3te\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"If you have any success adapting that code, could you share the results? I also have some interest in making that code work to truncate wide tables in org mode, but I do not have much time to work on it any time soon.\", \"link_title\": \"How to transiently truncate line for link and code block ?\", \"author_flair_css_class\": null, \"name\": \"t1_evhted0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you have any success adapting that code, could you share the results? I also have some interest in making that code work to truncate wide tables in org mode, but I do not have much time to work on it any time soon.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cjhekv/how_to_transiently_truncate_line_for_link_and/evhted0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cjhekv/how_to_transiently_truncate_line_for_link_and/\", \"report_reasons\": null, \"link_author\": \"oceanlessfreediver\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cjhekv/how_to_transiently_truncate_line_for_link_and/\", \"created\": 1564560695.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cjhekv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evhlyl9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"oceanlessfreediver\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1564528482.0, \"send_replies\": true, \"parent_id\": \"t1_eve1yt1\", \"score\": 1, \"author_fullname\": \"t2_qlzxv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks a ton ! That is way more involved than I expected, but I will definitely give it a try.\", \"link_title\": \"How to transiently truncate line for link and code block ?\", \"author_flair_css_class\": null, \"name\": \"t1_evhlyl9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks a ton ! That is way more involved than I expected, but I will definitely give it a try.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cjhekv/how_to_transiently_truncate_line_for_link_and/evhlyl9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cjhekv/how_to_transiently_truncate_line_for_link_and/\", \"report_reasons\": null, \"link_author\": \"oceanlessfreediver\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cjhekv/how_to_transiently_truncate_line_for_link_and/\", \"created\": 1564557282.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bgy3v6\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evgku6l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nv-elisp\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564511838.0, \"send_replies\": true, \"parent_id\": \"t1_euqg8e8\", \"score\": 1, \"author_fullname\": \"t2_2dw7h444\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Interesting. I'm still getting a bunch of unrelated headings even when clearing the cache. I'll look into it when I have time. Thanks for taking the time to try it out.\", \"link_title\": \"Automate refiling according to tag?\", \"author_flair_css_class\": null, \"name\": \"t1_evgku6l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EInteresting. I\\u0026#39;m still getting a bunch of unrelated headings even when clearing the cache. I\\u0026#39;ll look into it when I have time. Thanks for taking the time to try it out.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/evgku6l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"report_reasons\": null, \"link_author\": \"alisplisp\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/bgy3v6/automate_refiling_according_to_tag/\", \"created\": 1564540638.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cjdx3b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evf0l0e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564485168.0, \"send_replies\": true, \"parent_id\": \"t1_evejrre\", \"score\": 1, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Copy-pasted from TRAMP manual:\\n\\n4.8 Using\\u00a0GNOME\\u00a0Online Accounts based methods\\n\\nGVFS-based methods include also\\u00a0GNOMEOnline Accounts, which support the\\u00a0Filesservice. These are the Google Drive file system, and the OwnCloud/NextCloud file system. The file name syntax is here always/gdrive:john.doe@gmail.com:/path/to/file(\\u2018john.doe@gmail.com\\u2019 stands here for your Google Drive account), or\\u00a0/nextcloud:user@host#8081:/path/to/file(\\u20188081\\u2019 stands for the port number) for OwnCloud/NextCloud files.\\n\\n\\n\\nSo, seems simple enough, but you'd have to authenticate and use the GNOME online thing, which I never used. I can only guess that they do that through chromium. \\n\\nIf I had to do it, I'd just sync my public folder to my Windows machine which has a google drive and all the rest of the \\\"not really private\\\" stuff on it. I use synching for syncing everything.\", \"link_title\": \"Quickly Export Org-Mode Tree to Cloud?\", \"author_flair_css_class\": null, \"name\": \"t1_evf0l0e\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECopy-pasted from TRAMP manual:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E4.8 Using\\u00a0GNOME\\u00a0Online Accounts based methods\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGVFS-based methods include also\\u00a0GNOMEOnline Accounts, which support the\\u00a0Filesservice. These are the Google Drive file system, and the OwnCloud/NextCloud file system. The file name syntax is here always/gdrive:\\u003Ca href=\\\"mailto:john.doe@gmail.com\\\"\\u003Ejohn.doe@gmail.com\\u003C/a\\u003E:/path/to/file(\\u2018\\u003Ca href=\\\"mailto:john.doe@gmail.com\\\"\\u003Ejohn.doe@gmail.com\\u003C/a\\u003E\\u2019 stands here for your Google Drive account), or\\u00a0/nextcloud:user@host#8081:/path/to/file(\\u20188081\\u2019 stands for the port number) for OwnCloud/NextCloud files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, seems simple enough, but you\\u0026#39;d have to authenticate and use the GNOME online thing, which I never used. I can only guess that they do that through chromium. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I had to do it, I\\u0026#39;d just sync my public folder to my Windows machine which has a google drive and all the rest of the \\u0026quot;not really private\\u0026quot; stuff on it. I use synching for syncing everything.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/evf0l0e/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/\", \"created\": 1564513968.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cjdx3b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evejrre\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ijustwantanfingname\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564468892.0, \"send_replies\": true, \"parent_id\": \"t1_evcs4u8\", \"score\": 1, \"author_fullname\": \"t2_63w28\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003EI know the new emacs allows Google Drive integration with TRAMP\\n\\nGod I love Emacs.\\n\\nSurprised integration with a proprietary service made it into mainline though?\", \"link_title\": \"Quickly Export Org-Mode Tree to Cloud?\", \"author_flair_css_class\": null, \"name\": \"t1_evejrre\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI know the new emacs allows Google Drive integration with TRAMP\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EGod I love Emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESurprised integration with a proprietary service made it into mainline though?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/evejrre/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/\", \"created\": 1564497692.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cjhekv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eve1yt1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"yantar92\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1564453344.0, \"send_replies\": true, \"parent_id\": \"t3_cjhekv\", \"score\": 3, \"author_fullname\": \"t2_qh3te\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I do not know a good solution for this. However, I wrote some proof of concept code, which allows truncating **some** lines in the buffer. See [this comment](https://www.reddit.com/r/orgmode/comments/98f6i1/is_it_possible_to_activate_a_minor_mode_if_the/e4gj9hr/) for the code.\", \"link_title\": \"How to transiently truncate line for link and code block ?\", \"author_flair_css_class\": null, \"name\": \"t1_eve1yt1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do not know a good solution for this. However, I wrote some proof of concept code, which allows truncating \\u003Cstrong\\u003Esome\\u003C/strong\\u003E lines in the buffer. See \\u003Ca href=\\\"https://www.reddit.com/r/orgmode/comments/98f6i1/is_it_possible_to_activate_a_minor_mode_if_the/e4gj9hr/\\\"\\u003Ethis comment\\u003C/a\\u003E for the code.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cjhekv/how_to_transiently_truncate_line_for_link_and/eve1yt1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cjhekv/how_to_transiently_truncate_line_for_link_and/\", \"report_reasons\": null, \"link_author\": \"oceanlessfreediver\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cjhekv/how_to_transiently_truncate_line_for_link_and/\", \"created\": 1564482144.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cjdx3b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evd0480\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"akirakom\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564427146.0, \"send_replies\": true, \"parent_id\": \"t3_cjdx3b\", \"score\": 3, \"author_fullname\": \"t2_ouz7ysa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Org2blog?\", \"link_title\": \"Quickly Export Org-Mode Tree to Cloud?\", \"author_flair_css_class\": null, \"name\": \"t1_evd0480\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOrg2blog?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/evd0480/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/\", \"created\": 1564455946.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cjdx3b\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evcs4u8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"JR121\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564422066.0, \"send_replies\": true, \"parent_id\": \"t3_cjdx3b\", \"score\": 3, \"author_fullname\": \"t2_g65oo\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Um, export the tree to a local folder that syncs to the cloud (i.e. Dropbox)?\\n\\nI know the new emacs allows Google Drive integration with TRAMP but not sure how that works exactly.\", \"link_title\": \"Quickly Export Org-Mode Tree to Cloud?\", \"author_flair_css_class\": null, \"name\": \"t1_evcs4u8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUm, export the tree to a local folder that syncs to the cloud (i.e. Dropbox)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know the new emacs allows Google Drive integration with TRAMP but not sure how that works exactly.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/evcs4u8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/\", \"report_reasons\": null, \"link_author\": \"eeg_bert\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/\", \"created\": 1564450866.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evc7d8g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rcdwealth\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564408309.0, \"send_replies\": true, \"parent_id\": \"t1_eva8yr0\", \"score\": 3, \"author_fullname\": \"t2_u86pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You can make Org files by using .TXT extension, just put your stuff inside. Almost any text editor will allow some kind of macros, you can use macros to quicker insert TODO/DONE or schedules and tags, that all works with any editor. Then once on GNU Emacs you can use the rest.\\n\\nDropbox has its access over standard API, is it REST or what it is named, thus I think that GNU Emacs TRAMP can easily access it. I can access NextCloud with Tramp, and edit files on NextCloud, so same is for Dropbox.\\n\\nBut general advise would be: do not use third party servers for your private files!\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_evc7d8g\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can make Org files by using .TXT extension, just put your stuff inside. Almost any text editor will allow some kind of macros, you can use macros to quicker insert TODO/DONE or schedules and tags, that all works with any editor. Then once on GNU Emacs you can use the rest.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDropbox has its access over standard API, is it REST or what it is named, thus I think that GNU Emacs TRAMP can easily access it. I can access NextCloud with Tramp, and edit files on NextCloud, so same is for Dropbox.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut general advise would be: do not use third party servers for your private files!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/evc7d8g/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564437109.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1564404974.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evc2phg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rcdwealth\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564404500.0, \"send_replies\": true, \"parent_id\": \"t1_ev3i1ed\", \"score\": 1, \"author_fullname\": \"t2_u86pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"There is also S5 presentation: https://eschulte.github.io/org-S5/s5.html -- but I am just thinking, if you do not have your own computer, then you wish to publish as HTML to show on other computers without Org and GNU Emacs, I understand that.\\n\\nBut as long as you have GNU Emacs, with proper faces settings, and keyboard bindings such as those to narrow and widen some sections, you could make presentation without using any browser or external tools.\\n\\nUsing cursor to move over text while talking is more superior to exported HTML.\\n\\nUsing Org links would be more superior as you could decide what to show. Opening videos and pictures would be easier.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_evc2phg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is also S5 presentation: \\u003Ca href=\\\"https://eschulte.github.io/org-S5/s5.html\\\"\\u003Ehttps://eschulte.github.io/org-S5/s5.html\\u003C/a\\u003E -- but I am just thinking, if you do not have your own computer, then you wish to publish as HTML to show on other computers without Org and GNU Emacs, I understand that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut as long as you have GNU Emacs, with proper faces settings, and keyboard bindings such as those to narrow and widen some sections, you could make presentation without using any browser or external tools.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUsing cursor to move over text while talking is more superior to exported HTML.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUsing Org links would be more superior as you could decide what to show. Opening videos and pictures would be easier.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/evc2phg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564433300.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evc27u1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"rcdwealth\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564404056.0, \"send_replies\": true, \"parent_id\": \"t3_ci2gei\", \"score\": 3, \"author_fullname\": \"t2_u86pa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"While Org mode began as note taking application, it has grown over that, it is much more than note taking. I may list how I am using it in our business:\\n\\n- all commercial agreements are drafted in Org files, then exported to\\n PDF for signing and notarizations. LaTeX snippets are used whenever\\n it is necessary to improve the document, such as signature snippets\\n or similar. Org mode helps in constructing LaTeX documents faster.\\n\\n- plans, programs, projects are written on my side in Org mode. I\\n could have done that in LaTeX straight. It would probably look much\\n better if I would be doing it without using Org mode. I have already\\n database based hierarchical structure of plans, programs, projects,\\n tasks, and the fundamental approach of using a database seem much\\n better to me than using Org files, which are in itself, also a type\\n of organized structural and self-referencing database.\\n\\n- Org mode was initially meant for single person, but plans, programs,\\n projects, tasks must be assigned to staff or team members. Little if\\n any function exist in the Org mode to handle tasks in collaboration\\n with other people. On my side I have implemented functions to\\n quickly assign certain tasks, with star headings, to team member,\\n and to quickly send the task to team member. They respond by emails\\n with the unique Org ID inside, and I can then re-edit the file to\\n mark something done or pending. It could be much more\\n straightforward, as assigning, delegating actions and supervising\\n such actions is what brings the business forward.\\n\\n- customer relationship management is a term that many will mistake\\n for \\\"software\\\". It is rather sba et of fundamental principles,\\n policies or workflows that help in managing relations. Software may\\n be one of them, certainly not the only one. Within those terms, Org\\n mode can be used for efficient customer relationship management.\\n\\n- on my side account is defined as either some group of people, or\\n company, or list of people, maybe it would be best to call it \\\"list\\\"\\n rather than \\\"account\\\". Yet for each account I have made option to be\\n able to quickly open an Org file. Simply define one directory where\\n all sub-directories are to point to various accounts or lists. Let\\n us say \\\\`Org/Accounts/List-001\\\\` could be one of them. Opening Org\\n file automatically in \\\\`Org/Accounts/List-001/index.org\\\\` could be one\\n way of managing all notes that belong to such account or list.\\n\\n- account or list would have either people or other lists belonging to\\n it. So in similar way, one can have one Org file for each\\n person. That is how I manage in our organization. Each person has\\n one Org file assigned. They don't deal with Org files, if they don't\\n have a computer, they would, but they cannot, as they are on\\n field. But they can read emails and respond by emails. Tasks are\\n assigned from their Org file to them by using our email\\n addresses. They respond back on the tasks assigned. The central\\n control office or myself, we can have overview on which tasks have\\n been done and which not. They can also receive the full Org file for\\n review, but due to environment it would be impossible for each of\\n them editing such files.\\n\\nMost of features that I use with Org files can be implemented with\\nother types of files, maybe even better structured. I would rather\\nprefer editing the Emacs Lisp data structures or databases.\\n\\nI have minimum of 200-300 Org files on my disk, I can quickly access\\neach of them, as I am not accessing files, I am accessing the \\\\`list\\\\`\\nor \\\\`group\\\\` or \\\\`account\\\\` or \\\\`person\\\\` that I am relating to. This way I\\ndo not need to think of files and names of files, I am thinking of\\ncompanies, groups, lists, people, and once I click or locate such\\nperson in the database, Org file is comfortable manner opened. I do\\nnot even know the name of it, it is stored in right place and I can\\naccess it again.\\n\\nSuch principles can be used with any other types of files, I see no\\nreason that I use it exclusively with Org files, even I do it\\ncurrently.\\n\\nOrg mode is praised too much. \\\\`todo-mode\\\\` is what majority of Org\\nusers need, but never discover it, it is not as well marketed.\\n\\nMany \\\"Org features\\\" are nothing Org related, they should be separated,\\nfragmented, to benefit Emacs Lisp with new useable functions, like Org\\ntable mode is separated, but it simply does not work the best until\\nOrg mode is turned on. I don't see why I should not be able to use\\ntables in simple text files, or in emails. Of course I can turn on the\\nOrg mode, but it would be better that many functions get fragmented\\nfor overal GNU Emacs use.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_evc27u1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile Org mode began as note taking application, it has grown over that, it is much more than note taking. I may list how I am using it in our business:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Eall commercial agreements are drafted in Org files, then exported to\\nPDF for signing and notarizations. LaTeX snippets are used whenever\\nit is necessary to improve the document, such as signature snippets\\nor similar. Org mode helps in constructing LaTeX documents faster.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Eplans, programs, projects are written on my side in Org mode. I\\ncould have done that in LaTeX straight. It would probably look much\\nbetter if I would be doing it without using Org mode. I have already\\ndatabase based hierarchical structure of plans, programs, projects,\\ntasks, and the fundamental approach of using a database seem much\\nbetter to me than using Org files, which are in itself, also a type\\nof organized structural and self-referencing database.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EOrg mode was initially meant for single person, but plans, programs,\\nprojects, tasks must be assigned to staff or team members. Little if\\nany function exist in the Org mode to handle tasks in collaboration\\nwith other people. On my side I have implemented functions to\\nquickly assign certain tasks, with star headings, to team member,\\nand to quickly send the task to team member. They respond by emails\\nwith the unique Org ID inside, and I can then re-edit the file to\\nmark something done or pending. It could be much more\\nstraightforward, as assigning, delegating actions and supervising\\nsuch actions is what brings the business forward.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Ecustomer relationship management is a term that many will mistake\\nfor \\u0026quot;software\\u0026quot;. It is rather sba et of fundamental principles,\\npolicies or workflows that help in managing relations. Software may\\nbe one of them, certainly not the only one. Within those terms, Org\\nmode can be used for efficient customer relationship management.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Eon my side account is defined as either some group of people, or\\ncompany, or list of people, maybe it would be best to call it \\u0026quot;list\\u0026quot;\\nrather than \\u0026quot;account\\u0026quot;. Yet for each account I have made option to be\\nable to quickly open an Org file. Simply define one directory where\\nall sub-directories are to point to various accounts or lists. Let\\nus say `Org/Accounts/List-001` could be one of them. Opening Org\\nfile automatically in `Org/Accounts/List-001/index.org` could be one\\nway of managing all notes that belong to such account or list.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Eaccount or list would have either people or other lists belonging to\\nit. So in similar way, one can have one Org file for each\\nperson. That is how I manage in our organization. Each person has\\none Org file assigned. They don\\u0026#39;t deal with Org files, if they don\\u0026#39;t\\nhave a computer, they would, but they cannot, as they are on\\nfield. But they can read emails and respond by emails. Tasks are\\nassigned from their Org file to them by using our email\\naddresses. They respond back on the tasks assigned. The central\\ncontrol office or myself, we can have overview on which tasks have\\nbeen done and which not. They can also receive the full Org file for\\nreview, but due to environment it would be impossible for each of\\nthem editing such files.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EMost of features that I use with Org files can be implemented with\\nother types of files, maybe even better structured. I would rather\\nprefer editing the Emacs Lisp data structures or databases.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have minimum of 200-300 Org files on my disk, I can quickly access\\neach of them, as I am not accessing files, I am accessing the `list`\\nor `group` or `account` or `person` that I am relating to. This way I\\ndo not need to think of files and names of files, I am thinking of\\ncompanies, groups, lists, people, and once I click or locate such\\nperson in the database, Org file is comfortable manner opened. I do\\nnot even know the name of it, it is stored in right place and I can\\naccess it again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESuch principles can be used with any other types of files, I see no\\nreason that I use it exclusively with Org files, even I do it\\ncurrently.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrg mode is praised too much. `todo-mode` is what majority of Org\\nusers need, but never discover it, it is not as well marketed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany \\u0026quot;Org features\\u0026quot; are nothing Org related, they should be separated,\\nfragmented, to benefit Emacs Lisp with new useable functions, like Org\\ntable mode is separated, but it simply does not work the best until\\nOrg mode is turned on. I don\\u0026#39;t see why I should not be able to use\\ntables in simple text files, or in emails. Of course I can turn on the\\nOrg mode, but it would be better that many functions get fragmented\\nfor overal GNU Emacs use.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/evc27u1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564432856.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evbtn34\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564393879.0, \"send_replies\": true, \"parent_id\": \"t1_eva8yr0\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"There's a project that provides for that. It's been posted here and around the web recently. It's on GitHub, but I don't remember the name. If you search for it, it shouldn't be hard to find.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_evbtn34\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s a project that provides for that. It\\u0026#39;s been posted here and around the web recently. It\\u0026#39;s on GitHub, but I don\\u0026#39;t remember the name. If you search for it, it shouldn\\u0026#39;t be hard to find.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/evbtn34/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564422679.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eva8yr0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"most_painful_truth\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564341808.0, \"send_replies\": true, \"parent_id\": \"t3_ci2gei\", \"score\": 1, \"author_fullname\": \"t2_34ar1w3r\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I wish dropbox allowed simple editing of .org files.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_eva8yr0\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI wish dropbox allowed simple editing of .org files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/eva8yr0/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564370608.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev8kx29\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564282706.0, \"send_replies\": true, \"parent_id\": \"t1_ev82t6d\", \"score\": 1, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks for the kind words.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev8kx29\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for the kind words.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev8kx29/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564311506.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev82t6d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Valdebrun\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564268187.0, \"send_replies\": true, \"parent_id\": \"t1_ev7gk1f\", \"score\": 1, \"author_fullname\": \"t2_druc0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thank you sir and for all of your contributions.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev82t6d\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you sir and for all of your contributions.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev82t6d/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564296987.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev7js2h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564260614.0, \"send_replies\": true, \"parent_id\": \"t1_ev7hhf7\", \"score\": 2, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Thanks for the tip and availability :-)\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev7js2h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for the tip and availability :-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev7js2h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564289414.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev7hhf7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564259789.0, \"send_replies\": true, \"parent_id\": \"t1_ev79go9\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You might look into writing a predicate to use in an `org-ql` query that would be specific to Ledger data. If you come up with something, feel free to post it on the org-ql issue tracker, because I might be able to help you optimize it.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev7hhf7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou might look into writing a predicate to use in an \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E query that would be specific to Ledger data. If you come up with something, feel free to post it on the org-ql issue tracker, because I might be able to help you optimize it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev7hhf7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564288589.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev7gk1f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564259455.0, \"send_replies\": true, \"parent_id\": \"t1_ev56tit\", \"score\": 2, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I use a datetree capture template into a `log.org` file.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev7gk1f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use a datetree capture template into a \\u003Ccode\\u003Elog.org\\u003C/code\\u003E file.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev7gk1f/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564288255.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev79go9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ftrx\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564256920.0, \"send_replies\": true, \"parent_id\": \"t3_ci2gei\", \"score\": 1, \"author_fullname\": \"t2_3n8s7piq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I'm looking for, with much effort involved, a way to integrate \\nledger with org-collector / org-ql to being able to add more\\ninfos on transactions and also generate some kind of statistics\\nlike \\\"how much a certain cheese prize change in the last years?\\\".\\n\\nIt's not a really important thing for me so a very low priority task.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev79go9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m looking for, with much effort involved, a way to integrate \\nledger with org-collector / org-ql to being able to add more\\ninfos on transactions and also generate some kind of statistics\\nlike \\u0026quot;how much a certain cheese prize change in the last years?\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s not a really important thing for me so a very low priority task.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev79go9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564285720.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cikd5t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev77fwy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"takethecannoli4\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1564256205.0, \"send_replies\": true, \"parent_id\": \"t1_ev6q7ug\", \"score\": 1, \"author_fullname\": \"t2_13p6gig2\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I don't even remember why I put this there. Some kind of fix, probably. But why was it working when I used the default keybinding? Anyway: thanks!\", \"link_title\": \"\\\"org-refile-goto-last-stored\\\" not working after a refile\", \"author_flair_css_class\": null, \"name\": \"t1_ev77fwy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t even remember why I put this there. Some kind of fix, probably. But why was it working when I used the default keybinding? Anyway: thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cikd5t/orgrefilegotolaststored_not_working_after_a_refile/ev77fwy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cikd5t/orgrefilegotolaststored_not_working_after_a_refile/\", \"report_reasons\": null, \"link_author\": \"takethecannoli4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cikd5t/orgrefilegotolaststored_not_working_after_a_refile/\", \"created\": 1564285005.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgxw32\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev6s4id\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"most_painful_truth\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1564250738.0, \"send_replies\": true, \"parent_id\": \"t3_cgxw32\", \"score\": 2, \"author_fullname\": \"t2_34ar1w3r\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I want there to be an app called NextClod.\", \"link_title\": \"I made a small script to edit all my nextclod notes in a single org file\", \"author_flair_css_class\": null, \"name\": \"t1_ev6s4id\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want there to be an app called NextClod.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cgxw32/i_made_a_small_script_to_edit_all_my_nextclod/ev6s4id/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cgxw32/i_made_a_small_script_to_edit_all_my_nextclod/\", \"report_reasons\": null, \"link_author\": \"AndyDrop\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cgxw32/i_made_a_small_script_to_edit_all_my_nextclod/\", \"created\": 1564279538.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cikd5t\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev6q7ug\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gusbrs\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1564250112.0, \"send_replies\": true, \"parent_id\": \"t3_cikd5t\", \"score\": 3, \"author_fullname\": \"t2_2wsfe3iy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"When you have there `(setq org-bookmark-names-plist nil)` it is hard for Org to do its job, ain't it?\", \"link_title\": \"\\\"org-refile-goto-last-stored\\\" not working after a refile\", \"author_flair_css_class\": null, \"name\": \"t1_ev6q7ug\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen you have there \\u003Ccode\\u003E(setq org-bookmark-names-plist nil)\\u003C/code\\u003E it is hard for Org to do its job, ain\\u0026#39;t it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/cikd5t/orgrefilegotolaststored_not_working_after_a_refile/ev6q7ug/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/cikd5t/orgrefilegotolaststored_not_working_after_a_refile/\", \"report_reasons\": null, \"link_author\": \"takethecannoli4\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/cikd5t/orgrefilegotolaststored_not_working_after_a_refile/\", \"created\": 1564278912.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev56tit\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Valdebrun\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564228629.0, \"send_replies\": true, \"parent_id\": \"t1_ev4inub\", \"score\": 1, \"author_fullname\": \"t2_druc0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003EBTW, I recommend using Org datetrees for journaling and logging. It's much more efficient than using one file per day.\\n\\nCan you be a little more specific on how you do this?. I do use org-journal.\\n\\nThank you\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev56tit\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EBTW, I recommend using Org datetrees for journaling and logging. It\\u0026#39;s much more efficient than using one file per day.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECan you be a little more specific on how you do this?. I do use org-journal.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev56tit/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564257429.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev4mcg8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"sfptx1310\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564216824.0, \"send_replies\": true, \"parent_id\": \"t1_ev3j424\", \"score\": 1, \"author_fullname\": \"t2_1v43h85z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"I did the same thing, more or less. Rendering images inside documents was one of the killer features. I kinda dislike having to exit the terminal (which I still live in) to edit files though. Sometimes I even open up vi instead if it's a small enough edit. But I guess I'll just take the leap of replacing the terminal emulator for some Emacs alternative at some point. But I feel like I'll miss alacritty a lot.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev4mcg8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI did the same thing, more or less. Rendering images inside documents was one of the killer features. I kinda dislike having to exit the terminal (which I still live in) to edit files though. Sometimes I even open up vi instead if it\\u0026#39;s a small enough edit. But I guess I\\u0026#39;ll just take the leap of replacing the terminal emulator for some Emacs alternative at some point. But I feel like I\\u0026#39;ll miss alacritty a lot.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev4mcg8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564245624.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev4inub\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"github-alphapapa\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564214634.0, \"send_replies\": true, \"parent_id\": \"t1_ev3i1ed\", \"score\": 3, \"author_fullname\": \"t2_17be1v66\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"You may find `org-ql` and `org-sidebar` helpful.\\n\\nBTW, I recommend using Org datetrees for journaling and logging. It's much more efficient than using one file per day.\\n\\nAnd for screencasts, see https://alphapapa.github.io/emacs-package-dev-handbook/#outline-container-Animations%20%2F%20Screencasts\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev4inub\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou may find \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E and \\u003Ccode\\u003Eorg-sidebar\\u003C/code\\u003E helpful.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBTW, I recommend using Org datetrees for journaling and logging. It\\u0026#39;s much more efficient than using one file per day.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd for screencasts, see \\u003Ca href=\\\"https://alphapapa.github.io/emacs-package-dev-handbook/#outline-container-Animations%20%2F%20Screencasts\\\"\\u003Ehttps://alphapapa.github.io/emacs-package-dev-handbook/#outline-container-Animations%20%2F%20Screencasts\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev4inub/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564243434.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev3j424\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"GayboyMooby\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564195941.0, \"send_replies\": true, \"parent_id\": \"t1_ev2aujd\", \"score\": 2, \"author_fullname\": \"t2_wycvy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Either is good for learning. GUI has more features though like ability to render images, use mouse, bind more keyboard modifiers (super, hyper, alt). I use homebrew emacs on OSX but I disabled some GUI features that add clutter like the scroll bars.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev3j424\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEither is good for learning. GUI has more features though like ability to render images, use mouse, bind more keyboard modifiers (super, hyper, alt). I use homebrew emacs on OSX but I disabled some GUI features that add clutter like the scroll bars.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev3j424/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564224741.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev3i1ed\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nickanderson5308\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564195424.0, \"send_replies\": true, \"parent_id\": \"t3_ci2gei\", \"score\": 2, \"author_fullname\": \"t2_13n3c6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"In another attempt to make agenda part of my workflow I enabled idle-org-agenda https://github.com/enisozgen/idle-org-agenda\\n\\nI'm hopeful. \\n\\nI've also been working on a presentation (with org-re-reveal) https://github.com/nickanderson/Org-mode-all-the-thingz for Kansas linux fest https://kansaslinuxfest.org/\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev3i1ed\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn another attempt to make agenda part of my workflow I enabled idle-org-agenda \\u003Ca href=\\\"https://github.com/enisozgen/idle-org-agenda\\\"\\u003Ehttps://github.com/enisozgen/idle-org-agenda\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m hopeful. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve also been working on a presentation (with org-re-reveal) \\u003Ca href=\\\"https://github.com/nickanderson/Org-mode-all-the-thingz\\\"\\u003Ehttps://github.com/nickanderson/Org-mode-all-the-thingz\\u003C/a\\u003E for Kansas linux fest \\u003Ca href=\\\"https://kansaslinuxfest.org/\\\"\\u003Ehttps://kansaslinuxfest.org/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev3i1ed/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564224224.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev39cl2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"most_painful_truth\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564191334.0, \"send_replies\": true, \"parent_id\": \"t1_ev2hefx\", \"score\": 1, \"author_fullname\": \"t2_34ar1w3r\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"for my own reference: https://github.com/railwaycat/homebrew-emacsmacport\\n\\nThanks.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev39cl2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efor my own reference: \\u003Ca href=\\\"https://github.com/railwaycat/homebrew-emacsmacport\\\"\\u003Ehttps://github.com/railwaycat/homebrew-emacsmacport\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev39cl2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564220134.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev2rsus\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"michaelbrain\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564182592.0, \"send_replies\": true, \"parent_id\": \"t3_ci2gei\", \"score\": 2, \"author_fullname\": \"t2_e27gh\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"Today, I changed my speed keys so I could move headlines and the cursor all with one hand. I\\u2019m loving it so far.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev2rsus\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EToday, I changed my speed keys so I could move headlines and the cursor all with one hand. I\\u2019m loving it so far.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev2rsus/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564211392.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev2nbl5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"BeetleB\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564180185.0, \"send_replies\": true, \"parent_id\": \"t1_ev2aujd\", \"score\": 2, \"author_fullname\": \"t2_1tduz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"\\u003EAm I better off using the GUI version of Emacs for OS X with org mode, or should I just work out of the terminal?\\n\\nYes.\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev2nbl5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAm I better off using the GUI version of Emacs for OS X with org mode, or should I just work out of the terminal?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYes.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev2nbl5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564208985.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci2gei\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev2hefx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gjolleyrogers\", \"num_comments\": 25, \"can_mod_post\": false, \"created_utc\": 1564176926.0, \"send_replies\": true, \"parent_id\": \"t1_ev2aujd\", \"score\": 3, \"author_fullname\": \"t2_a8r1k3r\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2s5ak\", \"body\": \"GUI is fine if that\\u2019s your thing. My preference being the emacsmacport\", \"link_title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"author_flair_css_class\": null, \"name\": \"t1_ev2hefx\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGUI is fine if that\\u2019s your thing. My preference being the emacsmacport\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"orgmode\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/ev2hefx/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"report_reasons\": null, \"link_author\": \"AutoModerator\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"created\": 1564205726.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/orgmode\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}], \"after\": \"t1_ev2hefx\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["255881"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:09:58 GMT"], "x-ratelimit-remaining": ["594.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["6"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579398.211095,VS0,VE597"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["2"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-08-12T03:09:58"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_ewn7v74"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:09:58 GMT"], "x-ratelimit-remaining": ["593.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["7"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579399.880580,VS0,VE65"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["2"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/comments/?raw_json=1&limit=100&before=t1_ewn7v74"}, "recorded_at": "2019-08-12T03:09:58"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"[Someone else here had this issue](https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/).\\n\\n\\u0026#x200B;\\n\\nI changed my theme, and the tags are not in the same line as the header anymore. It doesn't matter how wide my frame is when I first call the agenda (I played with it so the frame is wider), but as soon as I drag the frame slightly wider, it adjust so the tags are aligned with the header.\\n\\n\\u0026#x200B;\\n\\nWhy is that, and how do I solve it?\\n\\n\\u0026#x200B;\\n\\nHere's a screenshot with a visual: [https://imgur.com/UxOnRux](https://imgur.com/UxOnRux). Some of the tags come out ok, most don't. I don't understand why.\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tags in agenda start in a new line\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cohikz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565441427.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565469480.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/orgmode/comments/boymdt/orgagenda_and_tags_position/\\\"\\u003ESomeone else here had this issue\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI changed my theme, and the tags are not in the same line as the header anymore. It doesn\\u0026#39;t matter how wide my frame is when I first call the agenda (I played with it so the frame is wider), but as soon as I drag the frame slightly wider, it adjust so the tags are aligned with the header.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhy is that, and how do I solve it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s a screenshot with a visual: \\u003Ca href=\\\"https://imgur.com/UxOnRux\\\"\\u003Ehttps://imgur.com/UxOnRux\\u003C/a\\u003E. Some of the tags come out ok, most don\\u0026#39;t. I don\\u0026#39;t understand why.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cohikz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cohikz/tags_in_agenda_start_in_a_new_line/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1565440680.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Sorry for a probably really basic question.. But I am trying to figure out how to use \\\"TBLFM\\\" in a good way.\\n\\nAll I am trying to do is multiplying two columns and place it in the third. I know elisp is a functional language so it is probably that I just do not understand the concept of it. But lets say I have a table that looks like this:\\n\\n| a | b | c |\\n\\n|---+---+---|\\n\\n| 1 | 1 | |\\n\\n| 2 | 3 | |\\n\\nI would like to multiply each row of a and b into each section in c. So for example @2$3 will be 1 and @3$3 will be 6. How do I do this? I believe that when I figure this out A LOT of what I want to do will work itself out...\\n\\nEdit: The tables I really use is a lot bigger so I do not want to do it for each line. Otherwise it would be like all the tutorials I have read.\", \"author_fullname\": \"t2_g1ubb1e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I multiply two columns into a third with TBLFM?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_coahxb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565394517.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565423100.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESorry for a probably really basic question.. But I am trying to figure out how to use \\u0026quot;TBLFM\\u0026quot; in a good way.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll I am trying to do is multiplying two columns and place it in the third. I know elisp is a functional language so it is probably that I just do not understand the concept of it. But lets say I have a table that looks like this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| a | b | c |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E|---+---+---|\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| 1 | 1 | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E| 2 | 3 | |\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to multiply each row of a and b into each section in c. So for example @2$3 will be 1 and @3$3 will be 6. How do I do this? I believe that when I figure this out A LOT of what I want to do will work itself out...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: The tables I really use is a lot bigger so I do not want to do it for each line. Otherwise it would be like all the tutorials I have read.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"coahxb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"divideByNulls\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/coahxb/how_do_i_multiply_two_columns_into_a_third_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/coahxb/how_do_i_multiply_two_columns_into_a_third_with/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1565394300.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Version 1.7.0 of [helm-org-rifle](https://github.com/alphapapa/helm-org-rifle) has been tagged. It adds a few features since the last stable release. Users of regular MELPA (as opposed to MELPA Stable) won't notice anything new today.\\n\\nThe next release will be version 2.0, which will be split into two packages: `org-rifle` and `helm-org-rifle`, which moves Helm support into a separate package. If anyone is willing to help test it before release, I would appreciate it. The branch is available at https://github.com/alphapapa/org-rifle/tree/wip/org-rifle, and the easiest way to install it is by using `quelpa-use-package`, like this:\\n\\n (require 'quelpa-use-package)\\n (use-package org-rifle\\n :quelpa (org-rifle :fetcher github\\n :repo \\\"alphapapa/org-rifle\\\"\\n :branch \\\"wip/org-rifle\\\"))\\n (use-package helm-org-rifle\\n :quelpa (helm-org-rifle :fetcher github\\n :repo \\\"alphapapa/org-rifle\\\"\\n :branch \\\"wip/org-rifle\\\"))\\n\\nThanks.\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ANN: helm-org-rifle 1.7.0\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co6jy7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 14, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 14, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565404694.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVersion 1.7.0 of \\u003Ca href=\\\"https://github.com/alphapapa/helm-org-rifle\\\"\\u003Ehelm-org-rifle\\u003C/a\\u003E has been tagged. It adds a few features since the last stable release. Users of regular MELPA (as opposed to MELPA Stable) won\\u0026#39;t notice anything new today.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next release will be version 2.0, which will be split into two packages: \\u003Ccode\\u003Eorg-rifle\\u003C/code\\u003E and \\u003Ccode\\u003Ehelm-org-rifle\\u003C/code\\u003E, which moves Helm support into a separate package. If anyone is willing to help test it before release, I would appreciate it. The branch is available at \\u003Ca href=\\\"https://github.com/alphapapa/org-rifle/tree/wip/org-rifle\\\"\\u003Ehttps://github.com/alphapapa/org-rifle/tree/wip/org-rifle\\u003C/a\\u003E, and the easiest way to install it is by using \\u003Ccode\\u003Equelpa-use-package\\u003C/code\\u003E, like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(require \\u0026#39;quelpa-use-package)\\n(use-package org-rifle\\n :quelpa (org-rifle :fetcher github\\n :repo \\u0026quot;alphapapa/org-rifle\\u0026quot;\\n :branch \\u0026quot;wip/org-rifle\\u0026quot;))\\n(use-package helm-org-rifle\\n :quelpa (helm-org-rifle :fetcher github\\n :repo \\u0026quot;alphapapa/org-rifle\\u0026quot;\\n :branch \\u0026quot;wip/org-rifle\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co6jy7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/co6jy7/ann_helmorgrifle_170/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1565375894.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - August 09, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co1x1v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565383762.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co1x1v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/co1x1v/weekly_rorgmode_open_discussion_august_09_2019/\", \"parent_whitelist_status\": null, \"stickied\": true, \"url\": \"https://www.reddit.com/r/orgmode/comments/co1x1v/weekly_rorgmode_open_discussion_august_09_2019/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1565354962.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-ql-block integrates org-ql into Org Agenda custom commands\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_co06k5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I've pushed a new feature to `org-ql`, custom agenda blocks, which allows `org-ql` queries to be integrated into Org Agenda views. So rather than having to rewrite your agenda view entirely using `org-ql-agenda` (which doesn't provide all the features, such as weekly views), you can use `org-ql-block` to complement the standard Org Agenda.\\n\\n\\u003Chttps://github.com/alphapapa/org-ql#function-org-ql-block\\u003E\\n\\nFor example, these two custom agenda commands are equivalent:\\n\\n ;; Standard Org Agenda tags-todo version:\\n (setq org-agenda-custom-commands\\n '((\\\"ces\\\" \\\"Custom: Agenda and Emacs SOMEDAY [#A] items\\\"\\n ((tags-todo \\\"PRIORITY=\\\\\\\"A\\\\\\\"+Emacs/!SOMEDAY\\\")\\n (agenda)))))\\n \\n ;; org-ql version:\\n (setq org-agenda-custom-commands\\n '((\\\"ces\\\" \\\"Custom: Agenda and Emacs SOMEDAY [#A] items\\\"\\n ((org-ql-block '(and (todo \\\"SOMEDAY\\\")\\n (tags \\\"Emacs\\\")\\n (priority \\\"A\\\")))\\n (agenda)))))\\n\\nHowever, the `org-ql-block` version runs in about 1/5th the time (0.7 seconds compared to 3.45 seconds on my collection of `org-agenda-files`).\\n\\nPlease let me know if you have any feedback. Thanks.\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-ql-block integrates org-ql into Org Agenda custom commands\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnrt2d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565326206.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve pushed a new feature to \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E, custom agenda blocks, which allows \\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E queries to be integrated into Org Agenda views. So rather than having to rewrite your agenda view entirely using \\u003Ccode\\u003Eorg-ql-agenda\\u003C/code\\u003E (which doesn\\u0026#39;t provide all the features, such as weekly views), you can use \\u003Ccode\\u003Eorg-ql-block\\u003C/code\\u003E to complement the standard Org Agenda.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/org-ql#function-org-ql-block\\\"\\u003Ehttps://github.com/alphapapa/org-ql#function-org-ql-block\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example, these two custom agenda commands are equivalent:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E;; Standard Org Agenda tags-todo version:\\n(setq org-agenda-custom-commands\\n \\u0026#39;((\\u0026quot;ces\\u0026quot; \\u0026quot;Custom: Agenda and Emacs SOMEDAY [#A] items\\u0026quot;\\n ((tags-todo \\u0026quot;PRIORITY=\\\\\\u0026quot;A\\\\\\u0026quot;+Emacs/!SOMEDAY\\u0026quot;)\\n (agenda)))))\\n\\n;; org-ql version:\\n(setq org-agenda-custom-commands\\n \\u0026#39;((\\u0026quot;ces\\u0026quot; \\u0026quot;Custom: Agenda and Emacs SOMEDAY [#A] items\\u0026quot;\\n ((org-ql-block \\u0026#39;(and (todo \\u0026quot;SOMEDAY\\u0026quot;)\\n (tags \\u0026quot;Emacs\\u0026quot;)\\n (priority \\u0026quot;A\\u0026quot;)))\\n (agenda)))))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHowever, the \\u003Ccode\\u003Eorg-ql-block\\u003C/code\\u003E version runs in about 1/5th the time (0.7 seconds compared to 3.45 seconds on my collection of \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease let me know if you have any feedback. Thanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnrt2d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 1, \"num_comments\": 16, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/cnrt2d/orgqlblock_integrates_orgql_into_org_agenda/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cnrt2d/orgqlblock_integrates_orgql_into_org_agenda/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1565297406.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1565373259.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"co06k5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_cnrt2d\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/co06k5/orgqlblock_integrates_orgql_into_org_agenda/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/cnrt2d/orgqlblock_integrates_orgql_into_org_agenda/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1565344459.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is it possible to disable the header for custom agenda blocks? E.g. I have a block that does a search for todo's of the DONE state and running the command results in line `Global list of TODO items of type: DONE`. Setting `org-agenda-overriding-header` to an empty string just results in an empty line. I'm trying to remove that line as well as the empty line following it because vertical space is precious and I want to display as much information as possible. It is also not necessary because I'm familiar with my custom org agenda view and don't need unnecessary text that adds clutter to the buffer. \\n\\nNot talking about `org-agenda-block-separator`, which I don't mind. I don't believe `org-agenda-compact-blocks` does anything for the header either (at least doesn't remove it).\\n\\nThanks.\", \"author_fullname\": \"t2_kb3uh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Possible to disable header for custom agenda blocks?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cny7ml\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565330808.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565359383.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to disable the header for custom agenda blocks? E.g. I have a block that does a search for todo\\u0026#39;s of the DONE state and running the command results in line \\u003Ccode\\u003EGlobal list of TODO items of type: DONE\\u003C/code\\u003E. Setting \\u003Ccode\\u003Eorg-agenda-overriding-header\\u003C/code\\u003E to an empty string just results in an empty line. I\\u0026#39;m trying to remove that line as well as the empty line following it because vertical space is precious and I want to display as much information as possible. It is also not necessary because I\\u0026#39;m familiar with my custom org agenda view and don\\u0026#39;t need unnecessary text that adds clutter to the buffer. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot talking about \\u003Ccode\\u003Eorg-agenda-block-separator\\u003C/code\\u003E, which I don\\u0026#39;t mind. I don\\u0026#39;t believe \\u003Ccode\\u003Eorg-agenda-compact-blocks\\u003C/code\\u003E does anything for the header either (at least doesn\\u0026#39;t remove it).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cny7ml\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"immortal192\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cny7ml/possible_to_disable_header_for_custom_agenda/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cny7ml/possible_to_disable_header_for_custom_agenda/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1565330583.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I use org source blocks with python for my day to day analysis. I have recently been doing a collaborative project with a colleague of mine, and today he wanted to reuse some analysis I did yesterday. The problem is he only uses jupyter notebooks. All I had to do was replace the python blocks with ipython blocks from ob-ipython, and export the document using ox-ipython, which took all of 30s. Thanks to this community and the developers of these packages for helping our collaborative project from within the confines of org mode!\", \"author_fullname\": \"t2_lbvyqif\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Shout-out to org mode for enabling seamless collaboration!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cny3ny\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 27, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 27, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565358681.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use org source blocks with python for my day to day analysis. I have recently been doing a collaborative project with a colleague of mine, and today he wanted to reuse some analysis I did yesterday. The problem is he only uses jupyter notebooks. All I had to do was replace the python blocks with ipython blocks from ob-ipython, and export the document using ox-ipython, which took all of 30s. Thanks to this community and the developers of these packages for helping our collaborative project from within the confines of org mode!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cny3ny\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jalihal\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cny3ny/shoutout_to_org_mode_for_enabling_seamless/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1565329881.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Step 1: [Mark an item as DONE](https://i.imgur.com/UOXpGXd.png) with `org-shiftright`.\\n\\nStep 2. [Collapse the item to hide the completion date](https://i.imgur.com/LB2gq7b.png) with `org-cycle`.\\n\\nStep 3. [Remove the TODO state or set it back to TODO](https://i.imgur.com/ZiKGSYE.png) with `org-shiftright`.\\n\\nWhen I do step 3, as you can see, the next line gets snarfed up. It's not actually like this in the underlying buffer, it just gets displayed like that until I toggle folding for everything a few times.\\n\\nIs this somehow an intended behavior, or is it a bug?\\n\\nMy setup is just the Org-mode layer that comes with Spacemacs. I have not customized it at all, and just updated packages from Melpa.\", \"author_fullname\": \"t2_2rtig\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Funky behavior when adjusting the TODO state of a collapsed item\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cnwblx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1565319712.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565348244.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EStep 1: \\u003Ca href=\\\"https://i.imgur.com/UOXpGXd.png\\\"\\u003EMark an item as DONE\\u003C/a\\u003E with \\u003Ccode\\u003Eorg-shiftright\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStep 2. \\u003Ca href=\\\"https://i.imgur.com/LB2gq7b.png\\\"\\u003ECollapse the item to hide the completion date\\u003C/a\\u003E with \\u003Ccode\\u003Eorg-cycle\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStep 3. \\u003Ca href=\\\"https://i.imgur.com/ZiKGSYE.png\\\"\\u003ERemove the TODO state or set it back to TODO\\u003C/a\\u003E with \\u003Ccode\\u003Eorg-shiftright\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I do step 3, as you can see, the next line gets snarfed up. It\\u0026#39;s not actually like this in the underlying buffer, it just gets displayed like that until I toggle folding for everything a few times.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this somehow an intended behavior, or is it a bug?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy setup is just the Org-mode layer that comes with Spacemacs. I have not customized it at all, and just updated packages from Melpa.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnwblx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thoomfish\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cnwblx/funky_behavior_when_adjusting_the_todo_state_of_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cnwblx/funky_behavior_when_adjusting_the_todo_state_of_a/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1565319444.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"How can the weekly agenda view be modified to add all todo NEXT entries to be at the top of the agenda view? Currently, they only show up if they are scheduled or have a deadline (as you would expect). I like to use the NEXT todo state to mark items that should be done now as oppose to giving it the deadline of today.\\n\\nAll I have right now is:\\n\\n (setq org-super-agenda-groups \\n '((:name \\\"Next\\\"\\n :todo (\\\"NEXT\\\"))\\n (:name \\\"TODO\\\"\\n :todo (\\\"TODO\\\"))\\n ))\\nAnd C-c a to view weekly agenda. It is perfect so far and all I want is to replace the Next group to show all NEXT items whether or not they are scheduled or have a deadline.\\n\\nMuch appreciated.\", \"author_fullname\": \"t2_kb3uh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-super-agenda--modify weekly agenda?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cn43yz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565202843.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow can the weekly agenda view be modified to add all todo NEXT entries to be at the top of the agenda view? Currently, they only show up if they are scheduled or have a deadline (as you would expect). I like to use the NEXT todo state to mark items that should be done now as oppose to giving it the deadline of today.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll I have right now is:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-super-agenda-groups \\n \\u0026#39;((:name \\u0026quot;Next\\u0026quot;\\n :todo (\\u0026quot;NEXT\\u0026quot;))\\n (:name \\u0026quot;TODO\\u0026quot;\\n :todo (\\u0026quot;TODO\\u0026quot;))\\n ))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnd C-c a to view weekly agenda. It is perfect so far and all I want is to replace the Next group to show all NEXT items whether or not they are scheduled or have a deadline.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMuch appreciated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn43yz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"immortal192\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cn43yz/orgsuperagendamodify_weekly_agenda/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cn43yz/orgsuperagendamodify_weekly_agenda/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1565174043.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm curious. Not just org-mode or even emacs, just general individual-owned tech blogs that are interesting? \\n\\nMine are irreal, I'd rather be writing, and (hasn't written in a while...).\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"What blogs / sites do you follow?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cn03dl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565174505.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m curious. Not just org-mode or even emacs, just general individual-owned tech blogs that are interesting? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMine are irreal, I\\u0026#39;d rather be writing, and (hasn\\u0026#39;t written in a while...).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn03dl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cn03dl/what_blogs_sites_do_you_follow/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1565145705.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"After graduating a few years ago I decided to back to college. I'll be pursing an Associates in Cybersecurity because it will be a career change for me. So to help me get organized I used...that's right you guessed it! **Org-mode**! \\n\\n\\nBasically I created a template where I can add all my degree plan information. Plus I created templates to write down class notes, create presentations with *org-reveal*, and write term papers. It's still a work in progress but I figured I'd share since many college students will begin going back to school soon. \\n\\n\\nHope you all find it useful! \\n\\n\\n[https://github.com/eduardo-robles/graduationplanner](https://github.com/eduardo-robles/graduationplanner)\", \"author_fullname\": \"t2_5t62phw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I created a \\\"Graduation Planner\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cmiyzt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 21, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 21, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565077658.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter graduating a few years ago I decided to back to college. I\\u0026#39;ll be pursing an Associates in Cybersecurity because it will be a career change for me. So to help me get organized I used...that\\u0026#39;s right you guessed it! \\u003Cstrong\\u003EOrg-mode\\u003C/strong\\u003E! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically I created a template where I can add all my degree plan information. Plus I created templates to write down class notes, create presentations with \\u003Cem\\u003Eorg-reveal\\u003C/em\\u003E, and write term papers. It\\u0026#39;s still a work in progress but I figured I\\u0026#39;d share since many college students will begin going back to school soon. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHope you all find it useful! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/eduardo-robles/graduationplanner\\\"\\u003Ehttps://github.com/eduardo-robles/graduationplanner\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmiyzt\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tacosandlinux\", \"num_crossposts\": 1, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cmiyzt/i_created_a_graduation_planner/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1565048858.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello all :)\\n\\nI'm writing a bit LaTeX document and I have a little issue.\\nI can't make \\\"subsubsections\\\" and \\\"paragraphs\\\".\\n\\nI use a custom class for removing the \\\"part\\\":\\n```lisp\\n(add-to-list 'org-latex-classes\\n '(\\\"myreport\\\" \\n \\\"\\\\\\\\documentclass[11pt]{report}\\\"\\n ;; (\\\"\\\\\\\\part{%s}\\\" . \\\"\\\\\\\\part*{%s}\\\")\\n (\\\"\\\\\\\\chapter{%s}\\\" . \\\"\\\\\\\\chapter*{%s}\\\")\\n (\\\"\\\\\\\\section{%s}\\\" . \\\"\\\\\\\\section*{%s}\\\")\\n (\\\"\\\\\\\\subsection{%s}\\\" . \\\"\\\\\\\\subsection*{%s}\\\")\\n (\\\"\\\\\\\\subsubsection{%s}\\\" . \\\"\\\\\\\\subsubsection*{%s}\\\")))\\n```\\n\\nBut this document:\\n```\\n#+LATEX_CLASS: myreport\\n\\n* part\\n** section\\n*** subsection\\n**** subsubsection\\n```\\n\\nproduces this LaTeX:\\n\\n```latex\\n\\\\documentclass[11pt]{report}\\n\\\\usepackage[utf8]{inputenc}\\n\\\\usepackage[T1]{fontenc}\\n\\n\\\\chapter{part}\\n\\\\section{section}\\n\\\\subsection{subsection\\n\\\\begin{enumerate}\\n\\\\item subsubsection\\n\\\\end{enumerate}\\n\\\\end{document}\\n```\\n\\nThe things that I don't want is the \\\"\\\\item\\\". I want it to be a subsubsection.\\n\\nSo how can I do this ? Thanks \\u2764\", \"author_fullname\": \"t2_14cz4w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"headlines to LaTeX\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_clown7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564900786.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello all :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m writing a bit LaTeX document and I have a little issue.\\nI can\\u0026#39;t make \\u0026quot;subsubsections\\u0026quot; and \\u0026quot;paragraphs\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use a custom class for removing the \\u0026quot;part\\u0026quot;:\\n\\u003Ccode\\u003Elisp\\n(add-to-list \\u0026#39;org-latex-classes\\n \\u0026#39;(\\u0026quot;myreport\\u0026quot; \\n \\u0026quot;\\\\\\\\documentclass[11pt]{report}\\u0026quot;\\n ;; (\\u0026quot;\\\\\\\\part{%s}\\u0026quot; . \\u0026quot;\\\\\\\\part*{%s}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\chapter{%s}\\u0026quot; . \\u0026quot;\\\\\\\\chapter*{%s}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\section{%s}\\u0026quot; . \\u0026quot;\\\\\\\\section*{%s}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsection{%s}\\u0026quot; . \\u0026quot;\\\\\\\\subsection*{%s}\\u0026quot;)\\n (\\u0026quot;\\\\\\\\subsubsection{%s}\\u0026quot; . \\u0026quot;\\\\\\\\subsubsection*{%s}\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut this document:\\n```\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003E+LATEX_CLASS: myreport\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Epart\\n** section\\n*** subsection\\n**** subsubsection\\n```\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003Eproduces this LaTeX:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```latex\\n\\\\documentclass[11pt]{report}\\n\\\\usepackage[utf8]{inputenc}\\n\\\\usepackage[T1]{fontenc}\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\\\chapter{part}\\n\\\\section{section}\\n\\\\subsection{subsection\\n\\\\begin{enumerate}\\n\\\\item subsubsection\\n\\\\end{enumerate}\\n\\\\end{document}\\n```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe things that I don\\u0026#39;t want is the \\u0026quot;\\\\item\\u0026quot;. I want it to be a subsubsection.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo how can I do this ? Thanks \\u2764\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"clown7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"phineas0fog\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/clown7/headlines_to_latex/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/clown7/headlines_to_latex/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1564871986.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"When I'm capturing from virtual buffers such as `*scratch*` or `org-src-mode` (with `org-edit-special`), `%f` do not expand as expected. \\n\\nHere's an example:\\n\\n (setq org-capture-templates\\n '((\\\"t\\\" \\\"Tasks 1\\\" entry (file+headline \\\"~/org/tasks.org\\\" \\\"Tasks 1\\\")\\n \\\"* TODO %i%^{1|Title}\\\\n\\\\%u\\\\n:from:\\\\n%f\\\\n:end:%?\\\")\\n\\n (\\\"a\\\" \\\"Tasks 2\\\" entry (file+headline \\\"~/org/tasks.org\\\" \\\"Tasks 2\\\")\\n \\\"* TODO %i%^{1|Title}\\\\n\\\\%u\\\\n:from:\\\\n%(buffer-name)\\\\n:end:%?\\\")))\\n\\nAnd here are the captures I obtain with it:\\n\\n * Tasks 1\\n ** TODO Captured from the ~*scratch*~ buffer.\\n [2019-08-03 Sat]\\n :from:\\n\\n :end:\\n ** TODO Captured from init.org\\n [2019-08-03 Sat]\\n :from:\\n init.org\\n :end:\\n * Tasks 2\\n ** TODO Also Captured from the ~*scratch*~ buffer.\\n [2019-08-03 Sat]\\n :from:\\n *Capture*\\n :end:\\n ** TODO Also Captured from init.org\\n [2019-08-03 Sat]\\n :from:\\n *Capture*\\n :end:\\n\\nWith `%f`, on the scratch buffer I get no value at all. `init.org`, a regular file, is correctly expanded. \\n\\nWith `%(buffer-name)`, all I get is `Capture`, which I suppose is set by Org. So it expands the name of the buffer in which the capture is taking place, and not the one in which I called `org-capture`. Is it possible to get the behavior I want?\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can I get `org-capture-templates` to expand the name of the buffer instead of the filename?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_clnd3r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1564867683.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564892550.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I\\u0026#39;m capturing from virtual buffers such as \\u003Ccode\\u003E*scratch*\\u003C/code\\u003E or \\u003Ccode\\u003Eorg-src-mode\\u003C/code\\u003E (with \\u003Ccode\\u003Eorg-edit-special\\u003C/code\\u003E), \\u003Ccode\\u003E%f\\u003C/code\\u003E do not expand as expected. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s an example:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-capture-templates\\n \\u0026#39;((\\u0026quot;t\\u0026quot; \\u0026quot;Tasks 1\\u0026quot; entry (file+headline \\u0026quot;~/org/tasks.org\\u0026quot; \\u0026quot;Tasks 1\\u0026quot;)\\n \\u0026quot;* TODO %i%^{1|Title}\\\\n\\\\%u\\\\n:from:\\\\n%f\\\\n:end:%?\\u0026quot;)\\n\\n (\\u0026quot;a\\u0026quot; \\u0026quot;Tasks 2\\u0026quot; entry (file+headline \\u0026quot;~/org/tasks.org\\u0026quot; \\u0026quot;Tasks 2\\u0026quot;)\\n \\u0026quot;* TODO %i%^{1|Title}\\\\n\\\\%u\\\\n:from:\\\\n%(buffer-name)\\\\n:end:%?\\u0026quot;)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnd here are the captures I obtain with it:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Tasks 1\\n** TODO Captured from the ~*scratch*~ buffer.\\n[2019-08-03 Sat]\\n:from:\\n\\n:end:\\n** TODO Captured from init.org\\n[2019-08-03 Sat]\\n:from:\\ninit.org\\n:end:\\n* Tasks 2\\n** TODO Also Captured from the ~*scratch*~ buffer.\\n[2019-08-03 Sat]\\n:from:\\n*Capture*\\n:end:\\n** TODO Also Captured from init.org\\n[2019-08-03 Sat]\\n:from:\\n*Capture*\\n:end:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWith \\u003Ccode\\u003E%f\\u003C/code\\u003E, on the scratch buffer I get no value at all. \\u003Ccode\\u003Einit.org\\u003C/code\\u003E, a regular file, is correctly expanded. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith \\u003Ccode\\u003E%(buffer-name)\\u003C/code\\u003E, all I get is \\u003Ccode\\u003ECapture\\u003C/code\\u003E, which I suppose is set by Org. So it expands the name of the buffer in which the capture is taking place, and not the one in which I called \\u003Ccode\\u003Eorg-capture\\u003C/code\\u003E. Is it possible to get the behavior I want?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"clnd3r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/clnd3r/can_i_get_orgcapturetemplates_to_expand_the_name/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1564863750.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Whenever I share org files with someone that has different org settings from my own, I usually have to manually set startup keywords for any settings I want preserved. For example, I've set `org-footnote-section` to `nil`, so if I want the behavior to be editor-independent, I have to manually add a `+#STARTUP` line that makes the setting configuration independent for a line.\\n\\nMy question is, is there a package (or built-in Org function) that can automate this? That e.g. checks which of my org settings are different from the default and commits them to a file in the form of `#+STARTUP` keywords?\", \"author_fullname\": \"t2_ydejh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Comitting settings to in-buffer settings\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cl8gmm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564801768.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhenever I share org files with someone that has different org settings from my own, I usually have to manually set startup keywords for any settings I want preserved. For example, I\\u0026#39;ve set \\u003Ccode\\u003Eorg-footnote-section\\u003C/code\\u003E to \\u003Ccode\\u003Enil\\u003C/code\\u003E, so if I want the behavior to be editor-independent, I have to manually add a \\u003Ccode\\u003E+#STARTUP\\u003C/code\\u003E line that makes the setting configuration independent for a line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy question is, is there a package (or built-in Org function) that can automate this? That e.g. checks which of my org settings are different from the default and commits them to a file in the form of \\u003Ccode\\u003E#+STARTUP\\u003C/code\\u003E keywords?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cl8gmm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gorloj\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cl8gmm/comitting_settings_to_inbuffer_settings/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cl8gmm/comitting_settings_to_inbuffer_settings/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1564772968.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - August 02, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cl3ofg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564778962.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cl3ofg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cl3ofg/weekly_rorgmode_open_discussion_august_02_2019/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1564750162.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'd like to use orgmode to manage my diary and journal both on my laptop and phone. I already use emacs/orgzly for managing todos and keeping information and this works well but I'm struggling with how to move a combined diary and journal.\\n\\nI understand that there are many tools available for org-mode for this (org-journal, etc) however, as I'm out and about a lot, I need to be able to access this on my phone too. I have tried termux however my phone is too small for it to be practical.\\n\\nIdeally I'd like to have an org file with all appointments/anniversaries on it that I can also use as a journal too at the end of the day. Could anyone recommend a way to do this for me as I seem to be struggling a bit to work out the best way to achieve this?\\n\\nOne way I thought of doing the journal part was having a file called 2019, structured like this:\\n\\n\\\\- January\\n\\n\\\\-- DONE 01 Tuesday\\n\\nCLOSED: \\\\[2019-01-01 Tue 20:01\\\\] SCHEDULED: \\u003C2019-01-01 Tue\\u003E\\n\\n\\\\--02 Wednesday\\n\\nSCHEDULED: \\u003C2019-01-01 Tue\\u003E\\n\\netc\\n\\nThis would then show up on my schedule and when I have completed my journal entry for the day would be marked as done. I could generate the file with a script and then I would be good to go. \\n\\nThe only problem is that I'm not sure how to integrate this with a diary (with upcoming appointments and anniversaries)? Should I use the same file or a separate file?\\n\\nIs anyone else doing this successfully already on mobile too? Any suggestions would be warmly welcomed.\\n\\nThanks\", \"author_fullname\": \"t2_1xd9io43\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Diary/Journal that works on mobile too\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cl19sn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564762484.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d like to use orgmode to manage my diary and journal both on my laptop and phone. I already use emacs/orgzly for managing todos and keeping information and this works well but I\\u0026#39;m struggling with how to move a combined diary and journal.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI understand that there are many tools available for org-mode for this (org-journal, etc) however, as I\\u0026#39;m out and about a lot, I need to be able to access this on my phone too. I have tried termux however my phone is too small for it to be practical.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIdeally I\\u0026#39;d like to have an org file with all appointments/anniversaries on it that I can also use as a journal too at the end of the day. Could anyone recommend a way to do this for me as I seem to be struggling a bit to work out the best way to achieve this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne way I thought of doing the journal part was having a file called 2019, structured like this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- January\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-- DONE 01 Tuesday\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECLOSED: [2019-01-01 Tue 20:01] SCHEDULED: \\u0026lt;2019-01-01 Tue\\u0026gt;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E--02 Wednesday\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESCHEDULED: \\u0026lt;2019-01-01 Tue\\u0026gt;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eetc\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis would then show up on my schedule and when I have completed my journal entry for the day would be marked as done. I could generate the file with a script and then I would be good to go. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe only problem is that I\\u0026#39;m not sure how to integrate this with a diary (with upcoming appointments and anniversaries)? Should I use the same file or a separate file?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs anyone else doing this successfully already on mobile too? Any suggestions would be warmly welcomed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cl19sn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"updatedprocess\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cl19sn/diaryjournal_that_works_on_mobile_too/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1564733684.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, I like word wrapping with visual-line-mode but it makes long links and code block poorly visible. Any way to turn truncate-line mode on for code block and links only ?\", \"author_fullname\": \"t2_qlzxv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to transiently truncate line for link and code block ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cjhekv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564463038.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I like word wrapping with visual-line-mode but it makes long links and code block poorly visible. Any way to turn truncate-line mode on for code block and links only ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cjhekv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"oceanlessfreediver\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cjhekv/how_to_transiently_truncate_line_for_link_and/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cjhekv/how_to_transiently_truncate_line_for_link_and/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1564434238.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is there a way to send your current org-mode tree (at point) to the cloud (similar to a github gist, etc)? I.e. you get a shareable link with your org-mode content with syntax highlighting, source blocks, etc.\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Quickly Export Org-Mode Tree to Cloud?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cjdx3b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564448003.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a way to send your current org-mode tree (at point) to the cloud (similar to a github gist, etc)? I.e. you get a shareable link with your org-mode content with syntax highlighting, source blocks, etc.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cjdx3b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cjdx3b/quickly_export_orgmode_tree_to_cloud/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1564419203.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"### Runtime Environment\\n\\n- GNU Emacs 27.0.50\\n- Org mode version 9.2.3\\n- Evil version 1.2.14\\n- MX Linux 18\\n- [~/.emacs.d](https://github.com/mrbig033/emacs)\\n- [Org Settings](https://github.com/mrbig033/emacs/blob/master/modules/packages/main/org.org)\\n- [dotfiles](https://github.com/mrbig033/dotfiles)\\n\\n### Issue\\n\\nAfter a refile, `org-refile-goto-last-stored`, gives me the following message:\\n\\n bookmark-jump: No bookmark specified\\n\\nThe jump is no performed.\\n\\n### EDIT\\n\\nThe jump is performed if I use the default keybinding `C-u C-u C-c C-w`. But I cannot use in any other way.\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\\"org-refile-goto-last-stored\\\" not working after a refile\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cikd5t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1564249833.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564277662.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch3\\u003ERuntime Environment\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EGNU Emacs 27.0.50\\u003C/li\\u003E\\n\\u003Cli\\u003EOrg mode version 9.2.3\\u003C/li\\u003E\\n\\u003Cli\\u003EEvil version 1.2.14\\u003C/li\\u003E\\n\\u003Cli\\u003EMX Linux 18\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mrbig033/emacs\\\"\\u003E~/.emacs.d\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mrbig033/emacs/blob/master/modules/packages/main/org.org\\\"\\u003EOrg Settings\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mrbig033/dotfiles\\\"\\u003Edotfiles\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIssue\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EAfter a refile, \\u003Ccode\\u003Eorg-refile-goto-last-stored\\u003C/code\\u003E, gives me the following message:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ebookmark-jump: No bookmark specified\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe jump is no performed.\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EEDIT\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EThe jump is performed if I use the default keybinding \\u003Ccode\\u003EC-u C-u C-c C-w\\u003C/code\\u003E. But I cannot use in any other way.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cikd5t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cikd5t/orgrefilegotolaststored_not_working_after_a_refile/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cikd5t/orgrefilegotolaststored_not_working_after_a_refile/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1564248862.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - July 26, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ci2gei\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564174175.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ci2gei\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 25, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/ci2gei/weekly_rorgmode_open_discussion_july_26_2019/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1564145375.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Marcin Borkowski: 2019-07-15 Batch Org agenda\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_chmg7z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564082936.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"mbork.pl\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"chmg7z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/chmg7z/marcin_borkowski_20190715_batch_org_agenda/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"http://mbork.pl/2019-07-15_Batch_Org_agenda\", \"subreddit_subscribers\": 5084, \"created_utc\": 1564054136.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have already figured out how to open them when starting emacs. But I cant open it at the same time. When opening, for example, org-todo-list, other buffer changes to it. So i cant open org-todo-list and org-agenda-mode at the same time\", \"author_fullname\": \"t2_47tnx4g5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to open org-todo-list and org-agenda-list at the same time?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_chb3fj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564017628.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have already figured out how to open them when starting emacs. But I cant open it at the same time. When opening, for example, org-todo-list, other buffer changes to it. So i cant open org-todo-list and org-agenda-mode at the same time\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"chb3fj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Jezzah7\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/chb3fj/how_to_open_orgtodolist_and_orgagendalist_at_the/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/chb3fj/how_to_open_orgtodolist_and_orgagendalist_at_the/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563988828.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I've been using org-mode for a while and exploring in which areas it helps my workflow. Some people may find it heretical, but I found that I don't like using org-mode for absolutely everything. For example, I prefer full GUI calendars that sync with WebDAV or Exchange without any Emacs Lisp fiddling.\\n\\nHowever, there is one area I did find it tremendously useful which is managing the coursework for my part-time Master's course. At the beginning of each term I will transcribe the course schedule and deadlines into an org file and throughout the semester I will write my lecture notes in the same org file. In the end I have one org file per course which serves as an agenda throughout the semester and once the course finishes as a note repository.\\n\\nThis use-case obviously could be extended to general project management where I can outline a plan, mark things that are in progress/done/doing. However, when I tried this once or twice it didn't really work as well as it did in my head. Nevertheless, I would really like to give it one more go.\\n\\nDo you guys have any advice on what's the best way to do project management in org? Would you like to describe your workflow? Do you have some useful links to online resources?\\n\\nEdit: some more info about what I mean: https://www.reddit.com/r/orgmode/comments/ch7wxc/how_to_best_use_orgmode_for_project_management/euqie8w/\", \"author_fullname\": \"t2_8bvaq02\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to best use org-mode for project management\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ch7wxc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 18, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 18, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563979126.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564002202.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been using org-mode for a while and exploring in which areas it helps my workflow. Some people may find it heretical, but I found that I don\\u0026#39;t like using org-mode for absolutely everything. For example, I prefer full GUI calendars that sync with WebDAV or Exchange without any Emacs Lisp fiddling.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, there is one area I did find it tremendously useful which is managing the coursework for my part-time Master\\u0026#39;s course. At the beginning of each term I will transcribe the course schedule and deadlines into an org file and throughout the semester I will write my lecture notes in the same org file. In the end I have one org file per course which serves as an agenda throughout the semester and once the course finishes as a note repository.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis use-case obviously could be extended to general project management where I can outline a plan, mark things that are in progress/done/doing. However, when I tried this once or twice it didn\\u0026#39;t really work as well as it did in my head. Nevertheless, I would really like to give it one more go.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo you guys have any advice on what\\u0026#39;s the best way to do project management in org? Would you like to describe your workflow? Do you have some useful links to online resources?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: some more info about what I mean: \\u003Ca href=\\\"https://www.reddit.com/r/orgmode/comments/ch7wxc/how_to_best_use_orgmode_for_project_management/euqie8w/\\\"\\u003Ehttps://www.reddit.com/r/orgmode/comments/ch7wxc/how_to_best_use_orgmode_for_project_management/euqie8w/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ch7wxc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"FOSHavoc\", \"num_crossposts\": 0, \"num_comments\": 21, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/ch7wxc/how_to_best_use_orgmode_for_project_management/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/ch7wxc/how_to_best_use_orgmode_for_project_management/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563973402.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Maybe some of you find [this useful](https://remline.de/blog/2019/org2notes/)\", \"author_fullname\": \"t2_gqmi2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I made a small script to edit all my nextclod notes in a single org file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cgxw32\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"article\", \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563942001.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe some of you find \\u003Ca href=\\\"https://remline.de/blog/2019/org2notes/\\\"\\u003Ethis useful\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c5c6b84c-c2fd-11e8-a9b1-0ea723e3b826\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgxw32\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AndyDrop\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cgxw32/i_made_a_small_script_to_edit_all_my_nextclod/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cgxw32/i_made_a_small_script_to_edit_all_my_nextclod/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563913201.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Sometimes, when I use `org-open-at-point` on a link to an executable file, Org will display the message:\\n\\n Running view /path/to/script...done\\n \\nCan I make Org understand that I want to open the file instead?\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why is Org executing (\\\"running view\\\") a file instead of opening?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cguayq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563909826.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563925711.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESometimes, when I use \\u003Ccode\\u003Eorg-open-at-point\\u003C/code\\u003E on a link to an executable file, Org will display the message:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ERunning view /path/to/script...done\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ECan I make Org understand that I want to open the file instead?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cguayq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cguayq/why_is_org_executing_running_view_a_file_instead/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cguayq/why_is_org_executing_running_view_a_file_instead/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563896911.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey guys. I started using Helm a few weeks ago, and I'm not that experienced with Emacs.\\n\\nI have lots of entries with multiple tags, but Helm only seems to be able to autocomplete (or even understand) when I'm inserting a single tag.\\n\\nWhen adding multiple tags, this is what I see: http://i.imgur.com/QZNJZLb.png.\\n\\nI have to remember every tag, because it will offer no autocompletion or suggestions or anything.\\n\\nI tried googling for a solution and [found this](https://github.com/emacs-helm/helm/wiki/org-mode), but now I'm even more confused. That wiki entry talks about using TAB to autocomplete in helm, but TAB changes to a list of actions, with only one action available.\\n\\nThe list of actions: http://i.imgur.com/WWceZdy.png.\\n\\nSo... how do people with Helm add tags in Org mode? Am I doing something wrong?\", \"author_fullname\": \"t2_6b0c4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help when using Helm to add multiple tags\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cgswv9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563918935.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey guys. I started using Helm a few weeks ago, and I\\u0026#39;m not that experienced with Emacs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have lots of entries with multiple tags, but Helm only seems to be able to autocomplete (or even understand) when I\\u0026#39;m inserting a single tag.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen adding multiple tags, this is what I see: \\u003Ca href=\\\"http://i.imgur.com/QZNJZLb.png\\\"\\u003Ehttp://i.imgur.com/QZNJZLb.png\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have to remember every tag, because it will offer no autocompletion or suggestions or anything.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried googling for a solution and \\u003Ca href=\\\"https://github.com/emacs-helm/helm/wiki/org-mode\\\"\\u003Efound this\\u003C/a\\u003E, but now I\\u0026#39;m even more confused. That wiki entry talks about using TAB to autocomplete in helm, but TAB changes to a list of actions, with only one action available.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe list of actions: \\u003Ca href=\\\"http://i.imgur.com/WWceZdy.png\\\"\\u003Ehttp://i.imgur.com/WWceZdy.png\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo... how do people with Helm add tags in Org mode? Am I doing something wrong?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgswv9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bighi\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cgswv9/help_when_using_helm_to_add_multiple_tags/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cgswv9/help_when_using_helm_to_add_multiple_tags/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563890135.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm using org mode for keeping track of tasks with duration. I need to make a clock report from day 1 of month to day 14, and another report from day 15 to last day of month. Currently I only can select views for month or week, but can't selecting a custom range of dates. Any help?\", \"author_fullname\": \"t2_1dudxsdy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Custom date range for clock report\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cgnd5c\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563881561.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m using org mode for keeping track of tasks with duration. I need to make a clock report from day 1 of month to day 14, and another report from day 15 to last day of month. Currently I only can select views for month or week, but can\\u0026#39;t selecting a custom range of dates. Any help?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgnd5c\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mtellezj22\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cgnd5c/custom_date_range_for_clock_report/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cgnd5c/custom_date_range_for_clock_report/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563852761.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I thought to give a try to literal programming and am writing a small blog post about C. I ment to write both my headers and source file as well as makefile in org file. However when I tangle my code, the org-mode encloses my header in \\\"main\\\" function for some reason. This is what I used for exporting my header: \\n\\n\\n #+BEGIN_SRC C :tangle myheader.h\\n \\n ;; my C header here\\n \\n #+END_SRC\\n\\nWhen I entangle this code with C-c C-v t, I got it wrapped in main function. Is there some way to tell org mode it should not wrap stuff in main (I will write my own in a test source file), or do I have to hack org source?\", \"author_fullname\": \"t2_13zo3p\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Question: how to tangle C header from org file?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cgcl9j\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563827365.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI thought to give a try to literal programming and am writing a small blog post about C. I ment to write both my headers and source file as well as makefile in org file. However when I tangle my code, the org-mode encloses my header in \\u0026quot;main\\u0026quot; function for some reason. This is what I used for exporting my header: \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+BEGIN_SRC C :tangle myheader.h\\n\\n;; my C header here\\n\\n#+END_SRC\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhen I entangle this code with C-c C-v t, I got it wrapped in main function. Is there some way to tell org mode it should not wrap stuff in main (I will write my own in a test source file), or do I have to hack org source?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgcl9j\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"arthurno1\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cgcl9j/question_how_to_tangle_c_header_from_org_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cgcl9j/question_how_to_tangle_c_header_from_org_file/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563798565.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"### Runtime Environment\\n\\n- MX Linux 18\\n- [dotfiles](https://github.com/mrbig033/dotfiles)\\n- GNU Emacs 27.0.50\\n- Org mode version 9.2.3\\n- Evil version 1.2.14\\n- [~/.emacs.d](https://github.com/mrbig033/emacs)\\n\\n### Question\\n\\nThe following table:\\n\\n | Field1 | Field2 |\\n |---------+---------|\\n | Value1A | Value1B |\\n |---------+---------|\\n | Value2A | Value2B |\\n |---------+---------|\\n \\nGives me [this result](http://i.imgur.com/l8wuqCm.png) on PDF export, and this as plain text:\\n\\n \\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\n Field1 Field2\\n \\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\n Value1A Value1B\\n \\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\n Value2A Value2B\\n \\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\n\\nHow can I export the ~~horizontal~~ vertical lines in a visible fashion?\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tables: how to export horizontal lines?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cg3w19\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563749578.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563770908.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch3\\u003ERuntime Environment\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EMX Linux 18\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mrbig033/dotfiles\\\"\\u003Edotfiles\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGNU Emacs 27.0.50\\u003C/li\\u003E\\n\\u003Cli\\u003EOrg mode version 9.2.3\\u003C/li\\u003E\\n\\u003Cli\\u003EEvil version 1.2.14\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mrbig033/emacs\\\"\\u003E~/.emacs.d\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EQuestion\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EThe following table:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E| Field1 | Field2 |\\n|---------+---------|\\n| Value1A | Value1B |\\n|---------+---------|\\n| Value2A | Value2B |\\n|---------+---------|\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EGives me \\u003Ca href=\\\"http://i.imgur.com/l8wuqCm.png\\\"\\u003Ethis result\\u003C/a\\u003E on PDF export, and this as plain text:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\n Field1 Field2\\n \\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\n Value1A Value1B\\n \\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\n Value2A Value2B\\n \\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\u2501\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHow can I export the \\u003Cdel\\u003Ehorizontal\\u003C/del\\u003E vertical lines in a visible fashion?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cg3w19\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cg3w19/tables_how_to_export_horizontal_lines/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cg3w19/tables_how_to_export_horizontal_lines/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563742108.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"My todo list inbox is pretty long, and I find myself working on the first 30 tasks and ignoring the other 200.\\n\\nI know, that sounds like a lot, I've just moved house, country, job, my life is pretty full at the moment, coping well though (loving it actually).\\n\\nAnyway. I'd love to be able to open the file [inbox.org](https://inbox.org) and for the tasks to be randomized by top-level header, I haven't found a way to do this, and don't know any lisp, any suggestions very welcome -- the intention is to get more visibility on those tasks further down the list, and to avoid \\\"first in first out\\\". I'm also in the process, as of having read some articles today, of implementing some of these tips I noted down:\\n\\n\\u0026#x200B;\\n\\nFind the urgent, the important, look at the nice-to-have's and pick out the best of them to focus on\\n\\n\\u0026#x200B;\\n\\ncould organize by: digital quickies, work, and real life\\n\\n\\u0026#x200B;\\n\\nWhat tasks can only be completed at certain times of the day, on certain days of the week, from certain locations, with certain people, etc?\\n\\nWhat tasks am I unable to work on because there's something else that must be done first?\\n\\nWhen is the absolute latest that some task could be done?\\n\\n\\u0026#x200B;\\n\\nConnect tasks to my bigger purpose\\n\\n\\u0026#x200B;\\n\\nWrite your todo list as though it was going to be read by others\\n\\n\\u0026#x200B;\\n\\nre-read my tasks, are they truly actionable, am I very clearly defining, to the best of my ability, exactly what the next step will be\\n\\n\\u0026#x200B;\\n\\nTry to schedule all my recurring tasks that I forget about, so I can forget about them\", \"author_fullname\": \"t2_3tsd3uy2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is there a way to view my todo list, randomized?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cg2iuw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563763832.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy todo list inbox is pretty long, and I find myself working on the first 30 tasks and ignoring the other 200.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know, that sounds like a lot, I\\u0026#39;ve just moved house, country, job, my life is pretty full at the moment, coping well though (loving it actually).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway. I\\u0026#39;d love to be able to open the file \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E and for the tasks to be randomized by top-level header, I haven\\u0026#39;t found a way to do this, and don\\u0026#39;t know any lisp, any suggestions very welcome -- the intention is to get more visibility on those tasks further down the list, and to avoid \\u0026quot;first in first out\\u0026quot;. I\\u0026#39;m also in the process, as of having read some articles today, of implementing some of these tips I noted down:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFind the urgent, the important, look at the nice-to-have\\u0026#39;s and pick out the best of them to focus on\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ecould organize by: digital quickies, work, and real life\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat tasks can only be completed at certain times of the day, on certain days of the week, from certain locations, with certain people, etc?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat tasks am I unable to work on because there\\u0026#39;s something else that must be done first?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen is the absolute latest that some task could be done?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EConnect tasks to my bigger purpose\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWrite your todo list as though it was going to be read by others\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ere-read my tasks, are they truly actionable, am I very clearly defining, to the best of my ability, exactly what the next step will be\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETry to schedule all my recurring tasks that I forget about, so I can forget about them\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cg2iuw\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Fickle_Straw\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cg2iuw/is_there_a_way_to_view_my_todo_list_randomized/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cg2iuw/is_there_a_way_to_view_my_todo_list_randomized/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563735032.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey everyone!\\n\\nI have a feeling this is either a very simple feature, or a feature that goes against some \\\"org philosophy\\\", but I was unable to find anything on the interwebs. Here it goes.\\n\\nI would like to be able to have two (or more) lists of items with the same parent, separated only visually. Best explained with an example:\\n\\n * Parent\\n ** List1_Item1\\n ** List1_Item2\\n \\n -- SEPARATOR --\\n \\n ** List2_Item1\\n ** List2_Item2\\n\\nNow, in this example, of course, \\\"-- SEPARATOR --\\\" becomes part of `List1_Item2`, folds together with everything and does not act as a separator. Is there any way to make this work in org-mode?\\n\\nThanks!\\n\\n\\u0026#x200B;\\n\\nP.S. I understand that I could do\\n\\n * Parent\\n ** List1\\n *** Item1\\n *** Item2\\n ** List2\\n *** Item1\\n *** Item2\\n\\nor use a heading as a separator, but neither of these seem like good options in my case.\", \"author_fullname\": \"t2_14i1bw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Multiple lists with one parent?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cfz4as\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563745404.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey everyone!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a feeling this is either a very simple feature, or a feature that goes against some \\u0026quot;org philosophy\\u0026quot;, but I was unable to find anything on the interwebs. Here it goes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to be able to have two (or more) lists of items with the same parent, separated only visually. Best explained with an example:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Parent\\n ** List1_Item1\\n ** List1_Item2\\n\\n -- SEPARATOR --\\n\\n ** List2_Item1\\n ** List2_Item2\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ENow, in this example, of course, \\u0026quot;-- SEPARATOR --\\u0026quot; becomes part of \\u003Ccode\\u003EList1_Item2\\u003C/code\\u003E, folds together with everything and does not act as a separator. Is there any way to make this work in org-mode?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EP.S. I understand that I could do\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Parent\\n ** List1\\n *** Item1\\n *** Item2\\n ** List2\\n *** Item1\\n *** Item2\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eor use a heading as a separator, but neither of these seem like good options in my case.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cfz4as\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zoickx\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cfz4as/multiple_lists_with_one_parent/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cfz4as/multiple_lists_with_one_parent/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563716604.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'd like to have an org file for tracking watched tv shows, and read comics. I'm not really sure the best way to track episode/chapter progress though.\\n\\nWhats the best way to complete a task multiple times and have it increment a number until the number hits the max and then set it as DONE? Something like:\\n\\n```org\\n* WATCHING Clannad AS [2/24]\\n```\\n\\nFor 2 episodes completed out of a possible 24. Also I'd when the max is 0 for the task to never be completed until manually set or there is a maximum set and then it is hit (for cases where the max is unknown).\\n\\nI think a solution would be useful for other things as well where you need to track quantities of tasks completed until a threshold (or indefinitely).\", \"author_fullname\": \"t2_22flgd4i\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Best way to complete a task multiple times and increment a number? (track tv shows)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cfy88z\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563738878.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d like to have an org file for tracking watched tv shows, and read comics. I\\u0026#39;m not really sure the best way to track episode/chapter progress though.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhats the best way to complete a task multiple times and have it increment a number until the number hits the max and then set it as DONE? Something like:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg\\n* WATCHING Clannad AS [2/24]\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor 2 episodes completed out of a possible 24. Also I\\u0026#39;d when the max is 0 for the task to never be completed until manually set or there is a maximum set and then it is hit (for cases where the max is unknown).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think a solution would be useful for other things as well where you need to track quantities of tasks completed until a threshold (or indefinitely).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cfy88z\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cracked_mental\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cfy88z/best_way_to_complete_a_task_multiple_times_and/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cfy88z/best_way_to_complete_a_task_multiple_times_and/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563710078.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[ANN] org-ql published on MELPA\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cfrwdl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 32, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 32, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563691204.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"github.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cfrwdl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cfrwdl/ann_orgql_published_on_melpa/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/alphapapa/org-ql\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563662404.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I am just starting out using orgmode as I have had enough of using MS-Word to write up uni-projects. I am just finding out about jupyter and since I use Emacs to learn programming I ran into the fact that I can make use of orgmode much like jupyter. My question is basically the title, can I use orgmode to make a use-case diagram for my software report? Also feel free to suggest anything else that I should learn that is useful for a report on designing a system in the software field. I have no problems looking up how to do it, but as of now I don't know what to look for besides the basics of adding code and links/ref , etc. Thank you for your time.\", \"author_fullname\": \"t2_27jypvnc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can Orgmode make use case diagram?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cflsi1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563658032.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am just starting out using orgmode as I have had enough of using MS-Word to write up uni-projects. I am just finding out about jupyter and since I use Emacs to learn programming I ran into the fact that I can make use of orgmode much like jupyter. My question is basically the title, can I use orgmode to make a use-case diagram for my software report? Also feel free to suggest anything else that I should learn that is useful for a report on designing a system in the software field. I have no problems looking up how to do it, but as of now I don\\u0026#39;t know what to look for besides the basics of adding code and links/ref , etc. Thank you for your time.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cflsi1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dontpanic_x\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cflsi1/can_orgmode_make_use_case_diagram/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cflsi1/can_orgmode_make_use_case_diagram/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563629232.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Right now, when I run `org-edit-special` on a source block I get something like this in the modeline:\\n\\n *Org Src myfile.org[ emacs-lisp]*\\n\\nWhich is not ideal, since I'm using [nswbuff](https://github.com/joostkremers/nswbuff) to switch buffers. `Org-Src` buffer names are big and hard to read. Can they have a shorter pattern?\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can I customize the default Org Src buffer-name (obtained by running \\\"org-edit-special\\\") to something shorter and friendlier?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cfh9jr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563622374.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERight now, when I run \\u003Ccode\\u003Eorg-edit-special\\u003C/code\\u003E on a source block I get something like this in the modeline:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E*Org Src myfile.org[ emacs-lisp]*\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhich is not ideal, since I\\u0026#39;m using \\u003Ca href=\\\"https://github.com/joostkremers/nswbuff\\\"\\u003Enswbuff\\u003C/a\\u003E to switch buffers. \\u003Ccode\\u003EOrg-Src\\u003C/code\\u003E buffer names are big and hard to read. Can they have a shorter pattern?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cfh9jr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cfh9jr/can_i_customize_the_default_org_src_buffername/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cfh9jr/can_i_customize_the_default_org_src_buffername/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563593574.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - July 19, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cf75it\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563569370.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cf75it\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cf75it/weekly_rorgmode_open_discussion_july_19_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cf75it/weekly_rorgmode_open_discussion_july_19_2019/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563540570.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I do a lot of writing in org and then need to paste it elsewhere. I like to export because it lets me get the formatting of bold, italic, headings etc. \\n\\nThe problem is that when I export, copy, and then paste elsewhere my spacing between paragraphs is gone \\u0026 I end up with all the lines squashed together. Many text inputs today don't recognize HTML paragraphs and instead expect blank lines for spacing. \\n\\n**Is there any way I can get my export html to render with blank lines between paragraphs instead of just paragraph breaks?**\", \"author_fullname\": \"t2_40haza1m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to export formatting and include blank lines?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cf0np6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563525247.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI do a lot of writing in org and then need to paste it elsewhere. I like to export because it lets me get the formatting of bold, italic, headings etc. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe problem is that when I export, copy, and then paste elsewhere my spacing between paragraphs is gone \\u0026amp; I end up with all the lines squashed together. Many text inputs today don\\u0026#39;t recognize HTML paragraphs and instead expect blank lines for spacing. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EIs there any way I can get my export html to render with blank lines between paragraphs instead of just paragraph breaks?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cf0np6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Altanonac\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cf0np6/how_to_export_formatting_and_include_blank_lines/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cf0np6/how_to_export_formatting_and_include_blank_lines/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563496447.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"We have *org-in-src-block-p* for source blocks, but nothing for other types of blocks (e.g. example, quote, etc)?\\n\\nI'm trying to execute a hydra only while in a block.\\n\\nEdit:\\n\\nWhen I do:\\n\\n (text-properties-at (point))\\n\\nI get:\\n\\n (face (:inherit (org-block)) font-lock-multiline t font-lock-fontified t fontified t)\\n\\nI'm guessing if I can check that the face inherits from org-block that may be good enough - but how do I do that?\", \"author_fullname\": \"t2_1tduz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Elisp to determine if I'm in a block?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ceuu7l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563468154.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563496663.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe have \\u003Cem\\u003Eorg-in-src-block-p\\u003C/em\\u003E for source blocks, but nothing for other types of blocks (e.g. example, quote, etc)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to execute a hydra only while in a block.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I do:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(text-properties-at (point))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI get:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(face (:inherit (org-block)) font-lock-multiline t font-lock-fontified t fontified t)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m guessing if I can check that the face inherits from org-block that may be good enough - but how do I do that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ceuu7l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BeetleB\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/ceuu7l/elisp_to_determine_if_im_in_a_block/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/ceuu7l/elisp_to_determine_if_im_in_a_block/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563467863.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi r/orgmode\\n\\nI know that this question was asked about million times, but I can't seem to find answer. I have org folder structure where there are two levels of folders nested inside it and can't figure out how to get it all inside org-agenda-files and org-refile-targets. Here is how it looks now:\\n\\n (setq org-agenda-files (list \\\"~/org\\\"))\\n (setq org-refile-targets '((nil :maxlevel . 2)\\n \\t\\t\\t\\t (org-agenda-files :maxlevel . 3)))\\n\\nCan you help me with this one?\", \"author_fullname\": \"t2_3hfea\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-refile and subfolders\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cej7r2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563428027.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Ca href=\\\"/r/orgmode\\\"\\u003Er/orgmode\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know that this question was asked about million times, but I can\\u0026#39;t seem to find answer. I have org folder structure where there are two levels of folders nested inside it and can\\u0026#39;t figure out how to get it all inside org-agenda-files and org-refile-targets. Here is how it looks now:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-files (list \\u0026quot;~/org\\u0026quot;))\\n(setq org-refile-targets \\u0026#39;((nil :maxlevel . 2)\\n (org-agenda-files :maxlevel . 3)))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ECan you help me with this one?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cej7r2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"stamp85\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cej7r2/orgrefile_and_subfolders/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563399227.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"greetings. \\n\\n\\nBefore I get into it, let me state that I don't know if this is a good idea or a bad idea and would like to hear some thoughts and opinions from the community before i invest time going down this path. On the surface of it I think what i'm suggesting could be useful... at least with my workflow, but maybe i'm smoking too much... i don't know, i'll leave that up to you to decide. \\n\\n\\nMy idea is to create a custom export backend, *(which will essentially just be a few basic functions and some regex capture/replace i think as it need not be overcomplicated),* and a minor-mode for syntax highlighting etc, in order to quickly mark up web pages using org-mode. \\n\\n\\nWhere this differs from the other export back-ends is that i'd be using the html element names as the org-subtree headings, in order to benefit from org-mode functionality, ie, collapsing subtrees, easily moving subtrees around the document etc. I'm really shit at explaining things so just look at the proposed org markup example [here](https://github.com/techquila/org-elemental-export/blob/master/examples/org-elemental-export-markup-example.org), within emacs. (either clone or copy raw, don't view in browser), to see what i mean. \\n\\n\\nThe reason for this is I want to use emacs and org-mode as my static site generator. Yes I am aware there are options here and I do use Hugo together with the related export backend at the moment.. which is great.. just not how i want to do things. \\n\\n\\nI want to be able to use source blocks for css/js/golang, i also hope to make use of #+INCLUDE's in order to build template files. \\n\\n\\nI've tried very hard to bend org-html-export to my will in order to create semantic markup but i just can't seem to achieve the desired result. \\n\\n\\u0026#x200B;\\n\\nAnyways I'm not sure if this reads coherently... i'm not even sure i'm fully coherent with what i want to achieve but maybe you're smart enough to work out what i'm trying to do here and can offer some criticism, advice, ideas, or maybe just some acknowledgement that this could be a useful exercise. \\n\\n\\nI've written the regex i need already but as i'm still a novice elisp'er the rest of it will be challenging for me. I just don't want to waste my time going down the rabbit hole if there is a glaringly obvious reason not to go down this path that some of you more seasoned pro's can fill me in on. The only major problem i see at the moment is if html attributes were too lengthly to include on the org subtree heading line.\", \"author_fullname\": \"t2_11x4yc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"idea for you to slay or offer opinion on before i waste time building it\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ce5gvd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563351898.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Egreetings. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore I get into it, let me state that I don\\u0026#39;t know if this is a good idea or a bad idea and would like to hear some thoughts and opinions from the community before i invest time going down this path. On the surface of it I think what i\\u0026#39;m suggesting could be useful... at least with my workflow, but maybe i\\u0026#39;m smoking too much... i don\\u0026#39;t know, i\\u0026#39;ll leave that up to you to decide. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy idea is to create a custom export backend, \\u003Cem\\u003E(which will essentially just be a few basic functions and some regex capture/replace i think as it need not be overcomplicated),\\u003C/em\\u003E and a minor-mode for syntax highlighting etc, in order to quickly mark up web pages using org-mode. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhere this differs from the other export back-ends is that i\\u0026#39;d be using the html element names as the org-subtree headings, in order to benefit from org-mode functionality, ie, collapsing subtrees, easily moving subtrees around the document etc. I\\u0026#39;m really shit at explaining things so just look at the proposed org markup example \\u003Ca href=\\\"https://github.com/techquila/org-elemental-export/blob/master/examples/org-elemental-export-markup-example.org\\\"\\u003Ehere\\u003C/a\\u003E, within emacs. (either clone or copy raw, don\\u0026#39;t view in browser), to see what i mean. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe reason for this is I want to use emacs and org-mode as my static site generator. Yes I am aware there are options here and I do use Hugo together with the related export backend at the moment.. which is great.. just not how i want to do things. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to be able to use source blocks for css/js/golang, i also hope to make use of #+INCLUDE\\u0026#39;s in order to build template files. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve tried very hard to bend org-html-export to my will in order to create semantic markup but i just can\\u0026#39;t seem to achieve the desired result. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyways I\\u0026#39;m not sure if this reads coherently... i\\u0026#39;m not even sure i\\u0026#39;m fully coherent with what i want to achieve but maybe you\\u0026#39;re smart enough to work out what i\\u0026#39;m trying to do here and can offer some criticism, advice, ideas, or maybe just some acknowledgement that this could be a useful exercise. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve written the regex i need already but as i\\u0026#39;m still a novice elisp\\u0026#39;er the rest of it will be challenging for me. I just don\\u0026#39;t want to waste my time going down the rabbit hole if there is a glaringly obvious reason not to go down this path that some of you more seasoned pro\\u0026#39;s can fill me in on. The only major problem i see at the moment is if html attributes were too lengthly to include on the org subtree heading line.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ce5gvd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"techquila\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/ce5gvd/idea_for_you_to_slay_or_offer_opinion_on_before_i/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563323098.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey all,\\n\\nI forgot to post here last week, so I'm posting for two posts this time.\\n\\nThis is really basic stuff, but the manual is not too clear about these.\\n\\n1. [Using whole org files as capture templates](https://joshrollinswrites.com/help-desk-head-desk/org-capture-in-files/) (and an example to when this is a good idea)\\n2. [Using two-letter captures to create \\\"sub-menus\\\" inside capture for organization](https://joshrollinswrites.com/help-desk-head-desk/sub-menus-in-org/) (and again, why)\\n\\n\\u0026#x200B;\\n\\nHope you like it! Let me know what you think :D\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-mode Capture: the stuff under your nose\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cd6ay4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 35, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 35, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563136814.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563157400.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey all,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI forgot to post here last week, so I\\u0026#39;m posting for two posts this time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is really basic stuff, but the manual is not too clear about these.\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/org-capture-in-files/\\\"\\u003EUsing whole org files as capture templates\\u003C/a\\u003E (and an example to when this is a good idea)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/sub-menus-in-org/\\\"\\u003EUsing two-letter captures to create \\u0026quot;sub-menus\\u0026quot; inside capture for organization\\u003C/a\\u003E (and again, why)\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHope you like it! Let me know what you think :D\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cd6ay4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cd6ay4/orgmode_capture_the_stuff_under_your_nose/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563128600.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I want to use file-tags and want to rely on inherited tags. But I also use archive-files for moving done tasks out of my active files, where I put in my done-files. I noticed now that when I use org-archive-subtree file-tags and inherited tags aren't carried over. I can set a file-tag in the archive-file, but what do I do about inherited tags?\\n\\nFor example I have something like this:\\n\\n * customer1 :customer1:\\n ** TODO task 1\\n ** TODO task 2\\n\\nthe todos \\\"task 1\\\" and \\\"task 2\\\" have now the tag \\\"customer1\\\". When I archive \\\"task 1\\\" and/or \\\"task 2\\\" the tag gets lost when I do not archive \\\"customer 1\\\". Any way to carry over the inherited tags to the archive-file?\", \"author_fullname\": \"t2_ocr67\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Archive with inherited tags?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cczgwq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563111202.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI want to use file-tags and want to rely on inherited tags. But I also use archive-files for moving done tasks out of my active files, where I put in my done-files. I noticed now that when I use org-archive-subtree file-tags and inherited tags aren\\u0026#39;t carried over. I can set a file-tag in the archive-file, but what do I do about inherited tags?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor example I have something like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* customer1 :customer1:\\n** TODO task 1\\n** TODO task 2\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ethe todos \\u0026quot;task 1\\u0026quot; and \\u0026quot;task 2\\u0026quot; have now the tag \\u0026quot;customer1\\u0026quot;. When I archive \\u0026quot;task 1\\u0026quot; and/or \\u0026quot;task 2\\u0026quot; the tag gets lost when I do not archive \\u0026quot;customer 1\\u0026quot;. Any way to carry over the inherited tags to the archive-file?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cczgwq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nielskob\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cczgwq/archive_with_inherited_tags/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cczgwq/archive_with_inherited_tags/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563082402.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \" [https://melpa.org/#/org-reverse-datetree](https://melpa.org/#/org-reverse-datetree) \\n\\n\\u0026#x200B;\\n\\nCould come in handy for work journals. (I am not the author or maintainer.)\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-reverse-datetree: Create date-trees in reverse order.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccxg37\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563097842.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://melpa.org/#/org-reverse-datetree\\\"\\u003Ehttps://melpa.org/#/org-reverse-datetree\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECould come in handy for work journals. (I am not the author or maintainer.)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccxg37\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/ccxg37/orgreversedatetree_create_datetrees_in_reverse/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/ccxg37/orgreversedatetree_create_datetrees_in_reverse/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563069042.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello Org people, This week I'm battling a questions as old as org-mode itself: one file or many files?\\n\\nI'm also the writer of [Agenda, and the Benefit of Having Multiple Files](https://joshrollinswrites.com/help-desk-head-desk/agenda-multiple-files/) which started out in this Reddit, over [here](https://www.reddit.com/r/emacs/comments/99n3yu/orgmode_switching_to_multiplefile_setup/).\\n\\nOne morning I looked at my archive folder, which contains many w## files. On the other frame (always prefer frames to windows, when possible) I had my journal, which is broken by week number in a year. \\\"They are both the same thing,\\\" I thought. \\\"Why do I have both?\\\" Indeed, why?\\n\\n\\u0026#x200B;\\n\\nFor one, there's something nice about seeing my life broken into nice weekly chunks. It makes sense to me, and breaking the year to weeks rather then months is something friendlier and familiar to me.\\n\\n\\u0026#x200B;\\n\\nTwo, A day is usually too short for a project, a month can be too long. A week unit is usually a good measurements, with projects that always start on a certain week but can end much later on the agenda through scheduling.\\n\\nThree, I have this (irrational?) fear that I will lose one big file, but not *all* my weekly files. I have the files synced across four devices and an external backup, and I'm working on joining them to an online backup, so I think this argument (one way or another) is pretty much null at this point.\\n\\n\\u0026#x200B;\\n\\nFour, and I'm afraid that's the biggest reason, is that I don't have a better way to categorize everything. Using a weekly unit, I know *everything* goes in there. Personal tasks, work stuff, errands, quick reminders, etc. I don't even archive anything because it's all there archive already, in weeks past. This is not a bad thing: after all I don't want to waste hours thinking where something should go, as many things belong under more than one category. Yet, each week file contained two main headers, work and personal, and these in turned contained tasks and projects.\\n\\n\\u0026#x200B;\\n\\nMy journal is in my personal folder and by default does not sync on work devices. That's fine and logical, but also disturbing to the flow when I want to write a quick note about something I just did or a comment: I have to TRAMP back home with a long password (prefer it to a ssh key because I don't always connect from the same machine). It's much more natural for me to just enter a timestamp inside the task itself and write a couple of lines about what happened. These timestamps can also show later on the agenda in extensive(?) view when you hit the \\\"l\\\" key (be default) so I can see all these thoughts if I want to. On the other hand\\u2026 the journal contain personal stuff I don't want at work (I tried to sync the journal to my work machine as well, and it's just feels wrong to me). It is a nice file with a good flow to it with my thoughts and sometimes pictures I take as I travel (even have a script that shrinks and adds a label at the bottom with image magic.. when I tell others about it they call it a \\\"meme maker\\\" which I think it's one way to describe it).\\n\\n\\u0026#x200B;\\n\\n\\u2026So you see, I am committed to both systems at once, but I want to have one in place. One one hand, the many weekly files which seem to excel with tasks. On the other, the journal, where I can freely vent and express myself. I could add everything to the journal file, making it a huge file which contains also my tasks and todos.. but the thought of having a fifth and sixths level headers (because the journal entries themselves are already fourth level) with a bunch of half-chewed ToDo items with work related content in that holy personal place\\u2026 ughhh.\\n\\nHelp. What do you do? What are your thoughts? Can someone kick me in the right direction please\\u2026\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"long journal file? weekly files? what do you do?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccndd0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563038184.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello Org people, This week I\\u0026#39;m battling a questions as old as org-mode itself: one file or many files?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m also the writer of \\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/agenda-multiple-files/\\\"\\u003EAgenda, and the Benefit of Having Multiple Files\\u003C/a\\u003E which started out in this Reddit, over \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/99n3yu/orgmode_switching_to_multiplefile_setup/\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne morning I looked at my archive folder, which contains many w## files. On the other frame (always prefer frames to windows, when possible) I had my journal, which is broken by week number in a year. \\u0026quot;They are both the same thing,\\u0026quot; I thought. \\u0026quot;Why do I have both?\\u0026quot; Indeed, why?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor one, there\\u0026#39;s something nice about seeing my life broken into nice weekly chunks. It makes sense to me, and breaking the year to weeks rather then months is something friendlier and familiar to me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETwo, A day is usually too short for a project, a month can be too long. A week unit is usually a good measurements, with projects that always start on a certain week but can end much later on the agenda through scheduling.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThree, I have this (irrational?) fear that I will lose one big file, but not \\u003Cem\\u003Eall\\u003C/em\\u003E my weekly files. I have the files synced across four devices and an external backup, and I\\u0026#39;m working on joining them to an online backup, so I think this argument (one way or another) is pretty much null at this point.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFour, and I\\u0026#39;m afraid that\\u0026#39;s the biggest reason, is that I don\\u0026#39;t have a better way to categorize everything. Using a weekly unit, I know \\u003Cem\\u003Eeverything\\u003C/em\\u003E goes in there. Personal tasks, work stuff, errands, quick reminders, etc. I don\\u0026#39;t even archive anything because it\\u0026#39;s all there archive already, in weeks past. This is not a bad thing: after all I don\\u0026#39;t want to waste hours thinking where something should go, as many things belong under more than one category. Yet, each week file contained two main headers, work and personal, and these in turned contained tasks and projects.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy journal is in my personal folder and by default does not sync on work devices. That\\u0026#39;s fine and logical, but also disturbing to the flow when I want to write a quick note about something I just did or a comment: I have to TRAMP back home with a long password (prefer it to a ssh key because I don\\u0026#39;t always connect from the same machine). It\\u0026#39;s much more natural for me to just enter a timestamp inside the task itself and write a couple of lines about what happened. These timestamps can also show later on the agenda in extensive(?) view when you hit the \\u0026quot;l\\u0026quot; key (be default) so I can see all these thoughts if I want to. On the other hand\\u2026 the journal contain personal stuff I don\\u0026#39;t want at work (I tried to sync the journal to my work machine as well, and it\\u0026#39;s just feels wrong to me). It is a nice file with a good flow to it with my thoughts and sometimes pictures I take as I travel (even have a script that shrinks and adds a label at the bottom with image magic.. when I tell others about it they call it a \\u0026quot;meme maker\\u0026quot; which I think it\\u0026#39;s one way to describe it).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2026So you see, I am committed to both systems at once, but I want to have one in place. One one hand, the many weekly files which seem to excel with tasks. On the other, the journal, where I can freely vent and express myself. I could add everything to the journal file, making it a huge file which contains also my tasks and todos.. but the thought of having a fifth and sixths level headers (because the journal entries themselves are already fourth level) with a bunch of half-chewed ToDo items with work related content in that holy personal place\\u2026 ughhh.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHelp. What do you do? What are your thoughts? Can someone kick me in the right direction please\\u2026\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccndd0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/ccndd0/long_journal_file_weekly_files_what_do_you_do/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1563009384.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"### Runtime Environment\\n\\n- MX Linux 18\\n- [dotfiles](https://github.com/mrbig033/dotfiles)\\n- GNU Emacs 27.0.50\\n- Org mode version 9.2.3\\n- Evil version 1.2.14\\n- [~/.emacs.d](https://github.com/mrbig033/emacs)\\n\\n### Issue\\n\\nAs you can see in [this list](http://i.imgur.com/ysnTmY2.png), when a list has indexes with a different length they become unaligned. If I add the leading zeroes manually, Org deletes them when I update the list (by running `org-ctrl-c-ctrl-c`, for example). How could I configure to add the zeroes automatically, or at least respect the ones I add manually?\", \"author_fullname\": \"t2_13p6gig2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can Org automatically add leading zeroes to keep ordered lists aligned?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cclnex\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1563023023.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563024013.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch3\\u003ERuntime Environment\\u003C/h3\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EMX Linux 18\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mrbig033/dotfiles\\\"\\u003Edotfiles\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EGNU Emacs 27.0.50\\u003C/li\\u003E\\n\\u003Cli\\u003EOrg mode version 9.2.3\\u003C/li\\u003E\\n\\u003Cli\\u003EEvil version 1.2.14\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ca href=\\\"https://github.com/mrbig033/emacs\\\"\\u003E~/.emacs.d\\u003C/a\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch3\\u003EIssue\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EAs you can see in \\u003Ca href=\\\"http://i.imgur.com/ysnTmY2.png\\\"\\u003Ethis list\\u003C/a\\u003E, when a list has indexes with a different length they become unaligned. If I add the leading zeroes manually, Org deletes them when I update the list (by running \\u003Ccode\\u003Eorg-ctrl-c-ctrl-c\\u003C/code\\u003E, for example). How could I configure to add the zeroes automatically, or at least respect the ones I add manually?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cclnex\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"takethecannoli4\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cclnex/can_org_automatically_add_leading_zeroes_to_keep/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562995213.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - July 12, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_ccafi6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562964568.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ccafi6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 23, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/ccafi6/weekly_rorgmode_open_discussion_july_12_2019/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562935768.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I just discovered org-super-agenda, and it seems marvelous. But I'm not sure how to configure the groups to avoid duplication of some agenda items.\\n\\nHere's my current configuration, cribbed from the examples:\\n\\n (setq org-super-agenda-groups\\n '((:name \\\"High priority\\\"\\n :priority \\\"A\\\"\\n :order 1\\n )\\n (:name \\\"Today's items\\\"\\n :scheduled today\\n :order 2\\n )\\n (:name \\\"Quick Picks\\\"\\n :effort\\u003C \\\"0:30\\\")\\n (:name \\\"Next Items\\\"\\n :todo (\\\"NEXT\\\" \\\"TODO\\\")\\n :order 3)\\n (:name \\\"Lagging items\\\"\\n :scheduled past)\\n (:name \\\"Overdue items\\\"\\n :deadline past)\\n (:name \\\"Quick Picks\\\"\\n :effort\\u003C \\\"0:30\\\")\\n (:priority\\u003C= \\\"B\\\"\\n :name \\\"Medium priority or coming up\\\"\\n :scheduled future\\n :order 4\\n )))\\n\\nAnd here's a screenshot of my current agenda view\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/oj9adpvkps931.png\\n\\nOne item (A project with priority B) shows up twice in \\\"Today's items\\\". It has a deadline in 25 days with a one month notification, so shows up on my agenda. \\n\\nIf I remove the *DEADLINE:*, it shows up only once, on today's items, because it's scheduled for today. If I remove the *SCHEDULED:*, it shows up once in \\\"Medium priority or coming up\\\". But if I have both, it shows up twice under \\\"Today's items\\\". Is this something in my configuration or is it the expected behaviour of org-super-agenda?\\n\\nI realise it also shows up twice in org-agenda based on both schedule and deadline, which would also be good to be able to remove.\", \"author_fullname\": \"t2_4zkpc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to avoid duplicates in org-super-agenda\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"oj9adpvkps931\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 487, \"x\": 741, \"u\": \"https://i.redd.it/oj9adpvkps931.png\"}, \"m\": \"image/png\", \"id\": \"oj9adpvkps931\"}}, \"name\": \"t3_cc5vz5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562932923.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just discovered org-super-agenda, and it seems marvelous. But I\\u0026#39;m not sure how to configure the groups to avoid duplication of some agenda items.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s my current configuration, cribbed from the examples:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-super-agenda-groups\\n \\u0026#39;((:name \\u0026quot;High priority\\u0026quot;\\n :priority \\u0026quot;A\\u0026quot;\\n :order 1\\n )\\n (:name \\u0026quot;Today\\u0026#39;s items\\u0026quot;\\n :scheduled today\\n :order 2\\n )\\n (:name \\u0026quot;Quick Picks\\u0026quot;\\n :effort\\u0026lt; \\u0026quot;0:30\\u0026quot;)\\n (:name \\u0026quot;Next Items\\u0026quot;\\n :todo (\\u0026quot;NEXT\\u0026quot; \\u0026quot;TODO\\u0026quot;)\\n :order 3)\\n (:name \\u0026quot;Lagging items\\u0026quot;\\n :scheduled past)\\n (:name \\u0026quot;Overdue items\\u0026quot;\\n :deadline past)\\n (:name \\u0026quot;Quick Picks\\u0026quot;\\n :effort\\u0026lt; \\u0026quot;0:30\\u0026quot;)\\n (:priority\\u0026lt;= \\u0026quot;B\\u0026quot;\\n :name \\u0026quot;Medium priority or coming up\\u0026quot;\\n :scheduled future\\n :order 4\\n )))\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAnd here\\u0026#39;s a screenshot of my current agenda view\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/oj9adpvkps931.png\\\"\\u003Ehttps://i.redd.it/oj9adpvkps931.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne item (A project with priority B) shows up twice in \\u0026quot;Today\\u0026#39;s items\\u0026quot;. It has a deadline in 25 days with a one month notification, so shows up on my agenda. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I remove the \\u003Cem\\u003EDEADLINE:\\u003C/em\\u003E, it shows up only once, on today\\u0026#39;s items, because it\\u0026#39;s scheduled for today. If I remove the \\u003Cem\\u003ESCHEDULED:\\u003C/em\\u003E, it shows up once in \\u0026quot;Medium priority or coming up\\u0026quot;. But if I have both, it shows up twice under \\u0026quot;Today\\u0026#39;s items\\u0026quot;. Is this something in my configuration or is it the expected behaviour of org-super-agenda?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI realise it also shows up twice in org-agenda based on both schedule and deadline, which would also be good to be able to remove.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cc5vz5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gtuckerkellogg\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cc5vz5/how_to_avoid_duplicates_in_orgsuperagenda/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562904123.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"It seems this package is no longer supported officially, still some people recently made it work for them apparently. \\n\\n\\u0026#x200B;\\n\\nI am having trouble so to the extend of when I call org-agenda or capture I get certain error messages in emacs 25.3.2 that I described in [this post](https://www.reddit.com/r/emacs/comments/cbtjiw/orgmode_errors_all_of_a_sudden/)\\n\\n\\u0026#x200B;\\n\\nWhat is the issue here and how can I make it work?\", \"author_fullname\": \"t2_3p3qqcr1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-gcal\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cbucs2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562871482.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt seems this package is no longer supported officially, still some people recently made it work for them apparently. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am having trouble so to the extend of when I call org-agenda or capture I get certain error messages in emacs 25.3.2 that I described in \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/cbtjiw/orgmode_errors_all_of_a_sudden/\\\"\\u003Ethis post\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is the issue here and how can I make it work?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cbucs2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Sewing31\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cbucs2/orggcal/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cbucs2/orggcal/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562842682.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"When I list todos via the agenda view, the checklist entries are visible. Then, I select only \\u00ab open \\u00bb checklists, and the list is empty. Is this a bug ? Is it possible to make some configuration changes to make this work ? cf. images\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[ALL](https://i.redd.it/timytr45ac931.png)\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/cxyli7q6ac931.png\", \"author_fullname\": \"t2_8dk3r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to filter checklist in the agenda view?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"timytr45ac931\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 654, \"x\": 2846, \"u\": \"https://i.redd.it/timytr45ac931.png\"}, \"m\": \"image/png\", \"id\": \"timytr45ac931\"}, \"cxyli7q6ac931\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 612, \"x\": 2856, \"u\": \"https://i.redd.it/cxyli7q6ac931.png\"}, \"m\": \"image/png\", \"id\": \"cxyli7q6ac931\"}}, \"name\": \"t3_cb6jgx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562733664.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen I list todos via the agenda view, the checklist entries are visible. Then, I select only \\u00ab open \\u00bb checklists, and the list is empty. Is this a bug ? Is it possible to make some configuration changes to make this work ? cf. images\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/timytr45ac931.png\\\"\\u003EALL\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/cxyli7q6ac931.png\\\"\\u003Ehttps://i.redd.it/cxyli7q6ac931.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cb6jgx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"zaiste\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cb6jgx/how_to_filter_checklist_in_the_agenda_view/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cb6jgx/how_to_filter_checklist_in_the_agenda_view/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562704864.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"My setup is rather simple and I'm not using the default keybindings `C-[,C-]` to add or remove files to the Agenda list. I'd prefer to set the list of files to use within _org-agenda_ using the `org-agenda-files` variable. \\n\\nBut this seems to raise an issue when editing a file which is part of the org-agenda file list. Let me explain by taking an example: \\n\\nI have a directory A containing a file A. Then I define a folder B as `org-agenda-files` provide, so in my `config.org` I have \\n\\n```\\n(setq org-agenda-files '(\\\"~/folderB\\\"))\\n```\\n\\nNow, from a pure organizational purpose, I link symbolically, using a script, both files. This yields the following situation where `folderA/fileA` is the 'real' file \\n \\n```\\nfolderB/fileA ---\\u003E folderA/fileA\\n```\\nnow when I try to edit **fileA** in the **folderA** and make some changes to it, saving the changes will save them in `folderB/fileA` and of course indirectly also in `folderA/fileA` (at least this is the message being displayed in the status bar). This would not be dramatic if the file would not contain links to some images. Indeed, the images are created by a function which takes a screenshot from a region and saves it locally in a subfolder having the same name as the file but appending an `_imgs` suffix. But now this subfolder is created in `folderB` **not* in `folderA` and this is a problem. \\n\\nSomehow, I understand why this happens and on the one hand it makes sense but on the other hand, I do not understand why adding files to org-agenda should impact where the changes are saved although the file being modified is also in the agenda list. \\n\\nI hope that I could clearly expose my problem. I use also `ido` but not sure it is related\", \"author_fullname\": \"t2_nojchp1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"An Issue when editing files added to org-agenda-files list and linked symbolically\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cb1toc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562712450.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy setup is rather simple and I\\u0026#39;m not using the default keybindings \\u003Ccode\\u003EC-[,C-]\\u003C/code\\u003E to add or remove files to the Agenda list. I\\u0026#39;d prefer to set the list of files to use within \\u003Cem\\u003Eorg-agenda\\u003C/em\\u003E using the \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E variable. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut this seems to raise an issue when editing a file which is part of the org-agenda file list. Let me explain by taking an example: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a directory A containing a file A. Then I define a folder B as \\u003Ccode\\u003Eorg-agenda-files\\u003C/code\\u003E provide, so in my \\u003Ccode\\u003Econfig.org\\u003C/code\\u003E I have \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(setq org-agenda-files \\u0026#39;(\\u0026quot;~/folderB\\u0026quot;))\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, from a pure organizational purpose, I link symbolically, using a script, both files. This yields the following situation where \\u003Ccode\\u003EfolderA/fileA\\u003C/code\\u003E is the \\u0026#39;real\\u0026#39; file \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\nfolderB/fileA ---\\u0026gt; folderA/fileA\\n\\u003C/code\\u003E\\nnow when I try to edit \\u003Cstrong\\u003EfileA\\u003C/strong\\u003E in the \\u003Cstrong\\u003EfolderA\\u003C/strong\\u003E and make some changes to it, saving the changes will save them in \\u003Ccode\\u003EfolderB/fileA\\u003C/code\\u003E and of course indirectly also in \\u003Ccode\\u003EfolderA/fileA\\u003C/code\\u003E (at least this is the message being displayed in the status bar). This would not be dramatic if the file would not contain links to some images. Indeed, the images are created by a function which takes a screenshot from a region and saves it locally in a subfolder having the same name as the file but appending an \\u003Ccode\\u003E_imgs\\u003C/code\\u003E suffix. But now this subfolder is created in \\u003Ccode\\u003EfolderB\\u003C/code\\u003E *\\u003Cem\\u003Enot\\u003C/em\\u003E in \\u003Ccode\\u003EfolderA\\u003C/code\\u003E and this is a problem. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESomehow, I understand why this happens and on the one hand it makes sense but on the other hand, I do not understand why adding files to org-agenda should impact where the changes are saved although the file being modified is also in the agenda list. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI hope that I could clearly expose my problem. I use also \\u003Ccode\\u003Eido\\u003C/code\\u003E but not sure it is related\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cb1toc\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"M0ll3art\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cb1toc/an_issue_when_editing_files_added_to/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cb1toc/an_issue_when_editing_files_added_to/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562683650.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone i Have a question, \\n\\nI want to adjust my export settings from org mode to pdf via latex. \\n\\nTherefor i first exported as .tex file and analyzed what is used there. \\n\\nEvery Export shall automatically include this line: \\n\\n \\\\usepackage[a4paper, left= 3cm, right=3cm]{geometry}\\n\\n\\u0026#x200B;\\n\\nalso I want the hyperref to be adjusted from \\n\\n \\\\usepackage{hyperref} \\n\\nto \\n\\n \\\\usepackage[urlcolor=blue, bookmarks=true, pdfborder={0 0 0}]{hyperref}\\n\\n\\u0026#x200B;\\n\\nand also I want it to recognize Source code of (e.g. Language C)\\n\\n #+BEGIN_SRC C\\n ....\\n #+END_SRC\\n\\nand display it highlighted\\n\\n\\u0026#x200B;\\n\\nhow can i achieve that?\", \"author_fullname\": \"t2_1araa3cg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Global Pdf Export Settings\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_cawzrr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562682004.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone i Have a question, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want to adjust my export settings from org mode to pdf via latex. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETherefor i first exported as .tex file and analyzed what is used there. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEvery Export shall automatically include this line: \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\\\usepackage[a4paper, left= 3cm, right=3cm]{geometry}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealso I want the hyperref to be adjusted from \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\\\usepackage{hyperref} \\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eto \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\\\usepackage[urlcolor=blue, bookmarks=true, pdfborder={0 0 0}]{hyperref}\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand also I want it to recognize Source code of (e.g. Language C)\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+BEGIN_SRC C\\n....\\n#+END_SRC\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eand display it highlighted\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ehow can i achieve that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cawzrr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"7ie7an\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/cawzrr/global_pdf_export_settings/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/cawzrr/global_pdf_export_settings/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562653204.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a lot of data in big Org tables, and want to plot them with my preferred plotting agent, R. (Because that is the one my unit uses at work.)\\n\\nSo I've been following along, and reading the documentation, and reading the group.\\n\\nI thought that by searching the web, I would find a good number of references to the latest interface between Org-tables and R, but I don't know if that is what I am seeing.\\n\\n1) I find references to \\\"Org-R\\\" and the #+TBLR lines, and that seems like a mature package.\\n\\n2) But those same references state that Org-R has been replaced by Org-Babel itself.\\n\\nFair enough. But then I have not found the documentation within Babel documentation for that kind of data I/O.\\n\\nI probably missed something, but I wanted to ask here:\\n\\n--- What, if anything, are the folks here using to get R to read Org-tables? Or to change Org-tables into R datasets?\\n\\n[Edit to include answers: I thank the respondents, I've got it working.\\n\\n ... I see that I am free to ignore the Org-R package, since it really has been superceded by Babel. That leaves me free to pursue the Org-Babel docs, and the tutorials, and add more functionality to the programs I'm building around the orgtables.\\n\\n ... The gitlab.com file 'example.org' was very good to work from, even if the text was in french.\\n\\n ... I had to remember that R, by default, doesn't accept datasets with empty elements. For Org tables, that meant no empty cells. Since I use the 'special marking characters' column to control calculations (see the manual in the sections 'Tables'-\\u003E'The spreadsheet'-\\u003E'Advanced Features'), nearly every row in my big tables has an empty first column. So I had to manually remove that for it to get through to R.]\", \"author_fullname\": \"t2_pkynq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I have been trying to get R to read Org tables, but ...\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_carf7m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1562777896.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562651014.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a lot of data in big Org tables, and want to plot them with my preferred plotting agent, R. (Because that is the one my unit uses at work.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve been following along, and reading the documentation, and reading the group.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought that by searching the web, I would find a good number of references to the latest interface between Org-tables and R, but I don\\u0026#39;t know if that is what I am seeing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E1) I find references to \\u0026quot;Org-R\\u0026quot; and the #+TBLR lines, and that seems like a mature package.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2) But those same references state that Org-R has been replaced by Org-Babel itself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFair enough. But then I have not found the documentation within Babel documentation for that kind of data I/O.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI probably missed something, but I wanted to ask here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E--- What, if anything, are the folks here using to get R to read Org-tables? Or to change Org-tables into R datasets?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Edit to include answers: I thank the respondents, I\\u0026#39;ve got it working.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... I see that I am free to ignore the Org-R package, since it really has been superceded by Babel. That leaves me free to pursue the Org-Babel docs, and the tutorials, and add more functionality to the programs I\\u0026#39;m building around the orgtables.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... The gitlab.com file \\u0026#39;example.org\\u0026#39; was very good to work from, even if the text was in french.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... I had to remember that R, by default, doesn\\u0026#39;t accept datasets with empty elements. For Org tables, that meant no empty cells. Since I use the \\u0026#39;special marking characters\\u0026#39; column to control calculations (see the manual in the sections \\u0026#39;Tables\\u0026#39;-\\u0026gt;\\u0026#39;The spreadsheet\\u0026#39;-\\u0026gt;\\u0026#39;Advanced Features\\u0026#39;), nearly every row in my big tables has an empty first column. So I had to manually remove that for it to get through to R.]\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"carf7m\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tomtac\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/carf7m/i_have_been_trying_to_get_r_to_read_org_tables_but/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562622214.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"edit: SOLVED!\\n\\nHi all\\n\\nSo I press C-c C-s to enter a date to do some task on and the emacs three month calendar opens. The current day is highlighted in the calendar but pressing right takes you (maybe obviously) along the input line. What I would prefer is the right key took me along the days (as it does if you do M-x calendar in regular modes).\\n\\nAny way to configure that? At the moment the absolute easy way is to reach for the mouse ... \\n\\nMany thanks xx\", \"author_fullname\": \"t2_8257s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Navigating the date picker using the keyboard\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_caioyu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1562587748.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562605675.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eedit: SOLVED!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHi all\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I press C-c C-s to enter a date to do some task on and the emacs three month calendar opens. The current day is highlighted in the calendar but pressing right takes you (maybe obviously) along the input line. What I would prefer is the right key took me along the days (as it does if you do M-x calendar in regular modes).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny way to configure that? At the moment the absolute easy way is to reach for the mouse ... \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks xx\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"caioyu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"primal_buddhist\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/caioyu/navigating_the_date_picker_using_the_keyboard/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/caioyu/navigating_the_date_picker_using_the_keyboard/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562576875.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_439tkolk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-latex-classes for notes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9u13e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1562451311.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"delta.re\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9u13e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DarkyBuffalo\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9u13e/orglatexclasses_for_notes/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://delta.re/org-latex-class/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562422511.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"A friend shared this tool with me https://marketplace.visualstudio.com/items?itemName=tkrkt.linenote\\n\\nI feel like something equivalent in emacs must already exist, probably using OrgMode, but I can't seem to find anything. Does anyone know of a solution?\", \"author_fullname\": \"t2_3k1nbrcn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs/Org equivalent to VSCode's Line Note?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9muga\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562398712.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA friend shared this tool with me \\u003Ca href=\\\"https://marketplace.visualstudio.com/items?itemName=tkrkt.linenote\\\"\\u003Ehttps://marketplace.visualstudio.com/items?itemName=tkrkt.linenote\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI feel like something equivalent in emacs must already exist, probably using OrgMode, but I can\\u0026#39;t seem to find anything. Does anyone know of a solution?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9muga\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jack-of-some\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9muga/emacsorg_equivalent_to_vscodes_line_note/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c9muga/emacsorg_equivalent_to_vscodes_line_note/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562369912.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you add inline CSS to an org file, and in particular CSS you want to apply to particular headline or sub headline?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9kyu3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do you add inline CSS to an org file, and in particular CSS you want to apply to particular headline or sub headline?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9f3tq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562356547.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9f3tq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 1, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c9f3tq/how_do_you_add_inline_css_to_an_org_file_and_in/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c9f3tq/how_do_you_add_inline_css_to_an_org_file_and_in/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1562327747.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1562388218.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9kyu3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_c9f3tq\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9kyu3/how_do_you_add_inline_css_to_an_org_file_and_in/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://old.reddit.com/r/emacs/comments/c9f3tq/how_do_you_add_inline_css_to_an_org_file_and_in/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562359418.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"One of the ways the Getting Things Done system works is by creating projects, and making the one next thing to do as \\\"NEXT\\\" so you just know that that's what you're doing.\\n\\n\\u0026#x200B;\\n\\nIn org for instance I'd have something like this:\\n\\n\\u0026#x200B;\\n\\n * Project name\\n ** NEXT Do first action\\n ** TODO Do second action\\n ** TODO Rejoice\\n\\nI'd like to know if someone has already solved this problem: When I mark \\\"Do first action\\\" as DONE, I'd like \\\"Do second action\\\" to be automatically toggled to NEXT. \\n\\nWhen I mark \\\"Rejoice\\\" as DONE, this entire project should be archived.\\n\\n\\u0026#x200B;\\n\\nAnd if no one has solved this, can someone point me in the direction of org hooks / functionality that will help me implement this?\", \"author_fullname\": \"t2_3z32c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GTD in orgmode: Switch \\\"NEXT\\\" to \\\"DONE\\\" and \\\"TODO\\\" to \\\"NEXT\\\" automatically?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9g8vi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562363909.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOne of the ways the Getting Things Done system works is by creating projects, and making the one next thing to do as \\u0026quot;NEXT\\u0026quot; so you just know that that\\u0026#39;s what you\\u0026#39;re doing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn org for instance I\\u0026#39;d have something like this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* Project name\\n** NEXT Do first action\\n** TODO Do second action\\n** TODO Rejoice\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d like to know if someone has already solved this problem: When I mark \\u0026quot;Do first action\\u0026quot; as DONE, I\\u0026#39;d like \\u0026quot;Do second action\\u0026quot; to be automatically toggled to NEXT. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I mark \\u0026quot;Rejoice\\u0026quot; as DONE, this entire project should be archived.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd if no one has solved this, can someone point me in the direction of org hooks / functionality that will help me implement this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9g8vi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Trevoke\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9g8vi/gtd_in_orgmode_switch_next_to_done_and_todo_to/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c9g8vi/gtd_in_orgmode_switch_next_to_done_and_todo_to/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562335109.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - July 05, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9fl0b\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562359764.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9fl0b\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 23, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9fl0b/weekly_rorgmode_open_discussion_july_05_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c9fl0b/weekly_rorgmode_open_discussion_july_05_2019/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562330964.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"If I just type gibberish as fast as I can i get lag.\\n\\nI profiled and see org-fix-tags-on-the-fly is called on *every* character you type. it returns nil when nothing is to be done, but thats still a lot of calls.\\n\\nThoughts?\", \"author_fullname\": \"t2_3yy21\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone experience lag when typing 100~ wpm or more\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9a1ky\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562317938.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf I just type gibberish as fast as I can i get lag.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI profiled and see org-fix-tags-on-the-fly is called on \\u003Cem\\u003Eevery\\u003C/em\\u003E character you type. it returns nil when nothing is to be done, but thats still a lot of calls.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThoughts?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9a1ky\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"codygman\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c9a1ky/anyone_experience_lag_when_typing_100_wpm_or_more/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562289138.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_14n9ui\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tikz/Pgfplots with org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c94kw7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"spacemacs\", \"selftext\": \"Hello everyone!\\n\\nI'm new to emacs/spacemacs. I'm trying to get into literate programming and I'm getting the hang of using org-mode full time, I previously used jupyterlab. One advantage that I would really like to make use of in org-mode is the ability to use latex (i.e., tikz plots). Although, I was able to get some parts working with the examples provided [here](https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-LaTeX.html#org30df2de), I was not able to run my own tikz scripts which include pgfplots. \\n\\nIf anyone has any experience with using tikz/pgfplots within org-mode, please help. I would love to be more detailed with the problems I am facing but I have no clue what is going wrong or where.\", \"author_fullname\": \"t2_14n9ui\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Tikz/Pgfplots with org-mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/spacemacs\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c94g5u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1562257933.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562285980.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.spacemacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m new to emacs/spacemacs. I\\u0026#39;m trying to get into literate programming and I\\u0026#39;m getting the hang of using org-mode full time, I previously used jupyterlab. One advantage that I would really like to make use of in org-mode is the ability to use latex (i.e., tikz plots). Although, I was able to get some parts working with the examples provided \\u003Ca href=\\\"https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-LaTeX.html#org30df2de\\\"\\u003Ehere\\u003C/a\\u003E, I was not able to run my own tikz scripts which include pgfplots. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf anyone has any experience with using tikz/pgfplots within org-mode, please help. I would love to be more detailed with the problems I am facing but I have no clue what is going wrong or where.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_37w2j\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c94g5u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Raqato\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/spacemacs/comments/c94g5u/tikzpgfplots_with_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/spacemacs/comments/c94g5u/tikzpgfplots_with_orgmode/\", \"subreddit_subscribers\": 4479, \"created_utc\": 1562257180.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1562286691.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.spacemacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c94kw7\", \"is_robot_indexable\": true, \"stickied\": false, \"author\": \"Raqato\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_c94g5u\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c94kw7/tikzpgfplots_with_orgmode/\", \"parent_whitelist_status\": null, \"report_reasons\": null, \"url\": \"https://old.reddit.com/r/spacemacs/comments/c94g5u/tikzpgfplots_with_orgmode/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562257891.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Basically what the title asked, I've been using org-mode to manage my work and life and is starting to customize my agenda view. Currently my work agenda have six parts (normal agenda view, top priority project, stuck project, pending task, unscheduled task \\u0026 task to refile). The thing is, the new agenda is taking significantly longer to build compare to the default one, is there a easy way to tell how much time each part is taking?\\n\\n\\u0026#x200B;\\n\\nEDIT:\\n\\nAs it turns out, I found one can use M-x profiler-start to check the CPU usage by command to profile the thing you do in emacs. which helps me in this case.\\n\\n\\u0026#x200B;\\n\\n2nd EDIT:\\n\\nTo include the customize agenda below\\n\\n (setq org-agenda-custom-commands\\n '(\\n (\\\"w\\\" \\\"Work agenda\\\"\\n (\\n (agenda \\\"\\\"\\n ((org-agenda-skip-function\\n '(org-agenda-skip-entry-if 'todo '(\\\"PENDING\\\")))\\n (org-agenda-span 1)\\n (org-agenda-use-time-grid nil)\\n ))\\n (tags \\\"Project\\\"\\n ; (tags \\\"Project+PRIORITY=\\\\\\\"A\\\\\\\"\\\"\\n ((org-agenda-overriding-header \\\"All active projects\\\")\\n (org-agenda-sorting-strategy '(priority-down))))\\n (todo \\\"PENDING\\\"\\n ((org-agenda-overriding-header \\\"Pending tasks\\\")))\\n (stuck \\\"\\\"\\n ((org-agenda-overriding-header \\\"Stuck projects\\\")))\\n (todo \\\"TODO\\\"\\n ((org-agenda-overriding-header \\\"Unscheduled tasks\\\")\\n (org-agenda-skip-function\\n '(org-agenda-skip-entry-if 'scheduled))\\n ))\\n (tags-todo \\\"REFILE\\\"\\n ((org-agenda-overriding-header \\\"Tasks to refile\\\")\\n (org-tags-match-list-sublevels nil)))\\n )\\n ((org-agenda-tag-filter-preset '(\\\"-LIFE\\\")))\\n )\\n )\", \"author_fullname\": \"t2_7eegp5a\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I know which part of my agenda view is taking most time?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c9021w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1562381233.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562257102.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBasically what the title asked, I\\u0026#39;ve been using org-mode to manage my work and life and is starting to customize my agenda view. Currently my work agenda have six parts (normal agenda view, top priority project, stuck project, pending task, unscheduled task \\u0026amp; task to refile). The thing is, the new agenda is taking significantly longer to build compare to the default one, is there a easy way to tell how much time each part is taking?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it turns out, I found one can use M-x profiler-start to check the CPU usage by command to profile the thing you do in emacs. which helps me in this case.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2nd EDIT:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo include the customize agenda below\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E (setq org-agenda-custom-commands\\n \\u0026#39;(\\n (\\u0026quot;w\\u0026quot; \\u0026quot;Work agenda\\u0026quot;\\n (\\n (agenda \\u0026quot;\\u0026quot;\\n ((org-agenda-skip-function\\n \\u0026#39;(org-agenda-skip-entry-if \\u0026#39;todo \\u0026#39;(\\u0026quot;PENDING\\u0026quot;)))\\n (org-agenda-span 1)\\n (org-agenda-use-time-grid nil)\\n ))\\n (tags \\u0026quot;Project\\u0026quot;\\n; (tags \\u0026quot;Project+PRIORITY=\\\\\\u0026quot;A\\\\\\u0026quot;\\u0026quot;\\n ((org-agenda-overriding-header \\u0026quot;All active projects\\u0026quot;)\\n (org-agenda-sorting-strategy \\u0026#39;(priority-down))))\\n (todo \\u0026quot;PENDING\\u0026quot;\\n ((org-agenda-overriding-header \\u0026quot;Pending tasks\\u0026quot;)))\\n (stuck \\u0026quot;\\u0026quot;\\n ((org-agenda-overriding-header \\u0026quot;Stuck projects\\u0026quot;)))\\n (todo \\u0026quot;TODO\\u0026quot;\\n ((org-agenda-overriding-header \\u0026quot;Unscheduled tasks\\u0026quot;)\\n (org-agenda-skip-function\\n \\u0026#39;(org-agenda-skip-entry-if \\u0026#39;scheduled))\\n ))\\n (tags-todo \\u0026quot;REFILE\\u0026quot;\\n ((org-agenda-overriding-header \\u0026quot;Tasks to refile\\u0026quot;)\\n (org-tags-match-list-sublevels nil)))\\n )\\n ((org-agenda-tag-filter-preset \\u0026#39;(\\u0026quot;-LIFE\\u0026quot;)))\\n )\\n)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c9021w\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lrtDam\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c9021w/how_can_i_know_which_part_of_my_agenda_view_is/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c9021w/how_can_i_know_which_part_of_my_agenda_view_is/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562228302.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"**Background:** In case it matters: I have set up org-mode to be able to execute `wolframscript` source blocks. Sometimes, however, I need to be able to use the graphical interface that Wolfram provides through `wolframdesktop` (i.e., displaying graphs, animations, etc). So is there a way to construct a function which\\n\\n1. Takes the source code from an org-babel source block\\n2. Puts it in a temporary file `/tmp/file.nb`\\n3. Runs `wolframdesktop /tmp/file.nb` on my machine?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Launching a program with an org-babel source block?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c8r2oj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562204438.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003EBackground:\\u003C/strong\\u003E In case it matters: I have set up org-mode to be able to execute \\u003Ccode\\u003Ewolframscript\\u003C/code\\u003E source blocks. Sometimes, however, I need to be able to use the graphical interface that Wolfram provides through \\u003Ccode\\u003Ewolframdesktop\\u003C/code\\u003E (i.e., displaying graphs, animations, etc). So is there a way to construct a function which\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003ETakes the source code from an org-babel source block\\u003C/li\\u003E\\n\\u003Cli\\u003EPuts it in a temporary file \\u003Ccode\\u003E/tmp/file.nb\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003ERuns \\u003Ccode\\u003Ewolframdesktop /tmp/file.nb\\u003C/code\\u003E on my machine?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c8r2oj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c8r2oj/launching_a_program_with_an_orgbabel_source_block/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562175638.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I am new to emacs and org-mode. I had TeX Live before and latex fragments was working just fine. However, I recently switched to MikTeX and this error shows up every time I try to preview a latex fragment\\n\\n`org-compile-file: File \\\"c:/Users/acer/AppData/Local/Temp/orgtexPFJl35.png\\\" wasn\\u2019t produced. Please adjust \\u2018dvipng\\u2019 part of \\u2018org-preview-latex-process-alist\\u2019.`\\n\\nFollowing [this](https://www.reddit.com/r/emacs/comments/5rf9d4/help_org_setup_preview_latex_fragments/) link, I tried reading the .log file and couldn't find any messages that indicated missing packages.\\n\\nHowever this line seems off\\n\\n`LaTeX Font Info: Try loading font information for TS1+cmr on input line 31.`\\n\\nIs this the problem? How to solve this issue?\\n\\nNote: The miktex installation is working fine\", \"author_fullname\": \"t2_p3g806u\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Problem configuring org-mode with miktex\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c7zy9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1562014431.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1562043013.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am new to emacs and org-mode. I had TeX Live before and latex fragments was working just fine. However, I recently switched to MikTeX and this error shows up every time I try to preview a latex fragment\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-compile-file: File \\u0026quot;c:/Users/acer/AppData/Local/Temp/orgtexPFJl35.png\\u0026quot; wasn\\u2019t produced. Please adjust \\u2018dvipng\\u2019 part of \\u2018org-preview-latex-process-alist\\u2019.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFollowing \\u003Ca href=\\\"https://www.reddit.com/r/emacs/comments/5rf9d4/help_org_setup_preview_latex_fragments/\\\"\\u003Ethis\\u003C/a\\u003E link, I tried reading the .log file and couldn\\u0026#39;t find any messages that indicated missing packages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever this line seems off\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003ELaTeX Font Info: Try loading font information for TS1+cmr on input line 31.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this the problem? How to solve this issue?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENote: The miktex installation is working fine\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c7zy9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Mounica134\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c7zy9u/problem_configuring_orgmode_with_miktex/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c7zy9u/problem_configuring_orgmode_with_miktex/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1562014213.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"E.g. a sparse tree for headers that contain \\\"car\\\", \\\"auto\\\", or \\\"vehicle\\\"\\\".\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can a sparse tree be constructed for multiple text strings?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c7n0ls\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561977326.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EE.g. a sparse tree for headers that contain \\u0026quot;car\\u0026quot;, \\u0026quot;auto\\u0026quot;, or \\u0026quot;vehicle\\u0026quot;\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c7n0ls\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c7n0ls/can_a_sparse_tree_be_constructed_for_multiple/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c7n0ls/can_a_sparse_tree_be_constructed_for_multiple/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561948526.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Does there exist a way to execute org-babel nix expressions (through a `nix-repl` perhaps)?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-babel + nix?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c793qp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561898084.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes there exist a way to execute org-babel nix expressions (through a \\u003Ccode\\u003Enix-repl\\u003C/code\\u003E perhaps)?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c793qp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c793qp/orgbabel_nix/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c793qp/orgbabel_nix/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561869284.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm trying to set a deadline for the first monday of the month. I'm using sexp, and I'm using the following syntax setting reminders for two days before:\\n\\n *** TODO Task to do\\n DEADLINE: \\u003C%%(diary-remind '(diary-float t 1 1) '(1 2))\\u003E\\n\\nThis works, but the reminder appears twice in the agenda and I when I set it as DONE, the task doesn't reset it.\\n\\nI want the same functionality that is provided for the reminder of standards timestamps.\\n\\nIt's possible?\", \"author_fullname\": \"t2_8v76k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Handle reminders using sexp\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c76gx9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561881555.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m trying to set a deadline for the first monday of the month. I\\u0026#39;m using sexp, and I\\u0026#39;m using the following syntax setting reminders for two days before:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E*** TODO Task to do\\n DEADLINE: \\u0026lt;%%(diary-remind \\u0026#39;(diary-float t 1 1) \\u0026#39;(1 2))\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis works, but the reminder appears twice in the agenda and I when I set it as DONE, the task doesn\\u0026#39;t reset it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI want the same functionality that is provided for the reminder of standards timestamps.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s possible?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c76gx9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Pipiyedu\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c76gx9/handle_reminders_using_sexp/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c76gx9/handle_reminders_using_sexp/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561852755.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How are org headings or drawers associated with CSS classes for HTML export?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c6zozs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"I am trying to create a simple tips and tricks table from a standardized org item structure.\\n\\nI tried entering them in a table but realized that org tables do not allow multiple lines in a cell, so I'd rather enter them as normal org nodes and let the HTML export it in a format that enables CSS to be used for the arrangement. They can even be exported as tables.\\n\\nIt is organized like this\\n\\nQuery Description\\n\\n 1. Date\\n 2. Query\\n 3. Solution\\n 4. Notes\\n 5. Tags\\n 6. Links\\n\\nThe items can subitems in an org tree or they can be drawers of an item.\\n\\nHow do I get org to associate each drawer or subitem with a class, making the item like\\n\\n \\u003Cdiv class=\\\"tip_header\\\"\\u003E Title of Item\\n \\u003Cdiv class=\\\"tip_item tip_item_date\\\"\\u003EStuff\\u003C/div\\u003E\\n \\u003Cdiv class=\\\"tip_item tip_item_query\\\"\\u003EStuff\\u003C/div\\u003E\\n \\u003Cdiv class=\\\"tip_item tip_item_solution\\\"\\u003EStuff\\u003C/div\\u003E\\n \\u003Cdiv class=\\\"tip_item tip_item_notes\\\"\\u003EStuff\\u003C/div\\u003E\\n \\u003Cdiv class=\\\"tip_item tip_item_tags\\\"\\u003EStuff\\u003C/div\\u003E\\n \\u003Cdiv class=\\\"tip_item tip_item_links\\\"\\u003EStuff\\u003C/div\\u003E\\n \\u003Cdiv\\u003E\", \"author_fullname\": \"t2_3clxu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How are org headings or drawers associated with CSS classes for HTML export?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c6p1yi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561781582.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to create a simple tips and tricks table from a standardized org item structure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried entering them in a table but realized that org tables do not allow multiple lines in a cell, so I\\u0026#39;d rather enter them as normal org nodes and let the HTML export it in a format that enables CSS to be used for the arrangement. They can even be exported as tables.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is organized like this\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuery Description\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EDate\\u003C/li\\u003E\\n\\u003Cli\\u003EQuery\\u003C/li\\u003E\\n\\u003Cli\\u003ESolution\\u003C/li\\u003E\\n\\u003Cli\\u003ENotes\\u003C/li\\u003E\\n\\u003Cli\\u003ETags\\u003C/li\\u003E\\n\\u003Cli\\u003ELinks\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThe items can subitems in an org tree or they can be drawers of an item.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I get org to associate each drawer or subitem with a class, making the item like\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E\\u0026lt;div class=\\u0026quot;tip_header\\u0026quot;\\u0026gt; Title of Item\\n \\u0026lt;div class=\\u0026quot;tip_item tip_item_date\\u0026quot;\\u0026gt;Stuff\\u0026lt;/div\\u0026gt;\\n \\u0026lt;div class=\\u0026quot;tip_item tip_item_query\\u0026quot;\\u0026gt;Stuff\\u0026lt;/div\\u0026gt;\\n \\u0026lt;div class=\\u0026quot;tip_item tip_item_solution\\u0026quot;\\u0026gt;Stuff\\u0026lt;/div\\u0026gt;\\n \\u0026lt;div class=\\u0026quot;tip_item tip_item_notes\\u0026quot;\\u0026gt;Stuff\\u0026lt;/div\\u0026gt;\\n \\u0026lt;div class=\\u0026quot;tip_item tip_item_tags\\u0026quot;\\u0026gt;Stuff\\u0026lt;/div\\u0026gt;\\n \\u0026lt;div class=\\u0026quot;tip_item tip_item_links\\u0026quot;\\u0026gt;Stuff\\u0026lt;/div\\u0026gt;\\n\\u0026lt;div\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c6p1yi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 1, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/c6p1yi/how_are_org_headings_or_drawers_associated_with/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/c6p1yi/how_are_org_headings_or_drawers_associated_with/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1561752782.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1561847970.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c6zozs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"vfclists\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_c6p1yi\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c6zozs/how_are_org_headings_or_drawers_associated_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://old.reddit.com/r/emacs/comments/c6p1yi/how_are_org_headings_or_drawers_associated_with/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561819170.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"So I converted 300 Google Keep notes to HTML, then to org mode files using this little bash script:\\n\\nfind . -name \\\"\\\\*.ht\\\\*\\\" | while read i; do pandoc -f html -t org \\\"$i\\\" -o \\\"${i%.\\\\*}.org\\\"; done\\n\\n\\u0026#x200B;\\n\\nEverything worked great. Then I moved the files to my org directory in dropbox, and synced Orgzly. \\n\\nNow Orgzly crashes when I try to open it. So I guess there's a 300 file limit. And, frankly, there's no real way to organize 300 notes in Orgzly and I'm too lazy to tag all of them.\", \"author_fullname\": \"t2_c213d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I broke Orgzly\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c6t63n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561803417.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I converted 300 Google Keep notes to HTML, then to org mode files using this little bash script:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Efind . -name \\u0026quot;*.ht*\\u0026quot; | while read i; do pandoc -f html -t org \\u0026quot;$i\\u0026quot; -o \\u0026quot;${i%.*}.org\\u0026quot;; done\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEverything worked great. Then I moved the files to my org directory in dropbox, and synced Orgzly. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow Orgzly crashes when I try to open it. So I guess there\\u0026#39;s a 300 file limit. And, frankly, there\\u0026#39;s no real way to organize 300 notes in Orgzly and I\\u0026#39;m too lazy to tag all of them.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c6t63n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Expatio\", \"num_crossposts\": 0, \"num_comments\": 24, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c6t63n/i_broke_orgzly/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c6t63n/i_broke_orgzly/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561774617.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey guys. \\n\\nI am currently working on my first webpage and I am trying to use org-mode to write some of the content because writing html is boring.\\nHowever the HTML file that is exported is a complete mess and it makes it hard.for me to extract what I want.\\n\\nSpecifically what I wanted to know is if there is a way for me to convey a specific id or class to the elements in my org file (that way I could style/ extract them easily). I looked around and I can't seem to find a way to do it.\\n\\nAlso, anybody using org to write a webpage? Anyone would like to share some tips or cool setups? \\n\\nThanks!\", \"author_fullname\": \"t2_wik6z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org mode exporting to html\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c6kc5r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561758091.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey guys. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am currently working on my first webpage and I am trying to use org-mode to write some of the content because writing html is boring.\\nHowever the HTML file that is exported is a complete mess and it makes it hard.for me to extract what I want.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESpecifically what I wanted to know is if there is a way for me to convey a specific id or class to the elements in my org file (that way I could style/ extract them easily). I looked around and I can\\u0026#39;t seem to find a way to do it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, anybody using org to write a webpage? Anyone would like to share some tips or cool setups? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c6kc5r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Elbarro\", \"num_crossposts\": 0, \"num_comments\": 17, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c6kc5r/org_mode_exporting_to_html/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c6kc5r/org_mode_exporting_to_html/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561729291.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 28, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c6jsy4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561754960.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c6jsy4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 35, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c6jsy4/weekly_rorgmode_open_discussion_june_28_2019/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561726160.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, Im using emacs 26.2 and org-mode 9.2.4.\\n\\nWithin my note I have several Mark's with \\u003E\\u003ETODO.\\n\\nMy search within .emacs :\\n(\\\"2\\\" \\\"Aufgaben aus Notizen\\\"\\u00a0agenda\\u00a0\\\"\\u003E\\u003ETODO aus Notizen\\\"\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(org-agenda-skip-function '(org-agenda-skip-entry-if 'notregexp \\\"\\u003E\\u003ETODO\\\"))\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(org-agenda-overriding-header \\\"\\u003E\\u003ETODO's\\u00a0aus\\u00a0Notizen: \\\") ))\\n\\nDidn't work anymore.\\ud83d\\ude25\\n\\nSearching via agenda F12-\\u003Es-\\u003Eregex {\\u003E\\u003ETODO}\\nworks and I get my results.\\n\\nAny hints? Or something was changed and I have an error included?\\n\\nThanks in advance...\", \"author_fullname\": \"t2_3fb9glrl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Agenda regex search didn't work anymore\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c60z6q\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561638420.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, Im using emacs 26.2 and org-mode 9.2.4.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithin my note I have several Mark\\u0026#39;s with \\u0026gt;\\u0026gt;TODO.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy search within .emacs :\\n(\\u0026quot;2\\u0026quot; \\u0026quot;Aufgaben aus Notizen\\u0026quot;\\u00a0agenda\\u00a0\\u0026quot;\\u003Cstrong\\u003ETODO aus Notizen\\u0026quot;\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(org-agenda-skip-function \\u0026#39;(org-agenda-skip-entry-if \\u0026#39;notregexp \\u0026quot;\\u003C/strong\\u003ETODO\\u0026quot;))\\n\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0(org-agenda-overriding-header \\u0026quot;\\u0026gt;\\u0026gt;TODO\\u0026#39;s\\u00a0aus\\u00a0Notizen: \\u0026quot;) ))\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDidn\\u0026#39;t work anymore.\\ud83d\\ude25\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESearching via agenda F12-\\u0026gt;s-\\u0026gt;regex {\\u0026gt;\\u0026gt;TODO}\\nworks and I get my results.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny hints? Or something was changed and I have an error included?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance...\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c60z6q\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ColleagueSunshine\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c60z6q/agenda_regex_search_didnt_work_anymore/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c60z6q/agenda_regex_search_didnt_work_anymore/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561609620.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have a pixel 2 using google keyboard and Nova launcher on android.\\n\\nOrgly is awesome. I use it all the time.\\n\\nI have a homescreen widget to add a new note in my [inbox.org](https://inbox.org) notebook.\\n\\nTo add a new entry to my inbox, I click that widget and start typing. If I want to speak rather than type, I tap the microphone at the right side of the keyboard. \\n\\nThen I speak.\\n\\nWhen I'm done, I click the checkmark. Done. New entry has been added.\\n\\nI am looking for a way to streamline it even more.\\n\\n\\u0026#x200B;\\n\\nSomething like this: double tap home screen runs X which records my voice and when I tap again, it stores the transcribed voice as a new entry in [inbox.org](https://inbox.org)\\n\\n\\u0026#x200B;\\n\\nIs there any way of having a different application send transcribed text to orgzly in this way?\\n\\n\\u0026#x200B;\\n\\nOr other, similar ideas?\", \"author_fullname\": \"t2_101gn2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[orgzly] Simplest way to add quick voice functionality to widget?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c5ysfq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 7, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 7, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561625427.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a pixel 2 using google keyboard and Nova launcher on android.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrgly is awesome. I use it all the time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a homescreen widget to add a new note in my \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E notebook.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo add a new entry to my inbox, I click that widget and start typing. If I want to speak rather than type, I tap the microphone at the right side of the keyboard. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I speak.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I\\u0026#39;m done, I click the checkmark. Done. New entry has been added.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am looking for a way to streamline it even more.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESomething like this: double tap home screen runs X which records my voice and when I tap again, it stores the transcribed voice as a new entry in \\u003Ca href=\\\"https://inbox.org\\\"\\u003Einbox.org\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there any way of having a different application send transcribed text to orgzly in this way?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr other, similar ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c5ysfq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pseudo-bash\", \"num_crossposts\": 0, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c5ysfq/orgzly_simplest_way_to_add_quick_voice/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c5ysfq/orgzly_simplest_way_to_add_quick_voice/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561596627.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"So, while you can write an agenda view [1] to a variety of formats [2], that agenda view exports in an agenda format, whether or not column-view [3] is enabled.\\n\\nI haven't been able to find one, but is there any good way to export an agenda as a column-view? This would be super-useful to share effort estimates and availability.\\n\\n----\\n1. `C-c a: org-agenda`\\n2. `C-x C-w`\\n3. `C-c C-x C-c`\", \"author_fullname\": \"t2_12yaty\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Exporting Agenda in Column View?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4rtbo\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561425708.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo, while you can write an agenda view [1] to a variety of formats [2], that agenda view exports in an agenda format, whether or not column-view [3] is enabled.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u0026#39;t been able to find one, but is there any good way to export an agenda as a column-view? This would be super-useful to share effort estimates and availability.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EC-c a: org-agenda\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EC-x C-w\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003EC-c C-x C-c\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4rtbo\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fearbedragons\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c4rtbo/exporting_agenda_in_column_view/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561396908.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi!\\n\\nLet's say I have in my org file a lis of all my clients, and for each headline, I have a property with the amount they will pay me.\\n\\nExample:\\n \\n * John\\n :PROPERTIES:\\n :TOTAL: 200USD\\n :END:\\n \\n * Patrick\\n :PROPERTIES:\\n :TOTAL: 120USD\\n :END:\\n \\n * Thomas\\n :PROPERTIES:\\n :TOTAL: 80USD\\n :END:\\n \\n\\nThis is just for example purposes, as I have in fact dozens of properties, and a lot of subheadings for each client.\\n\\nNow I would like to export a list of all the clients name, with only the value of the \\\"TOTAL\\\" property, for each client.\\n\\nIs there a solution to this ?\\n\\nMany thanks in advance.\", \"author_fullname\": \"t2_elo7h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is it possible to export a list of value from a given property?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4ox16\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561415728.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet\\u0026#39;s say I have in my org file a lis of all my clients, and for each headline, I have a property with the amount they will pay me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExample:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E* John\\n:PROPERTIES:\\n :TOTAL: 200USD\\n:END:\\n\\n* Patrick\\n:PROPERTIES:\\n :TOTAL: 120USD\\n:END:\\n\\n* Thomas\\n:PROPERTIES:\\n :TOTAL: 80USD\\n:END:\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThis is just for example purposes, as I have in fact dozens of properties, and a lot of subheadings for each client.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow I would like to export a list of all the clients name, with only the value of the \\u0026quot;TOTAL\\u0026quot; property, for each client.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a solution to this ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMany thanks in advance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4ox16\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"skouakskouek\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c4ox16/is_it_possible_to_export_a_list_of_value_from_a/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561386928.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm reading the [manual](https://orgmode.org/manual/Setting-tags.html) and I don't understand the purpose of \\\"@\\\" at the beginning of the tag.\", \"author_fullname\": \"t2_8v76k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why some tags start with \\\"@\\\"?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c4mjyk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561406828.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m reading the \\u003Ca href=\\\"https://orgmode.org/manual/Setting-tags.html\\\"\\u003Emanual\\u003C/a\\u003E and I don\\u0026#39;t understand the purpose of \\u0026quot;@\\u0026quot; at the beginning of the tag.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c4mjyk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Pipiyedu\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c4mjyk/why_some_tags_start_with/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c4mjyk/why_some_tags_start_with/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561378028.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Just came across this, and thought I would share it. Looks active. \\n\\n\\u0026#x200B;\\n\\n[https://smos.cs-syd.eu/](https://smos.cs-syd.eu/)\\n\\n[https://github.com/NorfairKing/smos](https://github.com/NorfairKing/smos)\", \"author_fullname\": \"t2_3fqigf71\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Smos: a replacement for emacs org mode\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3xrzz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561284056.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust came across this, and thought I would share it. Looks active. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://smos.cs-syd.eu/\\\"\\u003Ehttps://smos.cs-syd.eu/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/NorfairKing/smos\\\"\\u003Ehttps://github.com/NorfairKing/smos\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3xrzz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"alisplisp\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c3xrzz/smos_a_replacement_for_emacs_org_mode/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561255256.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"While editing my daily planner, I often find myself needing to capture a new task and to then link to that task in the current document. My existing\\u2014and somewhat clumsy\\u2014workflow is: capture \\u0026 refile -\\u003E open destination file -\\u003E find task -\\u003E store link -\\u003E back to original document -\\u003E insert link.\\n\\nIs there an easier way to store a link to a task as soon as it is captured or refiled?\", \"author_fullname\": \"t2_jrwln\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Store link to newly captured task?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3e2th\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561169010.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhile editing my daily planner, I often find myself needing to capture a new task and to then link to that task in the current document. My existing\\u2014and somewhat clumsy\\u2014workflow is: capture \\u0026amp; refile -\\u0026gt; open destination file -\\u0026gt; find task -\\u0026gt; store link -\\u0026gt; back to original document -\\u0026gt; insert link.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there an easier way to store a link to a task as soon as it is captured or refiled?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3e2th\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"virvir\", \"num_crossposts\": 0, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c3e2th/store_link_to_newly_captured_task/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561140210.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 21, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c3a5ki\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561150164.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c3a5ki\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c3a5ki/weekly_rorgmode_open_discussion_june_21_2019/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561121364.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have an external link that is SVG, but I'm suspecting the weird filename is causing org-mode to not realize this.\\n\\nThis works fine in markdown:\\n\\n ![](https://svg.wavedrom.com/github/wavedrom/wavedrom/master/test/signal-step4.json5)\\n\\nbut in org-mode, the equivalent \\n\\n [[https://svg.wavedrom.com/github/wavedrom/wavedrom/master/test/signal-step4.json5]]\\n\\njust gives me a clickable link. Is there some way to tell org-mode that this is really an svg and should be rendered as such?\\n\\nI'm trying to use this for an org-mode document and I'd like it to be previewable in GitHub, so I'd prefer nothing that requires customizations to org-mode. Worst case I'll just generate the SVGs offline or use markdown :'(\", \"author_fullname\": \"t2_721u8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Force external link to be SVG\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c36ltd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561123594.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have an external link that is SVG, but I\\u0026#39;m suspecting the weird filename is causing org-mode to not realize this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis works fine in markdown:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E![](https://svg.wavedrom.com/github/wavedrom/wavedrom/master/test/signal-step4.json5)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ebut in org-mode, the equivalent \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E[[https://svg.wavedrom.com/github/wavedrom/wavedrom/master/test/signal-step4.json5]]\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Ejust gives me a clickable link. Is there some way to tell org-mode that this is really an svg and should be rendered as such?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to use this for an org-mode document and I\\u0026#39;d like it to be previewable in GitHub, so I\\u0026#39;d prefer nothing that requires customizations to org-mode. Worst case I\\u0026#39;ll just generate the SVGs offline or use markdown :\\u0026#39;(\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c36ltd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Hofstee\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c36ltd/force_external_link_to_be_svg/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c36ltd/force_external_link_to_be_svg/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561094794.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_b3vk3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How was your personal organization and effectiveness before you learned to use org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c368vf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 6, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1561121183.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c368vf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"argtri\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c368vf/how_was_your_personal_organization_and/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1561092383.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I'm back trying to get this thing as I couldn't find an answer before. \\n\\n\\u0026#x200B;\\n\\nI would like a capture template that loads the text from another org file. \\n\\nWhen I choose the template key (let's say \\\"s\\\" for \\\"setup\\\" template) I want Org to go to \\\\~/Documents/templates/setup.org, and load the context of the file (which is in org) into the capture template. \\n\\n\\u0026#x200B;\\n\\nDoes this option exist built-in, or do I need some lisp magic? The manual hints at this being an option: \\n\\n\\\"template \\n\\nThe template for creating the capture item. If you leave this empty, an appropriate default template will be used. Otherwise this is a string with escape codes, which will be replaced depending on time and context of the capture call. The string with escapes **may be loaded from a template file, using the special syntax \\u2018(file \\\"template filename\\\")\\u2019**. See below for more details.\\\" \\n\\n\\u0026#x200B;\\n\\nHowever, the details below do not seem to explain how to do that. Maybe I'm just not seeing it. \\n\\n\\u0026#x200B;\\n\\nDoes anyone have a template that is based in another .org file?\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Capture template based in a file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c26qja\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560915364.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m back trying to get this thing as I couldn\\u0026#39;t find an answer before. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like a capture template that loads the text from another org file. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I choose the template key (let\\u0026#39;s say \\u0026quot;s\\u0026quot; for \\u0026quot;setup\\u0026quot; template) I want Org to go to ~/Documents/templates/setup.org, and load the context of the file (which is in org) into the capture template. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes this option exist built-in, or do I need some lisp magic? The manual hints at this being an option: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;template \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe template for creating the capture item. If you leave this empty, an appropriate default template will be used. Otherwise this is a string with escape codes, which will be replaced depending on time and context of the capture call. The string with escapes \\u003Cstrong\\u003Emay be loaded from a template file, using the special syntax \\u2018(file \\u0026quot;template filename\\u0026quot;)\\u2019\\u003C/strong\\u003E. See below for more details.\\u0026quot; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, the details below do not seem to explain how to do that. Maybe I\\u0026#39;m just not seeing it. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone have a template that is based in another .org file?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c26qja\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 14, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c26qja/capture_template_based_in_a_file/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1560886564.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have an agenda configured with this column view:\\n\\n (setq org-agenda-overriding-columns-format \\\"%30ITEM %TODO %SCHEDULED %6Effort{:}\\\")\\n\\nThat mostly works really well for showing me the task effort and total effort for the day (C-c a a w, C-c C-x C-c). However, when a task is scheduled on the same day as its deadline, the effort is double-counted: once for the scheduled task, and once for the deadline. **Is there any way to avoid counting deadlines in effort,** aside from just hiding the deadlines on the agenda?\", \"author_fullname\": \"t2_12yaty\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Avoid Double Counting Effort on Agenda Column View with Scheduled Deadlines?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c1roqk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560827427.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have an agenda configured with this column view:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E(setq org-agenda-overriding-columns-format \\u0026quot;%30ITEM %TODO %SCHEDULED %6Effort{:}\\u0026quot;)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThat mostly works really well for showing me the task effort and total effort for the day (C-c a a w, C-c C-x C-c). However, when a task is scheduled on the same day as its deadline, the effort is double-counted: once for the scheduled task, and once for the deadline. \\u003Cstrong\\u003EIs there any way to avoid counting deadlines in effort,\\u003C/strong\\u003E aside from just hiding the deadlines on the agenda?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c1roqk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fearbedragons\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c1roqk/avoid_double_counting_effort_on_agenda_column/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c1roqk/avoid_double_counting_effort_on_agenda_column/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1560798627.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hello, I hope one of you kind souls can help me. \\n\\nI have a lot of research that I'd liked to make accessible to read when I'm away from my laptop. I've been taking notes in orgmode that link to files and other org files. This works really well in emacs, i can happily follow my research, and read the relevant papers. \\n\\nI thought I'd try and publish to html, then copy the files and folders to my android phone, so that i have my research when i need it at work. \\n\\nI cannot get it to work so that clicking on a link opens the file or linked page, i get file not found. \\n\\nIs there a setting i need to change so that i can just point to the file in the same directory or one in a folder under it? \\n\\nI have no website development experience, and I've no wish to put these files on the internet, i want them to just be local files.\\n\\nOrgzly seems to work well if there is a TODO, but it can't open the links and doesn't show the text. \\n\\nCan it be done?\\n\\nEdit: it does seem to be an issue with android. My workaround is to install SimpleHttpServer. I pointed it to my index.html file, and everything works as expected. Now to install some css :)\\n\\nThank you all for your help.\", \"author_fullname\": \"t2_9wkx0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HTML output that can be used on an Android phone\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c1lhb5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560799974.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560792383.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I hope one of you kind souls can help me. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a lot of research that I\\u0026#39;d liked to make accessible to read when I\\u0026#39;m away from my laptop. I\\u0026#39;ve been taking notes in orgmode that link to files and other org files. This works really well in emacs, i can happily follow my research, and read the relevant papers. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI thought I\\u0026#39;d try and publish to html, then copy the files and folders to my android phone, so that i have my research when i need it at work. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cannot get it to work so that clicking on a link opens the file or linked page, i get file not found. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a setting i need to change so that i can just point to the file in the same directory or one in a folder under it? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have no website development experience, and I\\u0026#39;ve no wish to put these files on the internet, i want them to just be local files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOrgzly seems to work well if there is a TODO, but it can\\u0026#39;t open the links and doesn\\u0026#39;t show the text. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECan it be done?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: it does seem to be an issue with android. My workaround is to install SimpleHttpServer. I pointed it to my index.html file, and everything works as expected. Now to install some css :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you all for your help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c1lhb5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"soops1966\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c1lhb5/html_output_that_can_be_used_on_an_android_phone/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1560763583.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hey all!\\n\\nI have a rather time sensitive task that needs be done every day exactly 24 hours apart. I was hoping to use something like \\u003C2019-06-16 17:00 .+24h\\u003E (documentation on the .+ repeat thing here in case anyone needs it: [https://orgmode.org/org.html#Repeated-tasks](https://orgmode.org/org.html#Repeated-tasks)) However, it only sets the next due timestamp to 24 hours ahead of the currently scheduled timestamp instead of setting it exactly 24 hours from when I last completed the task like I was hoping. Would anyone have any ideas as to how I might make a repeating task like this? Thanks a bunch in advance!\", \"author_fullname\": \"t2_mrsxp9x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Repeating task that, when completed, sets due date exactly 24 hours from the time last completed?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c1gx6s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"question\", \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560759316.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey all!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a rather time sensitive task that needs be done every day exactly 24 hours apart. I was hoping to use something like \\u0026lt;2019-06-16 17:00 .+24h\\u0026gt; (documentation on the .+ repeat thing here in case anyone needs it: \\u003Ca href=\\\"https://orgmode.org/org.html#Repeated-tasks\\\"\\u003Ehttps://orgmode.org/org.html#Repeated-tasks\\u003C/a\\u003E) However, it only sets the next due timestamp to 24 hours ahead of the currently scheduled timestamp instead of setting it exactly 24 hours from when I last completed the task like I was hoping. Would anyone have any ideas as to how I might make a repeating task like this? Thanks a bunch in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c14ad960-c2fd-11e8-9252-0ebfd1bdb77c\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c1gx6s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"pgwang\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c1gx6s/repeating_task_that_when_completed_sets_due_date/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1560730516.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I hold a file containing one file per day and with everything I do at work. In parallel I have another folder with several sub-folders containing information on different programming languages, articles to read, personal stuff, etc...\\n\\nI manage everything by hand and I think it's time to use a few things to simplify my life. I use many years emacs but I always missed org-mode. Between org-mode, org-journal, agenda, calendar, I'm a little lost.\\n\\nDo you have any advice ? Thank you in advance !\", \"author_fullname\": \"t2_jmplgk2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"org-mode as work diary and notes\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c133r2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 16, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 16, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560667404.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI hold a file containing one file per day and with everything I do at work. In parallel I have another folder with several sub-folders containing information on different programming languages, articles to read, personal stuff, etc...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI manage everything by hand and I think it\\u0026#39;s time to use a few things to simplify my life. I use many years emacs but I always missed org-mode. Between org-mode, org-journal, agenda, calendar, I\\u0026#39;m a little lost.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo you have any advice ? Thank you in advance !\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c133r2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Qwarctick\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c133r2/orgmode_as_work_diary_and_notes/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1560638604.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 14, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_c0jpns\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560545368.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"c0jpns\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/c0jpns/weekly_rorgmode_open_discussion_june_14_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/c0jpns/weekly_rorgmode_open_discussion_june_14_2019/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1560516568.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I would like to get pdf output from source code to display inline. I've been using png output for the preparation of a manuscript recently, but now that I'm close to submission I have to switch to vector graphics in pdf (or eps) for latex export. This works fine, but doesn't allow me to preview the images anymore. Which should work, since pdf-tools readily shows pdf previews.\\n\\n[On the mailing list](https://lists.gnu.org/archive/html/emacs-orgmode/2016-02/msg00204.html) there's a pretty old question of somebody trying to achieve the same but without any answers. They found their own 4-liner solution, which didn't work for me (resulting in an outlined little square)\\n\\n```\\n(add-to-list 'image-type-file-name-regexps '(\\\"\\\\\\\\.pdf\\\\\\\\'\\\" . imagemagick))\\n(add-to-list 'image-file-name-extensions \\\"pdf\\\")\\n(setq imagemagick-types-inhibit (remove 'PDF imagemagick-types-inhibit))\\n(setq org-image-actual-width 600)\\n```\\n\\nThat's also the second solution posted to [this SO question](https://stackoverflow.com/questions/15407485/inline-pdf-images-in-org-mode). The first solution there seems quite fancy but since my knowledge of elisp is not extensive, I couldn't debug the inevitable error when opening an org-file with pdfs or when creating a new one.\\n\\nThere's also this [SO solution that I didn't try](https://emacs.stackexchange.com/questions/390/display-pdf-images-in-org-mode) since it requires a different format for the source.\\n\\nAny ideas on how to do this with the most recent versions of emacs and org-mode?\", \"author_fullname\": \"t2_r4y6z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Inline PDF images from source in org-mode?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bzas9r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560277909.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to get pdf output from source code to display inline. I\\u0026#39;ve been using png output for the preparation of a manuscript recently, but now that I\\u0026#39;m close to submission I have to switch to vector graphics in pdf (or eps) for latex export. This works fine, but doesn\\u0026#39;t allow me to preview the images anymore. Which should work, since pdf-tools readily shows pdf previews.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://lists.gnu.org/archive/html/emacs-orgmode/2016-02/msg00204.html\\\"\\u003EOn the mailing list\\u003C/a\\u003E there\\u0026#39;s a pretty old question of somebody trying to achieve the same but without any answers. They found their own 4-liner solution, which didn\\u0026#39;t work for me (resulting in an outlined little square)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E\\n(add-to-list \\u0026#39;image-type-file-name-regexps \\u0026#39;(\\u0026quot;\\\\\\\\.pdf\\\\\\\\\\u0026#39;\\u0026quot; . imagemagick))\\n(add-to-list \\u0026#39;image-file-name-extensions \\u0026quot;pdf\\u0026quot;)\\n(setq imagemagick-types-inhibit (remove \\u0026#39;PDF imagemagick-types-inhibit))\\n(setq org-image-actual-width 600)\\n\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s also the second solution posted to \\u003Ca href=\\\"https://stackoverflow.com/questions/15407485/inline-pdf-images-in-org-mode\\\"\\u003Ethis SO question\\u003C/a\\u003E. The first solution there seems quite fancy but since my knowledge of elisp is not extensive, I couldn\\u0026#39;t debug the inevitable error when opening an org-file with pdfs or when creating a new one.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere\\u0026#39;s also this \\u003Ca href=\\\"https://emacs.stackexchange.com/questions/390/display-pdf-images-in-org-mode\\\"\\u003ESO solution that I didn\\u0026#39;t try\\u003C/a\\u003E since it requires a different format for the source.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas on how to do this with the most recent versions of emacs and org-mode?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bzas9r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Japhiri\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bzas9r/inline_pdf_images_from_source_in_orgmode/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1560249109.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I was wondering if there is anything similar to taskwarrior that can do the same thing with org files.\", \"author_fullname\": \"t2_3tn7pcdr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org Files In Cli\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz9niq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560268621.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was wondering if there is anything similar to taskwarrior that can do the same thing with org files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz9niq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SidharthArya-\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bz9niq/org_files_in_cli/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1560239821.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Updates to org-ql\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz5esl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 17, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 17, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"https://github.com/alphapapa/org-ql\\n\\n`org-ql` has received several updates, including better documentation, an improved `org-ql-search` command, and new `(ts)` predicates that select entries by timestamp.\\n\\nHere's a [screencast](https://github.com/alphapapa/org-ql/raw/master/images/org-ql-search.gif) of the improved `org-ql-search` command.\\n\\nFeedback would be appreciated. I plan to submit it to MELPA, but I think it needs more testing and polishing first.\", \"author_fullname\": \"t2_17be1v66\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Updates to org-ql\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz5eqv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 36, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 36, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560240569.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/alphapapa/org-ql\\\"\\u003Ehttps://github.com/alphapapa/org-ql\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eorg-ql\\u003C/code\\u003E has received several updates, including better documentation, an improved \\u003Ccode\\u003Eorg-ql-search\\u003C/code\\u003E command, and new \\u003Ccode\\u003E(ts)\\u003C/code\\u003E predicates that select entries by timestamp.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s a \\u003Ca href=\\\"https://github.com/alphapapa/org-ql/raw/master/images/org-ql-search.gif\\\"\\u003Escreencast\\u003C/a\\u003E of the improved \\u003Ccode\\u003Eorg-ql-search\\u003C/code\\u003E command.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeedback would be appreciated. I plan to submit it to MELPA, but I think it needs more testing and polishing first.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz5eqv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 1, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1560211769.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1560240576.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz5esl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"github-alphapapa\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bz5eqv\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bz5esl/updates_to_orgql/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bz5eqv/updates_to_orgql/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1560211776.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"http://www.gonsie.com/blorg/org-highlight.html\\n\\nI wrote a short post on how I added a highlight markup to orgmode, where I use ':' to mark the start and end of a phrase (similar to the bold or italic markup). For example a `:highlighted:` word becomes `\\u003Cmark\\u003Ehighlighted\\u003C/mark\\u003E` when exported with an HTML backend.\\n\\nI hope this is useful for someone else. If there is some interest, I would propose to put this into the org standard.\", \"author_fullname\": \"t2_6c42k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Adding highlight markup to org\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bz0258\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 12, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 12, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560213612.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.gonsie.com/blorg/org-highlight.html\\\"\\u003Ehttp://www.gonsie.com/blorg/org-highlight.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wrote a short post on how I added a highlight markup to orgmode, where I use \\u0026#39;:\\u0026#39; to mark the start and end of a phrase (similar to the bold or italic markup). For example a \\u003Ccode\\u003E:highlighted:\\u003C/code\\u003E word becomes \\u003Ccode\\u003E\\u0026lt;mark\\u0026gt;highlighted\\u0026lt;/mark\\u0026gt;\\u003C/code\\u003E when exported with an HTML backend.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI hope this is useful for someone else. If there is some interest, I would propose to put this into the org standard.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bz0258\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"gonsie\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bz0258/adding_highlight_markup_to_org/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bz0258/adding_highlight_markup_to_org/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1560184812.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi, guys.\\n\\nBefore I start defining my own custom property for this I wanted to makes sure there wasn't an existing way to do it. I'm looking for a property or something that would automatically exclude an entry from the default agenda views. I don't see one in the property completion list but it seems like the kind of thing someone may have already thought of.\\n\\nI don't have a problem with filtering on my own property or tag. But I'd rather not duplicate something that's already built in.\\n\\nThanks.\", \"author_fullname\": \"t2_16nda8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Property to exclude an entry from the agenda?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byjkmm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560110840.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, guys.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore I start defining my own custom property for this I wanted to makes sure there wasn\\u0026#39;t an existing way to do it. I\\u0026#39;m looking for a property or something that would automatically exclude an entry from the default agenda views. I don\\u0026#39;t see one in the property completion list but it seems like the kind of thing someone may have already thought of.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t have a problem with filtering on my own property or tag. But I\\u0026#39;d rather not duplicate something that\\u0026#39;s already built in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byjkmm\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tshanno\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/byjkmm/property_to_exclude_an_entry_from_the_agenda/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1560082040.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Those of you who use Org-mode with Android are probably familiar with [Orgzly](http://www.orgzly.com/). In this post, a friendly FAQ with it's creator, who was kind enough to answer a few questions. I also described how I work with it toward the end.\\n\\n\\u0026#x200B;\\n\\nThis read might be useful for anyone who uses Org-mode on the go, rather you're familiar with Orgzly or not. Let me know what you think :)\\n\\n\\u0026#x200B;\\n\\n[https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/](https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/)\", \"author_fullname\": \"t2_g65oo\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Orgzly: an interview with the creator\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_byflyn\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 43, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 43, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": 1560078985.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1560076152.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThose of you who use Org-mode with Android are probably familiar with \\u003Ca href=\\\"http://www.orgzly.com/\\\"\\u003EOrgzly\\u003C/a\\u003E. In this post, a friendly FAQ with it\\u0026#39;s creator, who was kind enough to answer a few questions. I also described how I work with it toward the end.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis read might be useful for anyone who uses Org-mode on the go, rather you\\u0026#39;re familiar with Orgzly or not. Let me know what you think :)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/\\\"\\u003Ehttps://joshrollinswrites.com/help-desk-head-desk/orgzly-neven-interview/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"byflyn\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JR121\", \"num_crossposts\": 0, \"num_comments\": 21, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/byflyn/orgzly_an_interview_with_the_creator/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1560047352.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Is it possible to get a quick org-agenda shown for just all the dates in the current org-buffer? I have too many little projects with their own org-documents, and usually I am only interested in what I need to do on the project I have right in front of me, not the default agenda files.\", \"author_fullname\": \"t2_68in0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Agenda for current buffer?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxwovd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559954023.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to get a quick org-agenda shown for just all the dates in the current org-buffer? I have too many little projects with their own org-documents, and usually I am only interested in what I need to do on the project I have right in front of me, not the default agenda files.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxwovd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"livrem\", \"num_crossposts\": 0, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxwovd/agenda_for_current_buffer/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1559925223.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"What are you up to wrt Emacs, Orgmode (in particular) or 'Getting Organized' in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\", \"author_fullname\": \"t2_6l4z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Weekly /r/Orgmode Open Discussion - June 07, 2019\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxu83g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559940568.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat are you up to wrt Emacs, Orgmode (in particular) or \\u0026#39;Getting Organized\\u0026#39; in general. Do you have any suggestions for improving this subreddit? Feel free to discuss whatever is on your mind. Keep the discussions relevant and civil.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": \"moderator\", \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxu83g\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"AutoModerator\", \"num_crossposts\": 0, \"num_comments\": 9, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxu83g/weekly_rorgmode_open_discussion_june_07_2019/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1559911768.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"I have [ob-mathematica](https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el) (which allows me to execute mathematica snippets via org-babel) combined with [wolfram-mode](https://github.com/kawabata/wolfram-mode) (which provides syntax highlighting).\\n\\nSo right now I have the conundrum that if I label an org-babel source block `mathematica`, then I can evaluate it via `C-c C-c` but without syntax highlighting. On the other hand, if I label the block `wolfram`, then I can no longer evaluate it, but I get source highlighting!\\n\\nHow do I combine these two to get the best of both worlds?\", \"author_fullname\": \"t2_uhm4h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Org-Babel Source Blocks: Combining ob-mathematica.el with wolfram-mode syntax highlighting\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bxooz7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 8, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 8, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559899393.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have \\u003Ca href=\\\"https://github.com/stuartsierra/org-mode/blob/master/contrib/lisp/ob-mathematica.el\\\"\\u003Eob-mathematica\\u003C/a\\u003E (which allows me to execute mathematica snippets via org-babel) combined with \\u003Ca href=\\\"https://github.com/kawabata/wolfram-mode\\\"\\u003Ewolfram-mode\\u003C/a\\u003E (which provides syntax highlighting).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo right now I have the conundrum that if I label an org-babel source block \\u003Ccode\\u003Emathematica\\u003C/code\\u003E, then I can evaluate it via \\u003Ccode\\u003EC-c C-c\\u003C/code\\u003E but without syntax highlighting. On the other hand, if I label the block \\u003Ccode\\u003Ewolfram\\u003C/code\\u003E, then I can no longer evaluate it, but I get source highlighting!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I combine these two to get the best of both worlds?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxooz7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"eeg_bert\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxooz7/orgbabel_source_blocks_combining_obmathematicael/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1559870593.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi everyone. Has anyone some hints on how to make helm`(org-refile)` case insensitive? E.g. I want to refile the current headline below `RubyBerlin/ToDo` (note the capital `D`). Typing the correct `\\\"Berlin/ToDo\\\"` will work and offer the headline to refile below:\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/6swhzzsmvp231.png\\n\\nBut typing the lower case version `\\\"Berlin/Todo\\\"` will only give results of headlines below the one I want to refile to:\\n\\n \\n\\nhttps://i.redd.it/9mlv6bxuvp231.png\\n\\nI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\", \"author_fullname\": \"t2_5cbr5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Case insensitive (org-refile)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"hide_score\": false, \"media_metadata\": {\"6swhzzsmvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 91, \"x\": 467, \"u\": \"https://i.redd.it/6swhzzsmvp231.png\"}, \"m\": \"image/png\", \"id\": \"6swhzzsmvp231\"}, \"9mlv6bxuvp231\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 124, \"x\": 692, \"u\": \"https://i.redd.it/9mlv6bxuvp231.png\"}, \"m\": \"image/png\", \"id\": \"9mlv6bxuvp231\"}}, \"name\": \"t3_bxfd1r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"solved\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559847398.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone. Has anyone some hints on how to make helm\\u003Ccode\\u003E(org-refile)\\u003C/code\\u003E case insensitive? E.g. I want to refile the current headline below \\u003Ccode\\u003ERubyBerlin/ToDo\\u003C/code\\u003E (note the capital \\u003Ccode\\u003ED\\u003C/code\\u003E). Typing the correct \\u003Ccode\\u003E\\u0026quot;Berlin/ToDo\\u0026quot;\\u003C/code\\u003E will work and offer the headline to refile below:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/6swhzzsmvp231.png\\\"\\u003Ehttps://i.redd.it/6swhzzsmvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut typing the lower case version \\u003Ccode\\u003E\\u0026quot;Berlin/Todo\\u0026quot;\\u003C/code\\u003E will only give results of headlines below the one I want to refile to:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/9mlv6bxuvp231.png\\\"\\u003Ehttps://i.redd.it/9mlv6bxuvp231.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cannot find anything useful in the customize section of helm or orgmode, so I am a bit lost.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"c9d42348-c2fd-11e8-930b-0e7aa5dddae4\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bxfd1r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"bascht\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bxfd1r/case_insensitive_orgrefile/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1559818598.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_j2fhy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Emacs Org Mode on my phone! (Synced with laptop)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwtuob\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 30, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 30, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1559710022.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwtuob\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thenackjicholson\", \"num_crossposts\": 0, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwtuob/emacs_org_mode_on_my_phone_synced_with_laptop/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/fldtyuwije231.png\", \"subreddit_subscribers\": 5084, \"created_utc\": 1559681222.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi guys,\\n\\nI would like to be able to preview inline images in Org-Mode without specifying its folder.\\n\\nFor instance, I would like to have `[[figurename.png]]` even tough the figure is in a folder named `figs`.\\n\\n\\u0026#x200B;\\n\\nRight now, I am using `#+LATEX_HEADER: \\\\graphicspath{{./figs/}}` and it is working good for LaTeX exports, but I don't have the nice preview in orgmode. Any idea how I could do that?\\n\\nThanks!\", \"author_fullname\": \"t2_6nzpkw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Default directory for inline images?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmraz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559669671.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to be able to preview inline images in Org-Mode without specifying its folder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor instance, I would like to have \\u003Ccode\\u003E[[figurename.png]]\\u003C/code\\u003E even tough the figure is in a folder named \\u003Ccode\\u003Efigs\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now, I am using \\u003Ccode\\u003E#+LATEX_HEADER: \\\\graphicspath{{./figs/}}\\u003C/code\\u003E and it is working good for LaTeX exports, but I don\\u0026#39;t have the nice preview in orgmode. Any idea how I could do that?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmraz\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"tdehaeze\", \"num_crossposts\": 0, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwmraz/default_directory_for_inline_images/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1559640871.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdoe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"emacs\", \"selftext\": \"Hi, \\n\\n\\u0026nbsp; \\n\\nSo I've started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\n\\n #+INCLUDE: \\\"./setup.org\\\"\\n #+INCLUDE: \\\"./cluster_maps.org\\\"\\n #+INCLUDE: \\\"./gene_selection.org\\\"\\n\\nIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\n\\n\\u0026nbsp;\\n\\nThanks for any ideas!\", \"author_fullname\": \"t2_mtyxz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you execute org-babel in #include: files?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/emacs\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwmdlj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 9, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 9, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559666138.0, \"link_flair_type\": \"text\", \"wls\": 6, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I\\u0026#39;ve started making quite large data analysis files in babel and org mode, as a result I move them into other files and do a lot of things like this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E#+INCLUDE: \\u0026quot;./setup.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./cluster_maps.org\\u0026quot;\\n#+INCLUDE: \\u0026quot;./gene_selection.org\\u0026quot;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs it possible to have org-babel run each of these in turn, normally I run in an interactive session, but sometimes I may need to restart and opening and running each in turn is a little cumbersome? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any ideas!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qhwu\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdlj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 1, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 31522, \"created_utc\": 1559637338.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}], \"created\": 1559666163.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.emacs\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwmdoe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SirSharpest\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_bwmdlj\", \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwmdoe/can_you_execute_orgbabel_in_include_files/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/emacs/comments/bwmdlj/can_you_execute_orgbabel_in_include_files/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1559637363.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"orgmode\", \"selftext\": \"Hi all, I'm trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is: \\n1. Find the contact (M-x org-contacts)\\n\\n2. Create link (C-c l)\\n\\n3. Go to task\\n\\n4. Insert link\\n\\nThis is not very good, I would like to know if there's a way to have my contacts links permanently stored on emacs, and if there's a easier way to insert a contact in a task.\\n\\nFor more information, the reason I want this is because sometimes I create tasks as: **Ping John about foo**, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\n\\nThanks for the help.\\n\\nPS: This is my config if it helps: [https://github.com/martini97/.emacs.d](https://github.com/martini97/.emacs.d)\", \"author_fullname\": \"t2_9eav0az\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Linking contacts to tasks\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/orgmode\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"hide_score\": false, \"name\": \"t3_bwk33h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1559648146.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.orgmode\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I\\u0026#39;m trying to link my contacts (stored in an org file with org-contact) in tasks, right now my flow is:\\u003Cbr/\\u003E\\n1. Find the contact (M-x org-contacts)\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ECreate link (C-c l)\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGo to task\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EInsert link\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThis is not very good, I would like to know if there\\u0026#39;s a way to have my contacts links permanently stored on emacs, and if there\\u0026#39;s a easier way to insert a contact in a task.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more information, the reason I want this is because sometimes I create tasks as: \\u003Cstrong\\u003EPing John about foo\\u003C/strong\\u003E, but when I get to it I might have forgotten which John it is, plus I will have to get his contact from somewhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for the help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: This is my config if it helps: \\u003Ca href=\\\"https://github.com/martini97/.emacs.d\\\"\\u003Ehttps://github.com/martini97/.emacs.d\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2s5ak\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"bwk33h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_martini97\", \"num_crossposts\": 0, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/orgmode/comments/bwk33h/linking_contacts_to_tasks/\", \"subreddit_subscribers\": 5084, \"created_utc\": 1559619346.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}], \"after\": \"t3_bwk33h\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["418232"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:09:59 GMT"], "x-ratelimit-remaining": ["592.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["8"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579399.067820,VS0,VE833"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["1"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100"}, "recorded_at": "2019-08-12T03:09:59"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_cohikz"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:10:00 GMT"], "x-ratelimit-remaining": ["599.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["1"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579400.983580,VS0,VE86"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["600"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/orgmode/new?raw_json=1&limit=100&before=t3_cohikz"}, "recorded_at": "2019-08-12T03:10:00"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cp3ojy\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmykt2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Eerebuss42\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1565563818.0, \"send_replies\": true, \"parent_id\": \"t3_cp3ojy\", \"score\": 1, \"author_fullname\": \"t2_2tqd6p7x\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\#header\", \"link_title\": \"#header Here is the question\", \"author_flair_css_class\": null, \"name\": \"t1_ewmykt2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#header\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cp3ojy/header_here_is_the_question/ewmykt2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cp3ojy/header_here_is_the_question/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cp3ojy/header_here_is_the_question/\", \"created\": 1565592618.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgi2um\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewmtjwm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"PorpForpz\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1565560172.0, \"send_replies\": true, \"parent_id\": \"t3_cgi2um\", \"score\": 1, \"author_fullname\": \"t2_hrox7fj\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Damn, it sucks this was removed. It was probably in my top 10 favorite creepypastas I've read. Its so interesting, the concept is facinating. I loved reading this a lot. You're a great writer and an incredibly creative person.\", \"link_title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ewmtjwm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDamn, it sucks this was removed. It was probably in my top 10 favorite creepypastas I\\u0026#39;ve read. Its so interesting, the concept is facinating. I loved reading this a lot. You\\u0026#39;re a great writer and an incredibly creative person.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/ewmtjwm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"report_reasons\": null, \"link_author\": \"airshrimp777\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"created\": 1565588972.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6f8k7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewjslyr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"redditspeedbot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565471368.0, \"send_replies\": true, \"parent_id\": \"t1_ewjsdli\", \"score\": 1, \"author_fullname\": \"t2_4amoxp50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Here is your video at 0.5x speed\\n\\nhttps://thumbs.gfycat.com/UnfinishedPoshArmyworm-mobile.mp4\\n\\n^(I'm a bot | Summon with) ^\\\"[/u/redditspeedbot](/u/redditspeedbot) ^\\u003Cspeed\\u003E\\\" ^| ^(Do report bugs) ^[here](https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026subject=RedditSpeedBot%20Issue)\", \"link_title\": \"Test Gif\", \"author_flair_css_class\": null, \"name\": \"t1_ewjslyr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is your video at 0.5x speed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://thumbs.gfycat.com/UnfinishedPoshArmyworm-mobile.mp4\\\"\\u003Ehttps://thumbs.gfycat.com/UnfinishedPoshArmyworm-mobile.mp4\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EI\\u0026#39;m a bot | Summon with\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026quot;\\u003Ca href=\\\"/u/redditspeedbot\\\"\\u003E/u/redditspeedbot\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026lt;speed\\u0026gt;\\u0026quot;\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Csup\\u003EDo report bugs\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026amp;subject=RedditSpeedBot%20Issue\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c6f8k7/test_gif/ewjslyr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c6f8k7/test_gif/\", \"report_reasons\": null, \"link_author\": \"5headedragon\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/2TWEKhO.gifv\", \"created\": 1565500168.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6f8k7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewjsdli\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adityakrshnn\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565471272.0, \"send_replies\": true, \"parent_id\": \"t3_c6f8k7\", \"score\": 1, \"author_fullname\": \"t2_ww3wa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"/u/redditspeedbot 0.5x butterflow\", \"link_title\": \"Test Gif\", \"author_flair_css_class\": null, \"name\": \"t1_ewjsdli\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/redditspeedbot\\\"\\u003E/u/redditspeedbot\\u003C/a\\u003E 0.5x butterflow\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c6f8k7/test_gif/ewjsdli/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c6f8k7/test_gif/\", \"report_reasons\": null, \"link_author\": \"5headedragon\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/2TWEKhO.gifv\", \"created\": 1565500072.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkb0kl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewjqqn5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"redditspeedbot\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1565470593.0, \"send_replies\": true, \"parent_id\": \"t1_ewjpob9\", \"score\": 1, \"author_fullname\": \"t2_4amoxp50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Here is your video at 0.75x speed\\n\\nhttps://thumbs.gfycat.com/ShrillFittingAtlanticspadefish-mobile.mp4\\n\\n^(I'm a bot | Summon with) ^\\\"[/u/redditspeedbot](/u/redditspeedbot) ^\\u003Cspeed\\u003E\\\" ^| ^(Do report bugs) ^[here](https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026subject=RedditSpeedBot%20Issue)\", \"link_title\": \"My first attempt at making a game in Godot! feedback appreciated and link to the game below.\", \"author_flair_css_class\": null, \"name\": \"t1_ewjqqn5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is your video at 0.75x speed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://thumbs.gfycat.com/ShrillFittingAtlanticspadefish-mobile.mp4\\\"\\u003Ehttps://thumbs.gfycat.com/ShrillFittingAtlanticspadefish-mobile.mp4\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EI\\u0026#39;m a bot | Summon with\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026quot;\\u003Ca href=\\\"/u/redditspeedbot\\\"\\u003E/u/redditspeedbot\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026lt;speed\\u0026gt;\\u0026quot;\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Csup\\u003EDo report bugs\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026amp;subject=RedditSpeedBot%20Issue\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/ewjqqn5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/\", \"report_reasons\": null, \"link_author\": \"raikkhan\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/6wliprr531w21\", \"created\": 1565499393.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkb0kl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewjpob9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adityakrshnn\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1565470144.0, \"send_replies\": true, \"parent_id\": \"t3_bkb0kl\", \"score\": 1, \"author_fullname\": \"t2_ww3wa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"/u/redditspeedbot 0.75x butterflow\", \"link_title\": \"My first attempt at making a game in Godot! feedback appreciated and link to the game below.\", \"author_flair_css_class\": null, \"name\": \"t1_ewjpob9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/redditspeedbot\\\"\\u003E/u/redditspeedbot\\u003C/a\\u003E 0.75x butterflow\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/ewjpob9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/\", \"report_reasons\": null, \"link_author\": \"raikkhan\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/6wliprr531w21\", \"created\": 1565498944.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c7tnu8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewiyvkb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"redditspeedbot\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565458875.0, \"send_replies\": true, \"parent_id\": \"t1_ewiyamj\", \"score\": 1, \"author_fullname\": \"t2_4amoxp50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Here is your video at 0.56x speed\\n\\nhttps://thumbs.gfycat.com/PreciousBlankGar-mobile.mp4\\n\\n^(I'm a bot | Summon with) ^\\\"\\\\u\\\\redditspeedbot ^\\u003Cspeed\\u003E\\\" ^| ^(Do report bugs) ^[here](https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026subject=RedditSpeedBot%20Issue)\", \"link_title\": \"Testing quality\", \"author_flair_css_class\": null, \"name\": \"t1_ewiyvkb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is your video at 0.56x speed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://thumbs.gfycat.com/PreciousBlankGar-mobile.mp4\\\"\\u003Ehttps://thumbs.gfycat.com/PreciousBlankGar-mobile.mp4\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EI\\u0026#39;m a bot | Summon with\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026quot;\\\\u\\\\redditspeedbot\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026lt;speed\\u0026gt;\\u0026quot;\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Csup\\u003EDo report bugs\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026amp;subject=RedditSpeedBot%20Issue\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c7tnu8/testing_quality/ewiyvkb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c7tnu8/testing_quality/\", \"report_reasons\": null, \"link_author\": \"SevrynHeads\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/iaziv0lyip731\", \"created\": 1565487675.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c7tnu8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewiyamj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adityakrshnn\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565458634.0, \"send_replies\": true, \"parent_id\": \"t3_c7tnu8\", \"score\": 1, \"author_fullname\": \"t2_ww3wa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"/u/redditspeedbot 0.55552827x\", \"link_title\": \"Testing quality\", \"author_flair_css_class\": null, \"name\": \"t1_ewiyamj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/redditspeedbot\\\"\\u003E/u/redditspeedbot\\u003C/a\\u003E 0.55552827x\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c7tnu8/testing_quality/ewiyamj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c7tnu8/testing_quality/\", \"report_reasons\": null, \"link_author\": \"SevrynHeads\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/iaziv0lyip731\", \"created\": 1565487434.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bn6inn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewiwngo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"redditspeedbot\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565457907.0, \"send_replies\": true, \"parent_id\": \"t1_ewiw1ir\", \"score\": 1, \"author_fullname\": \"t2_4amoxp50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Here is your video at 2.5x speed\\n\\nhttps://thumbs.gfycat.com/FaintLividBluemorphobutterfly-mobile.mp4\\n\\n^(I'm a bot | Summon with) ^\\\"\\\\u\\\\redditspeedbot ^\\u003Cspeed\\u003E\\\" ^| ^(Do report bugs) ^[here](https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026subject=RedditSpeedBot%20Issue)\", \"link_title\": \"Gif test 2\", \"author_flair_css_class\": null, \"name\": \"t1_ewiwngo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is your video at 2.5x speed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://thumbs.gfycat.com/FaintLividBluemorphobutterfly-mobile.mp4\\\"\\u003Ehttps://thumbs.gfycat.com/FaintLividBluemorphobutterfly-mobile.mp4\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EI\\u0026#39;m a bot | Summon with\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026quot;\\\\u\\\\redditspeedbot\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026lt;speed\\u0026gt;\\u0026quot;\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Csup\\u003EDo report bugs\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026amp;subject=RedditSpeedBot%20Issue\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bn6inn/gif_test_2/ewiwngo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bn6inn/gif_test_2/\", \"report_reasons\": null, \"link_author\": \"Fefolino\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/tm2kdh2ohhx21\", \"created\": 1565486707.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bn6inn\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewiw1ir\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adityakrshnn\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565457639.0, \"send_replies\": true, \"parent_id\": \"t3_bn6inn\", \"score\": 1, \"author_fullname\": \"t2_ww3wa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"/u/redditspeedbot 2.50x\", \"link_title\": \"Gif test 2\", \"author_flair_css_class\": null, \"name\": \"t1_ewiw1ir\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/redditspeedbot\\\"\\u003E/u/redditspeedbot\\u003C/a\\u003E 2.50x\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bn6inn/gif_test_2/ewiw1ir/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bn6inn/gif_test_2/\", \"report_reasons\": null, \"link_author\": \"Fefolino\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/tm2kdh2ohhx21\", \"created\": 1565486439.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkb0kl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewiq42c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"redditspeedbot\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1565454503.0, \"send_replies\": true, \"parent_id\": \"t1_ewipqbt\", \"score\": 1, \"author_fullname\": \"t2_4amoxp50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Here is your video at 5.25x speed\\n\\nhttps://thumbs.gfycat.com/HiddenEasygoingCapeghostfrog-mobile.mp4\\n\\n^(I'm a bot | Summon with) ^\\\"\\\\u\\\\redditspeedbot ^\\u003Cspeed\\u003E\\\" ^| ^(Do report bugs) ^[here](https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026subject=RedditSpeedBot%20Issue)\", \"link_title\": \"My first attempt at making a game in Godot! feedback appreciated and link to the game below.\", \"author_flair_css_class\": null, \"name\": \"t1_ewiq42c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is your video at 5.25x speed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://thumbs.gfycat.com/HiddenEasygoingCapeghostfrog-mobile.mp4\\\"\\u003Ehttps://thumbs.gfycat.com/HiddenEasygoingCapeghostfrog-mobile.mp4\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EI\\u0026#39;m a bot | Summon with\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026quot;\\\\u\\\\redditspeedbot\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026lt;speed\\u0026gt;\\u0026quot;\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Csup\\u003EDo report bugs\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026amp;subject=RedditSpeedBot%20Issue\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/ewiq42c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/\", \"report_reasons\": null, \"link_author\": \"raikkhan\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/6wliprr531w21\", \"created\": 1565483303.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bkb0kl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewipqbt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adityakrshnn\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1565454283.0, \"send_replies\": true, \"parent_id\": \"t3_bkb0kl\", \"score\": 1, \"author_fullname\": \"t2_ww3wa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"/u/redditspeedbot 5.25x\", \"link_title\": \"My first attempt at making a game in Godot! feedback appreciated and link to the game below.\", \"author_flair_css_class\": null, \"name\": \"t1_ewipqbt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/redditspeedbot\\\"\\u003E/u/redditspeedbot\\u003C/a\\u003E 5.25x\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/ewipqbt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bkb0kl/my_first_attempt_at_making_a_game_in_godot/\", \"report_reasons\": null, \"link_author\": \"raikkhan\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/6wliprr531w21\", \"created\": 1565483083.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cim6r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewinoqg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"redditspeedbot\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565453145.0, \"send_replies\": true, \"parent_id\": \"t1_ewimmx8\", \"score\": 1, \"author_fullname\": \"t2_4amoxp50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Here is your video at 10x speed\\n\\nhttps://thumbs.gfycat.com/DefensiveSkeletalBaleenwhale-mobile.mp4\\n\\n^(I'm a bot | Summon with) ^\\\"\\\\u\\\\redditspeedbot ^\\u003Cspeed\\u003E\\\" ^| ^(Do report bugs) ^[here](https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026subject=RedditSpeedBot%20Issue)\", \"link_title\": \"asazxxvc\", \"author_flair_css_class\": null, \"name\": \"t1_ewinoqg\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is your video at 10x speed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://thumbs.gfycat.com/DefensiveSkeletalBaleenwhale-mobile.mp4\\\"\\u003Ehttps://thumbs.gfycat.com/DefensiveSkeletalBaleenwhale-mobile.mp4\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EI\\u0026#39;m a bot | Summon with\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026quot;\\\\u\\\\redditspeedbot\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026lt;speed\\u0026gt;\\u0026quot;\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Csup\\u003EDo report bugs\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026amp;subject=RedditSpeedBot%20Issue\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cim6r2/asazxxvc/ewinoqg/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cim6r2/asazxxvc/\", \"report_reasons\": null, \"link_author\": \"plaiermeier\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/gvmq3sxxawc31\", \"created\": 1565481945.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cim6r2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewimmx8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adityakrshnn\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565452514.0, \"send_replies\": true, \"parent_id\": \"t3_cim6r2\", \"score\": 1, \"author_fullname\": \"t2_ww3wa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"/u/redditspeedbot 10x\", \"link_title\": \"asazxxvc\", \"author_flair_css_class\": null, \"name\": \"t1_ewimmx8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/redditspeedbot\\\"\\u003E/u/redditspeedbot\\u003C/a\\u003E 10x\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cim6r2/asazxxvc/ewimmx8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cim6r2/asazxxvc/\", \"report_reasons\": null, \"link_author\": \"plaiermeier\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/gvmq3sxxawc31\", \"created\": 1565481314.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6f8k7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewikyeq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"redditspeedbot\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565451485.0, \"send_replies\": true, \"parent_id\": \"t1_ewik39g\", \"score\": 1, \"author_fullname\": \"t2_4amoxp50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Here is your video at 0.1x speed\\n\\nhttps://thumbs.gfycat.com/ImpossibleGreatAcornbarnacle-mobile.mp4\\n\\n^(I'm a bot | Summon with) ^\\\"\\\\u\\\\redditspeedbot ^\\u003Cspeed\\u003E\\\" ^| ^(Do report bugs) ^[here](https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026subject=RedditSpeedBot%20Issue)\", \"link_title\": \"Test Gif\", \"author_flair_css_class\": null, \"name\": \"t1_ewikyeq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is your video at 0.1x speed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://thumbs.gfycat.com/ImpossibleGreatAcornbarnacle-mobile.mp4\\\"\\u003Ehttps://thumbs.gfycat.com/ImpossibleGreatAcornbarnacle-mobile.mp4\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EI\\u0026#39;m a bot | Summon with\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026quot;\\\\u\\\\redditspeedbot\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026lt;speed\\u0026gt;\\u0026quot;\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Csup\\u003EDo report bugs\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026amp;subject=RedditSpeedBot%20Issue\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c6f8k7/test_gif/ewikyeq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c6f8k7/test_gif/\", \"report_reasons\": null, \"link_author\": \"5headedragon\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/2TWEKhO.gifv\", \"created\": 1565480285.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_c6f8k7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewik39g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adityakrshnn\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1565450957.0, \"send_replies\": true, \"parent_id\": \"t3_c6f8k7\", \"score\": 1, \"author_fullname\": \"t2_ww3wa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"/u/redditspeedbot 0.1x\", \"link_title\": \"Test Gif\", \"author_flair_css_class\": null, \"name\": \"t1_ewik39g\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/redditspeedbot\\\"\\u003E/u/redditspeedbot\\u003C/a\\u003E 0.1x\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/c6f8k7/test_gif/ewik39g/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/c6f8k7/test_gif/\", \"report_reasons\": null, \"link_author\": \"5headedragon\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/2TWEKhO.gifv\", \"created\": 1565479757.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_b0tptl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewiiqff\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"redditspeedbot\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565450110.0, \"send_replies\": true, \"parent_id\": \"t1_ewigit6\", \"score\": 1, \"author_fullname\": \"t2_4amoxp50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Here is your video at 0.5x speed\\n\\nhttps://thumbs.gfycat.com/IncompleteSecondhandDoe-mobile.mp4\\n\\n^(I'm a bot | Summon with) ^\\\"\\\\u\\\\redditspeedbot ^\\u003Cspeed\\u003E\\\" ^| ^(Do report bugs) ^[here](https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026subject=RedditSpeedBot%20Issue)\", \"link_title\": \"\\\"Heavy\\\" Artillery ( \\u0361\\u00ba \\u035c\\u0296 \\u0361\\u00ba)\", \"author_flair_css_class\": null, \"name\": \"t1_ewiiqff\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is your video at 0.5x speed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://thumbs.gfycat.com/IncompleteSecondhandDoe-mobile.mp4\\\"\\u003Ehttps://thumbs.gfycat.com/IncompleteSecondhandDoe-mobile.mp4\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EI\\u0026#39;m a bot | Summon with\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026quot;\\\\u\\\\redditspeedbot\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026lt;speed\\u0026gt;\\u0026quot;\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Csup\\u003EDo report bugs\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026amp;subject=RedditSpeedBot%20Issue\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/b0tptl/heavy_artillery_\\u00ba_\\u0296_\\u00ba/ewiiqff/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/b0tptl/heavy_artillery_\\u00ba_\\u0296_\\u00ba/\", \"report_reasons\": null, \"link_author\": \"Dinky_Animator\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/lk9gam03czl21.gif\", \"created\": 1565478910.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_b0tptl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewigit6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"redditspeedbot\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1565448672.0, \"send_replies\": true, \"parent_id\": \"t3_b0tptl\", \"score\": 1, \"author_fullname\": \"t2_4amoxp50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"/u/redditspeedbot 0.5x\", \"link_title\": \"\\\"Heavy\\\" Artillery ( \\u0361\\u00ba \\u035c\\u0296 \\u0361\\u00ba)\", \"author_flair_css_class\": null, \"name\": \"t1_ewigit6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/redditspeedbot\\\"\\u003E/u/redditspeedbot\\u003C/a\\u003E 0.5x\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/b0tptl/heavy_artillery_\\u00ba_\\u0296_\\u00ba/ewigit6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/b0tptl/heavy_artillery_\\u00ba_\\u0296_\\u00ba/\", \"report_reasons\": null, \"link_author\": \"Dinky_Animator\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/lk9gam03czl21.gif\", \"created\": 1565477472.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cnt2re\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewiftmp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"adityakrshnn\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1565448218.0, \"send_replies\": true, \"parent_id\": \"t3_cnt2re\", \"score\": 1, \"author_fullname\": \"t2_ww3wa\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"/u/redditspeedbot 0.5x\", \"link_title\": \"Costa del Sol be like\", \"author_flair_css_class\": null, \"name\": \"t1_ewiftmp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/u/redditspeedbot\\\"\\u003E/u/redditspeedbot\\u003C/a\\u003E 0.5x\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cnt2re/costa_del_sol_be_like/ewiftmp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cnt2re/costa_del_sol_be_like/\", \"report_reasons\": null, \"link_author\": \"Pyrals\", \"author_flair_text\": null, \"link_url\": \"https://youtu.be/vU_oiaw1kmA\", \"created\": 1565477018.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_axrywh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewidy40\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"redditspeedbot\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1565446907.0, \"send_replies\": true, \"parent_id\": \"t1_ew4yakd\", \"score\": 1, \"author_fullname\": \"t2_4amoxp50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Here is your video at 2x speed\\n\\nhttps://thumbs.gfycat.com/AccomplishedLimpingBeaver-mobile.mp4\\n\\n^(I'm a bot | Summon with) ^\\\"\\\\u\\\\redditspeedbot ^\\u003Cspeed\\u003E\\\" ^| ^(Do report bugs) ^[here](https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026subject=RedditSpeedBot%20Issue)\", \"link_title\": \"I made this game where you're constantly shape shifting\", \"author_flair_css_class\": null, \"name\": \"t1_ewidy40\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is your video at 2x speed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://thumbs.gfycat.com/AccomplishedLimpingBeaver-mobile.mp4\\\"\\u003Ehttps://thumbs.gfycat.com/AccomplishedLimpingBeaver-mobile.mp4\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EI\\u0026#39;m a bot | Summon with\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026quot;\\\\u\\\\redditspeedbot\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026lt;speed\\u0026gt;\\u0026quot;\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Csup\\u003EDo report bugs\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026amp;subject=RedditSpeedBot%20Issue\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/axrywh/i_made_this_game_where_youre_constantly_shape/ewidy40/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/axrywh/i_made_this_game_where_youre_constantly_shape/\", \"report_reasons\": null, \"link_author\": \"Pimeko\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/4gr65ue80ek21\", \"created\": 1565475707.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgi2um\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewi2f1m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"KGB420\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1565435309.0, \"send_replies\": true, \"parent_id\": \"t3_cgi2um\", \"score\": 1, \"author_fullname\": \"t2_4c0xq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I don't read (or like) nosleep, so it doesn't surprise me that this was too good for them! I can tell that a lot of effort went into it, so a hearty **fuck you** goes out to their mods!\\n\\nSeeing as I don't read nosleep, am not a member of any VR discord groups, and never knew about *this* sub before today, it's pretty random that I even came across this story. But I'm glad that I did.\", \"link_title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ewi2f1m\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t read (or like) nosleep, so it doesn\\u0026#39;t surprise me that this was too good for them! I can tell that a lot of effort went into it, so a hearty \\u003Cstrong\\u003Efuck you\\u003C/strong\\u003E goes out to their mods!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESeeing as I don\\u0026#39;t read nosleep, am not a member of any VR discord groups, and never knew about \\u003Cem\\u003Ethis\\u003C/em\\u003E sub before today, it\\u0026#39;s pretty random that I even came across this story. But I\\u0026#39;m glad that I did.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/ewi2f1m/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"report_reasons\": null, \"link_author\": \"airshrimp777\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"created\": 1565464109.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565293771.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cnqvf0\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewd1bz1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"deathspawn\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1565293581.0, \"send_replies\": true, \"parent_id\": \"t3_cnqvf0\", \"score\": 2, \"author_fullname\": \"t2_5i48z\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"test^(1)^^(2)^^^(3)^^^^(4)^^^^^(5)\", \"link_title\": \"just testing some superscript\", \"author_flair_css_class\": null, \"name\": \"t1_ewd1bz1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003Csup\\u003E1\\u003C/sup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E2\\u003C/sup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E3\\u003C/sup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E4\\u003C/sup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E5\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cnqvf0/just_testing_some_superscript/ewd1bz1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cnqvf0/just_testing_some_superscript/\", \"report_reasons\": null, \"link_author\": \"deathspawn\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cnqvf0/just_testing_some_superscript/\", \"created\": 1565322381.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_axrywh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewcyr7v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"redditspeedbot\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1565292348.0, \"send_replies\": true, \"parent_id\": \"t1_ew4yakd\", \"score\": 1, \"author_fullname\": \"t2_4amoxp50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Here is your video at 2x speed\\n\\nhttps://thumbs.gfycat.com/PreciousDisloyalBluet-mobile.mp4\\n\\n^(I'm a bot | Summon with) ^\\\"\\\\u\\\\redditspeedbot ^\\u003Cspeed\\u003E\\\" ^| ^(Do report bugs) ^[here](https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026subject=RedditSpeedBot%20Issue)\", \"link_title\": \"I made this game where you're constantly shape shifting\", \"author_flair_css_class\": null, \"name\": \"t1_ewcyr7v\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is your video at 2x speed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://thumbs.gfycat.com/PreciousDisloyalBluet-mobile.mp4\\\"\\u003Ehttps://thumbs.gfycat.com/PreciousDisloyalBluet-mobile.mp4\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EI\\u0026#39;m a bot | Summon with\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026quot;\\\\u\\\\redditspeedbot\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026lt;speed\\u0026gt;\\u0026quot;\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Csup\\u003EDo report bugs\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026amp;subject=RedditSpeedBot%20Issue\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/axrywh/i_made_this_game_where_youre_constantly_shape/ewcyr7v/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/axrywh/i_made_this_game_where_youre_constantly_shape/\", \"report_reasons\": null, \"link_author\": \"Pimeko\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/4gr65ue80ek21\", \"created\": 1565321148.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cnjvg7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewbx26q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Tomas185\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1565273640.0, \"send_replies\": true, \"parent_id\": \"t3_cnjvg7\", \"score\": 1, \"author_fullname\": \"t2_t6gl0\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"This is my King Seiko 5625-7113. Produced in August 1974, this generation of King Seiko and Grand Seiko is seen as a 'last hurrah' for Seiko's high-end mechanical watchmaking practice before the quartz revolution kicked into overdrive.\\n\\nThis King Seiko is powered by the caliber 5625, a member of the 56 movement family from the Suwa division. Thoroughly advanced for its time, the 56KS features hacking, handwinding, quickset date (and quickset day for the day-date variant 5626), an integrated automatic winding mechanism for thinness (as opposed to the magic-lever system which typically thickens the movement), and a roughly 47 hour power reserve.\\n\\nDespite the 'Hi-Beat' moniker, the 56KS 'only' beats at 28,800 bph, slower than many earlier KS/GS 36,000 bph calibers. However it also means the 56KS has comparatively remained much more reliable and accurate over time, with the 28,800 bph inflicting much less wear than its sister 36,000 bph calibers. The automated nature of 56KS movement production (compared to labour-intensive production of earlier KS/GS calibers) has inadvertently made replacement movement parts comparatively more plentiful. As a result, King/Grand Seikos of the 56 movement family are not only generally found in better movement condition, but are also more easily repairable.\\n\\nUnlike earlier 56KS references which were characterised by their gold caseback medallions, later 56KS, like this one, reverted to a plain steel screw-down caseback. While the absence of the medallion may make the watch less distinct, it also removes the worry of having to find a KS with a good-condition medallion (assuming it hasn't already been removed/fallen off) and maintaining its condition.\\n\\nThe 5625-7113 is a pure distillation of Seiko's 'Grammar of Design', without the embellishment of some of it's Grand Seiko contemporaries. I'm an absolute sucker of this design philosophy; the flat polished surfaces, angular case/lug lines, countersunk bezel; I don't think my pictures do it quite enough justice. And being a vintage watch, the proportions are perfect for my wrist; 36mm diameter, 42mm lug-to-lug, 10mm thickness (including raised crystal). It took me awhile to find the right 56KS within my budget. It isn't scratched to hell and so the polishing is still apparent. But it also hasn't been overpolished and still retains its sharp case lines. The light-silver sunburst dial is free of staining, as are the hands and indices.\\n\\nIn the future, and if funds permit, I'd eventually like to nab some more vintage Grand Seikos. I'm particularly piqued by the GS 6145-8000 and GS 4522-8000. But suffice to say I'm still quite enamored by my current King Seiko.\", \"link_title\": \"[Seiko] King Seiko 5625-7113\", \"author_flair_css_class\": null, \"name\": \"t1_ewbx26q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is my King Seiko 5625-7113. Produced in August 1974, this generation of King Seiko and Grand Seiko is seen as a \\u0026#39;last hurrah\\u0026#39; for Seiko\\u0026#39;s high-end mechanical watchmaking practice before the quartz revolution kicked into overdrive.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis King Seiko is powered by the caliber 5625, a member of the 56 movement family from the Suwa division. Thoroughly advanced for its time, the 56KS features hacking, handwinding, quickset date (and quickset day for the day-date variant 5626), an integrated automatic winding mechanism for thinness (as opposed to the magic-lever system which typically thickens the movement), and a roughly 47 hour power reserve.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDespite the \\u0026#39;Hi-Beat\\u0026#39; moniker, the 56KS \\u0026#39;only\\u0026#39; beats at 28,800 bph, slower than many earlier KS/GS 36,000 bph calibers. However it also means the 56KS has comparatively remained much more reliable and accurate over time, with the 28,800 bph inflicting much less wear than its sister 36,000 bph calibers. The automated nature of 56KS movement production (compared to labour-intensive production of earlier KS/GS calibers) has inadvertently made replacement movement parts comparatively more plentiful. As a result, King/Grand Seikos of the 56 movement family are not only generally found in better movement condition, but are also more easily repairable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnlike earlier 56KS references which were characterised by their gold caseback medallions, later 56KS, like this one, reverted to a plain steel screw-down caseback. While the absence of the medallion may make the watch less distinct, it also removes the worry of having to find a KS with a good-condition medallion (assuming it hasn\\u0026#39;t already been removed/fallen off) and maintaining its condition.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe 5625-7113 is a pure distillation of Seiko\\u0026#39;s \\u0026#39;Grammar of Design\\u0026#39;, without the embellishment of some of it\\u0026#39;s Grand Seiko contemporaries. I\\u0026#39;m an absolute sucker of this design philosophy; the flat polished surfaces, angular case/lug lines, countersunk bezel; I don\\u0026#39;t think my pictures do it quite enough justice. And being a vintage watch, the proportions are perfect for my wrist; 36mm diameter, 42mm lug-to-lug, 10mm thickness (including raised crystal). It took me awhile to find the right 56KS within my budget. It isn\\u0026#39;t scratched to hell and so the polishing is still apparent. But it also hasn\\u0026#39;t been overpolished and still retains its sharp case lines. The light-silver sunburst dial is free of staining, as are the hands and indices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the future, and if funds permit, I\\u0026#39;d eventually like to nab some more vintage Grand Seikos. I\\u0026#39;m particularly piqued by the GS 6145-8000 and GS 4522-8000. But suffice to say I\\u0026#39;m still quite enamored by my current King Seiko.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cnjvg7/seiko_king_seiko_56257113/ewbx26q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cnjvg7/seiko_king_seiko_56257113/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/FDASoP1\", \"created\": 1565302440.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cnlsie\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewbr0hy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1565270997.0, \"send_replies\": true, \"parent_id\": \"t3_cnlsie\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/vXBgynC.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"s\", \"author_flair_css_class\": null, \"name\": \"t1_ewbr0hy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/vXBgynC.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cnlsie/s/ewbr0hy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cnlsie/s/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/vXBgynC.mp4\", \"created\": 1565299797.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cnbgy7\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ewauhud\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"onakaxy\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1565252178.0, \"send_replies\": true, \"parent_id\": \"t3_cnbgy7\", \"score\": 1, \"author_fullname\": \"t2_mgnq6\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Nice\", \"link_title\": \"f\", \"author_flair_css_class\": null, \"name\": \"t1_ewauhud\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cnbgy7/f/ewauhud/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cnbgy7/f/\", \"report_reasons\": null, \"link_author\": \"apexjnr\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cnbgy7/f/\", \"created\": 1565280978.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cn8iaa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew81vz8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ansuhre\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1565201674.0, \"send_replies\": true, \"parent_id\": \"t3_cn8iaa\", \"score\": 1, \"author_fullname\": \"t2_32ezs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Column A | Column B\\n---------|----------\\nA1 | B1\\nA2 | B2\", \"link_title\": \"Let's see\", \"author_flair_css_class\": null, \"name\": \"t1_ew81vz8\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EColumn A\\u003C/th\\u003E\\n\\u003Cth\\u003EColumn B\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EA1\\u003C/td\\u003E\\n\\u003Ctd\\u003EB1\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EA2\\u003C/td\\u003E\\n\\u003Ctd\\u003EB2\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cn8iaa/lets_see/ew81vz8/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cn8iaa/lets_see/\", \"report_reasons\": null, \"link_author\": \"Markyloko\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cn8iaa/lets_see/\", \"created\": 1565230474.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cn8iaa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew81upe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"ansuhre\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1565201652.0, \"send_replies\": true, \"parent_id\": \"t3_cn8iaa\", \"score\": 1, \"author_fullname\": \"t2_32ezs\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Column A | Column B | Column C\\n---------|----------|----------\\nA1 | B1 | C1\\nA2 | B2 | C2\", \"link_title\": \"Let's see\", \"author_flair_css_class\": null, \"name\": \"t1_ew81upe\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003EColumn A\\u003C/th\\u003E\\n\\u003Cth\\u003EColumn B\\u003C/th\\u003E\\n\\u003Cth\\u003EColumn C\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EA1\\u003C/td\\u003E\\n\\u003Ctd\\u003EB1\\u003C/td\\u003E\\n\\u003Ctd\\u003EC1\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EA2\\u003C/td\\u003E\\n\\u003Ctd\\u003EB2\\u003C/td\\u003E\\n\\u003Ctd\\u003EC2\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cn8iaa/lets_see/ew81upe/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cn8iaa/lets_see/\", \"report_reasons\": null, \"link_author\": \"Markyloko\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cn8iaa/lets_see/\", \"created\": 1565230452.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cn8iaa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew7uxlu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Markyloko\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1565197681.0, \"send_replies\": true, \"parent_id\": \"t3_cn8iaa\", \"score\": 1, \"author_fullname\": \"t2_xxrf9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"ok great\", \"link_title\": \"Let's see\", \"author_flair_css_class\": null, \"name\": \"t1_ew7uxlu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eok great\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cn8iaa/lets_see/ew7uxlu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cn8iaa/lets_see/\", \"report_reasons\": null, \"link_author\": \"Markyloko\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cn8iaa/lets_see/\", \"created\": 1565226481.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_axrywh\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew4yke9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"redditspeedbot\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1565121808.0, \"send_replies\": true, \"parent_id\": \"t1_ew4yakd\", \"score\": 1, \"author_fullname\": \"t2_4amoxp50\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Here is your video at 2x speed\\n\\nhttps://thumbs.gfycat.com/PreciousDisloyalBluet-mobile.mp4\\n\\n^(I'm a bot | Summon with) ^\\\"\\\\u\\\\redditspeedbot ^\\u003Cspeed\\u003E\\\" ^| ^(Do report bugs) ^[here](https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026subject=RedditSpeedBot%20Issue)\", \"link_title\": \"I made this game where you're constantly shape shifting\", \"author_flair_css_class\": null, \"name\": \"t1_ew4yke9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHere is your video at 2x speed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://thumbs.gfycat.com/PreciousDisloyalBluet-mobile.mp4\\\"\\u003Ehttps://thumbs.gfycat.com/PreciousDisloyalBluet-mobile.mp4\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EI\\u0026#39;m a bot | Summon with\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026quot;\\\\u\\\\redditspeedbot\\u003C/sup\\u003E \\u003Csup\\u003E\\u0026lt;speed\\u0026gt;\\u0026quot;\\u003C/sup\\u003E \\u003Csup\\u003E|\\u003C/sup\\u003E \\u003Csup\\u003EDo report bugs\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/message/compose/?to=adityakrshnn\\u0026amp;subject=RedditSpeedBot%20Issue\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/axrywh/i_made_this_game_where_youre_constantly_shape/ew4yke9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/axrywh/i_made_this_game_where_youre_constantly_shape/\", \"report_reasons\": null, \"link_author\": \"Pimeko\", \"author_flair_text\": null, \"link_url\": \"https://v.redd.it/4gr65ue80ek21\", \"created\": 1565150608.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgi2um\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ew1kwb2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"jbl0624\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1565025623.0, \"send_replies\": true, \"parent_id\": \"t1_ev1ogmn\", \"score\": 1, \"author_fullname\": \"t2_12e9yt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Wasn't believable enough? Compared to many other nosleep stories I've read? Give me a break. Anyway, I'm glad I found this story. It was a great read, thanks!\", \"link_title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ew1kwb2\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWasn\\u0026#39;t believable enough? Compared to many other nosleep stories I\\u0026#39;ve read? Give me a break. Anyway, I\\u0026#39;m glad I found this story. It was a great read, thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/ew1kwb2/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"report_reasons\": null, \"link_author\": \"airshrimp777\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"created\": 1565054423.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1564866095.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnfr5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwj6zb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cognitivetriad\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1564865458.0, \"send_replies\": true, \"parent_id\": \"t3_clnfr5\", \"score\": 1, \"author_fullname\": \"t2_11aj7i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"***\\u003E!^a ^majestic creature!\\u003C***\", \"link_title\": \"***test***\", \"author_flair_css_class\": null, \"name\": \"t1_evwj6zb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003E\\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Emajestic\\u003C/sup\\u003E creature\\u003C/span\\u003E\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/clnfr5/test/evwj6zb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"report_reasons\": null, \"link_author\": \"cognitivetriad\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"created\": 1564894258.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1564866242.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnfr5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwj4r7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cognitivetriad\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1564865412.0, \"send_replies\": true, \"parent_id\": \"t3_clnfr5\", \"score\": 1, \"author_fullname\": \"t2_11aj7i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E!^**23** ^**45** **67**!\\u003C\", \"link_title\": \"***test***\", \"author_flair_css_class\": null, \"name\": \"t1_evwj4r7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003E\\u003Csup\\u003E\\u003Cstrong\\u003E23\\u003C/strong\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Cstrong\\u003E45\\u003C/strong\\u003E\\u003C/sup\\u003E \\u003Cstrong\\u003E67\\u003C/strong\\u003E\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/clnfr5/test/evwj4r7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"report_reasons\": null, \"link_author\": \"cognitivetriad\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"created\": 1564894212.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1564866414.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnfr5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwj0bp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cognitivetriad\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1564865325.0, \"send_replies\": true, \"parent_id\": \"t3_clnfr5\", \"score\": 1, \"author_fullname\": \"t2_11aj7i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E!^**palor** ^**tricks** **wow**!\\u003C\", \"link_title\": \"***test***\", \"author_flair_css_class\": null, \"name\": \"t1_evwj0bp\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003E\\u003Csup\\u003E\\u003Cstrong\\u003Epalor\\u003C/strong\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Cstrong\\u003Etricks\\u003C/strong\\u003E\\u003C/sup\\u003E \\u003Cstrong\\u003Ewow\\u003C/strong\\u003E\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/clnfr5/test/evwj0bp/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"report_reasons\": null, \"link_author\": \"cognitivetriad\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"created\": 1564894125.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1564865742.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnfr5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwixsh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cognitivetriad\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1564865274.0, \"send_replies\": true, \"parent_id\": \"t1_evwinr3\", \"score\": 1, \"author_fullname\": \"t2_11aj7i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"^***a*** ^***majestic*** ^***creature***\", \"link_title\": \"***test***\", \"author_flair_css_class\": null, \"name\": \"t1_evwixsh\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Csup\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003Ea\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003Emajestic\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003Ecreature\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/clnfr5/test/evwixsh/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"report_reasons\": null, \"link_author\": \"cognitivetriad\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"created\": 1564894074.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1564865775.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnfr5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwiug1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cognitivetriad\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1564865206.0, \"send_replies\": true, \"parent_id\": \"t1_evwinr3\", \"score\": 1, \"author_fullname\": \"t2_11aj7i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"^***a***\", \"link_title\": \"***test***\", \"author_flair_css_class\": null, \"name\": \"t1_evwiug1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Csup\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003Ea\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/clnfr5/test/evwiug1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"report_reasons\": null, \"link_author\": \"cognitivetriad\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"created\": 1564894006.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnfr5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwirfc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cognitivetriad\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1564865143.0, \"send_replies\": true, \"parent_id\": \"t1_evwinr3\", \"score\": 1, \"author_fullname\": \"t2_11aj7i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"^wading ^in ^the ^ocean\", \"link_title\": \"***test***\", \"author_flair_css_class\": null, \"name\": \"t1_evwirfc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Csup\\u003Ewading\\u003C/sup\\u003E \\u003Csup\\u003Ein\\u003C/sup\\u003E \\u003Csup\\u003Ethe\\u003C/sup\\u003E \\u003Csup\\u003Eocean\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/clnfr5/test/evwirfc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"report_reasons\": null, \"link_author\": \"cognitivetriad\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"created\": 1564893943.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1564865860.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnfr5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwinr3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cognitivetriad\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1564865068.0, \"send_replies\": true, \"parent_id\": \"t3_clnfr5\", \"score\": 1, \"author_fullname\": \"t2_11aj7i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E!Sea water in your Unicorn!\\u003C\\n\\n^wading in the ocean\\n\\n^I saw a beautiful sight\\n\\n^**a** ^**majestic** ^**creature**\", \"link_title\": \"***test***\", \"author_flair_css_class\": null, \"name\": \"t1_evwinr3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003ESea water in your Unicorn\\u003C/span\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003Ewading\\u003C/sup\\u003E in the ocean\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E saw a beautiful sight\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\u003Cstrong\\u003Ea\\u003C/strong\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Cstrong\\u003Emajestic\\u003C/strong\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Cstrong\\u003Ecreature\\u003C/strong\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/clnfr5/test/evwinr3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"report_reasons\": null, \"link_author\": \"cognitivetriad\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"created\": 1564893868.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnfr5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwi623\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cognitivetriad\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1564864709.0, \"send_replies\": true, \"parent_id\": \"t3_clnfr5\", \"score\": 1, \"author_fullname\": \"t2_11aj7i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E!howdy!\\u003C\", \"link_title\": \"***test***\", \"author_flair_css_class\": null, \"name\": \"t1_evwi623\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003Ehowdy\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/clnfr5/test/evwi623/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"report_reasons\": null, \"link_author\": \"cognitivetriad\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"created\": 1564893509.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnfr5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwhryd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cognitivetriad\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1564864425.0, \"send_replies\": true, \"parent_id\": \"t3_clnfr5\", \"score\": 1, \"author_fullname\": \"t2_11aj7i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"***ta daaa***\", \"link_title\": \"***test***\", \"author_flair_css_class\": null, \"name\": \"t1_evwhryd\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003Eta daaa\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/clnfr5/test/evwhryd/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"report_reasons\": null, \"link_author\": \"cognitivetriad\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"created\": 1564893225.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnfr5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwhmn1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cognitivetriad\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1564864317.0, \"send_replies\": true, \"parent_id\": \"t3_clnfr5\", \"score\": 1, \"author_fullname\": \"t2_11aj7i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003Eblah\", \"link_title\": \"***test***\", \"author_flair_css_class\": null, \"name\": \"t1_evwhmn1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eblah\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/clnfr5/test/evwhmn1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"report_reasons\": null, \"link_author\": \"cognitivetriad\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"created\": 1564893117.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clnfr5\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evwhkx9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"cognitivetriad\", \"num_comments\": 11, \"can_mod_post\": false, \"created_utc\": 1564864282.0, \"send_replies\": true, \"parent_id\": \"t3_clnfr5\", \"score\": 1, \"author_fullname\": \"t2_11aj7i\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Blah^blah\", \"link_title\": \"***test***\", \"author_flair_css_class\": null, \"name\": \"t1_evwhkx9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBlah\\u003Csup\\u003Eblah\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/clnfr5/test/evwhkx9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"report_reasons\": null, \"link_author\": \"cognitivetriad\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"created\": 1564893082.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_clfx7c\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evv2ak4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1564815904.0, \"send_replies\": true, \"parent_id\": \"t3_clfx7c\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/cdg6n0z.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_evv2ak4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/cdg6n0z.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/clfx7c/test/evv2ak4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/clfx7c/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/4y5nrMf\", \"created\": 1564844704.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cl0xwu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evs5ruu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"w33dcup\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1564731235.0, \"send_replies\": true, \"parent_id\": \"t3_cl0xwu\", \"score\": 1, \"author_fullname\": \"t2_13n0z3\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"So that didn't work. Not sure why.\", \"link_title\": \"Using html to post a table based on [Daring Fireball](https://daringfireball.net/projects/markdown/syntax) markdown syntax\", \"author_flair_css_class\": null, \"name\": \"t1_evs5ruu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo that didn\\u0026#39;t work. Not sure why.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cl0xwu/using_html_to_post_a_table_based_on_daring/evs5ruu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cl0xwu/using_html_to_post_a_table_based_on_daring/\", \"report_reasons\": null, \"link_author\": \"w33dcup\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cl0xwu/using_html_to_post_a_table_based_on_daring/\", \"created\": 1564760035.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ckbcq2\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evlcspi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"CommonLouis\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1564593136.0, \"send_replies\": true, \"parent_id\": \"t3_ckbcq2\", \"score\": 1, \"author_fullname\": \"t2_2sn2snnd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"OS: Debian Buster \\nDE: KDE Plasma 5.14.5 \\nDock: Latte ([https://github.com/KDE/latte-dock](https://github.com/KDE/latte-dock)) with Dock and TopBar layout ([https://store.kde.org/p/1221421/](https://store.kde.org/p/1221421/)) \\nPlasma Theme: Sweet Dark ([https://store.kde.org/p/1294174/](https://store.kde.org/p/1294174/)) \\nIcons: Numix Circle ([https://github.com/numixproject/numix-icon-theme-circle](https://github.com/numixproject/numix-icon-theme-circle)) \\nCursor: PearDark ([https://store.kde.org/p/1312474](https://store.kde.org/p/1312474)) \\nWallpaper: Division II by Justin Maller ([http://www.facets.la/2014/339/](http://www.facets.la/2014/339/)) \\nLaunchers (left to right): konsole chrome firefox-esr dolphin speedcrunch system\\\\_settings steam texstudio libreoffice mpv micro kodi vim vscode retroarch discord google\\\\_keep kmail android\\\\_messages anki virtualbox\", \"link_title\": \"First 4 weeks of Linux!\", \"author_flair_css_class\": null, \"name\": \"t1_evlcspi\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOS: Debian Buster\\u003Cbr/\\u003E\\nDE: KDE Plasma 5.14.5\\u003Cbr/\\u003E\\nDock: Latte (\\u003Ca href=\\\"https://github.com/KDE/latte-dock\\\"\\u003Ehttps://github.com/KDE/latte-dock\\u003C/a\\u003E) with Dock and TopBar layout (\\u003Ca href=\\\"https://store.kde.org/p/1221421/\\\"\\u003Ehttps://store.kde.org/p/1221421/\\u003C/a\\u003E)\\u003Cbr/\\u003E\\nPlasma Theme: Sweet Dark (\\u003Ca href=\\\"https://store.kde.org/p/1294174/\\\"\\u003Ehttps://store.kde.org/p/1294174/\\u003C/a\\u003E)\\u003Cbr/\\u003E\\nIcons: Numix Circle (\\u003Ca href=\\\"https://github.com/numixproject/numix-icon-theme-circle\\\"\\u003Ehttps://github.com/numixproject/numix-icon-theme-circle\\u003C/a\\u003E)\\u003Cbr/\\u003E\\nCursor: PearDark (\\u003Ca href=\\\"https://store.kde.org/p/1312474\\\"\\u003Ehttps://store.kde.org/p/1312474\\u003C/a\\u003E)\\u003Cbr/\\u003E\\nWallpaper: Division II by Justin Maller (\\u003Ca href=\\\"http://www.facets.la/2014/339/\\\"\\u003Ehttp://www.facets.la/2014/339/\\u003C/a\\u003E)\\u003Cbr/\\u003E\\nLaunchers (left to right): konsole chrome firefox-esr dolphin speedcrunch system_settings steam texstudio libreoffice mpv micro kodi vim vscode retroarch discord google_keep kmail android_messages anki virtualbox\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ckbcq2/first_4_weeks_of_linux/evlcspi/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ckbcq2/first_4_weeks_of_linux/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://i.imgur.com/FnYDhF7.jpg\", \"created\": 1564621936.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1565316728.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cch6mi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evksnzq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WolfInArms\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1564585869.0, \"send_replies\": true, \"parent_id\": \"t3_cch6mi\", \"score\": 1, \"author_fullname\": \"t2_pw206\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"So the Texas National Guard loaned a total of two M1A1 Abrams tanks, ten [Bradley IFVs](https://cdn.historycollection.co/wp-content/uploads/2017/06/waco-siege.-bizarrepedia.jpg), four [M728 Combat Engineering Vehicles](https://westernrifleshooters.files.wordpress.com/2014/04/m728-cev-waco.jpg), and a single [M88 Hercules ARV](http://www.military-today.com/engineering/m88.jpg) to the FBI - all of which had their weapons systems disarmed before they were transferred over. I couldn't find evidence of what the Abrams tanks were used for, but the Bradleys were used to transport FBI agents to the Davidian compound for meetings and to fire CS gas canisters into the building. The CEVs and the ARV were used to ram the building and make holes in it for the insertion of CS gas canisters.\", \"link_title\": \"Test Table Formating\", \"author_flair_css_class\": null, \"name\": \"t1_evksnzq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo the Texas National Guard loaned a total of two M1A1 Abrams tanks, ten \\u003Ca href=\\\"https://cdn.historycollection.co/wp-content/uploads/2017/06/waco-siege.-bizarrepedia.jpg\\\"\\u003EBradley IFVs\\u003C/a\\u003E, four \\u003Ca href=\\\"https://westernrifleshooters.files.wordpress.com/2014/04/m728-cev-waco.jpg\\\"\\u003EM728 Combat Engineering Vehicles\\u003C/a\\u003E, and a single \\u003Ca href=\\\"http://www.military-today.com/engineering/m88.jpg\\\"\\u003EM88 Hercules ARV\\u003C/a\\u003E to the FBI - all of which had their weapons systems disarmed before they were transferred over. I couldn\\u0026#39;t find evidence of what the Abrams tanks were used for, but the Bradleys were used to transport FBI agents to the Davidian compound for meetings and to fire CS gas canisters into the building. The CEVs and the ARV were used to ram the building and make holes in it for the insertion of CS gas canisters.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cch6mi/test_table_formating/evksnzq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cch6mi/test_table_formating/\", \"report_reasons\": null, \"link_author\": \"WolfInArms\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cch6mi/test_table_formating/\", \"created\": 1564614669.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cjwc32\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evh0jkk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"77eagles77floyd77\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1564518661.0, \"send_replies\": true, \"parent_id\": \"t3_cjwc32\", \"score\": 2, \"author_fullname\": \"t2_1ahyf3ut\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"mods ban pls\", \"link_title\": \"Zionist Mind Control Through Pornography\", \"author_flair_css_class\": null, \"name\": \"t1_evh0jkk\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emods ban pls\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cjwc32/zionist_mind_control_through_pornography/evh0jkk/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cjwc32/zionist_mind_control_through_pornography/\", \"report_reasons\": null, \"link_author\": \"WinstonAltSmith\", \"author_flair_text\": null, \"link_url\": \"https://www.altcensored.com/embed/IVr1kfQH20Y\", \"created\": 1564547461.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cjitlb\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evgl46h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WinstonAltSmith\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1564511954.0, \"send_replies\": true, \"parent_id\": \"t3_cjitlb\", \"score\": 1, \"author_fullname\": \"t2_49nv3gz8\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"tesdting reply, please ignore , testes 1,2, 3\\n\\n\\u0026#x200B;\\n\\n [https://www.altcensored.com/watch?v=IVr1kfQH20Y](https://www.altcensored.com/watch?v=IVr1kfQH20Y)\", \"link_title\": \"p1 and p2\", \"author_flair_css_class\": null, \"name\": \"t1_evgl46h\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etesdting reply, please ignore , testes 1,2, 3\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.altcensored.com/watch?v=IVr1kfQH20Y\\\"\\u003Ehttps://www.altcensored.com/watch?v=IVr1kfQH20Y\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cjitlb/p1_and_p2/evgl46h/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cjitlb/p1_and_p2/\", \"report_reasons\": null, \"link_author\": \"jordan_fluffystar\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cjitlb/p1_and_p2/\", \"created\": 1564540754.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cj8hsd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"evbzypn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"noahcwb\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1564401851.0, \"send_replies\": true, \"parent_id\": \"t3_cj8hsd\", \"score\": 1, \"author_fullname\": \"t2_6h8ny\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"So when i shot this (10+ months ago) and i rolled the film back in the canister, it felt like i had only shot a quarter of the roll. So i decided to use the roll to test and see if my chemistry still has life. I wasn't very careful with temperatures and the development. I was pretty happy to see actual images so i did a quick and dirty scan. They have that \\\"lomo\\\" look, but I'm pretty happy!\", \"link_title\": \"Old Kona town. [kodak duaflex ii - lomo 100]\", \"author_flair_css_class\": null, \"name\": \"t1_evbzypn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo when i shot this (10+ months ago) and i rolled the film back in the canister, it felt like i had only shot a quarter of the roll. So i decided to use the roll to test and see if my chemistry still has life. I wasn\\u0026#39;t very careful with temperatures and the development. I was pretty happy to see actual images so i did a quick and dirty scan. They have that \\u0026quot;lomo\\u0026quot; look, but I\\u0026#39;m pretty happy!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cj8hsd/old_kona_town_kodak_duaflex_ii_lomo_100/evbzypn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cj8hsd/old_kona_town_kodak_duaflex_ii_lomo_100/\", \"report_reasons\": null, \"link_author\": \"noahcwb\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/gallery/EHpzq2E\", \"created\": 1564430651.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cixtbx\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev9tkjb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1564330911.0, \"send_replies\": true, \"parent_id\": \"t3_cixtbx\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/z0ePRrO.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"Making of our 2D water reflections\", \"author_flair_css_class\": null, \"name\": \"t1_ev9tkjb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/z0ePRrO.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cixtbx/making_of_our_2d_water_reflections/ev9tkjb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cixtbx/making_of_our_2d_water_reflections/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/2cKxVZv\", \"created\": 1564359711.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgi2um\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev5pg39\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"br_izgr8_2k17\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1564237094.0, \"send_replies\": true, \"parent_id\": \"t3_cgi2um\", \"score\": 1, \"author_fullname\": \"t2_hgxvsn9\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Great story! Couldn't put my phone down til I found out how it ended. Let us know if you have any others.\", \"link_title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ev5pg39\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreat story! Couldn\\u0026#39;t put my phone down til I found out how it ended. Let us know if you have any others.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/ev5pg39/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"report_reasons\": null, \"link_author\": \"airshrimp777\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"created\": 1564265894.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ci8cee\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev3hdsl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"77eagles77floyd77\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1564195113.0, \"send_replies\": true, \"parent_id\": \"t3_ci8cee\", \"score\": 1, \"author_fullname\": \"t2_1ahyf3ut\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"top tuer post!!!!!!!!!!!1111111\", \"link_title\": \"Mueller Unravels! Cringe Worthy Testimony Exposes Russiagate Hoax!\", \"author_flair_css_class\": null, \"name\": \"t1_ev3hdsl\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etop tuer post!!!!!!!!!!!1111111\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ci8cee/mueller_unravels_cringe_worthy_testimony_exposes/ev3hdsl/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ci8cee/mueller_unravels_cringe_worthy_testimony_exposes/\", \"report_reasons\": null, \"link_author\": \"godjuul\", \"author_flair_text\": null, \"link_url\": \"https://www.youtube.com/watch?v=WOQXOV0PHL4\", \"created\": 1564223913.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ciabn8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev2vhe6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1564184427.0, \"send_replies\": true, \"parent_id\": \"t3_ciabn8\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/KYaGCw1.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"[] City\", \"author_flair_css_class\": null, \"name\": \"t1_ev2vhe6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/KYaGCw1.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ciabn8/city/ev2vhe6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ciabn8/city/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/a/4pSjoUu\", \"created\": 1564213227.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgi2um\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev1ogmn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"airshrimp777\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1564162458.0, \"send_replies\": true, \"parent_id\": \"t1_euzqsbq\", \"score\": 1, \"author_fullname\": \"t2_elw3c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Thanks so much for the kind words. I'm happy people are still able to find and enjoy this story. As long as this tale doesn't go to waste, I'm happy.\\n\\nNo Sleep just isn't the place it used to be. I got banned permanently after a spat with the mods. I broke the rules to call them out for removing this story for the stupidest reason (they decided what MY story was about and said it wasn't believable enough).\\n\\nStill, as long as folks still see it somewhere, I'm happy.\", \"link_title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_ev1ogmn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks so much for the kind words. I\\u0026#39;m happy people are still able to find and enjoy this story. As long as this tale doesn\\u0026#39;t go to waste, I\\u0026#39;m happy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo Sleep just isn\\u0026#39;t the place it used to be. I got banned permanently after a spat with the mods. I broke the rules to call them out for removing this story for the stupidest reason (they decided what MY story was about and said it wasn\\u0026#39;t believable enough).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStill, as long as folks still see it somewhere, I\\u0026#39;m happy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/ev1ogmn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"report_reasons\": null, \"link_author\": \"airshrimp777\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"created\": 1564191258.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_chzdkd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev0vhtj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"nightcookieman\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1564147407.0, \"send_replies\": true, \"parent_id\": \"t1_euznl85\", \"score\": 1, \"author_fullname\": \"t2_19t82t8f\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I'm not sure, I got a bot response that led me here. I'm always lost in the posting rules of reddit.\", \"link_title\": \"When developing side-projects (x-post from r/2meirl4meirl)\", \"author_flair_css_class\": null, \"name\": \"t1_ev0vhtj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not sure, I got a bot response that led me here. I\\u0026#39;m always lost in the posting rules of reddit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/chzdkd/when_developing_sideprojects_xpost_from/ev0vhtj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/chzdkd/when_developing_sideprojects_xpost_from/\", \"report_reasons\": null, \"link_author\": \"iamsl4v\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/2meirl4meirl/comments/chr6pj/2meirl4meirl/\", \"created\": 1564176207.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ch1nbm\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ev083y6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"oXtC\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1564133479.0, \"send_replies\": true, \"parent_id\": \"t3_ch1nbm\", \"score\": 1, \"author_fullname\": \"t2_iuonc\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Beastyy PC\", \"link_title\": \"testing\", \"author_flair_css_class\": null, \"name\": \"t1_ev083y6\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBeastyy PC\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ch1nbm/testing/ev083y6/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ch1nbm/testing/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/ch1nbm/testing/\", \"created\": 1564162279.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgi2um\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"euzqsbq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"TheButchPrincess\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1564124660.0, \"send_replies\": true, \"parent_id\": \"t1_euyvhvu\", \"score\": 1, \"author_fullname\": \"t2_sibbu\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I had opened your original post in another tab, skimmed it, decided I needed to read when I had more attention span. Remembered later and IT WAS GONE! It's an absolutely excellent cursed/haunted item story. Saw your reply about feeling it start to move and AHHHH! I want more.\\n\\n\\u0026#x200B;\\n\\nMy theory is that you freed the last guy by putting it on.\\n\\n\\u0026#x200B;\\n\\nAnyway, excellent work, shame about /nosleep .\", \"link_title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_euzqsbq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI had opened your original post in another tab, skimmed it, decided I needed to read when I had more attention span. Remembered later and IT WAS GONE! It\\u0026#39;s an absolutely excellent cursed/haunted item story. Saw your reply about feeling it start to move and AHHHH! I want more.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy theory is that you freed the last guy by putting it on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyway, excellent work, shame about /nosleep .\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/euzqsbq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"report_reasons\": null, \"link_author\": \"airshrimp777\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"created\": 1564153460.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_chzdkd\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"euznl85\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"iamsl4v\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1564123052.0, \"send_replies\": true, \"parent_id\": \"t3_chzdkd\", \"score\": 1, \"author_fullname\": \"t2_2q57o62g\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"wtf how do cross post\", \"link_title\": \"When developing side-projects (x-post from r/2meirl4meirl)\", \"author_flair_css_class\": null, \"name\": \"t1_euznl85\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewtf how do cross post\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/chzdkd/when_developing_sideprojects_xpost_from/euznl85/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/chzdkd/when_developing_sideprojects_xpost_from/\", \"report_reasons\": null, \"link_author\": \"iamsl4v\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/2meirl4meirl/comments/chr6pj/2meirl4meirl/\", \"created\": 1564151852.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgi2um\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"euyvhvu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"airshrimp777\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1564109022.0, \"send_replies\": true, \"parent_id\": \"t1_eux38dr\", \"score\": 1, \"author_fullname\": \"t2_elw3c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Since this got removed and led up to me being banned on No Sleep, I'm overjoyed to know folks are out there sharing and enjoying it still :) You're very welcome. Thanks for taking the time to message me!\", \"link_title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_euyvhvu\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESince this got removed and led up to me being banned on No Sleep, I\\u0026#39;m overjoyed to know folks are out there sharing and enjoying it still :) You\\u0026#39;re very welcome. Thanks for taking the time to message me!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/euyvhvu/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"report_reasons\": null, \"link_author\": \"airshrimp777\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"created\": 1564137822.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_chtld3\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"euxngrn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"77eagles77floyd77\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1564089540.0, \"send_replies\": true, \"parent_id\": \"t3_chtld3\", \"score\": 1, \"author_fullname\": \"t2_1ahyf3ut\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"should change title to biden and harris about to make out\", \"link_title\": \"Biden and Harris about to make it rain deep midrange 2's\", \"author_flair_css_class\": null, \"name\": \"t1_euxngrn\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eshould change title to biden and harris about to make out\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/chtld3/biden_and_harris_about_to_make_it_rain_deep/euxngrn/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/chtld3/biden_and_harris_about_to_make_it_rain_deep/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/chtld3/biden_and_harris_about_to_make_it_rain_deep/\", \"created\": 1564118340.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgi2um\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eux38dr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"DOOManiac\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1564082734.0, \"send_replies\": true, \"parent_id\": \"t3_cgi2um\", \"score\": 1, \"author_fullname\": \"t2_pcinv\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Wow, this is a great story! Thank you for writing it and for sharing it with us.\\n\\nAs a VR developer, who has three headsets, and goes to VR conferences, and has a 5 year old daughter, this really hit me extra hard. :D I think this would fit great as an episode of the Twilight Zone or Black Mirror (which I don't watch, so forgive me if it already has been done there).\\n\\n(I found this in an Oculus developers' Discord. Everyone else there loved it too!)\", \"link_title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eux38dr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWow, this is a great story! Thank you for writing it and for sharing it with us.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a VR developer, who has three headsets, and goes to VR conferences, and has a 5 year old daughter, this really hit me extra hard. :D I think this would fit great as an episode of the Twilight Zone or Black Mirror (which I don\\u0026#39;t watch, so forgive me if it already has been done there).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(I found this in an Oculus developers\\u0026#39; Discord. Everyone else there loved it too!)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/eux38dr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"report_reasons\": null, \"link_author\": \"airshrimp777\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"created\": 1564111534.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_chqcaa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"euws94r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dancemanleo\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1564078939.0, \"send_replies\": true, \"parent_id\": \"t3_chqcaa\", \"score\": 1, \"author_fullname\": \"t2_79cno\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"https://imgur.com/a/GNO4O7z\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_euws94r\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/GNO4O7z\\\"\\u003Ehttps://imgur.com/a/GNO4O7z\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/chqcaa/test/euws94r/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/chqcaa/test/\", \"report_reasons\": null, \"link_author\": \"Dancemanleo\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/chqcaa/test/\", \"created\": 1564107739.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_chqcaa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"euws71x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dancemanleo\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1564078920.0, \"send_replies\": true, \"parent_id\": \"t3_chqcaa\", \"score\": 1, \"author_fullname\": \"t2_79cno\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"https://imgur.com/a/qlhX9Fv\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_euws71x\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/qlhX9Fv\\\"\\u003Ehttps://imgur.com/a/qlhX9Fv\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/chqcaa/test/euws71x/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/chqcaa/test/\", \"report_reasons\": null, \"link_author\": \"Dancemanleo\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/chqcaa/test/\", \"created\": 1564107720.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_chqcaa\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"euws4u9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Dancemanleo\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1564078899.0, \"send_replies\": true, \"parent_id\": \"t3_chqcaa\", \"score\": 1, \"author_fullname\": \"t2_79cno\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"https://imgur.com/a/blrIGAt\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_euws4u9\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/blrIGAt\\\"\\u003Ehttps://imgur.com/a/blrIGAt\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/chqcaa/test/euws4u9/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/chqcaa/test/\", \"report_reasons\": null, \"link_author\": \"Dancemanleo\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/chqcaa/test/\", \"created\": 1564107699.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ch4st8\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eupr0vs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"stone_notes\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563962374.0, \"send_replies\": true, \"parent_id\": \"t3_ch4st8\", \"score\": 1, \"author_fullname\": \"t2_42r4zxml\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"1:29 and half battery? Wow.\", \"link_title\": \"ScreenshotTest gogo\", \"author_flair_css_class\": null, \"name\": \"t1_eupr0vs\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E1:29 and half battery? Wow.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ch4st8/screenshottest_gogo/eupr0vs/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ch4st8/screenshottest_gogo/\", \"report_reasons\": null, \"link_author\": \"Mytesthandle\", \"author_flair_text\": null, \"link_url\": \"https://i.redd.it/ar7xq8hda7c31.png\", \"created\": 1563991174.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgi2um\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eupbhhq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"tomasdincau\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1563954459.0, \"send_replies\": true, \"parent_id\": \"t3_cgi2um\", \"score\": 1, \"author_fullname\": \"t2_3o6fnvtt\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Getting real Matrix-ey! Love it! Can we get a sequel?\", \"link_title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eupbhhq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGetting real Matrix-ey! Love it! Can we get a sequel?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/eupbhhq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"report_reasons\": null, \"link_author\": \"airshrimp777\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"created\": 1563983259.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ch3zfv\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"euosq50\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"canadiadan\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563946317.0, \"send_replies\": true, \"parent_id\": \"t3_ch3zfv\", \"score\": 1, \"author_fullname\": \"t2_7uhpr\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"test^test^test\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_euosq50\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003Csup\\u003Etest\\u003Csup\\u003Etest\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ch3zfv/test/euosq50/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ch3zfv/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/ch3zfv/test/\", \"created\": 1563975117.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563932853.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ch1lct\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eunql0l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"monkeyninjami\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1563932217.0, \"send_replies\": true, \"parent_id\": \"t1_eunq97k\", \"score\": 1, \"author_fullname\": \"t2_bvcvy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\n[PCPartPicker Part List](https://pcpartpicker.com/list/GqtmP3)\\n\\nType|Item|\\n:----|:----|:----\\n**CPU** | [Intel Core i3-4170 3.7 GHz Dual-Core Processor](https://pcpartpicker.com/product/hYrcCJ/intel-cpu-bx80646i34170) | \\n**CPU Cooler** | [Cooler Master DP6-9EDSA-0L-GP CPU Cooler](https://pcpartpicker.com/product/Gw2kcf/cooler-master-cpu-cooler-dp69edsa0lgp) | \\n**Motherboard** | [Asus H81M-D PLUS Micro ATX LGA1150 Motherboard](https://pcpartpicker.com/product/FBNp99/asus-motherboard-h81mdplus) | \\n**Memory** | [G.Skill Ripjaws X Series 8 GB (2 x 4 GB) DDR3-1600 Memory](https://pcpartpicker.com/product/LzTmP6/gskill-memory-f312800cl9d8gbxl) |\\n**Storage** | [Team Ultra L5 120 GB 2.5\\\" Solid State Drive](https://pcpartpicker.com/product/hTCrxr/team-internal-hard-drive-t253l5120gmc101) | \\n**Storage** | [Western Digital Caviar Blue 1 TB 3.5\\\" 7200RPM Internal Hard Drive](https://pcpartpicker.com/product/MwW9TW/western-digital-internal-hard-drive-wd10ezex) |\\n**Video Card** | [EVGA GeForce GTX 970 4 GB Video Card](https://pcpartpicker.com/product/62FXsY/evga-video-card-04gp41972kr) | \\n**Power Supply** | [Thermaltake Tough Power 650 W 80+ Gold Certified ATX Power Supply](https://pcpartpicker.com/product/kp6BD3/thermaltake-power-supply-tp650p) | \\n**Operating System** | [Microsoft Windows 7 Pro SP1 DE 64-bit](https://pcpartpicker.com/product/4jcMnQ/microsoft-os-885370720693) |\\n\\n[PCPartPicker Part List](https://pcpartpicker.com/list/DtLNRJ)\\n\\nType|Item|\\n:----|:----|:----\\n**CPU** | [AMD Ryzen 5 2600 3.4 GHz 6-Core Processor](https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox) | \\n**Motherboard** | [MSI B450 TOMAHAWK ATX AM4 Motherboard](https://pcpartpicker.com/product/Hy97YJ/msi-b450-tomahawk-atx-am4-motherboard-b450-tomahawk) | \\n**Memory** | [Team Vulcan 16 GB (2 x 8 GB) DDR4-3000 Memory](https://pcpartpicker.com/product/DHPzK8/team-vulcan-16gb-2-x-8gb-ddr4-3000-memory-tlgd416g3000hc16cdc01) | \\n**Storage** | [Team Ultra L5 240 GB 2.5\\\" Solid State Drive](https://pcpartpicker.com/product/MDx9TW/team-internal-hard-drive-t253l5240gmc101) |\\n**Storage** | [Western Digital Caviar Blue 1 TB 3.5\\\" 7200RPM Internal Hard Drive](https://pcpartpicker.com/product/MwW9TW/western-digital-internal-hard-drive-wd10ezex) | \\n**Video Card** | [EVGA GeForce GTX 970 4 GB Video Card](https://pcpartpicker.com/product/62FXsY/evga-video-card-04gp41972kr) |-\\n**Power Supply** | [Thermaltake Tough Power 650 W 80+ Gold Certified ATX Power Supply](https://pcpartpicker.com/product/kp6BD3/thermaltake-power-supply-tp650p) |\\n**Operating System** | [Microsoft Windows 10 Pro OEM 64-bit](https://pcpartpicker.com/product/MfH48d/microsoft-os-fqc08930) |\", \"link_title\": \"Ryzen build sucks\", \"author_flair_css_class\": null, \"name\": \"t1_eunql0l\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/list/GqtmP3\\\"\\u003EPCPartPicker Part List\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EType\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/hYrcCJ/intel-cpu-bx80646i34170\\\"\\u003EIntel Core i3-4170 3.7 GHz Dual-Core Processor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU Cooler\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/Gw2kcf/cooler-master-cpu-cooler-dp69edsa0lgp\\\"\\u003ECooler Master DP6-9EDSA-0L-GP CPU Cooler\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/FBNp99/asus-motherboard-h81mdplus\\\"\\u003EAsus H81M-D PLUS Micro ATX LGA1150 Motherboard\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/LzTmP6/gskill-memory-f312800cl9d8gbxl\\\"\\u003EG.Skill Ripjaws X Series 8 GB (2 x 4 GB) DDR3-1600 Memory\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/hTCrxr/team-internal-hard-drive-t253l5120gmc101\\\"\\u003ETeam Ultra L5 120 GB 2.5\\u0026quot; Solid State Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/MwW9TW/western-digital-internal-hard-drive-wd10ezex\\\"\\u003EWestern Digital Caviar Blue 1 TB 3.5\\u0026quot; 7200RPM Internal Hard Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EVideo Card\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/62FXsY/evga-video-card-04gp41972kr\\\"\\u003EEVGA GeForce GTX 970 4 GB Video Card\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EPower Supply\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/kp6BD3/thermaltake-power-supply-tp650p\\\"\\u003EThermaltake Tough Power 650 W 80+ Gold Certified ATX Power Supply\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EOperating System\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/4jcMnQ/microsoft-os-885370720693\\\"\\u003EMicrosoft Windows 7 Pro SP1 DE 64-bit\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/list/DtLNRJ\\\"\\u003EPCPartPicker Part List\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EType\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\\"\\u003EAMD Ryzen 5 2600 3.4 GHz 6-Core Processor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/Hy97YJ/msi-b450-tomahawk-atx-am4-motherboard-b450-tomahawk\\\"\\u003EMSI B450 TOMAHAWK ATX AM4 Motherboard\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/DHPzK8/team-vulcan-16gb-2-x-8gb-ddr4-3000-memory-tlgd416g3000hc16cdc01\\\"\\u003ETeam Vulcan 16 GB (2 x 8 GB) DDR4-3000 Memory\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/MDx9TW/team-internal-hard-drive-t253l5240gmc101\\\"\\u003ETeam Ultra L5 240 GB 2.5\\u0026quot; Solid State Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/MwW9TW/western-digital-internal-hard-drive-wd10ezex\\\"\\u003EWestern Digital Caviar Blue 1 TB 3.5\\u0026quot; 7200RPM Internal Hard Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EVideo Card\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/62FXsY/evga-video-card-04gp41972kr\\\"\\u003EEVGA GeForce GTX 970 4 GB Video Card\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EPower Supply\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/kp6BD3/thermaltake-power-supply-tp650p\\\"\\u003EThermaltake Tough Power 650 W 80+ Gold Certified ATX Power Supply\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EOperating System\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/MfH48d/microsoft-os-fqc08930\\\"\\u003EMicrosoft Windows 10 Pro OEM 64-bit\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ch1lct/ryzen_build_sucks/eunql0l/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ch1lct/ryzen_build_sucks/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/ch1lct/ryzen_build_sucks/\", \"created\": 1563961017.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ch1lct\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eunqf6c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"monkeyninjami\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1563932163.0, \"send_replies\": true, \"parent_id\": \"t1_eunq97k\", \"score\": 1, \"author_fullname\": \"t2_bvcvy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[PCPartPicker Part List](https://pcpartpicker.com/list/GqtmP3)\\n\\nType|Item|Price\\n:----|:----|:----\\n**CPU** | [Intel Core i3-4170 3.7 GHz Dual-Core Processor](https://pcpartpicker.com/product/hYrcCJ/intel-cpu-bx80646i34170) | Purchased For $92.85 \\n**CPU Cooler** | [Cooler Master DP6-9EDSA-0L-GP CPU Cooler](https://pcpartpicker.com/product/Gw2kcf/cooler-master-cpu-cooler-dp69edsa0lgp) | Purchased For $0.00 \\n**Motherboard** | [Asus H81M-D PLUS Micro ATX LGA1150 Motherboard](https://pcpartpicker.com/product/FBNp99/asus-motherboard-h81mdplus) | Purchased For $51.98 \\n**Memory** | [G.Skill Ripjaws X Series 8 GB (2 x 4 GB) DDR3-1600 Memory](https://pcpartpicker.com/product/LzTmP6/gskill-memory-f312800cl9d8gbxl) | Purchased For $39.99 \\n**Storage** | [Team Ultra L5 120 GB 2.5\\\" Solid State Drive](https://pcpartpicker.com/product/hTCrxr/team-internal-hard-drive-t253l5120gmc101) | Purchased For $24.82 \\n**Storage** | [Western Digital Caviar Blue 1 TB 3.5\\\" 7200RPM Internal Hard Drive](https://pcpartpicker.com/product/MwW9TW/western-digital-internal-hard-drive-wd10ezex) | Purchased For $30.72 \\n**Video Card** | [EVGA GeForce GTX 970 4 GB Video Card](https://pcpartpicker.com/product/62FXsY/evga-video-card-04gp41972kr) | Purchased For $0.00 \\n**Case** | [Raidmax Vortex ATX Mid Tower Case](https://pcpartpicker.com/product/7HYXsY/raidmax-case-atx403wb) | Purchased For $29.99 \\n**Power Supply** | [Thermaltake Tough Power 650 W 80+ Gold Certified ATX Power Supply](https://pcpartpicker.com/product/kp6BD3/thermaltake-power-supply-tp650p) | Purchased For $51.99 \\n**Operating System** | [Microsoft Windows 7 Pro SP1 DE 64-bit](https://pcpartpicker.com/product/4jcMnQ/microsoft-os-885370720693) | Purchased For $0.00 \\n**Wireless Network Adapter** | [TP-Link TL-WDN4800 PCIe x1 802.11a/b/g/n Wi-Fi Adapter](https://pcpartpicker.com/product/G4H323/tp-link-wireless-network-card-tlwdn4800) | Purchased For $27.85 \\n**Case Fan** | [Corsair Air Series Purple 2 pack 52.19 CFM 120 mm Fan](https://pcpartpicker.com/product/ndsKHx/corsair-case-fan-co9050016pled) | Purchased For $20.99 \\n**Monitor** | [Asus VH238H 23.0\\\" 1920x1080 Monitor](https://pcpartpicker.com/product/Hdh9TW/asus-monitor-vh238h) | Purchased For $114.99 \\n**Monitor** | [BenQ GL2460HM 24.0\\\" 1920x1080 60 Hz Monitor](https://pcpartpicker.com/product/mWV48d/benq-monitor-gl2460hm) | Purchased For $98.61 \\n**Keyboard** | [Corsair K65 RGB Wired Gaming Keyboard](https://pcpartpicker.com/product/xqs8TW/corsair-keyboard-ch9000072na) | Purchased For $85.48 \\n**Mouse** | [SteelSeries Sensei RAW Wired Laser Mouse](https://pcpartpicker.com/product/whbp99/steelseries-mouse-62155) | Purchased For $32.99 \\n | *Prices include shipping, taxes, rebates, and discounts* |\\n | **Total** | **$703.25**\\n | Generated by [PCPartPicker](https://pcpartpicker.com) 2019-07-23 21:01 EDT-0400 |\", \"link_title\": \"Ryzen build sucks\", \"author_flair_css_class\": null, \"name\": \"t1_eunqf6c\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/list/GqtmP3\\\"\\u003EPCPartPicker Part List\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EType\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/hYrcCJ/intel-cpu-bx80646i34170\\\"\\u003EIntel Core i3-4170 3.7 GHz Dual-Core Processor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $92.85\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU Cooler\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/Gw2kcf/cooler-master-cpu-cooler-dp69edsa0lgp\\\"\\u003ECooler Master DP6-9EDSA-0L-GP CPU Cooler\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $0.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/FBNp99/asus-motherboard-h81mdplus\\\"\\u003EAsus H81M-D PLUS Micro ATX LGA1150 Motherboard\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $51.98\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/LzTmP6/gskill-memory-f312800cl9d8gbxl\\\"\\u003EG.Skill Ripjaws X Series 8 GB (2 x 4 GB) DDR3-1600 Memory\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $39.99\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/hTCrxr/team-internal-hard-drive-t253l5120gmc101\\\"\\u003ETeam Ultra L5 120 GB 2.5\\u0026quot; Solid State Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $24.82\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/MwW9TW/western-digital-internal-hard-drive-wd10ezex\\\"\\u003EWestern Digital Caviar Blue 1 TB 3.5\\u0026quot; 7200RPM Internal Hard Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $30.72\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EVideo Card\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/62FXsY/evga-video-card-04gp41972kr\\\"\\u003EEVGA GeForce GTX 970 4 GB Video Card\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $0.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECase\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/7HYXsY/raidmax-case-atx403wb\\\"\\u003ERaidmax Vortex ATX Mid Tower Case\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $29.99\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EPower Supply\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/kp6BD3/thermaltake-power-supply-tp650p\\\"\\u003EThermaltake Tough Power 650 W 80+ Gold Certified ATX Power Supply\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $51.99\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EOperating System\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/4jcMnQ/microsoft-os-885370720693\\\"\\u003EMicrosoft Windows 7 Pro SP1 DE 64-bit\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $0.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EWireless Network Adapter\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/G4H323/tp-link-wireless-network-card-tlwdn4800\\\"\\u003ETP-Link TL-WDN4800 PCIe x1 802.11a/b/g/n Wi-Fi Adapter\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $27.85\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECase Fan\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/ndsKHx/corsair-case-fan-co9050016pled\\\"\\u003ECorsair Air Series Purple 2 pack 52.19 CFM 120 mm Fan\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $20.99\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMonitor\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/Hdh9TW/asus-monitor-vh238h\\\"\\u003EAsus VH238H 23.0\\u0026quot; 1920x1080 Monitor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $114.99\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMonitor\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/mWV48d/benq-monitor-gl2460hm\\\"\\u003EBenQ GL2460HM 24.0\\u0026quot; 1920x1080 60 Hz Monitor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $98.61\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EKeyboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/xqs8TW/corsair-keyboard-ch9000072na\\\"\\u003ECorsair K65 RGB Wired Gaming Keyboard\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $85.48\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMouse\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/whbp99/steelseries-mouse-62155\\\"\\u003ESteelSeries Sensei RAW Wired Laser Mouse\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPurchased For $32.99\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cem\\u003EPrices include shipping, taxes, rebates, and discounts\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETotal\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$703.25\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGenerated by \\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003EPCPartPicker\\u003C/a\\u003E 2019-07-23 21:01 EDT-0400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ch1lct/ryzen_build_sucks/eunqf6c/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ch1lct/ryzen_build_sucks/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/ch1lct/ryzen_build_sucks/\", \"created\": 1563960963.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ch1lct\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eunq97k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"monkeyninjami\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1563932103.0, \"send_replies\": true, \"parent_id\": \"t3_ch1lct\", \"score\": 1, \"author_fullname\": \"t2_bvcvy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"I've been deeply unsatisfied with my \\\"upgrade\\\" from an Intel i3 to a Ryzen 5 2600, while also doubling my memory from 8 to 16gb. I tried to run Userbenchmark about 20 times but then realized my rig was restarting 3/4 of the way through, not once it was done. It also restarts when I try to play PUBG. It will also just freeze randomly and when I try to multitask; e.g. playing spotify with firefox open while playing League of Legends (this was never an issue with my dinky Intel i3). \\n\\nI think I'm just running stock speeds, as far as I know I'm not overclocking. Is there a game mode or something I might have turned on? Is it possible that this is a PSU issue? According to pcpartspicker, the build I have now should only pull 324 watts and my PSU is rated for 650.\\n\\nI upgraded my PC from this: \\n\\n[PCPartPicker Part List](https://pcpartpicker.com/list/GqtmP3)\\n:----|:----|:----\\n**CPU** | [Intel Core i3-4170 3.7 GHz Dual-Core Processor](https://pcpartpicker.com/product/hYrcCJ/intel-cpu-bx80646i34170)| \\n**CPU Cooler** | [Cooler Master DP6-9EDSA-0L-GP CPU Cooler](https://pcpartpicker.com/product/Gw2kcf/cooler-master-cpu-cooler-dp69edsa0lgp)| \\n**Motherboard** | [Asus H81M-D PLUS Micro ATX LGA1150 Motherboard](https://pcpartpicker.com/product/FBNp99/asus-motherboard-h81mdplus)| \\n**Memory** | [G.Skill Ripjaws X Series 8 GB (2 x 4 GB) DDR3-1600 Memory](https://pcpartpicker.com/product/LzTmP6/gskill-memory-f312800cl9d8gbxl)|\\n**Storage** | [Team Ultra L5 120 GB 2.5\\\" Solid State Drive](https://pcpartpicker.com/product/hTCrxr/team-internal-hard-drive-t253l5120gmc101)| \\n**Storage** | [Western Digital Caviar Blue 1 TB 3.5\\\" 7200RPM Internal Hard Drive](https://pcpartpicker.com/product/MwW9TW/western-digital-internal-hard-drive-wd10ezex)|\\n**Video Card** | [EVGA GeForce GTX 970 4 GB Video Card](https://pcpartpicker.com/product/62FXsY/evga-video-card-04gp41972kr)| \\n**Power Supply** | [Thermaltake Tough Power 650 W 80+ Gold Certified ATX Power Supply](https://pcpartpicker.com/product/kp6BD3/thermaltake-power-supply-tp650p)| \\n**Operating System** | [Microsoft Windows 7 Pro SP1 DE 64-bit](https://pcpartpicker.com/product/4jcMnQ/microsoft-os-885370720693)| \\n\\nTo this:\\n\\n\\nAny help would be much appreciated!\", \"link_title\": \"Ryzen build sucks\", \"author_flair_css_class\": null, \"name\": \"t1_eunq97k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been deeply unsatisfied with my \\u0026quot;upgrade\\u0026quot; from an Intel i3 to a Ryzen 5 2600, while also doubling my memory from 8 to 16gb. I tried to run Userbenchmark about 20 times but then realized my rig was restarting 3/4 of the way through, not once it was done. It also restarts when I try to play PUBG. It will also just freeze randomly and when I try to multitask; e.g. playing spotify with firefox open while playing League of Legends (this was never an issue with my dinky Intel i3). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think I\\u0026#39;m just running stock speeds, as far as I know I\\u0026#39;m not overclocking. Is there a game mode or something I might have turned on? Is it possible that this is a PSU issue? According to pcpartspicker, the build I have now should only pull 324 watts and my PSU is rated for 650.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI upgraded my PC from this: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/list/GqtmP3\\\"\\u003EPCPartPicker Part List\\u003C/a\\u003E\\n:----|:----|:----\\n\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E | \\u003Ca href=\\\"https://pcpartpicker.com/product/hYrcCJ/intel-cpu-bx80646i34170\\\"\\u003EIntel Core i3-4170 3.7 GHz Dual-Core Processor\\u003C/a\\u003E| \\n\\u003Cstrong\\u003ECPU Cooler\\u003C/strong\\u003E | \\u003Ca href=\\\"https://pcpartpicker.com/product/Gw2kcf/cooler-master-cpu-cooler-dp69edsa0lgp\\\"\\u003ECooler Master DP6-9EDSA-0L-GP CPU Cooler\\u003C/a\\u003E|\\u003Cbr/\\u003E\\n\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E | \\u003Ca href=\\\"https://pcpartpicker.com/product/FBNp99/asus-motherboard-h81mdplus\\\"\\u003EAsus H81M-D PLUS Micro ATX LGA1150 Motherboard\\u003C/a\\u003E|\\u003Cbr/\\u003E\\n\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E | \\u003Ca href=\\\"https://pcpartpicker.com/product/LzTmP6/gskill-memory-f312800cl9d8gbxl\\\"\\u003EG.Skill Ripjaws X Series 8 GB (2 x 4 GB) DDR3-1600 Memory\\u003C/a\\u003E|\\n\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E | \\u003Ca href=\\\"https://pcpartpicker.com/product/hTCrxr/team-internal-hard-drive-t253l5120gmc101\\\"\\u003ETeam Ultra L5 120 GB 2.5\\u0026quot; Solid State Drive\\u003C/a\\u003E|\\u003Cbr/\\u003E\\n\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E | \\u003Ca href=\\\"https://pcpartpicker.com/product/MwW9TW/western-digital-internal-hard-drive-wd10ezex\\\"\\u003EWestern Digital Caviar Blue 1 TB 3.5\\u0026quot; 7200RPM Internal Hard Drive\\u003C/a\\u003E|\\n\\u003Cstrong\\u003EVideo Card\\u003C/strong\\u003E | \\u003Ca href=\\\"https://pcpartpicker.com/product/62FXsY/evga-video-card-04gp41972kr\\\"\\u003EEVGA GeForce GTX 970 4 GB Video Card\\u003C/a\\u003E| \\n\\u003Cstrong\\u003EPower Supply\\u003C/strong\\u003E | \\u003Ca href=\\\"https://pcpartpicker.com/product/kp6BD3/thermaltake-power-supply-tp650p\\\"\\u003EThermaltake Tough Power 650 W 80+ Gold Certified ATX Power Supply\\u003C/a\\u003E| \\n\\u003Cstrong\\u003EOperating System\\u003C/strong\\u003E | \\u003Ca href=\\\"https://pcpartpicker.com/product/4jcMnQ/microsoft-os-885370720693\\\"\\u003EMicrosoft Windows 7 Pro SP1 DE 64-bit\\u003C/a\\u003E| \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo this:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help would be much appreciated!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ch1lct/ryzen_build_sucks/eunq97k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ch1lct/ryzen_build_sucks/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/ch1lct/ryzen_build_sucks/\", \"created\": 1563960903.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgi2um\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eukk9yr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"58__\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1563889473.0, \"send_replies\": true, \"parent_id\": \"t1_eukhkfc\", \"score\": 1, \"author_fullname\": \"t2_2fkky1bq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Sorry about that man. Really good story though! Definitely enjoyed it a lot more than some of the stories on r/nosleep . Gave me blackmirror vibes.\", \"link_title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eukk9yr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESorry about that man. Really good story though! Definitely enjoyed it a lot more than some of the stories on \\u003Ca href=\\\"/r/nosleep\\\"\\u003Er/nosleep\\u003C/a\\u003E . Gave me blackmirror vibes.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/eukk9yr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"report_reasons\": null, \"link_author\": \"airshrimp777\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"created\": 1563918273.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgi2um\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eukhkfc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"airshrimp777\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1563888433.0, \"send_replies\": true, \"parent_id\": \"t1_eujebn1\", \"score\": 1, \"author_fullname\": \"t2_elw3c\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Yes it's the same one. Mods just got back to me and still refuse to approve it.\", \"link_title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eukhkfc\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes it\\u0026#39;s the same one. Mods just got back to me and still refuse to approve it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/eukhkfc/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"report_reasons\": null, \"link_author\": \"airshrimp777\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"created\": 1563917233.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgi2um\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"euk3zic\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"elongatingmuskrats\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1563882957.0, \"send_replies\": true, \"parent_id\": \"t1_eujebn1\", \"score\": 1, \"author_fullname\": \"t2_3auwmscy\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Yep\", \"link_title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_euk3zic\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYep\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/euk3zic/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"report_reasons\": null, \"link_author\": \"airshrimp777\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"created\": 1563911757.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgi2um\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eujebn1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"58__\", \"num_comments\": 13, \"can_mod_post\": false, \"created_utc\": 1563869224.0, \"send_replies\": true, \"parent_id\": \"t3_cgi2um\", \"score\": 1, \"author_fullname\": \"t2_2fkky1bq\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Hi! Is this the same as what was on r/nosleep? Went to read it since I saved it earlier, and it got removed\", \"link_title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"author_flair_css_class\": null, \"name\": \"t1_eujebn1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi! Is this the same as what was on \\u003Ca href=\\\"/r/nosleep\\\"\\u003Er/nosleep\\u003C/a\\u003E? Went to read it since I saved it earlier, and it got removed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/eujebn1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"report_reasons\": null, \"link_author\": \"airshrimp777\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"created\": 1563898024.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cgey8x\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eugmh3q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563810782.0, \"send_replies\": true, \"parent_id\": \"t3_cgey8x\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/KREZ7fe.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"I tried to fix Jennifer Hudson's extra large face from the Cats trailer\", \"author_flair_css_class\": null, \"name\": \"t1_eugmh3q\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/KREZ7fe.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cgey8x/i_tried_to_fix_jennifer_hudsons_extra_large_face/eugmh3q/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cgey8x/i_tried_to_fix_jennifer_hudsons_extra_large_face/\", \"report_reasons\": null, \"link_author\": \"isaidwhatisaidok\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/KREZ7fe\", \"created\": 1563839582.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cch6mi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eudhquq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WolfInArms\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1563717713.0, \"send_replies\": true, \"parent_id\": \"t1_eudhn35\", \"score\": 1, \"author_fullname\": \"t2_pw206\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"**Squad Structure**\\n------\\n------\\nThe new nine-man rifle squad became standard TO\\u0026E for motorized, mechanized, airborne, and heliborne infantry units. Whereas there had previously been different structures and weapon allocations for motorized, mechanized, and airborne squads, the 1564 TO\\u0026E revisions standardized these (with few exceptions).\\n\\nEach squad was led by a squad leader (a Sergeant First Class (OR-6), as they had been since 1543). The remaining eight men were broken up into two four-man fireteams: each was composed of a team leader; automatic rifleman; grenadier; and rifleman. The team leader was a corporal (OR-4), the most junior NCO rank; all others in the team were now Private First Class (OR-2), with Private (OR-1) now formally reserved as a training rank only. Mechanized squads eschewed both riflemen for two vehicle crewmen (driver and gunner), who remained in and operated the squad\\u2019s APC.\\n\\nThe squad leader and team leaders were both armed with the M2A4 Folsom, the last variation of the Folsom to be manufactured. It furthered the revolutionary weaver rail system implemented in the M2A3, mounting it on three sides of the wooden handguard and atop the receiver. This allowed the Folsom to mount a variety of accessories, and was issued to the squad leader and team leaders with the M50 Handheld Optical User-Manned Device (HOUND) 1x red dot sight. The HOUND was the first mass-produced reflex sight worldwide, and saw strong use by SOF units worldwide for several decades. Though reliable, production deficiencies meant that the HOUND\\u2019s use was limited: it wouldn\\u2019t be until the 1570\\u2019s that enough were made to meet and exceed TO\\u0026E requirements.\\n\\nNine 25-round 7.62mm magazines were carried with the M2A4: one chambered in the gun, and eight carried in webbing pouches - with two mags per pouch. Exact amounts carried were dependant on the circumstances: foot squads during the Lotus War (1565-1570) might expect to carry up to fifteen magazines per soldier. Two smoke and fragmentation grenades were also listed on the TO\\u0026E, but the amount carried again depended on the mission at hand.\\n\\nThe squad leader here is shown with an M1A2 Johnston submachine gun, chambered in .45 Auto (11.43x23mm). Introduced at the tailend of the First Great War, the Johnston and its derivatives served prominently during the Revolutionary Wars and the Second Great War. Large stocks remained in the 1560\\u2019s - and though no longer issued specifically to squads (beyond vehicle crews), five Johnstons were issued at the company level for general distribution until at least 1583, when they were formally removed from the Army inventory all-together. \\u201cJohnny Guns\\u201d remained popular with vehicle crews and special forces, who appreciated the high rate of fire - but were divisive among line troops due to their comparable weight to the Folsom, and the poor performance of .45 Auto compared to the full-sized 7.62mm round. The M1A2 Johnston was the last variant of the Johnston, introduced in 1544 as the most simplified production variant - replacing the wooden buttstock with a metal folding skeleton stock. Johnstons were carried with 30-round magazines.\\n\\nThe fireteam\\u2019s automatic rifleman carried the M3A2 Mercer Light Machine Gun, the final production variant of the M3 Mercer. Intended as a replacement for the Edson M1517, production requirements during the Second Great War (and the more pressing need for M1 rifles) meant that enough M3s were never produced to replace the Edson until after the war. Regardless, the M3 was very popular among troops: it was comparable in weight to the M1 and Folsom rifles, and was particularly loved by paratroopers - who could carry the weapon during jumps, unlike the Edson. By 1546, the M3 officially replaced the Edson as the squad automatic weapon - and the A2 variant was made from converting existing M3 and M3A1 guns to 7.62x51mm. The Mercer could share magazines with the Folsom, making it particularly versatile for the rifle squad.\\n\\nOne notable difference pictured here is the presence of a \\u201cmachinegunner\\u201d in the second fireteam, wielding an M71 GPMG. During the Lotus War, rifle companies were typically issued between two to five spare M71 GPMGs which were not allocated to the weapons platoon - a practice which continued well into the 1580\\u2019s. As such, some automatic riflemen carried the belt-fed M71 in-lieu of their M3A2 - a practice common with mechanized troops, who simply kept their spare weapons in the vehicle. Significantly heavier than the Mercer, the M71 regardless was capable of maintaining a sustained rate of fire for much longer thanks to its belt-fed ammunition.\\n\\nA machinegunner would typically carry two to four 100-round boxes of 7.62mm, and one or two 100-round belts slung around the body. Each member of the fireteam would also carry a 100-round belt for the machinegunner.\\n\\nThe grenadiers were issued the M301 UGL alongside of their Folsom rifles, which was capable of firing 37x46mm grenades. Smoke and HE grenades were the most commonly-carried, but incendiary and flare grenades were introduced during the 1570\\u2019s as well. Grenadiers also were expected to carry more handheld grenades, including smoke, than the other squad members.\\n\\nRiflemen were specifically allocated the M150 Shoulder-Launched Anti-Tank Weapon (SLAW): a disposable 74mm HEAT rocket intended to provide the rifle squad with a measure of defense against tanks. Doctrine during the Second Great War had intended for the rifle squad to use the M101 grenade launcher against halftracks and (if necessary) tanks, while dedicated teams with anti-tank rifles and anti-tank guns were intended to fight armor. As tanks became better-armored, the anti-tank grenade and AT rifle soon became inadequate. Aurelian lend-leased launchers - the [L3 Bazooka](https://i.imgur.com/pRb4iUe.jpg) and the disposable [L9 Light Anti-Tank Rocket (LAR)](https://i.imgur.com/a5F8By4.jpg) - were in precious supply, and after the war inspired domestic production of such weapons. While Erucia would implement the [M1 Kustaa](https://i.imgur.com/TbwyUmIr.jpg) 84mm recoilless rifle in 1548, it would take until 1563 to implement a domestic launcher that would adequately replace the L9 LAR.\\n\\nAt only six pounds (2.9kg), the SLAW could in-practice be carried by every member of the squad - and up to two or three at a time, if absolutely necessary. Capable of 340mm of armor penetration, its HEAT rocket was enough to penetrate the front armor on even the heaviest Baiyunese tanks of the period. It performed favorably during the Lotus War, where it often fought antiquated [ZH-3](https://i.imgur.com/avmdw8f.png) and [ZH-5](https://i.imgur.com/FbUbffq.png) tanks. \\n\\n\\n**Squad Doctrine**\\n------\\n------\\nThe nine-man rifle squad was not expected to operate independently on the battlefield. However, doctrine kept in mind the lessons of the last thirty years of warfare, and as such attempted to equip the squad to fight independently if necessary.\\n\\nAs both fireteams were expected to be armed similarly, both were interchangeable with one another in role and function. If contact was made, the same general tactics remained: one team would suppress the enemy, another would close and eliminate them. Similar loadouts allowed both teams to \\u201cleapfrog\\u201d opponents, switching off suppressing and maneuvering to advance towards an objective. While this had been practiced long prior to the 1564 TO\\u0026E changes, the new squad structure made such tactics more practical.\\n\\nWith the use of the M71 GPMG by some squads, however, the old Gun/Maneuver team concept lived on unofficially. Squads which used the M71 typically carried no more than one such gun, and generally designated fireteam to act in a Gun Team capacity.\", \"link_title\": \"Test Table Formating\", \"author_flair_css_class\": null, \"name\": \"t1_eudhquq\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch2\\u003E\\u003Cstrong\\u003ESquad Structure\\u003C/strong\\u003E\\u003C/h2\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EThe new nine-man rifle squad became standard TO\\u0026amp;E for motorized, mechanized, airborne, and heliborne infantry units. Whereas there had previously been different structures and weapon allocations for motorized, mechanized, and airborne squads, the 1564 TO\\u0026amp;E revisions standardized these (with few exceptions).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEach squad was led by a squad leader (a Sergeant First Class (OR-6), as they had been since 1543). The remaining eight men were broken up into two four-man fireteams: each was composed of a team leader; automatic rifleman; grenadier; and rifleman. The team leader was a corporal (OR-4), the most junior NCO rank; all others in the team were now Private First Class (OR-2), with Private (OR-1) now formally reserved as a training rank only. Mechanized squads eschewed both riflemen for two vehicle crewmen (driver and gunner), who remained in and operated the squad\\u2019s APC.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe squad leader and team leaders were both armed with the M2A4 Folsom, the last variation of the Folsom to be manufactured. It furthered the revolutionary weaver rail system implemented in the M2A3, mounting it on three sides of the wooden handguard and atop the receiver. This allowed the Folsom to mount a variety of accessories, and was issued to the squad leader and team leaders with the M50 Handheld Optical User-Manned Device (HOUND) 1x red dot sight. The HOUND was the first mass-produced reflex sight worldwide, and saw strong use by SOF units worldwide for several decades. Though reliable, production deficiencies meant that the HOUND\\u2019s use was limited: it wouldn\\u2019t be until the 1570\\u2019s that enough were made to meet and exceed TO\\u0026amp;E requirements.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENine 25-round 7.62mm magazines were carried with the M2A4: one chambered in the gun, and eight carried in webbing pouches - with two mags per pouch. Exact amounts carried were dependant on the circumstances: foot squads during the Lotus War (1565-1570) might expect to carry up to fifteen magazines per soldier. Two smoke and fragmentation grenades were also listed on the TO\\u0026amp;E, but the amount carried again depended on the mission at hand.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe squad leader here is shown with an M1A2 Johnston submachine gun, chambered in .45 Auto (11.43x23mm). Introduced at the tailend of the First Great War, the Johnston and its derivatives served prominently during the Revolutionary Wars and the Second Great War. Large stocks remained in the 1560\\u2019s - and though no longer issued specifically to squads (beyond vehicle crews), five Johnstons were issued at the company level for general distribution until at least 1583, when they were formally removed from the Army inventory all-together. \\u201cJohnny Guns\\u201d remained popular with vehicle crews and special forces, who appreciated the high rate of fire - but were divisive among line troops due to their comparable weight to the Folsom, and the poor performance of .45 Auto compared to the full-sized 7.62mm round. The M1A2 Johnston was the last variant of the Johnston, introduced in 1544 as the most simplified production variant - replacing the wooden buttstock with a metal folding skeleton stock. Johnstons were carried with 30-round magazines.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe fireteam\\u2019s automatic rifleman carried the M3A2 Mercer Light Machine Gun, the final production variant of the M3 Mercer. Intended as a replacement for the Edson M1517, production requirements during the Second Great War (and the more pressing need for M1 rifles) meant that enough M3s were never produced to replace the Edson until after the war. Regardless, the M3 was very popular among troops: it was comparable in weight to the M1 and Folsom rifles, and was particularly loved by paratroopers - who could carry the weapon during jumps, unlike the Edson. By 1546, the M3 officially replaced the Edson as the squad automatic weapon - and the A2 variant was made from converting existing M3 and M3A1 guns to 7.62x51mm. The Mercer could share magazines with the Folsom, making it particularly versatile for the rifle squad.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne notable difference pictured here is the presence of a \\u201cmachinegunner\\u201d in the second fireteam, wielding an M71 GPMG. During the Lotus War, rifle companies were typically issued between two to five spare M71 GPMGs which were not allocated to the weapons platoon - a practice which continued well into the 1580\\u2019s. As such, some automatic riflemen carried the belt-fed M71 in-lieu of their M3A2 - a practice common with mechanized troops, who simply kept their spare weapons in the vehicle. Significantly heavier than the Mercer, the M71 regardless was capable of maintaining a sustained rate of fire for much longer thanks to its belt-fed ammunition.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA machinegunner would typically carry two to four 100-round boxes of 7.62mm, and one or two 100-round belts slung around the body. Each member of the fireteam would also carry a 100-round belt for the machinegunner.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe grenadiers were issued the M301 UGL alongside of their Folsom rifles, which was capable of firing 37x46mm grenades. Smoke and HE grenades were the most commonly-carried, but incendiary and flare grenades were introduced during the 1570\\u2019s as well. Grenadiers also were expected to carry more handheld grenades, including smoke, than the other squad members.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERiflemen were specifically allocated the M150 Shoulder-Launched Anti-Tank Weapon (SLAW): a disposable 74mm HEAT rocket intended to provide the rifle squad with a measure of defense against tanks. Doctrine during the Second Great War had intended for the rifle squad to use the M101 grenade launcher against halftracks and (if necessary) tanks, while dedicated teams with anti-tank rifles and anti-tank guns were intended to fight armor. As tanks became better-armored, the anti-tank grenade and AT rifle soon became inadequate. Aurelian lend-leased launchers - the \\u003Ca href=\\\"https://i.imgur.com/pRb4iUe.jpg\\\"\\u003EL3 Bazooka\\u003C/a\\u003E and the disposable \\u003Ca href=\\\"https://i.imgur.com/a5F8By4.jpg\\\"\\u003EL9 Light Anti-Tank Rocket (LAR)\\u003C/a\\u003E - were in precious supply, and after the war inspired domestic production of such weapons. While Erucia would implement the \\u003Ca href=\\\"https://i.imgur.com/TbwyUmIr.jpg\\\"\\u003EM1 Kustaa\\u003C/a\\u003E 84mm recoilless rifle in 1548, it would take until 1563 to implement a domestic launcher that would adequately replace the L9 LAR.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt only six pounds (2.9kg), the SLAW could in-practice be carried by every member of the squad - and up to two or three at a time, if absolutely necessary. Capable of 340mm of armor penetration, its HEAT rocket was enough to penetrate the front armor on even the heaviest Baiyunese tanks of the period. It performed favorably during the Lotus War, where it often fought antiquated \\u003Ca href=\\\"https://i.imgur.com/avmdw8f.png\\\"\\u003EZH-3\\u003C/a\\u003E and \\u003Ca href=\\\"https://i.imgur.com/FbUbffq.png\\\"\\u003EZH-5\\u003C/a\\u003E tanks. \\u003C/p\\u003E\\n\\n\\u003Ch2\\u003E\\u003Cstrong\\u003ESquad Doctrine\\u003C/strong\\u003E\\u003C/h2\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EThe nine-man rifle squad was not expected to operate independently on the battlefield. However, doctrine kept in mind the lessons of the last thirty years of warfare, and as such attempted to equip the squad to fight independently if necessary.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs both fireteams were expected to be armed similarly, both were interchangeable with one another in role and function. If contact was made, the same general tactics remained: one team would suppress the enemy, another would close and eliminate them. Similar loadouts allowed both teams to \\u201cleapfrog\\u201d opponents, switching off suppressing and maneuvering to advance towards an objective. While this had been practiced long prior to the 1564 TO\\u0026amp;E changes, the new squad structure made such tactics more practical.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith the use of the M71 GPMG by some squads, however, the old Gun/Maneuver team concept lived on unofficially. Squads which used the M71 typically carried no more than one such gun, and generally designated fireteam to act in a Gun Team capacity.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cch6mi/test_table_formating/eudhquq/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cch6mi/test_table_formating/\", \"report_reasons\": null, \"link_author\": \"WolfInArms\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cch6mi/test_table_formating/\", \"created\": 1563746513.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cch6mi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eudhn35\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WolfInArms\", \"num_comments\": 3, \"can_mod_post\": false, \"created_utc\": 1563717622.0, \"send_replies\": true, \"parent_id\": \"t3_cch6mi\", \"score\": 1, \"author_fullname\": \"t2_pw206\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Art by CountGooseman, available on [DeviantArt](https://www.deviantart.com/countgooseman). Also check out the [M71A4/D5 Cerberus FIRE (Passive)](https://old.reddit.com/r/worldbuilding/comments/b30e1v/m71a5d4_fire_passive/) main battle tank, also made by CountGooseman.\\n\\nNotice: I have linked several images in the text, which have been taken from Wikipedia Commons, Forgotten Weapons, and Tank Encyclopedia. These are being used to provide context for equipment not shown in the art, to avoid confusing the reader.\\n\\n\\n\\n**Context**\\n------\\n------\\nDuring the Second Great War, the Erucian rifle squad was composed of twelve men split between three \\u2018teams\\u2019: the Command Team, which was composed of a squad leader (a Sergeant or Sergeant First Class) and two scouts; the Gun Team, which was composed of two pairs of an automatic rifleman and assistant manning an [Edson M1517 AR](https://i.imgur.com/KJGhZ7o.jpg); and the Maneuver Team, which was a five-man team with rifles and two grenade launchers. Doctrinally, the scouts were meant to take point ahead of the squad. Once contact was made, the Gun Team would establish a base of fire while the Maneuver Team closed with and eliminated the enemy.\\n\\nIn practice, this was met with mixed success. The Gun Team could not always expect to have a secure base of fire - and while the Edson was lighter than any belt-fed machine gun, it couldn\\u2019t maintain the same rate of fire that its foreign contemporaries could before reloading. Likewise, the Maneuver Team lacked automatic firepower - being issued the semi-automatic [M1 Mercer](https://i.imgur.com/u6T5JcS.jpg) rifle and [M1A1 Mercer](https://i.imgur.com/cKHfJK0.jpg) carbine. While the independent [M101 Launcher](https://i.imgur.com/DVM4mAL.jpg) allowed the Maneuver Team indirect explosive fire within 400 meters, by late 1544 the proliferation of automatic weapons on the battlefield meant that the average Erucian squad found themselves outgunned in engagements within ~100 meters. On the battlefield, rifle squads often mixed and matched their members into ad-hoc teams to compensate - eschewing the formal Gun Team/Maneuver Team structure.\\n\\nRectifications during the Second Great War were limited to maintain logistics during the drive into Valines. Additional Johnston and lend-leased Aurelian [Lincoln](https://i.imgur.com/0ycmoBO.jpg) submachine guns were allocated on the company level, but there were never enough to go around. More success was found with experimental \\u201cAssault Squad\\u201d formations, employed by special Assault Companies in Army Ranger battalions and the regular infantry divisions. In these, the select-fire M2 Folsom battle rifle was issued: while heavier, the M2 (and its cut-down M2A1 \\u2018commando\\u2019 variant) were capable of automatic fire and suffered none of the range limitations which submachine guns did.\\n\\nAfter the war\\u2019s end, the Democratic Union Armed Forces adopted the M2 Folsom as its standard issue rifle. A designated automatic rifleman was maintained in the Army rifle squad (using the M3 Mercer LMG), but each squad member had significantly more firepower. Moreover, the squad was cut down from twelve men to nine: cutting both scouts and one automatic rifleman; and converting one grenadier to an additional rifleman (though by 1550 and the introduction of the M301 Underbarrel Grenade Launcher, this rifleman was converted back to a grenadier). It was found that the twelve-man squad had been too unwieldy in combat, and it was hoped that with the added firepower Erucian squads would be able to overcome the difference in manpower.\\n\\nThis, however, failed to adequately address the issues found in the Gun Team/Maneuver Team doctrine. The M2 Folsom rifle, firing the .30 Abell (7.62x63mm) round, had exceptional recoil on automatic fire which was controllable for canid soldiers, but nigh-unstable for humans - necessitating the use of a compensator. More controllable was the M3 Mercer, with a heavier barrel and folding bipod - but only one was allocated per-squad. Given the weight that .30 caliber ammunition added to the soldier\\u2019s loadout, the magazines needed for sustained suppressive fire were usually only carried by the Gun Team.\\n\\nErucian participation in the brushfire conflicts of the 1550\\u2019s convinced a cartridge shift to the new Aurelian 7.62x51mm round in 1559, but the Gun Team/Maneuver Team dilemma in the Army would not be addressed until the major TO\\u0026E reorganization of 1565.\\n\\n**Army Rifle Squad TO\\u0026E**\\n\\nQuantity | Rank | Role\\n:--|:--:|--:\\n1s | Sergeant First Class | Squad leader\\n2s | Corporal | Team leader\\n2a | Private First Class | Rifleman, automatic\\n2g | Private First Class | Grenadier\\n2r | Private First Class | Rifleman\\n\\n* s: armed with Rifle, Folsom, Caliber 7.62x51, M2A4 with Optic, Rifle, M10\\n* a: armed with Light Machine Gun, Mercer, Caliber 7.62x51, M3A2\\n* g: armed with Rifle, Folsom, Caliber 7.62x51, M2A4 with Grenade Launcher, Caliber 37x46, M301\\n* r: armed with Rifle, Folsom, Caliber 7.62x51, M2A4\\n\\nThe switch from the Gun/Maneuver format to the Fireteam doctrine was not revolutionary by any means: Aurelia and the Commonwealth nations had used it as early as the late 1530\\u2019s (in the case of the Royal Marines); Socialist Valines forces had officially used a three-fireteam doctrine on its TO\\u0026E throughout the Second Great War; and even the Democratic Union Marine Corps had broken its own squads down into three four-man fireteams with a magazine-fed LMG each as early as 1541. \\n\\nBut it had taken the Army until 1559 to begin experimenting with the fireteam concept with Army Ranger units, and later formalizing it in 1564. The structure of the nine-man squad is maintained to this day, and the specific 1565 TO\\u0026E allocations were maintained until 1583.\", \"link_title\": \"Test Table Formating\", \"author_flair_css_class\": null, \"name\": \"t1_eudhn35\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EArt by CountGooseman, available on \\u003Ca href=\\\"https://www.deviantart.com/countgooseman\\\"\\u003EDeviantArt\\u003C/a\\u003E. Also check out the \\u003Ca href=\\\"https://old.reddit.com/r/worldbuilding/comments/b30e1v/m71a5d4_fire_passive/\\\"\\u003EM71A4/D5 Cerberus FIRE (Passive)\\u003C/a\\u003E main battle tank, also made by CountGooseman.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENotice: I have linked several images in the text, which have been taken from Wikipedia Commons, Forgotten Weapons, and Tank Encyclopedia. These are being used to provide context for equipment not shown in the art, to avoid confusing the reader.\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003E\\u003Cstrong\\u003EContext\\u003C/strong\\u003E\\u003C/h2\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EDuring the Second Great War, the Erucian rifle squad was composed of twelve men split between three \\u2018teams\\u2019: the Command Team, which was composed of a squad leader (a Sergeant or Sergeant First Class) and two scouts; the Gun Team, which was composed of two pairs of an automatic rifleman and assistant manning an \\u003Ca href=\\\"https://i.imgur.com/KJGhZ7o.jpg\\\"\\u003EEdson M1517 AR\\u003C/a\\u003E; and the Maneuver Team, which was a five-man team with rifles and two grenade launchers. Doctrinally, the scouts were meant to take point ahead of the squad. Once contact was made, the Gun Team would establish a base of fire while the Maneuver Team closed with and eliminated the enemy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn practice, this was met with mixed success. The Gun Team could not always expect to have a secure base of fire - and while the Edson was lighter than any belt-fed machine gun, it couldn\\u2019t maintain the same rate of fire that its foreign contemporaries could before reloading. Likewise, the Maneuver Team lacked automatic firepower - being issued the semi-automatic \\u003Ca href=\\\"https://i.imgur.com/u6T5JcS.jpg\\\"\\u003EM1 Mercer\\u003C/a\\u003E rifle and \\u003Ca href=\\\"https://i.imgur.com/cKHfJK0.jpg\\\"\\u003EM1A1 Mercer\\u003C/a\\u003E carbine. While the independent \\u003Ca href=\\\"https://i.imgur.com/DVM4mAL.jpg\\\"\\u003EM101 Launcher\\u003C/a\\u003E allowed the Maneuver Team indirect explosive fire within 400 meters, by late 1544 the proliferation of automatic weapons on the battlefield meant that the average Erucian squad found themselves outgunned in engagements within ~100 meters. On the battlefield, rifle squads often mixed and matched their members into ad-hoc teams to compensate - eschewing the formal Gun Team/Maneuver Team structure.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERectifications during the Second Great War were limited to maintain logistics during the drive into Valines. Additional Johnston and lend-leased Aurelian \\u003Ca href=\\\"https://i.imgur.com/0ycmoBO.jpg\\\"\\u003ELincoln\\u003C/a\\u003E submachine guns were allocated on the company level, but there were never enough to go around. More success was found with experimental \\u201cAssault Squad\\u201d formations, employed by special Assault Companies in Army Ranger battalions and the regular infantry divisions. In these, the select-fire M2 Folsom battle rifle was issued: while heavier, the M2 (and its cut-down M2A1 \\u2018commando\\u2019 variant) were capable of automatic fire and suffered none of the range limitations which submachine guns did.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter the war\\u2019s end, the Democratic Union Armed Forces adopted the M2 Folsom as its standard issue rifle. A designated automatic rifleman was maintained in the Army rifle squad (using the M3 Mercer LMG), but each squad member had significantly more firepower. Moreover, the squad was cut down from twelve men to nine: cutting both scouts and one automatic rifleman; and converting one grenadier to an additional rifleman (though by 1550 and the introduction of the M301 Underbarrel Grenade Launcher, this rifleman was converted back to a grenadier). It was found that the twelve-man squad had been too unwieldy in combat, and it was hoped that with the added firepower Erucian squads would be able to overcome the difference in manpower.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis, however, failed to adequately address the issues found in the Gun Team/Maneuver Team doctrine. The M2 Folsom rifle, firing the .30 Abell (7.62x63mm) round, had exceptional recoil on automatic fire which was controllable for canid soldiers, but nigh-unstable for humans - necessitating the use of a compensator. More controllable was the M3 Mercer, with a heavier barrel and folding bipod - but only one was allocated per-squad. Given the weight that .30 caliber ammunition added to the soldier\\u2019s loadout, the magazines needed for sustained suppressive fire were usually only carried by the Gun Team.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EErucian participation in the brushfire conflicts of the 1550\\u2019s convinced a cartridge shift to the new Aurelian 7.62x51mm round in 1559, but the Gun Team/Maneuver Team dilemma in the Army would not be addressed until the major TO\\u0026amp;E reorganization of 1565.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EArmy Rifle Squad TO\\u0026amp;E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EQuantity\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ERank\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ERole\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1s\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ESergeant First Class\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003ESquad leader\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2s\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECorporal\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003ETeam leader\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2a\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPrivate First Class\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003ERifleman, automatic\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2g\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPrivate First Class\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003EGrenadier\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2r\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EPrivate First Class\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003ERifleman\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Es: armed with Rifle, Folsom, Caliber 7.62x51, M2A4 with Optic, Rifle, M10\\u003C/li\\u003E\\n\\u003Cli\\u003Ea: armed with Light Machine Gun, Mercer, Caliber 7.62x51, M3A2\\u003C/li\\u003E\\n\\u003Cli\\u003Eg: armed with Rifle, Folsom, Caliber 7.62x51, M2A4 with Grenade Launcher, Caliber 37x46, M301\\u003C/li\\u003E\\n\\u003Cli\\u003Er: armed with Rifle, Folsom, Caliber 7.62x51, M2A4\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThe switch from the Gun/Maneuver format to the Fireteam doctrine was not revolutionary by any means: Aurelia and the Commonwealth nations had used it as early as the late 1530\\u2019s (in the case of the Royal Marines); Socialist Valines forces had officially used a three-fireteam doctrine on its TO\\u0026amp;E throughout the Second Great War; and even the Democratic Union Marine Corps had broken its own squads down into three four-man fireteams with a magazine-fed LMG each as early as 1541. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut it had taken the Army until 1559 to begin experimenting with the fireteam concept with Army Ranger units, and later formalizing it in 1564. The structure of the nine-man squad is maintained to this day, and the specific 1565 TO\\u0026amp;E allocations were maintained until 1583.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cch6mi/test_table_formating/eudhn35/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cch6mi/test_table_formating/\", \"report_reasons\": null, \"link_author\": \"WolfInArms\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cch6mi/test_table_formating/\", \"created\": 1563746422.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfyf3k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eudcgps\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WarrenL24\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563712438.0, \"send_replies\": true, \"parent_id\": \"t1_eudcdw4\", \"score\": 1, \"author_fullname\": \"t2_drgr31\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[this vid](https://www.youtube.com/watch?time_continue=161\\u0026v=aqTScsC7Dis)\", \"link_title\": \"TEST HYPERLINK\", \"author_flair_css_class\": null, \"name\": \"t1_eudcgps\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?time_continue=161\\u0026amp;v=aqTScsC7Dis\\\"\\u003Ethis vid\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfyf3k/test_hyperlink/eudcgps/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"report_reasons\": null, \"link_author\": \"WarrenL24\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"created\": 1563741238.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfyf3k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eudcdw4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WarrenL24\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563712347.0, \"send_replies\": true, \"parent_id\": \"t1_eudcccv\", \"score\": 1, \"author_fullname\": \"t2_drgr31\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[reddit!\\\\](http://reddit.com)\", \"link_title\": \"TEST HYPERLINK\", \"author_flair_css_class\": null, \"name\": \"t1_eudcdw4\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[reddit!](\\u003Ca href=\\\"http://reddit.com\\\"\\u003Ehttp://reddit.com\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfyf3k/test_hyperlink/eudcdw4/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"report_reasons\": null, \"link_author\": \"WarrenL24\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"created\": 1563741147.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfyf3k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eudcccv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WarrenL24\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563712298.0, \"send_replies\": true, \"parent_id\": \"t1_eudc9fr\", \"score\": 1, \"author_fullname\": \"t2_drgr31\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[vid!\\\\]([http://www.youtube.com/watch?time\\\\_continue=161\\u0026v=aqTScsC7Dis](https://www.youtube.com/watch?time_continue=161\\u0026v=aqTScsC7Dis))\", \"link_title\": \"TEST HYPERLINK\", \"author_flair_css_class\": null, \"name\": \"t1_eudcccv\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[vid!](\\u003Ca href=\\\"https://www.youtube.com/watch?time_continue=161\\u0026amp;v=aqTScsC7Dis\\\"\\u003Ehttp://www.youtube.com/watch?time_continue=161\\u0026amp;v=aqTScsC7Dis\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfyf3k/test_hyperlink/eudcccv/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"report_reasons\": null, \"link_author\": \"WarrenL24\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"created\": 1563741098.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfyf3k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eudc9fr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WarrenL24\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563712206.0, \"send_replies\": true, \"parent_id\": \"t1_eudbryt\", \"score\": 1, \"author_fullname\": \"t2_drgr31\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[vid\\\\]([https://www.youtube.com/watch?time\\\\_continue=161\\u0026v=aqTScsC7Dis](https://www.youtube.com/watch?time_continue=161\\u0026v=aqTScsC7Dis))\", \"link_title\": \"TEST HYPERLINK\", \"author_flair_css_class\": null, \"name\": \"t1_eudc9fr\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[vid](\\u003Ca href=\\\"https://www.youtube.com/watch?time_continue=161\\u0026amp;v=aqTScsC7Dis\\\"\\u003Ehttps://www.youtube.com/watch?time_continue=161\\u0026amp;v=aqTScsC7Dis\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfyf3k/test_hyperlink/eudc9fr/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"report_reasons\": null, \"link_author\": \"WarrenL24\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"created\": 1563741006.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfyf3k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eudbryt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WarrenL24\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563711639.0, \"send_replies\": true, \"parent_id\": \"t1_eudbr89\", \"score\": 1, \"author_fullname\": \"t2_drgr31\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[vid\\\\]([//www.youtube.com/watch?v=aqTScsC7Dis](https://www.youtube.com/watch?v=aqTScsC7Dis))\", \"link_title\": \"TEST HYPERLINK\", \"author_flair_css_class\": null, \"name\": \"t1_eudbryt\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[vid](\\u003Ca href=\\\"https://www.youtube.com/watch?v=aqTScsC7Dis\\\"\\u003E//www.youtube.com/watch?v=aqTScsC7Dis\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfyf3k/test_hyperlink/eudbryt/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"report_reasons\": null, \"link_author\": \"WarrenL24\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"created\": 1563740439.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": 1563712262.0, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfyf3k\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eudbr89\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"WarrenL24\", \"num_comments\": 6, \"can_mod_post\": false, \"created_utc\": 1563711615.0, \"send_replies\": true, \"parent_id\": \"t3_cfyf3k\", \"score\": 1, \"author_fullname\": \"t2_drgr31\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\\\[vid\\\\]([https://.youtube.com/watch?v=aqTScsC7Dis](https://www.youtube.com/watch?v=aqTScsC7Dis))\", \"link_title\": \"TEST HYPERLINK\", \"author_flair_css_class\": null, \"name\": \"t1_eudbr89\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[vid](\\u003Ca href=\\\"https://www.youtube.com/watch?v=aqTScsC7Dis\\\"\\u003Ehttps://.youtube.com/watch?v=aqTScsC7Dis\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfyf3k/test_hyperlink/eudbr89/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"report_reasons\": null, \"link_author\": \"WarrenL24\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"created\": 1563740415.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfoxuk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eubfcvm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RevolutionaryPanic\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563646760.0, \"send_replies\": true, \"parent_id\": \"t3_cfoxuk\", \"score\": 1, \"author_fullname\": \"t2_s4x5r4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"|***Nation***|***Total Ships***|***Number of ships with 50%+ W/R***|***Number of ships with 51%+ W/R***|***Number of ships with 52%+ W/R***|***Number of ships with 53%+ W/R***|***Number of ships with 54%+ W/R***|***Number of ships with 55%+ W/R***|***50%+ WR ships as percent of all ships***|***55%+ WR ships as percent of all ships***|***50%+ WR ships as percent that nation's ships***|***55%+ WR ships as percent that nation's ships***|\\n:--|--:|--:|--:|--:|--:|--:|--:|--:|--:|--:|--:|\\n|***JP***|91|33|28|15|10|8|4|**8%**|*1.0%*|**36%**|**4%**|\\n|***KM***|44|14|10|7|3|3|1|**4%**|*0.3%*|**32%**|**2%**|\\n|***MN***|39|11|5|3|3|1|1|**3%**|*0.3%*|**28%**|**3%**|\\n|***PA***|14|7|4|2|1|1|1|**2%**|*0.3%*|**50%**|**7%**|\\n|***RN***|48|18|13|8|5|2|2|**5%**|*0.5%*|**38%**|**4%**|\\n|***SN***|59|31|23|15|7|5|5|**8%**|*1.3%*|**53%**|**8%**|\\n|***US***|84|26|17|14|10|6|4|**7%**|*1.0%*|**31%**|**5%**|\\n|***Grand Total***|391|145|103|67|41|28|20|**37%**|*5.1%*|**37%**|**5%**|\", \"link_title\": \"Wow\", \"author_flair_css_class\": null, \"name\": \"t1_eubfcvm\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENation\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ETotal Ships\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENumber of ships with 50%+ W/R\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENumber of ships with 51%+ W/R\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENumber of ships with 52%+ W/R\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENumber of ships with 53%+ W/R\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENumber of ships with 54%+ W/R\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ENumber of ships with 55%+ W/R\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003E50%+ WR ships as percent of all ships\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003E55%+ WR ships as percent of all ships\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003E50%+ WR ships as percent that nation\\u0026#39;s ships\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003E55%+ WR ships as percent that nation\\u0026#39;s ships\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EJP\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E8%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E1.0%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E36%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E4%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EKM\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E4%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E0.3%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E32%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E2%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EMN\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E3%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E0.3%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E28%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E3%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EPA\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E2%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E0.3%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E50%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E7%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ERN\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E5%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E0.5%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E38%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E4%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ESN\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E8%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E1.3%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E53%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E8%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EUS\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E7%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E1.0%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E31%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E5%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EGrand Total\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E391\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E145\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E103\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E37%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E5.1%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E37%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E5%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfoxuk/wow/eubfcvm/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfoxuk/wow/\", \"report_reasons\": null, \"link_author\": \"RevolutionaryPanic\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfoxuk/wow/\", \"created\": 1563675560.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfoxuk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eubfa9i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RevolutionaryPanic\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563646713.0, \"send_replies\": true, \"parent_id\": \"t3_cfoxuk\", \"score\": 1, \"author_fullname\": \"t2_s4x5r4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"|Nation|Total Ships|Number of ships with 50%+ W/R|Number of ships with 51%+ W/R|Number of ships with 52%+ W/R|Number of ships with 53%+ W/R|Number of ships with 54%+ W/R|Number of ships with 55%+ W/R|50%+ WR ships as percent of all ships|55%+ WR ships as percent of all ships|50%+ WR ships as percent that nation's ships|55%+ WR ships as percent that nation's ships|\\n:--|--:|--:|--:|--:|--:|--:|--:|--:|--:|--:|--:|\\n|JP|91|33|28|15|10|8|4|**8%**|*1.0%*|**36%**|**4%**|\\n|KM|44|14|10|7|3|3|1|**4%**|*0.3%*|**32%**|**2%**|\\n|MN|39|11|5|3|3|1|1|**3%**|*0.3%*|**28%**|**3%**|\\n|PA|14|7|4|2|1|1|1|**2%**|*0.3%*|**50%**|**7%**|\\n|RN|48|18|13|8|5|2|2|**5%**|*0.5%*|**38%**|**4%**|\\n|SN|59|31|23|15|7|5|5|**8%**|*1.3%*|**53%**|**8%**|\\n|US|84|26|17|14|10|6|4|**7%**|*1.0%*|**31%**|**5%**|\\n|Grand Total|391|145|103|67|41|28|20|**37%**|*5.1%*|**37%**|**5%**|\", \"link_title\": \"Wow\", \"author_flair_css_class\": null, \"name\": \"t1_eubfa9i\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ENation\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ETotal Ships\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ENumber of ships with 50%+ W/R\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ENumber of ships with 51%+ W/R\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ENumber of ships with 52%+ W/R\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ENumber of ships with 53%+ W/R\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ENumber of ships with 54%+ W/R\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ENumber of ships with 55%+ W/R\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E50%+ WR ships as percent of all ships\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E55%+ WR ships as percent of all ships\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E50%+ WR ships as percent that nation\\u0026#39;s ships\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E55%+ WR ships as percent that nation\\u0026#39;s ships\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJP\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E8%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E1.0%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E36%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E4%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EKM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E4%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E0.3%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E32%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E2%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E3%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E0.3%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E28%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E3%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E2%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E0.3%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E50%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E7%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E5%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E0.5%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E38%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E4%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E8%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E1.3%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E53%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E8%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EUS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E7%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E1.0%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E31%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E5%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGrand Total\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E391\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E145\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E103\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E37%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cem\\u003E5.1%\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E37%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E5%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfoxuk/wow/eubfa9i/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfoxuk/wow/\", \"report_reasons\": null, \"link_author\": \"RevolutionaryPanic\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfoxuk/wow/\", \"created\": 1563675513.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfoxuk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eubf94z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RevolutionaryPanic\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563646693.0, \"send_replies\": true, \"parent_id\": \"t3_cfoxuk\", \"score\": 1, \"author_fullname\": \"t2_s4x5r4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Nation\\tTotal Ships\\tNumber of ships with 50%+ W/R\\tNumber of ships with 51%+ W/R\\tNumber of ships with 52%+ W/R\\tNumber of ships with 53%+ W/R\\tNumber of ships with 54%+ W/R\\tNumber of ships with 55%+ W/R\\t50%+ WR ships as percent of all ships\\t55%+ WR ships as percent of all ships\\t50%+ WR ships as percent that nation's ships\\t55%+ WR ships as percent that nation's ships\\nJP\\t91\\t33\\t28\\t15\\t10\\t8\\t4\\t8%\\t1.0%\\t36%\\t4%\\nKM\\t44\\t14\\t10\\t7\\t3\\t3\\t1\\t4%\\t0.3%\\t32%\\t2%\\nMN\\t39\\t11\\t5\\t3\\t3\\t1\\t1\\t3%\\t0.3%\\t28%\\t3%\\nPA\\t14\\t7\\t4\\t2\\t1\\t1\\t1\\t2%\\t0.3%\\t50%\\t7%\\nRN\\t48\\t18\\t13\\t8\\t5\\t2\\t2\\t5%\\t0.5%\\t38%\\t4%\\nSN\\t59\\t31\\t23\\t15\\t7\\t5\\t5\\t8%\\t1.3%\\t53%\\t8%\\nUS\\t84\\t26\\t17\\t14\\t10\\t6\\t4\\t7%\\t1.0%\\t31%\\t5%\\nGrand Total\\t391\\t145\\t103\\t67\\t41\\t28\\t20\\t37%\\t5.1%\\t37%\\t5%\", \"link_title\": \"Wow\", \"author_flair_css_class\": null, \"name\": \"t1_eubf94z\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENation Total Ships Number of ships with 50%+ W/R Number of ships with 51%+ W/R Number of ships with 52%+ W/R Number of ships with 53%+ W/R Number of ships with 54%+ W/R Number of ships with 55%+ W/R 50%+ WR ships as percent of all ships 55%+ WR ships as percent of all ships 50%+ WR ships as percent that nation\\u0026#39;s ships 55%+ WR ships as percent that nation\\u0026#39;s ships\\nJP 91 33 28 15 10 8 4 8% 1.0% 36% 4%\\nKM 44 14 10 7 3 3 1 4% 0.3% 32% 2%\\nMN 39 11 5 3 3 1 1 3% 0.3% 28% 3%\\nPA 14 7 4 2 1 1 1 2% 0.3% 50% 7%\\nRN 48 18 13 8 5 2 2 5% 0.5% 38% 4%\\nSN 59 31 23 15 7 5 5 8% 1.3% 53% 8%\\nUS 84 26 17 14 10 6 4 7% 1.0% 31% 5%\\nGrand Total 391 145 103 67 41 28 20 37% 5.1% 37% 5%\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfoxuk/wow/eubf94z/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfoxuk/wow/\", \"report_reasons\": null, \"link_author\": \"RevolutionaryPanic\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfoxuk/wow/\", \"created\": 1563675493.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfoxuk\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eubf6i5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"RevolutionaryPanic\", \"num_comments\": 4, \"can_mod_post\": false, \"created_utc\": 1563646647.0, \"send_replies\": true, \"parent_id\": \"t3_cfoxuk\", \"score\": 1, \"author_fullname\": \"t2_s4x5r4h\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"|Nation|Total Ships|Number of ships with 50%+ W/R|Number of ships with 51%+ W/R|Number of ships with 52%+ W/R|Number of ships with 53%+ W/R|Number of ships with 54%+ W/R|Number of ships with 55%+ W/R|50%+ WR ships as percent of all ships|55%+ WR ships as percent of all ships|50%+ WR ships as percent that nation's ships|55%+ WR ships as percent that nation's ships|\\n:--|--:|--:|--:|--:|--:|--:|--:|--:|--:|--:|--:|\\n|JP|91|33|28|15|10|8|4|**8%**|**1%**|**36%**|**4%**|\\n|KM|44|14|10|7|3|3|1|**4%**|**0%**|**32%**|**2%**|\\n|MN|39|11|5|3|3|1|1|**3%**|**0%**|**28%**|**3%**|\\n|PA|14|7|4|2|1|1|1|**2%**|**0%**|**50%**|**7%**|\\n|RN|48|18|13|8|5|2|2|**5%**|**1%**|**38%**|**4%**|\\n|SN|59|31|23|15|7|5|5|**8%**|**1%**|**53%**|**8%**|\\n|US|84|26|17|14|10|6|4|**7%**|**1%**|**31%**|**5%**|\\n|Grand Total|391|145|103|67|41|28|20|**37%**|**5%**|**37%**|**5%**|\", \"link_title\": \"Wow\", \"author_flair_css_class\": null, \"name\": \"t1_eubf6i5\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003ENation\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ETotal Ships\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ENumber of ships with 50%+ W/R\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ENumber of ships with 51%+ W/R\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ENumber of ships with 52%+ W/R\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ENumber of ships with 53%+ W/R\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ENumber of ships with 54%+ W/R\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003ENumber of ships with 55%+ W/R\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E50%+ WR ships as percent of all ships\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E55%+ WR ships as percent of all ships\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E50%+ WR ships as percent that nation\\u0026#39;s ships\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E55%+ WR ships as percent that nation\\u0026#39;s ships\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EJP\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E91\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E33\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E8%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E1%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E36%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E4%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EKM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E44\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E4%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E0%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E32%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E2%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E39\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E3\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E3%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E0%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E28%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E3%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPA\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E2%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E0%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E50%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E7%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ERN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E48\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E8\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E2\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E5%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E1%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E38%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E4%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ESN\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E59\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E31\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E7\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E8%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E1%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E53%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E8%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EUS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E84\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E26\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E17\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E14\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E6\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E4\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E7%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E1%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E31%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E5%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGrand Total\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E391\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E145\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E103\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E67\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E41\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E37%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E5%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E37%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E\\u003Cstrong\\u003E5%\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfoxuk/wow/eubf6i5/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfoxuk/wow/\", \"report_reasons\": null, \"link_author\": \"RevolutionaryPanic\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfoxuk/wow/\", \"created\": 1563675447.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfdqcs\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu9ikzy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"D33pfield\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563581542.0, \"send_replies\": true, \"parent_id\": \"t3_cfdqcs\", \"score\": 3, \"author_fullname\": \"t2_dggz5\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"No idea why im subbed. Guess I like the 100% randomness this sub gives me in my front page sometimes.\", \"link_title\": \"Why do people join this sub wtf\", \"author_flair_css_class\": null, \"name\": \"t1_eu9ikzy\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo idea why im subbed. Guess I like the 100% randomness this sub gives me in my front page sometimes.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfdqcs/why_do_people_join_this_sub_wtf/eu9ikzy/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfdqcs/why_do_people_join_this_sub_wtf/\", \"report_reasons\": null, \"link_author\": \"auesthesthicc\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfdqcs/why_do_people_join_this_sub_wtf/\", \"created\": 1563610342.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfdqcs\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu978k7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"77eagles77floyd77\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563573315.0, \"send_replies\": true, \"parent_id\": \"t3_cfdqcs\", \"score\": 5, \"author_fullname\": \"t2_1ahyf3ut\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"mods ban pls\", \"link_title\": \"Why do people join this sub wtf\", \"author_flair_css_class\": null, \"name\": \"t1_eu978k7\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emods ban pls\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfdqcs/why_do_people_join_this_sub_wtf/eu978k7/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfdqcs/why_do_people_join_this_sub_wtf/\", \"report_reasons\": null, \"link_author\": \"auesthesthicc\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfdqcs/why_do_people_join_this_sub_wtf/\", \"created\": 1563602115.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cf1hor\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu96vwb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"auesthesthicc\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563573079.0, \"send_replies\": true, \"parent_id\": \"t3_cf1hor\", \"score\": 1, \"author_fullname\": \"t2_3cnkgwgn\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Looks yummy\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu96vwb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks yummy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cf1hor/test/eu96vwb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cf1hor/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cf1hor/test/\", \"created\": 1563601879.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfbmhi\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu8rkd3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"firejava\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563563117.0, \"send_replies\": true, \"parent_id\": \"t3_cfbmhi\", \"score\": 1, \"author_fullname\": \"t2_getrd\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u0026#x200B;\\n\\n|ID|**department\\\\_\\\\_description**|**class\\\\_2\\\\_code**|**class\\\\_2\\\\_description**|**\\\\_2019\\\\_council\\\\_adopted**|**account\\\\_number\\\\_2**|**expense\\\\_category\\\\_code**|**expense\\\\_category\\\\_name**|\\n|:-|:-|:-|:-|:-|:-|:-|:-|\\n|1195|Information Technology|10|Personal Services|199800|10.1|S|Non-Civil Service Salaries|\\n|1196|Information Technology|10|Personal Services|787000|10.11|S|Non-Civil Service Salaries|\\n|1197|Information Technology|10|Personal Services|0|10.11|O|Overtime|\\n|1198|Information Technology|10|Personal Services|502400|10.12|S|Non-Civil Service Salaries|\\n|1199|Information Technology|10|Personal Services|3000|10.12|O|Overtime|\\n|1200|Information Technology|10|Personal Services|28500|10.15|S|Non-Civil Service Salaries|\\n|1201|Information Technology|10|Personal Services|364100|10.18|ERS|Employee Retirement System|\\n|1202|Information Technology|10|Personal Services|9500|10.18|DC|Deferred Compensation Plan|\\n|1203|Information Technology|10|Personal Services|294100|10.18001|Ins|Health Insurance|\\n|1204|Information Technology|10|Personal Services|0|10.19001|S|Non-Civil Service Salaries|\\n|1205|Information Technology|10|Personal Services|22100|10.19001|B|Other Benefits|\\n|1206|Information Technology|10|Personal Services|2000|10.19009|C|Clothing|\\n|1207|Information Technology|10|Personal Services|13200|10.19009|T|Training \\u0026 Travel \\u0026 Memberships|\\n|1208|Information Technology|10|Personal Services|300|10.19009|T|Training \\u0026 Travel \\u0026 Memberships|\\n|1209|Information Technology|10|Personal Services|500|10.19009|Per|Personal Services|\\n|1210|Information Technology|20|Materials and Supplies|600|20.2001|PPPO|Postage, Printing, Office|\\n|1211|Information Technology|20|Materials and Supplies|300|20.2001|PPPO|Postage, Printing, Office|\\n|1212|Information Technology|20|Materials and Supplies|25000|20.20015|PPPO|Postage, Printing, Office|\\n|1213|Information Technology|20|Materials and Supplies|10500|20.20021|Fuel|Fuel, Oil, Lube|\\n|1214|Information Technology|20|Materials and Supplies|100|20.20022|MCCS|Medical Custodial Chemicals Safety|\\n|1215|Information Technology|20|Materials and Supplies|700|20.20025|MS|Misc materials \\u0026 supplies|\\n|1216|Information Technology|20|Materials and Supplies|42300|20.25052|Equip|Vehicles, Equipment, Computer|\\n|1217|Information Technology|20|Materials and Supplies|0|20.25059|Maint|Maintenance|\\n|1218|Information Technology|30|Contractual Services|33800|30.3001|U|Utilities (Elec, Gas, Phone)|\\n|1219|Information Technology|30|Contractual Services|10500|30.3002|WU|Wireless Services|\\n|1220|Information Technology|30|Contractual Services|282200|30.3003|CSL|Contractual Services Rentals|\\n|1221|Information Technology|30|Contractual Services|794100|30.3004|CSM|Contractual Services Maintenance \\u0026 Repairs|\\n|1222|Information Technology|30|Contractual Services|86800|30.3005|Prof Serv|Professional Services|\\n|1223|Information Technology|45|Improvements and Equipment|30400|45.48554|Equip|Vehicles, Equipment, Computer|\\n|1224|Information Technology|45|Improvements and Equipment|174100|45.48555|Equip|Vehicles, Equipment, Computer|\\n|1225|Information Technology|45|Improvements and Equipment|700|45.48556|Equip|Vehicles, Equipment, Computer|\\n|1226|Information Technology|45|Improvements and Equipment|20400|45.48556|Equip|Vehicles, Equipment, Computer|\\n|1227|Information Technology|45|Improvements and Equipment|0|45.48556|Equip|Vehicles, Equipment, Computer|\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu8rkd3\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EID\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003Edepartment__description\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003Eclass_2_code\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003Eclass_2_description\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E_2019_council_adopted\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003Eaccount_number_2\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003Eexpense_category_code\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003E\\u003Cstrong\\u003Eexpense_category_name\\u003C/strong\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1195\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E199800\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.1\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ES\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon-Civil Service Salaries\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1196\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E787000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ES\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon-Civil Service Salaries\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1197\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.11\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EOvertime\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1198\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E502400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ES\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon-Civil Service Salaries\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1199\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E3000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.12\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EOvertime\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1200\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E28500\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.15\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ES\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon-Civil Service Salaries\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1201\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E364100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EERS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEmployee Retirement System\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1202\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E9500\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EDeferred Compensation Plan\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1203\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E294100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.18001\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EIns\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EHealth Insurance\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1204\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.19001\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ES\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ENon-Civil Service Salaries\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1205\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E22100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.19001\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EB\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EOther Benefits\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1206\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E2000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.19009\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EC\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EClothing\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1207\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E13200\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.19009\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETraining \\u0026amp; Travel \\u0026amp; Memberships\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1208\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E300\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.19009\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ET\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETraining \\u0026amp; Travel \\u0026amp; Memberships\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1209\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E500\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10.19009\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPer\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPersonal Services\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1210\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMaterials and Supplies\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E600\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20.2001\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPPPO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPostage, Printing, Office\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1211\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMaterials and Supplies\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E300\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20.2001\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPPPO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPostage, Printing, Office\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1212\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMaterials and Supplies\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E25000\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20.20015\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPPPO\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EPostage, Printing, Office\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1213\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMaterials and Supplies\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10500\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20.20021\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFuel\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EFuel, Oil, Lube\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1214\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMaterials and Supplies\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20.20022\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMCCS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMedical Custodial Chemicals Safety\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1215\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMaterials and Supplies\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E700\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20.20025\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMS\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMisc materials \\u0026amp; supplies\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1216\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMaterials and Supplies\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E42300\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20.25052\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEquip\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EVehicles, Equipment, Computer\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1217\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMaterials and Supplies\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20.25059\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMaint\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMaintenance\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1218\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EContractual Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E33800\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30.3001\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EUtilities (Elec, Gas, Phone)\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1219\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EContractual Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E10500\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30.3002\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EWU\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EWireless Services\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1220\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EContractual Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E282200\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30.3003\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ECSL\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EContractual Services Rentals\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1221\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EContractual Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E794100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30.3004\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ECSM\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EContractual Services Maintenance \\u0026amp; Repairs\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1222\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EContractual Services\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E86800\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30.3005\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EProf Serv\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EProfessional Services\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1223\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EImprovements and Equipment\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E30400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E45.48554\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEquip\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EVehicles, Equipment, Computer\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1224\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EImprovements and Equipment\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E174100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E45.48555\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEquip\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EVehicles, Equipment, Computer\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1225\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EImprovements and Equipment\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E700\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E45.48556\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEquip\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EVehicles, Equipment, Computer\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1226\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EImprovements and Equipment\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E20400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E45.48556\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEquip\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EVehicles, Equipment, Computer\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E1227\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EInformation Technology\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E45\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EImprovements and Equipment\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E0\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E45.48556\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EEquip\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EVehicles, Equipment, Computer\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfbmhi/test/eu8rkd3/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfbmhi/test/\", \"report_reasons\": null, \"link_author\": \"firejava\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfbmhi/test/\", \"created\": 1563591917.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfbhez\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu8qeqz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"VelvetGoatcheese\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563562390.0, \"send_replies\": true, \"parent_id\": \"t3_cfbhez\", \"score\": 1, \"author_fullname\": \"t2_ag8yk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Would this [site](http://www.sanalbasin.com/moda-dergileri) help?\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu8qeqz\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWould this \\u003Ca href=\\\"http://www.sanalbasin.com/moda-dergileri\\\"\\u003Esite\\u003C/a\\u003E help?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfbhez/test/eu8qeqz/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfbhez/test/\", \"report_reasons\": null, \"link_author\": \"VelvetGoatcheese\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfbhez/test/\", \"created\": 1563591190.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cfbhez\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu8qczw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"VelvetGoatcheese\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563562361.0, \"send_replies\": true, \"parent_id\": \"t3_cfbhez\", \"score\": 1, \"author_fullname\": \"t2_ag8yk\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Another [test](https://youtube.com)\", \"link_title\": \"Test\", \"author_flair_css_class\": null, \"name\": \"t1_eu8qczw\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnother \\u003Ca href=\\\"https://youtube.com\\\"\\u003Etest\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cfbhez/test/eu8qczw/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cfbhez/test/\", \"report_reasons\": null, \"link_author\": \"VelvetGoatcheese\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/cfbhez/test/\", \"created\": 1563591161.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_cf9unu\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu8csfj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"gifv-bot\", \"num_comments\": 1, \"can_mod_post\": false, \"created_utc\": 1563554515.0, \"send_replies\": true, \"parent_id\": \"t3_cf9unu\", \"score\": 1, \"author_fullname\": \"t2_snc1l\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"[GIFV link](https://i.imgur.com/ajSlNCE.gifv)\\r\\n\\r\\n---\\r\\n\\r\\n_^I ^am ^a ^bot. ^[FAQ](https://www.reddit.com/r/livven/wiki/gifv-bot) ^// ^[code](https://github.com/Livven/GifvBot)_\", \"link_title\": \"test\", \"author_flair_css_class\": null, \"name\": \"t1_eu8csfj\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/ajSlNCE.gifv\\\"\\u003EGIFV link\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/livven/wiki/gifv-bot\\\"\\u003EFAQ\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003E//\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"https://github.com/Livven/GifvBot\\\"\\u003Ecode\\u003C/a\\u003E\\u003C/sup\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/cf9unu/test/eu8csfj/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/cf9unu/test/\", \"report_reasons\": null, \"link_author\": \"[deleted]\", \"author_flair_text\": null, \"link_url\": \"https://imgur.com/ajSlNCE\", \"created\": 1563583315.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceso4r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4mah1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MateFlasche\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563457892.0, \"send_replies\": true, \"parent_id\": \"t1_eu4m0is\", \"score\": 1, \"author_fullname\": \"t2_s1zqz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Chad Markdown Editor vs Virgin Fancy Pants Editor\", \"link_title\": \"German Anki Collaboration\", \"author_flair_css_class\": null, \"name\": \"t1_eu4mah1\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EChad Markdown Editor vs Virgin Fancy Pants Editor\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ceso4r/german_anki_collaboration/eu4mah1/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ceso4r/german_anki_collaboration/\", \"report_reasons\": null, \"link_author\": \"MateFlasche\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/ceso4r/german_anki_collaboration/\", \"created\": 1563486692.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_ceso4r\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu4m0is\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"MateFlasche\", \"num_comments\": 2, \"can_mod_post\": false, \"created_utc\": 1563457687.0, \"send_replies\": true, \"parent_id\": \"t3_ceso4r\", \"score\": 1, \"author_fullname\": \"t2_s1zqz\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Anybody tell me why my headers aren't showing up? :/\", \"link_title\": \"German Anki Collaboration\", \"author_flair_css_class\": null, \"name\": \"t1_eu4m0is\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnybody tell me why my headers aren\\u0026#39;t showing up? :/\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/ceso4r/german_anki_collaboration/eu4m0is/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/ceso4r/german_anki_collaboration/\", \"report_reasons\": null, \"link_author\": \"MateFlasche\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/ceso4r/german_anki_collaboration/\", \"created\": 1563486487.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3ru0k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563423326.0, \"send_replies\": true, \"parent_id\": \"t1_eu37rdo\", \"score\": 1, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Yay!!\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_eu3ru0k\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYay!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/eu3ru0k/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1563452126.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu3rtel\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"1LordOfAwesome\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563423311.0, \"send_replies\": true, \"parent_id\": \"t1_eu37srb\", \"score\": 2, \"author_fullname\": \"t2_hs1my81\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Np my dude :)\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_eu3rtel\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENp my dude :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/eu3rtel/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1563452111.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu37srb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Ceedubsxx\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563407558.0, \"send_replies\": true, \"parent_id\": \"t1_eu2w8q0\", \"score\": 2, \"author_fullname\": \"t2_3vl0vt7p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"Ha ha! I did it. Thanks for your help.\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_eu37srb\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHa ha! I did it. Thanks for your help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/eu37srb/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1563436358.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_bpezwp\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"eu37rdo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"no_follow\": true, \"author\": \"Ceedubsxx\", \"num_comments\": 10, \"can_mod_post\": false, \"created_utc\": 1563407530.0, \"send_replies\": true, \"parent_id\": \"t1_eu2w8q0\", \"score\": 2, \"author_fullname\": \"t2_3vl0vt7p\", \"over_18\": false, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2waml\", \"body\": \"\\u003E Oh I'm on my iPad rn so me too haha. You should see it when you hit the '123 the' button and then the '#+=' one. At least, that's what it looks like on Gboard haha\\n\\nLike this? I typed a \\u003E then pasted the text. Then, on a new line, wrote my comments. Fingers crossed.\", \"link_title\": \"How do I do quotes?\", \"author_flair_css_class\": null, \"name\": \"t1_eu37rdo\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EOh I\\u0026#39;m on my iPad rn so me too haha. You should see it when you hit the \\u0026#39;123 the\\u0026#39; button and then the \\u0026#39;#+=\\u0026#39; one. At least, that\\u0026#39;s what it looks like on Gboard haha\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ELike this? I typed a \\u0026gt; then pasted the text. Then, on a new line, wrote my comments. Fingers crossed.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"stickied\": false, \"can_gild\": true, \"subreddit\": \"PostPreview\", \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/eu37rdo/\", \"num_reports\": null, \"link_permalink\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"report_reasons\": null, \"link_author\": \"1LordOfAwesome\", \"author_flair_text\": null, \"link_url\": \"https://www.reddit.com/r/PostPreview/comments/bpezwp/how_do_i_do_quotes/\", \"created\": 1563436330.0, \"collapsed\": false, \"subreddit_name_prefixed\": \"r/PostPreview\", \"controversiality\": 0, \"locked\": false, \"author_flair_background_color\": null, \"mod_reports\": [], \"quarantine\": false, \"subreddit_type\": \"public\", \"ups\": 2}}], \"after\": \"t1_eu37rdo\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["323979"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:10:01 GMT"], "x-ratelimit-remaining": ["598.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["2"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579401.087439,VS0,VE525"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["599"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100"}, "recorded_at": "2019-08-12T03:10:01"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_ewmykt2"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:10:02 GMT"], "x-ratelimit-remaining": ["597.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["3"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579403.661590,VS0,VE59"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["598"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/comments/?raw_json=1&limit=100&before=t1_ewmykt2"}, "recorded_at": "2019-08-12T03:10:02"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 100, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Test......gkckvkvjdydoyzigxitz\\n\\n- bananna\\n- orange\\n- lemon\\n- green\\n- blueberry\\n- what if this text goes over? ?mmmmmmmmmmmmmmmmmmmmmmm\\n- purple\", \"author_fullname\": \"t2_g88am\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": true, \"name\": \"t3_cp5dce\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565601470.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest......gkckvkvjdydoyzigxitz\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003Ebananna\\u003C/li\\u003E\\n\\u003Cli\\u003Eorange\\u003C/li\\u003E\\n\\u003Cli\\u003Elemon\\u003C/li\\u003E\\n\\u003Cli\\u003Egreen\\u003C/li\\u003E\\n\\u003Cli\\u003Eblueberry\\u003C/li\\u003E\\n\\u003Cli\\u003Ewhat if this text goes over? ?mmmmmmmmmmmmmmmmmmmmmmm\\u003C/li\\u003E\\n\\u003Cli\\u003Epurple\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cp5dce\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Whowouldvethought\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cp5dce/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cp5dce/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565572670.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://i.redd.it/5xkpmetfzwf31.jpg\\n\\nhttps://i.redd.it/uv1d3txgzwf31.jpg\\n\\nHere is the SCATTERSEED cards and materials:\\n\\n[https://drive.google.com/drive/folders/1zKhfg70Fa8aGKJZ\\\\_huPw...](https://drive.google.com/drive/folders/1zKhfg70Fa8aGKJZ_huPwA_FxAo4i5dDV?usp=sharing) \\n\\n\\n**Theme/playstyle:**\\n\\nThe Scatterseed is a ranged damage/support class with low HP. Her purpose in the field is to use nature (a mixture of seeds, plants and trees) as a force to damage and impair her enemies and support allies that stay within her reach. Due to her squishiness, she is best at using nature to attack from a distance by setting up seeds for larger attacks, while offering a \\u201cpassive\\u201d bonus to allies (or negative to enemies) through the use of trees.\\n\\n\\\\------------\\n\\n**Some of the major mechanics include:**\\n\\n* You can give Allies bonuses if they sacrifice some HP\\n* AOE support abilities \\u2013 long discard effects\\n* Non-loss spawns (I'm calling them spawns as they act like enemy spawns per the rules as opposed to summons)\\n* \\u201cTrap\\u201d laying \\u2013 through seeds that can grow into plants\\n* **CORRUPTION** \\u2013 a new negative condition that can be applied to enemies\\n\\n\\\\------------\\n\\nIf you have time to play test this class that'd be awesome and I'd love any feedback. I've tried to play test this myself but due to work I haven't had much time to do that to see all the kinks.\\n\\n\\\\------------\\n\\n**Notes:**\\n\\nAlso I've seen the Rootwhisperer ([https://boardgamegeek.com/thread/2210245/custom-class-human-...](https://boardgamegeek.com/thread/2210245/custom-class-human-rootwhisperer)) and that looks sweet as. Any similarities (mainly the roots vs seeds thing) was absolutely unintentional. \\n\\nFor more details head over to the original thread here:\\n\\n[https://boardgamegeek.com/article/32669492](https://boardgamegeek.com/article/32669492)\\n\\nThanks!\", \"author_fullname\": \"t2_13rkvwk2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TEST\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 91, \"hide_score\": false, \"media_metadata\": {\"5xkpmetfzwf31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 928, \"x\": 1418, \"u\": \"https://i.redd.it/5xkpmetfzwf31.jpg\"}, \"m\": \"image/jpg\", \"id\": \"5xkpmetfzwf31\"}, \"uv1d3txgzwf31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 928, \"x\": 1418, \"u\": \"https://i.redd.it/uv1d3txgzwf31.jpg\"}, \"m\": \"image/jpg\", \"id\": \"uv1d3txgzwf31\"}}, \"name\": \"t3_cp4zht\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/H9vAdSZuypFRswOF-hsyuGMba4gpo_fZE3m1crRWWig.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565599410.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/5xkpmetfzwf31.jpg\\\"\\u003Ehttps://i.redd.it/5xkpmetfzwf31.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/uv1d3txgzwf31.jpg\\\"\\u003Ehttps://i.redd.it/uv1d3txgzwf31.jpg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere is the SCATTERSEED cards and materials:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://drive.google.com/drive/folders/1zKhfg70Fa8aGKJZ_huPwA_FxAo4i5dDV?usp=sharing\\\"\\u003Ehttps://drive.google.com/drive/folders/1zKhfg70Fa8aGKJZ_huPw...\\u003C/a\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETheme/playstyle:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Scatterseed is a ranged damage/support class with low HP. Her purpose in the field is to use nature (a mixture of seeds, plants and trees) as a force to damage and impair her enemies and support allies that stay within her reach. Due to her squishiness, she is best at using nature to attack from a distance by setting up seeds for larger attacks, while offering a \\u201cpassive\\u201d bonus to allies (or negative to enemies) through the use of trees.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E------------\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESome of the major mechanics include:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EYou can give Allies bonuses if they sacrifice some HP\\u003C/li\\u003E\\n\\u003Cli\\u003EAOE support abilities \\u2013 long discard effects\\u003C/li\\u003E\\n\\u003Cli\\u003ENon-loss spawns (I\\u0026#39;m calling them spawns as they act like enemy spawns per the rules as opposed to summons)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u201cTrap\\u201d laying \\u2013 through seeds that can grow into plants\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ECORRUPTION\\u003C/strong\\u003E \\u2013 a new negative condition that can be applied to enemies\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E------------\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you have time to play test this class that\\u0026#39;d be awesome and I\\u0026#39;d love any feedback. I\\u0026#39;ve tried to play test this myself but due to work I haven\\u0026#39;t had much time to do that to see all the kinks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E------------\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENotes:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso I\\u0026#39;ve seen the Rootwhisperer (\\u003Ca href=\\\"https://boardgamegeek.com/thread/2210245/custom-class-human-rootwhisperer\\\"\\u003Ehttps://boardgamegeek.com/thread/2210245/custom-class-human-...\\u003C/a\\u003E) and that looks sweet as. Any similarities (mainly the roots vs seeds thing) was absolutely unintentional. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor more details head over to the original thread here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://boardgamegeek.com/article/32669492\\\"\\u003Ehttps://boardgamegeek.com/article/32669492\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cp4zht\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WeetbixAsAs\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cp4zht/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cp4zht/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565570610.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u003Cdiv class='fluid-width-video-wrapper'\\u003E\\u003Ciframe width='640' height='480' frameborder='0' allowfullscreen src='https://www.mlssoccer.com/iframe-video?brightcove_id=6071752479001\\u0026brightcove_player_id=default\\u0026brightcove_account_id=5530036774001'\\u003E\\u003C/iframe\\u003E\\u003C/div\\u003E\", \"author_fullname\": \"t2_3cgu5o7m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cp4ujh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565598678.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026lt;div class=\\u0026#39;fluid-width-video-wrapper\\u0026#39;\\u0026gt;\\u0026lt;iframe width=\\u0026#39;640\\u0026#39; height=\\u0026#39;480\\u0026#39; frameborder=\\u0026#39;0\\u0026#39; allowfullscreen src=\\u0026#39;https://www.mlssoccer.com/iframe-video?brightcove_id=6071752479001\\u0026amp;brightcove_player_id=default\\u0026amp;brightcove_account_id=5530036774001\\u0026#39;\\u0026gt;\\u0026lt;/iframe\\u0026gt;\\u0026lt;/div\\u0026gt;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cp4ujh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"QuickMolasses\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cp4ujh/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cp4ujh/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565569878.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[nice](https://imgur.com/QxvF8nN)\", \"author_fullname\": \"t2_j843ij2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"hey\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cp3s8f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565593126.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/QxvF8nN\\\"\\u003Enice\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/uGqC7ltL_K8c1Y228uMCBF-RE403SkjaJykVFrlNlUI.jpg?auto=webp\\u0026s=df394f1a9b64c80d6a68d29b7f1e8ad0b2cfed87\", \"width\": 1600, \"height\": 2460}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/uGqC7ltL_K8c1Y228uMCBF-RE403SkjaJykVFrlNlUI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=aec163baf205be1fb7051132154ffb5d8042da77\", \"width\": 108, \"height\": 166}, {\"url\": \"https://external-preview.redd.it/uGqC7ltL_K8c1Y228uMCBF-RE403SkjaJykVFrlNlUI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=7097ad28eef01ac237660b471dbd5d86e412e8bc\", \"width\": 216, \"height\": 332}, {\"url\": \"https://external-preview.redd.it/uGqC7ltL_K8c1Y228uMCBF-RE403SkjaJykVFrlNlUI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3b0d9bf9e0a4aed853b996ff830d41b7fded2f37\", \"width\": 320, \"height\": 492}, {\"url\": \"https://external-preview.redd.it/uGqC7ltL_K8c1Y228uMCBF-RE403SkjaJykVFrlNlUI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=18dd88886607fcf18c32a2622f80121dd44a2dd0\", \"width\": 640, \"height\": 984}, {\"url\": \"https://external-preview.redd.it/uGqC7ltL_K8c1Y228uMCBF-RE403SkjaJykVFrlNlUI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=59bfb7ae8362db167f47470e7d736de67809118a\", \"width\": 960, \"height\": 1476}, {\"url\": \"https://external-preview.redd.it/uGqC7ltL_K8c1Y228uMCBF-RE403SkjaJykVFrlNlUI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=088911cd379d14ebdc435966d38e78ffca5fbc5c\", \"width\": 1080, \"height\": 1660}], \"variants\": {}, \"id\": \"5ZNZYch3xy-CgwqCCE6Stf9S4uwvIou_tOxfGIaR1J0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cp3s8f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mothman232\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cp3s8f/hey/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cp3s8f/hey/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565564326.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\n### Little FAQ\\n\\nHow to buy? \\n\\u003EJust add me on steam and send messege!\\n\\nHow can I pay for skin? \\n\\u003EI will trade them for CS:GO skins or keys.\\n\\nHow much one CS:GO key is valued? \\n\\u003E$1.95 for one. It's becouse keys can be buyed for $1.85. \\n\\nCan you give me one skin?\\n\\u003ENo.\\n\\nWhy I can trust you? \\n\\u003EI've 135 level on steam, a lot of +rep's and I'm trader for 6 years. \\n\\n**[MY STEAM PROFILE](https://cs.deals/csgoScreenshot/NzMyMjE3.jpg)**\\n\\n\\n###**USP-S | Overgrowth (Battle-Scared)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTc2.jpg)\\n\\n***\\n\\n###**AWP | Redline (Field-Tested)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTc1.jpg)\\n\\n***\\n\\n###**M4A1-S | Guardian (Minimal Wear)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMjE3.jpg)\\n\\n***\\n\\n###**M4A1-S | Guardian (Field-Tested)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTc0.jpg)\\n\\n***\\n\\n###**AK-47 | Blue Laminate (Minimal Wear)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTcz.jpg)\\n\\n***\\n\\n###**M4A1-S | Guardian (Field-Tested)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTcx.jpg)\\n\\n***\\n\\n###**M4A1-S | Nitro (Battle-Scared)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTcw.jpg)\\n\\n***\\n\\n###**SG 553 | Tornado (Well-Worn)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTcw.jpg)\\n\\n***\\n\\n###**AK-47 | Blue Laminate (Minimal Wear)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTY4.jpg)\\n\\n***\\n\\n###**M4A1-S | Blood Tiger (Factory New)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTY3.jpg)\\n\\n***\\n\\n###**M4A1-S | Blood Tiger (Minimal Wear)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTY2.jpg)\\n\\n***\\n\\n###**AK-47 | Blue Laminate (Field-Tested)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTYz.jpg)\\n\\n***\\n\\n###**M4A1-S | Blood Tiger (Minimal Wear)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTYy.jpg)\\n\\n***\\n\\n###**M4A1-S | Dark Water (Minimal Wear)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTYx.jpg)\\n\\n***\\n\\n###**M4A1-S | Nitro (Well-Worn)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTYw.jpg)\\n\\n***\\n\\n###**M4A4 | Urban DDPAT (Field-Tested)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTU5.jpg)\\n\\n***\\n\\n###**StatTrak\\u2122 P250 | Hive (Minimal Wear)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTU4.jpg)\\n\\n***\\n\\n###**CZ75-Auto | Crimson Web (Minimal Wear)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTU2.jpg)\\n\\n***\\n\\n###**StatTrak\\u2122 Galil AR | Blue Titanium (Factory New)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTU1.jpg)\\n\\n***\\n\\n###**AK-47 | Blue Laminate (Field-Tested)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTU0.jpg)\\n\\n***\\n\\n###**StatTrak\\u2122 AK-47 | Blue Laminate (Field-Tested)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMzMjQw.jpg)\\n\\n***\\n\\n###**AK-47 | Blue Laminate (Field-Tested)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTUw.jpg)\\n\\n***\\n\\n###**AWP | Safari Mesh (Field-Tested)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTQz.jpg)\\n\\n***\\n\\n###**M4A1-S | Guardian (Factory New)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTQw.jpg)\\n\\n***\\n\\n###**M4A1-S | Dark Water (Field-Tested)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTQx.jpg)\\n\\n***\\n\\n###**StatTrak\\u2122 P250 | Hive (Minimal Wear)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTM3.jpg)\\n\\n***\\n\\n###**StatTrak\\u2122 MAC-10 | Heat (Field-Tested)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTM2.jpg)\\n\\n***\\n\\n###**StatTrak\\u2122 FAMAS | Sergeant (Battle-Scarred)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTMz.jpg)\\n\\n***\\n\\n###**StatTrak\\u2122 P90 | Blind Spot (Field-Tested)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTMx.jpg)\\n\\n***\\n\\n###**AWP | Electric Hive (Minimal Wear)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTI5.jpg)\\n\\n***\\n\\n###**Glock-18 | Dragon Tattoo (Factory New)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTI3.jpg)\\n\\n***\\n\\n###**Glock-18 | Blue Fissure (Minimal Wear)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTI1.jpg)\\n\\n***\\n\\n###**M4A1-S | Bright Water (Field-Tested)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTIx.jpg)\\n\\n***\\n\\n###**StatTrak\\u2122 P250 | Steel Disruption (Minimal Wear)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTE5.jpg)\\n\\n***\\n\\n###**AWP | Pink DDPAT (Minimal Wear)**\\n\\n[Screenshot](https://cs.deals/csgoScreenshot/NzMyMTE2.jpg)\", \"author_fullname\": \"t2_mpawx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TESTTT?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cozhif\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1565544868.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565572860.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch3\\u003ELittle FAQ\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EHow to buy? \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EJust add me on steam and send messege!\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EHow can I pay for skin? \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI will trade them for CS:GO skins or keys.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EHow much one CS:GO key is valued? \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E$1.95 for one. It\\u0026#39;s becouse keys can be buyed for $1.85. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ECan you give me one skin?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ENo.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhy I can trust you? \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI\\u0026#39;ve 135 level on steam, a lot of +rep\\u0026#39;s and I\\u0026#39;m trader for 6 years. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMjE3.jpg\\\"\\u003EMY STEAM PROFILE\\u003C/a\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EUSP-S | Overgrowth (Battle-Scared)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTc2.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EAWP | Redline (Field-Tested)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTc1.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EM4A1-S | Guardian (Minimal Wear)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMjE3.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EM4A1-S | Guardian (Field-Tested)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTc0.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EAK-47 | Blue Laminate (Minimal Wear)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTcz.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EM4A1-S | Guardian (Field-Tested)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTcx.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EM4A1-S | Nitro (Battle-Scared)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTcw.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003ESG 553 | Tornado (Well-Worn)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTcw.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EAK-47 | Blue Laminate (Minimal Wear)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTY4.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EM4A1-S | Blood Tiger (Factory New)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTY3.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EM4A1-S | Blood Tiger (Minimal Wear)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTY2.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EAK-47 | Blue Laminate (Field-Tested)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTYz.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EM4A1-S | Blood Tiger (Minimal Wear)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTYy.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EM4A1-S | Dark Water (Minimal Wear)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTYx.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EM4A1-S | Nitro (Well-Worn)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTYw.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EM4A4 | Urban DDPAT (Field-Tested)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTU5.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EStatTrak\\u2122 P250 | Hive (Minimal Wear)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTU4.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003ECZ75-Auto | Crimson Web (Minimal Wear)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTU2.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EStatTrak\\u2122 Galil AR | Blue Titanium (Factory New)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTU1.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EAK-47 | Blue Laminate (Field-Tested)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTU0.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EStatTrak\\u2122 AK-47 | Blue Laminate (Field-Tested)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMzMjQw.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EAK-47 | Blue Laminate (Field-Tested)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTUw.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EAWP | Safari Mesh (Field-Tested)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTQz.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EM4A1-S | Guardian (Factory New)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTQw.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EM4A1-S | Dark Water (Field-Tested)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTQx.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EStatTrak\\u2122 P250 | Hive (Minimal Wear)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTM3.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EStatTrak\\u2122 MAC-10 | Heat (Field-Tested)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTM2.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EStatTrak\\u2122 FAMAS | Sergeant (Battle-Scarred)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTMz.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EStatTrak\\u2122 P90 | Blind Spot (Field-Tested)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTMx.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EAWP | Electric Hive (Minimal Wear)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTI5.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EGlock-18 | Dragon Tattoo (Factory New)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTI3.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EGlock-18 | Blue Fissure (Minimal Wear)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTI1.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EM4A1-S | Bright Water (Field-Tested)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTIx.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EStatTrak\\u2122 P250 | Steel Disruption (Minimal Wear)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTE5.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Ch3\\u003E\\u003Cstrong\\u003EAWP | Pink DDPAT (Minimal Wear)\\u003C/strong\\u003E\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://cs.deals/csgoScreenshot/NzMyMTE2.jpg\\\"\\u003EScreenshot\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/QrryD0dHSFk5c7Aci-9qtYqDQqElWS49qJsI3PzM8wc.jpg?auto=webp\\u0026s=2d392c46834de50e8616827f1f6f54383d60b581\", \"width\": 1920, \"height\": 2060}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/QrryD0dHSFk5c7Aci-9qtYqDQqElWS49qJsI3PzM8wc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0efc4c014d3ab0c5fdedced37ef51f39f3f1e0dd\", \"width\": 108, \"height\": 115}, {\"url\": \"https://external-preview.redd.it/QrryD0dHSFk5c7Aci-9qtYqDQqElWS49qJsI3PzM8wc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=18d9777ea8e8c485f8bd6366db796ab6941df47c\", \"width\": 216, \"height\": 231}, {\"url\": \"https://external-preview.redd.it/QrryD0dHSFk5c7Aci-9qtYqDQqElWS49qJsI3PzM8wc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=33ad0e06b33d5a6a1c52a1f33eb8aace965655f4\", \"width\": 320, \"height\": 343}, {\"url\": \"https://external-preview.redd.it/QrryD0dHSFk5c7Aci-9qtYqDQqElWS49qJsI3PzM8wc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=eb68d9c03b3dbafe63bb7630dfb543eb613c3e55\", \"width\": 640, \"height\": 686}, {\"url\": \"https://external-preview.redd.it/QrryD0dHSFk5c7Aci-9qtYqDQqElWS49qJsI3PzM8wc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=7cd09c0175848c7d7ba6389d3c60a8f99dd15ecd\", \"width\": 960, \"height\": 1030}, {\"url\": \"https://external-preview.redd.it/QrryD0dHSFk5c7Aci-9qtYqDQqElWS49qJsI3PzM8wc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=aec3209614bc99d45e01de03c623d27cb828356a\", \"width\": 1080, \"height\": 1158}], \"variants\": {}, \"id\": \"WhWWT_s1GvwYEg-De69wuSmMT69UbanMWVVSswQzYtw\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cozhif\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Plasky\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cozhif/testtt/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cozhif/testtt/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565544060.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"|abc|||||\\n|:-----------|------------:|:------------:|:------------:|:------------:|\\n|ass|123|asd|asd|asd|\", \"author_fullname\": \"t2_2apug2on\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"tesst\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_couyzx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565546249.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003Eabc\\u003C/th\\u003E\\n\\u003Cth align=\\\"right\\\"\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003E\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003Eass\\u003C/td\\u003E\\n\\u003Ctd align=\\\"right\\\"\\u003E123\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Easd\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Easd\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003Easd\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"couyzx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lostinappalachia\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/couyzx/tesst/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/couyzx/tesst/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565517449.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I'm putting this here now to gauge the general reaction before putting it on the feedback site. The feedback site version will use more numbers rather than comparisons (e.g. 16 light level vs light level like that of a torch)\\n\\n###Summary\\n\\nChromium is a rare ore found in the End Islands that yields a multi-colored dust. This dust could be used for various purposes, including having redstone functionality. putting the Chromium Dust in a crafting grid in a 2x2 square would turn it into a silver Chromium Lump, which when placed on the ground can glow a little, and then smelting that would make it a [Chrome Colored](http://getwallpapers.com/wallpaper/full/a/5/9/883407-shiny-chrome-wallpaper-2604x1636-for-tablet.jpg) Ingot. The ingot can be used to enhance tools in unique ways. 9 ingots in a crafting grid reveals a decorative Chromium block.\\n\\n\\nChrome is the multicolored ore and powder, Chromium is a glossy, shiny silver colored Lump, Ingot, and Block\\n\\n\\n###Where is it?\\n\\n\\nIn the Outer End Highlands and Midlands, deep underground you may find Chrome Ore ( [Texture I made, very small image so zoom in](https://prnt.sc/or0tab) ) in a max vein of 1. It would be about 25x rarer than emerald. only 8 ores may spawn on any given island.\\n\\n\\n###What is Chrome Ore and Chrome Dust?\\n\\n\\nChrome Ore is textured like end stone with multicolored lumps inside of it. The texture I made was quick and dirty and should not be used. It requires a diamond pickaxe to mine and takes the same amount of time that it takes a wooden pickaxe to mine coal. Mining it gives you 1-2 Chrome Dust [Another QD texture](https://prnt.sc/or11hv). Chrome Dust can be placed like redstone, and can be attached to redstone. Chrome Dust is a substitute for redstone wires, and it does not lose strength with distance. Chrome Dust also passively produces light at the same power as full strength redstone.\\n\\n\\n###What are Chromium Lumps and Chromium Ingots?\\n\\n\\nWhen you put Chrome Dust in a crafting grid in a 4x4 pattern you will get Chromium Lumps. Chromium Lumps do not serve much purpose, but do have some functions. Chromium Lumps produce light when placed down, like groups of 4 sea pickles. Chromium Lumps can be used as furnace fuel, and can smelt 4 lava bucket's worth of items. Rather than disappearing, it turns into \\\"Spent Chromium\\\", which is much darker and can not be crafted into anything further. It is a junk item. Smelting a Chromium Lump turns it into a Chromium Ingot.\\n\\n\\nYou can not make tools or armor with Chromium.\\n\\n\\nBut you CAN tip pickaxes and swords with them, and you may also coat Armor with them\\n\\n\\n###Enhancements (not to be confused with Enchantments)\\n\\n\\nUsing the radioactive power of Chromium, you can enhance your diamond suite.\\n\\nTo enhance a tool, put it in the 3x3 crafting grid surrounded by Chromium Ingots\\n\\nList of enhancement powers:\\n\\n- Pickaxes that are enhanced are able to reach 2 blocks further.\\n\\n- enhanced Swords give the victim slowness 2 for 3 seconds when hit\\n\\n- enhanced helmets make your body give off light at a level of 15\\n\\n- enhanced chestplates make negative potions thrown on you shorter and weaker, and increase potency and length of positive ones.\\n\\n-enhanced leggings make crops around you grow faster\\n\\n-enhanced boots let you double jump\\n\\n-enhanced items get an extra 200 max durability\\n\\n\\nI also want there to be a special power for having the entire enhanced diamond armor set on, but I feel like the comments should decide.\\n\\n\\n###Why this should be added, how it effects gameplay\\n\\nElytras and Shulker Shells are really the only reason to go into the End Islands as of right now. Chorus Fruit is a novelty and the loot you would find in End City chests is probably below the equipment level you had prior to opening the End Portal. Those are both great items, but the best way to flesh out a dimension is an ore. Diamonds are too significant to the game and there can never be any ore type that is better than them. However I personally have been finding diamond tools and armor too weak as far as durability is concerned now. So the best solution to every problem is a rare End ore that, through a lengthy process can make diamond equipment better as well as performing other functions.\\n\\n\\n###Possible Downsides\\n\\n\\nDiamonds are one of the most important aspects of Minecraft's nostalgia factor. The top tier item. Chromium enhancements may be seen as an attempt to one-up diamonds, and they are, but only in the sense that enchantments do as well.\\n\\n\\n###Comments\\n\\nIs this concept good to implement? should enhancements be tweaked? are the other functions also worthwhile? I had this idea while playing the game and want to know if it would get popular support.\", \"author_fullname\": \"t2_219439\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"mcsuggestion\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_coo89k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565502840.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m putting this here now to gauge the general reaction before putting it on the feedback site. The feedback site version will use more numbers rather than comparisons (e.g. 16 light level vs light level like that of a torch)\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003ESummary\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EChromium is a rare ore found in the End Islands that yields a multi-colored dust. This dust could be used for various purposes, including having redstone functionality. putting the Chromium Dust in a crafting grid in a 2x2 square would turn it into a silver Chromium Lump, which when placed on the ground can glow a little, and then smelting that would make it a \\u003Ca href=\\\"http://getwallpapers.com/wallpaper/full/a/5/9/883407-shiny-chrome-wallpaper-2604x1636-for-tablet.jpg\\\"\\u003EChrome Colored\\u003C/a\\u003E Ingot. The ingot can be used to enhance tools in unique ways. 9 ingots in a crafting grid reveals a decorative Chromium block.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChrome is the multicolored ore and powder, Chromium is a glossy, shiny silver colored Lump, Ingot, and Block\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EWhere is it?\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EIn the Outer End Highlands and Midlands, deep underground you may find Chrome Ore ( \\u003Ca href=\\\"https://prnt.sc/or0tab\\\"\\u003ETexture I made, very small image so zoom in\\u003C/a\\u003E ) in a max vein of 1. It would be about 25x rarer than emerald. only 8 ores may spawn on any given island.\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EWhat is Chrome Ore and Chrome Dust?\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EChrome Ore is textured like end stone with multicolored lumps inside of it. The texture I made was quick and dirty and should not be used. It requires a diamond pickaxe to mine and takes the same amount of time that it takes a wooden pickaxe to mine coal. Mining it gives you 1-2 Chrome Dust \\u003Ca href=\\\"https://prnt.sc/or11hv\\\"\\u003EAnother QD texture\\u003C/a\\u003E. Chrome Dust can be placed like redstone, and can be attached to redstone. Chrome Dust is a substitute for redstone wires, and it does not lose strength with distance. Chrome Dust also passively produces light at the same power as full strength redstone.\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EWhat are Chromium Lumps and Chromium Ingots?\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EWhen you put Chrome Dust in a crafting grid in a 4x4 pattern you will get Chromium Lumps. Chromium Lumps do not serve much purpose, but do have some functions. Chromium Lumps produce light when placed down, like groups of 4 sea pickles. Chromium Lumps can be used as furnace fuel, and can smelt 4 lava bucket\\u0026#39;s worth of items. Rather than disappearing, it turns into \\u0026quot;Spent Chromium\\u0026quot;, which is much darker and can not be crafted into anything further. It is a junk item. Smelting a Chromium Lump turns it into a Chromium Ingot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can not make tools or armor with Chromium.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut you CAN tip pickaxes and swords with them, and you may also coat Armor with them\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EEnhancements (not to be confused with Enchantments)\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EUsing the radioactive power of Chromium, you can enhance your diamond suite.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo enhance a tool, put it in the 3x3 crafting grid surrounded by Chromium Ingots\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EList of enhancement powers:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EPickaxes that are enhanced are able to reach 2 blocks further.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Eenhanced Swords give the victim slowness 2 for 3 seconds when hit\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Eenhanced helmets make your body give off light at a level of 15\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Eenhanced chestplates make negative potions thrown on you shorter and weaker, and increase potency and length of positive ones.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E-enhanced leggings make crops around you grow faster\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-enhanced boots let you double jump\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-enhanced items get an extra 200 max durability\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI also want there to be a special power for having the entire enhanced diamond armor set on, but I feel like the comments should decide.\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EWhy this should be added, how it effects gameplay\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EElytras and Shulker Shells are really the only reason to go into the End Islands as of right now. Chorus Fruit is a novelty and the loot you would find in End City chests is probably below the equipment level you had prior to opening the End Portal. Those are both great items, but the best way to flesh out a dimension is an ore. Diamonds are too significant to the game and there can never be any ore type that is better than them. However I personally have been finding diamond tools and armor too weak as far as durability is concerned now. So the best solution to every problem is a rare End ore that, through a lengthy process can make diamond equipment better as well as performing other functions.\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EPossible Downsides\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EDiamonds are one of the most important aspects of Minecraft\\u0026#39;s nostalgia factor. The top tier item. Chromium enhancements may be seen as an attempt to one-up diamonds, and they are, but only in the sense that enchantments do as well.\\u003C/p\\u003E\\n\\n\\u003Ch3\\u003EComments\\u003C/h3\\u003E\\n\\n\\u003Cp\\u003EIs this concept good to implement? should enhancements be tweaked? are the other functions also worthwhile? I had this idea while playing the game and want to know if it would get popular support.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/q8MBYpulx0Rp2FdcT3VBEjRrG1HGFCpySXgjQ1_B90U.jpg?auto=webp\\u0026s=15dc8e999158c0de1085006fd5c60b9f95656241\", \"width\": 2604, \"height\": 1636}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/q8MBYpulx0Rp2FdcT3VBEjRrG1HGFCpySXgjQ1_B90U.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e4db898e488102377bc6359f604edfe9052a4437\", \"width\": 108, \"height\": 67}, {\"url\": \"https://external-preview.redd.it/q8MBYpulx0Rp2FdcT3VBEjRrG1HGFCpySXgjQ1_B90U.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e45cf13ff077b68648a60f73dc2663d26bfc553a\", \"width\": 216, \"height\": 135}, {\"url\": \"https://external-preview.redd.it/q8MBYpulx0Rp2FdcT3VBEjRrG1HGFCpySXgjQ1_B90U.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4baf108eb57d4f703443efdc007cdf1fbe180c6a\", \"width\": 320, \"height\": 201}, {\"url\": \"https://external-preview.redd.it/q8MBYpulx0Rp2FdcT3VBEjRrG1HGFCpySXgjQ1_B90U.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=e442697de59e688bb13102f7f7f2b90f99ee7bc5\", \"width\": 640, \"height\": 402}, {\"url\": \"https://external-preview.redd.it/q8MBYpulx0Rp2FdcT3VBEjRrG1HGFCpySXgjQ1_B90U.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=7d4a288c63b5eb2be958138842787f77b43a491d\", \"width\": 960, \"height\": 603}, {\"url\": \"https://external-preview.redd.it/q8MBYpulx0Rp2FdcT3VBEjRrG1HGFCpySXgjQ1_B90U.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=51844c7a9d87d4628dacaf221492d2504859e83b\", \"width\": 1080, \"height\": 678}], \"variants\": {}, \"id\": \"sr8T4oRNhestgEeOvskLhPz47aiW_OIV0ydTnn3_rjY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"coo89k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Kendalls_Pepsi\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/coo89k/mcsuggestion/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/coo89k/mcsuggestion/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565474040.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u003ESkin Colour:\\n\\n\\u003E\\u003EEyes:\\n\\n\\u0026amp;gt;Hair:\\n\\n\\u0026amp;gt;Facial Hair:\", \"author_fullname\": \"t2_1v6f2bm3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_comtp9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565495938.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESkin Colour:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EEyes:\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u0026amp;gt;Hair:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026amp;gt;Facial Hair:\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"comtp9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"W-eye\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/comtp9/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/comtp9/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565467138.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Gshwn ajajanmwjw\", \"author_fullname\": \"t2_1v6f2bm3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Haybejaeb\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_com1l8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565492189.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGshwn ajajanmwjw\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"com1l8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"W-eye\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/com1l8/haybejaeb/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/com1l8/haybejaeb/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565463389.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"-hi\\n\\n*hi\\n\\n* hi\\n\\n- **hi\\n\\n- hello\\n\\n- hey**\", \"author_fullname\": \"t2_1v6f2bm3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_colw47\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1565463226.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565491451.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E-hi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E*hi\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Ehi\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003E**hi\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Ehello\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Ehey**\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"colw47\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"W-eye\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/colw47/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/colw47/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565462651.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"So this is my first attempt at an art contest ever and i'm super pumped to show you guys my unit for the Physical Attacker Category: [Saboten](https://twitter.com/henrybenedct/status/1160031751902830592)!\\n\\nI tried to add just the right amount information for people, and Gumi, to get a gist of what I was going for. I wanted to think what a lovable Cactuar would become if he trained hard and became lightning fast with unbeatable stamina. A speed demon with infinite needle attacks. I sort of went down a cactus filled downward spiral - learning all types of the desert dwelling plants. Saboten is loosely based off the \\\"Jumping Cholla\\\" which is a cactus that has small segments that detach. So of course, Soboten can take cacti from himself and hurl them at enemies!\\n\\nI know Gumi didn't want a kit but i did include some weapons that I felt fit best. A mini throwing cactus would make a great TMR/STMR and it would be nice for him to utilize some of the lesser used weapons; throwing weapons, fists, maces etc.\", \"author_fullname\": \"t2_15rpfr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"unit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cod6zk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565438359.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo this is my first attempt at an art contest ever and i\\u0026#39;m super pumped to show you guys my unit for the Physical Attacker Category: \\u003Ca href=\\\"https://twitter.com/henrybenedct/status/1160031751902830592\\\"\\u003ESaboten\\u003C/a\\u003E!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried to add just the right amount information for people, and Gumi, to get a gist of what I was going for. I wanted to think what a lovable Cactuar would become if he trained hard and became lightning fast with unbeatable stamina. A speed demon with infinite needle attacks. I sort of went down a cactus filled downward spiral - learning all types of the desert dwelling plants. Saboten is loosely based off the \\u0026quot;Jumping Cholla\\u0026quot; which is a cactus that has small segments that detach. So of course, Soboten can take cacti from himself and hurl them at enemies!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know Gumi didn\\u0026#39;t want a kit but i did include some weapons that I felt fit best. A mini throwing cactus would make a great TMR/STMR and it would be nice for him to utilize some of the lesser used weapons; throwing weapons, fists, maces etc.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/kzffAimqYxVlXuJ7VriIndNniDUi4u4U0gxLL4a6oKc.jpg?auto=webp\\u0026s=33427bb1326fb3d7a106d4e5e58d4ea3d5c6ae77\", \"width\": 140, \"height\": 78}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/kzffAimqYxVlXuJ7VriIndNniDUi4u4U0gxLL4a6oKc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fb762059f2d15d5efc9bd65c6dc67358e902e32b\", \"width\": 108, \"height\": 60}], \"variants\": {}, \"id\": \"8KgtLSjB4gDbQCo7CMxm8TI9uYpsuadlRjxvmRTfJiY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cod6zk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"liamwhenry\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cod6zk/unit/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cod6zk/unit/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565409559.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" \\n\\nFor ages untold we had wondered at the miracle of our existence, that we could not simply have been the product of random chance. It was upon the sole satellite of our blessed cradle that we discovered the truth, that we were neither alone among the stars nor unloved.\\n\\nIt was shortly after our first landing on the worldling orbiting our planet, an achievement met with the adulation of all, that our scientists discovered the anomoly. On the side of the planetoid which always faced away from our home we discovered structures which had no place there, gargantuan holdings which were clearly of alien origin. We quickly sent a follow on mission in secret, lest our citizens panic at the thought that aliens kept holdings so near to our doorstep. When our brave explorers dismounted their ship they were met with tremendously huge, ominous doors, clearly meant for beings far, far larger than we. Unexpectedly these doors opened at their approach and allowed them in. Through long, dark corridors they crept, feeling as intruders in the kingdom of the gods. The furniture they found was of tremendous size, easily six to seven times the height of the largest member of the expedition. Upon these cyclopean ruins they found numerous documents made of wood pulp clearly drawn from the planet below, creating the first clear link between this station and our home. The language was incomprehensible although the characters had a pleasing symmetry to them. Several hours in they discovered the first alien corpse, or at least it\\u2019s skeleton. A towering construct of \\tcollagen and minerals, shockingly like our own. They were bipedal, a strange development for an advanced species but not outside the bounds of imagination. Ancient folk tales spoke of giant, benevolent bipeds who cared for and loved our people before vanishing without a trace. It was a fantastical idea but the existence of these skeletons gnawed at the otherwise rational minds of the expedition.\\n\\nIt wasn\\u2019t until the explorers entered the central chamber of the compound that the mystery was, at least to a degree, solved. As the last member of the expedition entered the door slammed shut and atmosphere was pumped in. The expedition\\u2019s equipment was able to ascertain that it was nearly identical to the planet below, cause for both relief and suspicion. The expedition lead removed their helmet first, their whiskers spilling out of the confines of the pressure suit. Agonizing minutes passed before it was determined that the atmosphere was indeed safe and that the expedition could remove their helmets. Several members kept them on as a precautionary measure. While exploring the chamber an explorer wandered across a strange pad of symbols which depressed individually at their step. Shortly after contact an image leapt from the device, an image of a bipedal, hairless animal, rather unlike anything found on the planet below. The unfortunate scientist who had trod on the pad was subjected to a beam of light from the image, a scanner perhaps, which played across his head.\\n\\n\\u201cLinguistic analysis complete, scanning subroutine complete\\u201d the image said, it\\u2019s face unmoving in spite of the sound. \\u201cSpecies felis catus identified. Accessing database.\\u201d\\n\\nA different image flashed into existence, a recording as opposed to the stock image of before. \\u201cHello dear friends. We are so glad you have made it so far. We will have missed you so much by now.\\u201d\\n\\nConfusion reigned among the expedition but the long dead creature continued \\u201cWe considered bringing you with us when we left this world, we loved you so dearly. In the end we decided that it wasn\\u2019t for us to decide, that you\\u2019d come if you wished. We never could make you do anything you didn\\u2019t want to.\\u201d\\n\\nThe creature\\u2019s image faded, replaced by a starmap with several systems blinking and a clear depiction of the home planet in the center. \\u201cThis is where we went when we left. We can only hope you\\u2019ll forgive us for leaving but we wanted you to come with us on your own terms, if at all. You were always so endearingly independent. Please come find us for we miss you so very much.\\u201d\\n\\nWith this last message the facility deactivated, it\\u2019s mission complete. Our society changed nearly overnight. We bent our very souls towards the task of reaching those far away stars, now that we knew it was possible. We were driven by something unexplainable, something deep in our psyches. When we finally unlocked the secrets of interstellar travel we reached out and we rediscovered friends we had loved for tens of millennia before we discovered fire. They welcomed us, these humans, with all the love their hearts could muster. We loved them in turn, kindred souls separated by light years and uncountable ages reunited at last.\", \"author_fullname\": \"t2_j0b5y\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Old friends\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cocul4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565436301.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor ages untold we had wondered at the miracle of our existence, that we could not simply have been the product of random chance. It was upon the sole satellite of our blessed cradle that we discovered the truth, that we were neither alone among the stars nor unloved.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt was shortly after our first landing on the worldling orbiting our planet, an achievement met with the adulation of all, that our scientists discovered the anomoly. On the side of the planetoid which always faced away from our home we discovered structures which had no place there, gargantuan holdings which were clearly of alien origin. We quickly sent a follow on mission in secret, lest our citizens panic at the thought that aliens kept holdings so near to our doorstep. When our brave explorers dismounted their ship they were met with tremendously huge, ominous doors, clearly meant for beings far, far larger than we. Unexpectedly these doors opened at their approach and allowed them in. Through long, dark corridors they crept, feeling as intruders in the kingdom of the gods. The furniture they found was of tremendous size, easily six to seven times the height of the largest member of the expedition. Upon these cyclopean ruins they found numerous documents made of wood pulp clearly drawn from the planet below, creating the first clear link between this station and our home. The language was incomprehensible although the characters had a pleasing symmetry to them. Several hours in they discovered the first alien corpse, or at least it\\u2019s skeleton. A towering construct of collagen and minerals, shockingly like our own. They were bipedal, a strange development for an advanced species but not outside the bounds of imagination. Ancient folk tales spoke of giant, benevolent bipeds who cared for and loved our people before vanishing without a trace. It was a fantastical idea but the existence of these skeletons gnawed at the otherwise rational minds of the expedition.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt wasn\\u2019t until the explorers entered the central chamber of the compound that the mystery was, at least to a degree, solved. As the last member of the expedition entered the door slammed shut and atmosphere was pumped in. The expedition\\u2019s equipment was able to ascertain that it was nearly identical to the planet below, cause for both relief and suspicion. The expedition lead removed their helmet first, their whiskers spilling out of the confines of the pressure suit. Agonizing minutes passed before it was determined that the atmosphere was indeed safe and that the expedition could remove their helmets. Several members kept them on as a precautionary measure. While exploring the chamber an explorer wandered across a strange pad of symbols which depressed individually at their step. Shortly after contact an image leapt from the device, an image of a bipedal, hairless animal, rather unlike anything found on the planet below. The unfortunate scientist who had trod on the pad was subjected to a beam of light from the image, a scanner perhaps, which played across his head.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cLinguistic analysis complete, scanning subroutine complete\\u201d the image said, it\\u2019s face unmoving in spite of the sound. \\u201cSpecies felis catus identified. Accessing database.\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA different image flashed into existence, a recording as opposed to the stock image of before. \\u201cHello dear friends. We are so glad you have made it so far. We will have missed you so much by now.\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EConfusion reigned among the expedition but the long dead creature continued \\u201cWe considered bringing you with us when we left this world, we loved you so dearly. In the end we decided that it wasn\\u2019t for us to decide, that you\\u2019d come if you wished. We never could make you do anything you didn\\u2019t want to.\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe creature\\u2019s image faded, replaced by a starmap with several systems blinking and a clear depiction of the home planet in the center. \\u201cThis is where we went when we left. We can only hope you\\u2019ll forgive us for leaving but we wanted you to come with us on your own terms, if at all. You were always so endearingly independent. Please come find us for we miss you so very much.\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith this last message the facility deactivated, it\\u2019s mission complete. Our society changed nearly overnight. We bent our very souls towards the task of reaching those far away stars, now that we knew it was possible. We were driven by something unexplainable, something deep in our psyches. When we finally unlocked the secrets of interstellar travel we reached out and we rediscovered friends we had loved for tens of millennia before we discovered fire. They welcomed us, these humans, with all the love their hearts could muster. We loved them in turn, kindred souls separated by light years and uncountable ages reunited at last.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cocul4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sto_brohammed\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cocul4/old_friends/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cocul4/old_friends/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565407501.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"1. \\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\n[Weezewort](https://i.redd.it/qj6kdbowkcf31.png)\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/n07n16ynoof31.png\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/48b0p377rof31.png\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/ti35bmb3uof31.png\", \"author_fullname\": \"t2_57ys2v7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test post pic\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"qj6kdbowkcf31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 1440, \"x\": 2560, \"u\": \"https://i.redd.it/qj6kdbowkcf31.png\"}, \"m\": \"image/png\", \"id\": \"qj6kdbowkcf31\"}, \"n07n16ynoof31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 923, \"x\": 1151, \"u\": \"https://i.redd.it/n07n16ynoof31.png\"}, \"m\": \"image/png\", \"id\": \"n07n16ynoof31\"}, \"ti35bmb3uof31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 893, \"x\": 1668, \"u\": \"https://i.redd.it/ti35bmb3uof31.png\"}, \"m\": \"image/png\", \"id\": \"ti35bmb3uof31\"}, \"48b0p377rof31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 997, \"x\": 1284, \"u\": \"https://i.redd.it/48b0p377rof31.png\"}, \"m\": \"image/png\", \"id\": \"48b0p377rof31\"}}, \"name\": \"t3_cnx9eu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/NdAC7z9dlZx-D0T52sjNqU0TgYBv-nT_93qR3IVcrXo.jpg\", \"edited\": 1565471871.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565353415.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Col\\u003E\\n\\u003Cli\\u003E\\u0026#x200B;\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/qj6kdbowkcf31.png\\\"\\u003EWeezewort\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/n07n16ynoof31.png\\\"\\u003Ehttps://i.redd.it/n07n16ynoof31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/48b0p377rof31.png\\\"\\u003Ehttps://i.redd.it/48b0p377rof31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/ti35bmb3uof31.png\\\"\\u003Ehttps://i.redd.it/ti35bmb3uof31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnx9eu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"paoweeFFXIV\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cnx9eu/test_post_pic/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cnx9eu/test_post_pic/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565324615.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"https://www.xnxx.com/video-lk39l97/sexy_pov\", \"author_fullname\": \"t2_165u0z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Prnu\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cntt98\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565335293.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.xnxx.com/video-lk39l97/sexy_pov\\\"\\u003Ehttps://www.xnxx.com/video-lk39l97/sexy_pov\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/_6Ds8qM190MWIpjiB4z113WF1L3SETEnbBGqo5biF2U.jpg?auto=webp\\u0026s=1b4c6b8ef7f478b6b15e599ae11b1db22b12b922\", \"width\": 352, \"height\": 198}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/_6Ds8qM190MWIpjiB4z113WF1L3SETEnbBGqo5biF2U.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2d25cce4c25fc32890ad2fb782451230b11f26e1\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/_6Ds8qM190MWIpjiB4z113WF1L3SETEnbBGqo5biF2U.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f3ed0f7273a4b82de51b8e89095f3c7789536195\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/_6Ds8qM190MWIpjiB4z113WF1L3SETEnbBGqo5biF2U.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=939cecbe3c0ab28cb010a499d4d46eb3304e8651\", \"width\": 320, \"height\": 180}], \"variants\": {}, \"id\": \"inGQ4tTSwnmCLHw6X7jzc9GfWvIOnj9Wrg0rZi4ez6A\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cntt98\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"swornintheratking\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cntt98/prnu/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cntt98/prnu/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565306493.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_o06ux\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Costa del Sol be like\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cnt2re\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/vU_oiaw1kmA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Costa de Sol Jumping Be Like\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/vU_oiaw1kmA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Pyrals\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/vU_oiaw1kmA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/Pyrals\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/vU_oiaw1kmA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cnt2re\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/MD8wFnmU399JyHw4tw3sqFeAfdjOZTGQUKxu7QnMXWE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565331788.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtu.be\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/2pMOyaZWnFVWRM0CByeigcNcbxfQB6LHxdrbLxctV_Q.jpg?auto=webp\\u0026s=f2e3c15090fea7c6f4a90024acbe6d145779c242\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/2pMOyaZWnFVWRM0CByeigcNcbxfQB6LHxdrbLxctV_Q.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=6b39e5f259b1d7cf7eb3f4e7327846fe4b664de1\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/2pMOyaZWnFVWRM0CByeigcNcbxfQB6LHxdrbLxctV_Q.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=9ab047e66c830fdf7cbd105efaa3f48ea22b77ee\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/2pMOyaZWnFVWRM0CByeigcNcbxfQB6LHxdrbLxctV_Q.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=083bc349e003ab84914416bee6c3086ed41046e3\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"JhEMn1s7K2Wnv-TD57YnhYBuDsd5-1CFHIqyRO-Pkoo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnt2re\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Pyrals\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cnt2re/costa_del_sol_be_like/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://youtu.be/vU_oiaw1kmA\", \"subreddit_subscribers\": 777, \"created_utc\": 1565302988.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Costa de Sol Jumping Be Like\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/vU_oiaw1kmA?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Pyrals\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/vU_oiaw1kmA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/Pyrals\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test^test^^test^^^test^^^^resr\", \"author_fullname\": \"t2_5i48z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"just testing some superscript\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cnqvf0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565322225.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003Csup\\u003Etest\\u003Csup\\u003E\\u003Csup\\u003Etest\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Etest\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003E\\u003Csup\\u003Eresr\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnqvf0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"deathspawn\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cnqvf0/just_testing_some_superscript/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cnqvf0/just_testing_some_superscript/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565293425.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1460qr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"nail\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cnpt3d\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/GcfzQn1UeXmLckA7dzDhnHBDgIRNcTH9_r36PCYQmeQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565317664.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/6a8iqr2fo9f31.jpg?auto=webp\\u0026s=af5f920a51c5786b2ab4ea39036d3c53c25d440e\", \"width\": 513, \"height\": 1147}, \"resolutions\": [{\"url\": \"https://preview.redd.it/6a8iqr2fo9f31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0d3866033e38d5e90485f1987c376c7379eab4bf\", \"width\": 108, \"height\": 216}, {\"url\": \"https://preview.redd.it/6a8iqr2fo9f31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c582f0f70bda5ebf9403e508654fca07901985f6\", \"width\": 216, \"height\": 432}, {\"url\": \"https://preview.redd.it/6a8iqr2fo9f31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cfb936d23ef3bae7027f7759eb785a966d50bf5a\", \"width\": 320, \"height\": 640}], \"variants\": {}, \"id\": \"I9Mq8gjf7fYWNJvwgOVkEsZiH-ek-_6khDZx6jeK36k\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnpt3d\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"hypostyle2\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cnpt3d/nail/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/6a8iqr2fo9f31.jpg\", \"subreddit_subscribers\": 777, \"created_utc\": 1565288864.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Pic2Mag's Field Calculator is a free program where you and your students can draw magnets on the screen and the Field Calculator computes and diagrams the magnetic fields based on your drawings. The drawings can be both science and art.\\n\\nThe newest Pic2Mag's Field Calculator version has went from Beta Version 1.0 to Free Version 1.01. Mainly polished the program up some and added a few more features. The Field Calculator Version 1.01 has better load balancing between processor threads, and now supports monopoles and extended length compass needles.\\n\\nYou can find the program download link in the manual, or on the Pic2Mag website.\\n\\nPlease feel free to share, distribute, and host the program file on your websites. The four threaded version of the Field Calculator is free for everyone, including colleges and schools. The program could be used to teach the Cartesian coordinate system, vectors, magnetism, electric charges (monopoles), isopotential lines, etc.\\n\\nhttp://www.pic2mag.com/Pic2Mag_FieldCalc_v101.pdf\", \"author_fullname\": \"t2_nj89x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cnlrbf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565299629.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPic2Mag\\u0026#39;s Field Calculator is a free program where you and your students can draw magnets on the screen and the Field Calculator computes and diagrams the magnetic fields based on your drawings. The drawings can be both science and art.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe newest Pic2Mag\\u0026#39;s Field Calculator version has went from Beta Version 1.0 to Free Version 1.01. Mainly polished the program up some and added a few more features. The Field Calculator Version 1.01 has better load balancing between processor threads, and now supports monopoles and extended length compass needles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can find the program download link in the manual, or on the Pic2Mag website.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease feel free to share, distribute, and host the program file on your websites. The four threaded version of the Field Calculator is free for everyone, including colleges and schools. The program could be used to teach the Cartesian coordinate system, vectors, magnetism, electric charges (monopoles), isopotential lines, etc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"http://www.pic2mag.com/Pic2Mag_FieldCalc_v101.pdf\\\"\\u003Ehttp://www.pic2mag.com/Pic2Mag_FieldCalc_v101.pdf\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnlrbf\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"sirzerp\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cnlrbf/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cnlrbf/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565270829.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_5ijtn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 96, \"hide_score\": false, \"name\": \"t3_cnl3e3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/6ZMBWq-VAbitrPe66_U7jjou0Zpxm6npep1729k2S18.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565296280.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/lzld8rrby7f31.png?auto=webp\\u0026s=d01da56af00d35182514542f65351b577dd3694c\", \"width\": 872, \"height\": 604}, \"resolutions\": [{\"url\": \"https://preview.redd.it/lzld8rrby7f31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=901b4e58d57ccd0cc696f0d4c26a24f3b1c346b3\", \"width\": 108, \"height\": 74}, {\"url\": \"https://preview.redd.it/lzld8rrby7f31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c07df7abc5981f496287af93c3b8f65c26ef3ed2\", \"width\": 216, \"height\": 149}, {\"url\": \"https://preview.redd.it/lzld8rrby7f31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=41f5924d53662a23e4faf148de4003a1bfefa4c2\", \"width\": 320, \"height\": 221}, {\"url\": \"https://preview.redd.it/lzld8rrby7f31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=479d3ae7c2cd8a93e6a244ce5df6fd7afa65255d\", \"width\": 640, \"height\": 443}], \"variants\": {}, \"id\": \"y8ptVqLlqXkyg2EdWkvqNvzBxaskDP49Ki-PzitL1Es\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnl3e3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"killroy200\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cnl3e3/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/lzld8rrby7f31.png\", \"subreddit_subscribers\": 777, \"created_utc\": 1565267480.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_waxac5p\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"tessssssssssssst\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 90, \"hide_score\": false, \"name\": \"t3_cnj1dp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UYdmnh5awghyQQnc6mm81ZIj12AE1mIzT2AmBBsBEto.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565283496.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/g06ocux4v6f31.png?auto=webp\\u0026s=b340fc8a314143ffa6258fc474d9b46aeefa738f\", \"width\": 745, \"height\": 482}, \"resolutions\": [{\"url\": \"https://preview.redd.it/g06ocux4v6f31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b288a43d70ea45af260e4e0a44e832ed4208b342\", \"width\": 108, \"height\": 69}, {\"url\": \"https://preview.redd.it/g06ocux4v6f31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ea7faf773000a58a930572d07d97a56606979b00\", \"width\": 216, \"height\": 139}, {\"url\": \"https://preview.redd.it/g06ocux4v6f31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1331d4599967807633a13f6fb7010092d25eed8a\", \"width\": 320, \"height\": 207}, {\"url\": \"https://preview.redd.it/g06ocux4v6f31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b4e8c9ade2f621fe12fd1baed15cc4c5f961e8d7\", \"width\": 640, \"height\": 414}], \"variants\": {}, \"id\": \"bPME8AMAy4ROsZhCz8s1mRnE48oEr1j5fvQPdGjqhOw\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnj1dp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"iLikeAstolfosDong\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cnj1dp/tessssssssssssst/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/g06ocux4v6f31.png\", \"subreddit_subscribers\": 777, \"created_utc\": 1565254696.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_47w5qp8f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cncijk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/Fu09HPrIuUhYNJ21yHyhj4dDCWbF1SXIORC8GmNAmf4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565244845.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/5fs9ee2ep3f31.jpg?auto=webp\\u0026s=995576ae5baf57f5411a0d2098f682531caeed78\", \"width\": 1920, \"height\": 1920}, \"resolutions\": [{\"url\": \"https://preview.redd.it/5fs9ee2ep3f31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ff3e1d2eb54c580ed954eec8ad1bb4484aff5b0d\", \"width\": 108, \"height\": 108}, {\"url\": \"https://preview.redd.it/5fs9ee2ep3f31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e6e2bed500ed091369a3bb97d9e058b732b0424d\", \"width\": 216, \"height\": 216}, {\"url\": \"https://preview.redd.it/5fs9ee2ep3f31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a683a499c2024251e692dd6a80d4237590bc11e0\", \"width\": 320, \"height\": 320}, {\"url\": \"https://preview.redd.it/5fs9ee2ep3f31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a6437996d0e570f5fcb58bb4814354e1ed50a342\", \"width\": 640, \"height\": 640}, {\"url\": \"https://preview.redd.it/5fs9ee2ep3f31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=0db281a399baa129def43511ec0ea44145d69e91\", \"width\": 960, \"height\": 960}, {\"url\": \"https://preview.redd.it/5fs9ee2ep3f31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=bc9843b05f9b1da9e7ef639954536298eb5999c0\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"xsUAAW6hzkVDibgXHSkzOilyd4xlSExKOblM_HSFWw8\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cncijk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SmudgeMumma\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cncijk/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/5fs9ee2ep3f31.jpg\", \"subreddit_subscribers\": 777, \"created_utc\": 1565216045.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"f\", \"author_fullname\": \"t2_prr9w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"f\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cnbgy7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565239880.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ef\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cnbgy7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"apexjnr\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cnbgy7/f/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cnbgy7/f/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565211080.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I am trying to simulate some data to help me prepare for some analysis I wish to conduct, but I am not sure how to express a particular multilevel model in equation form (which I need to do the simulation). I understand that the regression equation for a varying intercept model is written as:\\n\\ny\\\\_ij \\\\~ (\\u03b20 + u\\\\_j) + \\u03b21x\\\\_ij + e\\\\_ij\\n\\nu\\\\_ij \\\\~ N(0, \\u03c3u\\\\^(2)\\n\\ne\\\\_ij \\\\~ N(0, \\u03c3e\\\\^(2),\\n\\nwhere y\\\\_ij is the i^(th) data point for participant j in the study, \\u03b20 is the intercept term, \\u03b21 is the predictor (x) coefficient, u\\\\_j is the intercept offset for subject j, and e\\\\_ij is noise.\\n\\nIn lme4 syntax, this is:\\n\\n lmer(y ~ x + (1|x)\\n\\nHowever, in my experiment, I wish to nest subject within multiple experiments. I have data from 6 studies all examining the same topic, and wish to analyse it in a multilevel fashion. The lme4 syntax for my model is\\n\\n lmer(y ~ x + (1|x/experiment)\\n\\nWhat is the regression equation for this? I can't find a source that shows me how the nesting by experiment plays out in the equations. Is some hyper-parameter put on u\\\\_ij?\\n\\nIf possible, if you could help me expressing it in non-matrix notation that would help. Thanks!\", \"author_fullname\": \"t2_zgb5p\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Expressing nested multilevel model in regression equation notation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cn9t6h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1565204506.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565232307.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to simulate some data to help me prepare for some analysis I wish to conduct, but I am not sure how to express a particular multilevel model in equation form (which I need to do the simulation). I understand that the regression equation for a varying intercept model is written as:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ey_ij ~ (\\u03b20 + u_j) + \\u03b21x_ij + e_ij\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eu_ij ~ N(0, \\u03c3u^(2)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ee_ij ~ N(0, \\u03c3e^(2),\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ewhere y_ij is the i\\u003Csup\\u003Eth\\u003C/sup\\u003E data point for participant j in the study, \\u03b20 is the intercept term, \\u03b21 is the predictor (x) coefficient, u_j is the intercept offset for subject j, and e_ij is noise.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn lme4 syntax, this is:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Elmer(y ~ x + (1|x)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EHowever, in my experiment, I wish to nest subject within multiple experiments. I have data from 6 studies all examining the same topic, and wish to analyse it in a multilevel fashion. The lme4 syntax for my model is\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Elmer(y ~ x + (1|x/experiment)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EWhat is the regression equation for this? I can\\u0026#39;t find a source that shows me how the nesting by experiment plays out in the equations. Is some hyper-parameter put on u_ij?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf possible, if you could help me expressing it in non-matrix notation that would help. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn9t6h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"ne0c0rtex\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cn9t6h/expressing_nested_multilevel_model_in_regression/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cn9t6h/expressing_nested_multilevel_model_in_regression/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565203507.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"1 space\\n\\n2 spaces\\n\\n\\n\\n\\nc\", \"author_fullname\": \"t2_xxrf9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Let's see\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cn8iaa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565226424.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E1 space\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2 spaces\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ec\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn8iaa\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Markyloko\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cn8iaa/lets_see/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cn8iaa/lets_see/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565197624.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_4aidvb0e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_cn2vd7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/pr_mnJhm9TIRo6IkZUHaHeggMtnm8g7S3aO7nb70kD4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565193184.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"workyoutube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/9tmQ6DPNBUe0Vw6PcXxxOG4c0dldEZDDYJGY3aAExI4.jpg?auto=webp\\u0026s=c0039e75d1964b02590a918682afe8ffb174952e\", \"width\": 336, \"height\": 188}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/9tmQ6DPNBUe0Vw6PcXxxOG4c0dldEZDDYJGY3aAExI4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c091317afe2733bcb4b6406c7adcd0f6c61103e0\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/9tmQ6DPNBUe0Vw6PcXxxOG4c0dldEZDDYJGY3aAExI4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=aa902eb141ef2c758e9805bcc8b9df9e22cea8f2\", \"width\": 216, \"height\": 120}, {\"url\": \"https://external-preview.redd.it/9tmQ6DPNBUe0Vw6PcXxxOG4c0dldEZDDYJGY3aAExI4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=83b1ce8a4b8a707f663516ea2826fb43bee7031a\", \"width\": 320, \"height\": 179}], \"variants\": {}, \"id\": \"CKt_pp16Q3j1TiP7rpJagNoHBKPephM3PM5Sj_R5Gz0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn2vd7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"workyoutube\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cn2vd7/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.workyoutube.com/watch?v=AqMZexT9Dco\", \"subreddit_subscribers\": 777, \"created_utc\": 1565164384.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_4aidvb0e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cn2ma8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AqMZexT9Dco?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Liveleak Truck skips toll and receives some karma is real\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AqMZexT9Dco?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Liveleak\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/AqMZexT9Dco/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCM7M9OWyRCF3R8m6rkB6JQw\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AqMZexT9Dco?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cn2ma8\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/WCemLr_fBsvgfrQqp-GytXyGNcF5HF7Uoey3q4qk7EE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565191238.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/x1v2ksINzNPA9IjPc3qAp_PWPAPu3f4VcLdbit-UtXM.jpg?auto=webp\\u0026s=1cda5ab2baba8ce9a96c8f574a45e1da4e60bee9\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/x1v2ksINzNPA9IjPc3qAp_PWPAPu3f4VcLdbit-UtXM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f73d93283e0b5d8f3427a87d436f9fc6ef686f3b\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/x1v2ksINzNPA9IjPc3qAp_PWPAPu3f4VcLdbit-UtXM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ea9cdf6bb5aad3a847be3ad9a6f71a49a141a0be\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/x1v2ksINzNPA9IjPc3qAp_PWPAPu3f4VcLdbit-UtXM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8fabb0b8dffe2a299587b5dc7ab10247d9ecbfc5\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"HbghUb47gx8BCmG5z7A6VRjpITNqq323_vaZbXV3r-0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cn2ma8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"workyoutube\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cn2ma8/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=AqMZexT9Dco\", \"subreddit_subscribers\": 777, \"created_utc\": 1565162438.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Liveleak Truck skips toll and receives some karma is real\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/AqMZexT9Dco?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Liveleak\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/AqMZexT9Dco/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCM7M9OWyRCF3R8m6rkB6JQw\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"On a Golden Deer run now. I've heard a certain character *can* survive if you do their paralogue, but I'm not sure if they survive on the GD path. \\u003E!Should I build support with Dedue, or is he Ded-doomed?!\\u003C\", \"author_fullname\": \"t2_ysnht\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cmz07v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565168456.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn a Golden Deer run now. I\\u0026#39;ve heard a certain character \\u003Cem\\u003Ecan\\u003C/em\\u003E survive if you do their paralogue, but I\\u0026#39;m not sure if they survive on the GD path. \\u003Cspan class=\\\"md-spoiler-text\\\"\\u003EShould I build support with Dedue, or is he Ded-doomed?\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmz07v\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"egast\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cmz07v/test_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cmz07v/test_test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565139656.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2klvbysk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"gdfgd\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cmxxam\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2F33lIcL5%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2F33lIcL5\\u0026image=https%3A%2F%2Fi.imgur.com%2F33lIcL5.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"1029\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 1029}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"DEEP IN THE HEART OF TEXAS!!! - Shot passing through Kosse last night. a6000 using Rokinon 12mm 550iso f/2. 20s exposure. Sorry in advance for any tool marks left from PS. Got lazy towards the end.\", \"title\": \"Imgur\", \"url\": \"https://imgur.com/33lIcL5\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 1029, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2F33lIcL5%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2F33lIcL5\\u0026image=https%3A%2F%2Fi.imgur.com%2F33lIcL5.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"1029\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2F33lIcL5.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2F33lIcL5%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2F33lIcL5\\u0026image=https%3A%2F%2Fi.imgur.com%2F33lIcL5.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"1029\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cmxxam\", \"height\": 1029}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/oLTGnBmmT2mv4nVi8SJ6R-FI5jkYpjWBrcGHCLydR28.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565162797.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/s9dTtZqSY4XTZUTR92W6SgfiH1jcM5BJLTuXPvJpJic.jpg?auto=webp\\u0026s=9958f40a103c4fa9c7ad3d1b84ec584664c99448\", \"width\": 4000, \"height\": 6000}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/s9dTtZqSY4XTZUTR92W6SgfiH1jcM5BJLTuXPvJpJic.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=6ef00a6ced566571bf565fdbe54b1bd52d5c5b94\", \"width\": 108, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/s9dTtZqSY4XTZUTR92W6SgfiH1jcM5BJLTuXPvJpJic.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5dbf52080b60c1484a9f266bc68a6019bb614908\", \"width\": 216, \"height\": 324}, {\"url\": \"https://external-preview.redd.it/s9dTtZqSY4XTZUTR92W6SgfiH1jcM5BJLTuXPvJpJic.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2300442889c2ef93527ca52bf4a08a1a1d103c72\", \"width\": 320, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/s9dTtZqSY4XTZUTR92W6SgfiH1jcM5BJLTuXPvJpJic.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=82658e0174068c270333dd84b7119f3bb06a805f\", \"width\": 640, \"height\": 960}, {\"url\": \"https://external-preview.redd.it/s9dTtZqSY4XTZUTR92W6SgfiH1jcM5BJLTuXPvJpJic.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=d7092e1ef6fa33a74e85bf58254a17e388a9b392\", \"width\": 960, \"height\": 1440}, {\"url\": \"https://external-preview.redd.it/s9dTtZqSY4XTZUTR92W6SgfiH1jcM5BJLTuXPvJpJic.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=328de4f703614facd794b7eb335643eb629748de\", \"width\": 1080, \"height\": 1620}], \"variants\": {}, \"id\": \"dfynsccYqQulfiu4TJ479LpoO5BnhAB5D1fP45URpJY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmxxam\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"BorderPeeTrolll\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cmxxam/gdfgd/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/33lIcL5\", \"subreddit_subscribers\": 777, \"created_utc\": 1565133997.0, \"discussion_type\": null, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"DEEP IN THE HEART OF TEXAS!!! - Shot passing through Kosse last night. a6000 using Rokinon 12mm 550iso f/2. 20s exposure. Sorry in advance for any tool marks left from PS. Got lazy towards the end.\", \"title\": \"Imgur\", \"url\": \"https://imgur.com/33lIcL5\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 1029, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2F33lIcL5%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2F33lIcL5\\u0026image=https%3A%2F%2Fi.imgur.com%2F33lIcL5.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"1029\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2F33lIcL5.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_346njvp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Just a preview\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cmojrq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/2VOpcsGUQ-k?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Kill Steal? More like Kill Secured :P\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/2VOpcsGUQ-k?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Oxinior LoL\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/2VOpcsGUQ-k/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCXBK4Bv33aW7o3G6-Xy0O2g\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/2VOpcsGUQ-k?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cmojrq\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ryJAdo07jQYXovsFm4ZL4U2M0jZIHJGBqU_MfjYixJo.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565113820.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/vKVgdYDdmjxIcwRpXe3yXI4bjXnC8FkFuvhge-5vus8.jpg?auto=webp\\u0026s=1f9d0ebcf9c439bfad6dc17efbb3bd753f6d22c0\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/vKVgdYDdmjxIcwRpXe3yXI4bjXnC8FkFuvhge-5vus8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=155f58d8a0d5f3a718c16b9cc185d17aae711aa0\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/vKVgdYDdmjxIcwRpXe3yXI4bjXnC8FkFuvhge-5vus8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1ab593a23549708b7280257960aaa5554905a286\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/vKVgdYDdmjxIcwRpXe3yXI4bjXnC8FkFuvhge-5vus8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=e9d52471a71c5392c5533fe754fab3929b052abd\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"tnLOy2ioXSNRxlP8M4WwZP883AIbMeqey2NoEor0DgM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmojrq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JosephSKY\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cmojrq/just_a_preview/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=2VOpcsGUQ-k\", \"subreddit_subscribers\": 777, \"created_utc\": 1565085020.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Kill Steal? More like Kill Secured :P\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/2VOpcsGUQ-k?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Oxinior LoL\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/2VOpcsGUQ-k/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UCXBK4Bv33aW7o3G6-Xy0O2g\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\#How to Select Your Mat Board Colors\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\##Black and White Mats\\n\\nBlack and white mats are the most commonly used mat boards. They provide a simple, professional finish for your artwork.\\n\\nIf you are planning to sell your artwork, black, white, or variations of black and white are the way to go (most of the time). The reason for this is because these colors are the easiest to match with decor and frame choices.\\n\\nWhite and black makes it easy for customers to imagine the artwork in their own home and the sale that much easier.\\n\\n\\\\###White + Variations of White\\n\\nWhite mats and variations of white (off-white, ivory, ivory turret) are the most commonly used mat boards\\u2014for good reason.\\n\\nWhite pretty much goes with anything.\\n\\nIt won\\u2019t be the best choice in every situation. But without knowing where the artwork is going to be hung or what frame is going to be used, white is always a safe solution.\\n\\nThere is some yellow tape that comes with white mats however.\\n\\nBe careful with white mat boards when you\\u2019re matting artworks with:\\n\\n\\\\- Soft colors (pastels, chalk, etc)\\n\\n\\\\- \\u201cMuddy whites\\u201d or whites that aren\\u2019t as bright\\n\\nA bright white mat board in these cases will overpower the artwork, diverting attention away from it.\\n\\nIn these cases, variations or shades of white (grey, off-white, ivory, ivory turret) will be a much better solution. ([https://imgur.com/4P8v2mg](https://imgur.com/4P8v2mg))\\n\\nThat brings us to our next topic:\\n\\nWhen to go with grey and when to go with off-white?\\n\\n\\\\###Dark vs Light/Highlights vs Shadows\\n\\nTo illustrate the difference, here\\u2019s a comparison of an off-white mat board and a black mat board. ([https://imgur.com/PzBGl1p](https://imgur.com/PzBGl1p))\\n\\nA pure white mat board would be too strong here. But even with the off-white mat board, the highlights don\\u2019t look as strong as they should.\\n\\nThe black mat board, on the other hand, really helps the highlights shine here.\\n\\nSo, for when you\\u2019d like to accentuate your highlights, go with a darker shade.\\n\\nFor shadows, do the opposite.\\n\\nTake a look at this comparison for example. ([https://imgur.com/qf76MAC](https://imgur.com/qf76MAC))\\n\\nThe shadows on the right just don\\u2019t carry the \\u201coomph\\u201d that they should. The black mat is too dark and overpowers the shadows.\\n\\nWhereas when matted with the white mat board, the shadows look fine.\\n\\nSo for times you\\u2019d like your shadows to pop, go with the lighter tint.\\n\\n\\\\###Matting Black and White Photos\\n\\nThe same logic applies for black and white prints as well. When matting your b\\u0026w prints, mat with the lesser of the two colors. So if your print has more whites, go with a black mat and vice-versa. ([https://imgur.com/NBVVsYQ](https://imgur.com/NBVVsYQ)) ([https://imgur.com/flZV63y](https://imgur.com/flZV63y))\\n\\n\\\\###Increasing Depth with Black Mat Boards\\n\\nOne caveat with black mats or mat boards of a darker shade is that they increase depth. They pull the eye in. ([https://imgur.com/g6XpPL5](https://imgur.com/g6XpPL5))\\n\\nFor artworks that feature a lot of depth, this can really make it pop.\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\##Dominant Color\\n\\nMatting with a dominant color from your artwork is also very common.\\n\\nThe mat board will blend in seamlessly, making this great for accentuating elements that don\\u2019t share the same color.\\n\\nPS. It doesn\\u2019t have to be the same exact color. Just choose something that is close enough, monochromatic or analogous colors work fine.\\n\\nThe contrast is beautiful when done right. ([https://imgur.com/GMWRtTG](https://imgur.com/GMWRtTG)) ([https://imgur.com/gEhR3gG](https://imgur.com/gEhR3gG))\\n\\n\\\\---\\n\\n\\\\##Complementary Colors + Split-Complementary Colors\\n\\nSome color theory does wonders when putting your artwork up on your walls.\\n\\nFor a bold, striking look, try pairing your artwork with a complementary color. ([https://imgur.com/gprDn8m](https://imgur.com/gprDn8m)) ([https://imgur.com/9nTvSqg](https://imgur.com/9nTvSqg))\\n\\nComplementary colors are colors that are directly opposite on the color wheel. When paired together, the strong visual contrast is both striking and dynamic.\\n\\nIf complementary colors are too bold, try split-complementary colors for something more soothing but still visually interesting. ([https://imgur.com/GJantm2](https://imgur.com/GJantm2)) ([https://imgur.com/uBgJNHW](https://imgur.com/uBgJNHW))\\n\\nSplit-complementary colors are colors that are analogous or next to the complementary color.\\n\\nTo discover complementary or split-complementary colors, [https://www.colorhexa.com/](https://www.colorhexa.com/) is a great resource that\\u2019ll give you exactly what you need. Just type in the color you\\u2019d like to match with, and the website will feed you the colors you\\u2019re looking for.\\n\\n\\\\---\\n\\n\\\\##When to Use Double Mat\\n\\nWhat is a double mat?\\n\\nA double mat is when a top mat board is layered over a bottom accent mat.\\n\\nBy double matting, you can introduce a splash of color to your matting selection, create more depth, offset the brightness of a white mat or the darkness of a black mat, and draw more attention to your subject.\\n\\nHere\\u2019s how you accomplish that.\\n\\n\\\\###B\\u0026W/W\\u0026B\\n\\nIf you\\u2019d like to mat with a black mat without weakening your shadows or if you\\u2019d like to mat with a white mat without weakening your highlights, you can do so by double matting. ([https://imgur.com/YrRdLMp](https://imgur.com/YrRdLMp))\\n\\n\\\\###Another Level of Depth\\n\\nBy double matting, you can introduce another layer of depth to your project.\\n\\nYou can use this to enhance the depth that is already there or to give some depth to artwork that is flatter. ([https://imgur.com/3qnCiLR](https://imgur.com/3qnCiLR))\\n\\n\\\\###Drawing Attention to Your Subject\\n\\nCompare the two examples here. ([https://imgur.com/h6SaYFJ](https://imgur.com/h6SaYFJ))\\n\\nYou\\u2019ll find the eye is more focused on the ferris wheel in the second example.\\n\\nThe blue mat helps the eye settle in where you\\u2019d like the eye to settle. By bottom matting with the color of the subject, the eye darts to your subject and remains there.\\n\\nHowever, if you were to mat with only the blue color, the mat board will be too dominant taking attention away from the artwork. Because the subject is smaller, a hint of blue is all you need to bring it out.\\n\\n\\\\###For Splashes of Color\\n\\nSometimes top matting with a bold color is too much. Maybe it will clash with your decor. Maybe it will clash with your frame. Maybe you\\u2019d just like to tone it down.\\n\\nBy double matting, you can still introduce some color without it being overpowering. ([https://imgur.com/GB07ZRo](https://imgur.com/GB07ZRo)) ([https://imgur.com/OsX2CKn](https://imgur.com/OsX2CKn)) ([https://imgur.com/IPAUY7c](https://imgur.com/IPAUY7c)) ([https://imgur.com/yg9BG9K](https://imgur.com/yg9BG9K))\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\##Black Core\\n\\nBlack core mat boards are mat boards that have been dyed black on the inside. When cut, the beveled edge will show black instead of white or cream.\\n\\nThe black isn\\u2019t nearly as dark as a black mat board and the reveal is much less than double matting. What you get instead is just a hint of black.\\n\\nThis is a great way to add a cinematic flair to your finish. ([https://imgur.com/0MVS5k4](https://imgur.com/0MVS5k4))\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\##8-PLY\\n\\n8-ply mat boards are twice as thick as regular mat boards. The extra thickness of 8-ply mat boards can help create depth and a sense of drama. ([https://imgur.com/QIH5edU](https://imgur.com/QIH5edU))\\n\\nThis heightens the \\u201cimportance\\u201d of the artwork and looks great with portraits or other serious artworks.\\n\\n\\\\*\\\\*\\\\*\\n\\n\\\\##Wrap Up\\n\\nEach artwork is unique and will have its own color palette that works well with it.\\n\\nBut as a starting point, these guidelines will point you in the right direction.\\n\\n\\\\###White Mats\\n\\n\\\\* Great in almost every situation\\n\\n\\\\* Use a variation (off-white, ivory, ivory turret, etc) when pure white is brighter than your highlights\\n\\n\\\\* If you\\u2019re hanging a show, go with white or an off-white\\n\\n\\\\* Looks great when paired with black dominant B\\u0026W artworks\\n\\n\\\\####Black Mats\\n\\n\\\\* Great for accentuating highlights\\n\\n\\\\* Can diminish the shadows in your artwork\\n\\n\\\\* Looks great when paired with white dominant B\\u0026W artworks\\n\\n\\\\* For artworks that feature a lot of depth, black mat boards help it jump off the page\\n\\n\\\\####Dominant Color Mats\\n\\n\\\\* Matting with the dominant color of your artwork allows the mat board to blend in\\n\\n\\\\* If the color appears in the foreground, the background is accentuated and vice-versa\\n\\n\\\\* Can be analogous or monochromatic colors. Close is good enough\\n\\n\\\\####Complementary + Split-Complementary Colors Mats\\n\\n\\\\* Bold and striking. For something more soothing, try a split-complementary color for your mat color\\n\\n\\\\* [https://www.colorhexa.com/](https://www.colorhexa.com/) is a great resource to discover these colors\\n\\n\\\\###When to Double Mat\\n\\n\\\\####B\\u0026W\\n\\n\\\\* Offset the brightness of a white mat by bottom matting with a black mat\\n\\n\\\\* Offset the darkness of a black mat by bottom matting with a white mat\\n\\n\\\\####Another level of depth\\n\\n\\\\* Draw attention to your small subject by bottom matting with its color\\n\\n\\\\* For splashes of color (complementary and split-complementary colors also work well here)\\n\\n\\\\####Black Core Mat Boards\\n\\n\\\\* Adds a cinematic element to your artwork\\n\\n\\\\####8-ply\\n\\n\\\\* Dramatic finish, great for portraits or \\u201cserious\\u201d artworks\\n\\nThanks for reading, I hope this helps you as you mat your artworks.\", \"author_fullname\": \"t2_anvy3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testest\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cmixld\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565077449.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#How to Select Your Mat Board Colors\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##Black and White Mats\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlack and white mats are the most commonly used mat boards. They provide a simple, professional finish for your artwork.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you are planning to sell your artwork, black, white, or variations of black and white are the way to go (most of the time). The reason for this is because these colors are the easiest to match with decor and frame choices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite and black makes it easy for customers to imagine the artwork in their own home and the sale that much easier.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###White + Variations of White\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite mats and variations of white (off-white, ivory, ivory turret) are the most commonly used mat boards\\u2014for good reason.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite pretty much goes with anything.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt won\\u2019t be the best choice in every situation. But without knowing where the artwork is going to be hung or what frame is going to be used, white is always a safe solution.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is some yellow tape that comes with white mats however.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBe careful with white mat boards when you\\u2019re matting artworks with:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Soft colors (pastels, chalk, etc)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- \\u201cMuddy whites\\u201d or whites that aren\\u2019t as bright\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA bright white mat board in these cases will overpower the artwork, diverting attention away from it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn these cases, variations or shades of white (grey, off-white, ivory, ivory turret) will be a much better solution. (\\u003Ca href=\\\"https://imgur.com/4P8v2mg\\\"\\u003Ehttps://imgur.com/4P8v2mg\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat brings us to our next topic:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen to go with grey and when to go with off-white?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Dark vs Light/Highlights vs Shadows\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo illustrate the difference, here\\u2019s a comparison of an off-white mat board and a black mat board. (\\u003Ca href=\\\"https://imgur.com/PzBGl1p\\\"\\u003Ehttps://imgur.com/PzBGl1p\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA pure white mat board would be too strong here. But even with the off-white mat board, the highlights don\\u2019t look as strong as they should.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe black mat board, on the other hand, really helps the highlights shine here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, for when you\\u2019d like to accentuate your highlights, go with a darker shade.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor shadows, do the opposite.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake a look at this comparison for example. (\\u003Ca href=\\\"https://imgur.com/qf76MAC\\\"\\u003Ehttps://imgur.com/qf76MAC\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe shadows on the right just don\\u2019t carry the \\u201coomph\\u201d that they should. The black mat is too dark and overpowers the shadows.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhereas when matted with the white mat board, the shadows look fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo for times you\\u2019d like your shadows to pop, go with the lighter tint.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Matting Black and White Photos\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe same logic applies for black and white prints as well. When matting your b\\u0026amp;w prints, mat with the lesser of the two colors. So if your print has more whites, go with a black mat and vice-versa. (\\u003Ca href=\\\"https://imgur.com/NBVVsYQ\\\"\\u003Ehttps://imgur.com/NBVVsYQ\\u003C/a\\u003E) (\\u003Ca href=\\\"https://imgur.com/flZV63y\\\"\\u003Ehttps://imgur.com/flZV63y\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Increasing Depth with Black Mat Boards\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne caveat with black mats or mat boards of a darker shade is that they increase depth. They pull the eye in. (\\u003Ca href=\\\"https://imgur.com/g6XpPL5\\\"\\u003Ehttps://imgur.com/g6XpPL5\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor artworks that feature a lot of depth, this can really make it pop.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##Dominant Color\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMatting with a dominant color from your artwork is also very common.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe mat board will blend in seamlessly, making this great for accentuating elements that don\\u2019t share the same color.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS. It doesn\\u2019t have to be the same exact color. Just choose something that is close enough, monochromatic or analogous colors work fine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe contrast is beautiful when done right. (\\u003Ca href=\\\"https://imgur.com/GMWRtTG\\\"\\u003Ehttps://imgur.com/GMWRtTG\\u003C/a\\u003E) (\\u003Ca href=\\\"https://imgur.com/gEhR3gG\\\"\\u003Ehttps://imgur.com/gEhR3gG\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E---\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##Complementary Colors + Split-Complementary Colors\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESome color theory does wonders when putting your artwork up on your walls.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor a bold, striking look, try pairing your artwork with a complementary color. (\\u003Ca href=\\\"https://imgur.com/gprDn8m\\\"\\u003Ehttps://imgur.com/gprDn8m\\u003C/a\\u003E) (\\u003Ca href=\\\"https://imgur.com/9nTvSqg\\\"\\u003Ehttps://imgur.com/9nTvSqg\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EComplementary colors are colors that are directly opposite on the color wheel. When paired together, the strong visual contrast is both striking and dynamic.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf complementary colors are too bold, try split-complementary colors for something more soothing but still visually interesting. (\\u003Ca href=\\\"https://imgur.com/GJantm2\\\"\\u003Ehttps://imgur.com/GJantm2\\u003C/a\\u003E) (\\u003Ca href=\\\"https://imgur.com/uBgJNHW\\\"\\u003Ehttps://imgur.com/uBgJNHW\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESplit-complementary colors are colors that are analogous or next to the complementary color.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo discover complementary or split-complementary colors, \\u003Ca href=\\\"https://www.colorhexa.com/\\\"\\u003Ehttps://www.colorhexa.com/\\u003C/a\\u003E is a great resource that\\u2019ll give you exactly what you need. Just type in the color you\\u2019d like to match with, and the website will feed you the colors you\\u2019re looking for.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E---\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##When to Use Double Mat\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat is a double mat?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA double mat is when a top mat board is layered over a bottom accent mat.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy double matting, you can introduce a splash of color to your matting selection, create more depth, offset the brightness of a white mat or the darkness of a black mat, and draw more attention to your subject.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u2019s how you accomplish that.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###B\\u0026amp;W/W\\u0026amp;B\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you\\u2019d like to mat with a black mat without weakening your shadows or if you\\u2019d like to mat with a white mat without weakening your highlights, you can do so by double matting. (\\u003Ca href=\\\"https://imgur.com/YrRdLMp\\\"\\u003Ehttps://imgur.com/YrRdLMp\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Another Level of Depth\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy double matting, you can introduce another layer of depth to your project.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can use this to enhance the depth that is already there or to give some depth to artwork that is flatter. (\\u003Ca href=\\\"https://imgur.com/3qnCiLR\\\"\\u003Ehttps://imgur.com/3qnCiLR\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###Drawing Attention to Your Subject\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECompare the two examples here. (\\u003Ca href=\\\"https://imgur.com/h6SaYFJ\\\"\\u003Ehttps://imgur.com/h6SaYFJ\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou\\u2019ll find the eye is more focused on the ferris wheel in the second example.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe blue mat helps the eye settle in where you\\u2019d like the eye to settle. By bottom matting with the color of the subject, the eye darts to your subject and remains there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, if you were to mat with only the blue color, the mat board will be too dominant taking attention away from the artwork. Because the subject is smaller, a hint of blue is all you need to bring it out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###For Splashes of Color\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESometimes top matting with a bold color is too much. Maybe it will clash with your decor. Maybe it will clash with your frame. Maybe you\\u2019d just like to tone it down.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBy double matting, you can still introduce some color without it being overpowering. (\\u003Ca href=\\\"https://imgur.com/GB07ZRo\\\"\\u003Ehttps://imgur.com/GB07ZRo\\u003C/a\\u003E) (\\u003Ca href=\\\"https://imgur.com/OsX2CKn\\\"\\u003Ehttps://imgur.com/OsX2CKn\\u003C/a\\u003E) (\\u003Ca href=\\\"https://imgur.com/IPAUY7c\\\"\\u003Ehttps://imgur.com/IPAUY7c\\u003C/a\\u003E) (\\u003Ca href=\\\"https://imgur.com/yg9BG9K\\\"\\u003Ehttps://imgur.com/yg9BG9K\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##Black Core\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlack core mat boards are mat boards that have been dyed black on the inside. When cut, the beveled edge will show black instead of white or cream.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe black isn\\u2019t nearly as dark as a black mat board and the reveal is much less than double matting. What you get instead is just a hint of black.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is a great way to add a cinematic flair to your finish. (\\u003Ca href=\\\"https://imgur.com/0MVS5k4\\\"\\u003Ehttps://imgur.com/0MVS5k4\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##8-PLY\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E8-ply mat boards are twice as thick as regular mat boards. The extra thickness of 8-ply mat boards can help create depth and a sense of drama. (\\u003Ca href=\\\"https://imgur.com/QIH5edU\\\"\\u003Ehttps://imgur.com/QIH5edU\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis heightens the \\u201cimportance\\u201d of the artwork and looks great with portraits or other serious artworks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E##Wrap Up\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEach artwork is unique and will have its own color palette that works well with it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut as a starting point, these guidelines will point you in the right direction.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###White Mats\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Great in almost every situation\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Use a variation (off-white, ivory, ivory turret, etc) when pure white is brighter than your highlights\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* If you\\u2019re hanging a show, go with white or an off-white\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Looks great when paired with black dominant B\\u0026amp;W artworks\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E####Black Mats\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Great for accentuating highlights\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Can diminish the shadows in your artwork\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Looks great when paired with white dominant B\\u0026amp;W artworks\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* For artworks that feature a lot of depth, black mat boards help it jump off the page\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E####Dominant Color Mats\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Matting with the dominant color of your artwork allows the mat board to blend in\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* If the color appears in the foreground, the background is accentuated and vice-versa\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Can be analogous or monochromatic colors. Close is good enough\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E####Complementary + Split-Complementary Colors Mats\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Bold and striking. For something more soothing, try a split-complementary color for your mat color\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* \\u003Ca href=\\\"https://www.colorhexa.com/\\\"\\u003Ehttps://www.colorhexa.com/\\u003C/a\\u003E is a great resource to discover these colors\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E###When to Double Mat\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E####B\\u0026amp;W\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Offset the brightness of a white mat by bottom matting with a black mat\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Offset the darkness of a black mat by bottom matting with a white mat\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E####Another level of depth\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Draw attention to your small subject by bottom matting with its color\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* For splashes of color (complementary and split-complementary colors also work well here)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E####Black Core Mat Boards\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Adds a cinematic element to your artwork\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E####8-ply\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Dramatic finish, great for portraits or \\u201cserious\\u201d artworks\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for reading, I hope this helps you as you mat your artworks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/VrvaQMO_PPKKjbRkFc0QJuBUulCEwdq_txWnuWW-y-Y.jpg?auto=webp\\u0026s=59ff198586665546563dd97bf54327892f36f5ff\", \"width\": 1800, \"height\": 1500}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/VrvaQMO_PPKKjbRkFc0QJuBUulCEwdq_txWnuWW-y-Y.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f2a3e16a35680fb151b99319fb58e1aa3de05efd\", \"width\": 108, \"height\": 90}, {\"url\": \"https://external-preview.redd.it/VrvaQMO_PPKKjbRkFc0QJuBUulCEwdq_txWnuWW-y-Y.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=bb030de374896144806753b4ee57ae83ee74ebff\", \"width\": 216, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/VrvaQMO_PPKKjbRkFc0QJuBUulCEwdq_txWnuWW-y-Y.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=71922e94033ac5a53b83c363356cf1dfbc1cb550\", \"width\": 320, \"height\": 266}, {\"url\": \"https://external-preview.redd.it/VrvaQMO_PPKKjbRkFc0QJuBUulCEwdq_txWnuWW-y-Y.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=091a966ec0f648d1aada1c90822f84d0a598ef94\", \"width\": 640, \"height\": 533}, {\"url\": \"https://external-preview.redd.it/VrvaQMO_PPKKjbRkFc0QJuBUulCEwdq_txWnuWW-y-Y.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=1e693a7c2e424f5ee4be22aa3a755226439f2743\", \"width\": 960, \"height\": 800}, {\"url\": \"https://external-preview.redd.it/VrvaQMO_PPKKjbRkFc0QJuBUulCEwdq_txWnuWW-y-Y.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b9e47ee77549ff79aea117485408cea3c1bceead\", \"width\": 1080, \"height\": 900}], \"variants\": {}, \"id\": \"7mBPO3F902WknFzYMILF0nS2He4P52bKc4pofLeK2Yo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmixld\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mrpineapple415\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cmixld/testest/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cmixld/testest/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565048649.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hey guys,\\n\\nI have been researching and put together my first potential PC build. I would love some advice on the build please.\\n\\n\\u003E**What will you be doing with this PC? Be as specific as possible, and include specific games or programs you will be using.**\\n\\n* I'll be using my PC to play Apex, Overwatch, Elderscrolls Online, Guild Wars 2 and other new AAA games. I won't be streaming.\\n\\n\\u0026#x200B;\\n\\n* **What is your maximum budget before rebates/shipping/taxes?**\\n* My budget is \\u00a3800 UK ($973.03) however willing to go slightly over if needed.\\n\\n\\u0026#x200B;\\n\\n\\u003E**When do you plan on building/buying the PC? Note: beyond a week or two from today means any build you receive will be out of date when you want to buy.**\\n\\n* Hoping to purchase all parts this week. Just need to solidify my build.\\n\\n\\u0026#x200B;\\n\\n\\u003E**What, exactly, do you need included in the budget? (Tower/OS/monitor/keyboard/mouse/etc)**\\n\\n* No peripherals or OS\\n\\n\\u0026#x200B;\\n\\n\\u003E**Which country (and state/province) will you be purchasing the parts in? If you're in US, do you have access to a Microcenter location?**\\n\\n* UK\\n* \\u0026#x200B;\\n\\n\\u003E**If reusing any parts (including monitor(s)/keyboard/mouse/etc), what parts will you be reusing? Brands and models are appreciated.**\\n\\n* None\\n* \\u0026#x200B;\\n\\n\\u003E**Will you be overclocking? If yes, are you interested in overclocking right away, or down the line? CPU and/or GPU?**\\n\\n* I wasn't planning on Overclocking unless I need to? I feel like this is something I would mess up...\\n\\n\\u0026#x200B;\\n\\n\\u003E**Are there any specific features or items you want/need in the build? (ex: SSD, large amount of storage or a RAID setup, CUDA or OpenCL support, etc)**\\n\\n* SSD (500GB - 1TB)\\n\\n\\u0026#x200B;\\n\\n\\u003E**Do you have any specific case preferences (Size like ITX/microATX/mid-tower/full-tower, styles, colors, window or not, LED lighting, etc), or a particular color theme preference for the components?**\\n\\n* NZXT H500\\n\\n\\u003E**Do you need a copy of Windows included in the budget? If you do need one included, do you have a preference?**\\n\\n* Nope\", \"author_fullname\": \"t2_fqn3dd4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Preview\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cmakw4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1565038225.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey guys,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been researching and put together my first potential PC build. I would love some advice on the build please.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat will you be doing with this PC? Be as specific as possible, and include specific games or programs you will be using.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EI\\u0026#39;ll be using my PC to play Apex, Overwatch, Elderscrolls Online, Guild Wars 2 and other new AAA games. I won\\u0026#39;t be streaming.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EWhat is your maximum budget before rebates/shipping/taxes?\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003EMy budget is \\u00a3800 UK ($973.03) however willing to go slightly over if needed.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhen do you plan on building/buying the PC? Note: beyond a week or two from today means any build you receive will be out of date when you want to buy.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EHoping to purchase all parts this week. Just need to solidify my build.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat, exactly, do you need included in the budget? (Tower/OS/monitor/keyboard/mouse/etc)\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENo peripherals or OS\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhich country (and state/province) will you be purchasing the parts in? If you\\u0026#39;re in US, do you have access to a Microcenter location?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EUK\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u0026#x200B;\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EIf reusing any parts (including monitor(s)/keyboard/mouse/etc), what parts will you be reusing? Brands and models are appreciated.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENone\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u0026#x200B;\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWill you be overclocking? If yes, are you interested in overclocking right away, or down the line? CPU and/or GPU?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EI wasn\\u0026#39;t planning on Overclocking unless I need to? I feel like this is something I would mess up...\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAre there any specific features or items you want/need in the build? (ex: SSD, large amount of storage or a RAID setup, CUDA or OpenCL support, etc)\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESSD (500GB - 1TB)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDo you have any specific case preferences (Size like ITX/microATX/mid-tower/full-tower, styles, colors, window or not, LED lighting, etc), or a particular color theme preference for the components?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENZXT H500\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDo you need a copy of Windows included in the budget? If you do need one included, do you have a preference?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ENope\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cmakw4\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tyrpix\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cmakw4/preview/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cmakw4/preview/\", \"subreddit_subscribers\": 777, \"created_utc\": 1565009425.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2qsk8tbs\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"EA8-AQnUYAAFaqx\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 98, \"hide_score\": false, \"name\": \"t3_cm6xjk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F9y9wj\\u0026url=https%3A%2F%2Fstreamable.com%2F9y9wj\\u0026image=https%3A%2F%2Fcdn-b-east.streamable.com%2Fimage%2F9y9wj_1.jpg%3Ftoken%3DjBMQy05iYr8r6JD_nZmrKg%26expires%3D1564989840\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=streamable\\\" width=\\\"600\\\" height=\\\"422\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 422}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"streamable.com\", \"oembed\": {\"provider_url\": \"https://streamable.com\", \"description\": \"Check out this video on Streamable using your phone, tablet or desktop.\", \"title\": \"EA8-AQnUYAAFaqx\", \"type\": \"video\", \"thumbnail_width\": 796, \"height\": 422, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F9y9wj\\u0026url=https%3A%2F%2Fstreamable.com%2F9y9wj\\u0026image=https%3A%2F%2Fcdn-b-east.streamable.com%2Fimage%2F9y9wj_1.jpg%3Ftoken%3DjBMQy05iYr8r6JD_nZmrKg%26expires%3D1564989840\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=streamable\\\" width=\\\"600\\\" height=\\\"422\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Streamable\", \"thumbnail_url\": \"https://cdn-b-east.streamable.com/image/9y9wj_1.jpg?token=jBMQy05iYr8r6JD_nZmrKg\\u0026expires=1564989840\", \"thumbnail_height\": 560}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F9y9wj\\u0026url=https%3A%2F%2Fstreamable.com%2F9y9wj\\u0026image=https%3A%2F%2Fcdn-b-east.streamable.com%2Fimage%2F9y9wj_1.jpg%3Ftoken%3DjBMQy05iYr8r6JD_nZmrKg%26expires%3D1564989840\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=streamable\\\" width=\\\"600\\\" height=\\\"422\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cm6xjk\", \"height\": 422}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UoxsnhCHRNxJRBSFONxIRTW4rGSdVdFB2_5Qd-V3Cns.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1565012091.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"streamable.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/sXZLmajDbTgKEfGy11waBND4OYlb5i9pf0Ls0dLCku0.jpg?auto=webp\\u0026s=863b0a000e6ee34e2eefe7dababcfce2c491cea5\", \"width\": 796, \"height\": 560}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/sXZLmajDbTgKEfGy11waBND4OYlb5i9pf0Ls0dLCku0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ddc5eeefaffce1bd0cf596bec19a62bd201dba65\", \"width\": 108, \"height\": 75}, {\"url\": \"https://external-preview.redd.it/sXZLmajDbTgKEfGy11waBND4OYlb5i9pf0Ls0dLCku0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a6847df02da25f66467077947c85c45ed5abf02d\", \"width\": 216, \"height\": 151}, {\"url\": \"https://external-preview.redd.it/sXZLmajDbTgKEfGy11waBND4OYlb5i9pf0Ls0dLCku0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=397b6c698248c8989b6317991b12d986c55641ae\", \"width\": 320, \"height\": 225}, {\"url\": \"https://external-preview.redd.it/sXZLmajDbTgKEfGy11waBND4OYlb5i9pf0Ls0dLCku0.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5df4f989e469e597a11174d7ecc4fb62b85dee63\", \"width\": 640, \"height\": 450}], \"variants\": {}, \"id\": \"a4MXURWJ7yDsFvu9vvganqTzgTKanowVDbYnoF13Qes\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cm6xjk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"orangemlko\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cm6xjk/ea8aqnuyaafaqx/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://streamable.com/9y9wj\", \"subreddit_subscribers\": 777, \"created_utc\": 1564983291.0, \"discussion_type\": null, \"media\": {\"type\": \"streamable.com\", \"oembed\": {\"provider_url\": \"https://streamable.com\", \"description\": \"Check out this video on Streamable using your phone, tablet or desktop.\", \"title\": \"EA8-AQnUYAAFaqx\", \"type\": \"video\", \"thumbnail_width\": 796, \"height\": 422, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F9y9wj\\u0026url=https%3A%2F%2Fstreamable.com%2F9y9wj\\u0026image=https%3A%2F%2Fcdn-b-east.streamable.com%2Fimage%2F9y9wj_1.jpg%3Ftoken%3DjBMQy05iYr8r6JD_nZmrKg%26expires%3D1564989840\\u0026key=2aa3c4d5f3de4f5b9120b660ad850dc9\\u0026type=text%2Fhtml\\u0026schema=streamable\\\" width=\\\"600\\\" height=\\\"422\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Streamable\", \"thumbnail_url\": \"https://cdn-b-east.streamable.com/image/9y9wj_1.jpg?token=jBMQy05iYr8r6JD_nZmrKg\\u0026expires=1564989840\", \"thumbnail_height\": 560}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_51rbx8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you react to this?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cm3uk7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bErPsq5kPzE?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Real-Time In-Camera VFX for Next-Gen Filmmaking | Project Spotlight | Unreal Engine\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bErPsq5kPzE?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Unreal Engine\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/bErPsq5kPzE/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/UnrealDevelopmentKit\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bErPsq5kPzE?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cm3uk7\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/KuzccIiam03M9z-bG4CG_7zvQuqTQNXIpDyyaae_0MU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564993615.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/zYhfdT0VddTSQv-BN_ZSks1loB_vWBVMLoQ_VlPRmTE.jpg?auto=webp\\u0026s=89208a825e11846bee795ad0ce2ce06d75296072\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/zYhfdT0VddTSQv-BN_ZSks1loB_vWBVMLoQ_VlPRmTE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3910cbe47b8c9d83f185d73fe166b2e6ae87e181\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/zYhfdT0VddTSQv-BN_ZSks1loB_vWBVMLoQ_VlPRmTE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f5b73b6c32bd32e0b31217c03093934bb9b21bc9\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/zYhfdT0VddTSQv-BN_ZSks1loB_vWBVMLoQ_VlPRmTE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=754af7f2273de3570a0b6211cf08b7e16d4fa324\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"ZTTYsDNCYWkET_r6j9dc2xgysQBBS79gTmcwgelH6ls\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cm3uk7\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MqaraBox\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cm3uk7/can_you_react_to_this/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=bErPsq5kPzE\", \"subreddit_subscribers\": 777, \"created_utc\": 1564964815.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Real-Time In-Camera VFX for Next-Gen Filmmaking | Project Spotlight | Unreal Engine\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/bErPsq5kPzE?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Unreal Engine\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/bErPsq5kPzE/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/UnrealDevelopmentKit\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I need to get a security camera ASAP. I'm really on a shoestring budget so I'm looking for the least expensive thing that will reliably meet my basic needs, which are as follow:\\n\\nREQUIREMENTS\\n* \\u0026#x200B; It must be capable of automatically uploading its footage to cloud storage.\\n* \\u0026#x200B; It must capture footage in such a way that I can reliably see what actually happened.\\n * \\u0026#x200B; If it's one of those ones that just records a short clip every time it detects motion, then if there's still motion when it finishes the clip it should immediately start a new one.\\n* \\u0026#x200B; It must not require any special access to router settings or anything like that.\\n* \\u0026#x200B; It must not allow someone to just walk up to the camera and delete footage without a password or anything (seems like that would be a given, but I've been amazed by how badly some products are designed).\\n\\nHIGHLY DESIRABLE FEATURES\\n* \\u0026#x200B; Resilient to disruptions in the internet connection, so footage won't get lost if the wifi is going in and out.\\n* \\u0026#x200B; Can simultaneously record to cloud and memory card, possibly in different ways (e.g. short clips to the cloud \\u0026 continuous video to the memory card).\\n\\nOTHER NOTES:\\n* \\u0026#x200B; I'm willing to pay a few extra bucks a month for cloud storage if that's what it takes to get the kind of functionality I want.\\n* \\u0026#x200B; I'm interested in things like whether it needs to be plugged in, how long the cord is, how long it takes to charge and how long a charge lasts, et cetera. So please include that sort of information if possible.\\n* \\u0026#x200B; For my present purposes, I really don't care if Russia or China or some other distant entity is spying on me.\\n* \\u0026#x200B; I probably haven't thought of everything; feel free to offer additional information about your recommendations if you think I'll find it pertinent.\\n\\nI've done a bit of looking around and the Wyze Cam looks really good, but I haven't read enough to be sure it would meet my needs. Also, Amazon doesn't seem to be offering Prime shipping on it (except from a seller who's charging like $40), which is annoying.\", \"author_fullname\": \"t2_2dy25t5k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Please recommend a camera based on my criteria? (URGENT; any help is greatly appreciated!!!)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cloq0s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564899790.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI need to get a security camera ASAP. I\\u0026#39;m really on a shoestring budget so I\\u0026#39;m looking for the least expensive thing that will reliably meet my basic needs, which are as follow:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EREQUIREMENTS\\n* \\u0026#x200B; It must be capable of automatically uploading its footage to cloud storage.\\n* \\u0026#x200B; It must capture footage in such a way that I can reliably see what actually happened.\\n * \\u0026#x200B; If it\\u0026#39;s one of those ones that just records a short clip every time it detects motion, then if there\\u0026#39;s still motion when it finishes the clip it should immediately start a new one.\\n* \\u0026#x200B; It must not require any special access to router settings or anything like that.\\n* \\u0026#x200B; It must not allow someone to just walk up to the camera and delete footage without a password or anything (seems like that would be a given, but I\\u0026#39;ve been amazed by how badly some products are designed).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHIGHLY DESIRABLE FEATURES\\n* \\u0026#x200B; Resilient to disruptions in the internet connection, so footage won\\u0026#39;t get lost if the wifi is going in and out.\\n* \\u0026#x200B; Can simultaneously record to cloud and memory card, possibly in different ways (e.g. short clips to the cloud \\u0026amp; continuous video to the memory card).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOTHER NOTES:\\n* \\u0026#x200B; I\\u0026#39;m willing to pay a few extra bucks a month for cloud storage if that\\u0026#39;s what it takes to get the kind of functionality I want.\\n* \\u0026#x200B; I\\u0026#39;m interested in things like whether it needs to be plugged in, how long the cord is, how long it takes to charge and how long a charge lasts, et cetera. So please include that sort of information if possible.\\n* \\u0026#x200B; For my present purposes, I really don\\u0026#39;t care if Russia or China or some other distant entity is spying on me.\\n* \\u0026#x200B; I probably haven\\u0026#39;t thought of everything; feel free to offer additional information about your recommendations if you think I\\u0026#39;ll find it pertinent.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve done a bit of looking around and the Wyze Cam looks really good, but I haven\\u0026#39;t read enough to be sure it would meet my needs. Also, Amazon doesn\\u0026#39;t seem to be offering Prime shipping on it (except from a seller who\\u0026#39;s charging like $40), which is annoying.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cloq0s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"9b2YIG7K9s\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cloq0s/please_recommend_a_camera_based_on_my_criteria/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cloq0s/please_recommend_a_camera_based_on_my_criteria/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564870990.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u003E!hello!\\u003C\", \"author_fullname\": \"t2_11aj7i\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"***test***\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_clnfr5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"ta daaaa\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1564866351.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564892933.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003Ehello\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"clnfr5\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"cognitivetriad\", \"num_crossposts\": 0, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/clnfr5/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/clnfr5/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564864133.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_w0x0c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Meet The Voice Of The Subways\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_clhs4s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/wQUOSXhZUUs?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Meet The Voice Of The Subways\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/wQUOSXhZUUs?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"CBS New York\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/wQUOSXhZUUs/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/CBSNewYork\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/wQUOSXhZUUs?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/clhs4s\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/YtR_e-Sqpb1aZwrQX1kNRtRUzdljtAzcWQQvqVvQeaQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564860827.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/q9_RLtgI40Ei40wx20TAyKan8umUtVz4YFC8aOeLHZo.jpg?auto=webp\\u0026s=5db24f38b62b424b72375f9cb6b82b2fdf264bbf\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/q9_RLtgI40Ei40wx20TAyKan8umUtVz4YFC8aOeLHZo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0db39f06bfdf4125a2fdffef754a699badee04dc\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/q9_RLtgI40Ei40wx20TAyKan8umUtVz4YFC8aOeLHZo.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=dfeb10dfc4f40b7ec2484c8e2fd82e411e9f664f\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/q9_RLtgI40Ei40wx20TAyKan8umUtVz4YFC8aOeLHZo.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=66a7c9b995950704805d4c79f33fc8044e47fa77\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"buly5R0ko6UhDXaanpAh7aqFPDG0hHvCfjaKPE64mBo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"clhs4s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"godjuul\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/clhs4s/meet_the_voice_of_the_subways/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=wQUOSXhZUUs\", \"subreddit_subscribers\": 777, \"created_utc\": 1564832027.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Meet The Voice Of The Subways\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/wQUOSXhZUUs?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"CBS New York\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/wQUOSXhZUUs/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/CBSNewYork\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hi, my name is StormFever. I'm a hearthstone player for ATKMode and I'm interested in teaching **you** how to become a better hearthstone player and reaching your goals. Whether that be qualifying to a masters tour or hitting rank 5 for the first time.\\n\\nThe reasons you should book me for your next coaching session is that I have a passion for helping others as well as the experience and accomplishments to back it up. I've been playing for over 5 years and have done well both on ladder and numerous tournaments, my most recent achievement is of course qualifying to the Masters Tour happening in Bucharest which will feature 300 of the best players in the world. Check out some of my other achievements [here](https://imgur.com/a/kZfyu1o).\\n\\nIf you're interested in booking me or have any questions please DM me either through my [Twitter](https://twitter.com/StormFeverHS) (link to my profile) or through Discord (StormFever#2891). First time students can book the first hour with me for only **$9** after which the normal rate of **$12/hr** applies.\", \"author_fullname\": \"t2_17488h\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Qualified to Masters Tour Bucharest and now looking for students\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_clgfi2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1564820509.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564848951.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, my name is StormFever. I\\u0026#39;m a hearthstone player for ATKMode and I\\u0026#39;m interested in teaching \\u003Cstrong\\u003Eyou\\u003C/strong\\u003E how to become a better hearthstone player and reaching your goals. Whether that be qualifying to a masters tour or hitting rank 5 for the first time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe reasons you should book me for your next coaching session is that I have a passion for helping others as well as the experience and accomplishments to back it up. I\\u0026#39;ve been playing for over 5 years and have done well both on ladder and numerous tournaments, my most recent achievement is of course qualifying to the Masters Tour happening in Bucharest which will feature 300 of the best players in the world. Check out some of my other achievements \\u003Ca href=\\\"https://imgur.com/a/kZfyu1o\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you\\u0026#39;re interested in booking me or have any questions please DM me either through my \\u003Ca href=\\\"https://twitter.com/StormFeverHS\\\"\\u003ETwitter\\u003C/a\\u003E (link to my profile) or through Discord (StormFever#2891). First time students can book the first hour with me for only \\u003Cstrong\\u003E$9\\u003C/strong\\u003E after which the normal rate of \\u003Cstrong\\u003E$12/hr\\u003C/strong\\u003E applies.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ARjzKr1ZeY4jpDe-ZsmbqwQCHhQFpvd9f4Ins1xgsdo.jpg?auto=webp\\u0026s=e33e80ab31ddf4da8031f02ac5b655d76199332a\", \"width\": 1300, \"height\": 860}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ARjzKr1ZeY4jpDe-ZsmbqwQCHhQFpvd9f4Ins1xgsdo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f98ba2edc346e80d630b3d1a431e81cfd59c880a\", \"width\": 108, \"height\": 71}, {\"url\": \"https://external-preview.redd.it/ARjzKr1ZeY4jpDe-ZsmbqwQCHhQFpvd9f4Ins1xgsdo.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5314d37432d01296904f239b150196ca20936f44\", \"width\": 216, \"height\": 142}, {\"url\": \"https://external-preview.redd.it/ARjzKr1ZeY4jpDe-ZsmbqwQCHhQFpvd9f4Ins1xgsdo.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2aebf10df2ec227f84e13bd52a93ddbba90ae7b9\", \"width\": 320, \"height\": 211}, {\"url\": \"https://external-preview.redd.it/ARjzKr1ZeY4jpDe-ZsmbqwQCHhQFpvd9f4Ins1xgsdo.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=dae26a031010d02d0f13490d988ba97459f9ddf4\", \"width\": 640, \"height\": 423}, {\"url\": \"https://external-preview.redd.it/ARjzKr1ZeY4jpDe-ZsmbqwQCHhQFpvd9f4Ins1xgsdo.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=78230e05899c14eeaa7d7ec46ea4d5e9a5f28f1e\", \"width\": 960, \"height\": 635}, {\"url\": \"https://external-preview.redd.it/ARjzKr1ZeY4jpDe-ZsmbqwQCHhQFpvd9f4Ins1xgsdo.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=3718b1483fcd1f46368f9b138b14824224cff066\", \"width\": 1080, \"height\": 714}], \"variants\": {}, \"id\": \"VCE_Fkd-ViEbDgpkoY2E5EY66WfTrC-7EqlmJD6SOZk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"clgfi2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"StormFever\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/clgfi2/qualified_to_masters_tour_bucharest_and_now/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/clgfi2/qualified_to_masters_tour_bucharest_and_now/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564820151.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1ho4h023\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Never posted an image before (FFXIV Spoiler)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 102, \"hide_score\": false, \"name\": \"t3_cletio\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2FUObjSCQ%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2FUObjSCQ\\u0026image=https%3A%2F%2Fi.imgur.com%2FUObjSCQ.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"569\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 569}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 votes and 2 views.\", \"title\": \"Imgur\", \"url\": \"https://imgur.com/UObjSCQ\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 569, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2FUObjSCQ%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2FUObjSCQ\\u0026image=https%3A%2F%2Fi.imgur.com%2FUObjSCQ.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"569\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2FUObjSCQ.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2FUObjSCQ%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2FUObjSCQ\\u0026image=https%3A%2F%2Fi.imgur.com%2FUObjSCQ.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"569\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cletio\", \"height\": 569}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"spoiler\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564836490.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/nGh11qi8PE5fJqHCuqvFZYMToBVyS-iA9JjbjXOP40I.jpg?auto=webp\\u0026s=e7aced7fc788c485fc55daed7a62bdd438c74ef5\", \"width\": 1079, \"height\": 790}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/nGh11qi8PE5fJqHCuqvFZYMToBVyS-iA9JjbjXOP40I.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a7301354219d783129815f35e49960102bdc17d\", \"width\": 108, \"height\": 79}, {\"url\": \"https://external-preview.redd.it/nGh11qi8PE5fJqHCuqvFZYMToBVyS-iA9JjbjXOP40I.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fcdc94083d91866b904e79f78cd12f4a9acfb188\", \"width\": 216, \"height\": 158}, {\"url\": \"https://external-preview.redd.it/nGh11qi8PE5fJqHCuqvFZYMToBVyS-iA9JjbjXOP40I.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ef3aa3e65eaac76896678253af9e5bf27eb73d9e\", \"width\": 320, \"height\": 234}, {\"url\": \"https://external-preview.redd.it/nGh11qi8PE5fJqHCuqvFZYMToBVyS-iA9JjbjXOP40I.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a7a5f0b7013c78c637d30718b99d8c0cca2e5089\", \"width\": 640, \"height\": 468}, {\"url\": \"https://external-preview.redd.it/nGh11qi8PE5fJqHCuqvFZYMToBVyS-iA9JjbjXOP40I.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=44962c9842f733750feec6f67a37ec561af3e2f4\", \"width\": 960, \"height\": 702}], \"variants\": {\"obfuscated\": {\"source\": {\"url\": \"https://external-preview.redd.it/nGh11qi8PE5fJqHCuqvFZYMToBVyS-iA9JjbjXOP40I.jpg?blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=0af1bcebf4e992771754029fc64493f5cd4cd69c\", \"width\": 1079, \"height\": 790}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/nGh11qi8PE5fJqHCuqvFZYMToBVyS-iA9JjbjXOP40I.jpg?width=108\\u0026crop=smart\\u0026blur=10\\u0026format=pjpg\\u0026auto=webp\\u0026s=81fe4376ceffa6f10f9f081ca11cdfd5fff929ea\", \"width\": 108, \"height\": 79}, {\"url\": \"https://external-preview.redd.it/nGh11qi8PE5fJqHCuqvFZYMToBVyS-iA9JjbjXOP40I.jpg?width=216\\u0026crop=smart\\u0026blur=21\\u0026format=pjpg\\u0026auto=webp\\u0026s=3013835263cc63994e4139c5cb5fbe086c9ce198\", \"width\": 216, \"height\": 158}, {\"url\": \"https://external-preview.redd.it/nGh11qi8PE5fJqHCuqvFZYMToBVyS-iA9JjbjXOP40I.jpg?width=320\\u0026crop=smart\\u0026blur=32\\u0026format=pjpg\\u0026auto=webp\\u0026s=77270a7455ba6e88f947c3b7175c31bedb9fdf6f\", \"width\": 320, \"height\": 234}, {\"url\": \"https://external-preview.redd.it/nGh11qi8PE5fJqHCuqvFZYMToBVyS-iA9JjbjXOP40I.jpg?width=640\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=e19e0d3995970dbbaef3b715fd077066623042ba\", \"width\": 640, \"height\": 468}, {\"url\": \"https://external-preview.redd.it/nGh11qi8PE5fJqHCuqvFZYMToBVyS-iA9JjbjXOP40I.jpg?width=960\\u0026crop=smart\\u0026blur=40\\u0026format=pjpg\\u0026auto=webp\\u0026s=a5caea10aa1d4dbfd134820e75573ee7cdf6ba41\", \"width\": 960, \"height\": 702}]}}, \"id\": \"2n-xmL5-qOLiA0gGGdhDm0XBqm_AnbFGGJEVZKsbAA0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": true, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cletio\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"madeofsleepandmagic\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cletio/never_posted_an_image_before_ffxiv_spoiler/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/UObjSCQ\", \"subreddit_subscribers\": 777, \"created_utc\": 1564807690.0, \"discussion_type\": null, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 votes and 2 views.\", \"title\": \"Imgur\", \"url\": \"https://imgur.com/UObjSCQ\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 569, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2FUObjSCQ%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2FUObjSCQ\\u0026image=https%3A%2F%2Fi.imgur.com%2FUObjSCQ.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"569\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2FUObjSCQ.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_z59on\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"hmmm\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_clc1yx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/SBjQ9tuuTJQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Foo Fighters - The Pretender\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/SBjQ9tuuTJQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"foofightersVEVO\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/SBjQ9tuuTJQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/foofightersVEVO\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/SBjQ9tuuTJQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/clc1yx\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/W3DCY12dm5exvc5tyVWi5P_AiWgOrBeCJK-M1MGbNz4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564819799.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/mDWovIYW78_7wNUQQjxCps1Km4Gtd5cL4WMkesomV2Y.jpg?auto=webp\\u0026s=f1207914e57f02ec2cfe5af022692514e6ca0cb9\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/mDWovIYW78_7wNUQQjxCps1Km4Gtd5cL4WMkesomV2Y.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a0b5d407b6825d8f83dee5a41be53bba54ae9fe0\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/mDWovIYW78_7wNUQQjxCps1Km4Gtd5cL4WMkesomV2Y.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3c13d812b45547cf6850a5832170c1f5c0ffe66b\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/mDWovIYW78_7wNUQQjxCps1Km4Gtd5cL4WMkesomV2Y.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=da534a8449d9c62c9ab647926c1418717b0fe9b1\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"VQ6lsXFDzdihavLS4d9VqZocA7kZCMGPbbabxTcR4pM\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"clc1yx\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"JimTheOrc\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/clc1yx/hmmm/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=SBjQ9tuuTJQ\", \"subreddit_subscribers\": 777, \"created_utc\": 1564790999.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Foo Fighters - The Pretender\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/SBjQ9tuuTJQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"foofightersVEVO\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/SBjQ9tuuTJQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/foofightersVEVO\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"testing\", \"author_fullname\": \"t2_32v29arh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"testing\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cl4pvs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564784326.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etesting\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cl4pvs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"brujor\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cl4pvs/testing/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cl4pvs/testing/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564755526.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Test\", \"author_fullname\": \"t2_4abx2hba\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"\\u003E!Spoiler!\\u003C\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cl41rv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"spoiler\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564780947.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETest\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": true, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cl41rv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"DeeHayche\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cl41rv/spoiler/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cl41rv/spoiler/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564752147.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[PCPartPicker Part List](https://uk.pcpartpicker.com/list/FscMJ8)\\n\\nType|Item|Price\\n:----|:----|:----\\n**CPU** | [AMD Ryzen 5 2600 3.4 GHz 6-Core Processor](https://uk.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox) | \\u00a3119.00 @ Amazon UK \\n**Motherboard** | [MSI B450 GAMING PRO CARBON AC ATX AM4 Motherboard](https://uk.pcpartpicker.com/product/t797YJ/msi-b450-gaming-pro-carbon-ac-atx-am4-motherboard-b450-gaming-pro-carbon-ac) | \\u00a3151.40 @ Alza \\n**Memory** | [Corsair Vengeance LPX 16 GB (2 x 8 GB) DDR4-3000 Memory](https://uk.pcpartpicker.com/product/MYH48d/corsair-memory-cmk16gx4m2b3000c15) | \\u00a373.98 @ Aria PC \\n**Storage** | [Crucial P1 1 TB M.2-2280 NVME Solid State Drive](https://uk.pcpartpicker.com/product/pxKcCJ/crucial-p1-1tb-m2-2280-solid-state-drive-ct1000p1ssd8) | \\u00a384.39 @ Amazon UK \\n**Video Card** | [Zotac GeForce GTX 1660 6 GB GAMING Video Card](https://uk.pcpartpicker.com/product/hNKcCJ/zotac-geforce-gtx-1660-6-gb-gaming-video-card-zt-t16600f-10l) | \\u00a3209.99 @ Amazon UK \\n**Case** | [NZXT H500 ATX Mid Tower Case](https://uk.pcpartpicker.com/product/p8x2FT/nzxt-h500-black-atx-mid-tower-case-ca-h500b-b1) | \\u00a368.99 @ AWD-IT \\n**Power Supply** | [Corsair TXM Gold 550 W 80+ Gold Certified Semi-modular ATX Power Supply](https://uk.pcpartpicker.com/product/dDH48d/corsair-txm-gold-550w-80-gold-certified-semi-modular-atx-power-supply-cp-9020133-na) | \\u00a364.97 @ Laptops Direct \\n | *Prices include shipping, taxes, rebates, and discounts* |\\n | **Total** | **\\u00a3772.72**\\n | Generated by [PCPartPicker](https://pcpartpicker.com) 2019-08-02 14:09 BST+0100 |\", \"author_fullname\": \"t2_fqn3dd4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cl3wb9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564780149.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://uk.pcpartpicker.com/list/FscMJ8\\\"\\u003EPCPartPicker Part List\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EType\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://uk.pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\\"\\u003EAMD Ryzen 5 2600 3.4 GHz 6-Core Processor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u00a3119.00 @ Amazon UK\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://uk.pcpartpicker.com/product/t797YJ/msi-b450-gaming-pro-carbon-ac-atx-am4-motherboard-b450-gaming-pro-carbon-ac\\\"\\u003EMSI B450 GAMING PRO CARBON AC ATX AM4 Motherboard\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u00a3151.40 @ Alza\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://uk.pcpartpicker.com/product/MYH48d/corsair-memory-cmk16gx4m2b3000c15\\\"\\u003ECorsair Vengeance LPX 16 GB (2 x 8 GB) DDR4-3000 Memory\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u00a373.98 @ Aria PC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://uk.pcpartpicker.com/product/pxKcCJ/crucial-p1-1tb-m2-2280-solid-state-drive-ct1000p1ssd8\\\"\\u003ECrucial P1 1 TB M.2-2280 NVME Solid State Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u00a384.39 @ Amazon UK\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EVideo Card\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://uk.pcpartpicker.com/product/hNKcCJ/zotac-geforce-gtx-1660-6-gb-gaming-video-card-zt-t16600f-10l\\\"\\u003EZotac GeForce GTX 1660 6 GB GAMING Video Card\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u00a3209.99 @ Amazon UK\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECase\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://uk.pcpartpicker.com/product/p8x2FT/nzxt-h500-black-atx-mid-tower-case-ca-h500b-b1\\\"\\u003ENZXT H500 ATX Mid Tower Case\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u00a368.99 @ AWD-IT\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EPower Supply\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://uk.pcpartpicker.com/product/dDH48d/corsair-txm-gold-550w-80-gold-certified-semi-modular-atx-power-supply-cp-9020133-na\\\"\\u003ECorsair TXM Gold 550 W 80+ Gold Certified Semi-modular ATX Power Supply\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u00a364.97 @ Laptops Direct\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cem\\u003EPrices include shipping, taxes, rebates, and discounts\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETotal\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E\\u00a3772.72\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGenerated by \\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003EPCPartPicker\\u003C/a\\u003E 2019-08-02 14:09 BST+0100\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/kVWss-iD_SsRxh38tc6n0k5Ecn4B5APWuLpkMsPqGZM.jpg?auto=webp\\u0026s=cd4c3b7c41f803c899c52872789c90f3a06e91ce\", \"width\": 500, \"height\": 353}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/kVWss-iD_SsRxh38tc6n0k5Ecn4B5APWuLpkMsPqGZM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f84225b3deca3a05ba61b5002cdc94b776220cf0\", \"width\": 108, \"height\": 76}, {\"url\": \"https://external-preview.redd.it/kVWss-iD_SsRxh38tc6n0k5Ecn4B5APWuLpkMsPqGZM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=453ef5de2b7870c6418bcfeb4561a8a4d01d39f2\", \"width\": 216, \"height\": 152}, {\"url\": \"https://external-preview.redd.it/kVWss-iD_SsRxh38tc6n0k5Ecn4B5APWuLpkMsPqGZM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=50f8f9b01fc08f634afbf55e1b91fd4cba0b0ede\", \"width\": 320, \"height\": 225}], \"variants\": {}, \"id\": \"-jj5e8eA3xiKyTod_V84utu8f_Wwa-TMF2owi2dGTOk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cl3wb9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Tyrpix\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cl3wb9/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cl3wb9/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564751349.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"https://misterticot.github.io/cosmic-plus-testing?abcr\", \"author_fullname\": \"t2_1sfirwdg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cl3m2a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1564754802.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564778610.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://misterticot.github.io/cosmic-plus-testing?abcr\\\"\\u003Ehttps://misterticot.github.io/cosmic-plus-testing?abcr\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/5sgYf1sETiFMmEuGJJg2YIrq0dhQWLi5WZqyzvRa70E.jpg?auto=webp\\u0026s=2406d03138c9a849bc2d13804a5d100016bd73a2\", \"width\": 1260, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/5sgYf1sETiFMmEuGJJg2YIrq0dhQWLi5WZqyzvRa70E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0d64fb1100629199966a0955563fb60382b5cb5f\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/5sgYf1sETiFMmEuGJJg2YIrq0dhQWLi5WZqyzvRa70E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=62184c704924298ed5415eac40ed62fdacc17a04\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/5sgYf1sETiFMmEuGJJg2YIrq0dhQWLi5WZqyzvRa70E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d3cb35d03a16ea4c14b101a3e6186f038dffd0aa\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/5sgYf1sETiFMmEuGJJg2YIrq0dhQWLi5WZqyzvRa70E.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=8129b4bc59c5c2d8b783f80d531bb71248064b6a\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/5sgYf1sETiFMmEuGJJg2YIrq0dhQWLi5WZqyzvRa70E.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=ba93fc666719164c44afd986a94f2058c8ccda4f\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/5sgYf1sETiFMmEuGJJg2YIrq0dhQWLi5WZqyzvRa70E.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=419fbcebcb7bfcc32819df569ab5e488aa904286\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"ljjoQQK5ZoBseh1dsKdPj4iVeEshy9ptD7yykJIf-mA\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cl3m2a\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"MisterTicot\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cl3m2a/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cl3m2a/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564749810.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"According to the Daring Fireball page:\\n\\n\\\"For any markup that is not covered by Markdown\\u2019s syntax, you simply use HTML itself. There\\u2019s no need to preface it or delimit it to indicate that you\\u2019re switching from Markdown to HTML; you just use the tags. \\n\\nThe only restrictions are that block-level HTML elements \\u2014 e.g. \\u003Cdiv\\u003E, \\u003Ctable\\u003E, \\u003Cpre\\u003E, \\u003Cp\\u003E, etc. \\u2014 must be separated from surrounding content by blank lines, and the start and end tags of the block should not be indented with tabs or spaces. Markdown is smart enough not to add extra (unwanted) \\u003Cp\\u003E tags around HTML block-level tags.\\\"\\n\\nSo the following should work:\\n\\nExplanation of a part number (example: 9013FSG2J21P)***\\n\\n\\u003Ctable\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003E9013 +\\u003C/td\\u003E\\u003Ctd\\u003E FS +\\u003C/td\\u003E\\u003Ctd\\u003EG +\\u003C/td\\u003E\\u003Ctd\\u003E2 +\\u003C/td\\u003E\\u003Ctd\\u003EJ21+\\u003C/td\\u003E\\u003Ctd\\u003EP\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctd\\u003EClass + \\u003C/td\\u003E\\u003Ctd\\u003EType + \\u003C/td\\u003E\\u003Ctd\\u003EEnclosure + \\u003C/td\\u003E\\u003Ctd\\u003EFluid Connection + \\u003C/td\\u003E\\u003Ctd\\u003EPressure Codes + \\u003C/td\\u003E\\u003Ctd\\u003EForms \\u003C/td\\u003E\\n\\u003C/tr\\u003E \\n\\u003C/table\\u003E\\n\\u003Ctable border=\\\"1\\\"\\u003E\\n\\u003Ctr\\u003E \\n\\u003Ctd\\u003EType\\u003C/td\\u003E\\n\\u003Ctd\\u003EFS = Standard-adjustable differential\\u003Cbr\\u003E\\nFY = Higher HP with adjustable differential\\u003Cbr\\u003E\\nFT = Non-adjustable differential \\u003Cbr\\u003E\\n\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EEnclosure\\u003C/td\\u003E\\n\\u003Ctd\\u003EG = NEMA 1W = NEMA 3R\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E \\n\\u003Ctd\\u003EFluid Connection\\u003C/td\\u003E\\n\\u003Ctd\\u003E1 = 1/8\\\" NPSF internal threads\\u003Cbr\\u003E\\n2 = 1/4\\\" NPSF internal\\u003Cbr\\u003E\\n9 = 1/4\\\" NPT external\\u003Cbr\\u003E\\n10 = 1/4\\\" bayonet, barbed\\u003Cbr\\u003E\\n20 = 90\\u00b0 elbow, 1/4\\\" bayonet\\u003Cbr\\u003E\\n4 = Narrow differential\\u003Cbr\\u003E\\n42\\u2020 = 9-30 PSIG cut-out, 3-10 cut-in\\u003Cbr\\u003E\\n49\\u2020 = 9-30 PSIG cut-out, 3-10 cut-in\\u003Cbr\\u003E\\n52 = 25-80 PSIG cut-out,10-60 cut-in \\u003Cbr\\u003E\\n59 = 25-80 PSIG cut-out,10-60 cut-in\\u003Cbr\\u003E\\nOthers available\\u003Cbr\\u003E\\n\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EPressure Codes\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\nJ20 = 20-40 PSI \\u003Cbr\\u003E\\nJ21 = 30-50 PSI \\u003Cbr\\u003E\\nJ24 = 40-60 PSI \\u003Cbr\\u003E\\nJ25 = 60-80 PSI\\u003Cbr\\u003E\\nJ33 = 50-70 PSI \\u003Cbr\\u003E\\nJ34 = 55-85 PSI\\u003Cbr\\u003E\\nJ99 = Specify range\\u003Cbr\\u003E\\nOthers available\\u003Cbr\\u003E\\n\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003EForms\\u003C/td\\u003E\\n\\u003Ctd\\u003E\\nM1 = Maintained manual cut-off lever\\u003Cbr\\u003E\\nM4 = Low pressure cut-off\\u003Cbr\\u003E\\nB7 = One rubber grommet\\u003Cbr\\u003E\\nB8 = Two rubber grommets\\u003Cbr\\u003E\\nQ8 = Plastic flange\\u003Cbr\\u003E\\nP = Pulsation plug\\u003Cbr\\u003E\\nT = 1/2\\\" conduit bushing on left \\u003Cbr\\u003E\\nU = Slip-on connector, load\\u003Cbr\\u003E\\nU2 = Slip-on connector, line and load \\u003Cbr\\u003E\\nZ22 = Black cover\\n\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/table\\u003E\\n\\nLet's see\", \"author_fullname\": \"t2_13n0z3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using html to post a table based on [Daring Fireball](https://daringfireball.net/projects/markdown/syntax) markdown syntax\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cl0xwu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1564731342.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564759936.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAccording to the Daring Fireball page:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;For any markup that is not covered by Markdown\\u2019s syntax, you simply use HTML itself. There\\u2019s no need to preface it or delimit it to indicate that you\\u2019re switching from Markdown to HTML; you just use the tags. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe only restrictions are that block-level HTML elements \\u2014 e.g. \\u0026lt;div\\u0026gt;, \\u0026lt;table\\u0026gt;, \\u0026lt;pre\\u0026gt;, \\u0026lt;p\\u0026gt;, etc. \\u2014 must be separated from surrounding content by blank lines, and the start and end tags of the block should not be indented with tabs or spaces. Markdown is smart enough not to add extra (unwanted) \\u0026lt;p\\u0026gt; tags around HTML block-level tags.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo the following should work:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EExplanation of a part number (example: 9013FSG2J21P)***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;table\\u0026gt;\\n\\u0026lt;tr\\u0026gt;\\n\\u0026lt;td\\u0026gt;9013 +\\u0026lt;/td\\u0026gt;\\u0026lt;td\\u0026gt; FS +\\u0026lt;/td\\u0026gt;\\u0026lt;td\\u0026gt;G +\\u0026lt;/td\\u0026gt;\\u0026lt;td\\u0026gt;2 +\\u0026lt;/td\\u0026gt;\\u0026lt;td\\u0026gt;J21+\\u0026lt;/td\\u0026gt;\\u0026lt;td\\u0026gt;P\\u0026lt;/td\\u0026gt;\\n\\u0026lt;/tr\\u0026gt;\\n\\u0026lt;/tr\\u0026gt;\\n\\u0026lt;td\\u0026gt;Class + \\u0026lt;/td\\u0026gt;\\u0026lt;td\\u0026gt;Type + \\u0026lt;/td\\u0026gt;\\u0026lt;td\\u0026gt;Enclosure + \\u0026lt;/td\\u0026gt;\\u0026lt;td\\u0026gt;Fluid Connection + \\u0026lt;/td\\u0026gt;\\u0026lt;td\\u0026gt;Pressure Codes + \\u0026lt;/td\\u0026gt;\\u0026lt;td\\u0026gt;Forms \\u0026lt;/td\\u0026gt;\\n\\u0026lt;/tr\\u0026gt;\\u003Cbr/\\u003E\\n\\u0026lt;/table\\u0026gt;\\n\\u0026lt;table border=\\u0026quot;1\\u0026quot;\\u0026gt;\\n\\u0026lt;tr\\u0026gt; \\n\\u0026lt;td\\u0026gt;Type\\u0026lt;/td\\u0026gt;\\n\\u0026lt;td\\u0026gt;FS = Standard-adjustable differential\\u0026lt;br\\u0026gt;\\nFY = Higher HP with adjustable differential\\u0026lt;br\\u0026gt;\\nFT = Non-adjustable differential \\u0026lt;br\\u0026gt;\\n\\u0026lt;/td\\u0026gt;\\n\\u0026lt;/tr\\u0026gt;\\n\\u0026lt;tr\\u0026gt;\\n\\u0026lt;td\\u0026gt;Enclosure\\u0026lt;/td\\u0026gt;\\n\\u0026lt;td\\u0026gt;G = NEMA 1W = NEMA 3R\\u0026lt;/td\\u0026gt;\\n\\u0026lt;/tr\\u0026gt;\\n\\u0026lt;tr\\u0026gt; \\n\\u0026lt;td\\u0026gt;Fluid Connection\\u0026lt;/td\\u0026gt;\\n\\u0026lt;td\\u0026gt;1 = 1/8\\u0026quot; NPSF internal threads\\u0026lt;br\\u0026gt;\\n2 = 1/4\\u0026quot; NPSF internal\\u0026lt;br\\u0026gt;\\n9 = 1/4\\u0026quot; NPT external\\u0026lt;br\\u0026gt;\\n10 = 1/4\\u0026quot; bayonet, barbed\\u0026lt;br\\u0026gt;\\n20 = 90\\u00b0 elbow, 1/4\\u0026quot; bayonet\\u0026lt;br\\u0026gt;\\n4 = Narrow differential\\u0026lt;br\\u0026gt;\\n42\\u2020 = 9-30 PSIG cut-out, 3-10 cut-in\\u0026lt;br\\u0026gt;\\n49\\u2020 = 9-30 PSIG cut-out, 3-10 cut-in\\u0026lt;br\\u0026gt;\\n52 = 25-80 PSIG cut-out,10-60 cut-in \\u0026lt;br\\u0026gt;\\n59 = 25-80 PSIG cut-out,10-60 cut-in\\u0026lt;br\\u0026gt;\\nOthers available\\u0026lt;br\\u0026gt;\\n\\u0026lt;/td\\u0026gt;\\n\\u0026lt;/tr\\u0026gt;\\n\\u0026lt;tr\\u0026gt;\\n\\u0026lt;td\\u0026gt;Pressure Codes\\u0026lt;/td\\u0026gt;\\n\\u0026lt;td\\u0026gt;\\nJ20 = 20-40 PSI \\u0026lt;br\\u0026gt;\\nJ21 = 30-50 PSI \\u0026lt;br\\u0026gt;\\nJ24 = 40-60 PSI \\u0026lt;br\\u0026gt;\\nJ25 = 60-80 PSI\\u0026lt;br\\u0026gt;\\nJ33 = 50-70 PSI \\u0026lt;br\\u0026gt;\\nJ34 = 55-85 PSI\\u0026lt;br\\u0026gt;\\nJ99 = Specify range\\u0026lt;br\\u0026gt;\\nOthers available\\u0026lt;br\\u0026gt;\\n\\u0026lt;/td\\u0026gt;\\n\\u0026lt;/tr\\u0026gt;\\n\\u0026lt;tr\\u0026gt;\\n\\u0026lt;td\\u0026gt;Forms\\u0026lt;/td\\u0026gt;\\n\\u0026lt;td\\u0026gt;\\nM1 = Maintained manual cut-off lever\\u0026lt;br\\u0026gt;\\nM4 = Low pressure cut-off\\u0026lt;br\\u0026gt;\\nB7 = One rubber grommet\\u0026lt;br\\u0026gt;\\nB8 = Two rubber grommets\\u0026lt;br\\u0026gt;\\nQ8 = Plastic flange\\u0026lt;br\\u0026gt;\\nP = Pulsation plug\\u0026lt;br\\u0026gt;\\nT = 1/2\\u0026quot; conduit bushing on left \\u0026lt;br\\u0026gt;\\nU = Slip-on connector, load\\u0026lt;br\\u0026gt;\\nU2 = Slip-on connector, line and load \\u0026lt;br\\u0026gt;\\nZ22 = Black cover\\n\\u0026lt;/td\\u0026gt;\\n\\u0026lt;/tr\\u0026gt;\\n\\u0026lt;/table\\u0026gt;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet\\u0026#39;s see\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cl0xwu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"w33dcup\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cl0xwu/using_html_to_post_a_table_based_on_daring/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cl0xwu/using_html_to_post_a_table_based_on_daring/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564731136.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_47scv0ew\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TestVid\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ckzony\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/9f61vsxqxyd31/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 498, \"scrubber_media_url\": \"https://v.redd.it/9f61vsxqxyd31/DASH_96\", \"dash_url\": \"https://v.redd.it/9f61vsxqxyd31/DASHPlaylist.mpd\", \"duration\": 8, \"hls_url\": \"https://v.redd.it/9f61vsxqxyd31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Flair test\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/1E8ZHXVdvs19evPKEo41qwl3uRUWEqE5AYIx7yrEzw8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564751290.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/b9gnB_tscBkY3Gdk-lxlDPZuN-oVmnNPGvhBCKDDJsU.png?format=pjpg\\u0026auto=webp\\u0026s=a0243784dd49976cd1aabeba4b4e91491850d15f\", \"width\": 886, \"height\": 1920}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/b9gnB_tscBkY3Gdk-lxlDPZuN-oVmnNPGvhBCKDDJsU.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=3d73d67749d0c77376e2f8ba3857a3b57a8878e6\", \"width\": 108, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/b9gnB_tscBkY3Gdk-lxlDPZuN-oVmnNPGvhBCKDDJsU.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=32d1b587e98759fc5a674d6c1843fe50f0e82b6d\", \"width\": 216, \"height\": 432}, {\"url\": \"https://external-preview.redd.it/b9gnB_tscBkY3Gdk-lxlDPZuN-oVmnNPGvhBCKDDJsU.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=7c2b423267058cc6128eefc25b3dd5b7db438e76\", \"width\": 320, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/b9gnB_tscBkY3Gdk-lxlDPZuN-oVmnNPGvhBCKDDJsU.png?width=640\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=6be6c3b7eece31e3995fb83c1664c2bbba4c2c06\", \"width\": 640, \"height\": 1280}], \"variants\": {}, \"id\": \"wLas61yuePIrHc5Uewnwpg_R_FL6w5MN0oZh2YGlPro\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ckzony\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Mytesthandle\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ckzony/testvid/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/9f61vsxqxyd31\", \"subreddit_subscribers\": 777, \"created_utc\": 1564722490.0, \"discussion_type\": null, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/9f61vsxqxyd31/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 498, \"scrubber_media_url\": \"https://v.redd.it/9f61vsxqxyd31/DASH_96\", \"dash_url\": \"https://v.redd.it/9f61vsxqxyd31/DASHPlaylist.mpd\", \"duration\": 8, \"hls_url\": \"https://v.redd.it/9f61vsxqxyd31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_ar0vd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Dino Toy Photo Shoot\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 93, \"hide_score\": false, \"name\": \"t3_ckyy6e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2FIycIjjo%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2FIycIjjo\\u0026image=https%3A%2F%2Fi.imgur.com%2FFkzc35t.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"440\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 440}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views. Dino Toy Photo Shoot\", \"title\": \"Dino Toy Photo Shoot\", \"url\": \"https://imgur.com/a/IycIjjo\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 440, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2FIycIjjo%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2FIycIjjo\\u0026image=https%3A%2F%2Fi.imgur.com%2FFkzc35t.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"440\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.imgur.com/Fkzc35t.jpg?fb\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2FIycIjjo%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2FIycIjjo\\u0026image=https%3A%2F%2Fi.imgur.com%2FFkzc35t.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"440\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/ckyy6e\", \"height\": 440}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/-KrOOqSEn8C6NKyO2R3Cd4TE0DsW4_ybW2qKdiX0KfA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564746716.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/s1wYYNVv2RPtYWP2poGy3lmbJG_VNG7NRuamU5C0e_8.jpg?auto=webp\\u0026s=5634fa571e3e433e521180405607d193b27114ff\", \"width\": 4608, \"height\": 3072}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/s1wYYNVv2RPtYWP2poGy3lmbJG_VNG7NRuamU5C0e_8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=6962c1b047437bfa4176fb13d4b162c1783185e3\", \"width\": 108, \"height\": 72}, {\"url\": \"https://external-preview.redd.it/s1wYYNVv2RPtYWP2poGy3lmbJG_VNG7NRuamU5C0e_8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b4da805de785ff43146939869ae1ee7c945cb465\", \"width\": 216, \"height\": 144}, {\"url\": \"https://external-preview.redd.it/s1wYYNVv2RPtYWP2poGy3lmbJG_VNG7NRuamU5C0e_8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=efaf002eb4bbaa4ed53cac3402e91c29a7dcd97b\", \"width\": 320, \"height\": 213}, {\"url\": \"https://external-preview.redd.it/s1wYYNVv2RPtYWP2poGy3lmbJG_VNG7NRuamU5C0e_8.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=c30d3af1d92d0c77fc788b6f93b2a946a8d230d0\", \"width\": 640, \"height\": 426}, {\"url\": \"https://external-preview.redd.it/s1wYYNVv2RPtYWP2poGy3lmbJG_VNG7NRuamU5C0e_8.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=90e11dcf2733f5ad1eeb2ff1fec090e0ceb1a951\", \"width\": 960, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/s1wYYNVv2RPtYWP2poGy3lmbJG_VNG7NRuamU5C0e_8.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9df4903dcc3fc4249f47dc12fab54cb99fc8c526\", \"width\": 1080, \"height\": 720}], \"variants\": {}, \"id\": \"L8N7MILXJxpQ3pwcADm5I-EluU7v1FijuBy02ONkGGU\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ckyy6e\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nashov\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ckyy6e/dino_toy_photo_shoot/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/IycIjjo\", \"subreddit_subscribers\": 777, \"created_utc\": 1564717916.0, \"discussion_type\": null, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 0 views. Dino Toy Photo Shoot\", \"title\": \"Dino Toy Photo Shoot\", \"url\": \"https://imgur.com/a/IycIjjo\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 440, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2FIycIjjo%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2FIycIjjo\\u0026image=https%3A%2F%2Fi.imgur.com%2FFkzc35t.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"440\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.imgur.com/Fkzc35t.jpg?fb\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*Part 1 is [HERE](https://old.reddit.com/r/fixingmovies/comments/bnihgj/reimagining_xmen_2000_as_a_modern_superhero_movie/), Part 2 is [HERE](https://old.reddit.com/r/fixingmovies/comments/bz702s/reimagining_xmen_2000_as_a_modern_superhero_movie/), Part 3 is [HERE](https://old.reddit.com/r/fixingmovies/comments/c6b321/reimagining_xmen_2000_as_a_modern_superhero_movie/), and Part 4 is [HERE](https://old.reddit.com/r/fixingmovies/comments/ckt2bj/reimagining_xmen_2000_as_a_modern_superhero_movie/).*\\n\\n*And that's a wrap! Unless I suddenly get the urge to pick this reimagining up again, it looks like this is as good an ending as any.*\\n\\n*Thanks again to everybody who's followed along up to this point! I appreciate all the comments!*\\n\\n*[And now, the conclusion...](https://www.youtube.com/watch?v=Redja37Wav0)*\\n___________________\\n***X-Men: The White King - Part 2*** \\n___________________\\n***ACT 2 (cont'd):*** \\n\\nIn Chicago, paramedics struggle to revive the Professor as he goes into cardiac arrest. Over and over again, they attempt to restart his heart with a defibrillator, but it's no use. As **Scott** breaks down in tears, the Professor closes his eyes and breathes his last breaths. Moments later, the paramedics cover his face with a blanket.\\n\\nAll around America, the news breaks: Professor **Charles Xavier**, the face of Mutant Rights, has been assassinated.\\n\\nAs Scott looks away from the dying Professor, he barely manages to spot the glint of a rifle's sight. On the rooftop of a nearby building, he sees a hooded figure dressed in black, with a rifle slung over one shoulder.\\n__________________\\n\\nBack at the **X-Men**'s camp, **Kitty** feels a searing pain in her head as another vision begins...\\n__________________\\n\\nBack in 2049, **Katherine Pryde** and the X-Men charge down a staircase into the lower levels of the East Wing, where **Cerebro** awaits. After they fight their way through a throng of guards, **Rachel Summers** makes a move for the computer terminal, and she places the device's headpiece on her head. Her teammates move to protect her as she enters a deep psychic trance.\\n\\n*\\\"You can do this, Red,\\\"* Katherine tells her. *\\\"Just focus! Remember: time is a river. Let it flow through you, and let it carry you where you need to go.\\\"*\\n\\n**The White King**'s soldiers charge, but the X-Men hold the line against them. As Rachel sinks deeper into her trance, she finds herself floating through the **astral plane**. All around her, the fabric of space-time flows like a mighty river.\\n\\nShe sees **Nathaniel Essex** in his laboratory in London in 1886, years before he became known as \\\"The White King\\\". She sees **James Howlett**\\u2014the man she knows as \\\"**Wolverine**\\\"\\u2014wandering the forests of the Canadian Rockies. She sees a young Charles Xavier watching a meteor shower on the grounds of his family estate in Westchester. She sees a young **Erik Lehnsherr** marching beside Charles Xavier in a Mutant Rights demonstration with a picket sign in his hand. She sees her father, Scott Summers, arriving at the front door of the Xavier Institute as a teenager with a suitcase in his hands. And she sees her mother, **Jean Grey**, laying down beside him on a quiet night. All of these moments pass in an instant. But finally, she finds what she's looking for: a seventeen-year-old Katherine\\u2014still called \\\"Kitty\\\"\\u2014making camp in a remote field while on the run from the law.\\n\\nRachel begins murmuring something under her breath: a **set of coordinates**, followed by the phrase \\\"**Avalon Valley**\\\". She reaches out to Kitty, and Kitty falls to the ground...\\n________________\\n\\nBack at the X-Men's camp, without any warning, Kitty collapses. As Wolverine rushes to her aid, he finds her limbs twitching and her body trembling, as if she's having a powerful seizure. As her teammates try to keep her stable, she begins repeating a simple phrase, over and over again:\\n\\nA set of coordinates, followed by the phrase \\\"Avalon Valley\\\"...\\n________________\\n\\nBack in Chicago, Scott dashes up a nearby fire escape as the gunman attempts to flee, holding back tears all the while. After a brief chase, he manages to catch up with the gunman, and unleashes his optic blasts. The gunman dodges his blasts with ease and attempts to duck behind a chimney, but Scott shatters the chimney with another optic blast. In the ensuing struggle, the gunman's hood falls aside, and Scott finally sees his face. But then the gunman's face slowly changes its appearance\\u2014revealing the face of ***Mystique***.\\n\\n*\\\"You're all alone now, Summers,\\\"* Mystique says, smirking. *\\\"If you want to take on Nathaniel Essex, you won't have your doddering old schoolmaster to watch over you. In your grief, remember this: you condemned Xavier to death when you defied my master. You made the same foolish mistake as your father.\\\"*\\n\\nScreaming with rage, Scott tries to blast Mystique again, but she draws her handgun and fire three rounds at him, forcing him to dive for cover. Before he can take another shot, Mystique throws a stun grenade at him, and he's blinded by the blast. When he recovers, Mystique is gone.\\n\\nAs tears stream down his face, the awful truth sinks in: the Professor is dead, and there's nothing that he can do to change it.\\n________________\\n\\nBack at camp, Kitty's seizure finally stops, and she gradually comes to her senses. Moments later, the X-Men react with grief and horror as the news of the Professor's murder breaks on the radio.\\n\\nOver the course of an hour, the teammates attempt to comfort each other. Then Kitty says something truly unexpected:\\n\\n*\\\"I know where Essex is!\\\"* she exclaims.\\n\\nShe tells the X-Men about her visions of the ruined post-apocalyptic America, telling them all about what will happen if the **Gene Wars** happen according to Essex's plan. She tells them about the new generation of X-Men, and their mission to break into Essex's fortress to retrieve Cerebro. Last of all, she tells them about her psychic link with Rachel Summers, who used Cerebro to mentally send her consciousness back through time, allowing her to connect her mind to Kitty. Through this psychic link, Rachel has given the X-Men the location of Essex's hiding place\\u2014potentially giving them enough time to stop him. If they can attack Essex in his hiding place and defeat him, they might be able to change history and prevent the Gene Wars!\\n\\n*\\\"I thought it was a vision, but it wasn't!\\\"* Kitty says. *\\\"It was a message! A psychic message, sent through time!\\\"*\\n\\nThe X-Men are understandably skeptical about her story, finding it hard to believe that Kitty has truly seen the future. But when she tells the X-Men about Scott and Jean's daughter Rachel, Jean becomes visibly emotional. After a long pause, Jean tells them why.\\n\\n*\\\"When I was a kid, my best friend was a girl named* ***Rachel Abberline****,\\\"* she says. *\\\"One day when I was 11 years old, her mother came to drive her home after we spent the day playing together at my house. On their way back, there was an accident on the freeway, and a truck hit them head on. Rachel died a few hours later. I didn't find out until my teacher told us the next day.\\\"*\\n\\nShe wipes away a tear as she shares the story, and her teammates lean in to listen.\\n\\n*\\\"That day... I promised myself that if I ever became a mother, I'd name one of my children after her. If I ever had a daughter, I promised that I'd name her Rachel. But I've never told anyone that. Nobody. Not even Scott...\\\"*\\n\\nAs unlikely as it may seem, Jean immediately realizes that Kitty's story is true. Her vision of the future is real, and Rachel Summers really *is* her daughter. And if Kitty's vision was real, then the message from the future must also be real.\\n\\nGradually, the other X-Men overcome their doubts. Deciding to trust Kitty, they resolve to take a leap of faith and travel to the coordinates that she gave them. When they investigate the coordinates, they soon discover that they point to a remote expanse in the Rocky Mountains, which actually *is* known locally as \\\"Avalon Valley\\\".\\n\\nJust then, Scott returns from his trip to Chicago, still devastated from witnessing the Professor's death. As Jean comforts him, she tells him about Kitty's message from the future.\\n\\nMoments later, they're unexpectedly joined by *more* company. First, a shadow passes over them, and a figure with great feathered wings soars over the camp before touching gracefully down on the ground. Then, two men drive up to the camp in a Jeep. As Scott recognizes the new arrivals, his mouth opens in shock.\\n\\nIt's **Warren Worthington** (\\\"**Angel**\\\"), **Hank McCoy** (\\\"**Beast**\\\"), and **Bobby Drake** (\\\"**Iceman**\\\")\\u2014the other three members of the original X-Men, who left the school years ago.\\n\\n*\\\"We picked up your little distress signal, Jean,\\\"* Warren says.\\n\\n*\\\"I just hope we're not too late,\\\"* Hank says.\\n\\n*\\\"No,\\\"* Jean says. *\\\"You're right on time...\\\"*\\n\\n*\\\"I hope you're ready for a battle,\\\"* Scott says. *\\\"We've got work to do...\\\"*\\n\\nTogether, they pile into the Chinook and plot a course for Avalon Valley.\\n________________\\n\\n***ACT 3:***\\n\\nAfter a lengthy flight across the United States, the X-Men approach Avalon Valley, where a heavily fortified bunker is nestled amid the towering pines and firs. They instantly realize that Kitty's message was real, and Kitty feels a strong sense of *d\\u00e9j\\u00e0 vu* as she recognizes the forested valley from her vision. Immediately, she knows that it's the future site of the city of Avalon!\\n\\nFrom inside his base, Essex watches them approach, and he keys in a command on his computer. Moments later, a squad of Sentinels emerges from a hidden doorway in the ground, and they fire on the Chinook.\\n\\nJean banks hard to avoid the barrage of laser-fire, but a blast hits the helicopter in the engine tank, and the X-Men brace for a crash-landing.\\n\\n*\\\"Everybody out!\\\"* Scott yells.\\n\\nAs Scott and **Alex** face each other, they both find themselves flashing back to the fateful plane crash from their childhood. This time, they vow to stay together.\\n\\nThe Chinook crashes. As the X-Men pile out, they charge the Sentinels head-on, and the assault on Avalon Valley begins.\\n_______________________\\n\\nBack in 2049, Rachel awakens from her trance, only to find her teammates preparing for a fresh assault by the White King's troops. Immediately, she begins to panic.\\n\\n*\\\"This is all wrong!\\\"* she says. *\\\"That should have erased this timeline! None of this should be happening!\\\"*\\n\\nKatherine tries to calm her down, but it's no use.\\n\\n*\\\"You don't know that, Red!\\\"* she says. *\\\"Psychic time travel is still theoretical! Nobody's ever done what you just did. Nobody knows how it's supposed to affect the timeline!\\\"*\\n\\nStill, Rachel suspects the worst: her plan failed, and the past X-Men *still* failed to prevent the Gene Wars.\\n\\nBut before she can voice her fears, a figure suddenly strides down the nearest staircase: a beautiful **red-haired woman** dressed in a cloak as black as midnight. The X-Men gasp in shock and fear. Rachel, too stunned to speak, instantly recognizes the woman: it's *her mother*, Jean Grey!\\n\\nFollowing closely behind Jean, the White King enters the room. As he gazes at his enemies, he smirks.\\n\\n*\\\"You could have been great, Rachel,\\\"* Jean says. *\\\"But you turned your back on me. You turned your back on your father. You turned your back on all that we built. You're no child of mine, Rachel Summers.\\\"*\\n\\nJean raises her hand, preparing to strike her daughter with a psychic blast. Holding back tears, Rachel raises a hand to defend herself.\\n\\n*\\\"You're not my mother!\\\"* she screams defiantly. *\\\"I watched my mother die ten years ago! And I swore that I'd kill the man who took her from me!\\\"*\\n\\nThe two powerful psychics square off with each other. Summoning a massive burst of telekinetic energy, Rachel sweeps \\\"Jean\\\" off her feet and slams her against the nearest wall, knocking her unconscious. Trembling with anger, she faces the White King.\\n\\n*\\\"You... You cloned my mother?!\\\"* Rachel screams.\\n\\n*\\\"Few specimens have captivated me as she did,\\\"* the White King muses. *\\\"It was a shame to kill her. But her genes served me well. For posterity, I gave her replica a place at my right hand. Perhaps I'll grant you the same honor after I burn your corpse to ash...\\\"*\\n\\n*\\\"Kill him!\\\"* Katherine orders.\\n\\nThe X-Men charge at the White King, but he stands strong.\\n___________________\\n\\nIn the present day, a massive battle erupts as the X-Men charge into Essex's hideout, and find themselves greeted by an army of Sentinels. On the other side of his robotic army, Essex awaits. Close by, two of his bodyguards await his orders: **Remy LeBeau** (\\\"**Gambit**\\\") and **Victor Creed** (\\\"**Sabretooth**\\\").\\n\\nSeeing his old foe, Sabretooth rushes at Wolverine, and a fight ensues between the two lifelong enemies. Unexpectedly, a look of recognition crosses Gambit's face as he recognizes Rogue.\\n\\n*\\\"...Ch\\u00e8rie?\\\"* he breathes.\\n\\nRogue charges at Gambit. As the two old comrades cross fists, it soon becomes clear that they're *more* than just former teammates: they're *lovers* who parted on bad terms.\\n\\nAll around the base, the X-Men fight for their lives. Standing back-to-back, Scott and his brother Alex vaporize Sentinels with blasts of glowing energy. **Storm** unleashes her lightning bolts and electrocutes Sentinels left and right. Over and over again, **Colossus** charges at Sentinels, punching through their thick armor with his metal fists. **Nightcrawler** leaps around the room, effortlessly dodging lasers as he runs along walls and vanishes in a puff of smoke. Beast swings from the ceiling and pounces on Sentinels, ripping off their mechanical limbs with his mighty muscles. Angel swoops and dives with ease, dodging laser-fire as his mighty wings carry him upward. And Iceman freezes Sentinels solid, letting Scott shatter them with his optic blasts.\\n\\nAs the X-Men make their stand against the Sentinels, Jean steps forward to face Essex. As they face each other from across the room, she summons her telepathy and reaches out to touch his mind. But Essex\\u2014a powerful telepath in his own right\\u2014is ready for her.\\n\\nAs they enter deep trances, Jean and Essex square off against each other in the great void of the astral plane. In the base, a fearsome battle rages all around them, and they float into the air\\u2014enclosed by bubbles of crackling psychic energy. Immediately, Jean feels Essex working his way into her mind, and she screams in terror and pain.\\n__________________\\n\\nIn 2049, the X-Men make a doomed stand against the White King, who cuts his way through the young Mutants with ease. Rachel can only watch helplessly as her friends fight for their lives. But with her mind still connected to Cerebro, she makes a final desperate attempt to leap into the astral plane and cross the great expanse of time.\\n\\n**Karma** is the first to die, as the White King shoots her through the chest with an energy blast. Then he uses his telekinesis to snap **Moonstar**'s neck. When **Sunspot** tries to charge at him, he grabs him by the throat and chokes him to death. **Wolfsbane** tries to slash his throat from behind, but he reaches out with his telepathy and sends her into a coma.\\n\\nKnowing that she has only moments left to live, Rachel chooses to use her last moments to say a heartfelt goodbye. As she drifts through the astral plane and watches the timestream slip by her, she finds herself at the battle of Avalon Valley, where her mother is making a stand against Nathaniel Essex. She reaches out and touches her mother's mind...\\n__________________\\n\\nOn the astral plane, as Jean struggles to fend off Essex's psychic attack, she suddenly sees a figure appear before her: a young woman with bright red hair, but with eyes that remind her of Scott. The young woman smiles at her.\\n\\n*\\\"I love you, Mom,\\\"* she says. *\\\"And I'll always be with you...\\\"*\\n\\nThe figure vanishes, but Jean instantly understands.\\n\\nOvercome with emotion, she strikes back at Essex with the full might of her psychic powers. She feels herself borne upward with wings of flame\\u2014and she sees Essex's pale body consumed by fire.\\n\\n*\\\"No...\\\"* Essex murmurs. *\\\"It's not possible...\\\"*\\n\\nAs Essex's mind withers away, the last sound that he hears is the shrill scream of a **great bird**. With that, his lifeless body falls to the ground.\\n\\nAs Essex dies, Gambit and Sabretooth flee the base. When the last Sentinel falls, the X-Men realize that the battle is over. Against all odds, they've won.\\n______________________\\n\\nIn the White King's fortress, the White King steps over **Cannonball**'s lifeless body and marches toward Katherine. He raises his hand and blasts her through the stomach with a burst of energy. As Katherine clings to life, she looks up at the White King, her eyes burning with defiant hatred. But then she smiles.\\n\\nAbove the White King's fortress, a storm is brewing. The skies appear to burn, and a dark wind sweeps the land. The Earth trembles. All around, solid objects are subsumed by shadow.\\n\\nThe timeline is breaking down, and this present world is being written out of existence. As she realizes what's happening, Katherine realizes that her plan succeeded: the X-Men have changed the past, and the White King's rule will now never come to pass. Against all odds, they've won.\\n\\nAs soon as the White King realizes what's happening, his smug smile vanishes, replaced by an expression of pure terror.\\n\\n*\\\"No...\\\"* the White King murmurs. *\\\"It's not possible...\\\"*\\n\\nIn the instant before they both vanish from existence, Katherine raises one hand and gives the White King the middle finger.\\n______________________\\n\\nIn the present day, the X-Men leave Essex's fortress, only to be greeted by a squad of helicopters and a platoon of black-clad soldiers. A familiar figure is leading them: Special Agent **Valerie Cooper**.\\n\\n*\\\"You guys made one hell of a mess,\\\"* she says, surveying the aftermath of the battle. *\\\"But I guess I owe you a favor. My people are in touch with the Justice Department now. You're free to go.\\\"*\\n\\n*\\\"Just like that?\\\"* Scott asks skeptically.\\n\\n*\\\"It'll take a few days to make those charges vanish,\\\"* Special Agent Cooper says. *\\\"But in the meantime, you'll be left in peace.\\\"*\\n\\n*\\\"So that means we'll never hear from you again, right?\\\"* Scott asks.\\n\\nCooper smiles.\\n\\n*\\\"I wouldn't be so sure of that,\\\"* she says.\\n\\nShe hands Scott a card with her contact information on it. With that, she's gone.\\n_______________________\\n\\nA few days after the battle, the X-Men travel back to Westchester, where they gather on the grounds of the ruined **Xavier Institute**. In a solemn memorial service, they scatter Professor Xavier's ashes on a hilltop, then plant a gravestone nearby. The gravestone bears an *\\\"X\\\"* emblem, accompanied by a few simple words:\\n\\n***Charles Francis Xavier: 1954-2019***.\\n\\n***Friend. Teacher. Father.***\\n_________________\\n\\nBack at the prison in Illinois, a guard visits **Magneto**'s cell to tell him that his old friend Charles Xavier has died, and his students have laid him to rest.\\n\\nAs Magneto hangs his head in sorrow, he murmurs a quiet prayer in Hebrew.\\n\\nLater, when the guard retires to a monitor room at the end of his shift, his metal keys inexplicably begin vibrating as he hangs them on the wall. He stares at them, unsure whether he imagined it.\\n\\nBack in his cell, Magneto stares into the darkness from behind a set of iron bars.\\n__________________\\n\\nWith the Professor laid to rest, the X-Men leave the ruins of the mansion behind, unsure whether they'll ever return.\\n\\n*\\\"So that's it?\\\"* Storm asks, wiping away a tear. *\\\"This is the end?\\\"*\\n\\nScott sighs.\\n\\n*\\\"This place is the only home I've got left,\\\"* he says. *\\\"The Professor wouldn't have wanted me to just give up like this. But without the Institute...\\\"*\\n\\nWarren gives him a faint smile.\\n\\n*\\\"If you're looking for a new home, I might know a place,\\\"* he says.\\n\\nIntrigued, Scott raises one eyebrow.\\n__________________\\n\\nA few weeks after the funeral service, Warren shows his teammates into a lavish penthouse complex that he inherited from his late father, which is big enough for all of them. As they look at their surroundings in awe, we slowly zoom out from the nearest window. When we get a look at the penthouse's surroundings, we see that it's in the middle of downtown ***San Francisco***. The X-Men have left Westchester far behind, but they have a new home on the other side of the country.\\n\\n*\\\"I think I could get used to this place,\\\"* Kitty says.\\n\\nIn the living room, a few of the X-Men gather around a television set watching a news broadcast. On the TV, a news bulletin informs the public that all domestic terrorism charges against the Mutants known as \\\"The X-Men\\\" have been dropped; recently, new video footage of the destruction of New York emerged, clearly showing the X-Men defending the city from Mutant X in a desperate battle. Thanks to this new footage, public opinion on Mutant Rights has changed dramatically, and much of the public now views the X-Men as heroes.\\n\\n*\\\"I didn't know there were cameras on us that day,\\\"* Wolverine says.\\n\\nNearby, Special Agent Cooper watches the news bulletin from the couch.\\n\\n*\\\"There weren't,\\\"* she says, smirking.\\n\\nAs soon as she says that, Wolverine realizes what's happened:\\n\\nCooper and her team cleared the X-Men's names by constructing an elaborate fake video, which is so expertly doctored that no one will know that it's fake. Though the team are grateful that the charges against them have been dropped, they're uneasy with the knowledge that Cooper helped them by deceiving the public.\\n\\n*\\\"I'm a spy,\\\"* Cooper says simply. *\\\"In my line of work, sometimes it takes a good lie to bring the truth to light.\\\"*\\n\\n*\\\"You've pulled a lot of strings for us,\\\"* Colossus says. *\\\"I suppose you'll be wanting something in return, nyet?\\\"*\\n\\nCooper smiles as she heads for the door.\\n\\n*\\\"I'll be in touch when I need you,\\\"* she says.\\n\\nAs she leaves, the X-Men exchange uneasy glances, silently wondering if they've made a deal with the devil.\\n\\nBut then Jean points to the clock.\\n\\n*\\\"It's time,\\\"* she says.\\n\\nScott nods.\\n________________________\\n\\nOn a bright Summer day, a crowd of reporters gathers in the heart of downtown San Francisco for a press conference. Right on time, Scott Summers arrives to greet them, flanked by his teammates: Jean, Alex, Angel, Beast, Iceman, Storm, Nightcrawler, Colossus, Wolverine, and Rogue. All of them are fully suited up, and ready to put on their best face for the cameras. Within minutes, footage of the X-Men is all over the afternoon news, and *everyone* is talking about the Mutants who saved New York.\\n\\nThe X-Men's days of hiding out in a Westchester mansion are over. Now, they're ready to face the world.\\n\\n*\\\"Is there anything you'd like to announce, Mr. Summers?\\\"* a reporter asks.\\n\\nScott smiles, clearly ready with a planned reply.\\n\\n*\\\"From this day forward, the* ***New Xavier Institute*** *is open to any and all Mutants in need,\\\"* he says. *\\\"I don't care who you are, and I don't care where you come from. If you've got gifts, you've got a place with us. You don't have to be afraid anymore, and you don't have to be an outcast anymore.\\\"*\\n\\nAll around America, young Mutants watch Scott's speech, suddenly realizing that they could have a new home with other Mutants like them.\\n\\n*\\\"The world's a big place,\\\"* Scott says. *\\\"There's plenty of room here for all of us \\u2014 human and Mutant alike. We're all on the same side, and we all want the same thing: a brighter future, and a better world for our children. But I'm here to tell you: the future begins now! Some people out there might fear us. Some people might hate us. But the X-Men are here to stay. And we're here to fight for a better world!\\\"*\\n\\nAs a crowd of onlookers erupts in cheers, we fade to black.\\n_____________________\\n\\n***EPILOGUE:***\\n\\nSome time after the press conference, the sun rises over San Francisco as Jean wakes up early and goes to check the mail at the **New Xavier Institute**. At the bottom of a stack of letters, she finds an expensive-looking parchment envelope sealed with bright red wax, and stamped with a distinctive emblem: the letter \\\"**H**\\\", overlaid with a **pitchfork**. Curious, she opens the envelope and looks over the letter inside, which is printed in engraved gold lettering.\\n\\nThe letter is unsigned, but the parchment is marked with an emblem at the bottom of the page. This one is an emblem of a **chess piece**: the **Black King**...\\n____________________\\n\\n**TL;DR:** Professor Xavier dies after he's shot by the mysterious assassin, and Scott chases the assassin down\\u2014only to find that it's Mystique, who wanted the Professor dead so that he couldn't use his powers against Essex.\\n\\nIn the future, an aging Kitty Pryde leads a new generation of X-Men in an attack on Essex's fortress, and they manage to steal back Cerebro\\u2014allowing the telepath Rachel Summers to send a psychic message into the past, giving the present-day X-Men the location of Essex's secret base. It's revealed that their ultimate plan was to change history by helping the X-Men defeat Essex in the past, thereby preventing the Gene Wars and stopping him from ever conquering Earth.\\n\\nIn the present, Kitty relays Essex's location to her teammates, allowing them to launch a surprise attack on his base. As they storm the base in a massive battle, Jean personally kills Essex in a telepathic duel, and successfully manages to change the course of history. Later, after mourning the Professor, the X-Men clear their names with the help of CIA agent Valerie Cooper, and they move to San Francisco to begin the next chapter of their lives.\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cks0he\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1565052529.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564711854.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EPart 1 is \\u003Ca href=\\\"https://old.reddit.com/r/fixingmovies/comments/bnihgj/reimagining_xmen_2000_as_a_modern_superhero_movie/\\\"\\u003EHERE\\u003C/a\\u003E, Part 2 is \\u003Ca href=\\\"https://old.reddit.com/r/fixingmovies/comments/bz702s/reimagining_xmen_2000_as_a_modern_superhero_movie/\\\"\\u003EHERE\\u003C/a\\u003E, Part 3 is \\u003Ca href=\\\"https://old.reddit.com/r/fixingmovies/comments/c6b321/reimagining_xmen_2000_as_a_modern_superhero_movie/\\\"\\u003EHERE\\u003C/a\\u003E, and Part 4 is \\u003Ca href=\\\"https://old.reddit.com/r/fixingmovies/comments/ckt2bj/reimagining_xmen_2000_as_a_modern_superhero_movie/\\\"\\u003EHERE\\u003C/a\\u003E.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EAnd that\\u0026#39;s a wrap! Unless I suddenly get the urge to pick this reimagining up again, it looks like this is as good an ending as any.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EThanks again to everybody who\\u0026#39;s followed along up to this point! I appreciate all the comments!\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=Redja37Wav0\\\"\\u003EAnd now, the conclusion...\\u003C/a\\u003E\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EX-Men: The White King - Part 2\\u003C/em\\u003E\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 2 (cont\\u0026#39;d):\\u003C/em\\u003E\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn Chicago, paramedics struggle to revive the Professor as he goes into cardiac arrest. Over and over again, they attempt to restart his heart with a defibrillator, but it\\u0026#39;s no use. As \\u003Cstrong\\u003EScott\\u003C/strong\\u003E breaks down in tears, the Professor closes his eyes and breathes his last breaths. Moments later, the paramedics cover his face with a blanket.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll around America, the news breaks: Professor \\u003Cstrong\\u003ECharles Xavier\\u003C/strong\\u003E, the face of Mutant Rights, has been assassinated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Scott looks away from the dying Professor, he barely manages to spot the glint of a rifle\\u0026#39;s sight. On the rooftop of a nearby building, he sees a hooded figure dressed in black, with a rifle slung over one shoulder.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBack at the \\u003Cstrong\\u003EX-Men\\u003C/strong\\u003E\\u0026#39;s camp, \\u003Cstrong\\u003EKitty\\u003C/strong\\u003E feels a searing pain in her head as another vision begins...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBack in 2049, \\u003Cstrong\\u003EKatherine Pryde\\u003C/strong\\u003E and the X-Men charge down a staircase into the lower levels of the East Wing, where \\u003Cstrong\\u003ECerebro\\u003C/strong\\u003E awaits. After they fight their way through a throng of guards, \\u003Cstrong\\u003ERachel Summers\\u003C/strong\\u003E makes a move for the computer terminal, and she places the device\\u0026#39;s headpiece on her head. Her teammates move to protect her as she enters a deep psychic trance.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You can do this, Red,\\u0026quot;\\u003C/em\\u003E Katherine tells her. \\u003Cem\\u003E\\u0026quot;Just focus! Remember: time is a river. Let it flow through you, and let it carry you where you need to go.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThe White King\\u003C/strong\\u003E\\u0026#39;s soldiers charge, but the X-Men hold the line against them. As Rachel sinks deeper into her trance, she finds herself floating through the \\u003Cstrong\\u003Eastral plane\\u003C/strong\\u003E. All around her, the fabric of space-time flows like a mighty river.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe sees \\u003Cstrong\\u003ENathaniel Essex\\u003C/strong\\u003E in his laboratory in London in 1886, years before he became known as \\u0026quot;The White King\\u0026quot;. She sees \\u003Cstrong\\u003EJames Howlett\\u003C/strong\\u003E\\u2014the man she knows as \\u0026quot;\\u003Cstrong\\u003EWolverine\\u003C/strong\\u003E\\u0026quot;\\u2014wandering the forests of the Canadian Rockies. She sees a young Charles Xavier watching a meteor shower on the grounds of his family estate in Westchester. She sees a young \\u003Cstrong\\u003EErik Lehnsherr\\u003C/strong\\u003E marching beside Charles Xavier in a Mutant Rights demonstration with a picket sign in his hand. She sees her father, Scott Summers, arriving at the front door of the Xavier Institute as a teenager with a suitcase in his hands. And she sees her mother, \\u003Cstrong\\u003EJean Grey\\u003C/strong\\u003E, laying down beside him on a quiet night. All of these moments pass in an instant. But finally, she finds what she\\u0026#39;s looking for: a seventeen-year-old Katherine\\u2014still called \\u0026quot;Kitty\\u0026quot;\\u2014making camp in a remote field while on the run from the law.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERachel begins murmuring something under her breath: a \\u003Cstrong\\u003Eset of coordinates\\u003C/strong\\u003E, followed by the phrase \\u0026quot;\\u003Cstrong\\u003EAvalon Valley\\u003C/strong\\u003E\\u0026quot;. She reaches out to Kitty, and Kitty falls to the ground...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBack at the X-Men\\u0026#39;s camp, without any warning, Kitty collapses. As Wolverine rushes to her aid, he finds her limbs twitching and her body trembling, as if she\\u0026#39;s having a powerful seizure. As her teammates try to keep her stable, she begins repeating a simple phrase, over and over again:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA set of coordinates, followed by the phrase \\u0026quot;Avalon Valley\\u0026quot;...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBack in Chicago, Scott dashes up a nearby fire escape as the gunman attempts to flee, holding back tears all the while. After a brief chase, he manages to catch up with the gunman, and unleashes his optic blasts. The gunman dodges his blasts with ease and attempts to duck behind a chimney, but Scott shatters the chimney with another optic blast. In the ensuing struggle, the gunman\\u0026#39;s hood falls aside, and Scott finally sees his face. But then the gunman\\u0026#39;s face slowly changes its appearance\\u2014revealing the face of \\u003Cstrong\\u003E\\u003Cem\\u003EMystique\\u003C/em\\u003E\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;re all alone now, Summers,\\u0026quot;\\u003C/em\\u003E Mystique says, smirking. \\u003Cem\\u003E\\u0026quot;If you want to take on Nathaniel Essex, you won\\u0026#39;t have your doddering old schoolmaster to watch over you. In your grief, remember this: you condemned Xavier to death when you defied my master. You made the same foolish mistake as your father.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScreaming with rage, Scott tries to blast Mystique again, but she draws her handgun and fire three rounds at him, forcing him to dive for cover. Before he can take another shot, Mystique throws a stun grenade at him, and he\\u0026#39;s blinded by the blast. When he recovers, Mystique is gone.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs tears stream down his face, the awful truth sinks in: the Professor is dead, and there\\u0026#39;s nothing that he can do to change it.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBack at camp, Kitty\\u0026#39;s seizure finally stops, and she gradually comes to her senses. Moments later, the X-Men react with grief and horror as the news of the Professor\\u0026#39;s murder breaks on the radio.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOver the course of an hour, the teammates attempt to comfort each other. Then Kitty says something truly unexpected:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I know where Essex is!\\u0026quot;\\u003C/em\\u003E she exclaims.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe tells the X-Men about her visions of the ruined post-apocalyptic America, telling them all about what will happen if the \\u003Cstrong\\u003EGene Wars\\u003C/strong\\u003E happen according to Essex\\u0026#39;s plan. She tells them about the new generation of X-Men, and their mission to break into Essex\\u0026#39;s fortress to retrieve Cerebro. Last of all, she tells them about her psychic link with Rachel Summers, who used Cerebro to mentally send her consciousness back through time, allowing her to connect her mind to Kitty. Through this psychic link, Rachel has given the X-Men the location of Essex\\u0026#39;s hiding place\\u2014potentially giving them enough time to stop him. If they can attack Essex in his hiding place and defeat him, they might be able to change history and prevent the Gene Wars!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I thought it was a vision, but it wasn\\u0026#39;t!\\u0026quot;\\u003C/em\\u003E Kitty says. \\u003Cem\\u003E\\u0026quot;It was a message! A psychic message, sent through time!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe X-Men are understandably skeptical about her story, finding it hard to believe that Kitty has truly seen the future. But when she tells the X-Men about Scott and Jean\\u0026#39;s daughter Rachel, Jean becomes visibly emotional. After a long pause, Jean tells them why.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;When I was a kid, my best friend was a girl named\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003ERachel Abberline\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E,\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;One day when I was 11 years old, her mother came to drive her home after we spent the day playing together at my house. On their way back, there was an accident on the freeway, and a truck hit them head on. Rachel died a few hours later. I didn\\u0026#39;t find out until my teacher told us the next day.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe wipes away a tear as she shares the story, and her teammates lean in to listen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;That day... I promised myself that if I ever became a mother, I\\u0026#39;d name one of my children after her. If I ever had a daughter, I promised that I\\u0026#39;d name her Rachel. But I\\u0026#39;ve never told anyone that. Nobody. Not even Scott...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs unlikely as it may seem, Jean immediately realizes that Kitty\\u0026#39;s story is true. Her vision of the future is real, and Rachel Summers really \\u003Cem\\u003Eis\\u003C/em\\u003E her daughter. And if Kitty\\u0026#39;s vision was real, then the message from the future must also be real.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGradually, the other X-Men overcome their doubts. Deciding to trust Kitty, they resolve to take a leap of faith and travel to the coordinates that she gave them. When they investigate the coordinates, they soon discover that they point to a remote expanse in the Rocky Mountains, which actually \\u003Cem\\u003Eis\\u003C/em\\u003E known locally as \\u0026quot;Avalon Valley\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust then, Scott returns from his trip to Chicago, still devastated from witnessing the Professor\\u0026#39;s death. As Jean comforts him, she tells him about Kitty\\u0026#39;s message from the future.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoments later, they\\u0026#39;re unexpectedly joined by \\u003Cem\\u003Emore\\u003C/em\\u003E company. First, a shadow passes over them, and a figure with great feathered wings soars over the camp before touching gracefully down on the ground. Then, two men drive up to the camp in a Jeep. As Scott recognizes the new arrivals, his mouth opens in shock.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s \\u003Cstrong\\u003EWarren Worthington\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EAngel\\u003C/strong\\u003E\\u0026quot;), \\u003Cstrong\\u003EHank McCoy\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EBeast\\u003C/strong\\u003E\\u0026quot;), and \\u003Cstrong\\u003EBobby Drake\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EIceman\\u003C/strong\\u003E\\u0026quot;)\\u2014the other three members of the original X-Men, who left the school years ago.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We picked up your little distress signal, Jean,\\u0026quot;\\u003C/em\\u003E Warren says.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I just hope we\\u0026#39;re not too late,\\u0026quot;\\u003C/em\\u003E Hank says.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;No,\\u0026quot;\\u003C/em\\u003E Jean says. \\u003Cem\\u003E\\u0026quot;You\\u0026#39;re right on time...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I hope you\\u0026#39;re ready for a battle,\\u0026quot;\\u003C/em\\u003E Scott says. \\u003Cem\\u003E\\u0026quot;We\\u0026#39;ve got work to do...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETogether, they pile into the Chinook and plot a course for Avalon Valley.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 3:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter a lengthy flight across the United States, the X-Men approach Avalon Valley, where a heavily fortified bunker is nestled amid the towering pines and firs. They instantly realize that Kitty\\u0026#39;s message was real, and Kitty feels a strong sense of \\u003Cem\\u003Ed\\u00e9j\\u00e0 vu\\u003C/em\\u003E as she recognizes the forested valley from her vision. Immediately, she knows that it\\u0026#39;s the future site of the city of Avalon!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom inside his base, Essex watches them approach, and he keys in a command on his computer. Moments later, a squad of Sentinels emerges from a hidden doorway in the ground, and they fire on the Chinook.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJean banks hard to avoid the barrage of laser-fire, but a blast hits the helicopter in the engine tank, and the X-Men brace for a crash-landing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Everybody out!\\u0026quot;\\u003C/em\\u003E Scott yells.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Scott and \\u003Cstrong\\u003EAlex\\u003C/strong\\u003E face each other, they both find themselves flashing back to the fateful plane crash from their childhood. This time, they vow to stay together.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Chinook crashes. As the X-Men pile out, they charge the Sentinels head-on, and the assault on Avalon Valley begins.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBack in 2049, Rachel awakens from her trance, only to find her teammates preparing for a fresh assault by the White King\\u0026#39;s troops. Immediately, she begins to panic.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;This is all wrong!\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;That should have erased this timeline! None of this should be happening!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKatherine tries to calm her down, but it\\u0026#39;s no use.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You don\\u0026#39;t know that, Red!\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;Psychic time travel is still theoretical! Nobody\\u0026#39;s ever done what you just did. Nobody knows how it\\u0026#39;s supposed to affect the timeline!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStill, Rachel suspects the worst: her plan failed, and the past X-Men \\u003Cem\\u003Estill\\u003C/em\\u003E failed to prevent the Gene Wars.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut before she can voice her fears, a figure suddenly strides down the nearest staircase: a beautiful \\u003Cstrong\\u003Ered-haired woman\\u003C/strong\\u003E dressed in a cloak as black as midnight. The X-Men gasp in shock and fear. Rachel, too stunned to speak, instantly recognizes the woman: it\\u0026#39;s \\u003Cem\\u003Eher mother\\u003C/em\\u003E, Jean Grey!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFollowing closely behind Jean, the White King enters the room. As he gazes at his enemies, he smirks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You could have been great, Rachel,\\u0026quot;\\u003C/em\\u003E Jean says. \\u003Cem\\u003E\\u0026quot;But you turned your back on me. You turned your back on your father. You turned your back on all that we built. You\\u0026#39;re no child of mine, Rachel Summers.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJean raises her hand, preparing to strike her daughter with a psychic blast. Holding back tears, Rachel raises a hand to defend herself.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;re not my mother!\\u0026quot;\\u003C/em\\u003E she screams defiantly. \\u003Cem\\u003E\\u0026quot;I watched my mother die ten years ago! And I swore that I\\u0026#39;d kill the man who took her from me!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe two powerful psychics square off with each other. Summoning a massive burst of telekinetic energy, Rachel sweeps \\u0026quot;Jean\\u0026quot; off her feet and slams her against the nearest wall, knocking her unconscious. Trembling with anger, she faces the White King.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You... You cloned my mother?!\\u0026quot;\\u003C/em\\u003E Rachel screams.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Few specimens have captivated me as she did,\\u0026quot;\\u003C/em\\u003E the White King muses. \\u003Cem\\u003E\\u0026quot;It was a shame to kill her. But her genes served me well. For posterity, I gave her replica a place at my right hand. Perhaps I\\u0026#39;ll grant you the same honor after I burn your corpse to ash...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Kill him!\\u0026quot;\\u003C/em\\u003E Katherine orders.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe X-Men charge at the White King, but he stands strong.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn the present day, a massive battle erupts as the X-Men charge into Essex\\u0026#39;s hideout, and find themselves greeted by an army of Sentinels. On the other side of his robotic army, Essex awaits. Close by, two of his bodyguards await his orders: \\u003Cstrong\\u003ERemy LeBeau\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EGambit\\u003C/strong\\u003E\\u0026quot;) and \\u003Cstrong\\u003EVictor Creed\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003ESabretooth\\u003C/strong\\u003E\\u0026quot;).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESeeing his old foe, Sabretooth rushes at Wolverine, and a fight ensues between the two lifelong enemies. Unexpectedly, a look of recognition crosses Gambit\\u0026#39;s face as he recognizes Rogue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;...Ch\\u00e8rie?\\u0026quot;\\u003C/em\\u003E he breathes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERogue charges at Gambit. As the two old comrades cross fists, it soon becomes clear that they\\u0026#39;re \\u003Cem\\u003Emore\\u003C/em\\u003E than just former teammates: they\\u0026#39;re \\u003Cem\\u003Elovers\\u003C/em\\u003E who parted on bad terms.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll around the base, the X-Men fight for their lives. Standing back-to-back, Scott and his brother Alex vaporize Sentinels with blasts of glowing energy. \\u003Cstrong\\u003EStorm\\u003C/strong\\u003E unleashes her lightning bolts and electrocutes Sentinels left and right. Over and over again, \\u003Cstrong\\u003EColossus\\u003C/strong\\u003E charges at Sentinels, punching through their thick armor with his metal fists. \\u003Cstrong\\u003ENightcrawler\\u003C/strong\\u003E leaps around the room, effortlessly dodging lasers as he runs along walls and vanishes in a puff of smoke. Beast swings from the ceiling and pounces on Sentinels, ripping off their mechanical limbs with his mighty muscles. Angel swoops and dives with ease, dodging laser-fire as his mighty wings carry him upward. And Iceman freezes Sentinels solid, letting Scott shatter them with his optic blasts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the X-Men make their stand against the Sentinels, Jean steps forward to face Essex. As they face each other from across the room, she summons her telepathy and reaches out to touch his mind. But Essex\\u2014a powerful telepath in his own right\\u2014is ready for her.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs they enter deep trances, Jean and Essex square off against each other in the great void of the astral plane. In the base, a fearsome battle rages all around them, and they float into the air\\u2014enclosed by bubbles of crackling psychic energy. Immediately, Jean feels Essex working his way into her mind, and she screams in terror and pain.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn 2049, the X-Men make a doomed stand against the White King, who cuts his way through the young Mutants with ease. Rachel can only watch helplessly as her friends fight for their lives. But with her mind still connected to Cerebro, she makes a final desperate attempt to leap into the astral plane and cross the great expanse of time.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EKarma\\u003C/strong\\u003E is the first to die, as the White King shoots her through the chest with an energy blast. Then he uses his telekinesis to snap \\u003Cstrong\\u003EMoonstar\\u003C/strong\\u003E\\u0026#39;s neck. When \\u003Cstrong\\u003ESunspot\\u003C/strong\\u003E tries to charge at him, he grabs him by the throat and chokes him to death. \\u003Cstrong\\u003EWolfsbane\\u003C/strong\\u003E tries to slash his throat from behind, but he reaches out with his telepathy and sends her into a coma.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKnowing that she has only moments left to live, Rachel chooses to use her last moments to say a heartfelt goodbye. As she drifts through the astral plane and watches the timestream slip by her, she finds herself at the battle of Avalon Valley, where her mother is making a stand against Nathaniel Essex. She reaches out and touches her mother\\u0026#39;s mind...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EOn the astral plane, as Jean struggles to fend off Essex\\u0026#39;s psychic attack, she suddenly sees a figure appear before her: a young woman with bright red hair, but with eyes that remind her of Scott. The young woman smiles at her.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I love you, Mom,\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;And I\\u0026#39;ll always be with you...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe figure vanishes, but Jean instantly understands.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOvercome with emotion, she strikes back at Essex with the full might of her psychic powers. She feels herself borne upward with wings of flame\\u2014and she sees Essex\\u0026#39;s pale body consumed by fire.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;No...\\u0026quot;\\u003C/em\\u003E Essex murmurs. \\u003Cem\\u003E\\u0026quot;It\\u0026#39;s not possible...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Essex\\u0026#39;s mind withers away, the last sound that he hears is the shrill scream of a \\u003Cstrong\\u003Egreat bird\\u003C/strong\\u003E. With that, his lifeless body falls to the ground.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Essex dies, Gambit and Sabretooth flee the base. When the last Sentinel falls, the X-Men realize that the battle is over. Against all odds, they\\u0026#39;ve won.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn the White King\\u0026#39;s fortress, the White King steps over \\u003Cstrong\\u003ECannonball\\u003C/strong\\u003E\\u0026#39;s lifeless body and marches toward Katherine. He raises his hand and blasts her through the stomach with a burst of energy. As Katherine clings to life, she looks up at the White King, her eyes burning with defiant hatred. But then she smiles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAbove the White King\\u0026#39;s fortress, a storm is brewing. The skies appear to burn, and a dark wind sweeps the land. The Earth trembles. All around, solid objects are subsumed by shadow.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe timeline is breaking down, and this present world is being written out of existence. As she realizes what\\u0026#39;s happening, Katherine realizes that her plan succeeded: the X-Men have changed the past, and the White King\\u0026#39;s rule will now never come to pass. Against all odds, they\\u0026#39;ve won.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs soon as the White King realizes what\\u0026#39;s happening, his smug smile vanishes, replaced by an expression of pure terror.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;No...\\u0026quot;\\u003C/em\\u003E the White King murmurs. \\u003Cem\\u003E\\u0026quot;It\\u0026#39;s not possible...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the instant before they both vanish from existence, Katherine raises one hand and gives the White King the middle finger.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn the present day, the X-Men leave Essex\\u0026#39;s fortress, only to be greeted by a squad of helicopters and a platoon of black-clad soldiers. A familiar figure is leading them: Special Agent \\u003Cstrong\\u003EValerie Cooper\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You guys made one hell of a mess,\\u0026quot;\\u003C/em\\u003E she says, surveying the aftermath of the battle. \\u003Cem\\u003E\\u0026quot;But I guess I owe you a favor. My people are in touch with the Justice Department now. You\\u0026#39;re free to go.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Just like that?\\u0026quot;\\u003C/em\\u003E Scott asks skeptically.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;It\\u0026#39;ll take a few days to make those charges vanish,\\u0026quot;\\u003C/em\\u003E Special Agent Cooper says. \\u003Cem\\u003E\\u0026quot;But in the meantime, you\\u0026#39;ll be left in peace.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;So that means we\\u0026#39;ll never hear from you again, right?\\u0026quot;\\u003C/em\\u003E Scott asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECooper smiles.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I wouldn\\u0026#39;t be so sure of that,\\u0026quot;\\u003C/em\\u003E she says.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe hands Scott a card with her contact information on it. With that, she\\u0026#39;s gone.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EA few days after the battle, the X-Men travel back to Westchester, where they gather on the grounds of the ruined \\u003Cstrong\\u003EXavier Institute\\u003C/strong\\u003E. In a solemn memorial service, they scatter Professor Xavier\\u0026#39;s ashes on a hilltop, then plant a gravestone nearby. The gravestone bears an \\u003Cem\\u003E\\u0026quot;X\\u0026quot;\\u003C/em\\u003E emblem, accompanied by a few simple words:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003ECharles Francis Xavier: 1954-2019\\u003C/em\\u003E\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EFriend. Teacher. Father.\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBack at the prison in Illinois, a guard visits \\u003Cstrong\\u003EMagneto\\u003C/strong\\u003E\\u0026#39;s cell to tell him that his old friend Charles Xavier has died, and his students have laid him to rest.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs Magneto hangs his head in sorrow, he murmurs a quiet prayer in Hebrew.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELater, when the guard retires to a monitor room at the end of his shift, his metal keys inexplicably begin vibrating as he hangs them on the wall. He stares at them, unsure whether he imagined it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBack in his cell, Magneto stares into the darkness from behind a set of iron bars.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EWith the Professor laid to rest, the X-Men leave the ruins of the mansion behind, unsure whether they\\u0026#39;ll ever return.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;So that\\u0026#39;s it?\\u0026quot;\\u003C/em\\u003E Storm asks, wiping away a tear. \\u003Cem\\u003E\\u0026quot;This is the end?\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScott sighs.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;This place is the only home I\\u0026#39;ve got left,\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;The Professor wouldn\\u0026#39;t have wanted me to just give up like this. But without the Institute...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWarren gives him a faint smile.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;If you\\u0026#39;re looking for a new home, I might know a place,\\u0026quot;\\u003C/em\\u003E he says.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIntrigued, Scott raises one eyebrow.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EA few weeks after the funeral service, Warren shows his teammates into a lavish penthouse complex that he inherited from his late father, which is big enough for all of them. As they look at their surroundings in awe, we slowly zoom out from the nearest window. When we get a look at the penthouse\\u0026#39;s surroundings, we see that it\\u0026#39;s in the middle of downtown \\u003Cstrong\\u003E\\u003Cem\\u003ESan Francisco\\u003C/em\\u003E\\u003C/strong\\u003E. The X-Men have left Westchester far behind, but they have a new home on the other side of the country.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I think I could get used to this place,\\u0026quot;\\u003C/em\\u003E Kitty says.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the living room, a few of the X-Men gather around a television set watching a news broadcast. On the TV, a news bulletin informs the public that all domestic terrorism charges against the Mutants known as \\u0026quot;The X-Men\\u0026quot; have been dropped; recently, new video footage of the destruction of New York emerged, clearly showing the X-Men defending the city from Mutant X in a desperate battle. Thanks to this new footage, public opinion on Mutant Rights has changed dramatically, and much of the public now views the X-Men as heroes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I didn\\u0026#39;t know there were cameras on us that day,\\u0026quot;\\u003C/em\\u003E Wolverine says.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENearby, Special Agent Cooper watches the news bulletin from the couch.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;There weren\\u0026#39;t,\\u0026quot;\\u003C/em\\u003E she says, smirking.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs soon as she says that, Wolverine realizes what\\u0026#39;s happened:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECooper and her team cleared the X-Men\\u0026#39;s names by constructing an elaborate fake video, which is so expertly doctored that no one will know that it\\u0026#39;s fake. Though the team are grateful that the charges against them have been dropped, they\\u0026#39;re uneasy with the knowledge that Cooper helped them by deceiving the public.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;m a spy,\\u0026quot;\\u003C/em\\u003E Cooper says simply. \\u003Cem\\u003E\\u0026quot;In my line of work, sometimes it takes a good lie to bring the truth to light.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;ve pulled a lot of strings for us,\\u0026quot;\\u003C/em\\u003E Colossus says. \\u003Cem\\u003E\\u0026quot;I suppose you\\u0026#39;ll be wanting something in return, nyet?\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECooper smiles as she heads for the door.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;ll be in touch when I need you,\\u0026quot;\\u003C/em\\u003E she says.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs she leaves, the X-Men exchange uneasy glances, silently wondering if they\\u0026#39;ve made a deal with the devil.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut then Jean points to the clock.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;It\\u0026#39;s time,\\u0026quot;\\u003C/em\\u003E she says.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScott nods.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EOn a bright Summer day, a crowd of reporters gathers in the heart of downtown San Francisco for a press conference. Right on time, Scott Summers arrives to greet them, flanked by his teammates: Jean, Alex, Angel, Beast, Iceman, Storm, Nightcrawler, Colossus, Wolverine, and Rogue. All of them are fully suited up, and ready to put on their best face for the cameras. Within minutes, footage of the X-Men is all over the afternoon news, and \\u003Cem\\u003Eeveryone\\u003C/em\\u003E is talking about the Mutants who saved New York.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe X-Men\\u0026#39;s days of hiding out in a Westchester mansion are over. Now, they\\u0026#39;re ready to face the world.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Is there anything you\\u0026#39;d like to announce, Mr. Summers?\\u0026quot;\\u003C/em\\u003E a reporter asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScott smiles, clearly ready with a planned reply.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;From this day forward, the\\u003C/em\\u003E \\u003Cstrong\\u003E\\u003Cem\\u003ENew Xavier Institute\\u003C/em\\u003E\\u003C/strong\\u003E \\u003Cem\\u003Eis open to any and all Mutants in need,\\u0026quot;\\u003C/em\\u003E he says. \\u003Cem\\u003E\\u0026quot;I don\\u0026#39;t care who you are, and I don\\u0026#39;t care where you come from. If you\\u0026#39;ve got gifts, you\\u0026#39;ve got a place with us. You don\\u0026#39;t have to be afraid anymore, and you don\\u0026#39;t have to be an outcast anymore.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll around America, young Mutants watch Scott\\u0026#39;s speech, suddenly realizing that they could have a new home with other Mutants like them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;The world\\u0026#39;s a big place,\\u0026quot;\\u003C/em\\u003E Scott says. \\u003Cem\\u003E\\u0026quot;There\\u0026#39;s plenty of room here for all of us \\u2014 human and Mutant alike. We\\u0026#39;re all on the same side, and we all want the same thing: a brighter future, and a better world for our children. But I\\u0026#39;m here to tell you: the future begins now! Some people out there might fear us. Some people might hate us. But the X-Men are here to stay. And we\\u0026#39;re here to fight for a better world!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a crowd of onlookers erupts in cheers, we fade to black.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EEPILOGUE:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESome time after the press conference, the sun rises over San Francisco as Jean wakes up early and goes to check the mail at the \\u003Cstrong\\u003ENew Xavier Institute\\u003C/strong\\u003E. At the bottom of a stack of letters, she finds an expensive-looking parchment envelope sealed with bright red wax, and stamped with a distinctive emblem: the letter \\u0026quot;\\u003Cstrong\\u003EH\\u003C/strong\\u003E\\u0026quot;, overlaid with a \\u003Cstrong\\u003Epitchfork\\u003C/strong\\u003E. Curious, she opens the envelope and looks over the letter inside, which is printed in engraved gold lettering.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe letter is unsigned, but the parchment is marked with an emblem at the bottom of the page. This one is an emblem of a \\u003Cstrong\\u003Echess piece\\u003C/strong\\u003E: the \\u003Cstrong\\u003EBlack King\\u003C/strong\\u003E...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETL;DR:\\u003C/strong\\u003E Professor Xavier dies after he\\u0026#39;s shot by the mysterious assassin, and Scott chases the assassin down\\u2014only to find that it\\u0026#39;s Mystique, who wanted the Professor dead so that he couldn\\u0026#39;t use his powers against Essex.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the future, an aging Kitty Pryde leads a new generation of X-Men in an attack on Essex\\u0026#39;s fortress, and they manage to steal back Cerebro\\u2014allowing the telepath Rachel Summers to send a psychic message into the past, giving the present-day X-Men the location of Essex\\u0026#39;s secret base. It\\u0026#39;s revealed that their ultimate plan was to change history by helping the X-Men defeat Essex in the past, thereby preventing the Gene Wars and stopping him from ever conquering Earth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the present, Kitty relays Essex\\u0026#39;s location to her teammates, allowing them to launch a surprise attack on his base. As they storm the base in a massive battle, Jean personally kills Essex in a telepathic duel, and successfully manages to change the course of history. Later, after mourning the Professor, the X-Men clear their names with the help of CIA agent Valerie Cooper, and they move to San Francisco to begin the next chapter of their lives.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/F_0HMxvQC8X4BfJYQH7rYHApU2CykIaG1ctO2xGnACk.jpg?auto=webp\\u0026s=2105c32fa3af20d7f4f18e971dfbe5e1618ce547\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/F_0HMxvQC8X4BfJYQH7rYHApU2CykIaG1ctO2xGnACk.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5e03ff998923ae63089bc3621421c4a86f2cc5bb\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/F_0HMxvQC8X4BfJYQH7rYHApU2CykIaG1ctO2xGnACk.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c7e0461c4e5e8c277a2bb4e91e24043e8fd099af\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/F_0HMxvQC8X4BfJYQH7rYHApU2CykIaG1ctO2xGnACk.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c5361de8c185c6cedde34783365af39fd58fc7c0\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"RY7KEUBXY3bQ4t71uXml_uBmG63nIPmI4IKhhm1OQJ4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cks0he\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cks0he/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cks0he/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564683054.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[PCPartPicker Part List](https://pcpartpicker.com/list/9srjMZ)\\n\\nType|Item|Price\\n:----|:----|:----\\n**CPU** | [AMD Ryzen 5 2600 3.4 GHz 6-Core Processor](https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox) | $132.90 @ OutletPC \\n**Motherboard** | [MSI B450 TOMAHAWK ATX AM4 Motherboard](https://pcpartpicker.com/product/Hy97YJ/msi-b450-tomahawk-atx-am4-motherboard-b450-tomahawk) | $114.89 @ OutletPC \\n**Memory** | [G.Skill Ripjaws V Series 16 GB (2 x 8 GB) DDR4-3200 Memory](https://pcpartpicker.com/product/qGqbt6/gskill-memory-f43200c16d16gvgb) | $77.99 @ Newegg \\n**Storage** | [Team L5 LITE 480 GB 2.5\\\" Solid State Drive](https://pcpartpicker.com/product/Vt448d/team-l5-lite-480gb-25-solid-state-drive-t2535t480g0c101) |-\\n**Video Card** | [Gigabyte GeForce RTX 2060 6 GB OC Video Card](https://pcpartpicker.com/product/KX66Mp/gigabyte-geforce-rtx-2060-6-gb-oc-video-card-gv-n2060oc-6gd) | $359.99 @ Newegg \\n**Case** | [Cooler Master MasterBox Lite 5 RGB ATX Mid Tower Case](https://pcpartpicker.com/product/Fj38TW/cooler-master-masterbox-lite-5-rgb-atx-mid-tower-case-mcw-l5s3-kgnn-02) | $59.99 @ Newegg \\n**Power Supply** | [Corsair CXM 550 W 80+ Bronze Certified Semi-modular ATX Power Supply](https://pcpartpicker.com/product/3hkwrH/corsair-power-supply-cp9020102na) | $69.99 @ Amazon \\n | *Prices include shipping, taxes, rebates, and discounts* |\\n | Total (before mail-in rebates) | $850.75\\n | Mail-in rebates | -$35.00\\n | **Total** | **$815.75**\\n | Generated by [PCPartPicker](https://pcpartpicker.com) 2019-08-01 08:40 EDT-0400 |\", \"author_fullname\": \"t2_rj2un\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cknwan\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564692259.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/list/9srjMZ\\\"\\u003EPCPartPicker Part List\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EType\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EItem\\u003C/th\\u003E\\n\\u003Cth align=\\\"left\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECPU\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/jLF48d/amd-ryzen-5-2600-34ghz-6-core-processor-yd2600bbafbox\\\"\\u003EAMD Ryzen 5 2600 3.4 GHz 6-Core Processor\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$132.90 @ OutletPC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMotherboard\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/Hy97YJ/msi-b450-tomahawk-atx-am4-motherboard-b450-tomahawk\\\"\\u003EMSI B450 TOMAHAWK ATX AM4 Motherboard\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$114.89 @ OutletPC\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EMemory\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/qGqbt6/gskill-memory-f43200c16d16gvgb\\\"\\u003EG.Skill Ripjaws V Series 16 GB (2 x 8 GB) DDR4-3200 Memory\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$77.99 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EStorage\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/Vt448d/team-l5-lite-480gb-25-solid-state-drive-t2535t480g0c101\\\"\\u003ETeam L5 LITE 480 GB 2.5\\u0026quot; Solid State Drive\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EVideo Card\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/KX66Mp/gigabyte-geforce-rtx-2060-6-gb-oc-video-card-gv-n2060oc-6gd\\\"\\u003EGigabyte GeForce RTX 2060 6 GB OC Video Card\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$359.99 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ECase\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/Fj38TW/cooler-master-masterbox-lite-5-rgb-atx-mid-tower-case-mcw-l5s3-kgnn-02\\\"\\u003ECooler Master MasterBox Lite 5 RGB ATX Mid Tower Case\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$59.99 @ Newegg\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003EPower Supply\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Ca href=\\\"https://pcpartpicker.com/product/3hkwrH/corsair-power-supply-cp9020102na\\\"\\u003ECorsair CXM 550 W 80+ Bronze Certified Semi-modular ATX Power Supply\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$69.99 @ Amazon\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cem\\u003EPrices include shipping, taxes, rebates, and discounts\\u003C/em\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003ETotal (before mail-in rebates)\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E$850.75\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EMail-in rebates\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E-$35.00\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003ETotal\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003Cstrong\\u003E$815.75\\u003C/strong\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003EGenerated by \\u003Ca href=\\\"https://pcpartpicker.com\\\"\\u003EPCPartPicker\\u003C/a\\u003E 2019-08-01 08:40 EDT-0400\\u003C/td\\u003E\\n\\u003Ctd align=\\\"left\\\"\\u003E\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/mHOt4o2x1aNMuSY9j5OU-PMBbEpK0ETXLcetWLFgO3A.jpg?auto=webp\\u0026s=2eae106a179f6f7fe11d9f3e65d26bbf3fd44b17\", \"width\": 500, \"height\": 500}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/mHOt4o2x1aNMuSY9j5OU-PMBbEpK0ETXLcetWLFgO3A.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=3092eb883af44dd91d99e07d43ca50eda714f42f\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/mHOt4o2x1aNMuSY9j5OU-PMBbEpK0ETXLcetWLFgO3A.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=82a183c6b1dbf0c8105bd5b13e11eae36840083e\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/mHOt4o2x1aNMuSY9j5OU-PMBbEpK0ETXLcetWLFgO3A.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=0b39676a337221cd71b11fe79cdd48144fbe2368\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"w1m4TFU9vUk7AeGEn_jvlAQ1wMVxwDiRp3rvoXUKMh8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cknwan\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Druan2000\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cknwan/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cknwan/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564663459.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*Part 1 is [HERE](https://old.reddit.com/r/fixingmovies/comments/bnihgj/reimagining_xmen_2000_as_a_modern_superhero_movie/), Part 2 is [HERE](https://old.reddit.com/r/fixingmovies/comments/bz702s/reimagining_xmen_2000_as_a_modern_superhero_movie/), and Part 3 is [HERE](https://old.reddit.com/r/fixingmovies/comments/c6b321/reimagining_xmen_2000_as_a_modern_superhero_movie/)*.\\n\\n*Sorry to end this one with a cliffhanger. I got a little carried away (which is unlike me, I know...), and the full story ended up being a little too long for one post. I promise, I'll post the finale soon.*\\n\\n*Thanks to everybody who's followed along up to this point! I appreciate all of the comments!*\\n______________\\n***X-Men: Age of Evolution - Part 1***\\n______________\\n\\n***INTRODUCTION:***\\n\\nJust a few short months ago, the **X-Men** rushed to America's defense when the Mutant test subject **Kevin MacTaggert**\\u2014better known as \\\"**Mutant X**\\\"\\u2014attacked New York City. They ultimately triumphed over Mutant X and saved millions of lives, but hundreds of innocent civilians perished in the attack, and most of the city was left in ruins. Worse still: the X-Men were blamed for Mutant X's rampage when they were found in the rubble of New York, and they were soon arrested on the spot.\\n\\nNow, as the X-Men languish in a maximum security prison and await trial for domestic terrorism, tensions between Mutants and humans threaten to explode into violence. Once, political activist **Professor Charles Xavier** was the Mutant race's last great hope for peace. But ever since he was captured in a government raid on his Westchester mansion, the Professor has been thrown into prison alongside his students, and his ultimate fate is uncertain. But somewhere in the US government's clandestine halls of power, the mysterious man called \\\"**Essex**\\\"\\u2014Mutant X's handler, and the mastermind behind the sinister \\\"**Weapon X**\\\" project\\u2014patiently sows the seeds of a war between humans and Mutants. If his plan succeeds, the fires of war may spread across the entire world, leaving no obstacle to his dark will.\\n\\nBut in the X-Men's darkest hour, a glimmer of hope remains. Her name is ***Kitty Pryde***.\\n\\nSeventeen-year-old Kitty, the X-Men's newest recruit, was the only member of the team to escape with her freedom when the NYPD descended on the rubble of New York. Now, as the only free member of the X-Men, Kitty hatches a plan to rescue her teammates and take the fight to Essex.\\n\\n**Scott Summers**, **Jean Grey**, **Storm**, **Nightcrawler**, **Colossus**, **Wolverine**, **Rogue**, **Havok** and **Magneto** remain behind bars\\u2014but help is on the way.\\n______________\\n\\n***ACT 1:***\\n\\nEver since narrowly escaping arrest in New York, Kitty Pryde has reluctantly moved back to Chicago to live with her parents. As she lays low, she's forced to watch helplessly as new reports of anti-Mutant riots come in daily. As unrest spreads, she religiously follows reports on her old teammates, who await trial from behind bars. By happenstance, she learns that they're being held in a federal prison in upstate Illinois, just a few hours away from her parents' home.\\n\\nSince Kitty's powers can allow her to slip undetected into areas that would be inaccessible to ordinary people, she believes that there's a chance (however small) that she could use her powers to infiltrate the prison and free her teammates. She knows that it won't be easy, but she believes that she owes it to the X-Men to try. So after weeks of planning and researching the layout of the prison, she prepares to take a trip upstate.\\n\\nBut as she plans for the dangerous mission, Kitty finds herself plagued by disturbing dreams and visions, which leave her visibly shaken when she wakes up from them. In her visions, she sees a ruined post-apocalyptic America devastated by war, a shining city patrolled by towering robots with glowing eyes, and a small band of teenagers making their way through streets strewn with the ashes of the slain. She's willing to dismiss her visions as mere hallucinations\\u2014until she realizes that the teenagers in her vision all wear a golden \\\"X\\\" emblem on their shoulders.\\n\\nIs she going mad...or is this a vision of the X-Men's future?\\n______________\\n\\nWhile Kitty prepares for her rescue mission, we see an extended flash-forward sequence\\u2014which takes us all the way to the year **2049**. As we soon see, Kitty's vision of the future is very real.\\n\\nIn the mid-21st century, America is a wasteland. Three decades after the X-Men's battle with Mutant X, the country has been devastated by the horrific \\\"**Gene Wars**\\\", a brutal series of armed conflicts between humans and Mutants. During the war, the US military resurrected the controversial **Sentinel Project** and sent the Sentinels to attack multiple Mutant-occupied cities. Soon after, Mutant terrorists destroyed the White House and the US Capitol, and a Mutant assassin shot down Air Force One when the President of the United States tried to flee. Charles Xavier's students\\u2014the X-Men\\u2014did their best to fight for peace, but the tide of war could not be beaten back. In time, most of the X-Men were killed by Sentinels or captured by government forces, while the rest went missing.\\n\\nAfter years of strife, the US government collapsed, and the few survivors of the conflict turned to an unlikely messiah: **Nathaniel Essex**.\\n\\nWith America in ruins, Essex built a utopian city atop the ashes, offering the struggling survivors of the Gene Wars a new home. He named his city \\\"**Avalon**\\\", and all who lived within the city prospered\\u2014never suspecting that their savior was the true mastermind behind the Gene Wars. Day after day, Essex's power grew, and his beloved city expanded across the American Heartland. Now, as he rules over his city with an iron fist, his subjects know him as \\\"**The White King**\\\". But there are some who dare to resist him.\\n\\nMost of the X-Men are dead or missing, but a single survivor remains: **Katherine Pryde**. Once, she was a plucky teenager who called herself \\\"Kitty\\\"; today, she's the leader of the next generation of X-Men. Now an aging woman, Katherine leads a new team of X-Men with the help of the powerful telepath **Rachel Summers**\\u2014the daughter of the long-deceased Scott Summers and Jean Grey. After training under Katherine and Rachel, the five new X-Men have proven themselves as a crack team of freedom fighters, and they're devoted to bringing down the White King's tyrannical regime.\\n\\nOne by one, we meet them:\\n\\n* **Sam Guthrie** (\\\"**Cannonball**\\\"), a humble young man from rural Kentucky with the power to fly at supersonic speeds and summon indestructible force fields mid-flight, giving him the force of a speeding cannonball.\\n* **Xi'an Coy Manh** (\\\"**Karma**\\\"), a young Vietnamese-American woman with the power to psychically possess the minds of others.\\n* **Roberto \\\"Bobby\\\" Da Costa** (\\\"**Sunspot**\\\"), a young Brazilian man with the power to absorb solar energy, granting him superhuman strength\\u2014and allowing him to project superheated plasma from his hands.\\n* **Danielle \\\"Dani\\\" Moonstar** (\\\"**Moonstar**\\\"), a young Cheyenne Indian woman with the ability to confuse her enemies with eerily lifelike illusions.\\n* **Rahne Sinclair** (\\\"**Wolfsbane**\\\"), a young Scottish woman with the ability to transform herself into a powerful human-wolf hybrid with razor-sharp claws and superhuman senses.\\n\\nAs the flash-forward begins, the new X-Men fight their way through a squad of Sentinels, narrowly surviving the tense battle. When the smoke clears, we realize that they're standing in the ruins of the Xavier Institute, which was destroyed by **Cain Marko**'s troops before the Gene Wars broke out. Working fast, the team explores the ruins of Katherine's old home, and eventually make their way into the remains of the basement\\u2014where the psychic supercomputer called \\\"**Cerebro**\\\" was once kept. Just as she feared, Katherine soon finds that Cerebro is missing, and she suspects that she knows where it was taken.\\n\\n*\\\"If I was the White King, I'd march through Hell to get my hands on Cerebro. If we were a little quicker, we might have been able to stop him. But now, there's only one thing we can do,\\\"* she says.\\n\\n*\\\"Are you saying what I think you are?\\\"* Rachel asks.\\n\\nKatherine nods.\\n\\n*\\\"We have to attack Avalon. If the White King has Cerebro, that's where we'll find it.\\\"*\\n__________________\\n\\nBack in the present, the X-Men wait out the hours in their cramped prison cells, with the men and the women kept in separate cell blocks. All of them are forced to wear power-dampening collars that prevent them from using their mutations.\\n\\nKept in cells side-by-side, Scott and his brother **Alex**\\u2014finally reunited after years apart\\u2014keep each other sane by sharing their recollections of their parents, who were assassinated by Essex years earlier.\\n\\nIn another cell block, the X-Men's *other* new recruit\\u2014the mysterious former Weapon X operative known only as \\\"**Rogue**\\\"\\u2014struggles to stay sane as she hears a chorus of voices in her head.\\n\\nJust a few short months ago, Rogue was a patient at the **Salem Center Psychiatric Ward**, where she was placed for safekeeping by her former handler **Raven Darkholme** (codename: \\\"**Mystique**\\\"). During her time with Weapon X, she was forced to use her abilities to absorb the life-force of countless human and Mutant adversaries, which left her with a formidable set of superhuman powers. Unfortunately, her mutation also causes her to absorb the *thoughts* of anyone she touches, which has left her mind filled to the brim with other people's memories\\u2014which she can't always distinguish from her *own* memories. But as Professor Xavier discovered, Rogue once managed to absorb a small fraction of Essex's powers while working under him, potentially giving her a valuable insight into his mind. If she can somehow piece together the fractured memories that she absorbed from Essex, she might be able to solve the mystery of how to defeat him.\\n\\nWith Storm's help, Rogue attempts to meditate, looking deep within her mind as she tries to recall what she saw after touching Essex. Once again, she sees a cryptic image of **a chessboard with living chess pieces**, and **a bird with wings of fire** in the blackness of space. This time, though, she sees something else: a dark cavern beneath the Earth, guarded by an army of stone statues that all have Essex's face. Jean tries to use her telepathy to peer inside Rogue's mind, but it's no use; her power-dampening collar prevents her from using her psychic powers.\\n\\nA few hours later, Scott receives a surprise visit from a well-dressed blonde woman in a white pantsuit. The woman flashes a badge and introduces herself as Special Agent **Valerie Cooper** of the CIA. Much to Scott's surprise, Special Agent Cooper tells Scott that she believes that the X-Men are innocent; she works for a CIA task force that's been monitoring Mutant activity in the United States for over a decade, and she knows that the X-Men weren't responsible for the attack on New York. With the help of her connections in the Justice Department, she believes that she can help the team prove their innocence and clear their names\\u2014but only if Weapon X doesn't stand in her way.\\n\\n*\\\"Weapon X is out of control,\\\"* she says. *\\\"I've been trying to shut them down for years, but they anticipate every move. I stopped trusting my colleagues at the agency years ago. I can help you\\u2014but only if you can take down the head of that outfit.\\\"*\\n\\nScott points out that the X-Men can't take down Essex from behind bars, but Cooper sadly tells him that she can't do anything to secure their release.\\n\\n*\\\"My influence doesn't run that deep,\\\"* she says. *\\\"I can help you clear your names. But as far as the Justice Department knows, you and your friends are terrorists. Until I can prove otherwise, I can't help you get out of here. If you want to bury Weapon X, you'll have to take care of that yourself.\\\"*\\n\\nWith that, she leaves Scott.\\n\\nShortly after, the guards approach Professor Xavier's cell and wheel out his wheelchair. The Professor's court date has arrived, and it's time for him to stand trial for terrorism. As the alleged \\\"ringleader\\\" of the X-Men, he has been called to court to answer for his supposed role in the attack on New York. Dressed in a crisp black suit, he's wheeled past the X-Men's cells. One by one, each of his students stands up as they watch their mentor pass them by.\\n\\n*\\\"Have faith, children,\\\"* the Professor says. *\\\"You were fine students, and you learned well. Now, the world awaits. You've made me proud, and you have everything you need. Stay strong.\\\"*\\n\\nMagneto's cell is the last one at the end of the hallway. As the Professor passes his cell, the two old friends take one last look at each other with the bars between them.\\n\\n*\\\"I'm sorry, Charles,\\\"* Magneto says. *\\\"I never wanted this. You know I never wanted this.\\\"*\\n\\n*\\\"I know you didn't, old friend,\\\"* the Professor says. *\\\"But every path must end. I suppose this is where I leave you.\\\"*\\n\\nBefore the Professor fades from sight, Magneto calls out to him.\\n\\n*\\\"You're the finest man I've ever known, Charles!\\\"* he calls.\\n\\nAs a tear rolls down Magneto's cheek, he flashes back to a day long-gone, when he sat by an injured Charles' hospital bed as he awaited treatment for a broken vertebra.\\n\\n*\\\"You did what I never could,\\\"* Magneto softly whispers. *\\\"You forgave them for what they did to you...\\\"*\\n___________________\\n\\nIn the dead of night, Kitty approaches the perimeter of the prison. She takes a deep breath as she prepares to rush the gate\\u2014and then she's off.\\n\\nMoving like a ghost, Kitty passes effortlessly slips through the gate, narrowly evading the armed prison guards at the tops of their sentry towers. The prison facility looms ahead, an imposing building of steel and concrete. Summoning her powers, she slips through the ground. On the other side of the wall, she phases up through the floor, safely ahead of the nearest security checkpoint.\\n\\nInside, she runs through winding hallways on her way to the main cell block, passing through walls whenever a guard comes near. After several minutes of sneaking around, she manages to slip unseen into a locker room, where she steals a stun gun and an electronic key\\u2014which is specially designed to unlock power-dampening collars.\\n\\nIn the cell block, the X-Men's cell doors all mysteriously fly open as Kitty stuns a guard and triggers the levers for the block. Confused, the X-Men step out of their cells and make a break for it. Moments later, they're greeted by Kitty, who proceeds to unlock their collars.\\n\\n*\\\"Hey guys,\\\"* Kitty says. *\\\"Long time, no see...\\\"*\\n\\nWith their powers restored, the X-Men rejoice as a jail-break ensues, and they fight their way through the cell block as guards descend on them. After a long battle, they proceed to make their way to the roof, where a Chinook helicopter is waiting on the helipad, having just dropped off a load of supplies. They know that it'll make the perfect getaway vehicle.\\n\\nTo the team's surprise, Magneto chooses to stay behind as they board the helicopter and make their escape. Scott begs his old enemy to join them, but he refuses.\\n\\n*\\\"I've made my share of mistakes, Scott,\\\"* Magneto says. *\\\"You deserve to prove your innocence. But I'm no innocent. Trust me, boy: you don't want a murderer in your ranks. You're better than that. Let the world see it.\\\"*\\n\\nAs the guards close in on them, the X-Men pile into the helicopter, and it lifts into the air. As they fly into the distance, Kitty suddenly feels a searing pain in her head, and she sees another vision...\\n___________________\\n\\nIn the year 2049, Katherine's X-Men approach the shining city of Avalon, which is protected on all sides by towering walls. Somewhere in the depths of the White King's fortress, an armed guard approaches a locked glass room. Inside, Cerebro's terminal is clearly visible. As the guard turns from Cerebro, we see his eyes glowing violet; he's possessed by Karma, who's looking through his eyes. \\n\\nOutside the city walls, Karma severs the connection.\\n\\n*\\\"You were right,\\\"* she tells Katherine. *\\\"It's in the lower levels of the East Wing! But we've gotta move fast if we want to use it.\\\"*\\n\\n*\\\"Moving fast is my specialty,\\\"* Cannonball says. \\n\\nIn a streak of light, he soars into the air and smashes through the wall, bringing a portion of the towering structure crashing down. As the X-Men run through the hole in the wall and charge toward the fortress, the White King's Sentinels descend on them, firing their lasers at full blast. But before they can hit them, the X-Men vanish into thin air\\u2014revealing them as one of Moonstar's illusions. A good distance away, the *real* X-Men split up and lead the Sentinels on a wild chase through the streets of Avalon, fighting every step of the way.\\n\\nBefore long, they find themselves attacked by a horde of clawed, blue-furred simian creatures that effortlessly climb along the sides of buildings and swing from streetlights. From above, they're dive-bombed by dozens of winged men with miniature rocket-launchers attached to their feathered wings. The White King, a renowned genetic scientist, has hundreds of loyal Mutant clones on his side\\u2014including clones of the deceased former X-Men **Hank McCoy** (\\\"**Beast**\\\") and **Warren Worthington** (\\\"**Angel**\\\"). As the battle rages on, Wolfsbane tears through the armies of Beasts on the ground, Cannonball tears through the armies of Angels above, and Sunspot tears through the Sentinels with his plasma blasts.\\n\\nFrom a window at the top of his fortress, the White King stares down at the intruders, his eyes burning with hate.\\n\\nMoments later, Karma uses her powers to seize control of a squad of Angels, and they send a barrage of missiles at the fortress. Leading the charge, Katherine and Rachel lead the X-Men inside...\\n___________________\\n\\n***ACT 2:***\\n\\nAfter a long airborne chase, the X-Men land the Chinook in a forest clearing somewhere in the American Midwest, and they dig in to plan their next move.\\n\\nFinally free from her power-dampening collar, Jean uses her telepathy to look into Rogue's mind, hoping to help her recall the memories that she absorbed from Essex. After peeling back layer after layer of accumulated memories, she eventually finds what she's looking for\\u2014and she's horrified by what she sees.\\n\\nShe sees a young Nathaniel Essex in a dingy laboratory in London in the late 1800s, dissecting live test subjects and injecting them with syringes. She sees him synthesizing chemical serums from Mutants' blood, and injecting them into his neck. Finally she sees him striding through a room filled with cryogenically frozen bodies\\u2014all of them identical to *him*. As the vision comes to an end, she sees him laying one of his frozen bodies on a metal slab; as he lays his hand on it, the frozen body opens its eyes and *screams*.\\n\\n*\\\"Clones!\\\"* Jean exclaims, opening her eyes. *\\\"He's using clones to make himself immortal! That's how he's been alive for over 100 years! He found a way to engineer the perfect human specimen, and he can transfer his mind into a new body whenever he wants!\\\"*\\n\\n*\\\"The perfect human specimen?\\\"* Scott asks, confused.\\n\\nJean nods.\\n\\n*\\\"He's been researching Mutants since the 1800s, when evolution was first discovered. Somewhere along the line, he found out a way to synthesize serums from Mutant genes. He's spent decades using the DNA of captured Mutants to make himself more powerful!\\\"*\\n\\n*\\\"That's why he founded Weapon X!\\\"* Nightcrawler exclaims. *\\\"He promised the government that he could turn Mutants into living weapons, and he did. But he also wanted access to the world's most powerful Mutants. With their genes at his disposal, he knew that he would be unstoppable!\\\"*\\n\\n*\\\"But how do we stop him?\\\"* Wolverine asks. *\\\"Any ideas, Red?\\\"*\\n\\nJean already has an idea.\\n\\n*\\\"He's spent a century breeding new bodies for himself, but his mind is the same as it ever was,\\\"* she says. *\\\"Destroy his body, and he'll grow a new one. But destroy his mind...\\\"*\\n\\n*\\\"Not even he could survive that,\\\"* Storm says. *\\\"So it would take a powerful psychic to defeat him. A world-class telepath.\\\"*\\n\\n*\\\"Like the Professor...\\\"* Colossus says, realization sinking in.\\n\\nAll at once, the X-Men realize why Weapon X has been so determined to crush the X-Men from the beginning: they know that the Professor's telepathy makes him one of the few people who could possibly kill Essex, and they're determined to remove him as a threat. And now that the Professor is in the government's hands, they don't stand a chance of defeating Essex.\\n\\n*\\\"But what about you?\\\"* Scott asks Jean. *\\\"You're a telepath too!\\\"*\\n\\nDoubtful, Jean shakes her head.\\n\\n*\\\"I'm not on the Professor's level,\\\"* she says. *\\\"Not even close. He's been training all his life, and I've been training since I was a teenager. I know how powerful Essex is. There's no way I could...\\\"*\\n\\n*\\\"Then we need to get the Professor back,\\\"* Scott says. *\\\"It's the only way.\\\"*\\n\\n*\\\"But that's suicide!\\\"* Wolverine tells him. *\\\"Every news crew in America's gonna be filming his trial! They've got dozens of cops watching him, day and night! Even if we could bust him out, we'd have the Feds on us in a heartbeat! And anyway: it's not gonna matter unless we can find Essex. Until we know where he is, we can't do anything to stop him.\\\"*\\n\\nScott knows that he's right, but he also knows that he can't abandon his mentor.\\n\\n*\\\"We'll decide our next move in the morning,\\\"* Scott says. *\\\"For now, we need to get some rest.\\\"*\\n\\nThey make camp for the night. But in the morning, Scott is gone.\\n______________________\\n\\nIn downtown Chicago, protestors and news reporters descend on the **Cook County Courthouse**, where Professor Xavier is due to stand trial for domestic terrorism. Tensions are visibly high, and fistfights break out between anti-Mutant groups and Mutant Rights demonstrators. The Professor keeps his composure as he's rolled up a wheelchair ramp into the courthouse, even as screaming anti-Mutant protestors throw debris at him. As the court is called into session, countless people across America tune into the news to watch the trial.\\n\\nUnbeknownst to the Professor, one of the many bystanders in the crowd outside the courthouse is *Scott*. As he watches his mentor enter the courthouse, he raises a hand to his glasses, readying his optic blasts.\\n\\nIn the ensuing trial, a fiery argument erupts between federal prosecutors and the Professor's lawyer. When the lawyer points out the lack of hard evidence supporting the claim that his client ordered the attack on New York, the prosecutors respond with a long tirade against the X-Men\\u2014pointing out that they've been hiding in upstate New York for years, intentionally keeping their existence hidden from the world. One by one, the prosecutors call multiple witnesses to share their stories about harrowing encounters with Mutants, some of whom threatened their lives. As the jury listens to their stories intently, the prosecutors argue that a man who shelters Mutants cannot be trusted.\\n\\nAs his lawyer tries to defend the prosecutors allegations, the Professor suddenly stands to address the court, and gives a passionate speech.\\n\\n*\\\"If I'm to stand before the world,\\\"* he says, *\\\"let me stand before the world as what I am: a Mutant. A proud Mutant who committed no crime. Fate gave me these abilities. I didn't choose them, but I chose to use them for a higher purpose. I built a home to shelter the outcast children of this turbulent century. I became their teacher, and I loved them as my own children. And I taught them to use their gifts to protect a world that hated and feared them. And when they saw a city in peril, they did their duty. They laid down their lives to protect the innocent, just as I taught them. For that grave offense, they were locked away. So produce evidence proving my guilt, if you can. If you cannot, you have a simple choice to make. Will you succumb to your fear of my people, or will you allow justice to rule the day? Either way, a simple fact remains. We are here to stay. And the next move is yours.\\\"*\\n\\nAll around the country, the American public listens to his speech in stunned silence. When it's over, countless Mutant Rights activists erupt in cheers. Mutants\\u2014young and old\\u2014begin chanting Xavier's name.\\n\\nWith no verdict in sight, the judge adjourns the trial until the morning, and the police move to wheel the Professor down the courthouse steps. Outside the courthouse, Scott watches him exit the building. For a moment, their eyes meet, and the Professor mouths Scott's name as he sees him in the crowd.\\n\\n***BANG!***\\n\\nSuddenly, a gunshot rings out, and the Professor falls from his wheelchair as a bullet strikes his chest. As blood gushes from his bullet wound, countless onlookers scream in terror and dive for cover, and the police draw their firearms as they move to carry the Professor to the nearest paramedic. A short distance away, Scott screams in despair.\\n__________________\\n\\n**TL;DR:** With the X-Men in prison after being framed for Mutant X's attack on New York, Kitty Pryde stages a daring rescue mission and manages to free her teammates. But as the X-Men plan their final battle with the mysterious Essex, Kitty has a disturbing vision of the future. In her vision, Essex rules America in the aftermath of the horrific \\\"Gene Wars\\\" between humans and Mutants, and an aging Kitty leads a new generation of X-Men in a rebellion against him.\\n\\nMeanwhile, Professor Xavier delivers a passionate speech on Mutant rights as he's called to stand trial for domestic terrorism. When Scott travels to the courthouse in an attempt to rescue him, he watches in horror as the Professor is gunned down by a mysterious assassin.\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ck0v1h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1564687613.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564562474.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EPart 1 is \\u003Ca href=\\\"https://old.reddit.com/r/fixingmovies/comments/bnihgj/reimagining_xmen_2000_as_a_modern_superhero_movie/\\\"\\u003EHERE\\u003C/a\\u003E, Part 2 is \\u003Ca href=\\\"https://old.reddit.com/r/fixingmovies/comments/bz702s/reimagining_xmen_2000_as_a_modern_superhero_movie/\\\"\\u003EHERE\\u003C/a\\u003E, and Part 3 is \\u003Ca href=\\\"https://old.reddit.com/r/fixingmovies/comments/c6b321/reimagining_xmen_2000_as_a_modern_superhero_movie/\\\"\\u003EHERE\\u003C/a\\u003E\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003ESorry to end this one with a cliffhanger. I got a little carried away (which is unlike me, I know...), and the full story ended up being a little too long for one post. I promise, I\\u0026#39;ll post the finale soon.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EThanks to everybody who\\u0026#39;s followed along up to this point! I appreciate all of the comments!\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EX-Men: Age of Evolution - Part 1\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EINTRODUCTION:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust a few short months ago, the \\u003Cstrong\\u003EX-Men\\u003C/strong\\u003E rushed to America\\u0026#39;s defense when the Mutant test subject \\u003Cstrong\\u003EKevin MacTaggert\\u003C/strong\\u003E\\u2014better known as \\u0026quot;\\u003Cstrong\\u003EMutant X\\u003C/strong\\u003E\\u0026quot;\\u2014attacked New York City. They ultimately triumphed over Mutant X and saved millions of lives, but hundreds of innocent civilians perished in the attack, and most of the city was left in ruins. Worse still: the X-Men were blamed for Mutant X\\u0026#39;s rampage when they were found in the rubble of New York, and they were soon arrested on the spot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, as the X-Men languish in a maximum security prison and await trial for domestic terrorism, tensions between Mutants and humans threaten to explode into violence. Once, political activist \\u003Cstrong\\u003EProfessor Charles Xavier\\u003C/strong\\u003E was the Mutant race\\u0026#39;s last great hope for peace. But ever since he was captured in a government raid on his Westchester mansion, the Professor has been thrown into prison alongside his students, and his ultimate fate is uncertain. But somewhere in the US government\\u0026#39;s clandestine halls of power, the mysterious man called \\u0026quot;\\u003Cstrong\\u003EEssex\\u003C/strong\\u003E\\u0026quot;\\u2014Mutant X\\u0026#39;s handler, and the mastermind behind the sinister \\u0026quot;\\u003Cstrong\\u003EWeapon X\\u003C/strong\\u003E\\u0026quot; project\\u2014patiently sows the seeds of a war between humans and Mutants. If his plan succeeds, the fires of war may spread across the entire world, leaving no obstacle to his dark will.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut in the X-Men\\u0026#39;s darkest hour, a glimmer of hope remains. Her name is \\u003Cstrong\\u003E\\u003Cem\\u003EKitty Pryde\\u003C/em\\u003E\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESeventeen-year-old Kitty, the X-Men\\u0026#39;s newest recruit, was the only member of the team to escape with her freedom when the NYPD descended on the rubble of New York. Now, as the only free member of the X-Men, Kitty hatches a plan to rescue her teammates and take the fight to Essex.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EScott Summers\\u003C/strong\\u003E, \\u003Cstrong\\u003EJean Grey\\u003C/strong\\u003E, \\u003Cstrong\\u003EStorm\\u003C/strong\\u003E, \\u003Cstrong\\u003ENightcrawler\\u003C/strong\\u003E, \\u003Cstrong\\u003EColossus\\u003C/strong\\u003E, \\u003Cstrong\\u003EWolverine\\u003C/strong\\u003E, \\u003Cstrong\\u003ERogue\\u003C/strong\\u003E, \\u003Cstrong\\u003EHavok\\u003C/strong\\u003E and \\u003Cstrong\\u003EMagneto\\u003C/strong\\u003E remain behind bars\\u2014but help is on the way.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 1:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEver since narrowly escaping arrest in New York, Kitty Pryde has reluctantly moved back to Chicago to live with her parents. As she lays low, she\\u0026#39;s forced to watch helplessly as new reports of anti-Mutant riots come in daily. As unrest spreads, she religiously follows reports on her old teammates, who await trial from behind bars. By happenstance, she learns that they\\u0026#39;re being held in a federal prison in upstate Illinois, just a few hours away from her parents\\u0026#39; home.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince Kitty\\u0026#39;s powers can allow her to slip undetected into areas that would be inaccessible to ordinary people, she believes that there\\u0026#39;s a chance (however small) that she could use her powers to infiltrate the prison and free her teammates. She knows that it won\\u0026#39;t be easy, but she believes that she owes it to the X-Men to try. So after weeks of planning and researching the layout of the prison, she prepares to take a trip upstate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut as she plans for the dangerous mission, Kitty finds herself plagued by disturbing dreams and visions, which leave her visibly shaken when she wakes up from them. In her visions, she sees a ruined post-apocalyptic America devastated by war, a shining city patrolled by towering robots with glowing eyes, and a small band of teenagers making their way through streets strewn with the ashes of the slain. She\\u0026#39;s willing to dismiss her visions as mere hallucinations\\u2014until she realizes that the teenagers in her vision all wear a golden \\u0026quot;X\\u0026quot; emblem on their shoulders.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs she going mad...or is this a vision of the X-Men\\u0026#39;s future?\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EWhile Kitty prepares for her rescue mission, we see an extended flash-forward sequence\\u2014which takes us all the way to the year \\u003Cstrong\\u003E2049\\u003C/strong\\u003E. As we soon see, Kitty\\u0026#39;s vision of the future is very real.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the mid-21st century, America is a wasteland. Three decades after the X-Men\\u0026#39;s battle with Mutant X, the country has been devastated by the horrific \\u0026quot;\\u003Cstrong\\u003EGene Wars\\u003C/strong\\u003E\\u0026quot;, a brutal series of armed conflicts between humans and Mutants. During the war, the US military resurrected the controversial \\u003Cstrong\\u003ESentinel Project\\u003C/strong\\u003E and sent the Sentinels to attack multiple Mutant-occupied cities. Soon after, Mutant terrorists destroyed the White House and the US Capitol, and a Mutant assassin shot down Air Force One when the President of the United States tried to flee. Charles Xavier\\u0026#39;s students\\u2014the X-Men\\u2014did their best to fight for peace, but the tide of war could not be beaten back. In time, most of the X-Men were killed by Sentinels or captured by government forces, while the rest went missing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter years of strife, the US government collapsed, and the few survivors of the conflict turned to an unlikely messiah: \\u003Cstrong\\u003ENathaniel Essex\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith America in ruins, Essex built a utopian city atop the ashes, offering the struggling survivors of the Gene Wars a new home. He named his city \\u0026quot;\\u003Cstrong\\u003EAvalon\\u003C/strong\\u003E\\u0026quot;, and all who lived within the city prospered\\u2014never suspecting that their savior was the true mastermind behind the Gene Wars. Day after day, Essex\\u0026#39;s power grew, and his beloved city expanded across the American Heartland. Now, as he rules over his city with an iron fist, his subjects know him as \\u0026quot;\\u003Cstrong\\u003EThe White King\\u003C/strong\\u003E\\u0026quot;. But there are some who dare to resist him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMost of the X-Men are dead or missing, but a single survivor remains: \\u003Cstrong\\u003EKatherine Pryde\\u003C/strong\\u003E. Once, she was a plucky teenager who called herself \\u0026quot;Kitty\\u0026quot;; today, she\\u0026#39;s the leader of the next generation of X-Men. Now an aging woman, Katherine leads a new team of X-Men with the help of the powerful telepath \\u003Cstrong\\u003ERachel Summers\\u003C/strong\\u003E\\u2014the daughter of the long-deceased Scott Summers and Jean Grey. After training under Katherine and Rachel, the five new X-Men have proven themselves as a crack team of freedom fighters, and they\\u0026#39;re devoted to bringing down the White King\\u0026#39;s tyrannical regime.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne by one, we meet them:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESam Guthrie\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003ECannonball\\u003C/strong\\u003E\\u0026quot;), a humble young man from rural Kentucky with the power to fly at supersonic speeds and summon indestructible force fields mid-flight, giving him the force of a speeding cannonball.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EXi\\u0026#39;an Coy Manh\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EKarma\\u003C/strong\\u003E\\u0026quot;), a young Vietnamese-American woman with the power to psychically possess the minds of others.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERoberto \\u0026quot;Bobby\\u0026quot; Da Costa\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003ESunspot\\u003C/strong\\u003E\\u0026quot;), a young Brazilian man with the power to absorb solar energy, granting him superhuman strength\\u2014and allowing him to project superheated plasma from his hands.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EDanielle \\u0026quot;Dani\\u0026quot; Moonstar\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EMoonstar\\u003C/strong\\u003E\\u0026quot;), a young Cheyenne Indian woman with the ability to confuse her enemies with eerily lifelike illusions.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERahne Sinclair\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EWolfsbane\\u003C/strong\\u003E\\u0026quot;), a young Scottish woman with the ability to transform herself into a powerful human-wolf hybrid with razor-sharp claws and superhuman senses.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAs the flash-forward begins, the new X-Men fight their way through a squad of Sentinels, narrowly surviving the tense battle. When the smoke clears, we realize that they\\u0026#39;re standing in the ruins of the Xavier Institute, which was destroyed by \\u003Cstrong\\u003ECain Marko\\u003C/strong\\u003E\\u0026#39;s troops before the Gene Wars broke out. Working fast, the team explores the ruins of Katherine\\u0026#39;s old home, and eventually make their way into the remains of the basement\\u2014where the psychic supercomputer called \\u0026quot;\\u003Cstrong\\u003ECerebro\\u003C/strong\\u003E\\u0026quot; was once kept. Just as she feared, Katherine soon finds that Cerebro is missing, and she suspects that she knows where it was taken.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;If I was the White King, I\\u0026#39;d march through Hell to get my hands on Cerebro. If we were a little quicker, we might have been able to stop him. But now, there\\u0026#39;s only one thing we can do,\\u0026quot;\\u003C/em\\u003E she says.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Are you saying what I think you are?\\u0026quot;\\u003C/em\\u003E Rachel asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKatherine nods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We have to attack Avalon. If the White King has Cerebro, that\\u0026#39;s where we\\u0026#39;ll find it.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBack in the present, the X-Men wait out the hours in their cramped prison cells, with the men and the women kept in separate cell blocks. All of them are forced to wear power-dampening collars that prevent them from using their mutations.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKept in cells side-by-side, Scott and his brother \\u003Cstrong\\u003EAlex\\u003C/strong\\u003E\\u2014finally reunited after years apart\\u2014keep each other sane by sharing their recollections of their parents, who were assassinated by Essex years earlier.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn another cell block, the X-Men\\u0026#39;s \\u003Cem\\u003Eother\\u003C/em\\u003E new recruit\\u2014the mysterious former Weapon X operative known only as \\u0026quot;\\u003Cstrong\\u003ERogue\\u003C/strong\\u003E\\u0026quot;\\u2014struggles to stay sane as she hears a chorus of voices in her head.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust a few short months ago, Rogue was a patient at the \\u003Cstrong\\u003ESalem Center Psychiatric Ward\\u003C/strong\\u003E, where she was placed for safekeeping by her former handler \\u003Cstrong\\u003ERaven Darkholme\\u003C/strong\\u003E (codename: \\u0026quot;\\u003Cstrong\\u003EMystique\\u003C/strong\\u003E\\u0026quot;). During her time with Weapon X, she was forced to use her abilities to absorb the life-force of countless human and Mutant adversaries, which left her with a formidable set of superhuman powers. Unfortunately, her mutation also causes her to absorb the \\u003Cem\\u003Ethoughts\\u003C/em\\u003E of anyone she touches, which has left her mind filled to the brim with other people\\u0026#39;s memories\\u2014which she can\\u0026#39;t always distinguish from her \\u003Cem\\u003Eown\\u003C/em\\u003E memories. But as Professor Xavier discovered, Rogue once managed to absorb a small fraction of Essex\\u0026#39;s powers while working under him, potentially giving her a valuable insight into his mind. If she can somehow piece together the fractured memories that she absorbed from Essex, she might be able to solve the mystery of how to defeat him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith Storm\\u0026#39;s help, Rogue attempts to meditate, looking deep within her mind as she tries to recall what she saw after touching Essex. Once again, she sees a cryptic image of \\u003Cstrong\\u003Ea chessboard with living chess pieces\\u003C/strong\\u003E, and \\u003Cstrong\\u003Ea bird with wings of fire\\u003C/strong\\u003E in the blackness of space. This time, though, she sees something else: a dark cavern beneath the Earth, guarded by an army of stone statues that all have Essex\\u0026#39;s face. Jean tries to use her telepathy to peer inside Rogue\\u0026#39;s mind, but it\\u0026#39;s no use; her power-dampening collar prevents her from using her psychic powers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA few hours later, Scott receives a surprise visit from a well-dressed blonde woman in a white pantsuit. The woman flashes a badge and introduces herself as Special Agent \\u003Cstrong\\u003EValerie Cooper\\u003C/strong\\u003E of the CIA. Much to Scott\\u0026#39;s surprise, Special Agent Cooper tells Scott that she believes that the X-Men are innocent; she works for a CIA task force that\\u0026#39;s been monitoring Mutant activity in the United States for over a decade, and she knows that the X-Men weren\\u0026#39;t responsible for the attack on New York. With the help of her connections in the Justice Department, she believes that she can help the team prove their innocence and clear their names\\u2014but only if Weapon X doesn\\u0026#39;t stand in her way.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Weapon X is out of control,\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;I\\u0026#39;ve been trying to shut them down for years, but they anticipate every move. I stopped trusting my colleagues at the agency years ago. I can help you\\u2014but only if you can take down the head of that outfit.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScott points out that the X-Men can\\u0026#39;t take down Essex from behind bars, but Cooper sadly tells him that she can\\u0026#39;t do anything to secure their release.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;My influence doesn\\u0026#39;t run that deep,\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;I can help you clear your names. But as far as the Justice Department knows, you and your friends are terrorists. Until I can prove otherwise, I can\\u0026#39;t help you get out of here. If you want to bury Weapon X, you\\u0026#39;ll have to take care of that yourself.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith that, she leaves Scott.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShortly after, the guards approach Professor Xavier\\u0026#39;s cell and wheel out his wheelchair. The Professor\\u0026#39;s court date has arrived, and it\\u0026#39;s time for him to stand trial for terrorism. As the alleged \\u0026quot;ringleader\\u0026quot; of the X-Men, he has been called to court to answer for his supposed role in the attack on New York. Dressed in a crisp black suit, he\\u0026#39;s wheeled past the X-Men\\u0026#39;s cells. One by one, each of his students stands up as they watch their mentor pass them by.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Have faith, children,\\u0026quot;\\u003C/em\\u003E the Professor says. \\u003Cem\\u003E\\u0026quot;You were fine students, and you learned well. Now, the world awaits. You\\u0026#39;ve made me proud, and you have everything you need. Stay strong.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMagneto\\u0026#39;s cell is the last one at the end of the hallway. As the Professor passes his cell, the two old friends take one last look at each other with the bars between them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;m sorry, Charles,\\u0026quot;\\u003C/em\\u003E Magneto says. \\u003Cem\\u003E\\u0026quot;I never wanted this. You know I never wanted this.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I know you didn\\u0026#39;t, old friend,\\u0026quot;\\u003C/em\\u003E the Professor says. \\u003Cem\\u003E\\u0026quot;But every path must end. I suppose this is where I leave you.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore the Professor fades from sight, Magneto calls out to him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;re the finest man I\\u0026#39;ve ever known, Charles!\\u0026quot;\\u003C/em\\u003E he calls.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a tear rolls down Magneto\\u0026#39;s cheek, he flashes back to a day long-gone, when he sat by an injured Charles\\u0026#39; hospital bed as he awaited treatment for a broken vertebra.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You did what I never could,\\u0026quot;\\u003C/em\\u003E Magneto softly whispers. \\u003Cem\\u003E\\u0026quot;You forgave them for what they did to you...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn the dead of night, Kitty approaches the perimeter of the prison. She takes a deep breath as she prepares to rush the gate\\u2014and then she\\u0026#39;s off.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoving like a ghost, Kitty passes effortlessly slips through the gate, narrowly evading the armed prison guards at the tops of their sentry towers. The prison facility looms ahead, an imposing building of steel and concrete. Summoning her powers, she slips through the ground. On the other side of the wall, she phases up through the floor, safely ahead of the nearest security checkpoint.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInside, she runs through winding hallways on her way to the main cell block, passing through walls whenever a guard comes near. After several minutes of sneaking around, she manages to slip unseen into a locker room, where she steals a stun gun and an electronic key\\u2014which is specially designed to unlock power-dampening collars.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the cell block, the X-Men\\u0026#39;s cell doors all mysteriously fly open as Kitty stuns a guard and triggers the levers for the block. Confused, the X-Men step out of their cells and make a break for it. Moments later, they\\u0026#39;re greeted by Kitty, who proceeds to unlock their collars.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Hey guys,\\u0026quot;\\u003C/em\\u003E Kitty says. \\u003Cem\\u003E\\u0026quot;Long time, no see...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith their powers restored, the X-Men rejoice as a jail-break ensues, and they fight their way through the cell block as guards descend on them. After a long battle, they proceed to make their way to the roof, where a Chinook helicopter is waiting on the helipad, having just dropped off a load of supplies. They know that it\\u0026#39;ll make the perfect getaway vehicle.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo the team\\u0026#39;s surprise, Magneto chooses to stay behind as they board the helicopter and make their escape. Scott begs his old enemy to join them, but he refuses.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;ve made my share of mistakes, Scott,\\u0026quot;\\u003C/em\\u003E Magneto says. \\u003Cem\\u003E\\u0026quot;You deserve to prove your innocence. But I\\u0026#39;m no innocent. Trust me, boy: you don\\u0026#39;t want a murderer in your ranks. You\\u0026#39;re better than that. Let the world see it.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the guards close in on them, the X-Men pile into the helicopter, and it lifts into the air. As they fly into the distance, Kitty suddenly feels a searing pain in her head, and she sees another vision...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn the year 2049, Katherine\\u0026#39;s X-Men approach the shining city of Avalon, which is protected on all sides by towering walls. Somewhere in the depths of the White King\\u0026#39;s fortress, an armed guard approaches a locked glass room. Inside, Cerebro\\u0026#39;s terminal is clearly visible. As the guard turns from Cerebro, we see his eyes glowing violet; he\\u0026#39;s possessed by Karma, who\\u0026#39;s looking through his eyes. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOutside the city walls, Karma severs the connection.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You were right,\\u0026quot;\\u003C/em\\u003E she tells Katherine. \\u003Cem\\u003E\\u0026quot;It\\u0026#39;s in the lower levels of the East Wing! But we\\u0026#39;ve gotta move fast if we want to use it.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Moving fast is my specialty,\\u0026quot;\\u003C/em\\u003E Cannonball says. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a streak of light, he soars into the air and smashes through the wall, bringing a portion of the towering structure crashing down. As the X-Men run through the hole in the wall and charge toward the fortress, the White King\\u0026#39;s Sentinels descend on them, firing their lasers at full blast. But before they can hit them, the X-Men vanish into thin air\\u2014revealing them as one of Moonstar\\u0026#39;s illusions. A good distance away, the \\u003Cem\\u003Ereal\\u003C/em\\u003E X-Men split up and lead the Sentinels on a wild chase through the streets of Avalon, fighting every step of the way.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore long, they find themselves attacked by a horde of clawed, blue-furred simian creatures that effortlessly climb along the sides of buildings and swing from streetlights. From above, they\\u0026#39;re dive-bombed by dozens of winged men with miniature rocket-launchers attached to their feathered wings. The White King, a renowned genetic scientist, has hundreds of loyal Mutant clones on his side\\u2014including clones of the deceased former X-Men \\u003Cstrong\\u003EHank McCoy\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EBeast\\u003C/strong\\u003E\\u0026quot;) and \\u003Cstrong\\u003EWarren Worthington\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EAngel\\u003C/strong\\u003E\\u0026quot;). As the battle rages on, Wolfsbane tears through the armies of Beasts on the ground, Cannonball tears through the armies of Angels above, and Sunspot tears through the Sentinels with his plasma blasts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom a window at the top of his fortress, the White King stares down at the intruders, his eyes burning with hate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoments later, Karma uses her powers to seize control of a squad of Angels, and they send a barrage of missiles at the fortress. Leading the charge, Katherine and Rachel lead the X-Men inside...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 2:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter a long airborne chase, the X-Men land the Chinook in a forest clearing somewhere in the American Midwest, and they dig in to plan their next move.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally free from her power-dampening collar, Jean uses her telepathy to look into Rogue\\u0026#39;s mind, hoping to help her recall the memories that she absorbed from Essex. After peeling back layer after layer of accumulated memories, she eventually finds what she\\u0026#39;s looking for\\u2014and she\\u0026#39;s horrified by what she sees.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe sees a young Nathaniel Essex in a dingy laboratory in London in the late 1800s, dissecting live test subjects and injecting them with syringes. She sees him synthesizing chemical serums from Mutants\\u0026#39; blood, and injecting them into his neck. Finally she sees him striding through a room filled with cryogenically frozen bodies\\u2014all of them identical to \\u003Cem\\u003Ehim\\u003C/em\\u003E. As the vision comes to an end, she sees him laying one of his frozen bodies on a metal slab; as he lays his hand on it, the frozen body opens its eyes and \\u003Cem\\u003Escreams\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Clones!\\u0026quot;\\u003C/em\\u003E Jean exclaims, opening her eyes. \\u003Cem\\u003E\\u0026quot;He\\u0026#39;s using clones to make himself immortal! That\\u0026#39;s how he\\u0026#39;s been alive for over 100 years! He found a way to engineer the perfect human specimen, and he can transfer his mind into a new body whenever he wants!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;The perfect human specimen?\\u0026quot;\\u003C/em\\u003E Scott asks, confused.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJean nods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;He\\u0026#39;s been researching Mutants since the 1800s, when evolution was first discovered. Somewhere along the line, he found out a way to synthesize serums from Mutant genes. He\\u0026#39;s spent decades using the DNA of captured Mutants to make himself more powerful!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;That\\u0026#39;s why he founded Weapon X!\\u0026quot;\\u003C/em\\u003E Nightcrawler exclaims. \\u003Cem\\u003E\\u0026quot;He promised the government that he could turn Mutants into living weapons, and he did. But he also wanted access to the world\\u0026#39;s most powerful Mutants. With their genes at his disposal, he knew that he would be unstoppable!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;But how do we stop him?\\u0026quot;\\u003C/em\\u003E Wolverine asks. \\u003Cem\\u003E\\u0026quot;Any ideas, Red?\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJean already has an idea.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;He\\u0026#39;s spent a century breeding new bodies for himself, but his mind is the same as it ever was,\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;Destroy his body, and he\\u0026#39;ll grow a new one. But destroy his mind...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Not even he could survive that,\\u0026quot;\\u003C/em\\u003E Storm says. \\u003Cem\\u003E\\u0026quot;So it would take a powerful psychic to defeat him. A world-class telepath.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Like the Professor...\\u0026quot;\\u003C/em\\u003E Colossus says, realization sinking in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll at once, the X-Men realize why Weapon X has been so determined to crush the X-Men from the beginning: they know that the Professor\\u0026#39;s telepathy makes him one of the few people who could possibly kill Essex, and they\\u0026#39;re determined to remove him as a threat. And now that the Professor is in the government\\u0026#39;s hands, they don\\u0026#39;t stand a chance of defeating Essex.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;But what about you?\\u0026quot;\\u003C/em\\u003E Scott asks Jean. \\u003Cem\\u003E\\u0026quot;You\\u0026#39;re a telepath too!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoubtful, Jean shakes her head.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;m not on the Professor\\u0026#39;s level,\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;Not even close. He\\u0026#39;s been training all his life, and I\\u0026#39;ve been training since I was a teenager. I know how powerful Essex is. There\\u0026#39;s no way I could...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Then we need to get the Professor back,\\u0026quot;\\u003C/em\\u003E Scott says. \\u003Cem\\u003E\\u0026quot;It\\u0026#39;s the only way.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;But that\\u0026#39;s suicide!\\u0026quot;\\u003C/em\\u003E Wolverine tells him. \\u003Cem\\u003E\\u0026quot;Every news crew in America\\u0026#39;s gonna be filming his trial! They\\u0026#39;ve got dozens of cops watching him, day and night! Even if we could bust him out, we\\u0026#39;d have the Feds on us in a heartbeat! And anyway: it\\u0026#39;s not gonna matter unless we can find Essex. Until we know where he is, we can\\u0026#39;t do anything to stop him.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScott knows that he\\u0026#39;s right, but he also knows that he can\\u0026#39;t abandon his mentor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;ll decide our next move in the morning,\\u0026quot;\\u003C/em\\u003E Scott says. \\u003Cem\\u003E\\u0026quot;For now, we need to get some rest.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThey make camp for the night. But in the morning, Scott is gone.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn downtown Chicago, protestors and news reporters descend on the \\u003Cstrong\\u003ECook County Courthouse\\u003C/strong\\u003E, where Professor Xavier is due to stand trial for domestic terrorism. Tensions are visibly high, and fistfights break out between anti-Mutant groups and Mutant Rights demonstrators. The Professor keeps his composure as he\\u0026#39;s rolled up a wheelchair ramp into the courthouse, even as screaming anti-Mutant protestors throw debris at him. As the court is called into session, countless people across America tune into the news to watch the trial.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnbeknownst to the Professor, one of the many bystanders in the crowd outside the courthouse is \\u003Cem\\u003EScott\\u003C/em\\u003E. As he watches his mentor enter the courthouse, he raises a hand to his glasses, readying his optic blasts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the ensuing trial, a fiery argument erupts between federal prosecutors and the Professor\\u0026#39;s lawyer. When the lawyer points out the lack of hard evidence supporting the claim that his client ordered the attack on New York, the prosecutors respond with a long tirade against the X-Men\\u2014pointing out that they\\u0026#39;ve been hiding in upstate New York for years, intentionally keeping their existence hidden from the world. One by one, the prosecutors call multiple witnesses to share their stories about harrowing encounters with Mutants, some of whom threatened their lives. As the jury listens to their stories intently, the prosecutors argue that a man who shelters Mutants cannot be trusted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs his lawyer tries to defend the prosecutors allegations, the Professor suddenly stands to address the court, and gives a passionate speech.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;If I\\u0026#39;m to stand before the world,\\u0026quot;\\u003C/em\\u003E he says, \\u003Cem\\u003E\\u0026quot;let me stand before the world as what I am: a Mutant. A proud Mutant who committed no crime. Fate gave me these abilities. I didn\\u0026#39;t choose them, but I chose to use them for a higher purpose. I built a home to shelter the outcast children of this turbulent century. I became their teacher, and I loved them as my own children. And I taught them to use their gifts to protect a world that hated and feared them. And when they saw a city in peril, they did their duty. They laid down their lives to protect the innocent, just as I taught them. For that grave offense, they were locked away. So produce evidence proving my guilt, if you can. If you cannot, you have a simple choice to make. Will you succumb to your fear of my people, or will you allow justice to rule the day? Either way, a simple fact remains. We are here to stay. And the next move is yours.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll around the country, the American public listens to his speech in stunned silence. When it\\u0026#39;s over, countless Mutant Rights activists erupt in cheers. Mutants\\u2014young and old\\u2014begin chanting Xavier\\u0026#39;s name.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith no verdict in sight, the judge adjourns the trial until the morning, and the police move to wheel the Professor down the courthouse steps. Outside the courthouse, Scott watches him exit the building. For a moment, their eyes meet, and the Professor mouths Scott\\u0026#39;s name as he sees him in the crowd.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EBANG!\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESuddenly, a gunshot rings out, and the Professor falls from his wheelchair as a bullet strikes his chest. As blood gushes from his bullet wound, countless onlookers scream in terror and dive for cover, and the police draw their firearms as they move to carry the Professor to the nearest paramedic. A short distance away, Scott screams in despair.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETL;DR:\\u003C/strong\\u003E With the X-Men in prison after being framed for Mutant X\\u0026#39;s attack on New York, Kitty Pryde stages a daring rescue mission and manages to free her teammates. But as the X-Men plan their final battle with the mysterious Essex, Kitty has a disturbing vision of the future. In her vision, Essex rules America in the aftermath of the horrific \\u0026quot;Gene Wars\\u0026quot; between humans and Mutants, and an aging Kitty leads a new generation of X-Men in a rebellion against him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMeanwhile, Professor Xavier delivers a passionate speech on Mutant rights as he\\u0026#39;s called to stand trial for domestic terrorism. When Scott travels to the courthouse in an attempt to rescue him, he watches in horror as the Professor is gunned down by a mysterious assassin.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ck0v1h\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ck0v1h/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ck0v1h/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564533674.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_49nv3gz8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Zionist Mind Control Through Pornography\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cjwc32\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564541968.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"altcensored.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cjwc32\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WinstonAltSmith\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cjwc32/zionist_mind_control_through_pornography/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.altcensored.com/embed/IVr1kfQH20Y\", \"subreddit_subscribers\": 777, \"created_utc\": 1564513168.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_49nv3gz8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Zionist Mind Control Through Pornography\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cjw52x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564541124.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"altcensored.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cjw52x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WinstonAltSmith\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cjw52x/zionist_mind_control_through_pornography/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.altcensored.com/watch?v=IVr1kfQH20Y\", \"subreddit_subscribers\": 777, \"created_utc\": 1564512324.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_kw8nc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Kickstarter link attempt\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_cjr9ww\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fdrawblack%2Fextinction-protocol-minimalist-survival-strategy%2Fwidget%2Fvideo.html\\u0026url=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fdrawblack%2Fextinction-protocol-minimalist-survival-strategy\\u0026image=https%3A%2F%2Fksr-ugc.imgix.net%2Fassets%2F025%2F890%2F206%2F727ed0482a80dc70c7a52cdc703838f9_original.jpg%3Fixlib%3Drb-2.1.0%26crop%3Dfaces%26w%3D560%26h%3D315%26fit%3Dcrop%26v%3D1563829903%26auto%3Dformat%26frame%3D1%26q%3D92%26s%3De5d60045cb7a9c4de8ceeabf2442bf0f\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=kickstarter\\\" width=\\\"480\\\" height=\\\"270\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 480, \"scrolling\": false, \"height\": 270}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"kickstarter.com\", \"oembed\": {\"provider_url\": \"https://www.kickstarter.com/\", \"description\": \"Since many people have been burned by Kickstarter before: We're legally bound by Fundchaser to deliver the game if funded. (More in Risks \\u0026 Challenges section) Extinction Protocol is a minimalist take on the strategy genre where you take control over a construction drone armed only with a transport hook.\", \"title\": \"Extinction Protocol: Construction Drone at War\", \"type\": \"rich\", \"author_name\": \"Drawblack\", \"height\": 270, \"width\": 480, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fdrawblack%2Fextinction-protocol-minimalist-survival-strategy%2Fwidget%2Fvideo.html\\u0026url=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fdrawblack%2Fextinction-protocol-minimalist-survival-strategy\\u0026image=https%3A%2F%2Fksr-ugc.imgix.net%2Fassets%2F025%2F890%2F206%2F727ed0482a80dc70c7a52cdc703838f9_original.jpg%3Fixlib%3Drb-2.1.0%26crop%3Dfaces%26w%3D560%26h%3D315%26fit%3Dcrop%26v%3D1563829903%26auto%3Dformat%26frame%3D1%26q%3D92%26s%3De5d60045cb7a9c4de8ceeabf2442bf0f\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=kickstarter\\\" width=\\\"480\\\" height=\\\"270\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 560, \"version\": \"1.0\", \"provider_name\": \"Kickstarter\", \"thumbnail_url\": \"https://ksr-ugc.imgix.net/assets/025/890/206/727ed0482a80dc70c7a52cdc703838f9_original.jpg?ixlib=rb-2.1.0\\u0026crop=faces\\u0026w=560\\u0026h=315\\u0026fit=crop\\u0026v=1563829903\\u0026auto=format\\u0026frame=1\\u0026q=92\\u0026s=e5d60045cb7a9c4de8ceeabf2442bf0f\", \"thumbnail_height\": 315, \"author_url\": \"https://www.kickstarter.com/profile/drawblack\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fdrawblack%2Fextinction-protocol-minimalist-survival-strategy%2Fwidget%2Fvideo.html\\u0026url=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fdrawblack%2Fextinction-protocol-minimalist-survival-strategy\\u0026image=https%3A%2F%2Fksr-ugc.imgix.net%2Fassets%2F025%2F890%2F206%2F727ed0482a80dc70c7a52cdc703838f9_original.jpg%3Fixlib%3Drb-2.1.0%26crop%3Dfaces%26w%3D560%26h%3D315%26fit%3Dcrop%26v%3D1563829903%26auto%3Dformat%26frame%3D1%26q%3D92%26s%3De5d60045cb7a9c4de8ceeabf2442bf0f\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=kickstarter\\\" width=\\\"480\\\" height=\\\"270\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 480, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cjr9ww\", \"height\": 270}, \"link_flair_text\": \"Super flair\", \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/fACxUBBS37IQfKdLMVINi57HPnwSS2rRy6OHrUGs2yU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564519625.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"kickstarter.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/_jYWJfp71U2OZ_Fa5tmc5Xhw3NYBf49-8l0-i5fPbq0.jpg?auto=webp\\u0026s=d595e7781514d6092dfe48c2f58e5fe66309bc32\", \"width\": 560, \"height\": 315}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/_jYWJfp71U2OZ_Fa5tmc5Xhw3NYBf49-8l0-i5fPbq0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a94a0c5203af23fce0000762f3e49bfd0e16103c\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/_jYWJfp71U2OZ_Fa5tmc5Xhw3NYBf49-8l0-i5fPbq0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=878a259f94ea6b044cf9898a55f76d38176d2cfb\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/_jYWJfp71U2OZ_Fa5tmc5Xhw3NYBf49-8l0-i5fPbq0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ea9ad18f66d18a5cc3765f6131f7cb6c4b85c9aa\", \"width\": 320, \"height\": 180}], \"variants\": {}, \"id\": \"TVBvrWCnYJq5RcRGEGTq-big9wIHlT_9iUQuAw0Ezaw\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"link_flair_template_id\": \"f524e9a0-4e81-11e4-bf82-12313d052ede\", \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cjr9ww\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"imPaprik\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cjr9ww/kickstarter_link_attempt/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.kickstarter.com/projects/drawblack/extinction-protocol-minimalist-survival-strategy?ref=aot8kv\", \"subreddit_subscribers\": 777, \"created_utc\": 1564490825.0, \"discussion_type\": null, \"media\": {\"type\": \"kickstarter.com\", \"oembed\": {\"provider_url\": \"https://www.kickstarter.com/\", \"description\": \"Since many people have been burned by Kickstarter before: We're legally bound by Fundchaser to deliver the game if funded. (More in Risks \\u0026 Challenges section) Extinction Protocol is a minimalist take on the strategy genre where you take control over a construction drone armed only with a transport hook.\", \"title\": \"Extinction Protocol: Construction Drone at War\", \"type\": \"rich\", \"author_name\": \"Drawblack\", \"height\": 270, \"width\": 480, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fdrawblack%2Fextinction-protocol-minimalist-survival-strategy%2Fwidget%2Fvideo.html\\u0026url=https%3A%2F%2Fwww.kickstarter.com%2Fprojects%2Fdrawblack%2Fextinction-protocol-minimalist-survival-strategy\\u0026image=https%3A%2F%2Fksr-ugc.imgix.net%2Fassets%2F025%2F890%2F206%2F727ed0482a80dc70c7a52cdc703838f9_original.jpg%3Fixlib%3Drb-2.1.0%26crop%3Dfaces%26w%3D560%26h%3D315%26fit%3Dcrop%26v%3D1563829903%26auto%3Dformat%26frame%3D1%26q%3D92%26s%3De5d60045cb7a9c4de8ceeabf2442bf0f\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=kickstarter\\\" width=\\\"480\\\" height=\\\"270\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 560, \"version\": \"1.0\", \"provider_name\": \"Kickstarter\", \"thumbnail_url\": \"https://ksr-ugc.imgix.net/assets/025/890/206/727ed0482a80dc70c7a52cdc703838f9_original.jpg?ixlib=rb-2.1.0\\u0026crop=faces\\u0026w=560\\u0026h=315\\u0026fit=crop\\u0026v=1563829903\\u0026auto=format\\u0026frame=1\\u0026q=92\\u0026s=e5d60045cb7a9c4de8ceeabf2442bf0f\", \"thumbnail_height\": 315, \"author_url\": \"https://www.kickstarter.com/profile/drawblack\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello everyone! I will be going over why you should buy Portal 2 (and 1) today. So without any further delay, lets get into it! Oh also, feel free to skip around into the different sections in this \\\"you should buy\\\". \\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\nThe most important thing is probably the price, the price is $20 normally, but it goes on sale for around $2 on steam if I remember correctly. I bought it for $20 and it was totally worth my money. \\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\*GRAPHICS/SOUND:\\\\*\\\\* I found the graphics and the sound in it to be suprisingly good. Most valve games are a bit older so the graphics aren't the best, but they are easily on par with CSGO's. I mean, don't get me wrong they aren't groundbreaking for the time. However, I was pleasently suprised. I honestly think it wasn't the graphics that did it for me but the enviroment. At certain parts in the game I felt like I was really trapped there, or that I was truley in a dark area. Or I was in a huge massive location with no way to get out but my wits. Don't go into it expecting something absolutely groundbreaking, but again it has good graphics and isn't too demanding to run.\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\*STORY:\\\\*\\\\* The story is pretty well done. Many people are probabaly gonna disagree with me here, but I preffered it to Half Life 1/2. Although, it does take place in the same universe if you look at the \\\"easter eggs\\\" referencing the Half Life series. Anyways, I don't want to spoil it for any of you so I won't talk much about it. I never expected a puzzle game to have such a good story. I know some people don't like the ending but I thought it was so awesome. \\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\*GAMEPLAY:\\\\*\\\\* The game is ultimately a puzzle game. However, to me it didn't feel like a puzzle game. I mean, some areas did but it more felt like a game about using your wits to get past elaborate tests. Basically in the gameplay you can place down portals that you can go through, but only on white walls/floors. You then use things like buttons, cubes, and gravity to get past certain parts. I normally don't like puzzle games personally (cause I'm stupid and like COD campaigns), but Portal 2 was so much fun for me. It poses a pretty good challenge for me at times but not so much it made me frustrated. On the occasional time I got stuck and had to look it up, it then seemed so obvious on what I had to do. Whenever you get past a difficult part as well it feels like you are the smartest person on earth. \\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\*COMEDY:\\\\*\\\\* Wasn't expecting this game to have jokes in it, but there was a few moments I LOLed. Right off the start I was already laughing. I may be exaggerating a little in terms of the comedy, but I found it very funny. It's different than Borderlands 2 humour, but if you liked Borderlands 2's comedy you will probably like this game's comedy. \\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\*Portal 1 vs Portal 2:\\\\*\\\\* The game are ultimately very similar. Even the graphics and sounds are pretty similar. I would argue that Portal 2 is just a longer version of Portal 1 with different content, better story (IMO), as well as extra content after beating the game like map making and co-op. I have to say is you don't have to have had played Portal 1 to understand what's going on. The story makes complete sense without Portal 1 but there are one ore two references to it. As a matter of fact I may recommend playing Portal 2 first due to a plot twist in it that Portal 1 may spoil for you. After you beat Portal 2, you definately should pick up Portal 1 though. IMO Portal 1 would have made a great DLC for Portal 2 as that's kind of how I ended up playing it. (People are probably gonna hate me for saying that). Oh and Portal 2 doesn't have the COMPANION CUBE. :(\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\*CO-OP:\\\\*\\\\* Ok now to talk about the CO-OP. The CO-OP is really fun. I originally got this game to play with my cousin but then I ended up loving the campaign. Anyways, the co op doesn't have a story but it does have some dialogue and a little bit of backstory. It takes place (?before?) portal 1 (?). I honestly don't know, but its a blast and I finished the entire CO OP in it as well.\\n\\n\\u0026#x200B;\\n\\n\\\\*\\\\*HOW LONG TO BEAT IT AND REPLAYABILITY:\\\\*\\\\* According to [howlongtobeat.com](https://howlongtobeat.com) the average time was about 8-11 hours. However, the CO OP brings a bunch of extra content. Portal 1 takes about 3-5 hours. The replayability is great to replay...after a year or so when you hopefully forget how to do the puzzles. Otherwise there isn't too much challenge as you remember how to do it. Ultimately that's the only real big fault I can find with it, is the lack of replayabily. \\n\\n\\u0026#x200B;\\n\\nIn conclusion, you should buy it. I give it a solid 10/10, I thought the length was perfect and there is very few faults with it. Matter of fact it is my third favorite game of all time (favorite is Last of Us then God of War 4). \\n\\n\\u0026#x200B;\\n\\nIf there is anything I missed feel free to let me know down below! I will edit it and add any crucial elements I forgot (with recognition towards you of course)\", \"author_fullname\": \"t2_2wjhdh8s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"p1 and p2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cjitlb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564469518.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone! I will be going over why you should buy Portal 2 (and 1) today. So without any further delay, lets get into it! Oh also, feel free to skip around into the different sections in this \\u0026quot;you should buy\\u0026quot;. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe most important thing is probably the price, the price is $20 normally, but it goes on sale for around $2 on steam if I remember correctly. I bought it for $20 and it was totally worth my money. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**GRAPHICS/SOUND:** I found the graphics and the sound in it to be suprisingly good. Most valve games are a bit older so the graphics aren\\u0026#39;t the best, but they are easily on par with CSGO\\u0026#39;s. I mean, don\\u0026#39;t get me wrong they aren\\u0026#39;t groundbreaking for the time. However, I was pleasently suprised. I honestly think it wasn\\u0026#39;t the graphics that did it for me but the enviroment. At certain parts in the game I felt like I was really trapped there, or that I was truley in a dark area. Or I was in a huge massive location with no way to get out but my wits. Don\\u0026#39;t go into it expecting something absolutely groundbreaking, but again it has good graphics and isn\\u0026#39;t too demanding to run.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**STORY:** The story is pretty well done. Many people are probabaly gonna disagree with me here, but I preffered it to Half Life 1/2. Although, it does take place in the same universe if you look at the \\u0026quot;easter eggs\\u0026quot; referencing the Half Life series. Anyways, I don\\u0026#39;t want to spoil it for any of you so I won\\u0026#39;t talk much about it. I never expected a puzzle game to have such a good story. I know some people don\\u0026#39;t like the ending but I thought it was so awesome. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**GAMEPLAY:** The game is ultimately a puzzle game. However, to me it didn\\u0026#39;t feel like a puzzle game. I mean, some areas did but it more felt like a game about using your wits to get past elaborate tests. Basically in the gameplay you can place down portals that you can go through, but only on white walls/floors. You then use things like buttons, cubes, and gravity to get past certain parts. I normally don\\u0026#39;t like puzzle games personally (cause I\\u0026#39;m stupid and like COD campaigns), but Portal 2 was so much fun for me. It poses a pretty good challenge for me at times but not so much it made me frustrated. On the occasional time I got stuck and had to look it up, it then seemed so obvious on what I had to do. Whenever you get past a difficult part as well it feels like you are the smartest person on earth. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**COMEDY:** Wasn\\u0026#39;t expecting this game to have jokes in it, but there was a few moments I LOLed. Right off the start I was already laughing. I may be exaggerating a little in terms of the comedy, but I found it very funny. It\\u0026#39;s different than Borderlands 2 humour, but if you liked Borderlands 2\\u0026#39;s comedy you will probably like this game\\u0026#39;s comedy. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**Portal 1 vs Portal 2:** The game are ultimately very similar. Even the graphics and sounds are pretty similar. I would argue that Portal 2 is just a longer version of Portal 1 with different content, better story (IMO), as well as extra content after beating the game like map making and co-op. I have to say is you don\\u0026#39;t have to have had played Portal 1 to understand what\\u0026#39;s going on. The story makes complete sense without Portal 1 but there are one ore two references to it. As a matter of fact I may recommend playing Portal 2 first due to a plot twist in it that Portal 1 may spoil for you. After you beat Portal 2, you definately should pick up Portal 1 though. IMO Portal 1 would have made a great DLC for Portal 2 as that\\u0026#39;s kind of how I ended up playing it. (People are probably gonna hate me for saying that). Oh and Portal 2 doesn\\u0026#39;t have the COMPANION CUBE. :(\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**CO-OP:** Ok now to talk about the CO-OP. The CO-OP is really fun. I originally got this game to play with my cousin but then I ended up loving the campaign. Anyways, the co op doesn\\u0026#39;t have a story but it does have some dialogue and a little bit of backstory. It takes place (?before?) portal 1 (?). I honestly don\\u0026#39;t know, but its a blast and I finished the entire CO OP in it as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E**HOW LONG TO BEAT IT AND REPLAYABILITY:** According to \\u003Ca href=\\\"https://howlongtobeat.com\\\"\\u003Ehowlongtobeat.com\\u003C/a\\u003E the average time was about 8-11 hours. However, the CO OP brings a bunch of extra content. Portal 1 takes about 3-5 hours. The replayability is great to replay...after a year or so when you hopefully forget how to do the puzzles. Otherwise there isn\\u0026#39;t too much challenge as you remember how to do it. Ultimately that\\u0026#39;s the only real big fault I can find with it, is the lack of replayabily. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn conclusion, you should buy it. I give it a solid 10/10, I thought the length was perfect and there is very few faults with it. Matter of fact it is my third favorite game of all time (favorite is Last of Us then God of War 4). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf there is anything I missed feel free to let me know down below! I will edit it and add any crucial elements I forgot (with recognition towards you of course)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MAeZn6g9LFOUTQx9c1ZWUqYbbIQFXYaHbdREk5M78AY.jpg?auto=webp\\u0026s=6700bc933132c7df34e85d6d02699a6a8a94522b\", \"width\": 650, \"height\": 502}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MAeZn6g9LFOUTQx9c1ZWUqYbbIQFXYaHbdREk5M78AY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=85bd5994addecb62df07031ada8144f14aac2a7e\", \"width\": 108, \"height\": 83}, {\"url\": \"https://external-preview.redd.it/MAeZn6g9LFOUTQx9c1ZWUqYbbIQFXYaHbdREk5M78AY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b5e5711212ff654cfbe0173797f1b152847043f9\", \"width\": 216, \"height\": 166}, {\"url\": \"https://external-preview.redd.it/MAeZn6g9LFOUTQx9c1ZWUqYbbIQFXYaHbdREk5M78AY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=78127400c8b55f864c08f424f64b9b3d1eabb780\", \"width\": 320, \"height\": 247}, {\"url\": \"https://external-preview.redd.it/MAeZn6g9LFOUTQx9c1ZWUqYbbIQFXYaHbdREk5M78AY.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=25e13e10173144e3ecca89f06b5558164cd4d023\", \"width\": 640, \"height\": 494}], \"variants\": {}, \"id\": \"2bqsY2By3swziIb-bkdJtH_QA-7BGI0dID6C0ZgIWaQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cjitlb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jordan_fluffystar\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cjitlb/p1_and_p2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cjitlb/p1_and_p2/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564440718.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"This is a cool logo:\\n![haskell](https://www.google.com/imgres?imgurl=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2F1%2F1c%2FHaskell-Logo.svg\\u0026imgrefurl=https%3A%2F%2Fcommons.wikimedia.org%2Fwiki%2FFile%3AHaskell-Logo.svg\\u0026docid=b5E-1chGYFz4XM\\u0026tbnid=QnAwPfi2toY9fM%3A\\u0026vet=10ahUKEwjQi7H_pNrjAhXGg-AKHTzZB0gQMwhbKAAwAA..i\\u0026w=643\\u0026h=454\\u0026client=ubuntu\\u0026bih=800\\u0026biw=1062\\u0026q=haskell%20logo\\u0026ved=0ahUKEwjQi7H_pNrjAhXGg-AKHTzZB0gQMwhbKAAwAA\\u0026iact=mrc\\u0026uact=8)\\n\\nThese look retarded:\\n![emacs](https://www.google.com/imgres?imgurl=https%3A%2F%2Fi.stack.imgur.com%2FK6ejX.png\\u0026imgrefurl=https%3A%2F%2Femacs.stackexchange.com%2Fquestions%2F32058%2Fwhy-does-gnu-emacs-use-ksi%25CE%25BE-as-its-logo\\u0026docid=GhN26ug9FymS7M\\u0026tbnid=CYSnM2tdizRP3M%3A\\u0026vet=10ahUKEwj7l9q4pNrjAhXBdN8KHVDQDcMQMwhkKAAwAA..i\\u0026w=604\\u0026h=519\\u0026client=ubuntu\\u0026bih=800\\u0026biw=1062\\u0026q=emacs%20logo\\u0026ved=0ahUKEwj7l9q4pNrjAhXBdN8KHVDQDcMQMwhkKAAwAA\\u0026iact=mrc\\u0026uact=8)\\n![emacs](https://www.google.com/imgres?imgurl=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F0%2F08%2FEmacsIcon.svg%2F1024px-EmacsIcon.svg.png\\u0026imgrefurl=https%3A%2F%2Fcommons.wikimedia.org%2Fwiki%2FFile%3AEmacsIcon.svg\\u0026docid=mjTi46j20e8AzM\\u0026tbnid=hTklXFpGGknhaM%3A\\u0026vet=10ahUKEwj7l9q4pNrjAhXBdN8KHVDQDcMQMwhlKAEwAQ..i\\u0026w=1024\\u0026h=1024\\u0026client=ubuntu\\u0026bih=800\\u0026biw=1062\\u0026q=emacs%20logo\\u0026ved=0ahUKEwj7l9q4pNrjAhXBdN8KHVDQDcMQMwhlKAEwAQ\\u0026iact=mrc\\u0026uact=8)\\n\\nThe lambda calculus has come into the hipster vogue with the resurgence of\\nfunctional languages like lisp. emacs should jump on that\\nbandwagon with a cooler lambda-oriented logo.\", \"author_fullname\": \"t2_226murc6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"On Logos\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cjbo9u\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564437861.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is a cool logo:\\n![haskell](\\u003Ca href=\\\"https://www.google.com/imgres?imgurl=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2F1%2F1c%2FHaskell-Logo.svg\\u0026amp;imgrefurl=https%3A%2F%2Fcommons.wikimedia.org%2Fwiki%2FFile%3AHaskell-Logo.svg\\u0026amp;docid=b5E-1chGYFz4XM\\u0026amp;tbnid=QnAwPfi2toY9fM%3A\\u0026amp;vet=10ahUKEwjQi7H_pNrjAhXGg-AKHTzZB0gQMwhbKAAwAA..i\\u0026amp;w=643\\u0026amp;h=454\\u0026amp;client=ubuntu\\u0026amp;bih=800\\u0026amp;biw=1062\\u0026amp;q=haskell%20logo\\u0026amp;ved=0ahUKEwjQi7H_pNrjAhXGg-AKHTzZB0gQMwhbKAAwAA\\u0026amp;iact=mrc\\u0026amp;uact=8\\\"\\u003Ehttps://www.google.com/imgres?imgurl=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2F1%2F1c%2FHaskell-Logo.svg\\u0026amp;imgrefurl=https%3A%2F%2Fcommons.wikimedia.org%2Fwiki%2FFile%3AHaskell-Logo.svg\\u0026amp;docid=b5E-1chGYFz4XM\\u0026amp;tbnid=QnAwPfi2toY9fM%3A\\u0026amp;vet=10ahUKEwjQi7H_pNrjAhXGg-AKHTzZB0gQMwhbKAAwAA..i\\u0026amp;w=643\\u0026amp;h=454\\u0026amp;client=ubuntu\\u0026amp;bih=800\\u0026amp;biw=1062\\u0026amp;q=haskell%20logo\\u0026amp;ved=0ahUKEwjQi7H_pNrjAhXGg-AKHTzZB0gQMwhbKAAwAA\\u0026amp;iact=mrc\\u0026amp;uact=8\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThese look retarded:\\n![emacs](\\u003Ca href=\\\"https://www.google.com/imgres?imgurl=https%3A%2F%2Fi.stack.imgur.com%2FK6ejX.png\\u0026amp;imgrefurl=https%3A%2F%2Femacs.stackexchange.com%2Fquestions%2F32058%2Fwhy-does-gnu-emacs-use-ksi%25CE%25BE-as-its-logo\\u0026amp;docid=GhN26ug9FymS7M\\u0026amp;tbnid=CYSnM2tdizRP3M%3A\\u0026amp;vet=10ahUKEwj7l9q4pNrjAhXBdN8KHVDQDcMQMwhkKAAwAA..i\\u0026amp;w=604\\u0026amp;h=519\\u0026amp;client=ubuntu\\u0026amp;bih=800\\u0026amp;biw=1062\\u0026amp;q=emacs%20logo\\u0026amp;ved=0ahUKEwj7l9q4pNrjAhXBdN8KHVDQDcMQMwhkKAAwAA\\u0026amp;iact=mrc\\u0026amp;uact=8\\\"\\u003Ehttps://www.google.com/imgres?imgurl=https%3A%2F%2Fi.stack.imgur.com%2FK6ejX.png\\u0026amp;imgrefurl=https%3A%2F%2Femacs.stackexchange.com%2Fquestions%2F32058%2Fwhy-does-gnu-emacs-use-ksi%25CE%25BE-as-its-logo\\u0026amp;docid=GhN26ug9FymS7M\\u0026amp;tbnid=CYSnM2tdizRP3M%3A\\u0026amp;vet=10ahUKEwj7l9q4pNrjAhXBdN8KHVDQDcMQMwhkKAAwAA..i\\u0026amp;w=604\\u0026amp;h=519\\u0026amp;client=ubuntu\\u0026amp;bih=800\\u0026amp;biw=1062\\u0026amp;q=emacs%20logo\\u0026amp;ved=0ahUKEwj7l9q4pNrjAhXBdN8KHVDQDcMQMwhkKAAwAA\\u0026amp;iact=mrc\\u0026amp;uact=8\\u003C/a\\u003E)\\n![emacs](\\u003Ca href=\\\"https://www.google.com/imgres?imgurl=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F0%2F08%2FEmacsIcon.svg%2F1024px-EmacsIcon.svg.png\\u0026amp;imgrefurl=https%3A%2F%2Fcommons.wikimedia.org%2Fwiki%2FFile%3AEmacsIcon.svg\\u0026amp;docid=mjTi46j20e8AzM\\u0026amp;tbnid=hTklXFpGGknhaM%3A\\u0026amp;vet=10ahUKEwj7l9q4pNrjAhXBdN8KHVDQDcMQMwhlKAEwAQ..i\\u0026amp;w=1024\\u0026amp;h=1024\\u0026amp;client=ubuntu\\u0026amp;bih=800\\u0026amp;biw=1062\\u0026amp;q=emacs%20logo\\u0026amp;ved=0ahUKEwj7l9q4pNrjAhXBdN8KHVDQDcMQMwhlKAEwAQ\\u0026amp;iact=mrc\\u0026amp;uact=8\\\"\\u003Ehttps://www.google.com/imgres?imgurl=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F0%2F08%2FEmacsIcon.svg%2F1024px-EmacsIcon.svg.png\\u0026amp;imgrefurl=https%3A%2F%2Fcommons.wikimedia.org%2Fwiki%2FFile%3AEmacsIcon.svg\\u0026amp;docid=mjTi46j20e8AzM\\u0026amp;tbnid=hTklXFpGGknhaM%3A\\u0026amp;vet=10ahUKEwj7l9q4pNrjAhXBdN8KHVDQDcMQMwhlKAEwAQ..i\\u0026amp;w=1024\\u0026amp;h=1024\\u0026amp;client=ubuntu\\u0026amp;bih=800\\u0026amp;biw=1062\\u0026amp;q=emacs%20logo\\u0026amp;ved=0ahUKEwj7l9q4pNrjAhXBdN8KHVDQDcMQMwhlKAEwAQ\\u0026amp;iact=mrc\\u0026amp;uact=8\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe lambda calculus has come into the hipster vogue with the resurgence of\\nfunctional languages like lisp. emacs should jump on that\\nbandwagon with a cooler lambda-oriented logo.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cjbo9u\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"fragglestickcar0\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cjbo9u/on_logos/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cjbo9u/on_logos/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564409061.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_6h8ny\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Old Kona town. [kodak duaflex ii - lomo 100]\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cj8hsd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/XTIuUeCbZVD_g24W7I_N6q7kP1KL3oICgvYIBmmqw2U.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564418261.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/-nkhwA6hrS9TPjA8qW3pDQeMfDe003SpgFaBUrBmLbY.jpg?auto=webp\\u0026s=6d4d762a6d44f8da67f863376f6625a40f7350f3\", \"width\": 1080, \"height\": 1846}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/-nkhwA6hrS9TPjA8qW3pDQeMfDe003SpgFaBUrBmLbY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=98cbdcc9290b5aa5ddf762d9adcee8b586bbb02d\", \"width\": 108, \"height\": 184}, {\"url\": \"https://external-preview.redd.it/-nkhwA6hrS9TPjA8qW3pDQeMfDe003SpgFaBUrBmLbY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b4a4d3e3b30138902c99017c7b66ebb190d922c6\", \"width\": 216, \"height\": 369}, {\"url\": \"https://external-preview.redd.it/-nkhwA6hrS9TPjA8qW3pDQeMfDe003SpgFaBUrBmLbY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=24152fb4afc831dc6dfa8c2763a5bceb58731f83\", \"width\": 320, \"height\": 546}, {\"url\": \"https://external-preview.redd.it/-nkhwA6hrS9TPjA8qW3pDQeMfDe003SpgFaBUrBmLbY.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=417b136ace2574d3dea05e8bb86c98b78daa1e5a\", \"width\": 640, \"height\": 1093}, {\"url\": \"https://external-preview.redd.it/-nkhwA6hrS9TPjA8qW3pDQeMfDe003SpgFaBUrBmLbY.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=a031b47b2aae427a2e1cf789f3fab9713657c2e1\", \"width\": 960, \"height\": 1640}, {\"url\": \"https://external-preview.redd.it/-nkhwA6hrS9TPjA8qW3pDQeMfDe003SpgFaBUrBmLbY.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8de7f8b77a75b86854e4a118fde37119cbdb8999\", \"width\": 1080, \"height\": 1846}], \"variants\": {}, \"id\": \"13b9rCUeUkkf0sRmj0lXzASj2Lp-tKn1vzN1IjZ52eY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cj8hsd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"noahcwb\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cj8hsd/old_kona_town_kodak_duaflex_ii_lomo_100/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/gallery/EHpzq2E\", \"subreddit_subscribers\": 777, \"created_utc\": 1564389461.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_iv4m4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Poker Odds For Dummies (Also by Dummies)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 60, \"hide_score\": false, \"name\": \"t3_cj4g3s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/FXmOtdSUC7noJEj_OPkIVFbfL3tV393PTZk7904DftM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564392488.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/rJ0t0E9TTgxSMmvjOQ5---8caha8mu5_JlWiHRGwBBk.png?auto=webp\\u0026s=ce0b187118f32a02ac35271329e957717cb09cb3\", \"width\": 1009, \"height\": 438}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/rJ0t0E9TTgxSMmvjOQ5---8caha8mu5_JlWiHRGwBBk.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=468b7f563f4fcd747459ccca07d3f50bcfcabc33\", \"width\": 108, \"height\": 46}, {\"url\": \"https://external-preview.redd.it/rJ0t0E9TTgxSMmvjOQ5---8caha8mu5_JlWiHRGwBBk.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=34776c79905416473e0e859091d205357ee4c49c\", \"width\": 216, \"height\": 93}, {\"url\": \"https://external-preview.redd.it/rJ0t0E9TTgxSMmvjOQ5---8caha8mu5_JlWiHRGwBBk.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=e2a8b92edb7728f3bf73cf0a66bddd31dca381fd\", \"width\": 320, \"height\": 138}, {\"url\": \"https://external-preview.redd.it/rJ0t0E9TTgxSMmvjOQ5---8caha8mu5_JlWiHRGwBBk.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=94b762eb7e73de939393c3a48fbc7557f5cb33ba\", \"width\": 640, \"height\": 277}, {\"url\": \"https://external-preview.redd.it/rJ0t0E9TTgxSMmvjOQ5---8caha8mu5_JlWiHRGwBBk.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f9de4aa4ae25b3da3a3a922f19eff8648453b720\", \"width\": 960, \"height\": 416}], \"variants\": {}, \"id\": \"WzeEGUkvRMsrk1QugF46cofiEWmsCvN03uXrxVJmDMA\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cj4g3s\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nicha11\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cj4g3s/poker_odds_for_dummies_also_by_dummies/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.imgur.com/hTtANn8.png\", \"subreddit_subscribers\": 777, \"created_utc\": 1564363688.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"A Discord Poster Today\\n___________________\\nI saw an advert on TV for a casino resort and one of the images flashed on screen was someone peeking at the two face down cards to reveal two aces.\\nAnd I'm thinking, \\\"what an unspectacular hand\\\"\\nIf you're playing blackjack, good job you have 12.\\nIf you're playing poker, then you have an ace pair which is good to have in hand but the remaining cards could well invalidate your hand.\\n________________________\", \"author_fullname\": \"t2_iv4m4\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Poker Odds For Dummies (Also by Dummies)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cj4b2t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564391696.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA Discord Poster Today\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EI saw an advert on TV for a casino resort and one of the images flashed on screen was someone peeking at the two face down cards to reveal two aces.\\nAnd I\\u0026#39;m thinking, \\u0026quot;what an unspectacular hand\\u0026quot;\\nIf you\\u0026#39;re playing blackjack, good job you have 12.\\nIf you\\u0026#39;re playing poker, then you have an ace pair which is good to have in hand but the remaining cards could well invalidate your hand.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cj4b2t\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"nicha11\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cj4b2t/poker_odds_for_dummies_also_by_dummies/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cj4b2t/poker_odds_for_dummies_also_by_dummies/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564362896.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://i.redd.it/acjcoruy0yc31.gif\\n\\nFast-paced brawler work-in-progress where you jump from car to car on a busy freeway and kick your enemies to the pavement! Live updates every week. This week I added delivery trucks that are tall enough to have a fog-of-war effect.\\n\\nFeedback always appreciated!\\n\\nFree (and ad-free) in-browser on PC and Android: [https://pyrian.itch.io/cyborghighwaywip](https://pyrian.itch.io/cyborghighwaywip)\", \"author_fullname\": \"t2_2adghts5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cyborg Highway\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"media_metadata\": {\"acjcoruy0yc31\": {\"status\": \"valid\", \"e\": \"AnimatedImage\", \"s\": {\"y\": 512, \"gif\": \"https://i.redd.it/acjcoruy0yc31.gif\", \"mp4\": \"https://external-preview.redd.it/acjcoruy0yc31.gif?format=mp4\\u0026s=cf05bf7b9f8e20edc5d9c6a862f9a7c4e69ad23a\", \"x\": 512}, \"m\": \"image/gif\", \"id\": \"acjcoruy0yc31\"}}, \"name\": \"t3_ciphbs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1564275618.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564304054.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/acjcoruy0yc31.gif\\\"\\u003Ehttps://i.redd.it/acjcoruy0yc31.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFast-paced brawler work-in-progress where you jump from car to car on a busy freeway and kick your enemies to the pavement! Live updates every week. This week I added delivery trucks that are tall enough to have a fog-of-war effect.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeedback always appreciated!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFree (and ad-free) in-browser on PC and Android: \\u003Ca href=\\\"https://pyrian.itch.io/cyborghighwaywip\\\"\\u003Ehttps://pyrian.itch.io/cyborghighwaywip\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/t5ib9nCRtCBOfJ4tsIoTuaSjU3MY0FZmabiqTC5aMwQ.jpg?auto=webp\\u0026s=762347e23744e515e63d08b8c5bc386e3ab0ca13\", \"width\": 315, \"height\": 250}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/t5ib9nCRtCBOfJ4tsIoTuaSjU3MY0FZmabiqTC5aMwQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=9664d83129caced7eee5afee5ae7db18db96f887\", \"width\": 108, \"height\": 85}, {\"url\": \"https://external-preview.redd.it/t5ib9nCRtCBOfJ4tsIoTuaSjU3MY0FZmabiqTC5aMwQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e197ec9ed86084bf6867266fc729760479d265a7\", \"width\": 216, \"height\": 171}], \"variants\": {}, \"id\": \"3v53A_rIVOpNhGOA8FRexc6q9cZo2vb8r5raHKAzB0Y\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ciphbs\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dranamic\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ciphbs/cyborg_highway/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ciphbs/cyborg_highway/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564275254.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \" 9 Wins+\\n Prinz, Kristof [DE]\\tIzzet Phoenix\\n \\n 8 Wins+\\n Hogaak\\t\\t\\tMuller, Martin [DK]\\n Hogaak\\t\\t\\tSantos, Bernardo [PT]\\n Hogaak\\t\\t\\tYamamoto, Kentaro [JP]\\n Hogaak\\t\\t\\tSevera, Matthew [US]\\n Hogaak\\t\\t\\tDuke, Reid [US]\\n Hogaak\\t\\t\\tBaumeister, Corey [US]\\n Hogaak\\t\\t\\tRoos, Tobias [CA]\\n Hogaak\\t\\t\\tDamo Da Rosa, Paulo Vitor [BR]\\n Hogaak\\t\\t\\tPardee, Samuel [US]\\n Hogaak Dredge\\t\\tLuong, Marcus [US]\\n Hogaak Dredge\\t\\tEapen, Roshen [US]\\n Humans\\t\\t\\tNapolitano, David [US]\\n Jund\\t\\t\\tZhang, Zhiyang [CN]\\n Jund\\t\\t\\tMa, No Ah [KR]\\n Tron\\t\\t\\tHauck, Christian [DE]\\n Urza ThopterSword\\tPortaro, Alessandro [IT]\\n Urza ThopterSword\\tWang, Forrest [US]\\n W/U Control\\t\\tHocquemiller, Arnaud [FR]\\n W/U Control\\t\\tKowalski, Grzegorz [PL]\\n \\n 7 Wins+\\n Burn\\t\\t\\tPileggi, Riccardo [CA]\\n Dredge\\t\\t\\tBattista, Giuseppe [IT]\\n Eldrazi Tron\\t\\tGifford, Sean [CA]\\n Eldrazi Tron\\t\\tBatista Ferreira, Marlos [BR]\\n Eldrazi Tron\\t\\tRizzi, Mattia [IT]\\n Eldrazi Tron\\t\\tNassif, Gabriel [FR]\\n Eldrazi Tron\\t\\tCastleberry, Joshua [US]\\n Eldrazi Tron\\t\\tLopes, Gabriel [BR]\\n Esper Control\\t\\tWafo-Tapa, Guillaume [FR]\\n Grishoalbrand\\t\\tPathirana, Prads [AU]\\n Hardened Scales\\t\\tFernandez Torres, Alvaro [ES]\\n Hogaak\\t\\t\\tKimball, Patrick [CA]\\n Hogaak\\t\\t\\tWiegersma, Jelger [NL]\\n Hogaak\\t\\t\\tSalvador Arnal, Guillem [ES]\\n Hogaak\\t\\t\\tYukuhiro, Ken [JP]\\n Hogaak\\t\\t\\tAndrade, Joao [PT]\\n Hogaak\\t\\t\\tGareau, Philippe [CA]\\n Hogaak\\t\\t\\tGlogowski, Piotr [PL]\\n Hogaak\\t\\t\\tKaczmarczyk, Radek [PL]\\n Hogaak\\t\\t\\tSato, Rei [JP]\\n Hogaak\\t\\t\\tKuisma, Matti [FI]\\n Hogaak\\t\\t\\tManfield, Seth [US]\\n Hogaak\\t\\t\\tMurae, Ryuji [JP]\\n Hogaak\\t\\t\\tRomao, Carlos [BR]\\n Hogaak\\t\\t\\tSperling, Matthew [US]\\n Hogaak\\t\\t\\tHosokawa, Yuya [JP]\\n Hogaak Dredge\\t\\tTomajko, Oliver [US]\\n Hollow Hogaak\\t\\tFutamata, Yojiro [JP]\\n Humans\\t\\t\\tMoscato, Adriano [IT]\\n Humans\\t\\t\\tSikkink Johnson, Matt [US]\\n Humans\\t\\t\\tIwazaki, Yuuta [JP]\\n Izzet Phoenix\\t\\tBentley, Brent [US]\\n Izzet Phoenix\\t\\tEstratti, Samuele [IT]\\n Izzet Phoenix\\t\\tDominguez, Javier [ES]\\n Izzet Phoenix\\t\\tVelazquez, Jose Luis [ES]\\n Izzet Phoenix\\t\\tGiovannetti, Simone [IT]\\n Izzet Phoenix\\t\\tGonzalez, Arturo [ES]\\n Izzet Phoenix\\t\\tVieren, Pascal [BE]\\n Izzet Phoenix\\t\\tKamperman, Forrest [US]\\n Jund\\t\\t\\tFerriauolo, Vincent [US]\\n Jund\\t\\t\\tZhang, Bolun [CN]\\n Jund\\t\\t\\tHerrera, Joseph [US]\\n Jund\\t\\t\\tOhki, Tatsuhiko [JP]\\n Mono-Red Phoenix\\tRodriguez Lopez, Juan Jose [ES]\\n Mono-Red Phoenix\\tSele, Yves [CH]\\n R/G Valakut\\t\\tTan, Xiao [US]\\n Tron\\t\\t\\tMun, Tian Fa [IT]\\n Urza ThopterSword\\tLenz, Manuel [AT]\\n Urza ThopterSword\\tKholopenko, Vasily [RU]\\n Urza ThopterSword\\tKassis, Eli [US]\\n Urza ThopterSword\\tBraun-Duin, Brian [US]\\n W/U Control\\t\\tProsek, Dominik [CZ]\", \"author_fullname\": \"t2_r3wza3o\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"rwrere\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ciolxi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564299169.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cpre\\u003E\\u003Ccode\\u003E9 Wins+\\nPrinz, Kristof [DE] Izzet Phoenix\\n\\n8 Wins+\\nHogaak Muller, Martin [DK]\\nHogaak Santos, Bernardo [PT]\\nHogaak Yamamoto, Kentaro [JP]\\nHogaak Severa, Matthew [US]\\nHogaak Duke, Reid [US]\\nHogaak Baumeister, Corey [US]\\nHogaak Roos, Tobias [CA]\\nHogaak Damo Da Rosa, Paulo Vitor [BR]\\nHogaak Pardee, Samuel [US]\\nHogaak Dredge Luong, Marcus [US]\\nHogaak Dredge Eapen, Roshen [US]\\nHumans Napolitano, David [US]\\nJund Zhang, Zhiyang [CN]\\nJund Ma, No Ah [KR]\\nTron Hauck, Christian [DE]\\nUrza ThopterSword Portaro, Alessandro [IT]\\nUrza ThopterSword Wang, Forrest [US]\\nW/U Control Hocquemiller, Arnaud [FR]\\nW/U Control Kowalski, Grzegorz [PL]\\n\\n7 Wins+\\nBurn Pileggi, Riccardo [CA]\\nDredge Battista, Giuseppe [IT]\\nEldrazi Tron Gifford, Sean [CA]\\nEldrazi Tron Batista Ferreira, Marlos [BR]\\nEldrazi Tron Rizzi, Mattia [IT]\\nEldrazi Tron Nassif, Gabriel [FR]\\nEldrazi Tron Castleberry, Joshua [US]\\nEldrazi Tron Lopes, Gabriel [BR]\\nEsper Control Wafo-Tapa, Guillaume [FR]\\nGrishoalbrand Pathirana, Prads [AU]\\nHardened Scales Fernandez Torres, Alvaro [ES]\\nHogaak Kimball, Patrick [CA]\\nHogaak Wiegersma, Jelger [NL]\\nHogaak Salvador Arnal, Guillem [ES]\\nHogaak Yukuhiro, Ken [JP]\\nHogaak Andrade, Joao [PT]\\nHogaak Gareau, Philippe [CA]\\nHogaak Glogowski, Piotr [PL]\\nHogaak Kaczmarczyk, Radek [PL]\\nHogaak Sato, Rei [JP]\\nHogaak Kuisma, Matti [FI]\\nHogaak Manfield, Seth [US]\\nHogaak Murae, Ryuji [JP]\\nHogaak Romao, Carlos [BR]\\nHogaak Sperling, Matthew [US]\\nHogaak Hosokawa, Yuya [JP]\\nHogaak Dredge Tomajko, Oliver [US]\\nHollow Hogaak Futamata, Yojiro [JP]\\nHumans Moscato, Adriano [IT]\\nHumans Sikkink Johnson, Matt [US]\\nHumans Iwazaki, Yuuta [JP]\\nIzzet Phoenix Bentley, Brent [US]\\nIzzet Phoenix Estratti, Samuele [IT]\\nIzzet Phoenix Dominguez, Javier [ES]\\nIzzet Phoenix Velazquez, Jose Luis [ES]\\nIzzet Phoenix Giovannetti, Simone [IT]\\nIzzet Phoenix Gonzalez, Arturo [ES]\\nIzzet Phoenix Vieren, Pascal [BE]\\nIzzet Phoenix Kamperman, Forrest [US]\\nJund Ferriauolo, Vincent [US]\\nJund Zhang, Bolun [CN]\\nJund Herrera, Joseph [US]\\nJund Ohki, Tatsuhiko [JP]\\nMono-Red Phoenix Rodriguez Lopez, Juan Jose [ES]\\nMono-Red Phoenix Sele, Yves [CH]\\nR/G Valakut Tan, Xiao [US]\\nTron Mun, Tian Fa [IT]\\nUrza ThopterSword Lenz, Manuel [AT]\\nUrza ThopterSword Kholopenko, Vasily [RU]\\nUrza ThopterSword Kassis, Eli [US]\\nUrza ThopterSword Braun-Duin, Brian [US]\\nW/U Control Prosek, Dominik [CZ]\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ciolxi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TrulinMTG\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ciolxi/rwrere/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ciolxi/rwrere/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564270369.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_tggmb\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"acxdsSVC\\\\SCV\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cimcwa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/dwEiKZDa_nZSJfAHx0xFJiXY_GOMXD6mLOfAojtFk-A.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564287273.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/4varz7edjwc31.png?auto=webp\\u0026s=c5c823d791505308a03f89c7d004156a2a3184ea\", \"width\": 1229, \"height\": 9656}, \"resolutions\": [{\"url\": \"https://preview.redd.it/4varz7edjwc31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2a4ade529bcade004604e66b0efe650fa118979d\", \"width\": 108, \"height\": 216}, {\"url\": \"https://preview.redd.it/4varz7edjwc31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=307121b721402bf282a8b120cc36dbd5ec7216ca\", \"width\": 216, \"height\": 432}, {\"url\": \"https://preview.redd.it/4varz7edjwc31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c63ab4dc252275c7c0c4d52dcc6e49e542ce2208\", \"width\": 320, \"height\": 640}, {\"url\": \"https://preview.redd.it/4varz7edjwc31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=224c6d3f764e3444189f41211ade8c1f162e9595\", \"width\": 640, \"height\": 1280}, {\"url\": \"https://preview.redd.it/4varz7edjwc31.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=220df3347ddbe417b9bbbd76e27f38f4b1f4f1b9\", \"width\": 960, \"height\": 1920}, {\"url\": \"https://preview.redd.it/4varz7edjwc31.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=90b00f2b1f6f9c02d220b93bbd11395db5d70edf\", \"width\": 1080, \"height\": 2160}], \"variants\": {}, \"id\": \"5y60yQdESu2DB5BHjT82-0pXdJ_-DiTLS_KPDZXl_UY\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cimcwa\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dayason\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cimcwa/acxdssvcscv/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/4varz7edjwc31.png\", \"subreddit_subscribers\": 777, \"created_utc\": 1564258473.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_43dmyltv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"asazxxvc\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_cim6r2\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/gvmq3sxxawc31/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1920, \"scrubber_media_url\": \"https://v.redd.it/gvmq3sxxawc31/DASH_96\", \"dash_url\": \"https://v.redd.it/gvmq3sxxawc31/DASHPlaylist.mpd\", \"duration\": 359, \"hls_url\": \"https://v.redd.it/gvmq3sxxawc31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ATCKebhFa_E-TwMltrsdgBjrjTpSlDGPVqJfo0VQ6WQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564286441.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Y_xpM6crVnB5NjAE0Rs0apwoePk9z4ShrTSH3YIF44E.png?format=pjpg\\u0026auto=webp\\u0026s=0158dbace0a189f524b17a5ce9cc015403ba1995\", \"width\": 1920, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Y_xpM6crVnB5NjAE0Rs0apwoePk9z4ShrTSH3YIF44E.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=3599aee6f1b5bd64a7a869492093ac7c1c0f3fb1\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/Y_xpM6crVnB5NjAE0Rs0apwoePk9z4ShrTSH3YIF44E.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=727c9c04e01bd06eabc1df893f34582f416f9191\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/Y_xpM6crVnB5NjAE0Rs0apwoePk9z4ShrTSH3YIF44E.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=685c9552bfbc7119a5ec0498453fa4dfb98bc0cd\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/Y_xpM6crVnB5NjAE0Rs0apwoePk9z4ShrTSH3YIF44E.png?width=640\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=f0354ff3743100ac2788bcd6078c4dd708cc7719\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/Y_xpM6crVnB5NjAE0Rs0apwoePk9z4ShrTSH3YIF44E.png?width=960\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=9cefbccbadba14174e7b80498ec11658f1c5dc5c\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/Y_xpM6crVnB5NjAE0Rs0apwoePk9z4ShrTSH3YIF44E.png?width=1080\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=9a5310b0e29151d735d6ae0c93c4211aeca5fac2\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"RLi_L-jfVlCsTXS_nrvKk7kalUj1qbRp-dWoENOLl7E\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cim6r2\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"plaiermeier\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cim6r2/asazxxvc/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/gvmq3sxxawc31\", \"subreddit_subscribers\": 777, \"created_utc\": 1564257641.0, \"discussion_type\": null, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/gvmq3sxxawc31/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1920, \"scrubber_media_url\": \"https://v.redd.it/gvmq3sxxawc31/DASH_96\", \"dash_url\": \"https://v.redd.it/gvmq3sxxawc31/DASHPlaylist.mpd\", \"duration\": 359, \"hls_url\": \"https://v.redd.it/gvmq3sxxawc31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[here](https://imgur.com/a/z9WsUa7)\", \"author_fullname\": \"t2_tggmb\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"awsfafsafs\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cim5pe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564286298.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/a/z9WsUa7\\\"\\u003Ehere\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/sQS7J6p8JdNOBjqDHBg7RDaWGxw9aAf6GQZYoYJtJZA.jpg?auto=webp\\u0026s=9708411d3e00ba4bd71ee0836a503645ebcc2b25\", \"width\": 1229, \"height\": 9656}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/sQS7J6p8JdNOBjqDHBg7RDaWGxw9aAf6GQZYoYJtJZA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=469ca4bbb2f2065115a23e41da5373becbe0d56c\", \"width\": 108, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/sQS7J6p8JdNOBjqDHBg7RDaWGxw9aAf6GQZYoYJtJZA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1f6ad23b8837bbf4e5c5831e787713f1f816cb63\", \"width\": 216, \"height\": 432}, {\"url\": \"https://external-preview.redd.it/sQS7J6p8JdNOBjqDHBg7RDaWGxw9aAf6GQZYoYJtJZA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b36eab7cb5e32d66ca6a4563ffc20084a804c20e\", \"width\": 320, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/sQS7J6p8JdNOBjqDHBg7RDaWGxw9aAf6GQZYoYJtJZA.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=bee375f05ac90110885bee8f27ccaa4ac4f963c9\", \"width\": 640, \"height\": 1280}, {\"url\": \"https://external-preview.redd.it/sQS7J6p8JdNOBjqDHBg7RDaWGxw9aAf6GQZYoYJtJZA.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=4880a3ce2fb5f1949d3f125699795af8b38ad21b\", \"width\": 960, \"height\": 1920}, {\"url\": \"https://external-preview.redd.it/sQS7J6p8JdNOBjqDHBg7RDaWGxw9aAf6GQZYoYJtJZA.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b6aef8834c4ae57a7e7894748aadc21efd40af29\", \"width\": 1080, \"height\": 2160}], \"variants\": {}, \"id\": \"o2PMS_ZEsXsYaki_RiGA5XsEy0NIDSJf3onycTeNMSo\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cim5pe\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dayason\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cim5pe/awsfafsafs/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cim5pe/awsfafsafs/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564257498.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[https://youtu.be/9IZPkpkhcXg](https://youtu.be/9IZPkpkhcXg)\", \"author_fullname\": \"t2_o6i3hmk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"p2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cilf5x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564282694.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/9IZPkpkhcXg\\\"\\u003Ehttps://youtu.be/9IZPkpkhcXg\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/GdZNM1oOLVsqt6outWRt9VnEyd6ZZS_CvhgprKtAWM4.jpg?auto=webp\\u0026s=0d6748e69d7fe559e6dfe6403afdc84951fbda3b\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/GdZNM1oOLVsqt6outWRt9VnEyd6ZZS_CvhgprKtAWM4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d3099eca164740822ce6ee1f10eed6fbd8850579\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/GdZNM1oOLVsqt6outWRt9VnEyd6ZZS_CvhgprKtAWM4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3cd5807cd7d2e908e4a2ff88f0b6fb99eeef6449\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/GdZNM1oOLVsqt6outWRt9VnEyd6ZZS_CvhgprKtAWM4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4ca1e70039724aa70df50907cc437938f2ccbda6\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"GOHDQQxhsLCO8B_XQLrZeN2m6xf-RPWaOFBZAHHfaW8\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cilf5x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"deadmancop\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cilf5x/p2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cilf5x/p2/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564253894.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_43dmyltv\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"s\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cijuxj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/KR5vxORonmA?start=65\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Roblox 27 07 2019 08 47 32\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/KR5vxORonmA?start=65\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Plaiermeier\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/KR5vxORonmA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UC1TPfSWnhnkrR71HXJg9I8Q\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/KR5vxORonmA?start=65\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/cijuxj\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/CXWVUKofBlbhPyCH_Zp2Xun7E8miJ9bWU_KLOQO9q0E.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564275251.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/fx_VAgE1aYzAVL9EXKjsDj4BWORJr43HCwFDua0qYOE.jpg?auto=webp\\u0026s=61cf70be95af0006407d6f3bdac9b1f2db6779bf\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/fx_VAgE1aYzAVL9EXKjsDj4BWORJr43HCwFDua0qYOE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=938d73a5392a20bed9ce4ad1648f651312785295\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/fx_VAgE1aYzAVL9EXKjsDj4BWORJr43HCwFDua0qYOE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=9cdf7cd9578f00fe2f5cc99b333a904316df80ee\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/fx_VAgE1aYzAVL9EXKjsDj4BWORJr43HCwFDua0qYOE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=23a3477d42a8aed0b4109730b641e3e92173050c\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"LzY-Br1PvSbTNuh-OXTF0OEHxmQx56L4JTPmx3JSBw4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cijuxj\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"plaiermeier\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cijuxj/s/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=KR5vxORonmA\\u0026t=65s\", \"subreddit_subscribers\": 777, \"created_utc\": 1564246451.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Roblox 27 07 2019 08 47 32\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/KR5vxORonmA?start=65\\u0026feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"Plaiermeier\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/KR5vxORonmA/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/channel/UC1TPfSWnhnkrR71HXJg9I8Q\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test 2\\n\\n[https://www.youtube.com/watch?v=dQw4w9WgXcQ](https://www.youtube.com/watch?v=dQw4w9WgXcQ)\", \"author_fullname\": \"t2_3wgra771\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test 1\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"media_metadata\": {\"e9ymd6fq7vc31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 88, \"x\": 95, \"u\": \"https://i.redd.it/e9ymd6fq7vc31.png\"}, \"m\": \"image/png\", \"id\": \"e9ymd6fq7vc31\"}}, \"name\": \"t3_ciituh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/dQw4w9WgXcQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Rick Astley - Never Gonna Give You Up (Video)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/dQw4w9WgXcQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"RickAstleyVEVO\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/dQw4w9WgXcQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/RickAstleyVEVO\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/dQw4w9WgXcQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/ciituh\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/GQlzNRPTxIUq_BHxKI9npy6za4XppE3urT4eoX6qszs.jpg\", \"edited\": 1564241677.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564270191.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest 2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=dQw4w9WgXcQ\\\"\\u003Ehttps://www.youtube.com/watch?v=dQw4w9WgXcQ\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/PFGjPTJ7JDEV015-5pTqZRqtkkAwkeHKgb5xZ3_NddY.jpg?auto=webp\\u0026s=5487d4a6ae23e3b94d586bb584923bb19d3a603c\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/PFGjPTJ7JDEV015-5pTqZRqtkkAwkeHKgb5xZ3_NddY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=998537f336fa3fcc9e0ed74476828befa9d031af\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/PFGjPTJ7JDEV015-5pTqZRqtkkAwkeHKgb5xZ3_NddY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4aa154516bb72542256166ef0befe549992fd131\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/PFGjPTJ7JDEV015-5pTqZRqtkkAwkeHKgb5xZ3_NddY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6cfc8255bc47ec2a88f706156e217f45398a9cdc\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"2mMW0FbTBSmF1RGs1Jn2FaCQasLS-MQP60joQR9D7Jk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ciituh\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"done82-a\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ciituh/test_1/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ciituh/test_1/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564241391.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Rick Astley - Never Gonna Give You Up (Video)\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/dQw4w9WgXcQ?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"RickAstleyVEVO\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/dQw4w9WgXcQ/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/RickAstleyVEVO\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"test\", \"author_fullname\": \"t2_5cvxk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ciip6x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564269510.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Etest\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ciip6x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"jabberwockxeno\", \"num_crossposts\": 1, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ciip6x/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ciip6x/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564240710.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I just released [cargo-cache](https://crates.io/crates/cargo-cache) 0.3.0 which features support for alternative registries!\\n\\nSo far, alternative registries have have just sorta worked, the crate didn't crash (I think...) but I had never actually tested it in ci. With 0.3.0 there is a new subcommand `cargo cache registry` or shorter `cargo cache r` which will display a cache summary for each crate registry, a lot of internal refactoring has gone into this:\\n\\n Total: 3.81 GB\\n 107 installed binaries: 916.89 MB\\n Registry: 163.43 MB\\n Registry index: 156.47 MB\\n 5 crate archives: 6.96 MB\\n Registry: dl.cloudsmith.io 4.18 KB\\n Registry index: 3.21 KB\\n 1 crate archives: 971 B\\n Registry: github.com 1.34 GB\\n Registry index: 98.51 MB\\n 5522 crate archives: 812.62 MB\\n 743 crate source checkouts: 426.25 MB\\n Registry: home 478 B\\n Registry index: 478 B\\n Registry: ship.rs 478 B\\n Registry index: 478 B\\n Git db: 1.40 GB\\n 138 bare git repos: 1.37 GB\\n 6 git repo checkouts: 23.53 MB\\n\\n(There are a couple of weird registries in there from when I tried making one myself by cloning the crates.io index)\\n\\nThe default summary (cmd: `cargo cache`) prints a summary of all registries combined as before. In addition it now shows the number of cloned registry indices and compared to previous versions the output is a little bit more condensed.\\n\\n`cargo cache --info` was taught about the registry index.\\n\\n`cargo cache --autoclean --dry-run` will now print an estimate of space that would be freed:\\n\\n dry-run: would remove: '/home/matthias/.cargo/registry/src' (624.27 MB)\\n dry-run: would remove: '/home/matthias/.cargo/git/checkouts' (23.53 MB)\\n\\nAs usual, dependencies have been updated, I also managed to shave off a few by building git2 without default features resulting in reduced buildtime of the crate.\\n\\nAs usual, if you find a bug or have ideas for further improvements, please let me know! \\n\\n\\n[cargo cache on crates.io](https://crates.io/crates/cargo-cache)\\n\\n[github repo](https://github.com/matthiaskrgr/cargo-cache)\", \"author_fullname\": \"t2_1g0jyvxw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"cargo cache 0.3.0 - alternative registries\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ciee6l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1564212359.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564239574.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just released \\u003Ca href=\\\"https://crates.io/crates/cargo-cache\\\"\\u003Ecargo-cache\\u003C/a\\u003E 0.3.0 which features support for alternative registries!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo far, alternative registries have have just sorta worked, the crate didn\\u0026#39;t crash (I think...) but I had never actually tested it in ci. With 0.3.0 there is a new subcommand \\u003Ccode\\u003Ecargo cache registry\\u003C/code\\u003E or shorter \\u003Ccode\\u003Ecargo cache r\\u003C/code\\u003E which will display a cache summary for each crate registry, a lot of internal refactoring has gone into this:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ETotal: 3.81 GB\\n 107 installed binaries: 916.89 MB\\n Registry: 163.43 MB\\n Registry index: 156.47 MB\\n 5 crate archives: 6.96 MB\\n Registry: dl.cloudsmith.io 4.18 KB\\n Registry index: 3.21 KB\\n 1 crate archives: 971 B\\n Registry: github.com 1.34 GB\\n Registry index: 98.51 MB\\n 5522 crate archives: 812.62 MB\\n 743 crate source checkouts: 426.25 MB\\n Registry: home 478 B\\n Registry index: 478 B\\n Registry: ship.rs 478 B\\n Registry index: 478 B\\n Git db: 1.40 GB\\n 138 bare git repos: 1.37 GB\\n 6 git repo checkouts: 23.53 MB\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E(There are a couple of weird registries in there from when I tried making one myself by cloning the crates.io index)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe default summary (cmd: \\u003Ccode\\u003Ecargo cache\\u003C/code\\u003E) prints a summary of all registries combined as before. In addition it now shows the number of cloned registry indices and compared to previous versions the output is a little bit more condensed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ecargo cache --info\\u003C/code\\u003E was taught about the registry index.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Ecargo cache --autoclean --dry-run\\u003C/code\\u003E will now print an estimate of space that would be freed:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Edry-run: would remove: \\u0026#39;/home/matthias/.cargo/registry/src\\u0026#39; (624.27 MB)\\ndry-run: would remove: \\u0026#39;/home/matthias/.cargo/git/checkouts\\u0026#39; (23.53 MB)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAs usual, dependencies have been updated, I also managed to shave off a few by building git2 without default features resulting in reduced buildtime of the crate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs usual, if you find a bug or have ideas for further improvements, please let me know! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://crates.io/crates/cargo-cache\\\"\\u003Ecargo cache on crates.io\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/matthiaskrgr/cargo-cache\\\"\\u003Egithub repo\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/0TmOGuEpMqxIS06R5ZwDQGkK9TY58s9Q2oKvyzcx6WU.jpg?auto=webp\\u0026s=a1b417459af2e29ab54f42276befd9f1f5358b01\", \"width\": 1280, \"height\": 640}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/0TmOGuEpMqxIS06R5ZwDQGkK9TY58s9Q2oKvyzcx6WU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=831c342a6d7dc37a734797f2f208e40294cbf6d9\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/0TmOGuEpMqxIS06R5ZwDQGkK9TY58s9Q2oKvyzcx6WU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=38d27b087f907f4818488b9346bf7888559770cb\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/0TmOGuEpMqxIS06R5ZwDQGkK9TY58s9Q2oKvyzcx6WU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8dbc3c4cdc8ab11ea8872340c40dd880176a3fae\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/0TmOGuEpMqxIS06R5ZwDQGkK9TY58s9Q2oKvyzcx6WU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=9630d55b09d0004ee55c584a1d768f915c0c8898\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/0TmOGuEpMqxIS06R5ZwDQGkK9TY58s9Q2oKvyzcx6WU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=58942d8ecc07c6864ab0ca49966ba796a4900fac\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/0TmOGuEpMqxIS06R5ZwDQGkK9TY58s9Q2oKvyzcx6WU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ee91c9f25667d7843767420ec91d797a4a515e18\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"PN8ZBw7H7z5zs_48pLtDMhs7XKCrmUiW8Itm8iImFtY\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ciee6l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"matthiaskrgr\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ciee6l/cargo_cache_030_alternative_registries/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ciee6l/cargo_cache_030_alternative_registries/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564210774.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_w0x0c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Mueller Unravels! Cringe Worthy Testimony Exposes Russiagate Hoax!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_ci8cee\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/WOQXOV0PHL4?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 338}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Mueller Unravels! Cringe Worthy Testimony Exposes Russiagate Hoax!\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/WOQXOV0PHL4?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"The Jimmy Dore Show\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/WOQXOV0PHL4/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/TYTComedy\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/WOQXOV0PHL4?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/ci8cee\", \"height\": 338}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 0, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/fc-XbY3DAk4vOcH-2Vi0IbxgyhhInd0GyjEjnRQ2D0k.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564203156.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"youtube.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JoWxuqhwfZMkkqAQhVdYudVOwAgjiyj1OYQ48vTkfG8.jpg?auto=webp\\u0026s=3c69adb7cd7a2f3856a1a921ee7a08e1eb8b8ecc\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JoWxuqhwfZMkkqAQhVdYudVOwAgjiyj1OYQ48vTkfG8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f3d54c334bbbfe8b54a6b05b60c82b6a377899b7\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/JoWxuqhwfZMkkqAQhVdYudVOwAgjiyj1OYQ48vTkfG8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=02b1de6568f4f3cb4f7b40a16e58a0f45de1d1e9\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/JoWxuqhwfZMkkqAQhVdYudVOwAgjiyj1OYQ48vTkfG8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2069b133cdf4acd1de3da660ad8cf93a949fca5e\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"yyEN-vdDyFXJPBqfHmnooMsfubiqVlwhl_csohvq4Y0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ci8cee\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"godjuul\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ci8cee/mueller_unravels_cringe_worthy_testimony_exposes/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.youtube.com/watch?v=WOQXOV0PHL4\", \"subreddit_subscribers\": 777, \"created_utc\": 1564174356.0, \"discussion_type\": null, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"Mueller Unravels! Cringe Worthy Testimony Exposes Russiagate Hoax!\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 338, \"width\": 600, \"html\": \"\\u003Ciframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/WOQXOV0PHL4?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"The Jimmy Dore Show\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/WOQXOV0PHL4/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/user/TYTComedy\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_3cy7andl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Latias\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ci7ntl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Cblockquote class=\\\"twitter-video\\\"\\u003E\\u003Cp lang=\\\"en\\\" dir=\\\"ltr\\\"\\u003Esaw \\u003Ca href=\\\"https://twitter.com/kkarmicon?ref_src=twsrc%5Etfw\\\"\\u003E@kkarmicon\\u003C/a\\u003E\\u0026#39;s shiny lati, had to make a doodle of it \\u2728 \\u003Ca href=\\\"https://t.co/gB64N2Z2YY\\\"\\u003Epic.twitter.com/gB64N2Z2YY\\u003C/a\\u003E\\u003C/p\\u003E\\u0026mdash; Maiko \\u266a (@BlueWott) \\u003Ca href=\\\"https://twitter.com/BlueWott/status/1145821963471880192?ref_src=twsrc%5Etfw\\\"\\u003EJuly 1, 2019\\u003C/a\\u003E\\u003C/blockquote\\u003E\\n\\u003Cscript async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\\n\", \"width\": 350, \"scrolling\": false, \"height\": 200}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"twitter.com\", \"oembed\": {\"provider_url\": \"https://twitter.com\", \"version\": \"1.0\", \"url\": \"https://twitter.com/BlueWott/status/1145821963471880192\", \"author_name\": \"Maiko \\u266a\", \"height\": null, \"width\": 350, \"html\": \"\\u003Cblockquote class=\\\"twitter-video\\\"\\u003E\\u003Cp lang=\\\"en\\\" dir=\\\"ltr\\\"\\u003Esaw \\u003Ca href=\\\"https://twitter.com/kkarmicon?ref_src=twsrc%5Etfw\\\"\\u003E@kkarmicon\\u003C/a\\u003E\\u0026#39;s shiny lati, had to make a doodle of it \\u2728 \\u003Ca href=\\\"https://t.co/gB64N2Z2YY\\\"\\u003Epic.twitter.com/gB64N2Z2YY\\u003C/a\\u003E\\u003C/p\\u003E\\u0026mdash; Maiko \\u266a (@BlueWott) \\u003Ca href=\\\"https://twitter.com/BlueWott/status/1145821963471880192?ref_src=twsrc%5Etfw\\\"\\u003EJuly 1, 2019\\u003C/a\\u003E\\u003C/blockquote\\u003E\\n\\u003Cscript async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\\n\", \"author_url\": \"https://twitter.com/BlueWott\", \"provider_name\": \"Twitter\", \"cache_age\": 3153600000, \"type\": \"rich\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Cblockquote class=\\\"twitter-video\\\"\\u003E\\u003Cp lang=\\\"en\\\" dir=\\\"ltr\\\"\\u003Esaw \\u003Ca href=\\\"https://twitter.com/kkarmicon?ref_src=twsrc%5Etfw\\\"\\u003E@kkarmicon\\u003C/a\\u003E\\u0026#39;s shiny lati, had to make a doodle of it \\u2728 \\u003Ca href=\\\"https://t.co/gB64N2Z2YY\\\"\\u003Epic.twitter.com/gB64N2Z2YY\\u003C/a\\u003E\\u003C/p\\u003E\\u0026mdash; Maiko \\u266a (@BlueWott) \\u003Ca href=\\\"https://twitter.com/BlueWott/status/1145821963471880192?ref_src=twsrc%5Etfw\\\"\\u003EJuly 1, 2019\\u003C/a\\u003E\\u003C/blockquote\\u003E\\n\\u003Cscript async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\\n\", \"width\": 350, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/ci7ntl\", \"height\": 200}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/_bTKTVi3GMy_7ZVG2IvFAZZdP9OgH9Mczbz3ElJBkR4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564199914.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"twitter.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/v7rtidqmhyCrTrVpjtanL1SgqEWwvawvat2dIk943oo.jpg?auto=webp\\u0026s=174f2367ca2840964497bc948b2dd4d9a8be7a24\", \"width\": 140, \"height\": 140}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/v7rtidqmhyCrTrVpjtanL1SgqEWwvawvat2dIk943oo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=1cee375e0587fc149d4eb9ec7c73a69ce96062e1\", \"width\": 108, \"height\": 108}], \"variants\": {}, \"id\": \"91qfi5efjmd6pkb8yEj7ju9DtE7CMfxwifKEEFf5uqw\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ci7ntl\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"__Maiko__\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ci7ntl/latias/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://twitter.com/BlueWott/status/1145821963471880192\", \"subreddit_subscribers\": 777, \"created_utc\": 1564171114.0, \"discussion_type\": null, \"media\": {\"type\": \"twitter.com\", \"oembed\": {\"provider_url\": \"https://twitter.com\", \"version\": \"1.0\", \"url\": \"https://twitter.com/BlueWott/status/1145821963471880192\", \"author_name\": \"Maiko \\u266a\", \"height\": null, \"width\": 350, \"html\": \"\\u003Cblockquote class=\\\"twitter-video\\\"\\u003E\\u003Cp lang=\\\"en\\\" dir=\\\"ltr\\\"\\u003Esaw \\u003Ca href=\\\"https://twitter.com/kkarmicon?ref_src=twsrc%5Etfw\\\"\\u003E@kkarmicon\\u003C/a\\u003E\\u0026#39;s shiny lati, had to make a doodle of it \\u2728 \\u003Ca href=\\\"https://t.co/gB64N2Z2YY\\\"\\u003Epic.twitter.com/gB64N2Z2YY\\u003C/a\\u003E\\u003C/p\\u003E\\u0026mdash; Maiko \\u266a (@BlueWott) \\u003Ca href=\\\"https://twitter.com/BlueWott/status/1145821963471880192?ref_src=twsrc%5Etfw\\\"\\u003EJuly 1, 2019\\u003C/a\\u003E\\u003C/blockquote\\u003E\\n\\u003Cscript async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C/script\\u003E\\n\", \"author_url\": \"https://twitter.com/BlueWott\", \"provider_name\": \"Twitter\", \"cache_age\": 3153600000, \"type\": \"rich\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"______________\\n***X-Men: The White King***\\n______________\\n\\n***INTRODUCTION:***\\n\\nJust a few short months ago, the **X-Men** rushed to America's defense when the Mutant test subject **Kevin MacTaggert**\\u2014better known as \\\"**Mutant X**\\\"\\u2014attacked New York City. They ultimately triumphed over Mutant X and saved millions of lives, but hundreds of innocent civilians perished in the attack, and most of the city was left in ruins. Worse still: the X-Men were blamed for Mutant X's rampage when they were found in the rubble of New York, and they were soon arrested on the spot.\\n\\nNow, as the X-Men languish in a maximum security prison and await trial for domestic terrorism, tensions between Mutants and humans threaten to explode into violence. Angry mobs gather in every major city in the United States, waving signs and chanting anti-Mutant slogans. Rumors spread of raids on Mutant households, and the President of the United States soon declares a state of emergency over \\\"**The Mutant Threat**\\\" as the country prepares for the next inevitable Mutant attack. As they do, the country's remaining free Mutants prepare to fight back against an increasingly hostile government.\\n\\nOnce, political activist **Professor Charles Xavier** was the Mutant race's last great hope for peace. But ever since he was captured in a government raid on his Westchester mansion, the Professor has been thrown into prison alongside his students, and his ultimate fate is uncertain. But somewhere in the US government's clandestine halls of power, the mysterious man called \\\"**Essex**\\\"\\u2014Mutant X's handler, and the mastermind behind the sinister \\\"**Weapon X**\\\" project\\u2014patiently sows the seeds of a war between humans and Mutants. If his plan succeeds, the fires of war may spread across the entire world, leaving no obstacle to his dark will.\\n\\nBut in the X-Men's darkest hour, a glimmer of hope remains. Her name is ***Kitty Pryde***.\\n\\nSeventeen-year-old Kitty, the X-Men's newest recruit, was the only member of the team to escape with her freedom when the NYPD descended on the rubble of New York. Now, as the only free member of the X-Men, Kitty hatches a plan to rescue her teammates and take the fight to Essex.\\n\\n**Scott Summers**, **Jean Grey**, **Storm**, **Nightcrawler**, **Colossus**, **Wolverine**, **Rogue**, **Havok** and **Magneto** remain behind bars\\u2014but help is on the way.\\n______________\\n\\n***ACT 1:***\\n\\nEver since narrowly escaping arrest in New York, Kitty Pryde has reluctantly moved back to Chicago to live with her parents. As she lays low, she's forced to watch helplessly as new reports of anti-Mutant riots come in daily, usually accompanied by stories of angry Mutants lashing out at police and clashing with protestors. As unrest spreads, she religiously follows reports on her old teammates, who await trial from behind bars. By happenstance, she learns that they're being held in a federal prison in upstate Illinois, just a few hours away from her parents' home.\\n\\nSince Kitty's powers can allow her to slip undetected into areas that would be inaccessible to ordinary people, she believes that there's a chance (however small) that she could use her powers to infiltrate the prison and free her teammates from within. She knows that it won't be easy, but she believes that she owes it to the X-Men to try. So after weeks of planning and researching the layout of the prison, she prepares to take a trip upstate to make a desperate attempt at rescuing the X-Men.\\n\\nBut as she prepares for the dangerous mission, Kitty finds herself plagued by disturbing dreams and visions, which leave her visibly shaken when she wakes up from them. In her visions, she sees a ruined post-apocalyptic America devastated by war, a shining city patrolled by towering robots with glowing eyes, and a small band of teenagers making their way through streets strewn with the ashes of the slain. She's willing to dismiss her visions as mere hallucinations\\u2014until she realizes that the teenagers in her vision all wear a golden \\\"X\\\" emblem on their shoulders.\\n\\nIs she going mad...or is this a vision of the X-Men's future?\\n______________\\n\\nWhile Kitty prepares for her rescue mission, we see an extended flash-forward sequence\\u2014which takes us all the way to the year **2049**. As we soon see, Kitty's vision of the future is very real.\\n\\nIn the mid-21st century, America is a wasteland. Three decades after the X-Men's battle with Mutant X, the country has been devastated by the horrific \\\"**Gene Wars**\\\", a brutal series of armed conflicts between humans and Mutants. During the war, the US military resurrected the controversial **Sentinel Project** and sent the Sentinels to attack multiple Mutant-occupied cities. Soon after, Mutant terrorists destroyed the White House and the US Capitol, and a Mutant assassin shot down Air Force One when the President of the United States tried to flee. Charles Xavier's students\\u2014the X-Men\\u2014did their best to fight for peace, but the tide of war could not be beaten back. In time, most of the X-Men were killed by Sentinels or captured by government forces, while the rest went missing.\\n\\nAfter years of strife, the US government collapsed, and the few survivors of the conflict turned to an unlikely messiah: **Nathaniel Essex**.\\n\\nWith America in ruins, Essex built a utopian city atop the ashes, offering the struggling survivors of the Gene Wars a new home. He named his city \\\"**Avalon**\\\", and all who lived within the city prospered\\u2014never suspecting that the savior was the true mastermind behind the Gene Wars. Day after day, Essex's power grew, and his beloved city expanded across the American Heartland. Now, as he rules over his city with an iron fist, his subjects know him as \\\"**The White King**\\\". But there are some who dare to resist him.\\n\\nMost of the X-Men are dead or missing, but a single survivor remains: **Katherine Pryde**. Once, she was a plucky teenager who called herself \\\"Kitty\\\"; today, she's the leader of the next generation of X-Men. Now an aging woman, Katherine leads a new team of X-Men with the help of the powerful telepath **Rachel Summers**\\u2014the daughter of the long-deceased Scott Summers and Jean Grey. After training under Katherine and Rachel, the five new X-Men have proven themselves as a crack team of freedom fighters, and they're devoted to bringing down the White King's tyrannical regime.\\n\\nOne by one, we meet them:\\n\\n* **Sam Guthrie** (\\\"**Cannonball**\\\"), a humble young man from rural Kentucky with the power to fly at supersonic speeds and summon indestructible force fields mid-flight, giving him the force of a speeding cannonball.\\n* **Xi'an Coy Manh** (\\\"**Karma**\\\"), a young Vietnamese-American woman with the power to psychically possess the minds of others.\\n* **Roberto \\\"Bobby\\\" Da Costa** (\\\"**Sunspot**\\\"), a young Brazilian man with the power to absorb solar energy, granting him superhuman strength\\u2014and allowing him to project superheated plasma from his hands.\\n* **Danielle \\\"Dani\\\" Moonstar** (\\\"**Moonstar**\\\"), a young Cheyenne Indian woman with the ability to confuse her enemies with eerily lifelike illusions.\\n* **Rahne Sinclair** (\\\"**Wolfsbane**\\\"), a young Scottish woman with the ability to transform herself into a powerful human-wolf hybrid with razor-sharp claws and superhuman senses.\\n\\nAs the flash-forward begins, the new X-Men fight their way through a squad of Sentinels, narrowly surviving the tense battle. When the smoke clears, we realize that they're standing in the ruins of the Xavier Institute, which was destroyed by **Cain Marko**'s troops before the Gene Wars broke out. Working fast, the team explores the ruins of Katherine's old home, and eventually make their way into the remains of the basement\\u2014where the psychic supercomputer called \\\"**Cerebro**\\\" was once kept. Just as she feared, Katherine soon finds that Cerebro is missing, and she suspects that she knows where it was taken.\\n\\n*\\\"If I was the White King, I'd march through Hell to get my hands on Cerebro. If we were a little quicker, we might have been able to stop him. But now, there's only one thing we can do,\\\"* she says.\\n\\n*\\\"Are you saying what I think you are?\\\"* Rachel asks.\\n\\nKatherine nods.\\n\\n*\\\"We have to attack Avalon. If the White King has Cerebro, that's where we'll find it.\\\"*\\n__________________\\n\\nBack in the present, the X-Men wait out the hours in their cramped prison cells, with the men and the women kept in separate cell blocks. All of them are forced to wear power-dampening collars that prevent them from using their mutations.\\n\\nKept in cells side-by-side, Scott and his brother **Alex**\\u2014finally reunited after years apart\\u2014keep each other sane by sharing their recollections of their parents, who were assassinated by Essex years earlier.\\n\\nIn another cell block, the X-Men's *other* new recruit\\u2014the mysterious former Weapon X operative known only as \\\"**Rogue**\\\"\\u2014struggles to stay sane as she hears a chorus of voices in her head.\\n\\nJust a few short months ago, Rogue was a patient at the **Salem Center Psychiatric Ward**, where she was placed for safekeeping by her former handler **Raven Darkholme** (codename: \\\"**Mystique**\\\"). During her time with Weapon X, she was forced to use her abilities to absorb the life-force of countless human and Mutant adversaries, which left her with a formidable set of superhuman powers. Unfortunately, her mutation also causes her to absorb the *memories* of anyone she touches, which has left her mind filled to the brim with other people's memories\\u2014which she can't always distinguish from her *own* memories. But as Professor Xavier discovered, Rogue once managed to absorb a small fraction of Essex's powers while working under him, potentially giving her a valuable insight into his mind. If she can somehow piece together the fractured memories that she absorbed from Essex, she might be able to solve the mystery of how to defeat him.\\n\\nWith Storm's help, Rogue attempts to meditate, looking deep within her mind as she tries to recall what she saw after touching Essex. Once again, she sees a cryptic image of **a chessboard with living chess pieces**, and **a bird with wings of fire** in the blackness of space. This time, though, she sees something else: a dark cavern beneath the Earth, guarded by an army of identical stone statues that all have Essex's face. Jean tries to use her telepathy to peer inside Rogue's mind, but it's no use; her power-dampening collar prevents her from using her psychic powers.\\n\\nA few hours later, Scott receives a surprise visit from a well-dressed blonde woman in a white pantsuit. The woman flashes a badge and introduces herself as Special Agent **Valerie Cooper** of the CIA. Much to Scott's surprise, Special Agent Cooper tells Scott that she believes that the X-Men are innocent; she works for a CIA task force that's been monitoring Mutant activity in the United States for over a decade, and she knows that the X-Men weren't responsible for the attack on New York. With the help of her connections in the Justice Department, she believes that she can help the team prove their innocence and clear their names\\u2014but only if Weapon X doesn't stand in her way.\\n\\n*\\\"Weapon X is out of control,\\\"* she says. *\\\"I've been trying to shut them down for years, but they anticipate every move. I stopped trusting my colleagues at the agency years ago. I can help you\\u2014but only if you can take down the head of that outfit.\\\"*\\n\\nScott points out that the X-Men can't take down Essex from behind bars, but Cooper sadly tells him that she can't do anything to secure their release.\\n\\n*\\\"My influence doesn't run that deep,\\\"* she says. *\\\"I can help you clear your names. But as far as the Justice Department knows, you and your friends are terrorists. Until I can prove otherwise, I can't help you get out of here. If you want to bury Weapon X, you'll have to take care of that yourself.\\\"*\\n\\nWith that, she leaves Scott.\\n\\nShortly after, the guards approach Professor Xavier's cell and wheel out his wheelchair. The Professor's court date has arrived, and it's time for him to stand trial for terrorism charges. As the alleged \\\"ringleader\\\" of the X-Men, he has been called to court to answer for his supposed role in the attack on New York. Dressed in a crisp black suit, he's wheeled past the X-Men's cells. One by one, each of his students stands up as they watch their mentor pass them by.\\n\\n*\\\"Have faith, children,\\\"* the Professor says. *\\\"You were fine students, and you learned well. Now, the world awaits. You've made me proud, and you have everything you need. Stay strong.\\\"*\\n\\nMagneto's cell is the last one at the end of the hallway. As the Professor passes his cell, the two old friends take one last look at each other with the bars between them.\\n\\n*\\\"I'm sorry, Charles,\\\"* Magneto says. *\\\"I never wanted this. You know I never wanted this.\\\"*\\n\\n*\\\"I know you didn't, old friend,\\\"* the Professor says. *\\\"But every path must end. I suppose this is where I leave you.\\\"*\\n\\nBefore the Professor fades from sight, Magneto calls out to him.\\n\\n*\\\"You're the finest man I've ever known, Charles!\\\"* he calls.\\n\\nAs a tear rolls down Magneto's cheek, he flashes back to a day long-gone, when he sat by an injured Charles' hospital bed as he awaited treatment for a broken vertebra.\\n\\n*\\\"You did what I never could,\\\"* Magneto softly whispers. *\\\"You forgave them for what they did to you...\\\"*\\n___________________\\n\\nIn the dead of night, Kitty approaches the perimeter of the prison. She takes a deep breath as she prepares to rush the gate\\u2014and then she's off.\\n\\nMoving like a ghost, Kitty passes effortlessly slips through the gate, narrowly evading the armed prison guards at the tops of their sentry towers. The prison facility looms ahead, an imposing building of steel and concrete. Summoning her powers, Kitty slips through the ground. On the other side of the wall, she phases up through the floor\\u2014safely ahead of the nearest security checkpoint.\\n\\nMoving fast, she runs through winding hallways on her way to the main cell block, passing through walls whenever a guard comes near. After several minutes of sneaking around, she manages to slip unseen into a locker room, where she steals a stun gun and an electronic key\\u2014which is specially designed to unlock power-dampening collars.\\n\\nIn the cell block, the X-Men's cell doors all mysteriously fly open as Kitty stuns a guard and triggers the levers for the block. Confused, the X-Men step out of their cells and make a break for it. Moments later, they're greeted by Kitty, who proceeds to unlock their collars\\u2014restoring their powers.\\n\\n*\\\"Hey guys,\\\"* Kitty says. *\\\"Long time, no see...\\\"*\\n\\nThe X-Men rejoice as a full-blown jail-break ensues, and they fight their way through the cell block as guards descend on them. After a long battle, they proceed to make their way to the roof, where a fully loaded Chinook helicopter is waiting on the helipad, having just dropped off a load of supplies. They know that it'll make the perfect getaway vehicle.\\n\\nTo the team's surprise, Magneto chooses to stay behind as they board the helicopter and make their escape. Scott begs his old enemy to join them, but he refuses.\\n\\n*\\\"I've made my share of mistakes, Scott,\\\"* Magneto says. *\\\"You deserve to prove your innocence. But I'm no innocent. Trust me, boy: you don't want a murderer in your ranks. You're better than that. Let the world see it.\\\"*\\n\\nAs the guards close in on them, the X-Men pile into the helicopter, and it lifts into the air. As they fly into the distance, Kitty suddenly feels a searing pain in her head, and she sees another vision...\\n___________________\\n\\nIn the year 2049, Katherine's X-Men approach the shining city of Avalon, which is protected on all sides by towering walls. Somewhere in the depths of the White King's fortress, an armed guard approaches a locked glass room. Inside, Cerebro's terminal is clearly visible. As the guard turns from Cerebro, we see his eyes glowing violet; he's possessed by Karma, who's looking through his eyes. \\n\\nOutside the city walls, Karma severs the connection.\\n\\n*\\\"You were right,\\\"* she tells Katherine. *\\\"It's in the lower levels of the East Wing! But we've gotta move fast if we want to use it.\\\"*\\n\\n*\\\"Moving fast is my specialty,\\\"* Cannonball says. \\n\\nIn a streak of light, he soars into the air and smashes through the wall, bringing a portion of the towering structure crashing down. As the X-Men run through the hole in the wall and charge toward the fortress, the White King's Sentinels descend on them, firing their lasers at full blast. But before they can hit them, the X-Men vanish into thin air\\u2014revealing them as one of Moonstar's illusions. A good distance away, the *real* X-Men split up and lead the Sentinels on a wild chase through the streets of Avalon, fighting every step of the way.\\n\\nBefore long, they find themselves attacked by a horde of clawed, blue-furred simian creatures that effortlessly climb along the sides of buildings. From above, they're dive-bombed by dozens of winged men with miniature rocket-launchers attached to their feathered wings. The White King, a renowned genetic scientists, has hundreds of loyal Mutant clones on his side\\u2014including clones of the deceased former X-Men **Hank McCoy** (\\\"**Beast**\\\") and **Warren Worthington** (\\\"**Angel**\\\"). As the battle rages on, Wolfsbane tears through the armies of Beasts on the ground, Cannonball tears through the armies of Angels above, and Sunspot tears through the Sentinels with his plasma blasts.\\n\\nFrom a window at the top of his fortress, the White King stares down at the intruders, his eyes burning with hate.\\n\\nMoments later, Karma uses her powers to seize control of a squad of Angels, and they send a barrage of missiles at the fortress. Leading the charge, Katherine and Rachel lead the X-Men into the fortress...\\n___________________\\n\\n***ACT 2:***\\n\\nAfter a long airborne chase, the X-Men land the Chinook in a forest clearing somewhere in the American Midwest, and they dig in to plan their next move.\\n\\nFinally free from her power-dampening collar, Jean uses her telepathy to look into Rogue's mind, hoping to help her recall the memories that she absorbed from Essex. After peeling back layer after layer of accumulated memories, she eventually finds what she's looking for\\u2014and she's horrified by what she sees.\\n\\nShe sees a young Nathaniel Essex in a dingy laboratory in London in the late 1800s, dissecting live test subjects and injecting them with syringes. She sees him synthesizing chemical serums from Mutants' blood, and injecting them into his neck. Finally she sees him striding through a room filled with cryogenically frozen bodies\\u2014all of them identical to *him*. As the vision comes to an end, she sees him laying one of his frozen bodies on a metal slab; as he lays his hand on it, the frozen body opens its eyes and *screams*.\\n\\n*\\\"Clones!\\\"* Jean exclaims, opening her eyes. *\\\"He's using clones to make himself immortal! That's how he's been alive for over 100 years: he found a way to engineer the perfect human specimen, and he can transfer his mind into a new body whenever he wants!\\\"*\\n\\n*\\\"The perfect human specimen?\\\"* Scott asks, confused.\\n\\nJean nods.\\n\\n*\\\"He's been researching Mutants since the 1800s, when evolution was first discovered. Somewhere along the line, he found out a way to synthesize serums from Mutant genes. He's spent decades using the DNA of captured Mutants to make himself more powerful!\\\"*\\n\\n*\\\"That's why he founded Weapon X!\\\"* Nightcrawler exclaims. *\\\"He promised the government that he could turn Mutants into living weapons, and he did. But he also wanted access to the world's most powerful Mutants. With their genes at his disposal, he knew that he would be unstoppable!\\\"*\\n\\n*\\\"But how do we stop him?\\\"* Wolverine asks. *\\\"Any ideas, Red?\\\"*\\n\\nJean already has an idea.\\n\\n*\\\"He's spent a century breeding new bodies for himself, but his mind is the same as it ever was,\\\"* she says. *\\\"Destroy his body, and he'll grow a new one. But destroy his mind...\\\"*\\n\\n*\\\"...Not even he could survive that,\\\"* Storm says. *\\\"So it would take a powerful psychic to defeat him. A world-class telepath.\\\"*\\n\\n*\\\"Like the Professor...\\\"* Colossus says, realization sinking in.\\n\\nAll at once, the X-Men realize why Weapon X has been so determined to crush the X-Men from the beginning: they know that the Professor's telepathy makes him one of the few people who could possibly kill Essex, and they're determined to remove him as a threat. And now that the Professor is in the government's hands, they don't stand a chance of defeating Essex.\\n\\n*\\\"But what about you?\\\"* Scott asks Jean. *\\\"You're a telepath too!\\\"*\\n\\nDoubtful, Jean shakes her head.\\n\\n*\\\"I'm not on the Professor's level,\\\"* she says. *\\\"Not even close. He's been training all his life, and I've been training since high school. I know how powerful Essex is. There's no way I could...\\\"*\\n\\n*\\\"Then we need to get the Professor back,\\\"* Scott says. *\\\"It's the only way.\\\"*\\n\\n*\\\"But that's suicide!\\\"* Wolverine tells him. *\\\"Every news crew in America's gonna be filming his trial! They've got dozens of cops watching him, day and night! Even if we could bust him out, we'd have the Feds on us in a heartbeat!\\\"*\\n\\nScott knows that he's right, but he also knows that he can't abandon his mentor.\\n\\n*\\\"We'll decide our next move in the morning,\\\"* Scott says. *\\\"For now, we need to get some rest.\\\"*\\n\\nThey make camp for the night. But in the morning, Scott is gone.\\n______________________\\n\\nIn downtown Chicago, protestors and news reporters descend on the Cook County Courthouse, where Professor Xavier is due to stand trial for domestic terrorism. Tensions are visibly high, and fistfights break out between anti-Mutant groups and Mutant Rights demonstrators. The Professor keeps his composure as he's rolled up a wheelchair ramp into the courthouse, even as screaming anti-Mutant protestors throw debris at him. As the court is called into session, countless people across America tune into the news to watch the trial.\\n\\nUnbeknownst to the Professor, one of the many bystanders in the crowd outside the courthouse is *Scott*. As he watches the courthouse door close, his mentor fades from sight.\\n\\nIn the ensuing trial, a fiery argument erupts between federal prosecutors and the Professor's lawyer. When the lawyer points out the lack of hard evidence supporting the claim that his client ordered the attack on New York, the prosecutors respond with a long tirade against the X-Men\\u2014pointing out that they've been hiding in upstate New York for years, intentionally keeping their existence hidden from the world. One by one, the prosecutors call multiple witnesses to share their stories about harrowing encounters with Mutants, some of whom threatened their lives. As the jury listens to their stories intently, the prosecutors argue that a man who shelters Mutants cannot be trusted.\\n\\nAs his lawyer tries to\", \"author_fullname\": \"t2_6ae8c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ci79lq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1564526674.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564197965.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EX-Men: The White King\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EINTRODUCTION:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust a few short months ago, the \\u003Cstrong\\u003EX-Men\\u003C/strong\\u003E rushed to America\\u0026#39;s defense when the Mutant test subject \\u003Cstrong\\u003EKevin MacTaggert\\u003C/strong\\u003E\\u2014better known as \\u0026quot;\\u003Cstrong\\u003EMutant X\\u003C/strong\\u003E\\u0026quot;\\u2014attacked New York City. They ultimately triumphed over Mutant X and saved millions of lives, but hundreds of innocent civilians perished in the attack, and most of the city was left in ruins. Worse still: the X-Men were blamed for Mutant X\\u0026#39;s rampage when they were found in the rubble of New York, and they were soon arrested on the spot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, as the X-Men languish in a maximum security prison and await trial for domestic terrorism, tensions between Mutants and humans threaten to explode into violence. Angry mobs gather in every major city in the United States, waving signs and chanting anti-Mutant slogans. Rumors spread of raids on Mutant households, and the President of the United States soon declares a state of emergency over \\u0026quot;\\u003Cstrong\\u003EThe Mutant Threat\\u003C/strong\\u003E\\u0026quot; as the country prepares for the next inevitable Mutant attack. As they do, the country\\u0026#39;s remaining free Mutants prepare to fight back against an increasingly hostile government.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce, political activist \\u003Cstrong\\u003EProfessor Charles Xavier\\u003C/strong\\u003E was the Mutant race\\u0026#39;s last great hope for peace. But ever since he was captured in a government raid on his Westchester mansion, the Professor has been thrown into prison alongside his students, and his ultimate fate is uncertain. But somewhere in the US government\\u0026#39;s clandestine halls of power, the mysterious man called \\u0026quot;\\u003Cstrong\\u003EEssex\\u003C/strong\\u003E\\u0026quot;\\u2014Mutant X\\u0026#39;s handler, and the mastermind behind the sinister \\u0026quot;\\u003Cstrong\\u003EWeapon X\\u003C/strong\\u003E\\u0026quot; project\\u2014patiently sows the seeds of a war between humans and Mutants. If his plan succeeds, the fires of war may spread across the entire world, leaving no obstacle to his dark will.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut in the X-Men\\u0026#39;s darkest hour, a glimmer of hope remains. Her name is \\u003Cstrong\\u003E\\u003Cem\\u003EKitty Pryde\\u003C/em\\u003E\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESeventeen-year-old Kitty, the X-Men\\u0026#39;s newest recruit, was the only member of the team to escape with her freedom when the NYPD descended on the rubble of New York. Now, as the only free member of the X-Men, Kitty hatches a plan to rescue her teammates and take the fight to Essex.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EScott Summers\\u003C/strong\\u003E, \\u003Cstrong\\u003EJean Grey\\u003C/strong\\u003E, \\u003Cstrong\\u003EStorm\\u003C/strong\\u003E, \\u003Cstrong\\u003ENightcrawler\\u003C/strong\\u003E, \\u003Cstrong\\u003EColossus\\u003C/strong\\u003E, \\u003Cstrong\\u003EWolverine\\u003C/strong\\u003E, \\u003Cstrong\\u003ERogue\\u003C/strong\\u003E, \\u003Cstrong\\u003EHavok\\u003C/strong\\u003E and \\u003Cstrong\\u003EMagneto\\u003C/strong\\u003E remain behind bars\\u2014but help is on the way.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 1:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEver since narrowly escaping arrest in New York, Kitty Pryde has reluctantly moved back to Chicago to live with her parents. As she lays low, she\\u0026#39;s forced to watch helplessly as new reports of anti-Mutant riots come in daily, usually accompanied by stories of angry Mutants lashing out at police and clashing with protestors. As unrest spreads, she religiously follows reports on her old teammates, who await trial from behind bars. By happenstance, she learns that they\\u0026#39;re being held in a federal prison in upstate Illinois, just a few hours away from her parents\\u0026#39; home.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince Kitty\\u0026#39;s powers can allow her to slip undetected into areas that would be inaccessible to ordinary people, she believes that there\\u0026#39;s a chance (however small) that she could use her powers to infiltrate the prison and free her teammates from within. She knows that it won\\u0026#39;t be easy, but she believes that she owes it to the X-Men to try. So after weeks of planning and researching the layout of the prison, she prepares to take a trip upstate to make a desperate attempt at rescuing the X-Men.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut as she prepares for the dangerous mission, Kitty finds herself plagued by disturbing dreams and visions, which leave her visibly shaken when she wakes up from them. In her visions, she sees a ruined post-apocalyptic America devastated by war, a shining city patrolled by towering robots with glowing eyes, and a small band of teenagers making their way through streets strewn with the ashes of the slain. She\\u0026#39;s willing to dismiss her visions as mere hallucinations\\u2014until she realizes that the teenagers in her vision all wear a golden \\u0026quot;X\\u0026quot; emblem on their shoulders.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs she going mad...or is this a vision of the X-Men\\u0026#39;s future?\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EWhile Kitty prepares for her rescue mission, we see an extended flash-forward sequence\\u2014which takes us all the way to the year \\u003Cstrong\\u003E2049\\u003C/strong\\u003E. As we soon see, Kitty\\u0026#39;s vision of the future is very real.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the mid-21st century, America is a wasteland. Three decades after the X-Men\\u0026#39;s battle with Mutant X, the country has been devastated by the horrific \\u0026quot;\\u003Cstrong\\u003EGene Wars\\u003C/strong\\u003E\\u0026quot;, a brutal series of armed conflicts between humans and Mutants. During the war, the US military resurrected the controversial \\u003Cstrong\\u003ESentinel Project\\u003C/strong\\u003E and sent the Sentinels to attack multiple Mutant-occupied cities. Soon after, Mutant terrorists destroyed the White House and the US Capitol, and a Mutant assassin shot down Air Force One when the President of the United States tried to flee. Charles Xavier\\u0026#39;s students\\u2014the X-Men\\u2014did their best to fight for peace, but the tide of war could not be beaten back. In time, most of the X-Men were killed by Sentinels or captured by government forces, while the rest went missing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter years of strife, the US government collapsed, and the few survivors of the conflict turned to an unlikely messiah: \\u003Cstrong\\u003ENathaniel Essex\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith America in ruins, Essex built a utopian city atop the ashes, offering the struggling survivors of the Gene Wars a new home. He named his city \\u0026quot;\\u003Cstrong\\u003EAvalon\\u003C/strong\\u003E\\u0026quot;, and all who lived within the city prospered\\u2014never suspecting that the savior was the true mastermind behind the Gene Wars. Day after day, Essex\\u0026#39;s power grew, and his beloved city expanded across the American Heartland. Now, as he rules over his city with an iron fist, his subjects know him as \\u0026quot;\\u003Cstrong\\u003EThe White King\\u003C/strong\\u003E\\u0026quot;. But there are some who dare to resist him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMost of the X-Men are dead or missing, but a single survivor remains: \\u003Cstrong\\u003EKatherine Pryde\\u003C/strong\\u003E. Once, she was a plucky teenager who called herself \\u0026quot;Kitty\\u0026quot;; today, she\\u0026#39;s the leader of the next generation of X-Men. Now an aging woman, Katherine leads a new team of X-Men with the help of the powerful telepath \\u003Cstrong\\u003ERachel Summers\\u003C/strong\\u003E\\u2014the daughter of the long-deceased Scott Summers and Jean Grey. After training under Katherine and Rachel, the five new X-Men have proven themselves as a crack team of freedom fighters, and they\\u0026#39;re devoted to bringing down the White King\\u0026#39;s tyrannical regime.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne by one, we meet them:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESam Guthrie\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003ECannonball\\u003C/strong\\u003E\\u0026quot;), a humble young man from rural Kentucky with the power to fly at supersonic speeds and summon indestructible force fields mid-flight, giving him the force of a speeding cannonball.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EXi\\u0026#39;an Coy Manh\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EKarma\\u003C/strong\\u003E\\u0026quot;), a young Vietnamese-American woman with the power to psychically possess the minds of others.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERoberto \\u0026quot;Bobby\\u0026quot; Da Costa\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003ESunspot\\u003C/strong\\u003E\\u0026quot;), a young Brazilian man with the power to absorb solar energy, granting him superhuman strength\\u2014and allowing him to project superheated plasma from his hands.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EDanielle \\u0026quot;Dani\\u0026quot; Moonstar\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EMoonstar\\u003C/strong\\u003E\\u0026quot;), a young Cheyenne Indian woman with the ability to confuse her enemies with eerily lifelike illusions.\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ERahne Sinclair\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EWolfsbane\\u003C/strong\\u003E\\u0026quot;), a young Scottish woman with the ability to transform herself into a powerful human-wolf hybrid with razor-sharp claws and superhuman senses.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAs the flash-forward begins, the new X-Men fight their way through a squad of Sentinels, narrowly surviving the tense battle. When the smoke clears, we realize that they\\u0026#39;re standing in the ruins of the Xavier Institute, which was destroyed by \\u003Cstrong\\u003ECain Marko\\u003C/strong\\u003E\\u0026#39;s troops before the Gene Wars broke out. Working fast, the team explores the ruins of Katherine\\u0026#39;s old home, and eventually make their way into the remains of the basement\\u2014where the psychic supercomputer called \\u0026quot;\\u003Cstrong\\u003ECerebro\\u003C/strong\\u003E\\u0026quot; was once kept. Just as she feared, Katherine soon finds that Cerebro is missing, and she suspects that she knows where it was taken.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;If I was the White King, I\\u0026#39;d march through Hell to get my hands on Cerebro. If we were a little quicker, we might have been able to stop him. But now, there\\u0026#39;s only one thing we can do,\\u0026quot;\\u003C/em\\u003E she says.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Are you saying what I think you are?\\u0026quot;\\u003C/em\\u003E Rachel asks.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKatherine nods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We have to attack Avalon. If the White King has Cerebro, that\\u0026#39;s where we\\u0026#39;ll find it.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EBack in the present, the X-Men wait out the hours in their cramped prison cells, with the men and the women kept in separate cell blocks. All of them are forced to wear power-dampening collars that prevent them from using their mutations.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKept in cells side-by-side, Scott and his brother \\u003Cstrong\\u003EAlex\\u003C/strong\\u003E\\u2014finally reunited after years apart\\u2014keep each other sane by sharing their recollections of their parents, who were assassinated by Essex years earlier.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn another cell block, the X-Men\\u0026#39;s \\u003Cem\\u003Eother\\u003C/em\\u003E new recruit\\u2014the mysterious former Weapon X operative known only as \\u0026quot;\\u003Cstrong\\u003ERogue\\u003C/strong\\u003E\\u0026quot;\\u2014struggles to stay sane as she hears a chorus of voices in her head.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust a few short months ago, Rogue was a patient at the \\u003Cstrong\\u003ESalem Center Psychiatric Ward\\u003C/strong\\u003E, where she was placed for safekeeping by her former handler \\u003Cstrong\\u003ERaven Darkholme\\u003C/strong\\u003E (codename: \\u0026quot;\\u003Cstrong\\u003EMystique\\u003C/strong\\u003E\\u0026quot;). During her time with Weapon X, she was forced to use her abilities to absorb the life-force of countless human and Mutant adversaries, which left her with a formidable set of superhuman powers. Unfortunately, her mutation also causes her to absorb the \\u003Cem\\u003Ememories\\u003C/em\\u003E of anyone she touches, which has left her mind filled to the brim with other people\\u0026#39;s memories\\u2014which she can\\u0026#39;t always distinguish from her \\u003Cem\\u003Eown\\u003C/em\\u003E memories. But as Professor Xavier discovered, Rogue once managed to absorb a small fraction of Essex\\u0026#39;s powers while working under him, potentially giving her a valuable insight into his mind. If she can somehow piece together the fractured memories that she absorbed from Essex, she might be able to solve the mystery of how to defeat him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith Storm\\u0026#39;s help, Rogue attempts to meditate, looking deep within her mind as she tries to recall what she saw after touching Essex. Once again, she sees a cryptic image of \\u003Cstrong\\u003Ea chessboard with living chess pieces\\u003C/strong\\u003E, and \\u003Cstrong\\u003Ea bird with wings of fire\\u003C/strong\\u003E in the blackness of space. This time, though, she sees something else: a dark cavern beneath the Earth, guarded by an army of identical stone statues that all have Essex\\u0026#39;s face. Jean tries to use her telepathy to peer inside Rogue\\u0026#39;s mind, but it\\u0026#39;s no use; her power-dampening collar prevents her from using her psychic powers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA few hours later, Scott receives a surprise visit from a well-dressed blonde woman in a white pantsuit. The woman flashes a badge and introduces herself as Special Agent \\u003Cstrong\\u003EValerie Cooper\\u003C/strong\\u003E of the CIA. Much to Scott\\u0026#39;s surprise, Special Agent Cooper tells Scott that she believes that the X-Men are innocent; she works for a CIA task force that\\u0026#39;s been monitoring Mutant activity in the United States for over a decade, and she knows that the X-Men weren\\u0026#39;t responsible for the attack on New York. With the help of her connections in the Justice Department, she believes that she can help the team prove their innocence and clear their names\\u2014but only if Weapon X doesn\\u0026#39;t stand in her way.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Weapon X is out of control,\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;I\\u0026#39;ve been trying to shut them down for years, but they anticipate every move. I stopped trusting my colleagues at the agency years ago. I can help you\\u2014but only if you can take down the head of that outfit.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScott points out that the X-Men can\\u0026#39;t take down Essex from behind bars, but Cooper sadly tells him that she can\\u0026#39;t do anything to secure their release.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;My influence doesn\\u0026#39;t run that deep,\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;I can help you clear your names. But as far as the Justice Department knows, you and your friends are terrorists. Until I can prove otherwise, I can\\u0026#39;t help you get out of here. If you want to bury Weapon X, you\\u0026#39;ll have to take care of that yourself.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith that, she leaves Scott.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShortly after, the guards approach Professor Xavier\\u0026#39;s cell and wheel out his wheelchair. The Professor\\u0026#39;s court date has arrived, and it\\u0026#39;s time for him to stand trial for terrorism charges. As the alleged \\u0026quot;ringleader\\u0026quot; of the X-Men, he has been called to court to answer for his supposed role in the attack on New York. Dressed in a crisp black suit, he\\u0026#39;s wheeled past the X-Men\\u0026#39;s cells. One by one, each of his students stands up as they watch their mentor pass them by.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Have faith, children,\\u0026quot;\\u003C/em\\u003E the Professor says. \\u003Cem\\u003E\\u0026quot;You were fine students, and you learned well. Now, the world awaits. You\\u0026#39;ve made me proud, and you have everything you need. Stay strong.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMagneto\\u0026#39;s cell is the last one at the end of the hallway. As the Professor passes his cell, the two old friends take one last look at each other with the bars between them.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;m sorry, Charles,\\u0026quot;\\u003C/em\\u003E Magneto says. \\u003Cem\\u003E\\u0026quot;I never wanted this. You know I never wanted this.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I know you didn\\u0026#39;t, old friend,\\u0026quot;\\u003C/em\\u003E the Professor says. \\u003Cem\\u003E\\u0026quot;But every path must end. I suppose this is where I leave you.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore the Professor fades from sight, Magneto calls out to him.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You\\u0026#39;re the finest man I\\u0026#39;ve ever known, Charles!\\u0026quot;\\u003C/em\\u003E he calls.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a tear rolls down Magneto\\u0026#39;s cheek, he flashes back to a day long-gone, when he sat by an injured Charles\\u0026#39; hospital bed as he awaited treatment for a broken vertebra.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You did what I never could,\\u0026quot;\\u003C/em\\u003E Magneto softly whispers. \\u003Cem\\u003E\\u0026quot;You forgave them for what they did to you...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn the dead of night, Kitty approaches the perimeter of the prison. She takes a deep breath as she prepares to rush the gate\\u2014and then she\\u0026#39;s off.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoving like a ghost, Kitty passes effortlessly slips through the gate, narrowly evading the armed prison guards at the tops of their sentry towers. The prison facility looms ahead, an imposing building of steel and concrete. Summoning her powers, Kitty slips through the ground. On the other side of the wall, she phases up through the floor\\u2014safely ahead of the nearest security checkpoint.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoving fast, she runs through winding hallways on her way to the main cell block, passing through walls whenever a guard comes near. After several minutes of sneaking around, she manages to slip unseen into a locker room, where she steals a stun gun and an electronic key\\u2014which is specially designed to unlock power-dampening collars.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the cell block, the X-Men\\u0026#39;s cell doors all mysteriously fly open as Kitty stuns a guard and triggers the levers for the block. Confused, the X-Men step out of their cells and make a break for it. Moments later, they\\u0026#39;re greeted by Kitty, who proceeds to unlock their collars\\u2014restoring their powers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Hey guys,\\u0026quot;\\u003C/em\\u003E Kitty says. \\u003Cem\\u003E\\u0026quot;Long time, no see...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe X-Men rejoice as a full-blown jail-break ensues, and they fight their way through the cell block as guards descend on them. After a long battle, they proceed to make their way to the roof, where a fully loaded Chinook helicopter is waiting on the helipad, having just dropped off a load of supplies. They know that it\\u0026#39;ll make the perfect getaway vehicle.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo the team\\u0026#39;s surprise, Magneto chooses to stay behind as they board the helicopter and make their escape. Scott begs his old enemy to join them, but he refuses.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;ve made my share of mistakes, Scott,\\u0026quot;\\u003C/em\\u003E Magneto says. \\u003Cem\\u003E\\u0026quot;You deserve to prove your innocence. But I\\u0026#39;m no innocent. Trust me, boy: you don\\u0026#39;t want a murderer in your ranks. You\\u0026#39;re better than that. Let the world see it.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the guards close in on them, the X-Men pile into the helicopter, and it lifts into the air. As they fly into the distance, Kitty suddenly feels a searing pain in her head, and she sees another vision...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn the year 2049, Katherine\\u0026#39;s X-Men approach the shining city of Avalon, which is protected on all sides by towering walls. Somewhere in the depths of the White King\\u0026#39;s fortress, an armed guard approaches a locked glass room. Inside, Cerebro\\u0026#39;s terminal is clearly visible. As the guard turns from Cerebro, we see his eyes glowing violet; he\\u0026#39;s possessed by Karma, who\\u0026#39;s looking through his eyes. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOutside the city walls, Karma severs the connection.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;You were right,\\u0026quot;\\u003C/em\\u003E she tells Katherine. \\u003Cem\\u003E\\u0026quot;It\\u0026#39;s in the lower levels of the East Wing! But we\\u0026#39;ve gotta move fast if we want to use it.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Moving fast is my specialty,\\u0026quot;\\u003C/em\\u003E Cannonball says. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a streak of light, he soars into the air and smashes through the wall, bringing a portion of the towering structure crashing down. As the X-Men run through the hole in the wall and charge toward the fortress, the White King\\u0026#39;s Sentinels descend on them, firing their lasers at full blast. But before they can hit them, the X-Men vanish into thin air\\u2014revealing them as one of Moonstar\\u0026#39;s illusions. A good distance away, the \\u003Cem\\u003Ereal\\u003C/em\\u003E X-Men split up and lead the Sentinels on a wild chase through the streets of Avalon, fighting every step of the way.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBefore long, they find themselves attacked by a horde of clawed, blue-furred simian creatures that effortlessly climb along the sides of buildings. From above, they\\u0026#39;re dive-bombed by dozens of winged men with miniature rocket-launchers attached to their feathered wings. The White King, a renowned genetic scientists, has hundreds of loyal Mutant clones on his side\\u2014including clones of the deceased former X-Men \\u003Cstrong\\u003EHank McCoy\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EBeast\\u003C/strong\\u003E\\u0026quot;) and \\u003Cstrong\\u003EWarren Worthington\\u003C/strong\\u003E (\\u0026quot;\\u003Cstrong\\u003EAngel\\u003C/strong\\u003E\\u0026quot;). As the battle rages on, Wolfsbane tears through the armies of Beasts on the ground, Cannonball tears through the armies of Angels above, and Sunspot tears through the Sentinels with his plasma blasts.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom a window at the top of his fortress, the White King stares down at the intruders, his eyes burning with hate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMoments later, Karma uses her powers to seize control of a squad of Angels, and they send a barrage of missiles at the fortress. Leading the charge, Katherine and Rachel lead the X-Men into the fortress...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EACT 2:\\u003C/em\\u003E\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter a long airborne chase, the X-Men land the Chinook in a forest clearing somewhere in the American Midwest, and they dig in to plan their next move.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFinally free from her power-dampening collar, Jean uses her telepathy to look into Rogue\\u0026#39;s mind, hoping to help her recall the memories that she absorbed from Essex. After peeling back layer after layer of accumulated memories, she eventually finds what she\\u0026#39;s looking for\\u2014and she\\u0026#39;s horrified by what she sees.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShe sees a young Nathaniel Essex in a dingy laboratory in London in the late 1800s, dissecting live test subjects and injecting them with syringes. She sees him synthesizing chemical serums from Mutants\\u0026#39; blood, and injecting them into his neck. Finally she sees him striding through a room filled with cryogenically frozen bodies\\u2014all of them identical to \\u003Cem\\u003Ehim\\u003C/em\\u003E. As the vision comes to an end, she sees him laying one of his frozen bodies on a metal slab; as he lays his hand on it, the frozen body opens its eyes and \\u003Cem\\u003Escreams\\u003C/em\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Clones!\\u0026quot;\\u003C/em\\u003E Jean exclaims, opening her eyes. \\u003Cem\\u003E\\u0026quot;He\\u0026#39;s using clones to make himself immortal! That\\u0026#39;s how he\\u0026#39;s been alive for over 100 years: he found a way to engineer the perfect human specimen, and he can transfer his mind into a new body whenever he wants!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;The perfect human specimen?\\u0026quot;\\u003C/em\\u003E Scott asks, confused.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJean nods.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;He\\u0026#39;s been researching Mutants since the 1800s, when evolution was first discovered. Somewhere along the line, he found out a way to synthesize serums from Mutant genes. He\\u0026#39;s spent decades using the DNA of captured Mutants to make himself more powerful!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;That\\u0026#39;s why he founded Weapon X!\\u0026quot;\\u003C/em\\u003E Nightcrawler exclaims. \\u003Cem\\u003E\\u0026quot;He promised the government that he could turn Mutants into living weapons, and he did. But he also wanted access to the world\\u0026#39;s most powerful Mutants. With their genes at his disposal, he knew that he would be unstoppable!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;But how do we stop him?\\u0026quot;\\u003C/em\\u003E Wolverine asks. \\u003Cem\\u003E\\u0026quot;Any ideas, Red?\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJean already has an idea.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;He\\u0026#39;s spent a century breeding new bodies for himself, but his mind is the same as it ever was,\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;Destroy his body, and he\\u0026#39;ll grow a new one. But destroy his mind...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;...Not even he could survive that,\\u0026quot;\\u003C/em\\u003E Storm says. \\u003Cem\\u003E\\u0026quot;So it would take a powerful psychic to defeat him. A world-class telepath.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Like the Professor...\\u0026quot;\\u003C/em\\u003E Colossus says, realization sinking in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll at once, the X-Men realize why Weapon X has been so determined to crush the X-Men from the beginning: they know that the Professor\\u0026#39;s telepathy makes him one of the few people who could possibly kill Essex, and they\\u0026#39;re determined to remove him as a threat. And now that the Professor is in the government\\u0026#39;s hands, they don\\u0026#39;t stand a chance of defeating Essex.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;But what about you?\\u0026quot;\\u003C/em\\u003E Scott asks Jean. \\u003Cem\\u003E\\u0026quot;You\\u0026#39;re a telepath too!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoubtful, Jean shakes her head.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;I\\u0026#39;m not on the Professor\\u0026#39;s level,\\u0026quot;\\u003C/em\\u003E she says. \\u003Cem\\u003E\\u0026quot;Not even close. He\\u0026#39;s been training all his life, and I\\u0026#39;ve been training since high school. I know how powerful Essex is. There\\u0026#39;s no way I could...\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Then we need to get the Professor back,\\u0026quot;\\u003C/em\\u003E Scott says. \\u003Cem\\u003E\\u0026quot;It\\u0026#39;s the only way.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;But that\\u0026#39;s suicide!\\u0026quot;\\u003C/em\\u003E Wolverine tells him. \\u003Cem\\u003E\\u0026quot;Every news crew in America\\u0026#39;s gonna be filming his trial! They\\u0026#39;ve got dozens of cops watching him, day and night! Even if we could bust him out, we\\u0026#39;d have the Feds on us in a heartbeat!\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EScott knows that he\\u0026#39;s right, but he also knows that he can\\u0026#39;t abandon his mentor.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;We\\u0026#39;ll decide our next move in the morning,\\u0026quot;\\u003C/em\\u003E Scott says. \\u003Cem\\u003E\\u0026quot;For now, we need to get some rest.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThey make camp for the night. But in the morning, Scott is gone.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EIn downtown Chicago, protestors and news reporters descend on the Cook County Courthouse, where Professor Xavier is due to stand trial for domestic terrorism. Tensions are visibly high, and fistfights break out between anti-Mutant groups and Mutant Rights demonstrators. The Professor keeps his composure as he\\u0026#39;s rolled up a wheelchair ramp into the courthouse, even as screaming anti-Mutant protestors throw debris at him. As the court is called into session, countless people across America tune into the news to watch the trial.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUnbeknownst to the Professor, one of the many bystanders in the crowd outside the courthouse is \\u003Cem\\u003EScott\\u003C/em\\u003E. As he watches the courthouse door close, his mentor fades from sight.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the ensuing trial, a fiery argument erupts between federal prosecutors and the Professor\\u0026#39;s lawyer. When the lawyer points out the lack of hard evidence supporting the claim that his client ordered the attack on New York, the prosecutors respond with a long tirade against the X-Men\\u2014pointing out that they\\u0026#39;ve been hiding in upstate New York for years, intentionally keeping their existence hidden from the world. One by one, the prosecutors call multiple witnesses to share their stories about harrowing encounters with Mutants, some of whom threatened their lives. As the jury listens to their stories intently, the prosecutors argue that a man who shelters Mutants cannot be trusted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs his lawyer tries to\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ci79lq\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"themightyheptagon\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ci79lq/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ci79lq/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564169165.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_hiq63\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Talk Show Hosts roast Soda on stream\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_ci78r6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fclips.twitch.tv%2Fembed%3Fclip%3DDeterminedShortMarrow4Head%26autoplay%3Dfalse\\u0026url=https%3A%2F%2Fclips.twitch.tv%2FDeterminedShortMarrow4Head\\u0026image=https%3A%2F%2Fclips-media-assets2.twitch.tv%2F35052136800-offset-5368-preview.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=twitch\\\" width=\\\"600\\\" height=\\\"340\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 340}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"clips.twitch.tv\", \"oembed\": {\"provider_url\": \"https://www.twitch.tv/\", \"description\": \"Twitch is the world's leading video platform and community for gamers.\", \"title\": \"Radio Hosts burn Soda\", \"type\": \"video\", \"author_name\": \"sodapoppin\", \"height\": 340, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fclips.twitch.tv%2Fembed%3Fclip%3DDeterminedShortMarrow4Head%26autoplay%3Dfalse\\u0026url=https%3A%2F%2Fclips.twitch.tv%2FDeterminedShortMarrow4Head\\u0026image=https%3A%2F%2Fclips-media-assets2.twitch.tv%2F35052136800-offset-5368-preview.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=twitch\\\" width=\\\"600\\\" height=\\\"340\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 1920, \"version\": \"1.0\", \"provider_name\": \"Twitch\", \"thumbnail_url\": \"https://clips-media-assets2.twitch.tv/35052136800-offset-5368-preview.jpg\", \"thumbnail_height\": 1080, \"author_url\": \"https://www.twitch.tv/sodapoppin\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fclips.twitch.tv%2Fembed%3Fclip%3DDeterminedShortMarrow4Head%26autoplay%3Dfalse\\u0026url=https%3A%2F%2Fclips.twitch.tv%2FDeterminedShortMarrow4Head\\u0026image=https%3A%2F%2Fclips-media-assets2.twitch.tv%2F35052136800-offset-5368-preview.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=twitch\\\" width=\\\"600\\\" height=\\\"340\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/ci78r6\", \"height\": 340}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/53TVopqmpOgcYLDyQDqlcCL7hIZF5eC7E1051ZQ-gwE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564197852.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"clips.twitch.tv\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/lJoRKc80EOE6x7Vyn-IZ1vbcYOSb3pgYE_YOvl5Q_8U.jpg?auto=webp\\u0026s=4956049bb635000633609dbed19ba2020c17af38\", \"width\": 1920, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/lJoRKc80EOE6x7Vyn-IZ1vbcYOSb3pgYE_YOvl5Q_8U.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=215a5d237cc3452fe671fcf53ca2284382e0792e\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/lJoRKc80EOE6x7Vyn-IZ1vbcYOSb3pgYE_YOvl5Q_8U.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e91716f366181f496d1e460940a0d86c0a322b0c\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/lJoRKc80EOE6x7Vyn-IZ1vbcYOSb3pgYE_YOvl5Q_8U.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=ede39d97aa231120f293dfe4226ce1911959d850\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/lJoRKc80EOE6x7Vyn-IZ1vbcYOSb3pgYE_YOvl5Q_8U.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=966d0166c021f038200233c43913ad83019989aa\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/lJoRKc80EOE6x7Vyn-IZ1vbcYOSb3pgYE_YOvl5Q_8U.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=89e1729911b9b1efdf4766cf0d65133a7dd22bd3\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/lJoRKc80EOE6x7Vyn-IZ1vbcYOSb3pgYE_YOvl5Q_8U.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=09750f2e5e3aab584324a56f4933ec7d230ab92f\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"42Hi-whrFrqzDCwcszt-vmqLDz-pXf4ekmAq5rskjzQ\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ci78r6\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Boombox4153\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ci78r6/talk_show_hosts_roast_soda_on_stream/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://clips.twitch.tv/DeterminedShortMarrow4Head\", \"subreddit_subscribers\": 777, \"created_utc\": 1564169052.0, \"discussion_type\": null, \"media\": {\"type\": \"clips.twitch.tv\", \"oembed\": {\"provider_url\": \"https://www.twitch.tv/\", \"description\": \"Twitch is the world's leading video platform and community for gamers.\", \"title\": \"Radio Hosts burn Soda\", \"type\": \"video\", \"author_name\": \"sodapoppin\", \"height\": 340, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fclips.twitch.tv%2Fembed%3Fclip%3DDeterminedShortMarrow4Head%26autoplay%3Dfalse\\u0026url=https%3A%2F%2Fclips.twitch.tv%2FDeterminedShortMarrow4Head\\u0026image=https%3A%2F%2Fclips-media-assets2.twitch.tv%2F35052136800-offset-5368-preview.jpg\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=twitch\\\" width=\\\"600\\\" height=\\\"340\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"thumbnail_width\": 1920, \"version\": \"1.0\", \"provider_name\": \"Twitch\", \"thumbnail_url\": \"https://clips-media-assets2.twitch.tv/35052136800-offset-5368-preview.jpg\", \"thumbnail_height\": 1080, \"author_url\": \"https://www.twitch.tv/sodapoppin\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_eyrfx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Heat seeking grenade btw.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_ci5pj1\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/l7kavr23moc31/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1920, \"scrubber_media_url\": \"https://v.redd.it/l7kavr23moc31/DASH_96\", \"dash_url\": \"https://v.redd.it/l7kavr23moc31/DASHPlaylist.mpd\", \"duration\": 8, \"hls_url\": \"https://v.redd.it/l7kavr23moc31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/PFw_rBhJrNi8n6FJ8lgHoGE98nS5K-eGR8Ql41QcpQs.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"hosted:video\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564190438.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"v.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/05Xo4Oxx62D_TEDefKT5UGIDKZ96CGjapAJNE0f5L28.png?format=pjpg\\u0026auto=webp\\u0026s=cab889c770fd26e6b34be2972f279f83d31c04d7\", \"width\": 1920, \"height\": 1080}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/05Xo4Oxx62D_TEDefKT5UGIDKZ96CGjapAJNE0f5L28.png?width=108\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=e47ed7b6d2c7200ee999d996b32ac99593e6e126\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/05Xo4Oxx62D_TEDefKT5UGIDKZ96CGjapAJNE0f5L28.png?width=216\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=d2d896dce4ff949d0337c17e34e9db3c9e240fec\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/05Xo4Oxx62D_TEDefKT5UGIDKZ96CGjapAJNE0f5L28.png?width=320\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=76497cab3802f91259d1f5f1a4fecd21edc5aa70\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/05Xo4Oxx62D_TEDefKT5UGIDKZ96CGjapAJNE0f5L28.png?width=640\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=1f2e59169d1d49bc41600e1dc5a582e153cabcb2\", \"width\": 640, \"height\": 360}, {\"url\": \"https://external-preview.redd.it/05Xo4Oxx62D_TEDefKT5UGIDKZ96CGjapAJNE0f5L28.png?width=960\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=73f8268b10be6c26cf5618a25c97895893b0082d\", \"width\": 960, \"height\": 540}, {\"url\": \"https://external-preview.redd.it/05Xo4Oxx62D_TEDefKT5UGIDKZ96CGjapAJNE0f5L28.png?width=1080\\u0026crop=smart\\u0026format=pjpg\\u0026auto=webp\\u0026s=d59d1d1b80a02cff71275cf1138fb373de1ee72e\", \"width\": 1080, \"height\": 607}], \"variants\": {}, \"id\": \"kqeKhQ-OgL6-WwCr8g_KaMHlAjk7t2vQ7bESsR18QXk\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ci5pj1\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"crispyexcal\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ci5pj1/heat_seeking_grenade_btw/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://v.redd.it/l7kavr23moc31\", \"subreddit_subscribers\": 777, \"created_utc\": 1564161638.0, \"discussion_type\": null, \"media\": {\"reddit_video\": {\"fallback_url\": \"https://v.redd.it/l7kavr23moc31/DASH_1080?source=fallback\", \"height\": 1080, \"width\": 1920, \"scrubber_media_url\": \"https://v.redd.it/l7kavr23moc31/DASH_96\", \"dash_url\": \"https://v.redd.it/l7kavr23moc31/DASHPlaylist.mpd\", \"duration\": 8, \"hls_url\": \"https://v.redd.it/l7kavr23moc31/HLSPlaylist.m3u8\", \"is_gif\": false, \"transcoding_status\": \"completed\"}}, \"is_video\": true}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Welcome to False Notoriety, a new clan within the Alliance, Dark Crusaders!\\n\\n\\n\\n**About us\\u2026**\\n\\n\\n\\u2022\\tEnglish speaking, based in \\ud83c\\uddfa\\ud83c\\uddf8\\ud83c\\uddec\\ud83c\\udde7\\ud83c\\udde8\\ud83c\\udde6.\\n\\n\\n\\u2022\\tMature players\\ud83c\\udf7b.\\n\\n\\n\\u2022\\tMax Clan Games\\ud83d\\udcaf.\\n\\n\\n\\u2022\\tLong standing and experienced players\\ud83d\\udcaa\\ud83c\\udffc.\\n\\n\\n\\u2022\\tCWL Participation\\ud83e\\udd1d.\\n\\n\\n\\u2022\\tExperienced leadership with designs on excellence\\ud83d\\udd31.\\n\\n\\n\\u2022\\tActive and friendly\\u2705.\\n\\n\\n\\u2022\\tFriendly \\u0026 excellent Discord Server with lots of commands\\ud83d\\udcad.\\n\\n\\n\\u2022\\tExcellent donations\\ud83e\\udd32\\ud83c\\udffc.\\n\\n\\n\\n**About you\\u2026**\\n\\n\\n\\u2022\\tFriendly and Active is a must\\u2705.\\n\\n\\n\\u2022\\tNot rushed\\u274c.\\n\\n\\n\\u2022\\tAlways use attacks in War\\u2694\\ufe0f.\\n\\n\\n\\u2022\\tJoin our Discord Server\\ud83d\\udcad.\\n\\n\\n\\nWe are looking for friendly Clashers to come and join False Notoriety and build a clan not to be reckoned with. Whether you\\u2019re a Low or High TH we want to help you grow. Promotion here is not free, it is earned by hard work and determination. This is necessary if you want to step up and take on the responsibility of higher roles in our clan.\\n\\n\\n\\nIf you feel like this is the clan for you, please join our server or PM me.\\n\\n\\n\\n[Discord](https://discord.gg/UmdMqXm)\", \"author_fullname\": \"t2_iuonc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ci0ry8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564162833.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWelcome to False Notoriety, a new clan within the Alliance, Dark Crusaders!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAbout us\\u2026\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 English speaking, based in \\ud83c\\uddfa\\ud83c\\uddf8\\ud83c\\uddec\\ud83c\\udde7\\ud83c\\udde8\\ud83c\\udde6.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Mature players\\ud83c\\udf7b.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Max Clan Games\\ud83d\\udcaf.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Long standing and experienced players\\ud83d\\udcaa\\ud83c\\udffc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 CWL Participation\\ud83e\\udd1d.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Experienced leadership with designs on excellence\\ud83d\\udd31.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Active and friendly\\u2705.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Friendly \\u0026amp; excellent Discord Server with lots of commands\\ud83d\\udcad.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Excellent donations\\ud83e\\udd32\\ud83c\\udffc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAbout you\\u2026\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Friendly and Active is a must\\u2705.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Not rushed\\u274c.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Always use attacks in War\\u2694\\ufe0f.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Join our Discord Server\\ud83d\\udcad.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe are looking for friendly Clashers to come and join False Notoriety and build a clan not to be reckoned with. Whether you\\u2019re a Low or High TH we want to help you grow. Promotion here is not free, it is earned by hard work and determination. This is necessary if you want to step up and take on the responsibility of higher roles in our clan.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you feel like this is the clan for you, please join our server or PM me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/UmdMqXm\\\"\\u003EDiscord\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/jZ19H1RBOvsnLn5xaPo2oC9arAxfUfhUufKaJ3LLnEA.jpg?auto=webp\\u0026s=f37f56b8f35ba4b14c667e210852749dcbf80694\", \"width\": 256, \"height\": 256}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/jZ19H1RBOvsnLn5xaPo2oC9arAxfUfhUufKaJ3LLnEA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=17b7e5d8351913a16885e9e7b0c6441155df234c\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/jZ19H1RBOvsnLn5xaPo2oC9arAxfUfhUufKaJ3LLnEA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c6a8847ce22cf1cd73fa2faf0f7f56e1213ace46\", \"width\": 216, \"height\": 216}], \"variants\": {}, \"id\": \"YWSuQp-ioV9DFbplg6v_3SRjEuadwlM4Wiajpbl1dAs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ci0ry8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"oXtC\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ci0ry8/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ci0ry8/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564134033.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Welcome to False Notoriety, a new clan within the Alliance, Dark Crusaders!\\n\\n\\nAbout us\\u2026\\n\\n\\n\\u2022\\tEnglish speaking, based in \\ud83c\\uddfa\\ud83c\\uddf8\\ud83c\\uddec\\ud83c\\udde7\\ud83c\\udde8\\ud83c\\udde6.\\n\\n\\n\\u2022\\tMature players\\ud83c\\udf7b.\\n\\n\\n\\u2022\\tMax Clan Games\\ud83d\\udcaf.\\n\\n\\n\\u2022\\tLong standing and experienced players\\ud83d\\udcaa\\ud83c\\udffc.\\n\\n\\n\\u2022\\tCWL Participation\\ud83e\\udd1d.\\n\\n\\n\\u2022\\tExperienced leadership with designs on excellence\\ud83d\\udd31.\\n\\n\\n\\u2022\\tActive and friendly\\u2705.\\n\\n\\n\\u2022\\tFriendly \\u0026 excellent Discord Server with lots of commands\\ud83d\\udcad.\\n\\n\\n\\u2022\\tExcellent donations\\ud83e\\udd32\\ud83c\\udffc.\\n\\n\\nAbout you\\u2026\\n\\n\\n\\u2022\\tFriendly and Active is a must\\u2705.\\n\\n\\n\\u2022\\tNot rushed\\u274c.\\n\\n\\n\\u2022\\tAlways use attacks in War\\u2694\\ufe0f.\\n\\n\\n\\u2022\\tJoin our Discord Server\\ud83d\\udcad.\\n\\n\\nWe are looking for friendly Clashers to come and join False Notoriety and build a clan not to be reckoned with. Whether you\\u2019re a Low or High TH we want to help you grow. Promotion here is not free, it is earned by hard work and determination. This is necessary if you want to step up and take on the responsibility of higher roles in our clan.\\n\\n\\nIf you feel like this is the clan for you, please join our server or PM me.\\n\\n\\nhttps://discord.gg/UmdMqXm\", \"author_fullname\": \"t2_iuonc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_ci0okv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564162092.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWelcome to False Notoriety, a new clan within the Alliance, Dark Crusaders!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAbout us\\u2026\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 English speaking, based in \\ud83c\\uddfa\\ud83c\\uddf8\\ud83c\\uddec\\ud83c\\udde7\\ud83c\\udde8\\ud83c\\udde6.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Mature players\\ud83c\\udf7b.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Max Clan Games\\ud83d\\udcaf.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Long standing and experienced players\\ud83d\\udcaa\\ud83c\\udffc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 CWL Participation\\ud83e\\udd1d.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Experienced leadership with designs on excellence\\ud83d\\udd31.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Active and friendly\\u2705.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Friendly \\u0026amp; excellent Discord Server with lots of commands\\ud83d\\udcad.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Excellent donations\\ud83e\\udd32\\ud83c\\udffc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAbout you\\u2026\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Friendly and Active is a must\\u2705.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Not rushed\\u274c.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Always use attacks in War\\u2694\\ufe0f.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022 Join our Discord Server\\ud83d\\udcad.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWe are looking for friendly Clashers to come and join False Notoriety and build a clan not to be reckoned with. Whether you\\u2019re a Low or High TH we want to help you grow. Promotion here is not free, it is earned by hard work and determination. This is necessary if you want to step up and take on the responsibility of higher roles in our clan.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you feel like this is the clan for you, please join our server or PM me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://discord.gg/UmdMqXm\\\"\\u003Ehttps://discord.gg/UmdMqXm\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/jZ19H1RBOvsnLn5xaPo2oC9arAxfUfhUufKaJ3LLnEA.jpg?auto=webp\\u0026s=f37f56b8f35ba4b14c667e210852749dcbf80694\", \"width\": 256, \"height\": 256}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/jZ19H1RBOvsnLn5xaPo2oC9arAxfUfhUufKaJ3LLnEA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=17b7e5d8351913a16885e9e7b0c6441155df234c\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/jZ19H1RBOvsnLn5xaPo2oC9arAxfUfhUufKaJ3LLnEA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c6a8847ce22cf1cd73fa2faf0f7f56e1213ace46\", \"width\": 216, \"height\": 216}], \"variants\": {}, \"id\": \"YWSuQp-ioV9DFbplg6v_3SRjEuadwlM4Wiajpbl1dAs\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ci0okv\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"oXtC\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ci0okv/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ci0okv/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564133292.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_2q57o62g\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"When developing side-projects (x-post from r/2meirl4meirl)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_chzdkd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1564151836.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"reddit.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"chzdkd\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"iamsl4v\", \"num_crossposts\": 0, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/chzdkd/when_developing_sideprojects_xpost_from/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/2meirl4meirl/comments/chr6pj/2meirl4meirl/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564123036.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Price | Item \\u0026amp;amp;amp;amp; PICS| Condition\\n:--:|:--:|:--:\\n$28 | [White](https://imgur.com/a/2szqjSw) | CIB\\n$18 | [Y](https://imgur.com/a/Hm6hEJd) | CIB\\n$23 | [Omega Ruby](https://imgur.com/a/prM2KXe) | CIB\\n$13 | [Moon](https://imgur.com/a/KVItz2f) | CIB\\n$5 | [Black, Box and manual](https://imgur.com/a/EK09F0N) | Box and manual only\\n\\n\\n\\n**Prices include shipping**\\n\\n$3 off price for every game you buy after the first one. \\n\\nBigger Discount for local cash Florida 32708\\n\\n**Black Box:** is free if you buy anything else but won\\u2019t reduce the price for multi game bundle\", \"author_fullname\": \"t2_79cno\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_chqcaa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1564404031.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564102526.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EPrice\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003EItem \\u0026amp;amp;amp;amp; PICS\\u003C/th\\u003E\\n\\u003Cth align=\\\"center\\\"\\u003ECondition\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$28\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"https://imgur.com/a/2szqjSw\\\"\\u003EWhite\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECIB\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$18\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"https://imgur.com/a/Hm6hEJd\\\"\\u003EY\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECIB\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$23\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"https://imgur.com/a/prM2KXe\\\"\\u003EOmega Ruby\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECIB\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$13\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"https://imgur.com/a/KVItz2f\\\"\\u003EMoon\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003ECIB\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E$5\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003E\\u003Ca href=\\\"https://imgur.com/a/EK09F0N\\\"\\u003EBlack, Box and manual\\u003C/a\\u003E\\u003C/td\\u003E\\n\\u003Ctd align=\\\"center\\\"\\u003EBox and manual only\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EPrices include shipping\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E$3 off price for every game you buy after the first one. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBigger Discount for local cash Florida 32708\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBlack Box:\\u003C/strong\\u003E is free if you buy anything else but won\\u2019t reduce the price for multi game bundle\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/8NDsPdcLH_FLV2BXh5pIfikxbUzZmtzJjk35tzHwbho.jpg?auto=webp\\u0026s=f0f6504c5592984a48d4bd98572d306c234ffbb5\", \"width\": 2048, \"height\": 1313}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/8NDsPdcLH_FLV2BXh5pIfikxbUzZmtzJjk35tzHwbho.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=720ce7f8a722b1d1088d758b07d5821e30f5012b\", \"width\": 108, \"height\": 69}, {\"url\": \"https://external-preview.redd.it/8NDsPdcLH_FLV2BXh5pIfikxbUzZmtzJjk35tzHwbho.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=64d1850bc5a47b476aea3b1415e69aced54f1c0f\", \"width\": 216, \"height\": 138}, {\"url\": \"https://external-preview.redd.it/8NDsPdcLH_FLV2BXh5pIfikxbUzZmtzJjk35tzHwbho.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c661651ef6414e584b05201017a6550ead46b4d3\", \"width\": 320, \"height\": 205}, {\"url\": \"https://external-preview.redd.it/8NDsPdcLH_FLV2BXh5pIfikxbUzZmtzJjk35tzHwbho.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=4a92612f33a7c6f04b9cbeffd88f49deecb67359\", \"width\": 640, \"height\": 410}, {\"url\": \"https://external-preview.redd.it/8NDsPdcLH_FLV2BXh5pIfikxbUzZmtzJjk35tzHwbho.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=40551d3f8c2a1e8123d97e53df772a67519dae1a\", \"width\": 960, \"height\": 615}, {\"url\": \"https://external-preview.redd.it/8NDsPdcLH_FLV2BXh5pIfikxbUzZmtzJjk35tzHwbho.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=639cebafae109a66d4e3fb68f7d7ec3455d62ac9\", \"width\": 1080, \"height\": 692}], \"variants\": {}, \"id\": \"Ymqg--SOAVAMD8XliYBP6z8krR9gDHG-imtDN-bj8As\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"chqcaa\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Dancemanleo\", \"num_crossposts\": 0, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/chqcaa/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/chqcaa/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564073726.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"**test**test\\n\\n~~^test~~\\n\\n^~~test~~\\n\\n^(~~test test~~)\\n\\n\\u003E!test!\\u003C\\u003E!test2!\\u003C\\n\\n\\u003E!**test3**!\\u003C\\u003E!*test4*!\\u003C\", \"author_fullname\": \"t2_rpkfg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Format test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_chekr3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1564177807.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564033723.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003Etest\\u003C/strong\\u003Etest\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cdel\\u003E\\u003Csup\\u003Etest\\u003C/sup\\u003E\\u003C/del\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\u003Cdel\\u003Etest\\u003C/del\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E\\u003Cdel\\u003Etest test\\u003C/del\\u003E\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003Etest\\u003C/span\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003Etest2\\u003C/span\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003E\\u003Cstrong\\u003Etest3\\u003C/strong\\u003E\\u003C/span\\u003E\\u003Cspan class=\\\"md-spoiler-text\\\"\\u003E\\u003Cem\\u003Etest4\\u003C/em\\u003E\\u003C/span\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"chekr3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Linosek279\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/chekr3/format_test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/chekr3/format_test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1564004923.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"a\", \"author_fullname\": \"t2_11vi3m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"a\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_chbsyp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1564020896.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ea\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"chbsyp\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"boogiefoot\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/chbsyp/a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/chbsyp/a/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563992096.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\u0026#x200B;\\n\\nhttps://reddit.com/link/ch6w72/video/5dq9qysuj8c31/player\\n\\nLink\\n\\n\\u0026#x200B;\\n\\nhttps://i.redd.it/n6wk2f3wk8c31.png\", \"author_fullname\": \"t2_ljcfwwf\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"HQ TEST why no thumbnail?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"media_metadata\": {\"5dq9qysuj8c31\": {\"status\": \"valid\", \"e\": \"RedditVideo\", \"dashUrl\": \"https://v.redd.it/link/ch6w72/asset/5dq9qysuj8c31/DASHPlaylist.mpd\", \"x\": 1920, \"y\": 1080, \"hlsUrl\": \"https://v.redd.it/link/ch6w72/asset/5dq9qysuj8c31/HLSPlaylist.m3u8\", \"id\": \"5dq9qysuj8c31\", \"isGif\": false}, \"n6wk2f3wk8c31\": {\"status\": \"valid\", \"e\": \"Image\", \"s\": {\"y\": 591, \"x\": 1053, \"u\": \"https://i.redd.it/n6wk2f3wk8c31.png\"}, \"m\": \"image/png\", \"id\": \"n6wk2f3wk8c31\"}}, \"name\": \"t3_ch6w72\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/6QyVv4S3QFZqMm7fUcqXHDke0S3OgDM0PweNzXeMgQI.jpg\", \"edited\": 1563967523.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563996069.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://reddit.com/link/ch6w72/video/5dq9qysuj8c31/player\\\"\\u003Ehttps://reddit.com/link/ch6w72/video/5dq9qysuj8c31/player\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELink\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://i.redd.it/n6wk2f3wk8c31.png\\\"\\u003Ehttps://i.redd.it/n6wk2f3wk8c31.png\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ch6w72\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"HiveQuest\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ch6w72/hq_test_why_no_thumbnail/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/ch6w72/hq_test_why_no_thumbnail/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563967269.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_47scv0ew\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Album2\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ch4w7l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F4jA7sgN%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F4jA7sgN\\u0026image=https%3A%2F%2Fi.imgur.com%2FvnTVUmX.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"1339\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"height\": 1339}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 1 views.\", \"title\": \"Imgur\", \"url\": \"https://imgur.com/a/4jA7sgN\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 1339, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F4jA7sgN%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F4jA7sgN\\u0026image=https%3A%2F%2Fi.imgur.com%2FvnTVUmX.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"1339\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2FvnTVUmX.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F4jA7sgN%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F4jA7sgN\\u0026image=https%3A%2F%2Fi.imgur.com%2FvnTVUmX.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"1339\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 600, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/ch4w7l\", \"height\": 1339}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/jetumb2vkuj9Pr8ATBG7qhwRQXWC_stCt78IUVDyXg8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563981356.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/H63Hx548SvuNLYWQMsbN7flGFu6gih6DGTbuD3nxd6E.jpg?auto=webp\\u0026s=871b55740ed2fcb2147877541edf15ba93a53100\", \"width\": 1125, \"height\": 2436}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/H63Hx548SvuNLYWQMsbN7flGFu6gih6DGTbuD3nxd6E.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2fda88ad478bf62f6f3241c7288b778d664de7a5\", \"width\": 108, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/H63Hx548SvuNLYWQMsbN7flGFu6gih6DGTbuD3nxd6E.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=82c0dc26d3c7338c854e32d73fec7ea620901159\", \"width\": 216, \"height\": 432}, {\"url\": \"https://external-preview.redd.it/H63Hx548SvuNLYWQMsbN7flGFu6gih6DGTbuD3nxd6E.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=e89813b49479c2d910da100281086d759c5b7763\", \"width\": 320, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/H63Hx548SvuNLYWQMsbN7flGFu6gih6DGTbuD3nxd6E.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1f7ece0ab7c58a902691df2cce721aa952288f2e\", \"width\": 640, \"height\": 1280}, {\"url\": \"https://external-preview.redd.it/H63Hx548SvuNLYWQMsbN7flGFu6gih6DGTbuD3nxd6E.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=d8ba77cdd405b52379f98c425e1bc26f45dbec3e\", \"width\": 960, \"height\": 1920}, {\"url\": \"https://external-preview.redd.it/H63Hx548SvuNLYWQMsbN7flGFu6gih6DGTbuD3nxd6E.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=7c39781883beaa1e541a292e55d50bf8154f7ba4\", \"width\": 1080, \"height\": 2160}], \"variants\": {}, \"id\": \"6KdlXjx2iAW_QVSjRO8ORxPM4xHwJONrIDbYSBIymP4\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ch4w7l\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Mytesthandle\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ch4w7l/album2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/a/4jA7sgN\", \"subreddit_subscribers\": 777, \"created_utc\": 1563952556.0, \"discussion_type\": null, \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\", \"description\": \"Post with 1 views.\", \"title\": \"Imgur\", \"url\": \"https://imgur.com/a/4jA7sgN\", \"type\": \"rich\", \"thumbnail_width\": 600, \"height\": 1339, \"width\": 600, \"html\": \"\\u003Ciframe class=\\\"embedly-embed\\\" src=\\\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fimgur.com%2Fa%2F4jA7sgN%2Fembed%3Fpub%3Dtrue%26ref%3Dhttps%253A%252F%252Fembed.ly%26w%3D900\\u0026url=https%3A%2F%2Fimgur.com%2Fa%2F4jA7sgN\\u0026image=https%3A%2F%2Fi.imgur.com%2FvnTVUmX.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\\u0026type=text%2Fhtml\\u0026schema=imgur\\\" width=\\\"600\\\" height=\\\"1339\\\" scrolling=\\\"no\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen=\\\"true\\\"\\u003E\\u003C/iframe\\u003E\", \"version\": \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=https%3A%2F%2Fi.imgur.com%2FvnTVUmX.jpg%3Ffb\\u0026key=ed8fa8699ce04833838e66ce79ba05f1\", \"thumbnail_height\": 315}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_47scv0ew\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ScreenshotTest gogo\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_ch4st8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/yt4IWRfACY0RMKNlnN1bkTUy7ina5M8BQnlZBRBG1RA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563980701.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/ar7xq8hda7c31.png?auto=webp\\u0026s=ac4d9c488ec637f39c18b39717c6b8cd3aa9f3ae\", \"width\": 1125, \"height\": 2436}, \"resolutions\": [{\"url\": \"https://preview.redd.it/ar7xq8hda7c31.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2faafe446c8ab574438ae668952ff0f328cabbbc\", \"width\": 108, \"height\": 216}, {\"url\": \"https://preview.redd.it/ar7xq8hda7c31.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f751313e31ac43d1c5711f568fd9eae8f8e526cf\", \"width\": 216, \"height\": 432}, {\"url\": \"https://preview.redd.it/ar7xq8hda7c31.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7c91fc732859dedf63c7b90b42549ce0059efd92\", \"width\": 320, \"height\": 640}, {\"url\": \"https://preview.redd.it/ar7xq8hda7c31.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=4a8583f8de0e26407d6f0f19d75419c8dfaa8d7d\", \"width\": 640, \"height\": 1280}, {\"url\": \"https://preview.redd.it/ar7xq8hda7c31.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=849198b1dc1f0ffa41fb34e7f94acd18b19228b7\", \"width\": 960, \"height\": 1920}, {\"url\": \"https://preview.redd.it/ar7xq8hda7c31.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=434290bb442d09b6437d6a6c19c730c1580d2227\", \"width\": 1080, \"height\": 2160}], \"variants\": {}, \"id\": \"-tWbpWF5n3kaU67AgoC2QffxICnhRXJAqRpJJcpP1sU\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ch4st8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Mytesthandle\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ch4st8/screenshottest_gogo/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/ar7xq8hda7c31.png\", \"subreddit_subscribers\": 777, \"created_utc\": 1563951901.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_ieduu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 70, \"hide_score\": false, \"name\": \"t3_ch1g7n\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/yglYQa9MOIRGKNGNpR74StzJmdBSbHw-okzwYPD5hec.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563959970.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/cb6mh8krk5c31.jpg?auto=webp\\u0026s=9d1dc7db349431f482a063ca457829c2bd60ad9e\", \"width\": 1213, \"height\": 607}, \"resolutions\": [{\"url\": \"https://preview.redd.it/cb6mh8krk5c31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5a69f7cb83e9aacf44ae12a965a26a7899582b17\", \"width\": 108, \"height\": 54}, {\"url\": \"https://preview.redd.it/cb6mh8krk5c31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=61595de9de07d86d7d2ab13ba6f0a2763770e742\", \"width\": 216, \"height\": 108}, {\"url\": \"https://preview.redd.it/cb6mh8krk5c31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=4f2fbcb824f564a5dce8bed7bf7fad792628c1cb\", \"width\": 320, \"height\": 160}, {\"url\": \"https://preview.redd.it/cb6mh8krk5c31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=fe8190e6f01d54a5aad9a085cc59ff4b073e8867\", \"width\": 640, \"height\": 320}, {\"url\": \"https://preview.redd.it/cb6mh8krk5c31.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=855294e0de746e17078d376853bdaec202aa6db7\", \"width\": 960, \"height\": 480}, {\"url\": \"https://preview.redd.it/cb6mh8krk5c31.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=90744c545994c42b102fda1173a85d23bc39020d\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"AGMQi2Ru_tA_fxGqvyax06vMNYZptkeQaQdYTkP4Xso\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"ch1g7n\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mikejmt\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/ch1g7n/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/cb6mh8krk5c31.jpg\", \"subreddit_subscribers\": 777, \"created_utc\": 1563931170.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_slfur\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Me Sa Say What Now?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cgvlr0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/0fESpAJi1rG8SzftBpt2-blV80IJdKHgdygse1pKEBM.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563931566.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/hao71x5b83c31.jpg?auto=webp\\u0026s=bc5ae5c536a83f32c2c1163e595ce25e98f8b6fb\", \"width\": 700, \"height\": 1000}, \"resolutions\": [{\"url\": \"https://preview.redd.it/hao71x5b83c31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e90224761515747e45b24cb2ae7a0bc5853e9c20\", \"width\": 108, \"height\": 154}, {\"url\": \"https://preview.redd.it/hao71x5b83c31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5c94b95fa6a6294ef56df06a636d5d80555e5d51\", \"width\": 216, \"height\": 308}, {\"url\": \"https://preview.redd.it/hao71x5b83c31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=32cac3f84dc4c5e4feac1b7e4219eacf99555990\", \"width\": 320, \"height\": 457}, {\"url\": \"https://preview.redd.it/hao71x5b83c31.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=0d5ab616b5b21cc2e67ba0b34e30e5c5c4391e58\", \"width\": 640, \"height\": 914}], \"variants\": {}, \"id\": \"_-bZen-BjUSNTpua-xYmrt5_nwTHZVHhl2K3M0SQBYk\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgvlr0\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"TheGreatOneSea\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cgvlr0/me_sa_say_what_now/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/hao71x5b83c31.jpg\", \"subreddit_subscribers\": 777, \"created_utc\": 1563902766.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hi r/VegasPro! \\nI'm a long time user of video editing softwares and after 5 years of premier pros BS with variable bitrates i'v decided to give vegas a shoot again. \\n\\n\\nNow before i start with the questions i'l just dumped my old specs (important for the first part) and then my current specs. \\n\\\\---------Old specs--------- \\n(These might not be 100% correct since its over 7 years ago i belive that i had this pc) \\nGPU: Nvidia geforece gtx 570 \\nCPU: Intel i5 (Type unknown) (Sub 2.5 GHZ) \\nOS: Windows 7 home premium (none pirated) \\nHarddrive type: Seagate Barracuda Green ST2000DL003 64MB 2TB (Was a external Drive at this point with USB 2.0) (5900 RPM) \\nVegas pro version: 12 (pirated)\\n\\n\\\\--------------------------------\\n\\nThe problems i had with vegas all those years ago: \\n\\\\*First up: constant crashes. I don't know how many extra hours i had to spend just to redo my work because the software crashed when i was saving my videos before rendering them. \\n\\\\*Second up: Rendering times. I remember the render times was atrocious (something of 4 days render for a 1 hour video with abysmal bit rate) \\n\\\\*Third up: The videos look god awful. And i don't mean that in a video editing sense, but on a technical stance. Constant blocking and pixel cluttering, scenes bleeding into one and another. \\n\\\\*Fourth up: GPU acceleration did not work, AT ALL. I remember spending countless hours figuring out how to enable it. and when i finally did get it to be enabled, nothing changed. \\n\\\\*Fifth up: when test rendering it did not produce the same results as when i rendered the whole thing. The test render could look great, but once i rendered the whole thing it was blockey and pixelated all over.\\n\\n\\u0026#x200B;\\n\\nAnd looking back at it, i'm thinking more and more that it was my lack of knowledge and horrendous PC that caused those problems.\\n\\n \\n\\\\---------New specs------- \\nGPU: Nvidia geforece gtx 970 \\nCPU: Intel i7 6700 (3.40 Ghz) \\nOS: Windows 10 home premium (none pirated) \\nHarddrive type: Samsung SSD 960 EVO 250GB (M.2 drive) \\nVegas pro version: 14 (none pirated) \\n\\\\-------------------------------\\n\\n\\u0026#x200B;\\n\\nThe questions: \\n\\\\*Given what i use my software for, would it be adviced to upgrade to sony vegas 16 (or 17 when it comes out) \\n\\\\*Given the specs i'm running, what render times should videos have? Examples are: \\nEX 1: Video 1 is running 1080P with 60 FPS and 60 000 Kbps \\nEX 2: Video 1 is running 1080P with 30 FPS and 60 000 Kbps \\nEX 3: Video 1 is running 1080P with 60 FPS and 20 000 Kbps \\nEX 4: Video 1 is running 1080P with 30 FPS and 20 000 Kbps \\n\\\\*How big is the difference running vegas on a HDD vs SSD vs M.2? \\n\\\\*How big is the difference rendering your projects to a external drive vs the one vegas is running from? Examples bellow: \\nEX 1: Vegas is running from the OS drive and rendering to a internal drive \\nEX 2: Vegas is running from a HDD and rendering to a SSD \\nEX 3: Vegas is running from a HDD and rendering to a M.2 \\nEX 4: Vegas is running from a SSD and rendering to a HDD \\nEX 5: Vegas is running from a SSD and rendering to a M.2 \\nEX 6: Vegas is running from a M.2 and rendering to a HDD \\nEX 7: Vegas is running from a M.2 and rendering to a SSD \\n\\\\*If a video is lower resolution then what my output option is (Rendering option is 1080P and 60 FPS but the original video is only 480P and 30 FPS) Should i then run it as \\\"match sequence settings\\\"? \\n\\\\*Given the example above, would the video look them same if i rendered it in 1080P and 60 fps instead of the 480P option? Or would the 1080P option just spat out the same video but way larger and longer render time? \\n\\\\*The next questions is about rendering options: \\nSo even back in 2012 i tried to look for the \\\"best\\\" render options, but this time with some more knowledge i don't think there is a \\\"best\\\" overall render setting. So my questions is, what does all these indiviual options do/mean? \\n\\\\*Allow source to adjust frame size \\n\\\\*Profile (Baseline/main/high) \\n\\\\*Allow source to adjust framerate \\n\\\\*Field order (None (progressive scan)/Upper field first/Lower field first) \\n\\\\*Pixel aspect ratio \\n\\\\*Number of reference frames \\n\\\\*Use deblocking filter \\n\\\\*Should i use variable bitrate or constant bitrate if my video is filmed in Variable bit rate? \\n\\\\*Under the variable bitrate option: What does \\\"Two-pass\\\" do? \\n\\\\*What difference does \\\"number of slices\\\" make? \\n\\\\*Enable progessive download \\nNext question is in the rendering options but under the \\\"projects\\\" tab \\n\\\\*What is the difference in the video rendering quality tab (Use project settings/Draft/preview/good/best)? \\n\\\\*What is the \\\"Stereoscoptic 3d mode\\\"? \\n\\\\*What does \\\"Color space\\\" do? \\n\\n\\nThe next set of questions are more general for video editing in sony vegas: \\n\\\\*How do you \\\"batch\\\" render videos? (more or less, how do you render several videos in a row/queing them for rendering) \\n\\\\*How do you render only parts of a video? (In premier pro you can chose to render \\\"Sequence in and out\\\", what would the equivalent be here?) \\n\\\\*Is it possible to import other video editing software projects into sony vegas pro? \\n\\n\\nThat is all i can think of right now, thanks in advance\", \"author_fullname\": \"t2_mgnq6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test upload\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cgsh62\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563916576.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Ca href=\\\"/r/VegasPro\\\"\\u003Er/VegasPro\\u003C/a\\u003E!\\u003Cbr/\\u003E\\nI\\u0026#39;m a long time user of video editing softwares and after 5 years of premier pros BS with variable bitrates i\\u0026#39;v decided to give vegas a shoot again. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow before i start with the questions i\\u0026#39;l just dumped my old specs (important for the first part) and then my current specs.\\u003Cbr/\\u003E\\n---------Old specs---------\\u003Cbr/\\u003E\\n(These might not be 100% correct since its over 7 years ago i belive that i had this pc)\\u003Cbr/\\u003E\\nGPU: Nvidia geforece gtx 570\\u003Cbr/\\u003E\\nCPU: Intel i5 (Type unknown) (Sub 2.5 GHZ)\\u003Cbr/\\u003E\\nOS: Windows 7 home premium (none pirated)\\u003Cbr/\\u003E\\nHarddrive type: Seagate Barracuda Green ST2000DL003 64MB 2TB (Was a external Drive at this point with USB 2.0) (5900 RPM)\\u003Cbr/\\u003E\\nVegas pro version: 12 (pirated)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E--------------------------------\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe problems i had with vegas all those years ago:\\u003Cbr/\\u003E\\n*First up: constant crashes. I don\\u0026#39;t know how many extra hours i had to spend just to redo my work because the software crashed when i was saving my videos before rendering them.\\u003Cbr/\\u003E\\n*Second up: Rendering times. I remember the render times was atrocious (something of 4 days render for a 1 hour video with abysmal bit rate)\\u003Cbr/\\u003E\\n*Third up: The videos look god awful. And i don\\u0026#39;t mean that in a video editing sense, but on a technical stance. Constant blocking and pixel cluttering, scenes bleeding into one and another.\\u003Cbr/\\u003E\\n*Fourth up: GPU acceleration did not work, AT ALL. I remember spending countless hours figuring out how to enable it. and when i finally did get it to be enabled, nothing changed.\\u003Cbr/\\u003E\\n*Fifth up: when test rendering it did not produce the same results as when i rendered the whole thing. The test render could look great, but once i rendered the whole thing it was blockey and pixelated all over.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd looking back at it, i\\u0026#39;m thinking more and more that it was my lack of knowledge and horrendous PC that caused those problems.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E---------New specs-------\\u003Cbr/\\u003E\\nGPU: Nvidia geforece gtx 970\\u003Cbr/\\u003E\\nCPU: Intel i7 6700 (3.40 Ghz)\\u003Cbr/\\u003E\\nOS: Windows 10 home premium (none pirated)\\u003Cbr/\\u003E\\nHarddrive type: Samsung SSD 960 EVO 250GB (M.2 drive)\\u003Cbr/\\u003E\\nVegas pro version: 14 (none pirated)\\u003Cbr/\\u003E\\n-------------------------------\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe questions:\\u003Cbr/\\u003E\\n*Given what i use my software for, would it be adviced to upgrade to sony vegas 16 (or 17 when it comes out)\\u003Cbr/\\u003E\\n*Given the specs i\\u0026#39;m running, what render times should videos have? Examples are:\\u003Cbr/\\u003E\\nEX 1: Video 1 is running 1080P with 60 FPS and 60 000 Kbps\\u003Cbr/\\u003E\\nEX 2: Video 1 is running 1080P with 30 FPS and 60 000 Kbps\\u003Cbr/\\u003E\\nEX 3: Video 1 is running 1080P with 60 FPS and 20 000 Kbps\\u003Cbr/\\u003E\\nEX 4: Video 1 is running 1080P with 30 FPS and 20 000 Kbps\\u003Cbr/\\u003E\\n*How big is the difference running vegas on a HDD vs SSD vs M.2?\\u003Cbr/\\u003E\\n*How big is the difference rendering your projects to a external drive vs the one vegas is running from? Examples bellow:\\u003Cbr/\\u003E\\nEX 1: Vegas is running from the OS drive and rendering to a internal drive\\u003Cbr/\\u003E\\nEX 2: Vegas is running from a HDD and rendering to a SSD\\u003Cbr/\\u003E\\nEX 3: Vegas is running from a HDD and rendering to a M.2\\u003Cbr/\\u003E\\nEX 4: Vegas is running from a SSD and rendering to a HDD\\u003Cbr/\\u003E\\nEX 5: Vegas is running from a SSD and rendering to a M.2\\u003Cbr/\\u003E\\nEX 6: Vegas is running from a M.2 and rendering to a HDD\\u003Cbr/\\u003E\\nEX 7: Vegas is running from a M.2 and rendering to a SSD\\u003Cbr/\\u003E\\n*If a video is lower resolution then what my output option is (Rendering option is 1080P and 60 FPS but the original video is only 480P and 30 FPS) Should i then run it as \\u0026quot;match sequence settings\\u0026quot;?\\u003Cbr/\\u003E\\n*Given the example above, would the video look them same if i rendered it in 1080P and 60 fps instead of the 480P option? Or would the 1080P option just spat out the same video but way larger and longer render time?\\u003Cbr/\\u003E\\n*The next questions is about rendering options:\\u003Cbr/\\u003E\\nSo even back in 2012 i tried to look for the \\u0026quot;best\\u0026quot; render options, but this time with some more knowledge i don\\u0026#39;t think there is a \\u0026quot;best\\u0026quot; overall render setting. So my questions is, what does all these indiviual options do/mean?\\u003Cbr/\\u003E\\n*Allow source to adjust frame size\\u003Cbr/\\u003E\\n*Profile (Baseline/main/high)\\u003Cbr/\\u003E\\n*Allow source to adjust framerate\\u003Cbr/\\u003E\\n*Field order (None (progressive scan)/Upper field first/Lower field first)\\u003Cbr/\\u003E\\n*Pixel aspect ratio\\u003Cbr/\\u003E\\n*Number of reference frames\\u003Cbr/\\u003E\\n*Use deblocking filter\\u003Cbr/\\u003E\\n*Should i use variable bitrate or constant bitrate if my video is filmed in Variable bit rate?\\u003Cbr/\\u003E\\n*Under the variable bitrate option: What does \\u0026quot;Two-pass\\u0026quot; do?\\u003Cbr/\\u003E\\n*What difference does \\u0026quot;number of slices\\u0026quot; make?\\u003Cbr/\\u003E\\n*Enable progessive download\\u003Cbr/\\u003E\\nNext question is in the rendering options but under the \\u0026quot;projects\\u0026quot; tab\\u003Cbr/\\u003E\\n*What is the difference in the video rendering quality tab (Use project settings/Draft/preview/good/best)?\\u003Cbr/\\u003E\\n*What is the \\u0026quot;Stereoscoptic 3d mode\\u0026quot;?\\u003Cbr/\\u003E\\n*What does \\u0026quot;Color space\\u0026quot; do? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe next set of questions are more general for video editing in sony vegas:\\u003Cbr/\\u003E\\n*How do you \\u0026quot;batch\\u0026quot; render videos? (more or less, how do you render several videos in a row/queing them for rendering)\\u003Cbr/\\u003E\\n*How do you render only parts of a video? (In premier pro you can chose to render \\u0026quot;Sequence in and out\\u0026quot;, what would the equivalent be here?)\\u003Cbr/\\u003E\\n*Is it possible to import other video editing software projects into sony vegas pro? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat is all i can think of right now, thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgsh62\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"onakaxy\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cgsh62/test_upload/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cgsh62/test_upload/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563887776.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Welcome. ~~dude~~ person.\", \"author_fullname\": \"t2_2oyn1ts0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Oof\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cgobs8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563887707.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWelcome. \\u003Cdel\\u003Edude\\u003C/del\\u003E person.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgobs8\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"thugwaffle1492\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cgobs8/oof/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cgobs8/oof/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563858907.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hey everyone, I'm a college student about to rent my first home along with 6 of my friends. I'm taking the responsibility of researching renter's insurance for the group, so I have a few questions.\\n\\n**Some background:**\\n\\n* We live in Southern California, where the house is.\\n\\n* The coverage needs to be at least $300,000\\n\\n**Now for the questions**\\n\\n* The landlord is requiring us to (as per the lease we signed) list him as \\\"additional insured with a waiver of subrogation in favor of the landlord\\\". What does this mean and how will it affect the insurance premium?\\n\\n* One of my fellow tenants wants to have me put the renter's insurance under my name and put everyone else down as guests. This seems pretty sketch and/or illegal. From my understanding, the policy only covers myself but can cover my housemates as well. However, is it correct that doing so would leave me on the hook for any damage that my housemates cause that requires me to file a claim?\\n\\nThank you all for your time. :)\", \"author_fullname\": \"t2_cbm9j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test post\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cgo3tb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563886242.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey everyone, I\\u0026#39;m a college student about to rent my first home along with 6 of my friends. I\\u0026#39;m taking the responsibility of researching renter\\u0026#39;s insurance for the group, so I have a few questions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESome background:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EWe live in Southern California, where the house is.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EThe coverage needs to be at least $300,000\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENow for the questions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EThe landlord is requiring us to (as per the lease we signed) list him as \\u0026quot;additional insured with a waiver of subrogation in favor of the landlord\\u0026quot;. What does this mean and how will it affect the insurance premium?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EOne of my fellow tenants wants to have me put the renter\\u0026#39;s insurance under my name and put everyone else down as guests. This seems pretty sketch and/or illegal. From my understanding, the policy only covers myself but can cover my housemates as well. However, is it correct that doing so would leave me on the hook for any damage that my housemates cause that requires me to file a claim?\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThank you all for your time. :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgo3tb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"StarOfTheLight\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cgo3tb/test_post/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cgo3tb/test_post/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563857442.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"*This got removed the first time over discussion of a certain topic pertaining to the pigment in ones epidermis. I\\u2019m going to repost it with those parts removed and hopefully it\\u2019s ok and won\\u2019t get removed again. I will put the stuff I had to change in italics which will hopefully make it make a little more sense since it is kinda hard to understand now. Again, these are just my thoughts and aren\\u2019t meant to start any drama or anything.*\\n\\n\\nI have seen quite a few posts here recently critiquing the show and many of the have negative comment directed at people specifically pertaining to their *social biases* . I find myself in a position where *many of those social biases may pertain to me* so I thought I would give my opinion on the show as a whole. I hope that this post helps people who think the show has no flaws see that there might be some issues that need addressing, even if they don\\u2019t ruin the show or anything. if you are actually interested in hearing some genuine criticisms, I have quite a few from what I believe to be a perspective that many cannot give due to being accused of *having said social biases ( *I know this doesn\\u2019t really makes sense, I\\u2019m really trying to keep this from getting deleted again* ). \\n\\nFirst things first, I'm writing this as a big fan who has read all the books multiple times as well as played all 3 games and am extremely passionate about the series as a whole. Some things are of course going to be subject to bias but I will try to limit it to facts and not opinions. \\n\\nThe inaccuracies in the order that they appear in the teaser:\\n\\nThe dryads, in the books their only weapons are bows, while here they're sporting spears for whatever reason.\\n\\nThanedd island is completely wrong. In the books it is situated in the bay of the great and prosperous town of Gors Velen, meanwhile in the teaser it looks to be situated in the middle of a wasteland. Thanedd itself also does not fit the books, where it's split into 3 areas: Loxia, Aretuza and Garstang. Meanwhile in the teaser we have a lonely singular tower.\\n\\nTriss, my god, Triss. Completely ignoring the discussion of *her origins* , Triss simply does not look like herself. The first glaring mistake is her hair which in the books is straight and chestnut in color, meanwhile here she has curly brown hair. Then there's the issue of age, no offense to the actress at all (it\\u2019s much more of an issue with the casting department/hair and makeup) but Triss has always been described as young looking, and the actress, no matter her actual age simply does not look the part.\\n\\nWhile I love the passion that Cavill clearly has for the role, he is way too muscular to be truly convincing as Geralt. In the books Geralt is described as thin but still athletic, while Cavill looks like a bodybuilder.\\n\\n\\n Yennefers age makes no sense in contrast to Triss. A huge part of their dynamic with each other, Ciri, and Garelt is that they are the same age but leading very different lives. This is ruined when one of them looks a good 15 years older than the other. \\n\\nWhat in the world is the Nilfgaardian armor on display here, this isn't even some extra in the background, this soldier is front and center of the shot. Apparently the Nilfgaardian army forgoes the traditional breastplate instead opting for a simple shirt, and using the saved money to equip their soldiers with armor specifically made to cover their groin. \\n\\n*I had some stuff to say here about the topic that has been most heavily debated here but it got my post taken down before so I\\u2019m removing it.*\\n\\n\\n\\nNext, the dryads, in the books it is clearly stated that dryads are made from little girls \\\"acquired\\\" through various means by the other dryads. The *origin of these characters* in the trailer assumes that the girls would also be *of a similar origin* which doesn\\u2019t make sense in the context of the location that the story takes place (*again this made way more sense before, I\\u2019m sorry guys* ).\\n\\nMost of these complaints are pretty small, and wouldn\\u2019t really be that big of an issue on their own. The issue here is that if you put all of these complaints together you start to see that the show runners are prioritizing their story, their characters and their world over the story, characters and world from the source material. Things like giving the dryads bows or keeping *the way the come into existence* the same as the books that they repeatedly remind us the show is based off of should be high up on the priority list, but it seems like they are deciding to put that lower on the priority list, instead prioritizing *other things* which feel like a cop out in regards to appealing to *those who may be underrepresented in traditional media* if they stick to the original story. The amount of diversity in something doesn\\u2019t matter if the story isn\\u2019t also still good and it doesn\\u2019t feel shoehorned in like it does here. \\n\\nI still really hope that the show ends up being really good and blowing us all away, but I think it is important to address the issues that there are with a show without just saying it will be terrible and forgetting about it. There is a middle ground here. If you feel my criticisms are invalid I would love to have a civil discussion about it, but there is no use for comments calling me *anything I\\u2019m not* . They are just a waste of time and don\\u2019t really get to me anyway.\", \"author_fullname\": \"t2_3ko8kmri\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Gijv\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cgln2r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563843179.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563871643.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EThis got removed the first time over discussion of a certain topic pertaining to the pigment in ones epidermis. I\\u2019m going to repost it with those parts removed and hopefully it\\u2019s ok and won\\u2019t get removed again. I will put the stuff I had to change in italics which will hopefully make it make a little more sense since it is kinda hard to understand now. Again, these are just my thoughts and aren\\u2019t meant to start any drama or anything.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have seen quite a few posts here recently critiquing the show and many of the have negative comment directed at people specifically pertaining to their \\u003Cem\\u003Esocial biases\\u003C/em\\u003E . I find myself in a position where \\u003Cem\\u003Emany of those social biases may pertain to me\\u003C/em\\u003E so I thought I would give my opinion on the show as a whole. I hope that this post helps people who think the show has no flaws see that there might be some issues that need addressing, even if they don\\u2019t ruin the show or anything. if you are actually interested in hearing some genuine criticisms, I have quite a few from what I believe to be a perspective that many cannot give due to being accused of \\u003Cem\\u003Ehaving said social biases ( *I know this doesn\\u2019t really makes sense, I\\u2019m really trying to keep this from getting deleted again\\u003C/em\\u003E ). \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst things first, I\\u0026#39;m writing this as a big fan who has read all the books multiple times as well as played all 3 games and am extremely passionate about the series as a whole. Some things are of course going to be subject to bias but I will try to limit it to facts and not opinions. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe inaccuracies in the order that they appear in the teaser:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe dryads, in the books their only weapons are bows, while here they\\u0026#39;re sporting spears for whatever reason.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanedd island is completely wrong. In the books it is situated in the bay of the great and prosperous town of Gors Velen, meanwhile in the teaser it looks to be situated in the middle of a wasteland. Thanedd itself also does not fit the books, where it\\u0026#39;s split into 3 areas: Loxia, Aretuza and Garstang. Meanwhile in the teaser we have a lonely singular tower.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETriss, my god, Triss. Completely ignoring the discussion of \\u003Cem\\u003Eher origins\\u003C/em\\u003E , Triss simply does not look like herself. The first glaring mistake is her hair which in the books is straight and chestnut in color, meanwhile here she has curly brown hair. Then there\\u0026#39;s the issue of age, no offense to the actress at all (it\\u2019s much more of an issue with the casting department/hair and makeup) but Triss has always been described as young looking, and the actress, no matter her actual age simply does not look the part.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhile I love the passion that Cavill clearly has for the role, he is way too muscular to be truly convincing as Geralt. In the books Geralt is described as thin but still athletic, while Cavill looks like a bodybuilder.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYennefers age makes no sense in contrast to Triss. A huge part of their dynamic with each other, Ciri, and Garelt is that they are the same age but leading very different lives. This is ruined when one of them looks a good 15 years older than the other. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat in the world is the Nilfgaardian armor on display here, this isn\\u0026#39;t even some extra in the background, this soldier is front and center of the shot. Apparently the Nilfgaardian army forgoes the traditional breastplate instead opting for a simple shirt, and using the saved money to equip their soldiers with armor specifically made to cover their groin. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EI had some stuff to say here about the topic that has been most heavily debated here but it got my post taken down before so I\\u2019m removing it.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENext, the dryads, in the books it is clearly stated that dryads are made from little girls \\u0026quot;acquired\\u0026quot; through various means by the other dryads. The \\u003Cem\\u003Eorigin of these characters\\u003C/em\\u003E in the trailer assumes that the girls would also be \\u003Cem\\u003Eof a similar origin\\u003C/em\\u003E which doesn\\u2019t make sense in the context of the location that the story takes place (\\u003Cem\\u003Eagain this made way more sense before, I\\u2019m sorry guys\\u003C/em\\u003E ).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMost of these complaints are pretty small, and wouldn\\u2019t really be that big of an issue on their own. The issue here is that if you put all of these complaints together you start to see that the show runners are prioritizing their story, their characters and their world over the story, characters and world from the source material. Things like giving the dryads bows or keeping \\u003Cem\\u003Ethe way the come into existence\\u003C/em\\u003E the same as the books that they repeatedly remind us the show is based off of should be high up on the priority list, but it seems like they are deciding to put that lower on the priority list, instead prioritizing \\u003Cem\\u003Eother things\\u003C/em\\u003E which feel like a cop out in regards to appealing to \\u003Cem\\u003Ethose who may be underrepresented in traditional media\\u003C/em\\u003E if they stick to the original story. The amount of diversity in something doesn\\u2019t matter if the story isn\\u2019t also still good and it doesn\\u2019t feel shoehorned in like it does here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI still really hope that the show ends up being really good and blowing us all away, but I think it is important to address the issues that there are with a show without just saying it will be terrible and forgetting about it. There is a middle ground here. If you feel my criticisms are invalid I would love to have a civil discussion about it, but there is no use for comments calling me \\u003Cem\\u003Eanything I\\u2019m not\\u003C/em\\u003E . They are just a waste of time and don\\u2019t really get to me anyway.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgln2r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"__Bri__\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cgln2r/gijv/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cgln2r/gijv/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563842843.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Hello guys and gals! I've just finished my first 4\\\\* Magicite today (Maliris) and even though I can now consistently beat her in under 50s, I'm pretty terrified of the other ones as I just don't think I have the right party setup. Rikku's USB's ability to lower water resistance seems to help a lot for this fight. The only other 4 \\\\* attempt I've made so far was on Midgardsormr, which I got him to below 25% or so and did feel like my damage output was lacking a bit.\\n\\nRight now my party is pretty much the following four with the fifth character (Tidus) rotating out for a DPS that fits whichever element I'm fighting. Below is my party for Maliris:\\n\\nCombat flows more or less like this:\\n\\n* \\\\_\\\\_Rikku:\\\\_\\\\_ buffs with Hyper Mighty G and Spellbend Etude then uses her Glint to do Thief Dressphere which gives -2 Water Resistance.\\n* \\\\_\\\\_Selphie:\\\\_\\\\_ Uses Fabula Shield on T1, then Curada until party's Fire Resistance goes down to 4 or party health is low enough to justify it, then USB for Last Stand.\\n* \\\\_\\\\_Rydia:\\\\_\\\\_ Ogopogo for a couple turns then Glint followed by AASB. Neo Bahamut in case she runs out of hones (outlook not good at that point anyway)\\n* \\\\_\\\\_Ramza:\\\\_\\\\_ History's Truth on T1 to get the buffs and insta-cast, then Wrath+Entrusting to Selphie or Tidus as needed or History's Truth again past 30s.\\n* \\\\_\\\\_Tidus:\\\\_\\\\_ Lifesiphons till he gets his Arcane, then follows up with Quick Shot, then Lv. 2 Bravery, then a Sapphire Shot to get his Bravery back up to Lv. 1, then rinse and repeat with Quick Shot or until he realizes that he will never compare to the glory that is Orlandeau and that the only reason I'm using him is that I don't have a water spellblade ability (#####\\\\_\\\\_this realization causes death\\\\_\\\\_)\\n\\n\\u0026#x200B;\\n\\n\\\\#So anyway,###I had mostly enough credit from Google Rewards (\\\\_woo!\\\\_) to get a Dream Relic Draw, but I'm \\\\_\\\\_not sure if I should go for a sexy LMR or USB or something else\\\\_\\\\_. I was originally thinking an OSB but those are pretty cheap as far as Anima Lenses are concerned so I thought the gems might be spent better elsewhere. I could sure use some help in deciding what would best support my setup. Overall, I think my strategy is pretty solid but I've only been playing for a couple months so I'm open to suggestion if you guys see something I could do better. Below are the other characters I have that I use/have used/potentially worth using based on previous relic draws, in case there is something in the Dream Relic Pool that would make one of them shine.\\n\\n\\\\######As you will probably notice, I have made some questionable judgment calls in spending my motes at times.\\n\\n\\u0026#x200B;\\n\\n\\\\#Other Cool Dudes and Dudettes: (30+ S. Lvl)\", \"author_fullname\": \"t2_i68wj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Dream Relic Selection and Magicite Strategy Help\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cgle1f\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563844158.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563870224.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello guys and gals! I\\u0026#39;ve just finished my first 4* Magicite today (Maliris) and even though I can now consistently beat her in under 50s, I\\u0026#39;m pretty terrified of the other ones as I just don\\u0026#39;t think I have the right party setup. Rikku\\u0026#39;s USB\\u0026#39;s ability to lower water resistance seems to help a lot for this fight. The only other 4 * attempt I\\u0026#39;ve made so far was on Midgardsormr, which I got him to below 25% or so and did feel like my damage output was lacking a bit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERight now my party is pretty much the following four with the fifth character (Tidus) rotating out for a DPS that fits whichever element I\\u0026#39;m fighting. Below is my party for Maliris:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECombat flows more or less like this:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E__Rikku:__ buffs with Hyper Mighty G and Spellbend Etude then uses her Glint to do Thief Dressphere which gives -2 Water Resistance.\\u003C/li\\u003E\\n\\u003Cli\\u003E__Selphie:__ Uses Fabula Shield on T1, then Curada until party\\u0026#39;s Fire Resistance goes down to 4 or party health is low enough to justify it, then USB for Last Stand.\\u003C/li\\u003E\\n\\u003Cli\\u003E__Rydia:__ Ogopogo for a couple turns then Glint followed by AASB. Neo Bahamut in case she runs out of hones (outlook not good at that point anyway)\\u003C/li\\u003E\\n\\u003Cli\\u003E__Ramza:__ History\\u0026#39;s Truth on T1 to get the buffs and insta-cast, then Wrath+Entrusting to Selphie or Tidus as needed or History\\u0026#39;s Truth again past 30s.\\u003C/li\\u003E\\n\\u003Cli\\u003E__Tidus:__ Lifesiphons till he gets his Arcane, then follows up with Quick Shot, then Lv. 2 Bravery, then a Sapphire Shot to get his Bravery back up to Lv. 1, then rinse and repeat with Quick Shot or until he realizes that he will never compare to the glory that is Orlandeau and that the only reason I\\u0026#39;m using him is that I don\\u0026#39;t have a water spellblade ability (#####__this realization causes death__)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#So anyway,###I had mostly enough credit from Google Rewards (_woo!_) to get a Dream Relic Draw, but I\\u0026#39;m __not sure if I should go for a sexy LMR or USB or something else__. I was originally thinking an OSB but those are pretty cheap as far as Anima Lenses are concerned so I thought the gems might be spent better elsewhere. I could sure use some help in deciding what would best support my setup. Overall, I think my strategy is pretty solid but I\\u0026#39;ve only been playing for a couple months so I\\u0026#39;m open to suggestion if you guys see something I could do better. Below are the other characters I have that I use/have used/potentially worth using based on previous relic draws, in case there is something in the Dream Relic Pool that would make one of them shine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E######As you will probably notice, I have made some questionable judgment calls in spending my motes at times.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E#Other Cool Dudes and Dudettes: (30+ S. Lvl)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgle1f\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"albitrary\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cgle1f/dream_relic_selection_and_magicite_strategy_help/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cgle1f/dream_relic_selection_and_magicite_strategy_help/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563841424.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"As I type this, I can feel it burning into my scalp. I want so bad to pull the headset off, but I know exactly what will happen, and I don\\u2019t think I can survive that again.\\n\\nWhen I first caught wind of the Oculus Rift back when it was still just a Kickstarter Campaign, my mind was blown. I\\u2019d dreamed as a kid of being able to step into my favorite video games.\\n\\nI daydreamed about swinging the Master Sword with my own hands as Link. I visualized myself as a bored god, making sure my sims needs were met or making their lives miserable. The idea of being inside the world of a game sounded so impossible. Yet under 2 decades later, we were on the cusp of actual, tangible VR.\\n\\nSome people doubted it \\u2013 Called it fake VR. Compared it to the failure of Nintendo\\u2019s Virtual Boy headset. Some folks wouldn\\u2019t even be happy until we got Sword Art Online levels of Virtual Reality. But I was satisfied simply with sight, sound, and the ability to move my arms and interact with a world more joyful than my own.\\n\\nYears later, VR has come a long way. We have developers working on pixel perfect limb movement, leg trackers, 360 degree treadmills. People are doing everything they can to make the VR experience even more real.\\n\\nBut they have no idea that it\\u2019s all pointless. Once you go too far down the rabbit hole, you get stuck in hell.\\n\\nIt all started when I attended a small VR expo in Chicago. With the promise of new, yet to be released prototype headsets available to demo, I was guaranteed to attend. I was a VR nut now, so there was no missing something like this.\\n\\nThe expo was thrilling. There was a new headset from a lesser known Chinese Phone company that had an insanely high resolution. The demo game looked nearly real, but you\\u2019d need a $3000 dollar gaming PC to run it at speeds that wouldn\\u2019t make you nauseous. Even the desktop they had hooked up to the headset was struggling to meet 60 frames per second.\\n\\nThen, my personal favorite, was the headset that focused on field of view. They\\u2019d managed to stretch the field of view to 180 degrees, which exceeds humans\\u2019 horizontal field of view and meets our vertical field of view. The more you know. When I tried this one, I could see how people could nearly forget they were even wearing a headset. It felt like putting on a different pair of eyes. Sadly, the resolution suffered and the screen door effect was so bad, you never felt immersed.\\n\\nI spent several hours making multiple rounds at the event, trying a multitude of spectacular devices.\\n\\nAs the event was coming to a close, with 20 minutes left until the building closed its doors, I spotted a modest booth that I hadn\\u2019t seen previously. Strange, I thought. By then, I\\u2019d made at least a dozen laps around the entire place, yet I\\u2019d not seen this booth before.\\n\\nIt consisted of a single black curtain with a plain black banner boasting white, times new roman lettering that read \\u201cConscious VR\\u201d.\\n\\nI smirked. These VR titles were only getting more predictable.\\n\\nThere was a man sitting there behind a cheap folding table. In front of him was the boxiest looking headset I\\u2019d ever seen. It\\u2019s goggles ended in jagged edges. The strap was loose and seemed to be made of a cheap material. It was beyond generic, reverting past basic.\\n\\nThe man himself reflected the dismal headset \\u2013 Adorned with a plain white tee, a tired expression and eyes that had glazed over hours ago. He looked bored. \\n\\nI walked over. 20 minutes was plenty of time to experience one more prototype.\\n\\n\\u201cConscious VR?\\u201d I said with a curious inflection. \\n\\n\\u201cMhmm.\\u201d The man didn\\u2019t even open his mouth.\\n\\n\\u201cSo, uh, what\\u2019s the gimmick?\\u201d I pointed to the hefty headset. \\u201cIt\\u2019s pretty big. So what, does it have a crazy field of view? Super 8k resolution? Or is it an all in one or something?\\u201d\\n\\nI knelt down and got a closer look. I didn\\u2019t want to handle the thing until I got some sort of reaction from the man.\\n\\n\\u201cNone of that.\\u201d He muttered.\\n\\n\\u201cWell, then, what is it?\\u201d I insisted.\\n\\nHe paused for a moment, staring at me, then to the headset. Without looking back at me, he simply said. \\u201cWakes you up.\\u201d\\n\\nI sneered. \\u201cWhat is that supposed to mean? Like, a cup of coffee?\\u201d I could certainly believe that a VR game or device could be designed to get your blood pumping, so I wasn\\u2019t too skeptical.\\n\\n\\u201cWell, how tired are you?\\u201d he asked, emotion still vacant in his words.\\n\\nI was getting impatient. Reaching my hands out to the headset, I looked toward the man. He nodded, granting me silent (though unenthusiastic) permission.\\n\\nThe thing was heavier than it looked. It must\\u2019ve weighed 12 pounds at least. Immediately, I rolled my eyes. Whoever developed this wasted their time \\u2013 Something this heavy would never be consumer or commercially friendly.\\n\\nI grasped the strap and stretched it over the back of my head. Then, I laid the goggles on my forehead, struggling to find a means to adjust the tightness of it around my head before I blinded myself with it. But I couldn\\u2019t find anything. No way to tighten the straps, no knob to adjust the forward position of the goggles, nothing.\\n\\n\\u201cYou\\u2019ll need to hold it.\\u201d I heard the man say seemingly seconds away from a deep yawn.\\n\\nSeriously? A headset you have to hold? There goes any hope of innovative or even enjoyable gameplay you could get out of it.\\n\\nWith a sigh, I did as he instructed me. I held it at a position as comfortable as the awkward device would allow. \\n\\nThe screen was black.\\n\\n\\u201cIs it on?\\u201d I asked.\\n\\nThere was no reply. This guy was starting to piss me off.\\n\\n\\u201cI-is there a button I need to press?\\u201d\\n\\nStill silence.\\n\\nForget it. I wasn\\u2019t going to stand there and be made a fool of by someone who should\\u2019ve been there to sell me on their idea.\\n\\nI yanked off the headset.\\n\\nI immediately fell backward onto the ground breathless.\\n\\nEverything was black. In every direction, up, down, left, right, it was all blackness. A perfect dark that did not sway or falter. A black this flawless was unnatural. Unnerving.\\n\\nI began to panic. I could feel my breathing speeding up and becoming more shallow. It was a struggle to pick myself back up and remain on two legs as I could not see anything to balance myself with. No frame of reference.\\n\\nAnd when I was standing again, I attempted to look at my hands.\\n\\nThere was nothing.\\n\\nI screamed.\\n\\nBut the blackness seemed to swallow the sound, if there ever was a sound. I couldn\\u2019t be sure. \\n\\nWas I blind? Was I deaf? Was I dead?\\n\\nI kept reaching up to pull off the headset, which I could\\u2019ve sworn I already did, but I felt nothing but my hair and skin. At least I was still there.\\n\\nThen, the electricity came \\u2013 A deep, sharp stinging pain that ran through me from top to bottom like a bolt of lightning. This was pain so intense, that all other thought left my mind. And though I could not see it, I felt the dribble of saliva flooding out of my mouth like some tazed criminal suspect.\\n\\n\\\\*\\\\*\\\\*\\n\\nWhen I \\u201cwoke up\\u201d, my entire body was asleep - A thousand needles per square inch of my flesh. My vision had returned. The headset was gone. And I lay there in the floor of the event building alone.\\n\\nI sat up awkwardly, the needles slowly fading. My head was a mess of agony and confusion. \\n\\nThe building was empty now. Had everyone left me there while packing up and leaving? Why would they do that? Had I passed out and no one cared?\\n\\nI picked myself up and carried myself to the glass front doors. For some reason, they weren\\u2019t locked and I was able to leave without a problem. \\n\\nGroggily, I made my way back to my hotel room. I had a plane to catch in the morning, and I had no way of knowing what time it was because the numbers on my phone were too blurry to read. How I made it back to my hotel bed alive or at all was a surprise.\\n\\nI lay there, eyes closed enjoying the comfort of thread counts higher than I had at home. I felt fine then, save for the remnants of a headache. I looked toward the digital clock on the nightstand. \\n\\n*2:17 AM*\\n\\nThe journey back to the hotel certainly didn\\u2019t take more than half an hour. So, I must\\u2019ve been unconscious for a while. Even so, I was extremely tired. I found it difficult to keep my eyelids open, and raising my arms was a skirmish against my own body.\\n\\nSo, with some effort, I adjusted my pillow and shut my eyes.\\n\\nBut sleep did not come. Something was keeping me up.\\n\\nAt first, I thought it was the headache, but it soon became clear to me that the headache wasn\\u2019t actually a headache. There was an ache above my ears wrapping around the entirety of my scalp like a circle. I could feel something there \\u2013 Something that hurt the longer it remained on me.\\n\\nFor a moment, I assumed the heavy headset had left a sore spot around my entire head. Naturally, I reached up to feel the source of my discomfort.\\n\\nMy eyes flew open and taut. They began to water, quickly swelling to a point where tears flowed down my face.\\n\\nWhat my fingers came into contact with was not a sore on my flesh, but a cloth webbing. \\n\\nIt was the same kind of material that headset had been made of.\\n\\nI shot up and began to scour my own face with my hands, feeling immediately a bulky apparatus in front of my eyes \\u2013 In front of my own vision and somehow I didn\\u2019t see it.\\n\\nChoking on my saliva, I yanked at the strap and clasped at the thing in front of my eyes, raising it above my head. \\n\\nIn a sudden transition, the world around me changed. The hotel room disappeared as the apparatus came off. Around me instead was my own bedroom, my wife sleeping soundly at my side, though I remembered her having blonde hair \\u2013 Not auburn. The morning sun burned my retinas through the glass pane, but I remembered that window being on the opposite side of the room. \\n\\nShivering, I looked down at my hands. Lying within their grasp sat a jet black device. It wasn\\u2019t the same device as the Conscious VR headset that I had expected. This was more sleek, quite a bit lighter, and with a more professional design sense applied to it.\\n\\nMy eyes strained to open wider ready to come apart at the seams. \\n\\n\\u201cMmm honey, did you really wear that to bed?\\u201d\\n\\nI turned sharply. My wife stretched herself awake and had greeted me with a reference to this device that I thought I\\u2019d never seen before.\\n\\n\\u201cW-what? No, I-I-\\u201c Speaking was difficult. My throat was dry and trembled even more than my exterior.\\n\\n\\u201cYou always wake up acting weird when you go to bed with that. I told you to stop. It can\\u2019t be good for your mind.\\u201d She climbed out of bed with a yawn and made her way to the bathroom, yet I recalled the bathroom entrance being in the hallway.\\n\\nI took the opportunity to reexamine the headset.\\n\\nIt looked typical. A strap, some adjustment knobs, some sort of softer than foam material applied to the inside of the goggles. If anything, it just seemed like a consumer perfected version of a VR headset.\\n\\nBut then I turned it about to see the lenses.\\n\\nThere weren\\u2019t any lenses. Rather, there in the middle of the top of the goggles sat a metal connector, a dongle of some kind, similar in shape to a USB Type C.\\n\\nMy mouth was agape. I reached out, touching the connector. There was some sort of brownish red residue on the side.\\n\\n*Is that blood?*\\n\\nInstinctively, my hand flew up to my forehead where the goggles would have met my face.\\n\\nA chill ran down my spine.\\n\\nMy fingers met a small hole that perfectly matched the shape of the dongle.\\n\\nI must\\u2019ve sat there, thoughtless and silent for a while. Because the next thing I knew, my wife stood nervously at the bathroom door in a robe.\\n\\n\\u201cHenry? Henry is it happening again?!\\u201d\\n\\nEyes watering, my gaze slowly met hers. I failed to blink and I swear for a brief moment I forgot how to breathe.\\n\\nIn a sort of shell shock, I watched my wife pick up her phone and dial an ambulance.\\n\\nI was taken to the hospital. An exasperated doctor looked over my eyes and forehead thoroughly with a miniscule flashlight.\\n\\n\\u201cHenry, you were in here just last week. I told you to take a break from that headset.\\u201d\\n\\nMy mouth didn\\u2019t budge. I had nothing to say.\\n\\n\\u201cYes, okay, you see, your excessive use is causing a blood leak. While not usually fatal, it can cause disorientation and even seizures.\\u201d\\n\\nI stared down at my hands. For some reason, all I could do was listen and count my fingers.\\n\\n*1, 2, 3, 4 \\u2013* \\n\\n\\u201cI want you to stay here tonight while we monitor your brain activity.\\u201d\\n\\n*5, 6, 7 \\u2013* \\n\\n\\u201cAre you listening, Henry? We will keep an eye on you. But when you leave in the next couple of days, promise me you take a break from that thing. And by god don\\u2019t go to bed with it.\\u201d\\n\\n*8, 9, 10*\\n\\nThe doctor spoke to my wife just outside the room. A nurse came in to apply some monitors to my heat and temples. She let me know that, if I felt a seizure coming on or if I just didn\\u2019t feel right, I simply needed to press this red button next to the bed.\\n\\nMy wife came in. Kissed me. Cried a bit. Told me to get better. Then, she left.\\n\\n\\\\*\\\\*\\\\*\\n\\nThat night, the hospital was quiet. But I lay awake, trying to figure this out.\\n\\nWas *this* reality? Had I come back to the real world from some sort of hyper-realistic escapism?\\n\\nIf this was the real world, why didn\\u2019t I remember it?\\n\\nSure, for the most part my wife was the same. Our house was the same. The decorations were the same.\\n\\nThe only big difference was the headset.\\n\\nI never remembered a headset like this existing. I didn\\u2019t recall having surgery to implant an insertion point in my skull. This\\u2026 This world was like the one I remembered, but only slightly different.\\n\\nMy mind raced. I was beginning to wear myself down. Maybe I was overreacting to this. After all, if everything was essentially the same besides the technology of some weird headset, maybe I was worrying about nothing.\\n\\nI\\u2019d just go home, live my life as usual, and stop worrying my wife by using that damned headset so much.\\n\\n\\u201cAch!\\u201d I winced. My temples throbbed. Were they sending some sort of current through these monitors?\\n\\nI reached up to feel them, and my heart seemed to stop.\\n\\nWebbing. \\n\\nA strap.\\n\\n*Another headset.*\\n\\nTremors flooded me as I lowered my hands. This time, I was too terrified to immediately rip off the apparatus. I was not prepared for another transition \\u2013 Another revelation showing me that not even this was real. I was still in yet another virtual world.\\n\\nI swallowed hard, but nothing went down. My throat was drier than ever.\\n\\nI didn\\u2019t want to do it, but I knew I had to. If I didn\\u2019t reach up and pull off this headset, I would only live on not knowing, living a lie.\\n\\nSteadily, one inch at a time, my hands moved in unison up to the straps that I was now fully aware of.\\n\\nThese were thinner, yet somehow sturdier than the last. It came off more easily. I kept my eyes shut tight and only opened them slowly once the headset was off entirely.\\n\\n\\\\*\\\\*\\\\*\\n\\nIt took a moment for my eyes to adjust to the brightness of the room I was in. Once I came to, I could make out a large auditorium full of hundreds of people. Laughter, excitement, just plain positivity.\\n\\nIf I had to guess, it was an expo but a much larger one than the one I attended with the Conscious VR booth.\\n\\nI quickly located a large banner toward the back of the hall.\\n\\n*Welcome! Step Into Another World 2019!*\\n\\n\\u201cWatcha think?!\\u201d An ecstatic voice nearly shouted in front of me.\\n\\n\\u201cHuh?\\u201d I managed to say. I looked ahead of me. I was holding the headset, which consisted of a thin white strap and a small rectangular box \\u2013 A far cry from the goggle-shape I was used to.\\n\\n\\u201cThe Cubic is great, huh?! It\\u2019s the smallest Extraneous World device on the market!\\u201d The guy was short but built. He obviously took care of himself and was very excited about his product. \\u201cWell, it\\u2019s not on the market yet, but obviously we\\u2019re gonna make some waves, right?\\u201d\\n\\n*Extraneous World? Is that what they called VR here?*\\n\\nOnce again, my breathing became troublesome and stressed. This world already seemed far more different compared to the last \\u201cshift\\u201d. People wore hairstyles that seemed out of place to me. Several other people walked around with IVs coming from stylized backups and implemented into their wrists like this world\\u2019s version of vaping. A woman walked in with a species of animal I didn\\u2019t recognize.\\n\\nWithout a word, I handed the device back to him and walked away.\\n\\nI exited the event, searched for my wallet, and thankfully found a keycard with information to my hotel room.\\n\\nWhen I made it back to my room, I sat down at a rolling chair in front of a tiny wooden desk where a laptop lay.\\n\\nI opened it.\\n\\nI quickly scanned over the icons.\\n\\n*Google Chrome, Microsoft Edge, a Classic Runescape Launcher.*\\n\\nIt was exactly the same as my original laptop. The brands were the same, the icon positions were the same, even the Classic Runescape played identically to what I remembered.\\n\\nMy head collapsed into my hands as I sobbed. I wanted to scream, yet I sat convulsing in tears. Because it didn\\u2019t matter that the differences still weren\\u2019t major. Because it didn\\u2019t matter that I could probably pick up the phone and still hear from my very same loving wife.\\n\\nI cried because I had absolutely no idea what \\u201coriginal\\u201d actually meant anymore.\\n\\nI cried because, as my face sat in the palm of my hands in a puddle of my own tears, I could feel yet another set of webbing around my head. Another strap. Another headset. Another fake world.\\n\\n\\\\*\\\\*\\\\*\\n\\nI haven\\u2019t \\u201cshifted\\u201d worlds again. I\\u2019m still in the last one, noticing more and more differences than I had before.\\n\\nThat new Nintendo console I\\u2019d purchased a month ago? It hasn\\u2019t released yet here.\\n\\nThe Pomeranian puppy I bought my kid for their birthday? It\\u2019s a German Shepard now.\\n\\nBut worst of all\\u2026 I noticed the first major difference within one of these \\u201cshifts\\u201d when I flew back home.\\n\\nMy daughter \\u2013 Our 5 year-old little girl who had begged for a puppy and a bunk bed so that her friends would have a place to sleep during sleep overs \\u2013 She wasn\\u2019t our daughter anymore.\\n\\n*She* was now a *14 year-old HE.*\\n\\nI still feel the same love and adoration as I should. But the affects this has had on my psyche only grow, even as I continue to ignore the ache of the strap around my head.\\n\\nIt burns. It throbs. It stings every second of every day. \\n\\nI can feel the pain of it, I can feel it indenting itself into my flesh on the other side. Every sore sensation screams at me to pull the headset off.\\n\\nBut I\\u2019m too afraid.\\n\\nBecause I know things will get different \\u2013 My definition of \\u201creal\\u201d will only drift further away.\\n\\nI don\\u2019t think I can handle it again, even though I know beyond this headset, there will be another.\\n\\nAnd another.\\n\\nAnd yet another.\\n\\nAnd I\\u2019m afraid that, with each removed headset, I place myself closer to a more hellish reality.\\n\\nA reality closer to the truth.\\n\\nA reality where my daugh- I mean, my son doesn\\u2019t actually exist.\\n\\nA reality where I\\u2019m alone, bed ridden, diseased, paralyzed\\u2026\\n\\nOr worse.\\n\\nMaybe a fake world isn\\u2019t the worst one to live in. *I just wish it didn\\u2019t hurt so much.*\", \"author_fullname\": \"t2_elw3c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Preview: \\\"I Keep Pulling Off VR Headsets\\\"\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cgi2um\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 38, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 38, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563854002.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs I type this, I can feel it burning into my scalp. I want so bad to pull the headset off, but I know exactly what will happen, and I don\\u2019t think I can survive that again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I first caught wind of the Oculus Rift back when it was still just a Kickstarter Campaign, my mind was blown. I\\u2019d dreamed as a kid of being able to step into my favorite video games.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI daydreamed about swinging the Master Sword with my own hands as Link. I visualized myself as a bored god, making sure my sims needs were met or making their lives miserable. The idea of being inside the world of a game sounded so impossible. Yet under 2 decades later, we were on the cusp of actual, tangible VR.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESome people doubted it \\u2013 Called it fake VR. Compared it to the failure of Nintendo\\u2019s Virtual Boy headset. Some folks wouldn\\u2019t even be happy until we got Sword Art Online levels of Virtual Reality. But I was satisfied simply with sight, sound, and the ability to move my arms and interact with a world more joyful than my own.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYears later, VR has come a long way. We have developers working on pixel perfect limb movement, leg trackers, 360 degree treadmills. People are doing everything they can to make the VR experience even more real.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut they have no idea that it\\u2019s all pointless. Once you go too far down the rabbit hole, you get stuck in hell.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt all started when I attended a small VR expo in Chicago. With the promise of new, yet to be released prototype headsets available to demo, I was guaranteed to attend. I was a VR nut now, so there was no missing something like this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe expo was thrilling. There was a new headset from a lesser known Chinese Phone company that had an insanely high resolution. The demo game looked nearly real, but you\\u2019d need a $3000 dollar gaming PC to run it at speeds that wouldn\\u2019t make you nauseous. Even the desktop they had hooked up to the headset was struggling to meet 60 frames per second.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen, my personal favorite, was the headset that focused on field of view. They\\u2019d managed to stretch the field of view to 180 degrees, which exceeds humans\\u2019 horizontal field of view and meets our vertical field of view. The more you know. When I tried this one, I could see how people could nearly forget they were even wearing a headset. It felt like putting on a different pair of eyes. Sadly, the resolution suffered and the screen door effect was so bad, you never felt immersed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI spent several hours making multiple rounds at the event, trying a multitude of spectacular devices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs the event was coming to a close, with 20 minutes left until the building closed its doors, I spotted a modest booth that I hadn\\u2019t seen previously. Strange, I thought. By then, I\\u2019d made at least a dozen laps around the entire place, yet I\\u2019d not seen this booth before.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt consisted of a single black curtain with a plain black banner boasting white, times new roman lettering that read \\u201cConscious VR\\u201d.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI smirked. These VR titles were only getting more predictable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere was a man sitting there behind a cheap folding table. In front of him was the boxiest looking headset I\\u2019d ever seen. It\\u2019s goggles ended in jagged edges. The strap was loose and seemed to be made of a cheap material. It was beyond generic, reverting past basic.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe man himself reflected the dismal headset \\u2013 Adorned with a plain white tee, a tired expression and eyes that had glazed over hours ago. He looked bored. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI walked over. 20 minutes was plenty of time to experience one more prototype.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cConscious VR?\\u201d I said with a curious inflection. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cMhmm.\\u201d The man didn\\u2019t even open his mouth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cSo, uh, what\\u2019s the gimmick?\\u201d I pointed to the hefty headset. \\u201cIt\\u2019s pretty big. So what, does it have a crazy field of view? Super 8k resolution? Or is it an all in one or something?\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI knelt down and got a closer look. I didn\\u2019t want to handle the thing until I got some sort of reaction from the man.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cNone of that.\\u201d He muttered.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cWell, then, what is it?\\u201d I insisted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHe paused for a moment, staring at me, then to the headset. Without looking back at me, he simply said. \\u201cWakes you up.\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI sneered. \\u201cWhat is that supposed to mean? Like, a cup of coffee?\\u201d I could certainly believe that a VR game or device could be designed to get your blood pumping, so I wasn\\u2019t too skeptical.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cWell, how tired are you?\\u201d he asked, emotion still vacant in his words.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was getting impatient. Reaching my hands out to the headset, I looked toward the man. He nodded, granting me silent (though unenthusiastic) permission.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe thing was heavier than it looked. It must\\u2019ve weighed 12 pounds at least. Immediately, I rolled my eyes. Whoever developed this wasted their time \\u2013 Something this heavy would never be consumer or commercially friendly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI grasped the strap and stretched it over the back of my head. Then, I laid the goggles on my forehead, struggling to find a means to adjust the tightness of it around my head before I blinded myself with it. But I couldn\\u2019t find anything. No way to tighten the straps, no knob to adjust the forward position of the goggles, nothing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cYou\\u2019ll need to hold it.\\u201d I heard the man say seemingly seconds away from a deep yawn.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESeriously? A headset you have to hold? There goes any hope of innovative or even enjoyable gameplay you could get out of it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWith a sigh, I did as he instructed me. I held it at a position as comfortable as the awkward device would allow. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe screen was black.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cIs it on?\\u201d I asked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere was no reply. This guy was starting to piss me off.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cI-is there a button I need to press?\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStill silence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EForget it. I wasn\\u2019t going to stand there and be made a fool of by someone who should\\u2019ve been there to sell me on their idea.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI yanked off the headset.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI immediately fell backward onto the ground breathless.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEverything was black. In every direction, up, down, left, right, it was all blackness. A perfect dark that did not sway or falter. A black this flawless was unnatural. Unnerving.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI began to panic. I could feel my breathing speeding up and becoming more shallow. It was a struggle to pick myself back up and remain on two legs as I could not see anything to balance myself with. No frame of reference.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd when I was standing again, I attempted to look at my hands.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere was nothing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI screamed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut the blackness seemed to swallow the sound, if there ever was a sound. I couldn\\u2019t be sure. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWas I blind? Was I deaf? Was I dead?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI kept reaching up to pull off the headset, which I could\\u2019ve sworn I already did, but I felt nothing but my hair and skin. At least I was still there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen, the electricity came \\u2013 A deep, sharp stinging pain that ran through me from top to bottom like a bolt of lightning. This was pain so intense, that all other thought left my mind. And though I could not see it, I felt the dribble of saliva flooding out of my mouth like some tazed criminal suspect.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I \\u201cwoke up\\u201d, my entire body was asleep - A thousand needles per square inch of my flesh. My vision had returned. The headset was gone. And I lay there in the floor of the event building alone.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI sat up awkwardly, the needles slowly fading. My head was a mess of agony and confusion. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe building was empty now. Had everyone left me there while packing up and leaving? Why would they do that? Had I passed out and no one cared?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI picked myself up and carried myself to the glass front doors. For some reason, they weren\\u2019t locked and I was able to leave without a problem. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGroggily, I made my way back to my hotel room. I had a plane to catch in the morning, and I had no way of knowing what time it was because the numbers on my phone were too blurry to read. How I made it back to my hotel bed alive or at all was a surprise.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI lay there, eyes closed enjoying the comfort of thread counts higher than I had at home. I felt fine then, save for the remnants of a headache. I looked toward the digital clock on the nightstand. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E2:17 AM\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe journey back to the hotel certainly didn\\u2019t take more than half an hour. So, I must\\u2019ve been unconscious for a while. Even so, I was extremely tired. I found it difficult to keep my eyelids open, and raising my arms was a skirmish against my own body.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, with some effort, I adjusted my pillow and shut my eyes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut sleep did not come. Something was keeping me up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt first, I thought it was the headache, but it soon became clear to me that the headache wasn\\u2019t actually a headache. There was an ache above my ears wrapping around the entirety of my scalp like a circle. I could feel something there \\u2013 Something that hurt the longer it remained on me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor a moment, I assumed the heavy headset had left a sore spot around my entire head. Naturally, I reached up to feel the source of my discomfort.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy eyes flew open and taut. They began to water, quickly swelling to a point where tears flowed down my face.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat my fingers came into contact with was not a sore on my flesh, but a cloth webbing. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt was the same kind of material that headset had been made of.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI shot up and began to scour my own face with my hands, feeling immediately a bulky apparatus in front of my eyes \\u2013 In front of my own vision and somehow I didn\\u2019t see it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChoking on my saliva, I yanked at the strap and clasped at the thing in front of my eyes, raising it above my head. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a sudden transition, the world around me changed. The hotel room disappeared as the apparatus came off. Around me instead was my own bedroom, my wife sleeping soundly at my side, though I remembered her having blonde hair \\u2013 Not auburn. The morning sun burned my retinas through the glass pane, but I remembered that window being on the opposite side of the room. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShivering, I looked down at my hands. Lying within their grasp sat a jet black device. It wasn\\u2019t the same device as the Conscious VR headset that I had expected. This was more sleek, quite a bit lighter, and with a more professional design sense applied to it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy eyes strained to open wider ready to come apart at the seams. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cMmm honey, did you really wear that to bed?\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI turned sharply. My wife stretched herself awake and had greeted me with a reference to this device that I thought I\\u2019d never seen before.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cW-what? No, I-I-\\u201c Speaking was difficult. My throat was dry and trembled even more than my exterior.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cYou always wake up acting weird when you go to bed with that. I told you to stop. It can\\u2019t be good for your mind.\\u201d She climbed out of bed with a yawn and made her way to the bathroom, yet I recalled the bathroom entrance being in the hallway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI took the opportunity to reexamine the headset.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt looked typical. A strap, some adjustment knobs, some sort of softer than foam material applied to the inside of the goggles. If anything, it just seemed like a consumer perfected version of a VR headset.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut then I turned it about to see the lenses.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere weren\\u2019t any lenses. Rather, there in the middle of the top of the goggles sat a metal connector, a dongle of some kind, similar in shape to a USB Type C.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy mouth was agape. I reached out, touching the connector. There was some sort of brownish red residue on the side.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EIs that blood?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInstinctively, my hand flew up to my forehead where the goggles would have met my face.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA chill ran down my spine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy fingers met a small hole that perfectly matched the shape of the dongle.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI must\\u2019ve sat there, thoughtless and silent for a while. Because the next thing I knew, my wife stood nervously at the bathroom door in a robe.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cHenry? Henry is it happening again?!\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEyes watering, my gaze slowly met hers. I failed to blink and I swear for a brief moment I forgot how to breathe.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn a sort of shell shock, I watched my wife pick up her phone and dial an ambulance.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was taken to the hospital. An exasperated doctor looked over my eyes and forehead thoroughly with a miniscule flashlight.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cHenry, you were in here just last week. I told you to take a break from that headset.\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy mouth didn\\u2019t budge. I had nothing to say.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cYes, okay, you see, your excessive use is causing a blood leak. While not usually fatal, it can cause disorientation and even seizures.\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI stared down at my hands. For some reason, all I could do was listen and count my fingers.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E1, 2, 3, 4 \\u2013\\u003C/em\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cI want you to stay here tonight while we monitor your brain activity.\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E5, 6, 7 \\u2013\\u003C/em\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cAre you listening, Henry? We will keep an eye on you. But when you leave in the next couple of days, promise me you take a break from that thing. And by god don\\u2019t go to bed with it.\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E8, 9, 10\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe doctor spoke to my wife just outside the room. A nurse came in to apply some monitors to my heat and temples. She let me know that, if I felt a seizure coming on or if I just didn\\u2019t feel right, I simply needed to press this red button next to the bed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy wife came in. Kissed me. Cried a bit. Told me to get better. Then, she left.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat night, the hospital was quiet. But I lay awake, trying to figure this out.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWas \\u003Cem\\u003Ethis\\u003C/em\\u003E reality? Had I come back to the real world from some sort of hyper-realistic escapism?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf this was the real world, why didn\\u2019t I remember it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESure, for the most part my wife was the same. Our house was the same. The decorations were the same.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe only big difference was the headset.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI never remembered a headset like this existing. I didn\\u2019t recall having surgery to implant an insertion point in my skull. This\\u2026 This world was like the one I remembered, but only slightly different.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy mind raced. I was beginning to wear myself down. Maybe I was overreacting to this. After all, if everything was essentially the same besides the technology of some weird headset, maybe I was worrying about nothing.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019d just go home, live my life as usual, and stop worrying my wife by using that damned headset so much.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cAch!\\u201d I winced. My temples throbbed. Were they sending some sort of current through these monitors?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI reached up to feel them, and my heart seemed to stop.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWebbing. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA strap.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EAnother headset.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETremors flooded me as I lowered my hands. This time, I was too terrified to immediately rip off the apparatus. I was not prepared for another transition \\u2013 Another revelation showing me that not even this was real. I was still in yet another virtual world.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI swallowed hard, but nothing went down. My throat was drier than ever.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI didn\\u2019t want to do it, but I knew I had to. If I didn\\u2019t reach up and pull off this headset, I would only live on not knowing, living a lie.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESteadily, one inch at a time, my hands moved in unison up to the straps that I was now fully aware of.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThese were thinner, yet somehow sturdier than the last. It came off more easily. I kept my eyes shut tight and only opened them slowly once the headset was off entirely.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt took a moment for my eyes to adjust to the brightness of the room I was in. Once I came to, I could make out a large auditorium full of hundreds of people. Laughter, excitement, just plain positivity.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf I had to guess, it was an expo but a much larger one than the one I attended with the Conscious VR booth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI quickly located a large banner toward the back of the hall.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EWelcome! Step Into Another World 2019!\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cWatcha think?!\\u201d An ecstatic voice nearly shouted in front of me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cHuh?\\u201d I managed to say. I looked ahead of me. I was holding the headset, which consisted of a thin white strap and a small rectangular box \\u2013 A far cry from the goggle-shape I was used to.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u201cThe Cubic is great, huh?! It\\u2019s the smallest Extraneous World device on the market!\\u201d The guy was short but built. He obviously took care of himself and was very excited about his product. \\u201cWell, it\\u2019s not on the market yet, but obviously we\\u2019re gonna make some waves, right?\\u201d\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EExtraneous World? Is that what they called VR here?\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce again, my breathing became troublesome and stressed. This world already seemed far more different compared to the last \\u201cshift\\u201d. People wore hairstyles that seemed out of place to me. Several other people walked around with IVs coming from stylized backups and implemented into their wrists like this world\\u2019s version of vaping. A woman walked in with a species of animal I didn\\u2019t recognize.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWithout a word, I handed the device back to him and walked away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI exited the event, searched for my wallet, and thankfully found a keycard with information to my hotel room.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I made it back to my room, I sat down at a rolling chair in front of a tiny wooden desk where a laptop lay.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI opened it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI quickly scanned over the icons.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EGoogle Chrome, Microsoft Edge, a Classic Runescape Launcher.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt was exactly the same as my original laptop. The brands were the same, the icon positions were the same, even the Classic Runescape played identically to what I remembered.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy head collapsed into my hands as I sobbed. I wanted to scream, yet I sat convulsing in tears. Because it didn\\u2019t matter that the differences still weren\\u2019t major. Because it didn\\u2019t matter that I could probably pick up the phone and still hear from my very same loving wife.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cried because I had absolutely no idea what \\u201coriginal\\u201d actually meant anymore.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cried because, as my face sat in the palm of my hands in a puddle of my own tears, I could feel yet another set of webbing around my head. Another strap. Another headset. Another fake world.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E***\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI haven\\u2019t \\u201cshifted\\u201d worlds again. I\\u2019m still in the last one, noticing more and more differences than I had before.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat new Nintendo console I\\u2019d purchased a month ago? It hasn\\u2019t released yet here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Pomeranian puppy I bought my kid for their birthday? It\\u2019s a German Shepard now.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut worst of all\\u2026 I noticed the first major difference within one of these \\u201cshifts\\u201d when I flew back home.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy daughter \\u2013 Our 5 year-old little girl who had begged for a puppy and a bunk bed so that her friends would have a place to sleep during sleep overs \\u2013 She wasn\\u2019t our daughter anymore.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EShe\\u003C/em\\u003E was now a \\u003Cem\\u003E14 year-old HE.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI still feel the same love and adoration as I should. But the affects this has had on my psyche only grow, even as I continue to ignore the ache of the strap around my head.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt burns. It throbs. It stings every second of every day. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can feel the pain of it, I can feel it indenting itself into my flesh on the other side. Every sore sensation screams at me to pull the headset off.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut I\\u2019m too afraid.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBecause I know things will get different \\u2013 My definition of \\u201creal\\u201d will only drift further away.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u2019t think I can handle it again, even though I know beyond this headset, there will be another.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd another.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd yet another.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd I\\u2019m afraid that, with each removed headset, I place myself closer to a more hellish reality.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA reality closer to the truth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA reality where my daugh- I mean, my son doesn\\u2019t actually exist.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA reality where I\\u2019m alone, bed ridden, diseased, paralyzed\\u2026\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr worse.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaybe a fake world isn\\u2019t the worst one to live in. \\u003Cem\\u003EI just wish it didn\\u2019t hurt so much.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgi2um\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"airshrimp777\", \"num_crossposts\": 0, \"num_comments\": 13, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cgi2um/preview_i_keep_pulling_off_vr_headsets/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563825202.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_110kgk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I tried to fix Jennifer Hudson's extra large face from the Cats trailer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cgf3xu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"thumbnail\": \"https://a.thumbs.redditmedia.com/N6evjgJfxJzzdBtoLoTtKEy3ASYd4e69hnGEh7E9Rv0.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563840319.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/2ppkfcfwmvb31.gif?format=png8\\u0026s=c4023e018ca3fa24652378fb8fc0149de73d7d5c\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://preview.redd.it/2ppkfcfwmvb31.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0aab8f37dbe4bd0fca9da0201beff13863310ac2\", \"width\": 108, \"height\": 81}, {\"url\": \"https://preview.redd.it/2ppkfcfwmvb31.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=12774d479486f6a257eefb0f8e936643984541ef\", \"width\": 216, \"height\": 162}, {\"url\": \"https://preview.redd.it/2ppkfcfwmvb31.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=82a126892928c4fb136b7e8151c749a8d04e7788\", \"width\": 320, \"height\": 240}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://preview.redd.it/2ppkfcfwmvb31.gif?s=157dbdf6fd42e938c16a00e5c9003d51554f4727\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://preview.redd.it/2ppkfcfwmvb31.gif?width=108\\u0026crop=smart\\u0026s=50f009a11d8e3a387766d13c2cf0f01e7130034d\", \"width\": 108, \"height\": 81}, {\"url\": \"https://preview.redd.it/2ppkfcfwmvb31.gif?width=216\\u0026crop=smart\\u0026s=fa3fafc1ffc01025156e62befbb37a2b6608c3e2\", \"width\": 216, \"height\": 162}, {\"url\": \"https://preview.redd.it/2ppkfcfwmvb31.gif?width=320\\u0026crop=smart\\u0026s=f37a7efc8a935ed65cb07c6f623e875b0e105529\", \"width\": 320, \"height\": 240}]}, \"mp4\": {\"source\": {\"url\": \"https://preview.redd.it/2ppkfcfwmvb31.gif?format=mp4\\u0026s=dbd096985e05d6772fa78b7f03a71b4bdb2f54c7\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://preview.redd.it/2ppkfcfwmvb31.gif?width=108\\u0026format=mp4\\u0026s=31613f5616322f74cf4313f2e96fa41a3512eb4d\", \"width\": 108, \"height\": 81}, {\"url\": \"https://preview.redd.it/2ppkfcfwmvb31.gif?width=216\\u0026format=mp4\\u0026s=172dd49bd959a8ff17a6a9e0d786660c68b505ba\", \"width\": 216, \"height\": 162}, {\"url\": \"https://preview.redd.it/2ppkfcfwmvb31.gif?width=320\\u0026format=mp4\\u0026s=73b2b887033de55d3d5375aa6495f2ff1cfe5cb5\", \"width\": 320, \"height\": 240}]}}, \"id\": \"S7kDf5gwXcVsn9aI-NCWfrZnmUv4Hl44AmCUp4PXQu4\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgf3xu\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"isaidwhatisaidok\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cgf3xu/i_tried_to_fix_jennifer_hudsons_extra_large_face/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/2ppkfcfwmvb31.gif\", \"subreddit_subscribers\": 777, \"created_utc\": 1563811519.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_110kgk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"I tried to fix Jennifer Hudson's extra large face from the Cats trailer\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"hide_score\": false, \"name\": \"t3_cgey8x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/biQsYvNoFEUU9TVjv7fS2i5_S63YMP5uADeT7GGMpAE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563839574.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/TELEe4AlWigBaxApm72huUyDIhOQpRlrRAmJDlbNdiM.jpg?auto=webp\\u0026s=6db50cc00aad25fa85da3b3de91cda4be8b2ee33\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/TELEe4AlWigBaxApm72huUyDIhOQpRlrRAmJDlbNdiM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=cae7c520a9514d97b5f004338b6e23ca579f247e\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/TELEe4AlWigBaxApm72huUyDIhOQpRlrRAmJDlbNdiM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=cf5dac0313e0f0b130ab4978bb364ff677eae122\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/TELEe4AlWigBaxApm72huUyDIhOQpRlrRAmJDlbNdiM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d6a78c282f6af7edeed30e8a0e68ce10af3958fb\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"xzaox5inspkZuClr-rthwmH0aWpG_isTUp7Fgbcfr6g\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgey8x\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"isaidwhatisaidok\", \"num_crossposts\": 0, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cgey8x/i_tried_to_fix_jennifer_hudsons_extra_large_face/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://imgur.com/KREZ7fe\", \"subreddit_subscribers\": 777, \"created_utc\": 1563810774.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_103gae\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Titel\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 101, \"hide_score\": false, \"name\": \"t3_cgb7zk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/FwtHKXZwTK4xD6ql1NMrVLbHSFTe0kGf03_gL_cbs_o.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563818151.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.redd.it\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/k98j1gh2vtb31.jpg?auto=webp\\u0026s=e10101daa6e15b22ace349a6d9e7908d7968e381\", \"width\": 500, \"height\": 361}, \"resolutions\": [{\"url\": \"https://preview.redd.it/k98j1gh2vtb31.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=85cc79251bb817ee53930d5393e2acf707f7ad98\", \"width\": 108, \"height\": 77}, {\"url\": \"https://preview.redd.it/k98j1gh2vtb31.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6705fa48bbfed226c7d06e1996d0887242102a59\", \"width\": 216, \"height\": 155}, {\"url\": \"https://preview.redd.it/k98j1gh2vtb31.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=599c8a2e688aec94f4b62fd3c57bbd0b5588f105\", \"width\": 320, \"height\": 231}], \"variants\": {}, \"id\": \"YSjywsnQ0YjtZ3CNmgxIm2x1Al0-5hTeIxCIr-JzRWE\"}], \"enabled\": true}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cgb7zk\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Luki1981\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cgb7zk/titel/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/k98j1gh2vtb31.jpg\", \"subreddit_subscribers\": 777, \"created_utc\": 1563789351.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Whether a player will resign or not depends on both their mood and desired contract. A player with an angry mood might re-sign anyway out of fear of not getting a good offer elsewhere, whereas a superstar may have a good mood, but still want to see what he gets on the market before re-signing. \\n\\nThere are 4 factors for determining mood. The formulas for each are different, but the percentages are roughly how important they are:\\n\\n1. Hype ~ 40%\\n\\n2. Randomness ~ 30%\\n\\n3. population ~ 20%\\n\\n4. facilities ~ 10%\\n\\nFor the more technically inclined, here are the actual values:\\nEach category adds a value to a player's \\\"mood score\\\", with a high mood being bad (unlikely to re-sign), and a lower mood score being good (likely to re-sign). \\n\\n..... | Hype | Randomness | Population | Facilities\\n-----------|-----------|-----------|-----------|-----------\\naverage | 0.25 | 0.1 | 0.1 | 0.05\\nRange | 0 to 0.5 | -0.2 to 0.4 | -0.19 to 0.17 | 0 to 0.1\\n\\n(SRC: https://github.com/dumbmatter/gm-games/blob/master/src/deion/worker/core/player/genBaseMood.js#L18 )\\n\\nThe mood score is then used in contract negotiation, with mood affecting whether they will negotiate. If amount * mood \\u003C 9500, they will negotiate (https://github.com/dumbmatter/gm-games/blob/master/src/deion/common/helpers.js#L863 ). The amount a player will sign for is also affected (https://github.com/dumbmatter/gm-games/blob/master/src/deion/ui/views/Negotiation.js#L53 ) .\\n\\n\\nI think one of the biggest problems with the game as it is right now is that, other than winning the championship every year, small market teams have very little ability to re-sign their superstars. While this is probably realistic, I propose the following tweak:\\n/u/dumbmatter, Please calculate players\\u2019 mood scores at the beginning of the season, so that small market teams can have some indication when a superstar intends to walk at the end of the year, they can at least trade him for something in return. (I.e. Kawhi demanding to be traded, and the Spurs getting Derozan.) You can even add fuzz based on coaching expenses to the mood score (on the assumption that players are more likely to be upfront about their plans with good coaches.)\\n\\nAs it is right now, the stakes are simply too high for the game to be enjoyable when playing with small market teams, because if you don\\u2019t win the \\u2018ship in your superstar\\u2019s contract year, there is a high probability he is leaving, and you are left with nada.\", \"author_fullname\": \"t2_ymq8x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"asdf\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cga004\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563780132.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563808468.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhether a player will resign or not depends on both their mood and desired contract. A player with an angry mood might re-sign anyway out of fear of not getting a good offer elsewhere, whereas a superstar may have a good mood, but still want to see what he gets on the market before re-signing. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere are 4 factors for determining mood. The formulas for each are different, but the percentages are roughly how important they are:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EHype ~ 40%\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERandomness ~ 30%\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Epopulation ~ 20%\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003Efacilities ~ 10%\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EFor the more technically inclined, here are the actual values:\\nEach category adds a value to a player\\u0026#39;s \\u0026quot;mood score\\u0026quot;, with a high mood being bad (unlikely to re-sign), and a lower mood score being good (likely to re-sign). \\u003C/p\\u003E\\n\\n\\u003Ctable\\u003E\\u003Cthead\\u003E\\n\\u003Ctr\\u003E\\n\\u003Cth\\u003E.....\\u003C/th\\u003E\\n\\u003Cth\\u003EHype\\u003C/th\\u003E\\n\\u003Cth\\u003ERandomness\\u003C/th\\u003E\\n\\u003Cth\\u003EPopulation\\u003C/th\\u003E\\n\\u003Cth\\u003EFacilities\\u003C/th\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/thead\\u003E\\u003Ctbody\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003Eaverage\\u003C/td\\u003E\\n\\u003Ctd\\u003E0.25\\u003C/td\\u003E\\n\\u003Ctd\\u003E0.1\\u003C/td\\u003E\\n\\u003Ctd\\u003E0.1\\u003C/td\\u003E\\n\\u003Ctd\\u003E0.05\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003Ctr\\u003E\\n\\u003Ctd\\u003ERange\\u003C/td\\u003E\\n\\u003Ctd\\u003E0 to 0.5\\u003C/td\\u003E\\n\\u003Ctd\\u003E-0.2 to 0.4\\u003C/td\\u003E\\n\\u003Ctd\\u003E-0.19 to 0.17\\u003C/td\\u003E\\n\\u003Ctd\\u003E0 to 0.1\\u003C/td\\u003E\\n\\u003C/tr\\u003E\\n\\u003C/tbody\\u003E\\u003C/table\\u003E\\n\\n\\u003Cp\\u003E(SRC: \\u003Ca href=\\\"https://github.com/dumbmatter/gm-games/blob/master/src/deion/worker/core/player/genBaseMood.js#L18\\\"\\u003Ehttps://github.com/dumbmatter/gm-games/blob/master/src/deion/worker/core/player/genBaseMood.js#L18\\u003C/a\\u003E )\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe mood score is then used in contract negotiation, with mood affecting whether they will negotiate. If amount * mood \\u0026lt; 9500, they will negotiate (\\u003Ca href=\\\"https://github.com/dumbmatter/gm-games/blob/master/src/deion/common/helpers.js#L863\\\"\\u003Ehttps://github.com/dumbmatter/gm-games/blob/master/src/deion/common/helpers.js#L863\\u003C/a\\u003E ). The amount a player will sign for is also affected (\\u003Ca href=\\\"https://github.com/dumbmatter/gm-games/blob/master/src/deion/ui/views/Negotiation.js#L53\\\"\\u003Ehttps://github.com/dumbmatter/gm-games/blob/master/src/deion/ui/views/Negotiation.js#L53\\u003C/a\\u003E ) .\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think one of the biggest problems with the game as it is right now is that, other than winning the championship every year, small market teams have very little ability to re-sign their superstars. While this is probably realistic, I propose the following tweak:\\n\\u003Ca href=\\\"/u/dumbmatter\\\"\\u003E/u/dumbmatter\\u003C/a\\u003E, Please calculate players\\u2019 mood scores at the beginning of the season, so that small market teams can have some indication when a superstar intends to walk at the end of the year, they can at least trade him for something in return. (I.e. Kawhi demanding to be traded, and the Spurs getting Derozan.) You can even add fuzz based on coaching expenses to the mood score (on the assumption that players are more likely to be upfront about their plans with good coaches.)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs it is right now, the stakes are simply too high for the game to be enjoyable when playing with small market teams, because if you don\\u2019t win the \\u2018ship in your superstar\\u2019s contract year, there is a high probability he is leaving, and you are left with nada.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/wVbjtCGcr8f5HxDv5FzFfBi6lu1DVjvZ2zW4_mY97do.jpg?auto=webp\\u0026s=c78b3b784380dc9803626e4e78561dc6badd3924\", \"width\": 400, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/wVbjtCGcr8f5HxDv5FzFfBi6lu1DVjvZ2zW4_mY97do.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f029723c970c0ec9f75a2bdd450dc1de86cdc0c7\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/wVbjtCGcr8f5HxDv5FzFfBi6lu1DVjvZ2zW4_mY97do.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=51275da81bb1123f8fe430617860e65b624d3bcb\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/wVbjtCGcr8f5HxDv5FzFfBi6lu1DVjvZ2zW4_mY97do.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f0b41b946b434d1763f685d32f416f3b02b029eb\", \"width\": 320, \"height\": 320}], \"variants\": {}, \"id\": \"YUwJoqi-UFoZJTwqmRINLi-Hj6e2QCsjuL5y6kXEw8k\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cga004\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"socrates123b\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cga004/asdf/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cga004/asdf/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563779668.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\n**10. Portland will make a trade for Kevin Love and win over 50 games.** \\n\\nDamian Lillard has solidified himself as a superstar and I love the addition of Hassan Whiteside, as I believe he is one of the most disrespected and underrated players in the NBA. With Nurkic coming back later in the season and much of their team the same as the team that won 49 games last year, I believe the Trailblazers believe they are one piece away from truly competing.\\n What better piece is that than Kevin Love? They are weak at the 4, Love\\u2019s trade value is at an all time low, yet there is no reason to believe he\\u2019s still not an all-star caliber player. He\\u2019d be a tremendous fit and asset to the team.''\\n\\n\\n**9. Houston will win the finals and lose less than 5 games on their way there.** \\n\\nPeople are saying the era of the superteam is over, but I believe it simply moved from Golden State to Houston. When Harden and CP3 and Capela started together, they were 50-5. By most metrics, Westbrook is a heavy upgrade over CP3. Capela, is very underrated as well, but it\\u2019s understandable considering he was nearly unplayable vs the Warriors. However, with the Warriors gone, and an elite point guard that will stay healthy, I believe Capela will truly shine.\\nWestbrook, for the first time in his career, will buy into a team and its system and show humility. I fully expect Harden, Westbrook, and Capela to each have more than 10 win shares and 25 PER.\\n\\n\\n**8. Zion Williamson will make the all star team.**\\n\\n\\nI made a post earlier in the year, detailing the advanced college stats of every 1st round draft pick for the last 8 years. Zion\\u2019s advance numbers destroy even those of Anthony Davis, Kyrie Irving, and Karl Anthony Towns. I believe, even after dropping a 20 lbs, he will be one of the best defenders in the league and will have at least 2 5x5 games this season. No number 1 pick has had a better position than this kid and he seems to have a great head on his shoulders. Expect a 20/10 season with over .200 win shares / 48. \\n\\n\\n**Nikola Jokic will win the 2019-2020 MVP**\\n\\n\\nWhat more can I say about the best center in basketball? Can anyone honestly argue that a player is more important to their team than Nikola Jokic is to the Nuggets? He led centers in nearly every advanced stat last year in both the regular season and the playoffs. Nearly every play runs through this man. Expect Jokic to have a PER of at least 28 on a team that wins at least 52 games. \\n\\n\\n**6. The New Orleans Pelicans will make the playoffs**\\nIngram and Ball regressed when Lebron came to the team, but it\\u2019s understandable. Players that young can\\u2019t be expected to perform under so much spotlight. Plus, by mid year, they basically knew that Lebron was willing to trade all of them for AD. I think with less pressure, they will truly begin to thrive. \\n\\tLonzo is one of the fastest players in the NBA and has the potential to be an all NBA defender. I also think we will see major improvements in both his 3 point shooting and free throw shooting. Ingram also will improve on both ends of the court. Jrue has always been a good 2 way player and I think he\\u2019s an awesome veteran to have leading the young guys. Derrick Favors is one of the best defenders in the NBA, Reddick is still one of the leagues best and underrated sharpshooters, Hart will continue to develop and Zion is Zion. This team will be awesome to watch.\\n\\n\\n**5. Ayton will pull away from Luka Doncic.** \\n\\n\\n\\nI think Ayton\\u2019s rookie season was lost in the Luka hype last season. I know he\\u2019s not as entertaining and his story isn\\u2019t as good, but I would have given him rookie of the year over Luka, who had a much better team and didn\\u2019t make the playoffs either. \\nI believe Luka is much closer to his potential, having played many years of professional ball in Europe and not being very athletic, than Ayton is, who still has limitless potential with his skillset, size, and athleticism. \\nAfter 4 hours of research, I have still yet to find a player with Ayton\\u2019s PER and WS/48 numbers in his rookie year, 20.5 and .128 respectively, that isn\\u2019t in or that isn\\u2019t on his way to the hall of fame.\\n\\n\\n**4.The New York Knicks will make the playoffs**\\n\\nThis didn\\u2019t seem like a \\u201chot take\\u201d to me until after reading articles and forums, and watching sports networks and channels. \\nLet\\u2019s face it. The East is weak. The Knicks signed a bunch of solid players. And the team can\\u2019t afford another season of blatant tanking after a devastatingly disappointing free agency. How a team with Dennis Smith Jr, Bobby Portis, Elfrid Payton, Julius Randle, Taj Gibson, Wayne Ellington, Marcus Morris, Mitchell Robinson, Reggie Bullock, as well as a prospect like RJ Barrett is seen as a laughing stock is beyond me.\\n\\n\\n**3.Curry will have the worst season of his career from 3.**\\n\\nI have watched Curry athletically regress during the past few seasons. He does not get the separation he used to and he isn\\u2019t as quick. With KD gone, Klay injured for most if not all of the season, and an overrated and inefficient Deangelo Russel on the team, expect defenses to adapt the stop Curry at all costs philosophy. He won\\u2019t shoot less than 40%, but it will be close. Sadly, and even moreso because I am a huge fan of Curry, this is the beginning of the end for the vertically and defensively challenged superstar.\\n\\n\\n**2. Boston will represent the Eastern Conference in the finals.**\\n\\n\\nHayward can\\u2019t possibly be worse than he was last year and he did look very out of shape. I\\u2019m willing to give him a pass considering he broke his leg a season ago. I also think Jaylen and Tatum will do much better without Kyrie on the team, who was never a true leader or a guy to look up to. Thomas and Irving both had the best seasons of their career under Stevens\\u2014expect the same for Kemba, who is ready to start winning. Tatum is going be one of the best 3 and d players in the league in a couple of years and Jaylen can be the next Danny Green.\\n\\n\\n**1. The Los Angeles Lakers will lose in the first round 1 of the playoffs**.\\n\\n\\nI know I\\u2019ll get a lot of flack for this. I\\u2019ll be the first to admit how utterly impressed I was with how the Lakers were able to salvage such a bad situation after Leonard bamboozled them. Green and Cousins were amazing signings. However, I believe they will lose in the first round for a few reasons: \\n\\n* I do not believe the Lakers will get a t4 seed. I believe the Rockets, Jazz, Nuggets, Clippers, and Blazers will achieve better records in the regular season than the Lakers. Anthony Davis is injury prone. Couple this with forseen Lebron load management, and this means a more difficult 1st round matchup.\\n* Lebron teams almost always = drama. Expect some trades at the deadline.\\n* Sadly, Lebron\\u2019s decline has officially begun. He had career lows or close to it in multiple categories last year. WS/48 is almost always one of the first things to go if you analyze a player's career. \\n* I believe their depth after 7 is quite poor. Rondo, KCP, Bradley, and Troy Daniels are statistically among the worst players in the NBA. I also watched Kostas live at a summer league game last week and he is nowhere near NBA ready. I don't believe a 35 year old Lebron will be able to optimally perform playing 40+ minutes a game in the post season. \\n* This team will be very challenged defensively. \\n* The West is very stacked. Any team besides the 8th seed is a contender.\", \"author_fullname\": \"t2_bgfhm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cg7v0r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 2, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563793801.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E10. Portland will make a trade for Kevin Love and win over 50 games.\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDamian Lillard has solidified himself as a superstar and I love the addition of Hassan Whiteside, as I believe he is one of the most disrespected and underrated players in the NBA. With Nurkic coming back later in the season and much of their team the same as the team that won 49 games last year, I believe the Trailblazers believe they are one piece away from truly competing.\\n What better piece is that than Kevin Love? They are weak at the 4, Love\\u2019s trade value is at an all time low, yet there is no reason to believe he\\u2019s still not an all-star caliber player. He\\u2019d be a tremendous fit and asset to the team.\\u0026#39;\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E9. Houston will win the finals and lose less than 5 games on their way there.\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPeople are saying the era of the superteam is over, but I believe it simply moved from Golden State to Houston. When Harden and CP3 and Capela started together, they were 50-5. By most metrics, Westbrook is a heavy upgrade over CP3. Capela, is very underrated as well, but it\\u2019s understandable considering he was nearly unplayable vs the Warriors. However, with the Warriors gone, and an elite point guard that will stay healthy, I believe Capela will truly shine.\\nWestbrook, for the first time in his career, will buy into a team and its system and show humility. I fully expect Harden, Westbrook, and Capela to each have more than 10 win shares and 25 PER.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E8. Zion Williamson will make the all star team.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI made a post earlier in the year, detailing the advanced college stats of every 1st round draft pick for the last 8 years. Zion\\u2019s advance numbers destroy even those of Anthony Davis, Kyrie Irving, and Karl Anthony Towns. I believe, even after dropping a 20 lbs, he will be one of the best defenders in the league and will have at least 2 5x5 games this season. No number 1 pick has had a better position than this kid and he seems to have a great head on his shoulders. Expect a 20/10 season with over .200 win shares / 48. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ENikola Jokic will win the 2019-2020 MVP\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat more can I say about the best center in basketball? Can anyone honestly argue that a player is more important to their team than Nikola Jokic is to the Nuggets? He led centers in nearly every advanced stat last year in both the regular season and the playoffs. Nearly every play runs through this man. Expect Jokic to have a PER of at least 28 on a team that wins at least 52 games. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E6. The New Orleans Pelicans will make the playoffs\\u003C/strong\\u003E\\nIngram and Ball regressed when Lebron came to the team, but it\\u2019s understandable. Players that young can\\u2019t be expected to perform under so much spotlight. Plus, by mid year, they basically knew that Lebron was willing to trade all of them for AD. I think with less pressure, they will truly begin to thrive. \\n Lonzo is one of the fastest players in the NBA and has the potential to be an all NBA defender. I also think we will see major improvements in both his 3 point shooting and free throw shooting. Ingram also will improve on both ends of the court. Jrue has always been a good 2 way player and I think he\\u2019s an awesome veteran to have leading the young guys. Derrick Favors is one of the best defenders in the NBA, Reddick is still one of the leagues best and underrated sharpshooters, Hart will continue to develop and Zion is Zion. This team will be awesome to watch.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E5. Ayton will pull away from Luka Doncic.\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think Ayton\\u2019s rookie season was lost in the Luka hype last season. I know he\\u2019s not as entertaining and his story isn\\u2019t as good, but I would have given him rookie of the year over Luka, who had a much better team and didn\\u2019t make the playoffs either. \\nI believe Luka is much closer to his potential, having played many years of professional ball in Europe and not being very athletic, than Ayton is, who still has limitless potential with his skillset, size, and athleticism. \\nAfter 4 hours of research, I have still yet to find a player with Ayton\\u2019s PER and WS/48 numbers in his rookie year, 20.5 and .128 respectively, that isn\\u2019t in or that isn\\u2019t on his way to the hall of fame.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E4.The New York Knicks will make the playoffs\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis didn\\u2019t seem like a \\u201chot take\\u201d to me until after reading articles and forums, and watching sports networks and channels. \\nLet\\u2019s face it. The East is weak. The Knicks signed a bunch of solid players. And the team can\\u2019t afford another season of blatant tanking after a devastatingly disappointing free agency. How a team with Dennis Smith Jr, Bobby Portis, Elfrid Payton, Julius Randle, Taj Gibson, Wayne Ellington, Marcus Morris, Mitchell Robinson, Reggie Bullock, as well as a prospect like RJ Barrett is seen as a laughing stock is beyond me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E3.Curry will have the worst season of his career from 3.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have watched Curry athletically regress during the past few seasons. He does not get the separation he used to and he isn\\u2019t as quick. With KD gone, Klay injured for most if not all of the season, and an overrated and inefficient Deangelo Russel on the team, expect defenses to adapt the stop Curry at all costs philosophy. He won\\u2019t shoot less than 40%, but it will be close. Sadly, and even moreso because I am a huge fan of Curry, this is the beginning of the end for the vertically and defensively challenged superstar.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E2. Boston will represent the Eastern Conference in the finals.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHayward can\\u2019t possibly be worse than he was last year and he did look very out of shape. I\\u2019m willing to give him a pass considering he broke his leg a season ago. I also think Jaylen and Tatum will do much better without Kyrie on the team, who was never a true leader or a guy to look up to. Thomas and Irving both had the best seasons of their career under Stevens\\u2014expect the same for Kemba, who is ready to start winning. Tatum is going be one of the best 3 and d players in the league in a couple of years and Jaylen can be the next Danny Green.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E1. The Los Angeles Lakers will lose in the first round 1 of the playoffs\\u003C/strong\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI know I\\u2019ll get a lot of flack for this. I\\u2019ll be the first to admit how utterly impressed I was with how the Lakers were able to salvage such a bad situation after Leonard bamboozled them. Green and Cousins were amazing signings. However, I believe they will lose in the first round for a few reasons: \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EI do not believe the Lakers will get a t4 seed. I believe the Rockets, Jazz, Nuggets, Clippers, and Blazers will achieve better records in the regular season than the Lakers. Anthony Davis is injury prone. Couple this with forseen Lebron load management, and this means a more difficult 1st round matchup.\\u003C/li\\u003E\\n\\u003Cli\\u003ELebron teams almost always = drama. Expect some trades at the deadline.\\u003C/li\\u003E\\n\\u003Cli\\u003ESadly, Lebron\\u2019s decline has officially begun. He had career lows or close to it in multiple categories last year. WS/48 is almost always one of the first things to go if you analyze a player\\u0026#39;s career. \\u003C/li\\u003E\\n\\u003Cli\\u003EI believe their depth after 7 is quite poor. Rondo, KCP, Bradley, and Troy Daniels are statistically among the worst players in the NBA. I also watched Kostas live at a summer league game last week and he is nowhere near NBA ready. I don\\u0026#39;t believe a 35 year old Lebron will be able to optimally perform playing 40+ minutes a game in the post season. \\u003C/li\\u003E\\n\\u003Cli\\u003EThis team will be very challenged defensively. \\u003C/li\\u003E\\n\\u003Cli\\u003EThe West is very stacked. Any team besides the 8th seed is a contender.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cg7v0r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"waylandersc2_\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cg7v0r/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cg7v0r/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563765001.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"Moments of Triumph is upon us and while there is plenty to do if you want to grab that Triumphs T-Shirt before it's gone there is another deadline also fast approaching. The coveted Wayfarer Title comes with the opportunity to get a physical Pin to commemorate your achievement, but this pin will only be available until the end of August. With the moments of Triumph event also ending on the 27th August this could be a very busy month for people who like to grab physical goods for destiny.\\n\\nIf you haven't heard of the Wayfarer Title it's a reward for completing the majority of the PvE content in Year 1 + Forsaken and boy is it a grind, there is a mixture of time gated rewards needed as well as some that you'll just have to knuckle down and grind through. Due to the nature of the time gated gear it will soon be too late to start the wayfarer journey fresh if you want to get that physical Pin, in fact that is exactly why I'm making this guide, as Tuesdays weekly reset will put us in the last week to start fresh on wayfarer to make it for the deadline.\\n\\n*A disclaimer for this guide, a lot of my information on wayfarer was found following* [this brillia*nt guide*](https://www.reddit.com/r/DestinyTheGame/comments/9mgde2/a_comprehensive_guide_to_earning_the_wayfarer/) *by* [*/u/groggydog/*](https://www.reddit.com/user/groggydog/)*, my intention is to focus on completing wayfarer in the most efficient way possible and making it clear how each step works, none of the information in this guide was discovered by me.*\\n\\n# Quick Reference\\n\\nWith that out of the way, before l go in depth on all of the steps needed for the Wayfarer title I\\u2019m going to include a quick reference at the top to outline what you need to do each week, so if you don\\u2019t need my rambling explanation for each step this may be enough to get you going.\\n\\nEach week you should be doing the following:\\n\\n* 3 Lost Prophices (Ignoring repeats, until you have all 11)\\n* 1 Escalation Protocol Chest (For 5 weeks, until you have the full Midnight Exigent armour set)\\n* 1-3 Escalation Protocol boss drops (Only if the boss has IKELOS weapons you are missing)\\n* 1 Ascendant Challenge Time Trail (Semi-optional, until you\\u2019ve completed all 6 or pick up the \\u201cSecret Victories\\u201d Emblem elsewhere)\\n* Pray for Strange Terrain Nightfall (When it is offered as a nightfall grind until the Braytech Osprey drops)\\n* 23rd July Reset - 5 Titan Heroic Missions\\n* 6th August Reset - 5 EDZ Heroic Missions\\n* 13th August Reset - 5 Nessus Heroic Missions\\n* 27th August Reset (!!! Before the 31st !!!) - 5 Io Heroic Missions\\n\\nThe remaining items can be grinded at any time, with the exception of the Braytech weapons which are a daily limited grind.\\n\\n# Hard Gates\\n\\n**Heroic missions**\\n\\nOne of the two absolute hard time gates is the Heroic missions on the Original planets, you must complete 5 heroic missions on each however these missions are only available if the weekly flashpoint is on that planet, the flashpoint rotation with dates is as follows:\\n\\n\\\\-16th Mercury\\n\\n\\\\-23rd Titan\\n\\n\\\\-30th Mars\\n\\n\\\\-6th EDZ\\n\\n\\\\-13th Nessus\\n\\n\\\\-20th Tangled Shore\\n\\n\\\\-27th Io\\n\\nThis means with next week's rotation, that will be the last chance to get the Titan heroic missions.\\n\\nThe Mars and Mercury heroic missions can be done at any time by speaking to the vendors.\\n\\n\\u0026#x200B;\\n\\n**Braytech Osprey**\\n\\nThe other hard time gate is a little more worrying, one of Warmind\\u2019s Braytech weapons can only be dropped in the Strange Terrain Nightfall. Nightfall rotations are random and while, with 6 rotations before the deadline, there is a pretty good chance we will see Strange Terrain appear again, this is the one thing that may make this impossible to get for the deadline. For this one I'm really hoping Bungie will be gracious and give us one more chance at the osprey. Once Strange Terrain Appears on the Nightfall rotation you will have to keep playing it until the Braytech Osprey drops from the final chest.\\n\\n# Soft Gates\\n\\n**Lost Prophecies**\\n\\nTo begin collecting these weapons you must complete the campaign of Curse of Osiris, complete the 3 adventures and complete one Heroic adventure. At this point you will be given a tutorial prophecy that will be added to the consumable tab of your inventory (Where you will also find all materials required to complete the Prophecies ), to complete it you must collect the materials listed in its description and use them to complete the prophecy, return to Brother Vance and then bring it to the weapon forge (Big white laser on the left hand side of the lighthouse). This is the process you will follow for all the prophecies, bar the 11th which will have you running around completing some story missions however the steps to complete it will be made very clear. Each material and how to collect them is listed below:\\n\\n\\\\- Paradox Amplifier, From Strikes, Crucible matches and Mercury heroic adventures\\n\\n\\\\- Fossilised Hermaion, From Nightfalls, Trials of the Nine matches (lol) and Vangaurd Strikes\\n\\n\\\\-Radiolarian Culture, From Public events and Chests\\n\\n(For Paradox Amplifier and Radiolarian Culture you will need to gather 10 then talk to Brother Vance to condense them, there is also a very small chance of a condensed version dropping from any source)\\n\\nYou should be working on these each week as after the intro and not counting the 11th prophecy there are 9 weapons to collect with 1-3 offered each week. Make sure to wait until the end of the week to complete your last prophecy as you can stockpile materials for later weeks as long as you have an active prophecy in your inventory. Upon collecting all the weapons you will also be rewarded with a ghost shell, which goes towards the Destinations badge too.\\n\\n\\u0026#x200B;\\n\\n**IKELOS Weapons**\\n\\nWarmind\\u2019s Escalation Protocols have 2 sets of drops that you need to worry about each week, the easier of the two is the IKELOS weapons, the final boss of wave 7 have a chance to drop these weapons (Except the Hand Cannon which is part of the exotic quests), the catch here is certain bosses drop certain weapons with a few that drop them all. Once you reach wave 7 and beat the boss you can immediately Restart from that wave which makes this grind MUCH easier. The weapon dropped by each boss is helpfully included in the subreddits weekly reset infographic.\\n\\n\\u0026#x200B;\\n\\n**Midnight Exigent Armour**\\n\\nFor the Escalation Protocol armour, you only get one chance at an armour piece a week and to get it you first need to collect 7 key pieces and turn them into Ana Bray to get a uncharged key, they run through 7 EP waves to charge it, then use it on the chest that spawns at the end of wave 7. You can stack charged keys and any wave can be used to charge the key, so a reasonable idea would be to charge one key each week but only doing the easier starting waves of EP (The waves can be reset by jumping between the two different EP areas) and when a Boss that you need to kill for a IKELOS weapon shows up on weekly reset, pop open the chests while you grind it. To be clear here, the weekly limit is on CRAFTING the keys, so you only really need to craft and charge one key per week (You cannot stack uncharged keys so it must be charged to leave space to craft a key next week)\\n\\n\\u0026#x200B;\\n\\n**Secret Victories Emblem**\\n\\nAll but one of the items required for the Destinations: Forsaken badge can be fairly easily picked up by completing the forsaken campaign and doing activated in the Tangled Shore and Dreaming city, however the \\u201cSecret Victories\\u201d emblem is more illusive than the rest, there are two known ways to get it. For a guaranteed drop you can complete the time trials in the ascendant challenges each week, guides for these can be found elsewhere, however if you just want to get this badge completed ASAP and forget about the dreaming city the emblem has a chance of dropping from blind well runs, so you can grind these out till you see it drop.\\n\\n# The Grind\\n\\n**Wanted - Lost Sectors + Extra Lost Sectors**\\n\\nLet\\u2019s start with the easiest of the challenges left, lost sectors. You will have to complete every lost sector in the game, bar 3 on the EDZ (Hallowed Grove, Atrium, Scavenger's Den) and one on the tangled shore (Empty Tank). For the year 1 sectors the specific requirement is to kill the Wanted enemy, so even if you have done these in the past you\\u2019ll have to re-play them. [Here is a guide for where each wanted enemy can be found](https://www.reddit.com/r/DestinyTheGame/comments/9g1dzo/maps_of_all_wanted_spider_contracts_english) by [/u/jbpatout](https://www.reddit.com/u/jbpatout/)\\n\\n\\u0026#x200B;\\n\\n**Destinations: Red War**\\n\\nAnother easy challenge to clear, if a bit time-consuming, is the Destinations: Red War badge. This badge required you to collect the full armour sets from all the base game vendors, which can be achieved by turning in planetary materials with the vendors on each planet. It takes a total of 10 reward engrams to unlock all armour pieces, but if you are lucky enough to get a helmet or even a helmet + Chest piece you can skip unlocking the last few armour pieces, so make sure to keep an eye out for this. Also remember you can pick up planetary materials from The Spider with his inventory changing daily.\\n\\n\\u0026#x200B;\\n\\n**Destinations: Forsaken**\\n\\nI briefly mentioned it earlier but all items in the Destinations: Forsaken Badge can be obtained from simply completing activities and challenges in the Tangled Shore and Dreaming city, each with their own loot pool. The only piece with a specific drop is the \\u201cSecret Victories\\u201d emblem mentioned earlier.\\n\\n\\u0026#x200B;\\n\\n**Destinations: Curse of Osiris and Warmind**\\n\\nThis is where the majority of the work required for Wayfarer is found, however we have already covered a lot of the items needed for this badge. It includes the lost prophecy weapons + ghost and the escalation protocol weapons + armour. Another 10 pieces can be acquired from the vendors the same way you would from the base game vendors. This leaves us with 6 pieces left, 2 exotic quests and 4 weapons obtained from the Warmind sleeper nodes.\\n\\n* **Polaris Lance**\\n\\nFirst is the Polaris lance, which can be obtained from step 4 in the Nascent Dawn quest. This quest, along side the Violent Intel quest, will be given to you after completing the warmind campaign. This is a fairly long quest and while the steps are all self-explanatory, [a full guide can be found here if you\\u2019re stuck](https://www.eurogamer.net/articles/2018-06-06-destiny-2-nascent-dawn-quest-5-polaris-lance-5782)\\n\\n\\u0026#x200B;\\n\\n* **Sleeper Stimulant + Braytech Weapons**\\n\\nThe final Exotic quest and 4 Sleeper node weapons are best worked on in parallel. You should receive the Violent Intel quest alongside Nascent Dawn upon completion of the Warmind Campaign and again, the steps are fairly self-explanatory but, [here\\u2019s a guide if you get stuck](https://www.guidestash.com/guide/destiny-2/how-to-get-sleeper-simulant-in-destiny-2/). Once you get to the \\u201cNodes and Protocols\\u201d step it\\u2019s time to start picking up those Sleeper node weapons. To access a sleeper node you first need 4 resonant stems, which can be acquired from Patrols, Public Events, Lost Sectors and High-Value Targets. Once you have 4 you combine them in the consumables inventory into an override frequency which gives a cryptic clue to the nodes location, a quick google will reveal exactly where it is. Each node has a chance to give you a Braytech Schematic, with only one Schematic dropping per daily reset. Each schematic will drop one of the Braytech weapons (Bar the Osprey, mentioned earlier), however the drop is random and can give duplicates so it\\u2019s very likely to take more than 4 schematics to get all 4 weapons. If your lucky you will have all 4 after completing the 15 required for the quest, but don\\u2019t be surprised if you\\u2019re grinding nodes well past these 15. Just remember to stop opening nodes after getting a schematic and wait until after the daily reset to open any more. While you wait you can collect the copious amounts of resonant stems you\\u2019ll need for all the nodes.\\n\\n\\u0026#x200B;\\n\\nAnd that\\u2019s it. If all goes to plan you should be quickly grinding out those last 5 missions on the dawn of the 27th August reset and jumping on to Bungies store to claim your Pin. I hope luck favours you and you don\\u2019t lose hope during this journey. And mostly I just hope Strange Terrain Nightfall appears in the next few weeks.\", \"author_fullname\": \"t2_2uxh9hvx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cg4o33\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563747758.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563775081.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMoments of Triumph is upon us and while there is plenty to do if you want to grab that Triumphs T-Shirt before it\\u0026#39;s gone there is another deadline also fast approaching. The coveted Wayfarer Title comes with the opportunity to get a physical Pin to commemorate your achievement, but this pin will only be available until the end of August. With the moments of Triumph event also ending on the 27th August this could be a very busy month for people who like to grab physical goods for destiny.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf you haven\\u0026#39;t heard of the Wayfarer Title it\\u0026#39;s a reward for completing the majority of the PvE content in Year 1 + Forsaken and boy is it a grind, there is a mixture of time gated rewards needed as well as some that you\\u0026#39;ll just have to knuckle down and grind through. Due to the nature of the time gated gear it will soon be too late to start the wayfarer journey fresh if you want to get that physical Pin, in fact that is exactly why I\\u0026#39;m making this guide, as Tuesdays weekly reset will put us in the last week to start fresh on wayfarer to make it for the deadline.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EA disclaimer for this guide, a lot of my information on wayfarer was found following\\u003C/em\\u003E \\u003Ca href=\\\"https://www.reddit.com/r/DestinyTheGame/comments/9mgde2/a_comprehensive_guide_to_earning_the_wayfarer/\\\"\\u003Ethis brillia\\u003Cem\\u003Ent guide\\u003C/em\\u003E\\u003C/a\\u003E \\u003Cem\\u003Eby\\u003C/em\\u003E \\u003Ca href=\\\"https://www.reddit.com/user/groggydog/\\\"\\u003E\\u003Cem\\u003E/u/groggydog/\\u003C/em\\u003E\\u003C/a\\u003E\\u003Cem\\u003E, my intention is to focus on completing wayfarer in the most efficient way possible and making it clear how each step works, none of the information in this guide was discovered by me.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EQuick Reference\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EWith that out of the way, before l go in depth on all of the steps needed for the Wayfarer title I\\u2019m going to include a quick reference at the top to outline what you need to do each week, so if you don\\u2019t need my rambling explanation for each step this may be enough to get you going.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEach week you should be doing the following:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E3 Lost Prophices (Ignoring repeats, until you have all 11)\\u003C/li\\u003E\\n\\u003Cli\\u003E1 Escalation Protocol Chest (For 5 weeks, until you have the full Midnight Exigent armour set)\\u003C/li\\u003E\\n\\u003Cli\\u003E1-3 Escalation Protocol boss drops (Only if the boss has IKELOS weapons you are missing)\\u003C/li\\u003E\\n\\u003Cli\\u003E1 Ascendant Challenge Time Trail (Semi-optional, until you\\u2019ve completed all 6 or pick up the \\u201cSecret Victories\\u201d Emblem elsewhere)\\u003C/li\\u003E\\n\\u003Cli\\u003EPray for Strange Terrain Nightfall (When it is offered as a nightfall grind until the Braytech Osprey drops)\\u003C/li\\u003E\\n\\u003Cli\\u003E23rd July Reset - 5 Titan Heroic Missions\\u003C/li\\u003E\\n\\u003Cli\\u003E6th August Reset - 5 EDZ Heroic Missions\\u003C/li\\u003E\\n\\u003Cli\\u003E13th August Reset - 5 Nessus Heroic Missions\\u003C/li\\u003E\\n\\u003Cli\\u003E27th August Reset (!!! Before the 31st !!!) - 5 Io Heroic Missions\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThe remaining items can be grinded at any time, with the exception of the Braytech weapons which are a daily limited grind.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EHard Gates\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EHeroic missions\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne of the two absolute hard time gates is the Heroic missions on the Original planets, you must complete 5 heroic missions on each however these missions are only available if the weekly flashpoint is on that planet, the flashpoint rotation with dates is as follows:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-16th Mercury\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-23rd Titan\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-30th Mars\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-6th EDZ\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-13th Nessus\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-20th Tangled Shore\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-27th Io\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis means with next week\\u0026#39;s rotation, that will be the last chance to get the Titan heroic missions.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe Mars and Mercury heroic missions can be done at any time by speaking to the vendors.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EBraytech Osprey\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe other hard time gate is a little more worrying, one of Warmind\\u2019s Braytech weapons can only be dropped in the Strange Terrain Nightfall. Nightfall rotations are random and while, with 6 rotations before the deadline, there is a pretty good chance we will see Strange Terrain appear again, this is the one thing that may make this impossible to get for the deadline. For this one I\\u0026#39;m really hoping Bungie will be gracious and give us one more chance at the osprey. Once Strange Terrain Appears on the Nightfall rotation you will have to keep playing it until the Braytech Osprey drops from the final chest.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003ESoft Gates\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ELost Prophecies\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo begin collecting these weapons you must complete the campaign of Curse of Osiris, complete the 3 adventures and complete one Heroic adventure. At this point you will be given a tutorial prophecy that will be added to the consumable tab of your inventory (Where you will also find all materials required to complete the Prophecies ), to complete it you must collect the materials listed in its description and use them to complete the prophecy, return to Brother Vance and then bring it to the weapon forge (Big white laser on the left hand side of the lighthouse). This is the process you will follow for all the prophecies, bar the 11th which will have you running around completing some story missions however the steps to complete it will be made very clear. Each material and how to collect them is listed below:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Paradox Amplifier, From Strikes, Crucible matches and Mercury heroic adventures\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E- Fossilised Hermaion, From Nightfalls, Trials of the Nine matches (lol) and Vangaurd Strikes\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-Radiolarian Culture, From Public events and Chests\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(For Paradox Amplifier and Radiolarian Culture you will need to gather 10 then talk to Brother Vance to condense them, there is also a very small chance of a condensed version dropping from any source)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou should be working on these each week as after the intro and not counting the 11th prophecy there are 9 weapons to collect with 1-3 offered each week. Make sure to wait until the end of the week to complete your last prophecy as you can stockpile materials for later weeks as long as you have an active prophecy in your inventory. Upon collecting all the weapons you will also be rewarded with a ghost shell, which goes towards the Destinations badge too.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EIKELOS Weapons\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWarmind\\u2019s Escalation Protocols have 2 sets of drops that you need to worry about each week, the easier of the two is the IKELOS weapons, the final boss of wave 7 have a chance to drop these weapons (Except the Hand Cannon which is part of the exotic quests), the catch here is certain bosses drop certain weapons with a few that drop them all. Once you reach wave 7 and beat the boss you can immediately Restart from that wave which makes this grind MUCH easier. The weapon dropped by each boss is helpfully included in the subreddits weekly reset infographic.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EMidnight Exigent Armour\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the Escalation Protocol armour, you only get one chance at an armour piece a week and to get it you first need to collect 7 key pieces and turn them into Ana Bray to get a uncharged key, they run through 7 EP waves to charge it, then use it on the chest that spawns at the end of wave 7. You can stack charged keys and any wave can be used to charge the key, so a reasonable idea would be to charge one key each week but only doing the easier starting waves of EP (The waves can be reset by jumping between the two different EP areas) and when a Boss that you need to kill for a IKELOS weapon shows up on weekly reset, pop open the chests while you grind it. To be clear here, the weekly limit is on CRAFTING the keys, so you only really need to craft and charge one key per week (You cannot stack uncharged keys so it must be charged to leave space to craft a key next week)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESecret Victories Emblem\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll but one of the items required for the Destinations: Forsaken badge can be fairly easily picked up by completing the forsaken campaign and doing activated in the Tangled Shore and Dreaming city, however the \\u201cSecret Victories\\u201d emblem is more illusive than the rest, there are two known ways to get it. For a guaranteed drop you can complete the time trials in the ascendant challenges each week, guides for these can be found elsewhere, however if you just want to get this badge completed ASAP and forget about the dreaming city the emblem has a chance of dropping from blind well runs, so you can grind these out till you see it drop.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EThe Grind\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWanted - Lost Sectors + Extra Lost Sectors\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELet\\u2019s start with the easiest of the challenges left, lost sectors. You will have to complete every lost sector in the game, bar 3 on the EDZ (Hallowed Grove, Atrium, Scavenger\\u0026#39;s Den) and one on the tangled shore (Empty Tank). For the year 1 sectors the specific requirement is to kill the Wanted enemy, so even if you have done these in the past you\\u2019ll have to re-play them. \\u003Ca href=\\\"https://www.reddit.com/r/DestinyTheGame/comments/9g1dzo/maps_of_all_wanted_spider_contracts_english\\\"\\u003EHere is a guide for where each wanted enemy can be found\\u003C/a\\u003E by \\u003Ca href=\\\"https://www.reddit.com/u/jbpatout/\\\"\\u003E/u/jbpatout\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDestinations: Red War\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnother easy challenge to clear, if a bit time-consuming, is the Destinations: Red War badge. This badge required you to collect the full armour sets from all the base game vendors, which can be achieved by turning in planetary materials with the vendors on each planet. It takes a total of 10 reward engrams to unlock all armour pieces, but if you are lucky enough to get a helmet or even a helmet + Chest piece you can skip unlocking the last few armour pieces, so make sure to keep an eye out for this. Also remember you can pick up planetary materials from The Spider with his inventory changing daily.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDestinations: Forsaken\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI briefly mentioned it earlier but all items in the Destinations: Forsaken Badge can be obtained from simply completing activities and challenges in the Tangled Shore and Dreaming city, each with their own loot pool. The only piece with a specific drop is the \\u201cSecret Victories\\u201d emblem mentioned earlier.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDestinations: Curse of Osiris and Warmind\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is where the majority of the work required for Wayfarer is found, however we have already covered a lot of the items needed for this badge. It includes the lost prophecy weapons + ghost and the escalation protocol weapons + armour. Another 10 pieces can be acquired from the vendors the same way you would from the base game vendors. This leaves us with 6 pieces left, 2 exotic quests and 4 weapons obtained from the Warmind sleeper nodes.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EPolaris Lance\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EFirst is the Polaris lance, which can be obtained from step 4 in the Nascent Dawn quest. This quest, along side the Violent Intel quest, will be given to you after completing the warmind campaign. This is a fairly long quest and while the steps are all self-explanatory, \\u003Ca href=\\\"https://www.eurogamer.net/articles/2018-06-06-destiny-2-nascent-dawn-quest-5-polaris-lance-5782\\\"\\u003Ea full guide can be found here if you\\u2019re stuck\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003ESleeper Stimulant + Braytech Weapons\\u003C/strong\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EThe final Exotic quest and 4 Sleeper node weapons are best worked on in parallel. You should receive the Violent Intel quest alongside Nascent Dawn upon completion of the Warmind Campaign and again, the steps are fairly self-explanatory but, \\u003Ca href=\\\"https://www.guidestash.com/guide/destiny-2/how-to-get-sleeper-simulant-in-destiny-2/\\\"\\u003Ehere\\u2019s a guide if you get stuck\\u003C/a\\u003E. Once you get to the \\u201cNodes and Protocols\\u201d step it\\u2019s time to start picking up those Sleeper node weapons. To access a sleeper node you first need 4 resonant stems, which can be acquired from Patrols, Public Events, Lost Sectors and High-Value Targets. Once you have 4 you combine them in the consumables inventory into an override frequency which gives a cryptic clue to the nodes location, a quick google will reveal exactly where it is. Each node has a chance to give you a Braytech Schematic, with only one Schematic dropping per daily reset. Each schematic will drop one of the Braytech weapons (Bar the Osprey, mentioned earlier), however the drop is random and can give duplicates so it\\u2019s very likely to take more than 4 schematics to get all 4 weapons. If your lucky you will have all 4 after completing the 15 required for the quest, but don\\u2019t be surprised if you\\u2019re grinding nodes well past these 15. Just remember to stop opening nodes after getting a schematic and wait until after the daily reset to open any more. While you wait you can collect the copious amounts of resonant stems you\\u2019ll need for all the nodes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd that\\u2019s it. If all goes to plan you should be quickly grinding out those last 5 missions on the dawn of the 27th August reset and jumping on to Bungies store to claim your Pin. I hope luck favours you and you don\\u2019t lose hope during this journey. And mostly I just hope Strange Terrain Nightfall appears in the next few weeks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/d7z92SwDIz7TqTlkL_X8brNtnR0GgnushlpOg5HDQKw.jpg?auto=webp\\u0026s=b3f1f2c54f9721574ba6143aa22f97f0d342ca48\", \"width\": 1200, \"height\": 673}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/d7z92SwDIz7TqTlkL_X8brNtnR0GgnushlpOg5HDQKw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5ae231e317a24086d16084aae52b0826cc0c7fe1\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/d7z92SwDIz7TqTlkL_X8brNtnR0GgnushlpOg5HDQKw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=75eaf4ccf9123cecf7c7484fa5c6b31f9c12cb57\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/d7z92SwDIz7TqTlkL_X8brNtnR0GgnushlpOg5HDQKw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=93e7d1b98d1517c63645a39d33d61421190ccc35\", \"width\": 320, \"height\": 179}, {\"url\": \"https://external-preview.redd.it/d7z92SwDIz7TqTlkL_X8brNtnR0GgnushlpOg5HDQKw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=6007022dfae4682814122087bf437703802e7e6f\", \"width\": 640, \"height\": 358}, {\"url\": \"https://external-preview.redd.it/d7z92SwDIz7TqTlkL_X8brNtnR0GgnushlpOg5HDQKw.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=dbfa4c8ed574eb11976f138fc34f43ced6449273\", \"width\": 960, \"height\": 538}, {\"url\": \"https://external-preview.redd.it/d7z92SwDIz7TqTlkL_X8brNtnR0GgnushlpOg5HDQKw.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=13aaf2b1369cfa8efdbfc729e63d4828da2ac128\", \"width\": 1080, \"height\": 605}], \"variants\": {}, \"id\": \"AnUAkb2RmKo1IslSQM-lFudJ_rZq-wHlycm0lrBvD5w\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cg4o33\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WayfarerGuide\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cg4o33/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cg4o33/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563746281.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"I've played a few games now and one of the main sticking points rules-wise has been the blast rule. I don't think it's very well written. I'd like to understand how others are interpreting it, as the rule as written seems wrong.\\n\\nI was surprised not to see anything about it in the FAQ, though I did see that someone asked this question in James Hewitt's AMA session. \\n\\nThe bit that is problematic for me is the first paragraph in the blast rule. It starts by talking about placing the blast template (which is all pretty sensible) but it then goes on to say :\\n\\n\\u003EThen, check to see whether the central hole is within range and arc. If it is not within arc, the shot is wasted and has no effect. If it is not within range, do not roll to hit - each shot will scatter as follows:\", \"author_fullname\": \"t2_4x02s\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cg4hp9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563774099.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve played a few games now and one of the main sticking points rules-wise has been the blast rule. I don\\u0026#39;t think it\\u0026#39;s very well written. I\\u0026#39;d like to understand how others are interpreting it, as the rule as written seems wrong.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was surprised not to see anything about it in the FAQ, though I did see that someone asked this question in James Hewitt\\u0026#39;s AMA session. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe bit that is problematic for me is the first paragraph in the blast rule. It starts by talking about placing the blast template (which is all pretty sensible) but it then goes on to say :\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EThen, check to see whether the central hole is within range and arc. If it is not within arc, the shot is wasted and has no effect. If it is not within range, do not roll to hit - each shot will scatter as follows:\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cg4hp9\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"scottmmmm\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cg4hp9/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cg4hp9/test/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563745299.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\\\\[this vid\\\\]([http://www.youtube.com/watch?v=aqTScsC7Dis](https://www.youtube.com/watch?v=aqTScsC7Dis))\", \"author_fullname\": \"t2_drgr31\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"TEST HYPERLINK\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cfyf3k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563740395.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[this vid](\\u003Ca href=\\\"https://www.youtube.com/watch?v=aqTScsC7Dis\\\"\\u003Ehttp://www.youtube.com/watch?v=aqTScsC7Dis\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/5UtCICneUPNYC0wVFMMh8sc6QaVeGi6auDp5crelnRw.jpg?auto=webp\\u0026s=cd54f2fe52a03e1b7ba8a2ef90824d003d3761a1\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/5UtCICneUPNYC0wVFMMh8sc6QaVeGi6auDp5crelnRw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7c0b9e10aedbc780403120ac8f6a2a8c4b8f5161\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/5UtCICneUPNYC0wVFMMh8sc6QaVeGi6auDp5crelnRw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6a9cc61389dfd2e054fb5a51ab6a02d4391ae02d\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/5UtCICneUPNYC0wVFMMh8sc6QaVeGi6auDp5crelnRw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1c7e9ffe6f15ab839713c86b3e5e28e08a9d6cbd\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"v_QpCe3mLFDyzf4rCx6pq_oqMYVo5i5PHgMVNeZemD0\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cfyf3k\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"WarrenL24\", \"num_crossposts\": 0, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cfyf3k/test_hyperlink/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563711595.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_kk45xsk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Test\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"hide_score\": false, \"name\": \"t3_cfur04\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/axo7UC0hUIscnZpxQnIIh0Tr4ziEBrk7hOhI1arrtSw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563709140.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"twitch.tv\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/EYmy8JgoGBbi708LPDuYbO2q4JYhTAhwW76XS4jdFDs.jpg?auto=webp\\u0026s=4630c1e09279a60b75f74a69f0aaf54cb2595fff\", \"width\": 640, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/EYmy8JgoGBbi708LPDuYbO2q4JYhTAhwW76XS4jdFDs.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=722260f18f805d86d7972d9495429fa4f1d2f730\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/EYmy8JgoGBbi708LPDuYbO2q4JYhTAhwW76XS4jdFDs.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=84b192c2984daf49b377bafe628b87e1e2fdcba2\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/EYmy8JgoGBbi708LPDuYbO2q4JYhTAhwW76XS4jdFDs.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=6b72f1e7096aea702cac7154caa0b844cfe941cb\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/EYmy8JgoGBbi708LPDuYbO2q4JYhTAhwW76XS4jdFDs.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5579d41457eeef4e848fc24ee2504046faf3baea\", \"width\": 640, \"height\": 360}], \"variants\": {}, \"id\": \"0h_5Zf80EbYix7I4Ia6etbzneyqfvrvUgqlvjzQYJog\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cfur04\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"LotharOfHillPeople3\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cfur04/test/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.twitch.tv/videos/341618120\", \"subreddit_subscribers\": 777, \"created_utc\": 1563680340.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"[SCP-4517](http://www.scp-wiki.net/scp-4517) - Not Very \\ud835\\udca9\\n\\nAUTHOR: MaliceAforethought\\nCONTAINMENT LEVEL: Safe\\n***\\n'nother mind twister, eh? Hopefully, this one isn't too complex of an article to understand.\\n\\n***\\n***\\n\\n\\u003ESCP-4517 is located in the bathtub of a three-room apartment in Leeds, England. It measures 170 centimetres in length, has a mass of 55 kilograms, and possesses no subjective properties or qualities.\\n\\nThe SCP itself is actually quite simple: it can not be fully or accurately articulated in any non-objective measures - It is measured to weigh a certain amount, but we can't say if it's, uh, cute or not.\\n\\n\\u003EWhile human comprehension of SCP-4517 is obtainable, the only accurate descriptions of it not based on objective measurements refer indirectly to the inability to describe it. \\n\\nMeaning the viewer's inability to describe SCP-4517 is the sole accurate, if roundabout, subjective descriptor of its anomalous properties.\\n\\n\\u003EResearchers are advised to note that SCP-4517 is not indescribable, as that would allow it to be described as such \\u2014 rather, it simply does not possess any qualities that are themselves able to be described.\\n\\nPretty self-explanatory. 4517 can't be said to be indescribable, as that is a quality that 4517 *doesn't possess* (bit of an oxymoron, if anything.) Whatever qualities it does exhibit, however, can't be meaningfully articulated within the scope of human lexicon.\\n\\n***\\n\\nSo how do they approach this in term of qualitating it? By coining \\ud835\\udca9ness, of course!\\n\\n\\u003E\\ud835\\udca9ness (as it has been termed by DoMc researchers) is an objective-relative (and presumably ordinarily subjective) quality possessed by all existent entities, quantifiable by comparing the entity in question with SCP-4517, which acts as a baseline with an \\ud835\\udca9ness of zero.\\n\\nAs stated, \\ud835\\udca9ness is a quality that is intrinsic to all extant entities, which will be evaluated against 4517 as the 'zero' baseline.\\n\\n\\u003EResearch into the exact nature of the quality is ongoing.\\n\\nWhat \\ud835\\udca9ness represents is unclear, but I can assume that it exists in terms of, or closely associates with objective standards, but is otherwise a measure of some subjective quantifications. \\n\\n4517 being zero means that it's not \\ud835\\udca9 at all, so would that count as its quality? Hmm...\\n\\n***\\n\\nUp next, the **test log**. A surface-level observation is that \\ud835\\udca9ness appears to scale with the complexity of a subject .i.e. an apple is more complex than a pen, and the car outstrips both.\\n\\n\\u003E\\u00a310 note - 40\\n\\n\\u003EInvestment portfolio valued at ~\\u00a3200,000 - 90,880\\n\\n\\ud835\\udca9ness appears to be influenced by monetary value, with higher value being more \\ud835\\udca9.\\n\\n\\u003EResearcher Griffith - 22,140,000\\n\\n\\u003ESenior Researcher Lester - 30,090,000\\n\\nIt would seem that experience/seniority/ranking also increases your \\ud835\\udca9ness.\\n\\n\\u003ED-00340 (Former criminal, convicted for repeated arson; experienced pianist) - 912,300\\n\\n\\u003ED-00341 (Former criminal, convicted for multiple counts of murder) - 144,600\\n\\nLikewise, but a pianist this time.\\n\\n\\u003EStuffed toy (New, in packaging) - 87\\n\\n\\u003EStuffed toy (Recovered from same apartment as SCP-4517, extremely worn; age estimated at \\u003E15 years) - 2,300\\n\\nAs is object backed with lot of history.\\n\\n\\u003EDamien Pisk (Last known resident of the apartment housing SCP-4517) - 0\\n\\nHere comes a real hecking anomaly (ha) of this system. \\n\\nAn \\ud835\\udca9ness of zero? The same as SCP-4517 itself? Hmm... Either that Mr. Damian suffered the same affliction as 4517, or perhaps a likelier explanation: someone that measures at 170cm tall and weighs 55kg, Damien Pisk *is* SCP-4517.\\n\\nOr *was*? Considering \\\"SCP-4517 resembles Damien Pisk.\\\" isn't a subjectively accurate statement according to the article, something must've divorced the concept and perception of Pisk from his body, leading to the researcher unable to recognize it as such.\\n\\nFrom MaliceAforethought themselves: *\\\"The effect here is neither memetic nor antimemetic; it is, in fact ontological. They can't recognise SCP-4517 as Pisk because the anomaly does not possess that quality any more \\u2014 it's not hiding it, it's just not there. It's not an issue that's in our heads, it's an issue that's in the world.\\\"*\\n\\n\\u003ELangdon Pisk (Mathematician and brother of the aforementioned, formerly working at Durham University, England) - *COMPARISON REJECTED; INTEGER OVERFLOW*\\n\\nAnd then there's *this* guy. Depending on the kind of integer the Foundation uses, Langdon Pisk's \\ud835\\udca9ness registers in excess of either *4 billion* or *18 quintillion*. Unless Damian's brother is the Administrator or the secret Supergod\\u2122 of the SCPverse, I'm beginning to think this measurement is biased.\\n\\n***\\n\\n**What is \\ud835\\udca9ness?**\\n\\nFrankly, in-universe-wise, I'm not sure. And I probably can't articulate it accurately either - MaliceAforethought: *\\\"It's the same problem with \\ud835\\udca9ness: it is fundamentally not any of those concepts you mentioned. It might have been, at one point, but not any more. The Foundation could very well provide details about what the two (4517 and \\ud835\\udca9ness) are, but they would (by definition) be inaccurate.\\\"*\\n\\nThankfully, [we](http://www.scp-wiki.net/sandrewswann-s-proposal) exist on the other side of the screen, so I think I can tell what \\ud835\\udca9ness represents within the context of this narrative: it's worth. \\n\\n\\ud835\\udca9ness is the measure of something's worth.\\n\\nA ball-point pen isn't worth a whole lot, and can easily be replaced. So is a stuffed toy, at least a new one - an old, well-worn one definitely have a lot more sentimental value for someone, therefore more worth.\\n\\nBoth D-classes is considered less important than the researchers, but the one with pianist experience is considered better than the murderer. See where I'm getting at?\\n\\nOf course, rememebr how I said \\ud835\\udca9ness is otherwise a measure of some subjective quantifications? This is where the Pisk brothers come in, and where \\ud835\\udca9ness hits its objective-relative wall: **How do you really measure your own worth?**\\n\\nSociety may tell you that your worth is what you make of them, but how much of that is really the case? Can you look at your worthless self and say you can make something out of it, compared to your infinitely more successful brother, someone whose shadow you live in?\\n\\nUsing Damian's body as a baseline heavily skews its own perception when it has to compare both itself and its brother, after all.\\n\\n***\\n***\\n\\n**CONCLUSION**\\n\\nSCP-4517 is a minimal, yet deep insight into how distorted your self-worth can become when you live in someone's shadow, not helped by the fact that society can, and will, make that comparison, pushing them to a deep end where they have already resigned themselves to their inescapable fate.\\n\\n*tl;dr: invest in stock market*\", \"author_fullname\": \"t2_2j4j6rg7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"test4517\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"hide_score\": false, \"name\": \"t3_cfuk8r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"self\", \"edited\": 1563680082.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1563707842.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.PostPreview\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.scp-wiki.net/scp-4517\\\"\\u003ESCP-4517\\u003C/a\\u003E - Not Very \\ud835\\udca9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAUTHOR: MaliceAforethought\\nCONTAINMENT LEVEL: Safe\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u0026#39;nother mind twister, eh? Hopefully, this one isn\\u0026#39;t too complex of an article to understand.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESCP-4517 is located in the bathtub of a three-room apartment in Leeds, England. It measures 170 centimetres in length, has a mass of 55 kilograms, and possesses no subjective properties or qualities.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThe SCP itself is actually quite simple: it can not be fully or accurately articulated in any non-objective measures - It is measured to weigh a certain amount, but we can\\u0026#39;t say if it\\u0026#39;s, uh, cute or not.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EWhile human comprehension of SCP-4517 is obtainable, the only accurate descriptions of it not based on objective measurements refer indirectly to the inability to describe it. \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EMeaning the viewer\\u0026#39;s inability to describe SCP-4517 is the sole accurate, if roundabout, subjective descriptor of its anomalous properties.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EResearchers are advised to note that SCP-4517 is not indescribable, as that would allow it to be described as such \\u2014 rather, it simply does not possess any qualities that are themselves able to be described.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EPretty self-explanatory. 4517 can\\u0026#39;t be said to be indescribable, as that is a quality that 4517 \\u003Cem\\u003Edoesn\\u0026#39;t possess\\u003C/em\\u003E (bit of an oxymoron, if anything.) Whatever qualities it does exhibit, however, can\\u0026#39;t be meaningfully articulated within the scope of human lexicon.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003ESo how do they approach this in term of qualitating it? By coining \\ud835\\udca9ness, of course!\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\ud835\\udca9ness (as it has been termed by DoMc researchers) is an objective-relative (and presumably ordinarily subjective) quality possessed by all existent entities, quantifiable by comparing the entity in question with SCP-4517, which acts as a baseline with an \\ud835\\udca9ness of zero.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAs stated, \\ud835\\udca9ness is a quality that is intrinsic to all extant entities, which will be evaluated against 4517 as the \\u0026#39;zero\\u0026#39; baseline.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EResearch into the exact nature of the quality is ongoing.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EWhat \\ud835\\udca9ness represents is unclear, but I can assume that it exists in terms of, or closely associates with objective standards, but is otherwise a measure of some subjective quantifications. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E4517 being zero means that it\\u0026#39;s not \\ud835\\udca9 at all, so would that count as its quality? Hmm...\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003EUp next, the \\u003Cstrong\\u003Etest log\\u003C/strong\\u003E. A surface-level observation is that \\ud835\\udca9ness appears to scale with the complexity of a subject .i.e. an apple is more complex than a pen, and the car outstrips both.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u00a310 note - 40\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInvestment portfolio valued at ~\\u00a3200,000 - 90,880\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\ud835\\udca9ness appears to be influenced by monetary value, with higher value being more \\ud835\\udca9.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EResearcher Griffith - 22,140,000\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESenior Researcher Lester - 30,090,000\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EIt would seem that experience/seniority/ranking also increases your \\ud835\\udca9ness.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ED-00340 (Former criminal, convicted for repeated arson; experienced pianist) - 912,300\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ED-00341 (Former criminal, convicted for multiple counts of murder) - 144,600\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ELikewise, but a pianist this time.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EStuffed toy (New, in packaging) - 87\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStuffed toy (Recovered from same apartment as SCP-4517, extremely worn; age estimated at \\u0026gt;15 years) - 2,300\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAs is object backed with lot of history.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EDamien Pisk (Last known resident of the apartment housing SCP-4517) - 0\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EHere comes a real hecking anomaly (ha) of this system. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAn \\ud835\\udca9ness of zero? The same as SCP-4517 itself? Hmm... Either that Mr. Damian suffered the same affliction as 4517, or perhaps a likelier explanation: someone that measures at 170cm tall and weighs 55kg, Damien Pisk \\u003Cem\\u003Eis\\u003C/em\\u003E SCP-4517.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr \\u003Cem\\u003Ewas\\u003C/em\\u003E? Considering \\u0026quot;SCP-4517 resembles Damien Pisk.\\u0026quot; isn\\u0026#39;t a subjectively accurate statement according to the article, something must\\u0026#39;ve divorced the concept and perception of Pisk from his body, leading to the researcher unable to recognize it as such.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrom MaliceAforethought themselves: \\u003Cem\\u003E\\u0026quot;The effect here is neither memetic nor antimemetic; it is, in fact ontological. They can\\u0026#39;t recognise SCP-4517 as Pisk because the anomaly does not possess that quality any more \\u2014 it\\u0026#39;s not hiding it, it\\u0026#39;s just not there. It\\u0026#39;s not an issue that\\u0026#39;s in our heads, it\\u0026#39;s an issue that\\u0026#39;s in the world.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ELangdon Pisk (Mathematician and brother of the aforementioned, formerly working at Durham University, England) - \\u003Cem\\u003ECOMPARISON REJECTED; INTEGER OVERFLOW\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EAnd then there\\u0026#39;s \\u003Cem\\u003Ethis\\u003C/em\\u003E guy. Depending on the kind of integer the Foundation uses, Langdon Pisk\\u0026#39;s \\ud835\\udca9ness registers in excess of either \\u003Cem\\u003E4 billion\\u003C/em\\u003E or \\u003Cem\\u003E18 quintillion\\u003C/em\\u003E. Unless Damian\\u0026#39;s brother is the Administrator or the secret Supergod\\u2122 of the SCPverse, I\\u0026#39;m beginning to think this measurement is biased.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EWhat is \\ud835\\udca9ness?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFrankly, in-universe-wise, I\\u0026#39;m not sure. And I probably can\\u0026#39;t articulate it accurately either - MaliceAforethought: \\u003Cem\\u003E\\u0026quot;It\\u0026#39;s the same problem with \\ud835\\udca9ness: it is fundamentally not any of those concepts you mentioned. It might have been, at one point, but not any more. The Foundation could very well provide details about what the two (4517 and \\ud835\\udca9ness) are, but they would (by definition) be inaccurate.\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThankfully, \\u003Ca href=\\\"http://www.scp-wiki.net/sandrewswann-s-proposal\\\"\\u003Ewe\\u003C/a\\u003E exist on the other side of the screen, so I think I can tell what \\ud835\\udca9ness represents within the context of this narrative: it\\u0026#39;s worth. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\ud835\\udca9ness is the measure of something\\u0026#39;s worth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EA ball-point pen isn\\u0026#39;t worth a whole lot, and can easily be replaced. So is a stuffed toy, at least a new one - an old, well-worn one definitely have a lot more sentimental value for someone, therefore more worth.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth D-classes is considered less important than the researchers, but the one with pianist experience is considered better than the murderer. See where I\\u0026#39;m getting at?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOf course, rememebr how I said \\ud835\\udca9ness is otherwise a measure of some subjective quantifications? This is where the Pisk brothers come in, and where \\ud835\\udca9ness hits its objective-relative wall: \\u003Cstrong\\u003EHow do you really measure your own worth?\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESociety may tell you that your worth is what you make of them, but how much of that is really the case? Can you look at your worthless self and say you can make something out of it, compared to your infinitely more successful brother, someone whose shadow you live in?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUsing Damian\\u0026#39;s body as a baseline heavily skews its own perception when it has to compare both itself and its brother, after all.\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ECONCLUSION\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESCP-4517 is a minimal, yet deep insight into how distorted your self-worth can become when you live in someone\\u0026#39;s shadow, not helped by the fact that society can, and will, make that comparison, pushing them to a deep end where they have already resigned themselves to their inescapable fate.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003Etl;dr: invest in stock market\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/tXifvQS0aHbn93yEM2z92T5pTc8VEtUQw8xkYdeC68o.jpg?auto=webp\\u0026s=50385cbafcc70337366a383b5f8d111eec9d5ed2\", \"width\": 2136, \"height\": 1709}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/tXifvQS0aHbn93yEM2z92T5pTc8VEtUQw8xkYdeC68o.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e099ca402d20287a883f98753c946cda7d5ef489\", \"width\": 108, \"height\": 86}, {\"url\": \"https://external-preview.redd.it/tXifvQS0aHbn93yEM2z92T5pTc8VEtUQw8xkYdeC68o.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=56c8bea0eaf20ef5b45d76dbf9931aa4ee45a15e\", \"width\": 216, \"height\": 172}, {\"url\": \"https://external-preview.redd.it/tXifvQS0aHbn93yEM2z92T5pTc8VEtUQw8xkYdeC68o.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d992ddca9489c1d777c5f45b251941fb9a954e43\", \"width\": 320, \"height\": 256}, {\"url\": \"https://external-preview.redd.it/tXifvQS0aHbn93yEM2z92T5pTc8VEtUQw8xkYdeC68o.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=d01d76d5cdadfa3d120481792579873ef8e53757\", \"width\": 640, \"height\": 512}, {\"url\": \"https://external-preview.redd.it/tXifvQS0aHbn93yEM2z92T5pTc8VEtUQw8xkYdeC68o.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=0a3bdd9c6ddd2fae7534d07fb7264bd02396ed12\", \"width\": 960, \"height\": 768}, {\"url\": \"https://external-preview.redd.it/tXifvQS0aHbn93yEM2z92T5pTc8VEtUQw8xkYdeC68o.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=04c122e2b9eb772e8582aab25ee0ccb2101fd328\", \"width\": 1080, \"height\": 864}], \"variants\": {}, \"id\": \"tRD9fpz-yu2qxsJJTzWyr3Qv1ukH0tXyCFl4gSD7b6o\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cfuk8r\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"SYwaves\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cfuk8r/test4517/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/PostPreview/comments/cfuk8r/test4517/\", \"subreddit_subscribers\": 777, \"created_utc\": 1563679042.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"PostPreview\", \"selftext\": \"\", \"author_fullname\": \"t2_1fel0o6j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Death's Dynamic Shroud - Heavy Black Heart\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/PostPreview\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 140, \"hide_score\": false, \"name\": \"t3_cfttw3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"thumbnail\": \"https://b.thumbs.redditmedia.com/PNjHxEVHrKkiTXsOspJ2Wa8YMPyXnuuXDrOyq0yv2wE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1563702994.0, \"link_flair_type\": \"text\", \"wls\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"hotsalvation.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"confidence\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/Tsh8SH6H63fUgXysLnUGG8xt8mxB9RKzkwCeHgXqUDQ.jpg?auto=webp\\u0026s=fab0aca3ab0b8d42bc0324fd0e27219c28821def\", \"width\": 1200, \"height\": 1200}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/Tsh8SH6H63fUgXysLnUGG8xt8mxB9RKzkwCeHgXqUDQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d8aa9f7645dd63fb78807d2c39241e53c949c042\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/Tsh8SH6H63fUgXysLnUGG8xt8mxB9RKzkwCeHgXqUDQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=36f7e933eebf3a2027a47be30b02a9bd5de23b4b\", \"width\": 216, \"height\": 216}, {\"url\": \"https://external-preview.redd.it/Tsh8SH6H63fUgXysLnUGG8xt8mxB9RKzkwCeHgXqUDQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c45f8af4bad6bba23803dcdcbb3fe7e6cbc973a9\", \"width\": 320, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/Tsh8SH6H63fUgXysLnUGG8xt8mxB9RKzkwCeHgXqUDQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=fa9b5a2d386779b50170a4a0983c82d667a2c3b8\", \"width\": 640, \"height\": 640}, {\"url\": \"https://external-preview.redd.it/Tsh8SH6H63fUgXysLnUGG8xt8mxB9RKzkwCeHgXqUDQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=6c464198befe35609458891c581276be82ab7709\", \"width\": 960, \"height\": 960}, {\"url\": \"https://external-preview.redd.it/Tsh8SH6H63fUgXysLnUGG8xt8mxB9RKzkwCeHgXqUDQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=f592c7081ad91b178a64d3ed9a47dae0f007b7e0\", \"width\": 1080, \"height\": 1080}], \"variants\": {}, \"id\": \"lcS2zaq5s43lh7XS0TVG1J_HXQ4VfH5JVpvhBwSDM-Q\"}], \"enabled\": false}, \"all_awardings\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"visited\": false, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2waml\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"cfttw3\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"Komrads78\", \"num_crossposts\": 0, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/PostPreview/comments/cfttw3/deaths_dynamic_shroud_heavy_black_heart/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://hotsalvation.com/collections/experimental/products/deaths-dynamic-shroud-heavy-black-heart\", \"subreddit_subscribers\": 777, \"created_utc\": 1563674194.0, \"discussion_type\": null, \"media\": null, \"is_video\": false}}], \"after\": \"t3_cfttw3\", \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["847135"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:10:04 GMT"], "x-ratelimit-remaining": ["596.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["4"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579404.744689,VS0,VE918"], "Vary": ["accept-encoding"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["597"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100"}, "recorded_at": "2019-08-12T03:10:04"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Authorization": ["bearer **********"]}, "method": "GET", "uri": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_cp5dce"}, "response": {"body": {"string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 0, \"children\": [], \"after\": null, \"before\": null}}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["104"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:10:05 GMT"], "x-ratelimit-remaining": ["595.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["5"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579406.763359,VS0,VE77"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["595"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/r/PostPreview/new?raw_json=1&limit=100&before=t3_cp5dce"}, "recorded_at": "2019-08-12T03:10:05"}, {"request": {"body": {"string": "api_type=json&dir=1&id=t3_cozhif", "encoding": "utf-8"}, "headers": {"Content-Length": ["32"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["bearer **********"]}, "method": "POST", "uri": "https://oauth.reddit.com/api/vote/?raw_json=1"}, "response": {"body": {"string": "{}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["2"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:10:06 GMT"], "x-ratelimit-remaining": ["594.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["6"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579407.855976,VS0,VE84"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["594"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/api/vote/?raw_json=1"}, "recorded_at": "2019-08-12T03:10:06"}, {"request": {"body": {"string": "api_type=json&dir=-1&id=t3_cozhif", "encoding": "utf-8"}, "headers": {"Content-Length": ["33"], "Accept-Encoding": ["identity"], "Accept": ["*/*"], "User-Agent": ["Linux:nnreddit:0.1.0 PRAW/6.2.0 PRAW/6.2.0 prawcore/1.0.1"], "Connection": ["keep-alive"], "Cookie": ["edgebucket=w2ku4WLSMfcsFOvmt3"], "Content-Type": ["application/x-www-form-urlencoded"], "Authorization": ["bearer **********"]}, "method": "POST", "uri": "https://oauth.reddit.com/api/vote/?raw_json=1"}, "response": {"body": {"string": "{}", "encoding": "UTF-8"}, "headers": {"Content-Length": ["2"], "X-Cache-Hits": ["0"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "X-Moose": ["majestic"], "x-ua-compatible": ["IE=edge"], "cache-control": ["private, s-maxage=0, max-age=0, must-revalidate, max-age=0, must-revalidate"], "Date": ["Mon, 12 Aug 2019 03:10:08 GMT"], "x-ratelimit-remaining": ["593.0"], "Strict-Transport-Security": ["max-age=15552000; includeSubDomains; preload"], "X-Cache": ["MISS"], "Accept-Ranges": ["bytes"], "expires": ["-1"], "Server": ["snooserv"], "Connection": ["keep-alive"], "X-Served-By": ["cache-lga21927-LGA"], "x-ratelimit-used": ["7"], "Via": ["1.1 varnish"], "X-Timer": ["S1565579408.958712,VS0,VE78"], "x-frame-options": ["SAMEORIGIN"], "Content-Type": ["application/json; charset=UTF-8"], "x-ratelimit-reset": ["593"]}, "status": {"message": "OK", "code": 200}, "url": "https://oauth.reddit.com/api/vote/?raw_json=1"}, "recorded_at": "2019-08-12T03:10:08"}], "recorded_with": "betamax/0.8.1"} \ No newline at end of file diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..71c3e55 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,121 @@ +# -*- coding: utf-8 -*- + +# The following is a derivative work of +# https://github.com/michael-lazar/rtv +# license under MIT License. + +from __future__ import unicode_literals + +import os +import logging +import json +from functools import partial + +import pytest +from vcr import VCR +from six.moves.urllib.parse import urlparse, parse_qs +from tempfile import mkstemp + +os.environ["XDG_DATA_HOME"] = os.path.join(os.path.dirname(__file__), 'share') +try: + os.makedirs(os.environ["XDG_DATA_HOME"]) +except OSError: + if not os.path.isdir(os.environ["XDG_DATA_HOME"]): + raise + +from nnreddit.authenticated_reddit import AuthenticatedReddit +from rtv.config import TOKEN + +try: + from unittest import mock +except ImportError: + import mock + +# Turn on autospec by default for convenience +patch = partial(mock.patch, autospec=True) + +# Turn on logging, but disable vcr from spamming +logging.basicConfig( + level=logging.DEBUG, + format='%(asctime)s:%(levelname)s:%(filename)s:%(lineno)d:%(message)s') +for name in ['vcr.matchers', 'vcr.stubs']: + logging.getLogger(name).disabled = True + +def pytest_addoption(parser): + super_secret = os.path.join(os.path.dirname(TOKEN), 'super-secret-refresh-token') + parser.addoption('--record-mode', dest='record_mode', default='none') + parser.addoption('--token-file', dest='token_file', + default=(super_secret if os.path.exists(super_secret) else TOKEN)) + +@pytest.fixture(scope='session') +def vcr(request): + def auth_matcher(r1, r2): + return (r1.headers.get('authorization') == \ + r2.headers.get('authorization')) + + def uri_with_query_matcher(r1, r2): + "URI matcher that allows query params to appear in any order" + p1, p2 = urlparse(r1.uri), urlparse(r2.uri) + return (p1[:3] == p2[:3] and \ + parse_qs(p1.query, True) == parse_qs(p2.query, True)) + + # Use `none` to use the recorded requests, and `once` to delete existing + # cassettes and re-record. + record_mode = request.config.option.record_mode + assert record_mode in ('once', 'none') + + cassette_dir = os.path.join(os.path.dirname(__file__), 'cassettes') + if not os.path.exists(cassette_dir): + os.makedirs(cassette_dir) + + def scrub(tokens, replacement=''): + def before_record_response(response): + dikt = json.loads(response['body']['string'].decode('utf-8')) + for token in tokens: + dikt[token] = replacement + response['body']['string'] = json.dumps(dikt) + return response + return before_record_response + + # https://github.com/kevin1024/vcrpy/pull/196 + vcr = VCR( + record_mode=request.config.option.record_mode, + filter_headers=[('Authorization', '**********')], + filter_post_data_parameters=[('refresh_token', '**********'), + ('code', '**********')], + match_on=['method', 'uri_with_query', 'auth', 'body'], + before_record_response=scrub(['access_token', 'refresh_token'], '**********'), + cassette_library_dir=cassette_dir) + vcr.register_matcher('auth', auth_matcher) + vcr.register_matcher('uri_with_query', uri_with_query_matcher) + return vcr + +@pytest.yield_fixture() +def reddit(vcr, request): + cassette_name = '%s.yaml' % request.node.name + + # Clear the cassette before running the test + recording = (request.config.option.record_mode == 'once') + if recording: + filename = os.path.join(vcr.cassette_library_dir, cassette_name) + if os.path.exists(filename): + os.remove(filename) + + with vcr.use_cassette(cassette_name): + logdir = os.path.join(os.path.dirname(__file__), 'log') + try: + os.makedirs(logdir) + except OSError: + if not os.path.isdir(logdir): + raise + kwargs = { 'token_file': ( \ + mkstemp(dir='/var/tmp')[1] + if recording else request.config.option.token_file ), + 'history_file': mkstemp(dir='/var/tmp')[1], + 'log_prefix': os.path.join(logdir, 'test_vcr.'), + 'check_for_updates': False + } + reddit = AuthenticatedReddit(decode_html_entities=False, + disable_update_check=True, + **kwargs) + yield reddit diff --git a/tests/nnreddit-test.el b/tests/nnreddit-test.el new file mode 100644 index 0000000..a0aa062 --- /dev/null +++ b/tests/nnreddit-test.el @@ -0,0 +1,55 @@ +;;; nnreddit-test.el --- Test utilities for nnreddit -*- lexical-binding: t; coding: utf-8 -*- + +;; The following is a derivative work of +;; https://github.com/millejoh/emacs-ipython-notebook +;; licensed under GNU General Public License v3.0. + +(custom-set-variables + '(gnus-before-startup-hook (quote (toggle-debug-on-error))) + '(nnreddit-venv nil) + `(nnreddit-python-command ,(or (getenv "PYTHON") "python")) + '(auto-revert-verbose nil) + '(auto-revert-stop-on-user-input nil) + '(gnus-read-active-file nil) + `(gnus-home-directory ,(file-name-directory load-file-name)) + '(gnus-use-dribble-file nil) + '(gnus-read-newsrc-file nil) + '(gnus-save-killed-list nil) + '(gnus-save-newsrc-file nil) + '(gnus-secondary-select-methods (quote ((nnreddit "")))) + '(gnus-select-method (quote (nnnil))) + '(gnus-message-highlight-citation nil) + '(gnus-verbose 8) + '(gnus-interactive-exit (quote quiet))) + +(require 'nnreddit) +(require 'cl-lib) +(require 'ert) +(require 'message) + +(with-eval-after-load "python" + (setq python-indent-guess-indent-offset-verbose nil)) + +(defun nnreddit-test-wait-for (predicate &optional predargs ms interval continue) + "Wait until PREDICATE function returns non-`nil'. + PREDARGS is argument list for the PREDICATE function. + MS is milliseconds to wait. INTERVAL is polling interval in milliseconds." + (let* ((int (aif interval it (aif ms (max 300 (/ ms 10)) 300))) + (count (max 1 (if ms (truncate (/ ms int)) 25)))) + (unless (or (cl-loop repeat count + when (apply predicate predargs) + return t + do (sleep-for 0 int)) + continue) + (error "Timeout: %s" predicate)))) + +(mapc (lambda (sf) + (add-function + :around (symbol-function sf) + (lambda (f &rest args) + (cl-letf (((symbol-function 'yes-or-no-p) (lambda (&rest args) t)) + ((symbol-function 'y-or-n-p) (lambda (&rest args) t))) + (apply f args))))) + '(message-cancel-news message-send-news find-file-noselect)) + +(provide 'nnreddit-test) diff --git a/tests/recorded.py b/tests/recorded.py new file mode 100644 index 0000000..e3f2f3d --- /dev/null +++ b/tests/recorded.py @@ -0,0 +1,83 @@ +# -*- coding: utf-8 -*- + +# The following is a derivative work of +# https://github.com/praw-dev/praw +# licensed under BSD 2-Clause "Simplified" License. + +from betamax import Betamax +from betamax.cassette.cassette import Placeholder +import functools +import json +import logging +from six.moves.urllib.parse import parse_qs + +__recordings__ = {} + +def scrub(interaction, current_cassette): + request = interaction.data.get('request') or {} + response = interaction.data.get('response') or {} + + # Exit early if the request did not return 200 OK because that's the + # only time we want to look for tokens + if not response or response['status']['code'] != 200: + return + + for what in [r for r in [request, response] if r]: + auths = what['headers'].get('Authorization') or [] + for auth in auths: + current_cassette.placeholders.append( + Placeholder(placeholder='**********', replace=auth) + ) + + body_string = what['body']['string'] + try: + dikt = json.loads(body_string) + except: + dikt = { k: v[0] for k,v in parse_qs(body_string).items() } + for token in ['access_token', 'refresh_token']: + if token in dikt: + current_cassette.placeholders.append( + Placeholder(placeholder='**********', replace=dikt[token]) + ) + +with Betamax.configure() as config: + config.cassette_library_dir = 'tests/cassettes' + config.before_record(callback=scrub) + +def recorded(func): + """Intercept point for Betamax. As a decorator for an + AuthenticatedReddit method, it disallows reentrant calls to that + method under record_mode: once.""" + @functools.wraps(func) + def wrapper(*args, **kwargs): + reddit = args[0] + http = reddit._core._requestor._http + + # Disable response compression in order to see the response bodies in + # the betamax cassettes. + http.headers["Accept-Encoding"] = "identity" + + with Betamax(http).use_cassette(func.__name__): + return func(*args, **kwargs) + return wrapper + +def recording_begin(reddit, cassette): + if cassette in __recordings__: + raise RuntimeError('Recording {} already in progress!'.format(cassette)) + + http = reddit._core._requestor._http + + # what praw does to prevent compression obscuring response bodies + http.headers["Accept-Encoding"] = "identity" + + __recordings__[cassette] = Betamax(http).use_cassette(cassette).__enter__() + +def recording_end(cassette=None): + if cassette and cassette not in __recordings__: + raise RuntimeError('Recording {} not in progress!'.format(cassette)) + + if cassette is None: + [c.__exit__() for c in __recordings__.values()] + else: + __recordings__[cassette].__exit__() + del __recordings__[cassette] diff --git a/tests/share/nnreddit/refresh-token b/tests/share/nnreddit/refresh-token new file mode 100644 index 0000000..39802f6 --- /dev/null +++ b/tests/share/nnreddit/refresh-token @@ -0,0 +1 @@ +stub diff --git a/tests/test-uncacheable.el b/tests/test-uncacheable.el new file mode 100644 index 0000000..37d05b8 --- /dev/null +++ b/tests/test-uncacheable.el @@ -0,0 +1,5 @@ +(require 'nnreddit-test) + +(ert-deftest nnreddit-should-not-cache () + (should (string-match gnus-uncacheable-groups "nnreddit:emacs"))) + diff --git a/tests/test_oauth.py b/tests/test_oauth.py new file mode 100644 index 0000000..c0798ce --- /dev/null +++ b/tests/test_oauth.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- + +from __future__ import unicode_literals + +try: + from unittest import mock +except ImportError: + import mock + +def test_oauth(reddit): + assert reddit._authorized_core is not None diff --git a/tools/install-virtualenv.sh b/tools/install-virtualenv.sh new file mode 100644 index 0000000..76e86df --- /dev/null +++ b/tools/install-virtualenv.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +# Create virtualenvs for python{2,3} for Travis CI on OSX + +set -x + +WORKDIR=${HOME}/local + +. tools/retry.sh + +if [ "x$TRAVIS_OS_NAME" = "xosx" ]; then + brew list pyenv-virtualenv || HOMEBREW_NO_AUTO_UPDATE=1 brew install pyenv-virtualenv + + case "${TOXENV}" in + py27) + pyenv install -s 2.7.13 + pyenv virtualenv -f 2.7.13 py27 + ;; + py35) + pyenv install -s 3.5.2 + pyenv virtualenv -f 3.5.2 py35 + ;; + esac +fi diff --git a/tools/package-lint.sh b/tools/package-lint.sh new file mode 100644 index 0000000..f0887db --- /dev/null +++ b/tools/package-lint.sh @@ -0,0 +1,26 @@ +#!/bin/sh -e + +. tools/retry.sh + +export EMACS="${EMACS:=emacs}" +export BASENAME=$(basename "$1") + +( cask emacs -Q --batch \ + --visit "$1" \ + --eval "(checkdoc-eval-current-buffer)" \ + --eval "(princ (with-current-buffer checkdoc-diagnostic-buffer \ + (buffer-string)))" \ + 2>&1 | egrep -a "^$BASENAME:" ) && false + +# Reduce purity via: +# --eval "(fset 'package-lint--check-defs-prefix (symbol-function 'ignore))" \ +PKG_MAIN=$(cask files | egrep -- "pkg.el$") +travis_retry cask emacs -Q --batch \ + -l package-lint \ + --eval "(let ((v (format \"%s.%s\" emacs-major-version emacs-minor-version))) (custom-set-variables (backquote (package-user-dir ,(concat \".cask/\" v)))))" \ + -f package-initialize \ + --eval "(push (quote (\"melpa\" . \"http://melpa.org/packages/\")) \ + package-archives)" \ + --eval "(setq package-lint-main-file (if (zerop (length \"${PKG_MAIN}\")) nil \"${PKG_MAIN}\"))" \ + --eval "(package-refresh-contents)" \ + -f package-lint-batch-and-exit "$1" diff --git a/tools/readme-sed.sh b/tools/readme-sed.sh new file mode 100755 index 0000000..991872d --- /dev/null +++ b/tools/readme-sed.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +# by mklement0 https://stackoverflow.com/a/29613573/5132008 + +# Define sample multi-line literal. +input=`cat` +replace="$input" +if [ ! -z "$3" ]; then + replace=$(awk "/$3/,EOF { print \" \" \$0 }" <<<"$input") +fi + +# Escape it for use as a Sed replacement string. +IFS= read -d '' -r < <(sed -e ':a' -e '$!{N;ba' -e '}' -e 's/[&/\]/\\&/g; s/\n/\\&/g' <<<"$replace") +replaceEscaped=${REPLY%$'\n'} + +# If ok, outputs $replace as is. +sed "/$1/c\\$replaceEscaped" $2 diff --git a/tools/recipe b/tools/recipe new file mode 100644 index 0000000..7b12ed1 --- /dev/null +++ b/tools/recipe @@ -0,0 +1,2 @@ +(nnreddit :repo "dickmao/nnreddit" :fetcher github + :files ("lisp/*.el" "setup.py" "requirements.txt" "nnreddit")) diff --git a/tools/retry.sh b/tools/retry.sh new file mode 100644 index 0000000..7b9c7f6 --- /dev/null +++ b/tools/retry.sh @@ -0,0 +1,28 @@ +# Copied retry logic from Travis CI [http://bit.ly/2jPDCtV] +# Author: gonewest818 https://github.com/clojure-emacs/cider/pull/2139 + +ANSI_RED="\033[31;1m" +ANSI_GREEN="\033[32;1m" +ANSI_RESET="\033[0m" +ANSI_CLEAR="\033[0K" + +travis_retry() { + local result=0 + local count=1 + while [ $count -le 3 ]; do + [ $result -ne 0 ] && { + echo -e "\n${ANSI_RED}The command \"$@\" failed. Retrying, $count of 3.${ANSI_RESET}\n" >&2 + } + "$@" + result=$? + [ $result -eq 0 ] && break + count=$(($count + 1)) + sleep 1 + done + + [ $count -gt 3 ] && { + echo -e "\n${ANSI_RED}The command \"$@\" failed 3 times.${ANSI_RESET}\n" >&2 + } + + return $result +}